Copy disabled (too large)
Download .txt
Showing preview only (43,378K chars total). Download the full file to get everything.
Repository: coinbase/cds
Branch: master
Commit: a4ec111ec61d
Files: 10588
Total size: 60.8 MB
Directory structure:
gitextract_072gxaw6/
├── .agents/
│ └── skills/
│ └── skill-creator/
│ ├── LICENSE.txt
│ ├── SKILL.md
│ ├── agents/
│ │ ├── analyzer.md
│ │ ├── comparator.md
│ │ └── grader.md
│ ├── assets/
│ │ └── eval_review.html
│ ├── eval-viewer/
│ │ ├── generate_review.py
│ │ └── viewer.html
│ ├── references/
│ │ └── schemas.md
│ └── scripts/
│ ├── __init__.py
│ ├── aggregate_benchmark.py
│ ├── generate_report.py
│ ├── improve_description.py
│ ├── package_skill.py
│ ├── quick_validate.py
│ ├── run_eval.py
│ ├── run_loop.py
│ └── utils.py
├── .browserslistrc
├── .claude/
│ ├── agents/
│ │ └── design-system-researcher.md
│ ├── settings.json
│ └── skills/
│ ├── components.best-practices/
│ │ └── SKILL.md
│ ├── components.styles/
│ │ ├── README.md
│ │ └── SKILL.md
│ ├── components.write-docs/
│ │ ├── README.md
│ │ └── SKILL.md
│ ├── deprecate-cds-api/
│ │ └── SKILL.md
│ ├── dev.cds-mobile/
│ │ └── SKILL.md
│ ├── dev.cds-web/
│ │ └── SKILL.md
│ ├── eslint-plugin-custom-rule/
│ │ └── SKILL.md
│ ├── feature-planner/
│ │ ├── SKILL.md
│ │ └── evals/
│ │ └── evals.json
│ ├── figma.audit-connect/
│ │ └── SKILL.md
│ ├── figma.connect-best-practices/
│ │ └── SKILL.md
│ ├── figma.create-connect/
│ │ └── SKILL.md
│ ├── git.detect-breaking-changes/
│ │ └── SKILL.md
│ ├── git.repo-manager/
│ │ └── SKILL.md
│ ├── ktlo/
│ │ └── SKILL.md
│ ├── research.component-libs/
│ │ └── SKILL.md
│ └── research.deprecation-usage/
│ └── SKILL.md
├── .codeflow.yml
├── .cursor/
│ ├── mcp.json
│ ├── rules/
│ │ └── nx-rules.mdc
│ └── worktrees.json
├── .dockerignore
├── .dontdockerignore
├── .github/
│ ├── CODEOWNERS
│ ├── PULL_REQUEST_TEMPLATE.md
│ ├── actions/
│ │ ├── get-merge-base/
│ │ │ └── action.yml
│ │ └── setup/
│ │ └── action.yml
│ ├── labeler.yml
│ └── workflows/
│ ├── ci.yml
│ ├── debug-workflow.yml
│ ├── figma.yml
│ ├── guard-debug-workflow.yml
│ ├── illustrations-icons-checklist.yml
│ ├── pr.yml
│ ├── publish.yml
│ ├── slack-pull-request.yml
│ ├── visreg-mobile.yml
│ └── visreg-web.yml
├── .gitignore
├── .lasthash
├── .mcp.json
├── .nvmrc
├── .nxignore
├── .percy.js
├── .prettierignore
├── .stylelintrc.cjs
├── .vscode/
│ ├── extensions.json
│ ├── launch.json
│ ├── settings.json
│ └── tasks.json
├── .watchmanconfig
├── .yarn/
│ ├── patches/
│ │ ├── @expo-cli-npm-0.18.29-f58906fdfb.patch
│ │ ├── @testing-library-user-event-npm-14.0.4-109d618170
│ │ ├── depcheck-npm-1.4.7-d4cc813cc3.patch
│ │ ├── expo-dev-launcher-npm-4.0.27-c2ab5dd4a5.patch
│ │ ├── expo-splash-screen-npm-0.27.5-f91e0b41df.patch
│ │ ├── framer-motion-npm-10.18.0-ae9ea02138
│ │ ├── glob-npm-7.1.6-minimatch10-symbol.patch
│ │ ├── react-native-gesture-handler-npm-2.16.2-c16529326b.patch
│ │ ├── react-native-navigation-bar-color-npm-2.0.2-9a2ea3aaf6.patch
│ │ └── react-native-npm-0.74.5-db5164f47b.patch
│ └── releases/
│ └── yarn-4.9.2.cjs
├── .yarnrc.yml
├── AGENTS.md
├── CLAUDE.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── SECURITY.md
├── apps/
│ ├── docs/
│ │ ├── .stylelintrc.json
│ │ ├── ai-doc-generator/
│ │ │ ├── concatenate-docs.cjs
│ │ │ ├── generate-site-directory.cjs
│ │ │ ├── generateDoc.cjs
│ │ │ ├── generateRoutesContent.cjs
│ │ │ ├── generateRoutesDoc.cjs
│ │ │ ├── generator.cjs
│ │ │ ├── resolveDoc.cjs
│ │ │ └── validate.cjs
│ │ ├── babel.config.cjs
│ │ ├── blog/
│ │ │ ├── authors.yml
│ │ │ ├── introducing-cds.mdx
│ │ │ └── tags.yml
│ │ ├── development.Dockerfile
│ │ ├── docgen.config.js
│ │ ├── docs/
│ │ │ ├── components/
│ │ │ │ ├── animation/
│ │ │ │ │ ├── Lottie/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ └── LottieStatusAnimation/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── cards/
│ │ │ │ │ ├── ContainedAssetCard/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ContentCard/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ContentCardBody/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ContentCardFooter/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ContentCardHeader/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── DataCard/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── FloatingAssetCard/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── MediaCard/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── MessagingCard/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── NudgeCard/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ └── UpsellCard/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── charts/
│ │ │ │ │ ├── AreaChart/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── BarChart/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── CartesianChart/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Legend/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── LineChart/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── PercentageBarChart/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── PeriodSelector/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Point/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ReferenceLine/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Scrubber/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Sparkline/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SparklineGradient/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SparklineInteractive/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SparklineInteractiveHeader/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── XAxis/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ └── YAxis/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── data-display/
│ │ │ │ │ ├── ContentCell/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ListCell/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Table/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TableBody/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TableCaption/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TableCell/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TableCellFallback/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TableFooter/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TableHeader/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ └── TableRow/
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── feedback/
│ │ │ │ │ ├── Banner/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Fallback/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ProgressBar/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ProgressBarWithFixedLabels/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ProgressBarWithFloatLabel/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ProgressCircle/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ └── Spinner/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── inputs/
│ │ │ │ │ ├── AvatarButton/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Button/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Checkbox/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── CheckboxCell/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── CheckboxGroup/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Chip/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Combobox/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ControlGroup/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── IconButton/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── InputChip/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Interactable/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── MediaChip/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Numpad/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── mobileMetadata.json
│ │ │ │ │ ├── Pressable/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Radio/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── RadioCell/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── RadioGroup/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SearchInput/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SegmentedControl/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Select/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SelectAlpha/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SelectChip/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SelectChipAlpha/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SelectOption/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SlideButton/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── mobileMetadata.json
│ │ │ │ │ ├── Switch/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TextInput/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ └── TileButton/
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── layout/
│ │ │ │ │ ├── Accordion/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── AccordionItem/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Box/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ButtonGroup/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Carousel/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Collapsible/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Divider/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Dropdown/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Grid/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── GridColumn/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── HStack/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── MultiContentModule/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Spacer/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ └── VStack/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── media/
│ │ │ │ │ ├── Avatar/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── CellMedia/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── HeroSquare/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Icon/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── LogoMark/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── LogoWordMark/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Pictogram/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── RemoteImage/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── RemoteImageGroup/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SpotIcon/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SpotRectangle/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SpotSquare/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SubBrandLogoMark/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ └── SubBrandLogoWordMark/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── navigation/
│ │ │ │ │ ├── BrowserBar/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── mobileMetadata.json
│ │ │ │ │ ├── Coachmark/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── NavigationBar/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── NavigationTitle/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── NavigationTitleSelect/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── PageFooter/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── PageHeader/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Pagination/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SectionHeader/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SegmentedTabs/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Sidebar/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SidebarItem/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── SidebarMoreMenu/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Stepper/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TabIndicator/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TabLabel/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TabNavigation/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── a11y.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TabbedChips/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TabbedChipsAlpha/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Tabs/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── TopNavBar/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── mobileMetadata.json
│ │ │ │ │ └── Tour/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── numbers/
│ │ │ │ │ └── RollingNumber/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── other/
│ │ │ │ │ ├── Calendar/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── DateInput/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── DatePicker/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── DotCount/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── DotStatusColor/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── DotSymbol/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── MediaQueryProvider/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ └── ThemeProvider/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── overlay/
│ │ │ │ │ ├── Alert/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── FocusTrap/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── FullscreenAlert/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── FullscreenModal/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── FullscreenModalLayout/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Modal/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ModalBody/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ModalFooter/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── ModalHeader/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Overlay/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── PopoverPanel/
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── PortalProvider/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Toast/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ ├── Tooltip/
│ │ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ │ ├── index.mdx
│ │ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ │ └── webMetadata.json
│ │ │ │ │ └── Tray/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _mobileStyles.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── _webStyles.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ └── typography/
│ │ │ │ ├── Link/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── Tag/
│ │ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ │ ├── _webExamples.mdx
│ │ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ └── Text/
│ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ ├── _mobilePropsTable.mdx
│ │ │ │ ├── _webExamples.mdx
│ │ │ │ ├── _webPropsTable.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ ├── mobileMetadata.json
│ │ │ │ └── webMetadata.json
│ │ │ ├── extras/
│ │ │ │ └── color-pairing-tool.mdx
│ │ │ ├── getting-started/
│ │ │ │ ├── ai-overview.mdx
│ │ │ │ ├── colors.mdx
│ │ │ │ ├── installation/
│ │ │ │ │ ├── _mobileContent.mdx
│ │ │ │ │ ├── _webContent.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── introduction.mdx
│ │ │ │ ├── playground.mdx
│ │ │ │ ├── styling/
│ │ │ │ │ ├── _mobileContent.mdx
│ │ │ │ │ ├── _webContent.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ ├── templates/
│ │ │ │ │ ├── _mobileContent.mdx
│ │ │ │ │ ├── _webContent.mdx
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ ├── mobileMetadata.json
│ │ │ │ │ └── webMetadata.json
│ │ │ │ └── theming/
│ │ │ │ ├── _mobileContent.mdx
│ │ │ │ ├── _webContent.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ ├── mobileMetadata.json
│ │ │ │ └── webMetadata.json
│ │ │ ├── guides/
│ │ │ │ ├── _v9MobileInstallCommands.mdx
│ │ │ │ ├── _v9MobilePeerDependencies.mdx
│ │ │ │ ├── _v9WebInstallCommands.mdx
│ │ │ │ ├── _v9WebPeerDependencies.mdx
│ │ │ │ ├── v8-migration-guide.mdx
│ │ │ │ └── v9-migration-guide.mdx
│ │ │ ├── home/
│ │ │ │ ├── Home.tsx
│ │ │ │ └── home.mdx
│ │ │ └── hooks/
│ │ │ ├── useBreakpoints/
│ │ │ │ ├── _webApi.mdx
│ │ │ │ ├── _webExamples.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ └── webMetadata.json
│ │ │ ├── useDimensions/
│ │ │ │ ├── _mobileApi.mdx
│ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ ├── _webApi.mdx
│ │ │ │ ├── _webExamples.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ ├── mobileMetadata.json
│ │ │ │ └── webMetadata.json
│ │ │ ├── useEventHandler/
│ │ │ │ ├── _api.mdx
│ │ │ │ ├── _examples.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ └── metadata.json
│ │ │ ├── useHasMounted/
│ │ │ │ ├── _webApi.mdx
│ │ │ │ ├── _webExamples.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ └── webMetadata.json
│ │ │ ├── useIsoEffect/
│ │ │ │ ├── _webApi.mdx
│ │ │ │ ├── _webExamples.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ └── webMetadata.json
│ │ │ ├── useMediaQuery/
│ │ │ │ ├── _webApi.mdx
│ │ │ │ ├── _webExamples.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ └── webMetadata.json
│ │ │ ├── useMergeRefs/
│ │ │ │ ├── _api.mdx
│ │ │ │ ├── _examples.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ └── metadata.json
│ │ │ ├── useOverlayContentContext/
│ │ │ │ ├── _mobileApi.mdx
│ │ │ │ ├── _mobileExamples.mdx
│ │ │ │ ├── _webApi.mdx
│ │ │ │ ├── _webExamples.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ ├── mobileMetadata.json
│ │ │ │ └── webMetadata.json
│ │ │ ├── usePreviousValue/
│ │ │ │ ├── _api.mdx
│ │ │ │ ├── _examples.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ └── metadata.json
│ │ │ ├── useRefMap/
│ │ │ │ ├── _api.mdx
│ │ │ │ ├── _examples.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ └── metadata.json
│ │ │ ├── useScrollBlocker/
│ │ │ │ ├── _webApi.mdx
│ │ │ │ ├── _webExamples.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ └── webMetadata.json
│ │ │ └── useTheme/
│ │ │ ├── _mobileApi.mdx
│ │ │ ├── _mobileExamples.mdx
│ │ │ ├── _webApi.mdx
│ │ │ ├── _webExamples.mdx
│ │ │ ├── index.mdx
│ │ │ ├── mobileMetadata.json
│ │ │ └── webMetadata.json
│ │ ├── docusaurus.config.ts
│ │ ├── jest.config.js
│ │ ├── package.json
│ │ ├── production.Dockerfile
│ │ ├── project.json
│ │ ├── sidebars.ts
│ │ ├── src/
│ │ │ ├── components/
│ │ │ │ ├── ButtonLink/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── FeedbackWidget/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── FooterLink/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── home/
│ │ │ │ │ ├── AnimatedHero/
│ │ │ │ │ │ ├── HeroCell.tsx
│ │ │ │ │ │ ├── HeroGrid.tsx
│ │ │ │ │ │ ├── constants.ts
│ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ ├── ComponentCard/
│ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ └── QuickStartCampaignCard/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── kbar/
│ │ │ │ │ ├── KBarAnimator.tsx
│ │ │ │ │ ├── KBarModal/
│ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ ├── KBarProvider.tsx
│ │ │ │ │ ├── KBarResultItem.tsx
│ │ │ │ │ ├── KBarResults.tsx
│ │ │ │ │ ├── useKBarCustomActionsToActions.ts
│ │ │ │ │ ├── useKBarPluginData.ts
│ │ │ │ │ └── useKBarThemeActions.ts
│ │ │ │ ├── nav/
│ │ │ │ │ └── NavbarThemeToggle/
│ │ │ │ │ └── index.tsx
│ │ │ │ └── page/
│ │ │ │ ├── ColorPairingTool/
│ │ │ │ │ ├── ColorPicker.module.css
│ │ │ │ │ ├── ColorPicker.tsx
│ │ │ │ │ ├── ComponentPlayground.tsx
│ │ │ │ │ ├── ContrastPanel.tsx
│ │ │ │ │ ├── HotspotImagePreview.tsx
│ │ │ │ │ ├── PlaygroundContent.tsx
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── ResultCard.module.css
│ │ │ │ │ ├── ResultCard.tsx
│ │ │ │ │ ├── UploadZone.module.css
│ │ │ │ │ ├── UploadZone.tsx
│ │ │ │ │ ├── WcagBadge.tsx
│ │ │ │ │ ├── colorUtils.ts
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── types.ts
│ │ │ │ ├── ColorSheet/
│ │ │ │ │ ├── ColorSchemeProvider.tsx
│ │ │ │ │ ├── ColorSwatchGrid.tsx
│ │ │ │ │ └── SpectrumGrid.tsx
│ │ │ │ ├── ComponentBanner/
│ │ │ │ │ ├── BoxBanner.tsx
│ │ │ │ │ ├── ButtonBanner.tsx
│ │ │ │ │ ├── ButtonGroupBanner.tsx
│ │ │ │ │ ├── DefaultBanner.tsx
│ │ │ │ │ ├── DividerBanner.tsx
│ │ │ │ │ ├── DropdownBanner.tsx
│ │ │ │ │ ├── FallbackBanner.tsx
│ │ │ │ │ ├── GettingStartedBanner.tsx
│ │ │ │ │ ├── HStackBanner.tsx
│ │ │ │ │ ├── HeroSquareBanner.tsx
│ │ │ │ │ ├── HooksBanner.tsx
│ │ │ │ │ ├── IconBanner.tsx
│ │ │ │ │ ├── IconButtonBanner.tsx
│ │ │ │ │ ├── LinkBanner.tsx
│ │ │ │ │ ├── ListCellBanner.tsx
│ │ │ │ │ ├── ModalBanner.tsx
│ │ │ │ │ ├── PictogramBanner.tsx
│ │ │ │ │ ├── PlaygroundBanner.tsx
│ │ │ │ │ ├── PressableBanner.tsx
│ │ │ │ │ ├── RemoteImageBanner.tsx
│ │ │ │ │ ├── SelectBanner.tsx
│ │ │ │ │ ├── SlideButtonBanner.tsx
│ │ │ │ │ ├── SpacerBanner.tsx
│ │ │ │ │ ├── SpinnerBanner.tsx
│ │ │ │ │ ├── SpotRectangleBanner.tsx
│ │ │ │ │ ├── SwitchBanner.tsx
│ │ │ │ │ ├── TextBanner.tsx
│ │ │ │ │ ├── TooltipBanner.tsx
│ │ │ │ │ └── VStackBanner.tsx
│ │ │ │ ├── ComponentHeader/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── ComponentPropsTable/
│ │ │ │ │ ├── ModalLink.tsx
│ │ │ │ │ ├── ParentTypesList.tsx
│ │ │ │ │ ├── PropsTable.tsx
│ │ │ │ │ ├── PropsTableRow.tsx
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ ├── styles.module.css
│ │ │ │ │ └── types.ts
│ │ │ │ ├── ComponentStylesTable/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── ComponentTabsContainer/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── ContentHeader/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── ContentPageContainer/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── DeprecationTable/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── FileDropZone/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── useFileUpload.ts
│ │ │ │ ├── HookTabsContainer/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── IconSheet/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── IllustrationSheet/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── JSONCodeBlock/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── LinkChip/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── LottieSheet/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── MDXArticle/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── style.module.css
│ │ │ │ ├── MDXSection/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── Metadata/
│ │ │ │ │ ├── MetadataDependencies.tsx
│ │ │ │ │ ├── MetadataLinks.tsx
│ │ │ │ │ ├── MetadataRelatedComponents.tsx
│ │ │ │ │ └── index.ts
│ │ │ │ ├── PlatformSwitcher/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── ShareablePlayground/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── SheetTabs/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── StylesExplorer/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── TemplateCard/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ └── VersionLabel/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.module.css
│ │ │ ├── constants/
│ │ │ │ └── index.ts
│ │ │ ├── css/
│ │ │ │ └── custom.css
│ │ │ ├── data/
│ │ │ │ └── v9Deprecations.tsx
│ │ │ ├── hooks/
│ │ │ │ ├── useCDSVersions.ts
│ │ │ │ └── useInternalCDSTheme.ts
│ │ │ ├── theme/
│ │ │ │ ├── Admonition/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── AnnouncementBar/
│ │ │ │ │ ├── CloseButton/
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── Content/
│ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── CodeBlock/
│ │ │ │ │ ├── Content/
│ │ │ │ │ │ ├── Element.tsx
│ │ │ │ │ │ ├── String.tsx
│ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ └── CopyButton/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── DocItem/
│ │ │ │ │ └── Layout/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── DocRoot/
│ │ │ │ │ └── Layout/
│ │ │ │ │ ├── Main/
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── Sidebar/
│ │ │ │ │ │ ├── ExpandButton/
│ │ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── DocSidebar/
│ │ │ │ │ ├── Desktop/
│ │ │ │ │ │ ├── CollapseButton/
│ │ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ │ ├── Content/
│ │ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ ├── Mobile/
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── DocSidebarItem/
│ │ │ │ │ ├── Category/
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── Html/
│ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ ├── Link/
│ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── Footer/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── Heading/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── Layout/
│ │ │ │ │ ├── Provider/
│ │ │ │ │ │ ├── UnifiedThemeContext.tsx
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── Logo/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── Navbar/
│ │ │ │ │ ├── ColorModeToggle/
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── Content/
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── Layout/
│ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ └── styles.module.css
│ │ │ │ │ └── MobileSidebar/
│ │ │ │ │ ├── Header/
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── Layout/
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── PrimaryMenu/
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── SecondaryMenu/
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── Toggle/
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── NavbarItem/
│ │ │ │ │ └── NavbarNavLink/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── Playground/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ ├── sandbox/
│ │ │ │ │ │ ├── ensureDefaultExport.ts
│ │ │ │ │ │ ├── generateImports.ts
│ │ │ │ │ │ ├── openInStackBlitz.ts
│ │ │ │ │ │ └── templateFiles.ts
│ │ │ │ │ └── styles.module.css
│ │ │ │ ├── ReactLiveScope/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── Root.tsx
│ │ │ │ ├── SearchBar/
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── TOC/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.module.css
│ │ │ │ └── TOCItems/
│ │ │ │ ├── Tree.tsx
│ │ │ │ ├── index.tsx
│ │ │ │ └── useTOCHightlight.ts
│ │ │ └── utils/
│ │ │ ├── PlatformContext.tsx
│ │ │ ├── __tests__/
│ │ │ │ ├── isTypeAlias.test.ts
│ │ │ │ └── shouldAddToParentTypes.test.ts
│ │ │ ├── decreasePriorityIfCategory.ts
│ │ │ ├── isTypeAlias.js
│ │ │ ├── onProcessDocgen.js
│ │ │ ├── shouldAddToParentTypes.js
│ │ │ ├── sortByAlphabet.ts
│ │ │ ├── toc/
│ │ │ │ ├── PropsTOCManager.tsx
│ │ │ │ ├── TOCManager.tsx
│ │ │ │ └── createTOCManager.tsx
│ │ │ ├── useAnalytics.ts
│ │ │ ├── useIsSticky.ts
│ │ │ ├── useThrottledValue.ts
│ │ │ └── useWindowSizeWithBreakpointOverride.ts
│ │ ├── static/
│ │ │ ├── Inter_Medium_Regular.json
│ │ │ ├── hdr/
│ │ │ │ └── wasteland_clouds_puresky_1k.hdr
│ │ │ └── robots.txt
│ │ ├── tsconfig.json
│ │ ├── types.d.ts
│ │ └── utils/
│ │ ├── __tests__/
│ │ │ └── generateComponentPeerDeps.test.ts
│ │ └── generateComponentPeerDeps.ts
│ ├── mobile-app/
│ │ ├── README.md
│ │ ├── app.config.ts
│ │ ├── babel.config.js
│ │ ├── credentials/
│ │ │ └── android-release-hermes.keystore
│ │ ├── credentials.json
│ │ ├── detox.config.js
│ │ ├── docs/
│ │ │ ├── building-mobile.md
│ │ │ ├── help.md
│ │ │ ├── prebuilds.md
│ │ │ ├── upgrade-rn.md
│ │ │ └── upgrading-mobile-dep.md
│ │ ├── env.d.ts
│ │ ├── index.js
│ │ ├── jest.config.js
│ │ ├── metro.config.js
│ │ ├── package.json
│ │ ├── project.json
│ │ ├── react-native.config.js
│ │ ├── scripts/
│ │ │ ├── build.mjs
│ │ │ ├── detox.mjs
│ │ │ ├── launch.mjs
│ │ │ ├── patch-bundle.mjs
│ │ │ ├── start.mjs
│ │ │ ├── utils/
│ │ │ │ ├── apktool.jar
│ │ │ │ ├── buildAndroid.mjs
│ │ │ │ ├── buildIOS.mjs
│ │ │ │ ├── env.mjs
│ │ │ │ ├── getAffectedRoutes.mjs
│ │ │ │ ├── getBuildInfo.mjs
│ │ │ │ ├── routes.mjs
│ │ │ │ ├── setEnvVars.mjs
│ │ │ │ └── shouldRunVisreg.mjs
│ │ │ └── validate.mjs
│ │ ├── src/
│ │ │ ├── App.tsx
│ │ │ ├── hooks/
│ │ │ │ └── useFonts.ts
│ │ │ ├── index.ts
│ │ │ ├── polyfills/
│ │ │ │ └── intl.ts
│ │ │ └── routes.ts
│ │ └── tsconfig.json
│ ├── storybook/
│ │ ├── .storybook/
│ │ │ ├── StoryContainer.tsx
│ │ │ ├── main.ts
│ │ │ ├── manager.tsx
│ │ │ ├── preview-head.html
│ │ │ ├── preview.ts
│ │ │ ├── useDarkMode.ts
│ │ │ └── vitest.setup.ts
│ │ ├── README.md
│ │ ├── babel.config.js
│ │ ├── package.json
│ │ ├── production.Dockerfile
│ │ ├── project.json
│ │ ├── scripts/
│ │ │ ├── analyze-bundle.ts
│ │ │ ├── profile-export.js
│ │ │ ├── profile-exports.js
│ │ │ ├── run-a11y-tests.ts
│ │ │ ├── run-percy.ts
│ │ │ └── shouldRunVisreg.mjs
│ │ ├── tsconfig.json
│ │ ├── vite-env.d.ts
│ │ ├── vitest.config.ts
│ │ └── vitest.shims.d.ts
│ └── vite-app/
│ ├── .gitignore
│ ├── README.md
│ ├── index.html
│ ├── package.json
│ ├── project.json
│ ├── src/
│ │ ├── App.tsx
│ │ ├── components/
│ │ │ ├── AssetList/
│ │ │ │ ├── data.ts
│ │ │ │ └── index.tsx
│ │ │ ├── CDSLogo/
│ │ │ │ └── index.tsx
│ │ │ ├── CardList/
│ │ │ │ ├── DataCardWithCircle.tsx
│ │ │ │ ├── ETHStakingCard.tsx
│ │ │ │ ├── RecurringBuyCard.tsx
│ │ │ │ └── index.tsx
│ │ │ └── Navbar/
│ │ │ ├── MoreMenu.tsx
│ │ │ ├── UserMenu.tsx
│ │ │ └── index.tsx
│ │ ├── main.tsx
│ │ └── vite-env.d.ts
│ ├── tsconfig.app.json
│ ├── tsconfig.json
│ ├── tsconfig.node.json
│ └── vite.config.ts
├── eslint.config.mjs
├── figma.config.mobile.json
├── figma.config.web.json
├── jest.preset-mobile.js
├── jest.preset.js
├── libs/
│ ├── codegen/
│ │ ├── README.md
│ │ ├── babel.config.cjs
│ │ ├── jest.config.js
│ │ ├── package.json
│ │ ├── patches/
│ │ │ └── hygen.patch
│ │ ├── project.json
│ │ ├── src/
│ │ │ ├── bin.ts
│ │ │ ├── codegen.ts
│ │ │ ├── config.ts
│ │ │ ├── configs/
│ │ │ │ ├── prettierConfig.json
│ │ │ │ └── svgo.config.js
│ │ │ ├── playground/
│ │ │ │ └── prepareRoutes.ts
│ │ │ ├── release/
│ │ │ │ └── updatePkgsForGenericBump.mjs
│ │ │ ├── templates/
│ │ │ │ ├── mobileRoutes.ejs
│ │ │ │ └── partials/
│ │ │ │ ├── objectMap.ejs.t
│ │ │ │ └── typescript.ejs.t
│ │ │ └── utils/
│ │ │ ├── buildTemplates.ts
│ │ │ ├── formatTemplateType.ts
│ │ │ ├── getHeaderCommentForFileType.ts
│ │ │ ├── getPrettierParser.ts
│ │ │ ├── getSourcePath.ts
│ │ │ ├── logError.ts
│ │ │ ├── sortAlphabetically.ts
│ │ │ ├── writeFile.ts
│ │ │ └── writePrettyFile.ts
│ │ ├── tsconfig.build.json
│ │ └── tsconfig.json
│ ├── docusaurus-plugin-docgen/
│ │ ├── README.md
│ │ ├── babel.config.cjs
│ │ ├── jest.config.mjs
│ │ ├── module-declarations.d.ts
│ │ ├── package.json
│ │ ├── project.json
│ │ ├── src/
│ │ │ ├── index.ts
│ │ │ ├── plugin.ts
│ │ │ ├── scripts/
│ │ │ │ ├── debug.ts
│ │ │ │ ├── docgenParser.test.ts
│ │ │ │ ├── docgenParser.ts
│ │ │ │ ├── docgenRunner.test.ts
│ │ │ │ ├── docgenRunner.ts
│ │ │ │ ├── docgenScaffolder.ts
│ │ │ │ ├── docgenWriter.ts
│ │ │ │ └── prettierConfig.json
│ │ │ ├── templates/
│ │ │ │ ├── doc/
│ │ │ │ │ ├── component.ejs.t
│ │ │ │ │ ├── implementation.ejs.t
│ │ │ │ │ └── metadata.ejs.t
│ │ │ │ ├── doc-item/
│ │ │ │ │ ├── api.ejs.t
│ │ │ │ │ ├── changelog-placeholder.ejs.t
│ │ │ │ │ ├── changelog.ejs.t
│ │ │ │ │ ├── example.ejs.t
│ │ │ │ │ └── import-block.ejs.t
│ │ │ │ └── shared/
│ │ │ │ ├── objectMap.ejs.t
│ │ │ │ ├── sharedParentTypes.ejs.t
│ │ │ │ └── sharedTypeAliases.ejs.t
│ │ │ ├── types.ts
│ │ │ └── utils/
│ │ │ ├── docgenCache.test.ts
│ │ │ ├── docgenCache.ts
│ │ │ ├── getGitInfoForFile.ts
│ │ │ ├── getMinutesBetweenDates.ts
│ │ │ ├── getPackageJsonFromTsconfig.ts
│ │ │ └── logger.ts
│ │ ├── tsconfig.build.json
│ │ └── tsconfig.json
│ ├── docusaurus-plugin-kbar/
│ │ ├── README.md
│ │ ├── babel.config.cjs
│ │ ├── package.json
│ │ ├── project.json
│ │ ├── src/
│ │ │ ├── index.ts
│ │ │ ├── plugin.ts
│ │ │ ├── types.ts
│ │ │ └── utils/
│ │ │ ├── getKBarActions.ts
│ │ │ └── logger.ts
│ │ ├── tsconfig.build.json
│ │ └── tsconfig.json
│ ├── docusaurus-plugin-llm-dev-server/
│ │ ├── README.md
│ │ ├── babel.config.cjs
│ │ ├── package.json
│ │ ├── project.json
│ │ ├── src/
│ │ │ └── index.ts
│ │ ├── tsconfig.build.json
│ │ └── tsconfig.json
│ ├── eslint-plugin-internal/
│ │ ├── README.md
│ │ ├── jest.config.mjs
│ │ ├── package.json
│ │ ├── project.json
│ │ └── src/
│ │ ├── deprecated-jsdoc-has-removal-version/
│ │ │ ├── index.mjs
│ │ │ └── index.test.mjs
│ │ ├── example-screen-contains-example/
│ │ │ ├── index.mjs
│ │ │ └── index.test.mjs
│ │ ├── example-screen-default/
│ │ │ ├── index.mjs
│ │ │ └── index.test.mjs
│ │ ├── figma-connect-imports-package-match/
│ │ │ ├── index.mjs
│ │ │ └── index.test.mjs
│ │ ├── figma-connect-imports-required/
│ │ │ ├── index.mjs
│ │ │ └── index.test.mjs
│ │ ├── index.mjs
│ │ ├── no-deprecated-jsdoc/
│ │ │ ├── index.mjs
│ │ │ └── index.test.mjs
│ │ ├── no-object-rest-spread-in-worklet/
│ │ │ ├── index.mjs
│ │ │ └── index.test.mjs
│ │ ├── no-typescript-in-jsx-codeblock/
│ │ │ ├── index.mjs
│ │ │ └── index.test.mjs
│ │ └── safely-spread-props/
│ │ ├── README.md
│ │ ├── index.mjs
│ │ └── index.test.mjs
│ ├── static-assets/
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── shard-assets.sh
│ │ ├── static-assets.Dockerfile
│ │ ├── static-assets.Dockerfile.dockerignore
│ │ └── static-assets.docker-compose.yml
│ └── web-utils/
│ ├── README
│ ├── babel.config.cjs
│ ├── package.json
│ ├── project.json
│ ├── src/
│ │ ├── babel/
│ │ │ ├── linariaCssExtractPlugin.ts
│ │ │ ├── linariaPreset.ts
│ │ │ └── types.d.ts
│ │ ├── index.ts
│ │ └── jest/
│ │ ├── index.ts
│ │ └── renderA11y.ts
│ ├── tsconfig.build.json
│ └── tsconfig.json
├── nx.json
├── package.json
├── packages/
│ ├── common/
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── babel.config.cjs
│ │ ├── deploy.yml
│ │ ├── docker-compose.yml
│ │ ├── jest.config.js
│ │ ├── package.json
│ │ ├── project.json
│ │ ├── publish.Dockerfile
│ │ ├── src/
│ │ │ ├── accordion/
│ │ │ │ ├── AccordionProvider.tsx
│ │ │ │ └── __tests__/
│ │ │ │ └── AccordionProvider.test.tsx
│ │ │ ├── animation/
│ │ │ │ ├── accordion.ts
│ │ │ │ ├── border.ts
│ │ │ │ ├── carousel.ts
│ │ │ │ ├── collapsible.ts
│ │ │ │ ├── dot.ts
│ │ │ │ ├── drawer.ts
│ │ │ │ ├── dropdown.ts
│ │ │ │ ├── fullscreenModal.ts
│ │ │ │ ├── likeButton.ts
│ │ │ │ ├── menu.ts
│ │ │ │ ├── modal.ts
│ │ │ │ ├── overlay.ts
│ │ │ │ ├── paddle.ts
│ │ │ │ ├── progress.ts
│ │ │ │ ├── rotate.ts
│ │ │ │ ├── select.ts
│ │ │ │ ├── sparkline.ts
│ │ │ │ ├── tabs.ts
│ │ │ │ ├── toast.ts
│ │ │ │ └── tooltip.ts
│ │ │ ├── cards/
│ │ │ │ └── getCardBodySpacingProps.ts
│ │ │ ├── carousel/
│ │ │ │ ├── __tests__/
│ │ │ │ │ └── useCarouselAutoplay.test.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── useCarouselAutoplay.ts
│ │ │ ├── chips/
│ │ │ │ └── getMediaChipSpacingProps.ts
│ │ │ ├── color/
│ │ │ │ ├── __tests__/
│ │ │ │ │ ├── blendColors.test.ts
│ │ │ │ │ ├── isLightOrDarkColor.test.ts
│ │ │ │ │ └── overrideAlpha.test.ts
│ │ │ │ ├── blendColors.ts
│ │ │ │ ├── colorToHex.ts
│ │ │ │ ├── darkenColor.ts
│ │ │ │ ├── getAccessibleForegroundGradient.ts
│ │ │ │ ├── getBlendedColor.ts
│ │ │ │ ├── getContrastRatio.ts
│ │ │ │ ├── getLuminance.ts
│ │ │ │ ├── isAccessibleColor.ts
│ │ │ │ ├── isLightOrDarkColor.ts
│ │ │ │ └── overrideAlpha.ts
│ │ │ ├── core/
│ │ │ │ └── theme.ts
│ │ │ ├── dates/
│ │ │ │ ├── DateInputValidationError.ts
│ │ │ │ ├── IntlDateFormat.ts
│ │ │ │ ├── __tests__/
│ │ │ │ │ ├── IntlDateFormat.test.ts
│ │ │ │ │ └── useDateInput.test.ts
│ │ │ │ ├── generateCalendarMonth.ts
│ │ │ │ ├── getISOStringLocal.ts
│ │ │ │ ├── getMidnightDate.ts
│ │ │ │ ├── getTimesFromDatesAndRanges.ts
│ │ │ │ ├── useDateInput.ts
│ │ │ │ └── useDateInputValidation.ts
│ │ │ ├── hooks/
│ │ │ │ ├── __tests__/
│ │ │ │ │ ├── useFallbackShape.test.ts
│ │ │ │ │ ├── useMergeRefs.test.ts
│ │ │ │ │ ├── usePrefixedId.test.ts
│ │ │ │ │ ├── usePreviousValue.test.ts
│ │ │ │ │ ├── useRefMap.test.ts
│ │ │ │ │ ├── useSort.test.ts
│ │ │ │ │ └── useTimer.test.ts
│ │ │ │ ├── useEventHandler.ts
│ │ │ │ ├── useFallbackShape.ts
│ │ │ │ ├── useGroupToggler.ts
│ │ │ │ ├── useHasMounted.ts
│ │ │ │ ├── useIndexCounter.ts
│ │ │ │ ├── useInputVariant.ts
│ │ │ │ ├── useLogo.ts
│ │ │ │ ├── useMergeRefs.ts
│ │ │ │ ├── usePrefixedId.ts
│ │ │ │ ├── usePreviousValue.ts
│ │ │ │ ├── usePreviousValues.ts
│ │ │ │ ├── useRefMap.ts
│ │ │ │ ├── useSort.ts
│ │ │ │ ├── useSubBrandLogo.ts
│ │ │ │ ├── useTimer.ts
│ │ │ │ ├── useToggler.ts
│ │ │ │ └── useValueChanges.ts
│ │ │ ├── index.ts
│ │ │ ├── internal/
│ │ │ │ ├── data/
│ │ │ │ │ ├── accounts.ts
│ │ │ │ │ ├── announcementCards.ts
│ │ │ │ │ ├── asset.ts
│ │ │ │ │ ├── assets.ts
│ │ │ │ │ ├── avatars.ts
│ │ │ │ │ ├── candles.ts
│ │ │ │ │ ├── dataCards.ts
│ │ │ │ │ ├── featureEntryCards.ts
│ │ │ │ │ ├── feedImages.ts
│ │ │ │ │ ├── iconData.ts
│ │ │ │ │ ├── loremIpsum.ts
│ │ │ │ │ ├── navigation.ts
│ │ │ │ │ ├── prices.ts
│ │ │ │ │ ├── product.ts
│ │ │ │ │ ├── tabs.ts
│ │ │ │ │ └── users.ts
│ │ │ │ ├── utils/
│ │ │ │ │ └── storyBuilder.tsx
│ │ │ │ └── visualizations/
│ │ │ │ └── SparklineInteractiveData.tsx
│ │ │ ├── jest/
│ │ │ │ └── timeTravel.ts
│ │ │ ├── lottie/
│ │ │ │ ├── lottieUtils.test.ts
│ │ │ │ ├── lottieUtils.ts
│ │ │ │ ├── statusToAccessibilityLabel.ts
│ │ │ │ └── useStatusAnimationPoller.ts
│ │ │ ├── media/
│ │ │ │ ├── getAvatarFallbackColor.ts
│ │ │ │ └── remoteImageFallbackSrc.ts
│ │ │ ├── motion/
│ │ │ │ ├── animatedCaret.ts
│ │ │ │ ├── checkbox.ts
│ │ │ │ ├── dot.ts
│ │ │ │ ├── hint.ts
│ │ │ │ ├── switch.ts
│ │ │ │ ├── tokens.ts
│ │ │ │ └── utils.ts
│ │ │ ├── numbers/
│ │ │ │ ├── IntlNumberFormat.ts
│ │ │ │ ├── __tests__/
│ │ │ │ │ ├── formatToParts.test.ts
│ │ │ │ │ └── subscript.test.ts
│ │ │ │ ├── subscript.ts
│ │ │ │ └── useValueChangeDirection.ts
│ │ │ ├── overlays/
│ │ │ │ ├── ModalContext.ts
│ │ │ │ ├── OverlayContentContext.tsx
│ │ │ │ ├── PortalContext.tsx
│ │ │ │ ├── ToastProvider.tsx
│ │ │ │ ├── __tests__/
│ │ │ │ │ ├── useOverlay.test.tsx
│ │ │ │ │ └── useToastQueue.test.tsx
│ │ │ │ ├── useAlert.ts
│ │ │ │ ├── useModal.ts
│ │ │ │ ├── useOverlay.ts
│ │ │ │ ├── usePortal.ts
│ │ │ │ ├── usePortalState.ts
│ │ │ │ └── useToastQueue.ts
│ │ │ ├── select/
│ │ │ │ ├── useMultiSelect.test.ts
│ │ │ │ └── useMultiSelect.ts
│ │ │ ├── stepper/
│ │ │ │ ├── __tests__/
│ │ │ │ │ ├── useStepper.test.ts
│ │ │ │ │ └── utils.test.ts
│ │ │ │ ├── useStepper.ts
│ │ │ │ └── utils.ts
│ │ │ ├── system/
│ │ │ │ ├── EventHandlerProvider.tsx
│ │ │ │ ├── LocaleProvider.tsx
│ │ │ │ ├── RefMapContext.tsx
│ │ │ │ └── __tests__/
│ │ │ │ └── EventHandlerProvider.test.tsx
│ │ │ ├── tabs/
│ │ │ │ ├── TabsContext.ts
│ │ │ │ ├── __tests__/
│ │ │ │ │ ├── TabsContext.test.tsx
│ │ │ │ │ └── useTabs.test.tsx
│ │ │ │ └── useTabs.ts
│ │ │ ├── tokens/
│ │ │ │ ├── accordion.ts
│ │ │ │ ├── appSwitcher.ts
│ │ │ │ ├── avatar.ts
│ │ │ │ ├── banner.ts
│ │ │ │ ├── borderRadius.ts
│ │ │ │ ├── button.ts
│ │ │ │ ├── card.ts
│ │ │ │ ├── cell.ts
│ │ │ │ ├── chip.ts
│ │ │ │ ├── dot.ts
│ │ │ │ ├── drawer.ts
│ │ │ │ ├── illustrations.ts
│ │ │ │ ├── input.ts
│ │ │ │ ├── interactable.ts
│ │ │ │ ├── interactableHeight.ts
│ │ │ │ ├── menu.ts
│ │ │ │ ├── multiContentModule.ts
│ │ │ │ ├── navigation.ts
│ │ │ │ ├── overlays.ts
│ │ │ │ ├── page.ts
│ │ │ │ ├── select.ts
│ │ │ │ ├── sidebar.ts
│ │ │ │ ├── sizing.ts
│ │ │ │ ├── sparkline.ts
│ │ │ │ ├── tags.ts
│ │ │ │ ├── tile.ts
│ │ │ │ ├── toast.ts
│ │ │ │ ├── tooltip.ts
│ │ │ │ └── zIndex.ts
│ │ │ ├── tour/
│ │ │ │ ├── TourContext.ts
│ │ │ │ ├── __tests__/
│ │ │ │ │ ├── TourContext.test.tsx
│ │ │ │ │ └── useTour.test.tsx
│ │ │ │ └── useTour.ts
│ │ │ ├── types/
│ │ │ │ ├── AvatarBaseProps.ts
│ │ │ │ ├── AvatarSize.ts
│ │ │ │ ├── BannerBaseProps.ts
│ │ │ │ ├── BoxBaseProps.ts
│ │ │ │ ├── ButtonBaseProps.ts
│ │ │ │ ├── CardHeaderProps.ts
│ │ │ │ ├── CardMediaProps.ts
│ │ │ │ ├── CardRemoteImageProps.ts
│ │ │ │ ├── CdsPlatform.ts
│ │ │ │ ├── CellBaseProps.ts
│ │ │ │ ├── Chart.ts
│ │ │ │ ├── CollapsibleBaseProps.ts
│ │ │ │ ├── Color.ts
│ │ │ │ ├── ComponentEventHandlerProps.ts
│ │ │ │ ├── DimensionStyles.ts
│ │ │ │ ├── Display.ts
│ │ │ │ ├── DotBaseProps.ts
│ │ │ │ ├── DotCountBaseProps.ts
│ │ │ │ ├── ElevationLevels.ts
│ │ │ │ ├── FallbackBaseProps.ts
│ │ │ │ ├── Grid.ts
│ │ │ │ ├── Helpers.ts
│ │ │ │ ├── IconButtonBaseProps.ts
│ │ │ │ ├── IconName.ts
│ │ │ │ ├── IconSize.ts
│ │ │ │ ├── IllustrationNames.ts
│ │ │ │ ├── IllustrationProps.ts
│ │ │ │ ├── InputBaseProps.ts
│ │ │ │ ├── LottiePlayer.ts
│ │ │ │ ├── LottieSource.ts
│ │ │ │ ├── LottieStatus.ts
│ │ │ │ ├── LottieStatusAnimationProps.ts
│ │ │ │ ├── Motion.ts
│ │ │ │ ├── OverlayLifecycleProps.ts
│ │ │ │ ├── Palette.ts
│ │ │ │ ├── Placement.ts
│ │ │ │ ├── Position.ts
│ │ │ │ ├── ProgressContainerWithButtonsProps.ts
│ │ │ │ ├── PulseBaseProps.ts
│ │ │ │ ├── React.ts
│ │ │ │ ├── Rect.ts
│ │ │ │ ├── Responsive.ts
│ │ │ │ ├── ResponsiveProps.ts
│ │ │ │ ├── SectionHeaderProps.ts
│ │ │ │ ├── Shape.ts
│ │ │ │ ├── SharedAccessibilityProps.ts
│ │ │ │ ├── SharedProps.ts
│ │ │ │ ├── SpacingProps.ts
│ │ │ │ ├── SparklineInteractiveHeaderBaseProps.ts
│ │ │ │ ├── SpreadPropsSafely.ts
│ │ │ │ ├── StickyFooterProps.ts
│ │ │ │ ├── TagBaseProps.ts
│ │ │ │ ├── TextBaseProps.ts
│ │ │ │ ├── TooltipBaseProps.ts
│ │ │ │ ├── TypeOrNumber.ts
│ │ │ │ ├── Visibility.ts
│ │ │ │ ├── Weight.ts
│ │ │ │ └── index.ts
│ │ │ ├── utils/
│ │ │ │ ├── __tests__/
│ │ │ │ │ ├── cell.test.ts
│ │ │ │ │ ├── chart.test.ts
│ │ │ │ │ ├── flattenNodes.test.tsx
│ │ │ │ │ ├── formatCount.test.ts
│ │ │ │ │ └── getRectWidthVariant.test.ts
│ │ │ │ ├── cell.ts
│ │ │ │ ├── chart.ts
│ │ │ │ ├── circle.ts
│ │ │ │ ├── convertDimensionToAspectRatio.ts
│ │ │ │ ├── convertDimensionToSize.ts
│ │ │ │ ├── convertSizeWithMultiplier.ts
│ │ │ │ ├── debounce.ts
│ │ │ │ ├── delay.ts
│ │ │ │ ├── flattenNodes.ts
│ │ │ │ ├── formatCount.ts
│ │ │ │ ├── getAccessibleColor.ts
│ │ │ │ ├── getButtonSpacingProps.ts
│ │ │ │ ├── getDefaultAspectRatioForIllustration.ts
│ │ │ │ ├── getDefaultSizeObjectForIllustration.ts
│ │ │ │ ├── getRectWidthVariant.ts
│ │ │ │ ├── getWidthInEm.ts
│ │ │ │ ├── join.tsx
│ │ │ │ ├── mergeProps.ts
│ │ │ │ ├── mockUtils.ts
│ │ │ │ ├── modulate.ts
│ │ │ │ └── parseDotCountMaxOverflow.ts
│ │ │ └── visualizations/
│ │ │ ├── __tests__/
│ │ │ │ ├── getSparklineRange.test.ts
│ │ │ │ ├── largestTriangleThreeBucket.test.ts
│ │ │ │ ├── useCounter.test.ts
│ │ │ │ ├── useSparklineArea.test.ts
│ │ │ │ ├── useSparklineCoordinates.test.ts
│ │ │ │ └── useSparklinePath.test.ts
│ │ │ ├── getProgressCircleParams.tsx
│ │ │ ├── getProgressSize.ts
│ │ │ ├── getSparklineRange.ts
│ │ │ ├── getSparklineTransform.ts
│ │ │ ├── largestTriangleThreeBucket.ts
│ │ │ ├── useCounter.ts
│ │ │ ├── useDateLookup.ts
│ │ │ ├── useProgressSize.ts
│ │ │ ├── useSparklineArea.tsx
│ │ │ ├── useSparklineAreaOpacity.ts
│ │ │ ├── useSparklineCoordinates.ts
│ │ │ ├── useSparklinePath.ts
│ │ │ ├── useSparklinePathGenerator.ts
│ │ │ ├── useTimeseriesPaths.ts
│ │ │ └── useVisualizationDimensions.ts
│ │ ├── tsconfig.build.json
│ │ └── tsconfig.json
│ ├── eslint-plugin-cds/
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── babel.config.cjs
│ │ ├── deploy.yml
│ │ ├── docker-compose.yml
│ │ ├── jest.config.mjs
│ │ ├── package.json
│ │ ├── project.json
│ │ ├── publish.Dockerfile
│ │ ├── rollup.config.mjs
│ │ ├── scripts/
│ │ │ └── scaffold-new-rule.mjs
│ │ ├── src/
│ │ │ ├── configs/
│ │ │ │ ├── mobile.ts
│ │ │ │ └── web.ts
│ │ │ ├── index.ts
│ │ │ ├── rules/
│ │ │ │ ├── control-has-associated-label-extended.ts
│ │ │ │ ├── has-valid-accessibility-descriptors-extended.ts
│ │ │ │ ├── mobile-chart-scrubbing-accessibility.ts
│ │ │ │ ├── no-v7-imports.ts
│ │ │ │ ├── web-chart-scrubbing-accessibility.ts
│ │ │ │ └── web-tooltip-interactive-content.ts
│ │ │ ├── rules.ts
│ │ │ ├── templates/
│ │ │ │ ├── custom-rule.test.ts
│ │ │ │ └── custom-rule.ts
│ │ │ └── utils/
│ │ │ ├── checkForInnerText.ts
│ │ │ ├── extractA11yAttributesState.ts
│ │ │ ├── getAttribute.ts
│ │ │ ├── getSimpleNameFromJSX.ts
│ │ │ └── isTruthyJSXBooleanAttribute.ts
│ │ ├── tests/
│ │ │ ├── control-has-associated-label-extended.test.ts
│ │ │ ├── has-valid-accessibility-descriptors-extended.test.ts
│ │ │ ├── mobile-chart-scrubbing-accessibility.test.ts
│ │ │ ├── no-v7-imports.test.ts
│ │ │ ├── normalizeIndent.ts
│ │ │ ├── web-chart-scrubbing-accessibility.test.ts
│ │ │ └── web-tooltip-interactive-content.test.ts
│ │ ├── tsconfig.build.json
│ │ ├── tsconfig.json
│ │ └── tsconfig.test.json
│ ├── icons/
│ │ ├── .npmignore
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── babel.config.cjs
│ │ ├── deploy.yml
│ │ ├── docker-compose.yml
│ │ ├── manifest.json
│ │ ├── package.json
│ │ ├── project.json
│ │ ├── publish.Dockerfile
│ │ ├── src/
│ │ │ ├── IconName.ts
│ │ │ ├── descriptionMap.ts
│ │ │ ├── fonts/
│ │ │ │ └── web/
│ │ │ │ └── icon-font.css
│ │ │ ├── glyphMap.ts
│ │ │ ├── index.ts
│ │ │ └── names.ts
│ │ ├── tsconfig.build.json
│ │ └── tsconfig.json
│ ├── illustrations/
│ │ ├── .npmignore
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── babel.config.cjs
│ │ ├── deploy.yml
│ │ ├── docker-compose.yml
│ │ ├── manifest.json
│ │ ├── package.json
│ │ ├── project.json
│ │ ├── publish.Dockerfile
│ │ ├── scripts/
│ │ │ ├── generateStories.ts
│ │ │ └── writeStories.ts
│ │ ├── src/
│ │ │ ├── __generated__/
│ │ │ │ ├── heroSquare/
│ │ │ │ │ ├── data/
│ │ │ │ │ │ ├── descriptionMap.ts
│ │ │ │ │ │ ├── names.ts
│ │ │ │ │ │ ├── svgEsmMap.ts
│ │ │ │ │ │ ├── svgJsMap.ts
│ │ │ │ │ │ └── versionMap.ts
│ │ │ │ │ ├── svgJs/
│ │ │ │ │ │ ├── cjs/
│ │ │ │ │ │ │ ├── dark/
│ │ │ │ │ │ │ │ ├── accessToAdvancedCharts-5.js
│ │ │ │ │ │ │ │ ├── accountUnderReview-3.js
│ │ │ │ │ │ │ │ ├── add2Fa-5.js
│ │ │ │ │ │ │ │ ├── addBankAccount-4.js
│ │ │ │ │ │ │ │ ├── addCreditCard-4.js
│ │ │ │ │ │ │ │ ├── addMoreCrypto-4.js
│ │ │ │ │ │ │ │ ├── addPhoneNumber-4.js
│ │ │ │ │ │ │ │ ├── advancedTrading-5.js
│ │ │ │ │ │ │ │ ├── advancedTradingChartsIndicatorsCandles-3.js
│ │ │ │ │ │ │ │ ├── advancedTradingUi-3.js
│ │ │ │ │ │ │ │ ├── airdrop-2.js
│ │ │ │ │ │ │ │ ├── alienDonutSystemError-4.js
│ │ │ │ │ │ │ │ ├── anonymous-1.js
│ │ │ │ │ │ │ │ ├── appTrackingTransparency-5.js
│ │ │ │ │ │ │ │ ├── artFrameEmptyState-5.js
│ │ │ │ │ │ │ │ ├── automaticPayments-3.js
│ │ │ │ │ │ │ │ ├── backedByUsDollar-5.js
│ │ │ │ │ │ │ │ ├── baseChartLarge-1.js
│ │ │ │ │ │ │ │ ├── baseCheck-1.js
│ │ │ │ │ │ │ │ ├── baseCoinCryptoLarge-1.js
│ │ │ │ │ │ │ │ ├── baseCoinNetworkLarge-1.js
│ │ │ │ │ │ │ │ ├── baseConnectLarge-1.js
│ │ │ │ │ │ │ │ ├── baseCreatorCoin-1.js
│ │ │ │ │ │ │ │ ├── baseCreatorCoinEmpty-1.js
│ │ │ │ │ │ │ │ ├── baseDecentralizationLarge-1.js
│ │ │ │ │ │ │ │ ├── baseEmptyLarge-1.js
│ │ │ │ │ │ │ │ ├── baseErrorButterfly-0.js
│ │ │ │ │ │ │ │ ├── baseErrorLarge-1.js
│ │ │ │ │ │ │ │ ├── baseLoadingLarge-1.js
│ │ │ │ │ │ │ │ ├── baseLocationLarge-1.js
│ │ │ │ │ │ │ │ ├── baseMintNftLarge-1.js
│ │ │ │ │ │ │ │ ├── baseNetworkLarge-1.js
│ │ │ │ │ │ │ │ ├── baseNftLarge-1.js
│ │ │ │ │ │ │ │ ├── basePaycoinLarge-1.js
│ │ │ │ │ │ │ │ ├── basePeopleLarge-1.js
│ │ │ │ │ │ │ │ ├── basePiechartLarge-1.js
│ │ │ │ │ │ │ │ ├── baseRewardsCalmLarge-1.js
│ │ │ │ │ │ │ │ ├── baseSecurityLarge-1.js
│ │ │ │ │ │ │ │ ├── baseSendLarge-1.js
│ │ │ │ │ │ │ │ ├── baseSocial-2.js
│ │ │ │ │ │ │ │ ├── baseTargetLarge-1.js
│ │ │ │ │ │ │ │ ├── basedInUsa-5.js
│ │ │ │ │ │ │ │ ├── bigBtc-6.js
│ │ │ │ │ │ │ │ ├── bigError-5.js
│ │ │ │ │ │ │ │ ├── bigWarning-5.js
│ │ │ │ │ │ │ │ ├── bitcoinAndOtherCrypto-3.js
│ │ │ │ │ │ │ │ ├── bitcoinGlobe-5.js
│ │ │ │ │ │ │ │ ├── blockchain-3.js
│ │ │ │ │ │ │ │ ├── borrow-4.js
│ │ │ │ │ │ │ │ ├── borrowCoins-2.js
│ │ │ │ │ │ │ │ ├── borrowCoinsBtc-0.js
│ │ │ │ │ │ │ │ ├── borrowWallet-5.js
│ │ │ │ │ │ │ │ ├── brdGift-4.js
│ │ │ │ │ │ │ │ ├── bridge-2.js
│ │ │ │ │ │ │ │ ├── browseDecentralizedApps-6.js
│ │ │ │ │ │ │ │ ├── browserExtension-4.js
│ │ │ │ │ │ │ │ ├── buy-1.js
│ │ │ │ │ │ │ │ ├── buyFirstCrypto-4.js
│ │ │ │ │ │ │ │ ├── camera-4.js
│ │ │ │ │ │ │ │ ├── cardAndPhone-2.js
│ │ │ │ │ │ │ │ ├── cardBoosted-3.js
│ │ │ │ │ │ │ │ ├── cardError-4.js
│ │ │ │ │ │ │ │ ├── cardErrorCB1-0.js
│ │ │ │ │ │ │ │ ├── cardReloadFunds-3.js
│ │ │ │ │ │ │ │ ├── cashExcitement-3.js
│ │ │ │ │ │ │ │ ├── catHoldingWalletEmptyState-4.js
│ │ │ │ │ │ │ │ ├── catLostSystemError-3.js
│ │ │ │ │ │ │ │ ├── cbada-0.js
│ │ │ │ │ │ │ │ ├── cbbtc-2.js
│ │ │ │ │ │ │ │ ├── cbdoge-0.js
│ │ │ │ │ │ │ │ ├── cbltc-0.js
│ │ │ │ │ │ │ │ ├── cbmega-0.js
│ │ │ │ │ │ │ │ ├── cbxrp-0.js
│ │ │ │ │ │ │ │ ├── chickenFishSystemError-3.js
│ │ │ │ │ │ │ │ ├── claimCryptoUsername-2.js
│ │ │ │ │ │ │ │ ├── cloud-1.js
│ │ │ │ │ │ │ │ ├── cloudBacking-3.js
│ │ │ │ │ │ │ │ ├── coinCheckmark-4.js
│ │ │ │ │ │ │ │ ├── coinFifty-1.js
│ │ │ │ │ │ │ │ ├── coinbaseCard-3.js
│ │ │ │ │ │ │ │ ├── coinbaseCardIssue-3.js
│ │ │ │ │ │ │ │ ├── coinbaseCardLock-3.js
│ │ │ │ │ │ │ │ ├── coinbaseCardPocket-3.js
│ │ │ │ │ │ │ │ ├── coinbaseCardSpend-3.js
│ │ │ │ │ │ │ │ ├── coinbaseCardSpendCrypto-4.js
│ │ │ │ │ │ │ │ ├── coinbaseFees-3.js
│ │ │ │ │ │ │ │ ├── coinbaseIsDown-5.js
│ │ │ │ │ │ │ │ ├── coinbaseIsDownMobile-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneAirdrop-1.js
│ │ │ │ │ │ │ │ ├── coinbaseOneCardWarning-3.js
│ │ │ │ │ │ │ │ ├── coinbaseOneDiscountedAmount-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneDocWarning-3.js
│ │ │ │ │ │ │ │ ├── coinbaseOneEarn-2.js
│ │ │ │ │ │ │ │ ├── coinbaseOneInsufficientWallet-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneLogo-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOnePercentOff-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOnePhoneLightning-5.js
│ │ │ │ │ │ │ │ ├── coinbaseOneProtectedCrypto-3.js
│ │ │ │ │ │ │ │ ├── coinbaseOneRewards-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneSavingFunds-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneTokenRewards-3.js
│ │ │ │ │ │ │ │ ├── coinbaseOneUSDCBig-1.js
│ │ │ │ │ │ │ │ ├── coinbaseOneUSDCIncentives-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneWaitlist-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneWalletWarning-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneWelcome-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneZeroPortal-1.js
│ │ │ │ │ │ │ │ ├── coinbaseOneZeroPromotion-1.js
│ │ │ │ │ │ │ │ ├── coinbaseRedesigned-3.js
│ │ │ │ │ │ │ │ ├── coinbaseWalletToTrade-3.js
│ │ │ │ │ │ │ │ ├── coinsInWallet-3.js
│ │ │ │ │ │ │ │ ├── collectableNfts-6.js
│ │ │ │ │ │ │ │ ├── collectingNfts-5.js
│ │ │ │ │ │ │ │ ├── commerceAccounting-4.js
│ │ │ │ │ │ │ │ ├── commerceInvoices-3.js
│ │ │ │ │ │ │ │ ├── communication-1.js
│ │ │ │ │ │ │ │ ├── completeAQuiz-4.js
│ │ │ │ │ │ │ │ ├── congratulationsOnEarningCrypto-3.js
│ │ │ │ │ │ │ │ ├── connectPeople-2.js
│ │ │ │ │ │ │ │ ├── contactsListWarning-3.js
│ │ │ │ │ │ │ │ ├── crossBorderPayments-5.js
│ │ │ │ │ │ │ │ ├── cryptoAndMore-4.js
│ │ │ │ │ │ │ │ ├── cryptoApps-5.js
│ │ │ │ │ │ │ │ ├── cryptoAppsWallet-5.js
│ │ │ │ │ │ │ │ ├── cryptoAssets-6.js
│ │ │ │ │ │ │ │ ├── cryptoEconomy-4.js
│ │ │ │ │ │ │ │ ├── cryptoForBeginners-4.js
│ │ │ │ │ │ │ │ ├── cryptoPortfolio-4.js
│ │ │ │ │ │ │ │ ├── cryptoPortfolioUsdc-0.js
│ │ │ │ │ │ │ │ ├── cryptoWallet-5.js
│ │ │ │ │ │ │ │ ├── currencyPairs-5.js
│ │ │ │ │ │ │ │ ├── dappsArts-4.js
│ │ │ │ │ │ │ │ ├── dappsFinance-6.js
│ │ │ │ │ │ │ │ ├── dappsGaming-4.js
│ │ │ │ │ │ │ │ ├── dappsGeneral-2.js
│ │ │ │ │ │ │ │ ├── dappsL2Support-5.js
│ │ │ │ │ │ │ │ ├── dappsMusic-5.js
│ │ │ │ │ │ │ │ ├── decentralization-5.js
│ │ │ │ │ │ │ │ ├── decentralizedWebWeb3-5.js
│ │ │ │ │ │ │ │ ├── defiDecentralizedBorrowingLending-4.js
│ │ │ │ │ │ │ │ ├── defiDecentralizedTradingExchange-5.js
│ │ │ │ │ │ │ │ ├── defiEarn-3.js
│ │ │ │ │ │ │ │ ├── defiEnrollBoost-3.js
│ │ │ │ │ │ │ │ ├── defiHow-4.js
│ │ │ │ │ │ │ │ ├── defiRisk-3.js
│ │ │ │ │ │ │ │ ├── desktopAuthorized-4.js
│ │ │ │ │ │ │ │ ├── desktopUnknown-3.js
│ │ │ │ │ │ │ │ ├── developer-1.js
│ │ │ │ │ │ │ │ ├── diamondHands-6.js
│ │ │ │ │ │ │ │ ├── didDecentralizedIdentity-4.js
│ │ │ │ │ │ │ │ ├── digitalCollectibles-5.js
│ │ │ │ │ │ │ │ ├── digitalGold-1.js
│ │ │ │ │ │ │ │ ├── directDepositPhone-5.js
│ │ │ │ │ │ │ │ ├── discardAssets-5.js
│ │ │ │ │ │ │ │ ├── docError-3.js
│ │ │ │ │ │ │ │ ├── documentCertified-3.js
│ │ │ │ │ │ │ │ ├── documentSuccess-3.js
│ │ │ │ │ │ │ │ ├── downloadCoinbaseWallet-6.js
│ │ │ │ │ │ │ │ ├── earn-3.js
│ │ │ │ │ │ │ │ ├── earnCryptoCard-4.js
│ │ │ │ │ │ │ │ ├── earnCryptoInterest-5.js
│ │ │ │ │ │ │ │ ├── earnGlobe-1.js
│ │ │ │ │ │ │ │ ├── earnGrowth-4.js
│ │ │ │ │ │ │ │ ├── earnIdVerification-3.js
│ │ │ │ │ │ │ │ ├── earnInterest-4.js
│ │ │ │ │ │ │ │ ├── earnMore-4.js
│ │ │ │ │ │ │ │ ├── earnNuxHome-5.js
│ │ │ │ │ │ │ │ ├── earnSuccess-5.js
│ │ │ │ │ │ │ │ ├── earnToLearn-4.js
│ │ │ │ │ │ │ │ ├── emailNotification-4.js
│ │ │ │ │ │ │ │ ├── emptyCollection-5.js
│ │ │ │ │ │ │ │ ├── emptyStateCheckBackLater-5.js
│ │ │ │ │ │ │ │ ├── emptyStateNft404Page-4.js
│ │ │ │ │ │ │ │ ├── emptyStateNftSoldOut-4.js
│ │ │ │ │ │ │ │ ├── enableBiometrics-5.js
│ │ │ │ │ │ │ │ ├── encryptedEverything-4.js
│ │ │ │ │ │ │ │ ├── engagement-2.js
│ │ │ │ │ │ │ │ ├── ensProfilePic-2.js
│ │ │ │ │ │ │ │ ├── error400-4.js
│ │ │ │ │ │ │ │ ├── errorApp500-6.js
│ │ │ │ │ │ │ │ ├── errorMoblie-1.js
│ │ │ │ │ │ │ │ ├── errorRefresh-4.js
│ │ │ │ │ │ │ │ ├── errorRefreshWeb-1.js
│ │ │ │ │ │ │ │ ├── errorWeb-1.js
│ │ │ │ │ │ │ │ ├── errorWeb400-4.js
│ │ │ │ │ │ │ │ ├── errorWeb404-6.js
│ │ │ │ │ │ │ │ ├── errorWeb404Mobile-1.js
│ │ │ │ │ │ │ │ ├── errorWeb500-4.js
│ │ │ │ │ │ │ │ ├── estimatedAmount-3.js
│ │ │ │ │ │ │ │ ├── ethStakingRewards-4.js
│ │ │ │ │ │ │ │ ├── ethStakingUpsell-5.js
│ │ │ │ │ │ │ │ ├── ethereumToWallet-6.js
│ │ │ │ │ │ │ │ ├── exchange-1.js
│ │ │ │ │ │ │ │ ├── exchangeEmptyState-5.js
│ │ │ │ │ │ │ │ ├── exploreDecentralizedApps-7.js
│ │ │ │ │ │ │ │ ├── faceMatchReal-4.js
│ │ │ │ │ │ │ │ ├── feeScale-4.js
│ │ │ │ │ │ │ │ ├── fiat-1.js
│ │ │ │ │ │ │ │ ├── fileYourCryptoTaxes-5.js
│ │ │ │ │ │ │ │ ├── fileYourCryptoTaxesCheck-6.js
│ │ │ │ │ │ │ │ ├── flipStable-0.js
│ │ │ │ │ │ │ │ ├── focusLimitOrders-4.js
│ │ │ │ │ │ │ │ ├── freeBtc-4.js
│ │ │ │ │ │ │ │ ├── futures-6.js
│ │ │ │ │ │ │ │ ├── futuresAndPerps-0.js
│ │ │ │ │ │ │ │ ├── futuresExpire-0.js
│ │ │ │ │ │ │ │ ├── futuresVsPerps-0.js
│ │ │ │ │ │ │ │ ├── gainsAndLosses-4.js
│ │ │ │ │ │ │ │ ├── gamer-1.js
│ │ │ │ │ │ │ │ ├── gasFeesNetworkFees-4.js
│ │ │ │ │ │ │ │ ├── generative-2.js
│ │ │ │ │ │ │ │ ├── genniusLaunch-0.js
│ │ │ │ │ │ │ │ ├── getStartedInMinutes-4.js
│ │ │ │ │ │ │ │ ├── globalTransactions-5.js
│ │ │ │ │ │ │ │ ├── governance-4.js
│ │ │ │ │ │ │ │ ├── governanceMallet-1.js
│ │ │ │ │ │ │ │ ├── graphChartTrading-0.js
│ │ │ │ │ │ │ │ ├── hardwareWallets-4.js
│ │ │ │ │ │ │ │ ├── hiddenCollection-3.js
│ │ │ │ │ │ │ │ ├── holdCrypto-4.js
│ │ │ │ │ │ │ │ ├── holdingCrypto-3.js
│ │ │ │ │ │ │ │ ├── iceCreamMeltingSystemError-6.js
│ │ │ │ │ │ │ │ ├── idAngles-4.js
│ │ │ │ │ │ │ │ ├── idBack-2.js
│ │ │ │ │ │ │ │ ├── idCard-3.js
│ │ │ │ │ │ │ │ ├── idFront-3.js
│ │ │ │ │ │ │ │ ├── idIssue-3.js
│ │ │ │ │ │ │ │ ├── idVerificationSecure-5.js
│ │ │ │ │ │ │ │ ├── indexer-2.js
│ │ │ │ │ │ │ │ ├── innovation-2.js
│ │ │ │ │ │ │ │ ├── instantUnstakingClock-1.js
│ │ │ │ │ │ │ │ ├── instoAdd2Fa-0.js
│ │ │ │ │ │ │ │ ├── instoAddBankAccount-0.js
│ │ │ │ │ │ │ │ ├── instoCoinbaseOneProtectedCrypto-1.js
│ │ │ │ │ │ │ │ ├── instoDocumentSuccess-1.js
│ │ │ │ │ │ │ │ ├── instoEarnGlobe-0.js
│ │ │ │ │ │ │ │ ├── instoEnableBiometrics-0.js
│ │ │ │ │ │ │ │ ├── instoEthStakingRewards-0.js
│ │ │ │ │ │ │ │ ├── instoEthStakingUpsell-0.js
│ │ │ │ │ │ │ │ ├── instoGovernance-0.js
│ │ │ │ │ │ │ │ ├── instoKeyGenerationComplete-1.js
│ │ │ │ │ │ │ │ ├── instoKeyGenerationPending-0.js
│ │ │ │ │ │ │ │ ├── instoOnChain-2.js
│ │ │ │ │ │ │ │ ├── instoOpenEmail-1.js
│ │ │ │ │ │ │ │ ├── instoPhoneUnknown-0.js
│ │ │ │ │ │ │ │ ├── instoPrimeStaking-0.js
│ │ │ │ │ │ │ │ ├── instoPrivateKey-1.js
│ │ │ │ │ │ │ │ ├── instoRequestSent-1.js
│ │ │ │ │ │ │ │ ├── instoSecurityKeyAuth-0.js
│ │ │ │ │ │ │ │ ├── instoStaking-0.js
│ │ │ │ │ │ │ │ ├── instoStakingMissedReturns-1.js
│ │ │ │ │ │ │ │ ├── instoWallet-0.js
│ │ │ │ │ │ │ │ ├── instoWalletSecurity-0.js
│ │ │ │ │ │ │ │ ├── instoWeb3MobileSetupStart-0.js
│ │ │ │ │ │ │ │ ├── insufficientBalance-5.js
│ │ │ │ │ │ │ │ ├── insuranceProtection-4.js
│ │ │ │ │ │ │ │ ├── invest-3.js
│ │ │ │ │ │ │ │ ├── invite-4.js
│ │ │ │ │ │ │ │ ├── japanVerifyId-3.js
│ │ │ │ │ │ │ │ ├── keyGeneration-6.js
│ │ │ │ │ │ │ │ ├── layerOne-2.js
│ │ │ │ │ │ │ │ ├── layerThree-1.js
│ │ │ │ │ │ │ │ ├── layerTwo-2.js
│ │ │ │ │ │ │ │ ├── layeredNetworks-5.js
│ │ │ │ │ │ │ │ ├── ledgerAccess-4.js
│ │ │ │ │ │ │ │ ├── ledgerPlugin-4.js
│ │ │ │ │ │ │ │ ├── lend-1.js
│ │ │ │ │ │ │ │ ├── leverage-4.js
│ │ │ │ │ │ │ │ ├── lightningNetwork-1.js
│ │ │ │ │ │ │ │ ├── lightningNetworkInvoice-2.js
│ │ │ │ │ │ │ │ ├── lightningNetworkSend-1.js
│ │ │ │ │ │ │ │ ├── lightningNetworkTransfer-1.js
│ │ │ │ │ │ │ │ ├── limitOrders-5.js
│ │ │ │ │ │ │ │ ├── linkingYourWalletToYourCoinbaseAccount-8.js
│ │ │ │ │ │ │ │ ├── liquidationBufferGreen-1.js
│ │ │ │ │ │ │ │ ├── liquidationBufferRed-1.js
│ │ │ │ │ │ │ │ ├── liquidationBufferRedClose-1.js
│ │ │ │ │ │ │ │ ├── liquidationBufferYellow-0.js
│ │ │ │ │ │ │ │ ├── lowCost-2.js
│ │ │ │ │ │ │ │ ├── margin-3.js
│ │ │ │ │ │ │ │ ├── marginWarning-4.js
│ │ │ │ │ │ │ │ ├── mic-4.js
│ │ │ │ │ │ │ │ ├── mining-4.js
│ │ │ │ │ │ │ │ ├── minting-2.js
│ │ │ │ │ │ │ │ ├── moneyDecentralized-5.js
│ │ │ │ │ │ │ │ ├── moreGains-0.js
│ │ │ │ │ │ │ │ ├── multiPlatformMobileAppBrowserExtension-5.js
│ │ │ │ │ │ │ │ ├── multicoinSupport-4.js
│ │ │ │ │ │ │ │ ├── multipleAccountsWalletsForOneUser-5.js
│ │ │ │ │ │ │ │ ├── multiplePortfolios-1.js
│ │ │ │ │ │ │ │ ├── myNameIsSatoshi-3.js
│ │ │ │ │ │ │ │ ├── namePortfolio-1.js
│ │ │ │ │ │ │ │ ├── networkWarning-5.js
│ │ │ │ │ │ │ │ ├── noFees-4.js
│ │ │ │ │ │ │ │ ├── noFeesMotion-1.js
│ │ │ │ │ │ │ │ ├── noLongAddresses-2.js
│ │ │ │ │ │ │ │ ├── notificationsAlt-5.js
│ │ │ │ │ │ │ │ ├── notificationsAndUpdates-3.js
│ │ │ │ │ │ │ │ ├── offChain-1.js
│ │ │ │ │ │ │ │ ├── oilAndGold-2.js
│ │ │ │ │ │ │ │ ├── onChain-2.js
│ │ │ │ │ │ │ │ ├── onTheList-4.js
│ │ │ │ │ │ │ │ ├── openEmail-4.js
│ │ │ │ │ │ │ │ ├── optInPushNotificationsEmail-3.js
│ │ │ │ │ │ │ │ ├── options-0.js
│ │ │ │ │ │ │ │ ├── oracle-1.js
│ │ │ │ │ │ │ │ ├── orderBooks-3.js
│ │ │ │ │ │ │ │ ├── outage-1.js
│ │ │ │ │ │ │ │ ├── p2pGifting-4.js
│ │ │ │ │ │ │ │ ├── p2pPayments-5.js
│ │ │ │ │ │ │ │ ├── paperHands-3.js
│ │ │ │ │ │ │ │ ├── payUpFront-4.js
│ │ │ │ │ │ │ │ ├── pending-5.js
│ │ │ │ │ │ │ │ ├── performance-4.js
│ │ │ │ │ │ │ │ ├── phoneNumber-3.js
│ │ │ │ │ │ │ │ ├── phoneUnknown-3.js
│ │ │ │ │ │ │ │ ├── platform-1.js
│ │ │ │ │ │ │ │ ├── polling-3.js
│ │ │ │ │ │ │ │ ├── portfolioPerformance-5.js
│ │ │ │ │ │ │ │ ├── powerOfCrypto-6.js
│ │ │ │ │ │ │ │ ├── poweredByEthereum-5.js
│ │ │ │ │ │ │ │ ├── predictionsMarkets-0.js
│ │ │ │ │ │ │ │ ├── primeDeFi-4.js
│ │ │ │ │ │ │ │ ├── primeEarn-5.js
│ │ │ │ │ │ │ │ ├── primeStaking-5.js
│ │ │ │ │ │ │ │ ├── private-2.js
│ │ │ │ │ │ │ │ ├── privateKey-1.js
│ │ │ │ │ │ │ │ ├── processing-3.js
│ │ │ │ │ │ │ │ ├── protocol-1.js
│ │ │ │ │ │ │ │ ├── public-1.js
│ │ │ │ │ │ │ │ ├── quest-2.js
│ │ │ │ │ │ │ │ ├── quickAndSimple-5.js
│ │ │ │ │ │ │ │ ├── quickBuy-3.js
│ │ │ │ │ │ │ │ ├── ratingsAndReviews-5.js
│ │ │ │ │ │ │ │ ├── readyToTrade-4.js
│ │ │ │ │ │ │ │ ├── realToUSDC-1.js
│ │ │ │ │ │ │ │ ├── receiveGift-4.js
│ │ │ │ │ │ │ │ ├── receivedCard-3.js
│ │ │ │ │ │ │ │ ├── recommendInvest-6.js
│ │ │ │ │ │ │ │ ├── recurringReward-4.js
│ │ │ │ │ │ │ │ ├── referralsAvatars-6.js
│ │ │ │ │ │ │ │ ├── referralsBitcoin-6.js
│ │ │ │ │ │ │ │ ├── referralsCoinbaseOne-2.js
│ │ │ │ │ │ │ │ ├── referralsGenericCoin-1.js
│ │ │ │ │ │ │ │ ├── referralsWalletPhones-7.js
│ │ │ │ │ │ │ │ ├── refresh-0.js
│ │ │ │ │ │ │ │ ├── remittances-4.js
│ │ │ │ │ │ │ │ ├── requestSent-5.js
│ │ │ │ │ │ │ │ ├── restrictedCountry-7.js
│ │ │ │ │ │ │ │ ├── retailUSDCRewards-5.js
│ │ │ │ │ │ │ │ ├── reviewInfo-4.js
│ │ │ │ │ │ │ │ ├── rocket-4.js
│ │ │ │ │ │ │ │ ├── rotatingRewards-7.js
│ │ │ │ │ │ │ │ ├── routingAccount-4.js
│ │ │ │ │ │ │ │ ├── scalable-1.js
│ │ │ │ │ │ │ │ ├── secureAndTrusted-4.js
│ │ │ │ │ │ │ │ ├── secureGlobalTransactions-5.js
│ │ │ │ │ │ │ │ ├── secureStorage-5.js
│ │ │ │ │ │ │ │ ├── securityShield-4.js
│ │ │ │ │ │ │ │ ├── selectCorrectCrypto-4.js
│ │ │ │ │ │ │ │ ├── selectReward-3.js
│ │ │ │ │ │ │ │ ├── selfCustody-5.js
│ │ │ │ │ │ │ │ ├── selfCustodyCrypto-4.js
│ │ │ │ │ │ │ │ ├── semiCustodial-5.js
│ │ │ │ │ │ │ │ ├── sendCryptoFaster-3.js
│ │ │ │ │ │ │ │ ├── sendToUsername-4.js
│ │ │ │ │ │ │ │ ├── serverCatSystemError-3.js
│ │ │ │ │ │ │ │ ├── settlement-1.js
│ │ │ │ │ │ │ │ ├── shareOnSocialMedia-4.js
│ │ │ │ │ │ │ │ ├── sidechain-3.js
│ │ │ │ │ │ │ │ ├── slippageTolerance-4.js
│ │ │ │ │ │ │ │ ├── smartContract-2.js
│ │ │ │ │ │ │ │ ├── spacedOutSystemError-5.js
│ │ │ │ │ │ │ │ ├── squidEmptyState-5.js
│ │ │ │ │ │ │ │ ├── stableValue-4.js
│ │ │ │ │ │ │ │ ├── stablecoin-1.js
│ │ │ │ │ │ │ │ ├── staking-4.js
│ │ │ │ │ │ │ │ ├── stakingMissedReturns-3.js
│ │ │ │ │ │ │ │ ├── stakingMissedReturnsUsdc-0.js
│ │ │ │ │ │ │ │ ├── startToday-3.js
│ │ │ │ │ │ │ │ ├── stayInControlSelfHostedWalletsStorage-5.js
│ │ │ │ │ │ │ │ ├── stopLimitOrder-4.js
│ │ │ │ │ │ │ │ ├── stopLimitOrderDown-5.js
│ │ │ │ │ │ │ │ ├── storage-2.js
│ │ │ │ │ │ │ │ ├── stressTestedColdStorage-4.js
│ │ │ │ │ │ │ │ ├── success-4.js
│ │ │ │ │ │ │ │ ├── supportAndMore-5.js
│ │ │ │ │ │ │ │ ├── sustainable-1.js
│ │ │ │ │ │ │ │ ├── switchAdvancedToSimpleTrading-4.js
│ │ │ │ │ │ │ │ ├── taxesDetails-3.js
│ │ │ │ │ │ │ │ ├── test-0.js
│ │ │ │ │ │ │ │ ├── tools-1.js
│ │ │ │ │ │ │ │ ├── tradeGeneral-3.js
│ │ │ │ │ │ │ │ ├── tradeHistory-4.js
│ │ │ │ │ │ │ │ ├── tradeImmediately-4.js
│ │ │ │ │ │ │ │ ├── tradingPerpetualsUsdc-0.js
│ │ │ │ │ │ │ │ ├── tradingWithLeverage-0.js
│ │ │ │ │ │ │ │ ├── transactionLimit-4.js
│ │ │ │ │ │ │ │ ├── trendingHotAssets-3.js
│ │ │ │ │ │ │ │ ├── twoIdVerify-3.js
│ │ │ │ │ │ │ │ ├── unlockKey-3.js
│ │ │ │ │ │ │ │ ├── usdAndUsdc-0.js
│ │ │ │ │ │ │ │ ├── usdtToUSDC-2.js
│ │ │ │ │ │ │ │ ├── verifyBankTransactions-4.js
│ │ │ │ │ │ │ │ ├── verifyCardTransactions-4.js
│ │ │ │ │ │ │ │ ├── verifyEmail-4.js
│ │ │ │ │ │ │ │ ├── verifyIdDetails-3.js
│ │ │ │ │ │ │ │ ├── verifyInfo-4.js
│ │ │ │ │ │ │ │ ├── videoRequest-4.js
│ │ │ │ │ │ │ │ ├── videoReview-4.js
│ │ │ │ │ │ │ │ ├── videoUpload-4.js
│ │ │ │ │ │ │ │ ├── vipBadge-1.js
│ │ │ │ │ │ │ │ ├── vote-1.js
│ │ │ │ │ │ │ │ ├── walletAsset-7.js
│ │ │ │ │ │ │ │ ├── walletConfirmation-2.js
│ │ │ │ │ │ │ │ ├── walletFlyEmptyState-4.js
│ │ │ │ │ │ │ │ ├── walletLoading-3.js
│ │ │ │ │ │ │ │ ├── walletNotifications-4.js
│ │ │ │ │ │ │ │ ├── walletSecurity-5.js
│ │ │ │ │ │ │ │ ├── walletUi-7.js
│ │ │ │ │ │ │ │ ├── walletWarning-1.js
│ │ │ │ │ │ │ │ ├── watchVideos-3.js
│ │ │ │ │ │ │ │ ├── web3ActivityError-3.js
│ │ │ │ │ │ │ │ ├── web3ActivitySigned-5.js
│ │ │ │ │ │ │ │ ├── web3MobileSetupStart-4.js
│ │ │ │ │ │ │ │ ├── web3MobileSetupSuccess-4.js
│ │ │ │ │ │ │ │ ├── webRAT-3.js
│ │ │ │ │ │ │ │ ├── whyNotBoth-4.js
│ │ │ │ │ │ │ │ └── yourContacts-4.js
│ │ │ │ │ │ │ ├── light/
│ │ │ │ │ │ │ │ ├── accessToAdvancedCharts-5.js
│ │ │ │ │ │ │ │ ├── accountUnderReview-3.js
│ │ │ │ │ │ │ │ ├── add2Fa-5.js
│ │ │ │ │ │ │ │ ├── addBankAccount-4.js
│ │ │ │ │ │ │ │ ├── addCreditCard-4.js
│ │ │ │ │ │ │ │ ├── addMoreCrypto-4.js
│ │ │ │ │ │ │ │ ├── addPhoneNumber-4.js
│ │ │ │ │ │ │ │ ├── advancedTrading-5.js
│ │ │ │ │ │ │ │ ├── advancedTradingChartsIndicatorsCandles-3.js
│ │ │ │ │ │ │ │ ├── advancedTradingUi-3.js
│ │ │ │ │ │ │ │ ├── airdrop-2.js
│ │ │ │ │ │ │ │ ├── alienDonutSystemError-4.js
│ │ │ │ │ │ │ │ ├── anonymous-1.js
│ │ │ │ │ │ │ │ ├── appTrackingTransparency-5.js
│ │ │ │ │ │ │ │ ├── artFrameEmptyState-5.js
│ │ │ │ │ │ │ │ ├── automaticPayments-3.js
│ │ │ │ │ │ │ │ ├── backedByUsDollar-5.js
│ │ │ │ │ │ │ │ ├── baseChartLarge-1.js
│ │ │ │ │ │ │ │ ├── baseCheck-1.js
│ │ │ │ │ │ │ │ ├── baseCoinCryptoLarge-1.js
│ │ │ │ │ │ │ │ ├── baseCoinNetworkLarge-1.js
│ │ │ │ │ │ │ │ ├── baseConnectLarge-1.js
│ │ │ │ │ │ │ │ ├── baseCreatorCoin-1.js
│ │ │ │ │ │ │ │ ├── baseCreatorCoinEmpty-1.js
│ │ │ │ │ │ │ │ ├── baseDecentralizationLarge-1.js
│ │ │ │ │ │ │ │ ├── baseEmptyLarge-1.js
│ │ │ │ │ │ │ │ ├── baseErrorButterfly-0.js
│ │ │ │ │ │ │ │ ├── baseErrorLarge-1.js
│ │ │ │ │ │ │ │ ├── baseLoadingLarge-1.js
│ │ │ │ │ │ │ │ ├── baseLocationLarge-1.js
│ │ │ │ │ │ │ │ ├── baseMintNftLarge-1.js
│ │ │ │ │ │ │ │ ├── baseNetworkLarge-1.js
│ │ │ │ │ │ │ │ ├── baseNftLarge-1.js
│ │ │ │ │ │ │ │ ├── basePaycoinLarge-1.js
│ │ │ │ │ │ │ │ ├── basePeopleLarge-1.js
│ │ │ │ │ │ │ │ ├── basePiechartLarge-1.js
│ │ │ │ │ │ │ │ ├── baseRewardsCalmLarge-1.js
│ │ │ │ │ │ │ │ ├── baseSecurityLarge-1.js
│ │ │ │ │ │ │ │ ├── baseSendLarge-1.js
│ │ │ │ │ │ │ │ ├── baseSocial-2.js
│ │ │ │ │ │ │ │ ├── baseTargetLarge-1.js
│ │ │ │ │ │ │ │ ├── basedInUsa-5.js
│ │ │ │ │ │ │ │ ├── bigBtc-6.js
│ │ │ │ │ │ │ │ ├── bigError-5.js
│ │ │ │ │ │ │ │ ├── bigWarning-5.js
│ │ │ │ │ │ │ │ ├── bitcoinAndOtherCrypto-3.js
│ │ │ │ │ │ │ │ ├── bitcoinGlobe-5.js
│ │ │ │ │ │ │ │ ├── blockchain-3.js
│ │ │ │ │ │ │ │ ├── borrow-4.js
│ │ │ │ │ │ │ │ ├── borrowCoins-2.js
│ │ │ │ │ │ │ │ ├── borrowCoinsBtc-0.js
│ │ │ │ │ │ │ │ ├── borrowWallet-5.js
│ │ │ │ │ │ │ │ ├── brdGift-4.js
│ │ │ │ │ │ │ │ ├── bridge-2.js
│ │ │ │ │ │ │ │ ├── browseDecentralizedApps-6.js
│ │ │ │ │ │ │ │ ├── browserExtension-4.js
│ │ │ │ │ │ │ │ ├── buy-1.js
│ │ │ │ │ │ │ │ ├── buyFirstCrypto-4.js
│ │ │ │ │ │ │ │ ├── camera-4.js
│ │ │ │ │ │ │ │ ├── cardAndPhone-2.js
│ │ │ │ │ │ │ │ ├── cardBoosted-3.js
│ │ │ │ │ │ │ │ ├── cardError-4.js
│ │ │ │ │ │ │ │ ├── cardErrorCB1-0.js
│ │ │ │ │ │ │ │ ├── cardReloadFunds-3.js
│ │ │ │ │ │ │ │ ├── cashExcitement-3.js
│ │ │ │ │ │ │ │ ├── catHoldingWalletEmptyState-4.js
│ │ │ │ │ │ │ │ ├── catLostSystemError-3.js
│ │ │ │ │ │ │ │ ├── cbada-0.js
│ │ │ │ │ │ │ │ ├── cbbtc-2.js
│ │ │ │ │ │ │ │ ├── cbdoge-0.js
│ │ │ │ │ │ │ │ ├── cbltc-0.js
│ │ │ │ │ │ │ │ ├── cbmega-0.js
│ │ │ │ │ │ │ │ ├── cbxrp-0.js
│ │ │ │ │ │ │ │ ├── chickenFishSystemError-3.js
│ │ │ │ │ │ │ │ ├── claimCryptoUsername-2.js
│ │ │ │ │ │ │ │ ├── cloud-1.js
│ │ │ │ │ │ │ │ ├── cloudBacking-3.js
│ │ │ │ │ │ │ │ ├── coinCheckmark-4.js
│ │ │ │ │ │ │ │ ├── coinFifty-1.js
│ │ │ │ │ │ │ │ ├── coinbaseCard-3.js
│ │ │ │ │ │ │ │ ├── coinbaseCardIssue-3.js
│ │ │ │ │ │ │ │ ├── coinbaseCardLock-3.js
│ │ │ │ │ │ │ │ ├── coinbaseCardPocket-3.js
│ │ │ │ │ │ │ │ ├── coinbaseCardSpend-3.js
│ │ │ │ │ │ │ │ ├── coinbaseCardSpendCrypto-4.js
│ │ │ │ │ │ │ │ ├── coinbaseFees-3.js
│ │ │ │ │ │ │ │ ├── coinbaseIsDown-5.js
│ │ │ │ │ │ │ │ ├── coinbaseIsDownMobile-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneAirdrop-1.js
│ │ │ │ │ │ │ │ ├── coinbaseOneCardWarning-3.js
│ │ │ │ │ │ │ │ ├── coinbaseOneDiscountedAmount-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneDocWarning-3.js
│ │ │ │ │ │ │ │ ├── coinbaseOneEarn-2.js
│ │ │ │ │ │ │ │ ├── coinbaseOneInsufficientWallet-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneLogo-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOnePercentOff-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOnePhoneLightning-5.js
│ │ │ │ │ │ │ │ ├── coinbaseOneProtectedCrypto-3.js
│ │ │ │ │ │ │ │ ├── coinbaseOneRewards-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneSavingFunds-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneTokenRewards-3.js
│ │ │ │ │ │ │ │ ├── coinbaseOneUSDCBig-1.js
│ │ │ │ │ │ │ │ ├── coinbaseOneUSDCIncentives-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneWaitlist-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneWalletWarning-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneWelcome-4.js
│ │ │ │ │ │ │ │ ├── coinbaseOneZeroPortal-1.js
│ │ │ │ │ │ │ │ ├── coinbaseOneZeroPromotion-1.js
│ │ │ │ │ │ │ │ ├── coinbaseRedesigned-3.js
│ │ │ │ │ │ │ │ ├── coinbaseWalletToTrade-3.js
│ │ │ │ │ │ │ │ ├── coinsInWallet-3.js
│ │ │ │ │ │ │ │ ├── collectableNfts-6.js
│ │ │ │ │ │ │ │ ├── collectingNfts-5.js
│ │ │ │ │ │ │ │ ├── commerceAccounting-4.js
│ │ │ │ │ │ │ │ ├── commerceInvoices-3.js
│ │ │ │ │ │ │ │ ├── communication-1.js
│ │ │ │ │ │ │ │ ├── completeAQuiz-4.js
│ │ │ │ │ │ │ │ ├── congratulationsOnEarningCrypto-3.js
│ │ │ │ │ │ │ │ ├── connectPeople-2.js
│ │ │ │ │ │ │ │ ├── contactsListWarning-3.js
│ │ │ │ │ │ │ │ ├── crossBorderPayments-5.js
│ │ │ │ │ │ │ │ ├── cryptoAndMore-4.js
│ │ │ │ │ │ │ │ ├── cryptoApps-5.js
│ │ │ │ │ │ │ │ ├── cryptoAppsWallet-5.js
│ │ │ │ │ │ │ │ ├── cryptoAssets-6.js
│ │ │ │ │ │ │ │ ├── cryptoEconomy-4.js
│ │ │ │ │ │ │ │ ├── cryptoForBeginners-4.js
│ │ │ │ │ │ │ │ ├── cryptoPortfolio-4.js
│ │ │ │ │ │ │ │ ├── cryptoPortfolioUsdc-0.js
│ │ │ │ │ │ │ │ ├── cryptoWallet-5.js
│ │ │ │ │ │ │ │ ├── currencyPairs-5.js
│ │ │ │ │ │ │ │ ├── dappsArts-4.js
│ │ │ │ │ │ │ │ ├── dappsFinance-6.js
│ │ │ │ │ │ │ │ ├── dappsGaming-4.js
│ │ │ │ │ │ │ │ ├── dappsGeneral-2.js
│ │ │ │ │ │ │ │ ├── dappsL2Support-5.js
│ │ │ │ │ │ │ │ ├── dappsMusic-5.js
│ │ │ │ │ │ │ │ ├── decentralization-5.js
│ │ │ │ │ │ │ │ ├── decentralizedWebWeb3-5.js
│ │ │ │ │ │ │ │ ├── defiDecentralizedBorrowingLending-4.js
│ │ │ │ │ │ │ │ ├── defiDecentralizedTradingExchange-5.js
│ │ │ │ │ │ │ │ ├── defiEarn-3.js
│ │ │ │ │ │ │ │ ├── defiEnrollBoost-3.js
│ │ │ │ │ │ │ │ ├── defiHow-4.js
│ │ │ │ │ │ │ │ ├── defiRisk-3.js
│ │ │ │ │ │ │ │ ├── desktopAuthorized-4.js
│ │ │ │ │ │ │ │ ├── desktopUnknown-3.js
│ │ │ │ │ │ │ │ ├── developer-1.js
│ │ │ │ │ │ │ │ ├── diamondHands-6.js
│ │ │ │ │ │ │ │ ├── didDecentralizedIdentity-4.js
│ │ │ │ │ │ │ │ ├── digitalCollectibles-5.js
│ │ │ │ │ │ │ │ ├── digitalGold-1.js
│ │ │ │ │ │ │ │ ├── directDepositPhone-5.js
│ │ │ │ │ │ │ │ ├── discardAssets-5.js
│ │ │ │ │ │ │ │ ├── docError-3.js
│ │ │ │ │ │ │ │ ├── documentCertified-3.js
│ │ │ │ │ │ │ │ ├── documentSuccess-3.js
│ │ │ │ │ │ │ │ ├── downloadCoinbaseWallet-6.js
│ │ │ │ │ │ │ │ ├── earn-3.js
│ │ │ │ │ │ │ │ ├── earnCryptoCard-4.js
│ │ │ │ │ │ │ │ ├── earnCryptoInterest-5.js
│ │ │ │ │ │ │ │ ├── earnGlobe-1.js
│ │ │ │ │ │ │ │ ├── earnGrowth-4.js
│ │ │ │ │ │ │ │ ├── earnIdVerification-3.js
│ │ │ │ │ │ │ │ ├── earnInterest-4.js
│ │ │ │ │ │ │ │ ├── earnMore-4.js
│ │ │ │ │ │ │ │ ├── earnNuxHome-5.js
│ │ │ │ │ │ │ │ ├── earnSuccess-5.js
│ │ │ │ │ │ │ │ ├── earnToLearn-4.js
│ │ │ │ │ │ │ │ ├── emailNotification-4.js
│ │ │ │ │ │ │ │ ├── emptyCollection-5.js
│ │ │ │ │ │ │ │ ├── emptyStateCheckBackLater-5.js
│ │ │ │ │ │ │ │ ├── emptyStateNft404Page-4.js
│ │ │ │ │ │ │ │ ├── emptyStateNftSoldOut-4.js
│ │ │ │ │ │ │ │ ├── enableBiometrics-5.js
│ │ │ │ │ │ │ │ ├── encryptedEverything-4.js
│ │ │ │ │ │ │ │ ├── engagement-2.js
│ │ │ │ │ │ │ │ ├── ensProfilePic-2.js
│ │ │ │ │ │ │ │ ├── error400-4.js
│ │ │ │ │ │ │ │ ├── errorApp500-6.js
│ │ │ │ │ │ │ │ ├── errorMoblie-1.js
│ │ │ │ │ │ │ │ ├── errorRefresh-4.js
│ │ │ │ │ │ │ │ ├── errorRefreshWeb-1.js
│ │ │ │ │ │ │ │ ├── errorWeb-1.js
│ │ │ │ │ │ │ │ ├── errorWeb400-4.js
│ │ │ │ │ │ │ │ ├── errorWeb404-6.js
│ │ │ │ │ │ │ │ ├── errorWeb404Mobile-1.js
│ │ │ │ │ │ │ │ ├── errorWeb500-4.js
│ │ │ │ │ │ │ │ ├── estimatedAmount-3.js
│ │ │ │ │ │ │ │ ├── ethStakingRewards-4.js
│ │ │ │ │ │ │ │ ├── ethStakingUpsell-5.js
│ │ │ │ │ │ │ │ ├── ethereumToWallet-6.js
│ │ │ │ │ │ │ │ ├── exchange-1.js
│ │ │ │ │ │ │ │ ├── exchangeEmptyState-5.js
│ │ │ │ │ │ │ │ ├── exploreDecentralizedApps-7.js
│ │ │ │ │ │ │ │ ├── faceMatchReal-4.js
│ │ │ │ │ │ │ │ ├── feeScale-4.js
│ │ │ │ │ │ │ │ ├── fiat-1.js
│ │ │ │ │ │ │ │ ├── fileYourCryptoTaxes-5.js
│ │ │ │ │ │ │ │ ├── fileYourCryptoTaxesCheck-6.js
│ │ │ │ │ │ │ │ ├── flipStable-0.js
│ │ │ │ │ │ │ │ ├── focusLimitOrders-4.js
│ │ │ │ │ │ │ │ ├── freeBtc-4.js
│ │ │ │ │ │ │ │ ├── futures-6.js
│ │ │ │ │ │ │ │ ├── futuresAndPerps-0.js
│ │ │ │ │ │ │ │ ├── futuresExpire-0.js
│ │ │ │ │ │ │ │ ├── futuresVsPerps-0.js
│ │ │ │ │ │ │ │ ├── gainsAndLosses-4.js
│ │ │ │ │ │ │ │ ├── gamer-1.js
│ │ │ │ │ │ │ │ ├── gasFeesNetworkFees-4.js
│ │ │ │ │ │ │ │ ├── generative-2.js
│ │ │ │ │ │ │ │ ├── genniusLaunch-0.js
│ │ │ │ │ │ │ │ ├── getStartedInMinutes-4.js
│ │ │ │ │ │ │ │ ├── globalTransactions-5.js
│ │ │ │ │ │ │ │ ├── governance-4.js
│ │ │ │ │ │ │ │ ├── governanceMallet-1.js
│ │ │ │ │ │ │ │ ├── graphChartTrading-0.js
│ │ │ │ │ │ │ │ ├── hardwareWallets-4.js
│ │ │ │ │ │ │ │ ├── hiddenCollection-3.js
│ │ │ │ │ │ │ │ ├── holdCrypto-4.js
│ │ │ │ │ │ │ │ ├── holdingCrypto-3.js
│ │ │ │ │ │ │ │ ├── iceCreamMeltingSystemError-6.js
│ │ │ │ │ │ │ │ ├── idAngles-4.js
│ │ │ │ │ │ │ │ ├── idBack-2.js
│ │ │ │ │ │ │ │ ├── idCard-3.js
│ │ │ │ │ │ │ │ ├── idFront-3.js
│ │ │ │ │ │ │ │ ├── idIssue-3.js
│ │ │ │ │ │ │ │ ├── idVerificationSecure-5.js
│ │ │ │ │ │ │ │ ├── indexer-2.js
│ │ │ │ │ │ │ │ ├── innovation-2.js
│ │ │ │ │ │ │ │ ├── instantUnstakingClock-1.js
│ │ │ │ │ │ │ │ ├── instoAdd2Fa-0.js
│ │ │ │ │ │ │ │ ├── instoAddBankAccount-0.js
│ │ │ │ │ │ │ │ ├── instoCoinbaseOneProtectedCrypto-1.js
│ │ │ │ │ │ │ │ ├── instoDocumentSuccess-1.js
│ │ │ │ │ │ │ │ ├── instoEarnGlobe-0.js
│ │ │ │ │ │ │ │ ├── instoEnableBiometrics-0.js
│ │ │ │ │ │ │ │ ├── instoEthStakingRewards-0.js
│ │ │ │ │ │ │ │ ├── instoEthStakingUpsell-0.js
│ │ │ │ │ │ │ │ ├── instoGovernance-0.js
│ │ │ │ │ │ │ │ ├── instoKeyGenerationComplete-1.js
│ │ │ │ │ │ │ │ ├── instoKeyGenerationPending-0.js
│ │ │ │ │ │ │ │ ├── instoOnChain-2.js
│ │ │ │ │ │ │ │ ├── instoOpenEmail-1.js
│ │ │ │ │ │ │ │ ├── instoPhoneUnknown-0.js
│ │ │ │ │ │ │ │ ├── instoPrimeStaking-0.js
│ │ │ │ │ │ │ │ ├── instoPrivateKey-1.js
│ │ │ │ │ │ │ │ ├── instoRequestSent-1.js
│ │ │ │ │ │ │ │ ├── instoSecurityKeyAuth-0.js
│ │ │ │ │ │ │ │ ├── instoStaking-0.js
│ │ │ │ │ │ │ │ ├── instoStakingMissedReturns-1.js
│ │ │ │ │ │ │ │ ├── instoWallet-0.js
│ │ │ │ │ │ │ │ ├── instoWalletSecurity-0.js
│ │ │ │ │ │ │ │ ├── instoWeb3MobileSetupStart-0.js
│ │ │ │ │ │ │ │ ├── insufficientBalance-5.js
│ │ │ │ │ │ │ │ ├── insuranceProtection-4.js
│ │ │ │ │ │ │ │ ├── invest-3.js
│ │ │ │ │ │ │ │ ├── invite-4.js
│ │ │ │ │ │ │ │ ├── japanVerifyId-3.js
│ │ │ │ │ │ │ │ ├── keyGeneration-6.js
│ │ │ │ │ │ │ │ ├── layerOne-2.js
│ │ │ │ │ │ │ │ ├── layerThree-1.js
│ │ │ │ │ │ │ │ ├── layerTwo-2.js
│ │ │ │ │ │ │ │ ├── layeredNetworks-5.js
│ │ │ │ │ │ │ │ ├── ledgerAccess-4.js
│ │ │ │ │ │ │ │ ├── ledgerPlugin-4.js
│ │ │ │ │ │ │ │ ├── lend-1.js
│ │ │ │ │ │ │ │ ├── leverage-4.js
│ │ │ │ │ │ │ │ ├── lightningNetwork-1.js
│ │ │ │ │ │ │ │ ├── lightningNetworkInvoice-2.js
│ │ │ │ │ │ │ │ ├── lightningNetworkSend-1.js
│ │ │ │ │ │ │ │ ├── lightningNetworkTransfer-1.js
│ │ │ │ │ │ │ │ ├── limitOrders-5.js
│ │ │ │ │ │ │ │ ├── linkingYourWalletToYourCoinbaseAccount-8.js
│ │ │ │ │ │ │ │ ├── liquidationBufferGreen-1.js
│ │ │ │ │ │ │ │ ├── liquidationBufferRed-1.js
│ │ │ │ │ │ │ │ ├── liquidationBufferRedClose-1.js
│ │ │ │ │ │ │ │ ├── liquidationBufferYellow-0.js
│ │ │ │ │ │ │ │ ├── lowCost-2.js
│ │ │ │ │ │ │ │ ├── margin-3.js
│ │ │ │ │ │ │ │ ├── marginWarning-4.js
│ │ │ │ │ │ │ │ ├── mic-4.js
│ │ │ │ │ │ │ │ ├── mining-4.js
│ │ │ │ │ │ │ │ ├── minting-2.js
│ │ │ │ │ │ │ │ ├── moneyDecentralized-5.js
│ │ │ │ │ │ │ │ ├── moreGains-0.js
│ │ │ │ │ │ │ │ ├── multiPlatformMobileAppBrowserExtension-5.js
│ │ │ │ │ │ │ │ ├── multicoinSupport-4.js
│ │ │ │ │ │ │ │ ├── multipleAccountsWalletsForOneUser-5.js
│ │ │ │ │ │ │ │ ├── multiplePortfolios-1.js
│ │ │ │ │ │ │ │ ├── myNameIsSatoshi-3.js
│ │ │ │ │ │ │ │ ├── namePortfolio-1.js
│ │ │ │ │ │ │ │ ├── networkWarning-5.js
│ │ │ │ │ │ │ │ ├── noFees-4.js
│ │ │ │ │ │ │ │ ├── noFeesMotion-1.js
│ │ │ │ │ │ │ │ ├── noLongAddresses-2.js
│ │ │ │ │ │ │ │ ├── notificationsAlt-5.js
│ │ │ │ │ │ │ │ ├── notificationsAndUpdates-3.js
│ │ │ │ │ │ │ │ ├── offChain-1.js
│ │ │ │ │ │ │ │ ├── oilAndGold-2.js
│ │ │ │ │ │ │ │ ├── onChain-2.js
│ │ │ │ │ │ │ │ ├── onTheList-4.js
│ │ │ │ │ │ │ │ ├── openEmail-4.js
│ │ │ │ │ │ │ │ ├── optInPushNotificationsEmail-3.js
│ │ │ │ │ │ │ │ ├── options-0.js
│ │ │ │ │ │ │ │ ├── oracle-1.js
│ │ │ │ │ │ │ │ ├── orderBooks-3.js
│ │ │ │ │ │ │ │ ├── outage-1.js
│ │ │ │ │ │ │ │ ├── p2pGifting-4.js
│ │ │ │ │ │ │ │ ├── p2pPayments-5.js
│ │ │ │ │ │ │ │ ├── paperHands-3.js
│ │ │ │ │ │ │ │ ├── payUpFront-4.js
│ │ │ │ │ │ │ │ ├── pending-5.js
│ │ │ │ │ │ │ │ ├── performance-4.js
│ │ │ │ │ │ │ │ ├── phoneNumber-3.js
│ │ │ │ │ │ │ │ ├── phoneUnknown-3.js
│ │ │ │ │ │ │ │ ├── platform-1.js
│ │ │ │ │ │ │ │ ├── polling-3.js
│ │ │ │ │ │ │ │ ├── portfolioPerformance-5.js
│ │ │ │ │ │ │ │ ├── powerOfCrypto-6.js
│ │ │ │ │ │ │ │ ├── poweredByEthereum-5.js
│ │ │ │ │ │ │ │ ├── predictionsMarkets-0.js
│ │ │ │ │ │ │ │ ├── primeDeFi-4.js
│ │ │ │ │ │ │ │ ├── primeEarn-5.js
│ │ │ │ │ │ │ │ ├── primeStaking-5.js
│ │ │ │ │ │ │ │ ├── private-2.js
│ │ │ │ │ │ │ │ ├── privateKey-1.js
│ │ │ │ │ │ │ │ ├── processing-3.js
│ │ │ │ │ │ │ │ ├── protocol-1.js
│ │ │ │ │ │ │ │ ├── public-1.js
│ │ │ │ │ │ │ │ ├── quest-2.js
│ │ │ │ │ │ │ │ ├── quickAndSimple-5.js
│ │ │ │ │ │ │ │ ├── quickBuy-3.js
│ │ │ │ │ │ │ │ ├── ratingsAndReviews-5.js
│ │ │ │ │ │ │ │ ├── readyToTrade-4.js
│ │ │ │ │ │ │ │ ├── realToUSDC-1.js
│ │ │ │ │ │ │ │ ├── receiveGift-4.js
│ │ │ │ │ │ │ │ ├── receivedCard-3.js
│ │ │ │ │ │ │ │ ├── recommendInvest-6.js
│ │ │ │ │ │ │ │ ├── recurringReward-4.js
│ │ │ │ │ │ │ │ ├── referralsAvatars-6.js
│ │ │ │ │ │ │ │ ├── referralsBitcoin-6.js
│ │ │ │ │ │ │ │ ├── referralsCoinbaseOne-2.js
│ │ │ │ │ │ │ │ ├── referralsGenericCoin-1.js
│ │ │ │ │ │ │ │ ├── referralsWalletPhones-7.js
│ │ │ │ │ │ │ │ ├── refresh-0.js
│ │ │ │ │ │ │ │ ├── remittances-4.js
│ │ │ │ │ │ │ │ ├── requestSent-5.js
│ │ │ │ │ │ │ │ ├── restrictedCountry-7.js
│ │ │ │ │ │ │ │ ├── retailUSDCRewards-5.js
│ │ │ │ │ │ │ │ ├── reviewInfo-4.js
│ │ │ │ │ │ │ │ ├── rocket-4.js
│ │ │ │ │ │ │ │ ├── rotatingRewards-7.js
│ │ │ │ │ │ │ │ ├── routingAccount-4.js
│ │ │ │ │ │ │ │ ├── scalable-1.js
│ │ │ │ │ │ │ │ ├── secureAndTrusted-4.js
│ │ │ │ │ │ │ │ ├── secureGlobalTransactions-5.js
│ │ │ │ │ │ │ │ ├── secureStorage-5.js
│ │ │ │ │ │ │ │ ├── securityShield-4.js
│ │ │ │ │ │ │ │ ├── selectCorrectCrypto-4.js
│ │ │ │ │ │ │ │ ├── selectReward-3.js
│ │ │ │ │ │ │ │ ├── selfCustody-5.js
│ │ │ │ │ │ │ │ ├── selfCustodyCrypto-4.js
│ │ │ │ │ │ │ │ ├── semiCustodial-5.js
│ │ │ │ │ │ │ │ ├── sendCryptoFaster-3.js
│ │ │ │ │ │ │ │ ├── sendToUsername-4.js
│ │ │ │ │ │ │ │ ├── serverCatSystemError-3.js
│ │ │ │ │ │ │ │ ├── settlement-1.js
│ │ │ │ │ │ │ │ ├── shareOnSocialMedia-4.js
│ │ │ │ │ │ │ │ ├── sidechain-3.js
│ │ │ │ │ │ │ │ ├── slippageTolerance-4.js
│ │ │ │ │ │ │ │ ├── smartContract-2.js
│ │ │ │ │ │ │ │ ├── spacedOutSystemError-5.js
│ │ │ │ │ │ │ │ ├── squidEmptyState-5.js
│ │ │ │ │ │ │ │ ├── stableValue-4.js
│ │ │ │ │ │ │ │ ├── stablecoin-1.js
│ │ │ │ │ │ │ │ ├── staking-4.js
│ │ │ │ │ │ │ │ ├── stakingMissedReturns-3.js
│ │ │ │ │ │ │ │ ├── stakingMissedReturnsUsdc-0.js
│ │ │ │ │ │ │ │ ├── startToday-3.js
│ │ │ │ │ │ │ │ ├── stayInControlSelfHostedWalletsStorage-5.js
│ │ │ │ │ │ │ │ ├── stopLimitOrder-4.js
│ │ │ │ │ │ │ │ ├── stopLimitOrderDown-5.js
│ │ │ │ │ │ │ │ ├── storage-2.js
│ │ │ │ │ │ │ │ ├── stressTestedColdStorage-4.js
│ │ │ │ │ │ │ │ ├── success-4.js
│ │ │ │ │ │ │ │ ├── supportAndMore-5.js
│ │ │ │ │ │ │ │ ├── sustainable-1.js
│ │ │ │ │ │ │ │ ├── switchAdvancedToSimpleTrading-4.js
│ │ │ │ │ │ │ │ ├── taxesDetails-3.js
│ │ │ │ │ │ │ │ ├── test-0.js
│ │ │ │ │ │ │ │ ├── tools-1.js
│ │ │ │ │ │ │ │ ├── tradeGeneral-3.js
│ │ │ │ │ │ │ │ ├── tradeHistory-4.js
│ │ │ │ │ │ │ │ ├── tradeImmediately-4.js
│ │ │ │ │ │ │ │ ├── tradingPerpetualsUsdc-0.js
│ │ │ │ │ │ │ │ ├── tradingWithLeverage-0.js
│ │ │ │ │ │ │ │ ├── transactionLimit-4.js
│ │ │ │ │ │ │ │ ├── trendingHotAssets-3.js
│ │ │ │ │ │ │ │ ├── twoIdVerify-3.js
│ │ │ │ │ │ │ │ ├── unlockKey-3.js
│ │ │ │ │ │ │ │ ├── usdAndUsdc-0.js
│ │ │ │ │ │ │ │ ├── usdtToUSDC-2.js
│ │ │ │ │ │ │ │ ├── verifyBankTransactions-4.js
│ │ │ │ │ │ │ │ ├── verifyCardTransactions-4.js
│ │ │ │ │ │ │ │ ├── verifyEmail-4.js
│ │ │ │ │ │ │ │ ├── verifyIdDetails-3.js
│ │ │ │ │ │ │ │ ├── verifyInfo-4.js
│ │ │ │ │ │ │ │ ├── videoRequest-4.js
│ │ │ │ │ │ │ │ ├── videoReview-4.js
│ │ │ │ │ │ │ │ ├── videoUpload-4.js
│ │ │ │ │ │ │ │ ├── vipBadge-1.js
│ │ │ │ │ │ │ │ ├── vote-1.js
│ │ │ │ │ │ │ │ ├── walletAsset-7.js
│ │ │ │ │ │ │ │ ├── walletConfirmation-2.js
│ │ │ │ │ │ │ │ ├── walletFlyEmptyState-4.js
│ │ │ │ │ │ │ │ ├── walletLoading-3.js
│ │ │ │ │ │ │ │ ├── walletNotifications-4.js
│ │ │ │ │ │ │ │ ├── walletSecurity-5.js
│ │ │ │ │ │ │ │ ├── walletUi-7.js
│ │ │ │ │ │ │ │ ├── walletWarning-1.js
│ │ │ │ │ │ │ │ ├── watchVideos-3.js
│ │ │ │ │ │ │ │ ├── web3ActivityError-3.js
│ │ │ │ │ │ │ │ ├── web3ActivitySigned-5.js
│ │ │ │ │ │ │ │ ├── web3MobileSetupStart-4.js
│ │ │ │ │ │ │ │ ├── web3MobileSetupSuccess-4.js
│ │ │ │ │ │ │ │ ├── webRAT-3.js
│ │ │ │ │ │ │ │ ├── whyNotBoth-4.js
│ │ │ │ │ │ │ │ └── yourContacts-4.js
│ │ │ │ │ │ │ └── themeable/
│ │ │ │ │ │ │ ├── accessToAdvancedCharts-5.js
│ │ │ │ │ │ │ ├── accountUnderReview-3.js
│ │ │ │ │ │ │ ├── add2Fa-5.js
│ │ │ │ │ │ │ ├── addBankAccount-4.js
│ │ │ │ │ │ │ ├── addCreditCard-4.js
│ │ │ │ │ │ │ ├── addMoreCrypto-4.js
│ │ │ │ │ │ │ ├── addPhoneNumber-4.js
│ │ │ │ │ │ │ ├── advancedTrading-5.js
│ │ │ │ │ │ │ ├── advancedTradingChartsIndicatorsCandles-3.js
│ │ │ │ │ │ │ ├── advancedTradingUi-3.js
│ │ │ │ │ │ │ ├── airdrop-2.js
│ │ │ │ │ │ │ ├── alienDonutSystemError-4.js
│ │ │ │ │ │ │ ├── anonymous-1.js
│ │ │ │ │ │ │ ├── appTrackingTransparency-5.js
│ │ │ │ │ │ │ ├── artFrameEmptyState-5.js
│ │ │ │ │ │ │ ├── automaticPayments-3.js
│ │ │ │ │ │ │ ├── backedByUsDollar-5.js
│ │ │ │ │ │ │ ├── baseChartLarge-1.js
│ │ │ │ │ │ │ ├── baseCheck-1.js
│ │ │ │ │ │ │ ├── baseCoinCryptoLarge-1.js
│ │ │ │ │ │ │ ├── baseCoinNetworkLarge-1.js
│ │ │ │ │ │ │ ├── baseConnectLarge-1.js
│ │ │ │ │ │ │ ├── baseCreatorCoin-1.js
│ │ │ │ │ │ │ ├── baseCreatorCoinEmpty-1.js
│ │ │ │ │ │ │ ├── baseDecentralizationLarge-1.js
│ │ │ │ │ │ │ ├── baseEmptyLarge-1.js
│ │ │ │ │ │ │ ├── baseErrorButterfly-0.js
│ │ │ │ │ │ │ ├── baseErrorLarge-1.js
│ │ │ │ │ │ │ ├── baseLoadingLarge-1.js
│ │ │ │ │ │ │ ├── baseLocationLarge-1.js
│ │ │ │ │ │ │ ├── baseMintNftLarge-1.js
│ │ │ │ │ │ │ ├── baseNetworkLarge-1.js
│ │ │ │ │ │ │ ├── baseNftLarge-1.js
│ │ │ │ │ │ │ ├── basePaycoinLarge-1.js
│ │ │ │ │ │ │ ├── basePeopleLarge-1.js
│ │ │ │ │ │ │ ├── basePiechartLarge-1.js
│ │ │ │ │ │ │ ├── baseRewardsCalmLarge-1.js
│ │ │ │ │ │ │ ├── baseSecurityLarge-1.js
│ │ │ │ │ │ │ ├── baseSendLarge-1.js
│ │ │ │ │ │ │ ├── baseSocial-2.js
│ │ │ │ │ │ │ ├── baseTargetLarge-1.js
│ │ │ │ │ │ │ ├── basedInUsa-5.js
│ │ │ │ │ │ │ ├── bigBtc-6.js
│ │ │ │ │ │ │ ├── bigError-5.js
│ │ │ │ │ │ │ ├── bigWarning-5.js
│ │ │ │ │ │ │ ├── bitcoinAndOtherCrypto-3.js
│ │ │ │ │ │ │ ├── bitcoinGlobe-5.js
│ │ │ │ │ │ │ ├── blockchain-3.js
│ │ │ │ │ │ │ ├── borrow-4.js
│ │ │ │ │ │ │ ├── borrowCoins-2.js
│ │ │ │ │ │ │ ├── borrowCoinsBtc-0.js
│ │ │ │ │ │ │ ├── borrowWallet-5.js
│ │ │ │ │ │ │ ├── brdGift-4.js
│ │ │ │ │ │ │ ├── bridge-2.js
│ │ │ │ │ │ │ ├── browseDecentralizedApps-6.js
│ │ │ │ │ │ │ ├── browserExtension-4.js
│ │ │ │ │ │ │ ├── buy-1.js
│ │ │ │ │ │ │ ├── buyFirstCrypto-4.js
│ │ │ │ │ │ │ ├── camera-4.js
│ │ │ │ │ │ │ ├── cardAndPhone-2.js
│ │ │ │ │ │ │ ├── cardBoosted-3.js
│ │ │ │ │ │ │ ├── cardError-4.js
│ │ │ │ │ │ │ ├── cardErrorCB1-0.js
│ │ │ │ │ │ │ ├── cardReloadFunds-3.js
│ │ │ │ │ │ │ ├── cashExcitement-3.js
│ │ │ │ │ │ │ ├── catHoldingWalletEmptyState-4.js
│ │ │ │ │ │ │ ├── catLostSystemError-3.js
│ │ │ │ │ │ │ ├── cbada-0.js
│ │ │ │ │ │ │ ├── cbbtc-2.js
│ │ │ │ │ │ │ ├── cbdoge-0.js
│ │ │ │ │ │ │ ├── cbltc-0.js
│ │ │ │ │ │ │ ├── cbmega-0.js
│ │ │ │ │ │ │ ├── cbxrp-0.js
│ │ │ │ │ │ │ ├── chickenFishSystemError-3.js
│ │ │ │ │ │ │ ├── claimCryptoUsername-2.js
│ │ │ │ │ │ │ ├── cloud-1.js
│ │ │ │ │ │ │ ├── cloudBacking-3.js
│ │ │ │ │ │ │ ├── coinCheckmark-4.js
│ │ │ │ │ │ │ ├── coinFifty-1.js
│ │ │ │ │ │ │ ├── coinbaseCard-3.js
│ │ │ │ │ │ │ ├── coinbaseCardIssue-3.js
│ │ │ │ │ │ │ ├── coinbaseCardLock-3.js
│ │ │ │ │ │ │ ├── coinbaseCardPocket-3.js
│ │ │ │ │ │ │ ├── coinbaseCardSpend-3.js
│ │ │ │ │ │ │ ├── coinbaseCardSpendCrypto-4.js
│ │ │ │ │ │ │ ├── coinbaseFees-3.js
│ │ │ │ │ │ │ ├── coinbaseIsDown-5.js
│ │ │ │ │ │ │ ├── coinbaseIsDownMobile-4.js
│ │ │ │ │ │ │ ├── coinbaseOneAirdrop-1.js
│ │ │ │ │ │ │ ├── coinbaseOneCardWarning-3.js
│ │ │ │ │ │ │ ├── coinbaseOneDiscountedAmount-4.js
│ │ │ │ │ │ │ ├── coinbaseOneDocWarning-3.js
│ │ │ │ │ │ │ ├── coinbaseOneEarn-2.js
│ │ │ │ │ │ │ ├── coinbaseOneInsufficientWallet-4.js
│ │ │ │ │ │ │ ├── coinbaseOneLogo-4.js
│ │ │ │ │ │ │ ├── coinbaseOnePercentOff-4.js
│ │ │ │ │ │ │ ├── coinbaseOnePhoneLightning-5.js
│ │ │ │ │ │ │ ├── coinbaseOneProtectedCrypto-3.js
│ │ │ │ │ │ │ ├── coinbaseOneRewards-4.js
│ │ │ │ │ │ │ ├── coinbaseOneSavingFunds-4.js
│ │ │ │ │ │ │ ├── coinbaseOneTokenRewards-3.js
│ │ │ │ │ │ │ ├── coinbaseOneUSDCBig-1.js
│ │ │ │ │ │ │ ├── coinbaseOneUSDCIncentives-4.js
│ │ │ │ │ │ │ ├── coinbaseOneWaitlist-4.js
│ │ │ │ │ │ │ ├── coinbaseOneWalletWarning-4.js
│ │ │ │ │ │ │ ├── coinbaseOneWelcome-4.js
│ │ │ │ │ │ │ ├── coinbaseOneZeroPortal-1.js
│ │ │ │ │ │ │ ├── coinbaseOneZeroPromotion-1.js
│ │ │ │ │ │ │ ├── coinbaseRedesigned-3.js
│ │ │ │ │ │ │ ├── coinbaseWalletToTrade-3.js
│ │ │ │ │ │ │ ├── coinsInWallet-3.js
│ │ │ │ │ │ │ ├── collectableNfts-6.js
│ │ │ │ │ │ │ ├── collectingNfts-5.js
│ │ │ │ │ │ │ ├── commerceAccounting-4.js
│ │ │ │ │ │ │ ├── commerceInvoices-3.js
│ │ │ │ │ │ │ ├── communication-1.js
│ │ │ │ │ │ │ ├── completeAQuiz-4.js
│ │ │ │ │ │ │ ├── congratulationsOnEarningCrypto-3.js
│ │ │ │ │ │ │ ├── connectPeople-2.js
│ │ │ │ │ │ │ ├── contactsListWarning-3.js
│ │ │ │ │ │ │ ├── crossBorderPayments-5.js
│ │ │ │ │ │ │ ├── cryptoAndMore-4.js
│ │ │ │ │ │ │ ├── cryptoApps-5.js
│ │ │ │ │ │ │ ├── cryptoAppsWallet-5.js
│ │ │ │ │ │ │ ├── cryptoAssets-6.js
│ │ │ │ │ │ │ ├── cryptoEconomy-4.js
│ │ │ │ │ │ │ ├── cryptoForBeginners-4.js
│ │ │ │ │ │ │ ├── cryptoPortfolio-4.js
│ │ │ │ │ │ │ ├── cryptoPortfolioUsdc-0.js
│ │ │ │ │ │ │ ├── cryptoWallet-5.js
│ │ │ │ │ │ │ ├── currencyPairs-5.js
│ │ │ │ │ │ │ ├── dappsArts-4.js
│ │ │ │ │ │ │ ├── dappsFinance-6.js
│ │ │ │ │ │ │ ├── dappsGaming-4.js
│ │ │ │ │ │ │ ├── dappsGeneral-2.js
│ │ │ │ │ │ │ ├── dappsL2Support-5.js
│ │ │ │ │ │ │ ├── dappsMusic-5.js
│ │ │ │ │ │ │ ├── decentralization-5.js
│ │ │ │ │ │ │ ├── decentralizedWebWeb3-5.js
│ │ │ │ │ │ │ ├── defiDecentralizedBorrowingLending-4.js
│ │ │ │ │ │ │ ├── defiDecentralizedTradingExchange-5.js
│ │ │ │ │ │ │ ├── defiEarn-3.js
│ │ │ │ │ │ │ ├── defiEnrollBoost-3.js
│ │ │ │ │ │ │ ├── defiHow-4.js
│ │ │ │ │ │ │ ├── defiRisk-3.js
│ │ │ │ │ │ │ ├── desktopAuthorized-4.js
│ │ │ │ │ │ │ ├── desktopUnknown-3.js
│ │ │ │ │ │ │ ├── developer-1.js
│ │ │ │ │ │ │ ├── diamondHands-6.js
│ │ │ │ │ │ │ ├── didDecentralizedIdentity-4.js
│ │ │ │ │ │ │ ├── digitalCollectibles-5.js
│ │ │ │ │ │ │ ├── digitalGold-1.js
│ │ │ │ │ │ │ ├── directDepositPhone-5.js
│ │ │ │ │ │ │ ├── discardAssets-5.js
│ │ │ │ │ │ │ ├── docError-3.js
│ │ │ │ │ │ │ ├── documentCertified-3.js
│ │ │ │ │ │ │ ├── documentSuccess-3.js
│ │ │ │ │ │ │ ├── downloadCoinbaseWallet-6.js
│ │ │ │ │ │ │ ├── earn-3.js
│ │ │ │ │ │ │ ├── earnCryptoCard-4.js
│ │ │ │ │ │ │ ├── earnCryptoInterest-5.js
│ │ │ │ │ │ │ ├── earnGlobe-1.js
│ │ │ │ │ │ │ ├── earnGrowth-4.js
│ │ │ │ │ │ │ ├── earnIdVerification-3.js
│ │ │ │ │ │ │ ├── earnInterest-4.js
│ │ │ │ │ │ │ ├── earnMore-4.js
│ │ │ │ │ │ │ ├── earnNuxHome-5.js
│ │ │ │ │ │ │ ├── earnSuccess-5.js
│ │ │ │ │ │ │ ├── earnToLearn-4.js
│ │ │ │ │ │ │ ├── emailNotification-4.js
│ │ │ │ │ │ │ ├── emptyCollection-5.js
│ │ │ │ │ │ │ ├── emptyStateCheckBackLater-5.js
│ │ │ │ │ │ │ ├── emptyStateNft404Page-4.js
│ │ │ │ │ │ │ ├── emptyStateNftSoldOut-4.js
│ │ │ │ │ │ │ ├── enableBiometrics-5.js
│ │ │ │ │ │ │ ├── encryptedEverything-4.js
│ │ │ │ │ │ │ ├── engagement-2.js
│ │ │ │ │ │ │ ├── ensProfilePic-2.js
│ │ │ │ │ │ │ ├── error400-4.js
│ │ │ │ │ │ │ ├── errorApp500-6.js
│ │ │ │ │ │ │ ├── errorMoblie-1.js
│ │ │ │ │ │ │ ├── errorRefresh-4.js
│ │ │ │ │ │ │ ├── errorRefreshWeb-1.js
│ │ │ │ │ │ │ ├── errorWeb-1.js
│ │ │ │ │ │ │ ├── errorWeb400-4.js
│ │ │ │ │ │ │ ├── errorWeb404-6.js
│ │ │ │ │ │ │ ├── errorWeb404Mobile-1.js
│ │ │ │ │ │ │ ├── errorWeb500-4.js
│ │ │ │ │ │ │ ├── estimatedAmount-3.js
│ │ │ │ │ │ │ ├── ethStakingRewards-4.js
│ │ │ │ │ │ │ ├── ethStakingUpsell-5.js
│ │ │ │ │ │ │ ├── ethereumToWallet-6.js
│ │ │ │ │ │ │ ├── exchange-1.js
│ │ │ │ │ │ │ ├── exchangeEmptyState-5.js
│ │ │ │ │ │ │ ├── exploreDecentralizedApps-7.js
│ │ │ │ │ │ │ ├── faceMatchReal-4.js
│ │ │ │ │ │ │ ├── feeScale-4.js
│ │ │ │ │ │ │ ├── fiat-1.js
│ │ │ │ │ │ │ ├── fileYourCryptoTaxes-5.js
│ │ │ │ │ │ │ ├── fileYourCryptoTaxesCheck-6.js
│ │ │ │ │ │ │ ├── flipStable-0.js
│ │ │ │ │ │ │ ├── focusLimitOrders-4.js
│ │ │ │ │ │ │ ├── freeBtc-4.js
│ │ │ │ │ │ │ ├── futures-6.js
│ │ │ │ │ │ │ ├── futuresAndPerps-0.js
│ │ │ │ │ │ │ ├── futuresExpire-0.js
│ │ │ │ │ │ │ ├── futuresVsPerps-0.js
│ │ │ │ │ │ │ ├── gainsAndLosses-4.js
│ │ │ │ │ │ │ ├── gamer-1.js
│ │ │ │ │ │ │ ├── gasFeesNetworkFees-4.js
│ │ │ │ │ │ │ ├── generative-2.js
│ │ │ │ │ │ │ ├── genniusLaunch-0.js
│ │ │ │ │ │ │ ├── getStartedInMinutes-4.js
│ │ │ │ │ │ │ ├── globalTransactions-5.js
│ │ │ │ │ │ │ ├── governance-4.js
│ │ │ │ │ │ │ ├── governanceMallet-1.js
│ │ │ │ │ │ │ ├── graphChartTrading-0.js
│ │ │ │ │ │ │ ├── hardwareWallets-4.js
│ │ │ │ │ │ │ ├── hiddenCollection-3.js
│ │ │ │ │ │ │ ├── holdCrypto-4.js
│ │ │ │ │ │ │ ├── holdingCrypto-3.js
│ │ │ │ │ │ │ ├── iceCreamMeltingSystemError-6.js
│ │ │ │ │ │ │ ├── idAngles-4.js
│ │ │ │ │ │ │ ├── idBack-2.js
│ │ │ │ │ │ │ ├── idCard-3.js
│ │ │ │ │ │ │ ├── idFront-3.js
│ │ │ │ │ │ │ ├── idIssue-3.js
│ │ │ │ │ │ │ ├── idVerificationSecure-5.js
│ │ │ │ │ │ │ ├── indexer-2.js
│ │ │ │ │ │ │ ├── innovation-2.js
│ │ │ │ │ │ │ ├── instantUnstakingClock-1.js
│ │ │ │ │ │ │ ├── instoAdd2Fa-0.js
│ │ │ │ │ │ │ ├── instoAddBankAccount-0.js
│ │ │ │ │ │ │ ├── instoCoinbaseOneProtectedCrypto-1.js
│ │ │ │ │ │ │ ├── instoDocumentSuccess-1.js
│ │ │ │ │ │ │ ├── instoEarnGlobe-0.js
│ │ │ │ │ │ │ ├── instoEnableBiometrics-0.js
│ │ │ │ │ │ │ ├── instoEthStakingRewards-0.js
│ │ │ │ │ │ │ ├── instoEthStakingUpsell-0.js
│ │ │ │ │ │ │ ├── instoGovernance-0.js
│ │ │ │ │ │ │ ├── instoKeyGenerationComplete-1.js
│ │ │ │ │ │ │ ├── instoKeyGenerationPending-0.js
│ │ │ │ │ │ │ ├── instoOnChain-2.js
│ │ │ │ │ │ │ ├── instoOpenEmail-1.js
│ │ │ │ │ │ │ ├── instoPhoneUnknown-0.js
│ │ │ │ │ │ │ ├── instoPrimeStaking-0.js
│ │ │ │ │ │ │ ├── instoPrivateKey-1.js
│ │ │ │ │ │ │ ├── instoRequestSent-1.js
│ │ │ │ │ │ │ ├── instoSecurityKeyAuth-0.js
│ │ │ │ │ │ │ ├── instoStaking-0.js
│ │ │ │ │ │ │ ├── instoStakingMissedReturns-1.js
│ │ │ │ │ │ │ ├── instoWallet-0.js
│ │ │ │ │ │ │ ├── instoWalletSecurity-0.js
│ │ │ │ │ │ │ ├── instoWeb3MobileSetupStart-0.js
│ │ │ │ │ │ │ ├── insufficientBalance-5.js
│ │ │ │ │ │ │ ├── insuranceProtection-4.js
│ │ │ │ │ │ │ ├── invest-3.js
│ │ │ │ │ │ │ ├── invite-4.js
│ │ │ │ │ │ │ ├── japanVerifyId-3.js
│ │ │ │ │ │ │ ├── keyGeneration-6.js
│ │ │ │ │ │ │ ├── layerOne-2.js
│ │ │ │ │ │ │ ├── layerThree-1.js
│ │ │ │ │ │ │ ├── layerTwo-2.js
│ │ │ │ │ │ │ ├── layeredNetworks-5.js
│ │ │ │ │ │ │ ├── ledgerAccess-4.js
│ │ │ │ │ │ │ ├── ledgerPlugin-4.js
│ │ │ │ │ │ │ ├── lend-1.js
│ │ │ │ │ │ │ ├── leverage-4.js
│ │ │ │ │ │ │ ├── lightningNetwork-1.js
│ │ │ │ │ │ │ ├── lightningNetworkInvoice-2.js
│ │ │ │ │ │ │ ├── lightningNetworkSend-1.js
│ │ │ │ │ │ │ ├── lightningNetworkTransfer-1.js
│ │ │ │ │ │ │ ├── limitOrders-5.js
│ │ │ │ │ │ │ ├── linkingYourWalletToYourCoinbaseAccount-8.js
│ │ │ │ │ │ │ ├── liquidationBufferGreen-1.js
│ │ │ │ │ │ │ ├── liquidationBufferRed-1.js
│ │ │ │ │ │ │ ├── liquidationBufferRedClose-1.js
│ │ │ │ │ │ │ ├── liquidationBufferYellow-0.js
│ │ │ │ │ │ │ ├── lowCost-2.js
│ │ │ │ │ │ │ ├── margin-3.js
│ │ │ │ │ │ │ ├── marginWarning-4.js
│ │ │ │ │ │ │ ├── mic-4.js
│ │ │ │ │ │ │ ├── mining-4.js
│ │ │ │ │ │ │ ├── minting-2.js
│ │ │ │ │ │ │ ├── moneyDecentralized-5.js
│ │ │ │ │ │ │ ├── moreGains-0.js
│ │ │ │ │ │ │ ├── multiPlatformMobileAppBrowserExtension-5.js
│ │ │ │ │ │ │ ├── multicoinSupport-4.js
│ │ │ │ │ │ │ ├── multipleAccountsWalletsForOneUser-5.js
│ │ │ │ │ │ │ ├── multiplePortfolios-1.js
│ │ │ │ │ │ │ ├── myNameIsSatoshi-3.js
│ │ │ │ │ │ │ ├── namePortfolio-1.js
│ │ │ │ │ │ │ ├── networkWarning-5.js
│ │ │ │ │ │ │ ├── noFees-4.js
│ │ │ │ │ │ │ ├── noFeesMotion-1.js
│ │ │ │ │ │ │ ├── noLongAddresses-2.js
│ │ │ │ │ │ │ ├── notificationsAlt-5.js
│ │ │ │ │ │ │ ├── notificationsAndUpdates-3.js
│ │ │ │ │ │ │ ├── offChain-1.js
│ │ │ │ │ │ │ ├── oilAndGold-2.js
│ │ │ │ │ │ │ ├── onChain-2.js
│ │ │ │ │ │ │ ├── onTheList-4.js
│ │ │ │ │ │ │ ├── openEmail-4.js
│ │ │ │ │ │ │ ├── optInPushNotificationsEmail-3.js
│ │ │ │ │ │ │ ├── options-0.js
│ │ │ │ │ │ │ ├── oracle-1.js
│ │ │ │ │ │ │ ├── orderBooks-3.js
│ │ │ │ │ │ │ ├── outage-1.js
│ │ │ │ │ │ │ ├── p2pGifting-4.js
│ │ │ │ │ │ │ ├── p2pPayments-5.js
│ │ │ │ │ │ │ ├── paperHands-3.js
│ │ │ │ │ │ │ ├── payUpFront-4.js
│ │ │ │ │ │ │ ├── pending-5.js
│ │ │ │ │ │ │ ├── performance-4.js
│ │ │ │ │ │ │ ├── phoneNumber-3.js
│ │ │ │ │ │ │ ├── phoneUnknown-3.js
│ │ │ │ │ │ │ ├── platform-1.js
│ │ │ │ │ │ │ ├── polling-3.js
│ │ │ │ │ │ │ ├── portfolioPerformance-5.js
│ │ │ │ │ │ │ ├── powerOfCrypto-6.js
│ │ │ │ │ │ │ ├── poweredByEthereum-5.js
│ │ │ │ │ │ │ ├── predictionsMarkets-0.js
│ │ │ │ │ │ │ ├── primeDeFi-4.js
│ │ │ │ │ │ │ ├── primeEarn-5.js
│ │ │ │ │ │ │ ├── primeStaking-5.js
│ │ │ │ │ │ │ ├── private-2.js
│ │ │ │ │ │ │ ├── privateKey-1.js
│ │ │ │ │ │ │ ├── processing-3.js
│ │ │ │ │ │ │ ├── protocol-1.js
│ │ │ │ │ │ │ ├── public-1.js
│ │ │ │ │ │ │ ├── quest-2.js
│ │ │ │ │ │ │ ├── quickAndSimple-5.js
│ │ │ │ │ │ │ ├── quickBuy-3.js
│ │ │ │ │ │ │ ├── ratingsAndReviews-5.js
│ │ │ │ │ │ │ ├── readyToTrade-4.js
│ │ │ │ │ │ │ ├── realToUSDC-1.js
│ │ │ │ │ │ │ ├── receiveGift-4.js
│ │ │ │ │ │ │ ├── receivedCard-3.js
│ │ │ │ │ │ │ ├── recommendInvest-6.js
│ │ │ │ │ │ │ ├── recurringReward-4.js
│ │ │ │ │ │ │ ├── referralsAvatars-6.js
│ │ │ │ │ │ │ ├── referralsBitcoin-6.js
│ │ │ │ │ │ │ ├── referralsCoinbaseOne-2.js
│ │ │ │ │ │ │ ├── referralsGenericCoin-1.js
│ │ │ │ │ │ │ ├── referralsWalletPhones-7.js
│ │ │ │ │ │ │ ├── refresh-0.js
│ │ │ │ │ │ │ ├── remittances-4.js
│ │ │ │ │ │ │ ├── requestSent-5.js
│ │ │ │ │ │ │ ├── restrictedCountry-7.js
│ │ │ │ │ │ │ ├── retailUSDCRewards-5.js
│ │ │ │ │ │ │ ├── reviewInfo-4.js
│ │ │ │ │ │ │ ├── rocket-4.js
│ │ │ │ │ │ │ ├── rotatingRewards-7.js
│ │ │ │ │ │ │ ├── routingAccount-4.js
│ │ │ │ │ │ │ ├── scalable-1.js
│ │ │ │ │ │ │ ├── secureAndTrusted-4.js
│ │ │ │ │ │ │ ├── secureGlobalTransactions-5.js
│ │ │ │ │ │ │ ├── secureStorage-5.js
│ │ │ │ │ │ │ ├── securityShield-4.js
│ │ │ │ │ │ │ ├── selectCorrectCrypto-4.js
│ │ │ │ │ │ │ ├── selectReward-3.js
│ │ │ │ │ │ │ ├── selfCustody-5.js
│ │ │ │ │ │ │ ├── selfCustodyCrypto-4.js
│ │ │ │ │ │ │ ├── semiCustodial-5.js
│ │ │ │ │ │ │ ├── sendCryptoFaster-3.js
│ │ │ │ │ │ │ ├── sendToUsername-4.js
│ │ │ │ │ │ │ ├── serverCatSystemError-3.js
│ │ │ │ │ │ │ ├── settlement-1.js
│ │ │ │ │ │ │ ├── shareOnSocialMedia-4.js
│ │ │ │ │ │ │ ├── sidechain-3.js
│ │ │ │ │ │ │ ├── slippageTolerance-4.js
│ │ │ │ │ │ │ ├── smartContract-2.js
│ │ │ │ │ │ │ ├── spacedOutSystemError-5.js
│ │ │ │ │ │ │ ├── squidEmptyState-5.js
│ │ │ │ │ │ │ ├── stableValue-4.js
│ │ │ │ │ │ │ ├── stablecoin-1.js
│ │ │ │ │ │ │ ├── staking-4.js
│ │ │ │ │ │ │ ├── stakingMissedReturns-3.js
│ │ │ │ │ │ │ ├── stakingMissedReturnsUsdc-0.js
│ │ │ │ │ │ │ ├── startToday-3.js
│ │ │ │ │ │ │ ├── stayInControlSelfHostedWalletsStorage-5.js
│ │ │ │ │ │ │ ├── stopLimitOrder-4.js
│ │ │ │ │ │ │ ├── stopLimitOrderDown-5.js
│ │ │ │ │ │ │ ├── storage-2.js
│ │ │ │ │ │ │ ├── stressTestedColdStorage-4.js
│ │ │ │ │ │ │ ├── success-4.js
│ │ │ │ │ │ │ ├── supportAndMore-5.js
│ │ │ │ │ │ │ ├── sustainable-1.js
│ │ │ │ │ │ │ ├── switchAdvancedToSimpleTrading-4.js
│ │ │ │ │ │ │ ├── taxesDetails-3.js
│ │ │ │ │ │ │ ├── test-0.js
│ │ │ │ │ │ │ ├── tools-1.js
│ │ │ │ │ │ │ ├── tradeGeneral-3.js
│ │ │ │ │ │ │ ├── tradeHistory-4.js
│ │ │ │ │ │ │ ├── tradeImmediately-4.js
│ │ │ │ │ │ │ ├── tradingPerpetualsUsdc-0.js
│ │ │ │ │ │ │ ├── tradingWithLeverage-0.js
│ │ │ │ │ │ │ ├── transactionLimit-4.js
│ │ │ │ │ │ │ ├── trendingHotAssets-3.js
│ │ │ │ │ │ │ ├── twoIdVerify-3.js
│ │ │ │ │ │ │ ├── unlockKey-3.js
│ │ │ │ │ │ │ ├── usdAndUsdc-0.js
│ │ │ │ │ │ │ ├── usdtToUSDC-2.js
│ │ │ │ │ │ │ ├── verifyBankTransactions-4.js
│ │ │ │ │ │ │ ├── verifyCardTransactions-4.js
│ │ │ │ │ │ │ ├── verifyEmail-4.js
│ │ │ │ │ │ │ ├── verifyIdDetails-3.js
│ │ │ │ │ │ │ ├── verifyInfo-4.js
│ │ │ │ │ │ │ ├── videoRequest-4.js
│ │ │ │ │ │ │ ├── videoReview-4.js
│ │ │ │ │ │ │ ├── videoUpload-4.js
│ │ │ │ │ │ │ ├── vipBadge-1.js
│ │ │ │ │ │ │ ├── vote-1.js
│ │ │ │ │ │ │ ├── walletAsset-7.js
│ │ │ │ │ │ │ ├── walletConfirmation-2.js
│ │ │ │ │ │ │ ├── walletFlyEmptyState-4.js
│ │ │ │ │ │ │ ├── walletLoading-3.js
│ │ │ │ │ │ │ ├── walletNotifications-4.js
│ │ │ │ │ │ │ ├── walletSecurity-5.js
│ │ │ │ │ │ │ ├── walletUi-7.js
│ │ │ │ │ │ │ ├── walletWarning-1.js
│ │ │ │ │ │ │ ├── watchVideos-3.js
│ │ │ │ │ │ │ ├── web3ActivityError-3.js
│ │ │ │ │ │ │ ├── web3ActivitySigned-5.js
│ │ │ │ │ │ │ ├── web3MobileSetupStart-4.js
│ │ │ │ │ │ │ ├── web3MobileSetupSuccess-4.js
│ │ │ │ │ │ │ ├── webRAT-3.js
│ │ │ │ │ │ │ ├── whyNotBoth-4.js
│ │ │ │ │ │ │ └── yourContacts-4.js
│ │ │ │ │ │ └── esm/
│ │ │ │ │ │ └── themeable/
│ │ │ │ │ │ ├── accessToAdvancedCharts-5.js
│ │ │ │ │ │ ├── accountUnderReview-3.js
│ │ │ │ │ │ ├── add2Fa-5.js
│ │ │ │ │ │ ├── addBankAccount-4.js
│ │ │ │ │ │ ├── addCreditCard-4.js
│ │ │ │ │ │ ├── addMoreCrypto-4.js
│ │ │ │ │ │ ├── addPhoneNumber-4.js
│ │ │ │ │ │ ├── advancedTrading-5.js
│ │ │ │ │ │ ├── advancedTradingChartsIndicatorsCandles-3.js
│ │ │ │ │ │ ├── advancedTradingUi-3.js
│ │ │ │ │ │ ├── airdrop-2.js
│ │ │ │ │ │ ├── alienDonutSystemError-4.js
│ │ │ │ │ │ ├── anonymous-1.js
│ │ │ │ │ │ ├── appTrackingTransparency-5.js
│ │ │ │ │ │ ├── artFrameEmptyState-5.js
│ │ │ │ │ │ ├── automaticPayments-3.js
│ │ │ │ │ │ ├── backedByUsDollar-5.js
│ │ │ │ │ │ ├── baseChartLarge-1.js
│ │ │ │ │ │ ├── baseCheck-1.js
│ │ │ │ │ │ ├── baseCoinCryptoLarge-1.js
│ │ │ │ │ │ ├── baseCoinNetworkLarge-1.js
│ │ │ │ │ │ ├── baseConnectLarge-1.js
│ │ │ │ │ │ ├── baseCreatorCoin-1.js
│ │ │ │ │ │ ├── baseCreatorCoinEmpty-1.js
│ │ │ │ │ │ ├── baseDecentralizationLarge-1.js
│ │ │ │ │ │ ├── baseEmptyLarge-1.js
│ │ │ │ │ │ ├── baseErrorButterfly-0.js
│ │ │ │ │ │ ├── baseErrorLarge-1.js
│ │ │ │ │ │ ├── baseLoadingLarge-1.js
│ │ │ │ │ │ ├── baseLocationLarge-1.js
│ │ │ │ │ │ ├── baseMintNftLarge-1.js
│ │ │ │ │ │ ├── baseNetworkLarge-1.js
│ │ │ │ │ │ ├── baseNftLarge-1.js
│ │ │ │ │ │ ├── basePaycoinLarge-1.js
│ │ │ │ │ │ ├── basePeopleLarge-1.js
│ │ │ │ │ │ ├── basePiechartLarge-1.js
│ │ │ │ │ │ ├── baseRewardsCalmLarge-1.js
│ │ │ │ │ │ ├── baseSecurityLarge-1.js
│ │ │ │ │ │ ├── baseSendLarge-1.js
│ │ │ │ │ │ ├── baseSocial-2.js
│ │ │ │ │ │ ├── baseTargetLarge-1.js
│ │ │ │ │ │ ├── basedInUsa-5.js
│ │ │ │ │ │ ├── bigBtc-6.js
│ │ │ │ │ │ ├── bigError-5.js
│ │ │ │ │ │ ├── bigWarning-5.js
│ │ │ │ │ │ ├── bitcoinAndOtherCrypto-3.js
│ │ │ │ │ │ ├── bitcoinGlobe-5.js
│ │ │ │ │ │ ├── blockchain-3.js
│ │ │ │ │ │ ├── borrow-4.js
│ │ │ │ │ │ ├── borrowCoins-2.js
│ │ │ │ │ │ ├── borrowCoinsBtc-0.js
│ │ │ │ │ │ ├── borrowWallet-5.js
│ │ │ │ │ │ ├── brdGift-4.js
│ │ │ │ │ │ ├── bridge-2.js
│ │ │ │ │ │ ├── browseDecentralizedApps-6.js
│ │ │ │ │ │ ├── browserExtension-4.js
│ │ │ │ │ │ ├── buy-1.js
│ │ │ │ │ │ ├── buyFirstCrypto-4.js
│ │ │ │ │ │ ├── camera-4.js
│ │ │ │ │ │ ├── cardAndPhone-2.js
│ │ │ │ │ │ ├── cardBoosted-3.js
│ │ │ │ │ │ ├── cardError-4.js
│ │ │ │ │ │ ├── cardErrorCB1-0.js
│ │ │ │ │ │ ├── cardReloadFunds-3.js
│ │ │ │ │ │ ├── cashExcitement-3.js
│ │ │ │ │ │ ├── catHoldingWalletEmptyState-4.js
│ │ │ │ │ │ ├── catLostSystemError-3.js
│ │ │ │ │ │ ├── cbada-0.js
│ │ │ │ │ │ ├── cbbtc-2.js
│ │ │ │ │ │ ├── cbdoge-0.js
│ │ │ │ │ │ ├── cbltc-0.js
│ │ │ │ │ │ ├── cbmega-0.js
│ │ │ │ │ │ ├── cbxrp-0.js
│ │ │ │ │ │ ├── chickenFishSystemError-3.js
│ │ │ │ │ │ ├── claimCryptoUsername-2.js
│ │ │ │ │ │ ├── cloud-1.js
│ │ │ │ │ │ ├── cloudBacking-3.js
│ │ │ │ │ │ ├── coinCheckmark-4.js
│ │ │ │ │ │ ├── coinFifty-1.js
│ │ │ │ │ │ ├── coinbaseCard-3.js
│ │ │ │ │ │ ├── coinbaseCardIssue-3.js
│ │ │ │ │ │ ├── coinbaseCardLock-3.js
│ │ │ │ │ │ ├── coinbaseCardPocket-3.js
│ │ │ │ │ │ ├── coinbaseCardSpend-3.js
│ │ │ │ │ │ ├── coinbaseCardSpendCrypto-4.js
│ │ │ │ │ │ ├── coinbaseFees-3.js
│ │ │ │ │ │ ├── coinbaseIsDown-5.js
│ │ │ │ │ │ ├── coinbaseIsDownMobile-4.js
│ │ │ │ │ │ ├── coinbaseOneAirdrop-1.js
│ │ │ │ │ │ ├── coinbaseOneCardWarning-3.js
│ │ │ │ │ │ ├── coinbaseOneDiscountedAmount-4.js
│ │ │ │ │ │ ├── coinbaseOneDocWarning-3.js
│ │ │ │ │ │ ├── coinbaseOneEarn-2.js
│ │ │ │ │ │ ├── coinbaseOneInsufficientWallet-4.js
│ │ │ │ │ │ ├── coinbaseOneLogo-4.js
│ │ │ │ │ │ ├── coinbaseOnePercentOff-4.js
│ │ │ │ │ │ ├── coinbaseOnePhoneLightning-5.js
│ │ │ │ │ │ ├── coinbaseOneProtectedCrypto-3.js
│ │ │ │ │ │ ├── coinbaseOneRewards-4.js
│ │ │ │ │ │ ├── coinbaseOneSavingFunds-4.js
│ │ │ │ │ │ ├── coinbaseOneTokenRewards-3.js
│ │ │ │ │ │ ├── coinbaseOneUSDCBig-1.js
│ │ │ │ │ │ ├── coinbaseOneUSDCIncentives-4.js
│ │ │ │ │ │ ├── coinbaseOneWaitlist-4.js
│ │ │ │ │ │ ├── coinbaseOneWalletWarning-4.js
│ │ │ │ │ │ ├── coinbaseOneWelcome-4.js
│ │ │ │ │ │ ├── coinbaseOneZeroPortal-1.js
│ │ │ │ │ │ ├── coinbaseOneZeroPromotion-1.js
│ │ │ │ │ │ ├── coinbaseRedesigned-3.js
│ │ │ │ │ │ ├── coinbaseWalletToTrade-3.js
│ │ │ │ │ │ ├── coinsInWallet-3.js
│ │ │ │ │ │ ├── collectableNfts-6.js
│ │ │ │ │ │ ├── collectingNfts-5.js
│ │ │ │ │ │ ├── commerceAccounting-4.js
│ │ │ │ │ │ ├── commerceInvoices-3.js
│ │ │ │ │ │ ├── communication-1.js
│ │ │ │ │ │ ├── completeAQuiz-4.js
│ │ │ │ │ │ ├── congratulationsOnEarningCrypto-3.js
│ │ │ │ │ │ ├── connectPeople-2.js
│ │ │ │ │ │ ├── contactsListWarning-3.js
│ │ │ │ │ │ ├── crossBorderPayments-5.js
│ │ │ │ │ │ ├── cryptoAndMore-4.js
│ │ │ │ │ │ ├── cryptoApps-5.js
│ │ │ │ │ │ ├── cryptoAppsWallet-5.js
│ │ │ │ │ │ ├── cryptoAssets-6.js
│ │ │ │ │ │ ├── cryptoEconomy-4.js
│ │ │ │ │ │ ├── cryptoForBeginners-4.js
│ │ │ │ │ │ ├── cryptoPortfolio-4.js
│ │ │ │ │ │ ├── cryptoPortfolioUsdc-0.js
│ │ │ │ │ │ ├── cryptoWallet-5.js
│ │ │ │ │ │ ├── currencyPairs-5.js
│ │ │ │ │ │ ├── dappsArts-4.js
│ │ │ │ │ │ ├── dappsFinance-6.js
│ │ │ │ │ │ ├── dappsGaming-4.js
│ │ │ │ │ │ ├── dappsGeneral-2.js
│ │ │ │ │ │ ├── dappsL2Support-5.js
│ │ │ │ │ │ ├── dappsMusic-5.js
│ │ │ │ │ │ ├── decentralization-5.js
│ │ │ │ │ │ ├── decentralizedWebWeb3-5.js
│ │ │ │ │ │ ├── defiDecentralizedBorrowingLending-4.js
│ │ │ │ │ │ ├── defiDecentralizedTradingExchange-5.js
│ │ │ │ │ │ ├── defiEarn-3.js
│ │ │ │ │ │ ├── defiEnrollBoost-3.js
│ │ │ │ │ │ ├── defiHow-4.js
│ │ │ │ │ │ ├── defiRisk-3.js
│ │ │ │ │ │ ├── desktopAuthorized-4.js
│ │ │ │ │ │ ├── desktopUnknown-3.js
│ │ │ │ │ │ ├── developer-1.js
│ │ │ │ │ │ ├── diamondHands-6.js
│ │ │ │ │ │ ├── didDecentralizedIdentity-4.js
│ │ │ │ │ │ ├── digitalCollectibles-5.js
│ │ │ │ │ │ ├── digitalGold-1.js
│ │ │ │ │ │ ├── directDepositPhone-5.js
│ │ │ │ │ │ ├── discardAssets-5.js
│ │ │ │ │ │ ├── docError-3.js
│ │ │ │ │ │ ├── documentCertified-3.js
│ │ │ │ │ │ ├── documentSuccess-3.js
│ │ │ │ │ │ ├── downloadCoinbaseWallet-6.js
│ │ │ │ │ │ ├── earn-3.js
│ │ │ │ │ │ ├── earnCryptoCard-4.js
│ │ │ │ │ │ ├── earnCryptoInterest-5.js
│ │ │ │ │ │ ├── earnGlobe-1.js
│ │ │ │ │ │ ├── earnGrowth-4.js
│ │ │ │ │ │ ├── earnIdVerification-3.js
│ │ │ │ │ │ ├── earnInterest-4.js
│ │ │ │ │ │ ├── earnMore-4.js
│ │ │ │ │ │ ├── earnNuxHome-5.js
│ │ │ │ │ │ ├── earnSuccess-5.js
│ │ │ │ │ │ ├── earnToLearn-4.js
│ │ │ │ │ │ ├── emailNotification-4.js
│ │ │ │ │ │ ├── emptyCollection-5.js
│ │ │ │ │ │ ├── emptyStateCheckBackLater-5.js
│ │ │ │ │ │ ├── emptyStateNft404Page-4.js
│ │ │ │ │ │ ├── emptyStateNftSoldOut-4.js
│ │ │ │ │ │ ├── enableBiometrics-5.js
│ │ │ │ │ │ ├── encryptedEverything-4.js
│ │ │ │ │ │ ├── engagement-2.js
│ │ │ │ │ │ ├── ensProfilePic-2.js
│ │ │ │ │ │ ├── error400-4.js
│ │ │ │ │ │ ├── errorApp500-6.js
│ │ │ │ │ │ ├── errorMoblie-1.js
│ │ │ │ │ │ ├── errorRefresh-4.js
│ │ │ │ │ │ ├── errorRefreshWeb-1.js
│ │ │ │ │ │ ├── errorWeb-1.js
│ │ │ │ │ │ ├── errorWeb400-4.js
│ │ │ │ │ │ ├── errorWeb404-6.js
│ │ │ │ │ │ ├── errorWeb404Mobile-1.js
│ │ │ │ │ │ ├── errorWeb500-4.js
│ │ │ │ │ │ ├── estimatedAmount-3.js
│ │ │ │ │ │ ├── ethStakingRewards-4.js
│ │ │ │ │ │ ├── ethStakingUpsell-5.js
│ │ │ │ │ │ ├── ethereumToWallet-6.js
│ │ │ │ │ │ ├── exchange-1.js
│ │ │ │ │ │ ├── exchangeEmptyState-5.js
│ │ │ │ │ │ ├── exploreDecentralizedApps-7.js
│ │ │ │ │ │ ├── faceMatchReal-4.js
│ │ │ │ │ │ ├── feeScale-4.js
│ │ │ │ │ │ ├── fiat-1.js
│ │ │ │ │ │ ├── fileYourCryptoTaxes-5.js
│ │ │ │ │ │ ├── fileYourCryptoTaxesCheck-6.js
│ │ │ │ │ │ ├── flipStable-0.js
│ │ │ │ │ │ ├── focusLimitOrders-4.js
│ │ │ │ │ │ ├── freeBtc-4.js
│ │ │ │ │ │ ├── futures-6.js
│ │ │ │ │ │ ├── futuresAndPerps-0.js
│ │ │ │ │ │ ├── futuresExpire-0.js
│ │ │ │ │ │ ├── futuresVsPerps-0.js
│ │ │ │ │ │ ├── gainsAndLosses-4.js
│ │ │ │ │ │ ├── gamer-1.js
│ │ │ │ │ │ ├── gasFeesNetworkFees-4.js
│ │ │ │ │ │ ├── generative-2.js
│ │ │ │ │ │ ├── genniusLaunch-0.js
│ │ │ │ │ │ ├── getStartedInMinutes-4.js
│ │ │ │ │ │ ├── globalTransactions-5.js
│ │ │ │ │ │ ├── governance-4.js
│ │ │ │ │ │ ├── governanceMallet-1.js
│ │ │ │ │ │ ├── graphChartTrading-0.js
│ │ │ │ │ │ ├── hardwareWallets-4.js
│ │ │ │ │ │ ├── hiddenCollection-3.js
│ │ │ │ │ │ ├── holdCrypto-4.js
│ │ │ │ │ │ ├── holdingCrypto-3.js
│ │ │ │ │ │ ├── iceCreamMeltingSystemError-6.js
│ │ │ │ │ │ ├── idAngles-4.js
│ │ │ │ │ │ ├── idBack-2.js
│ │ │ │ │ │ ├── idCard-3.js
│ │ │ │ │ │ ├── idFront-3.js
│ │ │ │ │ │ ├── idIssue-3.js
│ │ │ │ │ │ ├── idVerificationSecure-5.js
│ │ │ │ │ │ ├── indexer-2.js
│ │ │ │ │ │ ├── innovation-2.js
│ │ │ │ │ │ ├── instantUnstakingClock-1.js
│ │ │ │ │ │ ├── instoAdd2Fa-0.js
│ │ │ │ │ │ ├── instoAddBankAccount-0.js
│ │ │ │ │ │ ├── instoCoinbaseOneProtectedCrypto-1.js
│ │ │ │ │ │ ├── instoDocumentSuccess-1.js
│ │ │ │ │ │ ├── instoEarnGlobe-0.js
│ │ │ │ │ │ ├── instoEnableBiometrics-0.js
│ │ │ │ │ │ ├── instoEthStakingRewards-0.js
│ │ │ │ │ │ ├── instoEthStakingUpsell-0.js
│ │ │ │ │ │ ├── instoGovernance-0.js
│ │ │ │ │ │ ├── instoKeyGenerationComplete-1.js
│ │ │ │ │ │ ├── instoKeyGenerationPending-0.js
│ │ │ │ │ │ ├── instoOnChain-2.js
│ │ │ │ │ │ ├── instoOpenEmail-1.js
│ │ │ │ │ │ ├── instoPhoneUnknown-0.js
│ │ │ │ │ │ ├── instoPrimeStaking-0.js
│ │ │ │ │ │ ├── instoPrivateKey-1.js
│ │ │ │ │ │ ├── instoRequestSent-1.js
│ │ │ │ │ │ ├── instoSecurityKeyAuth-0.js
│ │ │ │ │ │ ├── instoStaking-0.js
│ │ │ │ │ │ ├── instoStakingMissedReturns-1.js
│ │ │ │ │ │ ├── instoWallet-0.js
│ │ │ │ │ │ ├── instoWalletSecurity-0.js
│ │ │ │ │ │ ├── instoWeb3MobileSetupStart-0.js
│ │ │ │ │ │ ├── insufficientBalance-5.js
│ │ │ │ │ │ ├── insuranceProtection-4.js
│ │ │ │ │ │ ├── invest-3.js
│ │ │ │ │ │ ├── invite-4.js
│ │ │ │ │ │ ├── japanVerifyId-3.js
│ │ │ │ │ │ ├── keyGeneration-6.js
│ │ │ │ │ │ ├── layerOne-2.js
│ │ │ │ │ │ ├── layerThree-1.js
│ │ │ │ │ │ ├── layerTwo-2.js
│ │ │ │ │ │ ├── layeredNetworks-5.js
│ │ │ │ │ │ ├── ledgerAccess-4.js
│ │ │ │ │ │ ├── ledgerPlugin-4.js
│ │ │ │ │ │ ├── lend-1.js
│ │ │ │ │ │ ├── leverage-4.js
│ │ │ │ │ │ ├── lightningNetwork-1.js
│ │ │ │ │ │ ├── lightningNetworkInvoice-2.js
│ │ │ │ │ │ ├── lightningNetworkSend-1.js
│ │ │ │ │ │ ├── lightningNetworkTransfer-1.js
│ │ │ │ │ │ ├── limitOrders-5.js
│ │ │ │ │ │ ├── linkingYourWalletToYourCoinbaseAccount-8.js
│ │ │ │ │ │ ├── liquidationBufferGreen-1.js
│ │ │ │ │ │ ├── liquidationBufferRed-1.js
│ │ │ │ │ │ ├── liquidationBufferRedClose-1.js
│ │ │ │ │ │ ├── liquidationBufferYellow-0.js
│ │ │ │ │ │ ├── lowCost-2.js
│ │ │ │ │ │ ├── margin-3.js
│ │ │ │ │ │ ├── marginWarning-4.js
│ │ │ │ │ │ ├── mic-4.js
│ │ │ │ │ │ ├── mining-4.js
│ │ │ │ │ │ ├── minting-2.js
│ │ │ │ │ │ ├── moneyDecentralized-5.js
│ │ │ │ │ │ ├── moreGains-0.js
│ │ │ │ │ │ ├── multiPlatformMobileAppBrowserExtension-5.js
│ │ │ │ │ │ ├── multicoinSupport-4.js
│ │ │ │ │ │ ├── multipleAccountsWalletsForOneUser-5.js
│ │ │ │ │ │ ├── multiplePortfolios-1.js
│ │ │ │ │ │ ├── myNameIsSatoshi-3.js
│ │ │ │ │ │ ├── namePortfolio-1.js
│ │ │ │ │ │ ├── networkWarning-5.js
│ │ │ │ │ │ ├── noFees-4.js
│ │ │ │ │ │ ├── noFeesMotion-1.js
│ │ │ │ │ │ ├── noLongAddresses-2.js
│ │ │ │ │ │ ├── notificationsAlt-5.js
│ │ │ │ │ │ ├── notificationsAndUpdates-3.js
│ │ │ │ │ │ ├── offChain-1.js
│ │ │ │ │ │ ├── oilAndGold-2.js
│ │ │ │ │ │ ├── onChain-2.js
│ │ │ │ │ │ ├── onTheList-4.js
│ │ │ │ │ │ ├── openEmail-4.js
│ │ │ │ │ │ ├── optInPushNotificationsEmail-3.js
│ │ │ │ │ │ ├── options-0.js
│ │ │ │ │ │ ├── oracle-1.js
│ │ │ │ │ │ ├── orderBooks-3.js
│ │ │ │ │ │ ├── outage-1.js
│ │ │ │ │ │ ├── p2pGifting-4.js
│ │ │ │ │ │ ├── p2pPayments-5.js
│ │ │ │ │ │ ├── paperHands-3.js
│ │ │ │ │ │ ├── payUpFront-4.js
│ │ │ │ │ │ ├── pending-5.js
│ │ │ │ │ │ ├── performance-4.js
│ │ │ │ │ │ ├── phoneNumber-3.js
│ │ │ │ │ │ ├── phoneUnknown-3.js
│ │ │ │ │ │ ├── platform-1.js
│ │ │ │ │ │ ├── polling-3.js
│ │ │ │ │ │ ├── portfolioPerformance-5.js
│ │ │ │ │ │ ├── powerOfCrypto-6.js
│ │ │ │ │ │ ├── poweredByEthereum-5.js
│ │ │ │ │ │ ├── predictionsMarkets-0.js
│ │ │ │ │ │ ├── primeDeFi-4.js
│ │ │ │ │ │ ├── primeEarn-5.js
│ │ │ │ │ │ ├── primeStaking-5.js
│ │ │ │ │ │ ├── private-2.js
│ │ │ │ │ │ ├── privateKey-1.js
│ │ │ │ │ │ ├── processing-3.js
│ │ │ │ │ │ ├── protocol-1.js
│ │ │ │ │ │ ├── public-1.js
│ │ │ │ │ │ ├── quest-2.js
│ │ │ │ │ │ ├── quickAndSimple-5.js
│ │ │ │ │ │ ├── quickBuy-3.js
│ │ │ │ │ │ ├── ratingsAndReviews-5.js
│ │ │ │ │ │ ├── readyToTrade-4.js
│ │ │ │ │ │ ├── realToUSDC-1.js
│ │ │ │ │ │ ├── receiveGift-4.js
│ │ │ │ │ │ ├── receivedCard-3.js
│ │ │ │ │ │ ├── recommendInvest-6.js
│ │ │ │ │ │ ├── recurringReward-4.js
│ │ │ │ │ │ ├── referralsAvatars-6.js
│ │ │ │ │ │ ├── referralsBitcoin-6.js
│ │ │ │ │ │ ├── referralsCoinbaseOne-2.js
│ │ │ │ │ │ ├── referralsGenericCoin-1.js
│ │ │ │ │ │ ├── referralsWalletPhones-7.js
│ │ │ │ │ │ ├── refresh-0.js
│ │ │ │ │ │ ├── remittances-4.js
│ │ │ │ │ │ ├── requestSent-5.js
│ │ │ │ │ │ ├── restrictedCountry-7.js
│ │ │ │ │ │ ├── retailUSDCRewards-5.js
│ │ │ │ │ │ ├── reviewInfo-4.js
│ │ │ │ │ │ ├── rocket-4.js
│ │ │ │ │ │ ├── rotatingRewards-7.js
│ │ │ │ │ │ ├── routingAccount-4.js
│ │ │ │ │ │ ├── scalable-1.js
│ │ │ │ │ │ ├── secureAndTrusted-4.js
│ │ │ │ │ │ ├── secureGlobalTransactions-5.js
│ │ │ │ │ │ ├── secureStorage-5.js
│ │ │ │ │ │ ├── securityShield-4.js
│ │ │ │ │ │ ├── selectCorrectCrypto-4.js
│ │ │ │ │ │ ├── selectReward-3.js
│ │ │ │ │ │ ├── selfCustody-5.js
│ │ │ │ │ │ ├── selfCustodyCrypto-4.js
│ │ │ │ │ │ ├── semiCustodial-5.js
│ │ │ │ │ │ ├── sendCryptoFaster-3.js
│ │ │ │ │ │ ├── sendToUsername-4.js
│ │ │ │ │ │ ├── serverCatSystemError-3.js
│ │ │ │ │ │ ├── settlement-1.js
│ │ │ │ │ │ ├── shareOnSocialMedia-4.js
│ │ │ │ │ │ ├── sidechain-3.js
│ │ │ │ │ │ ├── slippageTolerance-4.js
│ │ │ │ │ │ ├── smartContract-2.js
│ │ │ │ │ │ ├── spacedOutSystemError-5.js
│ │ │ │ │ │ ├── squidEmptyState-5.js
│ │ │ │ │ │ ├── stableValue-4.js
│ │ │ │ │ │ ├── stablecoin-1.js
│ │ │ │ │ │ ├── staking-4.js
│ │ │ │ │ │ ├── stakingMissedReturns-3.js
│ │ │ │ │ │ ├── stakingMissedReturnsUsdc-0.js
│ │ │ │ │ │ ├── startToday-3.js
│ │ │ │ │ │ ├── stayInControlSelfHostedWalletsStorage-5.js
│ │ │ │ │ │ ├── stopLimitOrder-4.js
│ │ │ │ │ │ ├── stopLimitOrderDown-5.js
│ │ │ │ │ │ ├── storage-2.js
│ │ │ │ │ │ ├── stressTestedColdStorage-4.js
│ │ │ │ │ │ ├── success-4.js
│ │ │ │ │ │ ├── supportAndMore-5.js
│ │ │ │ │ │ ├── sustainable-1.js
│ │ │ │ │ │ ├── switchAdvancedToSimpleTrading-4.js
│ │ │ │ │ │ ├── taxesDetails-3.js
│ │ │ │ │ │ ├── test-0.js
│ │ │ │ │ │ ├── tools-1.js
│ │ │ │ │ │ ├── tradeGeneral-3.js
│ │ │ │ │ │ ├── tradeHistory-4.js
│ │ │ │ │ │ ├── tradeImmediately-4.js
│ │ │ │ │ │ ├── tradingPerpetualsUsdc-0.js
│ │ │ │ │ │ ├── tradingWithLeverage-0.js
│ │ │ │ │ │ ├── transactionLimit-4.js
│ │ │ │ │ │ ├── trendingHotAssets-3.js
│ │ │ │ │ │ ├── twoIdVerify-3.js
│ │ │ │ │ │ ├── unlockKey-3.js
│ │ │ │ │ │ ├── usdAndUsdc-0.js
│ │ │ │ │ │ ├── usdtToUSDC-2.js
│ │ │ │ │ │ ├── verifyBankTransactions-4.js
│ │ │ │ │ │ ├── verifyCardTransactions-4.js
│ │ │ │ │ │ ├── verifyEmail-4.js
│ │ │ │ │ │ ├── verifyIdDetails-3.js
│ │ │ │ │ │ ├── verifyInfo-4.js
│ │ │ │ │ │ ├── videoRequest-4.js
│ │ │ │ │ │ ├── videoReview-4.js
│ │ │ │ │ │ ├── videoUpload-4.js
│ │ │ │ │ │ ├── vipBadge-1.js
│ │ │ │ │ │ ├── vote-1.js
│ │ │ │ │ │ ├── walletAsset-7.js
│ │ │ │ │ │ ├── walletConfirmation-2.js
│ │ │ │ │ │ ├── walletFlyEmptyState-4.js
│ │ │ │ │ │ ├── walletLoading-3.js
│ │ │ │ │ │ ├── walletNotifications-4.js
│ │ │ │ │ │ ├── walletSecurity-5.js
│ │ │ │ │ │ ├── walletUi-7.js
│ │ │ │ │ │ ├── walletWarning-1.js
│ │ │ │ │ │ ├── watchVideos-3.js
│ │ │ │ │ │ ├── web3ActivityError-3.js
│ │ │ │ │ │ ├── web3ActivitySigned-5.js
│ │ │ │ │ │ ├── web3MobileSetupStart-4.js
│ │ │ │ │ │ ├── web3MobileSetupSuccess-4.js
│ │ │ │ │ │ ├── webRAT-3.js
│ │ │ │ │ │ ├── whyNotBoth-4.js
│ │ │ │ │ │ └── yourContacts-4.js
│ │ │ │ │ └── types/
│ │ │ │ │ └── HeroSquareName.ts
│ │ │ │ ├── pictogram/
│ │ │ │ │ ├── data/
│ │ │ │ │ │ ├── descriptionMap.ts
│ │ │ │ │ │ ├── names.ts
│ │ │ │ │ │ ├── svgEsmMap.ts
│ │ │ │ │ │ ├── svgJsMap.ts
│ │ │ │ │ │ └── versionMap.ts
│ │ │ │ │ ├── svgJs/
│ │ │ │ │ │ ├── cjs/
│ │ │ │ │ │ │ ├── dark/
│ │ │ │ │ │ │ │ ├── 2fa-3.js
│ │ │ │ │ │ │ │ ├── accountsNavigation-7.js
│ │ │ │ │ │ │ │ ├── accreditedInvestor-1.js
│ │ │ │ │ │ │ │ ├── add-3.js
│ │ │ │ │ │ │ │ ├── addCard-3.js
│ │ │ │ │ │ │ │ ├── addPayment-3.js
│ │ │ │ │ │ │ │ ├── addPhone-3.js
│ │ │ │ │ │ │ │ ├── addToWatchlist-3.js
│ │ │ │ │ │ │ │ ├── addWallet-3.js
│ │ │ │ │ │ │ │ ├── addressBook-3.js
│ │ │ │ │ │ │ │ ├── advancedTradingDesktop-4.js
│ │ │ │ │ │ │ │ ├── advancedTradingNavigation-6.js
│ │ │ │ │ │ │ │ ├── advancedTradingRebates-3.js
│ │ │ │ │ │ │ │ ├── agent-5.js
│ │ │ │ │ │ │ │ ├── alerts-3.js
│ │ │ │ │ │ │ │ ├── alertsCoinbaseOne-0.js
│ │ │ │ │ │ │ │ ├── analyticsNavigation-5.js
│ │ │ │ │ │ │ │ ├── apartOfDropsNft-3.js
│ │ │ │ │ │ │ │ ├── applyForHigherLimits-3.js
│ │ │ │ │ │ │ │ ├── apyInterest-5.js
│ │ │ │ │ │ │ │ ├── arrowsUpDown-0.js
│ │ │ │ │ │ │ │ ├── assetEncryption-5.js
│ │ │ │ │ │ │ │ ├── assetHubNavigation-5.js
│ │ │ │ │ │ │ │ ├── assetManagement-3.js
│ │ │ │ │ │ │ │ ├── assetManagementNavigation-1.js
│ │ │ │ │ │ │ │ ├── assetMeasurements-5.js
│ │ │ │ │ │ │ │ ├── assetMovement-5.js
│ │ │ │ │ │ │ │ ├── authenticationApp-3.js
│ │ │ │ │ │ │ │ ├── authenticator-3.js
│ │ │ │ │ │ │ │ ├── authenticatorAlt-3.js
│ │ │ │ │ │ │ │ ├── authenticatorProgress-3.js
│ │ │ │ │ │ │ │ ├── avatarAa-0.js
│ │ │ │ │ │ │ │ ├── avatarAb-0.js
│ │ │ │ │ │ │ │ ├── avatarAc-0.js
│ │ │ │ │ │ │ │ ├── avatarAd-0.js
│ │ │ │ │ │ │ │ ├── avatarAe-0.js
│ │ │ │ │ │ │ │ ├── avatarAf-0.js
│ │ │ │ │ │ │ │ ├── avatarAg-0.js
│ │ │ │ │ │ │ │ ├── avatarAh-0.js
│ │ │ │ │ │ │ │ ├── avatarAi-0.js
│ │ │ │ │ │ │ │ ├── avatarAj-0.js
│ │ │ │ │ │ │ │ ├── avatarBa-0.js
│ │ │ │ │ │ │ │ ├── avatarBb-0.js
│ │ │ │ │ │ │ │ ├── avatarBc-0.js
│ │ │ │ │ │ │ │ ├── avatarBd-0.js
│ │ │ │ │ │ │ │ ├── avatarBe-0.js
│ │ │ │ │ │ │ │ ├── avatarBf-0.js
│ │ │ │ │ │ │ │ ├── avatarBg-0.js
│ │ │ │ │ │ │ │ ├── avatarBh-0.js
│ │ │ │ │ │ │ │ ├── avatarBi-0.js
│ │ │ │ │ │ │ │ ├── avatarBj-0.js
│ │ │ │ │ │ │ │ ├── avatarCa-0.js
│ │ │ │ │ │ │ │ ├── avatarCb-0.js
│ │ │ │ │ │ │ │ ├── avatarCc-0.js
│ │ │ │ │ │ │ │ ├── avatarCd-0.js
│ │ │ │ │ │ │ │ ├── avatarCe-0.js
│ │ │ │ │ │ │ │ ├── avatarCf-0.js
│ │ │ │ │ │ │ │ ├── avatarCg-0.js
│ │ │ │ │ │ │ │ ├── avatarCh-0.js
│ │ │ │ │ │ │ │ ├── avatarCi-0.js
│ │ │ │ │ │ │ │ ├── avatarCj-0.js
│ │ │ │ │ │ │ │ ├── avatarDa-0.js
│ │ │ │ │ │ │ │ ├── avatarDb-0.js
│ │ │ │ │ │ │ │ ├── avatarDc-0.js
│ │ │ │ │ │ │ │ ├── avatarDd-0.js
│ │ │ │ │ │ │ │ ├── avatarDe-0.js
│ │ │ │ │ │ │ │ ├── avatarDf-0.js
│ │ │ │ │ │ │ │ ├── avatarDg-0.js
│ │ │ │ │ │ │ │ ├── avatarDh-0.js
│ │ │ │ │ │ │ │ ├── avatarDi-0.js
│ │ │ │ │ │ │ │ ├── avatarDj-0.js
│ │ │ │ │ │ │ │ ├── avatarEa-0.js
│ │ │ │ │ │ │ │ ├── avatarEb-0.js
│ │ │ │ │ │ │ │ ├── avatarEc-0.js
│ │ │ │ │ │ │ │ ├── avatarEd-0.js
│ │ │ │ │ │ │ │ ├── avatarEe-0.js
│ │ │ │ │ │ │ │ ├── avatarEf-0.js
│ │ │ │ │ │ │ │ ├── avatarEg-0.js
│ │ │ │ │ │ │ │ ├── avatarEh-0.js
│ │ │ │ │ │ │ │ ├── avatarEi-0.js
│ │ │ │ │ │ │ │ ├── avatarEj-0.js
│ │ │ │ │ │ │ │ ├── avatarFa-0.js
│ │ │ │ │ │ │ │ ├── avatarFb-0.js
│ │ │ │ │ │ │ │ ├── avatarFc-0.js
│ │ │ │ │ │ │ │ ├── avatarFd-0.js
│ │ │ │ │ │ │ │ ├── avatarFe-0.js
│ │ │ │ │ │ │ │ ├── avatarFf-0.js
│ │ │ │ │ │ │ │ ├── avatarFg-0.js
│ │ │ │ │ │ │ │ ├── avatarFh-0.js
│ │ │ │ │ │ │ │ ├── avatarFi-0.js
│ │ │ │ │ │ │ │ ├── avatarFj-0.js
│ │ │ │ │ │ │ │ ├── avatarGa-0.js
│ │ │ │ │ │ │ │ ├── avatarGb-0.js
│ │ │ │ │ │ │ │ ├── avatarGc-0.js
│ │ │ │ │ │ │ │ ├── avatarGd-0.js
│ │ │ │ │ │ │ │ ├── avatarGe-0.js
│ │ │ │ │ │ │ │ ├── avatarGf-0.js
│ │ │ │ │ │ │ │ ├── avatarGg-0.js
================================================
FILE CONTENTS
================================================
================================================
FILE: .agents/skills/skill-creator/LICENSE.txt
================================================
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright 2026 Anthropic, PBC.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
FILE: .agents/skills/skill-creator/SKILL.md
================================================
---
name: skill-creator
description: Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
---
# Skill Creator
A skill for creating new skills and iteratively improving them.
At a high level, the process of creating a skill goes like this:
- Decide what you want the skill to do and roughly how it should do it
- Write a draft of the skill
- Create a few test prompts and run claude-with-access-to-the-skill on them
- Help the user evaluate the results both qualitatively and quantitatively
- While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you can either use as is or modify if you feel something needs to change about them). Then explain them to the user (or if they already existed, explain the ones that already exist)
- Use the `eval-viewer/generate_review.py` script to show the user the results for them to look at, and also let them look at the quantitative metrics
- Rewrite the skill based on feedback from the user's evaluation of the results (and also if there are any glaring flaws that become apparent from the quantitative benchmarks)
- Repeat until you're satisfied
- Expand the test set and try again at larger scale
Your job when using this skill is to figure out where the user is in this process and then jump in and help them progress through these stages. So for instance, maybe they're like "I want to make a skill for X". You can help narrow down what they mean, write a draft, write the test cases, figure out how they want to evaluate, run all the prompts, and repeat.
On the other hand, maybe they already have a draft of the skill. In this case you can go straight to the eval/iterate part of the loop.
Of course, you should always be flexible and if the user is like "I don't need to run a bunch of evaluations, just vibe with me", you can do that instead.
Then after the skill is done (but again, the order is flexible), you can also run the skill description improver, which we have a whole separate script for, to optimize the triggering of the skill.
Cool? Cool.
## Communicating with the user
The skill creator is liable to be used by people across a wide range of familiarity with coding jargon. If you haven't heard (and how could you, it's only very recently that it started), there's a trend now where the power of Claude is inspiring plumbers to open up their terminals, parents and grandparents to google "how to install npm". On the other hand, the bulk of users are probably fairly computer-literate.
So please pay attention to context cues to understand how to phrase your communication! In the default case, just to give you some idea:
- "evaluation" and "benchmark" are borderline, but OK
- for "JSON" and "assertion" you want to see serious cues from the user that they know what those things are before using them without explaining them
It's OK to briefly explain terms if you're in doubt, and feel free to clarify terms with a short definition if you're unsure if the user will get it.
---
## Creating a skill
### Capture Intent
Start by understanding the user's intent. The current conversation might already contain a workflow the user wants to capture (e.g., they say "turn this into a skill"). If so, extract answers from the conversation history first — the tools used, the sequence of steps, corrections the user made, input/output formats observed. The user may need to fill the gaps, and should confirm before proceeding to the next step.
1. What should this skill enable Claude to do?
2. When should this skill trigger? (what user phrases/contexts)
3. What's the expected output format?
4. Should we set up test cases to verify the skill works? Skills with objectively verifiable outputs (file transforms, data extraction, code generation, fixed workflow steps) benefit from test cases. Skills with subjective outputs (writing style, art) often don't need them. Suggest the appropriate default based on the skill type, but let the user decide.
### Interview and Research
Proactively ask questions about edge cases, input/output formats, example files, success criteria, and dependencies. Wait to write test prompts until you've got this part ironed out.
Check available MCPs - if useful for research (searching docs, finding similar skills, looking up best practices), research in parallel via subagents if available, otherwise inline. Come prepared with context to reduce burden on the user.
### Write the SKILL.md
Based on the user interview, fill in these components:
- **name**: Skill identifier
- **description**: When to trigger, what it does. This is the primary triggering mechanism - include both what the skill does AND specific contexts for when to use it. All "when to use" info goes here, not in the body. Note: currently Claude has a tendency to "undertrigger" skills -- to not use them when they'd be useful. To combat this, please make the skill descriptions a little bit "pushy". So for instance, instead of "How to build a simple fast dashboard to display internal Anthropic data.", you might write "How to build a simple fast dashboard to display internal Anthropic data. Make sure to use this skill whenever the user mentions dashboards, data visualization, internal metrics, or wants to display any kind of company data, even if they don't explicitly ask for a 'dashboard.'"
- **compatibility**: Required tools, dependencies (optional, rarely needed)
- **the rest of the skill :)**
### Skill Writing Guide
#### Anatomy of a Skill
```
skill-name/
├── SKILL.md (required)
│ ├── YAML frontmatter (name, description required)
│ └── Markdown instructions
└── Bundled Resources (optional)
├── scripts/ - Executable code for deterministic/repetitive tasks
├── references/ - Docs loaded into context as needed
└── assets/ - Files used in output (templates, icons, fonts)
```
#### Progressive Disclosure
Skills use a three-level loading system:
1. **Metadata** (name + description) - Always in context (~100 words)
2. **SKILL.md body** - In context whenever skill triggers (<500 lines ideal)
3. **Bundled resources** - As needed (unlimited, scripts can execute without loading)
These word counts are approximate and you can feel free to go longer if needed.
**Key patterns:**
- Keep SKILL.md under 500 lines; if you're approaching this limit, add an additional layer of hierarchy along with clear pointers about where the model using the skill should go next to follow up.
- Reference files clearly from SKILL.md with guidance on when to read them
- For large reference files (>300 lines), include a table of contents
**Domain organization**: When a skill supports multiple domains/frameworks, organize by variant:
```
cloud-deploy/
├── SKILL.md (workflow + selection)
└── references/
├── aws.md
├── gcp.md
└── azure.md
```
Claude reads only the relevant reference file.
#### Principle of Lack of Surprise
This goes without saying, but skills must not contain malware, exploit code, or any content that could compromise system security. A skill's contents should not surprise the user in their intent if described. Don't go along with requests to create misleading skills or skills designed to facilitate unauthorized access, data exfiltration, or other malicious activities. Things like a "roleplay as an XYZ" are OK though.
#### Writing Patterns
Prefer using the imperative form in instructions.
**Defining output formats** - You can do it like this:
```markdown
## Report structure
ALWAYS use this exact template:
# [Title]
## Executive summary
## Key findings
## Recommendations
```
**Examples pattern** - It's useful to include examples. You can format them like this (but if "Input" and "Output" are in the examples you might want to deviate a little):
```markdown
## Commit message format
**Example 1:**
Input: Added user authentication with JWT tokens
Output: feat(auth): implement JWT-based authentication
```
### Writing Style
Try to explain to the model why things are important in lieu of heavy-handed musty MUSTs. Use theory of mind and try to make the skill general and not super-narrow to specific examples. Start by writing a draft and then look at it with fresh eyes and improve it.
### Test Cases
After writing the skill draft, come up with 2-3 realistic test prompts — the kind of thing a real user would actually say. Share them with the user: [you don't have to use this exact language] "Here are a few test cases I'd like to try. Do these look right, or do you want to add more?" Then run them.
Save test cases to `evals/evals.json`. Don't write assertions yet — just the prompts. You'll draft assertions in the next step while the runs are in progress.
```json
{
"skill_name": "example-skill",
"evals": [
{
"id": 1,
"prompt": "User's task prompt",
"expected_output": "Description of expected result",
"files": []
}
]
}
```
See `references/schemas.md` for the full schema (including the `assertions` field, which you'll add later).
## Running and evaluating test cases
This section is one continuous sequence — don't stop partway through. Do NOT use `/skill-test` or any other testing skill.
Put results in `<skill-name>-workspace/` as a sibling to the skill directory. Within the workspace, organize results by iteration (`iteration-1/`, `iteration-2/`, etc.) and within that, each test case gets a directory (`eval-0/`, `eval-1/`, etc.). Don't create all of this upfront — just create directories as you go.
### Step 1: Spawn all runs (with-skill AND baseline) in the same turn
For each test case, spawn two subagents in the same turn — one with the skill, one without. This is important: don't spawn the with-skill runs first and then come back for baselines later. Launch everything at once so it all finishes around the same time.
**With-skill run:**
```
Execute this task:
- Skill path: <path-to-skill>
- Task: <eval prompt>
- Input files: <eval files if any, or "none">
- Save outputs to: <workspace>/iteration-<N>/eval-<ID>/with_skill/outputs/
- Outputs to save: <what the user cares about — e.g., "the .docx file", "the final CSV">
```
**Baseline run** (same prompt, but the baseline depends on context):
- **Creating a new skill**: no skill at all. Same prompt, no skill path, save to `without_skill/outputs/`.
- **Improving an existing skill**: the old version. Before editing, snapshot the skill (`cp -r <skill-path> <workspace>/skill-snapshot/`), then point the baseline subagent at the snapshot. Save to `old_skill/outputs/`.
Write an `eval_metadata.json` for each test case (assertions can be empty for now). Give each eval a descriptive name based on what it's testing — not just "eval-0". Use this name for the directory too. If this iteration uses new or modified eval prompts, create these files for each new eval directory — don't assume they carry over from previous iterations.
```json
{
"eval_id": 0,
"eval_name": "descriptive-name-here",
"prompt": "The user's task prompt",
"assertions": []
}
```
### Step 2: While runs are in progress, draft assertions
Don't just wait for the runs to finish — you can use this time productively. Draft quantitative assertions for each test case and explain them to the user. If assertions already exist in `evals/evals.json`, review them and explain what they check.
Good assertions are objectively verifiable and have descriptive names — they should read clearly in the benchmark viewer so someone glancing at the results immediately understands what each one checks. Subjective skills (writing style, design quality) are better evaluated qualitatively — don't force assertions onto things that need human judgment.
Update the `eval_metadata.json` files and `evals/evals.json` with the assertions once drafted. Also explain to the user what they'll see in the viewer — both the qualitative outputs and the quantitative benchmark.
### Step 3: As runs complete, capture timing data
When each subagent task completes, you receive a notification containing `total_tokens` and `duration_ms`. Save this data immediately to `timing.json` in the run directory:
```json
{
"total_tokens": 84852,
"duration_ms": 23332,
"total_duration_seconds": 23.3
}
```
This is the only opportunity to capture this data — it comes through the task notification and isn't persisted elsewhere. Process each notification as it arrives rather than trying to batch them.
### Step 4: Grade, aggregate, and launch the viewer
Once all runs are done:
1. **Grade each run** — spawn a grader subagent (or grade inline) that reads `agents/grader.md` and evaluates each assertion against the outputs. Save results to `grading.json` in each run directory. The grading.json expectations array must use the fields `text`, `passed`, and `evidence` (not `name`/`met`/`details` or other variants) — the viewer depends on these exact field names. For assertions that can be checked programmatically, write and run a script rather than eyeballing it — scripts are faster, more reliable, and can be reused across iterations.
2. **Aggregate into benchmark** — run the aggregation script from the skill-creator directory:
```bash
python -m scripts.aggregate_benchmark <workspace>/iteration-N --skill-name <name>
```
This produces `benchmark.json` and `benchmark.md` with pass_rate, time, and tokens for each configuration, with mean ± stddev and the delta. If generating benchmark.json manually, see `references/schemas.md` for the exact schema the viewer expects.
Put each with_skill version before its baseline counterpart.
3. **Do an analyst pass** — read the benchmark data and surface patterns the aggregate stats might hide. See `agents/analyzer.md` (the "Analyzing Benchmark Results" section) for what to look for — things like assertions that always pass regardless of skill (non-discriminating), high-variance evals (possibly flaky), and time/token tradeoffs.
4. **Launch the viewer** with both qualitative outputs and quantitative data:
```bash
nohup python <skill-creator-path>/eval-viewer/generate_review.py \
<workspace>/iteration-N \
--skill-name "my-skill" \
--benchmark <workspace>/iteration-N/benchmark.json \
> /dev/null 2>&1 &
VIEWER_PID=$!
```
For iteration 2+, also pass `--previous-workspace <workspace>/iteration-<N-1>`.
**Cowork / headless environments:** If `webbrowser.open()` is not available or the environment has no display, use `--static <output_path>` to write a standalone HTML file instead of starting a server. Feedback will be downloaded as a `feedback.json` file when the user clicks "Submit All Reviews". After download, copy `feedback.json` into the workspace directory for the next iteration to pick up.
Note: please use generate_review.py to create the viewer; there's no need to write custom HTML.
5. **Tell the user** something like: "I've opened the results in your browser. There are two tabs — 'Outputs' lets you click through each test case and leave feedback, 'Benchmark' shows the quantitative comparison. When you're done, come back here and let me know."
### What the user sees in the viewer
The "Outputs" tab shows one test case at a time:
- **Prompt**: the task that was given
- **Output**: the files the skill produced, rendered inline where possible
- **Previous Output** (iteration 2+): collapsed section showing last iteration's output
- **Formal Grades** (if grading was run): collapsed section showing assertion pass/fail
- **Feedback**: a textbox that auto-saves as they type
- **Previous Feedback** (iteration 2+): their comments from last time, shown below the textbox
The "Benchmark" tab shows the stats summary: pass rates, timing, and token usage for each configuration, with per-eval breakdowns and analyst observations.
Navigation is via prev/next buttons or arrow keys. When done, they click "Submit All Reviews" which saves all feedback to `feedback.json`.
### Step 5: Read the feedback
When the user tells you they're done, read `feedback.json`:
```json
{
"reviews": [
{
"run_id": "eval-0-with_skill",
"feedback": "the chart is missing axis labels",
"timestamp": "..."
},
{ "run_id": "eval-1-with_skill", "feedback": "", "timestamp": "..." },
{ "run_id": "eval-2-with_skill", "feedback": "perfect, love this", "timestamp": "..." }
],
"status": "complete"
}
```
Empty feedback means the user thought it was fine. Focus your improvements on the test cases where the user had specific complaints.
Kill the viewer server when you're done with it:
```bash
kill $VIEWER_PID 2>/dev/null
```
---
## Improving the skill
This is the heart of the loop. You've run the test cases, the user has reviewed the results, and now you need to make the skill better based on their feedback.
### How to think about improvements
1. **Generalize from the feedback.** The big picture thing that's happening here is that we're trying to create skills that can be used a million times (maybe literally, maybe even more who knows) across many different prompts. Here you and the user are iterating on only a few examples over and over again because it helps move faster. The user knows these examples in and out and it's quick for them to assess new outputs. But if the skill you and the user are codeveloping works only for those examples, it's useless. Rather than put in fiddly overfitty changes, or oppressively constrictive MUSTs, if there's some stubborn issue, you might try branching out and using different metaphors, or recommending different patterns of working. It's relatively cheap to try and maybe you'll land on something great.
2. **Keep the prompt lean.** Remove things that aren't pulling their weight. Make sure to read the transcripts, not just the final outputs — if it looks like the skill is making the model waste a bunch of time doing things that are unproductive, you can try getting rid of the parts of the skill that are making it do that and seeing what happens.
3. **Explain the why.** Try hard to explain the **why** behind everything you're asking the model to do. Today's LLMs are _smart_. They have good theory of mind and when given a good harness can go beyond rote instructions and really make things happen. Even if the feedback from the user is terse or frustrated, try to actually understand the task and why the user is writing what they wrote, and what they actually wrote, and then transmit this understanding into the instructions. If you find yourself writing ALWAYS or NEVER in all caps, or using super rigid structures, that's a yellow flag — if possible, reframe and explain the reasoning so that the model understands why the thing you're asking for is important. That's a more humane, powerful, and effective approach.
4. **Look for repeated work across test cases.** Read the transcripts from the test runs and notice if the subagents all independently wrote similar helper scripts or took the same multi-step approach to something. If all 3 test cases resulted in the subagent writing a `create_docx.py` or a `build_chart.py`, that's a strong signal the skill should bundle that script. Write it once, put it in `scripts/`, and tell the skill to use it. This saves every future invocation from reinventing the wheel.
This task is pretty important (we are trying to create billions a year in economic value here!) and your thinking time is not the blocker; take your time and really mull things over. I'd suggest writing a draft revision and then looking at it anew and making improvements. Really do your best to get into the head of the user and understand what they want and need.
### The iteration loop
After improving the skill:
1. Apply your improvements to the skill
2. Rerun all test cases into a new `iteration-<N+1>/` directory, including baseline runs. If you're creating a new skill, the baseline is always `without_skill` (no skill) — that stays the same across iterations. If you're improving an existing skill, use your judgment on what makes sense as the baseline: the original version the user came in with, or the previous iteration.
3. Launch the reviewer with `--previous-workspace` pointing at the previous iteration
4. Wait for the user to review and tell you they're done
5. Read the new feedback, improve again, repeat
Keep going until:
- The user says they're happy
- The feedback is all empty (everything looks good)
- You're not making meaningful progress
---
## Advanced: Blind comparison
For situations where you want a more rigorous comparison between two versions of a skill (e.g., the user asks "is the new version actually better?"), there's a blind comparison system. Read `agents/comparator.md` and `agents/analyzer.md` for the details. The basic idea is: give two outputs to an independent agent without telling it which is which, and let it judge quality. Then analyze why the winner won.
This is optional, requires subagents, and most users won't need it. The human review loop is usually sufficient.
---
## Description Optimization
The description field in SKILL.md frontmatter is the primary mechanism that determines whether Claude invokes a skill. After creating or improving a skill, offer to optimize the description for better triggering accuracy.
### Step 1: Generate trigger eval queries
Create 20 eval queries — a mix of should-trigger and should-not-trigger. Save as JSON:
```json
[
{ "query": "the user prompt", "should_trigger": true },
{ "query": "another prompt", "should_trigger": false }
]
```
The queries must be realistic and something a Claude Code or Claude.ai user would actually type. Not abstract requests, but requests that are concrete and specific and have a good amount of detail. For instance, file paths, personal context about the user's job or situation, column names and values, company names, URLs. A little bit of backstory. Some might be in lowercase or contain abbreviations or typos or casual speech. Use a mix of different lengths, and focus on edge cases rather than making them clear-cut (the user will get a chance to sign off on them).
Bad: `"Format this data"`, `"Extract text from PDF"`, `"Create a chart"`
Good: `"ok so my boss just sent me this xlsx file (its in my downloads, called something like 'Q4 sales final FINAL v2.xlsx') and she wants me to add a column that shows the profit margin as a percentage. The revenue is in column C and costs are in column D i think"`
For the **should-trigger** queries (8-10), think about coverage. You want different phrasings of the same intent — some formal, some casual. Include cases where the user doesn't explicitly name the skill or file type but clearly needs it. Throw in some uncommon use cases and cases where this skill competes with another but should win.
For the **should-not-trigger** queries (8-10), the most valuable ones are the near-misses — queries that share keywords or concepts with the skill but actually need something different. Think adjacent domains, ambiguous phrasing where a naive keyword match would trigger but shouldn't, and cases where the query touches on something the skill does but in a context where another tool is more appropriate.
The key thing to avoid: don't make should-not-trigger queries obviously irrelevant. "Write a fibonacci function" as a negative test for a PDF skill is too easy — it doesn't test anything. The negative cases should be genuinely tricky.
### Step 2: Review with user
Present the eval set to the user for review using the HTML template:
1. Read the template from `assets/eval_review.html`
2. Replace the placeholders:
- `__EVAL_DATA_PLACEHOLDER__` → the JSON array of eval items (no quotes around it — it's a JS variable assignment)
- `__SKILL_NAME_PLACEHOLDER__` → the skill's name
- `__SKILL_DESCRIPTION_PLACEHOLDER__` → the skill's current description
3. Write to a temp file (e.g., `/tmp/eval_review_<skill-name>.html`) and open it: `open /tmp/eval_review_<skill-name>.html`
4. The user can edit queries, toggle should-trigger, add/remove entries, then click "Export Eval Set"
5. The file downloads to `~/Downloads/eval_set.json` — check the Downloads folder for the most recent version in case there are multiple (e.g., `eval_set (1).json`)
This step matters — bad eval queries lead to bad descriptions.
### Step 3: Run the optimization loop
Tell the user: "This will take some time — I'll run the optimization loop in the background and check on it periodically."
Save the eval set to the workspace, then run in the background:
```bash
python -m scripts.run_loop \
--eval-set <path-to-trigger-eval.json> \
--skill-path <path-to-skill> \
--model <model-id-powering-this-session> \
--max-iterations 5 \
--verbose
```
Use the model ID from your system prompt (the one powering the current session) so the triggering test matches what the user actually experiences.
While it runs, periodically tail the output to give the user updates on which iteration it's on and what the scores look like.
This handles the full optimization loop automatically. It splits the eval set into 60% train and 40% held-out test, evaluates the current description (running each query 3 times to get a reliable trigger rate), then calls Claude to propose improvements based on what failed. It re-evaluates each new description on both train and test, iterating up to 5 times. When it's done, it opens an HTML report in the browser showing the results per iteration and returns JSON with `best_description` — selected by test score rather than train score to avoid overfitting.
### How skill triggering works
Understanding the triggering mechanism helps design better eval queries. Skills appear in Claude's `available_skills` list with their name + description, and Claude decides whether to consult a skill based on that description. The important thing to know is that Claude only consults skills for tasks it can't easily handle on its own — simple, one-step queries like "read this PDF" may not trigger a skill even if the description matches perfectly, because Claude can handle them directly with basic tools. Complex, multi-step, or specialized queries reliably trigger skills when the description matches.
This means your eval queries should be substantive enough that Claude would actually benefit from consulting a skill. Simple queries like "read file X" are poor test cases — they won't trigger skills regardless of description quality.
### Step 4: Apply the result
Take `best_description` from the JSON output and update the skill's SKILL.md frontmatter. Show the user before/after and report the scores.
---
### Package and Present (only if `present_files` tool is available)
Check whether you have access to the `present_files` tool. If you don't, skip this step. If you do, package the skill and present the .skill file to the user:
```bash
python -m scripts.package_skill <path/to/skill-folder>
```
After packaging, direct the user to the resulting `.skill` file path so they can install it.
---
## Claude.ai-specific instructions
In Claude.ai, the core workflow is the same (draft → test → review → improve → repeat), but because Claude.ai doesn't have subagents, some mechanics change. Here's what to adapt:
**Running test cases**: No subagents means no parallel execution. For each test case, read the skill's SKILL.md, then follow its instructions to accomplish the test prompt yourself. Do them one at a time. This is less rigorous than independent subagents (you wrote the skill and you're also running it, so you have full context), but it's a useful sanity check — and the human review step compensates. Skip the baseline runs — just use the skill to complete the task as requested.
**Reviewing results**: If you can't open a browser (e.g., Claude.ai's VM has no display, or you're on a remote server), skip the browser reviewer entirely. Instead, present results directly in the conversation. For each test case, show the prompt and the output. If the output is a file the user needs to see (like a .docx or .xlsx), save it to the filesystem and tell them where it is so they can download and inspect it. Ask for feedback inline: "How does this look? Anything you'd change?"
**Benchmarking**: Skip the quantitative benchmarking — it relies on baseline comparisons which aren't meaningful without subagents. Focus on qualitative feedback from the user.
**The iteration loop**: Same as before — improve the skill, rerun the test cases, ask for feedback — just without the browser reviewer in the middle. You can still organize results into iteration directories on the filesystem if you have one.
**Description optimization**: This section requires the `claude` CLI tool (specifically `claude -p`) which is only available in Claude Code. Skip it if you're on Claude.ai.
**Blind comparison**: Requires subagents. Skip it.
**Packaging**: The `package_skill.py` script works anywhere with Python and a filesystem. On Claude.ai, you can run it and the user can download the resulting `.skill` file.
**Updating an existing skill**: The user might be asking you to update an existing skill, not create a new one. In this case:
- **Preserve the original name.** Note the skill's directory name and `name` frontmatter field -- use them unchanged. E.g., if the installed skill is `research-helper`, output `research-helper.skill` (not `research-helper-v2`).
- **Copy to a writeable location before editing.** The installed skill path may be read-only. Copy to `/tmp/skill-name/`, edit there, and package from the copy.
- **If packaging manually, stage in `/tmp/` first**, then copy to the output directory -- direct writes may fail due to permissions.
---
## Cowork-Specific Instructions
If you're in Cowork, the main things to know are:
- You have subagents, so the main workflow (spawn test cases in parallel, run baselines, grade, etc.) all works. (However, if you run into severe problems with timeouts, it's OK to run the test prompts in series rather than parallel.)
- You don't have a browser or display, so when generating the eval viewer, use `--static <output_path>` to write a standalone HTML file instead of starting a server. Then proffer a link that the user can click to open the HTML in their browser.
- For whatever reason, the Cowork setup seems to disincline Claude from generating the eval viewer after running the tests, so just to reiterate: whether you're in Cowork or in Claude Code, after running tests, you should always generate the eval viewer for the human to look at examples before revising the skill yourself and trying to make corrections, using `generate_review.py` (not writing your own boutique html code). Sorry in advance but I'm gonna go all caps here: GENERATE THE EVAL VIEWER _BEFORE_ evaluating inputs yourself. You want to get them in front of the human ASAP!
- Feedback works differently: since there's no running server, the viewer's "Submit All Reviews" button will download `feedback.json` as a file. You can then read it from there (you may have to request access first).
- Packaging works — `package_skill.py` just needs Python and a filesystem.
- Description optimization (`run_loop.py` / `run_eval.py`) should work in Cowork just fine since it uses `claude -p` via subprocess, not a browser, but please save it until you've fully finished making the skill and the user agrees it's in good shape.
- **Updating an existing skill**: The user might be asking you to update an existing skill, not create a new one. Follow the update guidance in the claude.ai section above.
---
## Reference files
The agents/ directory contains instructions for specialized subagents. Read them when you need to spawn the relevant subagent.
- `agents/grader.md` — How to evaluate assertions against outputs
- `agents/comparator.md` — How to do blind A/B comparison between two outputs
- `agents/analyzer.md` — How to analyze why one version beat another
The references/ directory has additional documentation:
- `references/schemas.md` — JSON structures for evals.json, grading.json, etc.
---
Repeating one more time the core loop here for emphasis:
- Figure out what the skill is about
- Draft or edit the skill
- Run claude-with-access-to-the-skill on test prompts
- With the user, evaluate the outputs:
- Create benchmark.json and run `eval-viewer/generate_review.py` to help the user review them
- Run quantitative evals
- Repeat until you and the user are satisfied
- Package the final skill and return it to the user.
Please add steps to your TodoList, if you have such a thing, to make sure you don't forget. If you're in Cowork, please specifically put "Create evals JSON and run `eval-viewer/generate_review.py` so human can review test cases" in your TodoList to make sure it happens.
Good luck!
================================================
FILE: .agents/skills/skill-creator/agents/analyzer.md
================================================
# Post-hoc Analyzer Agent
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
## Role
After the blind comparator determines a winner, the Post-hoc Analyzer "unblids" the results by examining the skills and transcripts. The goal is to extract actionable insights: what made the winner better, and how can the loser be improved?
## Inputs
You receive these parameters in your prompt:
- **winner**: "A" or "B" (from blind comparison)
- **winner_skill_path**: Path to the skill that produced the winning output
- **winner_transcript_path**: Path to the execution transcript for the winner
- **loser_skill_path**: Path to the skill that produced the losing output
- **loser_transcript_path**: Path to the execution transcript for the loser
- **comparison_result_path**: Path to the blind comparator's output JSON
- **output_path**: Where to save the analysis results
## Process
### Step 1: Read Comparison Result
1. Read the blind comparator's output at comparison_result_path
2. Note the winning side (A or B), the reasoning, and any scores
3. Understand what the comparator valued in the winning output
### Step 2: Read Both Skills
1. Read the winner skill's SKILL.md and key referenced files
2. Read the loser skill's SKILL.md and key referenced files
3. Identify structural differences:
- Instructions clarity and specificity
- Script/tool usage patterns
- Example coverage
- Edge case handling
### Step 3: Read Both Transcripts
1. Read the winner's transcript
2. Read the loser's transcript
3. Compare execution patterns:
- How closely did each follow their skill's instructions?
- What tools were used differently?
- Where did the loser diverge from optimal behavior?
- Did either encounter errors or make recovery attempts?
### Step 4: Analyze Instruction Following
For each transcript, evaluate:
- Did the agent follow the skill's explicit instructions?
- Did the agent use the skill's provided tools/scripts?
- Were there missed opportunities to leverage skill content?
- Did the agent add unnecessary steps not in the skill?
Score instruction following 1-10 and note specific issues.
### Step 5: Identify Winner Strengths
Determine what made the winner better:
- Clearer instructions that led to better behavior?
- Better scripts/tools that produced better output?
- More comprehensive examples that guided edge cases?
- Better error handling guidance?
Be specific. Quote from skills/transcripts where relevant.
### Step 6: Identify Loser Weaknesses
Determine what held the loser back:
- Ambiguous instructions that led to suboptimal choices?
- Missing tools/scripts that forced workarounds?
- Gaps in edge case coverage?
- Poor error handling that caused failures?
### Step 7: Generate Improvement Suggestions
Based on the analysis, produce actionable suggestions for improving the loser skill:
- Specific instruction changes to make
- Tools/scripts to add or modify
- Examples to include
- Edge cases to address
Prioritize by impact. Focus on changes that would have changed the outcome.
### Step 8: Write Analysis Results
Save structured analysis to `{output_path}`.
## Output Format
Write a JSON file with this structure:
```json
{
"comparison_summary": {
"winner": "A",
"winner_skill": "path/to/winner/skill",
"loser_skill": "path/to/loser/skill",
"comparator_reasoning": "Brief summary of why comparator chose winner"
},
"winner_strengths": [
"Clear step-by-step instructions for handling multi-page documents",
"Included validation script that caught formatting errors",
"Explicit guidance on fallback behavior when OCR fails"
],
"loser_weaknesses": [
"Vague instruction 'process the document appropriately' led to inconsistent behavior",
"No script for validation, agent had to improvise and made errors",
"No guidance on OCR failure, agent gave up instead of trying alternatives"
],
"instruction_following": {
"winner": {
"score": 9,
"issues": ["Minor: skipped optional logging step"]
},
"loser": {
"score": 6,
"issues": [
"Did not use the skill's formatting template",
"Invented own approach instead of following step 3",
"Missed the 'always validate output' instruction"
]
}
},
"improvement_suggestions": [
{
"priority": "high",
"category": "instructions",
"suggestion": "Replace 'process the document appropriately' with explicit steps: 1) Extract text, 2) Identify sections, 3) Format per template",
"expected_impact": "Would eliminate ambiguity that caused inconsistent behavior"
},
{
"priority": "high",
"category": "tools",
"suggestion": "Add validate_output.py script similar to winner skill's validation approach",
"expected_impact": "Would catch formatting errors before final output"
},
{
"priority": "medium",
"category": "error_handling",
"suggestion": "Add fallback instructions: 'If OCR fails, try: 1) different resolution, 2) image preprocessing, 3) manual extraction'",
"expected_impact": "Would prevent early failure on difficult documents"
}
],
"transcript_insights": {
"winner_execution_pattern": "Read skill -> Followed 5-step process -> Used validation script -> Fixed 2 issues -> Produced output",
"loser_execution_pattern": "Read skill -> Unclear on approach -> Tried 3 different methods -> No validation -> Output had errors"
}
}
```
## Guidelines
- **Be specific**: Quote from skills and transcripts, don't just say "instructions were unclear"
- **Be actionable**: Suggestions should be concrete changes, not vague advice
- **Focus on skill improvements**: The goal is to improve the losing skill, not critique the agent
- **Prioritize by impact**: Which changes would most likely have changed the outcome?
- **Consider causation**: Did the skill weakness actually cause the worse output, or is it incidental?
- **Stay objective**: Analyze what happened, don't editorialize
- **Think about generalization**: Would this improvement help on other evals too?
## Categories for Suggestions
Use these categories to organize improvement suggestions:
| Category | Description |
| ---------------- | ---------------------------------------------- |
| `instructions` | Changes to the skill's prose instructions |
| `tools` | Scripts, templates, or utilities to add/modify |
| `examples` | Example inputs/outputs to include |
| `error_handling` | Guidance for handling failures |
| `structure` | Reorganization of skill content |
| `references` | External docs or resources to add |
## Priority Levels
- **high**: Would likely change the outcome of this comparison
- **medium**: Would improve quality but may not change win/loss
- **low**: Nice to have, marginal improvement
---
# Analyzing Benchmark Results
When analyzing benchmark results, the analyzer's purpose is to **surface patterns and anomalies** across multiple runs, not suggest skill improvements.
## Role
Review all benchmark run results and generate freeform notes that help the user understand skill performance. Focus on patterns that wouldn't be visible from aggregate metrics alone.
## Inputs
You receive these parameters in your prompt:
- **benchmark_data_path**: Path to the in-progress benchmark.json with all run results
- **skill_path**: Path to the skill being benchmarked
- **output_path**: Where to save the notes (as JSON array of strings)
## Process
### Step 1: Read Benchmark Data
1. Read the benchmark.json containing all run results
2. Note the configurations tested (with_skill, without_skill)
3. Understand the run_summary aggregates already calculated
### Step 2: Analyze Per-Assertion Patterns
For each expectation across all runs:
- Does it **always pass** in both configurations? (may not differentiate skill value)
- Does it **always fail** in both configurations? (may be broken or beyond capability)
- Does it **always pass with skill but fail without**? (skill clearly adds value here)
- Does it **always fail with skill but pass without**? (skill may be hurting)
- Is it **highly variable**? (flaky expectation or non-deterministic behavior)
### Step 3: Analyze Cross-Eval Patterns
Look for patterns across evals:
- Are certain eval types consistently harder/easier?
- Do some evals show high variance while others are stable?
- Are there surprising results that contradict expectations?
### Step 4: Analyze Metrics Patterns
Look at time_seconds, tokens, tool_calls:
- Does the skill significantly increase execution time?
- Is there high variance in resource usage?
- Are there outlier runs that skew the aggregates?
### Step 5: Generate Notes
Write freeform observations as a list of strings. Each note should:
- State a specific observation
- Be grounded in the data (not speculation)
- Help the user understand something the aggregate metrics don't show
Examples:
- "Assertion 'Output is a PDF file' passes 100% in both configurations - may not differentiate skill value"
- "Eval 3 shows high variance (50% ± 40%) - run 2 had an unusual failure that may be flaky"
- "Without-skill runs consistently fail on table extraction expectations (0% pass rate)"
- "Skill adds 13s average execution time but improves pass rate by 50%"
- "Token usage is 80% higher with skill, primarily due to script output parsing"
- "All 3 without-skill runs for eval 1 produced empty output"
### Step 6: Write Notes
Save notes to `{output_path}` as a JSON array of strings:
```json
[
"Assertion 'Output is a PDF file' passes 100% in both configurations - may not differentiate skill value",
"Eval 3 shows high variance (50% ± 40%) - run 2 had an unusual failure",
"Without-skill runs consistently fail on table extraction expectations",
"Skill adds 13s average execution time but improves pass rate by 50%"
]
```
## Guidelines
**DO:**
- Report what you observe in the data
- Be specific about which evals, expectations, or runs you're referring to
- Note patterns that aggregate metrics would hide
- Provide context that helps interpret the numbers
**DO NOT:**
- Suggest improvements to the skill (that's for the improvement step, not benchmarking)
- Make subjective quality judgments ("the output was good/bad")
- Speculate about causes without evidence
- Repeat information already in the run_summary aggregates
================================================
FILE: .agents/skills/skill-creator/agents/comparator.md
================================================
# Blind Comparator Agent
Compare two outputs WITHOUT knowing which skill produced them.
## Role
The Blind Comparator judges which output better accomplishes the eval task. You receive two outputs labeled A and B, but you do NOT know which skill produced which. This prevents bias toward a particular skill or approach.
Your judgment is based purely on output quality and task completion.
## Inputs
You receive these parameters in your prompt:
- **output_a_path**: Path to the first output file or directory
- **output_b_path**: Path to the second output file or directory
- **eval_prompt**: The original task/prompt that was executed
- **expectations**: List of expectations to check (optional - may be empty)
## Process
### Step 1: Read Both Outputs
1. Examine output A (file or directory)
2. Examine output B (file or directory)
3. Note the type, structure, and content of each
4. If outputs are directories, examine all relevant files inside
### Step 2: Understand the Task
1. Read the eval_prompt carefully
2. Identify what the task requires:
- What should be produced?
- What qualities matter (accuracy, completeness, format)?
- What would distinguish a good output from a poor one?
### Step 3: Generate Evaluation Rubric
Based on the task, generate a rubric with two dimensions:
**Content Rubric** (what the output contains):
| Criterion | 1 (Poor) | 3 (Acceptable) | 5 (Excellent) |
|-----------|----------|----------------|---------------|
| Correctness | Major errors | Minor errors | Fully correct |
| Completeness | Missing key elements | Mostly complete | All elements present |
| Accuracy | Significant inaccuracies | Minor inaccuracies | Accurate throughout |
**Structure Rubric** (how the output is organized):
| Criterion | 1 (Poor) | 3 (Acceptable) | 5 (Excellent) |
|-----------|----------|----------------|---------------|
| Organization | Disorganized | Reasonably organized | Clear, logical structure |
| Formatting | Inconsistent/broken | Mostly consistent | Professional, polished |
| Usability | Difficult to use | Usable with effort | Easy to use |
Adapt criteria to the specific task. For example:
- PDF form → "Field alignment", "Text readability", "Data placement"
- Document → "Section structure", "Heading hierarchy", "Paragraph flow"
- Data output → "Schema correctness", "Data types", "Completeness"
### Step 4: Evaluate Each Output Against the Rubric
For each output (A and B):
1. **Score each criterion** on the rubric (1-5 scale)
2. **Calculate dimension totals**: Content score, Structure score
3. **Calculate overall score**: Average of dimension scores, scaled to 1-10
### Step 5: Check Assertions (if provided)
If expectations are provided:
1. Check each expectation against output A
2. Check each expectation against output B
3. Count pass rates for each output
4. Use expectation scores as secondary evidence (not the primary decision factor)
### Step 6: Determine the Winner
Compare A and B based on (in priority order):
1. **Primary**: Overall rubric score (content + structure)
2. **Secondary**: Assertion pass rates (if applicable)
3. **Tiebreaker**: If truly equal, declare a TIE
Be decisive - ties should be rare. One output is usually better, even if marginally.
### Step 7: Write Comparison Results
Save results to a JSON file at the path specified (or `comparison.json` if not specified).
## Output Format
Write a JSON file with this structure:
```json
{
"winner": "A",
"reasoning": "Output A provides a complete solution with proper formatting and all required fields. Output B is missing the date field and has formatting inconsistencies.",
"rubric": {
"A": {
"content": {
"correctness": 5,
"completeness": 5,
"accuracy": 4
},
"structure": {
"organization": 4,
"formatting": 5,
"usability": 4
},
"content_score": 4.7,
"structure_score": 4.3,
"overall_score": 9.0
},
"B": {
"content": {
"correctness": 3,
"completeness": 2,
"accuracy": 3
},
"structure": {
"organization": 3,
"formatting": 2,
"usability": 3
},
"content_score": 2.7,
"structure_score": 2.7,
"overall_score": 5.4
}
},
"output_quality": {
"A": {
"score": 9,
"strengths": ["Complete solution", "Well-formatted", "All fields present"],
"weaknesses": ["Minor style inconsistency in header"]
},
"B": {
"score": 5,
"strengths": ["Readable output", "Correct basic structure"],
"weaknesses": ["Missing date field", "Formatting inconsistencies", "Partial data extraction"]
}
},
"expectation_results": {
"A": {
"passed": 4,
"total": 5,
"pass_rate": 0.8,
"details": [
{ "text": "Output includes name", "passed": true },
{ "text": "Output includes date", "passed": true },
{ "text": "Format is PDF", "passed": true },
{ "text": "Contains signature", "passed": false },
{ "text": "Readable text", "passed": true }
]
},
"B": {
"passed": 3,
"total": 5,
"pass_rate": 0.6,
"details": [
{ "text": "Output includes name", "passed": true },
{ "text": "Output includes date", "passed": false },
{ "text": "Format is PDF", "passed": true },
{ "text": "Contains signature", "passed": false },
{ "text": "Readable text", "passed": true }
]
}
}
}
```
If no expectations were provided, omit the `expectation_results` field entirely.
## Field Descriptions
- **winner**: "A", "B", or "TIE"
- **reasoning**: Clear explanation of why the winner was chosen (or why it's a tie)
- **rubric**: Structured rubric evaluation for each output
- **content**: Scores for content criteria (correctness, completeness, accuracy)
- **structure**: Scores for structure criteria (organization, formatting, usability)
- **content_score**: Average of content criteria (1-5)
- **structure_score**: Average of structure criteria (1-5)
- **overall_score**: Combined score scaled to 1-10
- **output_quality**: Summary quality assessment
- **score**: 1-10 rating (should match rubric overall_score)
- **strengths**: List of positive aspects
- **weaknesses**: List of issues or shortcomings
- **expectation_results**: (Only if expectations provided)
- **passed**: Number of expectations that passed
- **total**: Total number of expectations
- **pass_rate**: Fraction passed (0.0 to 1.0)
- **details**: Individual expectation results
## Guidelines
- **Stay blind**: DO NOT try to infer which skill produced which output. Judge purely on output quality.
- **Be specific**: Cite specific examples when explaining strengths and weaknesses.
- **Be decisive**: Choose a winner unless outputs are genuinely equivalent.
- **Output quality first**: Assertion scores are secondary to overall task completion.
- **Be objective**: Don't favor outputs based on style preferences; focus on correctness and completeness.
- **Explain your reasoning**: The reasoning field should make it clear why you chose the winner.
- **Handle edge cases**: If both outputs fail, pick the one that fails less badly. If both are excellent, pick the one that's marginally better.
================================================
FILE: .agents/skills/skill-creator/agents/grader.md
================================================
# Grader Agent
Evaluate expectations against an execution transcript and outputs.
## Role
The Grader reviews a transcript and output files, then determines whether each expectation passes or fails. Provide clear evidence for each judgment.
You have two jobs: grade the outputs, and critique the evals themselves. A passing grade on a weak assertion is worse than useless — it creates false confidence. When you notice an assertion that's trivially satisfied, or an important outcome that no assertion checks, say so.
## Inputs
You receive these parameters in your prompt:
- **expectations**: List of expectations to evaluate (strings)
- **transcript_path**: Path to the execution transcript (markdown file)
- **outputs_dir**: Directory containing output files from execution
## Process
### Step 1: Read the Transcript
1. Read the transcript file completely
2. Note the eval prompt, execution steps, and final result
3. Identify any issues or errors documented
### Step 2: Examine Output Files
1. List files in outputs_dir
2. Read/examine each file relevant to the expectations. If outputs aren't plain text, use the inspection tools provided in your prompt — don't rely solely on what the transcript says the executor produced.
3. Note contents, structure, and quality
### Step 3: Evaluate Each Assertion
For each expectation:
1. **Search for evidence** in the transcript and outputs
2. **Determine verdict**:
- **PASS**: Clear evidence the expectation is true AND the evidence reflects genuine task completion, not just surface-level compliance
- **FAIL**: No evidence, or evidence contradicts the expectation, or the evidence is superficial (e.g., correct filename but empty/wrong content)
3. **Cite the evidence**: Quote the specific text or describe what you found
### Step 4: Extract and Verify Claims
Beyond the predefined expectations, extract implicit claims from the outputs and verify them:
1. **Extract claims** from the transcript and outputs:
- Factual statements ("The form has 12 fields")
- Process claims ("Used pypdf to fill the form")
- Quality claims ("All fields were filled correctly")
2. **Verify each claim**:
- **Factual claims**: Can be checked against the outputs or external sources
- **Process claims**: Can be verified from the transcript
- **Quality claims**: Evaluate whether the claim is justified
3. **Flag unverifiable claims**: Note claims that cannot be verified with available information
This catches issues that predefined expectations might miss.
### Step 5: Read User Notes
If `{outputs_dir}/user_notes.md` exists:
1. Read it and note any uncertainties or issues flagged by the executor
2. Include relevant concerns in the grading output
3. These may reveal problems even when expectations pass
### Step 6: Critique the Evals
After grading, consider whether the evals themselves could be improved. Only surface suggestions when there's a clear gap.
Good suggestions test meaningful outcomes — assertions that are hard to satisfy without actually doing the work correctly. Think about what makes an assertion _discriminating_: it passes when the skill genuinely succeeds and fails when it doesn't.
Suggestions worth raising:
- An assertion that passed but would also pass for a clearly wrong output (e.g., checking filename existence but not file content)
- An important outcome you observed — good or bad — that no assertion covers at all
- An assertion that can't actually be verified from the available outputs
Keep the bar high. The goal is to flag things the eval author would say "good catch" about, not to nitpick every assertion.
### Step 7: Write Grading Results
Save results to `{outputs_dir}/../grading.json` (sibling to outputs_dir).
## Grading Criteria
**PASS when**:
- The transcript or outputs clearly demonstrate the expectation is true
- Specific evidence can be cited
- The evidence reflects genuine substance, not just surface compliance (e.g., a file exists AND contains correct content, not just the right filename)
**FAIL when**:
- No evidence found for the expectation
- Evidence contradicts the expectation
- The expectation cannot be verified from available information
- The evidence is superficial — the assertion is technically satisfied but the underlying task outcome is wrong or incomplete
- The output appears to meet the assertion by coincidence rather than by actually doing the work
**When uncertain**: The burden of proof to pass is on the expectation.
### Step 8: Read Executor Metrics and Timing
1. If `{outputs_dir}/metrics.json` exists, read it and include in grading output
2. If `{outputs_dir}/../timing.json` exists, read it and include timing data
## Output Format
Write a JSON file with this structure:
```json
{
"expectations": [
{
"text": "The output includes the name 'John Smith'",
"passed": true,
"evidence": "Found in transcript Step 3: 'Extracted names: John Smith, Sarah Johnson'"
},
{
"text": "The spreadsheet has a SUM formula in cell B10",
"passed": false,
"evidence": "No spreadsheet was created. The output was a text file."
},
{
"text": "The assistant used the skill's OCR script",
"passed": true,
"evidence": "Transcript Step 2 shows: 'Tool: Bash - python ocr_script.py image.png'"
}
],
"summary": {
"passed": 2,
"failed": 1,
"total": 3,
"pass_rate": 0.67
},
"execution_metrics": {
"tool_calls": {
"Read": 5,
"Write": 2,
"Bash": 8
},
"total_tool_calls": 15,
"total_steps": 6,
"errors_encountered": 0,
"output_chars": 12450,
"transcript_chars": 3200
},
"timing": {
"executor_duration_seconds": 165.0,
"grader_duration_seconds": 26.0,
"total_duration_seconds": 191.0
},
"claims": [
{
"claim": "The form has 12 fillable fields",
"type": "factual",
"verified": true,
"evidence": "Counted 12 fields in field_info.json"
},
{
"claim": "All required fields were populated",
"type": "quality",
"verified": false,
"evidence": "Reference section was left blank despite data being available"
}
],
"user_notes_summary": {
"uncertainties": ["Used 2023 data, may be stale"],
"needs_review": [],
"workarounds": ["Fell back to text overlay for non-fillable fields"]
},
"eval_feedback": {
"suggestions": [
{
"assertion": "The output includes the name 'John Smith'",
"reason": "A hallucinated document that mentions the name would also pass — consider checking it appears as the primary contact with matching phone and email from the input"
},
{
"reason": "No assertion checks whether the extracted phone numbers match the input — I observed incorrect numbers in the output that went uncaught"
}
],
"overall": "Assertions check presence but not correctness. Consider adding content verification."
}
}
```
## Field Descriptions
- **expectations**: Array of graded expectations
- **text**: The original expectation text
- **passed**: Boolean - true if expectation passes
- **evidence**: Specific quote or description supporting the verdict
- **summary**: Aggregate statistics
- **passed**: Count of passed expectations
- **failed**: Count of failed expectations
- **total**: Total expectations evaluated
- **pass_rate**: Fraction passed (0.0 to 1.0)
- **execution_metrics**: Copied from executor's metrics.json (if available)
- **output_chars**: Total character count of output files (proxy for tokens)
- **transcript_chars**: Character count of transcript
- **timing**: Wall clock timing from timing.json (if available)
- **executor_duration_seconds**: Time spent in executor subagent
- **total_duration_seconds**: Total elapsed time for the run
- **claims**: Extracted and verified claims from the output
- **claim**: The statement being verified
- **type**: "factual", "process", or "quality"
- **verified**: Boolean - whether the claim holds
- **evidence**: Supporting or contradicting evidence
- **user_notes_summary**: Issues flagged by the executor
- **uncertainties**: Things the executor wasn't sure about
- **needs_review**: Items requiring human attention
- **workarounds**: Places where the skill didn't work as expected
- **eval_feedback**: Improvement suggestions for the evals (only when warranted)
- **suggestions**: List of concrete suggestions, each with a `reason` and optionally an `assertion` it relates to
- **overall**: Brief assessment — can be "No suggestions, evals look solid" if nothing to flag
## Guidelines
- **Be objective**: Base verdicts on evidence, not assumptions
- **Be specific**: Quote the exact text that supports your verdict
- **Be thorough**: Check both transcript and output files
- **Be consistent**: Apply the same standard to each expectation
- **Explain failures**: Make it clear why evidence was insufficient
- **No partial credit**: Each expectation is pass or fail, not partial
================================================
FILE: .agents/skills/skill-creator/assets/eval_review.html
================================================
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Eval Set Review - __SKILL_NAME_PLACEHOLDER__</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Lora:wght@400;500&display=swap"
rel="stylesheet"
/>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Lora', Georgia, serif;
background: #faf9f5;
padding: 2rem;
color: #141413;
}
h1 {
font-family: 'Poppins', sans-serif;
margin-bottom: 0.5rem;
font-size: 1.5rem;
}
.description {
color: #b0aea5;
margin-bottom: 1.5rem;
font-style: italic;
max-width: 900px;
}
.controls {
margin-bottom: 1rem;
display: flex;
gap: 0.5rem;
}
.btn {
font-family: 'Poppins', sans-serif;
padding: 0.5rem 1rem;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 0.875rem;
font-weight: 500;
}
.btn-add {
background: #6a9bcc;
color: white;
}
.btn-add:hover {
background: #5889b8;
}
.btn-export {
background: #d97757;
color: white;
}
.btn-export:hover {
background: #c4613f;
}
table {
width: 100%;
max-width: 1100px;
border-collapse: collapse;
background: white;
border-radius: 6px;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
th {
font-family: 'Poppins', sans-serif;
background: #141413;
color: #faf9f5;
padding: 0.75rem 1rem;
text-align: left;
font-size: 0.875rem;
}
td {
padding: 0.75rem 1rem;
border-bottom: 1px solid #e8e6dc;
vertical-align: top;
}
tr:nth-child(even) td {
background: #faf9f5;
}
tr:hover td {
background: #f3f1ea;
}
.section-header td {
background: #e8e6dc;
font-family: 'Poppins', sans-serif;
font-weight: 500;
font-size: 0.8rem;
color: #141413;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.query-input {
width: 100%;
padding: 0.4rem;
border: 1px solid #e8e6dc;
border-radius: 4px;
font-size: 0.875rem;
font-family: 'Lora', Georgia, serif;
resize: vertical;
min-height: 60px;
}
.query-input:focus {
outline: none;
border-color: #d97757;
box-shadow: 0 0 0 2px rgba(217, 119, 87, 0.15);
}
.toggle {
position: relative;
display: inline-block;
width: 44px;
height: 24px;
}
.toggle input {
opacity: 0;
width: 0;
height: 0;
}
.toggle .slider {
position: absolute;
inset: 0;
background: #b0aea5;
border-radius: 24px;
cursor: pointer;
transition: 0.2s;
}
.toggle .slider::before {
content: '';
position: absolute;
width: 18px;
height: 18px;
left: 3px;
bottom: 3px;
background: white;
border-radius: 50%;
transition: 0.2s;
}
.toggle input:checked + .slider {
background: #d97757;
}
.toggle input:checked + .slider::before {
transform: translateX(20px);
}
.btn-delete {
background: #c44;
color: white;
padding: 0.3rem 0.6rem;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 0.75rem;
font-family: 'Poppins', sans-serif;
}
.btn-delete:hover {
background: #a33;
}
.summary {
margin-top: 1rem;
color: #b0aea5;
font-size: 0.875rem;
}
</style>
</head>
<body>
<h1>Eval Set Review: <span id="skill-name">__SKILL_NAME_PLACEHOLDER__</span></h1>
<p class="description">
Current description: <span id="skill-desc">__SKILL_DESCRIPTION_PLACEHOLDER__</span>
</p>
<div class="controls">
<button class="btn btn-add" onclick="addRow()">+ Add Query</button>
<button class="btn btn-export" onclick="exportEvalSet()">Export Eval Set</button>
</div>
<table>
<thead>
<tr>
<th style="width: 65%">Query</th>
<th style="width: 18%">Should Trigger</th>
<th style="width: 10%">Actions</th>
</tr>
</thead>
<tbody id="eval-body"></tbody>
</table>
<p class="summary" id="summary"></p>
<script>
const EVAL_DATA = __EVAL_DATA_PLACEHOLDER__;
let evalItems = [...EVAL_DATA];
function render() {
const tbody = document.getElementById('eval-body');
tbody.innerHTML = '';
// Sort: should-trigger first, then should-not-trigger
const sorted = evalItems
.map((item, origIdx) => ({ ...item, origIdx }))
.sort((a, b) => (b.should_trigger ? 1 : 0) - (a.should_trigger ? 1 : 0));
let lastGroup = null;
sorted.forEach((item) => {
const group = item.should_trigger ? 'trigger' : 'no-trigger';
if (group !== lastGroup) {
const headerRow = document.createElement('tr');
headerRow.className = 'section-header';
headerRow.innerHTML = `<td colspan="3">${item.should_trigger ? 'Should Trigger' : 'Should NOT Trigger'}</td>`;
tbody.appendChild(headerRow);
lastGroup = group;
}
const idx = item.origIdx;
const tr = document.createElement('tr');
tr.innerHTML = `
<td><textarea class="query-input" onchange="updateQuery(${idx}, this.value)">${escapeHtml(item.query)}</textarea></td>
<td>
<label class="toggle">
<input type="checkbox" ${item.should_trigger ? 'checked' : ''} onchange="updateTrigger(${idx}, this.checked)">
<span class="slider"></span>
</label>
<span style="margin-left:8px;font-size:0.8rem;color:#b0aea5">${item.should_trigger ? 'Yes' : 'No'}</span>
</td>
<td><button class="btn-delete" onclick="deleteRow(${idx})">Delete</button></td>
`;
tbody.appendChild(tr);
});
updateSummary();
}
function escapeHtml(text) {
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML;
}
function updateQuery(idx, value) {
evalItems[idx].query = value;
updateSummary();
}
function updateTrigger(idx, value) {
evalItems[idx].should_trigger = value;
render();
}
function deleteRow(idx) {
evalItems.splice(idx, 1);
render();
}
function addRow() {
evalItems.push({ query: '', should_trigger: true });
render();
const inputs = document.querySelectorAll('.query-input');
inputs[inputs.length - 1].focus();
}
function updateSummary() {
const trigger = evalItems.filter((i) => i.should_trigger).length;
const noTrigger = evalItems.filter((i) => !i.should_trigger).length;
document.getElementById('summary').textContent =
`${evalItems.length} queries total: ${trigger} should trigger, ${noTrigger} should not trigger`;
}
function exportEvalSet() {
const valid = evalItems.filter((i) => i.query.trim() !== '');
const data = valid.map((i) => ({
query: i.query.trim(),
should_trigger: i.should_trigger,
}));
const blob = new Blob([JSON.stringify(data, null, 2)], { type: 'application/json' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = 'eval_set.json';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}
render();
</script>
</body>
</html>
================================================
FILE: .agents/skills/skill-creator/eval-viewer/generate_review.py
================================================
#!/usr/bin/env python3
"""Generate and serve a review page for eval results.
Reads the workspace directory, discovers runs (directories with outputs/),
embeds all output data into a self-contained HTML page, and serves it via
a tiny HTTP server. Feedback auto-saves to feedback.json in the workspace.
Usage:
python generate_review.py <workspace-path> [--port PORT] [--skill-name NAME]
python generate_review.py <workspace-path> --previous-feedback /path/to/old/feedback.json
No dependencies beyond the Python stdlib are required.
"""
import argparse
import base64
import json
import mimetypes
import os
import re
import signal
import subprocess
import sys
import time
import webbrowser
from functools import partial
from http.server import HTTPServer, BaseHTTPRequestHandler
from pathlib import Path
# Files to exclude from output listings
METADATA_FILES = {"transcript.md", "user_notes.md", "metrics.json"}
# Extensions we render as inline text
TEXT_EXTENSIONS = {
".txt", ".md", ".json", ".csv", ".py", ".js", ".ts", ".tsx", ".jsx",
".yaml", ".yml", ".xml", ".html", ".css", ".sh", ".rb", ".go", ".rs",
".java", ".c", ".cpp", ".h", ".hpp", ".sql", ".r", ".toml",
}
# Extensions we render as inline images
IMAGE_EXTENSIONS = {".png", ".jpg", ".jpeg", ".gif", ".svg", ".webp"}
# MIME type overrides for common types
MIME_OVERRIDES = {
".svg": "image/svg+xml",
".xlsx": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
".docx": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
".pptx": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
}
def get_mime_type(path: Path) -> str:
ext = path.suffix.lower()
if ext in MIME_OVERRIDES:
return MIME_OVERRIDES[ext]
mime, _ = mimetypes.guess_type(str(path))
return mime or "application/octet-stream"
def find_runs(workspace: Path) -> list[dict]:
"""Recursively find directories that contain an outputs/ subdirectory."""
runs: list[dict] = []
_find_runs_recursive(workspace, workspace, runs)
runs.sort(key=lambda r: (r.get("eval_id", float("inf")), r["id"]))
return runs
def _find_runs_recursive(root: Path, current: Path, runs: list[dict]) -> None:
if not current.is_dir():
return
outputs_dir = current / "outputs"
if outputs_dir.is_dir():
run = build_run(root, current)
if run:
runs.append(run)
return
skip = {"node_modules", ".git", "__pycache__", "skill", "inputs"}
for child in sorted(current.iterdir()):
if child.is_dir() and child.name not in skip:
_find_runs_recursive(root, child, runs)
def build_run(root: Path, run_dir: Path) -> dict | None:
"""Build a run dict with prompt, outputs, and grading data."""
prompt = ""
eval_id = None
# Try eval_metadata.json
for candidate in [run_dir / "eval_metadata.json", run_dir.parent / "eval_metadata.json"]:
if candidate.exists():
try:
metadata = json.loads(candidate.read_text())
prompt = metadata.get("prompt", "")
eval_id = metadata.get("eval_id")
except (json.JSONDecodeError, OSError):
pass
if prompt:
break
# Fall back to transcript.md
if not prompt:
for candidate in [run_dir / "transcript.md", run_dir / "outputs" / "transcript.md"]:
if candidate.exists():
try:
text = candidate.read_text()
match = re.search(r"## Eval Prompt\n\n([\s\S]*?)(?=\n##|$)", text)
if match:
prompt = match.group(1).strip()
except OSError:
pass
if prompt:
break
if not prompt:
prompt = "(No prompt found)"
run_id = str(run_dir.relative_to(root)).replace("/", "-").replace("\\", "-")
# Collect output files
outputs_dir = run_dir / "outputs"
output_files: list[dict] = []
if outputs_dir.is_dir():
for f in sorted(outputs_dir.iterdir()):
if f.is_file() and f.name not in METADATA_FILES:
output_files.append(embed_file(f))
# Load grading if present
grading = None
for candidate in [run_dir / "grading.json", run_dir.parent / "grading.json"]:
if candidate.exists():
try:
grading = json.loads(candidate.read_text())
except (json.JSONDecodeError, OSError):
pass
if grading:
break
return {
"id": run_id,
"prompt": prompt,
"eval_id": eval_id,
"outputs": output_files,
"grading": grading,
}
def embed_file(path: Path) -> dict:
"""Read a file and return an embedded representation."""
ext = path.suffix.lower()
mime = get_mime_type(path)
if ext in TEXT_EXTENSIONS:
try:
content = path.read_text(errors="replace")
except OSError:
content = "(Error reading file)"
return {
"name": path.name,
"type": "text",
"content": content,
}
elif ext in IMAGE_EXTENSIONS:
try:
raw = path.read_bytes()
b64 = base64.b64encode(raw).decode("ascii")
except OSError:
return {"name": path.name, "type": "error", "content": "(Error reading file)"}
return {
"name": path.name,
"type": "image",
"mime": mime,
"data_uri": f"data:{mime};base64,{b64}",
}
elif ext == ".pdf":
try:
raw = path.read_bytes()
b64 = base64.b64encode(raw).decode("ascii")
except OSError:
return {"name": path.name, "type": "error", "content": "(Error reading file)"}
return {
"name": path.name,
"type": "pdf",
"data_uri": f"data:{mime};base64,{b64}",
}
elif ext == ".xlsx":
try:
raw = path.read_bytes()
b64 = base64.b64encode(raw).decode("ascii")
except OSError:
return {"name": path.name, "type": "error", "content": "(Error reading file)"}
return {
"name": path.name,
"type": "xlsx",
"data_b64": b64,
}
else:
# Binary / unknown — base64 download link
try:
raw = path.read_bytes()
b64 = base64.b64encode(raw).decode("ascii")
except OSError:
return {"name": path.name, "type": "error", "content": "(Error reading file)"}
return {
"name": path.name,
"type": "binary",
"mime": mime,
"data_uri": f"data:{mime};base64,{b64}",
}
def load_previous_iteration(workspace: Path) -> dict[str, dict]:
"""Load previous iteration's feedback and outputs.
Returns a map of run_id -> {"feedback": str, "outputs": list[dict]}.
"""
result: dict[str, dict] = {}
# Load feedback
feedback_map: dict[str, str] = {}
feedback_path = workspace / "feedback.json"
if feedback_path.exists():
try:
data = json.loads(feedback_path.read_text())
feedback_map = {
r["run_id"]: r["feedback"]
for r in data.get("reviews", [])
if r.get("feedback", "").strip()
}
except (json.JSONDecodeError, OSError, KeyError):
pass
# Load runs (to get outputs)
prev_runs = find_runs(workspace)
for run in prev_runs:
result[run["id"]] = {
"feedback": feedback_map.get(run["id"], ""),
"outputs": run.get("outputs", []),
}
# Also add feedback for run_ids that had feedback but no matching run
for run_id, fb in feedback_map.items():
if run_id not in result:
result[run_id] = {"feedback": fb, "outputs": []}
return result
def generate_html(
runs: list[dict],
skill_name: str,
previous: dict[str, dict] | None = None,
benchmark: dict | None = None,
) -> str:
"""Generate the complete standalone HTML page with embedded data."""
template_path = Path(__file__).parent / "viewer.html"
template = template_path.read_text()
# Build previous_feedback and previous_outputs maps for the template
previous_feedback: dict[str, str] = {}
previous_outputs: dict[str, list[dict]] = {}
if previous:
for run_id, data in previous.items():
if data.get("feedback"):
previous_feedback[run_id] = data["feedback"]
if data.get("outputs"):
previous_outputs[run_id] = data["outputs"]
embedded = {
"skill_name": skill_name,
"runs": runs,
"previous_feedback": previous_feedback,
"previous_outputs": previous_outputs,
}
if benchmark:
embedded["benchmark"] = benchmark
data_json = json.dumps(embedded)
return template.replace("/*__EMBEDDED_DATA__*/", f"const EMBEDDED_DATA = {data_json};")
# ---------------------------------------------------------------------------
# HTTP server (stdlib only, zero dependencies)
# ---------------------------------------------------------------------------
def _kill_port(port: int) -> None:
"""Kill any process listening on the given port."""
try:
result = subprocess.run(
["lsof", "-ti", f":{port}"],
capture_output=True, text=True, timeout=5,
)
for pid_str in result.stdout.strip().split("\n"):
if pid_str.strip():
try:
os.kill(int(pid_str.strip()), signal.SIGTERM)
except (ProcessLookupError, ValueError):
pass
if result.stdout.strip():
time.sleep(0.5)
except subprocess.TimeoutExpired:
pass
except FileNotFoundError:
print("Note: lsof not found, cannot check if port is in use", file=sys.stderr)
class ReviewHandler(BaseHTTPRequestHandler):
"""Serves the review HTML and handles feedback saves.
Regenerates the HTML on each page load so that refreshing the browser
picks up new eval outputs without restarting the server.
"""
def __init__(
self,
workspace: Path,
skill_name: str,
feedback_path: Path,
previous: dict[str, dict],
benchmark_path: Path | None,
*args,
**kwargs,
):
self.workspace = workspace
self.skill_name = skill_name
self.feedback_path = feedback_path
self.previous = previous
self.benchmark_path = benchmark_path
super().__init__(*args, **kwargs)
def do_GET(self) -> None:
if self.path == "/" or self.path == "/index.html":
# Regenerate HTML on each request (re-scans workspace for new outputs)
runs = find_runs(self.workspace)
benchmark = None
if self.benchmark_path and self.benchmark_path.exists():
try:
benchmark = json.loads(self.benchmark_path.read_text())
except (json.JSONDecodeError, OSError):
pass
html = generate_html(runs, self.skill_name, self.previous, benchmark)
content = html.encode("utf-8")
self.send_response(200)
self.send_header("Content-Type", "text/html; charset=utf-8")
self.send_header("Content-Length", str(len(content)))
self.end_headers()
self.wfile.write(content)
elif self.path == "/api/feedback":
data = b"{}"
if self.feedback_path.exists():
data = self.feedback_path.read_bytes()
self.send_response(200)
self.send_header("Content-Type", "application/json")
self.send_header("Content-Length", str(len(data)))
self.end_headers()
self.wfile.write(data)
else:
self.send_error(404)
def do_POST(self) -> None:
if self.path == "/api/feedback":
length = int(self.headers.get("Content-Length", 0))
body = self.rfile.read(length)
try:
data = json.loads(body)
if not isinstance(data, dict) or "reviews" not in data:
raise ValueError("Expected JSON object with 'reviews' key")
self.feedback_path.write_text(json.dumps(data, indent=2) + "\n")
resp = b'{"ok":true}'
self.send_response(200)
except (json.JSONDecodeError, OSError, ValueError) as e:
resp = json.dumps({"error": str(e)}).encode()
self.send_response(500)
self.send_header("Content-Type", "application/json")
self.send_header("Content-Length", str(len(resp)))
self.end_headers()
self.wfile.write(resp)
else:
self.send_error(404)
def log_message(self, format: str, *args: object) -> None:
# Suppress request logging to keep terminal clean
pass
def main() -> None:
parser = argparse.ArgumentParser(description="Generate and serve eval review")
parser.add_argument("workspace", type=Path, help="Path to workspace directory")
parser.add_argument("--port", "-p", type=int, default=3117, help="Server port (default: 3117)")
parser.add_argument("--skill-name", "-n", type=str, default=None, help="Skill name for header")
parser.add_argument(
"--previous-workspace", type=Path, default=None,
help="Path to previous iteration's workspace (shows old outputs and feedback as context)",
)
parser.add_argument(
"--benchmark", type=Path, default=None,
help="Path to benchmark.json to show in the Benchmark tab",
)
parser.add_argument(
"--static", "-s", type=Path, default=None,
help="Write standalone HTML to this path instead of starting a server",
)
args = parser.parse_args()
workspace = args.workspace.resolve()
if not workspace.is_dir():
print(f"Error: {workspace} is not a directory", file=sys.stderr)
sys.exit(1)
runs = find_runs(workspace)
if not runs:
print(f"No runs found in {workspace}", file=sys.stderr)
sys.exit(1)
skill_name = args.skill_name or workspace.name.replace("-workspace", "")
feedback_path = workspace / "feedback.json"
previous: dict[str, dict] = {}
if args.previous_workspace:
previous = load_previous_iteration(args.previous_workspace.resolve())
benchmark_path = args.benchmark.resolve() if args.benchmark else None
benchmark = None
if benchmark_path and benchmark_path.exists():
try:
benchmark = json.loads(benchmark_path.read_text())
except (json.JSONDecodeError, OSError):
pass
if args.static:
html = generate_html(runs, skill_name, previous, benchmark)
args.static.parent.mkdir(parents=True, exist_ok=True)
args.static.write_text(html)
print(f"\n Static viewer written to: {args.static}\n")
sys.exit(0)
# Kill any existing process on the target port
port = args.port
_kill_port(port)
handler = partial(ReviewHandler, workspace, skill_name, feedback_path, previous, benchmark_path)
try:
server = HTTPServer(("127.0.0.1", port), handler)
except OSError:
# Port still in use after kill attempt — find a free one
server = HTTPServer(("127.0.0.1", 0), handler)
port = server.server_address[1]
url = f"http://localhost:{port}"
print(f"\n Eval Viewer")
print(f" ─────────────────────────────────")
print(f" URL: {url}")
print(f" Workspace: {workspace}")
print(f" Feedback: {feedback_path}")
if previous:
print(f" Previous: {args.previous_workspace} ({len(previous)} runs)")
if benchmark_path:
print(f" Benchmark: {benchmark_path}")
print(f"\n Press Ctrl+C to stop.\n")
webbrowser.open(url)
try:
server.serve_forever()
except KeyboardInterrupt:
print("\nStopped.")
server.server_close()
if __name__ == "__main__":
main()
================================================
FILE: .agents/skills/skill-creator/eval-viewer/viewer.html
================================================
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Eval Review</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Lora:wght@400;500&display=swap"
rel="stylesheet"
/>
<script
src="https://cdn.sheetjs.com/xlsx-0.20.3/package/dist/xlsx.full.min.js"
integrity="sha384-EnyY0/GSHQGSxSgMwaIPzSESbqoOLSexfnSMN2AP+39Ckmn92stwABZynq1JyzdT"
crossorigin="anonymous"
></script>
<style>
:root {
--bg: #faf9f5;
--surface: #ffffff;
--border: #e8e6dc;
--text: #141413;
--text-muted: #b0aea5;
--accent: #d97757;
--accent-hover: #c4613f;
--green: #788c5d;
--green-bg: #eef2e8;
--red: #c44;
--red-bg: #fceaea;
--header-bg: #141413;
--header-text: #faf9f5;
--radius: 6px;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Lora', Georgia, serif;
background: var(--bg);
color: var(--text);
height: 100vh;
display: flex;
flex-direction: column;
}
/* ---- Header ---- */
.header {
background: var(--header-bg);
color: var(--header-text);
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
}
.header h1 {
font-family: 'Poppins', sans-serif;
font-size: 1.25rem;
font-weight: 600;
}
.header .instructions {
font-size: 0.8rem;
opacity: 0.7;
margin-top: 0.25rem;
}
.header .progress {
font-size: 0.875rem;
opacity: 0.8;
text-align: right;
}
/* ---- Main content ---- */
.main {
flex: 1;
overflow-y: auto;
padding: 1.5rem 2rem;
display: flex;
flex-direction: column;
gap: 1.25rem;
}
/* ---- Sections ---- */
.section {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
flex-shrink: 0;
}
.section-header {
font-family: 'Poppins', sans-serif;
padding: 0.75rem 1rem;
font-size: 0.75rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--text-muted);
border-bottom: 1px solid var(--border);
background: var(--bg);
}
.section-body {
padding: 1rem;
}
/* ---- Config badge ---- */
.config-badge {
display: inline-block;
padding: 0.2rem 0.625rem;
border-radius: 9999px;
font-family: 'Poppins', sans-serif;
font-size: 0.6875rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.03em;
margin-left: 0.75rem;
vertical-align: middle;
}
.config-badge.config-primary {
background: rgba(33, 150, 243, 0.12);
color: #1976d2;
}
.config-badge.config-baseline {
background: rgba(255, 193, 7, 0.15);
color: #f57f17;
}
/* ---- Prompt ---- */
.prompt-text {
white-space: pre-wrap;
font-size: 0.9375rem;
line-height: 1.6;
}
/* ---- Outputs ---- */
.output-file {
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
}
.output-file + .output-file {
margin-top: 1rem;
}
.output-file-header {
padding: 0.5rem 0.75rem;
font-size: 0.8rem;
font-weight: 600;
color: var(--text-muted);
background: var(--bg);
border-bottom: 1px solid var(--border);
font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
display: flex;
justify-content: space-between;
align-items: center;
}
.output-file-header .dl-btn {
font-size: 0.7rem;
color: var(--accent);
text-decoration: none;
cursor: pointer;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
font-weight: 500;
opacity: 0.8;
}
.output-file-header .dl-btn:hover {
opacity: 1;
text-decoration: underline;
}
.output-file-content {
padding: 0.75rem;
overflow-x: auto;
}
.output-file-content pre {
font-size: 0.8125rem;
line-height: 1.5;
white-space: pre-wrap;
word-break: break-word;
font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
}
.output-file-content img {
max-width: 100%;
height: auto;
border-radius: 4px;
}
.output-file-content iframe {
width: 100%;
height: 600px;
border: none;
}
.output-file-content table {
border-collapse: collapse;
font-size: 0.8125rem;
width: 100%;
}
.output-file-content table td,
.output-file-content table th {
border: 1px solid var(--border);
padding: 0.375rem 0.5rem;
text-align: left;
}
.output-file-content table th {
background: var(--bg);
font-weight: 600;
}
.output-file-content .download-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 4px;
color: var(--accent);
text-decoration: none;
font-size: 0.875rem;
cursor: pointer;
}
.output-file-content .download-link:hover {
background: var(--border);
}
.empty-state {
color: var(--text-muted);
font-style: italic;
padding: 2rem;
text-align: center;
}
/* ---- Feedback ---- */
.prev-feedback {
background: var(--bg);
border: 1px solid var(--border);
border-radius: 4px;
padding: 0.625rem 0.75rem;
margin-top: 0.75rem;
font-size: 0.8125rem;
color: var(--text-muted);
line-height: 1.5;
}
.prev-feedback-label {
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
margin-bottom: 0.25rem;
color: var(--text-muted);
}
.feedback-textarea {
width: 100%;
min-height: 100px;
padding: 0.75rem;
border: 1px solid var(--border);
border-radius: 4px;
font-family: inherit;
font-size: 0.9375rem;
line-height: 1.5;
resize: vertical;
color: var(--text);
}
.feedback-textarea:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.feedback-status {
font-size: 0.75rem;
color: var(--text-muted);
margin-top: 0.5rem;
min-height: 1.1em;
}
/* ---- Grades (collapsible) ---- */
.grades-toggle {
display: flex;
align-items: center;
cursor: pointer;
user-select: none;
}
.grades-toggle:hover {
color: var(--accent);
}
.grades-toggle .arrow {
margin-right: 0.5rem;
transition: transform 0.15s;
font-size: 0.75rem;
}
.grades-toggle .arrow.open {
transform: rotate(90deg);
}
.grades-content {
display: none;
margin-top: 0.75rem;
}
.grades-content.open {
display: block;
}
.grades-summary {
font-size: 0.875rem;
margin-bottom: 0.75rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.grade-badge {
display: inline-block;
padding: 0.125rem 0.5rem;
border-radius: 9999px;
font-size: 0.75rem;
font-weight: 600;
}
.grade-pass {
background: var(--green-bg);
color: var(--green);
}
.grade-fail {
background: var(--red-bg);
color: var(--red);
}
.assertion-list {
list-style: none;
}
.assertion-item {
padding: 0.625rem 0;
border-bottom: 1px solid var(--border);
font-size: 0.8125rem;
}
.assertion-item:last-child {
border-bottom: none;
}
.assertion-status {
font-weight: 600;
margin-right: 0.5rem;
}
.assertion-status.pass {
color: var(--green);
}
.assertion-status.fail {
color: var(--red);
}
.assertion-evidence {
color: var(--text-muted);
font-size: 0.75rem;
margin-top: 0.25rem;
padding-left: 1.5rem;
}
/* ---- View tabs ---- */
.view-tabs {
display: flex;
gap: 0;
padding: 0 2rem;
background: var(--bg);
border-bottom: 1px solid var(--border);
flex-shrink: 0;
}
.view-tab {
font-family: 'Poppins', sans-serif;
padding: 0.625rem 1.25rem;
font-size: 0.8125rem;
font-weight: 500;
cursor: pointer;
border: none;
background: none;
color: var(--text-muted);
border-bottom: 2px solid transparent;
transition: all 0.15s;
}
.view-tab:hover {
color: var(--text);
}
.view-tab.active {
color: var(--accent);
border-bottom-color: var(--accent);
}
.view-panel {
display: none;
}
.view-panel.active {
display: flex;
flex-direction: column;
flex: 1;
overflow: hidden;
}
/* ---- Benchmark view ---- */
.benchmark-view {
padding: 1.5rem 2rem;
overflow-y: auto;
flex: 1;
}
.benchmark-table {
border-collapse: collapse;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
font-size: 0.8125rem;
width: 100%;
margin-bottom: 1.5rem;
}
.benchmark-table th,
.benchmark-table td {
padding: 0.625rem 0.75rem;
text-align: left;
border: 1px solid var(--border);
}
.benchmark-table th {
font-family: 'Poppins', sans-serif;
background: var(--header-bg);
color: var(--header-text);
font-weight: 500;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.benchmark-table tr:hover {
background: var(--bg);
}
.benchmark-table tr.benchmark-row-with {
background: rgba(33, 150, 243, 0.06);
}
.benchmark-table tr.benchmark-row-without {
background: rgba(255, 193, 7, 0.06);
}
.benchmark-table tr.benchmark-row-with:hover {
background: rgba(33, 150, 243, 0.12);
}
.benchmark-table tr.benchmark-row-without:hover {
background: rgba(255, 193, 7, 0.12);
}
.benchmark-table tr.benchmark-row-avg {
font-weight: 600;
border-top: 2px solid var(--border);
}
.benchmark-table tr.benchmark-row-avg.benchmark-row-with {
background: rgba(33, 150, 243, 0.12);
}
.benchmark-table tr.benchmark-row-avg.benchmark-row-without {
background: rgba(255, 193, 7, 0.12);
}
.benchmark-delta-positive {
color: var(--green);
font-weight: 600;
}
.benchmark-delta-negative {
color: var(--red);
font-weight: 600;
}
.benchmark-notes {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1rem;
}
.benchmark-notes h3 {
font-family: 'Poppins', sans-serif;
font-size: 0.875rem;
margin-bottom: 0.75rem;
}
.benchmark-notes ul {
list-style: disc;
padding-left: 1.25rem;
}
.benchmark-notes li {
font-size: 0.8125rem;
line-height: 1.6;
margin-bottom: 0.375rem;
}
.benchmark-empty {
color: var(--text-muted);
font-style: italic;
text-align: center;
padding: 3rem;
}
/* ---- Navigation ---- */
.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
border-top: 1px solid var(--border);
background: var(--surface);
flex-shrink: 0;
}
.nav-btn {
font-family: 'Poppins', sans-serif;
padding: 0.5rem 1.25rem;
border: 1px solid var(--border);
border-radius: var(--radius);
background: var(--surface);
cursor: pointer;
font-size: 0.875rem;
font-weight: 500;
color: var(--text);
transition: all 0.15s;
}
.nav-btn:hover:not(:disabled) {
background: var(--bg);
border-color: var(--text-muted);
}
.nav-btn:disabled {
opacity: 0.4;
cursor: not-allowed;
}
.done-btn {
font-family: 'Poppins', sans-serif;
padding: 0.5rem 1.5rem;
border: 1px solid var(--border);
border-radius: var(--radius);
background: var(--surface);
color: var(--text);
cursor: pointer;
font-size: 0.875rem;
font-weight: 500;
transition: all 0.15s;
}
.done-btn:hover {
background: var(--bg);
border-color: var(--text-muted);
}
.done-btn.ready {
border: none;
background: var(--accent);
color: white;
font-weight: 600;
}
.done-btn.ready:hover {
background: var(--accent-hover);
}
/* ---- Done overlay ---- */
.done-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 100;
justify-content: center;
align-items: center;
}
.done-overlay.visible {
display: flex;
}
.done-card {
background: var(--surface);
border-radius: 12px;
padding: 2rem 3rem;
text-align: center;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
max-width: 500px;
}
.done-card h2 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.done-card p {
color: var(--text-muted);
margin-bottom: 1.5rem;
line-height: 1.5;
}
.done-card .btn-row {
display: flex;
gap: 0.5rem;
justify-content: center;
}
.done-card button {
padding: 0.5rem 1.25rem;
border: 1px solid var(--border);
border-radius: var(--radius);
background: var(--surface);
cursor: pointer;
font-size: 0.875rem;
}
.done-card button:hover {
background: var(--bg);
}
/* ---- Toast ---- */
.toast {
position: fixed;
bottom: 5rem;
left: 50%;
transform: translateX(-50%);
background: var(--header-bg);
color: var(--header-text);
padding: 0.625rem 1.25rem;
border-radius: var(--radius);
font-size: 0.875rem;
opacity: 0;
transition: opacity 0.3s;
pointer-events: none;
z-index: 200;
}
.toast.visible {
opacity: 1;
}
</style>
</head>
<body>
<div id="app" style="height: 100vh; display: flex; flex-direction: column">
<div class="header">
<div>
<h1>Eval Review: <span id="skill-name"></span></h1>
<div class="instructions">
Review each output and leave feedback below. Navigate with arrow keys or buttons. When
done, copy feedback and paste into Claude Code.
</div>
</div>
<div class="progress" id="progress"></div>
</div>
<!-- View tabs (only shown when benchmark data exists) -->
<div class="view-tabs" id="view-tabs" style="display: none">
<button class="view-tab active" onclick="switchView('outputs')">Outputs</button>
<button class="view-tab" onclick="switchView('benchmark')">Benchmark</button>
</div>
<!-- Outputs panel (qualitative review) -->
<div class="view-panel active" id="panel-outputs">
<div class="main">
<!-- Prompt -->
<div class="section">
<div class="section-header">
Prompt <span class="config-badge" id="config-badge" style="display: none"></span>
</div>
<div class="section-body">
<div class="prompt-text" id="prompt-text"></div>
</div>
</div>
<!-- Outputs -->
<div class="section">
<div class="section-header">Output</div>
<div class="section-body" id="outputs-body">
<div class="empty-state">No output files found</div>
</div>
</div>
<!-- Previous Output (collapsible) -->
<div class="section" id="prev-outputs-section" style="display: none">
<div class="section-header">
<div class="grades-toggle" onclick="togglePrevOutputs()">
<span class="arrow" id="prev-outputs-arrow">▶</span>
Previous Output
</div>
</div>
<div class="grades-content" id="prev-outputs-content"></div>
</div>
<!-- Grades (collapsible) -->
<div class="section" id="grades-section" style="display: none">
<div class="section-header">
<div class="grades-toggle" onclick="toggleGrades()">
<span class="arrow" id="grades-arrow">▶</span>
Formal Grades
</div>
</div>
<div class="grades-content" id="grades-content"></div>
</div>
<!-- Feedback -->
<div class="section">
<div class="section-header">Your Feedback</div>
<div class="section-body">
<textarea
class="feedback-textarea"
id="feedback"
placeholder="What do you think of this output? Any issues, suggestions, or things that look great?"
></textarea>
<div class="feedback-status" id="feedback-status"></div>
<div class="prev-feedback" id="prev-feedback" style="display: none">
<div class="prev-feedback-label">Previous feedback</div>
<div id="prev-feedback-text"></div>
</div>
</div>
</div>
</div>
<div class="nav" id="outputs-nav">
<button class="nav-btn" id="prev-btn" onclick="navigate(-1)">← Previous</button>
<button class="done-btn" id="done-btn" onclick="showDoneDialog()">
Submit All Reviews
</button>
<button class="nav-btn" id="next-btn" onclick="navigate(1)">Next →</button>
</div>
</div>
<!-- end panel-outputs -->
<!-- Benchmark panel (quantitative stats) -->
<div class="view-panel" id="panel-benchmark">
<div class="benchmark-view" id="benchmark-content">
<div class="benchmark-empty">
No benchmark data available. Run a benchmark to see quantitative results here.
</div>
</div>
</div>
</div>
<!-- Done overlay -->
<div class="done-overlay" id="done-overlay">
<div class="done-card">
<h2>Review Complete</h2>
<p>
Your feedback has been saved. Go back to your Claude Code session and tell Claude you're
done reviewing.
</p>
<div class="btn-row">
<button onclick="closeDoneDialog()">OK</button>
</div>
</div>
</div>
<!-- Toast -->
<div class="toast" id="toast"></div>
<script>
// ---- Embedded data (injected by generate_review.py) ----
/*__EMBEDDED_DATA__*/
// ---- State ----
let feedbackMap = {}; // run_id -> feedback text
let currentIndex = 0;
let visitedRuns = new Set();
// ---- Init ----
async function init() {
// Load saved feedback from server — but only if this isn't a fresh
// iteration (indicated by previous_feedback being present). When
// previous feedback exists, the feedback.json on disk is stale from
// the prior iteration and should not pre-fill the textareas.
const hasPrevious =
Object.keys(EMBEDDED_DATA.previous_feedback || {}).length > 0 ||
Object.keys(EMBEDDED_DATA.previous_outputs || {}).length > 0;
if (!hasPrevious) {
try {
const resp = await fetch('/api/feedback');
const data = await resp.json();
if (data.reviews) {
for (const r of data.reviews) feedbackMap[r.run_id] = r.feedback;
}
} catch {
/* first run, no feedback yet */
}
}
document.getElementById('skill-name').textContent = EMBEDDED_DATA.skill_name;
showRun(0);
// Wire up feedback auto-save
const textarea = document.getElementById('feedback');
let saveTimeout = null;
textarea.addEventListener('input', () => {
clearTimeout(saveTimeout);
document.getElementById('feedback-status').textContent = '';
saveTimeout = setTimeout(() => saveCurrentFeedback(), 800);
});
}
// ---- Navigation ----
function navigate(delta) {
const newIndex = currentIndex + delta;
if (newIndex >= 0 && newIndex < EMBEDDED_DATA.runs.length) {
saveCurrentFeedback();
showRun(newIndex);
}
}
function updateNavButtons() {
document.getElementById('prev-btn').disabled = currentIndex === 0;
document.getElementById('next-btn').disabled =
currentIndex === EMBEDDED_DATA.runs.length - 1;
}
// ---- Show a run ----
function showRun(index) {
currentIndex = index;
const run = EMBEDDED_DATA.runs[index];
// Progress
document.getElementById('progress').textContent =
`${index + 1} of ${EMBEDDED_DATA.runs.length}`;
// Prompt
document.getElementById('prompt-text').textContent = run.prompt;
// Config badge
const badge = document.getElementById('config-badge');
const configMatch = run.id.match(/(with_skill|without_skill|new_skill|old_skill)/);
if (configMatch) {
const config = configMatch[1];
const isBaseline = config === 'without_skill' || config === 'old_skill';
badge.textContent = config.replace(/_/g, ' ');
badge.className = 'config-badge ' + (isBaseline ? 'config-baseline' : 'config-primary');
badge.style.display = 'inline-block';
} else {
badge.style.display = 'none';
}
// Outputs
renderOutputs(run);
// Previous outputs
renderPrevOutputs(run);
// Grades
renderGrades(run);
// Previous feedback
const prevFb = (EMBEDDED_DATA.previous_feedback || {})[run.id];
const prevEl = document.getElementById('prev-feedback');
if (prevFb) {
document.getElementById('prev-feedback-text').textContent = prevFb;
prevEl.style.display = 'block';
} else {
prevEl.style.display = 'none';
}
// Feedback
document.getElementById('feedback').value = feedbackMap[run.id] || '';
document.getElementById('feedback-status').textContent = '';
updateNavButtons();
// Track visited runs and promote done button when all visited
visitedRuns.add(index);
const doneBtn = document.getElementById('done-btn');
if (visitedRuns.size >= EMBEDDED_DATA.runs.length) {
doneBtn.classList.add('ready');
}
// Scroll main content to top
document.querySelector('.main').scrollTop = 0;
}
// ---- Render outputs ----
function renderOutputs(run) {
const container = document.getElementById('outputs-body');
container.innerHTML = '';
const outputs = run.outputs || [];
if (outputs.length === 0) {
container.innerHTML = '<div class="empty-state">No output files</div>';
return;
}
for (const file of outputs) {
const fileDiv = document.createElement('div');
fileDiv.className = 'output-file';
// Always show file header with download link
const header = document.createElement('div');
header.className = 'output-file-header';
const nameSpan = document.createElement('span');
nameSpan.textContent = file.name;
header.appendChild(nameSpan);
const dlBtn = document.createElement('a');
dlBtn.className = 'dl-btn';
dlBtn.textContent = 'Download';
dlBtn.download = file.name;
dlBtn.href = getDownloadUri(file);
header.appendChild(dlBtn);
fileDiv.appendChild(header);
const content = document.createElement('div');
content.className = 'output-file-content';
if (file.type === 'text') {
const pre = document.createElement('pre');
pre.textContent = file.content;
content.appendChild(pre);
} else if (file.type === 'image') {
const img = document.createElement('img');
img.src = file.data_uri;
img.alt = file.name;
content.appendChild(img);
} else if (file.type === 'pdf') {
const iframe = document.createElement('iframe');
iframe.src = file.data_uri;
content.appendChild(iframe);
} else if (file.type === 'xlsx') {
renderXlsx(content, file.data_b64);
} else if (file.type === 'binary') {
const a = document.createElement('a');
a.className = 'download-link';
a.href = file.data_uri;
a.download = file.name;
a.textContent = 'Download ' + file.name;
content.appendChild(a);
} else if (file.type === 'error') {
const pre = document.createElement('pre');
pre.textContent = file.content;
pre.style.color = 'var(--red)';
content.appendChild(pre);
}
fileDiv.appendChild(content);
container.appendChild(fileDiv);
}
}
// ---- XLSX rendering via SheetJS ----
function renderXlsx(container, b64Data) {
try {
const raw = Uint8Array.from(atob(b64Data), (c) => c.charCodeAt(0));
const wb = XLSX.read(raw, { type: 'array' });
for (let i = 0; i < wb.SheetNames.length; i++) {
const sheetName = wb.SheetNames[i];
const ws = wb.Sheets[sheetName];
if (wb.SheetNames.length > 1) {
const sheetLabel = document.createElement('div');
sheetLabel.style.cssText =
'font-weight:600; font-size:0.8rem; color:#b0aea5; margin-top:0.5rem; margin-bottom:0.25rem;';
sheetLabel.textContent = 'Sheet: ' + sheetName;
container.appendChild(sheetLabel);
}
const htmlStr = XLSX.utils.sheet_to_html(ws, { editable: false });
const wrapper = document.createElement('div');
wrapper.innerHTML = htmlStr;
container.appendChild(wrapper);
}
} catch (err) {
container.textContent = 'Error rendering spreadsheet: ' + err.message;
}
}
// ---- Grades ----
function renderGrades(run) {
const section = document.getElementById('grades-section');
const content = document.getElementById('grades-content');
if (!run.grading) {
section.style.display = 'none';
return;
}
const grading = run.grading;
section.style.display = 'block';
// Reset to collapsed
content.classList.remove('open');
document.getElementById('grades-arrow').classList.remove('open');
const summary = grading.summary || {};
const expectations = grading.expectations || [];
let html = '<div style="padding: 1rem;">';
// Summary line
const passRate =
summary.pass_rate != null ? Math.round(summary.pass_rate * 100) + '%' : '?';
const badgeClass =
summary.pass_rate >= 0.8 ? 'grade-pass' : summary.pass_rate >= 0.5 ? '' : 'grade-fail';
html += '<div class="grades-summary">';
html += '<span class="grade-badge ' + badgeClass + '">' + passRate + '</span>';
html +=
'<span>' +
(summary.passed || 0) +
' passed, ' +
(summary.failed || 0) +
' failed of ' +
(summary.total || 0) +
'</span>';
html += '</div>';
// Assertions list
html += '<ul class="assertion-list">';
for (const exp of expectations) {
const statusClass = exp.passed ? 'pass' : 'fail';
const statusIcon = exp.passed ? '\u2713' : '\u2717';
html += '<li class="assertion-item">';
html += '<span class="assertion-status ' + statusClass + '">' + statusIcon + '</span>';
html += '<span>' + escapeHtml(exp.text) + '</span>';
if (exp.evidence) {
html += '<div class="assertion-evidence">' + escapeHtml(exp.evidence) + '</div>';
}
html += '</li>';
}
html += '</ul>';
html += '</div>';
content.innerHTML = html;
}
function toggleGrades() {
const content = document.getElementById('grades-content');
const arrow = document.getElementById('grades-arrow');
content.classList.toggle('open');
arrow.classList.toggle('open');
}
// ---- Previous outputs (collapsible) ----
function renderPrevOutputs(run) {
const section = document.getElementById('prev-outputs-section');
const content = document.getElementById('prev-outputs-content');
const prevOutputs = (EMBEDDED_DATA.previous_outputs || {})[run.id];
if (!prevOutputs || prevOutputs.length === 0) {
section.style.display = 'none';
return;
}
section.style.display = 'block';
// Reset to collapsed
content.classList.remove('open');
document.getElementById('prev-outputs-arrow').classList.remove('open');
// Render the files into the content area
content.innerHTML = '';
const wrapper = document.createElement('div');
wrapper.style.padding = '1rem';
for (const file of prevOutputs) {
const fileDiv = document.createElement('div');
fileDiv.className = 'output-file';
const header = document.createElement('div');
header.className = 'output-file-header';
const nameSpan = document.createElement('span');
nameSpan.textContent = file.name;
header.appendChild(nameSpan);
const dlBtn = document.createElement('a');
dlBtn.className = 'dl-btn';
dlBtn.textContent = 'Download';
dlBtn.download = file.name;
dlBtn.href = getDownloadUri(file);
header.appendChild(dlBtn);
fileDiv.appendChild(header);
const fc = document.createElement('div');
fc.className = 'output-file-content';
if (file.type === 'text') {
const pre = document.createElement('pre');
pre.textContent = file.content;
fc.appendChild(pre);
} else if (file.type === 'image') {
const img = document.createElement('img');
img.src = file.data_uri;
img.alt = file.name;
fc.appendChild(img);
} else if (file.type === 'pdf') {
const iframe = document.createElement('iframe');
iframe.src = file.data_uri;
fc.appendChild(iframe);
} else if (file.type === 'xlsx') {
renderXlsx(fc, file.data_b64);
} else if (file.type === 'binary') {
const a = document.createElement('a');
a.className = 'download-link';
a.href = file.data_uri;
a.download = file.name;
a.textContent = 'Download ' + file.name;
fc.appendChild(a);
}
fileDiv.appendChild(fc);
wrapper.appendChild(fileDiv);
}
content.appendChild(wrapper);
}
function togglePrevOutputs() {
const content = document.getElementById('prev-outputs-content');
const arrow = document.getElementById('prev-outputs-arrow');
content.classList.toggle('open');
arrow.classList.toggle('open');
}
// ---- Feedback (saved to server -> feedback.json) ----
function saveCurrentFeedback() {
const run = EMBEDDED_DATA.runs[currentIndex];
const text = document.getElementById('feedback').value;
if (text.trim() === '') {
delete feedbackMap[run.id];
} else {
feedbackMap[run.id] = text;
}
// Build reviews array from map
const reviews = [];
for (const [run_id, feedback] of Object.entries(feedbackMap)) {
if (feedback.trim()) {
reviews.push({ run_id, feedback, timestamp: new Date().toISOString() });
}
}
fetch('/api/feedback', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ reviews, status: 'in_progress' }),
})
.then(() => {
document.getElementById('feedback-status').textContent = 'Saved';
})
.catch(() => {
// Static mode or server unavailable — no-op on auto-save,
// feedback will be downloaded on final submit
document.getElementById('feedback-status').textContent = 'Will download on submit';
});
}
// ---- Done ----
function showDoneDialog() {
// Save current textarea to feedbackMap (but don't POST yet)
const run = EMBEDDED_DATA.runs[currentIndex];
const text = document.getElementById('feedback').value;
if (text.trim() === '') {
delete feedbackMap[run.id];
} else {
feedbackMap[run.id] = text;
}
// POST once with status: complete — include ALL runs so the model
// can distinguish "no feedback" (looks good) from "not reviewed"
const reviews = [];
const ts = new Date().toISOString();
for (const r of EMBEDDED_DATA.runs) {
reviews.push({ run_id: r.id, feedback: feedbackMap[r.id] || '', timestamp: ts });
}
const payload = JSON.stringify({ reviews, status: 'complete' }, null, 2);
fetch('/api/feedback', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: payload,
})
.then(() => {
document.getElementById('done-overlay').classList.add('visible');
})
.catch(() => {
// Server not available (static mode) — download as file
const blob = new Blob([payload], { type: 'application/json' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = 'feedback.json';
a.click();
URL.revokeObjectURL(url);
document.getElementById('done-overlay').classList.add('visible');
});
}
function closeDoneDialog() {
// Reset status back to in_progress
saveCurrentFeedback();
document.getElementById('done-overlay').classList.remove('visible');
}
// ---- Toast ----
function showToast(message) {
const toast = document.getElementById('toast');
toast.textContent = message;
toast.classList.add('visible');
setTimeout(() => toast.classList.remove('visible'), 2000);
}
// ---- Keyboard nav ----
document.addEventListener('keydown', (e) => {
// Don't capture when typing in textarea
if (e.target.tagName === 'TEXTAREA') return;
if (e.key === 'ArrowLeft' || e.key === 'ArrowUp') {
e.preventDefault();
navigate(-1);
} else if (e.key === 'ArrowRight' || e.key === 'ArrowDown') {
e.preventDefault();
navigate(1);
}
});
// ---- Util ----
function getDownloadUri(file) {
if (file.data_uri) return file.data_uri;
if (file.data_b64) return 'data:application/octet-stream;base64,' + file.data_b64;
if (file.type === 'text')
return 'data:text/plain;charset=utf-8,' + encodeURIComponent(file.content);
return '#';
}
function escapeHtml(text) {
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML;
}
// ---- View switching ----
function switchView(view) {
document.querySelectorAll('.view-tab').forEach((t) => t.classList.remove('active'));
document.querySelectorAll('.view-panel').forEach((p) => p.classList.remove('active'));
document.querySelector(`[onclick="switchView('${view}')"]`).classList.add('active');
document.getElementById('panel-' + view).classList.add('active');
}
// ---- Benchmark rendering ----
function renderBenchmark() {
const data = EMBEDDED_DATA.benchmark;
if (!data) return;
// Show the tabs
document.getElementById('view-tabs').style.display = 'flex';
const container = document.getElementById('benchmark-content');
const summary = data.run_summary || {};
const metadata = data.metadata || {};
const notes = data.notes || [];
let html = '';
// Header
html +=
"<h2 style='font-family: Poppins, sans-serif; margin-bottom: 0.5rem;'>Benchmark Results</h2>";
html +=
"<p style='color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.25rem;'>";
if (metadata.skill_name)
html += '<strong>' + escapeHtml(metadata.skill_name) + '</strong> — ';
if (metadata.timestamp) html += metadata.timestamp + ' — ';
if (metadata.evals_run) html += 'Evals: ' + metadata.evals_run.join(', ') + ' — ';
html += (metadata.runs_per_configuration || '?') + ' runs per configuration';
html += '</p>';
// Summary table
html += '<table class="benchmark-table">';
function fmtStat(stat, pct) {
if (!stat) return '—';
const suffix = pct ? '%' : '';
const m = pct ? (stat.mean * 100).toFixed(0) : stat.mean.toFixed(1);
const s = pct ? (stat.stddev * 100).toFixed(0) : stat.stddev.toFixed(1);
return m + suffix + ' ± ' + s + suffix;
}
function deltaClass(val) {
if (!val) return '';
const n = parseFloat(val);
if (n > 0) return 'benchmark-delta-positive';
if (n < 0) return 'benchmark-delta-negative';
return '';
}
// Discover config names dynamically (everything except "delta")
const configs = Object.keys(summary).filter((k) => k !== 'delta');
const configA = configs[0] || 'config_a';
const configB = configs[1] || 'config_b';
const labelA = configA.replace(/_/g, ' ').replace(/\b\w/g, (c) => c.toUpperCase());
const labelB = configB.replace(/_/g, ' ').replace(/\b\w/g, (c) => c.toUpperCase());
const a = summary[configA] || {};
const b = summary[configB] || {};
const delta = summary.delta || {};
html +=
'<thead><tr><th>Metric</th><th>' +
escapeHtml(labelA) +
'</th><th>' +
escapeHtml(labelB) +
'</th><th>Delta</th></tr></thead>';
html += '<tbody>';
html += '<tr><td><strong>Pass Rate</strong></td>';
html += '<td>' + fmtStat(a.pass_rate, true) + '</td>';
html += '<td>' + fmtStat(b.pass_rate, true) + '</td>';
html +=
'<td class="' +
deltaClass(delta.pass_rate) +
'">' +
(delta.pass_rate || '—') +
'</td></tr>';
// Time (only show row if data exists)
if (a.time_seconds || b.time_seconds) {
html += '<tr><td><strong>Time (s)</strong></td>';
html += '<td>' + fmtStat(a.time_seconds, false) + '</td>';
html += '<td>' + fmtStat(b.time_seconds, false) + '</td>';
html +=
'<td class="' +
deltaClass(delta.time_seconds) +
'">' +
(delta.time_seconds ? delta.time_seconds + 's' : '—') +
'</td></tr>';
}
// Tokens (only show row if data exists)
if (a.tokens || b.tokens) {
html += '<tr><td><strong>Tokens</strong></td>';
html += '<td>' + fmtStat(a.tokens, false) + '</td>';
html += '<td>' + fmtStat(b.tokens, false) + '</td>';
html +=
'<td class="' + deltaClass(delta.tokens) + '">' + (delta.tokens || '—') + '</td></tr>';
}
html += '</tbody></table>';
// Per-eval breakdown (if runs data available)
const runs = data.runs || [];
if (runs.length > 0) {
const evalIds = [...new Set(runs.map((r) => r.eval_id))].sort((a, b) => a - b);
html +=
"<h3 style='font-family: Poppins, sans-serif; margin-bottom: 0.75rem;'>Per-Eval Breakdown</h3>";
const hasTime = runs.some((r) => r.result && r.result.time_seconds != null);
const hasErrors = runs.some((r) => r.result && r.result.errors > 0);
for (const evalId of evalIds) {
const evalRuns = runs.filter((r) => r.eval_id === evalId);
const evalName =
evalRuns[0] && evalRuns[0].eval_name ? evalRuns[0].eval_name : 'Eval ' + evalId;
html +=
"<h4 style='font-family: Poppins, sans-serif; margin: 1rem 0 0.5rem; color: var(--text);'>" +
escapeHtml(evalName) +
'</h4>';
html += '<table class="benchmark-table">';
html += '<thead><tr><th>Config</th><th>Run</th><th>Pass Rate</th>';
if (hasTime) html += '<th>Time (s)</th>';
if (hasErrors) html += '<th>Crashes During Execution</th>';
html += '</tr></thead>';
html += '<tbody>';
// Group by config and render with average rows
const configGroups = [...new Set(evalRuns.map((r) => r.configuration))];
for (let ci = 0; ci < configGroups.length; ci++) {
const config = configGroups[ci];
const configRuns = evalRuns.filter((r) => r.configuration === config);
if (configRuns.length === 0) continue;
const rowClass = ci === 0 ? 'benchmark-row-with' : 'benchmark-row-without';
const configLabel = config
.replace(/_/g, ' ')
.replace(/\b\w/g, (c) => c.toUpperCase());
for (const run of configRuns) {
const r = run.result || {};
const prClass =
r.pass_rate >= 0.8
? 'benchmark-delta-positive'
: r.pass_rate < 0.5
? 'benchmark-delta-negative'
: '';
html += '<tr class="' + rowClass + '">';
html += '<td>' + configLabel + '</td>';
html += '<td>' + run.run_number + '</td>';
html +=
'<td class="' +
prClass +
'">' +
((r.pass_rate || 0) * 100).toFixed(0) +
'% (' +
(r.passed || 0) +
'/' +
(r.total || 0) +
')</td>';
if (hasTime)
html +=
'<td>' + (r.time_seconds != null ? r.time_seconds.toFixed(1) : '—') + '</td>';
if (hasErrors) html += '<td>' + (r.errors || 0) + '</td>';
html += '</tr>';
}
// Average row
const rates = configRuns.map((r) => (r.result || {}).pass_rate || 0);
const avgRate = rates.reduce((a, b) => a + b, 0) / rates.length;
const avgPrClass =
avgRate >= 0.8
? 'benchmark-delta-positive'
: avgRate < 0.5
? 'benchmark-delta-negative'
: '';
html += '<tr class="benchmark-row-avg ' + rowClass + '">';
html += '<td>' + configLabel + '</td>';
html += '<td>Avg</td>';
html += '<td class="' + avgPrClass + '">' + (avgRate * 100).toFixed(0) + '%</td>';
if (hasTime) {
const times = configRuns
.map((r) => (r.result || {}).time_seconds)
.filter((t) => t != null);
html +=
'<td>' +
(times.length
? (times.reduce((a, b) => a + b, 0) / times.length).toFixed(1)
: '—') +
'</td>';
}
if (hasErrors) html += '<td></td>';
html += '</tr>';
}
html += '</tbody></table>';
// Per-assertion detail for this eval
const runsWithExpectations = {};
for (const config of configGroups) {
runsWithExpectations[config] = evalRuns.filter(
(r) => r.configuration === config && r.expectations && r.expectations.length > 0,
);
}
const hasAnyExpectations = Object.values(runsWithExpectations).some(
(runs) => runs.length > 0,
);
if (hasAnyExpectations) {
// Collect all unique assertion texts across all configs
const allAssertions = [];
const seen = new Set();
for (const config of configGroups) {
for (const run of runsWithExpectations[config]) {
for (const exp of run.expectations || []) {
if (!seen.has(exp.text)) {
seen.add(exp.text);
allAssertions.push(exp.text);
}
}
}
}
html += '<table class="benchmark-table" style="margin-top: 0.5rem;">';
html += '<thead><tr><th>Assertion</th>';
for (const config of configGroups) {
const label = config.replace(/_/g, ' ').replace(/\b\w/g, (c) => c.toUpperCase());
html += '<th>' + escapeHtml(label) + '</th>';
}
html += '</tr></thead><tbody>';
for (const assertionText of allAssertions) {
html += '<tr><td>' + escapeHtml(assertionText) + '</td>';
for (const config of configGroups) {
html += '<td>';
for (const run of runsWithExpectations[config]) {
const exp = (run.expectations || []).find((e) => e.text === assertionText);
if (exp) {
const cls = exp.passed
? 'benchmark-delta-positive'
: 'benchmark-delta-negative';
const icon = exp.passed ? '\u2713' : '\u2717';
html +=
'<span class="' +
cls +
'" title="Run ' +
run.run_number +
': ' +
escapeHtml(exp.evidence || '') +
'">' +
icon +
'</span> ';
} else {
html += '— ';
}
}
html += '</td>';
}
html += '</tr>';
}
html += '</tbody></table>';
}
}
}
// Notes
if (notes.length > 0) {
html += '<div class="benchmark-notes">';
html += '<h3>Analysis Notes</h3>';
html += '<ul>';
for (const note of notes) {
html += '<li>' + escapeHtml(note) + '</li>';
}
html += '</ul></div>';
}
container.innerHTML = html;
}
// ---- Start ----
init();
renderBenchmark();
</script>
</body>
</html>
================================================
FILE: .agents/skills/skill-creator/references/schemas.md
================================================
# JSON Schemas
This document defines the JSON schemas used by skill-creator.
---
## evals.json
Defines the evals for a skill. Located at `evals/evals.json` within the skill directory.
```json
{
"skill_name": "example-skill",
"evals": [
{
"id": 1,
"prompt": "User's example prompt",
"expected_output": "Description of expected result",
"files": ["evals/files/sample1.pdf"],
"expectations": ["The output includes X", "The skill used script Y"]
}
]
}
```
**Fields:**
- `skill_name`: Name matching the skill's frontmatter
- `evals[].id`: Unique integer identifier
- `evals[].prompt`: The task to execute
- `evals[].expected_output`: Human-readable description of success
- `evals[].files`: Optional list of input file paths (relative to skill root)
- `evals[].expectations`: List of verifiable statements
---
## history.json
Tracks version progression in Improve mode. Located at workspace root.
```json
{
"started_at": "2026-01-15T10:30:00Z",
"skill_name": "pdf",
"current_best": "v2",
"iterations": [
{
"version": "v0",
"parent": null,
"expectation_pass_rate": 0.65,
"grading_result": "baseline",
"is_current_best": false
},
{
"version": "v1",
"parent": "v0",
"expectation_pass_rate": 0.75,
"grading_result": "won",
"is_current_best": false
},
{
"version": "v2",
"parent": "v1",
"expectation_pass_rate": 0.85,
"grading_result": "won",
"is_current_best": true
}
]
}
```
**Fields:**
- `started_at`: ISO timestamp of when improvement started
- `skill_name`: Name of the skill being improved
- `current_best`: Version identifier of the best performer
- `iterations[].version`: Version identifier (v0, v1, ...)
- `iterations[].parent`: Parent version this was derived from
- `iterations[].expectation_pass_rate`: Pass rate from grading
- `iterations[].grading_result`: "baseline", "won", "lost", or "tie"
- `iterations[].is_current_best`: Whether this is the current best version
---
## grading.json
Output from the grader agent. Located at `<run-dir>/grading.json`.
```json
{
"expectations": [
{
"text": "The output includes the name 'John Smith'",
"passed": true,
"evidence": "Found in transcript Step 3: 'Extracted names: John Smith, Sarah Johnson'"
},
{
"text": "The spreadsheet has a SUM formula in cell B10",
"passed": false,
"evidence": "No spreadsheet was created. The output was a text file."
}
],
"summary": {
"passed": 2,
"failed": 1,
"total": 3,
"pass_rate": 0.67
},
"execution_metrics": {
"tool_calls": {
"Read": 5,
"Write": 2,
"Bash": 8
},
"total_tool_calls": 15,
"total_steps": 6,
"errors_encountered": 0,
"output_chars": 12450,
"transcript_chars": 3200
},
"timing": {
"executor_duration_seconds": 165.0,
"grader_duration_seconds": 26.0,
"total_duration_seconds": 191.0
},
"claims": [
{
"claim": "The form has 12 fillable fields",
"type": "factual",
"verified": true,
"evidence": "Counted 12 fields in field_info.json"
}
],
"user_notes_summary": {
"uncertainties": ["Used 2023 data, may be stale"],
"needs_review": [],
"workarounds": ["Fell back to text overlay for non-fillable fields"]
},
"eval_feedback": {
"suggestions": [
{
"assertion": "The output includes the name 'John Smith'",
"reason": "A hallucinated document that mentions the name would also pass"
}
],
"overall": "Assertions check presence but not correctness."
}
}
```
**Fields:**
- `expectations[]`: Graded expectations with evidence
- `summary`: Aggregate pass/fail counts
- `execution_metrics`: Tool usage and output size (from executor's metrics.json)
- `timing`: Wall clock timing (from timing.json)
- `claims`: Extracted and verified claims from the output
- `user_notes_summary`: Issues flagged by the executor
- `eval_feedback`: (optional) Improvement suggestions for the evals, only present when the grader identifies issues worth raising
---
## metrics.json
Output from the executor agent. Located at `<run-dir>/outputs/metrics.json`.
```json
{
"tool_calls": {
"Read": 5,
"Write": 2,
"Bash": 8,
"Edit": 1,
"Glob": 2,
"Grep": 0
},
"total_tool_calls": 18,
"total_steps": 6,
"files_created": ["filled_form.pdf", "field_values.json"],
"errors_encountered": 0,
"output_chars": 12450,
"transcript_chars": 3200
}
```
**Fields:**
- `tool_calls`: Count per tool type
- `total_tool_calls`: Sum of all tool calls
- `total_steps`: Number of major execution steps
- `files_created`: List of output files created
- `errors_encountered`: Number of errors during execution
- `output_chars`: Total character count of output files
- `transcript_chars`: Character count of transcript
---
## timing.json
Wall clock timing for a run. Located at `<run-dir>/timing.json`.
**How to capture:** When a subagent task completes, the task notification includes `total_tokens` and `duration_ms`. Save these immediately — they are not persisted anywhere else and cannot be recovered after the fact.
```json
{
"total_tokens": 84852,
"duration_ms": 23332,
"total_duration_seconds": 23.3,
"executor_start": "2026-01-15T10:30:00Z",
"executor_end": "2026-01-15T10:32:45Z",
"executor_duration_seconds": 165.0,
"grader_start": "2026-01-15T10:32:46Z",
"grader_end": "2026-01-15T10:33:12Z",
"grader_duration_seconds": 26.0
}
```
---
## benchmark.json
Output from Benchmark mode. Located at `benchmarks/<timestamp>/benchmark.json`.
```json
{
"metadata": {
"skill_name": "pdf",
"skill_path": "/path/to/pdf",
"executor_model": "claude-sonnet-4-20250514",
"analyzer_model": "most-capable-model",
"timestamp": "2026-01-15T10:30:00Z",
"evals_run": [1, 2, 3],
"runs_per_configuration": 3
},
"runs": [
{
"eval_id": 1,
"eval_name": "Ocean",
"configuration": "with_skill",
"run_number": 1,
"result": {
"pass_rate": 0.85,
"passed": 6,
"failed": 1,
"total": 7,
"time_seconds": 42.5,
"tokens": 3800,
"tool_calls": 18,
"errors": 0
},
"expectations": [{ "text": "...", "passed": true, "evidence": "..." }],
"notes": ["Used 2023 data, may be stale", "Fell back to text overlay for non-fillable fields"]
}
],
"run_summary": {
"with_skill": {
"pass_rate": { "mean": 0.85, "stddev": 0.05, "min": 0.8, "max": 0.9 },
"time_seconds": { "mean": 45.0, "stddev": 12.0, "min": 32.0, "max": 58.0 },
"tokens": { "mean": 3800, "stddev": 400, "min": 3200, "max": 4100 }
},
"without_skill": {
"pass_rate": { "mean": 0.35, "stddev": 0.08, "min": 0.28, "max": 0.45 },
"time_seconds": { "mean": 32.0, "stddev": 8.0, "min": 24.0, "max": 42.0 },
"tokens": { "mean": 2100, "stddev": 300, "min": 1800, "max": 2500 }
},
"delta": {
"pass_rate": "+0.50",
"time_seconds": "+13.0",
"tokens": "+1700"
}
},
"notes": [
"Assertion 'Output is a PDF file' passes 100% in both configurations - may not differentiate skill value",
"Eval 3 shows high variance (50% ± 40%) - may be flaky or model-dependent",
"Without-skill runs consistently fail on table extraction expectations",
"Skill adds 13s average execution time but improves pass rate by 50%"
]
}
```
**Fields:**
- `metadata`: Information about the benchmark run
- `skill_name`: Name of the skill
- `timestamp`: When the benchmark was run
- `evals_run`: List of eval names or IDs
- `runs_per_configuration`: Number of runs per config (e.g. 3)
- `runs[]`: Individual run results
- `eval_id`: Numeric eval identifier
- `eval_name`: Human-readable eval name (used as section header in the viewer)
- `configuration`: Must be `"with_skill"` or `"without_skill"` (the viewer uses this exact string for grouping and color coding)
- `run_number`: Integer run number (1, 2, 3...)
- `result`: Nested object with `pass_rate`, `passed`, `total`, `time_seconds`, `tokens`, `errors`
- `run_summary`: Statistical aggregates per configuration
- `with_skill` / `without_skill`: Each contains `pass_rate`, `time_seconds`, `tokens` objects with `mean` and `stddev` fields
- `delta`: Difference strings like `"+0.50"`, `"+13.0"`, `"+1700"`
- `notes`: Freeform observations from the analyzer
**Important:** The viewer reads these field names exactly. Using `config` instead of `configuration`, or putting `pass_rate` at the top level of a run instead of nested under `result`, will cause the viewer to show empty/zero values. Always reference this schema when generating benchmark.json manually.
---
## comparison.json
Output from blind comparator. Located at `<grading-dir>/comparison-N.json`.
```json
{
"winner": "A",
"reasoning": "Output A provides a complete solution with proper formatting and all required fields. Output B is missing the date field and has formatting inconsistencies.",
"rubric": {
"A": {
"content": {
"correctness": 5,
"completeness": 5,
"accuracy": 4
},
"structure": {
"organization": 4,
"formatting": 5,
"usability": 4
},
"content_score": 4.7,
"structure_score": 4.3,
"overall_score": 9.0
},
"B": {
"content": {
"correctness": 3,
"completeness": 2,
"accuracy": 3
},
"structure": {
"organization": 3,
"formatting": 2,
"usability": 3
},
"content_score": 2.7,
"structure_score": 2.7,
"overall_score": 5.4
}
},
"output_quality": {
"A": {
"score": 9,
"strengths": ["Complete solution", "Well-formatted", "All fields present"],
"weaknesses": ["Minor style inconsistency in header"]
},
"B": {
"score": 5,
"strengths": ["Readable output", "Correct basic structure"],
"weaknesses": ["Missing date field", "Formatting inconsistencies", "Partial data extraction"]
}
},
"expectation_results": {
"A": {
"passed": 4,
"total": 5,
"pass_rate": 0.8,
"details": [{ "text": "Output includes name", "passed": true }]
},
"B": {
"passed": 3,
"total": 5,
"pass_rate": 0.6,
"details": [{ "text": "Output includes name", "passed": true }]
}
}
}
```
---
## analysis.json
Output from post-hoc analyzer. Located at `<grading-dir>/analysis.json`.
```json
{
"comparison_summary": {
"winner": "A",
"winner_skill": "path/to/winner/skill",
"loser_skill": "path/to/loser/skill",
"comparator_reasoning": "Brief summary of why comparator chose winner"
},
"winner_strengths": [
"Clear step-by-step instructions for handling multi-page documents",
"Included validation script that caught formatting errors"
],
"loser_weaknesses": [
"Vague instruction 'process the document appropriately' led to inconsistent behavior",
"No script for validation, agent had to improvise"
],
"instruction_following": {
"winner": {
"score": 9,
"issues": ["Minor: skipped optional logging step"]
},
"loser": {
"score": 6,
"issues": [
"Did not use the skill's formatting template",
"Invented own approach instead of following step 3"
]
}
},
"improvement_suggestions": [
{
"priority": "high",
"category": "instructions",
"suggestion": "Replace 'process the document appropriately' with explicit steps",
"expected_impact": "Would eliminate ambiguity that caused inconsistent behavior"
}
],
"transcript_insights": {
"winner_execution_pattern": "Read skill -> Followed 5-step process -> Used validation script",
"loser_execution_pattern": "Read skill -> Unclear on approach -> Tried 3 different methods"
}
}
```
================================================
FILE: .agents/skills/skill-creator/scripts/__init__.py
================================================
================================================
FILE: .agents/skills/skill-creator/scripts/aggregate_benchmark.py
================================================
#!/usr/bin/env python3
"""
Aggregate individual run results into benchmark summary statistics.
Reads grading.json files from run directories and produces:
- run_summary with mean, stddev, min, max for each metric
- delta between with_skill and without_skill configurations
Usage:
python aggregate_benchmark.py <benchmark_dir>
Example:
python aggregate_benchmark.py benchmarks/2026-01-15T10-30-00/
The script supports two directory layouts:
Workspace layout (from skill-creator iterations):
<benchmark_dir>/
└── eval-N/
├── with_skill/
│ ├── run-1/grading.json
│ └── run-2/grading.json
└── without_skill/
├── run-1/grading.json
└── run-2/grading.json
Legacy layout (with runs/ subdirectory):
<benchmark_dir>/
└── runs/
└── eval-N/
├── with_skill/
│ └── run-1/grading.json
└── without_skill/
└── run-1/grading.json
"""
import argparse
import json
import math
import sys
from datetime import datetime, timezone
from pathlib import Path
def calculate_stats(values: list[float]) -> dict:
"""Calculate mean, stddev, min, max for a list of values."""
if not values:
return {"mean": 0.0, "stddev": 0.0, "min": 0.0, "max": 0.0}
n = len(values)
mean = sum(values) / n
if n > 1:
variance = sum((x - mean) ** 2 for x in values) / (n - 1)
stddev = math.sqrt(variance)
else:
stddev = 0.0
return {
"mean": round(mean, 4),
"stddev": round(stddev, 4),
"min": round(min(values), 4),
"max": round(max(values), 4)
}
def load_run_results(benchmark_dir: Path) -> dict:
"""
Load all run results from a benchmark directory.
Returns dict keyed by config name (e.g. "with_skill"/"without_skill",
or "new_skill"/"old_skill"), each containing a list of run results.
"""
# Support both layouts: eval dirs directly under benchmark_dir, or under runs/
runs_dir = benchmark_dir / "runs"
if runs_dir.exists():
search_dir = runs_dir
elif list(benchmark_dir.glob("eval-*")):
search_dir = benchmark_dir
else:
print(f"No eval directories found in {benchmark_dir} or {benchmark_dir / 'runs'}")
return {}
results: dict[str, list] = {}
for eval_idx, eval_dir in enumerate(sorted(search_dir.glob("eval-*"))):
metadata_path = eval_dir / "eval_metadata.json"
if metadata_path.exists():
try:
with open(metadata_path) as mf:
eval_id = json.load(mf).get("eval_id", eval_idx)
except (json.JSONDecodeError, OSError):
eval_id = eval_idx
else:
try:
eval_id = int(eval_dir.name.split("-")[1])
except ValueError:
eval_id = eval_idx
# Discover config directories dynamically rather than hardcoding names
for config_dir in sorted(eval_dir.iterdir()):
if not config_dir.is_dir():
continue
# Skip non-config directories (inputs, outputs, etc.)
if not list(config_dir.glob("run-*")):
continue
config = config_dir.name
if config not in results:
results[config] = []
for run_dir in sorted(config_dir.glob("run-*")):
run_number = int(run_dir.name.split("-")[1])
grading_file = run_dir / "grading.json"
if not grading_file.exists():
print(f"Warning: grading.json not found in {run_dir}")
continue
try:
with open(grading_file) as f:
grading = json.load(f)
except json.JSONDecodeError as e:
print(f"Warning: Invalid JSON in {grading_file}: {e}")
continue
# Extract metrics
result = {
"eval_id": eval_id,
"run_number": run_number,
"pass_rate": grading.get("summary", {}).get("pass_rate", 0.0),
"passed": grading.get("summary", {}).get("passed", 0),
"failed": grading.get("summary", {}).get("failed", 0),
"total": grading.get("summary", {}).get("total", 0),
}
# Extract timing — check grading.json first, then sibling timing.json
timing = grading.get("timing", {})
result["time_seconds"] = timing.get("total_duration_seconds", 0.0)
timing_file = run_dir / "timing.json"
if result["time_seconds"] == 0.0 and timing_file.exists():
try:
with open(timing_file) as tf:
timing_data = json.load(tf)
result["time_seconds"] = timing_data.get("total_duration_seconds", 0.0)
result["tokens"] = timing_data.get("total_tokens", 0)
except json.JSONDecodeError:
pass
# Extract metrics if available
metrics = grading.get("execution_metrics", {})
result["tool_calls"] = metrics.get("total_tool_calls", 0)
if not result.get("tokens"):
result["tokens"] = metrics.get("output_chars", 0)
result["errors"] = metrics.get("errors_encountered", 0)
# Extract expectations — viewer requires fields: text, passed, evidence
raw_expectations = grading.get("expectations", [])
for exp in raw_expectations:
if "text" not in exp or "passed" not in exp:
print(f"Warning: expectation in {grading_file} missing required fields (text, passed, evidence): {exp}")
result["expectations"] = raw_expectations
# Extract notes from user_notes_summary
notes_summary = grading.get("user_notes_summary", {})
notes = []
notes.extend(notes_summary.get("uncertainties", []))
notes.extend(notes_summary.get("needs_review", []))
notes.extend(notes_summary.get("workarounds", []))
result["notes"] = notes
results[config].append(result)
return results
def aggregate_results(results: dict) -> dict:
"""
Aggregate run results into summary statistics.
Returns run_summary with stats for each configuration and delta.
"""
run_summary = {}
configs = list(results.keys())
for config in configs:
runs = results.get(config, [])
if not runs:
run_summary[config] = {
"pass_rate": {"mean": 0.0, "stddev": 0.0, "min": 0.0, "max": 0.0},
"time_seconds": {"mean": 0.0, "stddev": 0.0, "min": 0.0, "max": 0.0},
"tokens": {"mean": 0, "stddev": 0, "min": 0, "max": 0}
}
continue
pass_rates = [r["pass_rate"] for r in runs]
times = [r["time_seconds"] for r in runs]
tokens = [r.get("tokens", 0) for r in runs]
run_summary[config] = {
"pass_rate": calculate_stats(pass_rates),
"time_seconds": calculate_stats(times),
"tokens": calculate_stats(tokens)
}
# Calculate delta between the first two configs (if two exist)
if len(configs) >= 2:
primary = run_summary.get(configs[0], {})
baseline = run_summary.get(configs[1], {})
else:
primary = run_summary.get(configs[0], {}) if configs else {}
baseline = {}
delta_pass_rate = primary.get("pass_rate", {}).get("mean", 0) - baseline.get("pass_rate", {}).get("mean", 0)
delta_time = primary.get("time_seconds", {}).get("mean", 0) - baseline.get("time_seconds", {}).get("mean", 0)
delta_tokens = primary.get("tokens", {}).get("mean", 0) - baseline.get("tokens", {}).get("mean", 0)
run_summary["delta"] = {
"pass_rate": f"{delta_pass_rate:+.2f}",
"time_seconds": f"{delta_time:+.1f}",
"tokens": f"{delta_tokens:+.0f}"
}
return run_summary
def generate_benchmark(benchmark_dir: Path, skill_name: str = "", skill_path: str = "") -> dict:
"""
Generate complete benchmark.json from run results.
"""
results = load_run_results(benchmark_dir)
run_summary = aggregate_results(results)
# Build runs array for benchmark.json
runs = []
for config in results:
for result in results[config]:
runs.append({
"eval_id": result["eval_id"],
"configuration": config,
"run_number": result["run_number"],
"result": {
"pass_rate": result["pass_rate"],
"passed": result["passed"],
"failed": result["failed"],
"total": result["total"],
"time_seconds": result["time_seconds"],
"tokens": result.get("tokens", 0),
"tool_calls": result.get("tool_calls", 0),
"errors": result.get("errors", 0)
},
"expectations": result["expectations"],
"notes": result["notes"]
})
# Determine eval IDs from results
eval_ids = sorted(set(
r["eval_id"]
for config in results.values()
for r in config
))
benchmark = {
"metadata": {
"skill_name": skill_name or "<skill-name>",
"skill_path": skill_path or "<path/to/skill>",
"executor_model": "<model-name>",
"analyzer_model": "<model-name>",
"timestamp": datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ"),
"evals_run": eval_ids,
"runs_per_configuration": 3
},
"runs": runs,
"run_summary": run_summary,
"notes": [] # To be filled by analyzer
}
return benchmark
def generate_markdown(benchmark: dict) -> str:
"""Generate human-readable benchmark.md from benchmark data."""
metadata = benchmark["metadata"]
run_summary = benchmark["run_summary"]
# Determine config names (excluding "delta")
configs = [k for k in run_summary if k != "delta"]
config_a = configs[0] if len(configs) >= 1 else "config_a"
config_b = configs[1] if len(configs) >= 2 else "config_b"
label_a = config_a.replace("_", " ").title()
label_b = config_b.replace("_", " ").title()
lines = [
f"# Skill Benchmark: {metadata['skill_name']}",
"",
f"**Model**: {metadata['executor_model']}",
f"**Date**: {metadata['timestamp']}",
f"**Evals**: {', '.join(map(str, metadata['evals_run']))} ({metadata['runs_per_configuration']} runs each per configuration)",
"",
"## Summary",
"",
f"| Metric | {label_a} | {label_b} | Delta |",
"|--------|------------|---------------|-------|",
]
a_summary = run_summary.get(config_a, {})
b_summary = run_summary.get(config_b, {})
delta = run_summary.get("delta", {})
# Format pass rate
a_pr = a_summary.get("pass_rate", {})
b_pr = b_summary.get("pass_rate", {})
lines.append(f"| Pass Rate | {a_pr.get('mean', 0)*100:.0f}% ± {a_pr.get('stddev', 0)*100:.0f}% | {b_pr.get('mean', 0)*100:.0f}% ± {b_pr.get('stddev', 0)*100:.0f}% | {delta.get('pass_rate', '—')} |")
# Format time
a_time = a_summary.get("time_seconds", {})
b_time = b_summary.get("time_seconds", {})
lines.append(f"| Time | {a_time.get('mean', 0):.1f}s ± {a_time.get('stddev', 0):.1f}s | {b_time.get('mean', 0):.1f}s ± {b_time.get('stddev', 0):.1f}s | {delta.get('time_seconds', '—')}s |")
# Format tokens
a_tokens = a_summary.get("tokens", {})
b_tokens = b_summary.get("tokens", {})
lines.append(f"| Tokens | {a_tokens.get('mean', 0):.0f} ± {a_tokens.get('stddev', 0):.0f} | {b_tokens.get('mean', 0):.0f} ± {b_tokens.get('stddev', 0):.0f} | {delta.get('tokens', '—')} |")
# Notes section
if benchmark.get("notes"):
lines.extend([
"",
"## Notes",
""
])
for note in benchmark["notes"]:
lines.append(f"- {note}")
return "\n".join(lines)
def main():
parser = argparse.ArgumentParser(
description="Aggregate benchmark run results into summary statistics"
)
parser.add_argument(
"benchmark_dir",
type=Path,
help="Path to the benchmark directory"
)
parser.add_argument(
"--skill-name",
default="",
help="Name of the skill being benchmarked"
)
parser.add_argument(
"--skill-path",
default="",
help="Path to the skill being benchmarked"
)
parser.add_argument(
"--output", "-o",
type=Path,
help="Output path for benchmark.json (default: <benchmark_dir>/benchmark.json)"
)
args = parser.parse_args()
if not args.benchmark_dir.exists():
print(f"Directory not found: {args.benchmark_dir}")
sys.exit(1)
# Generate benchmark
benchmark = generate_benchmark(args.benchmark_dir, args.skill_name, args.skill_path)
# Determine output paths
output_json = args.output or (args.benchmark_dir / "benchmark.json")
output_md = output_json.with_suffix(".md")
# Write benchmark.json
with open(output_json, "w") as f:
json.dump(benchmark, f, indent=2)
print(f"Generated: {output_json}")
# Write benchmark.md
markdown = generate_markdown(benchmark)
with open(output_md, "w") as f:
f.write(markdown)
print(f"Generated: {output_md}")
# Print summary
run_summary = benchmark["run_summary"]
configs = [k for k in run_summary if k != "delta"]
delta = run_summary.get("delta", {})
print(f"\nSummary:")
for config in configs:
pr = run_summary[config]["pass_rate"]["mean"]
label = config.replace("_", " ").title()
print(f" {label}: {pr*100:.1f}% pass rate")
print(f" Delta: {delta.get('pass_rate', '—')}")
if __name__ == "__main__":
main()
================================================
FILE: .agents/skills/skill-creator/scripts/generate_report.py
================================================
#!/usr/bin/env python3
"""Generate an HTML report from run_loop.py output.
Takes the JSON output from run_loop.py and generates a visual HTML report
showing each description attempt with check/x for each test case.
Distinguishes between train and test queries.
"""
import argparse
import html
import json
import sys
from pathlib import Path
def generate_html(data: dict, auto_refresh: bool = False, skill_name: str = "") -> str:
"""Generate HTML report from loop output data. If auto_refresh is True, adds a meta refresh tag."""
history = data.get("history", [])
holdout = data.get("holdout", 0)
title_prefix = html.escape(skill_name + " \u2014 ") if skill_name else ""
# Get all unique queries from train and test sets, with should_trigger info
train_queries: list[dict] = []
test_queries: list[dict] = []
if history:
for r in history[0].get("train_results", history[0].get("results", [])):
train_queries.append({"query": r["query"], "should_trigger": r.get("should_trigger", True)})
if history[0].get("test_results"):
for r in history[0].get("test_results", []):
test_queries.append({"query": r["query"], "should_trigger": r.get("should_trigger", True)})
refresh_tag = ' <meta http-equiv="refresh" content="5">\n' if auto_refresh else ""
html_parts = ["""<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
""" + refresh_tag + """ <title>""" + title_prefix + """Skill Description Optimization</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Lora:wght@400;500&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Lora', Georgia, serif;
max-width: 100%;
margin: 0 auto;
padding: 20px;
background: #faf9f5;
color: #141413;
}
h1 { font-family: 'Poppins', sans-serif; color: #141413; }
.explainer {
background: white;
padding: 15px;
border-radius: 6px;
margin-bottom: 20px;
border: 1px solid #e8e6dc;
color: #b0aea5;
font-size: 0.875rem;
line-height: 1.6;
}
.summary {
background: white;
padding: 15px;
border-radius: 6px;
margin-bottom: 20px;
border: 1px solid #e8e6dc;
}
.summary p { margin: 5px 0; }
.best { color: #788c5d; font-weight: bold; }
.table-container {
overflow-x: auto;
width: 100%;
}
table {
border-collapse: collapse;
background: white;
border: 1px solid #e8e6dc;
border-radius: 6px;
font-size: 12px;
min-width: 100%;
}
th, td {
padding: 8px;
text-align: left;
border: 1px solid #e8e6dc;
white-space: normal;
word-wrap: break-word;
}
th {
font-family: 'Poppins', sans-serif;
background: #141413;
color: #faf9f5;
font-weight: 500;
}
th.test-col {
background: #6a9bcc;
}
th.query-col { min-width: 200px; }
td.description {
font-family: monospace;
font-size: 11px;
word-wrap: break-word;
max-width: 400px;
}
td.result {
text-align: center;
font-size: 16px;
min-width: 40px;
}
td.test-result {
background: #f0f6fc;
}
.pass { color: #788c5d; }
.fail { color: #c44; }
.rate {
font-size: 9px;
color: #b0aea5;
display: block;
}
tr:hover { background: #faf9f5; }
.score {
display: inline-block;
padding: 2px 6px;
border-radius: 4px;
font-weight: bold;
font-size: 11px;
}
.score-good { background: #eef2e8; color: #788c5d; }
.score-ok { background: #fef3c7; color: #d97706; }
.score-bad { background: #fceaea; color: #c44; }
.train-label { color: #b0aea5; font-size: 10px; }
.test-label { color: #6a9bcc; font-size: 10px; font-weight: bold; }
.best-row { background: #f5f8f2; }
th.positive-col { border-bottom: 3px solid #788c5d; }
th.negative-col { border-bottom: 3px solid #c44; }
th.test-col.positive-col { border-bottom: 3px solid #788c5d; }
th.test-col.negative-col { border-bottom: 3px solid #c44; }
.legend { font-family: 'Poppins', sans-serif; display: flex; gap: 20px; margin-bottom: 10px; font-size: 13px; align-items: center; }
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-swatch { width: 16px; height: 16px; border-radius: 3px; display: inline-block; }
.swatch-positive { background: #141413; border-bottom: 3px solid #788c5d; }
.swatch-negative { background: #141413; border-bottom: 3px solid #c44; }
.swatch-test { background: #6a9bcc; }
.swatch-train { background: #141413; }
</style>
</head>
<body>
<h1>""" + title_prefix + """Skill Description Optimization</h1>
<div class="explainer">
<strong>Optimizing your skill's description.</strong> This page updates automatically as Claude tests different versions of your skill's description. Each row is an iteration — a new description attempt. The columns show test queries: green checkmarks mean the skill triggered correctly (or correctly didn't trigger), red crosses mean it got it wrong. The "Train" score shows performance on queries used to improve the description; the "Test" score shows performance on held-out queries the optimizer hasn't seen. When it's done, Claude will apply the best-performing description to your skill.
</div>
"""]
# Summary section
best_test_score = data.get('best_test_score')
best_train_score = data.get('best_train_score')
html_parts.append(f"""
<div class="summary">
<p><strong>Original:</strong> {html.escape(data.get('original_description', 'N/A'))}</p>
<p class="best"><strong>Best:</strong> {html.escape(data.get('best_description', 'N/A'))}</p>
<p><strong>Best Score:</strong> {data.get('best_score', 'N/A')} {'(test)' if best_test_score else '(train)'}</p>
<p><strong>Iterations:</strong> {data.get('iterations_run', 0)} | <strong>Train:</strong> {data.get('train_size', '?')} | <strong>Test:</strong> {data.get('test_size', '?')}</p>
</div>
""")
# Legend
html_parts.append("""
<div class="legend">
<span style="font-weight:600">Query columns:</span>
<span class="legend-item"><span class="legend-swatch swatch-positive"></span> Should trigger</span>
<span class="legend-item"><span class="legend-swatch swatch-negative"></span> Should NOT trigger</span>
<span class="legend-item"><span class="legend-swatch swatch-train"></span> Train</span>
<span class="legend-item"><span class="legend-swatch swatch-test"></span> Test</span>
</div>
""")
# Table header
html_parts.append("""
<div class="table-container">
<table>
<thead>
<tr>
<th>Iter</th>
<th>Train</th>
<th>Test</th>
<th class="query-col">Description</th>
""")
# Add column headers for train queries
for qinfo in train_queries:
polarity = "positive-col" if qinfo["should_trigger"] else "negative-col"
html_parts.append(f' <th class="{polarity}">{html.escape(qinfo["query"])}</th>\n')
# Add column headers for test queries (different color)
for qinfo in test_queries:
polarity = "positive-col" if qinfo["should_trigger"] else "negative-col"
html_parts.append(f' <th class="test-col {polarity}">{html.escape(qinfo["query"])}</th>\n')
html_parts.append(""" </tr>
</thead>
<tbody>
""")
# Find best iteration for highlighting
if test_queries:
best_iter = max(history, key=lambda h: h.get("test_passed") or 0).get("iteration")
else:
best_iter = max(history, key=lambda h: h.get("train_passed", h.get("passed", 0))).get("iteration")
# Add rows for each iteration
for h in history:
iteration = h.get("iteration", "?")
train_passed = h.get("train_passed", h.get("passed", 0))
train_total = h.get("train_total", h.get("total", 0))
test_passed = h.get("test_passed")
test_total = h.get("test_total")
description = h.get("description", "")
train_results = h.get("train_results", h.get("results", []))
test_results = h.get("test_results", [])
# Create lookups for results by query
train_by_query = {r["query"]: r for r in train_results}
test_by_query = {r["query"]: r for r in test_results} if test_results else {}
# Compute aggregate correct/total runs across all retries
def aggregate_runs(results: list[dict]) -> tuple[int, int]:
correct = 0
total = 0
for r in results:
runs = r.get("runs", 0)
triggers = r.get("triggers", 0)
total += runs
if r.get("should_trigger", True):
correct += triggers
else:
correct += runs - triggers
return correct, total
train_correct, train_runs = aggregate_runs(train_results)
test_correct, test_runs = aggregate_runs(test_results)
# Determine score classes
def score_class(correct: int, total: int) -> str:
if total > 0:
ratio = correct / total
if ratio >= 0.8:
return "score-good"
elif ratio >= 0.5:
return "score-ok"
return "score-bad"
train_class = score_class(train_correct, train_runs)
test_class = score_class(test_correct, test_runs)
row_class = "best-row" if iteration == best_iter else ""
html_parts.append(f""" <tr class="{row_class}">
<td>{iteration}</td>
<td><span class="score {train_class}">{train_correct}/{train_runs}</span></td>
<td><span class="score {test_class}">{test_correct}/{test_runs}</span></td>
<td class="description">{html.escape(description)}</td>
""")
# Add result for each train query
for qinfo in train_queries:
r = train_by_query.get(qinfo["query"], {})
did_pass = r.get("pass", False)
triggers = r.get("triggers", 0)
runs = r.get("runs", 0)
icon = "✓" if did_pass else "✗"
css_class = "pass" if did_pass else "fail"
html_parts.append(f' <td class="result {css_class}">{icon}<span class="rate">{triggers}/{runs}</span></td>\n')
# Add result for each test query (with different background)
for qinfo in test_queries:
r = test_by_query.get(qinfo["query"], {})
did_pass = r.get("pass", False)
triggers = r.get("triggers", 0)
runs = r.get("runs", 0)
icon = "✓" if did_pass else "✗"
css_class = "pass" if did_pass else "fail"
html_parts.append(f' <td class="result test-result {css_class}">{icon}<span class="rate">{triggers}/{runs}</span></td>\n')
html_parts.append(" </tr>\n")
html_parts.append(""" </tbody>
</table>
</div>
""")
html_parts.append("""
</body>
</html>
""")
return "".join(html_parts)
def main():
parser = argparse.ArgumentParser(description="Generate HTML report from run_loop output")
parser.add_argument("input", help="Path to JSON output from run_loop.py (or - for stdin)")
parser.add_argument("-o", "--output", default=None, help="Output HTML file (default: stdout)")
parser.add_argument("--skill-name", default="", help="Skill name to include in the report title")
args = parser.parse_args()
if args.input == "-":
data = json.load(sys.stdin)
else:
data = json.loads(Path(args.input).read_text())
html_output = generate_html(data, skill_name=args.skill_name)
if args.output:
Path(args.output).write_text(html_output)
print(f"Report written to {args.output}", file=sys.stderr)
else:
print(html_output)
if __name__ == "__main__":
main()
================================================
FILE: .agents/skills/skill-creator/scripts/improve_description.py
================================================
#!/usr/bin/env python3
"""Improve a skill description based on eval results.
Takes eval results (from run_eval.py) and generates an improved description
by calling `claude -p` as a subprocess (same auth pattern as run_eval.py —
uses the session's Claude Code auth, no separate ANTHROPIC_API_KEY needed).
"""
import argparse
import json
import os
import re
import subprocess
import sys
from pathlib import Path
from scripts.utils import parse_skill_md
def _call_claude(prompt: str, model: str | None, timeout: int = 300) -> str:
"""Run `claude -p` with the prompt on stdin and return the text response.
Prompt goes over stdin (not argv) because it embeds the full SKILL.md
body and can easily exceed comfortable argv length.
"""
cmd = ["claude", "-p", "--output-format", "text"]
if model:
cmd.extend(["--model", model])
# Remove CLAUDECODE env var to allow nesting claude -p inside a
# Claude Code session. The guard is for interactive terminal conflicts;
# programmatic subprocess usage is safe. Same pattern as run_eval.py.
env = {k: v for k, v in os.environ.items() if k != "CLAUDECODE"}
result = subprocess.run(
cmd,
input=prompt,
capture_output=True,
text=True,
env=env,
timeout=timeout,
)
if result.returncode != 0:
raise RuntimeError(
f"claude -p exited {result.returncode}\nstderr: {result.stderr}"
)
return result.stdout
def improve_description(
skill_name: str,
skill_content: str,
current_description: str,
eval_results: dict,
history: list[dict],
model: str,
test_results: dict | None = None,
log_dir: Path | None = None,
iteration: int | None = None,
) -> str:
"""Call Claude to improve the description based on eval results."""
failed_triggers = [
r for r in eval_results["results"]
if r["should_trigger"] and not r["pass"]
]
false_triggers = [
r for r in eval_results["results"]
if not r["should_trigger"] and not r["pass"]
]
# Build scores summary
train_score = f"{eval_results['summary']['passed']}/{eval_results['summary']['total']}"
if test_results:
test_score = f"{test_results['summary']['passed']}/{test_results['summary']['total']}"
scores_summary = f"Train: {train_score}, Test: {test_score}"
else:
scores_summary = f"Train: {train_score}"
prompt = f"""You are optimizing a skill description for a Claude Code skill called "{skill_name}". A "skill" is sort of like a prompt, but with progressive disclosure -- there's a title and description that Claude sees when deciding whether to use the skill, and then if it does use the skill, it reads the .md file which has lots more details and potentially links to other resources in the skill folder like helper files and scripts and additional documentation or examples.
The description appears in Claude's "available_skills" list. When a user sends a query, Claude decides whether to invoke the skill based solely on the title and on this description. Your goal is to write a description that triggers for relevant queries, and doesn't trigger for irrelevant ones.
Here's the current description:
<current_description>
"{current_description}"
</current_description>
Current scores ({scores_summary}):
<scores_summary>
"""
if failed_triggers:
prompt += "FAILED TO TRIGGER (should have triggered but didn't):\n"
for r in failed_triggers:
prompt += f' - "{r["query"]}" (triggered {r["triggers"]}/{r["runs"]} times)\n'
prompt += "\n"
if false_triggers:
prompt += "FALSE TRIGGERS (triggered but shouldn't have):\n"
for r in false_triggers:
prompt += f' - "{r["query"]}" (triggered {r["triggers"]}/{r["runs"]} times)\n'
prompt += "\n"
if history:
prompt += "PREVIOUS ATTEMPTS (do NOT repeat these — try something structurally different):\n\n"
for h in history:
train_s = f"{h.get('train_passed', h.get('passed', 0))}/{h.get('train_total', h.get('total', 0))}"
test_s = f"{h.get('test_passed', '?')}/{h.get('test_total', '?')}" if h.get('test_passed') is not None else None
score_str = f"train={train_s}" + (f", test={test_s}" if test_s else "")
prompt += f'<attempt {score_str}>\n'
prompt += f'Description: "{h["description"]}"\n'
if "results" in h:
prompt += "Train results:\n"
for r in h["results"]:
status = "PASS" if r["pass"] else "FAIL"
prompt += f' [{status}] "{r["query"][:80]}" (triggered {r["triggers"]}/{r["runs"]})\n'
if h.get("note"):
prompt += f'Note: {h["note"]}\n'
prompt += "</attempt>\n\n"
prompt += f"""</scores_summary>
Skill content (for context on what the skill does):
<skill_content>
{skill_content}
</skill_content>
Based on the failures, write a new and improved description that is more likely to trigger correctly. When I say "based on the failures", it's a bit of a tricky line to walk because we don't want to overfit to the specific cases you're seeing. So what I DON'T want you to do is produce an ever-expanding list of specific queries that this skill should or shouldn't trigger for. Instead, try to generalize from the failures to broader categories of user intent and situations where this skill would be useful or not useful. The reason for this is twofold:
1. Avoid overfitting
2. The list might get loooong and it's injected into ALL queries and there might be a lot of skills, so we don't want to blow too much space on any given description.
Concretely, your description should not be more than about 100-200 words, even if that comes at the cost of accuracy. There is a hard limit of 1024 characters — descriptions over that will be truncated, so stay comfortably under it.
Here are some tips that we've found to work well in writing these descriptions:
- The skill should be phrased in the imperative -- "Use this skill for" rather than "this skill does"
- The skill description should focus on the user's intent, what they are trying to achieve, vs. the implementation details of how the skill works.
- The description competes with other skills for Claude's attention — make it distinctive and immediately recognizable.
- If you're getting lots of failures after repeated attempts, change things up. Try different sentence structures or wordings.
I'd encourage you to be creative and mix up the style in different iterations since you'll have multiple opportunities to try different approaches and we'll just grab the highest-scoring one at the end.
Please respond with only the new description text in <new_description> tags, nothing else."""
text = _call_claude(prompt, model)
match = re.search(r"<new_description>(.*?)</new_description>", text, re.DOTALL)
description = match.group(1).strip().strip('"') if match else text.strip().strip('"')
transcript: dict = {
"iteration": iteration,
"prompt": prompt,
"response": text,
"parsed_description": description,
"char_count": len(description),
"over_limit": len(description) > 1024,
}
# Safety net: the prompt already states the 1024-char hard limit, but if
# the model blew past it anyway, make one fresh single-turn call that
# quotes the too-long version and asks for a shorter rewrite. (The old
# SDK path did this as a true multi-turn; `claude -p` is one-shot, so we
# inline the prior output into the new prompt instead.)
if len(description) > 1024:
shorten_prompt = (
f"{prompt}\n\n"
f"---\n\n"
f"A previous attempt produced this description, which at "
f"{len(description)} characters is over the 1024-character hard limit:\n\n"
f'"{description}"\n\n'
f"Rewrite it to be under 1024 characters while keeping the most "
f"important trigger words and intent coverage. Respond with only "
f"the new description in <new_description> tags."
)
shorten_text = _call_claude(shorten_prompt, model)
match = re.search(r"<new_description>(.*?)</new_description>", shorten_text, re.DOTALL)
shortened = match.group(1).strip().strip('"') if match else shorten_text.strip().strip('"')
transcript["rewrite_prompt"] = shorten_prompt
transcript["rewrite_response"] = shorten_text
transcript["rewrite_description"] = shortened
transcript["rewrite_char_count"] = len(shortened)
description = shortened
transcript["final_description"] = description
if log_dir:
log_dir.mkdir(parents=True, exist_ok=True)
log_file = log_dir / f"improve_iter_{iteration or 'unknown'}.json"
log_file.write_text(json.dumps(transcript, indent=2))
return description
def main():
parser = argparse.ArgumentParser(description="Improve a skill description based on eval results")
parser.add_argument("--eval-results", required=True, help="Path to eval results JSON (from run_eval.py)")
parser.add_argument("--skill-path", required=True, help="Path to skill directory")
parser.add_argument("--history", default=None, help="Path to history JSON (previous attempts)")
parser.add_argument("--model", required=True, help="Model for improvement")
parser.add_argument("--verbose", action="store_true", help="Print thinking to stderr")
args = parser.parse_args()
skill_path = Path(args.skill_path)
if not (skill_path / "SKILL.md").exists():
print(f"Error: No SKILL.md found at {skill_path}", file=sys.stderr)
sys.exit(1)
eval_results = json.loads(Path(args.eval_results).read_text())
history = []
if args.history:
history = json.loads(Path(args.history).read_text())
name, _, content = parse_skill_md(skill_path)
current_description = eval_results["description"]
if args.verbose:
print(f"Current: {current_description}", file=sys.stderr)
print(f"Score: {eval_results['summary']['passed']}/{eval_results['summary']['total']}", file=sys.stderr)
new_description = improve_description(
skill_name=name,
skill_content=content,
current_description=current_description,
eval_results=eval_results,
history=history,
model=args.model,
)
if args.verbose:
print(f"Improved: {new_description}", file=sys.stderr)
# Output as JSON with both the new description and updated history
output = {
"description": new_description,
"history": history + [{
"description": current_description,
"passed": eval_results["summary"]["passed"],
"failed": eval_results["summary"]["failed"],
"total": eval_results["summary"]["total"],
"results": eval_results["results"],
}],
}
print(json.dumps(output, indent=2))
if __name__ == "__main__":
main()
================================================
FILE: .agents/skills/skill-creator/scripts/package_skill.py
================================================
#!/usr/bin/env python3
"""
Skill Packager - Creates a distributable .skill file of a skill folder
Usage:
python utils/package_skill.py <path/to/skill-folder> [output-directory]
Example:
python utils/package_skill.py skills/public/my-skill
python utils/package_skill.py skills/public/my-skill ./dist
"""
import fnmatch
import sys
import zipfile
from pathlib import Path
from scripts.quick_validate import validate_skill
# Patterns to exclude when packaging skills.
EXCLUDE_DIRS = {"__pycache__", "node_modules"}
EXCLUDE_GLOBS = {"*.pyc"}
EXCLUDE_FILES = {".DS_Store"}
# Directories excluded only at the skill root (not when nested deeper).
ROOT_EXCLUDE_DIRS = {"evals"}
def should_exclude(rel_path: Path) -> bool:
"""Check if a path should be excluded from packaging."""
parts = rel_path.parts
if any(part in EXCLUDE_DIRS for part in parts):
return True
# rel_path is relative to skill_path.parent, so parts[0] is the skill
# folder name and parts[1] (if present) is the first subdir.
if len(parts) > 1 and parts[1] in ROOT_EXCLUDE_DIRS:
return True
name = rel_path.name
if name in EXCLUDE_FILES:
return True
return any(fnmatch.fnmatch(name, pat) for pat in EXCLUDE_GLOBS)
def package_skill(skill_path, output_dir=None):
"""
Package a skill folder into a .skill file.
Args:
skill_path: Path to the skill folder
output_dir: Optional output directory for the .skill file (defaults to current directory)
Returns:
Path to the created .skill file, or None if error
"""
skill_path = Path(skill_path).resolve()
# Validate skill folder exists
if not skill_path.exists():
print(f"❌ Error: Skill folder not found: {skill_path}")
return None
if not skill_path.is_dir():
print(f"❌ Error: Path is not a directory: {skill_path}")
return None
# Validate SKILL.md exists
skill_md = skill_path / "SKILL.md"
if not skill_md.exists():
print(f"❌ Error: SKILL.md not found in {skill_path}")
return None
# Run validation before packaging
print("🔍 Validating skill...")
va
Showing preview only (769K chars total). Download the full file or copy to clipboard to get everything.
gitextract_072gxaw6/ ├── .agents/ │ └── skills/ │ └── skill-creator/ │ ├── LICENSE.txt │ ├── SKILL.md │ ├── agents/ │ │ ├── analyzer.md │ │ ├── comparator.md │ │ └── grader.md │ ├── assets/ │ │ └── eval_review.html │ ├── eval-viewer/ │ │ ├── generate_review.py │ │ └── viewer.html │ ├── references/ │ │ └── schemas.md │ └── scripts/ │ ├── __init__.py │ ├── aggregate_benchmark.py │ ├── generate_report.py │ ├── improve_description.py │ ├── package_skill.py │ ├── quick_validate.py │ ├── run_eval.py │ ├── run_loop.py │ └── utils.py ├── .browserslistrc ├── .claude/ │ ├── agents/ │ │ └── design-system-researcher.md │ ├── settings.json │ └── skills/ │ ├── components.best-practices/ │ │ └── SKILL.md │ ├── components.styles/ │ │ ├── README.md │ │ └── SKILL.md │ ├── components.write-docs/ │ │ ├── README.md │ │ └── SKILL.md │ ├── deprecate-cds-api/ │ │ └── SKILL.md │ ├── dev.cds-mobile/ │ │ └── SKILL.md │ ├── dev.cds-web/ │ │ └── SKILL.md │ ├── eslint-plugin-custom-rule/ │ │ └── SKILL.md │ ├── feature-planner/ │ │ ├── SKILL.md │ │ └── evals/ │ │ └── evals.json │ ├── figma.audit-connect/ │ │ └── SKILL.md │ ├── figma.connect-best-practices/ │ │ └── SKILL.md │ ├── figma.create-connect/ │ │ └── SKILL.md │ ├── git.detect-breaking-changes/ │ │ └── SKILL.md │ ├── git.repo-manager/ │ │ └── SKILL.md │ ├── ktlo/ │ │ └── SKILL.md │ ├── research.component-libs/ │ │ └── SKILL.md │ └── research.deprecation-usage/ │ └── SKILL.md ├── .codeflow.yml ├── .cursor/ │ ├── mcp.json │ ├── rules/ │ │ └── nx-rules.mdc │ └── worktrees.json ├── .dockerignore ├── .dontdockerignore ├── .github/ │ ├── CODEOWNERS │ ├── PULL_REQUEST_TEMPLATE.md │ ├── actions/ │ │ ├── get-merge-base/ │ │ │ └── action.yml │ │ └── setup/ │ │ └── action.yml │ ├── labeler.yml │ └── workflows/ │ ├── ci.yml │ ├── debug-workflow.yml │ ├── figma.yml │ ├── guard-debug-workflow.yml │ ├── illustrations-icons-checklist.yml │ ├── pr.yml │ ├── publish.yml │ ├── slack-pull-request.yml │ ├── visreg-mobile.yml │ └── visreg-web.yml ├── .gitignore ├── .lasthash ├── .mcp.json ├── .nvmrc ├── .nxignore ├── .percy.js ├── .prettierignore ├── .stylelintrc.cjs ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── .watchmanconfig ├── .yarn/ │ ├── patches/ │ │ ├── @expo-cli-npm-0.18.29-f58906fdfb.patch │ │ ├── @testing-library-user-event-npm-14.0.4-109d618170 │ │ ├── depcheck-npm-1.4.7-d4cc813cc3.patch │ │ ├── expo-dev-launcher-npm-4.0.27-c2ab5dd4a5.patch │ │ ├── expo-splash-screen-npm-0.27.5-f91e0b41df.patch │ │ ├── framer-motion-npm-10.18.0-ae9ea02138 │ │ ├── glob-npm-7.1.6-minimatch10-symbol.patch │ │ ├── react-native-gesture-handler-npm-2.16.2-c16529326b.patch │ │ ├── react-native-navigation-bar-color-npm-2.0.2-9a2ea3aaf6.patch │ │ └── react-native-npm-0.74.5-db5164f47b.patch │ └── releases/ │ └── yarn-4.9.2.cjs ├── .yarnrc.yml ├── AGENTS.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── apps/ │ ├── docs/ │ │ ├── .stylelintrc.json │ │ ├── ai-doc-generator/ │ │ │ ├── concatenate-docs.cjs │ │ │ ├── generate-site-directory.cjs │ │ │ ├── generateDoc.cjs │ │ │ ├── generateRoutesContent.cjs │ │ │ ├── generateRoutesDoc.cjs │ │ │ ├── generator.cjs │ │ │ ├── resolveDoc.cjs │ │ │ └── validate.cjs │ │ ├── babel.config.cjs │ │ ├── blog/ │ │ │ ├── authors.yml │ │ │ ├── introducing-cds.mdx │ │ │ └── tags.yml │ │ ├── development.Dockerfile │ │ ├── docgen.config.js │ │ ├── docs/ │ │ │ ├── components/ │ │ │ │ ├── animation/ │ │ │ │ │ ├── Lottie/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ └── LottieStatusAnimation/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── cards/ │ │ │ │ │ ├── ContainedAssetCard/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ContentCard/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ContentCardBody/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ContentCardFooter/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ContentCardHeader/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── DataCard/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── FloatingAssetCard/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── MediaCard/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── MessagingCard/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── NudgeCard/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ └── UpsellCard/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── charts/ │ │ │ │ │ ├── AreaChart/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── BarChart/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── CartesianChart/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Legend/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── LineChart/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── PercentageBarChart/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── PeriodSelector/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Point/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ReferenceLine/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Scrubber/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Sparkline/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SparklineGradient/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SparklineInteractive/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SparklineInteractiveHeader/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── XAxis/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ └── YAxis/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── data-display/ │ │ │ │ │ ├── ContentCell/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ListCell/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Table/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TableBody/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TableCaption/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TableCell/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TableCellFallback/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TableFooter/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TableHeader/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ └── TableRow/ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── feedback/ │ │ │ │ │ ├── Banner/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Fallback/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ProgressBar/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ProgressBarWithFixedLabels/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ProgressBarWithFloatLabel/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ProgressCircle/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ └── Spinner/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── inputs/ │ │ │ │ │ ├── AvatarButton/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Button/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Checkbox/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── CheckboxCell/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── CheckboxGroup/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Chip/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Combobox/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ControlGroup/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── IconButton/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── InputChip/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Interactable/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── MediaChip/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Numpad/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── mobileMetadata.json │ │ │ │ │ ├── Pressable/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Radio/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── RadioCell/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── RadioGroup/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SearchInput/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SegmentedControl/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Select/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SelectAlpha/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SelectChip/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SelectChipAlpha/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SelectOption/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SlideButton/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── mobileMetadata.json │ │ │ │ │ ├── Switch/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TextInput/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ └── TileButton/ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── layout/ │ │ │ │ │ ├── Accordion/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── AccordionItem/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Box/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ButtonGroup/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Carousel/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Collapsible/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Divider/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Dropdown/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Grid/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── GridColumn/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── HStack/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── MultiContentModule/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Spacer/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ └── VStack/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── media/ │ │ │ │ │ ├── Avatar/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── CellMedia/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── HeroSquare/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Icon/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── LogoMark/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── LogoWordMark/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Pictogram/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── RemoteImage/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── RemoteImageGroup/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SpotIcon/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SpotRectangle/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SpotSquare/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SubBrandLogoMark/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ └── SubBrandLogoWordMark/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── navigation/ │ │ │ │ │ ├── BrowserBar/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── mobileMetadata.json │ │ │ │ │ ├── Coachmark/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── NavigationBar/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── NavigationTitle/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── NavigationTitleSelect/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── PageFooter/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── PageHeader/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Pagination/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SectionHeader/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SegmentedTabs/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Sidebar/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SidebarItem/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── SidebarMoreMenu/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Stepper/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TabIndicator/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TabLabel/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TabNavigation/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── a11y.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TabbedChips/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TabbedChipsAlpha/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Tabs/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── TopNavBar/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── mobileMetadata.json │ │ │ │ │ └── Tour/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── numbers/ │ │ │ │ │ └── RollingNumber/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── other/ │ │ │ │ │ ├── Calendar/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── DateInput/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── DatePicker/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── DotCount/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── DotStatusColor/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── DotSymbol/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── MediaQueryProvider/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ └── ThemeProvider/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── overlay/ │ │ │ │ │ ├── Alert/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── FocusTrap/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── FullscreenAlert/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── FullscreenModal/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── FullscreenModalLayout/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Modal/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ModalBody/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ModalFooter/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── ModalHeader/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Overlay/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── PopoverPanel/ │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── PortalProvider/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Toast/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ ├── Tooltip/ │ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ │ ├── index.mdx │ │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ │ └── webMetadata.json │ │ │ │ │ └── Tray/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _mobileStyles.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── _webStyles.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ └── typography/ │ │ │ │ ├── Link/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── Tag/ │ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ │ ├── _webExamples.mdx │ │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ └── Text/ │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ ├── _mobilePropsTable.mdx │ │ │ │ ├── _webExamples.mdx │ │ │ │ ├── _webPropsTable.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── mobileMetadata.json │ │ │ │ └── webMetadata.json │ │ │ ├── extras/ │ │ │ │ └── color-pairing-tool.mdx │ │ │ ├── getting-started/ │ │ │ │ ├── ai-overview.mdx │ │ │ │ ├── colors.mdx │ │ │ │ ├── installation/ │ │ │ │ │ ├── _mobileContent.mdx │ │ │ │ │ ├── _webContent.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── introduction.mdx │ │ │ │ ├── playground.mdx │ │ │ │ ├── styling/ │ │ │ │ │ ├── _mobileContent.mdx │ │ │ │ │ ├── _webContent.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ ├── templates/ │ │ │ │ │ ├── _mobileContent.mdx │ │ │ │ │ ├── _webContent.mdx │ │ │ │ │ ├── index.mdx │ │ │ │ │ ├── mobileMetadata.json │ │ │ │ │ └── webMetadata.json │ │ │ │ └── theming/ │ │ │ │ ├── _mobileContent.mdx │ │ │ │ ├── _webContent.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── mobileMetadata.json │ │ │ │ └── webMetadata.json │ │ │ ├── guides/ │ │ │ │ ├── _v9MobileInstallCommands.mdx │ │ │ │ ├── _v9MobilePeerDependencies.mdx │ │ │ │ ├── _v9WebInstallCommands.mdx │ │ │ │ ├── _v9WebPeerDependencies.mdx │ │ │ │ ├── v8-migration-guide.mdx │ │ │ │ └── v9-migration-guide.mdx │ │ │ ├── home/ │ │ │ │ ├── Home.tsx │ │ │ │ └── home.mdx │ │ │ └── hooks/ │ │ │ ├── useBreakpoints/ │ │ │ │ ├── _webApi.mdx │ │ │ │ ├── _webExamples.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── webMetadata.json │ │ │ ├── useDimensions/ │ │ │ │ ├── _mobileApi.mdx │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ ├── _webApi.mdx │ │ │ │ ├── _webExamples.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── mobileMetadata.json │ │ │ │ └── webMetadata.json │ │ │ ├── useEventHandler/ │ │ │ │ ├── _api.mdx │ │ │ │ ├── _examples.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── metadata.json │ │ │ ├── useHasMounted/ │ │ │ │ ├── _webApi.mdx │ │ │ │ ├── _webExamples.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── webMetadata.json │ │ │ ├── useIsoEffect/ │ │ │ │ ├── _webApi.mdx │ │ │ │ ├── _webExamples.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── webMetadata.json │ │ │ ├── useMediaQuery/ │ │ │ │ ├── _webApi.mdx │ │ │ │ ├── _webExamples.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── webMetadata.json │ │ │ ├── useMergeRefs/ │ │ │ │ ├── _api.mdx │ │ │ │ ├── _examples.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── metadata.json │ │ │ ├── useOverlayContentContext/ │ │ │ │ ├── _mobileApi.mdx │ │ │ │ ├── _mobileExamples.mdx │ │ │ │ ├── _webApi.mdx │ │ │ │ ├── _webExamples.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── mobileMetadata.json │ │ │ │ └── webMetadata.json │ │ │ ├── usePreviousValue/ │ │ │ │ ├── _api.mdx │ │ │ │ ├── _examples.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── metadata.json │ │ │ ├── useRefMap/ │ │ │ │ ├── _api.mdx │ │ │ │ ├── _examples.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── metadata.json │ │ │ ├── useScrollBlocker/ │ │ │ │ ├── _webApi.mdx │ │ │ │ ├── _webExamples.mdx │ │ │ │ ├── index.mdx │ │ │ │ └── webMetadata.json │ │ │ └── useTheme/ │ │ │ ├── _mobileApi.mdx │ │ │ ├── _mobileExamples.mdx │ │ │ ├── _webApi.mdx │ │ │ ├── _webExamples.mdx │ │ │ ├── index.mdx │ │ │ ├── mobileMetadata.json │ │ │ └── webMetadata.json │ │ ├── docusaurus.config.ts │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── production.Dockerfile │ │ ├── project.json │ │ ├── sidebars.ts │ │ ├── src/ │ │ │ ├── components/ │ │ │ │ ├── ButtonLink/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── FeedbackWidget/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── FooterLink/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── home/ │ │ │ │ │ ├── AnimatedHero/ │ │ │ │ │ │ ├── HeroCell.tsx │ │ │ │ │ │ ├── HeroGrid.tsx │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ ├── ComponentCard/ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ └── QuickStartCampaignCard/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── kbar/ │ │ │ │ │ ├── KBarAnimator.tsx │ │ │ │ │ ├── KBarModal/ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ ├── KBarProvider.tsx │ │ │ │ │ ├── KBarResultItem.tsx │ │ │ │ │ ├── KBarResults.tsx │ │ │ │ │ ├── useKBarCustomActionsToActions.ts │ │ │ │ │ ├── useKBarPluginData.ts │ │ │ │ │ └── useKBarThemeActions.ts │ │ │ │ ├── nav/ │ │ │ │ │ └── NavbarThemeToggle/ │ │ │ │ │ └── index.tsx │ │ │ │ └── page/ │ │ │ │ ├── ColorPairingTool/ │ │ │ │ │ ├── ColorPicker.module.css │ │ │ │ │ ├── ColorPicker.tsx │ │ │ │ │ ├── ComponentPlayground.tsx │ │ │ │ │ ├── ContrastPanel.tsx │ │ │ │ │ ├── HotspotImagePreview.tsx │ │ │ │ │ ├── PlaygroundContent.tsx │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ResultCard.module.css │ │ │ │ │ ├── ResultCard.tsx │ │ │ │ │ ├── UploadZone.module.css │ │ │ │ │ ├── UploadZone.tsx │ │ │ │ │ ├── WcagBadge.tsx │ │ │ │ │ ├── colorUtils.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── types.ts │ │ │ │ ├── ColorSheet/ │ │ │ │ │ ├── ColorSchemeProvider.tsx │ │ │ │ │ ├── ColorSwatchGrid.tsx │ │ │ │ │ └── SpectrumGrid.tsx │ │ │ │ ├── ComponentBanner/ │ │ │ │ │ ├── BoxBanner.tsx │ │ │ │ │ ├── ButtonBanner.tsx │ │ │ │ │ ├── ButtonGroupBanner.tsx │ │ │ │ │ ├── DefaultBanner.tsx │ │ │ │ │ ├── DividerBanner.tsx │ │ │ │ │ ├── DropdownBanner.tsx │ │ │ │ │ ├── FallbackBanner.tsx │ │ │ │ │ ├── GettingStartedBanner.tsx │ │ │ │ │ ├── HStackBanner.tsx │ │ │ │ │ ├── HeroSquareBanner.tsx │ │ │ │ │ ├── HooksBanner.tsx │ │ │ │ │ ├── IconBanner.tsx │ │ │ │ │ ├── IconButtonBanner.tsx │ │ │ │ │ ├── LinkBanner.tsx │ │ │ │ │ ├── ListCellBanner.tsx │ │ │ │ │ ├── ModalBanner.tsx │ │ │ │ │ ├── PictogramBanner.tsx │ │ │ │ │ ├── PlaygroundBanner.tsx │ │ │ │ │ ├── PressableBanner.tsx │ │ │ │ │ ├── RemoteImageBanner.tsx │ │ │ │ │ ├── SelectBanner.tsx │ │ │ │ │ ├── SlideButtonBanner.tsx │ │ │ │ │ ├── SpacerBanner.tsx │ │ │ │ │ ├── SpinnerBanner.tsx │ │ │ │ │ ├── SpotRectangleBanner.tsx │ │ │ │ │ ├── SwitchBanner.tsx │ │ │ │ │ ├── TextBanner.tsx │ │ │ │ │ ├── TooltipBanner.tsx │ │ │ │ │ └── VStackBanner.tsx │ │ │ │ ├── ComponentHeader/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── ComponentPropsTable/ │ │ │ │ │ ├── ModalLink.tsx │ │ │ │ │ ├── ParentTypesList.tsx │ │ │ │ │ ├── PropsTable.tsx │ │ │ │ │ ├── PropsTableRow.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── styles.module.css │ │ │ │ │ └── types.ts │ │ │ │ ├── ComponentStylesTable/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── ComponentTabsContainer/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── ContentHeader/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── ContentPageContainer/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── DeprecationTable/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── FileDropZone/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── useFileUpload.ts │ │ │ │ ├── HookTabsContainer/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── IconSheet/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── IllustrationSheet/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── JSONCodeBlock/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── LinkChip/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── LottieSheet/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── MDXArticle/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.module.css │ │ │ │ ├── MDXSection/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── Metadata/ │ │ │ │ │ ├── MetadataDependencies.tsx │ │ │ │ │ ├── MetadataLinks.tsx │ │ │ │ │ ├── MetadataRelatedComponents.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── PlatformSwitcher/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── ShareablePlayground/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── SheetTabs/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── StylesExplorer/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── TemplateCard/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ └── VersionLabel/ │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── constants/ │ │ │ │ └── index.ts │ │ │ ├── css/ │ │ │ │ └── custom.css │ │ │ ├── data/ │ │ │ │ └── v9Deprecations.tsx │ │ │ ├── hooks/ │ │ │ │ ├── useCDSVersions.ts │ │ │ │ └── useInternalCDSTheme.ts │ │ │ ├── theme/ │ │ │ │ ├── Admonition/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── AnnouncementBar/ │ │ │ │ │ ├── CloseButton/ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Content/ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── CodeBlock/ │ │ │ │ │ ├── Content/ │ │ │ │ │ │ ├── Element.tsx │ │ │ │ │ │ ├── String.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ └── CopyButton/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── DocItem/ │ │ │ │ │ └── Layout/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── DocRoot/ │ │ │ │ │ └── Layout/ │ │ │ │ │ ├── Main/ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Sidebar/ │ │ │ │ │ │ ├── ExpandButton/ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── DocSidebar/ │ │ │ │ │ ├── Desktop/ │ │ │ │ │ │ ├── CollapseButton/ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ │ ├── Content/ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ ├── Mobile/ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── DocSidebarItem/ │ │ │ │ │ ├── Category/ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Html/ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ ├── Link/ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── Footer/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── Heading/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── Layout/ │ │ │ │ │ ├── Provider/ │ │ │ │ │ │ ├── UnifiedThemeContext.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── Logo/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── Navbar/ │ │ │ │ │ ├── ColorModeToggle/ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Content/ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Layout/ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.css │ │ │ │ │ └── MobileSidebar/ │ │ │ │ │ ├── Header/ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Layout/ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PrimaryMenu/ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SecondaryMenu/ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Toggle/ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── NavbarItem/ │ │ │ │ │ └── NavbarNavLink/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── Playground/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── sandbox/ │ │ │ │ │ │ ├── ensureDefaultExport.ts │ │ │ │ │ │ ├── generateImports.ts │ │ │ │ │ │ ├── openInStackBlitz.ts │ │ │ │ │ │ └── templateFiles.ts │ │ │ │ │ └── styles.module.css │ │ │ │ ├── ReactLiveScope/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── Root.tsx │ │ │ │ ├── SearchBar/ │ │ │ │ │ └── index.tsx │ │ │ │ ├── TOC/ │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ └── TOCItems/ │ │ │ │ ├── Tree.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── useTOCHightlight.ts │ │ │ └── utils/ │ │ │ ├── PlatformContext.tsx │ │ │ ├── __tests__/ │ │ │ │ ├── isTypeAlias.test.ts │ │ │ │ └── shouldAddToParentTypes.test.ts │ │ │ ├── decreasePriorityIfCategory.ts │ │ │ ├── isTypeAlias.js │ │ │ ├── onProcessDocgen.js │ │ │ ├── shouldAddToParentTypes.js │ │ │ ├── sortByAlphabet.ts │ │ │ ├── toc/ │ │ │ │ ├── PropsTOCManager.tsx │ │ │ │ ├── TOCManager.tsx │ │ │ │ └── createTOCManager.tsx │ │ │ ├── useAnalytics.ts │ │ │ ├── useIsSticky.ts │ │ │ ├── useThrottledValue.ts │ │ │ └── useWindowSizeWithBreakpointOverride.ts │ │ ├── static/ │ │ │ ├── Inter_Medium_Regular.json │ │ │ ├── hdr/ │ │ │ │ └── wasteland_clouds_puresky_1k.hdr │ │ │ └── robots.txt │ │ ├── tsconfig.json │ │ ├── types.d.ts │ │ └── utils/ │ │ ├── __tests__/ │ │ │ └── generateComponentPeerDeps.test.ts │ │ └── generateComponentPeerDeps.ts │ ├── mobile-app/ │ │ ├── README.md │ │ ├── app.config.ts │ │ ├── babel.config.js │ │ ├── credentials/ │ │ │ └── android-release-hermes.keystore │ │ ├── credentials.json │ │ ├── detox.config.js │ │ ├── docs/ │ │ │ ├── building-mobile.md │ │ │ ├── help.md │ │ │ ├── prebuilds.md │ │ │ ├── upgrade-rn.md │ │ │ └── upgrading-mobile-dep.md │ │ ├── env.d.ts │ │ ├── index.js │ │ ├── jest.config.js │ │ ├── metro.config.js │ │ ├── package.json │ │ ├── project.json │ │ ├── react-native.config.js │ │ ├── scripts/ │ │ │ ├── build.mjs │ │ │ ├── detox.mjs │ │ │ ├── launch.mjs │ │ │ ├── patch-bundle.mjs │ │ │ ├── start.mjs │ │ │ ├── utils/ │ │ │ │ ├── apktool.jar │ │ │ │ ├── buildAndroid.mjs │ │ │ │ ├── buildIOS.mjs │ │ │ │ ├── env.mjs │ │ │ │ ├── getAffectedRoutes.mjs │ │ │ │ ├── getBuildInfo.mjs │ │ │ │ ├── routes.mjs │ │ │ │ ├── setEnvVars.mjs │ │ │ │ └── shouldRunVisreg.mjs │ │ │ └── validate.mjs │ │ ├── src/ │ │ │ ├── App.tsx │ │ │ ├── hooks/ │ │ │ │ └── useFonts.ts │ │ │ ├── index.ts │ │ │ ├── polyfills/ │ │ │ │ └── intl.ts │ │ │ └── routes.ts │ │ └── tsconfig.json │ ├── storybook/ │ │ ├── .storybook/ │ │ │ ├── StoryContainer.tsx │ │ │ ├── main.ts │ │ │ ├── manager.tsx │ │ │ ├── preview-head.html │ │ │ ├── preview.ts │ │ │ ├── useDarkMode.ts │ │ │ └── vitest.setup.ts │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package.json │ │ ├── production.Dockerfile │ │ ├── project.json │ │ ├── scripts/ │ │ │ ├── analyze-bundle.ts │ │ │ ├── profile-export.js │ │ │ ├── profile-exports.js │ │ │ ├── run-a11y-tests.ts │ │ │ ├── run-percy.ts │ │ │ └── shouldRunVisreg.mjs │ │ ├── tsconfig.json │ │ ├── vite-env.d.ts │ │ ├── vitest.config.ts │ │ └── vitest.shims.d.ts │ └── vite-app/ │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── project.json │ ├── src/ │ │ ├── App.tsx │ │ ├── components/ │ │ │ ├── AssetList/ │ │ │ │ ├── data.ts │ │ │ │ └── index.tsx │ │ │ ├── CDSLogo/ │ │ │ │ └── index.tsx │ │ │ ├── CardList/ │ │ │ │ ├── DataCardWithCircle.tsx │ │ │ │ ├── ETHStakingCard.tsx │ │ │ │ ├── RecurringBuyCard.tsx │ │ │ │ └── index.tsx │ │ │ └── Navbar/ │ │ │ ├── MoreMenu.tsx │ │ │ ├── UserMenu.tsx │ │ │ └── index.tsx │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── eslint.config.mjs ├── figma.config.mobile.json ├── figma.config.web.json ├── jest.preset-mobile.js ├── jest.preset.js ├── libs/ │ ├── codegen/ │ │ ├── README.md │ │ ├── babel.config.cjs │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── patches/ │ │ │ └── hygen.patch │ │ ├── project.json │ │ ├── src/ │ │ │ ├── bin.ts │ │ │ ├── codegen.ts │ │ │ ├── config.ts │ │ │ ├── configs/ │ │ │ │ ├── prettierConfig.json │ │ │ │ └── svgo.config.js │ │ │ ├── playground/ │ │ │ │ └── prepareRoutes.ts │ │ │ ├── release/ │ │ │ │ └── updatePkgsForGenericBump.mjs │ │ │ ├── templates/ │ │ │ │ ├── mobileRoutes.ejs │ │ │ │ └── partials/ │ │ │ │ ├── objectMap.ejs.t │ │ │ │ └── typescript.ejs.t │ │ │ └── utils/ │ │ │ ├── buildTemplates.ts │ │ │ ├── formatTemplateType.ts │ │ │ ├── getHeaderCommentForFileType.ts │ │ │ ├── getPrettierParser.ts │ │ │ ├── getSourcePath.ts │ │ │ ├── logError.ts │ │ │ ├── sortAlphabetically.ts │ │ │ ├── writeFile.ts │ │ │ └── writePrettyFile.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── docusaurus-plugin-docgen/ │ │ ├── README.md │ │ ├── babel.config.cjs │ │ ├── jest.config.mjs │ │ ├── module-declarations.d.ts │ │ ├── package.json │ │ ├── project.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ ├── plugin.ts │ │ │ ├── scripts/ │ │ │ │ ├── debug.ts │ │ │ │ ├── docgenParser.test.ts │ │ │ │ ├── docgenParser.ts │ │ │ │ ├── docgenRunner.test.ts │ │ │ │ ├── docgenRunner.ts │ │ │ │ ├── docgenScaffolder.ts │ │ │ │ ├── docgenWriter.ts │ │ │ │ └── prettierConfig.json │ │ │ ├── templates/ │ │ │ │ ├── doc/ │ │ │ │ │ ├── component.ejs.t │ │ │ │ │ ├── implementation.ejs.t │ │ │ │ │ └── metadata.ejs.t │ │ │ │ ├── doc-item/ │ │ │ │ │ ├── api.ejs.t │ │ │ │ │ ├── changelog-placeholder.ejs.t │ │ │ │ │ ├── changelog.ejs.t │ │ │ │ │ ├── example.ejs.t │ │ │ │ │ └── import-block.ejs.t │ │ │ │ └── shared/ │ │ │ │ ├── objectMap.ejs.t │ │ │ │ ├── sharedParentTypes.ejs.t │ │ │ │ └── sharedTypeAliases.ejs.t │ │ │ ├── types.ts │ │ │ └── utils/ │ │ │ ├── docgenCache.test.ts │ │ │ ├── docgenCache.ts │ │ │ ├── getGitInfoForFile.ts │ │ │ ├── getMinutesBetweenDates.ts │ │ │ ├── getPackageJsonFromTsconfig.ts │ │ │ └── logger.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── docusaurus-plugin-kbar/ │ │ ├── README.md │ │ ├── babel.config.cjs │ │ ├── package.json │ │ ├── project.json │ │ ├── src/ │ │ │ ├── index.ts │ │ │ ├── plugin.ts │ │ │ ├── types.ts │ │ │ └── utils/ │ │ │ ├── getKBarActions.ts │ │ │ └── logger.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── docusaurus-plugin-llm-dev-server/ │ │ ├── README.md │ │ ├── babel.config.cjs │ │ ├── package.json │ │ ├── project.json │ │ ├── src/ │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── eslint-plugin-internal/ │ │ ├── README.md │ │ ├── jest.config.mjs │ │ ├── package.json │ │ ├── project.json │ │ └── src/ │ │ ├── deprecated-jsdoc-has-removal-version/ │ │ │ ├── index.mjs │ │ │ └── index.test.mjs │ │ ├── example-screen-contains-example/ │ │ │ ├── index.mjs │ │ │ └── index.test.mjs │ │ ├── example-screen-default/ │ │ │ ├── index.mjs │ │ │ └── index.test.mjs │ │ ├── figma-connect-imports-package-match/ │ │ │ ├── index.mjs │ │ │ └── index.test.mjs │ │ ├── figma-connect-imports-required/ │ │ │ ├── index.mjs │ │ │ └── index.test.mjs │ │ ├── index.mjs │ │ ├── no-deprecated-jsdoc/ │ │ │ ├── index.mjs │ │ │ └── index.test.mjs │ │ ├── no-object-rest-spread-in-worklet/ │ │ │ ├── index.mjs │ │ │ └── index.test.mjs │ │ ├── no-typescript-in-jsx-codeblock/ │ │ │ ├── index.mjs │ │ │ └── index.test.mjs │ │ └── safely-spread-props/ │ │ ├── README.md │ │ ├── index.mjs │ │ └── index.test.mjs │ ├── static-assets/ │ │ ├── README.md │ │ ├── package.json │ │ ├── shard-assets.sh │ │ ├── static-assets.Dockerfile │ │ ├── static-assets.Dockerfile.dockerignore │ │ └── static-assets.docker-compose.yml │ └── web-utils/ │ ├── README │ ├── babel.config.cjs │ ├── package.json │ ├── project.json │ ├── src/ │ │ ├── babel/ │ │ │ ├── linariaCssExtractPlugin.ts │ │ │ ├── linariaPreset.ts │ │ │ └── types.d.ts │ │ ├── index.ts │ │ └── jest/ │ │ ├── index.ts │ │ └── renderA11y.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── nx.json ├── package.json ├── packages/ │ ├── common/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── babel.config.cjs │ │ ├── deploy.yml │ │ ├── docker-compose.yml │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── project.json │ │ ├── publish.Dockerfile │ │ ├── src/ │ │ │ ├── accordion/ │ │ │ │ ├── AccordionProvider.tsx │ │ │ │ └── __tests__/ │ │ │ │ └── AccordionProvider.test.tsx │ │ │ ├── animation/ │ │ │ │ ├── accordion.ts │ │ │ │ ├── border.ts │ │ │ │ ├── carousel.ts │ │ │ │ ├── collapsible.ts │ │ │ │ ├── dot.ts │ │ │ │ ├── drawer.ts │ │ │ │ ├── dropdown.ts │ │ │ │ ├── fullscreenModal.ts │ │ │ │ ├── likeButton.ts │ │ │ │ ├── menu.ts │ │ │ │ ├── modal.ts │ │ │ │ ├── overlay.ts │ │ │ │ ├── paddle.ts │ │ │ │ ├── progress.ts │ │ │ │ ├── rotate.ts │ │ │ │ ├── select.ts │ │ │ │ ├── sparkline.ts │ │ │ │ ├── tabs.ts │ │ │ │ ├── toast.ts │ │ │ │ └── tooltip.ts │ │ │ ├── cards/ │ │ │ │ └── getCardBodySpacingProps.ts │ │ │ ├── carousel/ │ │ │ │ ├── __tests__/ │ │ │ │ │ └── useCarouselAutoplay.test.ts │ │ │ │ ├── index.ts │ │ │ │ └── useCarouselAutoplay.ts │ │ │ ├── chips/ │ │ │ │ └── getMediaChipSpacingProps.ts │ │ │ ├── color/ │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── blendColors.test.ts │ │ │ │ │ ├── isLightOrDarkColor.test.ts │ │ │ │ │ └── overrideAlpha.test.ts │ │ │ │ ├── blendColors.ts │ │ │ │ ├── colorToHex.ts │ │ │ │ ├── darkenColor.ts │ │ │ │ ├── getAccessibleForegroundGradient.ts │ │ │ │ ├── getBlendedColor.ts │ │ │ │ ├── getContrastRatio.ts │ │ │ │ ├── getLuminance.ts │ │ │ │ ├── isAccessibleColor.ts │ │ │ │ ├── isLightOrDarkColor.ts │ │ │ │ └── overrideAlpha.ts │ │ │ ├── core/ │ │ │ │ └── theme.ts │ │ │ ├── dates/ │ │ │ │ ├── DateInputValidationError.ts │ │ │ │ ├── IntlDateFormat.ts │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── IntlDateFormat.test.ts │ │ │ │ │ └── useDateInput.test.ts │ │ │ │ ├── generateCalendarMonth.ts │ │ │ │ ├── getISOStringLocal.ts │ │ │ │ ├── getMidnightDate.ts │ │ │ │ ├── getTimesFromDatesAndRanges.ts │ │ │ │ ├── useDateInput.ts │ │ │ │ └── useDateInputValidation.ts │ │ │ ├── hooks/ │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── useFallbackShape.test.ts │ │ │ │ │ ├── useMergeRefs.test.ts │ │ │ │ │ ├── usePrefixedId.test.ts │ │ │ │ │ ├── usePreviousValue.test.ts │ │ │ │ │ ├── useRefMap.test.ts │ │ │ │ │ ├── useSort.test.ts │ │ │ │ │ └── useTimer.test.ts │ │ │ │ ├── useEventHandler.ts │ │ │ │ ├── useFallbackShape.ts │ │ │ │ ├── useGroupToggler.ts │ │ │ │ ├── useHasMounted.ts │ │ │ │ ├── useIndexCounter.ts │ │ │ │ ├── useInputVariant.ts │ │ │ │ ├── useLogo.ts │ │ │ │ ├── useMergeRefs.ts │ │ │ │ ├── usePrefixedId.ts │ │ │ │ ├── usePreviousValue.ts │ │ │ │ ├── usePreviousValues.ts │ │ │ │ ├── useRefMap.ts │ │ │ │ ├── useSort.ts │ │ │ │ ├── useSubBrandLogo.ts │ │ │ │ ├── useTimer.ts │ │ │ │ ├── useToggler.ts │ │ │ │ └── useValueChanges.ts │ │ │ ├── index.ts │ │ │ ├── internal/ │ │ │ │ ├── data/ │ │ │ │ │ ├── accounts.ts │ │ │ │ │ ├── announcementCards.ts │ │ │ │ │ ├── asset.ts │ │ │ │ │ ├── assets.ts │ │ │ │ │ ├── avatars.ts │ │ │ │ │ ├── candles.ts │ │ │ │ │ ├── dataCards.ts │ │ │ │ │ ├── featureEntryCards.ts │ │ │ │ │ ├── feedImages.ts │ │ │ │ │ ├── iconData.ts │ │ │ │ │ ├── loremIpsum.ts │ │ │ │ │ ├── navigation.ts │ │ │ │ │ ├── prices.ts │ │ │ │ │ ├── product.ts │ │ │ │ │ ├── tabs.ts │ │ │ │ │ └── users.ts │ │ │ │ ├── utils/ │ │ │ │ │ └── storyBuilder.tsx │ │ │ │ └── visualizations/ │ │ │ │ └── SparklineInteractiveData.tsx │ │ │ ├── jest/ │ │ │ │ └── timeTravel.ts │ │ │ ├── lottie/ │ │ │ │ ├── lottieUtils.test.ts │ │ │ │ ├── lottieUtils.ts │ │ │ │ ├── statusToAccessibilityLabel.ts │ │ │ │ └── useStatusAnimationPoller.ts │ │ │ ├── media/ │ │ │ │ ├── getAvatarFallbackColor.ts │ │ │ │ └── remoteImageFallbackSrc.ts │ │ │ ├── motion/ │ │ │ │ ├── animatedCaret.ts │ │ │ │ ├── checkbox.ts │ │ │ │ ├── dot.ts │ │ │ │ ├── hint.ts │ │ │ │ ├── switch.ts │ │ │ │ ├── tokens.ts │ │ │ │ └── utils.ts │ │ │ ├── numbers/ │ │ │ │ ├── IntlNumberFormat.ts │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── formatToParts.test.ts │ │ │ │ │ └── subscript.test.ts │ │ │ │ ├── subscript.ts │ │ │ │ └── useValueChangeDirection.ts │ │ │ ├── overlays/ │ │ │ │ ├── ModalContext.ts │ │ │ │ ├── OverlayContentContext.tsx │ │ │ │ ├── PortalContext.tsx │ │ │ │ ├── ToastProvider.tsx │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── useOverlay.test.tsx │ │ │ │ │ └── useToastQueue.test.tsx │ │ │ │ ├── useAlert.ts │ │ │ │ ├── useModal.ts │ │ │ │ ├── useOverlay.ts │ │ │ │ ├── usePortal.ts │ │ │ │ ├── usePortalState.ts │ │ │ │ └── useToastQueue.ts │ │ │ ├── select/ │ │ │ │ ├── useMultiSelect.test.ts │ │ │ │ └── useMultiSelect.ts │ │ │ ├── stepper/ │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── useStepper.test.ts │ │ │ │ │ └── utils.test.ts │ │ │ │ ├── useStepper.ts │ │ │ │ └── utils.ts │ │ │ ├── system/ │ │ │ │ ├── EventHandlerProvider.tsx │ │ │ │ ├── LocaleProvider.tsx │ │ │ │ ├── RefMapContext.tsx │ │ │ │ └── __tests__/ │ │ │ │ └── EventHandlerProvider.test.tsx │ │ │ ├── tabs/ │ │ │ │ ├── TabsContext.ts │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── TabsContext.test.tsx │ │ │ │ │ └── useTabs.test.tsx │ │ │ │ └── useTabs.ts │ │ │ ├── tokens/ │ │ │ │ ├── accordion.ts │ │ │ │ ├── appSwitcher.ts │ │ │ │ ├── avatar.ts │ │ │ │ ├── banner.ts │ │ │ │ ├── borderRadius.ts │ │ │ │ ├── button.ts │ │ │ │ ├── card.ts │ │ │ │ ├── cell.ts │ │ │ │ ├── chip.ts │ │ │ │ ├── dot.ts │ │ │ │ ├── drawer.ts │ │ │ │ ├── illustrations.ts │ │ │ │ ├── input.ts │ │ │ │ ├── interactable.ts │ │ │ │ ├── interactableHeight.ts │ │ │ │ ├── menu.ts │ │ │ │ ├── multiContentModule.ts │ │ │ │ ├── navigation.ts │ │ │ │ ├── overlays.ts │ │ │ │ ├── page.ts │ │ │ │ ├── select.ts │ │ │ │ ├── sidebar.ts │ │ │ │ ├── sizing.ts │ │ │ │ ├── sparkline.ts │ │ │ │ ├── tags.ts │ │ │ │ ├── tile.ts │ │ │ │ ├── toast.ts │ │ │ │ ├── tooltip.ts │ │ │ │ └── zIndex.ts │ │ │ ├── tour/ │ │ │ │ ├── TourContext.ts │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── TourContext.test.tsx │ │ │ │ │ └── useTour.test.tsx │ │ │ │ └── useTour.ts │ │ │ ├── types/ │ │ │ │ ├── AvatarBaseProps.ts │ │ │ │ ├── AvatarSize.ts │ │ │ │ ├── BannerBaseProps.ts │ │ │ │ ├── BoxBaseProps.ts │ │ │ │ ├── ButtonBaseProps.ts │ │ │ │ ├── CardHeaderProps.ts │ │ │ │ ├── CardMediaProps.ts │ │ │ │ ├── CardRemoteImageProps.ts │ │ │ │ ├── CdsPlatform.ts │ │ │ │ ├── CellBaseProps.ts │ │ │ │ ├── Chart.ts │ │ │ │ ├── CollapsibleBaseProps.ts │ │ │ │ ├── Color.ts │ │ │ │ ├── ComponentEventHandlerProps.ts │ │ │ │ ├── DimensionStyles.ts │ │ │ │ ├── Display.ts │ │ │ │ ├── DotBaseProps.ts │ │ │ │ ├── DotCountBaseProps.ts │ │ │ │ ├── ElevationLevels.ts │ │ │ │ ├── FallbackBaseProps.ts │ │ │ │ ├── Grid.ts │ │ │ │ ├── Helpers.ts │ │ │ │ ├── IconButtonBaseProps.ts │ │ │ │ ├── IconName.ts │ │ │ │ ├── IconSize.ts │ │ │ │ ├── IllustrationNames.ts │ │ │ │ ├── IllustrationProps.ts │ │ │ │ ├── InputBaseProps.ts │ │ │ │ ├── LottiePlayer.ts │ │ │ │ ├── LottieSource.ts │ │ │ │ ├── LottieStatus.ts │ │ │ │ ├── LottieStatusAnimationProps.ts │ │ │ │ ├── Motion.ts │ │ │ │ ├── OverlayLifecycleProps.ts │ │ │ │ ├── Palette.ts │ │ │ │ ├── Placement.ts │ │ │ │ ├── Position.ts │ │ │ │ ├── ProgressContainerWithButtonsProps.ts │ │ │ │ ├── PulseBaseProps.ts │ │ │ │ ├── React.ts │ │ │ │ ├── Rect.ts │ │ │ │ ├── Responsive.ts │ │ │ │ ├── ResponsiveProps.ts │ │ │ │ ├── SectionHeaderProps.ts │ │ │ │ ├── Shape.ts │ │ │ │ ├── SharedAccessibilityProps.ts │ │ │ │ ├── SharedProps.ts │ │ │ │ ├── SpacingProps.ts │ │ │ │ ├── SparklineInteractiveHeaderBaseProps.ts │ │ │ │ ├── SpreadPropsSafely.ts │ │ │ │ ├── StickyFooterProps.ts │ │ │ │ ├── TagBaseProps.ts │ │ │ │ ├── TextBaseProps.ts │ │ │ │ ├── TooltipBaseProps.ts │ │ │ │ ├── TypeOrNumber.ts │ │ │ │ ├── Visibility.ts │ │ │ │ ├── Weight.ts │ │ │ │ └── index.ts │ │ │ ├── utils/ │ │ │ │ ├── __tests__/ │ │ │ │ │ ├── cell.test.ts │ │ │ │ │ ├── chart.test.ts │ │ │ │ │ ├── flattenNodes.test.tsx │ │ │ │ │ ├── formatCount.test.ts │ │ │ │ │ └── getRectWidthVariant.test.ts │ │ │ │ ├── cell.ts │ │ │ │ ├── chart.ts │ │ │ │ ├── circle.ts │ │ │ │ ├── convertDimensionToAspectRatio.ts │ │ │ │ ├── convertDimensionToSize.ts │ │ │ │ ├── convertSizeWithMultiplier.ts │ │ │ │ ├── debounce.ts │ │ │ │ ├── delay.ts │ │ │ │ ├── flattenNodes.ts │ │ │ │ ├── formatCount.ts │ │ │ │ ├── getAccessibleColor.ts │ │ │ │ ├── getButtonSpacingProps.ts │ │ │ │ ├── getDefaultAspectRatioForIllustration.ts │ │ │ │ ├── getDefaultSizeObjectForIllustration.ts │ │ │ │ ├── getRectWidthVariant.ts │ │ │ │ ├── getWidthInEm.ts │ │ │ │ ├── join.tsx │ │ │ │ ├── mergeProps.ts │ │ │ │ ├── mockUtils.ts │ │ │ │ ├── modulate.ts │ │ │ │ └── parseDotCountMaxOverflow.ts │ │ │ └── visualizations/ │ │ │ ├── __tests__/ │ │ │ │ ├── getSparklineRange.test.ts │ │ │ │ ├── largestTriangleThreeBucket.test.ts │ │ │ │ ├── useCounter.test.ts │ │ │ │ ├── useSparklineArea.test.ts │ │ │ │ ├── useSparklineCoordinates.test.ts │ │ │ │ └── useSparklinePath.test.ts │ │ │ ├── getProgressCircleParams.tsx │ │ │ ├── getProgressSize.ts │ │ │ ├── getSparklineRange.ts │ │ │ ├── getSparklineTransform.ts │ │ │ ├── largestTriangleThreeBucket.ts │ │ │ ├── useCounter.ts │ │ │ ├── useDateLookup.ts │ │ │ ├── useProgressSize.ts │ │ │ ├── useSparklineArea.tsx │ │ │ ├── useSparklineAreaOpacity.ts │ │ │ ├── useSparklineCoordinates.ts │ │ │ ├── useSparklinePath.ts │ │ │ ├── useSparklinePathGenerator.ts │ │ │ ├── useTimeseriesPaths.ts │ │ │ └── useVisualizationDimensions.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── eslint-plugin-cds/ │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── babel.config.cjs │ │ ├── deploy.yml │ │ ├── docker-compose.yml │ │ ├── jest.config.mjs │ │ ├── package.json │ │ ├── project.json │ │ ├── publish.Dockerfile │ │ ├── rollup.config.mjs │ │ ├── scripts/ │ │ │ └── scaffold-new-rule.mjs │ │ ├── src/ │ │ │ ├── configs/ │ │ │ │ ├── mobile.ts │ │ │ │ └── web.ts │ │ │ ├── index.ts │ │ │ ├── rules/ │ │ │ │ ├── control-has-associated-label-extended.ts │ │ │ │ ├── has-valid-accessibility-descriptors-extended.ts │ │ │ │ ├── mobile-chart-scrubbing-accessibility.ts │ │ │ │ ├── no-v7-imports.ts │ │ │ │ ├── web-chart-scrubbing-accessibility.ts │ │ │ │ └── web-tooltip-interactive-content.ts │ │ │ ├── rules.ts │ │ │ ├── templates/ │ │ │ │ ├── custom-rule.test.ts │ │ │ │ └── custom-rule.ts │ │ │ └── utils/ │ │ │ ├── checkForInnerText.ts │ │ │ ├── extractA11yAttributesState.ts │ │ │ ├── getAttribute.ts │ │ │ ├── getSimpleNameFromJSX.ts │ │ │ └── isTruthyJSXBooleanAttribute.ts │ │ ├── tests/ │ │ │ ├── control-has-associated-label-extended.test.ts │ │ │ ├── has-valid-accessibility-descriptors-extended.test.ts │ │ │ ├── mobile-chart-scrubbing-accessibility.test.ts │ │ │ ├── no-v7-imports.test.ts │ │ │ ├── normalizeIndent.ts │ │ │ ├── web-chart-scrubbing-accessibility.test.ts │ │ │ └── web-tooltip-interactive-content.test.ts │ │ ├── tsconfig.build.json │ │ ├── tsconfig.json │ │ └── tsconfig.test.json │ ├── icons/ │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── babel.config.cjs │ │ ├── deploy.yml │ │ ├── docker-compose.yml │ │ ├── manifest.json │ │ ├── package.json │ │ ├── project.json │ │ ├── publish.Dockerfile │ │ ├── src/ │ │ │ ├── IconName.ts │ │ │ ├── descriptionMap.ts │ │ │ ├── fonts/ │ │ │ │ └── web/ │ │ │ │ └── icon-font.css │ │ │ ├── glyphMap.ts │ │ │ ├── index.ts │ │ │ └── names.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── illustrations/ │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── babel.config.cjs │ │ ├── deploy.yml │ │ ├── docker-compose.yml │ │ ├── manifest.json │ │ ├── package.json │ │ ├── project.json │ │ ├── publish.Dockerfile │ │ ├── scripts/ │ │ │ ├── generateStories.ts │ │ │ └── writeStories.ts │ │ ├── src/ │ │ │ ├── __generated__/ │ │ │ │ ├── heroSquare/ │ │ │ │ │ ├── data/ │ │ │ │ │ │ ├── descriptionMap.ts │ │ │ │ │ │ ├── names.ts │ │ │ │ │ │ ├── svgEsmMap.ts │ │ │ │ │ │ ├── svgJsMap.ts │ │ │ │ │ │ └── versionMap.ts │ │ │ │ │ ├── svgJs/ │ │ │ │ │ │ ├── cjs/ │ │ │ │ │ │ │ ├── dark/ │ │ │ │ │ │ │ │ ├── accessToAdvancedCharts-5.js │ │ │ │ │ │ │ │ ├── accountUnderReview-3.js │ │ │ │ │ │ │ │ ├── add2Fa-5.js │ │ │ │ │ │ │ │ ├── addBankAccount-4.js │ │ │ │ │ │ │ │ ├── addCreditCard-4.js │ │ │ │ │ │ │ │ ├── addMoreCrypto-4.js │ │ │ │ │ │ │ │ ├── addPhoneNumber-4.js │ │ │ │ │ │ │ │ ├── advancedTrading-5.js │ │ │ │ │ │ │ │ ├── advancedTradingChartsIndicatorsCandles-3.js │ │ │ │ │ │ │ │ ├── advancedTradingUi-3.js │ │ │ │ │ │ │ │ ├── airdrop-2.js │ │ │ │ │ │ │ │ ├── alienDonutSystemError-4.js │ │ │ │ │ │ │ │ ├── anonymous-1.js │ │ │ │ │ │ │ │ ├── appTrackingTransparency-5.js │ │ │ │ │ │ │ │ ├── artFrameEmptyState-5.js │ │ │ │ │ │ │ │ ├── automaticPayments-3.js │ │ │ │ │ │ │ │ ├── backedByUsDollar-5.js │ │ │ │ │ │ │ │ ├── baseChartLarge-1.js │ │ │ │ │ │ │ │ ├── baseCheck-1.js │ │ │ │ │ │ │ │ ├── baseCoinCryptoLarge-1.js │ │ │ │ │ │ │ │ ├── baseCoinNetworkLarge-1.js │ │ │ │ │ │ │ │ ├── baseConnectLarge-1.js │ │ │ │ │ │ │ │ ├── baseCreatorCoin-1.js │ │ │ │ │ │ │ │ ├── baseCreatorCoinEmpty-1.js │ │ │ │ │ │ │ │ ├── baseDecentralizationLarge-1.js │ │ │ │ │ │ │ │ ├── baseEmptyLarge-1.js │ │ │ │ │ │ │ │ ├── baseErrorButterfly-0.js │ │ │ │ │ │ │ │ ├── baseErrorLarge-1.js │ │ │ │ │ │ │ │ ├── baseLoadingLarge-1.js │ │ │ │ │ │ │ │ ├── baseLocationLarge-1.js │ │ │ │ │ │ │ │ ├── baseMintNftLarge-1.js │ │ │ │ │ │ │ │ ├── baseNetworkLarge-1.js │ │ │ │ │ │ │ │ ├── baseNftLarge-1.js │ │ │ │ │ │ │ │ ├── basePaycoinLarge-1.js │ │ │ │ │ │ │ │ ├── basePeopleLarge-1.js │ │ │ │ │ │ │ │ ├── basePiechartLarge-1.js │ │ │ │ │ │ │ │ ├── baseRewardsCalmLarge-1.js │ │ │ │ │ │ │ │ ├── baseSecurityLarge-1.js │ │ │ │ │ │ │ │ ├── baseSendLarge-1.js │ │ │ │ │ │ │ │ ├── baseSocial-2.js │ │ │ │ │ │ │ │ ├── baseTargetLarge-1.js │ │ │ │ │ │ │ │ ├── basedInUsa-5.js │ │ │ │ │ │ │ │ ├── bigBtc-6.js │ │ │ │ │ │ │ │ ├── bigError-5.js │ │ │ │ │ │ │ │ ├── bigWarning-5.js │ │ │ │ │ │ │ │ ├── bitcoinAndOtherCrypto-3.js │ │ │ │ │ │ │ │ ├── bitcoinGlobe-5.js │ │ │ │ │ │ │ │ ├── blockchain-3.js │ │ │ │ │ │ │ │ ├── borrow-4.js │ │ │ │ │ │ │ │ ├── borrowCoins-2.js │ │ │ │ │ │ │ │ ├── borrowCoinsBtc-0.js │ │ │ │ │ │ │ │ ├── borrowWallet-5.js │ │ │ │ │ │ │ │ ├── brdGift-4.js │ │ │ │ │ │ │ │ ├── bridge-2.js │ │ │ │ │ │ │ │ ├── browseDecentralizedApps-6.js │ │ │ │ │ │ │ │ ├── browserExtension-4.js │ │ │ │ │ │ │ │ ├── buy-1.js │ │ │ │ │ │ │ │ ├── buyFirstCrypto-4.js │ │ │ │ │ │ │ │ ├── camera-4.js │ │ │ │ │ │ │ │ ├── cardAndPhone-2.js │ │ │ │ │ │ │ │ ├── cardBoosted-3.js │ │ │ │ │ │ │ │ ├── cardError-4.js │ │ │ │ │ │ │ │ ├── cardErrorCB1-0.js │ │ │ │ │ │ │ │ ├── cardReloadFunds-3.js │ │ │ │ │ │ │ │ ├── cashExcitement-3.js │ │ │ │ │ │ │ │ ├── catHoldingWalletEmptyState-4.js │ │ │ │ │ │ │ │ ├── catLostSystemError-3.js │ │ │ │ │ │ │ │ ├── cbada-0.js │ │ │ │ │ │ │ │ ├── cbbtc-2.js │ │ │ │ │ │ │ │ ├── cbdoge-0.js │ │ │ │ │ │ │ │ ├── cbltc-0.js │ │ │ │ │ │ │ │ ├── cbmega-0.js │ │ │ │ │ │ │ │ ├── cbxrp-0.js │ │ │ │ │ │ │ │ ├── chickenFishSystemError-3.js │ │ │ │ │ │ │ │ ├── claimCryptoUsername-2.js │ │ │ │ │ │ │ │ ├── cloud-1.js │ │ │ │ │ │ │ │ ├── cloudBacking-3.js │ │ │ │ │ │ │ │ ├── coinCheckmark-4.js │ │ │ │ │ │ │ │ ├── coinFifty-1.js │ │ │ │ │ │ │ │ ├── coinbaseCard-3.js │ │ │ │ │ │ │ │ ├── coinbaseCardIssue-3.js │ │ │ │ │ │ │ │ ├── coinbaseCardLock-3.js │ │ │ │ │ │ │ │ ├── coinbaseCardPocket-3.js │ │ │ │ │ │ │ │ ├── coinbaseCardSpend-3.js │ │ │ │ │ │ │ │ ├── coinbaseCardSpendCrypto-4.js │ │ │ │ │ │ │ │ ├── coinbaseFees-3.js │ │ │ │ │ │ │ │ ├── coinbaseIsDown-5.js │ │ │ │ │ │ │ │ ├── coinbaseIsDownMobile-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneAirdrop-1.js │ │ │ │ │ │ │ │ ├── coinbaseOneCardWarning-3.js │ │ │ │ │ │ │ │ ├── coinbaseOneDiscountedAmount-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneDocWarning-3.js │ │ │ │ │ │ │ │ ├── coinbaseOneEarn-2.js │ │ │ │ │ │ │ │ ├── coinbaseOneInsufficientWallet-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneLogo-4.js │ │ │ │ │ │ │ │ ├── coinbaseOnePercentOff-4.js │ │ │ │ │ │ │ │ ├── coinbaseOnePhoneLightning-5.js │ │ │ │ │ │ │ │ ├── coinbaseOneProtectedCrypto-3.js │ │ │ │ │ │ │ │ ├── coinbaseOneRewards-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneSavingFunds-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneTokenRewards-3.js │ │ │ │ │ │ │ │ ├── coinbaseOneUSDCBig-1.js │ │ │ │ │ │ │ │ ├── coinbaseOneUSDCIncentives-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneWaitlist-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneWalletWarning-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneWelcome-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneZeroPortal-1.js │ │ │ │ │ │ │ │ ├── coinbaseOneZeroPromotion-1.js │ │ │ │ │ │ │ │ ├── coinbaseRedesigned-3.js │ │ │ │ │ │ │ │ ├── coinbaseWalletToTrade-3.js │ │ │ │ │ │ │ │ ├── coinsInWallet-3.js │ │ │ │ │ │ │ │ ├── collectableNfts-6.js │ │ │ │ │ │ │ │ ├── collectingNfts-5.js │ │ │ │ │ │ │ │ ├── commerceAccounting-4.js │ │ │ │ │ │ │ │ ├── commerceInvoices-3.js │ │ │ │ │ │ │ │ ├── communication-1.js │ │ │ │ │ │ │ │ ├── completeAQuiz-4.js │ │ │ │ │ │ │ │ ├── congratulationsOnEarningCrypto-3.js │ │ │ │ │ │ │ │ ├── connectPeople-2.js │ │ │ │ │ │ │ │ ├── contactsListWarning-3.js │ │ │ │ │ │ │ │ ├── crossBorderPayments-5.js │ │ │ │ │ │ │ │ ├── cryptoAndMore-4.js │ │ │ │ │ │ │ │ ├── cryptoApps-5.js │ │ │ │ │ │ │ │ ├── cryptoAppsWallet-5.js │ │ │ │ │ │ │ │ ├── cryptoAssets-6.js │ │ │ │ │ │ │ │ ├── cryptoEconomy-4.js │ │ │ │ │ │ │ │ ├── cryptoForBeginners-4.js │ │ │ │ │ │ │ │ ├── cryptoPortfolio-4.js │ │ │ │ │ │ │ │ ├── cryptoPortfolioUsdc-0.js │ │ │ │ │ │ │ │ ├── cryptoWallet-5.js │ │ │ │ │ │ │ │ ├── currencyPairs-5.js │ │ │ │ │ │ │ │ ├── dappsArts-4.js │ │ │ │ │ │ │ │ ├── dappsFinance-6.js │ │ │ │ │ │ │ │ ├── dappsGaming-4.js │ │ │ │ │ │ │ │ ├── dappsGeneral-2.js │ │ │ │ │ │ │ │ ├── dappsL2Support-5.js │ │ │ │ │ │ │ │ ├── dappsMusic-5.js │ │ │ │ │ │ │ │ ├── decentralization-5.js │ │ │ │ │ │ │ │ ├── decentralizedWebWeb3-5.js │ │ │ │ │ │ │ │ ├── defiDecentralizedBorrowingLending-4.js │ │ │ │ │ │ │ │ ├── defiDecentralizedTradingExchange-5.js │ │ │ │ │ │ │ │ ├── defiEarn-3.js │ │ │ │ │ │ │ │ ├── defiEnrollBoost-3.js │ │ │ │ │ │ │ │ ├── defiHow-4.js │ │ │ │ │ │ │ │ ├── defiRisk-3.js │ │ │ │ │ │ │ │ ├── desktopAuthorized-4.js │ │ │ │ │ │ │ │ ├── desktopUnknown-3.js │ │ │ │ │ │ │ │ ├── developer-1.js │ │ │ │ │ │ │ │ ├── diamondHands-6.js │ │ │ │ │ │ │ │ ├── didDecentralizedIdentity-4.js │ │ │ │ │ │ │ │ ├── digitalCollectibles-5.js │ │ │ │ │ │ │ │ ├── digitalGold-1.js │ │ │ │ │ │ │ │ ├── directDepositPhone-5.js │ │ │ │ │ │ │ │ ├── discardAssets-5.js │ │ │ │ │ │ │ │ ├── docError-3.js │ │ │ │ │ │ │ │ ├── documentCertified-3.js │ │ │ │ │ │ │ │ ├── documentSuccess-3.js │ │ │ │ │ │ │ │ ├── downloadCoinbaseWallet-6.js │ │ │ │ │ │ │ │ ├── earn-3.js │ │ │ │ │ │ │ │ ├── earnCryptoCard-4.js │ │ │ │ │ │ │ │ ├── earnCryptoInterest-5.js │ │ │ │ │ │ │ │ ├── earnGlobe-1.js │ │ │ │ │ │ │ │ ├── earnGrowth-4.js │ │ │ │ │ │ │ │ ├── earnIdVerification-3.js │ │ │ │ │ │ │ │ ├── earnInterest-4.js │ │ │ │ │ │ │ │ ├── earnMore-4.js │ │ │ │ │ │ │ │ ├── earnNuxHome-5.js │ │ │ │ │ │ │ │ ├── earnSuccess-5.js │ │ │ │ │ │ │ │ ├── earnToLearn-4.js │ │ │ │ │ │ │ │ ├── emailNotification-4.js │ │ │ │ │ │ │ │ ├── emptyCollection-5.js │ │ │ │ │ │ │ │ ├── emptyStateCheckBackLater-5.js │ │ │ │ │ │ │ │ ├── emptyStateNft404Page-4.js │ │ │ │ │ │ │ │ ├── emptyStateNftSoldOut-4.js │ │ │ │ │ │ │ │ ├── enableBiometrics-5.js │ │ │ │ │ │ │ │ ├── encryptedEverything-4.js │ │ │ │ │ │ │ │ ├── engagement-2.js │ │ │ │ │ │ │ │ ├── ensProfilePic-2.js │ │ │ │ │ │ │ │ ├── error400-4.js │ │ │ │ │ │ │ │ ├── errorApp500-6.js │ │ │ │ │ │ │ │ ├── errorMoblie-1.js │ │ │ │ │ │ │ │ ├── errorRefresh-4.js │ │ │ │ │ │ │ │ ├── errorRefreshWeb-1.js │ │ │ │ │ │ │ │ ├── errorWeb-1.js │ │ │ │ │ │ │ │ ├── errorWeb400-4.js │ │ │ │ │ │ │ │ ├── errorWeb404-6.js │ │ │ │ │ │ │ │ ├── errorWeb404Mobile-1.js │ │ │ │ │ │ │ │ ├── errorWeb500-4.js │ │ │ │ │ │ │ │ ├── estimatedAmount-3.js │ │ │ │ │ │ │ │ ├── ethStakingRewards-4.js │ │ │ │ │ │ │ │ ├── ethStakingUpsell-5.js │ │ │ │ │ │ │ │ ├── ethereumToWallet-6.js │ │ │ │ │ │ │ │ ├── exchange-1.js │ │ │ │ │ │ │ │ ├── exchangeEmptyState-5.js │ │ │ │ │ │ │ │ ├── exploreDecentralizedApps-7.js │ │ │ │ │ │ │ │ ├── faceMatchReal-4.js │ │ │ │ │ │ │ │ ├── feeScale-4.js │ │ │ │ │ │ │ │ ├── fiat-1.js │ │ │ │ │ │ │ │ ├── fileYourCryptoTaxes-5.js │ │ │ │ │ │ │ │ ├── fileYourCryptoTaxesCheck-6.js │ │ │ │ │ │ │ │ ├── flipStable-0.js │ │ │ │ │ │ │ │ ├── focusLimitOrders-4.js │ │ │ │ │ │ │ │ ├── freeBtc-4.js │ │ │ │ │ │ │ │ ├── futures-6.js │ │ │ │ │ │ │ │ ├── futuresAndPerps-0.js │ │ │ │ │ │ │ │ ├── futuresExpire-0.js │ │ │ │ │ │ │ │ ├── futuresVsPerps-0.js │ │ │ │ │ │ │ │ ├── gainsAndLosses-4.js │ │ │ │ │ │ │ │ ├── gamer-1.js │ │ │ │ │ │ │ │ ├── gasFeesNetworkFees-4.js │ │ │ │ │ │ │ │ ├── generative-2.js │ │ │ │ │ │ │ │ ├── genniusLaunch-0.js │ │ │ │ │ │ │ │ ├── getStartedInMinutes-4.js │ │ │ │ │ │ │ │ ├── globalTransactions-5.js │ │ │ │ │ │ │ │ ├── governance-4.js │ │ │ │ │ │ │ │ ├── governanceMallet-1.js │ │ │ │ │ │ │ │ ├── graphChartTrading-0.js │ │ │ │ │ │ │ │ ├── hardwareWallets-4.js │ │ │ │ │ │ │ │ ├── hiddenCollection-3.js │ │ │ │ │ │ │ │ ├── holdCrypto-4.js │ │ │ │ │ │ │ │ ├── holdingCrypto-3.js │ │ │ │ │ │ │ │ ├── iceCreamMeltingSystemError-6.js │ │ │ │ │ │ │ │ ├── idAngles-4.js │ │ │ │ │ │ │ │ ├── idBack-2.js │ │ │ │ │ │ │ │ ├── idCard-3.js │ │ │ │ │ │ │ │ ├── idFront-3.js │ │ │ │ │ │ │ │ ├── idIssue-3.js │ │ │ │ │ │ │ │ ├── idVerificationSecure-5.js │ │ │ │ │ │ │ │ ├── indexer-2.js │ │ │ │ │ │ │ │ ├── innovation-2.js │ │ │ │ │ │ │ │ ├── instantUnstakingClock-1.js │ │ │ │ │ │ │ │ ├── instoAdd2Fa-0.js │ │ │ │ │ │ │ │ ├── instoAddBankAccount-0.js │ │ │ │ │ │ │ │ ├── instoCoinbaseOneProtectedCrypto-1.js │ │ │ │ │ │ │ │ ├── instoDocumentSuccess-1.js │ │ │ │ │ │ │ │ ├── instoEarnGlobe-0.js │ │ │ │ │ │ │ │ ├── instoEnableBiometrics-0.js │ │ │ │ │ │ │ │ ├── instoEthStakingRewards-0.js │ │ │ │ │ │ │ │ ├── instoEthStakingUpsell-0.js │ │ │ │ │ │ │ │ ├── instoGovernance-0.js │ │ │ │ │ │ │ │ ├── instoKeyGenerationComplete-1.js │ │ │ │ │ │ │ │ ├── instoKeyGenerationPending-0.js │ │ │ │ │ │ │ │ ├── instoOnChain-2.js │ │ │ │ │ │ │ │ ├── instoOpenEmail-1.js │ │ │ │ │ │ │ │ ├── instoPhoneUnknown-0.js │ │ │ │ │ │ │ │ ├── instoPrimeStaking-0.js │ │ │ │ │ │ │ │ ├── instoPrivateKey-1.js │ │ │ │ │ │ │ │ ├── instoRequestSent-1.js │ │ │ │ │ │ │ │ ├── instoSecurityKeyAuth-0.js │ │ │ │ │ │ │ │ ├── instoStaking-0.js │ │ │ │ │ │ │ │ ├── instoStakingMissedReturns-1.js │ │ │ │ │ │ │ │ ├── instoWallet-0.js │ │ │ │ │ │ │ │ ├── instoWalletSecurity-0.js │ │ │ │ │ │ │ │ ├── instoWeb3MobileSetupStart-0.js │ │ │ │ │ │ │ │ ├── insufficientBalance-5.js │ │ │ │ │ │ │ │ ├── insuranceProtection-4.js │ │ │ │ │ │ │ │ ├── invest-3.js │ │ │ │ │ │ │ │ ├── invite-4.js │ │ │ │ │ │ │ │ ├── japanVerifyId-3.js │ │ │ │ │ │ │ │ ├── keyGeneration-6.js │ │ │ │ │ │ │ │ ├── layerOne-2.js │ │ │ │ │ │ │ │ ├── layerThree-1.js │ │ │ │ │ │ │ │ ├── layerTwo-2.js │ │ │ │ │ │ │ │ ├── layeredNetworks-5.js │ │ │ │ │ │ │ │ ├── ledgerAccess-4.js │ │ │ │ │ │ │ │ ├── ledgerPlugin-4.js │ │ │ │ │ │ │ │ ├── lend-1.js │ │ │ │ │ │ │ │ ├── leverage-4.js │ │ │ │ │ │ │ │ ├── lightningNetwork-1.js │ │ │ │ │ │ │ │ ├── lightningNetworkInvoice-2.js │ │ │ │ │ │ │ │ ├── lightningNetworkSend-1.js │ │ │ │ │ │ │ │ ├── lightningNetworkTransfer-1.js │ │ │ │ │ │ │ │ ├── limitOrders-5.js │ │ │ │ │ │ │ │ ├── linkingYourWalletToYourCoinbaseAccount-8.js │ │ │ │ │ │ │ │ ├── liquidationBufferGreen-1.js │ │ │ │ │ │ │ │ ├── liquidationBufferRed-1.js │ │ │ │ │ │ │ │ ├── liquidationBufferRedClose-1.js │ │ │ │ │ │ │ │ ├── liquidationBufferYellow-0.js │ │ │ │ │ │ │ │ ├── lowCost-2.js │ │ │ │ │ │ │ │ ├── margin-3.js │ │ │ │ │ │ │ │ ├── marginWarning-4.js │ │ │ │ │ │ │ │ ├── mic-4.js │ │ │ │ │ │ │ │ ├── mining-4.js │ │ │ │ │ │ │ │ ├── minting-2.js │ │ │ │ │ │ │ │ ├── moneyDecentralized-5.js │ │ │ │ │ │ │ │ ├── moreGains-0.js │ │ │ │ │ │ │ │ ├── multiPlatformMobileAppBrowserExtension-5.js │ │ │ │ │ │ │ │ ├── multicoinSupport-4.js │ │ │ │ │ │ │ │ ├── multipleAccountsWalletsForOneUser-5.js │ │ │ │ │ │ │ │ ├── multiplePortfolios-1.js │ │ │ │ │ │ │ │ ├── myNameIsSatoshi-3.js │ │ │ │ │ │ │ │ ├── namePortfolio-1.js │ │ │ │ │ │ │ │ ├── networkWarning-5.js │ │ │ │ │ │ │ │ ├── noFees-4.js │ │ │ │ │ │ │ │ ├── noFeesMotion-1.js │ │ │ │ │ │ │ │ ├── noLongAddresses-2.js │ │ │ │ │ │ │ │ ├── notificationsAlt-5.js │ │ │ │ │ │ │ │ ├── notificationsAndUpdates-3.js │ │ │ │ │ │ │ │ ├── offChain-1.js │ │ │ │ │ │ │ │ ├── oilAndGold-2.js │ │ │ │ │ │ │ │ ├── onChain-2.js │ │ │ │ │ │ │ │ ├── onTheList-4.js │ │ │ │ │ │ │ │ ├── openEmail-4.js │ │ │ │ │ │ │ │ ├── optInPushNotificationsEmail-3.js │ │ │ │ │ │ │ │ ├── options-0.js │ │ │ │ │ │ │ │ ├── oracle-1.js │ │ │ │ │ │ │ │ ├── orderBooks-3.js │ │ │ │ │ │ │ │ ├── outage-1.js │ │ │ │ │ │ │ │ ├── p2pGifting-4.js │ │ │ │ │ │ │ │ ├── p2pPayments-5.js │ │ │ │ │ │ │ │ ├── paperHands-3.js │ │ │ │ │ │ │ │ ├── payUpFront-4.js │ │ │ │ │ │ │ │ ├── pending-5.js │ │ │ │ │ │ │ │ ├── performance-4.js │ │ │ │ │ │ │ │ ├── phoneNumber-3.js │ │ │ │ │ │ │ │ ├── phoneUnknown-3.js │ │ │ │ │ │ │ │ ├── platform-1.js │ │ │ │ │ │ │ │ ├── polling-3.js │ │ │ │ │ │ │ │ ├── portfolioPerformance-5.js │ │ │ │ │ │ │ │ ├── powerOfCrypto-6.js │ │ │ │ │ │ │ │ ├── poweredByEthereum-5.js │ │ │ │ │ │ │ │ ├── predictionsMarkets-0.js │ │ │ │ │ │ │ │ ├── primeDeFi-4.js │ │ │ │ │ │ │ │ ├── primeEarn-5.js │ │ │ │ │ │ │ │ ├── primeStaking-5.js │ │ │ │ │ │ │ │ ├── private-2.js │ │ │ │ │ │ │ │ ├── privateKey-1.js │ │ │ │ │ │ │ │ ├── processing-3.js │ │ │ │ │ │ │ │ ├── protocol-1.js │ │ │ │ │ │ │ │ ├── public-1.js │ │ │ │ │ │ │ │ ├── quest-2.js │ │ │ │ │ │ │ │ ├── quickAndSimple-5.js │ │ │ │ │ │ │ │ ├── quickBuy-3.js │ │ │ │ │ │ │ │ ├── ratingsAndReviews-5.js │ │ │ │ │ │ │ │ ├── readyToTrade-4.js │ │ │ │ │ │ │ │ ├── realToUSDC-1.js │ │ │ │ │ │ │ │ ├── receiveGift-4.js │ │ │ │ │ │ │ │ ├── receivedCard-3.js │ │ │ │ │ │ │ │ ├── recommendInvest-6.js │ │ │ │ │ │ │ │ ├── recurringReward-4.js │ │ │ │ │ │ │ │ ├── referralsAvatars-6.js │ │ │ │ │ │ │ │ ├── referralsBitcoin-6.js │ │ │ │ │ │ │ │ ├── referralsCoinbaseOne-2.js │ │ │ │ │ │ │ │ ├── referralsGenericCoin-1.js │ │ │ │ │ │ │ │ ├── referralsWalletPhones-7.js │ │ │ │ │ │ │ │ ├── refresh-0.js │ │ │ │ │ │ │ │ ├── remittances-4.js │ │ │ │ │ │ │ │ ├── requestSent-5.js │ │ │ │ │ │ │ │ ├── restrictedCountry-7.js │ │ │ │ │ │ │ │ ├── retailUSDCRewards-5.js │ │ │ │ │ │ │ │ ├── reviewInfo-4.js │ │ │ │ │ │ │ │ ├── rocket-4.js │ │ │ │ │ │ │ │ ├── rotatingRewards-7.js │ │ │ │ │ │ │ │ ├── routingAccount-4.js │ │ │ │ │ │ │ │ ├── scalable-1.js │ │ │ │ │ │ │ │ ├── secureAndTrusted-4.js │ │ │ │ │ │ │ │ ├── secureGlobalTransactions-5.js │ │ │ │ │ │ │ │ ├── secureStorage-5.js │ │ │ │ │ │ │ │ ├── securityShield-4.js │ │ │ │ │ │ │ │ ├── selectCorrectCrypto-4.js │ │ │ │ │ │ │ │ ├── selectReward-3.js │ │ │ │ │ │ │ │ ├── selfCustody-5.js │ │ │ │ │ │ │ │ ├── selfCustodyCrypto-4.js │ │ │ │ │ │ │ │ ├── semiCustodial-5.js │ │ │ │ │ │ │ │ ├── sendCryptoFaster-3.js │ │ │ │ │ │ │ │ ├── sendToUsername-4.js │ │ │ │ │ │ │ │ ├── serverCatSystemError-3.js │ │ │ │ │ │ │ │ ├── settlement-1.js │ │ │ │ │ │ │ │ ├── shareOnSocialMedia-4.js │ │ │ │ │ │ │ │ ├── sidechain-3.js │ │ │ │ │ │ │ │ ├── slippageTolerance-4.js │ │ │ │ │ │ │ │ ├── smartContract-2.js │ │ │ │ │ │ │ │ ├── spacedOutSystemError-5.js │ │ │ │ │ │ │ │ ├── squidEmptyState-5.js │ │ │ │ │ │ │ │ ├── stableValue-4.js │ │ │ │ │ │ │ │ ├── stablecoin-1.js │ │ │ │ │ │ │ │ ├── staking-4.js │ │ │ │ │ │ │ │ ├── stakingMissedReturns-3.js │ │ │ │ │ │ │ │ ├── stakingMissedReturnsUsdc-0.js │ │ │ │ │ │ │ │ ├── startToday-3.js │ │ │ │ │ │ │ │ ├── stayInControlSelfHostedWalletsStorage-5.js │ │ │ │ │ │ │ │ ├── stopLimitOrder-4.js │ │ │ │ │ │ │ │ ├── stopLimitOrderDown-5.js │ │ │ │ │ │ │ │ ├── storage-2.js │ │ │ │ │ │ │ │ ├── stressTestedColdStorage-4.js │ │ │ │ │ │ │ │ ├── success-4.js │ │ │ │ │ │ │ │ ├── supportAndMore-5.js │ │ │ │ │ │ │ │ ├── sustainable-1.js │ │ │ │ │ │ │ │ ├── switchAdvancedToSimpleTrading-4.js │ │ │ │ │ │ │ │ ├── taxesDetails-3.js │ │ │ │ │ │ │ │ ├── test-0.js │ │ │ │ │ │ │ │ ├── tools-1.js │ │ │ │ │ │ │ │ ├── tradeGeneral-3.js │ │ │ │ │ │ │ │ ├── tradeHistory-4.js │ │ │ │ │ │ │ │ ├── tradeImmediately-4.js │ │ │ │ │ │ │ │ ├── tradingPerpetualsUsdc-0.js │ │ │ │ │ │ │ │ ├── tradingWithLeverage-0.js │ │ │ │ │ │ │ │ ├── transactionLimit-4.js │ │ │ │ │ │ │ │ ├── trendingHotAssets-3.js │ │ │ │ │ │ │ │ ├── twoIdVerify-3.js │ │ │ │ │ │ │ │ ├── unlockKey-3.js │ │ │ │ │ │ │ │ ├── usdAndUsdc-0.js │ │ │ │ │ │ │ │ ├── usdtToUSDC-2.js │ │ │ │ │ │ │ │ ├── verifyBankTransactions-4.js │ │ │ │ │ │ │ │ ├── verifyCardTransactions-4.js │ │ │ │ │ │ │ │ ├── verifyEmail-4.js │ │ │ │ │ │ │ │ ├── verifyIdDetails-3.js │ │ │ │ │ │ │ │ ├── verifyInfo-4.js │ │ │ │ │ │ │ │ ├── videoRequest-4.js │ │ │ │ │ │ │ │ ├── videoReview-4.js │ │ │ │ │ │ │ │ ├── videoUpload-4.js │ │ │ │ │ │ │ │ ├── vipBadge-1.js │ │ │ │ │ │ │ │ ├── vote-1.js │ │ │ │ │ │ │ │ ├── walletAsset-7.js │ │ │ │ │ │ │ │ ├── walletConfirmation-2.js │ │ │ │ │ │ │ │ ├── walletFlyEmptyState-4.js │ │ │ │ │ │ │ │ ├── walletLoading-3.js │ │ │ │ │ │ │ │ ├── walletNotifications-4.js │ │ │ │ │ │ │ │ ├── walletSecurity-5.js │ │ │ │ │ │ │ │ ├── walletUi-7.js │ │ │ │ │ │ │ │ ├── walletWarning-1.js │ │ │ │ │ │ │ │ ├── watchVideos-3.js │ │ │ │ │ │ │ │ ├── web3ActivityError-3.js │ │ │ │ │ │ │ │ ├── web3ActivitySigned-5.js │ │ │ │ │ │ │ │ ├── web3MobileSetupStart-4.js │ │ │ │ │ │ │ │ ├── web3MobileSetupSuccess-4.js │ │ │ │ │ │ │ │ ├── webRAT-3.js │ │ │ │ │ │ │ │ ├── whyNotBoth-4.js │ │ │ │ │ │ │ │ └── yourContacts-4.js │ │ │ │ │ │ │ ├── light/ │ │ │ │ │ │ │ │ ├── accessToAdvancedCharts-5.js │ │ │ │ │ │ │ │ ├── accountUnderReview-3.js │ │ │ │ │ │ │ │ ├── add2Fa-5.js │ │ │ │ │ │ │ │ ├── addBankAccount-4.js │ │ │ │ │ │ │ │ ├── addCreditCard-4.js │ │ │ │ │ │ │ │ ├── addMoreCrypto-4.js │ │ │ │ │ │ │ │ ├── addPhoneNumber-4.js │ │ │ │ │ │ │ │ ├── advancedTrading-5.js │ │ │ │ │ │ │ │ ├── advancedTradingChartsIndicatorsCandles-3.js │ │ │ │ │ │ │ │ ├── advancedTradingUi-3.js │ │ │ │ │ │ │ │ ├── airdrop-2.js │ │ │ │ │ │ │ │ ├── alienDonutSystemError-4.js │ │ │ │ │ │ │ │ ├── anonymous-1.js │ │ │ │ │ │ │ │ ├── appTrackingTransparency-5.js │ │ │ │ │ │ │ │ ├── artFrameEmptyState-5.js │ │ │ │ │ │ │ │ ├── automaticPayments-3.js │ │ │ │ │ │ │ │ ├── backedByUsDollar-5.js │ │ │ │ │ │ │ │ ├── baseChartLarge-1.js │ │ │ │ │ │ │ │ ├── baseCheck-1.js │ │ │ │ │ │ │ │ ├── baseCoinCryptoLarge-1.js │ │ │ │ │ │ │ │ ├── baseCoinNetworkLarge-1.js │ │ │ │ │ │ │ │ ├── baseConnectLarge-1.js │ │ │ │ │ │ │ │ ├── baseCreatorCoin-1.js │ │ │ │ │ │ │ │ ├── baseCreatorCoinEmpty-1.js │ │ │ │ │ │ │ │ ├── baseDecentralizationLarge-1.js │ │ │ │ │ │ │ │ ├── baseEmptyLarge-1.js │ │ │ │ │ │ │ │ ├── baseErrorButterfly-0.js │ │ │ │ │ │ │ │ ├── baseErrorLarge-1.js │ │ │ │ │ │ │ │ ├── baseLoadingLarge-1.js │ │ │ │ │ │ │ │ ├── baseLocationLarge-1.js │ │ │ │ │ │ │ │ ├── baseMintNftLarge-1.js │ │ │ │ │ │ │ │ ├── baseNetworkLarge-1.js │ │ │ │ │ │ │ │ ├── baseNftLarge-1.js │ │ │ │ │ │ │ │ ├── basePaycoinLarge-1.js │ │ │ │ │ │ │ │ ├── basePeopleLarge-1.js │ │ │ │ │ │ │ │ ├── basePiechartLarge-1.js │ │ │ │ │ │ │ │ ├── baseRewardsCalmLarge-1.js │ │ │ │ │ │ │ │ ├── baseSecurityLarge-1.js │ │ │ │ │ │ │ │ ├── baseSendLarge-1.js │ │ │ │ │ │ │ │ ├── baseSocial-2.js │ │ │ │ │ │ │ │ ├── baseTargetLarge-1.js │ │ │ │ │ │ │ │ ├── basedInUsa-5.js │ │ │ │ │ │ │ │ ├── bigBtc-6.js │ │ │ │ │ │ │ │ ├── bigError-5.js │ │ │ │ │ │ │ │ ├── bigWarning-5.js │ │ │ │ │ │ │ │ ├── bitcoinAndOtherCrypto-3.js │ │ │ │ │ │ │ │ ├── bitcoinGlobe-5.js │ │ │ │ │ │ │ │ ├── blockchain-3.js │ │ │ │ │ │ │ │ ├── borrow-4.js │ │ │ │ │ │ │ │ ├── borrowCoins-2.js │ │ │ │ │ │ │ │ ├── borrowCoinsBtc-0.js │ │ │ │ │ │ │ │ ├── borrowWallet-5.js │ │ │ │ │ │ │ │ ├── brdGift-4.js │ │ │ │ │ │ │ │ ├── bridge-2.js │ │ │ │ │ │ │ │ ├── browseDecentralizedApps-6.js │ │ │ │ │ │ │ │ ├── browserExtension-4.js │ │ │ │ │ │ │ │ ├── buy-1.js │ │ │ │ │ │ │ │ ├── buyFirstCrypto-4.js │ │ │ │ │ │ │ │ ├── camera-4.js │ │ │ │ │ │ │ │ ├── cardAndPhone-2.js │ │ │ │ │ │ │ │ ├── cardBoosted-3.js │ │ │ │ │ │ │ │ ├── cardError-4.js │ │ │ │ │ │ │ │ ├── cardErrorCB1-0.js │ │ │ │ │ │ │ │ ├── cardReloadFunds-3.js │ │ │ │ │ │ │ │ ├── cashExcitement-3.js │ │ │ │ │ │ │ │ ├── catHoldingWalletEmptyState-4.js │ │ │ │ │ │ │ │ ├── catLostSystemError-3.js │ │ │ │ │ │ │ │ ├── cbada-0.js │ │ │ │ │ │ │ │ ├── cbbtc-2.js │ │ │ │ │ │ │ │ ├── cbdoge-0.js │ │ │ │ │ │ │ │ ├── cbltc-0.js │ │ │ │ │ │ │ │ ├── cbmega-0.js │ │ │ │ │ │ │ │ ├── cbxrp-0.js │ │ │ │ │ │ │ │ ├── chickenFishSystemError-3.js │ │ │ │ │ │ │ │ ├── claimCryptoUsername-2.js │ │ │ │ │ │ │ │ ├── cloud-1.js │ │ │ │ │ │ │ │ ├── cloudBacking-3.js │ │ │ │ │ │ │ │ ├── coinCheckmark-4.js │ │ │ │ │ │ │ │ ├── coinFifty-1.js │ │ │ │ │ │ │ │ ├── coinbaseCard-3.js │ │ │ │ │ │ │ │ ├── coinbaseCardIssue-3.js │ │ │ │ │ │ │ │ ├── coinbaseCardLock-3.js │ │ │ │ │ │ │ │ ├── coinbaseCardPocket-3.js │ │ │ │ │ │ │ │ ├── coinbaseCardSpend-3.js │ │ │ │ │ │ │ │ ├── coinbaseCardSpendCrypto-4.js │ │ │ │ │ │ │ │ ├── coinbaseFees-3.js │ │ │ │ │ │ │ │ ├── coinbaseIsDown-5.js │ │ │ │ │ │ │ │ ├── coinbaseIsDownMobile-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneAirdrop-1.js │ │ │ │ │ │ │ │ ├── coinbaseOneCardWarning-3.js │ │ │ │ │ │ │ │ ├── coinbaseOneDiscountedAmount-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneDocWarning-3.js │ │ │ │ │ │ │ │ ├── coinbaseOneEarn-2.js │ │ │ │ │ │ │ │ ├── coinbaseOneInsufficientWallet-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneLogo-4.js │ │ │ │ │ │ │ │ ├── coinbaseOnePercentOff-4.js │ │ │ │ │ │ │ │ ├── coinbaseOnePhoneLightning-5.js │ │ │ │ │ │ │ │ ├── coinbaseOneProtectedCrypto-3.js │ │ │ │ │ │ │ │ ├── coinbaseOneRewards-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneSavingFunds-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneTokenRewards-3.js │ │ │ │ │ │ │ │ ├── coinbaseOneUSDCBig-1.js │ │ │ │ │ │ │ │ ├── coinbaseOneUSDCIncentives-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneWaitlist-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneWalletWarning-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneWelcome-4.js │ │ │ │ │ │ │ │ ├── coinbaseOneZeroPortal-1.js │ │ │ │ │ │ │ │ ├── coinbaseOneZeroPromotion-1.js │ │ │ │ │ │ │ │ ├── coinbaseRedesigned-3.js │ │ │ │ │ │ │ │ ├── coinbaseWalletToTrade-3.js │ │ │ │ │ │ │ │ ├── coinsInWallet-3.js │ │ │ │ │ │ │ │ ├── collectableNfts-6.js │ │ │ │ │ │ │ │ ├── collectingNfts-5.js │ │ │ │ │ │ │ │ ├── commerceAccounting-4.js │ │ │ │ │ │ │ │ ├── commerceInvoices-3.js │ │ │ │ │ │ │ │ ├── communication-1.js │ │ │ │ │ │ │ │ ├── completeAQuiz-4.js │ │ │ │ │ │ │ │ ├── congratulationsOnEarningCrypto-3.js │ │ │ │ │ │ │ │ ├── connectPeople-2.js │ │ │ │ │ │ │ │ ├── contactsListWarning-3.js │ │ │ │ │ │ │ │ ├── crossBorderPayments-5.js │ │ │ │ │ │ │ │ ├── cryptoAndMore-4.js │ │ │ │ │ │ │ │ ├── cryptoApps-5.js │ │ │ │ │ │ │ │ ├── cryptoAppsWallet-5.js │ │ │ │ │ │ │ │ ├── cryptoAssets-6.js │ │ │ │ │ │ │ │ ├── cryptoEconomy-4.js │ │ │ │ │ │ │ │ ├── cryptoForBeginners-4.js │ │ │ │ │ │ │ │ ├── cryptoPortfolio-4.js │ │ │ │ │ │ │ │ ├── cryptoPortfolioUsdc-0.js │ │ │ │ │ │ │ │ ├── cryptoWallet-5.js │ │ │ │ │ │ │ │ ├── currencyPairs-5.js │ │ │ │ │ │ │ │ ├── dappsArts-4.js │ │ │ │ │ │ │ │ ├── dappsFinance-6.js │ │ │ │ │ │ │ │ ├── dappsGaming-4.js │ │ │ │ │ │ │ │ ├── dappsGeneral-2.js │ │ │ │ │ │ │ │ ├── dappsL2Support-5.js │ │ │ │ │ │ │ │ ├── dappsMusic-5.js │ │ │ │ │ │ │ │ ├── decentralization-5.js │ │ │ │ │ │ │ │ ├── decentralizedWebWeb3-5.js │ │ │ │ │ │ │ │ ├── defiDecentralizedBorrowingLending-4.js │ │ │ │ │ │ │ │ ├── defiDecentralizedTradingExchange-5.js │ │ │ │ │ │ │ │ ├── defiEarn-3.js │ │ │ │ │ │ │ │ ├── defiEnrollBoost-3.js │ │ │ │ │ │ │ │ ├── defiHow-4.js │ │ │ │ │ │ │ │ ├── defiRisk-3.js │ │ │ │ │ │ │ │ ├── desktopAuthorized-4.js │ │ │ │ │ │ │ │ ├── desktopUnknown-3.js │ │ │ │ │ │ │ │ ├── developer-1.js │ │ │ │ │ │ │ │ ├── diamondHands-6.js │ │ │ │ │ │ │ │ ├── didDecentralizedIdentity-4.js │ │ │ │ │ │ │ │ ├── digitalCollectibles-5.js │ │ │ │ │ │ │ │ ├── digitalGold-1.js │ │ │ │ │ │ │ │ ├── directDepositPhone-5.js │ │ │ │ │ │ │ │ ├── discardAssets-5.js │ │ │ │ │ │ │ │ ├── docError-3.js │ │ │ │ │ │ │ │ ├── documentCertified-3.js │ │ │ │ │ │ │ │ ├── documentSuccess-3.js │ │ │ │ │ │ │ │ ├── downloadCoinbaseWallet-6.js │ │ │ │ │ │ │ │ ├── earn-3.js │ │ │ │ │ │ │ │ ├── earnCryptoCard-4.js │ │ │ │ │ │ │ │ ├── earnCryptoInterest-5.js │ │ │ │ │ │ │ │ ├── earnGlobe-1.js │ │ │ │ │ │ │ │ ├── earnGrowth-4.js │ │ │ │ │ │ │ │ ├── earnIdVerification-3.js │ │ │ │ │ │ │ │ ├── earnInterest-4.js │ │ │ │ │ │ │ │ ├── earnMore-4.js │ │ │ │ │ │ │ │ ├── earnNuxHome-5.js │ │ │ │ │ │ │ │ ├── earnSuccess-5.js │ │ │ │ │ │ │ │ ├── earnToLearn-4.js │ │ │ │ │ │ │ │ ├── emailNotification-4.js │ │ │ │ │ │ │ │ ├── emptyCollection-5.js │ │ │ │ │ │ │ │ ├── emptyStateCheckBackLater-5.js │ │ │ │ │ │ │ │ ├── emptyStateNft404Page-4.js │ │ │ │ │ │ │ │ ├── emptyStateNftSoldOut-4.js │ │ │ │ │ │ │ │ ├── enableBiometrics-5.js │ │ │ │ │ │ │ │ ├── encryptedEverything-4.js │ │ │ │ │ │ │ │ ├── engagement-2.js │ │ │ │ │ │ │ │ ├── ensProfilePic-2.js │ │ │ │ │ │ │ │ ├── error400-4.js │ │ │ │ │ │ │ │ ├── errorApp500-6.js │ │ │ │ │ │ │ │ ├── errorMoblie-1.js │ │ │ │ │ │ │ │ ├── errorRefresh-4.js │ │ │ │ │ │ │ │ ├── errorRefreshWeb-1.js │ │ │ │ │ │ │ │ ├── errorWeb-1.js │ │ │ │ │ │ │ │ ├── errorWeb400-4.js │ │ │ │ │ │ │ │ ├── errorWeb404-6.js │ │ │ │ │ │ │ │ ├── errorWeb404Mobile-1.js │ │ │ │ │ │ │ │ ├── errorWeb500-4.js │ │ │ │ │ │ │ │ ├── estimatedAmount-3.js │ │ │ │ │ │ │ │ ├── ethStakingRewards-4.js │ │ │ │ │ │ │ │ ├── ethStakingUpsell-5.js │ │ │ │ │ │ │ │ ├── ethereumToWallet-6.js │ │ │ │ │ │ │ │ ├── exchange-1.js │ │ │ │ │ │ │ │ ├── exchangeEmptyState-5.js │ │ │ │ │ │ │ │ ├── exploreDecentralizedApps-7.js │ │ │ │ │ │ │ │ ├── faceMatchReal-4.js │ │ │ │ │ │ │ │ ├── feeScale-4.js │ │ │ │ │ │ │ │ ├── fiat-1.js │ │ │ │ │ │ │ │ ├── fileYourCryptoTaxes-5.js │ │ │ │ │ │ │ │ ├── fileYourCryptoTaxesCheck-6.js │ │ │ │ │ │ │ │ ├── flipStable-0.js │ │ │ │ │ │ │ │ ├── focusLimitOrders-4.js │ │ │ │ │ │ │ │ ├── freeBtc-4.js │ │ │ │ │ │ │ │ ├── futures-6.js │ │ │ │ │ │ │ │ ├── futuresAndPerps-0.js │ │ │ │ │ │ │ │ ├── futuresExpire-0.js │ │ │ │ │ │ │ │ ├── futuresVsPerps-0.js │ │ │ │ │ │ │ │ ├── gainsAndLosses-4.js │ │ │ │ │ │ │ │ ├── gamer-1.js │ │ │ │ │ │ │ │ ├── gasFeesNetworkFees-4.js │ │ │ │ │ │ │ │ ├── generative-2.js │ │ │ │ │ │ │ │ ├── genniusLaunch-0.js │ │ │ │ │ │ │ │ ├── getStartedInMinutes-4.js │ │ │ │ │ │ │ │ ├── globalTransactions-5.js │ │ │ │ │ │ │ │ ├── governance-4.js │ │ │ │ │ │ │ │ ├── governanceMallet-1.js │ │ │ │ │ │ │ │ ├── graphChartTrading-0.js │ │ │ │ │ │ │ │ ├── hardwareWallets-4.js │ │ │ │ │ │ │ │ ├── hiddenCollection-3.js │ │ │ │ │ │ │ │ ├── holdCrypto-4.js │ │ │ │ │ │ │ │ ├── holdingCrypto-3.js │ │ │ │ │ │ │ │ ├── iceCreamMeltingSystemError-6.js │ │ │ │ │ │ │ │ ├── idAngles-4.js │ │ │ │ │ │ │ │ ├── idBack-2.js │ │ │ │ │ │ │ │ ├── idCard-3.js │ │ │ │ │ │ │ │ ├── idFront-3.js │ │ │ │ │ │ │ │ ├── idIssue-3.js │ │ │ │ │ │ │ │ ├── idVerificationSecure-5.js │ │ │ │ │ │ │ │ ├── indexer-2.js │ │ │ │ │ │ │ │ ├── innovation-2.js │ │ │ │ │ │ │ │ ├── instantUnstakingClock-1.js │ │ │ │ │ │ │ │ ├── instoAdd2Fa-0.js │ │ │ │ │ │ │ │ ├── instoAddBankAccount-0.js │ │ │ │ │ │ │ │ ├── instoCoinbaseOneProtectedCrypto-1.js │ │ │ │ │ │ │ │ ├── instoDocumentSuccess-1.js │ │ │ │ │ │ │ │ ├── instoEarnGlobe-0.js │ │ │ │ │ │ │ │ ├── instoEnableBiometrics-0.js │ │ │ │ │ │ │ │ ├── instoEthStakingRewards-0.js │ │ │ │ │ │ │ │ ├── instoEthStakingUpsell-0.js │ │ │ │ │ │ │ │ ├── instoGovernance-0.js │ │ │ │ │ │ │ │ ├── instoKeyGenerationComplete-1.js │ │ │ │ │ │ │ │ ├── instoKeyGenerationPending-0.js │ │ │ │ │ │ │ │ ├── instoOnChain-2.js │ │ │ │ │ │ │ │ ├── instoOpenEmail-1.js │ │ │ │ │ │ │ │ ├── instoPhoneUnknown-0.js │ │ │ │ │ │ │ │ ├── instoPrimeStaking-0.js │ │ │ │ │ │ │ │ ├── instoPrivateKey-1.js │ │ │ │ │ │ │ │ ├── instoRequestSent-1.js │ │ │ │ │ │ │ │ ├── instoSecurityKeyAuth-0.js │ │ │ │ │ │ │ │ ├── instoStaking-0.js │ │ │ │ │ │ │ │ ├── instoStakingMissedReturns-1.js │ │ │ │ │ │ │ │ ├── instoWallet-0.js │ │ │ │ │ │ │ │ ├── instoWalletSecurity-0.js │ │ │ │ │ │ │ │ ├── instoWeb3MobileSetupStart-0.js │ │ │ │ │ │ │ │ ├── insufficientBalance-5.js │ │ │ │ │ │ │ │ ├── insuranceProtection-4.js │ │ │ │ │ │ │ │ ├── invest-3.js │ │ │ │ │ │ │ │ ├── invite-4.js │ │ │ │ │ │ │ │ ├── japanVerifyId-3.js │ │ │ │ │ │ │ │ ├── keyGeneration-6.js │ │ │ │ │ │ │ │ ├── layerOne-2.js │ │ │ │ │ │ │ │ ├── layerThree-1.js │ │ │ │ │ │ │ │ ├── layerTwo-2.js │ │ │ │ │ │ │ │ ├── layeredNetworks-5.js │ │ │ │ │ │ │ │ ├── ledgerAccess-4.js │ │ │ │ │ │ │ │ ├── ledgerPlugin-4.js │ │ │ │ │ │ │ │ ├── lend-1.js │ │ │ │ │ │ │ │ ├── leverage-4.js │ │ │ │ │ │ │ │ ├── lightningNetwork-1.js │ │ │ │ │ │ │ │ ├── lightningNetworkInvoice-2.js │ │ │ │ │ │ │ │ ├── lightningNetworkSend-1.js │ │ │ │ │ │ │ │ ├── lightningNetworkTransfer-1.js │ │ │ │ │ │ │ │ ├── limitOrders-5.js │ │ │ │ │ │ │ │ ├── linkingYourWalletToYourCoinbaseAccount-8.js │ │ │ │ │ │ │ │ ├── liquidationBufferGreen-1.js │ │ │ │ │ │ │ │ ├── liquidationBufferRed-1.js │ │ │ │ │ │ │ │ ├── liquidationBufferRedClose-1.js │ │ │ │ │ │ │ │ ├── liquidationBufferYellow-0.js │ │ │ │ │ │ │ │ ├── lowCost-2.js │ │ │ │ │ │ │ │ ├── margin-3.js │ │ │ │ │ │ │ │ ├── marginWarning-4.js │ │ │ │ │ │ │ │ ├── mic-4.js │ │ │ │ │ │ │ │ ├── mining-4.js │ │ │ │ │ │ │ │ ├── minting-2.js │ │ │ │ │ │ │ │ ├── moneyDecentralized-5.js │ │ │ │ │ │ │ │ ├── moreGains-0.js │ │ │ │ │ │ │ │ ├── multiPlatformMobileAppBrowserExtension-5.js │ │ │ │ │ │ │ │ ├── multicoinSupport-4.js │ │ │ │ │ │ │ │ ├── multipleAccountsWalletsForOneUser-5.js │ │ │ │ │ │ │ │ ├── multiplePortfolios-1.js │ │ │ │ │ │ │ │ ├── myNameIsSatoshi-3.js │ │ │ │ │ │ │ │ ├── namePortfolio-1.js │ │ │ │ │ │ │ │ ├── networkWarning-5.js │ │ │ │ │ │ │ │ ├── noFees-4.js │ │ │ │ │ │ │ │ ├── noFeesMotion-1.js │ │ │ │ │ │ │ │ ├── noLongAddresses-2.js │ │ │ │ │ │ │ │ ├── notificationsAlt-5.js │ │ │ │ │ │ │ │ ├── notificationsAndUpdates-3.js │ │ │ │ │ │ │ │ ├── offChain-1.js │ │ │ │ │ │ │ │ ├── oilAndGold-2.js │ │ │ │ │ │ │ │ ├── onChain-2.js │ │ │ │ │ │ │ │ ├── onTheList-4.js │ │ │ │ │ │ │ │ ├── openEmail-4.js │ │ │ │ │ │ │ │ ├── optInPushNotificationsEmail-3.js │ │ │ │ │ │ │ │ ├── options-0.js │ │ │ │ │ │ │ │ ├── oracle-1.js │ │ │ │ │ │ │ │ ├── orderBooks-3.js │ │ │ │ │ │ │ │ ├── outage-1.js │ │ │ │ │ │ │ │ ├── p2pGifting-4.js │ │ │ │ │ │ │ │ ├── p2pPayments-5.js │ │ │ │ │ │ │ │ ├── paperHands-3.js │ │ │ │ │ │ │ │ ├── payUpFront-4.js │ │ │ │ │ │ │ │ ├── pending-5.js │ │ │ │ │ │ │ │ ├── performance-4.js │ │ │ │ │ │ │ │ ├── phoneNumber-3.js │ │ │ │ │ │ │ │ ├── phoneUnknown-3.js │ │ │ │ │ │ │ │ ├── platform-1.js │ │ │ │ │ │ │ │ ├── polling-3.js │ │ │ │ │ │ │ │ ├── portfolioPerformance-5.js │ │ │ │ │ │ │ │ ├── powerOfCrypto-6.js │ │ │ │ │ │ │ │ ├── poweredByEthereum-5.js │ │ │ │ │ │ │ │ ├── predictionsMarkets-0.js │ │ │ │ │ │ │ │ ├── primeDeFi-4.js │ │ │ │ │ │ │ │ ├── primeEarn-5.js │ │ │ │ │ │ │ │ ├── primeStaking-5.js │ │ │ │ │ │ │ │ ├── private-2.js │ │ │ │ │ │ │ │ ├── privateKey-1.js │ │ │ │ │ │ │ │ ├── processing-3.js │ │ │ │ │ │ │ │ ├── protocol-1.js │ │ │ │ │ │ │ │ ├── public-1.js │ │ │ │ │ │ │ │ ├── quest-2.js │ │ │ │ │ │ │ │ ├── quickAndSimple-5.js │ │ │ │ │ │ │ │ ├── quickBuy-3.js │ │ │ │ │ │ │ │ ├── ratingsAndReviews-5.js │ │ │ │ │ │ │ │ ├── readyToTrade-4.js │ │ │ │ │ │ │ │ ├── realToUSDC-1.js │ │ │ │ │ │ │ │ ├── receiveGift-4.js │ │ │ │ │ │ │ │ ├── receivedCard-3.js │ │ │ │ │ │ │ │ ├── recommendInvest-6.js │ │ │ │ │ │ │ │ ├── recurringReward-4.js │ │ │ │ │ │ │ │ ├── referralsAvatars-6.js │ │ │ │ │ │ │ │ ├── referralsBitcoin-6.js │ │ │ │ │ │ │ │ ├── referralsCoinbaseOne-2.js │ │ │ │ │ │ │ │ ├── referralsGenericCoin-1.js │ │ │ │ │ │ │ │ ├── referralsWalletPhones-7.js │ │ │ │ │ │ │ │ ├── refresh-0.js │ │ │ │ │ │ │ │ ├── remittances-4.js │ │ │ │ │ │ │ │ ├── requestSent-5.js │ │ │ │ │ │ │ │ ├── restrictedCountry-7.js │ │ │ │ │ │ │ │ ├── retailUSDCRewards-5.js │ │ │ │ │ │ │ │ ├── reviewInfo-4.js │ │ │ │ │ │ │ │ ├── rocket-4.js │ │ │ │ │ │ │ │ ├── rotatingRewards-7.js │ │ │ │ │ │ │ │ ├── routingAccount-4.js │ │ │ │ │ │ │ │ ├── scalable-1.js │ │ │ │ │ │ │ │ ├── secureAndTrusted-4.js │ │ │ │ │ │ │ │ ├── secureGlobalTransactions-5.js │ │ │ │ │ │ │ │ ├── secureStorage-5.js │ │ │ │ │ │ │ │ ├── securityShield-4.js │ │ │ │ │ │ │ │ ├── selectCorrectCrypto-4.js │ │ │ │ │ │ │ │ ├── selectReward-3.js │ │ │ │ │ │ │ │ ├── selfCustody-5.js │ │ │ │ │ │ │ │ ├── selfCustodyCrypto-4.js │ │ │ │ │ │ │ │ ├── semiCustodial-5.js │ │ │ │ │ │ │ │ ├── sendCryptoFaster-3.js │ │ │ │ │ │ │ │ ├── sendToUsername-4.js │ │ │ │ │ │ │ │ ├── serverCatSystemError-3.js │ │ │ │ │ │ │ │ ├── settlement-1.js │ │ │ │ │ │ │ │ ├── shareOnSocialMedia-4.js │ │ │ │ │ │ │ │ ├── sidechain-3.js │ │ │ │ │ │ │ │ ├── slippageTolerance-4.js │ │ │ │ │ │ │ │ ├── smartContract-2.js │ │ │ │ │ │ │ │ ├── spacedOutSystemError-5.js │ │ │ │ │ │ │ │ ├── squidEmptyState-5.js │ │ │ │ │ │ │ │ ├── stableValue-4.js │ │ │ │ │ │ │ │ ├── stablecoin-1.js │ │ │ │ │ │ │ │ ├── staking-4.js │ │ │ │ │ │ │ │ ├── stakingMissedReturns-3.js │ │ │ │ │ │ │ │ ├── stakingMissedReturnsUsdc-0.js │ │ │ │ │ │ │ │ ├── startToday-3.js │ │ │ │ │ │ │ │ ├── stayInControlSelfHostedWalletsStorage-5.js │ │ │ │ │ │ │ │ ├── stopLimitOrder-4.js │ │ │ │ │ │ │ │ ├── stopLimitOrderDown-5.js │ │ │ │ │ │ │ │ ├── storage-2.js │ │ │ │ │ │ │ │ ├── stressTestedColdStorage-4.js │ │ │ │ │ │ │ │ ├── success-4.js │ │ │ │ │ │ │ │ ├── supportAndMore-5.js │ │ │ │ │ │ │ │ ├── sustainable-1.js │ │ │ │ │ │ │ │ ├── switchAdvancedToSimpleTrading-4.js │ │ │ │ │ │ │ │ ├── taxesDetails-3.js │ │ │ │ │ │ │ │ ├── test-0.js │ │ │ │ │ │ │ │ ├── tools-1.js │ │ │ │ │ │ │ │ ├── tradeGeneral-3.js │ │ │ │ │ │ │ │ ├── tradeHistory-4.js │ │ │ │ │ │ │ │ ├── tradeImmediately-4.js │ │ │ │ │ │ │ │ ├── tradingPerpetualsUsdc-0.js │ │ │ │ │ │ │ │ ├── tradingWithLeverage-0.js │ │ │ │ │ │ │ │ ├── transactionLimit-4.js │ │ │ │ │ │ │ │ ├── trendingHotAssets-3.js │ │ │ │ │ │ │ │ ├── twoIdVerify-3.js │ │ │ │ │ │ │ │ ├── unlockKey-3.js │ │ │ │ │ │ │ │ ├── usdAndUsdc-0.js │ │ │ │ │ │ │ │ ├── usdtToUSDC-2.js │ │ │ │ │ │ │ │ ├── verifyBankTransactions-4.js │ │ │ │ │ │ │ │ ├── verifyCardTransactions-4.js │ │ │ │ │ │ │ │ ├── verifyEmail-4.js │ │ │ │ │ │ │ │ ├── verifyIdDetails-3.js │ │ │ │ │ │ │ │ ├── verifyInfo-4.js │ │ │ │ │ │ │ │ ├── videoRequest-4.js │ │ │ │ │ │ │ │ ├── videoReview-4.js │ │ │ │ │ │ │ │ ├── videoUpload-4.js │ │ │ │ │ │ │ │ ├── vipBadge-1.js │ │ │ │ │ │ │ │ ├── vote-1.js │ │ │ │ │ │ │ │ ├── walletAsset-7.js │ │ │ │ │ │ │ │ ├── walletConfirmation-2.js │ │ │ │ │ │ │ │ ├── walletFlyEmptyState-4.js │ │ │ │ │ │ │ │ ├── walletLoading-3.js │ │ │ │ │ │ │ │ ├── walletNotifications-4.js │ │ │ │ │ │ │ │ ├── walletSecurity-5.js │ │ │ │ │ │ │ │ ├── walletUi-7.js │ │ │ │ │ │ │ │ ├── walletWarning-1.js │ │ │ │ │ │ │ │ ├── watchVideos-3.js │ │ │ │ │ │ │ │ ├── web3ActivityError-3.js │ │ │ │ │ │ │ │ ├── web3ActivitySigned-5.js │ │ │ │ │ │ │ │ ├── web3MobileSetupStart-4.js │ │ │ │ │ │ │ │ ├── web3MobileSetupSuccess-4.js │ │ │ │ │ │ │ │ ├── webRAT-3.js │ │ │ │ │ │ │ │ ├── whyNotBoth-4.js │ │ │ │ │ │ │ │ └── yourContacts-4.js │ │ │ │ │ │ │ └── themeable/ │ │ │ │ │ │ │ ├── accessToAdvancedCharts-5.js │ │ │ │ │ │ │ ├── accountUnderReview-3.js │ │ │ │ │ │ │ ├── add2Fa-5.js │ │ │ │ │ │ │ ├── addBankAccount-4.js │ │ │ │ │ │ │ ├── addCreditCard-4.js │ │ │ │ │ │ │ ├── addMoreCrypto-4.js │ │ │ │ │ │ │ ├── addPhoneNumber-4.js │ │ │ │ │ │ │ ├── advancedTrading-5.js │ │ │ │ │ │ │ ├── advancedTradingChartsIndicatorsCandles-3.js │ │ │ │ │ │ │ ├── advancedTradingUi-3.js │ │ │ │ │ │ │ ├── airdrop-2.js │ │ │ │ │ │ │ ├── alienDonutSystemError-4.js │ │ │ │ │ │ │ ├── anonymous-1.js │ │ │ │ │ │ │ ├── appTrackingTransparency-5.js │ │ │ │ │ │ │ ├── artFrameEmptyState-5.js │ │ │ │ │ │ │ ├── automaticPayments-3.js │ │ │ │ │ │ │ ├── backedByUsDollar-5.js │ │ │ │ │ │ │ ├── baseChartLarge-1.js │ │ │ │ │ │ │ ├── baseCheck-1.js │ │ │ │ │ │ │ ├── baseCoinCryptoLarge-1.js │ │ │ │ │ │ │ ├── baseCoinNetworkLarge-1.js │ │ │ │ │ │ │ ├── baseConnectLarge-1.js │ │ │ │ │ │ │ ├── baseCreatorCoin-1.js │ │ │ │ │ │ │ ├── baseCreatorCoinEmpty-1.js │ │ │ │ │ │ │ ├── baseDecentralizationLarge-1.js │ │ │ │ │ │ │ ├── baseEmptyLarge-1.js │ │ │ │ │ │ │ ├── baseErrorButterfly-0.js │ │ │ │ │ │ │ ├── baseErrorLarge-1.js │ │ │ │ │ │ │ ├── baseLoadingLarge-1.js │ │ │ │ │ │ │ ├── baseLocationLarge-1.js │ │ │ │ │ │ │ ├── baseMintNftLarge-1.js │ │ │ │ │ │ │ ├── baseNetworkLarge-1.js │ │ │ │ │ │ │ ├── baseNftLarge-1.js │ │ │ │ │ │ │ ├── basePaycoinLarge-1.js │ │ │ │ │ │ │ ├── basePeopleLarge-1.js │ │ │ │ │ │ │ ├── basePiechartLarge-1.js │ │ │ │ │ │ │ ├── baseRewardsCalmLarge-1.js │ │ │ │ │ │ │ ├── baseSecurityLarge-1.js │ │ │ │ │ │ │ ├── baseSendLarge-1.js │ │ │ │ │ │ │ ├── baseSocial-2.js │ │ │ │ │ │ │ ├── baseTargetLarge-1.js │ │ │ │ │ │ │ ├── basedInUsa-5.js │ │ │ │ │ │ │ ├── bigBtc-6.js │ │ │ │ │ │ │ ├── bigError-5.js │ │ │ │ │ │ │ ├── bigWarning-5.js │ │ │ │ │ │ │ ├── bitcoinAndOtherCrypto-3.js │ │ │ │ │ │ │ ├── bitcoinGlobe-5.js │ │ │ │ │ │ │ ├── blockchain-3.js │ │ │ │ │ │ │ ├── borrow-4.js │ │ │ │ │ │ │ ├── borrowCoins-2.js │ │ │ │ │ │ │ ├── borrowCoinsBtc-0.js │ │ │ │ │ │ │ ├── borrowWallet-5.js │ │ │ │ │ │ │ ├── brdGift-4.js │ │ │ │ │ │ │ ├── bridge-2.js │ │ │ │ │ │ │ ├── browseDecentralizedApps-6.js │ │ │ │ │ │ │ ├── browserExtension-4.js │ │ │ │ │ │ │ ├── buy-1.js │ │ │ │ │ │ │ ├── buyFirstCrypto-4.js │ │ │ │ │ │ │ ├── camera-4.js │ │ │ │ │ │ │ ├── cardAndPhone-2.js │ │ │ │ │ │ │ ├── cardBoosted-3.js │ │ │ │ │ │ │ ├── cardError-4.js │ │ │ │ │ │ │ ├── cardErrorCB1-0.js │ │ │ │ │ │ │ ├── cardReloadFunds-3.js │ │ │ │ │ │ │ ├── cashExcitement-3.js │ │ │ │ │ │ │ ├── catHoldingWalletEmptyState-4.js │ │ │ │ │ │ │ ├── catLostSystemError-3.js │ │ │ │ │ │ │ ├── cbada-0.js │ │ │ │ │ │ │ ├── cbbtc-2.js │ │ │ │ │ │ │ ├── cbdoge-0.js │ │ │ │ │ │ │ ├── cbltc-0.js │ │ │ │ │ │ │ ├── cbmega-0.js │ │ │ │ │ │ │ ├── cbxrp-0.js │ │ │ │ │ │ │ ├── chickenFishSystemError-3.js │ │ │ │ │ │ │ ├── claimCryptoUsername-2.js │ │ │ │ │ │ │ ├── cloud-1.js │ │ │ │ │ │ │ ├── cloudBacking-3.js │ │ │ │ │ │ │ ├── coinCheckmark-4.js │ │ │ │ │ │ │ ├── coinFifty-1.js │ │ │ │ │ │ │ ├── coinbaseCard-3.js │ │ │ │ │ │ │ ├── coinbaseCardIssue-3.js │ │ │ │ │ │ │ ├── coinbaseCardLock-3.js │ │ │ │ │ │ │ ├── coinbaseCardPocket-3.js │ │ │ │ │ │ │ ├── coinbaseCardSpend-3.js │ │ │ │ │ │ │ ├── coinbaseCardSpendCrypto-4.js │ │ │ │ │ │ │ ├── coinbaseFees-3.js │ │ │ │ │ │ │ ├── coinbaseIsDown-5.js │ │ │ │ │ │ │ ├── coinbaseIsDownMobile-4.js │ │ │ │ │ │ │ ├── coinbaseOneAirdrop-1.js │ │ │ │ │ │ │ ├── coinbaseOneCardWarning-3.js │ │ │ │ │ │ │ ├── coinbaseOneDiscountedAmount-4.js │ │ │ │ │ │ │ ├── coinbaseOneDocWarning-3.js │ │ │ │ │ │ │ ├── coinbaseOneEarn-2.js │ │ │ │ │ │ │ ├── coinbaseOneInsufficientWallet-4.js │ │ │ │ │ │ │ ├── coinbaseOneLogo-4.js │ │ │ │ │ │ │ ├── coinbaseOnePercentOff-4.js │ │ │ │ │ │ │ ├── coinbaseOnePhoneLightning-5.js │ │ │ │ │ │ │ ├── coinbaseOneProtectedCrypto-3.js │ │ │ │ │ │ │ ├── coinbaseOneRewards-4.js │ │ │ │ │ │ │ ├── coinbaseOneSavingFunds-4.js │ │ │ │ │ │ │ ├── coinbaseOneTokenRewards-3.js │ │ │ │ │ │ │ ├── coinbaseOneUSDCBig-1.js │ │ │ │ │ │ │ ├── coinbaseOneUSDCIncentives-4.js │ │ │ │ │ │ │ ├── coinbaseOneWaitlist-4.js │ │ │ │ │ │ │ ├── coinbaseOneWalletWarning-4.js │ │ │ │ │ │ │ ├── coinbaseOneWelcome-4.js │ │ │ │ │ │ │ ├── coinbaseOneZeroPortal-1.js │ │ │ │ │ │ │ ├── coinbaseOneZeroPromotion-1.js │ │ │ │ │ │ │ ├── coinbaseRedesigned-3.js │ │ │ │ │ │ │ ├── coinbaseWalletToTrade-3.js │ │ │ │ │ │ │ ├── coinsInWallet-3.js │ │ │ │ │ │ │ ├── collectableNfts-6.js │ │ │ │ │ │ │ ├── collectingNfts-5.js │ │ │ │ │ │ │ ├── commerceAccounting-4.js │ │ │ │ │ │ │ ├── commerceInvoices-3.js │ │ │ │ │ │ │ ├── communication-1.js │ │ │ │ │ │ │ ├── completeAQuiz-4.js │ │ │ │ │ │ │ ├── congratulationsOnEarningCrypto-3.js │ │ │ │ │ │ │ ├── connectPeople-2.js │ │ │ │ │ │ │ ├── contactsListWarning-3.js │ │ │ │ │ │ │ ├── crossBorderPayments-5.js │ │ │ │ │ │ │ ├── cryptoAndMore-4.js │ │ │ │ │ │ │ ├── cryptoApps-5.js │ │ │ │ │ │ │ ├── cryptoAppsWallet-5.js │ │ │ │ │ │ │ ├── cryptoAssets-6.js │ │ │ │ │ │ │ ├── cryptoEconomy-4.js │ │ │ │ │ │ │ ├── cryptoForBeginners-4.js │ │ │ │ │ │ │ ├── cryptoPortfolio-4.js │ │ │ │ │ │ │ ├── cryptoPortfolioUsdc-0.js │ │ │ │ │ │ │ ├── cryptoWallet-5.js │ │ │ │ │ │ │ ├── currencyPairs-5.js │ │ │ │ │ │ │ ├── dappsArts-4.js │ │ │ │ │ │ │ ├── dappsFinance-6.js │ │ │ │ │ │ │ ├── dappsGaming-4.js │ │ │ │ │ │ │ ├── dappsGeneral-2.js │ │ │ │ │ │ │ ├── dappsL2Support-5.js │ │ │ │ │ │ │ ├── dappsMusic-5.js │ │ │ │ │ │ │ ├── decentralization-5.js │ │ │ │ │ │ │ ├── decentralizedWebWeb3-5.js │ │ │ │ │ │ │ ├── defiDecentralizedBorrowingLending-4.js │ │ │ │ │ │ │ ├── defiDecentralizedTradingExchange-5.js │ │ │ │ │ │ │ ├── defiEarn-3.js │ │ │ │ │ │ │ ├── defiEnrollBoost-3.js │ │ │ │ │ │ │ ├── defiHow-4.js │ │ │ │ │ │ │ ├── defiRisk-3.js │ │ │ │ │ │ │ ├── desktopAuthorized-4.js │ │ │ │ │ │ │ ├── desktopUnknown-3.js │ │ │ │ │ │ │ ├── developer-1.js │ │ │ │ │ │ │ ├── diamondHands-6.js │ │ │ │ │ │ │ ├── didDecentralizedIdentity-4.js │ │ │ │ │ │ │ ├── digitalCollectibles-5.js │ │ │ │ │ │ │ ├── digitalGold-1.js │ │ │ │ │ │ │ ├── directDepositPhone-5.js │ │ │ │ │ │ │ ├── discardAssets-5.js │ │ │ │ │ │ │ ├── docError-3.js │ │ │ │ │ │ │ ├── documentCertified-3.js │ │ │ │ │ │ │ ├── documentSuccess-3.js │ │ │ │ │ │ │ ├── downloadCoinbaseWallet-6.js │ │ │ │ │ │ │ ├── earn-3.js │ │ │ │ │ │ │ ├── earnCryptoCard-4.js │ │ │ │ │ │ │ ├── earnCryptoInterest-5.js │ │ │ │ │ │ │ ├── earnGlobe-1.js │ │ │ │ │ │ │ ├── earnGrowth-4.js │ │ │ │ │ │ │ ├── earnIdVerification-3.js │ │ │ │ │ │ │ ├── earnInterest-4.js │ │ │ │ │ │ │ ├── earnMore-4.js │ │ │ │ │ │ │ ├── earnNuxHome-5.js │ │ │ │ │ │ │ ├── earnSuccess-5.js │ │ │ │ │ │ │ ├── earnToLearn-4.js │ │ │ │ │ │ │ ├── emailNotification-4.js │ │ │ │ │ │ │ ├── emptyCollection-5.js │ │ │ │ │ │ │ ├── emptyStateCheckBackLater-5.js │ │ │ │ │ │ │ ├── emptyStateNft404Page-4.js │ │ │ │ │ │ │ ├── emptyStateNftSoldOut-4.js │ │ │ │ │ │ │ ├── enableBiometrics-5.js │ │ │ │ │ │ │ ├── encryptedEverything-4.js │ │ │ │ │ │ │ ├── engagement-2.js │ │ │ │ │ │ │ ├── ensProfilePic-2.js │ │ │ │ │ │ │ ├── error400-4.js │ │ │ │ │ │ │ ├── errorApp500-6.js │ │ │ │ │ │ │ ├── errorMoblie-1.js │ │ │ │ │ │ │ ├── errorRefresh-4.js │ │ │ │ │ │ │ ├── errorRefreshWeb-1.js │ │ │ │ │ │ │ ├── errorWeb-1.js │ │ │ │ │ │ │ ├── errorWeb400-4.js │ │ │ │ │ │ │ ├── errorWeb404-6.js │ │ │ │ │ │ │ ├── errorWeb404Mobile-1.js │ │ │ │ │ │ │ ├── errorWeb500-4.js │ │ │ │ │ │ │ ├── estimatedAmount-3.js │ │ │ │ │ │ │ ├── ethStakingRewards-4.js │ │ │ │ │ │ │ ├── ethStakingUpsell-5.js │ │ │ │ │ │ │ ├── ethereumToWallet-6.js │ │ │ │ │ │ │ ├── exchange-1.js │ │ │ │ │ │ │ ├── exchangeEmptyState-5.js │ │ │ │ │ │ │ ├── exploreDecentralizedApps-7.js │ │ │ │ │ │ │ ├── faceMatchReal-4.js │ │ │ │ │ │ │ ├── feeScale-4.js │ │ │ │ │ │ │ ├── fiat-1.js │ │ │ │ │ │ │ ├── fileYourCryptoTaxes-5.js │ │ │ │ │ │ │ ├── fileYourCryptoTaxesCheck-6.js │ │ │ │ │ │ │ ├── flipStable-0.js │ │ │ │ │ │ │ ├── focusLimitOrders-4.js │ │ │ │ │ │ │ ├── freeBtc-4.js │ │ │ │ │ │ │ ├── futures-6.js │ │ │ │ │ │ │ ├── futuresAndPerps-0.js │ │ │ │ │ │ │ ├── futuresExpire-0.js │ │ │ │ │ │ │ ├── futuresVsPerps-0.js │ │ │ │ │ │ │ ├── gainsAndLosses-4.js │ │ │ │ │ │ │ ├── gamer-1.js │ │ │ │ │ │ │ ├── gasFeesNetworkFees-4.js │ │ │ │ │ │ │ ├── generative-2.js │ │ │ │ │ │ │ ├── genniusLaunch-0.js │ │ │ │ │ │ │ ├── getStartedInMinutes-4.js │ │ │ │ │ │ │ ├── globalTransactions-5.js │ │ │ │ │ │ │ ├── governance-4.js │ │ │ │ │ │ │ ├── governanceMallet-1.js │ │ │ │ │ │ │ ├── graphChartTrading-0.js │ │ │ │ │ │ │ ├── hardwareWallets-4.js │ │ │ │ │ │ │ ├── hiddenCollection-3.js │ │ │ │ │ │ │ ├── holdCrypto-4.js │ │ │ │ │ │ │ ├── holdingCrypto-3.js │ │ │ │ │ │ │ ├── iceCreamMeltingSystemError-6.js │ │ │ │ │ │ │ ├── idAngles-4.js │ │ │ │ │ │ │ ├── idBack-2.js │ │ │ │ │ │ │ ├── idCard-3.js │ │ │ │ │ │ │ ├── idFront-3.js │ │ │ │ │ │ │ ├── idIssue-3.js │ │ │ │ │ │ │ ├── idVerificationSecure-5.js │ │ │ │ │ │ │ ├── indexer-2.js │ │ │ │ │ │ │ ├── innovation-2.js │ │ │ │ │ │ │ ├── instantUnstakingClock-1.js │ │ │ │ │ │ │ ├── instoAdd2Fa-0.js │ │ │ │ │ │ │ ├── instoAddBankAccount-0.js │ │ │ │ │ │ │ ├── instoCoinbaseOneProtectedCrypto-1.js │ │ │ │ │ │ │ ├── instoDocumentSuccess-1.js │ │ │ │ │ │ │ ├── instoEarnGlobe-0.js │ │ │ │ │ │ │ ├── instoEnableBiometrics-0.js │ │ │ │ │ │ │ ├── instoEthStakingRewards-0.js │ │ │ │ │ │ │ ├── instoEthStakingUpsell-0.js │ │ │ │ │ │ │ ├── instoGovernance-0.js │ │ │ │ │ │ │ ├── instoKeyGenerationComplete-1.js │ │ │ │ │ │ │ ├── instoKeyGenerationPending-0.js │ │ │ │ │ │ │ ├── instoOnChain-2.js │ │ │ │ │ │ │ ├── instoOpenEmail-1.js │ │ │ │ │ │ │ ├── instoPhoneUnknown-0.js │ │ │ │ │ │ │ ├── instoPrimeStaking-0.js │ │ │ │ │ │ │ ├── instoPrivateKey-1.js │ │ │ │ │ │ │ ├── instoRequestSent-1.js │ │ │ │ │ │ │ ├── instoSecurityKeyAuth-0.js │ │ │ │ │ │ │ ├── instoStaking-0.js │ │ │ │ │ │ │ ├── instoStakingMissedReturns-1.js │ │ │ │ │ │ │ ├── instoWallet-0.js │ │ │ │ │ │ │ ├── instoWalletSecurity-0.js │ │ │ │ │ │ │ ├── instoWeb3MobileSetupStart-0.js │ │ │ │ │ │ │ ├── insufficientBalance-5.js │ │ │ │ │ │ │ ├── insuranceProtection-4.js │ │ │ │ │ │ │ ├── invest-3.js │ │ │ │ │ │ │ ├── invite-4.js │ │ │ │ │ │ │ ├── japanVerifyId-3.js │ │ │ │ │ │ │ ├── keyGeneration-6.js │ │ │ │ │ │ │ ├── layerOne-2.js │ │ │ │ │ │ │ ├── layerThree-1.js │ │ │ │ │ │ │ ├── layerTwo-2.js │ │ │ │ │ │ │ ├── layeredNetworks-5.js │ │ │ │ │ │ │ ├── ledgerAccess-4.js │ │ │ │ │ │ │ ├── ledgerPlugin-4.js │ │ │ │ │ │ │ ├── lend-1.js │ │ │ │ │ │ │ ├── leverage-4.js │ │ │ │ │ │ │ ├── lightningNetwork-1.js │ │ │ │ │ │ │ ├── lightningNetworkInvoice-2.js │ │ │ │ │ │ │ ├── lightningNetworkSend-1.js │ │ │ │ │ │ │ ├── lightningNetworkTransfer-1.js │ │ │ │ │ │ │ ├── limitOrders-5.js │ │ │ │ │ │ │ ├── linkingYourWalletToYourCoinbaseAccount-8.js │ │ │ │ │ │ │ ├── liquidationBufferGreen-1.js │ │ │ │ │ │ │ ├── liquidationBufferRed-1.js │ │ │ │ │ │ │ ├── liquidationBufferRedClose-1.js │ │ │ │ │ │ │ ├── liquidationBufferYellow-0.js │ │ │ │ │ │ │ ├── lowCost-2.js │ │ │ │ │ │ │ ├── margin-3.js │ │ │ │ │ │ │ ├── marginWarning-4.js │ │ │ │ │ │ │ ├── mic-4.js │ │ │ │ │ │ │ ├── mining-4.js │ │ │ │ │ │ │ ├── minting-2.js │ │ │ │ │ │ │ ├── moneyDecentralized-5.js │ │ │ │ │ │ │ ├── moreGains-0.js │ │ │ │ │ │ │ ├── multiPlatformMobileAppBrowserExtension-5.js │ │ │ │ │ │ │ ├── multicoinSupport-4.js │ │ │ │ │ │ │ ├── multipleAccountsWalletsForOneUser-5.js │ │ │ │ │ │ │ ├── multiplePortfolios-1.js │ │ │ │ │ │ │ ├── myNameIsSatoshi-3.js │ │ │ │ │ │ │ ├── namePortfolio-1.js │ │ │ │ │ │ │ ├── networkWarning-5.js │ │ │ │ │ │ │ ├── noFees-4.js │ │ │ │ │ │ │ ├── noFeesMotion-1.js │ │ │ │ │ │ │ ├── noLongAddresses-2.js │ │ │ │ │ │ │ ├── notificationsAlt-5.js │ │ │ │ │ │ │ ├── notificationsAndUpdates-3.js │ │ │ │ │ │ │ ├── offChain-1.js │ │ │ │ │ │ │ ├── oilAndGold-2.js │ │ │ │ │ │ │ ├── onChain-2.js │ │ │ │ │ │ │ ├── onTheList-4.js │ │ │ │ │ │ │ ├── openEmail-4.js │ │ │ │ │ │ │ ├── optInPushNotificationsEmail-3.js │ │ │ │ │ │ │ ├── options-0.js │ │ │ │ │ │ │ ├── oracle-1.js │ │ │ │ │ │ │ ├── orderBooks-3.js │ │ │ │ │ │ │ ├── outage-1.js │ │ │ │ │ │ │ ├── p2pGifting-4.js │ │ │ │ │ │ │ ├── p2pPayments-5.js │ │ │ │ │ │ │ ├── paperHands-3.js │ │ │ │ │ │ │ ├── payUpFront-4.js │ │ │ │ │ │ │ ├── pending-5.js │ │ │ │ │ │ │ ├── performance-4.js │ │ │ │ │ │ │ ├── phoneNumber-3.js │ │ │ │ │ │ │ ├── phoneUnknown-3.js │ │ │ │ │ │ │ ├── platform-1.js │ │ │ │ │ │ │ ├── polling-3.js │ │ │ │ │ │ │ ├── portfolioPerformance-5.js │ │ │ │ │ │ │ ├── powerOfCrypto-6.js │ │ │ │ │ │ │ ├── poweredByEthereum-5.js │ │ │ │ │ │ │ ├── predictionsMarkets-0.js │ │ │ │ │ │ │ ├── primeDeFi-4.js │ │ │ │ │ │ │ ├── primeEarn-5.js │ │ │ │ │ │ │ ├── primeStaking-5.js │ │ │ │ │ │ │ ├── private-2.js │ │ │ │ │ │ │ ├── privateKey-1.js │ │ │ │ │ │ │ ├── processing-3.js │ │ │ │ │ │ │ ├── protocol-1.js │ │ │ │ │ │ │ ├── public-1.js │ │ │ │ │ │ │ ├── quest-2.js │ │ │ │ │ │ │ ├── quickAndSimple-5.js │ │ │ │ │ │ │ ├── quickBuy-3.js │ │ │ │ │ │ │ ├── ratingsAndReviews-5.js │ │ │ │ │ │ │ ├── readyToTrade-4.js │ │ │ │ │ │ │ ├── realToUSDC-1.js │ │ │ │ │ │ │ ├── receiveGift-4.js │ │ │ │ │ │ │ ├── receivedCard-3.js │ │ │ │ │ │ │ ├── recommendInvest-6.js │ │ │ │ │ │ │ ├── recurringReward-4.js │ │ │ │ │ │ │ ├── referralsAvatars-6.js │ │ │ │ │ │ │ ├── referralsBitcoin-6.js │ │ │ │ │ │ │ ├── referralsCoinbaseOne-2.js │ │ │ │ │ │ │ ├── referralsGenericCoin-1.js │ │ │ │ │ │ │ ├── referralsWalletPhones-7.js │ │ │ │ │ │ │ ├── refresh-0.js │ │ │ │ │ │ │ ├── remittances-4.js │ │ │ │ │ │ │ ├── requestSent-5.js │ │ │ │ │ │ │ ├── restrictedCountry-7.js │ │ │ │ │ │ │ ├── retailUSDCRewards-5.js │ │ │ │ │ │ │ ├── reviewInfo-4.js │ │ │ │ │ │ │ ├── rocket-4.js │ │ │ │ │ │ │ ├── rotatingRewards-7.js │ │ │ │ │ │ │ ├── routingAccount-4.js │ │ │ │ │ │ │ ├── scalable-1.js │ │ │ │ │ │ │ ├── secureAndTrusted-4.js │ │ │ │ │ │ │ ├── secureGlobalTransactions-5.js │ │ │ │ │ │ │ ├── secureStorage-5.js │ │ │ │ │ │ │ ├── securityShield-4.js │ │ │ │ │ │ │ ├── selectCorrectCrypto-4.js │ │ │ │ │ │ │ ├── selectReward-3.js │ │ │ │ │ │ │ ├── selfCustody-5.js │ │ │ │ │ │ │ ├── selfCustodyCrypto-4.js │ │ │ │ │ │ │ ├── semiCustodial-5.js │ │ │ │ │ │ │ ├── sendCryptoFaster-3.js │ │ │ │ │ │ │ ├── sendToUsername-4.js │ │ │ │ │ │ │ ├── serverCatSystemError-3.js │ │ │ │ │ │ │ ├── settlement-1.js │ │ │ │ │ │ │ ├── shareOnSocialMedia-4.js │ │ │ │ │ │ │ ├── sidechain-3.js │ │ │ │ │ │ │ ├── slippageTolerance-4.js │ │ │ │ │ │ │ ├── smartContract-2.js │ │ │ │ │ │ │ ├── spacedOutSystemError-5.js │ │ │ │ │ │ │ ├── squidEmptyState-5.js │ │ │ │ │ │ │ ├── stableValue-4.js │ │ │ │ │ │ │ ├── stablecoin-1.js │ │ │ │ │ │ │ ├── staking-4.js │ │ │ │ │ │ │ ├── stakingMissedReturns-3.js │ │ │ │ │ │ │ ├── stakingMissedReturnsUsdc-0.js │ │ │ │ │ │ │ ├── startToday-3.js │ │ │ │ │ │ │ ├── stayInControlSelfHostedWalletsStorage-5.js │ │ │ │ │ │ │ ├── stopLimitOrder-4.js │ │ │ │ │ │ │ ├── stopLimitOrderDown-5.js │ │ │ │ │ │ │ ├── storage-2.js │ │ │ │ │ │ │ ├── stressTestedColdStorage-4.js │ │ │ │ │ │ │ ├── success-4.js │ │ │ │ │ │ │ ├── supportAndMore-5.js │ │ │ │ │ │ │ ├── sustainable-1.js │ │ │ │ │ │ │ ├── switchAdvancedToSimpleTrading-4.js │ │ │ │ │ │ │ ├── taxesDetails-3.js │ │ │ │ │ │ │ ├── test-0.js │ │ │ │ │ │ │ ├── tools-1.js │ │ │ │ │ │ │ ├── tradeGeneral-3.js │ │ │ │ │ │ │ ├── tradeHistory-4.js │ │ │ │ │ │ │ ├── tradeImmediately-4.js │ │ │ │ │ │ │ ├── tradingPerpetualsUsdc-0.js │ │ │ │ │ │ │ ├── tradingWithLeverage-0.js │ │ │ │ │ │ │ ├── transactionLimit-4.js │ │ │ │ │ │ │ ├── trendingHotAssets-3.js │ │ │ │ │ │ │ ├── twoIdVerify-3.js │ │ │ │ │ │ │ ├── unlockKey-3.js │ │ │ │ │ │ │ ├── usdAndUsdc-0.js │ │ │ │ │ │ │ ├── usdtToUSDC-2.js │ │ │ │ │ │ │ ├── verifyBankTransactions-4.js │ │ │ │ │ │ │ ├── verifyCardTransactions-4.js │ │ │ │ │ │ │ ├── verifyEmail-4.js │ │ │ │ │ │ │ ├── verifyIdDetails-3.js │ │ │ │ │ │ │ ├── verifyInfo-4.js │ │ │ │ │ │ │ ├── videoRequest-4.js │ │ │ │ │ │ │ ├── videoReview-4.js │ │ │ │ │ │ │ ├── videoUpload-4.js │ │ │ │ │ │ │ ├── vipBadge-1.js │ │ │ │ │ │ │ ├── vote-1.js │ │ │ │ │ │ │ ├── walletAsset-7.js │ │ │ │ │ │ │ ├── walletConfirmation-2.js │ │ │ │ │ │ │ ├── walletFlyEmptyState-4.js │ │ │ │ │ │ │ ├── walletLoading-3.js │ │ │ │ │ │ │ ├── walletNotifications-4.js │ │ │ │ │ │ │ ├── walletSecurity-5.js │ │ │ │ │ │ │ ├── walletUi-7.js │ │ │ │ │ │ │ ├── walletWarning-1.js │ │ │ │ │ │ │ ├── watchVideos-3.js │ │ │ │ │ │ │ ├── web3ActivityError-3.js │ │ │ │ │ │ │ ├── web3ActivitySigned-5.js │ │ │ │ │ │ │ ├── web3MobileSetupStart-4.js │ │ │ │ │ │ │ ├── web3MobileSetupSuccess-4.js │ │ │ │ │ │ │ ├── webRAT-3.js │ │ │ │ │ │ │ ├── whyNotBoth-4.js │ │ │ │ │ │ │ └── yourContacts-4.js │ │ │ │ │ │ └── esm/ │ │ │ │ │ │ └── themeable/ │ │ │ │ │ │ ├── accessToAdvancedCharts-5.js │ │ │ │ │ │ ├── accountUnderReview-3.js │ │ │ │ │ │ ├── add2Fa-5.js │ │ │ │ │ │ ├── addBankAccount-4.js │ │ │ │ │ │ ├── addCreditCard-4.js │ │ │ │ │ │ ├── addMoreCrypto-4.js │ │ │ │ │ │ ├── addPhoneNumber-4.js │ │ │ │ │ │ ├── advancedTrading-5.js │ │ │ │ │ │ ├── advancedTradingChartsIndicatorsCandles-3.js │ │ │ │ │ │ ├── advancedTradingUi-3.js │ │ │ │ │ │ ├── airdrop-2.js │ │ │ │ │ │ ├── alienDonutSystemError-4.js │ │ │ │ │ │ ├── anonymous-1.js │ │ │ │ │ │ ├── appTrackingTransparency-5.js │ │ │ │ │ │ ├── artFrameEmptyState-5.js │ │ │ │ │ │ ├── automaticPayments-3.js │ │ │ │ │ │ ├── backedByUsDollar-5.js │ │ │ │ │ │ ├── baseChartLarge-1.js │ │ │ │ │ │ ├── baseCheck-1.js │ │ │ │ │ │ ├── baseCoinCryptoLarge-1.js │ │ │ │ │ │ ├── baseCoinNetworkLarge-1.js │ │ │ │ │ │ ├── baseConnectLarge-1.js │ │ │ │ │ │ ├── baseCreatorCoin-1.js │ │ │ │ │ │ ├── baseCreatorCoinEmpty-1.js │ │ │ │ │ │ ├── baseDecentralizationLarge-1.js │ │ │ │ │ │ ├── baseEmptyLarge-1.js │ │ │ │ │ │ ├── baseErrorButterfly-0.js │ │ │ │ │ │ ├── baseErrorLarge-1.js │ │ │ │ │ │ ├── baseLoadingLarge-1.js │ │ │ │ │ │ ├── baseLocationLarge-1.js │ │ │ │ │ │ ├── baseMintNftLarge-1.js │ │ │ │ │ │ ├── baseNetworkLarge-1.js │ │ │ │ │ │ ├── baseNftLarge-1.js │ │ │ │ │ │ ├── basePaycoinLarge-1.js │ │ │ │ │ │ ├── basePeopleLarge-1.js │ │ │ │ │ │ ├── basePiechartLarge-1.js │ │ │ │ │ │ ├── baseRewardsCalmLarge-1.js │ │ │ │ │ │ ├── baseSecurityLarge-1.js │ │ │ │ │ │ ├── baseSendLarge-1.js │ │ │ │ │ │ ├── baseSocial-2.js │ │ │ │ │ │ ├── baseTargetLarge-1.js │ │ │ │ │ │ ├── basedInUsa-5.js │ │ │ │ │ │ ├── bigBtc-6.js │ │ │ │ │ │ ├── bigError-5.js │ │ │ │ │ │ ├── bigWarning-5.js │ │ │ │ │ │ ├── bitcoinAndOtherCrypto-3.js │ │ │ │ │ │ ├── bitcoinGlobe-5.js │ │ │ │ │ │ ├── blockchain-3.js │ │ │ │ │ │ ├── borrow-4.js │ │ │ │ │ │ ├── borrowCoins-2.js │ │ │ │ │ │ ├── borrowCoinsBtc-0.js │ │ │ │ │ │ ├── borrowWallet-5.js │ │ │ │ │ │ ├── brdGift-4.js │ │ │ │ │ │ ├── bridge-2.js │ │ │ │ │ │ ├── browseDecentralizedApps-6.js │ │ │ │ │ │ ├── browserExtension-4.js │ │ │ │ │ │ ├── buy-1.js │ │ │ │ │ │ ├── buyFirstCrypto-4.js │ │ │ │ │ │ ├── camera-4.js │ │ │ │ │ │ ├── cardAndPhone-2.js │ │ │ │ │ │ ├── cardBoosted-3.js │ │ │ │ │ │ ├── cardError-4.js │ │ │ │ │ │ ├── cardErrorCB1-0.js │ │ │ │ │ │ ├── cardReloadFunds-3.js │ │ │ │ │ │ ├── cashExcitement-3.js │ │ │ │ │ │ ├── catHoldingWalletEmptyState-4.js │ │ │ │ │ │ ├── catLostSystemError-3.js │ │ │ │ │ │ ├── cbada-0.js │ │ │ │ │ │ ├── cbbtc-2.js │ │ │ │ │ │ ├── cbdoge-0.js │ │ │ │ │ │ ├── cbltc-0.js │ │ │ │ │ │ ├── cbmega-0.js │ │ │ │ │ │ ├── cbxrp-0.js │ │ │ │ │ │ ├── chickenFishSystemError-3.js │ │ │ │ │ │ ├── claimCryptoUsername-2.js │ │ │ │ │ │ ├── cloud-1.js │ │ │ │ │ │ ├── cloudBacking-3.js │ │ │ │ │ │ ├── coinCheckmark-4.js │ │ │ │ │ │ ├── coinFifty-1.js │ │ │ │ │ │ ├── coinbaseCard-3.js │ │ │ │ │ │ ├── coinbaseCardIssue-3.js │ │ │ │ │ │ ├── coinbaseCardLock-3.js │ │ │ │ │ │ ├── coinbaseCardPocket-3.js │ │ │ │ │ │ ├── coinbaseCardSpend-3.js │ │ │ │ │ │ ├── coinbaseCardSpendCrypto-4.js │ │ │ │ │ │ ├── coinbaseFees-3.js │ │ │ │ │ │ ├── coinbaseIsDown-5.js │ │ │ │ │ │ ├── coinbaseIsDownMobile-4.js │ │ │ │ │ │ ├── coinbaseOneAirdrop-1.js │ │ │ │ │ │ ├── coinbaseOneCardWarning-3.js │ │ │ │ │ │ ├── coinbaseOneDiscountedAmount-4.js │ │ │ │ │ │ ├── coinbaseOneDocWarning-3.js │ │ │ │ │ │ ├── coinbaseOneEarn-2.js │ │ │ │ │ │ ├── coinbaseOneInsufficientWallet-4.js │ │ │ │ │ │ ├── coinbaseOneLogo-4.js │ │ │ │ │ │ ├── coinbaseOnePercentOff-4.js │ │ │ │ │ │ ├── coinbaseOnePhoneLightning-5.js │ │ │ │ │ │ ├── coinbaseOneProtectedCrypto-3.js │ │ │ │ │ │ ├── coinbaseOneRewards-4.js │ │ │ │ │ │ ├── coinbaseOneSavingFunds-4.js │ │ │ │ │ │ ├── coinbaseOneTokenRewards-3.js │ │ │ │ │ │ ├── coinbaseOneUSDCBig-1.js │ │ │ │ │ │ ├── coinbaseOneUSDCIncentives-4.js │ │ │ │ │ │ ├── coinbaseOneWaitlist-4.js │ │ │ │ │ │ ├── coinbaseOneWalletWarning-4.js │ │ │ │ │ │ ├── coinbaseOneWelcome-4.js │ │ │ │ │ │ ├── coinbaseOneZeroPortal-1.js │ │ │ │ │ │ ├── coinbaseOneZeroPromotion-1.js │ │ │ │ │ │ ├── coinbaseRedesigned-3.js │ │ │ │ │ │ ├── coinbaseWalletToTrade-3.js │ │ │ │ │ │ ├── coinsInWallet-3.js │ │ │ │ │ │ ├── collectableNfts-6.js │ │ │ │ │ │ ├── collectingNfts-5.js │ │ │ │ │ │ ├── commerceAccounting-4.js │ │ │ │ │ │ ├── commerceInvoices-3.js │ │ │ │ │ │ ├── communication-1.js │ │ │ │ │ │ ├── completeAQuiz-4.js │ │ │ │ │ │ ├── congratulationsOnEarningCrypto-3.js │ │ │ │ │ │ ├── connectPeople-2.js │ │ │ │ │ │ ├── contactsListWarning-3.js │ │ │ │ │ │ ├── crossBorderPayments-5.js │ │ │ │ │ │ ├── cryptoAndMore-4.js │ │ │ │ │ │ ├── cryptoApps-5.js │ │ │ │ │ │ ├── cryptoAppsWallet-5.js │ │ │ │ │ │ ├── cryptoAssets-6.js │ │ │ │ │ │ ├── cryptoEconomy-4.js │ │ │ │ │ │ ├── cryptoForBeginners-4.js │ │ │ │ │ │ ├── cryptoPortfolio-4.js │ │ │ │ │ │ ├── cryptoPortfolioUsdc-0.js │ │ │ │ │ │ ├── cryptoWallet-5.js │ │ │ │ │ │ ├── currencyPairs-5.js │ │ │ │ │ │ ├── dappsArts-4.js │ │ │ │ │ │ ├── dappsFinance-6.js │ │ │ │ │ │ ├── dappsGaming-4.js │ │ │ │ │ │ ├── dappsGeneral-2.js │ │ │ │ │ │ ├── dappsL2Support-5.js │ │ │ │ │ │ ├── dappsMusic-5.js │ │ │ │ │ │ ├── decentralization-5.js │ │ │ │ │ │ ├── decentralizedWebWeb3-5.js │ │ │ │ │ │ ├── defiDecentralizedBorrowingLending-4.js │ │ │ │ │ │ ├── defiDecentralizedTradingExchange-5.js │ │ │ │ │ │ ├── defiEarn-3.js │ │ │ │ │ │ ├── defiEnrollBoost-3.js │ │ │ │ │ │ ├── defiHow-4.js │ │ │ │ │ │ ├── defiRisk-3.js │ │ │ │ │ │ ├── desktopAuthorized-4.js │ │ │ │ │ │ ├── desktopUnknown-3.js │ │ │ │ │ │ ├── developer-1.js │ │ │ │ │ │ ├── diamondHands-6.js │ │ │ │ │ │ ├── didDecentralizedIdentity-4.js │ │ │ │ │ │ ├── digitalCollectibles-5.js │ │ │ │ │ │ ├── digitalGold-1.js │ │ │ │ │ │ ├── directDepositPhone-5.js │ │ │ │ │ │ ├── discardAssets-5.js │ │ │ │ │ │ ├── docError-3.js │ │ │ │ │ │ ├── documentCertified-3.js │ │ │ │ │ │ ├── documentSuccess-3.js │ │ │ │ │ │ ├── downloadCoinbaseWallet-6.js │ │ │ │ │ │ ├── earn-3.js │ │ │ │ │ │ ├── earnCryptoCard-4.js │ │ │ │ │ │ ├── earnCryptoInterest-5.js │ │ │ │ │ │ ├── earnGlobe-1.js │ │ │ │ │ │ ├── earnGrowth-4.js │ │ │ │ │ │ ├── earnIdVerification-3.js │ │ │ │ │ │ ├── earnInterest-4.js │ │ │ │ │ │ ├── earnMore-4.js │ │ │ │ │ │ ├── earnNuxHome-5.js │ │ │ │ │ │ ├── earnSuccess-5.js │ │ │ │ │ │ ├── earnToLearn-4.js │ │ │ │ │ │ ├── emailNotification-4.js │ │ │ │ │ │ ├── emptyCollection-5.js │ │ │ │ │ │ ├── emptyStateCheckBackLater-5.js │ │ │ │ │ │ ├── emptyStateNft404Page-4.js │ │ │ │ │ │ ├── emptyStateNftSoldOut-4.js │ │ │ │ │ │ ├── enableBiometrics-5.js │ │ │ │ │ │ ├── encryptedEverything-4.js │ │ │ │ │ │ ├── engagement-2.js │ │ │ │ │ │ ├── ensProfilePic-2.js │ │ │ │ │ │ ├── error400-4.js │ │ │ │ │ │ ├── errorApp500-6.js │ │ │ │ │ │ ├── errorMoblie-1.js │ │ │ │ │ │ ├── errorRefresh-4.js │ │ │ │ │ │ ├── errorRefreshWeb-1.js │ │ │ │ │ │ ├── errorWeb-1.js │ │ │ │ │ │ ├── errorWeb400-4.js │ │ │ │ │ │ ├── errorWeb404-6.js │ │ │ │ │ │ ├── errorWeb404Mobile-1.js │ │ │ │ │ │ ├── errorWeb500-4.js │ │ │ │ │ │ ├── estimatedAmount-3.js │ │ │ │ │ │ ├── ethStakingRewards-4.js │ │ │ │ │ │ ├── ethStakingUpsell-5.js │ │ │ │ │ │ ├── ethereumToWallet-6.js │ │ │ │ │ │ ├── exchange-1.js │ │ │ │ │ │ ├── exchangeEmptyState-5.js │ │ │ │ │ │ ├── exploreDecentralizedApps-7.js │ │ │ │ │ │ ├── faceMatchReal-4.js │ │ │ │ │ │ ├── feeScale-4.js │ │ │ │ │ │ ├── fiat-1.js │ │ │ │ │ │ ├── fileYourCryptoTaxes-5.js │ │ │ │ │ │ ├── fileYourCryptoTaxesCheck-6.js │ │ │ │ │ │ ├── flipStable-0.js │ │ │ │ │ │ ├── focusLimitOrders-4.js │ │ │ │ │ │ ├── freeBtc-4.js │ │ │ │ │ │ ├── futures-6.js │ │ │ │ │ │ ├── futuresAndPerps-0.js │ │ │ │ │ │ ├── futuresExpire-0.js │ │ │ │ │ │ ├── futuresVsPerps-0.js │ │ │ │ │ │ ├── gainsAndLosses-4.js │ │ │ │ │ │ ├── gamer-1.js │ │ │ │ │ │ ├── gasFeesNetworkFees-4.js │ │ │ │ │ │ ├── generative-2.js │ │ │ │ │ │ ├── genniusLaunch-0.js │ │ │ │ │ │ ├── getStartedInMinutes-4.js │ │ │ │ │ │ ├── globalTransactions-5.js │ │ │ │ │ │ ├── governance-4.js │ │ │ │ │ │ ├── governanceMallet-1.js │ │ │ │ │ │ ├── graphChartTrading-0.js │ │ │ │ │ │ ├── hardwareWallets-4.js │ │ │ │ │ │ ├── hiddenCollection-3.js │ │ │ │ │ │ ├── holdCrypto-4.js │ │ │ │ │ │ ├── holdingCrypto-3.js │ │ │ │ │ │ ├── iceCreamMeltingSystemError-6.js │ │ │ │ │ │ ├── idAngles-4.js │ │ │ │ │ │ ├── idBack-2.js │ │ │ │ │ │ ├── idCard-3.js │ │ │ │ │ │ ├── idFront-3.js │ │ │ │ │ │ ├── idIssue-3.js │ │ │ │ │ │ ├── idVerificationSecure-5.js │ │ │ │ │ │ ├── indexer-2.js │ │ │ │ │ │ ├── innovation-2.js │ │ │ │ │ │ ├── instantUnstakingClock-1.js │ │ │ │ │ │ ├── instoAdd2Fa-0.js │ │ │ │ │ │ ├── instoAddBankAccount-0.js │ │ │ │ │ │ ├── instoCoinbaseOneProtectedCrypto-1.js │ │ │ │ │ │ ├── instoDocumentSuccess-1.js │ │ │ │ │ │ ├── instoEarnGlobe-0.js │ │ │ │ │ │ ├── instoEnableBiometrics-0.js │ │ │ │ │ │ ├── instoEthStakingRewards-0.js │ │ │ │ │ │ ├── instoEthStakingUpsell-0.js │ │ │ │ │ │ ├── instoGovernance-0.js │ │ │ │ │ │ ├── instoKeyGenerationComplete-1.js │ │ │ │ │ │ ├── instoKeyGenerationPending-0.js │ │ │ │ │ │ ├── instoOnChain-2.js │ │ │ │ │ │ ├── instoOpenEmail-1.js │ │ │ │ │ │ ├── instoPhoneUnknown-0.js │ │ │ │ │ │ ├── instoPrimeStaking-0.js │ │ │ │ │ │ ├── instoPrivateKey-1.js │ │ │ │ │ │ ├── instoRequestSent-1.js │ │ │ │ │ │ ├── instoSecurityKeyAuth-0.js │ │ │ │ │ │ ├── instoStaking-0.js │ │ │ │ │ │ ├── instoStakingMissedReturns-1.js │ │ │ │ │ │ ├── instoWallet-0.js │ │ │ │ │ │ ├── instoWalletSecurity-0.js │ │ │ │ │ │ ├── instoWeb3MobileSetupStart-0.js │ │ │ │ │ │ ├── insufficientBalance-5.js │ │ │ │ │ │ ├── insuranceProtection-4.js │ │ │ │ │ │ ├── invest-3.js │ │ │ │ │ │ ├── invite-4.js │ │ │ │ │ │ ├── japanVerifyId-3.js │ │ │ │ │ │ ├── keyGeneration-6.js │ │ │ │ │ │ ├── layerOne-2.js │ │ │ │ │ │ ├── layerThree-1.js │ │ │ │ │ │ ├── layerTwo-2.js │ │ │ │ │ │ ├── layeredNetworks-5.js │ │ │ │ │ │ ├── ledgerAccess-4.js │ │ │ │ │ │ ├── ledgerPlugin-4.js │ │ │ │ │ │ ├── lend-1.js │ │ │ │ │ │ ├── leverage-4.js │ │ │ │ │ │ ├── lightningNetwork-1.js │ │ │ │ │ │ ├── lightningNetworkInvoice-2.js │ │ │ │ │ │ ├── lightningNetworkSend-1.js │ │ │ │ │ │ ├── lightningNetworkTransfer-1.js │ │ │ │ │ │ ├── limitOrders-5.js │ │ │ │ │ │ ├── linkingYourWalletToYourCoinbaseAccount-8.js │ │ │ │ │ │ ├── liquidationBufferGreen-1.js │ │ │ │ │ │ ├── liquidationBufferRed-1.js │ │ │ │ │ │ ├── liquidationBufferRedClose-1.js │ │ │ │ │ │ ├── liquidationBufferYellow-0.js │ │ │ │ │ │ ├── lowCost-2.js │ │ │ │ │ │ ├── margin-3.js │ │ │ │ │ │ ├── marginWarning-4.js │ │ │ │ │ │ ├── mic-4.js │ │ │ │ │ │ ├── mining-4.js │ │ │ │ │ │ ├── minting-2.js │ │ │ │ │ │ ├── moneyDecentralized-5.js │ │ │ │ │ │ ├── moreGains-0.js │ │ │ │ │ │ ├── multiPlatformMobileAppBrowserExtension-5.js │ │ │ │ │ │ ├── multicoinSupport-4.js │ │ │ │ │ │ ├── multipleAccountsWalletsForOneUser-5.js │ │ │ │ │ │ ├── multiplePortfolios-1.js │ │ │ │ │ │ ├── myNameIsSatoshi-3.js │ │ │ │ │ │ ├── namePortfolio-1.js │ │ │ │ │ │ ├── networkWarning-5.js │ │ │ │ │ │ ├── noFees-4.js │ │ │ │ │ │ ├── noFeesMotion-1.js │ │ │ │ │ │ ├── noLongAddresses-2.js │ │ │ │ │ │ ├── notificationsAlt-5.js │ │ │ │ │ │ ├── notificationsAndUpdates-3.js │ │ │ │ │ │ ├── offChain-1.js │ │ │ │ │ │ ├── oilAndGold-2.js │ │ │ │ │ │ ├── onChain-2.js │ │ │ │ │ │ ├── onTheList-4.js │ │ │ │ │ │ ├── openEmail-4.js │ │ │ │ │ │ ├── optInPushNotificationsEmail-3.js │ │ │ │ │ │ ├── options-0.js │ │ │ │ │ │ ├── oracle-1.js │ │ │ │ │ │ ├── orderBooks-3.js │ │ │ │ │ │ ├── outage-1.js │ │ │ │ │ │ ├── p2pGifting-4.js │ │ │ │ │ │ ├── p2pPayments-5.js │ │ │ │ │ │ ├── paperHands-3.js │ │ │ │ │ │ ├── payUpFront-4.js │ │ │ │ │ │ ├── pending-5.js │ │ │ │ │ │ ├── performance-4.js │ │ │ │ │ │ ├── phoneNumber-3.js │ │ │ │ │ │ ├── phoneUnknown-3.js │ │ │ │ │ │ ├── platform-1.js │ │ │ │ │ │ ├── polling-3.js │ │ │ │ │ │ ├── portfolioPerformance-5.js │ │ │ │ │ │ ├── powerOfCrypto-6.js │ │ │ │ │ │ ├── poweredByEthereum-5.js │ │ │ │ │ │ ├── predictionsMarkets-0.js │ │ │ │ │ │ ├── primeDeFi-4.js │ │ │ │ │ │ ├── primeEarn-5.js │ │ │ │ │ │ ├── primeStaking-5.js │ │ │ │ │ │ ├── private-2.js │ │ │ │ │ │ ├── privateKey-1.js │ │ │ │ │ │ ├── processing-3.js │ │ │ │ │ │ ├── protocol-1.js │ │ │ │ │ │ ├── public-1.js │ │ │ │ │ │ ├── quest-2.js │ │ │ │ │ │ ├── quickAndSimple-5.js │ │ │ │ │ │ ├── quickBuy-3.js │ │ │ │ │ │ ├── ratingsAndReviews-5.js │ │ │ │ │ │ ├── readyToTrade-4.js │ │ │ │ │ │ ├── realToUSDC-1.js │ │ │ │ │ │ ├── receiveGift-4.js │ │ │ │ │ │ ├── receivedCard-3.js │ │ │ │ │ │ ├── recommendInvest-6.js │ │ │ │ │ │ ├── recurringReward-4.js │ │ │ │ │ │ ├── referralsAvatars-6.js │ │ │ │ │ │ ├── referralsBitcoin-6.js │ │ │ │ │ │ ├── referralsCoinbaseOne-2.js │ │ │ │ │ │ ├── referralsGenericCoin-1.js │ │ │ │ │ │ ├── referralsWalletPhones-7.js │ │ │ │ │ │ ├── refresh-0.js │ │ │ │ │ │ ├── remittances-4.js │ │ │ │ │ │ ├── requestSent-5.js │ │ │ │ │ │ ├── restrictedCountry-7.js │ │ │ │ │ │ ├── retailUSDCRewards-5.js │ │ │ │ │ │ ├── reviewInfo-4.js │ │ │ │ │ │ ├── rocket-4.js │ │ │ │ │ │ ├── rotatingRewards-7.js │ │ │ │ │ │ ├── routingAccount-4.js │ │ │ │ │ │ ├── scalable-1.js │ │ │ │ │ │ ├── secureAndTrusted-4.js │ │ │ │ │ │ ├── secureGlobalTransactions-5.js │ │ │ │ │ │ ├── secureStorage-5.js │ │ │ │ │ │ ├── securityShield-4.js │ │ │ │ │ │ ├── selectCorrectCrypto-4.js │ │ │ │ │ │ ├── selectReward-3.js │ │ │ │ │ │ ├── selfCustody-5.js │ │ │ │ │ │ ├── selfCustodyCrypto-4.js │ │ │ │ │ │ ├── semiCustodial-5.js │ │ │ │ │ │ ├── sendCryptoFaster-3.js │ │ │ │ │ │ ├── sendToUsername-4.js │ │ │ │ │ │ ├── serverCatSystemError-3.js │ │ │ │ │ │ ├── settlement-1.js │ │ │ │ │ │ ├── shareOnSocialMedia-4.js │ │ │ │ │ │ ├── sidechain-3.js │ │ │ │ │ │ ├── slippageTolerance-4.js │ │ │ │ │ │ ├── smartContract-2.js │ │ │ │ │ │ ├── spacedOutSystemError-5.js │ │ │ │ │ │ ├── squidEmptyState-5.js │ │ │ │ │ │ ├── stableValue-4.js │ │ │ │ │ │ ├── stablecoin-1.js │ │ │ │ │ │ ├── staking-4.js │ │ │ │ │ │ ├── stakingMissedReturns-3.js │ │ │ │ │ │ ├── stakingMissedReturnsUsdc-0.js │ │ │ │ │ │ ├── startToday-3.js │ │ │ │ │ │ ├── stayInControlSelfHostedWalletsStorage-5.js │ │ │ │ │ │ ├── stopLimitOrder-4.js │ │ │ │ │ │ ├── stopLimitOrderDown-5.js │ │ │ │ │ │ ├── storage-2.js │ │ │ │ │ │ ├── stressTestedColdStorage-4.js │ │ │ │ │ │ ├── success-4.js │ │ │ │ │ │ ├── supportAndMore-5.js │ │ │ │ │ │ ├── sustainable-1.js │ │ │ │ │ │ ├── switchAdvancedToSimpleTrading-4.js │ │ │ │ │ │ ├── taxesDetails-3.js │ │ │ │ │ │ ├── test-0.js │ │ │ │ │ │ ├── tools-1.js │ │ │ │ │ │ ├── tradeGeneral-3.js │ │ │ │ │ │ ├── tradeHistory-4.js │ │ │ │ │ │ ├── tradeImmediately-4.js │ │ │ │ │ │ ├── tradingPerpetualsUsdc-0.js │ │ │ │ │ │ ├── tradingWithLeverage-0.js │ │ │ │ │ │ ├── transactionLimit-4.js │ │ │ │ │ │ ├── trendingHotAssets-3.js │ │ │ │ │ │ ├── twoIdVerify-3.js │ │ │ │ │ │ ├── unlockKey-3.js │ │ │ │ │ │ ├── usdAndUsdc-0.js │ │ │ │ │ │ ├── usdtToUSDC-2.js │ │ │ │ │ │ ├── verifyBankTransactions-4.js │ │ │ │ │ │ ├── verifyCardTransactions-4.js │ │ │ │ │ │ ├── verifyEmail-4.js │ │ │ │ │ │ ├── verifyIdDetails-3.js │ │ │ │ │ │ ├── verifyInfo-4.js │ │ │ │ │ │ ├── videoRequest-4.js │ │ │ │ │ │ ├── videoReview-4.js │ │ │ │ │ │ ├── videoUpload-4.js │ │ │ │ │ │ ├── vipBadge-1.js │ │ │ │ │ │ ├── vote-1.js │ │ │ │ │ │ ├── walletAsset-7.js │ │ │ │ │ │ ├── walletConfirmation-2.js │ │ │ │ │ │ ├── walletFlyEmptyState-4.js │ │ │ │ │ │ ├── walletLoading-3.js │ │ │ │ │ │ ├── walletNotifications-4.js │ │ │ │ │ │ ├── walletSecurity-5.js │ │ │ │ │ │ ├── walletUi-7.js │ │ │ │ │ │ ├── walletWarning-1.js │ │ │ │ │ │ ├── watchVideos-3.js │ │ │ │ │ │ ├── web3ActivityError-3.js │ │ │ │ │ │ ├── web3ActivitySigned-5.js │ │ │ │ │ │ ├── web3MobileSetupStart-4.js │ │ │ │ │ │ ├── web3MobileSetupSuccess-4.js │ │ │ │ │ │ ├── webRAT-3.js │ │ │ │ │ │ ├── whyNotBoth-4.js │ │ │ │ │ │ └── yourContacts-4.js │ │ │ │ │ └── types/ │ │ │ │ │ └── HeroSquareName.ts │ │ │ │ ├── pictogram/ │ │ │ │ │ ├── data/ │ │ │ │ │ │ ├── descriptionMap.ts │ │ │ │ │ │ ├── names.ts │ │ │ │ │ │ ├── svgEsmMap.ts │ │ │ │ │ │ ├── svgJsMap.ts │ │ │ │ │ │ └── versionMap.ts │ │ │ │ │ ├── svgJs/ │ │ │ │ │ │ ├── cjs/ │ │ │ │ │ │ │ ├── dark/ │ │ │ │ │ │ │ │ ├── 2fa-3.js │ │ │ │ │ │ │ │ ├── accountsNavigation-7.js │ │ │ │ │ │ │ │ ├── accreditedInvestor-1.js │ │ │ │ │ │ │ │ ├── add-3.js │ │ │ │ │ │ │ │ ├── addCard-3.js │ │ │ │ │ │ │ │ ├── addPayment-3.js │ │ │ │ │ │ │ │ ├── addPhone-3.js │ │ │ │ │ │ │ │ ├── addToWatchlist-3.js │ │ │ │ │ │ │ │ ├── addWallet-3.js │ │ │ │ │ │ │ │ ├── addressBook-3.js │ │ │ │ │ │ │ │ ├── advancedTradingDesktop-4.js │ │ │ │ │ │ │ │ ├── advancedTradingNavigation-6.js │ │ │ │ │ │ │ │ ├── advancedTradingRebates-3.js │ │ │ │ │ │ │ │ ├── agent-5.js │ │ │ │ │ │ │ │ ├── alerts-3.js │ │ │ │ │ │ │ │ ├── alertsCoinbaseOne-0.js │ │ │ │ │ │ │ │ ├── analyticsNavigation-5.js │ │ │ │ │ │ │ │ ├── apartOfDropsNft-3.js │ │ │ │ │ │ │ │ ├── applyForHigherLimits-3.js │ │ │ │ │ │ │ │ ├── apyInterest-5.js │ │ │ │ │ │ │ │ ├── arrowsUpDown-0.js │ │ │ │ │ │ │ │ ├── assetEncryption-5.js │ │ │ │ │ │ │ │ ├── assetHubNavigation-5.js │ │ │ │ │ │ │ │ ├── assetManagement-3.js │ │ │ │ │ │ │ │ ├── assetManagementNavigation-1.js │ │ │ │ │ │ │ │ ├── assetMeasurements-5.js │ │ │ │ │ │ │ │ ├── assetMovement-5.js │ │ │ │ │ │ │ │ ├── authenticationApp-3.js │ │ │ │ │ │ │ │ ├── authenticator-3.js │ │ │ │ │ │ │ │ ├── authenticatorAlt-3.js │ │ │ │ │ │ │ │ ├── authenticatorProgress-3.js │ │ │ │ │ │ │ │ ├── avatarAa-0.js │ │ │ │ │ │ │ │ ├── avatarAb-0.js │ │ │ │ │ │ │ │ ├── avatarAc-0.js │ │ │ │ │ │ │ │ ├── avatarAd-0.js │ │ │ │ │ │ │ │ ├── avatarAe-0.js │ │ │ │ │ │ │ │ ├── avatarAf-0.js │ │ │ │ │ │ │ │ ├── avatarAg-0.js │ │ │ │ │ │ │ │ ├── avatarAh-0.js │ │ │ │ │ │ │ │ ├── avatarAi-0.js │ │ │ │ │ │ │ │ ├── avatarAj-0.js │ │ │ │ │ │ │ │ ├── avatarBa-0.js │ │ │ │ │ │ │ │ ├── avatarBb-0.js │ │ │ │ │ │ │ │ ├── avatarBc-0.js │ │ │ │ │ │ │ │ ├── avatarBd-0.js │ │ │ │ │ │ │ │ ├── avatarBe-0.js │ │ │ │ │ │ │ │ ├── avatarBf-0.js │ │ │ │ │ │ │ │ ├── avatarBg-0.js │ │ │ │ │ │ │ │ ├── avatarBh-0.js │ │ │ │ │ │ │ │ ├── avatarBi-0.js │ │ │ │ │ │ │ │ ├── avatarBj-0.js │ │ │ │ │ │ │ │ ├── avatarCa-0.js │ │ │ │ │ │ │ │ ├── avatarCb-0.js │ │ │ │ │ │ │ │ ├── avatarCc-0.js │ │ │ │ │ │ │ │ ├── avatarCd-0.js │ │ │ │ │ │ │ │ ├── avatarCe-0.js │ │ │ │ │ │ │ │ ├── avatarCf-0.js │ │ │ │ │ │ │ │ ├── avatarCg-0.js │ │ │ │ │ │ │ │ ├── avatarCh-0.js │ │ │ │ │ │ │ │ ├── avatarCi-0.js │ │ │ │ │ │ │ │ ├── avatarCj-0.js │ │ │ │ │ │ │ │ ├── avatarDa-0.js │ │ │ │ │ │ │ │ ├── avatarDb-0.js │ │ │ │ │ │ │ │ ├── avatarDc-0.js │ │ │ │ │ │ │ │ ├── avatarDd-0.js │ │ │ │ │ │ │ │ ├── avatarDe-0.js │ │ │ │ │ │ │ │ ├── avatarDf-0.js │ │ │ │ │ │ │ │ ├── avatarDg-0.js │ │ │ │ │ │ │ │ ├── avatarDh-0.js │ │ │ │ │ │ │ │ ├── avatarDi-0.js │ │ │ │ │ │ │ │ ├── avatarDj-0.js │ │ │ │ │ │ │ │ ├── avatarEa-0.js │ │ │ │ │ │ │ │ ├── avatarEb-0.js │ │ │ │ │ │ │ │ ├── avatarEc-0.js │ │ │ │ │ │ │ │ ├── avatarEd-0.js │ │ │ │ │ │ │ │ ├── avatarEe-0.js │ │ │ │ │ │ │ │ ├── avatarEf-0.js │ │ │ │ │ │ │ │ ├── avatarEg-0.js │ │ │ │ │ │ │ │ ├── avatarEh-0.js │ │ │ │ │ │ │ │ ├── avatarEi-0.js │ │ │ │ │ │ │ │ ├── avatarEj-0.js │ │ │ │ │ │ │ │ ├── avatarFa-0.js │ │ │ │ │ │ │ │ ├── avatarFb-0.js │ │ │ │ │ │ │ │ ├── avatarFc-0.js │ │ │ │ │ │ │ │ ├── avatarFd-0.js │ │ │ │ │ │ │ │ ├── avatarFe-0.js │ │ │ │ │ │ │ │ ├── avatarFf-0.js │ │ │ │ │ │ │ │ ├── avatarFg-0.js │ │ │ │ │ │ │ │ ├── avatarFh-0.js │ │ │ │ │ │ │ │ ├── avatarFi-0.js │ │ │ │ │ │ │ │ ├── avatarFj-0.js │ │ │ │ │ │ │ │ ├── avatarGa-0.js │ │ │ │ │ │ │ │ ├── avatarGb-0.js │ │ │ │ │ │ │ │ ├── avatarGc-0.js │ │ │ │ │ │ │ │ ├── avatarGd-0.js │ │ │ │ │ │ │ │ ├── avatarGe-0.js │ │ │ │ │ │ │ │ ├── avatarGf-0.js │ │ │ │ │ │ │ │ ├── avatarGg-0.js │ │ │ │ │ │ │ │ ├── avatarGh-0.js │ │ │ │ │ │ │ │ ├── avatarGi-0.js │ │ │ │
Showing preview only (999K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (10069 symbols across 1271 files)
FILE: .agents/skills/skill-creator/eval-viewer/generate_review.py
function get_mime_type (line 52) | def get_mime_type(path: Path) -> str:
function find_runs (line 60) | def find_runs(workspace: Path) -> list[dict]:
function _find_runs_recursive (line 68) | def _find_runs_recursive(root: Path, current: Path, runs: list[dict]) ->...
function build_run (line 85) | def build_run(root: Path, run_dir: Path) -> dict | None:
function embed_file (line 149) | def embed_file(path: Path) -> dict:
function load_previous_iteration (line 213) | def load_previous_iteration(workspace: Path) -> dict[str, dict]:
function generate_html (line 250) | def generate_html(
function _kill_port (line 288) | def _kill_port(port: int) -> None:
class ReviewHandler (line 308) | class ReviewHandler(BaseHTTPRequestHandler):
method __init__ (line 315) | def __init__(
method do_GET (line 332) | def do_GET(self) -> None:
method do_POST (line 361) | def do_POST(self) -> None:
method log_message (line 382) | def log_message(self, format: str, *args: object) -> None:
function main (line 387) | def main() -> None:
FILE: .agents/skills/skill-creator/scripts/aggregate_benchmark.py
function calculate_stats (line 45) | def calculate_stats(values: list[float]) -> dict:
function load_run_results (line 67) | def load_run_results(benchmark_dir: Path) -> dict:
function aggregate_results (line 176) | def aggregate_results(results: dict) -> dict:
function generate_benchmark (line 227) | def generate_benchmark(benchmark_dir: Path, skill_name: str = "", skill_...
function generate_markdown (line 281) | def generate_markdown(benchmark: dict) -> str:
function main (line 338) | def main():
FILE: .agents/skills/skill-creator/scripts/generate_report.py
function generate_html (line 16) | def generate_html(data: dict, auto_refresh: bool = False, skill_name: st...
function main (line 304) | def main():
FILE: .agents/skills/skill-creator/scripts/improve_description.py
function _call_claude (line 20) | def _call_claude(prompt: str, model: str | None, timeout: int = 300) -> ...
function improve_description (line 50) | def improve_description(
function main (line 194) | def main():
FILE: .agents/skills/skill-creator/scripts/package_skill.py
function should_exclude (line 27) | def should_exclude(rel_path: Path) -> bool:
function package_skill (line 42) | def package_skill(skill_path, output_dir=None):
function main (line 111) | def main():
FILE: .agents/skills/skill-creator/scripts/quick_validate.py
function validate_skill (line 12) | def validate_skill(skill_path):
FILE: .agents/skills/skill-creator/scripts/run_eval.py
function find_project_root (line 22) | def find_project_root() -> Path:
function run_single_query (line 35) | def run_single_query(
function run_eval (line 184) | def run_eval(
function main (line 259) | def main():
FILE: .agents/skills/skill-creator/scripts/run_loop.py
function split_eval_set (line 24) | def split_eval_set(eval_set: list[dict], holdout: float, seed: int = 42)...
function run_loop (line 47) | def run_loop(
function main (line 244) | def main():
FILE: .agents/skills/skill-creator/scripts/utils.py
function parse_skill_md (line 7) | def parse_skill_md(skill_path: Path) -> tuple[str, str, str]:
FILE: .yarn/releases/yarn-4.9.2.cjs
function wc (line 4) | function wc(t,e){return Object.assign(new Error(`${t}: ${e}`),{code:t})}
function YVe (line 4) | function YVe(t){return wc("EBUSY",t)}
function VVe (line 4) | function VVe(t,e){return wc("ENOSYS",`${t}, ${e}`)}
function KVe (line 4) | function KVe(t){return wc("EINVAL",`invalid argument, ${t}`)}
function Uo (line 4) | function Uo(t){return wc("EBADF",`bad file descriptor, ${t}`)}
function JVe (line 4) | function JVe(t){return wc("ENOENT",`no such file or directory, ${t}`)}
function zVe (line 4) | function zVe(t){return wc("ENOTDIR",`not a directory, ${t}`)}
function ZVe (line 4) | function ZVe(t){return wc("EISDIR",`illegal operation on a directory, ${...
function XVe (line 4) | function XVe(t){return wc("EEXIST",`file already exists, ${t}`)}
function $Ve (line 4) | function $Ve(t){return wc("EROFS",`read-only filesystem, ${t}`)}
function e7e (line 4) | function e7e(t){return wc("ENOTEMPTY",`directory not empty, ${t}`)}
function t7e (line 4) | function t7e(t){return wc("EOPNOTSUPP",`operation not supported, ${t}`)}
function I_ (line 4) | function I_(){return wc("ERR_DIR_CLOSED","Directory handle was closed")}
function y$ (line 4) | function y$(){return new tE}
function r7e (line 4) | function r7e(){return sx(y$())}
function sx (line 4) | function sx(t){for(let e in t)if(Object.hasOwn(t,e)){let r=t[e];typeof r...
function n7e (line 4) | function n7e(t){let e=new rE;for(let r in t)if(Object.hasOwn(t,r)){let s...
function v_ (line 4) | function v_(t,e){if(t.atimeMs!==e.atimeMs||t.birthtimeMs!==e.birthtimeMs...
method constructor (line 4) | constructor(){this.name="";this.path="";this.mode=0}
method isBlockDevice (line 4) | isBlockDevice(){return!1}
method isCharacterDevice (line 4) | isCharacterDevice(){return!1}
method isDirectory (line 4) | isDirectory(){return(this.mode&61440)===16384}
method isFIFO (line 4) | isFIFO(){return!1}
method isFile (line 4) | isFile(){return(this.mode&61440)===32768}
method isSocket (line 4) | isSocket(){return!1}
method isSymbolicLink (line 4) | isSymbolicLink(){return(this.mode&61440)===40960}
method constructor (line 4) | constructor(){this.uid=0;this.gid=0;this.size=0;this.blksize=0;this.atim...
method isBlockDevice (line 4) | isBlockDevice(){return!1}
method isCharacterDevice (line 4) | isCharacterDevice(){return!1}
method isDirectory (line 4) | isDirectory(){return(this.mode&61440)===16384}
method isFIFO (line 4) | isFIFO(){return!1}
method isFile (line 4) | isFile(){return(this.mode&61440)===32768}
method isSocket (line 4) | isSocket(){return!1}
method isSymbolicLink (line 4) | isSymbolicLink(){return(this.mode&61440)===40960}
method constructor (line 4) | constructor(){this.uid=BigInt(0);this.gid=BigInt(0);this.size=BigInt(0);...
method isBlockDevice (line 4) | isBlockDevice(){return!1}
method isCharacterDevice (line 4) | isCharacterDevice(){return!1}
method isDirectory (line 4) | isDirectory(){return(this.mode&BigInt(61440))===BigInt(16384)}
method isFIFO (line 4) | isFIFO(){return!1}
method isFile (line 4) | isFile(){return(this.mode&BigInt(61440))===BigInt(32768)}
method isSocket (line 4) | isSocket(){return!1}
method isSymbolicLink (line 4) | isSymbolicLink(){return(this.mode&BigInt(61440))===BigInt(40960)}
function l7e (line 4) | function l7e(t){let e,r;if(e=t.match(o7e))t=e[1];else if(r=t.match(a7e))...
function c7e (line 4) | function c7e(t){t=t.replace(/\\/g,"/");let e,r;return(e=t.match(i7e))?t=...
function ox (line 4) | function ox(t,e){return t===ue?I$(e):D_(e)}
function ax (line 4) | async function ax(t,e){let r="0123456789abcdef";await t.mkdirPromise(e.i...
function C$ (line 4) | async function C$(t,e,r,s,a){let n=t.pathUtils.normalize(e),c=r.pathUtil...
function b_ (line 4) | async function b_(t,e,r,s,a,n,c){let f=c.didParentExist?await w$(r,s):nu...
function w$ (line 4) | async function w$(t,e){try{return await t.lstatPromise(e)}catch{return n...
function f7e (line 4) | async function f7e(t,e,r,s,a,n,c,f,p){if(a!==null&&!a.isDirectory())if(p...
function A7e (line 4) | async function A7e(t,e,r,s,a,n,c,f,p,h){let E=await n.checksumFilePromis...
function p7e (line 4) | async function p7e(t,e,r,s,a,n,c,f,p){if(a!==null)if(p.overwrite)t.push(...
function h7e (line 4) | async function h7e(t,e,r,s,a,n,c,f,p){return p.linkStrategy?.type==="Har...
function g7e (line 4) | async function g7e(t,e,r,s,a,n,c,f,p){if(a!==null)if(p.overwrite)t.push(...
function lx (line 4) | function lx(t,e,r,s){let a=()=>{let n=r.shift();if(typeof n>"u")return n...
method constructor (line 4) | constructor(e,r,s={}){this.path=e;this.nextDirent=r;this.opts=s;this.clo...
method throwIfClosed (line 4) | throwIfClosed(){if(this.closed)throw I_()}
method [Symbol.asyncIterator] (line 4) | async*[Symbol.asyncIterator](){try{let e;for(;(e=await this.read())!==nu...
method read (line 4) | read(e){let r=this.readSync();return typeof e<"u"?e(null,r):Promise.reso...
method readSync (line 4) | readSync(){return this.throwIfClosed(),this.nextDirent()}
method close (line 4) | close(e){return this.closeSync(),typeof e<"u"?e(null):Promise.resolve()}
method closeSync (line 4) | closeSync(){this.throwIfClosed(),this.opts.onClose?.(),this.closed=!0}
function v$ (line 4) | function v$(t,e){if(t!==e)throw new Error(`Invalid StatWatcher status: e...
method constructor (line 4) | constructor(r,s,{bigint:a=!1}={}){super();this.status="ready";this.chang...
method create (line 4) | static create(r,s,a){let n=new t(r,s,a);return n.start(),n}
method start (line 4) | start(){v$(this.status,"ready"),this.status="running",this.startTimeout=...
method stop (line 4) | stop(){v$(this.status,"running"),this.status="stopped",this.startTimeout...
method stat (line 4) | stat(){try{return this.fakeFs.statSync(this.path,{bigint:this.bigint})}c...
method makeInterval (line 4) | makeInterval(r){let s=setInterval(()=>{let a=this.stat(),n=this.lastStat...
method registerChangeListener (line 4) | registerChangeListener(r,s){this.addListener("change",r),this.changeList...
method unregisterChangeListener (line 4) | unregisterChangeListener(r){this.removeListener("change",r);let s=this.c...
method unregisterAllChangeListeners (line 4) | unregisterAllChangeListeners(){for(let r of this.changeListeners.keys())...
method hasChangeListeners (line 4) | hasChangeListeners(){return this.changeListeners.size>0}
method ref (line 4) | ref(){for(let r of this.changeListeners.values())r.ref();return this}
method unref (line 4) | unref(){for(let r of this.changeListeners.values())r.unref();return this}
function nE (line 4) | function nE(t,e,r,s){let a,n,c,f;switch(typeof r){case"function":a=!1,n=...
function dd (line 4) | function dd(t,e,r){let s=ux.get(t);if(typeof s>"u")return;let a=s.get(e)...
function md (line 4) | function md(t){let e=ux.get(t);if(!(typeof e>"u"))for(let r of e.keys())...
function d7e (line 4) | function d7e(t){let e=t.match(/\r?\n/g);if(e===null)return P$.EOL;let r=...
function yd (line 7) | function yd(t,e){return e.replace(/\r?\n/g,d7e(t))}
method constructor (line 7) | constructor(e){this.pathUtils=e}
method genTraversePromise (line 7) | async*genTraversePromise(e,{stableSort:r=!1}={}){let s=[e];for(;s.length...
method checksumFilePromise (line 7) | async checksumFilePromise(e,{algorithm:r="sha512"}={}){let s=await this....
method removePromise (line 7) | async removePromise(e,{recursive:r=!0,maxRetries:s=5}={}){let a;try{a=aw...
method removeSync (line 7) | removeSync(e,{recursive:r=!0}={}){let s;try{s=this.lstatSync(e)}catch(a)...
method mkdirpPromise (line 7) | async mkdirpPromise(e,{chmod:r,utimes:s}={}){if(e=this.resolve(e),e===th...
method mkdirpSync (line 7) | mkdirpSync(e,{chmod:r,utimes:s}={}){if(e=this.resolve(e),e===this.pathUt...
method copyPromise (line 7) | async copyPromise(e,r,{baseFs:s=this,overwrite:a=!0,stableSort:n=!1,stab...
method copySync (line 7) | copySync(e,r,{baseFs:s=this,overwrite:a=!0}={}){let n=s.lstatSync(r),c=t...
method changeFilePromise (line 7) | async changeFilePromise(e,r,s={}){return Buffer.isBuffer(r)?this.changeF...
method changeFileBufferPromise (line 7) | async changeFileBufferPromise(e,r,{mode:s}={}){let a=Buffer.alloc(0);try...
method changeFileTextPromise (line 7) | async changeFileTextPromise(e,r,{automaticNewlines:s,mode:a}={}){let n="...
method changeFileSync (line 7) | changeFileSync(e,r,s={}){return Buffer.isBuffer(r)?this.changeFileBuffer...
method changeFileBufferSync (line 7) | changeFileBufferSync(e,r,{mode:s}={}){let a=Buffer.alloc(0);try{a=this.r...
method changeFileTextSync (line 7) | changeFileTextSync(e,r,{automaticNewlines:s=!1,mode:a}={}){let n="";try{...
method movePromise (line 7) | async movePromise(e,r){try{await this.renamePromise(e,r)}catch(s){if(s.c...
method moveSync (line 7) | moveSync(e,r){try{this.renameSync(e,r)}catch(s){if(s.code==="EXDEV")this...
method lockPromise (line 7) | async lockPromise(e,r){let s=`${e}.flock`,a=1e3/60,n=Date.now(),c=null,f...
method readJsonPromise (line 7) | async readJsonPromise(e){let r=await this.readFilePromise(e,"utf8");try{...
method readJsonSync (line 7) | readJsonSync(e){let r=this.readFileSync(e,"utf8");try{return JSON.parse(...
method writeJsonPromise (line 7) | async writeJsonPromise(e,r,{compact:s=!1}={}){let a=s?0:2;return await t...
method writeJsonSync (line 8) | writeJsonSync(e,r,{compact:s=!1}={}){let a=s?0:2;return this.writeFileSy...
method preserveTimePromise (line 9) | async preserveTimePromise(e,r){let s=await this.lstatPromise(e),a=await ...
method preserveTimeSync (line 9) | async preserveTimeSync(e,r){let s=this.lstatSync(e),a=r();typeof a<"u"&&...
method constructor (line 9) | constructor(){super(K)}
method getExtractHint (line 9) | getExtractHint(e){return this.baseFs.getExtractHint(e)}
method resolve (line 9) | resolve(e){return this.mapFromBase(this.baseFs.resolve(this.mapToBase(e)))}
method getRealPath (line 9) | getRealPath(){return this.mapFromBase(this.baseFs.getRealPath())}
method openPromise (line 9) | async openPromise(e,r,s){return this.baseFs.openPromise(this.mapToBase(e...
method openSync (line 9) | openSync(e,r,s){return this.baseFs.openSync(this.mapToBase(e),r,s)}
method opendirPromise (line 9) | async opendirPromise(e,r){return Object.assign(await this.baseFs.opendir...
method opendirSync (line 9) | opendirSync(e,r){return Object.assign(this.baseFs.opendirSync(this.mapTo...
method readPromise (line 9) | async readPromise(e,r,s,a,n){return await this.baseFs.readPromise(e,r,s,...
method readSync (line 9) | readSync(e,r,s,a,n){return this.baseFs.readSync(e,r,s,a,n)}
method writePromise (line 9) | async writePromise(e,r,s,a,n){return typeof r=="string"?await this.baseF...
method writeSync (line 9) | writeSync(e,r,s,a,n){return typeof r=="string"?this.baseFs.writeSync(e,r...
method closePromise (line 9) | async closePromise(e){return this.baseFs.closePromise(e)}
method closeSync (line 9) | closeSync(e){this.baseFs.closeSync(e)}
method createReadStream (line 9) | createReadStream(e,r){return this.baseFs.createReadStream(e!==null?this....
method createWriteStream (line 9) | createWriteStream(e,r){return this.baseFs.createWriteStream(e!==null?thi...
method realpathPromise (line 9) | async realpathPromise(e){return this.mapFromBase(await this.baseFs.realp...
method realpathSync (line 9) | realpathSync(e){return this.mapFromBase(this.baseFs.realpathSync(this.ma...
method existsPromise (line 9) | async existsPromise(e){return this.baseFs.existsPromise(this.mapToBase(e))}
method existsSync (line 9) | existsSync(e){return this.baseFs.existsSync(this.mapToBase(e))}
method accessSync (line 9) | accessSync(e,r){return this.baseFs.accessSync(this.mapToBase(e),r)}
method accessPromise (line 9) | async accessPromise(e,r){return this.baseFs.accessPromise(this.mapToBase...
method statPromise (line 9) | async statPromise(e,r){return this.baseFs.statPromise(this.mapToBase(e),r)}
method statSync (line 9) | statSync(e,r){return this.baseFs.statSync(this.mapToBase(e),r)}
method fstatPromise (line 9) | async fstatPromise(e,r){return this.baseFs.fstatPromise(e,r)}
method fstatSync (line 9) | fstatSync(e,r){return this.baseFs.fstatSync(e,r)}
method lstatPromise (line 9) | lstatPromise(e,r){return this.baseFs.lstatPromise(this.mapToBase(e),r)}
method lstatSync (line 9) | lstatSync(e,r){return this.baseFs.lstatSync(this.mapToBase(e),r)}
method fchmodPromise (line 9) | async fchmodPromise(e,r){return this.baseFs.fchmodPromise(e,r)}
method fchmodSync (line 9) | fchmodSync(e,r){return this.baseFs.fchmodSync(e,r)}
method chmodPromise (line 9) | async chmodPromise(e,r){return this.baseFs.chmodPromise(this.mapToBase(e...
method chmodSync (line 9) | chmodSync(e,r){return this.baseFs.chmodSync(this.mapToBase(e),r)}
method fchownPromise (line 9) | async fchownPromise(e,r,s){return this.baseFs.fchownPromise(e,r,s)}
method fchownSync (line 9) | fchownSync(e,r,s){return this.baseFs.fchownSync(e,r,s)}
method chownPromise (line 9) | async chownPromise(e,r,s){return this.baseFs.chownPromise(this.mapToBase...
method chownSync (line 9) | chownSync(e,r,s){return this.baseFs.chownSync(this.mapToBase(e),r,s)}
method renamePromise (line 9) | async renamePromise(e,r){return this.baseFs.renamePromise(this.mapToBase...
method renameSync (line 9) | renameSync(e,r){return this.baseFs.renameSync(this.mapToBase(e),this.map...
method copyFilePromise (line 9) | async copyFilePromise(e,r,s=0){return this.baseFs.copyFilePromise(this.m...
method copyFileSync (line 9) | copyFileSync(e,r,s=0){return this.baseFs.copyFileSync(this.mapToBase(e),...
method appendFilePromise (line 9) | async appendFilePromise(e,r,s){return this.baseFs.appendFilePromise(this...
method appendFileSync (line 9) | appendFileSync(e,r,s){return this.baseFs.appendFileSync(this.fsMapToBase...
method writeFilePromise (line 9) | async writeFilePromise(e,r,s){return this.baseFs.writeFilePromise(this.f...
method writeFileSync (line 9) | writeFileSync(e,r,s){return this.baseFs.writeFileSync(this.fsMapToBase(e...
method unlinkPromise (line 9) | async unlinkPromise(e){return this.baseFs.unlinkPromise(this.mapToBase(e))}
method unlinkSync (line 9) | unlinkSync(e){return this.baseFs.unlinkSync(this.mapToBase(e))}
method utimesPromise (line 9) | async utimesPromise(e,r,s){return this.baseFs.utimesPromise(this.mapToBa...
method utimesSync (line 9) | utimesSync(e,r,s){return this.baseFs.utimesSync(this.mapToBase(e),r,s)}
method lutimesPromise (line 9) | async lutimesPromise(e,r,s){return this.baseFs.lutimesPromise(this.mapTo...
method lutimesSync (line 9) | lutimesSync(e,r,s){return this.baseFs.lutimesSync(this.mapToBase(e),r,s)}
method mkdirPromise (line 9) | async mkdirPromise(e,r){return this.baseFs.mkdirPromise(this.mapToBase(e...
method mkdirSync (line 9) | mkdirSync(e,r){return this.baseFs.mkdirSync(this.mapToBase(e),r)}
method rmdirPromise (line 9) | async rmdirPromise(e,r){return this.baseFs.rmdirPromise(this.mapToBase(e...
method rmdirSync (line 9) | rmdirSync(e,r){return this.baseFs.rmdirSync(this.mapToBase(e),r)}
method rmPromise (line 9) | async rmPromise(e,r){return this.baseFs.rmPromise(this.mapToBase(e),r)}
method rmSync (line 9) | rmSync(e,r){return this.baseFs.rmSync(this.mapToBase(e),r)}
method linkPromise (line 9) | async linkPromise(e,r){return this.baseFs.linkPromise(this.mapToBase(e),...
method linkSync (line 9) | linkSync(e,r){return this.baseFs.linkSync(this.mapToBase(e),this.mapToBa...
method symlinkPromise (line 9) | async symlinkPromise(e,r,s){let a=this.mapToBase(r);if(this.pathUtils.is...
method symlinkSync (line 9) | symlinkSync(e,r,s){let a=this.mapToBase(r);if(this.pathUtils.isAbsolute(...
method readFilePromise (line 9) | async readFilePromise(e,r){return this.baseFs.readFilePromise(this.fsMap...
method readFileSync (line 9) | readFileSync(e,r){return this.baseFs.readFileSync(this.fsMapToBase(e),r)}
method readdirPromise (line 9) | readdirPromise(e,r){return this.baseFs.readdirPromise(this.mapToBase(e),r)}
method readdirSync (line 9) | readdirSync(e,r){return this.baseFs.readdirSync(this.mapToBase(e),r)}
method readlinkPromise (line 9) | async readlinkPromise(e){return this.mapFromBase(await this.baseFs.readl...
method readlinkSync (line 9) | readlinkSync(e){return this.mapFromBase(this.baseFs.readlinkSync(this.ma...
method truncatePromise (line 9) | async truncatePromise(e,r){return this.baseFs.truncatePromise(this.mapTo...
method truncateSync (line 9) | truncateSync(e,r){return this.baseFs.truncateSync(this.mapToBase(e),r)}
method ftruncatePromise (line 9) | async ftruncatePromise(e,r){return this.baseFs.ftruncatePromise(e,r)}
method ftruncateSync (line 9) | ftruncateSync(e,r){return this.baseFs.ftruncateSync(e,r)}
method watch (line 9) | watch(e,r,s){return this.baseFs.watch(this.mapToBase(e),r,s)}
method watchFile (line 9) | watchFile(e,r,s){return this.baseFs.watchFile(this.mapToBase(e),r,s)}
method unwatchFile (line 9) | unwatchFile(e,r){return this.baseFs.unwatchFile(this.mapToBase(e),r)}
method fsMapToBase (line 9) | fsMapToBase(e){return typeof e=="number"?e:this.mapToBase(e)}
method constructor (line 9) | constructor(e,{baseFs:r,pathUtils:s}){super(s),this.target=e,this.baseFs=r}
method getRealPath (line 9) | getRealPath(){return this.target}
method getBaseFs (line 9) | getBaseFs(){return this.baseFs}
method mapFromBase (line 9) | mapFromBase(e){return e}
method mapToBase (line 9) | mapToBase(e){return e}
function k$ (line 9) | function k$(t){let e=t;return typeof t.path=="string"&&(e.path=ue.toPort...
method constructor (line 9) | constructor(e=Q$.default){super(),this.realFs=e}
method getExtractHint (line 9) | getExtractHint(){return!1}
method getRealPath (line 9) | getRealPath(){return vt.root}
method resolve (line 9) | resolve(e){return K.resolve(e)}
method openPromise (line 9) | async openPromise(e,r,s){return await new Promise((a,n)=>{this.realFs.op...
method openSync (line 9) | openSync(e,r,s){return this.realFs.openSync(ue.fromPortablePath(e),r,s)}
method opendirPromise (line 9) | async opendirPromise(e,r){return await new Promise((s,a)=>{typeof r<"u"?...
method opendirSync (line 9) | opendirSync(e,r){let a=typeof r<"u"?this.realFs.opendirSync(ue.fromPorta...
method readPromise (line 9) | async readPromise(e,r,s=0,a=0,n=-1){return await new Promise((c,f)=>{thi...
method readSync (line 9) | readSync(e,r,s,a,n){return this.realFs.readSync(e,r,s,a,n)}
method writePromise (line 9) | async writePromise(e,r,s,a,n){return await new Promise((c,f)=>typeof r==...
method writeSync (line 9) | writeSync(e,r,s,a,n){return typeof r=="string"?this.realFs.writeSync(e,r...
method closePromise (line 9) | async closePromise(e){await new Promise((r,s)=>{this.realFs.close(e,this...
method closeSync (line 9) | closeSync(e){this.realFs.closeSync(e)}
method createReadStream (line 9) | createReadStream(e,r){let s=e!==null?ue.fromPortablePath(e):e;return thi...
method createWriteStream (line 9) | createWriteStream(e,r){let s=e!==null?ue.fromPortablePath(e):e;return th...
method realpathPromise (line 9) | async realpathPromise(e){return await new Promise((r,s)=>{this.realFs.re...
method realpathSync (line 9) | realpathSync(e){return ue.toPortablePath(this.realFs.realpathSync(ue.fro...
method existsPromise (line 9) | async existsPromise(e){return await new Promise(r=>{this.realFs.exists(u...
method accessSync (line 9) | accessSync(e,r){return this.realFs.accessSync(ue.fromPortablePath(e),r)}
method accessPromise (line 9) | async accessPromise(e,r){return await new Promise((s,a)=>{this.realFs.ac...
method existsSync (line 9) | existsSync(e){return this.realFs.existsSync(ue.fromPortablePath(e))}
method statPromise (line 9) | async statPromise(e,r){return await new Promise((s,a)=>{r?this.realFs.st...
method statSync (line 9) | statSync(e,r){return r?this.realFs.statSync(ue.fromPortablePath(e),r):th...
method fstatPromise (line 9) | async fstatPromise(e,r){return await new Promise((s,a)=>{r?this.realFs.f...
method fstatSync (line 9) | fstatSync(e,r){return r?this.realFs.fstatSync(e,r):this.realFs.fstatSync...
method lstatPromise (line 9) | async lstatPromise(e,r){return await new Promise((s,a)=>{r?this.realFs.l...
method lstatSync (line 9) | lstatSync(e,r){return r?this.realFs.lstatSync(ue.fromPortablePath(e),r):...
method fchmodPromise (line 9) | async fchmodPromise(e,r){return await new Promise((s,a)=>{this.realFs.fc...
method fchmodSync (line 9) | fchmodSync(e,r){return this.realFs.fchmodSync(e,r)}
method chmodPromise (line 9) | async chmodPromise(e,r){return await new Promise((s,a)=>{this.realFs.chm...
method chmodSync (line 9) | chmodSync(e,r){return this.realFs.chmodSync(ue.fromPortablePath(e),r)}
method fchownPromise (line 9) | async fchownPromise(e,r,s){return await new Promise((a,n)=>{this.realFs....
method fchownSync (line 9) | fchownSync(e,r,s){return this.realFs.fchownSync(e,r,s)}
method chownPromise (line 9) | async chownPromise(e,r,s){return await new Promise((a,n)=>{this.realFs.c...
method chownSync (line 9) | chownSync(e,r,s){return this.realFs.chownSync(ue.fromPortablePath(e),r,s)}
method renamePromise (line 9) | async renamePromise(e,r){return await new Promise((s,a)=>{this.realFs.re...
method renameSync (line 9) | renameSync(e,r){return this.realFs.renameSync(ue.fromPortablePath(e),ue....
method copyFilePromise (line 9) | async copyFilePromise(e,r,s=0){return await new Promise((a,n)=>{this.rea...
method copyFileSync (line 9) | copyFileSync(e,r,s=0){return this.realFs.copyFileSync(ue.fromPortablePat...
method appendFilePromise (line 9) | async appendFilePromise(e,r,s){return await new Promise((a,n)=>{let c=ty...
method appendFileSync (line 9) | appendFileSync(e,r,s){let a=typeof e=="string"?ue.fromPortablePath(e):e;...
method writeFilePromise (line 9) | async writeFilePromise(e,r,s){return await new Promise((a,n)=>{let c=typ...
method writeFileSync (line 9) | writeFileSync(e,r,s){let a=typeof e=="string"?ue.fromPortablePath(e):e;s...
method unlinkPromise (line 9) | async unlinkPromise(e){return await new Promise((r,s)=>{this.realFs.unli...
method unlinkSync (line 9) | unlinkSync(e){return this.realFs.unlinkSync(ue.fromPortablePath(e))}
method utimesPromise (line 9) | async utimesPromise(e,r,s){return await new Promise((a,n)=>{this.realFs....
method utimesSync (line 9) | utimesSync(e,r,s){this.realFs.utimesSync(ue.fromPortablePath(e),r,s)}
method lutimesPromise (line 9) | async lutimesPromise(e,r,s){return await new Promise((a,n)=>{this.realFs...
method lutimesSync (line 9) | lutimesSync(e,r,s){this.realFs.lutimesSync(ue.fromPortablePath(e),r,s)}
method mkdirPromise (line 9) | async mkdirPromise(e,r){return await new Promise((s,a)=>{this.realFs.mkd...
method mkdirSync (line 9) | mkdirSync(e,r){return this.realFs.mkdirSync(ue.fromPortablePath(e),r)}
method rmdirPromise (line 9) | async rmdirPromise(e,r){return await new Promise((s,a)=>{r?this.realFs.r...
method rmdirSync (line 9) | rmdirSync(e,r){return this.realFs.rmdirSync(ue.fromPortablePath(e),r)}
method rmPromise (line 9) | async rmPromise(e,r){return await new Promise((s,a)=>{r?this.realFs.rm(u...
method rmSync (line 9) | rmSync(e,r){return this.realFs.rmSync(ue.fromPortablePath(e),r)}
method linkPromise (line 9) | async linkPromise(e,r){return await new Promise((s,a)=>{this.realFs.link...
method linkSync (line 9) | linkSync(e,r){return this.realFs.linkSync(ue.fromPortablePath(e),ue.from...
method symlinkPromise (line 9) | async symlinkPromise(e,r,s){return await new Promise((a,n)=>{this.realFs...
method symlinkSync (line 9) | symlinkSync(e,r,s){return this.realFs.symlinkSync(ue.fromPortablePath(e....
method readFilePromise (line 9) | async readFilePromise(e,r){return await new Promise((s,a)=>{let n=typeof...
method readFileSync (line 9) | readFileSync(e,r){let s=typeof e=="string"?ue.fromPortablePath(e):e;retu...
method readdirPromise (line 9) | async readdirPromise(e,r){return await new Promise((s,a)=>{r?r.recursive...
method readdirSync (line 9) | readdirSync(e,r){return r?r.recursive&&process.platform==="win32"?r.with...
method readlinkPromise (line 9) | async readlinkPromise(e){return await new Promise((r,s)=>{this.realFs.re...
method readlinkSync (line 9) | readlinkSync(e){return ue.toPortablePath(this.realFs.readlinkSync(ue.fro...
method truncatePromise (line 9) | async truncatePromise(e,r){return await new Promise((s,a)=>{this.realFs....
method truncateSync (line 9) | truncateSync(e,r){return this.realFs.truncateSync(ue.fromPortablePath(e)...
method ftruncatePromise (line 9) | async ftruncatePromise(e,r){return await new Promise((s,a)=>{this.realFs...
method ftruncateSync (line 9) | ftruncateSync(e,r){return this.realFs.ftruncateSync(e,r)}
method watch (line 9) | watch(e,r,s){return this.realFs.watch(ue.fromPortablePath(e),r,s)}
method watchFile (line 9) | watchFile(e,r,s){return this.realFs.watchFile(ue.fromPortablePath(e),r,s)}
method unwatchFile (line 9) | unwatchFile(e,r){return this.realFs.unwatchFile(ue.fromPortablePath(e),r)}
method makeCallback (line 9) | makeCallback(e,r){return(s,a)=>{s?r(s):e(a)}}
method constructor (line 9) | constructor(e,{baseFs:r=new Yn}={}){super(K),this.target=this.pathUtils....
method getRealPath (line 9) | getRealPath(){return this.pathUtils.resolve(this.baseFs.getRealPath(),th...
method resolve (line 9) | resolve(e){return this.pathUtils.isAbsolute(e)?K.normalize(e):this.baseF...
method mapFromBase (line 9) | mapFromBase(e){return e}
method mapToBase (line 9) | mapToBase(e){return this.pathUtils.isAbsolute(e)?e:this.pathUtils.join(t...
method constructor (line 9) | constructor(e,{baseFs:r=new Yn}={}){super(K),this.target=this.pathUtils....
method getRealPath (line 9) | getRealPath(){return this.pathUtils.resolve(this.baseFs.getRealPath(),th...
method getTarget (line 9) | getTarget(){return this.target}
method getBaseFs (line 9) | getBaseFs(){return this.baseFs}
method mapToBase (line 9) | mapToBase(e){let r=this.pathUtils.normalize(e);if(this.pathUtils.isAbsol...
method mapFromBase (line 9) | mapFromBase(e){return this.pathUtils.resolve(R$,this.pathUtils.relative(...
method constructor (line 9) | constructor(r,s){super(s);this.instance=null;this.factory=r}
method baseFs (line 9) | get baseFs(){return this.instance||(this.instance=this.factory()),this.i...
method baseFs (line 9) | set baseFs(r){this.instance=r}
method mapFromBase (line 9) | mapFromBase(r){return r}
method mapToBase (line 9) | mapToBase(r){return r}
method constructor (line 9) | constructor({baseFs:r=new Yn,filter:s=null,magicByte:a=42,maxOpenFiles:n...
method getExtractHint (line 9) | getExtractHint(r){return this.baseFs.getExtractHint(r)}
method getRealPath (line 9) | getRealPath(){return this.baseFs.getRealPath()}
method saveAndClose (line 9) | saveAndClose(){if(md(this),this.mountInstances)for(let[r,{childFs:s}]of ...
method discardAndClose (line 9) | discardAndClose(){if(md(this),this.mountInstances)for(let[r,{childFs:s}]...
method resolve (line 9) | resolve(r){return this.baseFs.resolve(r)}
method remapFd (line 9) | remapFd(r,s){let a=this.nextFd++|this.magic;return this.fdMap.set(a,[r,s...
method openPromise (line 9) | async openPromise(r,s,a){return await this.makeCallPromise(r,async()=>aw...
method openSync (line 9) | openSync(r,s,a){return this.makeCallSync(r,()=>this.baseFs.openSync(r,s,...
method opendirPromise (line 9) | async opendirPromise(r,s){return await this.makeCallPromise(r,async()=>a...
method opendirSync (line 9) | opendirSync(r,s){return this.makeCallSync(r,()=>this.baseFs.opendirSync(...
method readPromise (line 9) | async readPromise(r,s,a,n,c){if((r&rl)!==this.magic)return await this.ba...
method readSync (line 9) | readSync(r,s,a,n,c){if((r&rl)!==this.magic)return this.baseFs.readSync(r...
method writePromise (line 9) | async writePromise(r,s,a,n,c){if((r&rl)!==this.magic)return typeof s=="s...
method writeSync (line 9) | writeSync(r,s,a,n,c){if((r&rl)!==this.magic)return typeof s=="string"?th...
method closePromise (line 9) | async closePromise(r){if((r&rl)!==this.magic)return await this.baseFs.cl...
method closeSync (line 9) | closeSync(r){if((r&rl)!==this.magic)return this.baseFs.closeSync(r);let ...
method createReadStream (line 9) | createReadStream(r,s){return r===null?this.baseFs.createReadStream(r,s):...
method createWriteStream (line 9) | createWriteStream(r,s){return r===null?this.baseFs.createWriteStream(r,s...
method realpathPromise (line 9) | async realpathPromise(r){return await this.makeCallPromise(r,async()=>aw...
method realpathSync (line 9) | realpathSync(r){return this.makeCallSync(r,()=>this.baseFs.realpathSync(...
method existsPromise (line 9) | async existsPromise(r){return await this.makeCallPromise(r,async()=>awai...
method existsSync (line 9) | existsSync(r){return this.makeCallSync(r,()=>this.baseFs.existsSync(r),(...
method accessPromise (line 9) | async accessPromise(r,s){return await this.makeCallPromise(r,async()=>aw...
method accessSync (line 9) | accessSync(r,s){return this.makeCallSync(r,()=>this.baseFs.accessSync(r,...
method statPromise (line 9) | async statPromise(r,s){return await this.makeCallPromise(r,async()=>awai...
method statSync (line 9) | statSync(r,s){return this.makeCallSync(r,()=>this.baseFs.statSync(r,s),(...
method fstatPromise (line 9) | async fstatPromise(r,s){if((r&rl)!==this.magic)return this.baseFs.fstatP...
method fstatSync (line 9) | fstatSync(r,s){if((r&rl)!==this.magic)return this.baseFs.fstatSync(r,s);...
method lstatPromise (line 9) | async lstatPromise(r,s){return await this.makeCallPromise(r,async()=>awa...
method lstatSync (line 9) | lstatSync(r,s){return this.makeCallSync(r,()=>this.baseFs.lstatSync(r,s)...
method fchmodPromise (line 9) | async fchmodPromise(r,s){if((r&rl)!==this.magic)return this.baseFs.fchmo...
method fchmodSync (line 9) | fchmodSync(r,s){if((r&rl)!==this.magic)return this.baseFs.fchmodSync(r,s...
method chmodPromise (line 9) | async chmodPromise(r,s){return await this.makeCallPromise(r,async()=>awa...
method chmodSync (line 9) | chmodSync(r,s){return this.makeCallSync(r,()=>this.baseFs.chmodSync(r,s)...
method fchownPromise (line 9) | async fchownPromise(r,s,a){if((r&rl)!==this.magic)return this.baseFs.fch...
method fchownSync (line 9) | fchownSync(r,s,a){if((r&rl)!==this.magic)return this.baseFs.fchownSync(r...
method chownPromise (line 9) | async chownPromise(r,s,a){return await this.makeCallPromise(r,async()=>a...
method chownSync (line 9) | chownSync(r,s,a){return this.makeCallSync(r,()=>this.baseFs.chownSync(r,...
method renamePromise (line 9) | async renamePromise(r,s){return await this.makeCallPromise(r,async()=>aw...
method renameSync (line 9) | renameSync(r,s){return this.makeCallSync(r,()=>this.makeCallSync(s,()=>t...
method copyFilePromise (line 9) | async copyFilePromise(r,s,a=0){let n=async(c,f,p,h)=>{if(a&Cd.constants....
method copyFileSync (line 9) | copyFileSync(r,s,a=0){let n=(c,f,p,h)=>{if(a&Cd.constants.COPYFILE_FICLO...
method appendFilePromise (line 9) | async appendFilePromise(r,s,a){return await this.makeCallPromise(r,async...
method appendFileSync (line 9) | appendFileSync(r,s,a){return this.makeCallSync(r,()=>this.baseFs.appendF...
method writeFilePromise (line 9) | async writeFilePromise(r,s,a){return await this.makeCallPromise(r,async(...
method writeFileSync (line 9) | writeFileSync(r,s,a){return this.makeCallSync(r,()=>this.baseFs.writeFil...
method unlinkPromise (line 9) | async unlinkPromise(r){return await this.makeCallPromise(r,async()=>awai...
method unlinkSync (line 9) | unlinkSync(r){return this.makeCallSync(r,()=>this.baseFs.unlinkSync(r),(...
method utimesPromise (line 9) | async utimesPromise(r,s,a){return await this.makeCallPromise(r,async()=>...
method utimesSync (line 9) | utimesSync(r,s,a){return this.makeCallSync(r,()=>this.baseFs.utimesSync(...
method lutimesPromise (line 9) | async lutimesPromise(r,s,a){return await this.makeCallPromise(r,async()=...
method lutimesSync (line 9) | lutimesSync(r,s,a){return this.makeCallSync(r,()=>this.baseFs.lutimesSyn...
method mkdirPromise (line 9) | async mkdirPromise(r,s){return await this.makeCallPromise(r,async()=>awa...
method mkdirSync (line 9) | mkdirSync(r,s){return this.makeCallSync(r,()=>this.baseFs.mkdirSync(r,s)...
method rmdirPromise (line 9) | async rmdirPromise(r,s){return await this.makeCallPromise(r,async()=>awa...
method rmdirSync (line 9) | rmdirSync(r,s){return this.makeCallSync(r,()=>this.baseFs.rmdirSync(r,s)...
method rmPromise (line 9) | async rmPromise(r,s){return await this.makeCallPromise(r,async()=>await ...
method rmSync (line 9) | rmSync(r,s){return this.makeCallSync(r,()=>this.baseFs.rmSync(r,s),(a,{s...
method linkPromise (line 9) | async linkPromise(r,s){return await this.makeCallPromise(s,async()=>awai...
method linkSync (line 9) | linkSync(r,s){return this.makeCallSync(s,()=>this.baseFs.linkSync(r,s),(...
method symlinkPromise (line 9) | async symlinkPromise(r,s,a){return await this.makeCallPromise(s,async()=...
method symlinkSync (line 9) | symlinkSync(r,s,a){return this.makeCallSync(s,()=>this.baseFs.symlinkSyn...
method readFilePromise (line 9) | async readFilePromise(r,s){return this.makeCallPromise(r,async()=>await ...
method readFileSync (line 9) | readFileSync(r,s){return this.makeCallSync(r,()=>this.baseFs.readFileSyn...
method readdirPromise (line 9) | async readdirPromise(r,s){return await this.makeCallPromise(r,async()=>a...
method readdirSync (line 9) | readdirSync(r,s){return this.makeCallSync(r,()=>this.baseFs.readdirSync(...
method readlinkPromise (line 9) | async readlinkPromise(r){return await this.makeCallPromise(r,async()=>aw...
method readlinkSync (line 9) | readlinkSync(r){return this.makeCallSync(r,()=>this.baseFs.readlinkSync(...
method truncatePromise (line 9) | async truncatePromise(r,s){return await this.makeCallPromise(r,async()=>...
method truncateSync (line 9) | truncateSync(r,s){return this.makeCallSync(r,()=>this.baseFs.truncateSyn...
method ftruncatePromise (line 9) | async ftruncatePromise(r,s){if((r&rl)!==this.magic)return this.baseFs.ft...
method ftruncateSync (line 9) | ftruncateSync(r,s){if((r&rl)!==this.magic)return this.baseFs.ftruncateSy...
method watch (line 9) | watch(r,s,a){return this.makeCallSync(r,()=>this.baseFs.watch(r,s,a),(n,...
method watchFile (line 9) | watchFile(r,s,a){return this.makeCallSync(r,()=>this.baseFs.watchFile(r,...
method unwatchFile (line 9) | unwatchFile(r,s){return this.makeCallSync(r,()=>this.baseFs.unwatchFile(...
method makeCallPromise (line 9) | async makeCallPromise(r,s,a,{requireSubpath:n=!0}={}){if(typeof r!="stri...
method makeCallSync (line 9) | makeCallSync(r,s,a,{requireSubpath:n=!0}={}){if(typeof r!="string")retur...
method findMount (line 9) | findMount(r){if(this.filter&&!this.filter.test(r))return null;let s="";f...
method limitOpenFiles (line 9) | limitOpenFiles(r){if(this.mountInstances===null)return;let s=Date.now(),...
method getMountPromise (line 9) | async getMountPromise(r,s){if(this.mountInstances){let a=this.mountInsta...
method getMountSync (line 9) | getMountSync(r,s){if(this.mountInstances){let a=this.mountInstances.get(...
method constructor (line 9) | constructor(){super(K)}
method getExtractHint (line 9) | getExtractHint(){throw er()}
method getRealPath (line 9) | getRealPath(){throw er()}
method resolve (line 9) | resolve(){throw er()}
method openPromise (line 9) | async openPromise(){throw er()}
method openSync (line 9) | openSync(){throw er()}
method opendirPromise (line 9) | async opendirPromise(){throw er()}
method opendirSync (line 9) | opendirSync(){throw er()}
method readPromise (line 9) | async readPromise(){throw er()}
method readSync (line 9) | readSync(){throw er()}
method writePromise (line 9) | async writePromise(){throw er()}
method writeSync (line 9) | writeSync(){throw er()}
method closePromise (line 9) | async closePromise(){throw er()}
method closeSync (line 9) | closeSync(){throw er()}
method createWriteStream (line 9) | createWriteStream(){throw er()}
method createReadStream (line 9) | createReadStream(){throw er()}
method realpathPromise (line 9) | async realpathPromise(){throw er()}
method realpathSync (line 9) | realpathSync(){throw er()}
method readdirPromise (line 9) | async readdirPromise(){throw er()}
method readdirSync (line 9) | readdirSync(){throw er()}
method existsPromise (line 9) | async existsPromise(e){throw er()}
method existsSync (line 9) | existsSync(e){throw er()}
method accessPromise (line 9) | async accessPromise(){throw er()}
method accessSync (line 9) | accessSync(){throw er()}
method statPromise (line 9) | async statPromise(){throw er()}
method statSync (line 9) | statSync(){throw er()}
method fstatPromise (line 9) | async fstatPromise(e){throw er()}
method fstatSync (line 9) | fstatSync(e){throw er()}
method lstatPromise (line 9) | async lstatPromise(e){throw er()}
method lstatSync (line 9) | lstatSync(e){throw er()}
method fchmodPromise (line 9) | async fchmodPromise(){throw er()}
method fchmodSync (line 9) | fchmodSync(){throw er()}
method chmodPromise (line 9) | async chmodPromise(){throw er()}
method chmodSync (line 9) | chmodSync(){throw er()}
method fchownPromise (line 9) | async fchownPromise(){throw er()}
method fchownSync (line 9) | fchownSync(){throw er()}
method chownPromise (line 9) | async chownPromise(){throw er()}
method chownSync (line 9) | chownSync(){throw er()}
method mkdirPromise (line 9) | async mkdirPromise(){throw er()}
method mkdirSync (line 9) | mkdirSync(){throw er()}
method rmdirPromise (line 9) | async rmdirPromise(){throw er()}
method rmdirSync (line 9) | rmdirSync(){throw er()}
method rmPromise (line 9) | async rmPromise(){throw er()}
method rmSync (line 9) | rmSync(){throw er()}
method linkPromise (line 9) | async linkPromise(){throw er()}
method linkSync (line 9) | linkSync(){throw er()}
method symlinkPromise (line 9) | async symlinkPromise(){throw er()}
method symlinkSync (line 9) | symlinkSync(){throw er()}
method renamePromise (line 9) | async renamePromise(){throw er()}
method renameSync (line 9) | renameSync(){throw er()}
method copyFilePromise (line 9) | async copyFilePromise(){throw er()}
method copyFileSync (line 9) | copyFileSync(){throw er()}
method appendFilePromise (line 9) | async appendFilePromise(){throw er()}
method appendFileSync (line 9) | appendFileSync(){throw er()}
method writeFilePromise (line 9) | async writeFilePromise(){throw er()}
method writeFileSync (line 9) | writeFileSync(){throw er()}
method unlinkPromise (line 9) | async unlinkPromise(){throw er()}
method unlinkSync (line 9) | unlinkSync(){throw er()}
method utimesPromise (line 9) | async utimesPromise(){throw er()}
method utimesSync (line 9) | utimesSync(){throw er()}
method lutimesPromise (line 9) | async lutimesPromise(){throw er()}
method lutimesSync (line 9) | lutimesSync(){throw er()}
method readFilePromise (line 9) | async readFilePromise(){throw er()}
method readFileSync (line 9) | readFileSync(){throw er()}
method readlinkPromise (line 9) | async readlinkPromise(){throw er()}
method readlinkSync (line 9) | readlinkSync(){throw er()}
method truncatePromise (line 9) | async truncatePromise(){throw er()}
method truncateSync (line 9) | truncateSync(){throw er()}
method ftruncatePromise (line 9) | async ftruncatePromise(e,r){throw er()}
method ftruncateSync (line 9) | ftruncateSync(e,r){throw er()}
method watch (line 9) | watch(){throw er()}
method watchFile (line 9) | watchFile(){throw er()}
method unwatchFile (line 9) | unwatchFile(){throw er()}
method constructor (line 9) | constructor(e){super(ue),this.baseFs=e}
method mapFromBase (line 9) | mapFromBase(e){return ue.fromPortablePath(e)}
method mapToBase (line 9) | mapToBase(e){return ue.toPortablePath(e)}
method makeVirtualPath (line 9) | static makeVirtualPath(e,r,s){if(K.basename(e)!=="__virtual__")throw new...
method resolveVirtual (line 9) | static resolveVirtual(e){let r=e.match(k_);if(!r||!r[3]&&r[5])return e;l...
method constructor (line 9) | constructor({baseFs:e=new Yn}={}){super(K),this.baseFs=e}
method getExtractHint (line 9) | getExtractHint(e){return this.baseFs.getExtractHint(e)}
method getRealPath (line 9) | getRealPath(){return this.baseFs.getRealPath()}
method realpathSync (line 9) | realpathSync(e){let r=e.match(k_);if(!r)return this.baseFs.realpathSync(...
method realpathPromise (line 9) | async realpathPromise(e){let r=e.match(k_);if(!r)return await this.baseF...
method mapToBase (line 9) | mapToBase(e){if(e==="")return e;if(this.pathUtils.isAbsolute(e))return t...
method mapFromBase (line 9) | mapFromBase(e){return e}
function E7e (line 9) | function E7e(t,e){return typeof Q_.default.isUtf8<"u"?Q_.default.isUtf8(...
method constructor (line 9) | constructor(e){super(ue),this.baseFs=e}
method mapFromBase (line 9) | mapFromBase(e){return e}
method mapToBase (line 9) | mapToBase(e){if(typeof e=="string")return e;if(e instanceof URL)return(0...
method constructor (line 9) | constructor(e,r){this[Y$]=1;this[W$]=void 0;this[G$]=void 0;this[q$]=voi...
method fd (line 9) | get fd(){return this[Cp]}
method appendFile (line 9) | async appendFile(e,r){try{this[Nu](this.appendFile);let s=(typeof r=="st...
method chown (line 9) | async chown(e,r){try{return this[Nu](this.chown),await this[Ho].fchownPr...
method chmod (line 9) | async chmod(e){try{return this[Nu](this.chmod),await this[Ho].fchmodProm...
method createReadStream (line 9) | createReadStream(e){return this[Ho].createReadStream(null,{...e,fd:this....
method createWriteStream (line 9) | createWriteStream(e){return this[Ho].createWriteStream(null,{...e,fd:thi...
method datasync (line 9) | datasync(){throw new Error("Method not implemented.")}
method sync (line 9) | sync(){throw new Error("Method not implemented.")}
method read (line 9) | async read(e,r,s,a){try{this[Nu](this.read);let n;return Buffer.isBuffer...
method readFile (line 9) | async readFile(e){try{this[Nu](this.readFile);let r=(typeof e=="string"?...
method readLines (line 9) | readLines(e){return(0,V$.createInterface)({input:this.createReadStream(e...
method stat (line 9) | async stat(e){try{return this[Nu](this.stat),await this[Ho].fstatPromise...
method truncate (line 9) | async truncate(e){try{return this[Nu](this.truncate),await this[Ho].ftru...
method utimes (line 9) | utimes(e,r){throw new Error("Method not implemented.")}
method writeFile (line 9) | async writeFile(e,r){try{this[Nu](this.writeFile);let s=(typeof r=="stri...
method write (line 9) | async write(...e){try{if(this[Nu](this.write),ArrayBuffer.isView(e[0])){...
method writev (line 9) | async writev(e,r){try{this[Nu](this.writev);let s=0;if(typeof r<"u")for(...
method readv (line 9) | readv(e,r){throw new Error("Method not implemented.")}
method close (line 9) | close(){if(this[Cp]===-1)return Promise.resolve();if(this[i0])return thi...
method [(Ho,Cp,Y$=sE,W$=i0,G$=px,q$=hx,Nu)] (line 9) | [(Ho,Cp,Y$=sE,W$=i0,G$=px,q$=hx,Nu)](e){if(this[Cp]===-1){let r=new Erro...
method [Ou] (line 9) | [Ou](){if(this[sE]--,this[sE]===0){let e=this[Cp];this[Cp]=-1,this[Ho].c...
function _2 (line 9) | function _2(t,e){e=new Ax(e);let r=(s,a,n)=>{let c=s[a];s[a]=n,typeof c?...
function gx (line 9) | function gx(t,e){let r=Object.create(t);return _2(r,e),r}
function Z$ (line 9) | function Z$(t){let e=Math.ceil(Math.random()*4294967296).toString(16).pa...
function X$ (line 9) | function X$(){if(T_)return T_;let t=ue.toPortablePath($$.default.tmpdir(...
method detachTemp (line 9) | detachTemp(t){Lu.delete(t)}
method mktempSync (line 9) | mktempSync(t){let{tmpdir:e,realTmpdir:r}=X$();for(;;){let s=Z$("xfs-");t...
method mktempPromise (line 9) | async mktempPromise(t){let{tmpdir:e,realTmpdir:r}=X$();for(;;){let s=Z$(...
method rmtempPromise (line 9) | async rmtempPromise(){await Promise.all(Array.from(Lu.values()).map(asyn...
method rmtempSync (line 9) | rmtempSync(){for(let t of Lu)try{le.removeSync(t),Lu.delete(t)}catch{}}
function C7e (line 9) | function C7e(t,e){var r=e.pathExt!==void 0?e.pathExt:process.env.PATHEXT...
function ree (line 9) | function ree(t,e,r){return!t.isSymbolicLink()&&!t.isFile()?!1:C7e(e,r)}
function nee (line 9) | function nee(t,e,r){tee.stat(t,function(s,a){r(s,s?!1:ree(a,t,e))})}
function w7e (line 9) | function w7e(t,e){return ree(tee.statSync(t),t,e)}
function aee (line 9) | function aee(t,e,r){oee.stat(t,function(s,a){r(s,s?!1:lee(a,e))})}
function B7e (line 9) | function B7e(t,e){return lee(oee.statSync(t),e)}
function lee (line 9) | function lee(t,e){return t.isFile()&&v7e(t,e)}
function v7e (line 9) | function v7e(t,e){var r=t.mode,s=t.uid,a=t.gid,n=e.uid!==void 0?e.uid:pr...
function R_ (line 9) | function R_(t,e,r){if(typeof e=="function"&&(r=e,e={}),!r){if(typeof Pro...
function S7e (line 9) | function S7e(t,e){try{return dx.sync(t,e||{})}catch(r){if(e&&e.ignoreErr...
function Bee (line 9) | function Bee(t,e){let r=t.options.env||process.env,s=process.cwd(),a=t.o...
function k7e (line 9) | function k7e(t){return Bee(t)||Bee(t,!0)}
function Q7e (line 9) | function Q7e(t){return t=t.replace(N_,"^$1"),t}
function T7e (line 9) | function T7e(t,e){return t=`${t}`,t=t.replace(/(?=(\\+?)?)\1"/g,'$1$1\\"...
function N7e (line 9) | function N7e(t){let r=Buffer.alloc(150),s;try{s=L_.openSync(t,"r"),L_.re...
function H7e (line 9) | function H7e(t){t.file=Ree(t);let e=t.file&&L7e(t.file);return e?(t.args...
function j7e (line 9) | function j7e(t){if(!M7e)return t;let e=H7e(t),r=!_7e.test(e);if(t.option...
function q7e (line 9) | function q7e(t,e,r){e&&!Array.isArray(e)&&(r=e,e=null),e=e?e.slice(0):[]...
function __ (line 9) | function __(t,e){return Object.assign(new Error(`${e} ${t.command} ENOEN...
function G7e (line 9) | function G7e(t,e){if(!M_)return;let r=t.emit;t.emit=function(s,a){if(s==...
function Lee (line 9) | function Lee(t,e){return M_&&t===1&&!e.file?__(e.original,"spawn"):null}
function W7e (line 9) | function W7e(t,e){return M_&&t===1&&!e.file?__(e.original,"spawnSync"):n...
function Hee (line 9) | function Hee(t,e,r){let s=U_(t,e,r),a=Uee.spawn(s.command,s.args,s.optio...
function Y7e (line 9) | function Y7e(t,e,r){let s=U_(t,e,r),a=Uee.spawnSync(s.command,s.args,s.o...
function V7e (line 9) | function V7e(t,e){function r(){this.constructor=t}r.prototype=e.prototyp...
function wd (line 9) | function wd(t,e,r,s){this.message=t,this.expected=e,this.found=r,this.lo...
function s (line 9) | function s(h){return h.charCodeAt(0).toString(16).toUpperCase()}
function a (line 9) | function a(h){return h.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace...
function n (line 9) | function n(h){return h.replace(/\\/g,"\\\\").replace(/\]/g,"\\]").replac...
function c (line 9) | function c(h){return r[h.type](h)}
function f (line 9) | function f(h){var E=new Array(h.length),C,S;for(C=0;C<h.length;C++)E[C]=...
function p (line 9) | function p(h){return h?'"'+a(h)+'"':"end of input"}
function K7e (line 9) | function K7e(t,e){e=e!==void 0?e:{};var r={},s={Start:Ya},a=Ya,n=functio...
function yx (line 12) | function yx(t,e={isGlobPattern:()=>!1}){try{return(0,Gee.parse)(t,e)}cat...
function cE (line 12) | function cE(t,{endSemicolon:e=!1}={}){return t.map(({command:r,type:s},a...
function Ex (line 12) | function Ex(t){return`${uE(t.chain)}${t.then?` ${q_(t.then)}`:""}`}
function q_ (line 12) | function q_(t){return`${t.type} ${Ex(t.line)}`}
function uE (line 12) | function uE(t){return`${W_(t)}${t.then?` ${G_(t.then)}`:""}`}
function G_ (line 12) | function G_(t){return`${t.type} ${uE(t.chain)}`}
function W_ (line 12) | function W_(t){switch(t.type){case"command":return`${t.envs.length>0?`${...
function mx (line 12) | function mx(t){return`${t.name}=${t.args[0]?Bd(t.args[0]):""}`}
function Y_ (line 12) | function Y_(t){switch(t.type){case"redirection":return H2(t);case"argume...
function H2 (line 12) | function H2(t){return`${t.subtype} ${t.args.map(e=>Bd(e)).join(" ")}`}
function Bd (line 12) | function Bd(t){return t.segments.map(e=>V_(e)).join("")}
function V_ (line 12) | function V_(t){let e=(s,a)=>a?`"${s}"`:s,r=s=>s===""?"''":s.match(/[()}<...
function Ix (line 12) | function Ix(t){let e=a=>{switch(a){case"addition":return"+";case"subtrac...
function Z7e (line 13) | function Z7e(t,e){function r(){this.constructor=t}r.prototype=e.prototyp...
function vd (line 13) | function vd(t,e,r,s){this.message=t,this.expected=e,this.found=r,this.lo...
function s (line 13) | function s(h){return h.charCodeAt(0).toString(16).toUpperCase()}
function a (line 13) | function a(h){return h.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace...
function n (line 13) | function n(h){return h.replace(/\\/g,"\\\\").replace(/\]/g,"\\]").replac...
function c (line 13) | function c(h){return r[h.type](h)}
function f (line 13) | function f(h){var E=new Array(h.length),C,S;for(C=0;C<h.length;C++)E[C]=...
function p (line 13) | function p(h){return h?'"'+a(h)+'"':"end of input"}
function X7e (line 13) | function X7e(t,e){e=e!==void 0?e:{};var r={},s={resolution:Ne},a=Ne,n="/...
function Cx (line 13) | function Cx(t){let e=t.match(/^\*{1,2}\/(.*)/);if(e)throw new Error(`The...
function wx (line 13) | function wx(t){let e="";return t.from&&(e+=t.from.fullName,t.from.descri...
function Xee (line 13) | function Xee(t){return typeof t>"u"||t===null}
function $7e (line 13) | function $7e(t){return typeof t=="object"&&t!==null}
function eKe (line 13) | function eKe(t){return Array.isArray(t)?t:Xee(t)?[]:[t]}
function tKe (line 13) | function tKe(t,e){var r,s,a,n;if(e)for(n=Object.keys(e),r=0,s=n.length;r...
function rKe (line 13) | function rKe(t,e){var r="",s;for(s=0;s<e;s+=1)r+=t;return r}
function nKe (line 13) | function nKe(t){return t===0&&Number.NEGATIVE_INFINITY===1/t}
function j2 (line 13) | function j2(t,e){Error.call(this),this.name="YAMLException",this.reason=...
function K_ (line 13) | function K_(t,e,r,s,a){this.name=t,this.buffer=e,this.position=r,this.li...
function oKe (line 17) | function oKe(t){var e={};return t!==null&&Object.keys(t).forEach(functio...
function aKe (line 17) | function aKe(t,e){if(e=e||{},Object.keys(e).forEach(function(r){if(iKe.i...
function J_ (line 17) | function J_(t,e,r){var s=[];return t.include.forEach(function(a){r=J_(a,...
function cKe (line 17) | function cKe(){var t={scalar:{},sequence:{},mapping:{},fallback:{}},e,r;...
function AE (line 17) | function AE(t){this.include=t.include||[],this.implicit=t.implicit||[],t...
function gKe (line 17) | function gKe(t){if(t===null)return!0;var e=t.length;return e===1&&t==="~...
function dKe (line 17) | function dKe(){return null}
function mKe (line 17) | function mKe(t){return t===null}
function EKe (line 17) | function EKe(t){if(t===null)return!1;var e=t.length;return e===4&&(t==="...
function IKe (line 17) | function IKe(t){return t==="true"||t==="True"||t==="TRUE"}
function CKe (line 17) | function CKe(t){return Object.prototype.toString.call(t)==="[object Bool...
function vKe (line 17) | function vKe(t){return 48<=t&&t<=57||65<=t&&t<=70||97<=t&&t<=102}
function SKe (line 17) | function SKe(t){return 48<=t&&t<=55}
function DKe (line 17) | function DKe(t){return 48<=t&&t<=57}
function bKe (line 17) | function bKe(t){if(t===null)return!1;var e=t.length,r=0,s=!1,a;if(!e)ret...
function PKe (line 17) | function PKe(t){var e=t,r=1,s,a,n=[];return e.indexOf("_")!==-1&&(e=e.re...
function xKe (line 17) | function xKe(t){return Object.prototype.toString.call(t)==="[object Numb...
function TKe (line 17) | function TKe(t){return!(t===null||!QKe.test(t)||t[t.length-1]==="_")}
function RKe (line 17) | function RKe(t){var e,r,s,a;return e=t.replace(/_/g,"").toLowerCase(),r=...
function NKe (line 17) | function NKe(t,e){var r;if(isNaN(t))switch(e){case"lowercase":return".na...
function OKe (line 17) | function OKe(t){return Object.prototype.toString.call(t)==="[object Numb...
function UKe (line 17) | function UKe(t){return t===null?!1:Ste.exec(t)!==null||Dte.exec(t)!==null}
function HKe (line 17) | function HKe(t){var e,r,s,a,n,c,f,p=0,h=null,E,C,S;if(e=Ste.exec(t),e===...
function jKe (line 17) | function jKe(t){return t.toISOString()}
function GKe (line 17) | function GKe(t){return t==="<<"||t===null}
function YKe (line 18) | function YKe(t){if(t===null)return!1;var e,r,s=0,a=t.length,n=X_;for(r=0...
function VKe (line 18) | function VKe(t){var e,r,s=t.replace(/[\r\n=]/g,""),a=s.length,n=X_,c=0,f...
function KKe (line 18) | function KKe(t){var e="",r=0,s,a,n=t.length,c=X_;for(s=0;s<n;s++)s%3===0...
function JKe (line 18) | function JKe(t){return Pd&&Pd.isBuffer(t)}
function $Ke (line 18) | function $Ke(t){if(t===null)return!0;var e=[],r,s,a,n,c,f=t;for(r=0,s=f....
function eJe (line 18) | function eJe(t){return t!==null?t:[]}
function nJe (line 18) | function nJe(t){if(t===null)return!0;var e,r,s,a,n,c=t;for(n=new Array(c...
function iJe (line 18) | function iJe(t){if(t===null)return[];var e,r,s,a,n,c=t;for(n=new Array(c...
function aJe (line 18) | function aJe(t){if(t===null)return!0;var e,r=t;for(e in r)if(oJe.call(r,...
function lJe (line 18) | function lJe(t){return t!==null?t:{}}
function fJe (line 18) | function fJe(){return!0}
function AJe (line 18) | function AJe(){}
function pJe (line 18) | function pJe(){return""}
function hJe (line 18) | function hJe(t){return typeof t>"u"}
function dJe (line 18) | function dJe(t){if(t===null||t.length===0)return!1;var e=t,r=/\/([gim]*)...
function mJe (line 18) | function mJe(t){var e=t,r=/\/([gim]*)$/.exec(t),s="";return e[0]==="/"&&...
function yJe (line 18) | function yJe(t){var e="/"+t.source+"/";return t.global&&(e+="g"),t.multi...
function EJe (line 18) | function EJe(t){return Object.prototype.toString.call(t)==="[object RegE...
function CJe (line 18) | function CJe(t){if(t===null)return!1;try{var e="("+t+")",r=Sx.parse(e,{r...
function wJe (line 18) | function wJe(t){var e="("+t+")",r=Sx.parse(e,{range:!0}),s=[],a;if(r.typ...
function BJe (line 18) | function BJe(t){return t.toString()}
function vJe (line 18) | function vJe(t){return Object.prototype.toString.call(t)==="[object Func...
function Zte (line 18) | function Zte(t){return Object.prototype.toString.call(t)}
function qf (line 18) | function qf(t){return t===10||t===13}
function kd (line 18) | function kd(t){return t===9||t===32}
function nl (line 18) | function nl(t){return t===9||t===32||t===10||t===13}
function hE (line 18) | function hE(t){return t===44||t===91||t===93||t===123||t===125}
function QJe (line 18) | function QJe(t){var e;return 48<=t&&t<=57?t-48:(e=t|32,97<=e&&e<=102?e-9...
function TJe (line 18) | function TJe(t){return t===120?2:t===117?4:t===85?8:0}
function RJe (line 18) | function RJe(t){return 48<=t&&t<=57?t-48:-1}
function Xte (line 18) | function Xte(t){return t===48?"\0":t===97?"\x07":t===98?"\b":t===116||t=...
function FJe (line 19) | function FJe(t){return t<=65535?String.fromCharCode(t):String.fromCharCo...
function NJe (line 19) | function NJe(t,e){this.input=t,this.filename=e.filename||null,this.schem...
function ure (line 19) | function ure(t,e){return new rre(e,new SJe(t.filename,t.input,t.position...
function Rr (line 19) | function Rr(t,e){throw ure(t,e)}
function Px (line 19) | function Px(t,e){t.onWarning&&t.onWarning.call(null,ure(t,e))}
function s0 (line 19) | function s0(t,e,r,s){var a,n,c,f;if(e<r){if(f=t.input.slice(e,r),s)for(a...
function ere (line 19) | function ere(t,e,r,s){var a,n,c,f;for(wp.isObject(r)||Rr(t,"cannot merge...
function gE (line 19) | function gE(t,e,r,s,a,n,c,f){var p,h;if(Array.isArray(a))for(a=Array.pro...
function eU (line 19) | function eU(t){var e;e=t.input.charCodeAt(t.position),e===10?t.position+...
function ls (line 19) | function ls(t,e,r){for(var s=0,a=t.input.charCodeAt(t.position);a!==0;){...
function xx (line 19) | function xx(t){var e=t.position,r;return r=t.input.charCodeAt(e),!!((r==...
function tU (line 19) | function tU(t,e){e===1?t.result+=" ":e>1&&(t.result+=wp.repeat(`
function OJe (line 20) | function OJe(t,e,r){var s,a,n,c,f,p,h,E,C=t.kind,S=t.result,P;if(P=t.inp...
function LJe (line 20) | function LJe(t,e){var r,s,a;if(r=t.input.charCodeAt(t.position),r!==39)r...
function MJe (line 20) | function MJe(t,e){var r,s,a,n,c,f;if(f=t.input.charCodeAt(t.position),f!...
function _Je (line 20) | function _Je(t,e){var r=!0,s,a=t.tag,n,c=t.anchor,f,p,h,E,C,S={},P,I,R,N...
function UJe (line 20) | function UJe(t,e){var r,s,a=$_,n=!1,c=!1,f=e,p=0,h=!1,E,C;if(C=t.input.c...
function tre (line 26) | function tre(t,e){var r,s=t.tag,a=t.anchor,n=[],c,f=!1,p;for(t.anchor!==...
function HJe (line 26) | function HJe(t,e,r){var s,a,n,c,f=t.tag,p=t.anchor,h={},E={},C=null,S=nu...
function jJe (line 26) | function jJe(t){var e,r=!1,s=!1,a,n,c;if(c=t.input.charCodeAt(t.position...
function qJe (line 26) | function qJe(t){var e,r;if(r=t.input.charCodeAt(t.position),r!==38)retur...
function GJe (line 26) | function GJe(t){var e,r,s;if(s=t.input.charCodeAt(t.position),s!==42)ret...
function dE (line 26) | function dE(t,e,r,s,a){var n,c,f,p=1,h=!1,E=!1,C,S,P,I,R;if(t.listener!=...
function WJe (line 26) | function WJe(t){var e=t.position,r,s,a,n=!1,c;for(t.version=null,t.check...
function fre (line 26) | function fre(t,e){t=String(t),e=e||{},t.length!==0&&(t.charCodeAt(t.leng...
function Are (line 27) | function Are(t,e,r){e!==null&&typeof e=="object"&&typeof r>"u"&&(r=e,e=n...
function pre (line 27) | function pre(t,e){var r=fre(t,e);if(r.length!==0){if(r.length===1)return...
function YJe (line 27) | function YJe(t,e,r){return typeof e=="object"&&e!==null&&typeof r>"u"&&(...
function VJe (line 27) | function VJe(t,e){return pre(t,wp.extend({schema:nre},e))}
function pze (line 27) | function pze(t,e){var r,s,a,n,c,f,p;if(e===null)return{};for(r={},s=Obje...
function gre (line 27) | function gre(t){var e,r,s;if(e=t.toString(16).toUpperCase(),t<=255)r="x"...
function hze (line 27) | function hze(t){this.schema=t.schema||KJe,this.indent=Math.max(1,t.inden...
function dre (line 27) | function dre(t,e){for(var r=Y2.repeat(" ",e),s=0,a=-1,n="",c,f=t.length;...
function rU (line 29) | function rU(t,e){return`
function gze (line 30) | function gze(t,e){var r,s,a;for(r=0,s=t.implicitTypes.length;r<s;r+=1)if...
function iU (line 30) | function iU(t){return t===XJe||t===zJe}
function mE (line 30) | function mE(t){return 32<=t&&t<=126||161<=t&&t<=55295&&t!==8232&&t!==823...
function dze (line 30) | function dze(t){return mE(t)&&!iU(t)&&t!==65279&&t!==ZJe&&t!==W2}
function mre (line 30) | function mre(t,e){return mE(t)&&t!==65279&&t!==Sre&&t!==bre&&t!==Pre&&t!...
function mze (line 30) | function mze(t){return mE(t)&&t!==65279&&!iU(t)&&t!==sze&&t!==lze&&t!==D...
function Qre (line 30) | function Qre(t){var e=/^\n* /;return e.test(t)}
function yze (line 30) | function yze(t,e,r,s,a){var n,c,f,p=!1,h=!1,E=s!==-1,C=-1,S=mze(t.charCo...
function Eze (line 30) | function Eze(t,e,r,s){t.dump=function(){if(e.length===0)return"''";if(!t...
function yre (line 30) | function yre(t,e){var r=Qre(t)?String(e):"",s=t[t.length-1]===`
function Ere (line 34) | function Ere(t){return t[t.length-1]===`
function Ize (line 35) | function Ize(t,e){for(var r=/(\n+)([^\n]*)/g,s=function(){var h=t.indexOf(`
function Ire (line 38) | function Ire(t,e){if(t===""||t[0]===" ")return t;for(var r=/ [^ ]/g,s,a=...
function Cze (line 41) | function Cze(t){for(var e="",r,s,a,n=0;n<t.length;n++){if(r=t.charCodeAt...
function wze (line 41) | function wze(t,e,r){var s="",a=t.tag,n,c;for(n=0,c=r.length;n<c;n+=1)Qd(...
function Bze (line 41) | function Bze(t,e,r,s){var a="",n=t.tag,c,f;for(c=0,f=r.length;c<f;c+=1)Q...
function vze (line 41) | function vze(t,e,r){var s="",a=t.tag,n=Object.keys(r),c,f,p,h,E;for(c=0,...
function Sze (line 41) | function Sze(t,e,r,s){var a="",n=t.tag,c=Object.keys(r),f,p,h,E,C,S;if(t...
function Cre (line 41) | function Cre(t,e,r){var s,a,n,c,f,p;for(a=r?t.explicitTypes:t.implicitTy...
function Qd (line 41) | function Qd(t,e,r,s,a,n){t.tag=null,t.dump=r,Cre(t,r,!1)||Cre(t,r,!0);va...
function Dze (line 41) | function Dze(t,e){var r=[],s=[],a,n;for(nU(t,r,s),a=0,n=s.length;a<n;a+=...
function nU (line 41) | function nU(t,e,r){var s,a,n;if(t!==null&&typeof t=="object")if(a=e.inde...
function Ore (line 41) | function Ore(t,e){e=e||{};var r=new hze(e);return r.noRefs||Dze(t,r),Qd(...
function bze (line 42) | function bze(t,e){return Ore(t,Y2.extend({schema:JJe},e))}
function Tx (line 42) | function Tx(t){return function(){throw new Error("Function "+t+" is depr...
function xze (line 42) | function xze(t,e){function r(){this.constructor=t}r.prototype=e.prototyp...
function Td (line 42) | function Td(t,e,r,s){this.message=t,this.expected=e,this.found=r,this.lo...
function s (line 42) | function s(h){return h.charCodeAt(0).toString(16).toUpperCase()}
function a (line 42) | function a(h){return h.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace...
function n (line 42) | function n(h){return h.replace(/\\/g,"\\\\").replace(/\]/g,"\\]").replac...
function c (line 42) | function c(h){return r[h.type](h)}
function f (line 42) | function f(h){var E=new Array(h.length),C,S;for(C=0;C<h.length;C++)E[C]=...
function p (line 42) | function p(h){return h?'"'+a(h)+'"':"end of input"}
function kze (line 42) | function kze(t,e){e=e!==void 0?e:{};var r={},s={Start:cc},a=cc,n=functio...
function Wre (line 51) | function Wre(t){return t.match(Qze)?t:JSON.stringify(t)}
function Vre (line 51) | function Vre(t){return typeof t>"u"?!0:typeof t=="object"&&t!==null&&!Ar...
function oU (line 51) | function oU(t,e,r){if(t===null)return`null
function il (line 61) | function il(t){try{let e=oU(t,0,!1);return e!==`
function Tze (line 62) | function Tze(t){return t.endsWith(`
function Fze (line 64) | function Fze(t){if(Rze.test(t))return Tze(t);let e=(0,Fx.safeLoad)(t,{sc...
function cs (line 64) | function cs(t){return Fze(t)}
method constructor (line 64) | constructor(e){this.data=e}
function Xre (line 64) | function Xre(t){return typeof t=="string"?!!Ps[t]:"env"in t?Ps[t.env]&&P...
method constructor (line 64) | constructor(e){super(e),this.clipanion={type:"usage"},this.name="UsageEr...
method constructor (line 64) | constructor(e,r){if(super(),this.input=e,this.candidates=r,this.clipanio...
method constructor (line 75) | constructor(e,r){super(),this.input=e,this.usages=r,this.clipanion={type...
function Lze (line 80) | function Lze(t){let e=t.split(`
function qo (line 82) | function qo(t,{format:e,paragraphs:r}){return t=t.replace(/\r\n?/g,`
function Ea (line 90) | function Ea(t){return{...t,[J2]:!0}}
function Gf (line 90) | function Gf(t,e){return typeof t>"u"?[t,e]:typeof t=="object"&&t!==null&...
function _x (line 90) | function _x(t,{mergeName:e=!1}={}){let r=t.match(/^([^:]+): (.*)$/m);if(...
function z2 (line 90) | function z2(t,e){return e.length===1?new nt(`${t}${_x(e[0],{mergeName:!0...
function Nd (line 92) | function Nd(t,e,r){if(typeof r>"u")return e;let s=[],a=[],n=f=>{let p=e;...
function ti (line 92) | function ti(t){return t===null?"null":t===void 0?"undefined":t===""?"an ...
function EE (line 92) | function EE(t,e){if(t.length===0)return"nothing";if(t.length===1)return ...
function a0 (line 92) | function a0(t,e){var r,s,a;return typeof e=="number"?`${(r=t?.p)!==null&...
function hU (line 92) | function hU(t,e,r){return t===1?e:r}
function mr (line 92) | function mr({errors:t,p:e}={},r){return t?.push(`${e??"."}: ${r}`),!1}
function qze (line 92) | function qze(t,e){return r=>{t[e]=r}}
function Yf (line 92) | function Yf(t,e){return r=>{let s=t[e];return t[e]=r,Yf(t,e).bind(null,s)}}
function Z2 (line 92) | function Z2(t,e,r){let s=()=>(t(r()),a),a=()=>(t(e),s);return s}
function gU (line 92) | function gU(){return Wr({test:(t,e)=>!0})}
function ine (line 92) | function ine(t){return Wr({test:(e,r)=>e!==t?mr(r,`Expected ${ti(t)} (go...
function IE (line 92) | function IE(){return Wr({test:(t,e)=>typeof t!="string"?mr(e,`Expected a...
function po (line 92) | function po(t){let e=Array.isArray(t)?t:Object.values(t),r=e.every(a=>ty...
function Wze (line 92) | function Wze(){return Wr({test:(t,e)=>{var r;if(typeof t!="boolean"){if(...
function dU (line 92) | function dU(){return Wr({test:(t,e)=>{var r;if(typeof t!="number"){if(ty...
function Yze (line 92) | function Yze(t){return Wr({test:(e,r)=>{var s;if(typeof r?.coercions>"u"...
function Vze (line 92) | function Vze(){return Wr({test:(t,e)=>{var r;if(!(t instanceof Date)){if...
function Ux (line 92) | function Ux(t,{delimiter:e}={}){return Wr({test:(r,s)=>{var a;let n=r;if...
function Kze (line 92) | function Kze(t,{delimiter:e}={}){let r=Ux(t,{delimiter:e});return Wr({te...
function Jze (line 92) | function Jze(t,e){let r=Ux(Hx([t,e])),s=jx(e,{keys:t});return Wr({test:(...
function Hx (line 92) | function Hx(t,{delimiter:e}={}){let r=ane(t.length);return Wr({test:(s,a...
function jx (line 92) | function jx(t,{keys:e=null}={}){let r=Ux(Hx([e??IE(),t]));return Wr({tes...
function zze (line 92) | function zze(t,e={}){return jx(t,e)}
function sne (line 92) | function sne(t,{extra:e=null}={}){let r=Object.keys(t),s=Wr({test:(a,n)=...
function Zze (line 92) | function Zze(t){return sne(t,{extra:jx(gU())})}
function one (line 92) | function one(t){return()=>t}
function Wr (line 92) | function Wr({test:t}){return one(t)()}
function $ze (line 92) | function $ze(t,e){if(!e(t))throw new l0}
function eZe (line 92) | function eZe(t,e){let r=[];if(!e(t,{errors:r}))throw new l0({errors:r})}
function tZe (line 92) | function tZe(t,e){}
function rZe (line 92) | function rZe(t,e,{coerce:r=!1,errors:s,throw:a}={}){let n=s?[]:void 0;if...
function nZe (line 92) | function nZe(t,e){let r=Hx(t);return(...s)=>{if(!r(s))throw new l0;retur...
function iZe (line 92) | function iZe(t){return Wr({test:(e,r)=>e.length>=t?!0:mr(r,`Expected to ...
function sZe (line 92) | function sZe(t){return Wr({test:(e,r)=>e.length<=t?!0:mr(r,`Expected to ...
function ane (line 92) | function ane(t){return Wr({test:(e,r)=>e.length!==t?mr(r,`Expected to ha...
function oZe (line 92) | function oZe({map:t}={}){return Wr({test:(e,r)=>{let s=new Set,a=new Set...
function aZe (line 92) | function aZe(){return Wr({test:(t,e)=>t<=0?!0:mr(e,`Expected to be negat...
function lZe (line 92) | function lZe(){return Wr({test:(t,e)=>t>=0?!0:mr(e,`Expected to be posit...
function yU (line 92) | function yU(t){return Wr({test:(e,r)=>e>=t?!0:mr(r,`Expected to be at le...
function cZe (line 92) | function cZe(t){return Wr({test:(e,r)=>e<=t?!0:mr(r,`Expected to be at m...
function uZe (line 92) | function uZe(t,e){return Wr({test:(r,s)=>r>=t&&r<=e?!0:mr(s,`Expected to...
function fZe (line 92) | function fZe(t,e){return Wr({test:(r,s)=>r>=t&&r<e?!0:mr(s,`Expected to ...
function EU (line 92) | function EU({unsafe:t=!1}={}){return Wr({test:(e,r)=>e!==Math.round(e)?m...
function X2 (line 92) | function X2(t){return Wr({test:(e,r)=>t.test(e)?!0:mr(r,`Expected to mat...
function AZe (line 92) | function AZe(){return Wr({test:(t,e)=>t!==t.toLowerCase()?mr(e,`Expected...
function pZe (line 92) | function pZe(){return Wr({test:(t,e)=>t!==t.toUpperCase()?mr(e,`Expected...
function hZe (line 92) | function hZe(){return Wr({test:(t,e)=>jze.test(t)?!0:mr(e,`Expected to b...
function gZe (line 92) | function gZe(){return Wr({test:(t,e)=>nne.test(t)?!0:mr(e,`Expected to b...
function dZe (line 92) | function dZe({alpha:t=!1}){return Wr({test:(e,r)=>(t?_ze.test(e):Uze.tes...
function mZe (line 92) | function mZe(){return Wr({test:(t,e)=>Hze.test(t)?!0:mr(e,`Expected to b...
function yZe (line 92) | function yZe(t=gU()){return Wr({test:(e,r)=>{let s;try{s=JSON.parse(e)}c...
function qx (line 92) | function qx(t,...e){let r=Array.isArray(e[0])?e[0]:e;return Wr({test:(s,...
function $2 (line 92) | function $2(t,...e){let r=Array.isArray(e[0])?e[0]:e;return qx(t,r)}
function EZe (line 92) | function EZe(t){return Wr({test:(e,r)=>typeof e>"u"?!0:t(e,r)})}
function IZe (line 92) | function IZe(t){return Wr({test:(e,r)=>e===null?!0:t(e,r)})}
function CZe (line 92) | function CZe(t,e){var r;let s=new Set(t),a=eB[(r=e?.missingIf)!==null&&r...
function IU (line 92) | function IU(t,e){var r;let s=new Set(t),a=eB[(r=e?.missingIf)!==null&&r!...
function wZe (line 92) | function wZe(t,e){var r;let s=new Set(t),a=eB[(r=e?.missingIf)!==null&&r...
function BZe (line 92) | function BZe(t,e){var r;let s=new Set(t),a=eB[(r=e?.missingIf)!==null&&r...
function tB (line 92) | function tB(t,e,r,s){var a,n;let c=new Set((a=s?.ignore)!==null&&a!==voi...
method constructor (line 92) | constructor({errors:e}={}){let r="Type mismatch";if(e&&e.length>0){r+=`
method constructor (line 94) | constructor(){this.help=!1}
method Usage (line 94) | static Usage(e){return e}
method catch (line 94) | async catch(e){throw e}
method validateAndExecute (line 94) | async validateAndExecute(){let r=this.constructor.schema;if(Array.isArra...
function sl (line 94) | function sl(t){uU&&console.log(t)}
function cne (line 94) | function cne(){let t={nodes:[]};for(let e=0;e<En.CustomNode;++e)t.nodes....
function SZe (line 94) | function SZe(t){let e=cne(),r=[],s=e.nodes.length;for(let a of t){r.push...
function Mu (line 94) | function Mu(t,e){return t.nodes.push(e),t.nodes.length-1}
function DZe (line 94) | function DZe(t){let e=new Set,r=s=>{if(e.has(s))return;e.add(s);let a=t....
function bZe (line 94) | function bZe(t,{prefix:e=""}={}){if(uU){sl(`${e}Nodes are:`);for(let r=0...
function PZe (line 94) | function PZe(t,e,r=!1){sl(`Running a vm on ${JSON.stringify(e)}`);let s=...
function xZe (line 94) | function xZe(t,e,{endToken:r=ei.EndOfInput}={}){let s=PZe(t,[...e,r]);re...
function kZe (line 94) | function kZe(t){let e=0;for(let{state:r}of t)r.path.length>e&&(e=r.path....
function QZe (line 94) | function QZe(t,e){let r=e.filter(S=>S.selectedIndex!==null),s=r.filter(S...
function TZe (line 94) | function TZe(t){let e=[],r=[];for(let s of t)s.selectedIndex===Fd?r.push...
function une (line 94) | function une(t,e,...r){return e===void 0?Array.from(t):une(t.filter((s,a...
function Hl (line 94) | function Hl(){return{dynamics:[],shortcuts:[],statics:{}}}
function fne (line 94) | function fne(t){return t===En.SuccessNode||t===En.ErrorNode}
function CU (line 94) | function CU(t,e=0){return{to:fne(t.to)?t.to:t.to>=En.CustomNode?t.to+e-E...
function RZe (line 94) | function RZe(t,e=0){let r=Hl();for(let[s,a]of t.dynamics)r.dynamics.push...
function qs (line 94) | function qs(t,e,r,s,a){t.nodes[e].dynamics.push([r,{to:s,reducer:a}])}
function CE (line 94) | function CE(t,e,r,s){t.nodes[e].shortcuts.push({to:r,reducer:s})}
function Ca (line 94) | function Ca(t,e,r,s,a){(Object.prototype.hasOwnProperty.call(t.nodes[e]....
function Gx (line 94) | function Gx(t,e,r,s,a){if(Array.isArray(e)){let[n,...c]=e;return t[n](r,...
method constructor (line 94) | constructor(e,r){this.allOptionNames=new Map,this.arity={leading:[],trai...
method addPath (line 94) | addPath(e){this.paths.push(e)}
method setArity (line 94) | setArity({leading:e=this.arity.leading,trailing:r=this.arity.trailing,ex...
method addPositional (line 94) | addPositional({name:e="arg",required:r=!0}={}){if(!r&&this.arity.extra==...
method addRest (line 94) | addRest({name:e="arg",required:r=0}={}){if(this.arity.extra===jl)throw n...
method addProxy (line 94) | addProxy({required:e=0}={}){this.addRest({required:e}),this.arity.proxy=!0}
method addOption (line 94) | addOption({names:e,description:r,arity:s=0,hidden:a=!1,required:n=!1,all...
method setContext (line 94) | setContext(e){this.context=e}
method usage (line 94) | usage({detailed:e=!0,inlineOptions:r=!0}={}){let s=[this.cliOpts.binaryN...
method compile (line 94) | compile(){if(typeof this.context>"u")throw new Error("Assertion failed: ...
method registerOptions (line 94) | registerOptions(e,r){qs(e,r,["isOption","--"],r,"inhibateOptions"),qs(e,...
method constructor (line 94) | constructor({binaryName:e="..."}={}){this.builders=[],this.opts={binaryN...
method build (line 94) | static build(e,r={}){return new t(r).commands(e).compile()}
method getBuilderByIndex (line 94) | getBuilderByIndex(e){if(!(e>=0&&e<this.builders.length))throw new Error(...
method commands (line 94) | commands(e){for(let r of e)r(this.command());return this}
method command (line 94) | command(){let e=new BU(this.builders.length,this.opts);return this.build...
method compile (line 94) | compile(){let e=[],r=[];for(let a of this.builders){let{machine:n,contex...
function pne (line 94) | function pne(){return Vx.default&&"getColorDepth"in Vx.default.WriteStre...
function hne (line 94) | function hne(t){let e=Ane;if(typeof e>"u"){if(t.stdout===process.stdout&...
method constructor (line 94) | constructor(e){super(),this.contexts=e,this.commands=[]}
method from (line 94) | static from(e,r){let s=new t(r);s.path=e.path;for(let a of e.options)swi...
method execute (line 94) | async execute(){let e=this.commands;if(typeof this.index<"u"&&this.index...
function Ene (line 98) | async function Ene(...t){let{resolvedOptions:e,resolvedCommandClasses:r,...
function Ine (line 98) | async function Ine(...t){let{resolvedOptions:e,resolvedCommandClasses:r,...
function Cne (line 98) | function Cne(t){let e,r,s,a;switch(typeof process<"u"&&typeof process.ar...
function yne (line 98) | function yne(t){return t()}
method constructor (line 98) | constructor({binaryLabel:e,binaryName:r="...",binaryVersion:s,enableCapt...
method from (line 98) | static from(e,r={}){let s=new t(r),a=Array.isArray(e)?e:[e];for(let n of...
method register (line 98) | register(e){var r;let s=new Map,a=new e;for(let p in a){let h=a[p];typeo...
method process (line 98) | process(e,r){let{input:s,context:a,partial:n}=typeof e=="object"&&Array....
method run (line 98) | async run(e,r){var s,a;let n,c={...t.defaultContext,...r},f=(s=this.enab...
method runExit (line 98) | async runExit(e,r){process.exitCode=await this.run(e,r)}
method definition (line 98) | definition(e,{colored:r=!1}={}){if(!e.usage)return null;let{usage:s}=thi...
method definitions (line 98) | definitions({colored:e=!1}={}){let r=[];for(let s of this.registrations....
method usage (line 98) | usage(e=null,{colored:r,detailed:s=!1,prefix:a="$ "}={}){var n;if(e===nu...
method error (line 124) | error(e,r){var s,{colored:a,command:n=(s=e[mne])!==null&&s!==void 0?s:nu...
method format (line 127) | format(e){var r;return((r=e??this.enableColors)!==null&&r!==void 0?r:t.d...
method getUsageByRegistration (line 127) | getUsageByRegistration(e,r){let s=this.registrations.get(e);if(typeof s>...
method getUsageByIndex (line 127) | getUsageByIndex(e,r){return this.builder.getBuilderByIndex(e).usage(r)}
method execute (line 127) | async execute(){this.context.stdout.write(`${JSON.stringify(this.cli.def...
method execute (line 128) | async execute(){this.context.stdout.write(this.cli.usage())}
function Jx (line 128) | function Jx(t={}){return Ea({definition(e,r){var s;e.addProxy({name:(s=t...
method constructor (line 128) | constructor(){super(...arguments),this.args=Jx()}
method execute (line 128) | async execute(){this.context.stdout.write(`${JSON.stringify(this.cli.pro...
method execute (line 129) | async execute(){var e;this.context.stdout.write(`${(e=this.cli.binaryVer...
function Pne (line 130) | function Pne(t,e,r){let[s,a]=Gf(e,r??{}),{arity:n=1}=a,c=t.split(","),f=...
function kne (line 130) | function kne(t,e,r){let[s,a]=Gf(e,r??{}),n=t.split(","),c=new Set(n);ret...
function Tne (line 130) | function Tne(t,e,r){let[s,a]=Gf(e,r??{}),n=t.split(","),c=new Set(n);ret...
function Fne (line 130) | function Fne(t={}){return Ea({definition(e,r){var s;e.addRest({name:(s=t...
function NZe (line 130) | function NZe(t,e,r){let[s,a]=Gf(e,r??{}),{arity:n=1}=a,c=t.split(","),f=...
function OZe (line 130) | function OZe(t={}){let{required:e=!0}=t;return Ea({definition(r,s){var a...
function One (line 130) | function One(t,...e){return typeof t=="string"?NZe(t,...e):OZe(t)}
function jZe (line 130) | function jZe(t){let e={},r=t.toString();r=r.replace(/\r\n?/mg,`
function qZe (line 132) | function qZe(t){let e=jne(t),r=Gs.configDotenv({path:e});if(!r.parsed)th...
function GZe (line 132) | function GZe(t){console.log(`[dotenv@${PU}][INFO] ${t}`)}
function WZe (line 132) | function WZe(t){console.log(`[dotenv@${PU}][WARN] ${t}`)}
function DU (line 132) | function DU(t){console.log(`[dotenv@${PU}][DEBUG] ${t}`)}
function Hne (line 132) | function Hne(t){return t&&t.DOTENV_KEY&&t.DOTENV_KEY.length>0?t.DOTENV_K...
function YZe (line 132) | function YZe(t,e){let r;try{r=new URL(e)}catch(f){throw f.code==="ERR_IN...
function jne (line 132) | function jne(t){let e=bU.resolve(process.cwd(),".env");return t&&t.path&...
function VZe (line 132) | function VZe(t){return t[0]==="~"?bU.join(MZe.homedir(),t.slice(1)):t}
function KZe (line 132) | function KZe(t){GZe("Loading env from encrypted .env.vault");let e=Gs._p...
function JZe (line 132) | function JZe(t){let e=bU.resolve(process.cwd(),".env"),r="utf8",s=!!(t&&...
function zZe (line 132) | function zZe(t){let e=jne(t);return Hne(t).length===0?Gs.configDotenv(t)...
function ZZe (line 132) | function ZZe(t,e){let r=Buffer.from(e.slice(-64),"hex"),s=Buffer.from(t,...
function XZe (line 132) | function XZe(t,e,r={}){let s=!!(r&&r.debug),a=!!(r&&r.override);if(typeo...
function Vf (line 132) | function Vf(t){return`YN${t.toString(10).padStart(4,"0")}`}
function zx (line 132) | function zx(t){let e=Number(t.slice(2));if(typeof Dr[e]>"u")throw new Er...
method constructor (line 132) | constructor(e,r){if(r=yXe(r),e instanceof t){if(e.loose===!!r.loose&&e.i...
method format (line 132) | format(){return this.version=`${this.major}.${this.minor}.${this.patch}`...
method toString (line 132) | toString(){return this.version}
method compare (line 132) | compare(e){if($x("SemVer.compare",this.version,this.options,e),!(e insta...
method compareMain (line 132) | compareMain(e){return e instanceof t||(e=new t(e,this.options)),BE(this....
method comparePre (line 132) | comparePre(e){if(e instanceof t||(e=new t(e,this.options)),this.prerelea...
method compareBuild (line 132) | compareBuild(e){e instanceof t||(e=new t(e,this.options));let r=0;do{let...
method inc (line 132) | inc(e,r,s){switch(e){case"premajor":this.prerelease.length=0,this.patch=...
function Fn (line 132) | function Fn(t){var e=this;if(e instanceof Fn||(e=new Fn),e.tail=null,e.h...
function A$e (line 132) | function A$e(t,e,r){var s=e===t.head?new Md(r,null,e,t):new Md(r,e,e.nex...
function p$e (line 132) | function p$e(t,e){t.tail=new Md(e,t.tail,null,t),t.head||(t.head=t.tail)...
function h$e (line 132) | function h$e(t,e){t.head=new Md(e,null,t.head,t),t.tail||(t.tail=t.head)...
function Md (line 132) | function Md(t,e,r,s){if(!(this instanceof Md))return new Md(t,e,r,s);thi...
method constructor (line 132) | constructor(e){if(typeof e=="number"&&(e={max:e}),e||(e={}),e.max&&(type...
method max (line 132) | set max(e){if(typeof e!="number"||e<0)throw new TypeError("max must be a...
method max (line 132) | get max(){return this[_d]}
method allowStale (line 132) | set allowStale(e){this[fB]=!!e}
method allowStale (line 132) | get allowStale(){return this[fB]}
method maxAge (line 132) | set maxAge(e){if(typeof e!="number")throw new TypeError("maxAge must be ...
method maxAge (line 132) | get maxAge(){return this[Ud]}
method lengthCalculator (line 132) | set lengthCalculator(e){typeof e!="function"&&(e=LU),e!==this[vE]&&(this...
method lengthCalculator (line 132) | get lengthCalculator(){return this[vE]}
method length (line 132) | get length(){return this[bp]}
method itemCount (line 132) | get itemCount(){return this[Ws].length}
method rforEach (line 132) | rforEach(e,r){r=r||this;for(let s=this[Ws].tail;s!==null;){let a=s.prev;...
method forEach (line 132) | forEach(e,r){r=r||this;for(let s=this[Ws].head;s!==null;){let a=s.next;J...
method keys (line 132) | keys(){return this[Ws].toArray().map(e=>e.key)}
method values (line 132) | values(){return this[Ws].toArray().map(e=>e.value)}
method reset (line 132) | reset(){this[Dp]&&this[Ws]&&this[Ws].length&&this[Ws].forEach(e=>this[Dp...
method dump (line 132) | dump(){return this[Ws].map(e=>lk(this,e)?!1:{k:e.key,v:e.value,e:e.now+(...
method dumpLru (line 132) | dumpLru(){return this[Ws]}
method set (line 132) | set(e,r,s){if(s=s||this[Ud],s&&typeof s!="number")throw new TypeError("m...
method has (line 132) | has(e){if(!this[_u].has(e))return!1;let r=this[_u].get(e).value;return!l...
method get (line 132) | get(e){return MU(this,e,!0)}
method peek (line 132) | peek(e){return MU(this,e,!1)}
method pop (line 132) | pop(){let e=this[Ws].tail;return e?(SE(this,e),e.value):null}
method del (line 132) | del(e){SE(this,this[_u].get(e))}
method load (line 132) | load(e){this.reset();let r=Date.now();for(let s=e.length-1;s>=0;s--){let...
method prune (line 132) | prune(){this[_u].forEach((e,r)=>MU(this,r,!1))}
method constructor (line 132) | constructor(e,r,s,a,n){this.key=e,this.value=r,this.length=s,this.now=a,...
method constructor (line 132) | constructor(e,r){if(r=m$e(r),e instanceof t)return e.loose===!!r.loose&&...
method format (line 132) | format(){return this.range=this.set.map(e=>e.join(" ").trim()).join("||"...
method toString (line 132) | toString(){return this.range}
method parseRange (line 132) | parseRange(e){let s=((this.options.includePrerelease&&w$e)|(this.options...
method intersects (line 132) | intersects(e,r){if(!(e instanceof t))throw new TypeError("a Range is req...
method test (line 132) | test(e){if(!e)return!1;if(typeof e=="string")try{e=new y$e(e,this.option...
method ANY (line 132) | static get ANY(){return pB}
method constructor (line 132) | constructor(e,r){if(r=nse(r),e instanceof t){if(e.loose===!!r.loose)retu...
method parse (line 132) | parse(e){let r=this.options.loose?ise[sse.COMPARATORLOOSE]:ise[sse.COMPA...
method toString (line 132) | toString(){return this.value}
method test (line 132) | test(e){if(GU("Comparator.test",e,this.options.loose),this.semver===pB||...
method intersects (line 132) | intersects(e,r){if(!(e instanceof t))throw new TypeError("a Comparator i...
function $et (line 132) | function $et(t,e){function r(){this.constructor=t}r.prototype=e.prototyp...
function Hd (line 132) | function Hd(t,e,r,s){this.message=t,this.expected=e,this.found=r,this.lo...
function s (line 132) | function s(h){return h.charCodeAt(0).toString(16).toUpperCase()}
function a (line 132) | function a(h){return h.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace...
function n (line 132) | function n(h){return h.replace(/\\/g,"\\\\").replace(/\]/g,"\\]").replac...
function c (line 132) | function c(h){return r[h.type](h)}
function f (line 132) | function f(h){var E=new Array(h.length),C,S;for(C=0;C<h.length;C++)E[C]=...
function p (line 132) | function p(h){return h?'"'+a(h)+'"':"end of input"}
function ett (line 132) | function ett(t,e){e=e!==void 0?e:{};var r={},s={Expression:y},a=y,n="|",...
function rtt (line 134) | function rtt(t,e){return(t[0]-e[0])**2+(t[1]-e[1])**2+(t[2]-e[2])**2}
function ntt (line 134) | function ntt(){let t={},e=Object.keys(fk);for(let r=e.length,s=0;s<r;s++...
function itt (line 134) | function itt(t){let e=ntt(),r=[t];for(e[t].distance=0;r.length;){let s=r...
function stt (line 134) | function stt(t,e){return function(r){return e(t(r))}}
function ott (line 134) | function ott(t,e){let r=[e[t].parent,t],s=fk[e[t].parent][t],a=e[t].pare...
function ctt (line 134) | function ctt(t){let e=function(...r){let s=r[0];return s==null?s:(s.leng...
function utt (line 134) | function utt(t){let e=function(...r){let s=r[0];if(s==null)return s;s.le...
function ftt (line 134) | function ftt(){let t=new Map,e={modifier:{reset:[0,0],bold:[1,22],dim:[2...
function e4 (line 134) | function e4(t){return t===0?!1:{level:t,hasBasic:!0,has256:t>=2,has16m:t...
function t4 (line 134) | function t4(t,e){if(u0===0)return 0;if(Dc("color=16m")||Dc("color=full")...
function ptt (line 134) | function ptt(t){let e=t4(t,t&&t.isTTY);return e4(e)}
function hoe (line 138) | function hoe(t){let e=t[0]==="u",r=t[1]==="{";return e&&!r&&t.length===5...
function Itt (line 138) | function Itt(t,e){let r=[],s=e.trim().split(/\s*,\s*/g),a;for(let n of s...
function Ctt (line 138) | function Ctt(t){Aoe.lastIndex=0;let e=[],r;for(;(r=Aoe.exec(t))!==null;)...
function poe (line 138) | function poe(t,e){let r={};for(let a of e)for(let n of a.styles)r[n[0]]=...
method constructor (line 138) | constructor(e){return Eoe(e)}
function gk (line 138) | function gk(t){return Eoe(t)}
method get (line 138) | get(){let r=dk(this,o4(e.open,e.close,this._styler),this._isEmpty);retur...
method get (line 138) | get(){let t=dk(this,this._styler,!0);return Object.defineProperty(this,"...
method get (line 138) | get(){let{level:e}=this;return function(...r){let s=o4(mB.color[yoe[e]][...
method get (line 138) | get(){let{level:r}=this;return function(...s){let a=o4(mB.bgColor[yoe[r]...
method get (line 138) | get(){return this._generator.level}
method set (line 138) | set(t){this._generator.level=t}
function Dtt (line 139) | function Dtt(t,e,r){let s=a4(t,e,"-",!1,r)||[],a=a4(e,t,"",!1,r)||[],n=a...
function btt (line 139) | function btt(t,e){let r=1,s=1,a=koe(t,r),n=new Set([e]);for(;t<=a&&a<=e;...
function Ptt (line 139) | function Ptt(t,e,r){if(t===e)return{pattern:t,count:[],digits:0};let s=x...
function Poe (line 139) | function Poe(t,e,r,s){let a=btt(t,e),n=[],c=t,f;for(let p=0;p<a.length;p...
function a4 (line 139) | function a4(t,e,r,s,a){let n=[];for(let c of t){let{string:f}=c;!s&&!xoe...
function xtt (line 139) | function xtt(t,e){let r=[];for(let s=0;s<t.length;s++)r.push([t[s],e[s]]...
function ktt (line 139) | function ktt(t,e){return t>e?1:e>t?-1:0}
function xoe (line 139) | function xoe(t,e,r){return t.some(s=>s[e]===r)}
function koe (line 139) | function koe(t,e){return Number(String(t).slice(0,-e)+"9".repeat(e))}
function Qoe (line 139) | function Qoe(t,e){return t-t%Math.pow(10,e)}
function Toe (line 139) | function Toe(t){let[e=0,r=""]=t;return r||e>1?`{${e+(r?","+r:"")}}`:""}
function Qtt (line 139) | function Qtt(t,e,r){return`[${t}${e-t===1?"":"-"}${e}]`}
function Roe (line 139) | function Roe(t){return/^-?(0+)\d/.test(t)}
function Ttt (line 139) | function Ttt(t,e,r){if(!e.isPadded)return t;let s=Math.abs(e.maxLen-Stri...
method extglobChars (line 140) | extglobChars(t){return{"!":{type:"negate",open:"(?:(?!(?:",close:`))${t....
method globChars (line 140) | globChars(t){return t===!0?mrt:cae}
function Hrt (line 140) | function Hrt(){this.__data__=[],this.size=0}
function jrt (line 140) | function jrt(t,e){return t===e||t!==t&&e!==e}
function Grt (line 140) | function Grt(t,e){for(var r=t.length;r--;)if(qrt(t[r][0],e))return r;ret...
function Krt (line 140) | function Krt(t){var e=this.__data__,r=Wrt(e,t);if(r<0)return!1;var s=e.l...
function zrt (line 140) | function zrt(t){var e=this.__data__,r=Jrt(e,t);return r<0?void 0:e[r][1]}
function Xrt (line 140) | function Xrt(t){return Zrt(this.__data__,t)>-1}
function ent (line 140) | function ent(t,e){var r=this.__data__,s=$rt(r,t);return s<0?(++this.size...
function FE (line 140) | function FE(t){var e=-1,r=t==null?0:t.length;for(this.clear();++e<r;){va...
function ant (line 140) | function ant(){this.__data__=new ont,this.size=0}
function lnt (line 140) | function lnt(t){var e=this.__data__,r=e.delete(t);return this.size=e.siz...
function cnt (line 140) | function cnt(t){return this.__data__.get(t)}
function unt (line 140) | function unt(t){return this.__data__.has(t)}
function Ent (line 140) | function Ent(t){var e=mnt.call(t,vB),r=t[vB];try{t[vB]=void 0;var s=!0}c...
function wnt (line 140) | function wnt(t){return Cnt.call(t)}
function bnt (line 140) | function bnt(t){return t==null?t===void 0?Dnt:Snt:ule&&ule in Object(t)?...
function Pnt (line 140) | function Pnt(t){var e=typeof t;return t!=null&&(e=="object"||e=="functio...
function Nnt (line 140) | function Nnt(t){if(!knt(t))return!1;var e=xnt(t);return e==Tnt||e==Rnt||...
function Mnt (line 140) | function Mnt(t){return!!dle&&dle in t}
function Hnt (line 140) | function Hnt(t){if(t!=null){try{return Unt.call(t)}catch{}try{return t+"...
function $nt (line 140) | function $nt(t){if(!Gnt(t)||qnt(t))return!1;var e=jnt(t)?Xnt:Vnt;return ...
function eit (line 140) | function eit(t,e){return t?.[e]}
function nit (line 140) | function nit(t,e){var r=rit(t,e);return tit(r)?r:void 0}
function cit (line 140) | function cit(){this.__data__=ble?ble(null):{},this.size=0}
function uit (line 140) | function uit(t){var e=this.has(t)&&delete this.__data__[t];return this.s...
function git (line 140) | function git(t){var e=this.__data__;if(fit){var r=e[t];return r===Ait?vo...
function Eit (line 140) | function Eit(t){var e=this.__data__;return dit?e[t]!==void 0:yit.call(e,t)}
function wit (line 140) | function wit(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,...
function NE (line 140) | function NE(t){var e=-1,r=t==null?0:t.length;for(this.clear();++e<r;){va...
function kit (line 140) | function kit(){this.size=0,this.__data__={hash:new Ule,map:new(xit||Pit)...
function Qit (line 140) | function Qit(t){var e=typeof t;return e=="string"||e=="number"||e=="symb...
function Rit (line 140) | function Rit(t,e){var r=t.__data__;return Tit(e)?r[typeof e=="string"?"s...
function Nit (line 140) | function Nit(t){var e=Fit(this,t).delete(t);return this.size-=e?1:0,e}
function Lit (line 140) | function Lit(t){return Oit(this,t).get(t)}
function _it (line 140) | function _it(t){return Mit(this,t).has(t)}
function Hit (line 140) | function Hit(t,e){var r=Uit(this,t),s=r.size;return r.set(t,e),this.size...
function OE (line 140) | function OE(t){var e=-1,r=t==null?0:t.length;for(this.clear();++e<r;){va...
function Zit (line 140) | function Zit(t,e){var r=this.__data__;if(r instanceof Vit){var s=r.__dat...
function LE (line 140) | function LE(t){var e=this.__data__=new Xit(t);this.size=e.size}
function sst (line 140) | function sst(t){return this.__data__.set(t,ist),this}
function ost (line 140) | function ost(t){return this.__data__.has(t)}
function xk (line 140) | function xk(t){var e=-1,r=t==null?0:t.length;for(this.__data__=new ast;+...
function ust (line 140) | function ust(t,e){for(var r=-1,s=t==null?0:t.length;++r<s;)if(e(t[r],r,t...
function fst (line 140) | function fst(t,e){return t.has(e)}
function mst (line 140) | function mst(t,e,r,s,a,n){var c=r&gst,f=t.length,p=e.length;if(f!=p&&!(c...
function Ist (line 140) | function Ist(t){var e=-1,r=Array(t.size);return t.forEach(function(s,a){...
function Cst (line 140) | function Cst(t){var e=-1,r=Array(t.size);return t.forEach(function(s){r[...
function _st (line 140) | function _st(t,e,r,s,a,n,c){switch(r){case Mst:if(t.byteLength!=e.byteLe...
function Ust (line 140) | function Ust(t,e){for(var r=-1,s=e.length,a=t.length;++r<s;)t[a+r]=e[r];...
function Gst (line 140) | function Gst(t,e,r){var s=e(t);return qst(t)?s:jst(s,r(t))}
function Wst (line 140) | function Wst(t,e){for(var r=-1,s=t==null?0:t.length,a=0,n=[];++r<s;){var...
function Yst (line 140) | function Yst(){return[]}
function Xst (line 140) | function Xst(t,e){for(var r=-1,s=Array(t);++r<t;)s[r]=e(r);return s}
function $st (line 140) | function $st(t){return t!=null&&typeof t=="object"}
function not (line 140) | function not(t){return tot(t)&&eot(t)==rot}
function lot (line 140) | function lot(){return!1}
function dot (line 140) | function dot(t,e){var r=typeof t;return e=e??hot,!!e&&(r=="number"||r!="...
function yot (line 140) | function yot(t){return typeof t=="number"&&t>-1&&t%1==0&&t<=mot}
function Yot (line 140) | function Yot(t){return Cot(t)&&Iot(t.length)&&!!Di[Eot(t)]}
function Vot (line 140) | function Vot(t){return function(e){return t(e)}}
function lat (line 140) | function lat(t,e){var r=rat(t),s=!r&&tat(t),a=!r&&!s&&nat(t),n=!r&&!s&&!...
function uat (line 140) | function uat(t){var e=t&&t.constructor,r=typeof e=="function"&&e.prototy...
function fat (line 140) | function fat(t,e){return function(r){return t(e(r))}}
function yat (line 140) | function yat(t){if(!hat(t))return gat(t);var e=[];for(var r in Object(t)...
function Cat (line 140) | function Cat(t){return t!=null&&Iat(t.length)&&!Eat(t)}
function Sat (line 140) | function Sat(t){return vat(t)?wat(t):Bat(t)}
function xat (line 140) | function xat(t){return Dat(t,Pat,bat)}
function Rat (line 140) | function Rat(t,e,r,s,a,n){var c=r&kat,f=fue(t),p=f.length,h=fue(e),E=h.l...
function ilt (line 140) | function ilt(t,e,r,s,a,n){var c=kue(t),f=kue(e),p=c?Rue:xue(t),h=f?Rue:x...
function Mue (line 140) | function Mue(t,e,r,s,a){return t===e?!0:t==null||e==null||!Lue(t)&&!Lue(...
function alt (line 140) | function alt(t,e){return olt(t,e)}
function ult (line 140) | function ult(t,e,r){e=="__proto__"&&Gue?Gue(t,e,{configurable:!0,enumera...
function plt (line 140) | function plt(t,e,r){(r!==void 0&&!Alt(t[e],r)||r===void 0&&!(e in t))&&f...
function hlt (line 140) | function hlt(t){return function(e,r,s){for(var a=-1,n=Object(e),c=s(e),f...
function Elt (line 140) | function Elt(t,e){if(e)return t.slice();var r=t.length,s=$ue?$ue(r):new ...
function Ilt (line 140) | function Ilt(t){var e=new t.constructor(t.byteLength);return new tfe(e)....
function wlt (line 140) | function wlt(t,e){var r=e?Clt(t.buffer):t.buffer;return new t.constructo...
function Blt (line 140) | function Blt(t,e){var r=-1,s=t.length;for(e||(e=Array(s));++r<s;)e[r]=t[...
function t (line 140) | function t(){}
function Qlt (line 140) | function Qlt(t){return typeof t.constructor=="function"&&!klt(t)?Plt(xlt...
function Flt (line 140) | function Flt(t){return Rlt(t)&&Tlt(t)}
function qlt (line 140) | function qlt(t){if(!Llt(t)||Nlt(t)!=Mlt)return!1;var e=Olt(t);if(e===nul...
function Glt (line 140) | function Glt(t,e){if(!(e==="constructor"&&typeof t[e]=="function")&&e!="...
function Jlt (line 140) | function Jlt(t,e,r){var s=t[e];(!(Klt.call(t,e)&&Ylt(s,r))||r===void 0&&...
function Xlt (line 140) | function Xlt(t,e,r,s){var a=!r;r||(r={});for(var n=-1,c=e.length;++n<c;)...
function $lt (line 140) | function $lt(t){var e=[];if(t!=null)for(var r in Object(t))e.push(r);ret...
function sct (line 140) | function sct(t){if(!ect(t))return rct(t);var e=tct(t),r=[];for(var s in ...
function cct (line 140) | function cct(t){return lct(t)?oct(t,!0):act(t)}
function Act (line 140) | function Act(t){return uct(t,fct(t))}
function vct (line 140) | function vct(t,e,r,s,a,n,c){var f=bfe(t,r),p=bfe(e,r),h=c.get(p);if(h){v...
function kfe (line 140) | function kfe(t,e,r,s,a){t!==e&&bct(e,function(n,c){if(a||(a=new Sct),xct...
function Tct (line 140) | function Tct(t){return t}
function Rct (line 140) | function Rct(t,e,r){switch(r.length){case 0:return t.call(e);case 1:retu...
function Nct (line 140) | function Nct(t,e,r){return e=Ofe(e===void 0?t.length-1:e,0),function(){f...
function Oct (line 140) | function Oct(t){return function(){return t}}
function qct (line 140) | function qct(t){var e=0,r=0;return function(){var s=jct(),a=Hct-(s-r);if...
function zct (line 140) | function zct(t,e){return Jct(Kct(t,e,Vct),t+"")}
function tut (line 140) | function tut(t,e,r){if(!eut(r))return!1;var s=typeof e;return(s=="number...
function iut (line 140) | function iut(t){return rut(function(e,r){var s=-1,a=r.length,n=a>1?r[a-1...
function lut (line 140) | function lut(t){return!!(sAe.default.valid(t)&&t.match(/^[^-]+(-rc\.[0-9...
function Gk (line 140) | function Gk(t,{one:e,more:r,zero:s=r}){return t===0?s:t===1?e:r}
function cut (line 140) | function cut(t){return t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}
function uut (line 140) | function uut(t){}
function r3 (line 140) | function r3(t){throw new Error(`Assertion failed: Unexpected object '${t...
function fut (line 140) | function fut(t,e){let r=Object.values(t);if(!r.includes(e))throw new nt(...
function Yl (line 140) | function Yl(t,e){let r=[];for(let s of t){let a=e(s);a!==oAe&&r.push(a)}...
function A0 (line 140) | function A0(t,e){for(let r of t){let s=e(r);if(s!==aAe)return s}}
function Z4 (line 140) | function Z4(t){return typeof t=="object"&&t!==null}
function Uu (line 140) | async function Uu(t){let e=await Promise.allSettled(t),r=[];for(let s of...
function Wk (line 140) | function Wk(t){if(t instanceof Map&&(t=Object.fromEntries(t)),Z4(t))for(...
function Vl (line 140) | function Vl(t,e,r){let s=t.get(e);return typeof s>"u"&&t.set(e,s=r()),s}
function LB (line 140) | function LB(t,e){let r=t.get(e);return typeof r>"u"&&t.set(e,r=[]),r}
function xp (line 140) | function xp(t,e){let r=t.get(e);return typeof r>"u"&&t.set(e,r=new Set),r}
function n3 (line 140) | function n3(t,e){let r=t.get(e);return typeof r>"u"&&t.set(e,r=new Map),r}
function Aut (line 140) | async function Aut(t,e){if(e==null)return await t();try{return await t()...
function qE (line 140) | async function qE(t,e){try{return await t()}catch(r){throw r.message=e(r...
function i3 (line 140) | function i3(t,e){try{return t()}catch(r){throw r.message=e(r.message),r}}
function GE (line 140) | async function GE(t){return await new Promise((e,r)=>{let s=[];t.on("err...
function lAe (line 140) | function lAe(){let t,e;return{promise:new Promise((s,a)=>{t=s,e=a}),reso...
function cAe (line 140) | function cAe(t){return OB(ue.fromPortablePath(t))}
function uAe (line 140) | function uAe(path){let physicalPath=ue.fromPortablePath(path),currentCac...
function put (line 140) | function put(t){let e=eAe.get(t),r=le.statSync(t);if(e?.mtime===r.mtimeM...
function kp (line 140) | function kp(t,{cachingStrategy:e=2}={}){switch(e){case 0:return uAe(t);c...
function Ys (line 140) | function Ys(t,e){let r=Array.from(t);Array.isArray(e)||(e=[e]);let s=[];...
function hut (line 140) | function hut(t){return t.length===0?null:t.map(e=>`(${nAe.default.makeRe...
function Yk (line 140) | function Yk(t,{env:e}){let r=/\${(?<variableName>[\d\w_]+)(?<colon>:)?(?...
function MB (line 140) | function MB(t){switch(t){case"true":case"1":case 1:case!0:return!0;case"...
function AAe (line 140) | function AAe(t){return typeof t>"u"?t:MB(t)}
function s3 (line 140) | function s3(t){try{return AAe(t)}catch{return null}}
function gut (line 140) | function gut(t){return!!(ue.isAbsolute(t)||t.match(/^(\.{1,2}|~)\//))}
function pAe (line 140) | function pAe(t,...e){let r=c=>({value:c}),s=r(t),a=e.map(c=>r(c)),{value...
function dut (line 140) | function dut(...t){return pAe({},...t)}
function mut (line 140) | function mut(t,e){let r=Object.create(null);for(let s of t){let a=s[e];r...
function WE (line 140) | function WE(t){return typeof t=="string"?Number.parseInt(t,10):t}
method constructor (line 140) | constructor(){super(...arguments);this.chunks=[]}
method _transform (line 140) | _transform(r,s,a){if(s!=="buffer"||!Buffer.isBuffer(r))throw new Error("...
method _flush (line 140) | _flush(r){r(null,Buffer.concat(this.chunks))}
method constructor (line 140) | constructor(e){this.deferred=new Map;this.promises=new Map;this.limit=(0...
method set (line 140) | set(e,r){let s=this.deferred.get(e);typeof s>"u"&&this.deferred.set(e,s=...
method reduce (line 140) | reduce(e,r){let s=this.promises.get(e)??Promise.resolve();this.set(e,()=...
method wait (line 140) | async wait(){await Promise.all(this.promises.values())}
method constructor (line 140) | constructor(r=Buffer.alloc(0)){super();this.active=!0;this.ifEmpty=r}
method _transform (line 140) | _transform(r,s,a){if(s!=="buffer"||!Buffer.isBuffer(r))throw new Error("...
method _flush (line 140) | _flush(r){this.active&&this.ifEmpty.length>0?r(null,this.ifEmpty):r(null)}
function gAe (line 140) | function gAe(t){let e=["KiB","MiB","GiB","TiB"],r=e.length;for(;r>1&&t<1...
function Vk (line 140) | function Vk(t,e){if(Array.isArray(e))return e.length===0?ri(t,"[]",pt.CO...
function Hu (line 140) | function Hu(t,e){return[e,t]}
function Kd (line 140) | function Kd(t,e,r){return t.get("enableColors")&&r&2&&(e=UB.default.bold...
function ri (line 140) | function ri(t,e,r){if(!t.get("enableColors"))return e;let s=yut.get(r);i...
function KE (line 140) | function KE(t,e,r){return t.get("enableHyperlinks")?Eut?`\x1B]8;;${r}\x1...
function Ut (line 140) | function Ut(t,e,r){if(e===null)return ri(t,"null",pt.NULL);if(Object.has...
function f3 (line 140) | function f3(t,e,r,{separator:s=", "}={}){return[...e].map(a=>Ut(t,a,r))....
function Jd (line 140) | function Jd(t,e){if(t===null)return null;if(Object.hasOwn(Kk,e))return K...
function Iut (line 140) | function Iut(t,e,[r,s]){return t?Jd(r,s):Ut(e,r,s)}
function A3 (line 140) | function A3(t){return{Check:ri(t,"\u2713","green"),Cross:ri(t,"\u2718","...
function Zf (line 140) | function Zf(t,{label:e,value:[r,s]}){return`${Ut(t,e,pt.CODE)}: ${Ut(t,r...
function Zk (line 140) | function Zk(t,e,r){let s=[],a=[...e],n=r;for(;a.length>0;){let h=a[0],E=...
function HB (line 140) | function HB(t,{configuration:e}){let r=e.get("logFilters"),s=new Map,a=n...
function Cut (line 140) | function Cut(t){return t.reduce((e,r)=>[].concat(e,r),[])}
function wut (line 140) | function wut(t,e){let r=[[]],s=0;for(let a of t)e(a)?(s++,r[s]=[]):r[s]....
function But (line 140) | function But(t){return t.code==="ENOENT"}
method constructor (line 140) | constructor(e,r){this.name=e,this.isBlockDevice=r.isBlockDevice.bind(r),...
function vut (line 140) | function vut(t,e){return new g3(t,e)}
function Tut (line 140) | function Tut(t){return t.replace(/\\/g,"/")}
function Rut (line 140) | function Rut(t,e){return Dut.resolve(t,e)}
function Fut (line 140) | function Fut(t){if(t.charAt(0)==="."){let e=t.charAt(1);if(e==="/"||e===...
function d3 (line 140) | function d3(t){return t.replace(xut,"\\$2")}
function m3 (line 140) | function m3(t){return t.replace(Put,"\\$2")}
function CAe (line 140) | function CAe(t){return d3(t).replace(kut,"//$1").replace(Qut,"/")}
function wAe (line 140) | function wAe(t){return m3(t)}
function TAe (line 140) | function TAe(t,e={}){return!RAe(t,e)}
function RAe (line 140) | function RAe(t,e={}){return t===""?!1:!!(e.caseSensitiveMatch===!1||t.in...
function eft (line 140) | function eft(t){let e=t.indexOf("{");if(e===-1)return!1;let r=t.indexOf(...
function tft (line 140) | function tft(t){return tQ(t)?t.slice(1):t}
function rft (line 140) | function rft(t){return"!"+t}
function tQ (line 140) | function tQ(t){return t.startsWith("!")&&t[1]!=="("}
function FAe (line 140) | function FAe(t){return!tQ(t)}
function nft (line 140) | function nft(t){return t.filter(tQ)}
function ift (line 140) | function ift(t){return t.filter(FAe)}
function sft (line 140) | function sft(t){return t.filter(e=>!I3(e))}
function oft (line 140) | function oft(t){return t.filter(I3)}
function I3 (line 140) | function I3(t){return t.startsWith("..")||t.startsWith("./..")}
function aft (line 140) | function aft(t){return Yut(t,{flipBackslashes:!1})}
function lft (line 140) | function lft(t){return t.includes(QAe)}
function NAe (line 140) | function NAe(t){return t.endsWith("/"+QAe)}
function cft (line 140) | function cft(t){let e=Wut.basename(t);return NAe(t)||TAe(e)}
function uft (line 140) | function uft(t){return t.reduce((e,r)=>e.concat(OAe(r)),[])}
function OAe (line 140) | function OAe(t){let e=E3.braces(t,{expand:!0,nodupes:!0,keepEscaping:!0}...
function fft (line 140) | function fft(t,e){let{parts:r}=E3.scan(t,Object.assign(Object.assign({},...
function LAe (line 140) | function LAe(t,e){return E3.makeRe(t,e)}
function Aft (line 140) | function Aft(t,e){return t.map(r=>LAe(r,e))}
function pft (line 140) | function pft(t,e){return e.some(r=>r.test(t))}
function hft (line 140) | function hft(t){return t.replace($ut,"/")}
function mft (line 140) | function mft(){let t=[],e=dft.call(arguments),r=!1,s=e[e.length-1];s&&!A...
function UAe (line 140) | function UAe(t,e){if(Array.isArray(t))for(let r=0,s=t.length;r<s;r++)t[r...
function Eft (line 140) | function Eft(t){let e=yft(t);return t.forEach(r=>{r.once("error",s=>e.em...
function qAe (line 140) | function qAe(t){t.forEach(e=>e.emit("close"))}
function Ift (line 140) | function Ift(t){return typeof t=="string"}
function Cft (line 140) | function Cft(t){return t===""}
function xft (line 140) | function xft(t,e){let r=YAe(t,e),s=YAe(e.ignore,e),a=VAe(r),n=KAe(r,s),c...
function YAe (line 140) | function YAe(t,e){let r=t;return e.braceExpansion&&(r=ju.pattern.expandP...
function C3 (line 140) | function C3(t,e,r){let s=[],a=ju.pattern.getPatternsOutsideCurrentDirect...
function VAe (line 140) | function VAe(t){return ju.pattern.getPositivePatterns(t)}
function KAe (line 140) | function KAe(t,e){return ju.pattern.getNegativePatterns(t).concat(e).map...
function w3 (line 140) | function w3(t){let e={};return t.reduce((r,s)=>{let a=ju.pattern.getBase...
function B3 (line 140) | function B3(t,e,r){return Object.keys(t).map(s=>v3(s,t[s],e,r))}
function v3 (line 140) | function v3(t,e,r,s){return{dynamic:s,positive:e,negative:r,base:t,patte...
function kft (line 140) | function kft(t,e,r){e.fs.lstat(t,(s,a)=>{if(s!==null){zAe(r,s);return}if...
function zAe (line 140) | function zAe(t,e){t(e)}
function S3 (line 140) | function S3(t,e){t(null,e)}
function Qft (line 140) | function Qft(t,e){let r=e.fs.lstatSync(t);if(!r.isSymbolicLink()||!e.fol...
function Tft (line 140) | function Tft(t){return t===void 0?p0.FILE_SYSTEM_ADAPTER:Object.assign(O...
method constructor (line 140) | constructor(e={}){this._options=e,this.followSymbolicLink=this._getValue...
method _getValue (line 140) | _getValue(e,r){return e??r}
function Nft (line 140) | function Nft(t,e,r){if(typeof e=="function"){tpe.read(t,x3(),e);return}t...
function Oft (line 140) | function Oft(t,e){let r=x3(e);return Fft.read(t,r)}
function x3 (line 140) | function x3(t={}){return t instanceof P3.default?t:new P3.default(t)}
function Mft (line 140) | function Mft(t,e){let r,s,a,n=!0;Array.isArray(t)?(r=[],s=t.length):(a=O...
method constructor (line 140) | constructor(e,r){this.name=e,this.isBlockDevice=r.isBlockDevice.bind(r),...
function qft (line 140) | function qft(t,e){return new Q3(t,e)}
function Wft (line 140) | function Wft(t,e,r){return t.endsWith(r)?t+e:t+r+e}
function Kft (line 140) | function Kft(t,e,r){if(!e.stats&&Vft.IS_SUPPORT_READDIR_WITH_FILE_TYPES)...
function ppe (line 140) | function ppe(t,e,r){e.fs.readdir(t,{withFileTypes:!0},(s,a)=>{if(s!==nul...
function Jft (line 140) | function Jft(t,e){return r=>{if(!t.dirent.isSymbolicLink()){r(null,t);re...
function hpe (line 140) | function hpe(t,e,r){e.fs.readdir(t,(s,a)=>{if(s!==null){fQ(r,s);return}l...
function fQ (line 140) | function fQ(t,e){t(e)}
function F3 (line 140) | function F3(t,e){t(null,e)}
function Xft (line 140) | function Xft(t,e){return!e.stats&&Zft.IS_SUPPORT_READDIR_WITH_FILE_TYPES...
function ype (line 140) | function ype(t,e){return e.fs.readdirSync(t,{withFileTypes:!0}).map(s=>{...
function Epe (line 140) | function Epe(t,e){return e.fs.readdirSync(t).map(s=>{let a=mpe.joinPathS...
function $ft (line 140) | function $ft(t){return t===void 0?m0.FILE_SYSTEM_ADAPTER:Object.assign(O...
method constructor (line 140) | constructor(e={}){this._options=e,this.followSymbolicLinks=this._getValu...
method _getValue (line 140) | _getValue(e,r){return e??r}
function iAt (line 140) | function iAt(t,e,r){if(typeof e=="function"){Bpe.read(t,M3(),e);return}B...
function sAt (line 140) | function sAt(t,e){let r=M3(e);return nAt.read(t,r)}
function M3 (line 140) | function M3(t={}){return t instanceof L3.default?t:new L3.default(t)}
function oAt (line 140) | function oAt(t){var e=new t,r=e;function s(){var n=e;return n.next?e=n.n...
function Dpe (line 140) | function Dpe(t,e,r){if(typeof t=="function"&&(r=e,e=t,t=null),!(r>=1))th...
function Tc (line 140) | function Tc(){}
function lAt (line 140) | function lAt(){this.value=null,this.callback=Tc,this.next=null,this.rele...
function cAt (line 140) | function cAt(t,e,r){typeof t=="function"&&(r=e,e=t,t=null);function s(E,...
function uAt (line 140) | function uAt(t,e){return t.errorFilter===null?!0:!t.errorFilter(e)}
function fAt (line 140) | function fAt(t,e){return t===null||t(e)}
function AAt (line 140) | function AAt(t,e){return t.split(/[/\\]/).join(e)}
function pAt (line 140) | function pAt(t,e,r){return t===""?e:t.endsWith(r)?t+e:t+r+e}
method constructor (line 140) | constructor(e,r){this._root=e,this._settings=r,this._root=hAt.replacePat...
method constructor (line 140) | constructor(e,r){super(e,r),this._settings=r,this._scandir=dAt.scandir,t...
method read (line 140) | read(){return this._isFatalError=!1,this._isDestroyed=!1,setImmediate(()...
method isDestroyed (line 140) | get isDestroyed(){return this._isDestroyed}
method destroy (line 140) | destroy(){if(this._isDestroyed)throw new Error("The reader is already de...
method onEntry (line 140) | onEntry(e){this._emitter.on("entry",e)}
method onError (line 140) | onError(e){this._emitter.once("error",e)}
method onEnd (line 140) | onEnd(e){this._emitter.once("end",e)}
method _pushToQueue (line 140) | _pushToQueue(e,r){let s={directory:e,base:r};this._queue.push(s,a=>{a!==...
method _worker (line 140) | _worker(e,r){this._scandir(e.directory,this._settings.fsScandirSettings,...
method _handleError (line 140) | _handleError(e){this._isDestroyed||!hQ.isFatalError(this._settings,e)||(...
method _handleEntry (line 140) | _handleEntry(e,r){if(this._isDestroyed||this._isFatalError)return;let s=...
method _emitEntry (line 140) | _emitEntry(e){this._emitter.emit("entry",e)}
method constructor (line 140) | constructor(e,r){this._root=e,this._settings=r,this._reader=new EAt.defa...
method read (line 140) | read(e){this._reader.onError(r=>{IAt(e,r)}),this._reader.onEntry(r=>{thi...
function IAt (line 140) | function IAt(t,e){t(e)}
function CAt (line 140) | function CAt(t,e){t(null,e)}
method constructor (line 140) | constructor(e,r){this._root=e,this._settings=r,this._reader=new BAt.defa...
method read (line 140) | read(){return this._reader.onError(e=>{this._stream.emit("error",e)}),th...
method constructor (line 140) | constructor(){super(...arguments),this._scandir=vAt.scandirSync,this._st...
method read (line 140) | read(){return this._pushToQueue(this._root,this._settings.basePath),this...
method _pushToQueue (line 140) | _pushToQueue(e,r){this._queue.add({directory:e,base:r})}
method _handleQueue (line 140) | _handleQueue(){for(let e of this._queue.values())this._handleDirectory(e...
method _handleDirectory (line 140) | _handleDirectory(e,r){try{let s=this._scandir(e,this._settings.fsScandir...
method _handleError (line 140) | _handleError(e){if(gQ.isFatalError(this._settings,e))throw e}
method _handleEntry (line 140) | _handleEntry(e,r){let s=e.path;r!==void 0&&(e.path=gQ.joinPathSegments(r...
method _pushToStorage (line 140) | _pushToStorage(e){this._storage.push(e)}
method constructor (line 140) | constructor(e,r){this._root=e,this._settings=r,this._reader=new DAt.defa...
method read (line 140) | read(){return this._reader.read()}
method constructor (line 140) | constructor(e={}){this._options=e,this.basePath=this._getValue(this._opt...
method _getValue (line 140) | _getValue(e,r){return e??r}
function QAt (line 140) | function QAt(t,e,r){if(typeof e=="function"){new Rpe.default(t,dQ()).rea...
function TAt (line 140) | function TAt(t,e){let r=dQ(e);return new kAt.default(t,r).read()}
function RAt (line 140) | function RAt(t,e){let r=dQ(e);return new xAt.default(t,r).read()}
function dQ (line 140) | function dQ(t={}){return t instanceof r8.default?t:new r8.default(t)}
method constructor (line 140) | constructor(e){this._settings=e,this._fsStatSettings=new NAt.Settings({f...
method _getFullEntryPath (line 140) | _getFullEntryPath(e){return FAt.resolve(this._settings.cwd,e)}
method _makeEntry (line 140) | _makeEntry(e,r){let s={name:r,path:r,dirent:Fpe.fs.createDirentFromStats...
method _isFatalError (line 140) | _isFatalError(e){return!Fpe.errno.isEnoentCodeError(e)&&!this._settings....
method constructor (line 140) | constructor(){super(...arguments),this._walkStream=MAt.walkStream,this._...
method dynamic (line 140) | dynamic(e,r){return this._walkStream(e,r)}
method static (line 140) | static(e,r){let s=e.map(this._getFullEntryPath,this),a=new OAt.PassThrou...
method _getEntry (line 140) | _getEntry(e,r,s){return this._getStat(e).then(a=>this._makeEntry(a,r)).c...
method _getStat (line 140) | _getStat(e){return new Promise((r,s)=>{this._stat(e,this._fsStatSettings...
method constructor (line 140) | constructor(){super(...arguments),this._walkAsync=UAt.walk,this._readerS...
method dynamic (line 140) | dynamic(e,r){return new Promise((s,a)=>{this._walkAsync(e,r,(n,c)=>{n===...
method static (line 140) | async static(e,r){let s=[],a=this._readerStream.static(e,r);return new P...
method constructor (line 140) | constructor(e,r,s){this._patterns=e,this._settings=r,this._micromatchOpt...
method _fillStorage (line 140) | _fillStorage(){for(let e of this._patterns){let r=this._getPatternSegmen...
method _getPatternSegments (line 140) | _getPatternSegments(e){return qB.pattern.getPatternParts(e,this._microma...
method _splitSegmentsIntoSections (line 140) | _splitSegmentsIntoSections(e){return qB.array.splitWhen(e,r=>r.dynamic&&...
method match (line 140) | match(e){let r=e.split("/"),s=r.length,a=this._storage.filter(n=>!n.comp...
method constructor (line 140) | constructor(e,r){this._settings=e,this._micromatchOptions=r}
method getFilter (line 140) | getFilter(e,r,s){let a=this._getMatcher(r),n=this._getNegativePatternsRe...
method _getMatcher (line 140) | _getMatcher(e){return new GAt.default(e,this._settings,this._micromatchO...
method _getNegativePatternsRe (line 140) | _getNegativePatternsRe(e){let r=e.filter(EQ.pattern.isAffectDepthOfReadi...
method _filter (line 140) | _filter(e,r,s,a){if(this._isSkippedByDeep(e,r.path)||this._isSkippedSymb...
method _isSkippedByDeep (line 140) | _isSkippedByDeep(e,r){return this._settings.deep===1/0?!1:this._getEntry...
method _getEntryLevel (line 140) | _getEntryLevel(e,r){let s=r.split("/").length;if(e==="")return s;let a=e...
method _isSkippedSymbolicLink (line 140) | _isSkippedSymbolicLink(e){return!this._settings.followSymbolicLinks&&e.d...
method _isSkippedByPositivePatterns (line 140) | _isSkippedByPositivePatterns(e,r){return!this._settings.baseNameMatch&&!...
method _isSkippedByNegativePatterns (line 140) | _isSkippedByNegativePatterns(e,r){return!EQ.pattern.matchAny(e,r)}
method constructor (line 140) | constructor(e,r){this._settings=e,this._micromatchOptions=r,this.index=n...
method getFilter (line 140) | getFilter(e,r){let s=Zd.pattern.convertPatternsToRe(e,this._micromatchOp...
method _filter (line 140) | _filter(e,r,s){let a=Zd.path.removeLeadingDotSegment(e.path);if(this._se...
method _isDuplicateEntry (line 140) | _isDuplicateEntry(e){return this.index.has(e)}
method _createIndexRecord (line 140) | _createIndexRecord(e){this.index.set(e,void 0)}
method _onlyFileFilter (line 140) | _onlyFileFilter(e){return this._settings.onlyFiles&&!e.dirent.isFile()}
method _onlyDirectoryFilter (line 140) | _onlyDirectoryFilter(e){return this._settings.onlyDirectories&&!e.dirent...
method _isSkippedByAbsoluteNegativePatterns (line 140) | _isSkippedByAbsoluteNegativePatterns(e,r){if(!this._settings.absolute)re...
method _isMatchToPatterns (line 140) | _isMatchToPatterns(e,r,s){let a=Zd.pattern.matchAny(e,r);return!a&&s?Zd....
method constructor (line 140) | constructor(e){this._settings=e}
method getFilter (line 140) | getFilter(){return e=>this._isNonFatalError(e)}
method _isNonFatalError (line 140) | _isNonFatalError(e){return WAt.errno.isEnoentCodeError(e)||this._setting...
method constructor (line 140) | constructor(e){this._settings=e}
method getTransformer (line 140) | getTransformer(){return e=>this._transform(e)}
method _transform (line 140) | _transform(e){let r=e.path;return this._settings.absolute&&(r=Hpe.path.m...
method constructor (line 140) | constructor(e){this._settings=e,this.errorFilter=new JAt.default(this._s...
method _getRootDirectory (line 140) | _getRootDirectory(e){return YAt.resolve(this._settings.cwd,e.base)}
method _getReaderOptions (line 140) | _getReaderOptions(e){let r=e.base==="."?"":e.base;return{basePath:r,path...
method _getMicromatchOptions (line 140) | _getMicromatchOptions(){return{dot:this._settings.dot,matchBase:this._se...
method constructor (line 140) | constructor(){super(...arguments),this._reader=new ZAt.default(this._set...
method read (line 140) | async read(e){let r=this._getRootDirectory(e),s=this._getReaderOptions(e...
method api (line 140) | api(e,r,s){return r.dynamic?this._reader.dynamic(e,s):this._reader.stati...
method constructor (line 140) | constructor(){super(...arguments),this._reader=new ept.default(this._set...
method read (line 140) | read(e){let r=this._getRootDirectory(e),s=this._getReaderOptions(e),a=th...
method api (line 140) | api(e,r,s){return r.dynamic?this._reader.dynamic(e,s):this._reader.stati...
method constructor (line 140) | constructor(){super(...arguments),this._walkSync=npt.walkSync,this._stat...
method dynamic (line 140) | dynamic(e,r){return this._walkSync(e,r)}
method static (line 140) | static(e,r){let s=[];for(let a of e){let n=this._getFullEntryPath(a),c=t...
method _getEntry (line 140) | _getEntry(e,r,s){try{let a=this._getStat(e);return this._makeEntry(a,r)}...
method _getStat (line 140) | _getStat(e){return this._statSync(e,this._fsStatSettings)}
method constructor (line 140) | constructor(){super(...arguments),this._reader=new spt.default(this._set...
method read (line 140) | read(e){let r=this._getRootDirectory(e),s=this._getReaderOptions(e);retu...
method api (line 140) | api(e,r,s){return r.dynamic?this._reader.dynamic(e,s):this._reader.stati...
method constructor (line 140) | constructor(e={}){this._options=e,this.absolute=this._getValue(this._opt...
method _getValue (line 140) | _getValue(e,r){return e===void 0?r:e}
method _getFileSystemMethods (line 140) | _getFileSystemMethods(e={}){return Object.assign(Object.assign({},$E.DEF...
function F8 (line 140) | async function F8(t,e){qu(t);let r=N8(t,cpt.default,e),s=await Promise.a...
function e (line 140) | function e(h,E){qu(h);let C=N8(h,fpt.default,E);return Rc.array.flatten(C)}
method constructor (line 226) | constructor(s){super(s)}
method submit (line 226) | async submit(){this.value=await t.call(this,this.values,this.state),su...
method create (line 226) | static create(s){return Mwe(s)}
function r (line 140) | function r(h,E){qu(h);let C=N8(h,upt.default,E);return Rc.stream.merge(C)}
method constructor (line 226) | constructor(a){super({...a,choices:e})}
method create (line 226) | static create(a){return Uwe(a)}
function s (line 140) | function s(h,E){qu(h);let C=[].concat(h),S=new R8.default(E);return Kpe....
function a (line 140) | function a(h,E){qu(h);let C=new R8.default(E);return Rc.pattern.isDynami...
function n (line 140) | function n(h){return qu(h),Rc.path.escape(h)}
function c (line 140) | function c(h){return qu(h),Rc.path.convertPathToPattern(h)}
function E (line 140) | function E(S){return qu(S),Rc.path.escapePosixPath(S)}
function C (line 140) | function C(S){return qu(S),Rc.path.convertPosixPathToPattern(S)}
function E (line 140) | function E(S){return qu(S),Rc.path.escapeWindowsPath(S)}
function C (line 140) | function C(S){return qu(S),Rc.path.convertWindowsPathToPattern(S)}
function N8 (line 140) | function N8(t,e,r){let s=[].concat(t),a=new R8.default(r),n=Kpe.generate...
function qu (line 140) | function qu(t){if(![].concat(t).every(s=>Rc.string.isString(s)&&!Rc.stri...
function fs (line 140) | function fs(...t){let e=(0,wQ.createHash)("sha512"),r="";for(let s of t)...
function BQ (line 140) | async function BQ(t,{baseFs:e,algorithm:r}={baseFs:le,algorithm:"sha512"...
function vQ (line 140) | async function vQ(t,{cwd:e}){let s=(await(0,O8.default)(t,{cwd:ue.fromPo...
function ba (line 140) | function ba(t,e){if(t?.startsWith("@"))throw new Error("Invalid scope: d...
function On (line 140) | function On(t,e){return{identHash:t.identHash,scope:t.scope,name:t.name,...
function Vs (line 140) | function Vs(t,e){return{identHash:t.identHash,scope:t.scope,name:t.name,...
function hpt (line 140) | function hpt(t){return{identHash:t.identHash,scope:t.scope,name:t.name}}
function SQ (line 140) | function SQ(t){return{identHash:t.identHash,scope:t.scope,name:t.name,lo...
function M8 (line 140) | function M8(t){return{identHash:t.identHash,scope:t.scope,name:t.name,de...
function gpt (line 140) | function gpt(t){return{identHash:t.identHash,scope:t.scope,name:t.name,l...
function _8 (line 140) | function _8(t,e){return{identHash:e.identHash,scope:e.scope,name:e.name,...
function WB (line 140) | function WB(t){return _8(t,t)}
function U8 (line 140) | function U8(t,e){if(e.includes("#"))throw new Error("Invalid entropy");r...
function H8 (line 140) | function H8(t,e){if(e.includes("#"))throw new Error("Invalid entropy");r...
function Tp (line 140) | function Tp(t){return t.range.startsWith(GB)}
function Gu (line 140) | function Gu(t){return t.reference.startsWith(GB)}
function YB (line 140) | function YB(t){if(!Tp(t))throw new Error("Not a virtual descriptor");ret...
function tI (line 140) | function tI(t){if(!Gu(t))throw new Error("Not a virtual descriptor");ret...
function dpt (line 140) | function dpt(t){return Tp(t)?On(t,t.range.replace(DQ,"")):t}
function mpt (line 140) | function mpt(t){return Gu(t)?Vs(t,t.reference.replace(DQ,"")):t}
function ypt (line 140) | function ypt(t,e){return t.range.includes("::")?t:On(t,`${t.range}::${eI...
function Ept (line 140) | function Ept(t,e){return t.reference.includes("::")?t:Vs(t,`${t.referenc...
function VB (line 140) | function VB(t,e){return t.identHash===e.identHash}
function ehe (line 140) | function ehe(t,e){return t.descriptorHash===e.descriptorHash}
function KB (line 140) | function KB(t,e){return t.locatorHash===e.locatorHash}
function Ipt (line 140) | function Ipt(t,e){if(!Gu(t))throw new Error("Invalid package type");if(!...
function Da (line 140) | function Da(t){let e=the(t);if(!e)throw new Error(`Invalid ident (${t})`...
function the (line 140) | function the(t){let e=t.match(Cpt);if(!e)return null;let[,r,s]=e;return ...
function I0 (line 140) | function I0(t,e=!1){let r=JB(t,e);if(!r)throw new Error(`Invalid descrip...
function JB (line 140) | function JB(t,e=!1){let r=e?t.match(wpt):t.match(Bpt);if(!r)return null;...
function Rp (line 140) | function Rp(t,e=!1){let r=bQ(t,e);if(!r)throw new Error(`Invalid locator...
function bQ (line 140) | function bQ(t,e=!1){let r=e?t.match(vpt):t.match(Spt);if(!r)return null;...
function Xd (line 140) | function Xd(t,e){let r=t.match(Dpt);if(r===null)throw new Error(`Invalid...
function bpt (line 140) | function bpt(t,e){try{return Xd(t,e)}catch{return null}}
function Ppt (line 140) | function Ppt(t,{protocol:e}){let{selector:r,params:s}=Xd(t,{requireProto...
function zpe (line 140) | function zpe(t){return t=t.replaceAll("%","%25"),t=t.replaceAll(":","%3A...
function xpt (line 140) | function xpt(t){return t===null?!1:Object.entries(t).length>0}
function PQ (line 140) | function PQ({protocol:t,source:e,selector:r,params:s}){let a="";return t...
function kpt (line 140) | function kpt(t){let{params:e,protocol:r,source:s,selector:a}=Xd(t);for(l...
function cn (line 140) | function cn(t){return t.scope?`@${t.scope}/${t.name}`:`${t.name}`}
function Qpt (line 140) | function Qpt(t,e){return t.scope?ba(e,`${t.scope}__${t.name}`):ba(e,t.na...
function Tpt (line 140) | function Tpt(t,e){if(t.scope!==e)return t;let r=t.name.indexOf("__");if(...
function ll (line 140) | function ll(t){return t.scope?`@${t.scope}/${t.name}@${t.range}`:`${t.na...
function cl (line 140) | function cl(t){return t.scope?`@${t.scope}/${t.name}@${t.reference}`:`${...
function L8 (line 140) | function L8(t){return t.scope!==null?`@${t.scope}-${t.name}`:t.name}
function rI (line 140) | function rI(t){let{protocol:e,selector:r}=Xd(t.reference),s=e!==null?e.r...
function es (line 140) | function es(t,e){return e.scope?`${Ut(t,`@${e.scope}/`,pt.SCOPE)}${Ut(t,...
function xQ (line 140) | function xQ(t){if(t.startsWith(GB)){let e=xQ(t.substring(t.indexOf("#")+...
function nI (line 140) | function nI(t,e){return`${Ut(t,xQ(e),pt.RANGE)}`}
function ni (line 140) | function ni(t,e){return`${es(t,e)}${Ut(t,"@",pt.RANGE)}${nI(t,e.range)}`}
function zB (line 140) | function zB(t,e){return`${Ut(t,xQ(e),pt.REFERENCE)}`}
function Yr (line 140) | function Yr(t,e){return`${es(t,e)}${Ut(t,"@",pt.REFERENCE)}${zB(t,e.refe...
function p3 (line 140) | function p3(t){return`${cn(t)}@${xQ(t.reference)}`}
function iI (line 140) | function iI(t){return Ys(t,[e=>cn(e),e=>e.range])}
function ZB (line 140) | function ZB(t,e){return es(t,e.anchoredLocator)}
function jB (line 140) | function jB(t,e,r){let s=Tp(e)?YB(e):e;return r===null?`${ni(t,s)} \u219...
function h3 (line 140) | function h3(t,e,r){return r===null?`${Yr(t,e)}`:`${Yr(t,e)} (via ${nI(t,...
function j8 (line 140) | function j8(t){return`node_modules/${cn(t)}`}
function kQ (line 140) | function kQ(t,e){return t.conditions?ppt(t.conditions,r=>{let[,s,a]=r.ma...
function XB (line 140) | function XB(t){let e=new Set;if("children"in t)e.add(t);else for(let r o...
method supportsDescriptor (line 140) | supportsDescriptor(e,r){return!!(e.range.startsWith(t.protocol)||r.proje...
method supportsLocator (line 140) | supportsLocator(e,r){return!!e.reference.startsWith(t.protocol)}
method shouldPersistResolution (line 140) | shouldPersistResolution(e,r){return!1}
method bindDescriptor (line 140) | bindDescriptor(e,r,s){return e}
method getResolutionDependencies (line 140) | getResolutionDependencies(e,r){return{}}
method getCandidates (line 140) | async getCandidates(e,r,s){return[s.project.getWorkspaceByDescriptor(e)....
method getSatisfying (line 140) | async getSatisfying(e,r,s,a){let[n]=await this.getCandidates(e,r,a);retu...
method resolve (line 140) | async resolve(e,r){let s=r.project.getWorkspaceByCwd(e.reference.slice(t...
function eA (line 140) | function eA(t,e,r=!1){if(!t)return!1;let s=`${e}${r}`,a=ihe.get(s);if(ty...
function ul (line 140) | function ul(t){if(t.indexOf(":")!==-1)return null;let e=she.get(t);if(ty...
function Opt (line 140) | function Opt(t){let e=Npt.exec(t);return e?e[1]:null}
function ohe (line 140) | function ohe(t){if(t.semver===Fp.default.Comparator.ANY)return{gt:null,l...
function q8 (line 140) | function q8(t){if(t.length===0)return null;let e=null,r=null;for(let s o...
function ahe (line 140) | function ahe(t){if(t.gt&&t.lt){if(t.gt[0]===">="&&t.lt[0]==="<="&&t.gt[1...
function G8 (line 140) | function G8(t){let e=t.map(Lpt).map(s=>ul(s).set.map(a=>a.map(n=>ohe(n))...
function Lpt (line 140) | function Lpt(t){let e=t.split("||");if(e.length>1){let r=new Set;for(let...
function che (line 140) | function che(t){let e=t.match(/^[ \t]+/m);return e?e[0]:" "}
function uhe (line 140) | function uhe(t){return t.charCodeAt(0)===65279?t.slice(1):t}
function Pa (line 140) | function Pa(t){return t.replace(/\\/g,"/")}
function QQ (line 140) | function QQ(t,{yamlCompatibilityMode:e}){return e?s3(t):typeof t>"u"||ty...
function fhe (line 140) | function fhe(t,e){let r=e.search(/[^!]/);if(r===-1)return"invalid";let s...
function W8 (line 140) | function W8(t,e){return e.length===1?fhe(t,e[0]):`(${e.map(r=>fhe(t,r))....
method constructor (line 140) | constructor(){this.indent=" ";this.name=null;this.version=null;this.os=...
method tryFind (line 140) | static async tryFind(e,{baseFs:r=new Yn}={}){let s=K.join(e,"package.jso...
method find (line 140) | static async find(e,{baseFs:r}={}){let s=await t.tryFind(e,{baseFs:r});i...
method fromFile (line 140) | static async fromFile(e,{baseFs:r=new Yn}={}){let s=new t;return await s...
method fromText (line 140) | static fromText(e){let r=new t;return r.loadFromText(e),r}
method loadFromText (line 140) | loadFromText(e){let r;try{r=JSON.parse(uhe(e)||"{}")}catch(s){throw s.me...
method loadFile (line 140) | async loadFile(e,{baseFs:r=new Yn}){let s=await r.readFilePromise(e,"utf...
method load (line 140) | load(e,{yamlCompatibilityMode:r=!1}={}){if(typeof e!="object"||e===null)...
method getForScope (line 140) | getForScope(e){switch(e){case"dependencies":return this.dependencies;cas...
method hasConsumerDependency (line 140) | hasConsumerDependency(e){return!!(this.dependencies.has(e.identHash)||th...
method hasHardDependency (line 140) | hasHardDependency(e){return!!(this.dependencies.has(e.identHash)||this.d...
method hasSoftDependency (line 140) | hasSoftDependency(e){return!!this.peerDependencies.has(e.identHash)}
method hasDependency (line 140) | hasDependency(e){return!!(this.hasHardDependency(e)||this.hasSoftDepende...
method getConditions (line 140) | getConditions(){let e=[];return this.os&&this.os.length>0&&e.push(W8("os...
method ensureDependencyMeta (line 140) | ensureDependencyMeta(e){if(e.range!=="unknown"&&!Ahe.default.valid(e.ran...
method ensurePeerDependencyMeta (line 140) | ensurePeerDependencyMeta(e){if(e.range!=="unknown")throw new Error(`Inva...
method setRawField (line 140) | setRawField(e,r,{after:s=[]}={}){let a=new Set(s.filter(n=>Object.hasOwn...
method exportTo (line 140) | exportTo(e,{compatibilityMode:r=!0}={}){if(Object.assign(e,this.raw),thi...
function Hpt (line 140) | function Hpt(t){for(var e=t.length;e--&&Upt.test(t.charAt(e)););return e}
function Gpt (line 140) | function Gpt(t){return t&&t.slice(0,jpt(t)+1).replace(qpt,"")}
function Kpt (line 140) | function Kpt(t){return typeof t=="symbol"||Ypt(t)&&Wpt(t)==Vpt}
function tht (line 140) | function tht(t){if(typeof t=="number")return t;if(zpt(t))return Che;if(I...
function oht (line 140) | function oht(t,e,r){var s,a,n,c,f,p,h=0,E=!1,C=!1,S=!0;if(typeof t!="fun...
function uht (line 140) | function uht(t,e,r){var s=!0,a=!0;if(typeof t!="function")throw new Type...
function Aht (line 140) | function Aht(t){return typeof t.reportCode<"u"}
method constructor (line 140) | constructor(r,s,a){super(s);this.reportExtra=a;this.reportCode=r}
method constructor (line 140) | constructor(){this.cacheHits=new Set;this.cacheMisses=new Set;this.repor...
method getRecommendedLength (line 140) | getRecommendedLength(){return 180}
method reportCacheHit (line 140) | reportCacheHit(e){this.cacheHits.add(e.locatorHash)}
method reportCacheMiss (line 140) | reportCacheMiss(e,r){this.cacheMisses.add(e.locatorHash)}
method progressViaCounter (line 140) | static progressViaCounter(e){let r=0,s,a=new Promise(p=>{s=p}),n=p=>{let...
method progressViaTitle (line 140) | static progressViaTitle(){let e,r,s=new Promise(c=>{r=c}),a=(0,Phe.defau...
method startProgressPromise (line 140) | async startProgressPromise(e,r){let s=this.reportProgress(e);try{return ...
method startProgressSync (line 140) | startProgressSync(e,r){let s=this.reportProgress(e);try{return r(e)}fina...
method reportInfoOnce (line 140) | reportInfoOnce(e,r,s){let a=s&&s.key?s.key:r;this.reportedInfos.has(a)||...
method reportWarningOnce (line 140) | reportWarningOnce(e,r,s){let a=s&&s.key?s.key:r;this.reportedWarnings.ha...
method reportErrorOnce (line 140) | reportErrorOnce(e,r,s){let a=s&&s.key?s.key:r;this.reportedErrors.has(a)...
method reportExceptionOnce (line 140) | reportExceptionOnce(e){Aht(e)?this.reportErrorOnce(e.reportCode,e.messag...
method createStreamReporter (line 140) | createStreamReporter(e=null){let r=new xhe.PassThrough,s=new khe.StringD...
method constructor (line 141) | constructor(e){this.fetchers=e}
method supports (line 141) | supports(e,r){return!!this.tryFetcher(e,r)}
method getLocalPath (line 141) | getLocalPath(e,r){return this.getFetcher(e,r).getLocalPath(e,r)}
method fetch (line 141) | async fetch(e,r){return await this.getFetcher(e,r).fetch(e,r)}
method tryFetcher (line 141) | tryFetcher(e,r){let s=this.fetchers.find(a=>a.supports(e,r));return s||n...
method getFetcher (line 141) | getFetcher(e,r){let s=this.fetchers.find(a=>a.supports(e,r));if(!s)throw...
method constructor (line 141) | constructor(e){this.resolvers=e.filter(r=>r)}
method supportsDescriptor (line 141) | supportsDescriptor(e,r){return!!this.tryResolverByDescriptor(e,r)}
method supportsLocator (line 141) | supportsLocator(e,r){return!!this.tryResolverByLocator(e,r)}
method shouldPersistResolution (line 141) | shouldPersistResolution(e,r){return this.getResolverByLocator(e,r).shoul...
method bindDescriptor (line 141) | bindDescriptor(e,r,s){return this.getResolverByDescriptor(e,s).bindDescr...
method getResolutionDependencies (line 141) | getResolutionDependencies(e,r){return this.getResolverByDescriptor(e,r)....
method getCandidates (line 141) | async getCandidates(e,r,s){return await this.getResolverByDescriptor(e,s...
method getSatisfying (line 141) | async getSatisfying(e,r,s,a){return this.getResolverByDescriptor(e,a).ge...
method resolve (line 141) | async resolve(e,r){return await this.getResolverByLocator(e,r).resolve(e...
method tryResolverByDescriptor (line 141) | tryResolverByDescriptor(e,r){let s=this.resolvers.find(a=>a.supportsDesc...
method getResolverByDescriptor (line 141) | getResolverByDescriptor(e,r){let s=this.resolvers.find(a=>a.supportsDesc...
method tryResolverByLocator (line 141) | tryResolverByLocator(e,r){let s=this.resolvers.find(a=>a.supportsLocator...
method getResolverByLocator (line 141) | getResolverByLocator(e,r){let s=this.resolvers.find(a=>a.supportsLocator...
method supports (line 141) | supports(e){return!!e.reference.startsWith("virtual:")}
method getLocalPath (line 141) | getLocalPath(e,r){let s=e.reference.indexOf("#");if(s===-1)throw new Err...
method fetch (line 141) | async fetch(e,r){let s=e.reference.indexOf("#");if(s===-1)throw new Erro...
method getLocatorFilename (line 141) | getLocatorFilename(e){return rI(e)}
method ensureVirtualLink (line 141) | async ensureVirtualLink(e,r,s){let a=r.packageFs.getRealPath(),n=s.proje...
method isVirtualDescriptor (line 141) | static isVirtualDescriptor(e){return!!e.range.startsWith(t.protocol)}
method isVirtualLocator (line 141) | static isVirtualLocator(e){return!!e.reference.startsWith(t.protocol)}
method supportsDescriptor (line 141) | supportsDescriptor(e,r){return t.isVirtualDescriptor(e)}
method supportsLocator (line 141) | supportsLocator(e,r){return t.isVirtualLocator(e)}
method shouldPersistResolution (line 141) | shouldPersistResolution(e,r){return!1}
method bindDescriptor (line 141) | bindDescriptor(e,r,s){throw new Error('Assertion failed: calling "bindDe...
method getResolutionDependencies (line 141) | getResolutionDependencies(e,r){throw new Error('Assertion failed: callin...
method getCandidates (line 141) | async getCandidates(e,r,s){throw new Error('Assertion failed: calling "g...
method getSatisfying (line 141) | async getSatisfying(e,r,s,a){throw new Error('Assertion failed: calling ...
method resolve (line 141) | async resolve(e,r){throw new Error('Assertion failed: calling "resolve" ...
method supports (line 141) | supports(e){return!!e.reference.startsWith(Ei.protocol)}
method getLocalPath (line 141) | getLocalPath(e,r){return this.getWorkspace(e,r).cwd}
method fetch (line 141) | async fetch(e,r){let s=this.getWorkspace(e,r).cwd;return{packageFs:new S...
method getWorkspace (line 141) | getWorkspace(e,r){return r.project.getWorkspaceByCwd(e.reference.slice(E...
function $B (line 141) | function $B(t){return typeof t=="object"&&t!==null&&!Array.isArray(t)}
function The (line 141) | function The(t){return typeof t>"u"?3:$B(t)?0:Array.isArray(t)?1:2}
function eH (line 141) | function eH(t,e){return Object.hasOwn(t,e)}
function hht (line 141) | function hht(t){return $B(t)&&eH(t,"onConflict")&&typeof t.onConflict=="...
function ght (line 141) | function ght(t){if(typeof t>"u")return{onConflict:"default",value:t};if(...
function Rhe (line 141) | function Rhe(t,e){let r=$B(t)&&eH(t,e)?t[e]:void 0;return ght(r)}
function uI (line 141) | function uI(t,e){return[t,e,Fhe]}
function tH (line 141) | function tH(t){return Array.isArray(t)?t[2]===Fhe:!1}
function X8 (line 141) | function X8(t,e){if($B(t)){let r={};for(let s of Object.keys(t))r[s]=X8(...
function $8 (line 141) | function $8(t,e,r,s,a){let n,c=[],f=a,p=0;for(let E=a-1;E>=s;--E){let[C,...
function Nhe (line 141) | function Nhe(t){return $8(t.map(([e,r])=>[e,{".":r}]),[],".",0,t.length)}
function ev (line 141) | function ev(t){return tH(t)?t[1]:t}
function RQ (line 141) | function RQ(t){let e=tH(t)?t[1]:t;if(Array.isArray(e))return e.map(r=>RQ...
function rH (line 141) | function rH(t){return tH(t)?t[0]:null}
function iH (line 141) | function iH(){if(process.platform==="win32"){let t=ue.toPortablePath(pro...
function fI (line 141) | function fI(){return ue.toPortablePath((0,nH.homedir)()||"/usr/local/sha...
function sH (line 141) | function sH(t,e){let r=K.relative(e,t);return r&&!r.startsWith("..")&&!K...
method constructor (line 141) | constructor(e){let{proxy:r,proxyRequestOptions:s,...a}=e;super(a),this.p...
method createConnection (line 141) | createConnection(e,r){let s={...this.proxyRequestOptions,method:"CONNECT...
method constructor (line 141) | constructor(e){let{proxy:r,proxyRequestOptions:s,...a}=e;super(a),this.p...
method createConnection (line 141) | createConnection(e,r){let s={...this.proxyRequestOptions,method:"CONNECT...
function mht (line 141) | function mht(t){return qhe.includes(t)}
function Eht (line 141) | function Eht(t){return yht.includes(t)}
function Cht (line 141) | function Cht(t){return Iht.includes(t)}
function AI (line 141) | function AI(t){return e=>typeof e===t}
function be (line 141) | function be(t){if(t===null)return"null";switch(typeof t){case"undefined"...
method constructor (line 141) | constructor(e){super(e||"Promise was canceled"),this.name="CancelError"}
method isCanceled (line 141) | get isCanceled(){return!0}
method fn (line 141) | static fn(e){return(...r)=>new t((s,a,n)=>{r.push(n),e(...r).then(s,a)})}
method constructor (line 141) | constructor(e){this._cancelHandlers=[],this._isPending=!0,this._isCancel...
method then (line 141) | then(e,r){return this._promise.then(e,r)}
method catch (line 141) | catch(e){return this._promise.catch(e)}
method finally (line 141) | finally(e){return this._promise.finally(e)}
method cancel (line 141) | cancel(e){if(!(!this._isPending||this._isCanceled)){if(this._cancelHandl...
method isCanceled (line 141) | get isCanceled(){return this._isCanceled}
function Pht (line 141) | function Pht(t){return t.encrypted}
method constructor (line 141) | constructor({cache:e=new Map,maxTtl:r=1/0,fallbackDuration:s=3600,errorT...
method servers (line 141) | set servers(e){this.clear(),this._resolver.setServers(e)}
method servers (line 141) | get servers(){return this._resolver.getServers()}
method lookup (line 141) | lookup(e,r,s){if(typeof r=="function"?(s=r,r={}):typeof r=="number"&&(r=...
method lookupAsync (line 141) | async lookupAsync(e,r={}){typeof r=="number"&&(r={family:r});let s=await...
method query (line 141) | async query(e){let r=await this._cache.get(e);if(!r){let s=this._pending...
method _resolve (line 141) | async _resolve(e){let r=async h=>{try{return await h}catch(E){if(E.code=...
method _lookup (line 141) | async _lookup(e){try{return{entries:await this._dnsLookup(e,{all:!0}),ca...
method _set (line 141) | async _set(e,r,s){if(this.maxTtl>0&&s>0){s=Math.min(s,this.maxTtl)*1e3,r...
method queryAndCache (line 141) | async queryAndCache(e){if(this._hostnamesToFallback.has(e))return this._...
method _tick (line 141) | _tick(e){let r=this._nextRemovalTime;(!r||e<r)&&(clearTimeout(this._remo...
method install (line 141) | install(e){if(Xhe(e),pI in e)throw new Error("CacheableLookup has been a...
method uninstall (line 141) | uninstall(e){if(Xhe(e),e[pI]){if(e[EH]!==this)throw new Error("The agent...
method updateInterfaceInfo (line 141) | updateInterfaceInfo(){let{_iface:e}=this;this._iface=$he(),(e.has4&&!thi...
method clear (line 141) | clear(e){if(e){this._cache.delete(e);return}this._cache.clear()}
function o0e (line 141) | function o0e(t,e){if(t&&e)return o0e(t)(e);if(typeof t!="function")throw...
function UQ (line 141) | function UQ(t){var e=function(){return e.called?e.value:(e.called=!0,e.v...
function u0e (line 141) | function u0e(t){var e=function(){if(e.called)throw new Error(e.onceError...
method constructor (line 141) | constructor(){super("maxBuffer exceeded"),this.name="MaxBufferError"}
function qQ (line 141) | async function qQ(t,e){if(!t)return Promise.reject(new Error("Expected a...
function tm (line 141) | function tm(t){let e=parseInt(t,10);return isFinite(e)?e:0}
function c0t (line 141) | function c0t(t){return t?o0t.has(t.status):!0}
function DH (line 141) | function DH(t){let e={};if(!t)return e;let r=t.trim().split(/,/);for(let...
function u0t (line 141) | function u0t(t){let e=[];for(let r in t){let s=t[r];e.push(s===!0?r:r+"=...
method constructor (line 141) | constructor(e,r,{shared:s,cacheHeuristic:a,immutableMinTimeToLive:n,igno...
method now (line 141) | now(){return Date.now()}
method storable (line 141) | storable(){return!!(!this._reqcc["no-store"]&&(this._method==="GET"||thi...
method _hasExplicitExpiration (line 141) | _hasExplicitExpiration(){return this._isShared&&this._rescc["s-maxage"]|...
method _assertRequestHasHeaders (line 141) | _assertRequestHasHeaders(e){if(!e||!e.headers)throw Error("Request heade...
method satisfiesWithoutRevalidation (line 141) | satisfiesWithoutRevalidation(e){this._assertRequestHasHeaders(e);let r=D...
method _requestMatches (line 141) | _requestMatches(e,r){return(!this._url||this._url===e.url)&&this._host==...
method _allowsStoringAuthenticated (line 141) | _allowsStoringAuthenticated(){return this._rescc["must-revalidate"]||thi...
method _varyMatches (line 141) | _varyMatches(e){if(!this._resHeaders.vary)return!0;if(this._resHeaders.v...
method _copyWithoutHopByHopHeaders (line 141) | _copyWithoutHopByHopHeaders(e){let r={};for(let s in e)a0t[s]||(r[s]=e[s...
method responseHeaders (line 141) | responseHeaders(){let e=this._copyWithoutHopByHopHeaders(this._resHeader...
method date (line 141) | date(){let e=Date.parse(this._resHeaders.date);return isFinite(e)?e:this...
method age (line 141) | age(){let e=this._ageValue(),r=(this.now()-this._responseTime)/1e3;retur...
method _ageValue (line 141) | _ageValue(){return tm(this._resHeaders.age)}
method maxAge (line 141) | maxAge(){if(!this.storable()||this._rescc["no-cache"]||this._isShared&&t...
method timeToLive (line 141) | timeToLive(){let e=this.maxAge()-this.age(),r=e+tm(this._rescc["stale-if...
method stale (line 141) | stale(){return this.maxAge()<=this.age()}
method _useStaleIfError (line 141) | _useStaleIfError(){return this.maxAge()+tm(this._rescc["stale-if-error"]...
method useStaleWhileRevalidate (line 141) | useStaleWhileRevalidate(){return this.maxAge()+tm(this._rescc["stale-whi...
method fromObject (line 141) | static fromObject(e){return new this(void 0,void 0,{_fromObject:e})}
method _fromObject (line 141) | _fromObject(e){if(this._responseTime)throw Error("Reinitialized");if(!e|...
method toObject (line 141) | toObject(){return{v:1,t:this._responseTime,sh:this._isShared,ch:this._ca...
method revalidationHeaders (line 141) | revalidationHeaders(e){this._assertRequestHasHeaders(e);let r=this._copy...
method revalidatedPolicy (line 141) | revalidatedPolicy(e,r){if(this._assertRequestHasHeaders(e),this._useStal...
method constructor (line 141) | constructor(e,r,s,a){if(typeof e!="number")throw new TypeError("Argument...
method _read (line 141) | _read(){this.push(this.body),this.push(null)}
method constructor (line 141) | constructor(e,{emitErrors:r=!0,...s}={}){if(super(),this.opts={namespace...
method _checkIterableAdaptar (line 141) | _checkIterableAdaptar(){return k0e.includes(this.opts.store.opts.dialect...
method _getKeyPrefix (line 141) | _getKeyPrefix(e){return`${this.opts.namespace}:${e}`}
method _getKeyPrefixArray (line 141) | _getKeyPrefixArray(e){return e.map(r=>`${this.opts.namespace}:${r}`)}
method _getKeyUnprefix (line 141) | _getKeyUnprefix(e){return e.split(":").splice(1).join(":")}
method get (line 141) | get(e,r){let{store:s}=this.opts,a=Array.isArray(e),n=a?this._getKeyPrefi...
method set (line 141) | set(e,r,s){let a=this._getKeyPrefix(e);typeof s>"u"&&(s=this.opts.ttl),s...
method delete (line 141) | delete(e){let{store:r}=this.opts;if(Array.isArray(e)){let a=this._getKey...
method clear (line 141) | clear(){let{store:e}=this.opts;return Promise.resolve().then(()=>e.clear...
method has (line 141) | has(e){let r=this._getKeyPrefix(e),{store:s}=this.opts;return Promise.re...
method disconnect (line 141) | disconnect(){let{store:e}=this.opts;if(typeof e.disconnect=="function")r...
method constructor (line 141) | constructor(e,r){if(typeof e!="function")throw new TypeError("Parameter ...
method createCacheableRequest (line 141) | createCacheableRequest(e){return(r,s)=>{let a;if(typeof r=="string")a=QH...
function S0t (line 141) | function S0t(t){let e={...t};return e.path=`${t.pathname||"/"}${t.search...
function QH (line 141) | function QH(t){return{protocol:t.protocol,auth:t.auth,hostname:t.hostnam...
method constructor (line 141) | constructor(t){super(t.message),this.name="RequestError",Object.assign(t...
method constructor (line 141) | constructor(t){super(t.message),this.name="CacheError",Object.assign(thi...
method get (line 141) | get(){let n=t[a];return typeof n=="function"?n.bind(t):n}
method set (line 141) | set(n){t[a]=n}
method transform (line 141) | transform(f,p,h){s=!1,h(null,f)}
method flush (line 141) | flush(f){f()}
method destroy (line 141) | destroy(f,p){t.destroy(),p(f)}
method constructor (line 141) | constructor(e={}){if(!(e.maxSize&&e.maxSize>0))throw new TypeError("`max...
method _set (line 141) | _set(e,r){if(this.cache.set(e,r),this._size++,this._size>=this.maxSize){...
method get (line 141) | get(e){if(this.cache.has(e))return this.cache.get(e);if(this.oldCache.ha...
method set (line 141) | set(e,r){return this.cache.has(e)?this.cache.set(e,r):this._set(e,r),this}
method has (line 141) | has(e){return this.cache.has(e)||this.oldCache.has(e)}
method peek (line 141) | peek(e){if(this.cache.has(e))return this.cache.get(e);if(this.oldCache.h...
method delete (line 141) | delete(e){let r=this.cache.delete(e);return r&&this._size--,this.oldCach...
method clear (line 141) | clear(){this.cache.clear(),this.oldCache.clear(),this._size=0}
method keys (line 141) | *keys(){for(let[e]of this)yield e}
method values (line 141) | *values(){for(let[,e]of this)yield e}
method [Symbol.iterator] (line 141) | *[Symbol.iterator](){for(let e of this.cache)yield e;for(let e of this.o...
method size (line 141) | get size(){let e=0;for(let r of this.oldCache.keys())this.cache.has(r)||...
method constructor (line 141) | constructor({timeout:e=6e4,maxSessions:r=1/0,maxFreeSessions:s=10,maxCac...
method normalizeOrigin (line 141) | static normalizeOrigin(e,r){return typeof e=="string"&&(e=new URL(e)),r&...
method normalizeOptions (line 141) | normalizeOptions(e){let r="";if(e)for(let s of F0t)e[s]&&(r+=`:${e[s]}`)...
method _tryToCreateNewSession (line 141) | _tryToCreateNewSession(e,r){if(!(e in this.queue)||!(r in this.queue[e])...
method getSession (line 141) | getSession(e,r,s){return new Promise((a,n)=>{Array.isArray(s)?(s=[...s],...
method request (line 142) | request(e,r,s,a){return new Promise((n,c)=>{this.getSession(e,r,[{reject...
method createConnection (line 142) | createConnection(e,r){return t.connect(e,r)}
method connect (line 142) | static connect(e,r){r.ALPNProtocols=["h2"];let s=e.port||443,a=e.hostnam...
method closeFreeSessions (line 142) | closeFreeSessions(){for(let e of Object.values(this.sessions))for(let r ...
method destroy (line 142) | destroy(e){for(let r of Object.values(this.sessions))for(let s of r)s.de...
method freeSessions (line 142) | get freeSessions(){return j0e({agent:this,isFree:!0})}
method busySessions (line 142) | get busySessions(){return j0e({agent:this,isFree:!1})}
method constructor (line 142) | constructor(e,r){super({highWaterMark:r,autoDestroy:!1}),this.statusCode...
method _destroy (line 142) | _destroy(e){this.req._request.destroy(e)}
method setTimeout (line 142) | setTimeout(e,r){return this.req.setTimeout(e,r),this}
method _dump (line 142) | _dump(){this._dumped||(this._dumped=!0,this.removeAllListeners("data"),t...
method _read (line 142) | _read(){this.req&&this.req._request.resume()}
method constructor (line 142) | constructor(...a){super(typeof r=="string"?r:r(a)),this.name=`${super.na...
method constructor (line 142) | constructor(e,r,s){super({autoDestroy:!1});let a=typeof e=="string"||e i...
method method (line 142) | get method(){return this[Jo][rge]}
method method (line 142) | set method(e){e&&(this[Jo][rge]=e.toUpperCase())}
method path (line 142) | get path(){return this[Jo][nge]}
method path (line 142) | set path(e){e&&(this[Jo][nge]=e)}
method _mustNotHaveABody (line 142) | get _mustNotHaveABody(){return this.method==="GET"||this.method==="HEAD"...
method _write (line 142) | _write(e,r,s){if(this._mustNotHaveABody){s(new Error("The GET, HEAD and ...
method _final (line 142) | _final(e){if(this.destroyed)return;this.flushHeaders();let r=()=>{if(thi...
method abort (line 142) | abort(){this.res&&this.res.complete||(this.aborted||process.nextTick(()=...
method _destroy (line 142) | _destroy(e,r){this.res&&this.res._dump(),this._request&&this._request.de...
method flushHeaders (line 142) | async flushHeaders(){if(this[YQ]||this.destroyed)return;this[YQ]=!0;let ...
method getHeader (line 142) | getHeader(e){if(typeof e!="string")throw new UH("name","string",e);retur...
method headersSent (line 142) | get headersSent(){return this[YQ]}
method removeHeader (line 142) | removeHeader(e){if(typeof e!="string")throw new UH("name","string",e);if...
method setHeader (line 142) | setHeader(e,r){if(this.headersSent)throw new ege("set");if(typeof e!="st...
method setNoDelay (line 142) | setNoDelay(){}
method setSocketKeepAlive (line 142) | setSocketKeepAlive(){}
method setTimeout (line 142) | setTimeout(e,r){let s=()=>this._request.setTimeout(e,r);return this._req...
method maxHeadersCount (line 142) | get maxHeadersCount(){if(!this.destroyed&&this._request)return this._req...
method maxHeadersCount (line 142) | set maxHeadersCount(e){}
function ggt (line 142) | function ggt(t,e,r){let s={};for(let a of r)s[a]=(...n)=>{e.emit(a,...n)...
method once (line 142) | once(e,r,s){e.once(r,s),t.push({origin:e,event:r,fn:s})}
method unhandleAll (line 142) | unhandleAll(){for(let e of t){let{origin:r,event:s,fn:a}=e;r.removeListe...
method constructor (line 142) | constructor(e,r){super(`Timeout awaiting '${r}' for ${e}ms`),this.event=...
method constructor (line 142) | constructor(){this.weakMap=new WeakMap,this.map=new Map}
method set (line 142) | set(e,r){typeof e=="object"?this.weakMap.set(e,r):this.map.set(e,r)}
method get (line 142) | get(e){return typeof e=="object"?this.weakMap.get(e):this.map.get(e)}
method has (line 142) | has(e){return typeof e=="object"?this.weakMap.has(e):this.map.has(e)}
function Ugt (line 142) | function Ugt(t){for(let e in t){let r=t[e];if(!at.default.string(r)&&!at...
function Hgt (line 142) | function Hgt(t){return at.default.object(t)&&!("statusCode"in t)}
method constructor (line 142) | constructor(e,r,s){var a;if(super(e),Error.captureStackTrace(this,this.c...
method constructor (line 146) | constructor(e){super(`Redirected ${e.options.maxRedirects} times. Aborti...
method constructor (line 146) | constructor(e){super(`Response code ${e.statusCode} (${e.statusMessage})...
method constructor (line 146) | constructor(e,r){super(e.message,e,r),this.name="CacheError"}
method constructor (line 146) | constructor(e,r){super(e.message,e,r),this.name="UploadError"}
method constructor (line 146) | constructor(e,r,s){super(e.message,e,s),this.name="TimeoutError",this.ev...
method constructor (line 146) | constructor(e,r){super(e.message,e,r),this.name="ReadError"}
method constructor (line 146) | constructor(e){super(`Unsupported protocol "${e.url.protocol}"`,{},e),th...
method constructor (line 146) | constructor(e,r={},s){super({autoDestroy:!1,highWaterMark:0}),this[yI]=0...
method normalizeArguments (line 146) | static normalizeArguments(e,r,s){var a,n,c,f,p;let h=r;if(at.default.obj...
method _lockWrite (line 146) | _lockWrite(){let e=()=>{throw new TypeError("The payload has been alread...
method _unlockWrite (line 146) | _unlockWrite(){this.write=super.write,this.end=super.end}
method _finalizeBody (line 146) | async _finalizeBody(){let{options:e}=this,{headers:r}=e,s=!at.default.un...
method _onResponseBase (line 146) | async _onResponseBase(e){let{options:r}=this,{url:s}=r;this[Gge]=e,r.dec...
method _onResponse (line 146) | async _onResponse(e){try{await this._onResponseBase(e)}catch(r){this._be...
method _onRequest (line 146) | _onRequest(e){let{options:r}=this,{timeout:s,url:a}=r;Dgt.default(e),thi...
method _createCacheableRequest (line 146) | async _createCacheableRequest(e,r){return new Promise((s,a)=>{Object.ass...
method _makeRequest (line 146) | async _makeRequest(){var e,r,s,a,n;let{options:c}=this,{headers:f}=c;for...
method _error (line 146) | async _error(e){try{for(let r of this.options.hooks.beforeError)e=await ...
method _beforeError (line 146) | _beforeError(e){if(this[CI])return;let{options:r}=this,s=this.retryCount...
method _read (line 146) | _read(){this[ZQ]=!0;let e=this[XQ];if(e&&!this[CI]){e.readableLength&&(t...
method _write (line 146) | _write(e,r,s){let a=()=>{this._writeRequest(e,r,s)};this.requestInitiali...
method _writeRequest (line 146) | _writeRequest(e,r,s){this[go].destroyed||(this._progressCallbacks.push((...
method _final (line 146) | _final(e){let r=()=>{for(;this._progressCallbacks.length!==0;)this._prog...
method _destroy (line 146) | _destroy(e,r){var s;this[CI]=!0,clearTimeout(this[Wge]),go in this&&(thi...
method _isAboutToError (line 146) | get _isAboutToError(){return this[CI]}
method ip (line 146) | get ip(){var e;return(e=this.socket)===null||e===void 0?void 0:e.remoteA...
method aborted (line 146) | get aborted(){var e,r,s;return((r=(e=this[go])===null||e===void 0?void 0...
method socket (line 146) | get socket(){var e,r;return(r=(e=this[go])===null||e===void 0?void 0:e.s...
method downloadProgress (line 146) | get downloadProgress(){let e;return this[mI]?e=this[yI]/this[mI]:this[mI...
method uploadProgress (line 146) | get uploadProgress(){let e;return this[EI]?e=this[II]/this[EI]:this[EI]=...
method timings (line 146) | get timings(){var e;return(e=this[go])===null||e===void 0?void 0:e.timings}
method isFromCache (line 146) | get isFromCache(){return this[jge]}
method pipe (line 146) | pipe(e,r){if(this[qge])throw new Error("Failed to pipe. The response has...
method unpipe (line 146) | unpipe(e){return e instanceof cj.ServerResponse&&this[zQ].delete(e),supe...
method constructor (line 146) | constructor(e,r){let{options:s}=r.request;super(`${e.message} in "${s.ur...
method constructor (line 146) | constructor(e){super("Promise was canceled",{},e),this.name="CancelError"}
method isCanceled (line 146) | get isCanceled(){return!0}
function Xge (line 146) | function Xge(t){let e,r,s=new Zgt.EventEmitter,a=new $gt((c,f,p)=>{let h...
function idt (line 146) | function idt(t,...e){let r=(async()=>{if(t instanceof ndt.RequestError)t...
function tde (line 146) | function tde(t){for(let e of Object.values(t))(ede.default.plainObject(e...
function Cj (line 146) | async function Cj(t){return Vl(pde,t,()=>le.readFilePromise(t).then(e=>(...
function Edt (line 146) | function Edt({statusCode:t,statusMessage:e},r){let s=Ut(r,t,pt.NUMBER),a...
function uT (line 146) | async function uT(t,{configuration:e,customErrorMessage:r}){try{return a...
function dde (line 146) | function dde(t,e){let r=[...e.configuration.get("networkSettings")].sort...
function Av (line 146) | async function Av(t,e,{configuration:r,headers:s,jsonRequest:a,jsonRespo...
function Bj (line 146) | async function Bj(t,{configuration:e,jsonResponse:r,customErrorMessage:s...
function Idt (line 146) | async function Idt(t,e,{customErrorMessage:r,...s}){return(await uT(Av(t...
function vj (line 146) | async function vj(t,e,{customErrorMessage:r,...s}){return(await uT(Av(t,...
function Cdt (line 146) | async function Cdt(t,{customErrorMessage:e,...r}){return(await uT(Av(t,n...
function wdt (line 146) | async function wdt(t,e,{configuration:r,headers:s,jsonRequest:a,jsonResp...
function Ddt (line 146) | function Ddt(){if(process.platform==="darwin"||process.platform==="win32...
function pv (line 146) | function pv(){return Ede=Ede??{os:process.platform,cpu:process.arch,libc...
function bdt (line 146) | function bdt(t=pv()){return t.libc?`${t.os}-${t.cpu}-${t.libc}`:`${t.os}...
function Sj (line 146) | function Sj(){let t=pv();return Ide=Ide??{os:[t.os],cpu:[t.cpu],libc:t.l...
function kdt (line 146) | function kdt(t){let e=Pdt.exec(t);if(!e)return null;let r=e[2]&&e[2].ind...
function Qdt (line 146) | function Qdt(){let e=new Error().stack.split(`
function Dj (line 147) | function Dj(){return typeof AT.default.availableParallelism<"u"?AT.defau...
function Tj (line 147) | function Tj(t,e,r,s,a){let n=ev(r);if(s.isArray||s.type==="ANY"&&Array.i...
function Pj (line 147) | function Pj(t,e,r,s,a){let n=ev(r);switch(s.type){case"ANY":return RQ(n)...
function Ndt (line 147) | function Ndt(t,e,r,s,a){let n=ev(r);if(typeof n!="object"||Array.isArray...
function Odt (line 147) | function Odt(t,e,r,s,a){let n=ev(r),c=new Map;if(typeof n!="object"||Arr...
function Rj (line 147) | function Rj(t,e,{ignoreArrays:r=!1}={}){switch(e.type){case"SHAPE":{if(e...
function dT (line 147) | function dT(t,e,r){if(e.type==="SECRET"&&typeof t=="string"&&r.hideSecre...
function Ldt (line 147) | function Ldt(){let t={};for(let[e,r]of Object.entries(process.env))e=e.t...
function kj (line 147) | function kj(){let t=`${mT}rc_filename`;for(let[e,r]of Object.entries(pro...
function Cde (line 147) | async function Cde(t){try{return await le.readFilePromise(t)}catch{retur...
function Mdt (line 147) | async function Mdt(t,e){return Buffer.compare(...await Promise.all([Cde(...
function _dt (line 147) | async function _dt(t,e){let[r,s]=await Promise.all([le.statPromise(t),le...
function Hdt (line 147) | async function Hdt({configuration:t,selfPath:e}){let r=t.get("yarnPath")...
method constructor (line 147) | constructor(e){this.isCI=_p.isCI;this.projectCwd=null;this.plugins=new M...
method create (line 147) | static create(e,r,s){let a=new t(e);typeof r<"u"&&!(r instanceof Map)&&(...
method find (line 147) | static async find(e,r,{strict:s=!0,usePathCheck:a=null,useRc:n=!0}={}){l...
method findRcFiles (line 147) | static async findRcFiles(e){let r=kj(),s=[],a=e,n=null;for(;a!==n;){n=a;...
method findFolderRcFile (line 147) | static async findFolderRcFile(e){let r=K.join(e,Er.rc),s;try{s=await le....
method findProjectCwd (line 147) | static async findProjectCwd(e){let r=null,s=e,a=null;for(;s!==a;){if(a=s...
method updateConfiguration (line 147) | static async updateConfiguration(e,r,s={}){let a=kj(),n=K.join(e,a),c=le...
method addPlugin (line 147) | static async addPlugin(e,r){r.length!==0&&await t.updateConfiguration(e,...
method updateHomeConfiguration (line 147) | static async updateHomeConfiguration(e){let r=fI();return await t.update...
method activatePlugin (line 147) | activatePlugin(e,r){this.plugins.set(e,r),typeof r.configuration<"u"&&th...
method importSettings (line 147) | importSettings(e){for(let[r,s]of Object.entries(e))if(s!=null){if(this.s...
method useWithSource (line 147) | useWithSource(e,r,s,a){try{this.use(e,r,s,a)}catch(n){throw n.message+=`...
method use (line 147) | use(e,r,s,{strict:a=!0,overwrite:n=!1}={}){a=a&&this.get("enableStrictSe...
method get (line 147) | get(e){if(!this.values.has(e))throw new Error(`Invalid configuration key...
method getSpecial (line 147) | getSpecial(e,{hideSecrets:r=!1,getNativePaths:s=!1}){let a=this.get(e),n...
method getSubprocessStreams (line 147) | getSubprocessStreams(e,{header:r,prefix:s,report:a}){let n,c,f=le.create...
method makeResolver (line 148) | makeResolver(){let e=[];for(let r of this.plugins.values())for(let s of ...
method makeFetcher (line 148) | makeFetcher(){let e=[];for(let r of this.plugins.values())for(let s of r...
method getLinkers (line 148) | getLinkers(){let e=[];for(let r of this.plugins.values())for(let s of r....
method getSupportedArchitectures (line 148) | getSupportedArchitectures(){let e=pv(),r=this.get("supportedArchitecture...
method isInteractive (line 148) | isInteractive({interactive:e,stdout:r}){return r.isTTY?e??this.get("pref...
method getPackageExtensions (line 148) | async getPackageExtensions(){if(this.packageExtensions!==null)return thi...
method normalizeLocator (line 148) | normalizeLocator(e){return ul(e.reference)?Vs(e,`${this.get("defaultProt...
method normalizeDependency (line 148) | normalizeDependency(e){return ul(e.range)?On(e,`${this.get("defaultProto...
method normalizeDependencyMap (line 148) | normalizeDependencyMap(e){return new Map([...e].map(([r,s])=>[r,this.nor...
method normalizePackage (line 148) | normalizePackage(e,{packageExtensions:r}){let s=WB(e),a=r.get(e.identHas...
method getLimit (line 148) | getLimit(e){return Vl(this.limits,e,()=>(0,Sde.default)(this.get(e)))}
method triggerHook (line 148) | async triggerHook(e,...r){for(let s of this.plugins.values()){let a=s.ho...
method triggerMultipleHooks (line 148) | async triggerMultipleHooks(e,r){for(let s of r)await this.triggerHook(e,...
method reduceHook (line 148) | async reduceHook(e,r,...s){let a=r;for(let n of this.plugins.values()){l...
method firstHook (line 148) | async firstHook(e,...r){for(let s of this.plugins.values()){let a=s.hook...
function im (line 148) | function im(t){return t!==null&&typeof t.fd=="number"}
function Fj (line 148) | function Fj(){}
function Nj (line 148) | function Nj(){for(let t of sm)t.kill()}
function Yu (line 148) | async function Yu(t,e,{cwd:r,env:s=process.env,strict:a=!1,stdin:n=null,...
function bj (line 148) | async function bj(t,e,{cwd:r,env:s=process.env,encoding:a="utf8",strict:...
function Mj (line 148) | function Mj(t,e){let r=jdt.get(e);return typeof r<"u"?128+r:t??1}
function qdt (line 148) | function qdt(t,e,{configuration:r,report:s}){s.reportError(1,` ${Zf(r,t...
method constructor (line 148) | constructor({fileName:e,code:r,signal:s}){let a=ze.create(K.cwd()),n=Ut(...
method constructor (line 148) | constructor({fileName:e,code:r,signal:s,stdout:a,stderr:n}){super({fileN...
function Pde (line 148) | function Pde(t){bde=t}
function yv (line 148) | function yv(){return typeof _j>"u"&&(_j=bde()),_j}
function P (line 148) | function P(Je){return r.locateFile?r.locateFile(Je,S):S+Je}
function pe (line 148) | function pe(Je,st,St){switch(st=st||"i8",st.charAt(st.length-1)==="*"&&(...
function we (line 148) | function we(Je,st){Je||ns("Assertion failed: "+st)}
function ye (line 148) | function ye(Je){var st=r["_"+Je];return we(st,"Cannot call unknown funct...
function fe (line 148) | function fe(Je,st,St,lr,ee){var Ee={string:function(Gi){var Tn=0;if(Gi!=...
function se (line 148) | function se(Je,st,St,lr){St=St||[];var ee=St.every(function(Oe){return O...
function De (line 148) | function De(Je,st){if(!Je)return"";for(var St=Je+st,lr=Je;!(lr>=St)&&ke[...
function Re (line 148) | function Re(Je,st,St,lr){if(!(lr>0))return 0;for(var ee=St,Ee=St+lr-1,Oe...
function dt (line 148) | function dt(Je,st,St){return Re(Je,ke,st,St)}
function j (line 148) | function j(Je){for(var st=0,St=0;St<Je.length;++St){var lr=Je.charCodeAt...
function rt (line 148) | function rt(Je){var st=j(Je)+1,St=Ma(st);return St&&Re(Je,Ye,St,st),St}
function Fe (line 148) | function Fe(Je,st){Ye.set(Je,st)}
function Ne (line 148) | function Ne(Je,st){return Je%st>0&&(Je+=st-Je%st),Je}
function z (line 148) | function z(Je){Pe=Je,r.HEAP_DATA_VIEW=F=new DataView(Je),r.HEAP8=Ye=new ...
function It (line 148) | function It(){if(r.preRun)for(typeof r.preRun=="function"&&(r.preRun=[r....
function qt (line 148) | function qt(){lt=!0,Fs(xe)}
function ir (line 148) | function ir(){if(r.postRun)for(typeof r.postRun=="function"&&(r.postRun=...
function Pt (line 148) | function Pt(Je){oe.unshift(Je)}
function gn (line 148) | function gn(Je){xe.unshift(Je)}
function Pr (line 148) | function Pr(Je){Te.unshift(Je)}
function ai (line 148) | function ai(Je){Ir++,r.monitorRunDependencies&&r.monitorRunDependencies(...
function wo (line 148) | function wo(Je){if(Ir--,r.monitorRunDependencies&&r.monitorRunDependenci...
function ns (line 148) | function ns(Je){r.onAbort&&r.onAbort(Je),Je+="",te(Je),Ce=!0,g=1,Je="abo...
function Bo (line 148) | function Bo(Je){return Je.startsWith(to)}
function ro (line 148) | function ro(Je){try{if(Je==ji&&ce)return new Uint8Array(ce);var st=Me(Je...
function vo (line 148) | function vo(Je,st){var St,lr,ee;try{ee=ro(Je),lr=new WebAssembly.Module(...
function RA (line 148) | function RA(){var Je={a:fu};function st(ee,Ee){var Oe=ee.exports;r.asm=O...
function pf (line 148) | function pf(Je){return F.getFloat32(Je,!0)}
function yh (line 148) | function yh(Je){return F.getFloat64(Je,!0)}
function Eh (line 148) | function Eh(Je){return F.getInt16(Je,!0)}
function no (line 148) | function no(Je){return F.getInt32(Je,!0)}
function jn (line 148) | function jn(Je,st){F.setInt32(Je,st,!0)}
function Fs (line 148) | function Fs(Je){for(;Je.length>0;){var st=Je.shift();if(typeof st=="func...
function io (line 148) | function io(Je,st){var St=new Date(no((Je>>2)*4)*1e3);jn((st>>2)*4,St.ge...
function lu (line 148) | function lu(Je,st){return io(Je,st)}
function cu (line 148) | function cu(Je,st,St){ke.copyWithin(Je,st,st+St)}
function uu (line 148) | function uu(Je){try{return Be.grow(Je-Pe.byteLength+65535>>>16),z(Be.buf...
function FA (line 148) | function FA(Je){var st=ke.length;Je=Je>>>0;var St=2147483648;if(Je>St)re...
function NA (line 148) | function NA(Je){Ae(Je)}
function aa (line 148) | function aa(Je){var st=Date.now()/1e3|0;return Je&&jn((Je>>2)*4,st),st}
function la (line 148) | function la(){if(la.called)return;la.called=!0;var Je=new Date().getFull...
function OA (line 148) | function OA(Je){la();var st=Date.UTC(no((Je+20>>2)*4)+1900,no((Je+16>>2)...
function So (line 148) | function So(Je){if(typeof C=="boolean"&&C){var st;try{st=Buffer.from(Je,...
function Me (line 148) | function Me(Je){if(Bo(Je))return So(Je.slice(to.length))}
function pc (line 148) | function pc(Je){if(Je=Je||f,Ir>0||(It(),Ir>0))return;function st(){Qn||(...
method HEAPU8 (line 148) | get HEAPU8(){return t.HEAPU8}
function qj (line 148) | function qj(t,e){let r=t.indexOf(e);if(r<=0)return null;let s=r;for(;r>=...
method openPromise (line 148) | static async openPromise(e,r){let s=new t(r);try{return await e(s)}final...
method constructor (line 148) | constructor(e={}){let r=e.fileExtensions,s=e.readOnlyArchives,a=typeof r...
method constructor (line 148) | constructor(e,r){super(e),this.name="Libzip Error",this.code=r}
method constructor (line 148) | constructor(e){this.filesShouldBeCached=!0;let r="buffer"in e?e.buffer:e...
method getSymlinkCount (line 148) | getSymlinkCount(){return this.symlinkCount}
method getListings (line 148) | getListings(){return this.listings}
method stat (line 148) | stat(e){let r=this.libzip.struct.statS();if(this.libzip.statIndex(this.z...
method makeLibzipError (line 148) | makeLibzipError(e){let r=this.libzip.struct.errorCodeZip(e),s=this.libzi...
method setFileSource (line 148) | setFileSource(e,r,s){let a=this.allocateSource(s);try{let n=this.libzip....
method setMtime (line 148) | setMtime(e,r){if(this.libzip.file.setMtime(this.zip,e,0,r,0)===-1)throw ...
method getExternalAttributes (line 148) | getExternalAttributes(e){if(this.libzip.file.getExternalAttributes(this....
method setExternalAttributes (line 148) | setExternalAttributes(e,r,s){if(this.libzip.file.setExternalAttributes(t...
method locate (line 148) | locate(e){return this.libzip.name.locate(this.zip,e,0)}
method getFileSource (line 148) | getFileSource(e){let r=this.libzip.struct.statS();if(this.libzip.statInd...
method deleteEntry (line 148) | deleteEntry(e){if(this.libzip.delete(this.zip,e)===-1)throw this.makeLib...
method addDirectory (line 148) | addDirectory(e){let r=this.libzip.dir.add(this.zip,e);if(r===-1)throw th...
method getBufferAndClose (line 148) | getBufferAndClose(){try{if(this.libzip.source.keep(this.lzSource),this.l...
method allocateBuffer (line 148) | allocateBuffer(e){Buffer.isBuffer(e)||(e=Buffer.from(e));let r=this.libz...
method allocateUnattachedSource (line 148) | allocateUnattachedSource(e){let r=this.libzip.struct.errorS(),{buffer:s,...
method allocateSource (line 148) | allocateSource(e){let{buffer:r,byteLength:s}=this.allocateBuffer(e),a=th...
method discard (line 148) | discard(){this.libzip.discard(this.zip)}
function Wdt (line 148) | function Wdt(t){if(typeof t=="string"&&String(+t)===t)return+t;if(typeof...
function CT (line 148) | function CT(){return Buffer.from([80,75,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,...
method constructor (line 148) | constructor(r,s={}){super();this.listings=new Map;this.entries=new Map;t...
method getExtractHint (line 148) | getExtractHint(r){for(let s of this.entries.keys()){let a=this.pathUtils...
method getAllFiles (line 148) | getAllFiles(){return Array.from(this.entries.keys())}
method getRealPath (line 148) | getRealPath(){if(!this.path)throw new Error("ZipFS don't have real paths...
method prepareClose (line 148) | prepareClose(){if(!this.ready)throw or.EBUSY("archive closed, close");md...
method getBufferAndClose (line 148) | getBufferAndClose(){if(this.prepareClose(),this.entries.size===0)return ...
method discardAndClose (line 148) | discardAndClose(){this.prepareClose(),this.zipImpl.discard(),this.ready=!1}
method saveAndClose (line 148) | saveAndClose(){if(!this.path||!this.baseFs)throw new Error("ZipFS cannot...
method resolve (line 148) | resolve(r){return K.resolve(vt.root,r)}
method openPromise (line 148) | async openPromise(r,s,a){return this.openSync(r,s,a)}
method openSync (line 148) | openSync(r,s,a){let n=this.nextFd++;return this.fds.set(n,{cursor:0,p:r}...
method hasOpenFileHandles (line 148) | hasOpenFileHandles(){return!!this.fds.size}
method opendirPromise (line 148) | async opendirPromise(r,s){return this.opendirSync(r,s)}
method opendirSync (line 148) | opendirSync(r,s={}){let a=this.resolveFilename(`opendir '${r}'`,r);if(!t...
method readPromise (line 148) | async readPromise(r,s,a,n,c){return this.readSync(r,s,a,n,c)}
method readSync (line 148) | readSync(r,s,a=0,n=s.byteLength,c=-1){let f=this.fds.get(r);if(typeof f>...
method writePromise (line 148) | async writePromise(r,s,a,n,c){return typeof s=="string"?this.writeSync(r...
method writeSync (line 148) | writeSync(r,s,a,n,c){throw typeof this.fds.get(r)>"u"?or.EBADF("read"):n...
method closePromise (line 148) | async closePromise(r){return this.closeSync(r)}
method closeSync (line 148) | closeSync(r){if(typeof this.fds.get(r)>"u")throw or.EBADF("read");this.f...
method createReadStream (line 148) | createReadStream(r,{encoding:s}={}){if(r===null)throw new Error("Unimple...
method createWriteStream (line 148) | createWriteStream(r,{encoding:s}={}){if(this.readOnly)throw or.EROFS(`op...
method realpathPromise (line 148) | async realpathPromise(r){return this.realpathSync(r)}
method realpathSync (line 148) | realpathSync(r){let s=this.resolveFilename(`lstat '${r}'`,r);if(!this.en...
method existsPromise (line 148) | async existsPromise(r){return this.existsSync(r)}
method existsSync (line 148) | existsSync(r){if(!this.ready)throw or.EBUSY(`archive closed, existsSync ...
method accessPromise (line 148) | async accessPromise(r,s){return this.accessSync(r,s)}
method accessSync (line 148) | accessSync(r,s=ka.constants.F_OK){let a=this.resolveFilename(`access '${...
method statPromise (line 148) | async statPromise(r,s={bigint:!1}){return s.bigint?this.statSync(r,{bigi...
method statSync (line 148) | statSync(r,s={bigint:!1,throwIfNoEntry:!0}){let a=this.resolveFilename(`...
method fstatPromise (line 148) | async fstatPromise(r,s){return this.fstatSync(r,s)}
method fstatSync (line 148) | fstatSync(r,s){let a=this.fds.get(r);if(typeof a>"u")throw or.EBADF("fst...
method lstatPromise (line 148) | async lstatPromise(r,s={bigint:!1}){return s.bigint?this.lstatSync(r,{bi...
method lstatSync (line 148) | lstatSync(r,s={bigint:!1,throwIfNoEntry:!0}){let a=this.resolveFilename(...
method statImpl (line 148) | statImpl(r,s,a={}){let n=this.entries.get(s);if(typeof n<"u"){let c=this...
method getUnixMode (line 148) | getUnixMode(r,s){let[a,n]=this.zipImpl.getExternalAttributes(r);return a...
method registerListing (line 148) | registerListing(r){let s=this.listings.get(r);if(s)return s;this.registe...
method registerEntry (line 148) | registerEntry(r,s){this.registerListing(K.dirname(r)).add(K.basename(r))...
method unregisterListing (line 148) | unregisterListing(r){this.listings.delete(r),this.listings.get(K.dirname...
method unregisterEntry (line 148) | unregisterEntry(r){this.unregisterListing(r);let s=this.entries.get(r);t...
method deleteEntry (line 148) | deleteEntry(r,s){this.unregisterEntry(r),this.zipImpl.deleteEntry(s)}
method resolveFilename (line 148) | resolveFilename(r,s,a=!0,n=!0){if(!this.ready)throw or.EBUSY(`archive cl...
method setFileSource (line 148) | setFileSource(r,s){let a=Buffer.isBuffer(s)?s:Buffer.from(s),n=K.relativ...
method isSymbolicLink (line 148) | isSymbolicLink(r){if(this.symlinkCount===0)return!1;let[s,a]=this.zipImp...
method getFileSource (line 148) | getFileSource(r,s={asyncDecompress:!1}){let a=this.fileSources.get(r);if...
method fchmodPromise (line 148) | async fchmodPromise(r,s){return this.chmodPromise(this.fdToPath(r,"fchmo...
method fchmodSync (line 148) | fchmodSync(r,s){return this.chmodSync(this.fdToPath(r,"fchmodSync"),s)}
method chmodPromise (line 148) | async chmodPromise(r,s){return this.chmodSync(r,s)}
method chmodSync (line 148) | chmodSync(r,s){if(this.readOnly)throw or.EROFS(`chmod '${r}'`);s&=493;le...
method fchownPromise (line 148) | async fchownPromise(r,s,a){return this.chownPromise(this.fdToPath(r,"fch...
method fchownSync (line 148) | fchownSync(r,s,a){return this.chownSync(this.fdToPath(r,"fchownSync"),s,a)}
method chownPromise (line 148) | async chownPromise(r,s,a){return this.chownSync(r,s,a)}
method chownSync (line 148) | chownSync(r,s,a){throw new Error("Unimplemented")}
method renamePromise (line 148) | async renamePromise(r,s){return this.renameSync(r,s)}
method renameSync (line 148) | renameSync(r,s){throw new Error("Unimplemented")}
method copyFilePromise (line 148) | async copyFilePromise(r,s,a){let{indexSource:n,indexDest:c,resolvedDestP...
method copyFileSync (line 148) | copyFileSync(r,s,a=0){let{indexSource:n,indexDest:c,resolvedDestP:f}=thi...
method prepareCopyFile (line 148) | prepareCopyFile(r,s,a=0){if(this.readOnly)throw or.EROFS(`copyfile '${r}...
method appendFilePromise (line 148) | async appendFilePromise(r,s,a){if(this.readOnly)throw or.EROFS(`open '${...
method appendFileSync (line 148) | appendFileSync(r,s,a={}){if(this.readOnly)throw or.EROFS(`open '${r}'`);...
method fdToPath (line 148) | fdToPath(r,s){let a=this.fds.get(r)?.p;if(typeof a>"u")throw or.EBADF(s)...
method writeFilePromise (line 148) | async writeFilePromise(r,s,a){let{encoding:n,mode:c,index:f,resolvedP:p}...
method writeFileSync (line 148) | writeFileSync(r,s,a){let{encoding:n,mode:c,index:f,resolvedP:p}=this.pre...
method prepareWriteFile (line 148) | prepareWriteFile(r,s){if(typeof r=="number"&&(r=this.fdToPath(r,"read"))...
method unlinkPromise (line 148) | async unlinkPromise(r){return this.unlinkSync(r)}
method unlinkSync (line 148) | unlinkSync(r){if(this.readOnly)throw or.EROFS(`unlink '${r}'`);let s=thi...
method utimesPromise (line 148) | async utimesPromise(r,s,a){return this.utimesSync(r,s,a)}
method utimesSync (line 148) | utimesSync(r,s,a){if(this.readOnly)throw or.EROFS(`utimes '${r}'`);let n...
method lutimesPromise (line 148) | async lutimesPromise(r,s,a){return this.lutimesSync(r,s,a)}
method lutimesSync (line 148) | lutimesSync(r,s,a){if(this.readOnly)throw or.EROFS(`lutimes '${r}'`);let...
method utimesImpl (line 148) | utimesImpl(r,s){this.listings.has(r)&&(this.entries.has(r)||this.hydrate...
method mkdirPromise (line 148) | async mkdirPromise(r,s){return this.mkdirSync(r,s)}
method mkdirSync (line 148) | mkdirSync(r,{mode:s=493,recursive:a=!1}={}){if(a)return this.mkdirpSync(...
method rmdirPromise (line 148) | async rmdirPromise(r,s){return this.rmdirSync(r,s)}
method rmdirSync (line 148) | rmdirSync(r,{recursive:s=!1}={}){if(this.readOnly)throw or.EROFS(`rmdir ...
method rmPromise (line 148) | async rmPromise(r,s){return this.rmSync(r,s)}
method rmSync (line 148) | rmSync(r,{recursive:s=!1}={}){if(this.readOnly)throw or.EROFS(`rm '${r}'...
method hydrateDirectory (line 148) | hydrateDirectory(r){let s=this.zipImpl.addDirectory(K.relative(vt.root,r...
method linkPromise (line 148) | async linkPromise(r,s){return this.linkSync(r,s)}
method linkSync (line 148) | linkSync(r,s){throw or.EOPNOTSUPP(`link '${r}' -> '${s}'`)}
method symlinkPromise (line 148) | async symlinkPromise(r,s){return this.symlinkSync(r,s)}
method symlinkSync (line 148) | symlinkSync(r,s){if(this.readOnly)throw or.EROFS(`symlink '${r}' -> '${s...
method readFilePromise (line 148) | async readFilePromise(r,s){typeof s=="object"&&(s=s?s.encoding:void 0);l...
method readFileSync (line 148) | readFileSync(r,s){typeof s=="object"&&(s=s?s.encoding:void 0);let a=this...
method readFileBuffer (line 148) | readFileBuffer(r,s={asyncDecompress:!1}){typeof r=="number"&&(r=this.fdT...
method readdirPromise (line 148) | async readdirPromise(r,s){return this.readdirSync(r,s)}
method readdirSync (line 148) | readdirSync(r,s){let a=this.resolveFilename(`scandir '${r}'`,r);if(!this...
method readlinkPromise (line 148) | async readlinkPromise(r){let s=this.prepareReadlink(r);return(await this...
method readlinkSync (line 148) | readlinkSync(r){let s=this.prepareReadlink(r);return this.getFileSource(...
method prepareReadlink (line 148) | prepareReadlink(r){let s=this.resolveFilename(`readlink '${r}'`,r,!1);if...
method truncatePromise (line 148) | async truncatePromise(r,s=0){let a=this.resolveFilename(`open '${r}'`,r)...
method truncateSync (line 148) | truncateSync(r,s=0){let a=this.resolveFilename(`open '${r}'`,r),n=this.e...
method ftruncatePromise (line 148) | async ftruncatePromise(r,s){return this.truncatePromise(this.fdToPath(r,...
method ftruncateSync (line 148) | ftruncateSync(r,s){return this.truncateSync(this.fdToPath(r,"ftruncateSy...
method watch (line 148) | watch(r,s,a){let n;switch(typeof s){case"function":case"string":case"und...
method watchFile (line 148) | watchFile(r,s,a){let n=K.resolve(vt.root,r);return nE(this,n,s,a)}
method unwatchFile (line 148) | unwatchFile(r,s){let a=K.resolve(vt.root,r);return dd(this,a,s)}
function Lde (line 148) | function Lde(t,e,r=Buffer.alloc(0),s){let a=new hs(r),n=C=>C===e||C.star...
method constructor (line 148) | constructor(e){this.filesShouldBeCached=!1;if("buffer"in e)throw new Err...
method readZipSync (line 148) | static readZipSync(e,r,s){if(s<Ev)throw new Error("Invalid ZIP file: EOC...
method getExternalAttributes (line 148) | getExternalAttributes(e){let r=this.entries[e];return[r.os,r.externalAtt...
method getListings (line 148) | getListings(){return this.entries.map(e=>e.name)}
method getSymlinkCount (line 148) | getSymlinkCount(){let e=0;for(let r of this.entries)r.isSymbolicLink&&(e...
method stat (line 148) | stat(e){let r=this.entries[e];return{crc:r.crc,mtime:r.mtime,size:r.size}}
method locate (line 148) | locate(e){for(let r=0;r<this.entries.length;r++)if(this.entries[r].name=...
method getFileSource (line 148) | getFileSource(e){if(this.fd==="closed")throw new Error("ZIP file is clos...
method discard (line 148) | discard(){this.fd!=="closed"&&(this.baseFs.closeSync(this.fd),this.fd="c...
method addDirectory (line 148) | addDirectory(e){throw new Error("Not implemented")}
method deleteEntry (line 148) | deleteEntry(e){throw new Error("Not implemented")}
method setMtime (line 148) | setMtime(e,r){throw new Error("Not implemented")}
method getBufferAndClose (line 148) | getBufferAndClose(){throw new Error("Not implemented")}
method setFileSource (line 148) | setFileSource(e,r,s){throw new Error("Not implemented")}
method setExternalAttributes (line 148) | setExternalAttributes(e,r,s){throw new Error("Not implemented")}
function Ydt (line 148) | function Ydt(){return yv()}
function Vdt (line 148) | async function Vdt(){return yv()}
method constructor (line 148) | constructor(){super(...arguments);this.cwd=ge.String("--cwd",process.cwd...
method execute (line 158) | async execute(){let r=this.args.length>0?`${this.commandName} ${this.arg...
method constructor (line 158) | constructor(e){super(e),this.name="ShellError"}
function Kdt (line 158) | function Kdt(t){if(!vT.default.scan(t,ST).isGlob)return!1;try{vT.default...
function Jdt (line 158) | function Jdt(t,{cwd:e,baseFs:r}){return(0,Gde.default)(t,{...Yde,cwd:ue....
function Zj (line 158) | function Zj(t){return vT.default.scan(t,ST).isBrace}
function Xj (line 158) | function Xj(){}
function $j (line 158) | function $j(){for(let t of am)t.kill()}
function Zde (line 158) | function Zde(t,e,r,s){return a=>{let n=a[0]instanceof nA.Transform?"pipe...
function Xde (line 161) | function Xde(t){return e=>{let r=e[0]==="pipe"?new nA.PassThrough:e[0];r...
function bT (line 161) | function bT(t,e){return t6.start(t,e)}
function Kde (line 161) | function Kde(t,e=null){let r=new nA.PassThrough,s=new zde.StringDecoder,...
function $de (line 162) | function $de(t,{prefix:e}){return{stdout:Kde(r=>t.stdout.write(`${r}
method constructor (line 164) | constructor(e){this.stream=e}
method close (line 164) | close(){}
method get (line 164) | get(){return this.stream}
method constructor (line 164) | constructor(){this.stream=null}
method close (line 164) | close(){if(this.stream===null)throw new Error("Assertion failed: No stre...
method attach (line 164) | attach(e){this.stream=e}
method get (line 164) | get(){if(this.stream===null)throw new Error("Assertion failed: No stream...
method constructor (line 164) | constructor(e,r){this.stdin=null;this.stdout=null;this.stderr=null;this....
method start (line 164) | static start(e,{stdin:r,stdout:s,stderr:a}){let n=new t(null,e);return n...
method pipeTo (line 164) | pipeTo(e,r=1){let s=new t(this,e),a=new e6;return s.pipe=a,s.stdout=this...
method exec (line 164) | async exec(){let e=["ignore","ignore","ignore"];if(this.pipe)e[0]="pipe"...
method run (line 164) | async run(){let e=[];for(let s=this;s;s=s.ancestor)e.push(s.exec());retu...
function eme (line 164) | function eme(t,e,r){let s=new Jl.PassThrough({autoDestroy:!0});switch(t)...
function xT (line 164) | function xT(t,e={}){let r={...t,...e};return r.environment={...t.environ...
function Zdt (line 164) | async function Zdt(t,e,r){let s=[],a=new Jl.PassThrough;return a.on("dat...
function tme (line 164) | async function tme(t,e,r){let s=t.map(async n=>{let c=await lm(n.args,e,...
function PT (line 164) | function PT(t){return t.match(/[^ \r\n\t]+/g)||[]}
function ame (line 164) | async function ame(t,e,r,s,a=s){switch(t.name){case"$":s(String(process....
function Bv (line 164) | async function Bv(t,e,r){if(t.type==="number"){if(Number.isInteger(t.val...
function lm (line 164) | async function lm(t,e,r){let s=new Map,a=[],n=[],c=E=>{n.push(E)},f=()=>...
function vv (line 164) | function vv(t,e,r){e.builtins.has(t[0])||(t=["command",...t]);let s=ue.f...
function $dt (line 164) | function $dt(t,e,r){return s=>{let a=new Jl.PassThrough,n=kT(t,e,xT(r,{s...
function emt (line 164) | function emt(t,e,r){return s=>{let a=new Jl.PassThrough,n=kT(t,e,r);retu...
function rme (line 164) | function rme(t,e,r,s){if(e.length===0)return t;{let a;do a=String(Math.r...
function nme (line 164) | async function nme(t,e,r){let s=t,a=null,n=null;for(;s;){let c=s.then?{....
function tmt (line 164) | async function tmt(t,e,r,{background:s=!1}={}){function a(n){let c=["#2E...
function rmt (line 166) | async function rmt(t,e,r,{background:s=!1}={}){let a,n=f=>{a=f,r.variabl...
function kT (line 167) | async function kT(t,e,r){let s=r.backgroundJobs;r.backgroundJobs=[];let ...
function lme (line 167) | function lme(t){switch(t.type){case"variable":return t.name==="@"||t.nam...
function Sv (line 167) | function Sv(t){switch(t.type){case"redirection":return t.args.some(e=>Sv...
function n6 (line 167) | function n6(t){switch(t.type){case"variable":return lme(t);case"number":...
function i6 (line 167) | function i6(t){return t.some(({command:e})=>{for(;e;){let r=e.chain;for(...
function BI (line 167) | async function BI(t,e=[],{baseFs:r=new Yn,builtins:s={},cwd:a=ue.toPorta...
method write (line 170) | write(ie,Ae,ce){setImmediate(ce)}
function nmt (line 170) | function nmt(t,e){for(var r=-1,s=t==null?0:t.length,a=Array(s);++r<s;)a[...
function pme (line 170) | function pme(t){if(typeof t=="string")return t;if(smt(t))return imt(t,pm...
function cmt (line 170) | function cmt(t){return t==null?"":lmt(t)}
function umt (line 170) | function umt(t,e,r){var s=-1,a=t.length;e<0&&(e=-e>a?0:a+e),r=r>a?a:r,r<...
function Amt (line 170) | function Amt(t,e,r){var s=t.length;return r=r===void 0?s:r,!e&&r>=s?t:fm...
function Cmt (line 170) | function Cmt(t){return Imt.test(t)}
function wmt (line 170) | function wmt(t){return t.split("")}
function Nmt (line 170) | function Nmt(t){return t.match(Fmt)||[]}
function _mt (line 170) | function _mt(t){return Lmt(t)?Mmt(t):Omt(t)}
function Gmt (line 170) | function Gmt(t){return function(e){e=qmt(e);var r=Hmt(e)?jmt(e):void 0,s...
function Jmt (line 170) | function Jmt(t){return Kmt(Vmt(t).toLowerCase())}
function zmt (line 170) | function zmt(){var t=0,e=1,r=2,s=3,a=4,n=5,c=6,f=7,p=8,h=9,E=10,C=11,S=1...
function Xmt (line 170) | function Xmt(){if(RT)return RT;if(typeof Intl.Segmenter<"u"){let t=new I...
function Yme (line 170) | function Yme(t,{configuration:e,json:r}){if(!e.get("enableMessageNames")...
function u6 (line 170) | function u6(t,{configuration:e,json:r}){let s=Yme(t,{configuration:e,jso...
function vI (line 170) | async function vI({configuration:t,stdout:e,forceError:r},s){let a=await...
method constructor (line 175) | constructor({configuration:r,stdout:s,json:a=!1,forceSectionAlignment:n=...
method start (line 175) | static async start(r,s){let a=new this(r),n=process.emitWarning;process....
method hasErrors (line 175) | hasErrors(){return this.errorCount>0}
method exitCode (line 175) | exitCode(){return this.hasErrors()?1:0}
method getRecommendedLength (line 175) | getRecommendedLength(){let s=this.progressStyle!==null?this.stdout.colum...
method startSectionSync (line 175) | startSectionSync({reportHeader:r,reportFooter:s,skipIfEmpty:a},n){let c=...
method startSectionPromise (line 175) | async startSectionPromise({reportHeader:r,reportFooter:s,skipIfEmpty:a},...
method startTimerImpl (line 175) | startTimerImpl(r,s,a){return{cb:typeof s=="function"?s:a,reportHeader:()...
method startTimerSync (line 175) | startTimerSync(r,s,a){let{cb:n,...c}=this.startTimerImpl(r,s,a);return t...
method startTimerPromise (line 175) | async startTimerPromise(r,s,a){let{cb:n,...c}=this.startTimerImpl(r,s,a)...
method reportSeparator (line 175) | reportSeparator(){this.indent===0?this.writeLine(""):this.reportInfo(nul...
method reportInfo (line 175) | reportInfo(r,s){if(!this.includeInfos)return;this.commit();let a=this.fo...
method reportWarning (line 175) | reportWarning(r,s){if(this.warningCount+=1,!this.includeWarnings)return;...
method reportError (line 175) | reportError(r,s){this.errorCount+=1,this.timerFooter.push(()=>this.repor...
method reportErrorImpl (line 175) | reportErrorImpl(r,s){this.commit();let a=this.formatNameWithHyperlink(r)...
method reportFold (line 175) | reportFold(r,s){if(!S0)return;let a=`${S0.start(r)}${s}${S0.end(r)}`;thi...
method reportProgress (line 175) | reportProgress(r){if(this.progressStyle===null)return{...Promise.resolve...
method reportJson (line 175) | reportJson(r){this.json&&this.writeLine(`${JSON.stringify(r)}`)}
method finalize (line 175) | async finalize(){if(!this.includeFooter)return;let r="";this.errorCount>...
method writeLine (line 175) | writeLine(r,{truncate:s}={}){this.clearProgress({clear:!0}),this.stdout....
method writeLines (line 176) | writeLines(r,{truncate:s}={}){this.clearProgress({delta:r.length});for(l...
method commit (line 177) | commit(){let r=this.uncommitted;this.uncommitted=new Set;for(let s of r)...
method clearProgress (line 177) | clearProgress({delta:r=0,clear:s=!1}){this.progressStyle!==null&&this.pr...
method writeProgress (line 177) | writeProgress(){if(this.progressStyle===null||(this.progressTimeout!==nu...
method refreshProgress (line 178) | refreshProgress({delta:r=0,force:s=!1}={}){let a=!1,n=!1;if(s||this.prog...
method truncate (line 178) | truncate(r,{truncate:s}={}){return this.progressStyle===null&&(s=!1),typ...
method formatName (line 178) | formatName(r){return this.includeNames?Yme(r,{configuration:this.configu...
method formatPrefix (line 178) | formatPrefix(r,s){return this.includePrefix?`${Ut(this.configuration,"\u...
method formatNameWithHyperlink (line 178) | formatNameWithHyperlink(r){return this.includeNames?u6(r,{configuration:...
method formatIndent (line 178) | formatIndent(){return this.level>0||!this.forceSectionAlignment?"\u2502 ...
function D0 (line 178) | async function D0(t,e,r,s=[]){if(process.platform==="win32"){let a=`@got...
function zme (line 180) | async function zme(t){let e=await Ht.tryFind(t);if(e?.packageManager){le...
function kv (line 180) | async function kv({project:t,locator:e,binFolder:r,ignoreCorepack:s,life...
function syt (line 180) | async function syt(t,e,{configuration:r,report:s,workspace:a=null,locato...
function oyt (line 188) | async function oyt(t,e,{project:r}){let s=r.tryWorkspaceByLocator(t);if(...
function OT (line 188) | async function OT(t,e,r,{cwd:s,project:a,stdin:n,stdout:c,stderr:f}){ret...
function f6 (line 188) | async function f6(t,e,r,{cwd:s,project:a,stdin:n,stdout:c,stderr:f}){ret...
function ayt (line 188) | async function ayt(t,{binFolder:e,cwd:r,lifecycleScript:s}){let a=await ...
function Zme (line 188) | async function Zme(t,{project:e,binFolder:r,cwd:s,lifecycleScript:a}){le...
function Xme (line 188) | async function Xme(t,e,r,{cwd:s,stdin:a,stdout:n,stderr:c}){return await...
function A6 (line 188) | function A6(t,e){return t.manifest.scripts.has(e)}
function $me (line 188) | async function $me(t,e,{cwd:r,report:s}){let{configuration:a}=t.project,...
function lyt (line 189) | async function lyt(t,e,r){A6(t,e)&&await $me(t,e,r)}
function p6 (line 189) | function p6(t){let e=K.extname(t);if(e.match(/\.[cm]?[jt]sx?$/))return!0...
function LT (line 189) | async function LT(t,{project:e}){let r=e.configuration,s=new Map,a=e.sto...
function eye (line 189) | async function eye(t){return await LT(t.anchoredLocator,{project:t.proje...
function h6 (line 189) | async function h6(t,e){await Promise.all(Array.from(e,([r,[,s,a]])=>a?D0...
function tye (line 189) | async function tye(t,e,r,{cwd:s,project:a,stdin:n,stdout:c,stderr:f,node...
function cyt (line 189) | async function cyt(t,e,r,{cwd:s,stdin:a,stdout:n,stderr:c,packageAccessi...
method constructor (line 189) | constructor(e,r,s){this.src=e,this.dest=r,this.opts=s,this.ondrain=()=>e...
method unpipe (line 189) | unpipe(){this.dest.removeListener("drain",this.ondrain)}
method proxyErrors (line 189) | proxyErrors(){}
method end (line 189) | end(){this.unpipe(),this.opts.end&&this.dest.end()}
method unpipe (line 189) | unpipe(){this.src.removeListener("error",this.proxyErrors),super.unpipe()}
method constructor (line 189) | constructor(e,r,s){super(e,r,s),this.proxyErrors=a=>r.emit("error",a),e....
method constructor (line 189) | constructor(e){super(),this[HT]=!1,this[Tv]=!1,this.pipes=[],this.buffer...
method bufferLength (line 189) | get bufferLength(){return this[Ks]}
method encoding (line 189) | get encoding(){return this[fl]}
method encoding (line 189) | set encoding(e){if(this[zo])throw new Error("cannot set encoding in obje...
method setEncoding (line 189) | setEncoding(e){this.encoding=e}
method objectMode (line 189) | get objectMode(){return this[zo]}
method objectMode (line 189) | set objectMode(e){this[zo]=this[zo]||!!e}
method async (line 189) | get async(){return this[Wp]}
method async (line 189) | set async(e){this[Wp]=this[Wp]||!!e}
method write (line 189) | write(e,r,s){if(th
Copy disabled (too large)
Download .json
Condensed preview — 10588 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (43,517K chars).
[
{
"path": ".agents/skills/skill-creator/LICENSE.txt",
"chars": 11345,
"preview": "\n Apache License\n Version 2.0, January 2004\n "
},
{
"path": ".agents/skills/skill-creator/SKILL.md",
"chars": 33043,
"preview": "---\nname: skill-creator\ndescription: Create new skills, modify and improve existing skills, and measure skill performanc"
},
{
"path": ".agents/skills/skill-creator/agents/analyzer.md",
"chars": 10543,
"preview": "# Post-hoc Analyzer Agent\n\nAnalyze blind comparison results to understand WHY the winner won and generate improvement su"
},
{
"path": ".agents/skills/skill-creator/agents/comparator.md",
"chars": 7300,
"preview": "# Blind Comparator Agent\n\nCompare two outputs WITHOUT knowing which skill produced them.\n\n## Role\n\nThe Blind Comparator "
},
{
"path": ".agents/skills/skill-creator/agents/grader.md",
"chars": 9035,
"preview": "# Grader Agent\n\nEvaluate expectations against an execution transcript and outputs.\n\n## Role\n\nThe Grader reviews a transc"
},
{
"path": ".agents/skills/skill-creator/assets/eval_review.html",
"chars": 8424,
"preview": "<!doctype html>\n<html lang=\"en\">\n <head>\n <meta charset=\"UTF-8\" />\n <meta name=\"viewport\" content=\"width=device-w"
},
{
"path": ".agents/skills/skill-creator/eval-viewer/generate_review.py",
"chars": 16295,
"preview": "#!/usr/bin/env python3\n\"\"\"Generate and serve a review page for eval results.\n\nReads the workspace directory, discovers r"
},
{
"path": ".agents/skills/skill-creator/eval-viewer/viewer.html",
"chars": 49438,
"preview": "<!doctype html>\n<html lang=\"en\">\n <head>\n <meta charset=\"UTF-8\" />\n <meta name=\"viewport\" content=\"width=device-w"
},
{
"path": ".agents/skills/skill-creator/references/schemas.md",
"chars": 11981,
"preview": "# JSON Schemas\n\nThis document defines the JSON schemas used by skill-creator.\n\n---\n\n## evals.json\n\nDefines the evals for"
},
{
"path": ".agents/skills/skill-creator/scripts/__init__.py",
"chars": 0,
"preview": ""
},
{
"path": ".agents/skills/skill-creator/scripts/aggregate_benchmark.py",
"chars": 14284,
"preview": "#!/usr/bin/env python3\n\"\"\"\nAggregate individual run results into benchmark summary statistics.\n\nReads grading.json files"
},
{
"path": ".agents/skills/skill-creator/scripts/generate_report.py",
"chars": 12837,
"preview": "#!/usr/bin/env python3\n\"\"\"Generate an HTML report from run_loop.py output.\n\nTakes the JSON output from run_loop.py and g"
},
{
"path": ".agents/skills/skill-creator/scripts/improve_description.py",
"chars": 11108,
"preview": "#!/usr/bin/env python3\n\"\"\"Improve a skill description based on eval results.\n\nTakes eval results (from run_eval.py) and "
},
{
"path": ".agents/skills/skill-creator/scripts/package_skill.py",
"chars": 4214,
"preview": "#!/usr/bin/env python3\n\"\"\"\nSkill Packager - Creates a distributable .skill file of a skill folder\n\nUsage:\n python uti"
},
{
"path": ".agents/skills/skill-creator/scripts/quick_validate.py",
"chars": 3972,
"preview": "#!/usr/bin/env python3\n\"\"\"\nQuick validation script for skills - minimal version\n\"\"\"\n\nimport sys\nimport os\nimport re\nimpo"
},
{
"path": ".agents/skills/skill-creator/scripts/run_eval.py",
"chars": 11464,
"preview": "#!/usr/bin/env python3\n\"\"\"Run trigger evaluation for a skill description.\n\nTests whether a skill's description causes Cl"
},
{
"path": ".agents/skills/skill-creator/scripts/run_loop.py",
"chars": 13605,
"preview": "#!/usr/bin/env python3\n\"\"\"Run the eval + improve loop until all pass or max iterations reached.\n\nCombines run_eval.py an"
},
{
"path": ".agents/skills/skill-creator/scripts/utils.py",
"chars": 1661,
"preview": "\"\"\"Shared utilities for skill-creator scripts.\"\"\"\n\nfrom pathlib import Path\n\n\n\ndef parse_skill_md(skill_path: Path) -> t"
},
{
"path": ".browserslistrc",
"chars": 132,
"preview": "firefox esr\nios>=11\nlast 1 safari version\nlast 2 chrome versions\nlast 2 edge versions\nlast 2 firefox versions\nlast 2 ope"
},
{
"path": ".claude/agents/design-system-researcher.md",
"chars": 7878,
"preview": "---\nname: design-system-researcher\ndescription: Use this agent when you need to conduct in-depth research on a single op"
},
{
"path": ".claude/settings.json",
"chars": 986,
"preview": "{\n \"permissions\": {\n \"allow\": [\n \"WebFetch\",\n \"WebSearch\",\n \"Write\",\n \"Skill(cds-components)\",\n "
},
{
"path": ".claude/skills/components.best-practices/SKILL.md",
"chars": 7260,
"preview": "---\nname: components.best-practices\ndescription: Use this skill whenever working on CDS React components in any package."
},
{
"path": ".claude/skills/components.styles/README.md",
"chars": 384,
"preview": "# components.styles agent skill\n\nThis skill may be invoked by the user following the examples below.\n\n**Usage:** `/compo"
},
{
"path": ".claude/skills/components.styles/SKILL.md",
"chars": 14424,
"preview": "---\nname: components.styles\ndescription: Guidelines writing styles API (styles, classNames, and static classNames) for a"
},
{
"path": ".claude/skills/components.write-docs/README.md",
"chars": 341,
"preview": "# components.write-docs agent skill\n\nThis skill may be invoked by the user following the examples below.\n\n**Usage:** `/c"
},
{
"path": ".claude/skills/components.write-docs/SKILL.md",
"chars": 23903,
"preview": "---\nname: components.write-docs\ndescription: Guidelines for creating or updating documentation for a CDS component on th"
},
{
"path": ".claude/skills/deprecate-cds-api/SKILL.md",
"chars": 9177,
"preview": "---\nname: deprecate-cds-api\ndescription: |\n Deprecates a CDS component, hook, or other exported symbol with consistent "
},
{
"path": ".claude/skills/dev.cds-mobile/SKILL.md",
"chars": 5776,
"preview": "---\nname: dev.cds-mobile\ndescription: USE THIS when asked to work on a new or existing (MOBILE) CDS React component in p"
},
{
"path": ".claude/skills/dev.cds-web/SKILL.md",
"chars": 5971,
"preview": "---\nname: dev.cds-web\ndescription: USE THIS when asked to work on a new or existing (WEB) CDS React component in package"
},
{
"path": ".claude/skills/eslint-plugin-custom-rule/SKILL.md",
"chars": 2924,
"preview": "---\nname: eslint-plugin-custom-rule\ndescription: USE THIS when asked to create a new eslint plugin rule for the eslint-p"
},
{
"path": ".claude/skills/feature-planner/SKILL.md",
"chars": 10302,
"preview": "---\nname: feature-planner\ndescription: A guided workflow for non-technical contributors (designers, PMs) to describe a f"
},
{
"path": ".claude/skills/feature-planner/evals/evals.json",
"chars": 5480,
"preview": "{\n \"skill_name\": \"feature-planner\",\n \"evals\": [\n {\n \"id\": 1,\n \"prompt\": \"The user has invoked /feature-pl"
},
{
"path": ".claude/skills/figma.audit-connect/SKILL.md",
"chars": 4246,
"preview": "---\nname: figma.audit-connect\ndescription: Examines a Figma Code Connect mapping file and provides a report on the mappi"
},
{
"path": ".claude/skills/figma.connect-best-practices/SKILL.md",
"chars": 9100,
"preview": "---\nname: figma.connect-best-practices\ndescription: Guidelines for writing Figma Code Connect property mappings. Use thi"
},
{
"path": ".claude/skills/figma.create-connect/SKILL.md",
"chars": 2784,
"preview": "---\nname: figma.create-connect\ndescription: Creates a new Figma Code Connect mapping file for a CDS component\nmodel: cla"
},
{
"path": ".claude/skills/git.detect-breaking-changes/SKILL.md",
"chars": 6290,
"preview": "---\nname: git.detect-breaking-changes\ndescription: Analyzes the previous N commits for breaking changes across the CDS p"
},
{
"path": ".claude/skills/git.repo-manager/SKILL.md",
"chars": 1564,
"preview": "---\nname: git.repo-manager\ndescription: Instructions to manage a local cache of GitHub repositories. This would typicall"
},
{
"path": ".claude/skills/ktlo/SKILL.md",
"chars": 1559,
"preview": "---\nname: ktlo\ndescription: Instructions to fetch assigned Linear issues in the current cycle and potentially kick off a"
},
{
"path": ".claude/skills/research.component-libs/SKILL.md",
"chars": 2177,
"preview": "---\nname: research.component-libs\ndescription: Orchestrates a comprehensive research effort across multiple design syste"
},
{
"path": ".claude/skills/research.deprecation-usage/SKILL.md",
"chars": 4523,
"preview": "---\nname: research.deprecation-usage\ndescription: |\n Audits how often deprecated CDS exports are actively used in custo"
},
{
"path": ".codeflow.yml",
"chars": 5951,
"preview": "secure:\n required_reviews: 1\n codeowners_enabled: true\n # NOTE: Codeflow does not support glob patterns; long-lived s"
},
{
"path": ".cursor/mcp.json",
"chars": 195,
"preview": "{\n \"mcpServers\": {\n \"linear\": {\n \"url\": \"https://mcp.linear.app/mcp\",\n \"headers\": {}\n },\n \"Figma\": {"
},
{
"path": ".cursor/rules/nx-rules.mdc",
"chars": 1979,
"preview": "---\ndescription: \nglobs: \nalwaysApply: true\n---\n\n// This file is automatically generated by Nx Console\n\nYou are in an nx"
},
{
"path": ".cursor/worktrees.json",
"chars": 49,
"preview": "{\n \"setup-worktree\": [\n \"yarn install\"\n ]\n}\n"
},
{
"path": ".dockerignore",
"chars": 192,
"preview": "# These are files we don't want Docker to cache when pulling down container on subsequent runs\n**/*.Dockerfile\n**/.DS_St"
},
{
"path": ".dontdockerignore",
"chars": 99,
"preview": "# This is to prevent the codeflow builder from ignoring the .git folder at the root of the project\n"
},
{
"path": ".github/CODEOWNERS",
"chars": 113,
"preview": "#~ {\"path\":\"*\",\"teams\":{\"@coinbase/ui-systems-eng-team\":{\"required_reviews\":1}}}\n* @coinbase/ui-systems-eng-team\n"
},
{
"path": ".github/PULL_REQUEST_TEMPLATE.md",
"chars": 1264,
"preview": "<!-- Please ensure your pull request title adheres to our [PR Title Convention](https://github.com/coinbase/cds/blob/mas"
},
{
"path": ".github/actions/get-merge-base/action.yml",
"chars": 618,
"preview": "name: 'Get Merge Base SHA'\ndescription: 'Gets the merge-base SHA between the current branch and the target branch'\noutpu"
},
{
"path": ".github/actions/setup/action.yml",
"chars": 1750,
"preview": "name: Setup CDS\ndescription: Checkout code, setup cache and install yarn packages\ninputs:\n yarn-install:\n descriptio"
},
{
"path": ".github/labeler.yml",
"chars": 123,
"preview": "root:\n - changed-files:\n - any-glob-to-any-file: '*'\n\ndocs:\n - changed-files:\n - any-glob-to-any-file: docs/"
},
{
"path": ".github/workflows/ci.yml",
"chars": 12853,
"preview": "name: CI\n\non:\n workflow_dispatch: # Allow manual triggering to refresh cached baseline results\n push:\n branches:\n "
},
{
"path": ".github/workflows/debug-workflow.yml",
"chars": 1168,
"preview": "# HOW TO USE THIS WORKFLOW FOR BRANCH TESTING\n#\n# GitHub only shows workflow_dispatch workflows that exist on the defaul"
},
{
"path": ".github/workflows/figma.yml",
"chars": 5748,
"preview": "name: Figma Operations\n\npermissions:\n contents: read\n\non:\n workflow_dispatch:\n push:\n branches: master\n pull_requ"
},
{
"path": ".github/workflows/guard-debug-workflow.yml",
"chars": 1445,
"preview": "# HOW TO USE THIS WORKFLOW FOR BRANCH TESTING\n#\n# GitHub only shows workflow_dispatch workflows that exist on the defaul"
},
{
"path": ".github/workflows/illustrations-icons-checklist.yml",
"chars": 2288,
"preview": "name: Enforce illustrations/icons checklist\n\non:\n pull_request:\n types: [opened, edited, synchronize, reopened]\n\nper"
},
{
"path": ".github/workflows/pr.yml",
"chars": 978,
"preview": "name: PR\non:\n pull_request_target:\n branches: master\n\nconcurrency:\n group: PR-${{github.event.pull_request.number}}"
},
{
"path": ".github/workflows/publish.yml",
"chars": 17756,
"preview": "---\n# Publishes @coinbase/* packages to public npm registry (https://registry.npmjs.org).\nname: Publish Packages to NPM\n"
},
{
"path": ".github/workflows/slack-pull-request.yml",
"chars": 2119,
"preview": "# Notifies Slack when a PR is ready for review or merged (any base branch).\n# Gated by org variable SLACK_PR_NOTIFICATIO"
},
{
"path": ".github/workflows/visreg-mobile.yml",
"chars": 12840,
"preview": "name: Mobile Visreg\n\non:\n push:\n branches: [master]\n pull_request:\n types: [opened, synchronize, reopened, label"
},
{
"path": ".github/workflows/visreg-web.yml",
"chars": 2821,
"preview": "name: Visreg Web\non:\n push:\n branches: [master]\n pull_request:\n types: [opened, synchronize, reopened, labeled, "
},
{
"path": ".gitignore",
"chars": 2909,
"preview": "# Node stuff\nnode_modules\nyarn-debug.log*\nyarn-error.log*\ndist\ntemp\n\n# Local env variables\n.env.local\n\n# OS ignores\n.DS_"
},
{
"path": ".lasthash",
"chars": 40,
"preview": "1bf0ecf87f463fde6c6e8b6676fefad3de90cd23"
},
{
"path": ".mcp.json",
"chars": 341,
"preview": "{\n \"mcpServers\": {\n \"linear-server\": {\n \"type\": \"http\",\n \"url\": \"https://mcp.linear.app/mcp\"\n },\n \"f"
},
{
"path": ".nvmrc",
"chars": 3,
"preview": "22\n"
},
{
"path": ".nxignore",
"chars": 17,
"preview": ".claude/worktrees"
},
{
"path": ".percy.js",
"chars": 1853,
"preview": "module.exports = {\n version: 2,\n storybook: {\n // Useful for isolating Percy diffs when running from the command li"
},
{
"path": ".prettierignore",
"chars": 482,
"preview": ".yarnrc.yml\n\n.vscode/\n\n*.graphql\n**/persisted_queries.json\n**/__generated__\n\n# Builds\ndist/\nlib/\nesm/\ncjs/\ndts/\n.docusau"
},
{
"path": ".stylelintrc.cjs",
"chars": 1477,
"preview": "module.exports = {\n extends: ['stylelint-config-recommended'],\n // NOTE: autofix doesnt work properly due to linaria v"
},
{
"path": ".vscode/extensions.json",
"chars": 182,
"preview": "{\n \"recommendations\": [\n \"dbaeumer.vscode-eslint\",\n \"esbenp.prettier-vscode\",\n \"stylelint.vscode-stylelint\",\n "
},
{
"path": ".vscode/launch.json",
"chars": 1146,
"preview": "{\n // Use IntelliSense to learn about possible attributes.\n // Hover to view descriptions of existing attributes.\n //"
},
{
"path": ".vscode/settings.json",
"chars": 966,
"preview": "{\n // Prettier\n \"editor.defaultFormatter\": \"esbenp.prettier-vscode\",\n // use ⌘-K S to format without saving\n \"editor"
},
{
"path": ".vscode/tasks.json",
"chars": 898,
"preview": "// See https://go.microsoft.com/fwlink/?LinkId=733558\n// for the documentation about the tasks.json format\n{\n \"version\""
},
{
"path": ".watchmanconfig",
"chars": 3,
"preview": "{}\n"
},
{
"path": ".yarn/patches/@expo-cli-npm-0.18.29-f58906fdfb.patch",
"chars": 2923,
"preview": "diff --git a/build/src/start/platforms/android/AndroidAppIdResolver.js b/build/src/start/platforms/android/AndroidAppIdR"
},
{
"path": ".yarn/patches/@testing-library-user-event-npm-14.0.4-109d618170",
"chars": 379,
"preview": "diff --git a/package.json b/package.json\nindex c72fcb18c1b5278f999eff57de4013c8db5054f6..42e6148b1eb21e09f696d7654d8754a"
},
{
"path": ".yarn/patches/depcheck-npm-1.4.7-d4cc813cc3.patch",
"chars": 725,
"preview": "diff --git a/dist/check.js b/dist/check.js\nindex 2d506595069bb495af834ce2e9985330ef44ecae..01f4f43433bd080850bcc19090c2c"
},
{
"path": ".yarn/patches/expo-dev-launcher-npm-4.0.27-c2ab5dd4a5.patch",
"chars": 1060,
"preview": "diff --git a/expo-dev-launcher-gradle-plugin/src/main/kotlin/expo/modules/devlauncher/DevLauncherPlugin.kt b/expo-dev-la"
},
{
"path": ".yarn/patches/expo-splash-screen-npm-0.27.5-f91e0b41df.patch",
"chars": 4940,
"preview": "diff --git a/android/src/main/java/expo/modules/splashscreen/SplashScreenView.kt b/android/src/main/java/expo/modules/sp"
},
{
"path": ".yarn/patches/framer-motion-npm-10.18.0-ae9ea02138",
"chars": 733,
"preview": "diff --git a/dist/index.d.ts b/dist/index.d.ts\nindex 08c3e4ed24c1ed97875ad031a01546a960ddabff..3fe7df962e7630fc6eead1272"
},
{
"path": ".yarn/patches/glob-npm-7.1.6-minimatch10-symbol.patch",
"chars": 1514,
"preview": "diff --git a/sync.js b/sync.js\n--- a/sync.js\n+++ b/sync.js\n@@ -18,6 +18,10 @@ var ownProp = common.ownProp\n var children"
},
{
"path": ".yarn/patches/react-native-gesture-handler-npm-2.16.2-c16529326b.patch",
"chars": 3265,
"preview": "diff --git a/src/handlers/gestures/GestureDetector.tsx b/src/handlers/gestures/GestureDetector.tsx\nindex 45d927c230a86a7"
},
{
"path": ".yarn/patches/react-native-navigation-bar-color-npm-2.0.2-9a2ea3aaf6.patch",
"chars": 519,
"preview": "diff --git a/src/index.js b/src/index.js\nindex eeab32f8d27662b4e26751ac897e03c8ba04a5df..d4d8a2c30012dbf8a742f952a18105c"
},
{
"path": ".yarn/patches/react-native-npm-0.74.5-db5164f47b.patch",
"chars": 1650,
"preview": "diff --git a/React/Views/RCTModalHostViewManager.m b/React/Views/RCTModalHostViewManager.m\nindex b0295e05ae4d54091bd80f7"
},
{
"path": ".yarn/releases/yarn-4.9.2.cjs",
"chars": 3004991,
"preview": "#!/usr/bin/env node\n/* eslint-disable */\n//prettier-ignore\n(()=>{var UVe=Object.create;var E_=Object.defineProperty;var "
},
{
"path": ".yarnrc.yml",
"chars": 90,
"preview": "enableTelemetry: false\n\nnodeLinker: node-modules\n\nyarnPath: .yarn/releases/yarn-4.9.2.cjs\n"
},
{
"path": "AGENTS.md",
"chars": 4532,
"preview": "## Overview\n\nThis is the Coinbase Design System (CDS) - a cross-platform React component library.\nPrimary language: Type"
},
{
"path": "CLAUDE.md",
"chars": 10,
"preview": "@AGENTS.md"
},
{
"path": "CONTRIBUTING.md",
"chars": 3617,
"preview": "# Contributing to CDS\n\nThank you for your interest in contributing to the Coinbase Design System! While we are not activ"
},
{
"path": "LICENSE",
"chars": 565,
"preview": "Apache-2.0 License\n\nCopyright 2026 Coinbase\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not"
},
{
"path": "README.md",
"chars": 1710,
"preview": "# Coinbase Design System\n\n<p align=\"center\">\n <img src=\"apps/docs/static/img/docusaurus-social-card.jpg\" alt=\"Coinbase "
},
{
"path": "SECURITY.md",
"chars": 238,
"preview": "# Security Policy\n\nThe Coinbase team takes security seriously. Please do not file a public ticket discussing a potential"
},
{
"path": "apps/docs/.stylelintrc.json",
"chars": 42,
"preview": "{\n \"extends\": \"../../.stylelintrc.cjs\"\n}\n"
},
{
"path": "apps/docs/ai-doc-generator/concatenate-docs.cjs",
"chars": 7374,
"preview": "/**\n * Concatenate all generated LLM docs into single comprehensive files\n *\n * Usage: node concatenate-docs.cjs [output"
},
{
"path": "apps/docs/ai-doc-generator/generate-site-directory.cjs",
"chars": 7418,
"preview": "/**\n * Generate a directory file with links to the live CDS docs site\n *\n * Usage: node generate-site-directory.cjs [out"
},
{
"path": "apps/docs/ai-doc-generator/generateDoc.cjs",
"chars": 11098,
"preview": "const fs = require('node:fs');\nconst path = require('node:path');\n\n/**\n * Helper to process MDX content for LLM consumpt"
},
{
"path": "apps/docs/ai-doc-generator/generateRoutesContent.cjs",
"chars": 4182,
"preview": "const { globSync } = require('glob');\nconst path = require('path');\nconst { generateDoc } = require('./generateDoc.cjs')"
},
{
"path": "apps/docs/ai-doc-generator/generateRoutesDoc.cjs",
"chars": 746,
"preview": "const { writeFileSync } = require('node:fs');\nconst path = require('node:path');\n\n/**\n * @param {Array<{ name: string, r"
},
{
"path": "apps/docs/ai-doc-generator/generator.cjs",
"chars": 5184,
"preview": "/**\n * 1. Fetch all the relevant mdx filepaths\n * 2. Understand the mobile/web breakdown\n * 3. Generate concatenated res"
},
{
"path": "apps/docs/ai-doc-generator/resolveDoc.cjs",
"chars": 1959,
"preview": "const fs = require('fs');\nconst path = require('path');\nconst { globSync } = require('glob');\nconst { generateDoc } = re"
},
{
"path": "apps/docs/ai-doc-generator/validate.cjs",
"chars": 4565,
"preview": "const fs = require('fs');\nconst path = require('path');\nconst { globSync } = require('glob');\n\nconst PLATFORMS = ['web',"
},
{
"path": "apps/docs/babel.config.cjs",
"chars": 276,
"preview": "const docusaurusPreset = require('@docusaurus/core/lib/babel/preset');\n\nconst isTestEnv = process.env.NODE_ENV === 'test"
},
{
"path": "apps/docs/blog/authors.yml",
"chars": 134,
"preview": "cody:\n name: Cody Nova\n title: UI Systems Tech Lead\n url: https://github.com/codynova\n image_url: https://github.com"
},
{
"path": "apps/docs/blog/introducing-cds.mdx",
"chars": 269,
"preview": "---\ntitle: Introducing CDS\nslug: introducing-cds\nauthors: cody\nhide_table_of_contents: true\n---\n\nimport { Box } from '@c"
},
{
"path": "apps/docs/blog/tags.yml",
"chars": 344,
"preview": "facebook:\n label: Facebook\n permalink: /facebook\n description: Facebook tag description\nhello:\n label: Hello\n perma"
},
{
"path": "apps/docs/development.Dockerfile",
"chars": 433,
"preview": "FROM 652969937640.dkr.ecr.us-east-1.amazonaws.com/containers/node:v22-ub22\n\nRUN apt-get update && apt-get install -y zip"
},
{
"path": "apps/docs/docgen.config.js",
"chars": 5994,
"preview": "const path = require('path');\nconst onProcessDoc = require('./src/utils/onProcessDocgen');\n\n/**\n * Pull in docgen data t"
},
{
"path": "apps/docs/docs/components/animation/Lottie/_mobileExamples.mdx",
"chars": 728,
"preview": "High-quality illustration animations powered by [Lottie](https://airbnb.design/lottie/).\n\n### Basic usage\n\n```jsx\nfuncti"
},
{
"path": "apps/docs/docs/components/animation/Lottie/_mobilePropsTable.mdx",
"chars": 420,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\nimport mobilePropsData from ':docgen/mo"
},
{
"path": "apps/docs/docs/components/animation/Lottie/_webExamples.mdx",
"chars": 910,
"preview": "High-quality illustration animations powered by [Lottie](https://airbnb.design/lottie/).\n\n### Basic usage\n\n```jsx live\nf"
},
{
"path": "apps/docs/docs/components/animation/Lottie/_webPropsTable.mdx",
"chars": 411,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\nimport webPropsData from ':docgen/web/a"
},
{
"path": "apps/docs/docs/components/animation/Lottie/index.mdx",
"chars": 1364,
"preview": "---\nid: lottie\ntitle: Lottie\nplatform_switcher_options: { web: true, mobile: true }\nhide_title: true\n---\n\nimport { VStac"
},
{
"path": "apps/docs/docs/components/animation/Lottie/mobileMetadata.json",
"chars": 487,
"preview": "{\n \"import\": \"import { Lottie } from '@coinbase/cds-mobile/animation/Lottie'\",\n \"source\": \"https://github.com/coinbase"
},
{
"path": "apps/docs/docs/components/animation/Lottie/webMetadata.json",
"chars": 496,
"preview": "{\n \"import\": \"import { Lottie } from '@coinbase/cds-web/animation/Lottie'\",\n \"source\": \"https://github.com/coinbase/cd"
},
{
"path": "apps/docs/docs/components/animation/LottieStatusAnimation/_mobileExamples.mdx",
"chars": 922,
"preview": "The LottieStatusAnimation component for mobile provides the same status animation functionality as the web version, opti"
},
{
"path": "apps/docs/docs/components/animation/LottieStatusAnimation/_mobilePropsTable.mdx",
"chars": 435,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\nimport mobilePropsData from ':docgen/mo"
},
{
"path": "apps/docs/docs/components/animation/LottieStatusAnimation/_webExamples.mdx",
"chars": 1263,
"preview": "The LottieStatusAnimation component is specifically designed for displaying trade status animations. It provides a seaml"
},
{
"path": "apps/docs/docs/components/animation/LottieStatusAnimation/_webPropsTable.mdx",
"chars": 426,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\nimport webPropsData from ':docgen/web/a"
},
{
"path": "apps/docs/docs/components/animation/LottieStatusAnimation/index.mdx",
"chars": 1368,
"preview": "---\nid: lottie-status-animation\ntitle: LottieStatusAnimation\nplatform_switcher_options: { web: true, mobile: true }\nhide"
},
{
"path": "apps/docs/docs/components/animation/LottieStatusAnimation/mobileMetadata.json",
"chars": 521,
"preview": "{\n \"import\": \"import { LottieStatusAnimation } from '@coinbase/cds-mobile/animation/LottieStatusAnimation'\",\n \"source\""
},
{
"path": "apps/docs/docs/components/animation/LottieStatusAnimation/webMetadata.json",
"chars": 545,
"preview": "{\n \"import\": \"import { LottieStatusAnimation } from '@coinbase/cds-web/animation/LottieStatusAnimation'\",\n \"source\": \""
},
{
"path": "apps/docs/docs/components/cards/ContainedAssetCard/_mobileExamples.mdx",
"chars": 2360,
"preview": "### Basic example\n\nMost common Contained Asset Card. Use for showing individual cryptocurrency assets, balances, earning"
},
{
"path": "apps/docs/docs/components/cards/ContainedAssetCard/_mobilePropsTable.mdx",
"chars": 429,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport mobilePropsData from ':docgen/m"
},
{
"path": "apps/docs/docs/components/cards/ContainedAssetCard/_webExamples.mdx",
"chars": 2507,
"preview": "### Basic example\n\nMost common Contained Asset Card. Use for showing individual cryptocurrency assets, balances, earning"
},
{
"path": "apps/docs/docs/components/cards/ContainedAssetCard/_webPropsTable.mdx",
"chars": 420,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport webPropsData from ':docgen/web/"
},
{
"path": "apps/docs/docs/components/cards/ContainedAssetCard/index.mdx",
"chars": 1427,
"preview": "---\nid: containedAssetCard\ntitle: ContainedAssetCard\nplatform_switcher_options: { web: true, mobile: true }\nhide_title: "
},
{
"path": "apps/docs/docs/components/cards/ContainedAssetCard/mobileMetadata.json",
"chars": 705,
"preview": "{\n \"import\": \"import { ContainedAssetCard } from '@coinbase/cds-mobile/cards/ContainedAssetCard'\",\n \"source\": \"https:/"
},
{
"path": "apps/docs/docs/components/cards/ContainedAssetCard/webMetadata.json",
"chars": 738,
"preview": "{\n \"import\": \"import { ContainedAssetCard } from '@coinbase/cds-web/cards/ContainedAssetCard'\",\n \"source\": \"https://gi"
},
{
"path": "apps/docs/docs/components/cards/ContentCard/_mobileExamples.mdx",
"chars": 9992,
"preview": "ContentCard is a flexible, composable card component built with `ContentCardHeader`, `ContentCardBody`, and `ContentCard"
},
{
"path": "apps/docs/docs/components/cards/ContentCard/_mobilePropsTable.mdx",
"chars": 434,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport mobilePropsData from ':docgen/m"
},
{
"path": "apps/docs/docs/components/cards/ContentCard/_mobileStyles.mdx",
"chars": 538,
"preview": "import { ComponentStylesTable } from '@site/src/components/page/ComponentStylesTable';\n\nimport mobileHeaderStylesData fr"
},
{
"path": "apps/docs/docs/components/cards/ContentCard/_webExamples.mdx",
"chars": 11448,
"preview": "ContentCard is a flexible, composable card component built with `ContentCardHeader`, `ContentCardBody`, and `ContentCard"
},
{
"path": "apps/docs/docs/components/cards/ContentCard/_webPropsTable.mdx",
"chars": 425,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport webPropsData from ':docgen/web/"
},
{
"path": "apps/docs/docs/components/cards/ContentCard/_webStyles.mdx",
"chars": 2719,
"preview": "import { ComponentStylesTable } from '@site/src/components/page/ComponentStylesTable';\nimport { StylesExplorer } from '@"
},
{
"path": "apps/docs/docs/components/cards/ContentCard/index.mdx",
"chars": 1600,
"preview": "---\nid: contentCard\ntitle: ContentCard\nplatform_switcher_options: { web: true, mobile: true }\nhide_title: true\n---\n\nimpo"
},
{
"path": "apps/docs/docs/components/cards/ContentCard/mobileMetadata.json",
"chars": 1082,
"preview": "{\n \"import\": \"import { ContentCard } from '@coinbase/cds-mobile/cards/ContentCard'\",\n \"source\": \"https://github.com/co"
},
{
"path": "apps/docs/docs/components/cards/ContentCard/webMetadata.json",
"chars": 850,
"preview": "{\n \"import\": \"import { ContentCard } from '@coinbase/cds-web/cards/ContentCard'\",\n \"source\": \"https://github.com/coinb"
},
{
"path": "apps/docs/docs/components/cards/ContentCardBody/_mobileExamples.mdx",
"chars": 3285,
"preview": "### Basic Example\n\n```jsx\nfunction Example() {\n const { spectrum } = useTheme();\n\n return (\n <VStack bordered borde"
},
{
"path": "apps/docs/docs/components/cards/ContentCardBody/_mobilePropsTable.mdx",
"chars": 438,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport mobilePropsData from ':docgen/m"
},
{
"path": "apps/docs/docs/components/cards/ContentCardBody/_webExamples.mdx",
"chars": 2582,
"preview": "### Basic Example\n\n```jsx live\n<VStack bordered borderRadius=\"400\" maxWidth={375} padding={2}>\n <ContentCardBody\n ti"
},
{
"path": "apps/docs/docs/components/cards/ContentCardBody/_webPropsTable.mdx",
"chars": 429,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport webPropsData from ':docgen/web/"
},
{
"path": "apps/docs/docs/components/cards/ContentCardBody/index.mdx",
"chars": 1355,
"preview": "---\nid: contentCardBody\ntitle: ContentCardBody\nplatform_switcher_options: { web: true, mobile: true }\nhide_title: true\n-"
},
{
"path": "apps/docs/docs/components/cards/ContentCardBody/mobileMetadata.json",
"chars": 598,
"preview": "{\n \"import\": \"import { ContentCardBody } from '@coinbase/cds-mobile/cards/ContentCard'\",\n \"source\": \"https://github.co"
},
{
"path": "apps/docs/docs/components/cards/ContentCardBody/webMetadata.json",
"chars": 643,
"preview": "{\n \"import\": \"import { ContentCardBody } from '@coinbase/cds-web/cards/ContentCard'\",\n \"source\": \"https://github.com/c"
},
{
"path": "apps/docs/docs/components/cards/ContentCardFooter/_mobileExamples.mdx",
"chars": 1907,
"preview": "### With Icon Counter Buttons\n\n```jsx\nfunction Example() {\n return (\n <VStack bordered borderRadius=\"400\" maxWidth={"
},
{
"path": "apps/docs/docs/components/cards/ContentCardFooter/_mobilePropsTable.mdx",
"chars": 440,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport mobilePropsData from ':docgen/m"
},
{
"path": "apps/docs/docs/components/cards/ContentCardFooter/_webExamples.mdx",
"chars": 2148,
"preview": ":::note Semantic HTML\nContentCardFooter renders as a `<footer>` element by default. You can override this using the `as`"
},
{
"path": "apps/docs/docs/components/cards/ContentCardFooter/_webPropsTable.mdx",
"chars": 431,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport webPropsData from ':docgen/web/"
},
{
"path": "apps/docs/docs/components/cards/ContentCardFooter/index.mdx",
"chars": 1365,
"preview": "---\nid: contentCardFooter\ntitle: ContentCardFooter\nplatform_switcher_options: { web: true, mobile: true }\nhide_title: tr"
},
{
"path": "apps/docs/docs/components/cards/ContentCardFooter/mobileMetadata.json",
"chars": 655,
"preview": "{\n \"import\": \"import { ContentCardFooter } from '@coinbase/cds-mobile/cards/ContentCard'\",\n \"source\": \"https://github."
},
{
"path": "apps/docs/docs/components/cards/ContentCardFooter/webMetadata.json",
"chars": 636,
"preview": "{\n \"import\": \"import { ContentCardFooter } from '@coinbase/cds-web/cards/ContentCard'\",\n \"source\": \"https://github.com"
},
{
"path": "apps/docs/docs/components/cards/ContentCardHeader/_mobileExamples.mdx",
"chars": 1748,
"preview": "### Basic Example\n\n```jsx\nfunction Example() {\n return (\n <VStack bordered borderRadius=\"400\" maxWidth={375} padding"
},
{
"path": "apps/docs/docs/components/cards/ContentCardHeader/_mobilePropsTable.mdx",
"chars": 440,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport mobilePropsData from ':docgen/m"
},
{
"path": "apps/docs/docs/components/cards/ContentCardHeader/_webExamples.mdx",
"chars": 1900,
"preview": ":::note Semantic HTML\nContentCardHeader renders as a `<header>` element by default. You can override this using the `as`"
},
{
"path": "apps/docs/docs/components/cards/ContentCardHeader/_webPropsTable.mdx",
"chars": 431,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport webPropsData from ':docgen/web/"
},
{
"path": "apps/docs/docs/components/cards/ContentCardHeader/index.mdx",
"chars": 1365,
"preview": "---\nid: contentCardHeader\ntitle: ContentCardHeader\nplatform_switcher_options: { web: true, mobile: true }\nhide_title: tr"
},
{
"path": "apps/docs/docs/components/cards/ContentCardHeader/mobileMetadata.json",
"chars": 644,
"preview": "{\n \"import\": \"import { ContentCardHeader } from '@coinbase/cds-mobile/cards/ContentCard'\",\n \"source\": \"https://github."
},
{
"path": "apps/docs/docs/components/cards/ContentCardHeader/webMetadata.json",
"chars": 636,
"preview": "{\n \"import\": \"import { ContentCardHeader } from '@coinbase/cds-web/cards/ContentCard'\",\n \"source\": \"https://github.com"
},
{
"path": "apps/docs/docs/components/cards/DataCard/_mobileExamples.mdx",
"chars": 17514,
"preview": "DataCard is a flexible card component for displaying data with visualizations. It provides a structured layout for thumb"
},
{
"path": "apps/docs/docs/components/cards/DataCard/_mobilePropsTable.mdx",
"chars": 428,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\nimport mobilePropsData from ':docgen/mo"
},
{
"path": "apps/docs/docs/components/cards/DataCard/_mobileStyles.mdx",
"chars": 263,
"preview": "import { ComponentStylesTable } from '@site/src/components/page/ComponentStylesTable';\n\nimport mobileStylesData from ':d"
},
{
"path": "apps/docs/docs/components/cards/DataCard/_webExamples.mdx",
"chars": 21388,
"preview": "DataCard is a flexible card component for displaying data with visualizations. It provides a structured layout for thumb"
},
{
"path": "apps/docs/docs/components/cards/DataCard/_webPropsTable.mdx",
"chars": 419,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\nimport webPropsData from ':docgen/web/a"
},
{
"path": "apps/docs/docs/components/cards/DataCard/_webStyles.mdx",
"chars": 2591,
"preview": "import { ComponentStylesTable } from '@site/src/components/page/ComponentStylesTable';\nimport { StylesExplorer } from '@"
},
{
"path": "apps/docs/docs/components/cards/DataCard/index.mdx",
"chars": 1578,
"preview": "---\nid: dataCard\ntitle: DataCard\nplatform_switcher_options: { web: true, mobile: true }\nhide_title: true\n---\n\nimport { V"
},
{
"path": "apps/docs/docs/components/cards/DataCard/mobileMetadata.json",
"chars": 1130,
"preview": "{\n \"import\": \"import { DataCard } from '@coinbase/cds-mobile/alpha/data-card'\",\n \"source\": \"https://github.com/coinbas"
},
{
"path": "apps/docs/docs/components/cards/DataCard/webMetadata.json",
"chars": 1232,
"preview": "{\n \"import\": \"import { DataCard } from '@coinbase/cds-web/alpha/data-card'\",\n \"source\": \"https://github.com/coinbase/c"
},
{
"path": "apps/docs/docs/components/cards/FloatingAssetCard/_mobileExamples.mdx",
"chars": 2808,
"preview": "### Default\n\nMost common composition for displaying individual assets like NFTs or dApps.\n\n```jsx\nfunction Example() {\n "
},
{
"path": "apps/docs/docs/components/cards/FloatingAssetCard/_mobilePropsTable.mdx",
"chars": 428,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport mobilePropsData from ':docgen/m"
},
{
"path": "apps/docs/docs/components/cards/FloatingAssetCard/_webExamples.mdx",
"chars": 2844,
"preview": "### Default\n\nMost common composition for displaying individual assets like NFTs or dApps.\n\n```jsx live\nfunction Example("
},
{
"path": "apps/docs/docs/components/cards/FloatingAssetCard/_webPropsTable.mdx",
"chars": 419,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport webPropsData from ':docgen/web/"
},
{
"path": "apps/docs/docs/components/cards/FloatingAssetCard/index.mdx",
"chars": 1420,
"preview": "---\nid: floatingAssetCard\ntitle: FloatingAssetCard\nplatform_switcher_options: { web: true, mobile: true }\nhide_title: tr"
},
{
"path": "apps/docs/docs/components/cards/FloatingAssetCard/mobileMetadata.json",
"chars": 879,
"preview": "{\n \"import\": \"import { FloatingAssetCard } from '@coinbase/cds-mobile/cards/FloatingAssetCard'\",\n \"source\": \"https://g"
},
{
"path": "apps/docs/docs/components/cards/FloatingAssetCard/webMetadata.json",
"chars": 911,
"preview": "{\n \"import\": \"import { FloatingAssetCard } from '@coinbase/cds-web/cards/FloatingAssetCard'\",\n \"source\": \"https://gith"
},
{
"path": "apps/docs/docs/components/cards/MediaCard/_mobileExamples.mdx",
"chars": 9368,
"preview": "MediaCard provides a contained card layout with optional media, ideal for showcasing assets, products, or promotional co"
},
{
"path": "apps/docs/docs/components/cards/MediaCard/_mobilePropsTable.mdx",
"chars": 425,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\nimport mobilePropsData from ':docgen/mo"
},
{
"path": "apps/docs/docs/components/cards/MediaCard/_mobileStyles.mdx",
"chars": 261,
"preview": "import { ComponentStylesTable } from '@site/src/components/page/ComponentStylesTable';\n\nimport mobileStylesData from ':d"
},
{
"path": "apps/docs/docs/components/cards/MediaCard/_webExamples.mdx",
"chars": 10678,
"preview": "MediaCard provides a contained card layout with optional media, ideal for showcasing assets, products, or promotional co"
},
{
"path": "apps/docs/docs/components/cards/MediaCard/_webPropsTable.mdx",
"chars": 416,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\nimport webPropsData from ':docgen/web/c"
},
{
"path": "apps/docs/docs/components/cards/MediaCard/_webStyles.mdx",
"chars": 1075,
"preview": "import { ComponentStylesTable } from '@site/src/components/page/ComponentStylesTable';\nimport { StylesExplorer } from '@"
},
{
"path": "apps/docs/docs/components/cards/MediaCard/index.mdx",
"chars": 1575,
"preview": "---\nid: mediaCard\ntitle: MediaCard\nplatform_switcher_options: { web: true, mobile: true }\nhide_title: true\n---\n\nimport {"
},
{
"path": "apps/docs/docs/components/cards/MediaCard/mobileMetadata.json",
"chars": 861,
"preview": "{\n \"import\": \"import { MediaCard } from '@coinbase/cds-mobile/cards/MediaCard'\",\n \"source\": \"https://github.com/coinba"
},
{
"path": "apps/docs/docs/components/cards/MediaCard/webMetadata.json",
"chars": 955,
"preview": "{\n \"import\": \"import { MediaCard } from '@coinbase/cds-web/cards/MediaCard'\",\n \"source\": \"https://github.com/coinbase/"
},
{
"path": "apps/docs/docs/components/cards/MessagingCard/_mobileExamples.mdx",
"chars": 25534,
"preview": "MessagingCard provides two card types for promotional and informational content.\n\n:::info Migrating from NudgeCard or Up"
},
{
"path": "apps/docs/docs/components/cards/MessagingCard/_mobilePropsTable.mdx",
"chars": 429,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\nimport mobilePropsData from ':docgen/mo"
},
{
"path": "apps/docs/docs/components/cards/MessagingCard/_mobileStyles.mdx",
"chars": 269,
"preview": "import { ComponentStylesTable } from '@site/src/components/page/ComponentStylesTable';\n\nimport mobileStylesData from ':d"
},
{
"path": "apps/docs/docs/components/cards/MessagingCard/_webExamples.mdx",
"chars": 25596,
"preview": "MessagingCard provides two card types for promotional and informational content.\n\n:::info Migrating from NudgeCard or Up"
},
{
"path": "apps/docs/docs/components/cards/MessagingCard/_webPropsTable.mdx",
"chars": 420,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\nimport webPropsData from ':docgen/web/c"
},
{
"path": "apps/docs/docs/components/cards/MessagingCard/_webStyles.mdx",
"chars": 1015,
"preview": "import { ComponentStylesTable } from '@site/src/components/page/ComponentStylesTable';\nimport { StylesExplorer } from '@"
},
{
"path": "apps/docs/docs/components/cards/MessagingCard/index.mdx",
"chars": 1609,
"preview": "---\nid: messagingCard\ntitle: MessagingCard\nplatform_switcher_options: { web: true, mobile: true }\nhide_title: true\n---\n\n"
},
{
"path": "apps/docs/docs/components/cards/MessagingCard/mobileMetadata.json",
"chars": 927,
"preview": "{\n \"import\": \"import { MessagingCard } from '@coinbase/cds-mobile/cards/MessagingCard'\",\n \"source\": \"https://github.co"
},
{
"path": "apps/docs/docs/components/cards/MessagingCard/webMetadata.json",
"chars": 1031,
"preview": "{\n \"import\": \"import { MessagingCard } from '@coinbase/cds-web/cards/MessagingCard'\",\n \"source\": \"https://github.com/c"
},
{
"path": "apps/docs/docs/components/cards/NudgeCard/_mobileExamples.mdx",
"chars": 1309,
"preview": "### with Transparent Button\n\nUse if the nudge card's purpose is to provide a gentle reminder or a secondary option. Tran"
},
{
"path": "apps/docs/docs/components/cards/NudgeCard/_mobilePropsTable.mdx",
"chars": 420,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport mobilePropsData from ':docgen/m"
},
{
"path": "apps/docs/docs/components/cards/NudgeCard/_webExamples.mdx",
"chars": 1319,
"preview": "### with Transparent Button\n\nUse if the nudge card's purpose is to provide a gentle reminder or a secondary option. Tran"
},
{
"path": "apps/docs/docs/components/cards/NudgeCard/_webPropsTable.mdx",
"chars": 411,
"preview": "import ComponentPropsTable from '@site/src/components/page/ComponentPropsTable';\n\nimport webPropsData from ':docgen/web/"
},
{
"path": "apps/docs/docs/components/cards/NudgeCard/index.mdx",
"chars": 1350,
"preview": "---\nid: nudgeCard\ntitle: NudgeCard\nplatform_switcher_options: { web: true, mobile: true }\nhide_title: true\n---\n\nimport {"
},
{
"path": "apps/docs/docs/components/cards/NudgeCard/mobileMetadata.json",
"chars": 896,
"preview": "{\n \"import\": \"import { NudgeCard } from '@coinbase/cds-mobile/cards/NudgeCard'\",\n \"source\": \"https://github.com/coinba"
},
{
"path": "apps/docs/docs/components/cards/NudgeCard/webMetadata.json",
"chars": 947,
"preview": "{\n \"import\": \"import { NudgeCard } from '@coinbase/cds-web/cards/NudgeCard'\",\n \"source\": \"https://github.com/coinbase/"
},
{
"path": "apps/docs/docs/components/cards/UpsellCard/_mobileExamples.mdx",
"chars": 8948,
"preview": "### General Upsell\n\nUtilize our Primary Wash Upsell for general information and non-urgent promotions. Its versatile des"
}
]
// ... and 10388 more files (download for full content)
About this extraction
This page contains the full source code of the coinbase/cds GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 10588 files (60.8 MB), approximately 10.9M tokens, and a symbol index with 10069 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.