{
  "schemaVersion": "2",
  "aurum": {
    "library": "aurum-ios",
    "version": "0.2.3",
    "sha": "",
    "platforms": [
      "ios"
    ]
  },
  "meta": {
    "generatedAt": "2026-07-30T08:16:25+00:00",
    "figmaFileKey": "YvIxqu2oTlM6UnkL0OloHc",
    "galleryUrl": "https://changejarapp.github.io/aurum-ios/",
    "manifestSha": "010b0c1063ef4154d9c8d79b7c99bb91282142f6b0e3b8d63134623d8b917018"
  },
  "components": [
    {
      "name": "AurumButton",
      "family": "button",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's primary button component — the SwiftUI port of aurum-android's `AurumButton`.",
      "kdoc": "Aurum's primary button component — the SwiftUI port of aurum-android's\n`AurumButton`.\n\nA custom primitive (`Button` + a private `ButtonStyle` for\n`configuration.isPressed`) — not a restyled system button — so every\nstate matches the Figma component exactly and bespoke interactions\n(the dimensional hard-shadow press) are unconstrained. Features consume\nthis view for any button.\n\nThree visual `variant` variants (`AurumButtonVariant`) and three `size`\nvariants (`AurumButtonSize`) are supported. Optional `leading` and\n`trailing` slots accept icon views for icon-and-label buttons; slot\ncontent picks up the button's foreground via `\\.aurumContentColor`.\n\nPlatform notes vs Android: the ripple's place is taken by a 12%\ncontent-colour press overlay (except the dimensional full-width primary,\nwhose press cue is purely the shadow drop + 2 pt sink); the minimum\ntouch target reserves 44 pt (HIG) rather than Android's 48 dp.",
      "previews": [
        "Primary",
        "Secondary + Tertiary",
        "Sizes",
        "Progress"
      ],
      "figmaNodeId": "4692:1074",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4692-1074",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4692-1074",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumButton.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/button/AurumButton.html",
      "sourcePath": "Sources/Aurum/Component/Button/AurumButton.swift",
      "intendedUse": "Use when the user is performing a deliberate, named action (submit, confirm, continue, retry). One `.primary` per surface — pair Primary with Secondary or Tertiary for additional actions.",
      "usage": {
        "do": [
          "Use one `.primary` per screen for the dominant CTA.",
          "Choose `.medium` as the default; `.large` only for full-width hero CTAs; `.small` for inline / compact rows.",
          "Set `isLoading: true` synchronously when the action starts a network round-trip — don't render a separate spinner alongside.",
          "Drive `progress` from a countdown for an auto-advancing CTA — the fill mirrors the time left before the action fires on its own."
        ],
        "dont": [
          "Stack two `.primary` buttons next to each other — pair Primary with Secondary.",
          "Use a button to navigate without a side-effect; use a plain tap target instead.",
          "Apply `.frame(maxWidth: .infinity)` yourself — use `isFullWidth: true` so the Aurum padding / touch-target rules apply."
        ]
      }
    },
    {
      "name": "AurumIconButton",
      "family": "button",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's icon-only button primitive.",
      "kdoc": "Aurum's icon-only button primitive. The SwiftUI port of aurum-android's\n`AurumIconButton`.\n\nGuarantees a 44 pt minimum touch target (the HIG floor; Android's M3\nwrapper reserves 48 dp) even when the visible glyph is smaller. The\n`content` slot typically renders an `AurumIcon`; the caller controls the\nicon size and tint via `AurumIcon`'s parameters. Pressed dims the glyph —\nthe analogue of M3's ripple for an icon-only affordance.",
      "previews": [
        "AurumIconButton"
      ],
      "figmaNodeId": null,
      "figmaUrl": null,
      "figmaTagUrl": null,
      "codeConnectPath": null,
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/button/AurumIconButton.html",
      "sourcePath": "Sources/Aurum/Component/Button/AurumIconButton.swift",
      "intendedUse": "Use as a top-bar action affordance, dense list-row trailing action, or any spot where a labelled button would crowd the layout. The 44 pt touch target is maintained even when the visible glyph is smaller. For label-bearing actions reach for `AurumButton`; for low-emphasis text actions use `AurumLinkButton`.",
      "usage": {
        "do": [
          "Provide an explicit `accessibilityLabel` on the inner `AurumIcon` — icon-only buttons fail accessibility audits without one.",
          "Use as the trailing-icon slot inside headers / list rows where space is constrained.",
          "Pick monosemic icons (close, more, edit) — never decorative ones whose meaning shifts by context."
        ],
        "dont": [
          "Use as the screen's primary CTA — icon-only buttons read as utility, not commitment; use `AurumButton` for that.",
          "Cluster more than 2 `AurumIconButton`s in a row without grouping under an overflow affordance — three is overflow territory.",
          "Rely on an automatic disabled wash — tint the inner `AurumIcon` with the disabled colour yourself (matches Android's preview convention)."
        ]
      }
    },
    {
      "name": "AurumLinkButton",
      "family": "button",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's link button — a text-only button with no background or border.",
      "kdoc": "Aurum's link button — a text-only button with no background or border.\nThe SwiftUI port of aurum-android's `AurumLinkButton`.\n\nPer the Figma spec this is a separate component from `AurumButton`:\nbrand-purple bold text with no fill or outline, fixed 56 pt height.\nPressed dims the label to the subtle brand colour (Android's pressed\nstate); there is no other press feedback, matching Android's\n`indication = null`.",
      "previews": [
        "AurumLinkButton"
      ],
      "figmaNodeId": "4784:1286",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4784-1286",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4784-1286",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumLinkButton.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/button/AurumLinkButton.html",
      "sourcePath": "Sources/Aurum/Component/Button/AurumLinkButton.swift",
      "intendedUse": "Use for low-emphasis inline actions next to body copy (\"Skip\", \"Read more\", \"Resend OTP\", \"Forgot password?\"). The lack of fill / outline makes it read as text — not as a CTA — so users feel free to ignore it. For deliberate commitment actions (submit, confirm, continue) reach for `AurumButton`.",
      "usage": {
        "do": [
          "Pair with longer prose context — \"Already have an account? Sign in\" reads naturally; a bare standalone link button looks orphaned.",
          "Reserve for navigational + secondary actions — \"Forgot password?\", \"Resend code\", \"Learn more\".",
          "Place inline with the surrounding paragraph copy at the same baseline; don't right-align it as a fake CTA."
        ],
        "dont": [
          "Use as the form-submit button — that's `AurumButton` with `.primary`; users won't perceive the link as a commitment.",
          "Stack two link buttons in the same row — they read as a list of links, losing the \"single low-emphasis action\" intent.",
          "Render destructive actions (Delete, Cancel subscription) here — destructive flows need `AurumButton` with explicit confirmation, not text-styled affordances."
        ]
      }
    },
    {
      "name": "AurumTransactionListCard",
      "family": "card",
      "platforms": [
        "ios"
      ],
      "summary": "A status-tinted transaction row for payment / withdrawal / savings history lists.",
      "kdoc": "A status-tinted transaction row for payment / withdrawal / savings\nhistory lists. The SwiftUI port of aurum-android's\n`AurumTransactionListCard` (Figma node `5576:19749`).\n\nOuter `feedback.*` wash wraps a white inner card with leading slot,\nlabel + date, status badge, and amount (+ optional gold-weight suffix).\n`helperText` renders below in the matching status colour.",
      "previews": [
        "AurumTransactionListCard"
      ],
      "figmaNodeId": "5576:19749",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5576-19749",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5576-19749",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumTransactionListCard.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/card/AurumTransactionListCard.html",
      "sourcePath": "Sources/Aurum/Component/Card/AurumTransactionListCard.swift",
      "intendedUse": "Use as a single transaction row inside a scrollable history list — savings, withdrawals, gold buy / sell, referral payouts. For a \"this just happened\" callout use the Toast / Banner family; for a full transaction-detail screen use the bespoke detail layout.",
      "usage": {
        "do": [
          "Pre-format `dateText`, `amount`, and `suffixText` at the call site with locale-aware utilities — the view takes strings only.",
          "Drive `status` from real backend state (success / error / pending); wash + badge + amount colour all flow from it.",
          "Pass `helperText` on failed / pending rows for inline context; leave it `nil` for happy-path success rows."
        ],
        "dont": [
          "Pass raw `Date` / `Decimal` values through `String(describing:)` — locale-broken output ships the moment a user switches device language.",
          "Recolour the surface, badge, or amount with raw `Color` literals — `feedback.*` tokens are the source of truth.",
          "Use this for non-transactional rows (notifications, settings, search) — pick a neutral list-item primitive instead."
        ]
      }
    },
    {
      "name": "AurumChip",
      "family": "chip",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's chip — a pill-shaped tappable element.",
      "kdoc": "Aurum's chip — a pill-shaped tappable element. The SwiftUI port of\naurum-android's `AurumChip`, rendering Figma's chip component set across\nboth `action` and `other` types. Slot composition picks the Figma chip\nrole within `other`:\n\n- label only — Suggestion\n- `leadingIcon` + label — Assist\n- `leadingIcon` + label + `trailingIcon` — Filter / Input\n\n`action` is the canonical label + trailing chevron CTA chip and carries\nthe `brand` / `black` colour variants.",
      "previews": [
        "AurumChip"
      ],
      "figmaNodeId": "4446:701",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4446-701",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4446-701",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumChip.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/chip/AurumChip.html",
      "sourcePath": "Sources/Aurum/Component/Chip/AurumChip.swift",
      "intendedUse": "Single tappable category/filter selector or a brand action surface in dense layouts. Short labels (1–2 words). Prefer `AurumButton` for primary actions.",
      "usage": {
        "do": [
          "Pair `leadingIcon` with monosemic glyphs (filter, sort, history).",
          "Use `.small` in dense rows; `.large` for one-off CTAs in section headers.",
          "Reserve `.brand` for the primary CTA on a surface (≤1 per screen)."
        ],
        "dont": [
          "Use chips as form input — exclusive choices belong to selection controls.",
          "Override colours via `.background` / explicit tints; recolour through `variant` only.",
          "Stack vertically — chips flow horizontally with `s2` spacing."
        ]
      }
    },
    {
      "name": "AurumDivider",
      "family": "divider",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's divider primitive — a thin horizontal line used to separate content sections.",
      "kdoc": "Aurum's divider primitive — a thin horizontal line used to separate\ncontent sections. The SwiftUI port of aurum-android's `AurumDivider`:\na styled rectangle, not `SwiftUI.Divider` (whose hairline colour and\nthickness are system-controlled, not token-controlled).",
      "previews": [
        "AurumDivider"
      ],
      "figmaNodeId": null,
      "figmaUrl": null,
      "figmaTagUrl": null,
      "codeConnectPath": null,
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/divider/AurumDivider.html",
      "sourcePath": "Sources/Aurum/Component/Divider/AurumDivider.swift",
      "intendedUse": "Use as a thin separator between rows in a list, or before/after a logical content group. Keeps the surface scannable without introducing a new section affordance. For layout spacing use `Aurum.space.*` tokens — a `Spacer`/padding is structurally cheaper than a divider.",
      "usage": {
        "do": [
          "Use the default `borderSurfaceLowContrast` colour — it's tuned to be visible without competing with content.",
          "Reach for `Aurum.borderWidth.xs` (default, hairline) — thicker dividers read as decoration rather than separation."
        ],
        "dont": [
          "Use as decorative page-break flourish — that's a typography or layout concern, not a divider.",
          "Use for layout spacing — padding or a fixed-height `Spacer` is the right tool when you just need air, not a visible line."
        ]
      }
    },
    {
      "name": "AurumBadge",
      "family": "feedback",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's badge primitive — a small, non-interactive label used for status, categorization, or count indicators.",
      "kdoc": "Aurum's badge primitive — a small, non-interactive label used for\nstatus, categorization, or count indicators. The SwiftUI port of\naurum-android's `AurumBadge`.\n\nSupports 6 colour roles × 2 emphases × 2 sizes, with an optional\nleading icon. Emphasis and text/icon colours follow a **cross-axis**\npairing by design (matching the Figma token references): `intense`\nbackground → `inverse` content; `subtle` background → `intense` content.",
      "previews": [
        "AurumBadge"
      ],
      "figmaNodeId": "4240:10542",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4240-10542",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4240-10542",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumBadge.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/feedback/AurumBadge.html",
      "sourcePath": "Sources/Aurum/Component/Feedback/AurumBadge.swift",
      "intendedUse": "Use as a small status / categorisation / count indicator anchored to another piece of content — \"New\" pill on a list item, \"Verified\" stamp on a profile, unread count on an avatar. The `intense` emphasis pulls the eye; `subtle` is the same role at lower volume. For tappable filters use `AurumChip`.",
      "usage": {
        "do": [
          "Pick the `color` from semantic intent — positive for success, negative for failure, notice for warnings, info for neutral context.",
          "Anchor the badge to its subject (top-right of an icon, inline before a label) so the relationship is unambiguous.",
          "Keep labels to 1–2 words; long text wraps awkwardly in the pill."
        ],
        "dont": [
          "Use as a tappable affordance — badges are non-interactive. For tap actions use `AurumChip`.",
          "Stack badges vertically on a single subject; one anchored badge per item conveys status best.",
          "Mix multiple `color` roles on the same surface for the same kind of subject — readers infer hierarchy from the role choice."
        ]
      }
    },
    {
      "name": "AurumBanner",
      "family": "feedback",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's banner primitive — a persistent, top-anchored, full-bleed tonal status strip.",
      "kdoc": "Aurum's banner primitive — a persistent, top-anchored, full-bleed tonal\nstatus strip. The SwiftUI port of aurum-android's `AurumBanner`. It is\nthe **persistent** counterpart of the transient `AurumToast`: same tonal\npalette and status glyphs, but structural (square corners, full-bleed, a\nbottom hairline) rather than a floating rounded pill, and it stays until\nthe caller dismisses it.\n\nEach `tone` pairs a `feedback.*` subtle background with the matching\nintense content colour and a per-tone leading status glyph. An opaque\n`bgPageBase` base is painted under the tint so the strip reads solid\nover any backdrop. Optionally renders a single inline text `action`\n(e.g. \"Retry\") and, when `onDismiss` is non-nil, a trailing close ✕.\n\nWhen the banner touches the top screen edge its backgrounds bleed under\nthe status bar automatically (SwiftUI `background` extends into safe\nareas) while the content stays clear — the equivalent of Android's\n`windowInsets` parameter, with no parameter needed.\n\nThis is a **presentational** primitive — it does not own the show/hide\nlifecycle. Pair it with caller-owned state (or `AurumBannerHost`).",
      "previews": [
        "Banner — all tones",
        "Banner — action + dismissible"
      ],
      "figmaNodeId": null,
      "figmaUrl": null,
      "figmaTagUrl": null,
      "codeConnectPath": null,
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/feedback/AurumBanner.html",
      "sourcePath": "Sources/Aurum/Component/Feedback/AurumBanner.swift",
      "intendedUse": "Use for persistent, top-anchored, app- or page-level status the user must stay aware of — offline / no-connection, scheduled downtime, degraded service, account warnings (KYC pending, payment failed). The persistent counterpart to the transient `AurumToast`: pick the `tone` from semantic intent. For ephemeral confirmations use `AurumToast`; for modal / destructive flows use `AurumBottomSheet`.",
      "usage": {
        "do": [
          "Use for persistent state the user must stay aware of, and pick `tone` from semantic intent — error for failures, warning for at-risk state, info for neutral context, success for resolved state, brand for product moments, neutral for low-urgency system status.",
          "Pair a single `action` only when there is a clear recovery path (e.g. \"Retry\", \"Verify now\"); leave it `nil` for pure status.",
          "Set `onDismiss` for advisory banners the user can clear; leave it `nil` for state banners that must persist until the underlying condition resolves."
        ],
        "dont": [
          "Use for transient confirmations like \"Saved\" or \"Copied\" — that's `AurumToast`.",
          "Stack multiple banners — show one at a time so the top-anchored slot stays a single, clear signal.",
          "Clip the strip or give it rounded corners — the banner is a structural full-bleed band, not a floating card."
        ]
      }
    },
    {
      "name": "AurumBannerHost",
      "family": "feedback",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's banner host — a thin slot that renders the single currently visible `AurumBanner` from `hostState` with a slide-from-top expand/collapse animation.",
      "kdoc": "Aurum's banner host — a thin slot that renders the single currently\nvisible `AurumBanner` from `hostState` with a slide-from-top\nexpand/collapse animation.\n\nPlace at the **top** of the screen (above the header / content). Placed\n**in the layout flow** (first child of the root `VStack`), the animation\nsmoothly pushes the content underneath down and releases it back — the\nstructural-band behaviour. Placed in an `.overlay(alignment: .top)` it\nfloats over content instead. Banners are persistent — there is no queue\nor timer; the caller owns the lifecycle.\n\nThis is **codebase-only** — there is **no Figma node yet**. It is\nproposal-grade orchestration glue, pending design; reconcile when design\nproduces the spec. The visual is `AurumBanner`.",
      "previews": [
        "AurumBannerHost — settled frame"
      ],
      "figmaNodeId": null,
      "figmaUrl": null,
      "figmaTagUrl": null,
      "codeConnectPath": null,
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/feedback/AurumBannerHost.html",
      "sourcePath": "Sources/Aurum/Component/Feedback/AurumBannerHost.swift",
      "intendedUse": "Host slot for persistent, top-anchored, app- or page-level status: offline / no-connection, scheduled downtime, degraded service, account warnings. One host per screen, placed top-anchored. When the host touches the top screen edge the banner's tone colour bleeds under the status bar automatically while content stays clear.",
      "usage": {
        "do": [
          "Place the host top-anchored, above the header / content, so the strip reads as a structural band at the top edge.",
          "Place the host in the layout flow (first child of the root `VStack`) when the banner should push content down rather than float over it.",
          "Drive `show(...)` / `dismiss()` from the source of truth for the condition (e.g. a connectivity observer), so the banner mirrors live state."
        ],
        "dont": [
          "Use this for transient confirmations — that's `AurumToastHost` + `showToast(...)`.",
          "Mount more than one `AurumBannerHost` per screen — concurrent hosts fight for the top slot.",
          "Give the host a fixed height — it occupies only the banner's natural height; anchor it with layout position, not frames."
        ]
      }
    },
    {
      "name": "AurumLoader",
      "family": "feedback",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's circular progress spinner — the SwiftUI port of aurum-android's `AurumLoader`.",
      "kdoc": "Aurum's circular progress spinner — the SwiftUI port of aurum-android's\n`AurumLoader`. Renders Figma's \"Spinner\" set (file `YvIxqu2oTlM6UnkL0OloHc`,\nnode `4530-2084`): a full-circle track in `trackColor` with a 90-degree arc\nin `color` rotating at constant speed, an optional `label` (Figma\n`shownLabel`) placed `.right` or `.bottom`, and free `size` / `color`\n(the Figma `size` and `color` axes are covered by these continuous params).",
      "previews": [
        "AurumLoader",
        "AurumLoader labelled"
      ],
      "figmaNodeId": "4530:2084",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4530-2084",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4530-2084",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumLoader.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/feedback/AurumLoader.html",
      "sourcePath": "Sources/Aurum/Component/Feedback/AurumLoader.swift",
      "intendedUse": "Use for short-duration, action-bound waits where the user has just initiated something — submitting a form, fetching a fresh result, retrying after an error. Rule of thumb: if the wait could exceed ~2 seconds and you have content shape to suggest, use `AurumSkeleton` instead so the surface keeps its perceived layout.",
      "usage": {
        "do": [
          "Render inline next to the action that triggered the wait (e.g. inside `AurumButton`'s `isLoading` state, an inline list-row spinner).",
          "Pass a `label` (\"Loading…\") for screen-level waits so the affordance reads clearly; the label also gives VoiceOver something to announce.",
          "Default `size` to `Aurum.iconSize.xxl` for screen-level waits; use `Aurum.iconSize.md` for inline-button spinners."
        ],
        "dont": [
          "Use for long page loads — multi-second blank screens are perceived as broken; switch to `AurumSkeleton`.",
          "Stack multiple spinners on the same screen for parallel requests; aggregate to one canonical \"loading\" affordance."
        ]
      }
    },
    {
      "name": "AurumProgressBar",
      "family": "feedback",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's linear progress bar — a determinate 8 pt track with a primary-fill indicator.",
      "kdoc": "Aurum's linear progress bar — a determinate 8 pt track with a\nprimary-fill indicator. The SwiftUI port of aurum-android's\n`AurumProgressBar`: an 8 pt pill track (`interactive.bgNeutralDefault`)\nwith a primary indicator sized to `progress`, plus an optional header\nrow (leading `label`, trailing percentage).\n\nDeterminate only — for an indeterminate spinner use `AurumLoader`.",
      "previews": [
        "AurumProgressBar"
      ],
      "figmaNodeId": "5934:846",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5934-846",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5934-846",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumProgressBar.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/feedback/AurumProgressBar.html",
      "sourcePath": "Sources/Aurum/Component/Feedback/AurumProgressBar.swift",
      "intendedUse": "A determinate progress indicator for a known, bounded task — onboarding steps, upload/download, a multi-stage flow. Drive `progress` from your state (0...1). For unknown-duration waits use `AurumLoader`; for stepped/story progress use `AurumSegmentedProgressBar`.",
      "usage": {
        "do": [
          "Pass a `0...1` fraction; values are clamped into range.",
          "Animate at the call site (`withAnimation`) when progress jumps, so the fill glides.",
          "Use `label:` + `showPercentage:` to give the bar context in a header row."
        ],
        "dont": [
          "Use it for indeterminate / unknown-duration work — that's `AurumLoader`.",
          "Recolour the track/indicator — the tokens are fixed (neutral track, primary fill)."
        ]
      }
    },
    {
      "name": "AurumSegmentedProgressBar",
      "family": "feedback",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's segmented progress bar — discrete progress across `total` segments, the first `filled` of them complete.",
      "kdoc": "Aurum's segmented progress bar — discrete progress across `total`\nsegments, the first `filled` of them complete. The SwiftUI port of\naurum-android's `AurumSegmentedProgressBar`:\n\n- `.bars` — `total` equal 8 pt pill segments; the first `filled` are\ntinted by `intent`, the rest neutral.\n- `.bubbles` — the same, each segment capped by a 24 pt numbered\ncheckpoint; completed steps fill + carry inverse-tinted numerals.",
      "previews": [
        "AurumSegmentedProgressBar"
      ],
      "figmaNodeId": "5889:2361",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5889-2361",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5889-2361",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumSegmentedProgressBar.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/feedback/AurumSegmentedProgressBar.html",
      "sourcePath": "Sources/Aurum/Component/Feedback/AurumSegmentedProgressBar.swift",
      "intendedUse": "Discrete, countable progress — onboarding steps, a multi-step form, a quiz, a story/reel position. Use `.bubbles` when each step is a meaningful, numbered checkpoint; `.bars` when it's just N of M. For a continuous fraction use `AurumProgressBar`.",
      "usage": {
        "do": [
          "Pass `filled` / `total` as counts (e.g. 3 of 5); both are clamped into range.",
          "Use `intent` to carry status — e.g. `.negative` for a failed step run.",
          "Use `.bubbles` only for ≤ ~5 steps; beyond that the numerals get cramped — prefer `.bars`."
        ],
        "dont": [
          "Use it for a continuous 0–100% value — that's `AurumProgressBar`.",
          "Recolour segments directly — pick the fixed `intent` palette instead."
        ]
      }
    },
    {
      "name": "AurumSkeleton",
      "family": "feedback",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's shimmer/skeleton loading placeholder — the SwiftUI port of aurum-android's `AurumSkeleton`.",
      "kdoc": "Aurum's shimmer/skeleton loading placeholder — the SwiftUI port of\naurum-android's `AurumSkeleton`.\n\nRenders a solid mid-contrast background with a translucent shimmer\ngradient that animates horizontally left to right. Callers control the\nclipping shape via the initializer and dimensions via `.frame(...)`:\n\n// Text-line placeholder\nAurumSkeleton()\n.frame(height: Aurum.space.s5)\n\n// Avatar placeholder\nAurumSkeleton(shape: Circle())\n.frame(width: Aurum.space.s9, height: Aurum.space.s9)",
      "previews": [
        "AurumSkeleton"
      ],
      "figmaNodeId": null,
      "figmaUrl": null,
      "figmaTagUrl": null,
      "codeConnectPath": null,
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/feedback/AurumSkeleton.html",
      "sourcePath": "Sources/Aurum/Component/Feedback/AurumSkeleton.swift",
      "intendedUse": "Use as a content-shaped placeholder during the initial fetch on list / detail surfaces, where the eventual layout is known and the wait is multi-second. Keeps the surface visually stable so users perceive less latency. For action-bound short waits use `AurumLoader` instead.",
      "usage": {
        "do": [
          "Match the skeleton dimensions and shape to the eventual content (avatar circle, full-width text-line height) so the swap-in is invisible.",
          "Render multiple skeletons with realistic variation in widths to mimic real text — uniform-width rows look fake.",
          "Keep the shimmer running until real content is ready; never freeze on a static skeleton frame."
        ],
        "dont": [
          "Use for short single-action waits — that's `AurumLoader`.",
          "Render skeletons indefinitely on error states — switch to a meaningful empty/error view after a reasonable timeout.",
          "Replace text-line skeletons with bare horizontal lines — pad to the realistic line height so the layout doesn't jump on swap-in."
        ]
      }
    },
    {
      "name": "AurumToast",
      "family": "feedback",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's toast primitive — a non-blocking, dismissible status strip surfaced over content.",
      "kdoc": "Aurum's toast primitive — a non-blocking, dismissible status strip\nsurfaced over content. The SwiftUI port of aurum-android's `AurumToast`;\nrenders Figma's toast component set (node 6014:2621).\n\nSix `tone` roles × two `size`s = 12 visual variants. Each tone pairs a\n`feedback.*` subtle background with the matching intense text/icon, plus\na per-tone leading status glyph. An opaque `bgPageBase` base is painted\nunder the tint so the strip reads solid over any backdrop. A trailing\nclose `AurumIconButton` is always present and fires `onDismiss`.\n\nThis is a **presentational** primitive — it does not own the show/hide\nlifecycle, queue, or auto-dismiss timer. Pair it with caller-owned state\nfor visibility, or with `AurumToastHost` + `AurumToastHostState`.",
      "previews": [
        "Toast — small, all tones",
        "Toast — large + no leading icon"
      ],
      "figmaNodeId": "6014:2621",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6014-2621",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6014-2621",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumToast.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/feedback/AurumToast.html",
      "sourcePath": "Sources/Aurum/Component/Feedback/AurumToast.swift",
      "intendedUse": "Use to surface lightweight, asynchronous feedback tied to a recent user action — \"Saved\", \"Copied\", \"Couldn't fetch, retrying\", \"New version available\". Pick the `tone` from semantic intent: success for confirmations, error for failures, warning for at-risk state, info for neutral context, brand for product moments, neutral for system feedback without urgency. For modal confirmations or destructive flows use `AurumBottomSheet`; for inline form validation use the input components' built-in error affordances.",
      "usage": {
        "do": [
          "Pick `tone` from semantic intent — never style a neutral toast red to \"look like an error\", choose `.error` instead.",
          "Use `.small` for confirmations that fit in 1–4 words; reach for `.large` only when the message genuinely needs to wrap.",
          "Pair the toast with a caller-owned visibility state and auto-dismiss timer (`AurumToastHost` provides both) so it disappears without forcing the user to tap the ✕."
        ],
        "dont": [
          "Stack two toasts of different tones — show the newer one and let it replace the prior.",
          "Embed buttons / link affordances inside the label — the toast is a status strip, not an action surface. If you need an action, prefer `AurumBottomSheet` or a contextual CTA next to the originating control.",
          "Use a toast as the only feedback channel for irreversible actions — surface those through a confirmation sheet so the user has a chance to react before the strip fades."
        ]
      }
    },
    {
      "name": "AurumToastHost",
      "family": "feedback",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's toast host — a thin overlay slot that renders the single currently visible `AurumToast` from `hostState` with slide-up/fade enter/exit animation, and drives auto-dismiss via `AurumToastDuration`.",
      "kdoc": "Aurum's toast host — a thin overlay slot that renders the single\ncurrently visible `AurumToast` from `hostState` with slide-up/fade\nenter/exit animation, and drives auto-dismiss via `AurumToastDuration`.\n\nPlace at the bottom of the screen, typically bottom-aligned in an\noverlay: `.overlay(alignment: .bottom) { AurumToastHost(hostState:\ntoastHost) }`. Hoist `AurumToastHostState` with `@State` and trigger via\n`Task { await hostState.showToast(\"Saved\") }`.\n\nThis is **codebase-only** — there is no Figma equivalent. It is\norchestration glue, not a visual primitive. The visual is `AurumToast`.",
      "previews": [
        "AurumToastHost — settled frame"
      ],
      "figmaNodeId": null,
      "figmaUrl": null,
      "figmaTagUrl": null,
      "codeConnectPath": null,
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/feedback/AurumToastHost.html",
      "sourcePath": "Sources/Aurum/Component/Feedback/AurumToastHost.swift",
      "intendedUse": "Host slot for all in-app, programmatic notifications: confirmations, validation feedback, sync results, retry prompts. One host per screen, bottom-anchored. Replaces ad-hoc alert/overlay improvisations in feature code.",
      "usage": {
        "do": [
          "Trigger from handlers via `Task { await hostState.showToast(...) }` — the call suspends until the toast resolves, which is what serialises the queue.",
          "Place the host inside the same container that owns the screen's bottom safe-area inset — the host doesn't pad insets itself.",
          "Use `.short` for confirmations, `.long` for messages that need reading, `.indefinite` for actions awaiting an explicit dismiss."
        ],
        "dont": [
          "Render an `AurumToast` outside a host when the message is programmatic / asynchronous — without the queue + timer you'll either drop messages or stack them.",
          "Mount more than one `AurumToastHost` per screen — concurrent hosts fight for the bottom slot and produce racy overlays.",
          "Give the host a fixed height or `.frame(maxHeight: .infinity)` — it occupies only the toast's natural height; anchor it with `.overlay(alignment: .bottom)` instead."
        ]
      }
    },
    {
      "name": "AurumAmountInput",
      "family": "field",
      "platforms": [
        "ios"
      ],
      "summary": "An amount-entry field: currency symbol + hero numeric value + optional derived suffix (e.g.",
      "kdoc": "An amount-entry field: currency symbol + hero numeric value + optional\nderived suffix (e.g. gold grams). The SwiftUI port of aurum-android's\n`AurumAmountInput`.\n\nDelegates to `AurumTextField` with the entered amount as the hero of the\nfield — Num/XL per Figma vs the generic field's body style, with the\ncurrency symbol one step down at Num/L.",
      "previews": [
        "AurumAmountInput"
      ],
      "figmaNodeId": "5080:261",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5080-261",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5080-261",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumAmountInput.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/field/AurumAmountInput.html",
      "sourcePath": "Sources/Aurum/Component/Field/AurumAmountInput.swift",
      "intendedUse": "Use for monetary amount capture — buy/sell/save flows where the amount is the screen's central decision. The optional `suffixText` surfaces a live derived quantity (\"= 0.5 gm\"). For generic numeric capture use `AurumTextField` with a numeric keyboard.",
      "usage": {
        "do": [
          "Keep `suffixText` short and derived — it renders as supporting context, not a second value.",
          "Use `loading: true` while the derived quote refreshes — the field locks and shows the spinner.",
          "Validate on the `errorText`/`successText` channels so borders and helper text stay in sync."
        ],
        "dont": [
          "Pre-format the amount with grouping separators in the binding; format on display surfaces instead.",
          "Use for phone or OTP entry — dedicated primitives exist.",
          "Override the numeric type styles; the Num ramp is the Figma spec for money."
        ]
      }
    },
    {
      "name": "AurumOtpInput",
      "family": "field",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's OTP (one-time password) input — the SwiftUI port of aurum-android's `AurumOtpInput`.",
      "kdoc": "Aurum's OTP (one-time password) input — the SwiftUI port of\naurum-android's `AurumOtpInput`.\n\nRenders a row of underline-style digit cells that fill sequentially. A\nsingle invisible `TextField` captures keyboard input (numeric keypad,\n`oneTimeCode` content type so SMS autofill works); the visible cells are\ndecorative columns (digit + coloured underline bar). The active cell's\nbrand underline is the sole caret cue.",
      "previews": [
        "AurumOtpInput"
      ],
      "figmaNodeId": "4975:1630",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4975-1630",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4975-1630",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumOtpInput.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/field/AurumOtpInput.html",
      "sourcePath": "Sources/Aurum/Component/Field/AurumOtpInput.swift",
      "intendedUse": "Use whenever the user must enter a numeric one-time password — login OTP, payment authorisation, transaction confirmation. The cell count (`.four` or `.six`) should match the OTP length your backend issues. Don't compose digit cells from `AurumTextField` — this component already handles paste, autofill, and resend-timer UX.",
      "usage": {
        "do": [
          "Use `validationState: .error` together with a meaningful `helperText` to guide retries — never silently mark the OTP wrong.",
          "Track resend countdown with `validationState: .timer` so the helper colour reflects the wait state without changing layout.",
          "Hook `onComplete` to auto-submit when all cells are filled — saves the user a tap."
        ],
        "dont": [
          "Feed non-digit characters into the binding; input is filtered to digits and behaviour is undefined otherwise.",
          "Render multiple OTP inputs on one screen — there's only ever one active OTP context.",
          "Use this for non-numeric verification (e.g. invitation codes); use `AurumTextField` instead."
        ]
      }
    },
    {
      "name": "AurumPhoneNumberInput",
      "family": "field",
      "platforms": [
        "ios"
      ],
      "summary": "A phone-number-specific text field: country code + divider + digit input.",
      "kdoc": "A phone-number-specific text field: country code + divider + digit input.\nThe SwiftUI port of aurum-android's `AurumPhoneNumberInput`.\n\nDelegates to `AurumTextField` with a fixed leading slot that renders an\noptional `flag` view, the `countryCode` text, and a thin vertical\ndivider. Defaults to a phone keyboard and a 10-digit max length; input\nis silently filtered to digits only.",
      "previews": [
        "AurumPhoneNumberInput"
      ],
      "figmaNodeId": "4904:2455",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4904-2455",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4904-2455",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumPhoneNumberInput.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/field/AurumPhoneNumberInput.html",
      "sourcePath": "Sources/Aurum/Component/Field/AurumPhoneNumberInput.swift",
      "intendedUse": "Use whenever capturing a phone number that needs an E.164-style country prefix — login, KYC, recipient details. The leading country-code slot is always visible so users see the dialing context even before typing. For bare numeric capture without country context, use `AurumTextField` with a numeric keyboard.",
      "usage": {
        "do": [
          "Default `countryCode: \"+91\"` for India-first surfaces; pass an explicit value for international flows.",
          "Pair with a country picker that updates `countryCode` + `flag` together — never let one drift from the other.",
          "Use the `errorText` channel for \"phone already registered\" / \"invalid number\" feedback — consistent with `AurumTextField`."
        ],
        "dont": [
          "Bypass the country code — bare digit input loses E.164 context downstream and creates locale ambiguity.",
          "Pre-format the value with spaces / hyphens; the field stores raw digits and formatting belongs in display only.",
          "Use this for OTP — the dedicated OTP input is the right primitive for numeric one-time codes."
        ]
      }
    },
    {
      "name": "AurumSearchField",
      "family": "field",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's search box — a pill-shaped `AurumTextField` with the canonical leading magnifier and an optional clear affordance.",
      "kdoc": "Aurum's search box — a pill-shaped `AurumTextField` with the canonical\nleading magnifier and an optional clear affordance. The SwiftUI port of\naurum-android's `AurumSearchField`.",
      "previews": [
        "AurumSearchField"
      ],
      "figmaNodeId": null,
      "figmaUrl": null,
      "figmaTagUrl": null,
      "codeConnectPath": null,
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/field/AurumSearchField.html",
      "sourcePath": "Sources/Aurum/Component/Field/AurumSearchField.swift",
      "intendedUse": "Use as the single search entry point on a list or directory surface. The pill shape + leading magnifier glyph is the canonical \"search\" affordance — users recognise it instantly. For filtering by category use a row of `AurumChip`s instead; for free-form text input use `AurumTextField`.",
      "usage": {
        "do": [
          "Wire the binding to a debounced query (250–400 ms) — search-as-you-type without flooding the backend.",
          "Provide `onClear` whenever the search has any state worth clearing — users expect the X to wipe the query and reset results.",
          "Anchor at the top of the scrollable surface; sticky-on-scroll if the list is long."
        ],
        "dont": [
          "Use as a generic single-line input — the pill shape signals search semantics; reusing it for unrelated text confuses users.",
          "Submit on return without also surfacing real-time results; users expect search to feel live.",
          "Stack two AurumSearchFields on the same surface — there should be one search context at a time."
        ]
      }
    },
    {
      "name": "AurumTextField",
      "family": "field",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's primary text-input field — the SwiftUI port of aurum-android's `AurumTextField`.",
      "kdoc": "Aurum's primary text-input field — the SwiftUI port of aurum-android's\n`AurumTextField`.\n\nAnatomy per Figma: an optional static `label` rendered **above** the\nfield (it never floats into the outline — Aurum deliberately opts out of\nthe Material floating-label behaviour), the outlined input box, and an\noptional helper / error / success message below. The `placeholder` sits\ninside the box whenever the value is empty and disappears as the user\ntypes.\n\nWhen `errorText` is non-nil the field enters the error state\nautomatically; `successText` (with no error) enters the success state.\nError / success / loading states show their trailing status affordance\nautomatically unless the caller supplies a `trailing` slot. A character\ncounter appears in the support row when `maxLength` is set; input beyond\nit is truncated.\n\nPlatform notes vs Android: SwiftUI homes the caret at the end of\nprogrammatically-set values natively (no `TextFieldValue` dance needed);\n`readOnly` renders the display-only style and blocks editing via\n`.disabled` (SwiftUI has no focusable-but-not-editable mode);\n`isSecure: true` replaces Android's `PasswordVisualTransformation`.",
      "previews": [
        "AurumTextField"
      ],
      "figmaNodeId": "4623:373",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4623-373",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4623-373",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumTextField.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/field/AurumTextField.html",
      "sourcePath": "Sources/Aurum/Component/Field/AurumTextField.swift",
      "intendedUse": "Use for free-text capture on form surfaces — name, address, notes, message body, anything that maps cleanly to a string. For specialised inputs reach for the dedicated component: `AurumSearchField` for in-screen search boxes (phone / amount / OTP inputs arrive with their ports).",
      "usage": {
        "do": [
          "Pair `errorText` with a clear validation message — never silently mark fields wrong.",
          "Set `maxLength` for any field with backend-enforced length limits — the counter gives users instant feedback.",
          "Use `keyboardType:` to surface the right keyboard for the data shape (numeric, email, URL)."
        ],
        "dont": [
          "Use this for OTP entry — the dedicated OTP input handles paste, autofill, and resend-timer UX correctly.",
          "Style raw `TextField`s with tokens in feature code — this component owns the field anatomy.",
          "Override colours with raw values; recolour through validation state (`errorText` / `successText`)."
        ]
      }
    },
    {
      "name": "AurumIcon",
      "family": "icon",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's icon primitive — the SwiftUI port of aurum-android's `AurumIcon`.",
      "kdoc": "Aurum's icon primitive — the SwiftUI port of aurum-android's `AurumIcon`.\n\nRenders an `AurumIcons.*` asset at a configurable `size` (defaults to\n`Aurum.iconSize.xl` = 24 pt, the canonical icon size in the Figma icon\nlibrary) with a tint. Assets are template-rendered, so the tint paints\nthe glyph's alpha mask — solid colours and gradients alike.\n\n### Tint resolution order (mirrors Android's `LocalContentColor.takeOrElse`)\n1. Explicit `tint:` parameter.\n2. Ambient `\\.aurumContentColor` — set by surfaces like `AurumButton`\nfor their leading/trailing slots.\n3. `Aurum.colors.surface.iconDefaultNormal`.",
      "previews": [
        "AurumIcon"
      ],
      "figmaNodeId": null,
      "figmaUrl": null,
      "figmaTagUrl": null,
      "codeConnectPath": null,
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/icon/AurumIcon.html",
      "sourcePath": "Sources/Aurum/Component/Icon/AurumIcon.swift",
      "intendedUse": "Use to render any `AurumIcons.*` asset with Aurum-token tinting. The 24 pt default matches Figma's canonical icon size; pass `Aurum.iconSize.*` tokens for other scales. For decorative inline glyphs inside text, prefer SwiftUI `Text` interpolation of the asset's `image`.",
      "usage": {
        "do": [
          "Provide a meaningful `accessibilityLabel` whenever the icon conveys information not already present in nearby text — VoiceOver depends on it.",
          "Use `Aurum.colors.surface.icon*` tokens for `tint` — they pair correctly with the surrounding background contrast.",
          "Pick the `size` from `Aurum.iconSize.*` (xs / sm / md / lg / xl / xxl); arbitrary point values break the visual rhythm."
        ],
        "dont": [
          "Use raw asset names or `Image(_:bundle:)` directly — `AurumIcons.*` is the canonical entry point and round-trips with the icon catalog.",
          "Tint with raw `Color(...)` literals; recolour through `Aurum.colors.*` so visual variants flow.",
          "Use SF Symbols in feature code where a catalog icon exists — the Figma frame is the icon source of truth."
        ]
      }
    },
    {
      "name": "AurumStepper",
      "family": "input",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's numeric stepper — a compact container with decrease/value/ increase controls inside a single rounded container.",
      "kdoc": "Aurum's numeric stepper — a compact container with decrease/value/\nincrease controls inside a single rounded container. The SwiftUI port\nof aurum-android's `AurumStepper` (Figma node `4506:201`).\n\nWhen `value` equals `minValue` (typically 0), the stepper shows an\n\"Add\" button instead of the ±/value layout, matching the Figma\n\"Initial State\".",
      "previews": [
        "AurumStepper"
      ],
      "figmaNodeId": "4506:201",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4506-201",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4506-201",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumStepper.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/input/AurumStepper.html",
      "sourcePath": "Sources/Aurum/Component/Input/AurumStepper.swift",
      "intendedUse": "Use for small bounded integer ranges where the user picks a count by incrementing — cart quantity, count of N selections, number of attendees. The \"Initial State\" / \"Add\" affordance handles the first-tap onboarding without the user needing to know the bounds. For free numeric input use `AurumTextField` with a numeric keyboard.",
      "usage": {
        "do": [
          "Set `maxValue` to the real backend limit so the + control disables on the boundary instead of erroring after submission.",
          "Use `.brand` when the stepper is the surface's CTA-equivalent (e.g. \"add to cart\" flows); `.neutral` for inline edit-existing-quantity rows.",
          "Mirror the value back to the user with a clear running total / subtotal nearby — steppers shine when the consequence is visible."
        ],
        "dont": [
          "Use for free numeric capture — `AurumTextField` with a numeric keyboard is the right primitive when the value range is open.",
          "Render multiple steppers in a row controlling the same backing value; one canonical control per quantity.",
          "Skip the disabled state when the user hits `maxValue` — letting them tap and silently fail breaks the bound contract."
        ]
      }
    },
    {
      "name": "AurumGlobalHeader",
      "family": "navigation",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's global header — the persistent top bar used on every top-level destination (Home, Transactions, NEK, Rewards).",
      "kdoc": "Aurum's global header — the persistent top bar used on every top-level\ndestination (Home, Transactions, NEK, Rewards). The SwiftUI port of\naurum-android's `AurumGlobalHeader` (Figma node `5252:2274`).\n\nVisual structure (left → right):\n- Leading **profile pill** — 44 pt circular pill with a 1 pt\n`interactive/border/neutral/muted` border and a soft radial sheen.\nAccepts an `AurumIconAsset` glyph via `profileIcon` (default\n`AurumIcons.User.user`) **or** any caller-supplied view via the\n`profileContent` slot for URL-loaded avatars.\n- Right group — see `AurumGlobalHeaderRightContent`.\n\nWhen the header touches the top screen edge, `containerColor` bleeds\nunder the status bar automatically while content stays clear — the\nequivalent of Android's internal status-bar inset handling.",
      "previews": [
        "GlobalHeader — default variants",
        "GlobalHeader — live price",
        "GlobalHeader — on dark + avatar"
      ],
      "figmaNodeId": "5252:2274",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5252-2274",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5252-2274",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumGlobalHeader.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/navigation/AurumGlobalHeader.html",
      "sourcePath": "Sources/Aurum/Component/Navigation/AurumGlobalHeader.swift",
      "intendedUse": "Use as the persistent top bar on every top-level destination — Home, Transactions, NEK, Rewards. The two `AurumGlobalHeaderRightContent` variants cover the design-system canonical right-side affordances; don't roll a custom header for these screens.",
      "usage": {
        "do": [
          "Choose the `.livePrice` variant only on screens where the live gold buy price is part of the screen's purpose (e.g. the home feed); use `.default` elsewhere.",
          "Hoist the rewards / notifications tap handlers up to your navigation coordinator so badge counts stay in sync with state changes.",
          "Pass `profileContent` for URL-loaded avatars — the slot fills the pill's inner circle (inside the 1 pt border, clipped circular), so hand it a full-bleed image with `.scaledToFill()`; don't size or clip it yourself."
        ],
        "dont": [
          "Roll a custom top bar and tint it with Aurum colours — this component exists to prevent that anti-pattern.",
          "Render two `AurumGlobalHeader`s on one screen — one per screen, anchored to the top inset.",
          "Mix `.livePrice` with `nil` rewards on a screen where users expect Rewards / Notifications access — hide the rewards pill only where those affordances are unambiguously available elsewhere."
        ]
      }
    },
    {
      "name": "AurumNavBar",
      "family": "navigation",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's bottom navigation bar — the canonical \"NavBar\" from the Figma design system (component set `5575:14226`).",
      "kdoc": "Aurum's bottom navigation bar — the canonical \"NavBar\" from the Figma\ndesign system (component set `5575:14226`). The SwiftUI port of\naurum-android's `AurumNavBar`.\n\nFour `layout` variants: 3/4/5 evenly-spaced cells, or 4 cells flanking\na raised circular Scan-QR button. Each cell renders a 24 pt icon (line\nunselected, filled selected) plus a label; selected cells tint the icon\nwith the `purple/500 → pink/50` brand ramp and the label with\n`textBrandNormal`.\n\n**Minimum container width: 360 pt.** The design assumes a 360 pt\nbaseline; below it, long labels (\"Transactions\") clip at the cell edge\n— matching Figma's `overflow-clip` — rather than reflowing.",
      "previews": [
        "NavBar — layouts"
      ],
      "figmaNodeId": "5575:14226",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5575-14226",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5575-14226",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumNavBar.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/navigation/AurumNavBar.html",
      "sourcePath": "Sources/Aurum/Component/Navigation/AurumNavBar.swift",
      "intendedUse": "Use as the persistent bottom navigation primitive on top-level screens. Pick the layout variant that matches the destination count: 3 / 4 / 5 cells, or 4 cells flanking a centre Scan-QR action. Don't roll a custom bottom bar — this is the canonical surface.",
      "usage": {
        "do": [
          "Pass paired line/filled `AurumIcons.*` variants per item so the selected-state contrast reads correctly (e.g. `AurumIcons.User.home` + `.homeFilled`).",
          "Hoist `selectedIndex` in your screen state and route `onSelect` through your navigation coordinator so the bar stays in sync with stack changes.",
          "Match the layout to your top-level destination count — never partially-fill a 5-cell bar."
        ],
        "dont": [
          "Wrap a `TabView`'s system bar and tint it with Aurum colours — this component exists to prevent that anti-pattern.",
          "Push more than 5 items into a layout — bottom-nav UX caps at 5; restructure with sub-tabs or an overflow surface.",
          "Render two `AurumNavBar`s on one screen — one per screen, anchored to the bottom inset."
        ]
      }
    },
    {
      "name": "AurumPageHeader",
      "family": "navigation",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's Page Header — the canonical title-and-actions row at the top of a screen.",
      "kdoc": "Aurum's Page Header — the canonical title-and-actions row at the top of\na screen. The SwiftUI port of aurum-android's `AurumPageHeader` (Figma\ncomponent set `4826:1058`).\n\nThe Figma set defines exactly 10 trailing-action `Type` variants — each\ncombination of `actionButton` (primary button), `icon1`, `icon2`, and\n`isOverflow` — plus two orthogonal instance properties: `backButton`\n(the leading back icon, driven here by `onBack`) and `subtitle`. Pass\n`nil` for any slot to omit it; the trailing slots are positionally\nmeaningful, so e.g. `icon1: nil, icon2: x` is invalid.\n\nLayout: 56 pt bar, 16 pt horizontal padding. Left group: optional back\nicon (32×40 pt wrapper, 24 pt glyph) + title/subtitle column, both\nsingle-line with tail ellipsis. Right group: 8 pt gaps, max 140 pt wide;\nthe button is capped at 120 pt × 36 pt. When the bar touches the top\nscreen edge, `containerColor` bleeds under the status bar automatically\n(Android's `applyStatusBarInsets` with no parameter).",
      "previews": [
        "PageHeader — axes",
        "PageHeader — trailing types",
        "PageHeader — on dark"
      ],
      "figmaNodeId": "4826:1058",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4826-1058",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4826-1058",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumPageHeader.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/navigation/AurumPageHeader.html",
      "sourcePath": "Sources/Aurum/Component/Navigation/AurumPageHeader.swift",
      "intendedUse": "Use at the top of every full-screen surface in the app. The 10 Figma `Type` variants cover every combination of trailing controls (primary button, 1 / 2 icons, overflow) — pick the variant that matches the screen's needs. Don't introduce a custom header; this is the canonical Page Header.",
      "usage": {
        "do": [
          "Provide an explicit `accessibilityLabel` for every `AurumPageHeaderAction` icon — a trailing glyph with `nil` fails accessibility audits.",
          "Reserve the `primaryButton` slot for a single high-emphasis screen action (e.g. \"Save\", \"Skip\"); use icons + overflow for everything else.",
          "Keep titles to one line; Aurum truncates with ellipsis at the design max width — long titles should be condensed at copy review, not at render time.",
          "Override `backIcon` where the platform convention differs from page-back navigation — e.g. `AurumIcons.Navigation.close` on a modal-style screen.",
          "Set `colorScheme: .onDark` (with `containerColor: .clear`) only when the header sits on a dark hero backdrop."
        ],
        "dont": [
          "Roll a custom navigation bar and tint it with Aurum colours — this component exists to prevent that anti-pattern.",
          "Hand-roll Figma's other header variants (centred title, large header) until they're added to this component.",
          "Stack multiple `AurumPageHeader`s on one screen — one per screen."
        ]
      }
    },
    {
      "name": "AurumSectionHeader",
      "family": "navigation",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's section header — used to group related content within a screen.",
      "kdoc": "Aurum's section header — used to group related content within a screen.\nThe SwiftUI port of aurum-android's `AurumSectionHeader`.\n\nLayout: full width, 48 pt tall, horizontal padding `s5`; left group is\ntitle (+ optional subtitle), right group is the optional action.",
      "previews": [
        "AurumSectionHeader"
      ],
      "figmaNodeId": "3702:162190",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=3702-162190",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=3702-162190",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumSectionHeader.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/navigation/AurumSectionHeader.html",
      "sourcePath": "Sources/Aurum/Component/Navigation/AurumSectionHeader.swift",
      "intendedUse": "Use as the H2-style break between groups of related content within a scrollable surface — \"Recent transactions\", \"Your goals\", \"Suggested for you\". The optional right-aligned action lets a section advertise its own deeper view. For thin row separators use `AurumDivider`.",
      "usage": {
        "do": [
          "Use the `.link` action for \"View All / See More\" navigation actions — the chevron signals \"drill in\".",
          "Keep the title to one line and let ellipsis truncate overflow — section headers should be scannable.",
          "Pair `subtitle` with the title for sections whose name alone isn't self-explanatory (e.g. \"Goals\" + \"Track your progress\")."
        ],
        "dont": [
          "Use as a page-level header — section headers are intra-screen.",
          "Stack multiple action types on one header — pick one of `.link` / `.text` / `.icon`.",
          "Use the `.text` action for navigation when `.link` is also fitting — the chevron tells users they're entering a new surface."
        ]
      }
    },
    {
      "name": "AurumTab",
      "family": "navigation",
      "platforms": [
        "ios"
      ],
      "summary": "A single tab item for use inside `AurumTabRow`.",
      "kdoc": "A single tab item for use inside `AurumTabRow`. The SwiftUI port of\naurum-android's `AurumTab` (Figma `_Tabs`, node `5430:3115`).\n\nThe active-indicator underline, equal-width sizing, and fit-or-scroll\nbehaviour are managed by `AurumTabRow` — outside a row this renders a\nbare label cell at its natural width.",
      "previews": [
        "AurumTab"
      ],
      "figmaNodeId": "5430:3115",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5430-3115",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5430-3115",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumTab.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/navigation/AurumTab.html",
      "sourcePath": "Sources/Aurum/Component/Navigation/AurumTab.swift",
      "intendedUse": "Use as the per-tab cell of an `AurumTabRow`. One tab per destination, with a short label and an optional 24 pt leading icon. Outside an `AurumTabRow` it has no underline indicator and no equal-width sizing — always compose it through the row's `items`.",
      "usage": {
        "do": [
          "Hoist the selected index in your screen state and drive the row's `selectedTabIndex` off it; the underline animation tracks the row's index.",
          "Keep labels short (≤10 chars) — Figma sizes tabs at min 100 pt; long strings either widen every tab or clip.",
          "Pass an icon from `AurumIcons.*` — the leading slot is pinned to `Aurum.iconSize.xl` (24 pt) per Figma."
        ],
        "dont": [
          "Compose `AurumTab` outside an `AurumTabRow` — standalone tabs render at natural width with no indicator.",
          "Mix this with a hand-rolled segmented control in the same strip — token colours, the 2 pt underline, and the equal-width algorithm only line up across `AurumTab` siblings.",
          "Render an unavailable destination by greying out a tab — Figma has no disabled variant; omit the destination from `items` until it's selectable."
        ]
      }
    },
    {
      "name": "AurumTabRow",
      "family": "navigation",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's tab row — a strip of `AurumTab` cells with an animated selection indicator and a bottom divider.",
      "kdoc": "Aurum's tab row — a strip of `AurumTab` cells with an animated selection\nindicator and a bottom divider. The SwiftUI port of aurum-android's\n`AurumTabRow` (Figma `GroupRoot`, node `5531:795`).\n\nTabs are sized to `max(widestNaturalTab, 100 pt)`. If the total fits the\nviewport, tabs flex to share the full width equally — matching Figma's\ntwo-/three-tab `flex-[1_0_0]` variants. If the total overflows, the row\nbecomes horizontally scrollable and every tab pins to the computed width\n— matching Figma's four-tab fixed-`100px` variant and gracefully\nextending to 5+ tabs. (Android probes intrinsic widths via\nSubcomposeLayout; here natural widths are measured with the tab text\nstyle's scaled font — same algorithm, platform-native probe.)\n\nUnlike Android's slot-based `tabs` lambda, the row takes an `items`\narray — SwiftUI's indicator placement and width algorithm need the tab\ncount and data up front.",
      "previews": [
        "TabRow — fit modes",
        "TabRow — scroll mode"
      ],
      "figmaNodeId": "5531:795",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5531-795",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5531-795",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumTabRow.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/navigation/AurumTabRow.html",
      "sourcePath": "Sources/Aurum/Component/Navigation/AurumTabRow.swift",
      "intendedUse": "Use as the top-of-screen tab strip for switching between sibling sub-views of one destination (e.g. Gold / Silver / Crypto / FD on a Portfolio screen). Tabs are for in-screen navigation, not app-level navigation.",
      "usage": {
        "do": [
          "Drive `selectedTabIndex` from hoisted screen state and route `onSelect` through your view model so the underline animation stays in sync with the rendered sub-view.",
          "Pass 2–6 `items` — fewer feels under-utilised, more crowds the strip; for 6+ destinations consider a different navigation pattern.",
          "Trust the auto-fit-or-scroll behaviour — short labels at 2/3 tabs flex to fill the row, longer labels at 4+ tabs scroll horizontally with each tab pinned to ≥ 100 pt."
        ],
        "dont": [
          "Wrap `AurumTabRow` inside another horizontal scroller — when the row chooses scroll mode, nested horizontal scroll fights touch handling.",
          "Set a fixed width on the row — it reads the proposed width to decide between fit and scroll modes; constraining it forces the strip into permanent scroll.",
          "Represent an unavailable destination as a greyed-out item — omit it from `items` until it's selectable."
        ]
      }
    },
    {
      "name": "AurumCheckbox",
      "family": "selection",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's checkbox — a tri-state selection control.",
      "kdoc": "Aurum's checkbox — a tri-state selection control. The SwiftUI port of\naurum-android's `AurumCheckbox` (Figma `Checkbox`, node `5169:1314`).\n\nPass `label: nil` to render only the box (Figma's `withoutLabel`\nvariant). Use `AurumCheckboxGroup` for multi-select sets; this is the\nbuilding block for one option.",
      "previews": [
        "AurumCheckbox"
      ],
      "figmaNodeId": "5169:1314",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5169-1314",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5169-1314",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumCheckbox.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/selection/AurumCheckbox.html",
      "sourcePath": "Sources/Aurum/Component/Selection/AurumCheckbox.swift",
      "intendedUse": "Use as the building block inside `AurumCheckboxGroup` for multi-select forms (filter facets, terms-acceptance, \"select all that apply\"). Reach for it directly only for a standalone inclusion toggle — never for binary settings that take effect immediately (use `AurumSwitch`) or mutually-exclusive choice (use `AurumRadioGroup`).",
      "usage": {
        "do": [
          "Use `.indeterminate` only on a parent box that summarises a partially-selected child group; never as a standalone \"maybe\" state.",
          "Place the label `.end` (default) for vertical lists; switch to `.start` only inside full-width list rows where the box anchors the trailing edge.",
          "Pair `error: true` with a feedback-negative helper line on the parent surface to communicate validation failure on required consent."
        ],
        "dont": [
          "Use a checkbox to fire navigation actions on tap — the box represents inclusion state, not a button.",
          "Hand-roll an \"indeterminate\" by overlaying a separator over a checked box; flip `AurumCheckState` instead so semantics are preserved.",
          "Render multiple `AurumCheckbox`es manually as a group; compose them via `AurumCheckboxGroup` so the group enforces label/error layout."
        ]
      }
    },
    {
      "name": "AurumCheckboxGroup",
      "family": "selection",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's checkbox group — a vertical stack of independently-selectable options.",
      "kdoc": "Aurum's checkbox group — a vertical stack of independently-selectable\noptions. The SwiftUI port of aurum-android's `AurumCheckboxGroup`\n(Figma `CheckboxGroup`, node `5169:1796`).\n\nPass `errorText` to tint every option to feedback-negative and switch\nthe helper line to negative-intense.",
      "previews": [
        "AurumCheckboxGroup"
      ],
      "figmaNodeId": "5169:1796",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5169-1796",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5169-1796",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumCheckboxGroup.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/selection/AurumCheckboxGroup.html",
      "sourcePath": "Sources/Aurum/Component/Selection/AurumCheckboxGroup.swift",
      "intendedUse": "Use to present 2–7 independently-selectable options (filter facets, \"select all that apply\", terms-acceptance lists). For mutually-exclusive choice, use `AurumRadioGroup` instead. For more than 7 options switch to a multi-select picker surface.",
      "usage": {
        "do": [
          "Keep `options` to a stable, bounded set — not for paginated or remotely-fetched data.",
          "Set `errorText` for required-selection forms (e.g. consent); clear it as soon as the user picks a valid combination.",
          "Place the group near its own contextual header — don't rely on `label` alone for grouping cues in dense forms."
        ],
        "dont": [
          "Mix per-option `enabled: false` with a top-level `enabled: false`; pick one disable mode.",
          "Use this for navigation lists where each tap moves the user — checkboxes capture inclusion state, not actions.",
          "Render the same option twice; the group assumes `value` uniqueness."
        ]
      }
    },
    {
      "name": "AurumRadioButton",
      "family": "selection",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's radio button — a single-choice selection control.",
      "kdoc": "Aurum's radio button — a single-choice selection control. The SwiftUI\nport of aurum-android's `AurumRadioButton` (Figma `radioButton`,\nnode `5126:2507`, axes `isChecked` × `states` × `radioTypes`).\n\nPass `label: nil` to render only the circle (Figma's `withoutLabel`\nvariant). Use `AurumRadioGroup` when you have a set of mutually\nexclusive options; this view is the building block for one of them.",
      "previews": [
        "AurumRadioButton"
      ],
      "figmaNodeId": "5126:2507",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5126-2507",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5126-2507",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumRadioButton.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/selection/AurumRadioButton.html",
      "sourcePath": "Sources/Aurum/Component/Selection/AurumRadioButton.swift",
      "intendedUse": "Use as the building block inside `AurumRadioGroup`. Reach for it directly only when you need a single radio circle outside a group context (e.g. an option summary card). For sets of mutually exclusive options, always compose them via `AurumRadioGroup` so selection state stays consistent.",
      "usage": {
        "do": [
          "Place the label `.end` (default) for vertical lists; switch to `.start` only inside full-width list rows where the radio anchors the trailing edge.",
          "Use `subtext` for short helper copy that disambiguates the option — keep it under one line.",
          "Pair `error: true` with a feedback-negative helper line on the parent surface to communicate validation failure."
        ],
        "dont": [
          "Use a single radio button to represent a binary toggle — use `AurumSwitch` instead.",
          "Render multiple `AurumRadioButton`s manually side-by-side; compose them via `AurumRadioGroup` so the group enforces single-selection invariants.",
          "Hand-roll a \"radio fill\" colour by overlaying `Aurum.colors.*`; recolour through `error` only."
        ]
      }
    },
    {
      "name": "AurumRadioGroup",
      "family": "selection",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's radio group — a vertical stack of mutually-exclusive options.",
      "kdoc": "Aurum's radio group — a vertical stack of mutually-exclusive options.\nThe SwiftUI port of aurum-android's `AurumRadioGroup` (Figma\n`RadioGroup`, node `5157:2034`).\n\nPass `errorText` to opt into the error variant: every option's circle\ntints to feedback-negative and the helper line below switches from the\ndefault disabled-grey to negative-intense.",
      "previews": [
        "AurumRadioGroup"
      ],
      "figmaNodeId": "5157:2034",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5157-2034",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5157-2034",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumRadioGroup.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/selection/AurumRadioGroup.html",
      "sourcePath": "Sources/Aurum/Component/Selection/AurumRadioGroup.swift",
      "intendedUse": "Use to present 2–7 mutually-exclusive options in a vertical list (form choice, plan picker, sort order). For more than 7 options switch to a picker surface to keep the list scannable. For exactly 2 balanced options, prefer a segmented affordance when one exists.",
      "usage": {
        "do": [
          "Keep `options` to a stable, bounded set — radios are not meant for paginated or remotely-fetched data.",
          "Set `errorText` to communicate validation failure; clear it the moment the user picks a valid option.",
          "Place the group near its own contextual header — don't rely on `label` alone for grouping cues in dense forms."
        ],
        "dont": [
          "Mix per-option `enabled: false` with a top-level `enabled: false`; pick one disable mode and stick to it.",
          "Use a radio group to fire actions on each tap — use a row of `AurumChip`s for filter behaviour.",
          "Render the same option twice; the group assumes `value` uniqueness for selection comparisons."
        ]
      }
    },
    {
      "name": "AurumSwitch",
      "family": "selection",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's switch (toggle) component.",
      "kdoc": "Aurum's switch (toggle) component. The SwiftUI port of aurum-android's\n`AurumSwitch` (Figma node `4018:557`).\n\nCustom-drawn to the Figma/M3 anatomy Android renders (52×32 track,\nthumb that grows 16 → 24 pt with a check glyph when on) — the native\nSwiftUI `Toggle` can't show the thumb glyph or the grow behaviour, so\nwrapping it would drift from the design.",
      "previews": [
        "AurumSwitch"
      ],
      "figmaNodeId": "4018:557",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4018-557",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4018-557",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumSwitch.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/selection/AurumSwitch.html",
      "sourcePath": "Sources/Aurum/Component/Selection/AurumSwitch.swift",
      "intendedUse": "Use for binary settings that take effect **immediately** — notifications on/off, biometric auth toggle. The state change is the action; there is no separate Save step. For a mutually-exclusive choice between named options use `AurumRadioGroup`; for form-style submit-on-confirm fields use a labelled `AurumTextField` or `AurumChip` selection.",
      "usage": {
        "do": [
          "Apply the effect synchronously when `onCheckedChange` fires — no \"Apply\" or \"Save\" step.",
          "Pair with a label and (optionally) a subtitle that names the setting clearly; never use a bare unlabelled switch.",
          "Reflect remote-sync failures by reverting the visual state and surfacing a transient `AurumToast` error."
        ],
        "dont": [
          "Use a switch as a form field that requires a separate submit — users will toggle and walk away expecting it to stick.",
          "Wrap the native `Toggle` and tint it with Aurum colours in feature code; that's exactly what this component prevents.",
          "Use a switch to represent a 3-state setting (on / off / system-default) — switches are strictly binary."
        ]
      }
    },
    {
      "name": "AurumBottomSheet",
      "family": "sheet",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's modal bottom sheet — the SwiftUI port of aurum-android's `AurumBottomSheet`, built on the native `.sheet` presentation with a self-sizing detent.",
      "kdoc": "Aurum's modal bottom sheet — the SwiftUI port of aurum-android's\n`AurumBottomSheet`, built on the native `.sheet` presentation with a\nself-sizing detent.\n\n- `.strict` — built-in 56 pt page header (title), the caller's\n`content`, optional sticky bottom button. Use for forms / filters /\nselections. Dismissal is via drag / scrim — no top-right close button.\n- `.flexible` — no header, `content` owns its own layout (full-bleed\nimages, Lottie). Use for marketing / onboarding.\n\nPlatform notes vs Android: the drag indicator is the system one, drawn\ninside the card per iOS convention (Android floats a white pill on the\nscrim above the card); the scrim is the system dim (SwiftUI sheets don't\nexpose a scrim colour). Corner radius, card colour, header anatomy, and\nthe sticky-button slot are token-faithful.\n\nPresent via the modifier:\n\n.aurumBottomSheet(isPresented: $showFilters, title: \"Filter Transactions\") {\nFilterList()\n} primaryButton: {\nAurumButton(\"Apply\", isFullWidth: true) { apply() }\n}",
      "previews": [
        "AurumBottomSheet strict",
        "AurumBottomSheet flexible"
      ],
      "figmaNodeId": "6002:939",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6002-939",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6002-939",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumBottomSheet.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/sheet/AurumBottomSheet.html",
      "sourcePath": "Sources/Aurum/Component/Sheet/AurumBottomSheet.swift",
      "intendedUse": "Use as the only bottom-sheet surface in feature code. Prefer over raw `.sheet` so the corner radius, page header, sizing, and light forcing are consistent across the app.",
      "usage": {
        "do": [
          "Use `.strict` for any sheet hosting form inputs / lists / filters — the page header gives users a predictable anchor.",
          "Pass `primaryButton` as an `AurumButton` (`.medium` for strict, `.small` for flexible).",
          "Wrap long content in a `ScrollView` — the sheet sizes to content and does not scroll on its own."
        ],
        "dont": [
          "Use `.flexible` for forms / inputs — strict's page header anchors the title as a stable reference.",
          "Render a custom drag handle inside `content` — the indicator is part of the contract.",
          "Place a button inside `content` when `primaryButton` is the right slot — the bottom button is sticky and visually anchored."
        ]
      }
    },
    {
      "name": "AurumSurface",
      "family": "surface",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's base container primitive.",
      "kdoc": "Aurum's base container primitive. The SwiftUI port of aurum-android's\n`AurumSurface`.\n\nA themed container that applies background colour, shape clipping,\noptional border, and optional elevation shadow — the building block for\ncards, banners, and any other visually-distinct surface. The shadow\nrenders through `.aurumShadow` (the Figma-fidelity recipe), a step up\nfrom Android's platform shadow.",
      "previews": [
        "AurumSurface"
      ],
      "figmaNodeId": null,
      "figmaUrl": null,
      "figmaTagUrl": null,
      "codeConnectPath": null,
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/surface/AurumSurface.html",
      "sourcePath": "Sources/Aurum/Component/Surface/AurumSurface.swift",
      "intendedUse": "Use to wrap visually-distinct content blocks that need consistent token-driven styling — cards, banners, sheet contents, any container that wants Aurum's background / radius / border / elevation in one shot. For transient feedback use `AurumToast`.",
      "usage": {
        "do": [
          "Pick `color` from semantic surface tokens (`bgSurfaceLowContrast` / `bgSurfaceMidContrast` / `bgSurfaceHighContrast`) so contrast hierarchy stays consistent.",
          "Pair `elevation` with a token from `Aurum.elevation` — never construct ad-hoc shadows.",
          "Use `borderColor: nil` (default) when `elevation` is set; combining a hard border with a shadow looks crowded."
        ],
        "dont": [
          "Hand-roll card chrome with raw `.background`/`.shadow` in feature code — that's exactly what this primitive prevents.",
          "Use as a transparent overlay (use a scrim) or as a full-screen background.",
          "Mix raw `Color`s with `Aurum.colors.*` — recolour through tokens only."
        ]
      }
    },
    {
      "name": "AurumLabel",
      "family": "text",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's label primitive — a small styled text element used for form field names, section titles, and metadata.",
      "kdoc": "Aurum's label primitive — a small styled text element used for form\nfield names, section titles, and metadata. The SwiftUI port of\naurum-android's `AurumLabel`: a thin styling wrapper over `AurumText`.\n\nLabels are NOT badges. Badges have a pill-shaped coloured container;\nlabels are plain styled text with type/emphasis control and optional\nuppercase transformation.",
      "previews": [
        "AurumLabel"
      ],
      "figmaNodeId": "3774:137816",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=3774-137816",
      "figmaTagUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=3774-137816",
      "codeConnectPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumLabel.figma.swift",
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/text/AurumLabel.html",
      "sourcePath": "Sources/Aurum/Component/Text/AurumLabel.swift",
      "intendedUse": "Use for short annotative text — form-field labels, helper / caption text, metadata rows. Labels read as supporting context around real content. For paragraph copy reach for `AurumText` with a `bodyM`+ style; for status pills use `AurumBadge`.",
      "usage": {
        "do": [
          "Pick `type` from intent — `.default` for neutral context, `.subtle` for de-emphasised metadata, `.strong` when the label needs to stand out as a section break.",
          "Use `isUpperCase: true` only for short section markers (\"DETAILS\", \"OPTIONS\") — uppercase paragraphs become unreadable."
        ],
        "dont": [
          "Use as the page or section title — those are `AurumText` with `title*` styles or `AurumSectionHeader`.",
          "Reach for `AurumLabel` when you need a coloured pill — that's `AurumBadge`."
        ]
      }
    },
    {
      "name": "AurumText",
      "family": "text",
      "platforms": [
        "ios"
      ],
      "summary": "Aurum's canonical text primitive — the SwiftUI port of aurum-android's `AurumText`.",
      "kdoc": "Aurum's canonical text primitive — the SwiftUI port of aurum-android's\n`AurumText`.\n\nWraps `SwiftUI.Text` and applies Aurum typography tokens through\n`.aurumType(_:)` (custom Inter/Frank Ruhl with exact Figma line height and\nDynamic Type scaling). If no `style` is provided, defaults to\n`Aurum.type.bodyMRegular`.\n\n### Foreground resolution order (mirrors Android)\n1. Explicit `foreground:` shape style — gradients and any `ShapeStyle`\n(the analogue of Android's `style.brush` channel).\n2. Explicit `color:` parameter.\n3. Aurum's default text colour (`Aurum.colors.surface.textDefaultNormal`).\n\n`AurumText` never inherits the ambient foreground — like Android's, it\nalways resolves to a concrete Aurum token unless told otherwise.\n\n`alignment` and `lineLimit` are applied only when non-nil, so an outer\n`.multilineTextAlignment(...)` / `.lineLimit(...)` still flows through\nthe environment when the parameters are left at their defaults.\n\nDeliberate deviations from Android (platform idiom):\n- No `minLines` / `overflow` / `onTextLayout` — SwiftUI truncates with\ntail ellipsis at `lineLimit` and exposes no layout callback.\n- Per-span gradients (`AnnotatedString` brush spans) have no\n`AttributedString` equivalent; whole-text gradients use `foreground:`.",
      "previews": [
        "AurumText roles"
      ],
      "figmaNodeId": null,
      "figmaUrl": null,
      "figmaTagUrl": null,
      "codeConnectPath": null,
      "galleryUrl": "https://changejarapp.github.io/aurum-ios/component/text/AurumText.html",
      "sourcePath": "Sources/Aurum/Component/Text/AurumText.swift",
      "intendedUse": "Use as the canonical text primitive for **any** text rendered in feature code. Picks up Aurum typography + colour tokens by default so visual variants flow without per-call wiring, and keeps Dynamic Type scaling on the token's anchor curve.",
      "usage": {
        "do": [
          "Set `style: Aurum.type.<role>` to anchor in the design system's typographic scale.",
          "Pass `color:` from `Aurum.colors.surface.text*` tokens — never a raw `Color(...)` literal.",
          "Cap multi-line copy with `lineLimit:` for predictable truncation in lists / cards."
        ],
        "dont": [
          "Use bare `SwiftUI.Text` with `.font(...)` in feature code; this is exactly what `AurumText` prevents.",
          "Pass `color:` and `foreground:` together — `foreground` wins; pick one channel.",
          "Apply `.font(...)` after an `AurumText` — that bypasses `Aurum.type.*` and is how typography drift starts."
        ]
      }
    }
  ],
  "tokens": {
    "color": {
      "semantic": {
        "surface": [
          {
            "name": "bgPageBase",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "surface/background/page/base"
          },
          {
            "name": "bgPageBaseAlternate",
            "hex": "#ECEEF3",
            "alpha": 1,
            "path": "surface/background/page/base-alternate"
          },
          {
            "name": "bgSurfaceLowContrast",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "surface/background/surface/lowContrast"
          },
          {
            "name": "bgSurfaceMidContrast",
            "hex": "#ECEEF3",
            "alpha": 1,
            "path": "surface/background/surface/midContrast"
          },
          {
            "name": "bgSurfaceHighContrast",
            "hex": "#DCDDE3",
            "alpha": 1,
            "path": "surface/background/surface/highContrast"
          },
          {
            "name": "bgBrandSubtle",
            "hex": "#7029CC",
            "alpha": 0.09,
            "path": "surface/background/brand/subtle"
          },
          {
            "name": "bgBrandIntense",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "surface/background/brand/intense"
          },
          {
            "name": "borderSurfaceInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "surface/border/surface/inverse"
          },
          {
            "name": "borderSurfaceLowContrast",
            "hex": "#ECEEF3",
            "alpha": 1,
            "path": "surface/border/surface/lowContrast"
          },
          {
            "name": "borderSurfaceMidContrast",
            "hex": "#DCDDE3",
            "alpha": 1,
            "path": "surface/border/surface/midContrast"
          },
          {
            "name": "borderSurfaceHighContrast",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "surface/border/surface/highContrast"
          },
          {
            "name": "borderBrandMuted",
            "hex": "#7029CC",
            "alpha": 0.09,
            "path": "surface/border/brand/muted"
          },
          {
            "name": "borderBrandNormal",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "surface/border/brand/normal"
          },
          {
            "name": "textDefaultNormal",
            "hex": "#121212",
            "alpha": 1,
            "path": "surface/text/default/normal"
          },
          {
            "name": "textDefaultSubtle",
            "hex": "#4A4F5C",
            "alpha": 1,
            "path": "surface/text/default/subtle"
          },
          {
            "name": "textDefaultDisabled",
            "hex": "#848A99",
            "alpha": 1,
            "path": "surface/text/default/disabled"
          },
          {
            "name": "textDefaultInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "surface/text/default/inverse"
          },
          {
            "name": "textBrandNormal",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "surface/text/brand/normal"
          },
          {
            "name": "textOnBrandNormal",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "surface/text/onBrand/normal"
          },
          {
            "name": "textOnBrandSubtle",
            "hex": "#E2D4F5",
            "alpha": 1,
            "path": "surface/text/onBrand/subtle"
          },
          {
            "name": "textStaticWhiteNormal",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "surface/text/staticWhite/normal"
          },
          {
            "name": "textStaticWhiteSubtle",
            "hex": "#FFFFFF",
            "alpha": 0.88,
            "path": "surface/text/staticWhite/subtle"
          },
          {
            "name": "textStaticWhiteDisabled",
            "hex": "#FFFFFF",
            "alpha": 0.32,
            "path": "surface/text/staticWhite/disabled"
          },
          {
            "name": "textStaticBlackNormal",
            "hex": "#121212",
            "alpha": 1,
            "path": "surface/text/staticBlack/normal"
          },
          {
            "name": "textStaticBlackSubtle",
            "hex": "#121212",
            "alpha": 0.72,
            "path": "surface/text/staticBlack/subtle"
          },
          {
            "name": "textStaticBlackDisabled",
            "hex": "#000000",
            "alpha": 0.32,
            "path": "surface/text/staticBlack/disabled"
          },
          {
            "name": "iconDefaultNormal",
            "hex": "#121212",
            "alpha": 1,
            "path": "surface/icon/default/normal"
          },
          {
            "name": "iconDefaultSubtle",
            "hex": "#4A4F5C",
            "alpha": 1,
            "path": "surface/icon/default/subtle"
          },
          {
            "name": "iconDefaultDisabled",
            "hex": "#848A99",
            "alpha": 1,
            "path": "surface/icon/default/disabled"
          },
          {
            "name": "iconDefaultInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "surface/icon/default/inverse"
          },
          {
            "name": "iconBrandNormal",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "surface/icon/brand/normal"
          },
          {
            "name": "iconOnBrandNormal",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "surface/icon/onBrand/normal"
          },
          {
            "name": "iconStaticWhiteNormal",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "surface/icon/staticWhite/normal"
          },
          {
            "name": "iconStaticWhiteSubtle",
            "hex": "#FFFFFF",
            "alpha": 0.88,
            "path": "surface/icon/staticWhite/subtle"
          },
          {
            "name": "iconStaticWhiteDisabled",
            "hex": "#FFFFFF",
            "alpha": 0.32,
            "path": "surface/icon/staticWhite/disabled"
          },
          {
            "name": "iconStaticBlackNormal",
            "hex": "#121212",
            "alpha": 1,
            "path": "surface/icon/staticBlack/normal"
          },
          {
            "name": "iconStaticBlackSubtle",
            "hex": "#121212",
            "alpha": 0.72,
            "path": "surface/icon/staticBlack/subtle"
          },
          {
            "name": "iconStaticBlackDisabled",
            "hex": "#000000",
            "alpha": 0.32,
            "path": "surface/icon/staticBlack/disabled"
          }
        ],
        "feedback": [
          {
            "name": "bgPositiveIntense",
            "hex": "#10A342",
            "alpha": 1,
            "path": "feedback/background/positive/intense"
          },
          {
            "name": "bgPositiveSubtle",
            "hex": "#12B84A",
            "alpha": 0.09,
            "path": "feedback/background/positive/subtle"
          },
          {
            "name": "bgNegativeIntense",
            "hex": "#D83209",
            "alpha": 1,
            "path": "feedback/background/negative/intense"
          },
          {
            "name": "bgNegativeSubtle",
            "hex": "#D83209",
            "alpha": 0.09,
            "path": "feedback/background/negative/subtle"
          },
          {
            "name": "bgNoticeIntense",
            "hex": "#DA6105",
            "alpha": 1,
            "path": "feedback/background/notice/intense"
          },
          {
            "name": "bgNoticeSubtle",
            "hex": "#F26C05",
            "alpha": 0.09,
            "path": "feedback/background/notice/subtle"
          },
          {
            "name": "bgInformationIntense",
            "hex": "#055FDC",
            "alpha": 1,
            "path": "feedback/background/information/intense"
          },
          {
            "name": "bgInformationSubtle",
            "hex": "#055FDC",
            "alpha": 0.09,
            "path": "feedback/background/information/subtle"
          },
          {
            "name": "bgPrimaryIntense",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "feedback/background/primary/intense"
          },
          {
            "name": "bgPrimarySubtle",
            "hex": "#7029CC",
            "alpha": 0.18,
            "path": "feedback/background/primary/subtle"
          },
          {
            "name": "bgNeutralIntense",
            "hex": "#343844",
            "alpha": 1,
            "path": "feedback/background/neutral/intense"
          },
          {
            "name": "bgNeutralSubtle",
            "hex": "#6C849D",
            "alpha": 0.18,
            "path": "feedback/background/neutral/subtle"
          },
          {
            "name": "borderPositiveIntense",
            "hex": "#10A342",
            "alpha": 1,
            "path": "feedback/border/positive/intense"
          },
          {
            "name": "borderPositiveSubtle",
            "hex": "#12B84A",
            "alpha": 0.09,
            "path": "feedback/border/positive/subtle"
          },
          {
            "name": "borderNegativeIntense",
            "hex": "#D83209",
            "alpha": 1,
            "path": "feedback/border/negative/intense"
          },
          {
            "name": "borderNegativeSubtle",
            "hex": "#D83209",
            "alpha": 0.09,
            "path": "feedback/border/negative/subtle"
          },
          {
            "name": "borderNoticeIntense",
            "hex": "#DA6105",
            "alpha": 1,
            "path": "feedback/border/notice/intense"
          },
          {
            "name": "borderNoticeSubtle",
            "hex": "#F26C05",
            "alpha": 0.09,
            "path": "feedback/border/notice/subtle"
          },
          {
            "name": "borderInformationIntense",
            "hex": "#055FDC",
            "alpha": 1,
            "path": "feedback/border/information/intense"
          },
          {
            "name": "borderInformationSubtle",
            "hex": "#055FDC",
            "alpha": 0.09,
            "path": "feedback/border/information/subtle"
          },
          {
            "name": "borderNeutralIntense",
            "hex": "#343844",
            "alpha": 1,
            "path": "feedback/border/neutral/intense"
          },
          {
            "name": "borderNeutralSubtle",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "feedback/border/neutral/subtle"
          },
          {
            "name": "borderPrimaryIntense",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "feedback/border/primary/intense"
          },
          {
            "name": "borderPrimarySubtle",
            "hex": "#7029CC",
            "alpha": 0.18,
            "path": "feedback/border/primary/subtle"
          },
          {
            "name": "textPositiveIntense",
            "hex": "#10A342",
            "alpha": 1,
            "path": "feedback/text/positive/intense"
          },
          {
            "name": "textPositiveSubtle",
            "hex": "#2CD163",
            "alpha": 1,
            "path": "feedback/text/positive/subtle"
          },
          {
            "name": "textPositiveInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/text/positive/inverse"
          },
          {
            "name": "textNegativeIntense",
            "hex": "#D83209",
            "alpha": 1,
            "path": "feedback/text/negative/intense"
          },
          {
            "name": "textNegativeSubtle",
            "hex": "#F14C23",
            "alpha": 1,
            "path": "feedback/text/negative/subtle"
          },
          {
            "name": "textNegativeInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/text/negative/inverse"
          },
          {
            "name": "textNoticeIntense",
            "hex": "#DA6105",
            "alpha": 1,
            "path": "feedback/text/notice/intense"
          },
          {
            "name": "textNoticeSubtle",
            "hex": "#F37B1E",
            "alpha": 1,
            "path": "feedback/text/notice/subtle"
          },
          {
            "name": "textNoticeInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/text/notice/inverse"
          },
          {
            "name": "textInformationIntense",
            "hex": "#055FDC",
            "alpha": 1,
            "path": "feedback/text/information/intense"
          },
          {
            "name": "textInformationSubtle",
            "hex": "#3787F7",
            "alpha": 1,
            "path": "feedback/text/information/subtle"
          },
          {
            "name": "textInformationInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/text/information/inverse"
          },
          {
            "name": "textNeutralIntense",
            "hex": "#121212",
            "alpha": 1,
            "path": "feedback/text/neutral/intense"
          },
          {
            "name": "textNeutralSubtle",
            "hex": "#4A4F5C",
            "alpha": 1,
            "path": "feedback/text/neutral/subtle"
          },
          {
            "name": "textNeutralInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/text/neutral/inverse"
          },
          {
            "name": "textPrimaryIntense",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "feedback/text/primary/intense"
          },
          {
            "name": "textPrimarySubtle",
            "hex": "#8D54D6",
            "alpha": 1,
            "path": "feedback/text/primary/subtle"
          },
          {
            "name": "textPrimaryInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/text/primary/inverse"
          },
          {
            "name": "iconPositiveIntense",
            "hex": "#10A342",
            "alpha": 1,
            "path": "feedback/icon/positive/intense"
          },
          {
            "name": "iconPositiveSubtle",
            "hex": "#2CD163",
            "alpha": 1,
            "path": "feedback/icon/positive/subtle"
          },
          {
            "name": "iconPositiveInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/icon/positive/inverse"
          },
          {
            "name": "iconNegativeIntense",
            "hex": "#D83209",
            "alpha": 1,
            "path": "feedback/icon/negative/intense"
          },
          {
            "name": "iconNegativeSubtle",
            "hex": "#F14C23",
            "alpha": 1,
            "path": "feedback/icon/negative/subtle"
          },
          {
            "name": "iconNegativeInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/icon/negative/inverse"
          },
          {
            "name": "iconNoticeIntense",
            "hex": "#DA6105",
            "alpha": 1,
            "path": "feedback/icon/notice/intense"
          },
          {
            "name": "iconNoticeSubtle",
            "hex": "#F37B1E",
            "alpha": 1,
            "path": "feedback/icon/notice/subtle"
          },
          {
            "name": "iconNoticeInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/icon/notice/inverse"
          },
          {
            "name": "iconInformationIntense",
            "hex": "#055FDC",
            "alpha": 1,
            "path": "feedback/icon/information/intense"
          },
          {
            "name": "iconInformationSubtle",
            "hex": "#3787F7",
            "alpha": 1,
            "path": "feedback/icon/information/subtle"
          },
          {
            "name": "iconInformationInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/icon/information/inverse"
          },
          {
            "name": "iconNeutralIntense",
            "hex": "#343844",
            "alpha": 1,
            "path": "feedback/icon/neutral/intense"
          },
          {
            "name": "iconNeutralSubtle",
            "hex": "#4A4F5C",
            "alpha": 1,
            "path": "feedback/icon/neutral/subtle"
          },
          {
            "name": "iconNeutralInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/icon/neutral/inverse"
          },
          {
            "name": "iconPrimaryIntense",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "feedback/icon/primary/intense"
          },
          {
            "name": "iconPrimarySubtle",
            "hex": "#8D54D6",
            "alpha": 1,
            "path": "feedback/icon/primary/subtle"
          },
          {
            "name": "iconPrimaryInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "feedback/icon/primary/inverse"
          }
        ],
        "interactive": [
          {
            "name": "bgPositiveDefault",
            "hex": "#10A342",
            "alpha": 1,
            "path": "interactive/background/positive/default"
          },
          {
            "name": "bgPositiveHighlighted",
            "hex": "#0C7A31",
            "alpha": 1,
            "path": "interactive/background/positive/highlighted"
          },
          {
            "name": "bgPositiveDisabled",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "interactive/background/positive/disabled"
          },
          {
            "name": "bgPositiveFaded",
            "hex": "#D0F5DC",
            "alpha": 1,
            "path": "interactive/background/positive/faded"
          },
          {
            "name": "bgNegativeDefault",
            "hex": "#D83209",
            "alpha": 1,
            "path": "interactive/background/negative/default"
          },
          {
            "name": "bgNegativeHighlighted",
            "hex": "#902206",
            "alpha": 1,
            "path": "interactive/background/negative/highlighted"
          },
          {
            "name": "bgNegativeDisabled",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "interactive/background/negative/disabled"
          },
          {
            "name": "bgNegativeFaded",
            "hex": "#FCD7CE",
            "alpha": 1,
            "path": "interactive/background/negative/faded"
          },
          {
            "name": "bgInformationDefault",
            "hex": "#055FDC",
            "alpha": 1,
            "path": "interactive/background/information/default"
          },
          {
            "name": "bgInformationHighlighted",
            "hex": "#033F93",
            "alpha": 1,
            "path": "interactive/background/information/highlighted"
          },
          {
            "name": "bgInformationDisabled",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "interactive/background/information/disabled"
          },
          {
            "name": "bgInformationFaded",
            "hex": "#CDE1FD",
            "alpha": 1,
            "path": "interactive/background/information/faded"
          },
          {
            "name": "bgNeutralDefault",
            "hex": "#DCDDE3",
            "alpha": 1,
            "path": "interactive/background/neutral/default"
          },
          {
            "name": "bgNeutralHighlighted",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "interactive/background/neutral/highlighted"
          },
          {
            "name": "bgNeutralDisabled",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "interactive/background/neutral/disabled"
          },
          {
            "name": "bgNeutralFaded",
            "hex": "#ECEEF3",
            "alpha": 1,
            "path": "interactive/background/neutral/faded"
          },
          {
            "name": "bgNeutralInverse",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "interactive/background/neutral/Inverse"
          },
          {
            "name": "bgPrimaryDefault",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "interactive/background/primary/default"
          },
          {
            "name": "bgPrimaryHighlighted",
            "hex": "#43197A",
            "alpha": 1,
            "path": "interactive/background/primary/highlighted"
          },
          {
            "name": "bgPrimaryDisabled",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "interactive/background/primary/disabled"
          },
          {
            "name": "bgPrimaryFaded",
            "hex": "#E2D4F5",
            "alpha": 1,
            "path": "interactive/background/primary/faded"
          },
          {
            "name": "bgStaticWhiteDefault",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "interactive/background/staticWhite/default"
          },
          {
            "name": "bgStaticWhiteHighlighted",
            "hex": "#FFFFFF",
            "alpha": 0.8,
            "path": "interactive/background/staticWhite/highlighted"
          },
          {
            "name": "bgStaticWhiteDisabled",
            "hex": "#FFFFFF",
            "alpha": 0.18,
            "path": "interactive/background/staticWhite/disabled"
          },
          {
            "name": "bgStaticWhiteFaded",
            "hex": "#FFFFFF",
            "alpha": 0.18,
            "path": "interactive/background/staticWhite/faded"
          },
          {
            "name": "bgStaticWhiteFadedHighlighted",
            "hex": "#FFFFFF",
            "alpha": 0.32,
            "path": "interactive/background/staticWhite/fadedHighlighted"
          },
          {
            "name": "bgStaticBlackDefault",
            "hex": "#121212",
            "alpha": 1,
            "path": "interactive/background/staticBlack/default"
          },
          {
            "name": "bgStaticBlackHighlighted",
            "hex": "#121212",
            "alpha": 0.8,
            "path": "interactive/background/staticBlack/highlighted"
          },
          {
            "name": "bgStaticBlackDisabled",
            "hex": "#121212",
            "alpha": 0.18,
            "path": "interactive/background/staticBlack/disabled"
          },
          {
            "name": "bgStaticBlackFaded",
            "hex": "#121212",
            "alpha": 0.18,
            "path": "interactive/background/staticBlack/faded"
          },
          {
            "name": "bgStaticBlackFadedHighlighted",
            "hex": "#121212",
            "alpha": 0.32,
            "path": "interactive/background/staticBlack/fadedHighlighted"
          },
          {
            "name": "borderPositiveDefault",
            "hex": "#10A342",
            "alpha": 1,
            "path": "interactive/border/positive/default"
          },
          {
            "name": "borderPositiveHighlighted",
            "hex": "#0C7A31",
            "alpha": 1,
            "path": "interactive/border/positive/highlighted"
          },
          {
            "name": "borderPositiveDisabled",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "interactive/border/positive/disabled"
          },
          {
            "name": "borderPositiveMuted",
            "hex": "#12B84A",
            "alpha": 0.09,
            "path": "interactive/border/positive/muted"
          },
          {
            "name": "borderNegativeDefault",
            "hex": "#D83209",
            "alpha": 1,
            "path": "interactive/border/negative/default"
          },
          {
            "name": "borderNegativeHighlighted",
            "hex": "#902206",
            "alpha": 1,
            "path": "interactive/border/negative/highlighted"
          },
          {
            "name": "borderNegativeDisabled",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "interactive/border/negative/disabled"
          },
          {
            "name": "borderNegativeMuted",
            "hex": "#D83209",
            "alpha": 0.09,
            "path": "interactive/border/negative/muted"
          },
          {
            "name": "borderInformationDefault",
            "hex": "#055FDC",
            "alpha": 1,
            "path": "interactive/border/information/default"
          },
          {
            "name": "borderInformationHighlighted",
            "hex": "#033F93",
            "alpha": 1,
            "path": "interactive/border/information/highlighted"
          },
          {
            "name": "borderInformationDisabled",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "interactive/border/information/disabled"
          },
          {
            "name": "borderInformationMuted",
            "hex": "#055FDC",
            "alpha": 0.09,
            "path": "interactive/border/information/muted"
          },
          {
            "name": "borderNeutralDefault",
            "hex": "#ECEEF3",
            "alpha": 1,
            "path": "interactive/border/neutral/default"
          },
          {
            "name": "borderNeutralHighlighted",
            "hex": "#A4A9B6",
            "alpha": 1,
            "path": "interactive/border/neutral/highlighted"
          },
          {
            "name": "borderNeutralDisabled",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "interactive/border/neutral/disabled"
          },
          {
            "name": "borderNeutralMuted",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "interactive/border/neutral/muted"
          },
          {
            "name": "borderPrimaryDefault",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "interactive/border/primary/default"
          },
          {
            "name": "borderPrimaryHighlighted",
            "hex": "#43197A",
            "alpha": 1,
            "path": "interactive/border/primary/highlighted"
          },
          {
            "name": "borderPrimaryDisabled",
            "hex": "#6C849D",
            "alpha": 0.09,
            "path": "interactive/border/primary/disabled"
          },
          {
            "name": "borderPrimaryMuted",
            "hex": "#7029CC",
            "alpha": 0.09,
            "path": "interactive/border/primary/muted"
          },
          {
            "name": "textPositiveNormal",
            "hex": "#10A342",
            "alpha": 1,
            "path": "interactive/text/positive/normal"
          },
          {
            "name": "textPositiveSubtle",
            "hex": "#43D675",
            "alpha": 1,
            "path": "interactive/text/positive/subtle"
          },
          {
            "name": "textPositiveDisabled",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "interactive/text/positive/disabled"
          },
          {
            "name": "textNegativeNormal",
            "hex": "#D83209",
            "alpha": 1,
            "path": "interactive/text/negative/normal"
          },
          {
            "name": "textNegativeSubtle",
            "hex": "#F3603B",
            "alpha": 1,
            "path": "interactive/text/negative/subtle"
          },
          {
            "name": "textNegativeDisabled",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "interactive/text/negative/disabled"
          },
          {
            "name": "textNoticeNormal",
            "hex": "#055FDC",
            "alpha": 1,
            "path": "interactive/text/notice/normal"
          },
          {
            "name": "textNoticeSubtle",
            "hex": "#3787F7",
            "alpha": 1,
            "path": "interactive/text/notice/subtle"
          },
          {
            "name": "textNoticeDisabled",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "interactive/text/notice/disabled"
          },
          {
            "name": "textNeutralNormal",
            "hex": "#121212",
            "alpha": 1,
            "path": "interactive/text/neutral/normal"
          },
          {
            "name": "textNeutralSubtle",
            "hex": "#4A4F5C",
            "alpha": 1,
            "path": "interactive/text/neutral/subtle"
          },
          {
            "name": "textNeutralDisabled",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "interactive/text/neutral/disabled"
          },
          {
            "name": "textPrimaryNormal",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "interactive/text/primary/normal"
          },
          {
            "name": "textPrimarySubtle",
            "hex": "#8D54D6",
            "alpha": 1,
            "path": "interactive/text/primary/subtle"
          },
          {
            "name": "textPrimaryDisabled",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "interactive/text/primary/disabled"
          },
          {
            "name": "textOnPrimaryNormal",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "interactive/text/onPrimary/normal"
          },
          {
            "name": "textOnPrimarySubtle",
            "hex": "#FFFFFF",
            "alpha": 0.88,
            "path": "interactive/text/onPrimary/subtle"
          },
          {
            "name": "textOnPrimaryDisabled",
            "hex": "#FFFFFF",
            "alpha": 0.32,
            "path": "interactive/text/onPrimary/disabled"
          },
          {
            "name": "textStaticWhiteNormal",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "interactive/text/staticWhite/normal"
          },
          {
            "name": "textStaticWhiteSubtle",
            "hex": "#FFFFFF",
            "alpha": 0.8,
            "path": "interactive/text/staticWhite/subtle"
          },
          {
            "name": "textStaticWhiteDisabled",
            "hex": "#FFFFFF",
            "alpha": 0.32,
            "path": "interactive/text/staticWhite/disabled"
          },
          {
            "name": "textStaticBlackNormal",
            "hex": "#121212",
            "alpha": 1,
            "path": "interactive/text/staticBlack/normal"
          },
          {
            "name": "textStaticBlackSubtle",
            "hex": "#121212",
            "alpha": 0.8,
            "path": "interactive/text/staticBlack/subtle"
          },
          {
            "name": "textStaticBlackDisabled",
            "hex": "#121212",
            "alpha": 0.32,
            "path": "interactive/text/staticBlack/disabled"
          },
          {
            "name": "iconPositiveNormal",
            "hex": "#10A342",
            "alpha": 1,
            "path": "interactive/icon/positive/normal"
          },
          {
            "name": "iconPositiveSubtle",
            "hex": "#43D675",
            "alpha": 1,
            "path": "interactive/icon/positive/subtle"
          },
          {
            "name": "iconPositiveDisabled",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "interactive/icon/positive/disabled"
          },
          {
            "name": "iconNegativeNormal",
            "hex": "#D83209",
            "alpha": 1,
            "path": "interactive/icon/negative/normal"
          },
          {
            "name": "iconNegativeSubtle",
            "hex": "#F3603B",
            "alpha": 1,
            "path": "interactive/icon/negative/subtle"
          },
          {
            "name": "iconNegativeDisabled",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "interactive/icon/negative/disabled"
          },
          {
            "name": "iconNoticeNormal",
            "hex": "#055FDC",
            "alpha": 1,
            "path": "interactive/icon/notice/normal"
          },
          {
            "name": "iconNoticeSubtle",
            "hex": "#3787F7",
            "alpha": 1,
            "path": "interactive/icon/notice/subtle"
          },
          {
            "name": "iconNoticeDisabled",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "interactive/icon/notice/disabled"
          },
          {
            "name": "iconPrimaryNormal",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "interactive/icon/primary/normal"
          },
          {
            "name": "iconPrimarySubtle",
            "hex": "#8D54D6",
            "alpha": 1,
            "path": "interactive/icon/primary/subtle"
          },
          {
            "name": "iconPrimaryDisabled",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "interactive/icon/primary/disabled"
          },
          {
            "name": "iconOnPrimaryNormal",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "interactive/icon/onPrimary/normal"
          },
          {
            "name": "iconOnPrimarySubtle",
            "hex": "#FFFFFF",
            "alpha": 0.88,
            "path": "interactive/icon/onPrimary/subtle"
          },
          {
            "name": "iconOnPrimaryDisabled",
            "hex": "#FFFFFF",
            "alpha": 0.32,
            "path": "interactive/icon/onPrimary/disabled"
          },
          {
            "name": "iconNeutralNormal",
            "hex": "#121212",
            "alpha": 1,
            "path": "interactive/icon/neutral/normal"
          },
          {
            "name": "iconNeutralSubtle",
            "hex": "#4A4F5C",
            "alpha": 1,
            "path": "interactive/icon/neutral/subtle"
          },
          {
            "name": "iconNeutralDisabled",
            "hex": "#C3C7D1",
            "alpha": 1,
            "path": "interactive/icon/neutral/disabled"
          },
          {
            "name": "iconStaticWhiteNormal",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "interactive/icon/staticWhite/normal"
          },
          {
            "name": "iconStaticWhiteSubtle",
            "hex": "#FFFFFF",
            "alpha": 0.8,
            "path": "interactive/icon/staticWhite/subtle"
          },
          {
            "name": "iconStaticWhiteDisabled",
            "hex": "#FFFFFF",
            "alpha": 0.32,
            "path": "interactive/icon/staticWhite/disabled"
          },
          {
            "name": "iconStaticBlackNormal",
            "hex": "#121212",
            "alpha": 1,
            "path": "interactive/icon/staticBlack/normal"
          },
          {
            "name": "iconStaticBlackSubtle",
            "hex": "#121212",
            "alpha": 0.8,
            "path": "interactive/icon/staticBlack/subtle"
          },
          {
            "name": "iconStaticBlackDisabled",
            "hex": "#121212",
            "alpha": 0.32,
            "path": "interactive/icon/staticBlack/disabled"
          }
        ],
        "overlay": [
          {
            "name": "bgNormal",
            "hex": "#121212",
            "alpha": 0.88,
            "path": "overlay/background/normal"
          },
          {
            "name": "bgSubtle",
            "hex": "#121212",
            "alpha": 0.56,
            "path": "overlay/background/subtle"
          }
        ],
        "popup": [
          {
            "name": "bgSubtle",
            "hex": "#ECEEF3",
            "alpha": 1,
            "path": "popup/background/subtle"
          },
          {
            "name": "bgIntense",
            "hex": "#FFFFFF",
            "alpha": 1,
            "path": "popup/background/intense"
          },
          {
            "name": "bordersSubtle",
            "hex": "#DCDDE3",
            "alpha": 1,
            "path": "popup/borders/subtle"
          },
          {
            "name": "bordersIntense",
            "hex": "#343844",
            "alpha": 1,
            "path": "popup/borders/intense"
          }
        ],
        "elevation": [
          {
            "name": "lowRaised",
            "hex": "#121212",
            "alpha": 0.09,
            "path": "elevation/lowRaised"
          },
          {
            "name": "midRaised",
            "hex": "#121212",
            "alpha": 0.12,
            "path": "elevation/midRaised"
          },
          {
            "name": "highRaised",
            "hex": "#121212",
            "alpha": 0.18,
            "path": "elevation/highRaised"
          },
          {
            "name": "_bottomsheet",
            "hex": "#121212",
            "alpha": 0.18,
            "path": "elevation/_bottomsheet"
          },
          {
            "name": "_toast",
            "hex": "#121212",
            "alpha": 0.12,
            "path": "elevation/_toast"
          }
        ]
      },
      "visual": {
        "purple": [
          {
            "name": "purple50",
            "hex": "#E2D4F5",
            "alpha": 1,
            "path": "colors/purple/50"
          },
          {
            "name": "purple100",
            "hex": "#C6A9EB",
            "alpha": 1,
            "path": "colors/purple/100"
          },
          {
            "name": "purple200",
            "hex": "#A97FE0",
            "alpha": 1,
            "path": "colors/purple/200"
          },
          {
            "name": "purple300",
            "hex": "#8D54D6",
            "alpha": 1,
            "path": "colors/purple/300"
          },
          {
            "name": "purple400",
            "hex": "#7E3ED1",
            "alpha": 1,
            "path": "colors/purple/400"
          },
          {
            "name": "purple500",
            "hex": "#7029CC",
            "alpha": 1,
            "path": "colors/purple/500"
          },
          {
            "name": "purple600",
            "hex": "#6525B8",
            "alpha": 1,
            "path": "colors/purple/600"
          },
          {
            "name": "purple700",
            "hex": "#5A21A3",
            "alpha": 1,
            "path": "colors/purple/700"
          },
          {
            "name": "purple800",
            "hex": "#43197A",
            "alpha": 1,
            "path": "colors/purple/800"
          },
          {
            "name": "purple900",
            "hex": "#2D1052",
            "alpha": 1,
            "path": "colors/purple/900"
          },
          {
            "name": "purple1000",
            "hex": "#160829",
            "alpha": 1,
            "path": "colors/purple/1000"
          }
        ],
        "yellow": [
          {
            "name": "yellow50",
            "hex": "#FDF4CE",
            "alpha": 1,
            "path": "colors/yellow/50"
          },
          {
            "name": "yellow100",
            "hex": "#FCE99D",
            "alpha": 1,
            "path": "colors/yellow/100"
          },
          {
            "name": "yellow200",
            "hex": "#FADE6C",
            "alpha": 1,
            "path": "colors/yellow/200"
          },
          {
            "name": "yellow300",
            "hex": "#F9D33B",
            "alpha": 1,
            "path": "colors/yellow/300"
          },
          {
            "name": "yellow400",
            "hex": "#F8CD23",
            "alpha": 1,
            "path": "colors/yellow/400"
          },
          {
            "name": "yellow500",
            "hex": "#F7C80A",
            "alpha": 1,
            "path": "colors/yellow/500"
          },
          {
            "name": "yellow600",
            "hex": "#DEB409",
            "alpha": 1,
            "path": "colors/yellow/600"
          },
          {
            "name": "yellow700",
            "hex": "#C6A008",
            "alpha": 1,
            "path": "colors/yellow/700"
          },
          {
            "name": "yellow800",
            "hex": "#947806",
            "alpha": 1,
            "path": "colors/yellow/800"
          },
          {
            "name": "yellow900",
            "hex": "#635004",
            "alpha": 1,
            "path": "colors/yellow/900"
          },
          {
            "name": "yellow1000",
            "hex": "#312802",
            "alpha": 1,
            "path": "colors/yellow/1000"
          }
        ],
        "green": [
          {
            "name": "green50",
            "hex": "#D0F5DC",
            "alpha": 1,
            "path": "colors/green/50"
          },
          {
            "name": "green100",
            "hex": "#A1EBBA",
            "alpha": 1,
            "path": "colors/green/100"
          },
          {
            "name": "green200",
            "hex": "#72E097",
            "alpha": 1,
            "path": "colors/green/200"
          },
          {
            "name": "green300",
            "hex": "#43D675",
            "alpha": 1,
            "path": "colors/green/300"
          },
          {
            "name": "green400",
            "hex": "#2CD163",
            "alpha": 1,
            "path": "colors/green/400"
          },
          {
            "name": "green500",
            "hex": "#14CC52",
            "alpha": 1,
            "path": "colors/green/500"
          },
          {
            "name": "green600",
            "hex": "#12B84A",
            "alpha": 1,
            "path": "colors/green/600"
          },
          {
            "name": "green700",
            "hex": "#10A342",
            "alpha": 1,
            "path": "colors/green/700"
          },
          {
            "name": "green800",
            "hex": "#0C7A31",
            "alpha": 1,
            "path": "colors/green/800"
          },
          {
            "name": "green900",
            "hex": "#085221",
            "alpha": 1,
            "path": "colors/green/900"
          },
          {
            "name": "green1000",
            "hex": "#042910",
            "alpha": 1,
            "path": "colors/green/1000"
          }
        ],
        "red": [
          {
            "name": "red50",
            "hex": "#FCD7CE",
            "alpha": 1,
            "path": "colors/red/50"
          },
          {
            "name": "red100",
            "hex": "#F9AF9D",
            "alpha": 1,
            "path": "colors/red/100"
          },
          {
            "name": "red200",
            "hex": "#F6886C",
            "alpha": 1,
            "path": "colors/red/200"
          },
          {
            "name": "red300",
            "hex": "#F3603B",
            "alpha": 1,
            "path": "colors/red/300"
          },
          {
            "name": "red400",
            "hex": "#F14C23",
            "alpha": 1,
            "path": "colors/red/400"
          },
          {
            "name": "red500",
            "hex": "#F0380A",
            "alpha": 1,
            "path": "colors/red/500"
          },
          {
            "name": "red600",
            "hex": "#D83209",
            "alpha": 1,
            "path": "colors/red/600"
          },
          {
            "name": "red700",
            "hex": "#C02D08",
            "alpha": 1,
            "path": "colors/red/700"
          },
          {
            "name": "red800",
            "hex": "#902206",
            "alpha": 1,
            "path": "colors/red/800"
          },
          {
            "name": "red900",
            "hex": "#601604",
            "alpha": 1,
            "path": "colors/red/900"
          },
          {
            "name": "red1000",
            "hex": "#300B02",
            "alpha": 1,
            "path": "colors/red/1000"
          }
        ],
        "orange": [
          {
            "name": "orange50",
            "hex": "#FCE2CD",
            "alpha": 1,
            "path": "colors/orange/50"
          },
          {
            "name": "orange100",
            "hex": "#FAC49B",
            "alpha": 1,
            "path": "colors/orange/100"
          },
          {
            "name": "orange200",
            "hex": "#F7A769",
            "alpha": 1,
            "path": "colors/orange/200"
          },
          {
            "name": "orange300",
            "hex": "#F58937",
            "alpha": 1,
            "path": "colors/orange/300"
          },
          {
            "name": "orange400",
            "hex": "#F37B1E",
            "alpha": 1,
            "path": "colors/orange/400"
          },
          {
            "name": "orange500",
            "hex": "#F26C05",
            "alpha": 1,
            "path": "colors/orange/500"
          },
          {
            "name": "orange600",
            "hex": "#DA6105",
            "alpha": 1,
            "path": "colors/orange/600"
          },
          {
            "name": "orange700",
            "hex": "#C25604",
            "alpha": 1,
            "path": "colors/orange/700"
          },
          {
            "name": "orange800",
            "hex": "#914103",
            "alpha": 1,
            "path": "colors/orange/800"
          },
          {
            "name": "orange900",
            "hex": "#612B02",
            "alpha": 1,
            "path": "colors/orange/900"
          },
          {
            "name": "orange1000",
            "hex": "#301601",
            "alpha": 1,
            "path": "colors/orange/1000"
          }
        ],
        "blue": [
          {
            "name": "blue50",
            "hex": "#CDE1FD",
            "alpha": 1,
            "path": "colors/blue/50"
          },
          {
            "name": "blue100",
            "hex": "#9BC3FB",
            "alpha": 1,
            "path": "colors/blue/100"
          },
          {
            "name": "blue200",
            "hex": "#69A5F9",
            "alpha": 1,
            "path": "colors/blue/200"
          },
          {
            "name": "blue300",
            "hex": "#3787F7",
            "alpha": 1,
            "path": "colors/blue/300"
          },
          {
            "name": "blue400",
            "hex": "#1E78F6",
            "alpha": 1,
            "path": "colors/blue/400"
          },
          {
            "name": "blue500",
            "hex": "#0569F5",
            "alpha": 1,
            "path": "colors/blue/500"
          },
          {
            "name": "blue600",
            "hex": "#055FDC",
            "alpha": 1,
            "path": "colors/blue/600"
          },
          {
            "name": "blue700",
            "hex": "#0454C4",
            "alpha": 1,
            "path": "colors/blue/700"
          },
          {
            "name": "blue800",
            "hex": "#033F93",
            "alpha": 1,
            "path": "colors/blue/800"
          },
          {
            "name": "blue900",
            "hex": "#022A62",
            "alpha": 1,
            "path": "colors/blue/900"
          },
          {
            "name": "blue1000",
            "hex": "#011531",
            "alpha": 1,
            "path": "colors/blue/1000"
          }
        ],
        "pink": [
          {
            "name": "pink50",
            "hex": "#FCCEE9",
            "alpha": 1,
            "path": "colors/pink/50"
          },
          {
            "name": "pink100",
            "hex": "#FA9ED3",
            "alpha": 1,
            "path": "colors/pink/100"
          },
          {
            "name": "pink200",
            "hex": "#F76DBE",
            "alpha": 1,
            "path": "colors/pink/200"
          },
          {
            "name": "pink300",
            "hex": "#F53DA8",
            "alpha": 1,
            "path": "colors/pink/300"
          },
          {
            "name": "pink400",
            "hex": "#F3249D",
            "alpha": 1,
            "path": "colors/pink/400"
          },
          {
            "name": "pink500",
            "hex": "#F20C92",
            "alpha": 1,
            "path": "colors/pink/500"
          },
          {
            "name": "pink600",
            "hex": "#DA0B83",
            "alpha": 1,
            "path": "colors/pink/600"
          },
          {
            "name": "pink700",
            "hex": "#C20A75",
            "alpha": 1,
            "path": "colors/pink/700"
          },
          {
            "name": "pink800",
            "hex": "#910758",
            "alpha": 1,
            "path": "colors/pink/800"
          },
          {
            "name": "pink900",
            "hex": "#61053A",
            "alpha": 1,
            "path": "colors/pink/900"
          },
          {
            "name": "pink1000",
            "hex": "#30021D",
            "alpha": 1,
            "path": "colors/pink/1000"
          }
        ],
        "silver": [
          {
            "name": "silver50",
            "hex": "#EEF1FC",
            "alpha": 1,
            "path": "colors/silver/50"
          },
          {
            "name": "silver100",
            "hex": "#E1E6F9",
            "alpha": 1,
            "path": "colors/silver/100"
          },
          {
            "name": "silver200",
            "hex": "#CBD3F3",
            "alpha": 1,
            "path": "colors/silver/200"
          },
          {
            "name": "silver300",
            "hex": "#A1B0E5",
            "alpha": 1,
            "path": "colors/silver/300"
          },
          {
            "name": "silver400",
            "hex": "#7A8ACC",
            "alpha": 1,
            "path": "colors/silver/400"
          },
          {
            "name": "silver500",
            "hex": "#6070AE",
            "alpha": 1,
            "path": "colors/silver/500"
          },
          {
            "name": "silver600",
            "hex": "#4C588B",
            "alpha": 1,
            "path": "colors/silver/600"
          },
          {
            "name": "silver700",
            "hex": "#303C6E",
            "alpha": 1,
            "path": "colors/silver/700"
          },
          {
            "name": "silver800",
            "hex": "#263056",
            "alpha": 1,
            "path": "colors/silver/800"
          },
          {
            "name": "silver900",
            "hex": "#1C233E",
            "alpha": 1,
            "path": "colors/silver/900"
          },
          {
            "name": "silver1000",
            "hex": "#14182A",
            "alpha": 1,
            "path": "colors/silver/1000"
          }
        ]
      }
    },
    "spacing": [
      {
        "name": "s0",
        "dp": 0
      },
      {
        "name": "s1",
        "dp": 2
      },
      {
        "name": "s2",
        "dp": 4
      },
      {
        "name": "s3",
        "dp": 8
      },
      {
        "name": "s4",
        "dp": 12
      },
      {
        "name": "s5",
        "dp": 16
      },
      {
        "name": "s6",
        "dp": 20
      },
      {
        "name": "s7",
        "dp": 24
      },
      {
        "name": "s8",
        "dp": 32
      },
      {
        "name": "s9",
        "dp": 40
      },
      {
        "name": "s10",
        "dp": 48
      },
      {
        "name": "s11",
        "dp": 56
      }
    ],
    "radius": [
      {
        "name": "none",
        "dp": 0
      },
      {
        "name": "xs",
        "dp": 1.5
      },
      {
        "name": "sm",
        "dp": 2
      },
      {
        "name": "md",
        "dp": 4
      },
      {
        "name": "lg",
        "dp": 8
      },
      {
        "name": "xl",
        "dp": 16
      },
      {
        "name": "xxl",
        "dp": 24
      },
      {
        "name": "max",
        "dp": 1000
      }
    ],
    "borderWidth": [
      {
        "name": "none",
        "dp": 0
      },
      {
        "name": "xs",
        "dp": 0.5
      },
      {
        "name": "sm",
        "dp": 1
      },
      {
        "name": "md",
        "dp": 1.5
      },
      {
        "name": "lg",
        "dp": 2
      },
      {
        "name": "xl",
        "dp": 4
      }
    ],
    "iconSize": [
      {
        "name": "xs",
        "dp": 8
      },
      {
        "name": "sm",
        "dp": 12
      },
      {
        "name": "md",
        "dp": 16
      },
      {
        "name": "lg",
        "dp": 20
      },
      {
        "name": "xl",
        "dp": 24
      },
      {
        "name": "xxl",
        "dp": 32
      }
    ],
    "elevation": [
      {
        "name": "lowRaised",
        "offsetY": 2.0,
        "blur": 16.0,
        "tintName": "lowRaised"
      },
      {
        "name": "midRaised",
        "offsetY": 8.0,
        "blur": 24.0,
        "tintName": "midRaised"
      },
      {
        "name": "highRaised",
        "offsetY": 16.0,
        "blur": 48.0,
        "tintName": "highRaised"
      },
      {
        "name": "bottomSheet",
        "offsetY": 16.0,
        "blur": 48.0,
        "tintName": "bottomSheet"
      }
    ],
    "typography": [
      {
        "name": "displaySBold",
        "sizeSp": 16.0,
        "lineHeightSp": 24.0,
        "weight": "Bold",
        "family": "display"
      },
      {
        "name": "displayMBold",
        "sizeSp": 20.0,
        "lineHeightSp": 28.0,
        "weight": "Bold",
        "family": "display"
      },
      {
        "name": "displayLBold",
        "sizeSp": 24.0,
        "lineHeightSp": 32.0,
        "weight": "Bold",
        "family": "display"
      },
      {
        "name": "displayXLBold",
        "sizeSp": 28.0,
        "lineHeightSp": 36.0,
        "weight": "Bold",
        "family": "display"
      },
      {
        "name": "displayXXLBold",
        "sizeSp": 32.0,
        "lineHeightSp": 40.0,
        "weight": "Bold",
        "family": "display"
      },
      {
        "name": "displaySMedium",
        "sizeSp": 16.0,
        "lineHeightSp": 24.0,
        "weight": "Medium",
        "family": "display"
      },
      {
        "name": "displayMMedium",
        "sizeSp": 20.0,
        "lineHeightSp": 28.0,
        "weight": "Medium",
        "family": "display"
      },
      {
        "name": "displayLMedium",
        "sizeSp": 24.0,
        "lineHeightSp": 32.0,
        "weight": "Medium",
        "family": "display"
      },
      {
        "name": "displayXLMedium",
        "sizeSp": 28.0,
        "lineHeightSp": 36.0,
        "weight": "Medium",
        "family": "display"
      },
      {
        "name": "displayXXLMedium",
        "sizeSp": 32.0,
        "lineHeightSp": 40.0,
        "weight": "Medium",
        "family": "display"
      },
      {
        "name": "titleXSBold",
        "sizeSp": 14.0,
        "lineHeightSp": 20.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "titleSBold",
        "sizeSp": 16.0,
        "lineHeightSp": 24.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "titleMBold",
        "sizeSp": 20.0,
        "lineHeightSp": 28.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "titleLBold",
        "sizeSp": 24.0,
        "lineHeightSp": 32.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "titleXLBold",
        "sizeSp": 28.0,
        "lineHeightSp": 36.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "titleXXLBold",
        "sizeSp": 32.0,
        "lineHeightSp": 40.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "titleXSSemiBold",
        "sizeSp": 14.0,
        "lineHeightSp": 20.0,
        "weight": "SemiBold",
        "family": "primary"
      },
      {
        "name": "titleSSemiBold",
        "sizeSp": 16.0,
        "lineHeightSp": 24.0,
        "weight": "SemiBold",
        "family": "primary"
      },
      {
        "name": "titleMSemiBold",
        "sizeSp": 20.0,
        "lineHeightSp": 28.0,
        "weight": "SemiBold",
        "family": "primary"
      },
      {
        "name": "titleLSemiBold",
        "sizeSp": 24.0,
        "lineHeightSp": 32.0,
        "weight": "SemiBold",
        "family": "primary"
      },
      {
        "name": "titleXLSemiBold",
        "sizeSp": 28.0,
        "lineHeightSp": 36.0,
        "weight": "SemiBold",
        "family": "primary"
      },
      {
        "name": "titleXXLSemiBold",
        "sizeSp": 32.0,
        "lineHeightSp": 40.0,
        "weight": "SemiBold",
        "family": "primary"
      },
      {
        "name": "bodyXSRegular",
        "sizeSp": 10.0,
        "lineHeightSp": 14.0,
        "weight": "Normal",
        "family": "primary"
      },
      {
        "name": "bodySRegular",
        "sizeSp": 12.0,
        "lineHeightSp": 16.0,
        "weight": "Normal",
        "family": "primary"
      },
      {
        "name": "bodyMRegular",
        "sizeSp": 14.0,
        "lineHeightSp": 20.0,
        "weight": "Normal",
        "family": "primary"
      },
      {
        "name": "bodyLRegular",
        "sizeSp": 16.0,
        "lineHeightSp": 24.0,
        "weight": "Normal",
        "family": "primary"
      },
      {
        "name": "bodyXLRegular",
        "sizeSp": 20.0,
        "lineHeightSp": 28.0,
        "weight": "Normal",
        "family": "primary"
      },
      {
        "name": "bodyXSMedium",
        "sizeSp": 10.0,
        "lineHeightSp": 14.0,
        "weight": "Medium",
        "family": "primary"
      },
      {
        "name": "bodySMedium",
        "sizeSp": 12.0,
        "lineHeightSp": 16.0,
        "weight": "Medium",
        "family": "primary"
      },
      {
        "name": "bodyMMedium",
        "sizeSp": 14.0,
        "lineHeightSp": 20.0,
        "weight": "Medium",
        "family": "primary"
      },
      {
        "name": "bodyLMedium",
        "sizeSp": 16.0,
        "lineHeightSp": 24.0,
        "weight": "Medium",
        "family": "primary"
      },
      {
        "name": "bodyXLMedium",
        "sizeSp": 20.0,
        "lineHeightSp": 28.0,
        "weight": "Medium",
        "family": "primary"
      },
      {
        "name": "labelSBold",
        "sizeSp": 9.0,
        "lineHeightSp": 14.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "labelMBold",
        "sizeSp": 10.0,
        "lineHeightSp": 14.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "labelLBold",
        "sizeSp": 12.0,
        "lineHeightSp": 16.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "labelSMedium",
        "sizeSp": 9.0,
        "lineHeightSp": 14.0,
        "weight": "Medium",
        "family": "primary"
      },
      {
        "name": "labelMMedium",
        "sizeSp": 10.0,
        "lineHeightSp": 14.0,
        "weight": "Medium",
        "family": "primary"
      },
      {
        "name": "labelLMedium",
        "sizeSp": 12.0,
        "lineHeightSp": 16.0,
        "weight": "Medium",
        "family": "primary"
      },
      {
        "name": "numXS",
        "sizeSp": 14.0,
        "lineHeightSp": 20.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "numS",
        "sizeSp": 16.0,
        "lineHeightSp": 24.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "numM",
        "sizeSp": 20.0,
        "lineHeightSp": 28.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "numL",
        "sizeSp": 24.0,
        "lineHeightSp": 32.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "numXL",
        "sizeSp": 28.0,
        "lineHeightSp": 36.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "numXXL",
        "sizeSp": 32.0,
        "lineHeightSp": 40.0,
        "weight": "Bold",
        "family": "primary"
      },
      {
        "name": "num3XL",
        "sizeSp": 40.0,
        "lineHeightSp": 48.0,
        "weight": "Bold",
        "family": "primary"
      }
    ]
  },
  "icons": [
    {
      "name": "ArrowLeft",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_arrow_left",
      "fillDrawable": "aurum_ic_navigation_arrow_left_filled",
      "lineFigmaNodeId": "5162:1053",
      "fillFigmaNodeId": "5162:938",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1053",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-938",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowLeft (line, node 5162:1053) -->\n<path d=\"M11.4697 4.46967C11.7626 4.17678 12.2373 4.17678 12.5302 4.46967C12.8231 4.76256 12.8231 5.23732 12.5302 5.53022L6.81049 11.2499H18.9999C19.4142 11.2499 19.7499 11.5857 19.7499 11.9999C19.7499 12.4142 19.4142 12.7499 18.9999 12.7499H6.81049L12.5302 18.4697C12.8231 18.7626 12.8231 19.2373 12.5302 19.5302C12.2373 19.8231 11.7626 19.8231 11.4697 19.5302L4.46967 12.5302C4.17678 12.2373 4.17678 11.7626 4.46967 11.4697L11.4697 4.46967Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowLeft (fill, node 5162:938) -->\n<path d=\"M11.4697 4.46967C11.7626 4.17678 12.2373 4.17678 12.5302 4.46967C12.8231 4.76256 12.8231 5.23732 12.5302 5.53022L6.81049 11.2499H18.9999C19.4142 11.2499 19.7499 11.5857 19.7499 11.9999C19.7499 12.4142 19.4142 12.7499 18.9999 12.7499H6.81049L12.5302 18.4697C12.8231 18.7626 12.8231 19.2373 12.5302 19.5302C12.2373 19.8231 11.7626 19.8231 11.4697 19.5302L4.46967 12.5302C4.17678 12.2373 4.17678 11.7626 4.46967 11.4697L11.4697 4.46967Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "ArrowRight",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_arrow_right",
      "fillDrawable": "aurum_ic_navigation_arrow_right_filled",
      "lineFigmaNodeId": "5162:1055",
      "fillFigmaNodeId": "5162:940",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1055",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-940",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowRight (line, node 5162:1055) -->\n<path d=\"M11.4697 4.46967C11.7626 4.17678 12.2374 4.17678 12.5303 4.46967L19.5303 11.4697C19.8232 11.7626 19.8232 12.2373 19.5303 12.5302L12.5303 19.5302C12.2374 19.8231 11.7626 19.8231 11.4697 19.5302C11.1768 19.2373 11.1768 18.7626 11.4697 18.4697L17.1895 12.7499H5C4.58579 12.7499 4.25 12.4142 4.25 11.9999C4.25 11.5857 4.58579 11.2499 5 11.2499H17.1895L11.4697 5.53022C11.1768 5.23732 11.1768 4.76256 11.4697 4.46967Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowRight (fill, node 5162:940) -->\n<path d=\"M11.4697 4.46967C11.7626 4.17678 12.2374 4.17678 12.5303 4.46967L19.5303 11.4697C19.8232 11.7626 19.8232 12.2373 19.5303 12.5302L12.5303 19.5302C12.2374 19.8231 11.7626 19.8231 11.4697 19.5302C11.1768 19.2373 11.1768 18.7626 11.4697 18.4697L17.1895 12.7499H5C4.58579 12.7499 4.25 12.4142 4.25 11.9999C4.25 11.5857 4.58579 11.2499 5 11.2499H17.1895L11.4697 5.53022C11.1768 5.23732 11.1768 4.76256 11.4697 4.46967Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "ArrowUp",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_arrow_up",
      "fillDrawable": "aurum_ic_navigation_arrow_up_filled",
      "lineFigmaNodeId": "5162:1057",
      "fillFigmaNodeId": "5162:942",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1057",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-942",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowUp (line, node 5162:1057) -->\n<path d=\"M11.2499 19.0001V6.81066L5.53022 12.5304C5.23732 12.8233 4.76256 12.8233 4.46967 12.5304C4.17678 12.2375 4.17678 11.7627 4.46967 11.4698L11.4697 4.46984L11.5263 4.41809C11.8209 4.17778 12.2556 4.19524 12.5302 4.46984L19.5302 11.4698C19.8231 11.7627 19.8231 12.2375 19.5302 12.5304C19.2373 12.8233 18.7626 12.8233 18.4697 12.5304L12.7499 6.81066V19.0001C12.7499 19.4143 12.4142 19.7501 11.9999 19.7501C11.5857 19.7501 11.2499 19.4143 11.2499 19.0001Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowUp (fill, node 5162:942) -->\n<path d=\"M11.2499 19.0001V6.81066L5.53022 12.5304C5.23732 12.8233 4.76256 12.8233 4.46967 12.5304C4.17678 12.2375 4.17678 11.7627 4.46967 11.4698L11.4697 4.46984L11.5263 4.41809C11.8209 4.17778 12.2556 4.19524 12.5302 4.46984L19.5302 11.4698C19.8231 11.7627 19.8231 12.2375 19.5302 12.5304C19.2373 12.8233 18.7626 12.8233 18.4697 12.5304L12.7499 6.81066V19.0001C12.7499 19.4143 12.4142 19.7501 11.9999 19.7501C11.5857 19.7501 11.2499 19.4143 11.2499 19.0001Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "ArrowDown",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_arrow_down",
      "fillDrawable": "aurum_ic_navigation_arrow_down_filled",
      "lineFigmaNodeId": "5162:1059",
      "fillFigmaNodeId": "5162:944",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1059",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-944",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowDown (line, node 5162:1059) -->\n<path d=\"M11.2499 5C11.2499 4.58579 11.5857 4.25 11.9999 4.25C12.4142 4.25 12.7499 4.58579 12.7499 5V17.1895L18.4697 11.4697C18.7626 11.1768 19.2373 11.1768 19.5302 11.4697C19.8231 11.7626 19.8231 12.2374 19.5302 12.5303L12.5302 19.5303C12.2373 19.8232 11.7626 19.8232 11.4697 19.5303L4.46967 12.5303C4.17678 12.2374 4.17678 11.7626 4.46967 11.4697C4.76256 11.1768 5.23732 11.1768 5.53022 11.4697L11.2499 17.1895V5Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowDown (fill, node 5162:944) -->\n<path d=\"M11.2499 5C11.2499 4.58579 11.5857 4.25 11.9999 4.25C12.4142 4.25 12.7499 4.58579 12.7499 5V17.1895L18.4697 11.4697C18.7626 11.1768 19.2373 11.1768 19.5302 11.4697C19.8231 11.7626 19.8231 12.2374 19.5302 12.5303L12.5302 19.5303C12.2373 19.8232 11.7626 19.8232 11.4697 19.5303L4.46967 12.5303C4.17678 12.2374 4.17678 11.7626 4.46967 11.4697C4.76256 11.1768 5.23732 11.1768 5.53022 11.4697L11.2499 17.1895V5Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "ArrowDownLeft",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_arrow_down_left",
      "fillDrawable": "aurum_ic_navigation_arrow_down_left_filled",
      "lineFigmaNodeId": "5874:1925",
      "fillFigmaNodeId": "5874:1925",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5874-1925",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5874-1925",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowDownLeft (line, node 5874:1925) -->\n<path d=\"M18.5306 6.53104L7.81031 17.2504H15.75C15.9489 17.2504 16.1397 17.3294 16.2803 17.4701C16.421 17.6107 16.5 17.8015 16.5 18.0004C16.5 18.1993 16.421 18.3901 16.2803 18.5307C16.1397 18.6714 15.9489 18.7504 15.75 18.7504H6C5.80109 18.7504 5.61032 18.6714 5.46967 18.5307C5.32902 18.3901 5.25 18.1993 5.25 18.0004V8.25042C5.25 8.0515 5.32902 7.86074 5.46967 7.72009C5.61032 7.57943 5.80109 7.50042 6 7.50042C6.19891 7.50042 6.38968 7.57943 6.53033 7.72009C6.67098 7.86074 6.75 8.0515 6.75 8.25042V16.1901L17.4694 5.46979C17.5391 5.40011 17.6218 5.34483 17.7128 5.30712C17.8039 5.26941 17.9015 5.25 18 5.25C18.0985 5.25 18.1961 5.26941 18.2872 5.30712C18.3782 5.34483 18.4609 5.40011 18.5306 5.46979C18.6003 5.53947 18.6556 5.6222 18.6933 5.71324C18.731 5.80429 18.7504 5.90187 18.7504 6.00042C18.7504 6.09896 18.731 6.19654 18.6933 6.28759C18.6556 6.37863 18.6003 6.46136 18.5306 6.53104Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowDownLeft (fill, node 5874:1925) -->\n<path d=\"M18.5306 6.53104L7.81031 17.2504H15.75C15.9489 17.2504 16.1397 17.3294 16.2803 17.4701C16.421 17.6107 16.5 17.8015 16.5 18.0004C16.5 18.1993 16.421 18.3901 16.2803 18.5307C16.1397 18.6714 15.9489 18.7504 15.75 18.7504H6C5.80109 18.7504 5.61032 18.6714 5.46967 18.5307C5.32902 18.3901 5.25 18.1993 5.25 18.0004V8.25042C5.25 8.0515 5.32902 7.86074 5.46967 7.72009C5.61032 7.57943 5.80109 7.50042 6 7.50042C6.19891 7.50042 6.38968 7.57943 6.53033 7.72009C6.67098 7.86074 6.75 8.0515 6.75 8.25042V16.1901L17.4694 5.46979C17.5391 5.40011 17.6218 5.34483 17.7128 5.30712C17.8039 5.26941 17.9015 5.25 18 5.25C18.0985 5.25 18.1961 5.26941 18.2872 5.30712C18.3782 5.34483 18.4609 5.40011 18.5306 5.46979C18.6003 5.53947 18.6556 5.6222 18.6933 5.71324C18.731 5.80429 18.7504 5.90187 18.7504 6.00042C18.7504 6.09896 18.731 6.19654 18.6933 6.28759C18.6556 6.37863 18.6003 6.46136 18.5306 6.53104Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "ArrowUpRight",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_arrow_up_right",
      "fillDrawable": "aurum_ic_navigation_arrow_up_right_filled",
      "lineFigmaNodeId": "5874:1926",
      "fillFigmaNodeId": "5874:1926",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5874-1926",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5874-1926",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowUpRight (line, node 5874:1926) -->\n<path d=\"M18.7504 6V15.75C18.7504 15.9489 18.6714 16.1397 18.5307 16.2803C18.3901 16.421 18.1993 16.5 18.0004 16.5C17.8015 16.5 17.6107 16.421 17.4701 16.2803C17.3294 16.1397 17.2504 15.9489 17.2504 15.75V7.81031L6.53104 18.5306C6.39031 18.6714 6.19944 18.7504 6.00042 18.7504C5.80139 18.7504 5.61052 18.6714 5.46979 18.5306C5.32906 18.3899 5.25 18.199 5.25 18C5.25 17.801 5.32906 17.6101 5.46979 17.4694L16.1901 6.75H8.25042C8.0515 6.75 7.86074 6.67098 7.72009 6.53033C7.57943 6.38968 7.50042 6.19891 7.50042 6C7.50042 5.80109 7.57943 5.61032 7.72009 5.46967C7.86074 5.32902 8.0515 5.25 8.25042 5.25H18.0004C18.1993 5.25 18.3901 5.32902 18.5307 5.46967C18.6714 5.61032 18.7504 5.80109 18.7504 6Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowUpRight (fill, node 5874:1926) -->\n<path d=\"M18.7504 6V15.75C18.7504 15.9489 18.6714 16.1397 18.5307 16.2803C18.3901 16.421 18.1993 16.5 18.0004 16.5C17.8015 16.5 17.6107 16.421 17.4701 16.2803C17.3294 16.1397 17.2504 15.9489 17.2504 15.75V7.81031L6.53104 18.5306C6.39031 18.6714 6.19944 18.7504 6.00042 18.7504C5.80139 18.7504 5.61052 18.6714 5.46979 18.5306C5.32906 18.3899 5.25 18.199 5.25 18C5.25 17.801 5.32906 17.6101 5.46979 17.4694L16.1901 6.75H8.25042C8.0515 6.75 7.86074 6.67098 7.72009 6.53033C7.57943 6.38968 7.50042 6.19891 7.50042 6C7.50042 5.80109 7.57943 5.61032 7.72009 5.46967C7.86074 5.32902 8.0515 5.25 8.25042 5.25H18.0004C18.1993 5.25 18.3901 5.32902 18.5307 5.46967C18.6714 5.61032 18.7504 5.80109 18.7504 6Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "ChevronLeft",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_chevron_left",
      "fillDrawable": "aurum_ic_navigation_chevron_left_filled",
      "lineFigmaNodeId": "5162:1063",
      "fillFigmaNodeId": "5162:948",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1063",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-948",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ChevronLeft (line, node 5162:1063) -->\n<path d=\"M14.4697 5.46967C14.7626 5.17678 15.2373 5.17678 15.5302 5.46967C15.8231 5.76256 15.8231 6.23732 15.5302 6.53022L10.0605 11.9999L15.5302 17.4697C15.8231 17.7626 15.8231 18.2373 15.5302 18.5302C15.2373 18.8231 14.7626 18.8231 14.4697 18.5302L8.46967 12.5302C8.17678 12.2373 8.17678 11.7626 8.46967 11.4697L14.4697 5.46967Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ChevronLeft (fill, node 5162:948) -->\n<path d=\"M14.4697 5.46967C14.7626 5.17678 15.2373 5.17678 15.5302 5.46967C15.8231 5.76256 15.8231 6.23732 15.5302 6.53022L10.0605 11.9999L15.5302 17.4697C15.8231 17.7626 15.8231 18.2373 15.5302 18.5302C15.2373 18.8231 14.7626 18.8231 14.4697 18.5302L8.46967 12.5302C8.17678 12.2373 8.17678 11.7626 8.46967 11.4697L14.4697 5.46967Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "ChevronRight",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_chevron_right",
      "fillDrawable": "aurum_ic_navigation_chevron_right_filled",
      "lineFigmaNodeId": "5162:1061",
      "fillFigmaNodeId": "5162:946",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1061",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-946",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ChevronRight (line, node 5162:1061) -->\n<path d=\"M8.46967 5.46967C8.76256 5.17678 9.23732 5.17678 9.53022 5.46967L15.5302 11.4697C15.8231 11.7626 15.8231 12.2373 15.5302 12.5302L9.53022 18.5302C9.23732 18.8231 8.76256 18.8231 8.46967 18.5302C8.17678 18.2373 8.17678 17.7626 8.46967 17.4697L13.9394 11.9999L8.46967 6.53022C8.17678 6.23732 8.17678 5.76256 8.46967 5.46967Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ChevronRight (fill, node 5162:946) -->\n<path d=\"M8.46967 5.46967C8.76256 5.17678 9.23732 5.17678 9.53022 5.46967L15.5302 11.4697C15.8231 11.7626 15.8231 12.2373 15.5302 12.5302L9.53022 18.5302C9.23732 18.8231 8.76256 18.8231 8.46967 18.5302C8.17678 18.2373 8.17678 17.7626 8.46967 17.4697L13.9394 11.9999L8.46967 6.53022C8.17678 6.23732 8.17678 5.76256 8.46967 5.46967Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "ChevronUp",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_chevron_up",
      "fillDrawable": "aurum_ic_navigation_chevron_up_filled",
      "lineFigmaNodeId": "5162:1065",
      "fillFigmaNodeId": "5162:950",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1065",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-950",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: chevronUp (line, node 5162:1065) -->\n<path d=\"M11.5263 8.41809C11.8209 8.17778 12.2556 8.19524 12.5302 8.46984L18.5302 14.4698C18.8231 14.7627 18.8231 15.2375 18.5302 15.5304C18.2373 15.8233 17.7626 15.8233 17.4697 15.5304L11.9999 10.0607L6.53022 15.5304C6.23732 15.8233 5.76256 15.8233 5.46967 15.5304C5.17678 15.2375 5.17678 14.7627 5.46967 14.4698L11.4697 8.46984L11.5263 8.41809Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: chevronUp (fill, node 5162:950) -->\n<path d=\"M11.5263 8.41809C11.8209 8.17778 12.2556 8.19524 12.5302 8.46984L18.5302 14.4698C18.8231 14.7627 18.8231 15.2375 18.5302 15.5304C18.2373 15.8233 17.7626 15.8233 17.4697 15.5304L11.9999 10.0607L6.53022 15.5304C6.23732 15.8233 5.76256 15.8233 5.46967 15.5304C5.17678 15.2375 5.17678 14.7627 5.46967 14.4698L11.4697 8.46984L11.5263 8.41809Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "ChevronDown",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_chevron_down",
      "fillDrawable": "aurum_ic_navigation_chevron_down_filled",
      "lineFigmaNodeId": "5162:1067",
      "fillFigmaNodeId": "5162:952",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1067",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-952",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: chevronDown (line, node 5162:1067) -->\n<path d=\"M17.4697 8.46967C17.7626 8.17678 18.2373 8.17678 18.5302 8.46967C18.8231 8.76256 18.8231 9.23732 18.5302 9.53022L12.5302 15.5302C12.2373 15.8231 11.7626 15.8231 11.4697 15.5302L5.46967 9.53022C5.17678 9.23732 5.17678 8.76256 5.46967 8.46967C5.76256 8.17678 6.23732 8.17678 6.53022 8.46967L11.9999 13.9394L17.4697 8.46967Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: chevronDown (fill, node 5162:952) -->\n<path d=\"M17.4697 8.46967C17.7626 8.17678 18.2373 8.17678 18.5302 8.46967C18.8231 8.76256 18.8231 9.23732 18.5302 9.53022L12.5302 15.5302C12.2373 15.8231 11.7626 15.8231 11.4697 15.5302L5.46967 9.53022C5.17678 9.23732 5.17678 8.76256 5.46967 8.46967C5.76256 8.17678 6.23732 8.17678 6.53022 8.46967L11.9999 13.9394L17.4697 8.46967Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Close",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_close",
      "fillDrawable": "aurum_ic_navigation_close_filled",
      "lineFigmaNodeId": "5162:1069",
      "fillFigmaNodeId": "5311:823",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1069",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5311-823",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: X (line, node 5162:1069) -->\n<path d=\"M17.2929 5.29289C17.6834 4.90237 18.3164 4.90237 18.707 5.29289C19.0975 5.68342 19.0975 6.31643 18.707 6.70696L13.414 11.9999L18.707 17.2929C19.0975 17.6834 19.0975 18.3164 18.707 18.707C18.3164 19.0975 17.6834 19.0975 17.2929 18.707L11.9999 13.414L6.70696 18.707C6.31643 19.0975 5.68342 19.0975 5.29289 18.707C4.90237 18.3164 4.90237 17.6834 5.29289 17.2929L10.5859 11.9999L5.29289 6.70696C4.90237 6.31643 4.90237 5.68342 5.29289 5.29289C5.68342 4.90237 6.31643 4.90237 6.70696 5.29289L11.9999 10.5859L17.2929 5.29289Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: X (fill, node 5311:823) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM15.5306 14.4694C15.6003 14.5391 15.6556 14.6218 15.6933 14.7128C15.731 14.8039 15.7504 14.9015 15.7504 15C15.7504 15.0985 15.731 15.1961 15.6933 15.2872C15.6556 15.3782 15.6003 15.4609 15.5306 15.5306C15.4609 15.6003 15.3782 15.6556 15.2872 15.6933C15.1961 15.731 15.0986 15.7504 15 15.7504C14.9015 15.7504 14.8039 15.731 14.7128 15.6933C14.6218 15.6556 14.5391 15.6003 14.4694 15.5306L12 13.0603L9.53063 15.5306C9.46095 15.6003 9.37822 15.6556 9.28718 15.6933C9.19613 15.731 9.09855 15.7504 9 15.7504C8.90146 15.7504 8.80388 15.731 8.71283 15.6933C8.62179 15.6556 8.53906 15.6003 8.46938 15.5306C8.3997 15.4609 8.34442 15.3782 8.30671 15.2872C8.269 15.1961 8.24959 15.0985 8.24959 15C8.24959 14.9015 8.269 14.8039 8.30671 14.7128C8.34442 14.6218 8.3997 14.5391 8.46938 14.4694L10.9397 12L8.46938 9.53063C8.32865 9.38989 8.24959 9.19902 8.24959 9C8.24959 8.80098 8.32865 8.61011 8.46938 8.46937C8.61011 8.32864 8.80098 8.24958 9 8.24958C9.19903 8.24958 9.3899 8.32864 9.53063 8.46937L12 10.9397L14.4694 8.46937C14.5391 8.39969 14.6218 8.34442 14.7128 8.3067C14.8039 8.26899 14.9015 8.24958 15 8.24958C15.0986 8.24958 15.1961 8.26899 15.2872 8.3067C15.3782 8.34442 15.4609 8.39969 15.5306 8.46937C15.6003 8.53906 15.6556 8.62178 15.6933 8.71283C15.731 8.80387 15.7504 8.90145 15.7504 9C15.7504 9.09855 15.731 9.19613 15.6933 9.28717C15.6556 9.37822 15.6003 9.46094 15.5306 9.53063L13.0603 12L15.5306 14.4694Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "CaretUp",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_caret_up",
      "fillDrawable": "aurum_ic_navigation_caret_up_filled",
      "lineFigmaNodeId": "6419:334",
      "fillFigmaNodeId": "6419:334",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-334",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-334",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretUp (line, node 6419:334) -->\n<path d=\"M20.1924 15.2865C20.1357 15.4235 20.0396 15.5407 19.9163 15.6231C19.7929 15.7056 19.648 15.7496 19.4996 15.7496H4.49961C4.35119 15.7497 4.20607 15.7058 4.08263 15.6234C3.95918 15.541 3.86296 15.4238 3.80615 15.2867C3.74933 15.1496 3.73448 14.9987 3.76347 14.8531C3.79245 14.7076 3.86398 14.5739 3.96899 14.469L11.469 6.96899C11.5386 6.89926 11.6214 6.84394 11.7124 6.80619C11.8035 6.76845 11.9011 6.74902 11.9996 6.74902C12.0982 6.74902 12.1958 6.76845 12.2868 6.80619C12.3779 6.84394 12.4606 6.89926 12.5302 6.96899L20.0302 14.469C20.1351 14.5739 20.2065 14.7076 20.2353 14.8531C20.2642 14.9987 20.2493 15.1495 20.1924 15.2865Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretUp (fill, node 6419:334) -->\n<path d=\"M20.1924 15.2865C20.1357 15.4235 20.0396 15.5407 19.9163 15.6231C19.7929 15.7056 19.648 15.7496 19.4996 15.7496H4.49961C4.35119 15.7497 4.20607 15.7058 4.08263 15.6234C3.95918 15.541 3.86296 15.4238 3.80615 15.2867C3.74933 15.1496 3.73448 14.9987 3.76347 14.8531C3.79245 14.7076 3.86398 14.5739 3.96899 14.469L11.469 6.96899C11.5386 6.89926 11.6214 6.84394 11.7124 6.80619C11.8035 6.76845 11.9011 6.74902 11.9996 6.74902C12.0982 6.74902 12.1958 6.76845 12.2868 6.80619C12.3779 6.84394 12.4606 6.89926 12.5302 6.96899L20.0302 14.469C20.1351 14.5739 20.2065 14.7076 20.2353 14.8531C20.2642 14.9987 20.2493 15.1495 20.1924 15.2865Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "CaretDown",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_caret_down",
      "fillDrawable": "aurum_ic_navigation_caret_down_filled",
      "lineFigmaNodeId": "6419:335",
      "fillFigmaNodeId": "6419:335",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-335",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-335",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretDown (line, node 6419:335) -->\n<path d=\"M20.0302 9.53063L12.5302 17.0306C12.4606 17.1004 12.3779 17.1557 12.2868 17.1934C12.1958 17.2312 12.0982 17.2506 11.9996 17.2506C11.9011 17.2506 11.8035 17.2312 11.7124 17.1934C11.6214 17.1557 11.5386 17.1004 11.469 17.0306L3.96899 9.53063C3.86398 9.42573 3.79245 9.29204 3.76347 9.14648C3.73448 9.00092 3.74933 8.85002 3.80615 8.71291C3.86296 8.57579 3.95918 8.45861 4.08263 8.37621C4.20607 8.29381 4.35119 8.24988 4.49961 8.25H19.4996C19.648 8.24988 19.7932 8.29381 19.9166 8.37621C20.04 8.45861 20.1363 8.57579 20.1931 8.71291C20.2499 8.85002 20.2647 9.00092 20.2358 9.14648C20.2068 9.29204 20.1353 9.42573 20.0302 9.53063Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretDown (fill, node 6419:335) -->\n<path d=\"M20.0302 9.53063L12.5302 17.0306C12.4606 17.1004 12.3779 17.1557 12.2868 17.1934C12.1958 17.2312 12.0982 17.2506 11.9996 17.2506C11.9011 17.2506 11.8035 17.2312 11.7124 17.1934C11.6214 17.1557 11.5386 17.1004 11.469 17.0306L3.96899 9.53063C3.86398 9.42573 3.79245 9.29204 3.76347 9.14648C3.73448 9.00092 3.74933 8.85002 3.80615 8.71291C3.86296 8.57579 3.95918 8.45861 4.08263 8.37621C4.20607 8.29381 4.35119 8.24988 4.49961 8.25H19.4996C19.648 8.24988 19.7932 8.29381 19.9166 8.37621C20.04 8.45861 20.1363 8.57579 20.1931 8.71291C20.2499 8.85002 20.2647 9.00092 20.2358 9.14648C20.2068 9.29204 20.1353 9.42573 20.0302 9.53063Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "CaretLeft",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_caret_left",
      "fillDrawable": "aurum_ic_navigation_caret_left_filled",
      "lineFigmaNodeId": "6419:336",
      "fillFigmaNodeId": "6419:336",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-336",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-336",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretLeft (line, node 6419:336) -->\n<path d=\"M15.7496 4.49961V19.4996C15.7497 19.648 15.7058 19.7932 15.6234 19.9166C15.541 20.04 15.4238 20.1363 15.2867 20.1931C15.1496 20.2499 14.9987 20.2647 14.8531 20.2358C14.7076 20.2068 14.5739 20.1353 14.469 20.0302L6.96899 12.5302C6.89926 12.4606 6.84394 12.3779 6.80619 12.2868C6.76845 12.1958 6.74902 12.0982 6.74902 11.9996C6.74902 11.9011 6.76845 11.8035 6.80619 11.7124C6.84394 11.6214 6.89926 11.5386 6.96899 11.469L14.469 3.96899C14.5739 3.86398 14.7076 3.79245 14.8531 3.76347C14.9987 3.73448 15.1496 3.74933 15.2867 3.80615C15.4238 3.86296 15.541 3.95918 15.6234 4.08263C15.7058 4.20607 15.7497 4.35119 15.7496 4.49961Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretLeft (fill, node 6419:336) -->\n<path d=\"M15.7496 4.49961V19.4996C15.7497 19.648 15.7058 19.7932 15.6234 19.9166C15.541 20.04 15.4238 20.1363 15.2867 20.1931C15.1496 20.2499 14.9987 20.2647 14.8531 20.2358C14.7076 20.2068 14.5739 20.1353 14.469 20.0302L6.96899 12.5302C6.89926 12.4606 6.84394 12.3779 6.80619 12.2868C6.76845 12.1958 6.74902 12.0982 6.74902 11.9996C6.74902 11.9011 6.76845 11.8035 6.80619 11.7124C6.84394 11.6214 6.89926 11.5386 6.96899 11.469L14.469 3.96899C14.5739 3.86398 14.7076 3.79245 14.8531 3.76347C14.9987 3.73448 15.1496 3.74933 15.2867 3.80615C15.4238 3.86296 15.541 3.95918 15.6234 4.08263C15.7058 4.20607 15.7497 4.35119 15.7496 4.49961Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "CaretRight",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_caret_right",
      "fillDrawable": "aurum_ic_navigation_caret_right_filled",
      "lineFigmaNodeId": "6419:337",
      "fillFigmaNodeId": "6419:337",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-337",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-337",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretRight (line, node 6419:337) -->\n<path d=\"M17.0306 12.5302L9.53063 20.0302C9.42573 20.1353 9.29204 20.2068 9.14648 20.2358C9.00092 20.2647 8.85002 20.2499 8.71291 20.1931C8.57579 20.1363 8.45861 20.04 8.37621 19.9166C8.29381 19.7932 8.24988 19.648 8.25 19.4996V4.49961C8.24988 4.35119 8.29381 4.20607 8.37621 4.08263C8.45861 3.95918 8.57579 3.86296 8.71291 3.80615C8.85002 3.74933 9.00092 3.73448 9.14648 3.76347C9.29204 3.79245 9.42573 3.86398 9.53063 3.96899L17.0306 11.469C17.1004 11.5386 17.1557 11.6214 17.1934 11.7124C17.2312 11.8035 17.2506 11.9011 17.2506 11.9996C17.2506 12.0982 17.2312 12.1958 17.1934 12.2868C17.1557 12.3779 17.1004 12.4606 17.0306 12.5302Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretRight (fill, node 6419:337) -->\n<path d=\"M17.0306 12.5302L9.53063 20.0302C9.42573 20.1353 9.29204 20.2068 9.14648 20.2358C9.00092 20.2647 8.85002 20.2499 8.71291 20.1931C8.57579 20.1363 8.45861 20.04 8.37621 19.9166C8.29381 19.7932 8.24988 19.648 8.25 19.4996V4.49961C8.24988 4.35119 8.29381 4.20607 8.37621 4.08263C8.45861 3.95918 8.57579 3.86296 8.71291 3.80615C8.85002 3.74933 9.00092 3.73448 9.14648 3.76347C9.29204 3.79245 9.42573 3.86398 9.53063 3.96899L17.0306 11.469C17.1004 11.5386 17.1557 11.6214 17.1934 11.7124C17.2312 11.8035 17.2506 11.9011 17.2506 11.9996C17.2506 12.0982 17.2312 12.1958 17.1934 12.2868C17.1557 12.3779 17.1004 12.4606 17.0306 12.5302Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "CaretBoldUp",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_caret_bold_up",
      "fillDrawable": "aurum_ic_navigation_caret_bold_up_filled",
      "lineFigmaNodeId": "7570:655",
      "fillFigmaNodeId": "7570:655",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-655",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-655",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretBoldUp (line, node 7570:655) -->\n<path d=\"M20.2959 15.7957C20.1914 15.9006 20.0672 15.9838 19.9304 16.0406C19.7937 16.0974 19.6471 16.1266 19.499 16.1266C19.351 16.1266 19.2043 16.0974 19.0676 16.0406C18.9309 15.9838 18.8067 15.9006 18.7021 15.7957L12 9.09354L5.2959 15.7957C5.08455 16.0071 4.79791 16.1258 4.49902 16.1258C4.20014 16.1258 3.91349 16.0071 3.70215 15.7957C3.4908 15.5844 3.37207 15.2977 3.37207 14.9989C3.37207 14.7 3.4908 14.4133 3.70215 14.202L11.2021 6.70198C11.3067 6.5971 11.4309 6.51388 11.5676 6.4571C11.7043 6.40032 11.851 6.37109 11.999 6.37109C12.1471 6.37109 12.2937 6.40032 12.4304 6.4571C12.5672 6.51388 12.6914 6.5971 12.7959 6.70198L20.2959 14.202C20.4008 14.3065 20.484 14.4307 20.5408 14.5674C20.5976 14.7042 20.6268 14.8508 20.6268 14.9989C20.6268 15.1469 20.5976 15.2935 20.5408 15.4303C20.484 15.567 20.4008 15.6912 20.2959 15.7957Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretBoldUp (fill, node 7570:655) -->\n<path d=\"M20.2959 15.7957C20.1914 15.9006 20.0672 15.9838 19.9304 16.0406C19.7937 16.0974 19.6471 16.1266 19.499 16.1266C19.351 16.1266 19.2043 16.0974 19.0676 16.0406C18.9309 15.9838 18.8067 15.9006 18.7021 15.7957L12 9.09354L5.2959 15.7957C5.08455 16.0071 4.79791 16.1258 4.49902 16.1258C4.20014 16.1258 3.91349 16.0071 3.70215 15.7957C3.4908 15.5844 3.37207 15.2977 3.37207 14.9989C3.37207 14.7 3.4908 14.4133 3.70215 14.202L11.2021 6.70198C11.3067 6.5971 11.4309 6.51388 11.5676 6.4571C11.7043 6.40032 11.851 6.37109 11.999 6.37109C12.1471 6.37109 12.2937 6.40032 12.4304 6.4571C12.5672 6.51388 12.6914 6.5971 12.7959 6.70198L20.2959 14.202C20.4008 14.3065 20.484 14.4307 20.5408 14.5674C20.5976 14.7042 20.6268 14.8508 20.6268 14.9989C20.6268 15.1469 20.5976 15.2935 20.5408 15.4303C20.484 15.567 20.4008 15.6912 20.2959 15.7957Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "CaretBoldDown",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_caret_bold_down",
      "fillDrawable": "aurum_ic_navigation_caret_bold_down_filled",
      "lineFigmaNodeId": "7570:656",
      "fillFigmaNodeId": "7570:656",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-656",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-656",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretBoldDown (line, node 7570:656) -->\n<path d=\"M20.2959 9.79586L12.7959 17.2959C12.6914 17.4007 12.5672 17.484 12.4304 17.5407C12.2937 17.5975 12.1471 17.6267 11.999 17.6267C11.851 17.6267 11.7043 17.5975 11.5676 17.5407C11.4309 17.484 11.3067 17.4007 11.2021 17.2959L3.70215 9.79586C3.4908 9.58451 3.37207 9.29787 3.37207 8.99898C3.37207 8.7001 3.4908 8.41345 3.70215 8.20211C3.91349 7.99076 4.20014 7.87203 4.49902 7.87203C4.79791 7.87203 5.08455 7.99076 5.2959 8.20211L12 14.9062L18.704 8.20117C18.9154 7.98983 19.202 7.87109 19.5009 7.87109C19.7998 7.87109 20.0864 7.98983 20.2978 8.20117C20.5091 8.41252 20.6278 8.69916 20.6278 8.99805C20.6278 9.29693 20.5091 9.58358 20.2978 9.79492L20.2959 9.79586Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretBoldDown (fill, node 7570:656) -->\n<path d=\"M20.2959 9.79586L12.7959 17.2959C12.6914 17.4007 12.5672 17.484 12.4304 17.5407C12.2937 17.5975 12.1471 17.6267 11.999 17.6267C11.851 17.6267 11.7043 17.5975 11.5676 17.5407C11.4309 17.484 11.3067 17.4007 11.2021 17.2959L3.70215 9.79586C3.4908 9.58451 3.37207 9.29787 3.37207 8.99898C3.37207 8.7001 3.4908 8.41345 3.70215 8.20211C3.91349 7.99076 4.20014 7.87203 4.49902 7.87203C4.79791 7.87203 5.08455 7.99076 5.2959 8.20211L12 14.9062L18.704 8.20117C18.9154 7.98983 19.202 7.87109 19.5009 7.87109C19.7998 7.87109 20.0864 7.98983 20.2978 8.20117C20.5091 8.41252 20.6278 8.69916 20.6278 8.99805C20.6278 9.29693 20.5091 9.58358 20.2978 9.79492L20.2959 9.79586Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "CaretBoldLeft",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_caret_bold_left",
      "fillDrawable": "aurum_ic_navigation_caret_bold_left_filled",
      "lineFigmaNodeId": "7570:657",
      "fillFigmaNodeId": "7570:657",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-657",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-657",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretBoldLeft (line, node 7570:657) -->\n<path d=\"M15.7957 18.7041C16.0071 18.9154 16.1258 19.2021 16.1258 19.501C16.1258 19.7999 16.0071 20.0865 15.7957 20.2978C15.5844 20.5092 15.2977 20.6279 14.9989 20.6279C14.7 20.6279 14.4133 20.5092 14.202 20.2978L6.70198 12.7978C6.5971 12.6933 6.51388 12.5691 6.4571 12.4324C6.40032 12.2956 6.37109 12.149 6.37109 12.001C6.37109 11.8529 6.40032 11.7063 6.4571 11.5696C6.51388 11.4328 6.5971 11.3086 6.70198 11.2041L14.202 3.7041C14.4133 3.49276 14.7 3.37402 14.9989 3.37402C15.2977 3.37402 15.5844 3.49276 15.7957 3.7041C16.0071 3.91544 16.1258 4.20209 16.1258 4.50097C16.1258 4.79986 16.0071 5.08651 15.7957 5.29785L9.09354 12L15.7957 18.7041Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretBoldLeft (fill, node 7570:657) -->\n<path d=\"M15.7957 18.7041C16.0071 18.9154 16.1258 19.2021 16.1258 19.501C16.1258 19.7999 16.0071 20.0865 15.7957 20.2978C15.5844 20.5092 15.2977 20.6279 14.9989 20.6279C14.7 20.6279 14.4133 20.5092 14.202 20.2978L6.70198 12.7978C6.5971 12.6933 6.51388 12.5691 6.4571 12.4324C6.40032 12.2956 6.37109 12.149 6.37109 12.001C6.37109 11.8529 6.40032 11.7063 6.4571 11.5696C6.51388 11.4328 6.5971 11.3086 6.70198 11.2041L14.202 3.7041C14.4133 3.49276 14.7 3.37402 14.9989 3.37402C15.2977 3.37402 15.5844 3.49276 15.7957 3.7041C16.0071 3.91544 16.1258 4.20209 16.1258 4.50097C16.1258 4.79986 16.0071 5.08651 15.7957 5.29785L9.09354 12L15.7957 18.7041Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "CaretBoldRight",
      "category": "navigation",
      "lineDrawable": "aurum_ic_navigation_caret_bold_right",
      "fillDrawable": "aurum_ic_navigation_caret_bold_right_filled",
      "lineFigmaNodeId": "7570:654",
      "fillFigmaNodeId": "7570:654",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-654",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-654",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretBoldRight (line, node 7570:654) -->\n<path d=\"M17.2959 12.7959L9.7959 20.2959C9.58455 20.5072 9.29791 20.626 8.99902 20.626C8.70014 20.626 8.41349 20.5072 8.20215 20.2959C7.9908 20.0846 7.87207 19.7979 7.87207 19.499C7.87207 19.2001 7.9908 18.9135 8.20215 18.7021L14.9062 12L8.20402 5.2959C8.09937 5.19125 8.01636 5.06702 7.95973 4.93029C7.90309 4.79356 7.87394 4.64702 7.87394 4.49902C7.87394 4.35103 7.90309 4.20448 7.95973 4.06776C8.01636 3.93103 8.09937 3.80679 8.20402 3.70215C8.30867 3.5975 8.4329 3.51449 8.56963 3.45785C8.70636 3.40122 8.8529 3.37207 9.0009 3.37207C9.14889 3.37207 9.29543 3.40122 9.43216 3.45785C9.56889 3.51449 9.69312 3.5975 9.79777 3.70215L17.2978 11.2021C17.4025 11.3068 17.4856 11.4311 17.5422 11.5679C17.5988 11.7047 17.6279 11.8513 17.6277 11.9994C17.6275 12.1475 17.5981 12.2941 17.5412 12.4307C17.4843 12.5674 17.4009 12.6915 17.2959 12.7959Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CaretBoldRight (fill, node 7570:654) -->\n<path d=\"M17.2959 12.7959L9.7959 20.2959C9.58455 20.5072 9.29791 20.626 8.99902 20.626C8.70014 20.626 8.41349 20.5072 8.20215 20.2959C7.9908 20.0846 7.87207 19.7979 7.87207 19.499C7.87207 19.2001 7.9908 18.9135 8.20215 18.7021L14.9062 12L8.20402 5.2959C8.09937 5.19125 8.01636 5.06702 7.95973 4.93029C7.90309 4.79356 7.87394 4.64702 7.87394 4.49902C7.87394 4.35103 7.90309 4.20448 7.95973 4.06776C8.01636 3.93103 8.09937 3.80679 8.20402 3.70215C8.30867 3.5975 8.4329 3.51449 8.56963 3.45785C8.70636 3.40122 8.8529 3.37207 9.0009 3.37207C9.14889 3.37207 9.29543 3.40122 9.43216 3.45785C9.56889 3.51449 9.69312 3.5975 9.79777 3.70215L17.2978 11.2021C17.4025 11.3068 17.4856 11.4311 17.5422 11.5679C17.5988 11.7047 17.6279 11.8513 17.6277 11.9994C17.6275 12.1475 17.5981 12.2941 17.5412 12.4307C17.4843 12.5674 17.4009 12.6915 17.2959 12.7959Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Edit",
      "category": "action",
      "lineDrawable": "aurum_ic_action_edit",
      "fillDrawable": "aurum_ic_action_edit_filled",
      "lineFigmaNodeId": "5162:1051",
      "fillFigmaNodeId": "5162:936",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1051",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-936",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: PencilSimple (line, node 5162:1051) -->\n<path d=\"M21.3103 6.87866L17.1216 2.68897C16.9823 2.54965 16.8169 2.43913 16.6349 2.36373C16.4529 2.28832 16.2578 2.24951 16.0608 2.24951C15.8638 2.24951 15.6687 2.28832 15.4867 2.36373C15.3047 2.43913 15.1393 2.54965 15 2.68897L3.43969 14.2502C3.2998 14.389 3.18889 14.5542 3.11341 14.7362C3.03792 14.9183 2.99938 15.1135 3.00001 15.3105V19.5002C3.00001 19.898 3.15804 20.2796 3.43935 20.5609C3.72065 20.8422 4.10218 21.0002 4.50001 21.0002H8.6897C8.88675 21.0009 9.08197 20.9623 9.26399 20.8868C9.44602 20.8113 9.61122 20.7004 9.75001 20.5605L21.3103 9.00022C21.4496 8.86093 21.5602 8.69556 21.6356 8.51355C21.711 8.33153 21.7498 8.13645 21.7498 7.93944C21.7498 7.74243 21.711 7.54735 21.6356 7.36534C21.5602 7.18333 21.4496 7.01795 21.3103 6.87866ZM8.6897 19.5002H4.50001V15.3105L12.75 7.06053L16.9397 11.2502L8.6897 19.5002ZM18 10.189L13.8103 6.00022L16.0603 3.75022L20.25 7.93897L18 10.189Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: PencilSimple (fill, node 5162:936) -->\n<path d=\"M21.3103 6.87817L17.1216 2.68848C16.9823 2.54916 16.8169 2.43864 16.6349 2.36324C16.4529 2.28783 16.2578 2.24902 16.0608 2.24902C15.8638 2.24902 15.6687 2.28783 15.4867 2.36324C15.3047 2.43864 15.1393 2.54916 15 2.68848L3.43969 14.2497C3.2998 14.3885 3.18889 14.5537 3.11341 14.7357C3.03792 14.9178 2.99938 15.113 3.00001 15.31V19.4997C3.00001 19.8976 3.15804 20.2791 3.43935 20.5604C3.72065 20.8417 4.10218 20.9997 4.50001 20.9997H8.6897C8.88675 21.0004 9.08197 20.9618 9.26399 20.8863C9.44602 20.8109 9.61122 20.6999 9.75001 20.56L21.3103 8.99973C21.4496 8.86044 21.5602 8.69507 21.6356 8.51306C21.711 8.33105 21.7498 8.13596 21.7498 7.93895C21.7498 7.74194 21.711 7.54686 21.6356 7.36485C21.5602 7.18284 21.4496 7.01746 21.3103 6.87817ZM18 10.1885L13.8103 5.99973L16.0603 3.74973L20.25 7.93848L18 10.1885Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Delete",
      "category": "action",
      "lineDrawable": "aurum_ic_action_delete",
      "fillDrawable": "aurum_ic_action_delete_filled",
      "lineFigmaNodeId": "5162:1107",
      "fillFigmaNodeId": "5162:992",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1107",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-992",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Trash (line, node 5162:1107) -->\n<path d=\"M20.25 4.5H16.5V3.75C16.5 3.15326 16.2629 2.58097 15.841 2.15901C15.419 1.73705 14.8467 1.5 14.25 1.5H9.75C9.15326 1.5 8.58097 1.73705 8.15901 2.15901C7.73705 2.58097 7.5 3.15326 7.5 3.75V4.5H3.75C3.55109 4.5 3.36032 4.57902 3.21967 4.71967C3.07902 4.86032 3 5.05109 3 5.25C3 5.44891 3.07902 5.63968 3.21967 5.78033C3.36032 5.92098 3.55109 6 3.75 6H4.5V19.5C4.5 19.8978 4.65804 20.2794 4.93934 20.5607C5.22064 20.842 5.60218 21 6 21H18C18.3978 21 18.7794 20.842 19.0607 20.5607C19.342 20.2794 19.5 19.8978 19.5 19.5V6H20.25C20.4489 6 20.6397 5.92098 20.7803 5.78033C20.921 5.63968 21 5.44891 21 5.25C21 5.05109 20.921 4.86032 20.7803 4.71967C20.6397 4.57902 20.4489 4.5 20.25 4.5ZM9 3.75C9 3.55109 9.07902 3.36032 9.21967 3.21967C9.36032 3.07902 9.55109 3 9.75 3H14.25C14.4489 3 14.6397 3.07902 14.7803 3.21967C14.921 3.36032 15 3.55109 15 3.75V4.5H9V3.75ZM18 19.5H6V6H18V19.5ZM10.5 9.75V15.75C10.5 15.9489 10.421 16.1397 10.2803 16.2803C10.1397 16.421 9.94891 16.5 9.75 16.5C9.55109 16.5 9.36032 16.421 9.21967 16.2803C9.07902 16.1397 9 15.9489 9 15.75V9.75C9 9.55109 9.07902 9.36032 9.21967 9.21967C9.36032 9.07902 9.55109 9 9.75 9C9.94891 9 10.1397 9.07902 10.2803 9.21967C10.421 9.36032 10.5 9.55109 10.5 9.75ZM15 9.75V15.75C15 15.9489 14.921 16.1397 14.7803 16.2803C14.6397 16.421 14.4489 16.5 14.25 16.5C14.0511 16.5 13.8603 16.421 13.7197 16.2803C13.579 16.1397 13.5 15.9489 13.5 15.75V9.75C13.5 9.55109 13.579 9.36032 13.7197 9.21967C13.8603 9.07902 14.0511 9 14.25 9C14.4489 9 14.6397 9.07902 14.7803 9.21967C14.921 9.36032 15 9.55109 15 9.75Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Trash (fill, node 5162:992) -->\n<path d=\"M20.25 4.5H16.5V3.75C16.5 3.15326 16.2629 2.58097 15.841 2.15901C15.419 1.73705 14.8467 1.5 14.25 1.5H9.75C9.15326 1.5 8.58097 1.73705 8.15901 2.15901C7.73705 2.58097 7.5 3.15326 7.5 3.75V4.5H3.75C3.55109 4.5 3.36032 4.57902 3.21967 4.71967C3.07902 4.86032 3 5.05109 3 5.25C3 5.44891 3.07902 5.63968 3.21967 5.78033C3.36032 5.92098 3.55109 6 3.75 6H4.5V19.5C4.5 19.8978 4.65804 20.2794 4.93934 20.5607C5.22064 20.842 5.60218 21 6 21H18C18.3978 21 18.7794 20.842 19.0607 20.5607C19.342 20.2794 19.5 19.8978 19.5 19.5V6H20.25C20.4489 6 20.6397 5.92098 20.7803 5.78033C20.921 5.63968 21 5.44891 21 5.25C21 5.05109 20.921 4.86032 20.7803 4.71967C20.6397 4.57902 20.4489 4.5 20.25 4.5ZM10.5 15.75C10.5 15.9489 10.421 16.1397 10.2803 16.2803C10.1397 16.421 9.94891 16.5 9.75 16.5C9.55109 16.5 9.36032 16.421 9.21967 16.2803C9.07902 16.1397 9 15.9489 9 15.75V9.75C9 9.55109 9.07902 9.36032 9.21967 9.21967C9.36032 9.07902 9.55109 9 9.75 9C9.94891 9 10.1397 9.07902 10.2803 9.21967C10.421 9.36032 10.5 9.55109 10.5 9.75V15.75ZM15 15.75C15 15.9489 14.921 16.1397 14.7803 16.2803C14.6397 16.421 14.4489 16.5 14.25 16.5C14.0511 16.5 13.8603 16.421 13.7197 16.2803C13.579 16.1397 13.5 15.9489 13.5 15.75V9.75C13.5 9.55109 13.579 9.36032 13.7197 9.21967C13.8603 9.07902 14.0511 9 14.25 9C14.4489 9 14.6397 9.07902 14.7803 9.21967C14.921 9.36032 15 9.55109 15 9.75V15.75ZM15 4.5H9V3.75C9 3.55109 9.07902 3.36032 9.21967 3.21967C9.36032 3.07902 9.55109 3 9.75 3H14.25C14.4489 3 14.6397 3.07902 14.7803 3.21967C14.921 3.36032 15 3.55109 15 3.75V4.5Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Copy",
      "category": "action",
      "lineDrawable": "aurum_ic_action_copy",
      "fillDrawable": "aurum_ic_action_copy_filled",
      "lineFigmaNodeId": "5162:1075",
      "fillFigmaNodeId": "5162:960",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1075",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-960",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Copy (line, node 5162:1075) -->\n<path d=\"M20.25 3H8.25C8.05109 3 7.86032 3.07902 7.71967 3.21967C7.57902 3.36032 7.5 3.55109 7.5 3.75V7.5H3.75C3.55109 7.5 3.36032 7.57902 3.21967 7.71967C3.07902 7.86032 3 8.05109 3 8.25V20.25C3 20.4489 3.07902 20.6397 3.21967 20.7803C3.36032 20.921 3.55109 21 3.75 21H15.75C15.9489 21 16.1397 20.921 16.2803 20.7803C16.421 20.6397 16.5 20.4489 16.5 20.25V16.5H20.25C20.4489 16.5 20.6397 16.421 20.7803 16.2803C20.921 16.1397 21 15.9489 21 15.75V3.75C21 3.55109 20.921 3.36032 20.7803 3.21967C20.6397 3.07902 20.4489 3 20.25 3ZM15 19.5H4.5V9H15V19.5ZM19.5 15H16.5V8.25C16.5 8.05109 16.421 7.86032 16.2803 7.71967C16.1397 7.57902 15.9489 7.5 15.75 7.5H9V4.5H19.5V15Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Copy (fill, node 5162:960) -->\n<path d=\"M20.25 3H8.25C8.05109 3 7.86032 3.07902 7.71967 3.21967C7.57902 3.36032 7.5 3.55109 7.5 3.75V7.5H3.75C3.55109 7.5 3.36032 7.57902 3.21967 7.71967C3.07902 7.86032 3 8.05109 3 8.25V20.25C3 20.4489 3.07902 20.6397 3.21967 20.7803C3.36032 20.921 3.55109 21 3.75 21H15.75C15.9489 21 16.1397 20.921 16.2803 20.7803C16.421 20.6397 16.5 20.4489 16.5 20.25V16.5H20.25C20.4489 16.5 20.6397 16.421 20.7803 16.2803C20.921 16.1397 21 15.9489 21 15.75V3.75C21 3.55109 20.921 3.36032 20.7803 3.21967C20.6397 3.07902 20.4489 3 20.25 3ZM19.5 15H16.5V8.25C16.5 8.05109 16.421 7.86032 16.2803 7.71967C16.1397 7.57902 15.9489 7.5 15.75 7.5H9V4.5H19.5V15Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Link",
      "category": "action",
      "lineDrawable": "aurum_ic_action_link",
      "fillDrawable": "aurum_ic_action_link_filled",
      "lineFigmaNodeId": "5162:1077",
      "fillFigmaNodeId": "5162:962",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1077",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-962",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Link (line, node 5162:1077) -->\n<path d=\"M22.4996 8.27134C22.4619 9.57695 21.9251 10.8184 20.9996 11.7401L17.7417 14.9998C17.2673 15.4769 16.7029 15.8551 16.0812 16.1126C15.4596 16.37 14.793 16.5016 14.1202 16.4998H14.1155C13.4312 16.4993 12.7538 16.3617 12.1236 16.095C11.4933 15.8284 10.9229 15.4381 10.446 14.9473C9.96909 14.4565 9.59538 13.8751 9.34695 13.2375C9.09851 12.5998 8.98039 11.9188 8.99956 11.2348C9.00515 11.0359 9.08954 10.8473 9.23414 10.7106C9.37875 10.5739 9.57174 10.5003 9.77065 10.5059C9.96956 10.5115 10.1581 10.5958 10.2948 10.7405C10.4315 10.8851 10.5052 11.0781 10.4996 11.277C10.4859 11.7606 10.5693 12.2422 10.7449 12.693C10.9205 13.1439 11.1847 13.5551 11.5219 13.9021C11.8591 14.2492 12.2624 14.5251 12.708 14.7136C13.1537 14.9022 13.6326 14.9995 14.1164 14.9998C14.5921 15.001 15.0633 14.9079 15.5027 14.7259C15.9422 14.5439 16.3412 14.2766 16.6767 13.9395L19.9346 10.6817C20.6067 10.001 20.9823 9.08213 20.9793 8.12556C20.9763 7.169 20.595 6.25246 19.9186 5.57606C19.2422 4.89967 18.3256 4.51834 17.3691 4.51535C16.4125 4.51236 15.4936 4.88794 14.813 5.56009L13.7817 6.59134C13.6399 6.72605 13.4511 6.80005 13.2556 6.79754C13.06 6.79504 12.8731 6.71624 12.7348 6.57793C12.5965 6.43963 12.5177 6.25278 12.5152 6.05721C12.5127 5.86163 12.5867 5.67282 12.7214 5.53103L13.7527 4.49978C14.2285 4.02383 14.7933 3.64629 15.4151 3.3887C16.0368 3.13111 16.7032 2.99854 17.3761 2.99854C18.0491 2.99854 18.7155 3.13111 19.3372 3.3887C19.9589 3.64629 20.5238 4.02383 20.9996 4.49978C21.4924 4.9938 21.8795 5.58293 22.1374 6.23133C22.3952 6.87972 22.5185 7.5738 22.4996 8.27134ZM10.2183 17.4054L9.18706 18.4367C8.85071 18.7752 8.4504 19.0436 8.00942 19.2261C7.56843 19.4086 7.09556 19.5016 6.61831 19.4998C5.90234 19.4992 5.20261 19.2864 4.60752 18.8883C4.01244 18.4902 3.54871 17.9247 3.27492 17.2631C3.00113 16.6016 2.92957 15.8737 3.06928 15.1715C3.20899 14.4693 3.55371 13.8243 4.05987 13.3179L7.31206 10.0601C7.8243 9.54515 8.47953 9.19613 9.19267 9.05836C9.90582 8.92059 10.6439 9.00043 11.3111 9.28752C11.9783 9.57461 12.5437 10.0557 12.934 10.6683C13.3242 11.2808 13.5213 11.9966 13.4996 12.7226C13.494 12.9215 13.5676 13.1145 13.7043 13.2591C13.841 13.4037 14.0296 13.4881 14.2285 13.4937C14.4274 13.4993 14.6204 13.4256 14.765 13.2889C14.9096 13.1522 14.994 12.9637 14.9996 12.7648C15.0176 12.0683 14.8939 11.3755 14.636 10.7283C14.3782 10.0811 13.9915 9.49303 13.4996 8.99978C12.5388 8.03943 11.236 7.49994 9.87753 7.49994C8.51909 7.49994 7.21626 8.03943 6.2555 8.99978L2.99956 12.2576C2.28352 12.9733 1.79573 13.8853 1.59782 14.8782C1.39991 15.871 1.50076 16.9003 1.88764 17.8359C2.27451 18.7715 2.93005 19.5714 3.77139 20.1345C4.61274 20.6977 5.60214 20.9988 6.61456 20.9998C7.28756 21.0017 7.95427 20.8701 8.57607 20.6127C9.19788 20.3552 9.76243 19.9769 10.2371 19.4998L11.2683 18.4685C11.3897 18.3256 11.4531 18.1423 11.446 17.9549C11.439 17.7675 11.362 17.5895 11.2302 17.4561C11.0984 17.3227 10.9214 17.2435 10.7341 17.2341C10.5468 17.2247 10.3628 17.2858 10.2183 17.4054Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Link (fill, node 5162:962) -->\n<path d=\"M19.5 3H4.5C4.10218 3 3.72064 3.15804 3.43934 3.43934C3.15804 3.72064 3 4.10218 3 4.5V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V4.5C21 4.10218 20.842 3.72064 20.5607 3.43934C20.2794 3.15804 19.8978 3 19.5 3ZM10.8469 18.0459C10.0112 18.6156 8.99291 18.8528 7.99148 18.7112C6.99005 18.5696 6.07752 18.0593 5.43252 17.2803C4.78753 16.5012 4.4565 15.5095 4.50424 14.4992C4.55197 13.489 4.97504 12.5329 5.69063 11.8181L8.06906 9.43969C8.83101 8.67914 9.86359 8.25198 10.9402 8.25198C12.0167 8.25198 13.0493 8.67914 13.8113 9.43969C14.2229 9.84891 14.5412 10.3424 14.7441 10.8863C14.7785 10.9786 14.7945 11.0768 14.791 11.1753C14.7875 11.2738 14.7647 11.3707 14.7237 11.4603C14.6828 11.55 14.6246 11.6307 14.5525 11.6979C14.4804 11.7651 14.3958 11.8174 14.3034 11.8519C14.2111 11.8863 14.1129 11.9023 14.0144 11.8988C13.9159 11.8953 13.819 11.8725 13.7294 11.8316C13.6397 11.7906 13.559 11.7325 13.4918 11.6603C13.4246 11.5882 13.3723 11.5036 13.3378 11.4113C13.1871 11.0102 12.9382 10.6533 12.6139 10.3733C12.2896 10.0932 11.9003 9.89901 11.4815 9.80836C11.0627 9.7177 10.6279 9.73351 10.2168 9.85434C9.80575 9.97517 9.43154 10.1972 9.12844 10.5L6.75 12.8784C6.29915 13.3293 6.03268 13.9321 6.00269 14.569C5.9727 15.2059 6.18135 15.8311 6.58784 16.3223C6.99433 16.8136 7.56943 17.1355 8.20069 17.2252C8.83195 17.315 9.47398 17.166 10.0013 16.8075C10.0824 16.7469 10.1749 16.7033 10.2733 16.6793C10.3717 16.6554 10.4739 16.6517 10.5738 16.6684C10.6737 16.685 10.7692 16.7217 10.8545 16.7763C10.9398 16.8309 11.0132 16.9022 11.0702 16.9858C11.1272 17.0695 11.1667 17.1639 11.1863 17.2633C11.2058 17.3626 11.2051 17.4649 11.184 17.564C11.163 17.6631 11.1221 17.7568 11.0638 17.8397C11.0056 17.9225 10.9311 17.9927 10.845 18.0459H10.8469ZM18.3103 12.1819L15.9319 14.5603C15.5559 14.9387 15.1086 15.2386 14.6158 15.4429C14.123 15.6471 13.5947 15.7515 13.0613 15.75C12.235 15.7489 11.4287 15.496 10.7499 15.025C10.071 14.554 9.55184 13.8873 9.26156 13.1138C9.19194 12.9273 9.19925 12.7208 9.28189 12.5397C9.36452 12.3586 9.51571 12.2177 9.70219 12.1481C9.88867 12.0785 10.0952 12.0858 10.2763 12.1684C10.4573 12.2511 10.5982 12.4023 10.6678 12.5887C10.8508 13.0752 11.1773 13.4946 11.6041 13.7913C12.0309 14.088 12.5377 14.2479 13.0575 14.25C13.394 14.251 13.7274 14.1852 14.0383 14.0564C14.3492 13.9277 14.6314 13.7386 14.8688 13.5L17.25 11.1216C17.7008 10.6707 17.9673 10.0679 17.9973 9.43098C18.0273 8.79408 17.8186 8.16889 17.4122 7.67766C17.0057 7.18643 16.4306 6.86448 15.7993 6.77475C15.168 6.68503 14.526 6.83399 13.9988 7.1925C13.9176 7.25315 13.8251 7.29674 13.7267 7.32066C13.6283 7.34457 13.5261 7.34831 13.4262 7.33164C13.3263 7.31498 13.2308 7.27825 13.1455 7.22369C13.0602 7.16912 12.9868 7.09784 12.9298 7.01415C12.8728 6.93046 12.8333 6.83609 12.8137 6.73672C12.7942 6.63736 12.7949 6.53506 12.816 6.436C12.837 6.33694 12.8779 6.24317 12.9362 6.16034C12.9944 6.07751 13.0689 6.00734 13.155 5.95406C13.9909 5.38729 15.008 5.15229 16.0078 5.29492C17.0076 5.43755 17.9184 5.94758 18.5624 6.72549C19.2065 7.50339 19.5376 8.49336 19.4911 9.50221C19.4447 10.5111 19.0241 11.4664 18.3113 12.1819H18.3103Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Download",
      "category": "action",
      "lineDrawable": "aurum_ic_action_download",
      "fillDrawable": "aurum_ic_action_download_filled",
      "lineFigmaNodeId": "5162:1071",
      "fillFigmaNodeId": "5162:956",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1071",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-956",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: DownloadSimple (line, node 5162:1071) -->\n<path d=\"M21 13.5V19.5C21 19.6989 20.921 19.8897 20.7803 20.0303C20.6397 20.171 20.4489 20.25 20.25 20.25H3.75C3.55109 20.25 3.36032 20.171 3.21967 20.0303C3.07902 19.8897 3 19.6989 3 19.5V13.5C3 13.3011 3.07902 13.1103 3.21967 12.9697C3.36032 12.829 3.55109 12.75 3.75 12.75C3.94891 12.75 4.13968 12.829 4.28033 12.9697C4.42098 13.1103 4.5 13.3011 4.5 13.5V18.75H19.5V13.5C19.5 13.3011 19.579 13.1103 19.7197 12.9697C19.8603 12.829 20.0511 12.75 20.25 12.75C20.4489 12.75 20.6397 12.829 20.7803 12.9697C20.921 13.1103 21 13.3011 21 13.5ZM11.4694 14.0306C11.539 14.1004 11.6217 14.1557 11.7128 14.1934C11.8038 14.2312 11.9014 14.2506 12 14.2506C12.0986 14.2506 12.1962 14.2312 12.2872 14.1934C12.3783 14.1557 12.461 14.1004 12.5306 14.0306L16.2806 10.2806C16.3503 10.2109 16.4056 10.1282 16.4433 10.0372C16.481 9.94613 16.5004 9.84855 16.5004 9.75C16.5004 9.65145 16.481 9.55387 16.4433 9.46283C16.4056 9.37178 16.3503 9.28906 16.2806 9.21937C16.2109 9.14969 16.1282 9.09442 16.0372 9.0567C15.9461 9.01899 15.8485 8.99958 15.75 8.99958C15.6515 8.99958 15.5539 9.01899 15.4628 9.0567C15.3718 9.09442 15.2891 9.14969 15.2194 9.21937L12.75 11.6897V3C12.75 2.80109 12.671 2.61032 12.5303 2.46967C12.3897 2.32902 12.1989 2.25 12 2.25C11.8011 2.25 11.6103 2.32902 11.4697 2.46967C11.329 2.61032 11.25 2.80109 11.25 3V11.6897L8.78063 9.21937C8.63989 9.07864 8.44902 8.99958 8.25 8.99958C8.05098 8.99958 7.86011 9.07864 7.71937 9.21937C7.57864 9.36011 7.49958 9.55098 7.49958 9.75C7.49958 9.94902 7.57864 10.1399 7.71937 10.2806L11.4694 14.0306Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: DownloadSimple (fill, node 5162:956) -->\n<path d=\"M21 13.5V19.5C21 19.6989 20.921 19.8897 20.7803 20.0303C20.6397 20.171 20.4489 20.25 20.25 20.25H3.75C3.55109 20.25 3.36032 20.171 3.21967 20.0303C3.07902 19.8897 3 19.6989 3 19.5V13.5C3 13.3011 3.07902 13.1103 3.21967 12.9697C3.36032 12.829 3.55109 12.75 3.75 12.75C3.94891 12.75 4.13968 12.829 4.28033 12.9697C4.42098 13.1103 4.5 13.3011 4.5 13.5V18.75H19.5V13.5C19.5 13.3011 19.579 13.1103 19.7197 12.9697C19.8603 12.829 20.0511 12.75 20.25 12.75C20.4489 12.75 20.6397 12.829 20.7803 12.9697C20.921 13.1103 21 13.3011 21 13.5ZM11.4694 14.0306C11.539 14.1004 11.6217 14.1557 11.7128 14.1934C11.8038 14.2312 11.9014 14.2506 12 14.2506C12.0986 14.2506 12.1962 14.2312 12.2872 14.1934C12.3783 14.1557 12.461 14.1004 12.5306 14.0306L16.2806 10.2806C16.3856 10.1757 16.4572 10.042 16.4861 9.89648C16.5151 9.75092 16.5003 9.60002 16.4435 9.46291C16.3867 9.32579 16.2904 9.20861 16.167 9.12621C16.0435 9.04381 15.8984 8.99988 15.75 9H12.75V3C12.75 2.80109 12.671 2.61032 12.5303 2.46967C12.3897 2.32902 12.1989 2.25 12 2.25C11.8011 2.25 11.6103 2.32902 11.4697 2.46967C11.329 2.61032 11.25 2.80109 11.25 3V9H8.25C8.10158 8.99988 7.95646 9.04381 7.83301 9.12621C7.70957 9.20861 7.61335 9.32579 7.55653 9.46291C7.49972 9.60002 7.48487 9.75092 7.51385 9.89648C7.54284 10.042 7.61437 10.1757 7.71937 10.2806L11.4694 14.0306Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Upload",
      "category": "action",
      "lineDrawable": "aurum_ic_action_upload",
      "fillDrawable": "aurum_ic_action_upload_filled",
      "lineFigmaNodeId": "5162:1073",
      "fillFigmaNodeId": "5162:958",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1073",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-958",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: UploadSimple (line, node 5162:1073) -->\n<path d=\"M21 13.5001V19.5001C21 19.699 20.921 19.8898 20.7803 20.0304C20.6397 20.1711 20.4489 20.2501 20.25 20.2501H3.75C3.55109 20.2501 3.36032 20.1711 3.21967 20.0304C3.07902 19.8898 3 19.699 3 19.5001V13.5001C3 13.3012 3.07902 13.1104 3.21967 12.9698C3.36032 12.8291 3.55109 12.7501 3.75 12.7501C3.94891 12.7501 4.13968 12.8291 4.28033 12.9698C4.42098 13.1104 4.5 13.3012 4.5 13.5001V18.7501H19.5V13.5001C19.5 13.3012 19.579 13.1104 19.7197 12.9698C19.8603 12.8291 20.0511 12.7501 20.25 12.7501C20.4489 12.7501 20.6397 12.8291 20.7803 12.9698C20.921 13.1104 21 13.3012 21 13.5001ZM8.78063 7.28073L11.25 4.81041V13.5001C11.25 13.699 11.329 13.8898 11.4697 14.0304C11.6103 14.1711 11.8011 14.2501 12 14.2501C12.1989 14.2501 12.3897 14.1711 12.5303 14.0304C12.671 13.8898 12.75 13.699 12.75 13.5001V4.81041L15.2194 7.28073C15.3601 7.42146 15.551 7.50052 15.75 7.50052C15.949 7.50052 16.1399 7.42146 16.2806 7.28073C16.4214 7.14 16.5004 6.94912 16.5004 6.7501C16.5004 6.55108 16.4214 6.36021 16.2806 6.21948L12.5306 2.46948C12.461 2.39974 12.3783 2.34442 12.2872 2.30668C12.1962 2.26894 12.0986 2.24951 12 2.24951C11.9014 2.24951 11.8038 2.26894 11.7128 2.30668C11.6217 2.34442 11.539 2.39974 11.4694 2.46948L7.71937 6.21948C7.57864 6.36021 7.49958 6.55108 7.49958 6.7501C7.49958 6.94912 7.57864 7.14 7.71937 7.28073C7.86011 7.42146 8.05098 7.50052 8.25 7.50052C8.44902 7.50052 8.63989 7.42146 8.78063 7.28073Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: UploadSimple (fill, node 5162:958) -->\n<path d=\"M21 13.4996V19.4996C21 19.6985 20.921 19.8893 20.7803 20.0299C20.6397 20.1706 20.4489 20.2496 20.25 20.2496H3.75C3.55109 20.2496 3.36032 20.1706 3.21967 20.0299C3.07902 19.8893 3 19.6985 3 19.4996V13.4996C3 13.3007 3.07902 13.1099 3.21967 12.9693C3.36032 12.8286 3.55109 12.7496 3.75 12.7496C3.94891 12.7496 4.13968 12.8286 4.28033 12.9693C4.42098 13.1099 4.5 13.3007 4.5 13.4996V18.7496H19.5V13.4996C19.5 13.3007 19.579 13.1099 19.7197 12.9693C19.8603 12.8286 20.0511 12.7496 20.25 12.7496C20.4489 12.7496 20.6397 12.8286 20.7803 12.9693C20.921 13.1099 21 13.3007 21 13.4996ZM8.25 7.49961H11.25V13.4996C11.25 13.6985 11.329 13.8893 11.4697 14.0299C11.6103 14.1706 11.8011 14.2496 12 14.2496C12.1989 14.2496 12.3897 14.1706 12.5303 14.0299C12.671 13.8893 12.75 13.6985 12.75 13.4996V7.49961H15.75C15.8984 7.49973 16.0435 7.45581 16.167 7.3734C16.2904 7.291 16.3867 7.17382 16.4435 7.03671C16.5003 6.89959 16.5151 6.7487 16.4861 6.60313C16.4572 6.45757 16.3856 6.32388 16.2806 6.21899L12.5306 2.46899C12.461 2.39926 12.3783 2.34394 12.2872 2.30619C12.1962 2.26845 12.0986 2.24902 12 2.24902C11.9014 2.24902 11.8038 2.26845 11.7128 2.30619C11.6217 2.34394 11.539 2.39926 11.4694 2.46899L7.71937 6.21899C7.61437 6.32388 7.54284 6.45757 7.51385 6.60313C7.48487 6.7487 7.49972 6.89959 7.55653 7.03671C7.61335 7.17382 7.70957 7.291 7.83301 7.3734C7.95646 7.45581 8.10158 7.49973 8.25 7.49961Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Share",
      "category": "action",
      "lineDrawable": "aurum_ic_action_share",
      "fillDrawable": "aurum_ic_action_share_filled",
      "lineFigmaNodeId": "5162:1049",
      "fillFigmaNodeId": "5162:934",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1049",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-934",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ShareNetwork (line, node 5162:1049) -->\n<path d=\"M16.5002 15.0001C15.9999 14.9999 15.5047 15.1001 15.0438 15.2948C14.5829 15.4895 14.1658 15.7747 13.8171 16.1335L9.49522 13.3557C9.83519 12.4839 9.83519 11.5162 9.49522 10.6444L13.8171 7.86664C14.4663 8.53162 15.3392 8.93187 16.2668 8.98979C17.1943 9.0477 18.1103 8.75915 18.8371 8.18009C19.564 7.60102 20.0499 6.77269 20.2007 5.85569C20.3516 4.93869 20.1565 3.99835 19.6534 3.21698C19.1503 2.43562 18.375 1.86889 17.4778 1.62668C16.5806 1.38447 15.6254 1.48403 14.7975 1.90606C13.9695 2.32809 13.3277 3.04252 12.9966 3.91084C12.6655 4.77917 12.6685 5.73951 13.0052 6.6057L8.68335 9.38351C8.16291 8.84921 7.49496 8.48224 6.76489 8.32952C6.03481 8.1768 5.27578 8.24527 4.58481 8.52617C3.89385 8.80707 3.30235 9.28764 2.88592 9.90645C2.4695 10.5253 2.24707 11.2542 2.24707 12.0001C2.24707 12.746 2.4695 13.4749 2.88592 14.0937C3.30235 14.7125 3.89385 15.1931 4.58481 15.474C5.27578 15.7549 6.03481 15.8233 6.76489 15.6706C7.49496 15.5179 8.16291 15.1509 8.68335 14.6166L13.0052 17.3944C12.7157 18.1412 12.6729 18.961 12.883 19.7339C13.0931 20.5067 13.5451 21.192 14.1729 21.6894C14.8006 22.1867 15.5712 22.47 16.3716 22.4978C17.172 22.5256 17.9603 22.2964 18.621 21.8437C19.2818 21.3911 19.7802 20.7388 20.0434 19.9823C20.3066 19.2259 20.3206 18.4051 20.0836 17.64C19.8465 16.875 19.3707 16.206 18.7259 15.731C18.0811 15.2559 17.3011 14.9998 16.5002 15.0001ZM16.5002 3.00007C16.9452 3.00007 17.3802 3.13203 17.7503 3.37927C18.1203 3.6265 18.4087 3.9779 18.579 4.38904C18.7493 4.80017 18.7938 5.25257 18.707 5.68903C18.6202 6.12548 18.4059 6.5264 18.0912 6.84106C17.7765 7.15573 17.3756 7.37002 16.9392 7.45684C16.5027 7.54366 16.0503 7.4991 15.6392 7.3288C15.2281 7.15851 14.8767 6.87012 14.6294 6.50011C14.3822 6.1301 14.2502 5.69508 14.2502 5.25007C14.2502 4.65334 14.4873 4.08104 14.9092 3.65908C15.3312 3.23713 15.9035 3.00007 16.5002 3.00007ZM6.00023 14.2501C5.55522 14.2501 5.1202 14.1181 4.75019 13.8709C4.38018 13.6236 4.09179 13.2722 3.9215 12.8611C3.7512 12.45 3.70664 11.9976 3.79346 11.5611C3.88028 11.1247 4.09457 10.7238 4.40924 10.4091C4.7239 10.0944 5.12481 9.88012 5.56127 9.79331C5.99773 9.70649 6.45013 9.75105 6.86126 9.92134C7.2724 10.0916 7.6238 10.38 7.87103 10.75C8.11827 11.1201 8.25023 11.5551 8.25023 12.0001C8.25023 12.5968 8.01317 13.1691 7.59122 13.5911C7.16926 14.013 6.59696 14.2501 6.00023 14.2501ZM16.5002 21.0001C16.0552 21.0001 15.6202 20.8681 15.2502 20.6209C14.8802 20.3736 14.5918 20.0222 14.4215 19.6111C14.2512 19.2 14.2066 18.7476 14.2935 18.3111C14.3803 17.8747 14.5946 17.4738 14.9092 17.1591C15.2239 16.8444 15.6248 16.6301 16.0613 16.5433C16.4977 16.4565 16.9501 16.501 17.3613 16.6713C17.7724 16.8416 18.1238 17.13 18.371 17.5C18.6183 17.8701 18.7502 18.3051 18.7502 18.7501C18.7502 19.3468 18.5132 19.9191 18.0912 20.3411C17.6693 20.763 17.097 21.0001 16.5002 21.0001Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ShareNetwork (fill, node 5162:934) -->\n<path d=\"M19.8747 18.7497C19.8748 19.2423 19.767 19.7289 19.559 20.1754C19.3509 20.622 19.0477 21.0175 18.6705 21.3344C18.2933 21.6512 17.8513 21.8816 17.3756 22.0095C16.8999 22.1373 16.4019 22.1595 15.9167 22.0744C15.4315 21.9893 14.9708 21.799 14.567 21.5169C14.1631 21.2348 13.826 20.8678 13.5791 20.4415C13.3322 20.0152 13.1817 19.54 13.138 19.0494C13.0943 18.5587 13.1586 18.0644 13.3263 17.6012L8.35752 14.4091C7.88296 14.8745 7.28152 15.1895 6.62863 15.3145C5.97574 15.4395 5.30048 15.3689 4.68757 15.1115C4.07466 14.8542 3.5514 14.4216 3.18342 13.868C2.81544 13.3144 2.61914 12.6644 2.61914 11.9997C2.61914 11.3349 2.81544 10.685 3.18342 10.1314C3.5514 9.5778 4.07466 9.14519 4.68757 8.88785C5.30048 8.6305 5.97574 8.55989 6.62863 8.68486C7.28152 8.80982 7.88296 9.12481 8.35752 9.5903L13.3263 6.4028C13.0417 5.62097 13.0553 4.76172 13.3642 3.98922C13.6732 3.21673 14.256 2.58517 15.0012 2.21521C15.7464 1.84525 16.6018 1.76284 17.404 1.98373C18.2061 2.20461 18.8987 2.7133 19.3495 3.4126C19.8003 4.1119 19.9776 4.95277 19.8476 5.77454C19.7175 6.59631 19.2893 7.34136 18.6446 7.86732C18 8.39329 17.1841 8.66329 16.353 8.62573C15.5218 8.58818 14.7337 8.2457 14.1391 7.66374L9.17033 10.8559C9.43887 11.598 9.43887 12.4107 9.17033 13.1528L14.1391 16.345C14.6135 15.8807 15.2143 15.5666 15.8662 15.442C16.5182 15.3174 17.1925 15.3879 17.8046 15.6445C18.4168 15.9012 18.9397 16.3327 19.3079 16.885C19.6761 17.4373 19.8733 18.0859 19.8747 18.7497Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Search",
      "category": "action",
      "lineDrawable": "aurum_ic_action_search",
      "fillDrawable": "aurum_ic_action_search_filled",
      "lineFigmaNodeId": "5162:1089",
      "fillFigmaNodeId": "5162:974",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1089",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-974",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: MagnifyingGlass (line, node 5162:1089) -->\n<path d=\"M21.5308 20.4696L16.8368 15.7765C18.1973 14.1431 18.8757 12.048 18.7309 9.92715C18.5861 7.80629 17.6293 5.82289 16.0593 4.38956C14.4894 2.95623 12.4274 2.18333 10.3021 2.23163C8.17687 2.27993 6.15205 3.14571 4.64888 4.64888C3.14571 6.15205 2.27993 8.17687 2.23163 10.3021C2.18333 12.4274 2.95623 14.4894 4.38956 16.0593C5.82289 17.6293 7.80629 18.5861 9.92715 18.7309C12.048 18.8757 14.1431 18.1973 15.7765 16.8368L20.4696 21.5308C20.5393 21.6005 20.622 21.6558 20.713 21.6935C20.8041 21.7312 20.9017 21.7506 21.0002 21.7506C21.0988 21.7506 21.1963 21.7312 21.2874 21.6935C21.3784 21.6558 21.4612 21.6005 21.5308 21.5308C21.6005 21.4612 21.6558 21.3784 21.6935 21.2874C21.7312 21.1963 21.7506 21.0988 21.7506 21.0002C21.7506 20.9017 21.7312 20.8041 21.6935 20.713C21.6558 20.622 21.6005 20.5393 21.5308 20.4696ZM3.75021 10.5002C3.75021 9.16519 4.14609 7.86015 4.88779 6.75011C5.62949 5.64008 6.6837 4.77492 7.9171 4.26403C9.1505 3.75314 10.5077 3.61946 11.8171 3.87991C13.1264 4.14036 14.3292 4.78324 15.2732 5.72724C16.2172 6.67125 16.8601 7.87398 17.1205 9.18335C17.381 10.4927 17.2473 11.8499 16.7364 13.0833C16.2255 14.3167 15.3603 15.3709 14.2503 16.1126C13.1403 16.8543 11.8352 17.2502 10.5002 17.2502C8.71061 17.2482 6.99488 16.5364 5.72944 15.271C4.464 14.0056 3.7522 12.2898 3.75021 10.5002Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: MagnifyingGlass (fill, node 5162:974) -->\n<path d=\"M15.75 10.4998C15.75 11.5381 15.4421 12.5532 14.8652 13.4165C14.2884 14.2799 13.4684 14.9528 12.5091 15.3501C11.5498 15.7475 10.4942 15.8515 9.47581 15.6489C8.45741 15.4463 7.52194 14.9463 6.78772 14.2121C6.05349 13.4779 5.55348 12.5424 5.35091 11.524C5.14833 10.5056 5.2523 9.45 5.64966 8.49068C6.04702 7.53137 6.71993 6.71143 7.58329 6.13456C8.44664 5.55768 9.46168 5.24977 10.5 5.24977C11.8924 5.24977 13.2278 5.8029 14.2123 6.78746C15.1969 7.77203 15.75 9.10739 15.75 10.4998ZM21.5307 21.5304C21.461 21.6001 21.3783 21.6554 21.2872 21.6932C21.1962 21.7309 21.0986 21.7504 21 21.7504C20.9015 21.7504 20.8039 21.7309 20.7128 21.6932C20.6218 21.6554 20.5391 21.6001 20.4694 21.5304L15.7763 16.8363C14.1442 18.1941 12.0515 18.8705 9.93346 18.7247C7.81543 18.5789 5.83514 17.6222 4.40449 16.0536C2.97384 14.485 2.20297 12.4252 2.25222 10.3027C2.30148 8.18027 3.16707 6.15849 4.66895 4.65793C6.17083 3.15738 8.19337 2.29358 10.3159 2.2462C12.4384 2.19882 14.4975 2.97151 16.0648 4.40354C17.6322 5.83558 18.5871 7.81672 18.731 9.93488C18.8749 12.053 18.1968 14.1451 16.8375 15.776L21.5307 20.4691C21.6004 20.5388 21.6557 20.6215 21.6934 20.7126C21.7312 20.8036 21.7506 20.9012 21.7506 20.9998C21.7506 21.0983 21.7312 21.1959 21.6934 21.287C21.6557 21.378 21.6004 21.4607 21.5307 21.5304ZM10.5 17.2498C11.8351 17.2498 13.1401 16.8539 14.2501 16.1122C15.3602 15.3705 16.2253 14.3163 16.7362 13.0829C17.2471 11.8495 17.3808 10.4923 17.1203 9.18291C16.8599 7.87354 16.217 6.67081 15.273 5.7268C14.329 4.7828 13.1263 4.13992 11.8169 3.87947C10.5075 3.61902 9.15032 3.75269 7.91692 4.26359C6.68351 4.77448 5.62931 5.63964 4.88761 6.74967C4.14591 7.8597 3.75003 9.16475 3.75003 10.4998C3.75201 12.2894 4.46381 14.0051 5.72925 15.2706C6.99469 16.536 8.71043 17.2478 10.5 17.2498Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "QrCode",
      "category": "action",
      "lineDrawable": "aurum_ic_action_qr_code",
      "fillDrawable": "aurum_ic_action_qr_code_filled",
      "lineFigmaNodeId": "5162:1093",
      "fillFigmaNodeId": "5162:978",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1093",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-978",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: QrCode (line, node 5162:1093) -->\n<path d=\"M9.64453 12.6938C10.6206 12.6938 11.4118 13.4738 11.4121 14.4351V17.9175C11.412 18.879 10.6208 19.6587 9.64453 19.6587H6.10938C5.13311 19.6587 4.34089 18.8789 4.34082 17.9175V14.4351C4.34115 13.4738 5.13328 12.6939 6.10938 12.6938H9.64453ZM18.7949 16.1753C19.2746 16.1754 19.6637 16.5648 19.6641 17.0444V18.7886C19.6638 19.2683 19.2746 19.6576 18.7949 19.6577H16.9971C16.5174 19.6575 16.1282 19.2683 16.1279 18.7886V17.0444C16.1283 16.5649 16.5175 16.1755 16.9971 16.1753H18.7949ZM6.10938 13.855C5.78416 13.855 5.51987 14.1148 5.51953 14.4351V17.9175C5.5196 18.2379 5.784 18.4975 6.10938 18.4976H9.64453C9.96993 18.4976 10.2343 18.2379 10.2344 17.9175V14.4351C10.234 14.1148 9.96977 13.855 9.64453 13.855H6.10938ZM15.2588 12.6919C15.7385 12.692 16.1275 13.0814 16.1279 13.561V15.3052C16.1278 15.785 15.7387 16.1742 15.2588 16.1743H13.4619C12.982 16.1743 12.5929 15.7851 12.5928 15.3052V13.561C12.5932 13.0814 12.9822 12.6919 13.4619 12.6919H15.2588ZM9.64453 4.33936C10.6208 4.33944 11.4121 5.11905 11.4121 6.08057V9.56299C11.4117 10.5242 10.6206 11.3041 9.64453 11.3042H6.1084C5.13258 11.3038 4.34121 10.524 4.34082 9.56299V6.08057C4.34082 5.11922 5.13234 4.33972 6.1084 4.33936H9.64453ZM17.8936 4.33936C18.8699 4.33936 19.6621 5.119 19.6621 6.08057V9.56299C19.6617 10.5242 18.8697 11.3042 17.8936 11.3042H14.3584C13.3825 11.304 12.5912 10.5241 12.5908 9.56299V6.08057C12.5908 5.11914 13.3822 4.33959 14.3584 4.33936H17.8936ZM6.1084 5.50049C5.78325 5.50085 5.51953 5.76027 5.51953 6.08057V9.56299C5.51992 9.88296 5.78349 10.1427 6.1084 10.1431H9.64453C9.96967 10.143 10.233 9.88313 10.2334 9.56299V6.08057C10.2334 5.7601 9.96991 5.50058 9.64453 5.50049H6.1084ZM14.3584 5.50049C14.0331 5.50072 13.7686 5.76019 13.7686 6.08057V9.56299C13.769 9.88303 14.0334 10.1428 14.3584 10.1431H17.8936C18.2188 10.1431 18.483 9.88318 18.4834 9.56299V6.08057C18.4834 5.76004 18.219 5.50049 17.8936 5.50049H14.3584Z\" fill=\"#121212\"/>\n<path d=\"M5.69118 3.39706C4.42417 3.39706 3.39706 4.42417 3.39706 5.69118V7.41176C3.39706 7.72852 3.14028 7.98529 2.82353 7.98529C2.50678 7.98529 2.25 7.72852 2.25 7.41176V5.69118C2.25 3.79067 3.79067 2.25 5.69118 2.25H7.41176C7.72852 2.25 7.98529 2.50678 7.98529 2.82353C7.98529 3.14028 7.72852 3.39706 7.41176 3.39706H5.69118ZM16.0147 2.82353C16.0147 2.50678 16.2715 2.25 16.5882 2.25H18.3088C20.2093 2.25 21.75 3.79067 21.75 5.69118V7.41176C21.75 7.72852 21.4932 7.98529 21.1765 7.98529C20.8597 7.98529 20.6029 7.72852 20.6029 7.41176V5.69118C20.6029 4.42417 19.5758 3.39706 18.3088 3.39706H16.5882C16.2715 3.39706 16.0147 3.14028 16.0147 2.82353ZM2.82353 16.0147C3.14028 16.0147 3.39706 16.2715 3.39706 16.5882V18.3088C3.39706 19.5758 4.42417 20.6029 5.69118 20.6029H7.41176C7.72852 20.6029 7.98529 20.8597 7.98529 21.1765C7.98529 21.4932 7.72852 21.75 7.41176 21.75H5.69118C3.79067 21.75 2.25 20.2093 2.25 18.3088V16.5882C2.25 16.2715 2.50678 16.0147 2.82353 16.0147ZM21.1765 16.0147C21.4932 16.0147 21.75 16.2715 21.75 16.5882V18.3088C21.75 20.2093 20.2093 21.75 18.3088 21.75H16.5882C16.2715 21.75 16.0147 21.4932 16.0147 21.1765C16.0147 20.8597 16.2715 20.6029 16.5882 20.6029H18.3088C19.5758 20.6029 20.6029 19.5758 20.6029 18.3088V16.5882C20.6029 16.2715 20.8597 16.0147 21.1765 16.0147Z\" fill=\"#121212\" fill-rule=\"evenodd\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: QrCode (fill, node 5162:978) -->\n<path d=\"M11.25 5.25V9.75C11.25 10.1478 11.092 10.5294 10.8107 10.8107C10.5294 11.092 10.1478 11.25 9.75 11.25H5.25C4.85218 11.25 4.47064 11.092 4.18934 10.8107C3.90804 10.5294 3.75 10.1478 3.75 9.75V5.25C3.75 4.85218 3.90804 4.47064 4.18934 4.18934C4.47064 3.90804 4.85218 3.75 5.25 3.75H9.75C10.1478 3.75 10.5294 3.90804 10.8107 4.18934C11.092 4.47064 11.25 4.85218 11.25 5.25ZM9.75 12.75H5.25C4.85218 12.75 4.47064 12.908 4.18934 13.1893C3.90804 13.4706 3.75 13.8522 3.75 14.25V18.75C3.75 19.1478 3.90804 19.5294 4.18934 19.8107C4.47064 20.092 4.85218 20.25 5.25 20.25H9.75C10.1478 20.25 10.5294 20.092 10.8107 19.8107C11.092 19.5294 11.25 19.1478 11.25 18.75V14.25C11.25 13.8522 11.092 13.4706 10.8107 13.1893C10.5294 12.908 10.1478 12.75 9.75 12.75ZM18.75 3.75H14.25C13.8522 3.75 13.4706 3.90804 13.1893 4.18934C12.908 4.47064 12.75 4.85218 12.75 5.25V9.75C12.75 10.1478 12.908 10.5294 13.1893 10.8107C13.4706 11.092 13.8522 11.25 14.25 11.25H18.75C19.1478 11.25 19.5294 11.092 19.8107 10.8107C20.092 10.5294 20.25 10.1478 20.25 9.75V5.25C20.25 4.85218 20.092 4.47064 19.8107 4.18934C19.5294 3.90804 19.1478 3.75 18.75 3.75ZM13.5 17.25C13.6989 17.25 13.8897 17.171 14.0303 17.0303C14.171 16.8897 14.25 16.6989 14.25 16.5V13.5C14.25 13.3011 14.171 13.1103 14.0303 12.9697C13.8897 12.829 13.6989 12.75 13.5 12.75C13.3011 12.75 13.1103 12.829 12.9697 12.9697C12.829 13.1103 12.75 13.3011 12.75 13.5V16.5C12.75 16.6989 12.829 16.8897 12.9697 17.0303C13.1103 17.171 13.3011 17.25 13.5 17.25ZM19.5 14.25H17.25V13.5C17.25 13.3011 17.171 13.1103 17.0303 12.9697C16.8897 12.829 16.6989 12.75 16.5 12.75C16.3011 12.75 16.1103 12.829 15.9697 12.9697C15.829 13.1103 15.75 13.3011 15.75 13.5V18.75H13.5C13.3011 18.75 13.1103 18.829 12.9697 18.9697C12.829 19.1103 12.75 19.3011 12.75 19.5C12.75 19.6989 12.829 19.8897 12.9697 20.0303C13.1103 20.171 13.3011 20.25 13.5 20.25H16.5C16.6989 20.25 16.8897 20.171 17.0303 20.0303C17.171 19.8897 17.25 19.6989 17.25 19.5V15.75H19.5C19.6989 15.75 19.8897 15.671 20.0303 15.5303C20.171 15.3897 20.25 15.1989 20.25 15C20.25 14.8011 20.171 14.6103 20.0303 14.4697C19.8897 14.329 19.6989 14.25 19.5 14.25ZM19.5 17.25C19.3011 17.25 19.1103 17.329 18.9697 17.4697C18.829 17.6103 18.75 17.8011 18.75 18V19.5C18.75 19.6989 18.829 19.8897 18.9697 20.0303C19.1103 20.171 19.3011 20.25 19.5 20.25C19.6989 20.25 19.8897 20.171 20.0303 20.0303C20.171 19.8897 20.25 19.6989 20.25 19.5V18C20.25 17.8011 20.171 17.6103 20.0303 17.4697C19.8897 17.329 19.6989 17.25 19.5 17.25Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "SortAscending",
      "category": "action",
      "lineDrawable": "aurum_ic_action_sort_ascending",
      "fillDrawable": "aurum_ic_action_sort_ascending_filled",
      "lineFigmaNodeId": "5162:1097",
      "fillFigmaNodeId": "5162:982",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1097",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-982",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SortAscending (line, node 5162:1097) -->\n<path d=\"M12 12C12 12.1989 11.921 12.3897 11.7803 12.5303C11.6397 12.671 11.4489 12.75 11.25 12.75H4.5C4.30109 12.75 4.11032 12.671 3.96967 12.5303C3.82902 12.3897 3.75 12.1989 3.75 12C3.75 11.8011 3.82902 11.6103 3.96967 11.4697C4.11032 11.329 4.30109 11.25 4.5 11.25H11.25C11.4489 11.25 11.6397 11.329 11.7803 11.4697C11.921 11.6103 12 11.8011 12 12ZM4.5 6.75H17.25C17.4489 6.75 17.6397 6.67098 17.7803 6.53033C17.921 6.38968 18 6.19891 18 6C18 5.80109 17.921 5.61032 17.7803 5.46967C17.6397 5.32902 17.4489 5.25 17.25 5.25H4.5C4.30109 5.25 4.11032 5.32902 3.96967 5.46967C3.82902 5.61032 3.75 5.80109 3.75 6C3.75 6.19891 3.82902 6.38968 3.96967 6.53033C4.11032 6.67098 4.30109 6.75 4.5 6.75ZM9.75 17.25H4.5C4.30109 17.25 4.11032 17.329 3.96967 17.4697C3.82902 17.6103 3.75 17.8011 3.75 18C3.75 18.1989 3.82902 18.3897 3.96967 18.5303C4.11032 18.671 4.30109 18.75 4.5 18.75H9.75C9.94891 18.75 10.1397 18.671 10.2803 18.5303C10.421 18.3897 10.5 18.1989 10.5 18C10.5 17.8011 10.421 17.6103 10.2803 17.4697C10.1397 17.329 9.94891 17.25 9.75 17.25ZM21.5306 15.2194C21.461 15.1496 21.3783 15.0943 21.2872 15.0566C21.1962 15.0188 21.0986 14.9994 21 14.9994C20.9014 14.9994 20.8038 15.0188 20.7128 15.0566C20.6217 15.0943 20.539 15.1496 20.4694 15.2194L18 17.6897V10.5C18 10.3011 17.921 10.1103 17.7803 9.96967C17.6397 9.82902 17.4489 9.75 17.25 9.75C17.0511 9.75 16.8603 9.82902 16.7197 9.96967C16.579 10.1103 16.5 10.3011 16.5 10.5V17.6897L14.0306 15.2194C13.8899 15.0786 13.699 14.9996 13.5 14.9996C13.301 14.9996 13.1101 15.0786 12.9694 15.2194C12.8286 15.3601 12.7496 15.551 12.7496 15.75C12.7496 15.949 12.8286 16.1399 12.9694 16.2806L16.7194 20.0306C16.789 20.1004 16.8717 20.1557 16.9628 20.1934C17.0538 20.2312 17.1514 20.2506 17.25 20.2506C17.3486 20.2506 17.4462 20.2312 17.5372 20.1934C17.6283 20.1557 17.711 20.1004 17.7806 20.0306L21.5306 16.2806C21.6004 16.211 21.6557 16.1283 21.6934 16.0372C21.7312 15.9462 21.7506 15.8486 21.7506 15.75C21.7506 15.6514 21.7312 15.5538 21.6934 15.4628C21.6557 15.3717 21.6004 15.289 21.5306 15.2194Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SortAscending (fill, node 5162:982) -->\n<path d=\"M19.5 3H4.5C4.10218 3 3.72064 3.15804 3.43934 3.43934C3.15804 3.72064 3 4.10218 3 4.5V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V4.5C21 4.10218 20.842 3.72064 20.5607 3.43934C20.2794 3.15804 19.8978 3 19.5 3ZM6.75 6.75H15.75C15.9489 6.75 16.1397 6.82902 16.2803 6.96967C16.421 7.11032 16.5 7.30109 16.5 7.5C16.5 7.69891 16.421 7.88968 16.2803 8.03033C16.1397 8.17098 15.9489 8.25 15.75 8.25H6.75C6.55109 8.25 6.36032 8.17098 6.21967 8.03033C6.07902 7.88968 6 7.69891 6 7.5C6 7.30109 6.07902 7.11032 6.21967 6.96967C6.36032 6.82902 6.55109 6.75 6.75 6.75ZM10.5 17.25H6.75C6.55109 17.25 6.36032 17.171 6.21967 17.0303C6.07902 16.8897 6 16.6989 6 16.5C6 16.3011 6.07902 16.1103 6.21967 15.9697C6.36032 15.829 6.55109 15.75 6.75 15.75H10.5C10.6989 15.75 10.8897 15.829 11.0303 15.9697C11.171 16.1103 11.25 16.3011 11.25 16.5C11.25 16.6989 11.171 16.8897 11.0303 17.0303C10.8897 17.171 10.6989 17.25 10.5 17.25ZM11.25 12.75H6.75C6.55109 12.75 6.36032 12.671 6.21967 12.5303C6.07902 12.3897 6 12.1989 6 12C6 11.8011 6.07902 11.6103 6.21967 11.4697C6.36032 11.329 6.55109 11.25 6.75 11.25H11.25C11.4489 11.25 11.6397 11.329 11.7803 11.4697C11.921 11.6103 12 11.8011 12 12C12 12.1989 11.921 12.3897 11.7803 12.5303C11.6397 12.671 11.4489 12.75 11.25 12.75ZM18.5306 15.5306L16.2806 17.7806C16.211 17.8504 16.1283 17.9057 16.0372 17.9434C15.9462 17.9812 15.8486 18.0006 15.75 18.0006C15.6514 18.0006 15.5538 17.9812 15.4628 17.9434C15.3717 17.9057 15.289 17.8504 15.2194 17.7806L12.9694 15.5306C12.8286 15.3899 12.7496 15.199 12.7496 15C12.7496 14.801 12.8286 14.6101 12.9694 14.4694C13.1101 14.3286 13.301 14.2496 13.5 14.2496C13.699 14.2496 13.8899 14.3286 14.0306 14.4694L15 15.4397V11.25C15 11.0511 15.079 10.8603 15.2197 10.7197C15.3603 10.579 15.5511 10.5 15.75 10.5C15.9489 10.5 16.1397 10.579 16.2803 10.7197C16.421 10.8603 16.5 11.0511 16.5 11.25V15.4397L17.4694 14.4694C17.6101 14.3286 17.801 14.2496 18 14.2496C18.199 14.2496 18.3899 14.3286 18.5306 14.4694C18.6714 14.6101 18.7504 14.801 18.7504 15C18.7504 15.199 18.6714 15.3899 18.5306 15.5306Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "SortDescending",
      "category": "action",
      "lineDrawable": "aurum_ic_action_sort_descending",
      "fillDrawable": "aurum_ic_action_sort_descending_filled",
      "lineFigmaNodeId": "5162:1095",
      "fillFigmaNodeId": "5162:980",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1095",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-980",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SortDescending (line, node 5162:1095) -->\n<path d=\"M3.75 12.0001C3.75 11.8012 3.82902 11.6104 3.96967 11.4698C4.11032 11.3291 4.30109 11.2501 4.5 11.2501H11.25C11.4489 11.2501 11.6397 11.3291 11.7803 11.4698C11.921 11.6104 12 11.8012 12 12.0001C12 12.199 11.921 12.3898 11.7803 12.5304C11.6397 12.6711 11.4489 12.7501 11.25 12.7501H4.5C4.30109 12.7501 4.11032 12.6711 3.96967 12.5304C3.82902 12.3898 3.75 12.199 3.75 12.0001ZM4.5 6.7501H9.75C9.94891 6.7501 10.1397 6.67108 10.2803 6.53043C10.421 6.38978 10.5 6.19901 10.5 6.0001C10.5 5.80119 10.421 5.61042 10.2803 5.46977C10.1397 5.32912 9.94891 5.2501 9.75 5.2501H4.5C4.30109 5.2501 4.11032 5.32912 3.96967 5.46977C3.82902 5.61042 3.75 5.80119 3.75 6.0001C3.75 6.19901 3.82902 6.38978 3.96967 6.53043C4.11032 6.67108 4.30109 6.7501 4.5 6.7501ZM17.25 17.2501H4.5C4.30109 17.2501 4.11032 17.3291 3.96967 17.4698C3.82902 17.6104 3.75 17.8012 3.75 18.0001C3.75 18.199 3.82902 18.3898 3.96967 18.5304C4.11032 18.6711 4.30109 18.7501 4.5 18.7501H17.25C17.4489 18.7501 17.6397 18.6711 17.7803 18.5304C17.921 18.3898 18 18.199 18 18.0001C18 17.8012 17.921 17.6104 17.7803 17.4698C17.6397 17.3291 17.4489 17.2501 17.25 17.2501ZM21.5306 7.71948L17.7806 3.96948C17.711 3.89974 17.6283 3.84443 17.5372 3.80668C17.4462 3.76894 17.3486 3.74951 17.25 3.74951C17.1514 3.74951 17.0538 3.76894 16.9628 3.80668C16.8717 3.84443 16.789 3.89974 16.7194 3.96948L12.9694 7.71948C12.8286 7.86021 12.7496 8.05108 12.7496 8.2501C12.7496 8.44912 12.8286 8.64 12.9694 8.78073C13.1101 8.92146 13.301 9.00052 13.5 9.00052C13.699 9.00052 13.8899 8.92146 14.0306 8.78073L16.5 6.31041V13.5001C16.5 13.699 16.579 13.8898 16.7197 14.0304C16.8603 14.1711 17.0511 14.2501 17.25 14.2501C17.4489 14.2501 17.6397 14.1711 17.7803 14.0304C17.921 13.8898 18 13.699 18 13.5001V6.31041L20.4694 8.78073C20.5391 8.85041 20.6218 8.90568 20.7128 8.9434C20.8039 8.98111 20.9015 9.00052 21 9.00052C21.0985 9.00052 21.1961 8.98111 21.2872 8.9434C21.3782 8.90568 21.4609 8.85041 21.5306 8.78073C21.6003 8.71104 21.6556 8.62832 21.6933 8.53727C21.731 8.44623 21.7504 8.34865 21.7504 8.2501C21.7504 8.15156 21.731 8.05397 21.6933 7.96293C21.6556 7.87188 21.6003 7.78916 21.5306 7.71948Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SortDescending (fill, node 5162:980) -->\n<path d=\"M19.5 3H4.5C4.10218 3 3.72064 3.15804 3.43934 3.43934C3.15804 3.72064 3 4.10218 3 4.5V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V4.5C21 4.10218 20.842 3.72064 20.5607 3.43934C20.2794 3.15804 19.8978 3 19.5 3ZM6.75 6.75H10.5C10.6989 6.75 10.8897 6.82902 11.0303 6.96967C11.171 7.11032 11.25 7.30109 11.25 7.5C11.25 7.69891 11.171 7.88968 11.0303 8.03033C10.8897 8.17098 10.6989 8.25 10.5 8.25H6.75C6.55109 8.25 6.36032 8.17098 6.21967 8.03033C6.07902 7.88968 6 7.69891 6 7.5C6 7.30109 6.07902 7.11032 6.21967 6.96967C6.36032 6.82902 6.55109 6.75 6.75 6.75ZM6.75 11.25H11.25C11.4489 11.25 11.6397 11.329 11.7803 11.4697C11.921 11.6103 12 11.8011 12 12C12 12.1989 11.921 12.3897 11.7803 12.5303C11.6397 12.671 11.4489 12.75 11.25 12.75H6.75C6.55109 12.75 6.36032 12.671 6.21967 12.5303C6.07902 12.3897 6 12.1989 6 12C6 11.8011 6.07902 11.6103 6.21967 11.4697C6.36032 11.329 6.55109 11.25 6.75 11.25ZM15.75 17.25H6.75C6.55109 17.25 6.36032 17.171 6.21967 17.0303C6.07902 16.8897 6 16.6989 6 16.5C6 16.3011 6.07902 16.1103 6.21967 15.9697C6.36032 15.829 6.55109 15.75 6.75 15.75H15.75C15.9489 15.75 16.1397 15.829 16.2803 15.9697C16.421 16.1103 16.5 16.3011 16.5 16.5C16.5 16.6989 16.421 16.8897 16.2803 17.0303C16.1397 17.171 15.9489 17.25 15.75 17.25ZM18.5306 9.53063C18.461 9.60036 18.3783 9.65568 18.2872 9.69342C18.1962 9.73116 18.0986 9.75059 18 9.75059C17.9014 9.75059 17.8038 9.73116 17.7128 9.69342C17.6217 9.65568 17.539 9.60036 17.4694 9.53063L16.5 8.56031V12.75C16.5 12.9489 16.421 13.1397 16.2803 13.2803C16.1397 13.421 15.9489 13.5 15.75 13.5C15.5511 13.5 15.3603 13.421 15.2197 13.2803C15.079 13.1397 15 12.9489 15 12.75V8.56031L14.0306 9.53063C13.8899 9.67136 13.699 9.75042 13.5 9.75042C13.301 9.75042 13.1101 9.67136 12.9694 9.53063C12.8286 9.38989 12.7496 9.19902 12.7496 9C12.7496 8.80098 12.8286 8.61011 12.9694 8.46937L15.2194 6.21937C15.289 6.14964 15.3717 6.09432 15.4628 6.05658C15.5538 6.01884 15.6514 5.99941 15.75 5.99941C15.8486 5.99941 15.9462 6.01884 16.0372 6.05658C16.1283 6.09432 16.211 6.14964 16.2806 6.21937L18.5306 8.46937C18.6004 8.53903 18.6557 8.62175 18.6934 8.71279C18.7312 8.80384 18.7506 8.90144 18.7506 9C18.7506 9.09856 18.7312 9.19616 18.6934 9.28721C18.6557 9.37825 18.6004 9.46097 18.5306 9.53063Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Refresh",
      "category": "action",
      "lineDrawable": "aurum_ic_action_refresh",
      "fillDrawable": "aurum_ic_action_refresh_filled",
      "lineFigmaNodeId": "5162:1085",
      "fillFigmaNodeId": "5162:970",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1085",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-970",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowsCounterClockwise (line, node 5162:1085) -->\n<path d=\"M8.25 9.7498H3.75C3.55109 9.7498 3.36032 9.67078 3.21967 9.53013C3.07902 9.38947 3 9.19871 3 8.9998V4.4998C3 4.30088 3.07902 4.11012 3.21967 3.96947C3.36032 3.82881 3.55109 3.7498 3.75 3.7498C3.94891 3.7498 4.13968 3.82881 4.28033 3.96947C4.42098 4.11012 4.5 4.30088 4.5 4.4998V7.18948L5.87156 5.81792C7.54426 4.1368 9.816 3.18859 12.1875 3.18167H12.2372C14.5885 3.17561 16.8476 4.09614 18.525 5.74386C18.662 5.88398 18.7387 6.07213 18.7387 6.26808C18.7387 6.46402 18.662 6.65218 18.5251 6.79231C18.3881 6.93245 18.2018 7.01342 18.0059 7.01792C17.81 7.02241 17.6201 6.95007 17.4769 6.81636C16.0787 5.44393 14.1964 4.67708 12.2372 4.68167H12.195C10.2189 4.68775 8.32601 5.47776 6.93188 6.87823L5.56031 8.2498H8.25C8.44891 8.2498 8.63968 8.32881 8.78033 8.46947C8.92098 8.61012 9 8.80088 9 8.9998C9 9.19871 8.92098 9.38947 8.78033 9.53013C8.63968 9.67078 8.44891 9.7498 8.25 9.7498ZM20.25 14.2498H15.75C15.5511 14.2498 15.3603 14.3288 15.2197 14.4695C15.079 14.6101 15 14.8009 15 14.9998C15 15.1987 15.079 15.3895 15.2197 15.5301C15.3603 15.6708 15.5511 15.7498 15.75 15.7498H18.4397L17.0681 17.1214C15.6742 18.5216 13.7817 19.3116 11.8059 19.3179H11.7638C9.80454 19.3225 7.92227 18.5557 6.52406 17.1832C6.45421 17.1118 6.37077 17.055 6.27866 17.0162C6.18655 16.9775 6.08762 16.9575 5.98769 16.9575C5.88775 16.9575 5.78883 16.9775 5.69672 17.0162C5.60461 17.055 5.52119 17.1118 5.45134 17.1833C5.38149 17.2548 5.32663 17.3395 5.28998 17.4324C5.25333 17.5254 5.23563 17.6248 5.23793 17.7247C5.24022 17.8246 5.26245 17.923 5.30333 18.0142C5.3442 18.1054 5.40289 18.1875 5.47594 18.2557C7.15338 19.9035 9.41242 20.824 11.7638 20.8179H11.8125C14.1837 20.8108 16.455 19.8626 18.1275 18.1817L19.5 16.8101V19.4998C19.5 19.6987 19.579 19.8895 19.7197 20.0301C19.8603 20.1708 20.0511 20.2498 20.25 20.2498C20.4489 20.2498 20.6397 20.1708 20.7803 20.0301C20.921 19.8895 21 19.6987 21 19.4998V14.9998C21 14.8009 20.921 14.6101 20.7803 14.4695C20.6397 14.3288 20.4489 14.2498 20.25 14.2498Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ArrowsCounterClockwise (fill, node 5162:970) -->\n<path d=\"M8.25 9.7498H3.75C3.55109 9.7498 3.36032 9.67078 3.21967 9.53013C3.07902 9.38947 3 9.19871 3 8.9998V4.4998C2.99988 4.35137 3.04381 4.20625 3.12621 4.08281C3.20861 3.95936 3.32579 3.86314 3.46291 3.80633C3.60002 3.74951 3.75092 3.73466 3.89648 3.76365C4.04204 3.79264 4.17573 3.86416 4.28063 3.96917L6 5.69042C7.66144 4.08697 9.87852 3.18804 12.1875 3.18167H12.2372C14.5885 3.17561 16.8476 4.09614 18.525 5.74386C18.662 5.88398 18.7387 6.07213 18.7387 6.26807C18.7387 6.46402 18.662 6.65218 18.5251 6.79231C18.3881 6.93245 18.2018 7.01342 18.0059 7.01792C17.81 7.02241 17.6201 6.95007 17.4769 6.81636C16.0787 5.44393 14.1964 4.67708 12.2372 4.68167H12.195C10.2827 4.68708 8.44562 5.42754 7.06406 6.7498L8.78063 8.46917C8.88563 8.57406 8.95716 8.70775 8.98615 8.85332C9.01514 8.99888 9.00028 9.14977 8.94347 9.28689C8.88665 9.42401 8.79043 9.54118 8.66699 9.62359C8.54354 9.70599 8.39842 9.74991 8.25 9.7498ZM20.25 14.2498H15.75C15.6016 14.2497 15.4565 14.2936 15.333 14.376C15.2096 14.4584 15.1133 14.5756 15.0565 14.7127C14.9997 14.8498 14.9849 15.0007 15.0139 15.1463C15.0428 15.2918 15.1144 15.4255 15.2194 15.5304L16.9359 17.2498C15.5551 18.5729 13.7183 19.3143 11.8059 19.3207H11.7638C9.80454 19.3253 7.92227 18.5585 6.52406 17.186C6.45421 17.1146 6.37077 17.0578 6.27866 17.019C6.18655 16.9803 6.08762 16.9603 5.98769 16.9603C5.88775 16.9603 5.78883 16.9803 5.69672 17.0191C5.60461 17.0578 5.52119 17.1146 5.45134 17.1861C5.38149 17.2576 5.32663 17.3423 5.28998 17.4353C5.25333 17.5282 5.23563 17.6276 5.23793 17.7275C5.24022 17.8274 5.26245 17.9259 5.30333 18.017C5.3442 18.1082 5.40289 18.1904 5.47594 18.2585C7.15338 19.9063 9.41242 20.8268 11.7638 20.8207H11.8125C14.1215 20.8144 16.3386 19.9154 18 18.312L19.7213 20.0332C19.8264 20.1378 19.9602 20.2088 20.1057 20.2373C20.2512 20.2658 20.4019 20.2506 20.5388 20.1935C20.6756 20.1364 20.7925 20.0401 20.8746 19.9166C20.9566 19.7931 21.0003 19.6481 21 19.4998V14.9998C21 14.8009 20.921 14.6101 20.7803 14.4695C20.6397 14.3288 20.4489 14.2498 20.25 14.2498Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "History",
      "category": "action",
      "lineDrawable": "aurum_ic_action_history",
      "fillDrawable": "aurum_ic_action_history_filled",
      "lineFigmaNodeId": "5162:1083",
      "fillFigmaNodeId": "5162:968",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1083",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-968",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ClockCounterClockwise (line, node 5162:1083) -->\n<path d=\"M12.75 7.50003V11.5753L16.1363 13.6069C16.3068 13.7093 16.4297 13.8753 16.4779 14.0684C16.5261 14.2614 16.4956 14.4657 16.3931 14.6363C16.2907 14.8068 16.1247 14.9297 15.9316 14.9779C15.7386 15.0261 15.5343 14.9956 15.3638 14.8932L11.6138 12.6432C11.5028 12.5765 11.4109 12.4822 11.3472 12.3695C11.2834 12.2568 11.25 12.1295 11.25 12V7.50003C11.25 7.30112 11.329 7.11035 11.4697 6.9697C11.6103 6.82905 11.8011 6.75003 12 6.75003C12.1989 6.75003 12.3897 6.82905 12.5303 6.9697C12.671 7.11035 12.75 7.30112 12.75 7.50003ZM12 3.00003C10.8169 2.99708 9.64491 3.22881 8.55193 3.6818C7.45895 4.1348 6.46667 4.80006 5.6325 5.63909C4.95094 6.32909 4.34531 6.99284 3.75 7.68753V6.00003C3.75 5.80112 3.67098 5.61035 3.53033 5.4697C3.38968 5.32905 3.19891 5.25003 3 5.25003C2.80109 5.25003 2.61032 5.32905 2.46967 5.4697C2.32902 5.61035 2.25 5.80112 2.25 6.00003V9.75003C2.25 9.94894 2.32902 10.1397 2.46967 10.2804C2.61032 10.421 2.80109 10.5 3 10.5H6.75C6.94891 10.5 7.13968 10.421 7.28033 10.2804C7.42098 10.1397 7.5 9.94894 7.5 9.75003C7.5 9.55112 7.42098 9.36035 7.28033 9.2197C7.13968 9.07905 6.94891 9.00003 6.75 9.00003H4.59375C5.26406 8.21065 5.93156 7.46722 6.69281 6.69659C7.73518 5.65423 9.0616 4.94216 10.5063 4.64935C11.9511 4.35654 13.4501 4.49598 14.816 5.05023C16.182 5.60449 17.3543 6.54899 18.1866 7.76572C19.0188 8.98245 19.474 10.4175 19.4953 11.8914C19.5166 13.3654 19.1031 14.813 18.3064 16.0532C17.5098 17.2935 16.3652 18.2716 15.0159 18.8651C13.6665 19.4586 12.1722 19.6414 10.7196 19.3905C9.26698 19.1396 7.92052 18.4662 6.84844 17.4544C6.77679 17.3867 6.6925 17.3338 6.60039 17.2986C6.50828 17.2635 6.41015 17.2468 6.3116 17.2496C6.21305 17.2524 6.11602 17.2746 6.02604 17.3149C5.93606 17.3551 5.8549 17.4128 5.78719 17.4844C5.71947 17.5561 5.66654 17.6403 5.6314 17.7325C5.59626 17.8246 5.57961 17.9227 5.5824 18.0212C5.58518 18.1198 5.60735 18.2168 5.64764 18.3068C5.68792 18.3968 5.74554 18.4779 5.81719 18.5457C6.88542 19.5537 8.18414 20.285 9.6 20.6757C11.0159 21.0665 12.5058 21.1047 13.9399 20.7872C15.3739 20.4696 16.7085 19.806 17.827 18.854C18.9456 17.9021 19.8142 16.6909 20.357 15.3261C20.8998 13.9613 21.1003 12.4844 20.9411 11.0243C20.7818 9.56414 20.2677 8.16517 19.4434 6.94947C18.6192 5.73376 17.5099 4.73825 16.2125 4.04982C14.915 3.3614 13.4688 3.00098 12 3.00003Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ClockCounterClockwise (fill, node 5162:968) -->\n<path d=\"M21 12.0004C21 13.7583 20.4853 15.4777 19.5193 16.9464C18.5533 18.4151 17.1783 19.5687 15.5642 20.2648C13.95 20.961 12.1673 21.1692 10.4362 20.8638C8.70505 20.5583 7.10126 19.7526 5.82281 18.5461C5.75116 18.4784 5.69355 18.3972 5.65326 18.3072C5.61298 18.2172 5.59081 18.1202 5.58802 18.0217C5.58524 17.9231 5.60189 17.825 5.63702 17.7329C5.67216 17.6408 5.7251 17.5565 5.79281 17.4848C5.92957 17.3401 6.1182 17.2557 6.31722 17.25C6.41577 17.2472 6.5139 17.2639 6.60601 17.299C6.69812 17.3342 6.78241 17.3871 6.85406 17.4548C7.92632 18.4664 9.2729 19.1396 10.7256 19.3902C12.1782 19.6408 13.6725 19.4578 15.0218 18.8641C16.371 18.2703 17.5153 17.2921 18.3118 16.0516C19.1083 14.8112 19.5215 13.3636 19.5 11.8896C19.4784 10.4157 19.0229 8.98074 18.1905 7.76416C17.358 6.54757 16.1855 5.60327 14.8195 5.04925C13.4535 4.49523 11.9544 4.35606 10.5097 4.64912C9.06504 4.94217 7.73875 5.65447 6.69656 6.69701C6.36563 7.0317 6.05438 7.36076 5.75156 7.68795L7.28063 9.21982C7.38563 9.32471 7.45716 9.4584 7.48615 9.60397C7.51514 9.74953 7.50028 9.90042 7.44347 10.0375C7.38665 10.1747 7.29043 10.2918 7.16699 10.3742C7.04354 10.4566 6.89842 10.5006 6.75 10.5004H3C2.80109 10.5004 2.61032 10.4214 2.46967 10.2808C2.32902 10.1401 2.25 9.94936 2.25 9.75045V6.00045C2.24988 5.85202 2.29381 5.70691 2.37621 5.58346C2.45861 5.46001 2.57579 5.36379 2.71291 5.30698C2.85002 5.25016 3.00092 5.23531 3.14648 5.2643C3.29204 5.29329 3.42573 5.36481 3.53063 5.46982L4.6875 6.62857C4.98938 6.30138 5.30063 5.97232 5.63063 5.63951C6.88883 4.37916 8.49267 3.52042 10.2391 3.17199C11.9856 2.82356 13.7962 3.00109 15.4417 3.68213C17.0872 4.36316 18.4937 5.51708 19.4832 6.99782C20.4726 8.47856 21.0005 10.2196 21 12.0004ZM12 6.75045C11.8011 6.75045 11.6103 6.82946 11.4697 6.97012C11.329 7.11077 11.25 7.30153 11.25 7.50045V12.0004C11.25 12.1299 11.2834 12.2572 11.3472 12.3699C11.4109 12.4826 11.5028 12.5769 11.6137 12.6436L15.3638 14.8936C15.4482 14.9443 15.5418 14.9779 15.6393 14.9924C15.7367 15.007 15.8361 15.0022 15.9316 14.9783C16.0272 14.9545 16.1172 14.912 16.1964 14.8534C16.2755 14.7948 16.3424 14.7212 16.3931 14.6367C16.4438 14.5522 16.4774 14.4586 16.492 14.3612C16.5065 14.2637 16.5017 14.1644 16.4779 14.0688C16.454 13.9732 16.4116 13.8833 16.353 13.8041C16.2943 13.7249 16.2207 13.658 16.1362 13.6073L12.75 11.5758V7.50045C12.75 7.30153 12.671 7.11077 12.5303 6.97012C12.3897 6.82946 12.1989 6.75045 12 6.75045Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Filter",
      "category": "action",
      "lineDrawable": "aurum_ic_action_filter",
      "fillDrawable": "aurum_ic_action_filter_filled",
      "lineFigmaNodeId": "5861:1987",
      "fillFigmaNodeId": "5861:1986",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5861-1987",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5861-1986",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Filter (line, node 5861:1987) -->\n<path d=\"M21.6187 4.64346C21.5033 4.37675 21.312 4.14986 21.0686 3.99101C20.8253 3.83216 20.5406 3.74836 20.25 3.75002H3.74997C3.45966 3.7506 3.17575 3.8354 2.93269 3.99416C2.68962 4.15291 2.49785 4.37879 2.38063 4.64438C2.26341 4.90998 2.22579 5.20389 2.27232 5.49045C2.31886 5.77701 2.44755 6.04391 2.64279 6.25877L2.65029 6.26721L8.99998 13.0472V20.25C8.99991 20.5215 9.07353 20.7879 9.21297 21.0208C9.35241 21.2538 9.55246 21.4445 9.79178 21.5727C10.0311 21.7008 10.3007 21.7617 10.5719 21.7486C10.843 21.7356 11.1056 21.6493 11.3315 21.4988L14.3315 19.4981C14.5372 19.3612 14.7058 19.1755 14.8224 18.9576C14.939 18.7398 15 18.4965 15 18.2494V13.0472L21.3506 6.26721L21.3581 6.25877C21.5554 6.04489 21.6853 5.77764 21.7317 5.49037C21.778 5.2031 21.7387 4.90854 21.6187 4.64346ZM13.7043 12.2419C13.5746 12.3795 13.5016 12.5609 13.5 12.75V18.2494L10.5 20.25V12.75C10.5 12.5596 10.4276 12.3762 10.2975 12.2372L3.74997 5.25002H20.25L13.7043 12.2419Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Filter (fill, node 5861:1986) -->\n<path d=\"M21.3572 6.25875L21.3497 6.26719L15 13.0472V18.2494C15.0003 18.4968 14.9395 18.7405 14.8229 18.9587C14.7062 19.1769 14.5375 19.3628 14.3315 19.5L11.3315 21.5006C11.1055 21.6512 10.8427 21.7376 10.5714 21.7505C10.3001 21.7635 10.0303 21.7025 9.79095 21.5741C9.55157 21.4457 9.35155 21.2547 9.21225 21.0215C9.07294 20.7883 8.99957 20.5216 8.99998 20.25V13.0472L2.65029 6.26719L2.64279 6.25875C2.44755 6.04389 2.31886 5.77699 2.27232 5.49043C2.22579 5.20387 2.26341 4.90996 2.38063 4.64436C2.49785 4.37876 2.68962 4.15288 2.93269 3.99413C3.17575 3.83538 3.45966 3.75057 3.74997 3.75H20.25C20.5405 3.75003 20.8248 3.83444 21.0683 3.99298C21.3118 4.15152 21.504 4.37737 21.6216 4.64308C21.7391 4.90878 21.777 5.20292 21.7305 5.48973C21.6841 5.77655 21.5554 6.04371 21.36 6.25875H21.3572Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Add",
      "category": "action",
      "lineDrawable": "aurum_ic_action_add",
      "fillDrawable": "aurum_ic_action_add_filled",
      "lineFigmaNodeId": "5322:1592",
      "fillFigmaNodeId": "5322:1593",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1592",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1593",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Plus (line, node 5322:1592) -->\n<path d=\"M21 12C21 12.1989 20.921 12.3897 20.7803 12.5303C20.6397 12.671 20.4489 12.75 20.25 12.75H12.75V20.25C12.75 20.4489 12.671 20.6397 12.5303 20.7803C12.3897 20.921 12.1989 21 12 21C11.8011 21 11.6103 20.921 11.4697 20.7803C11.329 20.6397 11.25 20.4489 11.25 20.25V12.75H3.75C3.55109 12.75 3.36032 12.671 3.21967 12.5303C3.07902 12.3897 3 12.1989 3 12C3 11.8011 3.07902 11.6103 3.21967 11.4697C3.36032 11.329 3.55109 11.25 3.75 11.25H11.25V3.75C11.25 3.55109 11.329 3.36032 11.4697 3.21967C11.6103 3.07902 11.8011 3 12 3C12.1989 3 12.3897 3.07902 12.5303 3.21967C12.671 3.36032 12.75 3.55109 12.75 3.75V11.25H20.25C20.4489 11.25 20.6397 11.329 20.7803 11.4697C20.921 11.6103 21 11.8011 21 12Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Plus (fill, node 5322:1593) -->\n<path d=\"M19.5 3H4.5C4.10218 3 3.72064 3.15804 3.43934 3.43934C3.15804 3.72064 3 4.10218 3 4.5V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V4.5C21 4.10218 20.842 3.72064 20.5607 3.43934C20.2794 3.15804 19.8978 3 19.5 3ZM17.25 12.75H12.75V17.25C12.75 17.4489 12.671 17.6397 12.5303 17.7803C12.3897 17.921 12.1989 18 12 18C11.8011 18 11.6103 17.921 11.4697 17.7803C11.329 17.6397 11.25 17.4489 11.25 17.25V12.75H6.75C6.55109 12.75 6.36032 12.671 6.21967 12.5303C6.07902 12.3897 6 12.1989 6 12C6 11.8011 6.07902 11.6103 6.21967 11.4697C6.36032 11.329 6.55109 11.25 6.75 11.25H11.25V6.75C11.25 6.55109 11.329 6.36032 11.4697 6.21967C11.6103 6.07902 11.8011 6 12 6C12.1989 6 12.3897 6.07902 12.5303 6.21967C12.671 6.36032 12.75 6.55109 12.75 6.75V11.25H17.25C17.4489 11.25 17.6397 11.329 17.7803 11.4697C17.921 11.6103 18 11.8011 18 12C18 12.1989 17.921 12.3897 17.7803 12.5303C17.6397 12.671 17.4489 12.75 17.25 12.75Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Minus",
      "category": "action",
      "lineDrawable": "aurum_ic_action_minus",
      "fillDrawable": "aurum_ic_action_minus_filled",
      "lineFigmaNodeId": "5322:1594",
      "fillFigmaNodeId": "5322:1595",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1594",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1595",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Minus (line, node 5322:1594) -->\n<path d=\"M19.5 3H4.5C4.10218 3 3.72064 3.15804 3.43934 3.43934C3.15804 3.72064 3 4.10218 3 4.5V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V4.5C21 4.10218 20.842 3.72064 20.5607 3.43934C20.2794 3.15804 19.8978 3 19.5 3ZM17.25 12.75H6.75C6.55109 12.75 6.36032 12.671 6.21967 12.5303C6.07902 12.3897 6 12.1989 6 12C6 11.8011 6.07902 11.6103 6.21967 11.4697C6.36032 11.329 6.55109 11.25 6.75 11.25H17.25C17.4489 11.25 17.6397 11.329 17.7803 11.4697C17.921 11.6103 18 11.8011 18 12C18 12.1989 17.921 12.3897 17.7803 12.5303C17.6397 12.671 17.4489 12.75 17.25 12.75Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Minus (fill, node 5322:1595) -->\n<path d=\"M21 12C21 12.1989 20.921 12.3897 20.7803 12.5303C20.6397 12.671 20.4489 12.75 20.25 12.75H3.75C3.55109 12.75 3.36032 12.671 3.21967 12.5303C3.07902 12.3897 3 12.1989 3 12C3 11.8011 3.07902 11.6103 3.21967 11.4697C3.36032 11.329 3.55109 11.25 3.75 11.25H20.25C20.4489 11.25 20.6397 11.329 20.7803 11.4697C20.921 11.6103 21 11.8011 21 12Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Overflow",
      "category": "action",
      "lineDrawable": "aurum_ic_action_overflow",
      "fillDrawable": "aurum_ic_action_overflow_filled",
      "lineFigmaNodeId": "5431:2848",
      "fillFigmaNodeId": "5431:2850",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5431-2848",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5431-2850",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: DotsThreeVertical (line, node 5431:2848) -->\n<path d=\"M13.125 12C13.125 12.2225 13.059 12.44 12.9354 12.625C12.8118 12.81 12.6361 12.9542 12.4305 13.0394C12.225 13.1245 11.9988 13.1468 11.7805 13.1034C11.5623 13.06 11.3618 12.9528 11.2045 12.7955C11.0472 12.6382 10.94 12.4377 10.8966 12.2195C10.8532 12.0012 10.8755 11.775 10.9606 11.5695C11.0458 11.3639 11.19 11.1882 11.375 11.0646C11.56 10.941 11.7775 10.875 12 10.875C12.2984 10.875 12.5845 10.9935 12.7955 11.2045C13.0065 11.4155 13.125 11.7016 13.125 12ZM12 6.75C12.2225 6.75 12.44 6.68402 12.625 6.5604C12.81 6.43679 12.9542 6.26109 13.0394 6.05552C13.1245 5.84995 13.1468 5.62375 13.1034 5.40552C13.06 5.1873 12.9528 4.98684 12.7955 4.82951C12.6382 4.67217 12.4377 4.56503 12.2195 4.52162C12.0012 4.47821 11.775 4.50049 11.5695 4.58564C11.3639 4.67078 11.1882 4.81498 11.0646 4.99998C10.941 5.18499 10.875 5.4025 10.875 5.625C10.875 5.92337 10.9935 6.20952 11.2045 6.4205C11.4155 6.63147 11.7016 6.75 12 6.75ZM12 17.25C11.7775 17.25 11.56 17.316 11.375 17.4396C11.19 17.5632 11.0458 17.7389 10.9606 17.9445C10.8755 18.15 10.8532 18.3762 10.8966 18.5945C10.94 18.8127 11.0472 19.0132 11.2045 19.1705C11.3618 19.3278 11.5623 19.435 11.7805 19.4784C11.9988 19.5218 12.225 19.4995 12.4305 19.4144C12.6361 19.3292 12.8118 19.185 12.9354 19C13.059 18.815 13.125 18.5975 13.125 18.375C13.125 18.0766 13.0065 17.7905 12.7955 17.5795C12.5845 17.3685 12.2984 17.25 12 17.25Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: DotsThreeVertical (fill, node 5431:2850) -->\n<path d=\"M14.625 12C14.625 12.5192 14.471 13.0267 14.1826 13.4584C13.8942 13.8901 13.4842 14.2265 13.0045 14.4252C12.5249 14.6239 11.9971 14.6758 11.4879 14.5746C10.9787 14.4733 10.511 14.2233 10.1438 13.8562C9.77673 13.489 9.52673 13.0213 9.42544 12.5121C9.32415 12.0029 9.37614 11.4751 9.57482 10.9955C9.7735 10.5158 10.11 10.1058 10.5416 9.81739C10.9733 9.52896 11.4808 9.375 12 9.375C12.6962 9.375 13.3639 9.65156 13.8562 10.1438C14.3484 10.6361 14.625 11.3038 14.625 12ZM12 7.125C12.5192 7.125 13.0267 6.97105 13.4584 6.68261C13.8901 6.39417 14.2265 5.9842 14.4252 5.50455C14.6239 5.02489 14.6758 4.49709 14.5746 3.98789C14.4733 3.47869 14.2233 3.01096 13.8562 2.64385C13.489 2.27673 13.0213 2.02673 12.5121 1.92544C12.0029 1.82415 11.4751 1.87614 10.9955 2.07482C10.5158 2.2735 10.1058 2.60995 9.81739 3.04163C9.52895 3.47331 9.375 3.98083 9.375 4.5C9.375 5.19619 9.65156 5.86387 10.1438 6.35616C10.6361 6.84844 11.3038 7.125 12 7.125ZM12 16.875C11.4808 16.875 10.9733 17.029 10.5416 17.3174C10.11 17.6058 9.7735 18.0158 9.57482 18.4955C9.37614 18.9751 9.32415 19.5029 9.42544 20.0121C9.52673 20.5213 9.77673 20.989 10.1438 21.3562C10.511 21.7233 10.9787 21.9733 11.4879 22.0746C11.9971 22.1758 12.5249 22.1239 13.0045 21.9252C13.4842 21.7265 13.8942 21.3901 14.1826 20.9584C14.471 20.5267 14.625 20.0192 14.625 19.5C14.625 18.8038 14.3484 18.1361 13.8562 17.6438C13.3639 17.1516 12.6962 16.875 12 16.875Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "MoreHorizontal",
      "category": "action",
      "lineDrawable": "aurum_ic_action_more_horizontal",
      "fillDrawable": "aurum_ic_action_more_horizontal_filled",
      "lineFigmaNodeId": "5431:2847",
      "fillFigmaNodeId": "5431:2849",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5431-2847",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5431-2849",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: DotsThree (line, node 5431:2847) -->\n<path d=\"M13.125 12C13.125 12.2225 13.059 12.44 12.9354 12.625C12.8118 12.81 12.6361 12.9542 12.4305 13.0394C12.225 13.1245 11.9988 13.1468 11.7805 13.1034C11.5623 13.06 11.3618 12.9528 11.2045 12.7955C11.0472 12.6382 10.94 12.4377 10.8966 12.2195C10.8532 12.0012 10.8755 11.775 10.9606 11.5695C11.0458 11.3639 11.19 11.1882 11.375 11.0646C11.56 10.941 11.7775 10.875 12 10.875C12.2984 10.875 12.5845 10.9935 12.7955 11.2045C13.0065 11.4155 13.125 11.7016 13.125 12ZM18.375 10.875C18.1525 10.875 17.935 10.941 17.75 11.0646C17.565 11.1882 17.4208 11.3639 17.3356 11.5695C17.2505 11.775 17.2282 12.0012 17.2716 12.2195C17.315 12.4377 17.4222 12.6382 17.5795 12.7955C17.7368 12.9528 17.9373 13.06 18.1555 13.1034C18.3738 13.1468 18.6 13.1245 18.8055 13.0394C19.0111 12.9542 19.1868 12.81 19.3104 12.625C19.434 12.44 19.5 12.2225 19.5 12C19.5 11.7016 19.3815 11.4155 19.1705 11.2045C18.9595 10.9935 18.6734 10.875 18.375 10.875ZM5.625 10.875C5.4025 10.875 5.18499 10.941 4.99998 11.0646C4.81498 11.1882 4.67078 11.3639 4.58564 11.5695C4.50049 11.775 4.47821 12.0012 4.52162 12.2195C4.56503 12.4377 4.67217 12.6382 4.82951 12.7955C4.98684 12.9528 5.1873 13.06 5.40552 13.1034C5.62375 13.1468 5.84995 13.1245 6.05552 13.0394C6.26109 12.9542 6.43679 12.81 6.5604 12.625C6.68402 12.44 6.75 12.2225 6.75 12C6.75 11.7016 6.63147 11.4155 6.4205 11.2045C6.20952 10.9935 5.92337 10.875 5.625 10.875Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: DotsThree (fill, node 5431:2849) -->\n<path d=\"M14.625 12C14.625 12.5192 14.471 13.0267 14.1826 13.4584C13.8942 13.8901 13.4842 14.2265 13.0045 14.4252C12.5249 14.6239 11.9971 14.6758 11.4879 14.5746C10.9787 14.4733 10.511 14.2233 10.1438 13.8562C9.77673 13.489 9.52673 13.0213 9.42544 12.5121C9.32415 12.0029 9.37614 11.4751 9.57482 10.9955C9.7735 10.5158 10.11 10.1058 10.5416 9.81739C10.9733 9.52895 11.4808 9.375 12 9.375C12.6962 9.375 13.3639 9.65156 13.8562 10.1438C14.3484 10.6361 14.625 11.3038 14.625 12ZM4.5 9.375C3.98083 9.375 3.47331 9.52895 3.04163 9.81739C2.60995 10.1058 2.2735 10.5158 2.07482 10.9955C1.87614 11.4751 1.82415 12.0029 1.92544 12.5121C2.02673 13.0213 2.27673 13.489 2.64385 13.8562C3.01096 14.2233 3.47869 14.4733 3.98789 14.5746C4.49709 14.6758 5.02489 14.6239 5.50455 14.4252C5.9842 14.2265 6.39417 13.8901 6.68261 13.4584C6.97105 13.0267 7.125 12.5192 7.125 12C7.125 11.3038 6.84844 10.6361 6.35616 10.1438C5.86387 9.65156 5.19619 9.375 4.5 9.375ZM19.5 9.375C18.9808 9.375 18.4733 9.52895 18.0416 9.81739C17.61 10.1058 17.2735 10.5158 17.0748 10.9955C16.8761 11.4751 16.8242 12.0029 16.9254 12.5121C17.0267 13.0213 17.2767 13.489 17.6438 13.8562C18.011 14.2233 18.4787 14.4733 18.9879 14.5746C19.4971 14.6758 20.0249 14.6239 20.5045 14.4252C20.9842 14.2265 21.3942 13.8901 21.6826 13.4584C21.971 13.0267 22.125 12.5192 22.125 12C22.125 11.6553 22.0571 11.3139 21.9252 10.9955C21.7933 10.677 21.5999 10.3876 21.3562 10.1438C21.1124 9.90009 20.823 9.70673 20.5045 9.57482C20.1861 9.4429 19.8447 9.375 19.5 9.375Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Document",
      "category": "content",
      "lineDrawable": "aurum_ic_content_document",
      "fillDrawable": "aurum_ic_content_document_filled",
      "lineFigmaNodeId": "5162:1031",
      "fillFigmaNodeId": "5162:916",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1031",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-916",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: FileText (line, node 5162:1031) -->\n<path d=\"M20.0306 7.71938L14.7806 2.46938C14.7109 2.39975 14.6282 2.34454 14.5371 2.3069C14.4461 2.26926 14.3485 2.24992 14.25 2.25H5.25C4.85218 2.25 4.47064 2.40804 4.18934 2.68934C3.90804 2.97064 3.75 3.35218 3.75 3.75V20.25C3.75 20.6478 3.90804 21.0294 4.18934 21.3107C4.47064 21.592 4.85218 21.75 5.25 21.75H18.75C19.1478 21.75 19.5294 21.592 19.8107 21.3107C20.092 21.0294 20.25 20.6478 20.25 20.25V8.25C20.2501 8.15148 20.2307 8.05391 20.1931 7.96286C20.1555 7.87182 20.1003 7.78908 20.0306 7.71938ZM15 4.81031L17.6897 7.5H15V4.81031ZM18.75 20.25H5.25V3.75H13.5V8.25C13.5 8.44891 13.579 8.63968 13.7197 8.78033C13.8603 8.92098 14.0511 9 14.25 9H18.75V20.25ZM15.75 12.75C15.75 12.9489 15.671 13.1397 15.5303 13.2803C15.3897 13.421 15.1989 13.5 15 13.5H9C8.80109 13.5 8.61032 13.421 8.46967 13.2803C8.32902 13.1397 8.25 12.9489 8.25 12.75C8.25 12.5511 8.32902 12.3603 8.46967 12.2197C8.61032 12.079 8.80109 12 9 12H15C15.1989 12 15.3897 12.079 15.5303 12.2197C15.671 12.3603 15.75 12.5511 15.75 12.75ZM15.75 15.75C15.75 15.9489 15.671 16.1397 15.5303 16.2803C15.3897 16.421 15.1989 16.5 15 16.5H9C8.80109 16.5 8.61032 16.421 8.46967 16.2803C8.32902 16.1397 8.25 15.9489 8.25 15.75C8.25 15.5511 8.32902 15.3603 8.46967 15.2197C8.61032 15.079 8.80109 15 9 15H15C15.1989 15 15.3897 15.079 15.5303 15.2197C15.671 15.3603 15.75 15.5511 15.75 15.75Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: FileText (fill, node 5162:916) -->\n<path d=\"M20.0306 7.71938L14.7806 2.46938C14.7109 2.39975 14.6282 2.34454 14.5371 2.3069C14.4461 2.26926 14.3485 2.24992 14.25 2.25H5.25C4.85218 2.25 4.47064 2.40804 4.18934 2.68934C3.90804 2.97064 3.75 3.35218 3.75 3.75V20.25C3.75 20.6478 3.90804 21.0294 4.18934 21.3107C4.47064 21.592 4.85218 21.75 5.25 21.75H18.75C19.1478 21.75 19.5294 21.592 19.8107 21.3107C20.092 21.0294 20.25 20.6478 20.25 20.25V8.25C20.2501 8.15148 20.2307 8.05391 20.1931 7.96286C20.1555 7.87182 20.1003 7.78908 20.0306 7.71938ZM15 16.5H9C8.80109 16.5 8.61032 16.421 8.46967 16.2803C8.32902 16.1397 8.25 15.9489 8.25 15.75C8.25 15.5511 8.32902 15.3603 8.46967 15.2197C8.61032 15.079 8.80109 15 9 15H15C15.1989 15 15.3897 15.079 15.5303 15.2197C15.671 15.3603 15.75 15.5511 15.75 15.75C15.75 15.9489 15.671 16.1397 15.5303 16.2803C15.3897 16.421 15.1989 16.5 15 16.5ZM15 13.5H9C8.80109 13.5 8.61032 13.421 8.46967 13.2803C8.32902 13.1397 8.25 12.9489 8.25 12.75C8.25 12.5511 8.32902 12.3603 8.46967 12.2197C8.61032 12.079 8.80109 12 9 12H15C15.1989 12 15.3897 12.079 15.5303 12.2197C15.671 12.3603 15.75 12.5511 15.75 12.75C15.75 12.9489 15.671 13.1397 15.5303 13.2803C15.3897 13.421 15.1989 13.5 15 13.5ZM14.25 8.25V4.125L18.375 8.25H14.25Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Bookmark",
      "category": "content",
      "lineDrawable": "aurum_ic_content_bookmark",
      "fillDrawable": "aurum_ic_content_bookmark_filled",
      "lineFigmaNodeId": "5162:1047",
      "fillFigmaNodeId": "5162:932",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1047",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-932",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: BookmarkSimple (line, node 5162:1047) -->\n<path d=\"M17.25 3H6.75C6.35218 3 5.97064 3.15804 5.68934 3.43934C5.40804 3.72064 5.25 4.10218 5.25 4.5V21C5.25007 21.1338 5.28595 21.2652 5.35393 21.3805C5.42191 21.4958 5.5195 21.5908 5.63659 21.6557C5.75367 21.7206 5.88598 21.7529 6.01978 21.7494C6.15358 21.7458 6.284 21.7066 6.3975 21.6356L12 18.1341L17.6034 21.6356C17.7169 21.7063 17.8472 21.7454 17.9809 21.7488C18.1146 21.7522 18.2467 21.7198 18.3636 21.655C18.4806 21.5902 18.5781 21.4953 18.646 21.3801C18.7139 21.2649 18.7498 21.1337 18.75 21V4.5C18.75 4.10218 18.592 3.72064 18.3107 3.43934C18.0294 3.15804 17.6478 3 17.25 3ZM17.25 19.6472L12.3966 16.6144C12.2774 16.5399 12.1396 16.5004 11.9991 16.5004C11.8585 16.5004 11.7208 16.5399 11.6016 16.6144L6.75 19.6472V4.5H17.25V19.6472Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: BookmarkSimple (fill, node 5162:932) -->\n<path d=\"M17.25 3H6.75C6.35218 3 5.97064 3.15804 5.68934 3.43934C5.40804 3.72064 5.25 4.10218 5.25 4.5V21C5.25007 21.1338 5.28595 21.2652 5.35393 21.3805C5.42191 21.4958 5.5195 21.5908 5.63659 21.6557C5.75367 21.7206 5.88598 21.7529 6.01978 21.7494C6.15358 21.7458 6.284 21.7066 6.3975 21.6356L12 18.1341L17.6034 21.6356C17.7169 21.7063 17.8472 21.7454 17.9809 21.7488C18.1146 21.7522 18.2467 21.7198 18.3636 21.655C18.4806 21.5902 18.5781 21.4953 18.646 21.3801C18.7139 21.2649 18.7498 21.1337 18.75 21V4.5C18.75 4.10218 18.592 3.72064 18.3107 3.43934C18.0294 3.15804 17.6478 3 17.25 3Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "List",
      "category": "content",
      "lineDrawable": "aurum_ic_content_list",
      "fillDrawable": "aurum_ic_content_list_filled",
      "lineFigmaNodeId": "5162:1035",
      "fillFigmaNodeId": "5162:920",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1035",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-920",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: List (line, node 5162:1035) -->\n<path d=\"M21 12C21 12.1989 20.921 12.3897 20.7803 12.5303C20.6397 12.671 20.4489 12.75 20.25 12.75H3.75C3.55109 12.75 3.36032 12.671 3.21967 12.5303C3.07902 12.3897 3 12.1989 3 12C3 11.8011 3.07902 11.6103 3.21967 11.4697C3.36032 11.329 3.55109 11.25 3.75 11.25H20.25C20.4489 11.25 20.6397 11.329 20.7803 11.4697C20.921 11.6103 21 11.8011 21 12ZM3.75 6.75H20.25C20.4489 6.75 20.6397 6.67098 20.7803 6.53033C20.921 6.38968 21 6.19891 21 6C21 5.80109 20.921 5.61032 20.7803 5.46967C20.6397 5.32902 20.4489 5.25 20.25 5.25H3.75C3.55109 5.25 3.36032 5.32902 3.21967 5.46967C3.07902 5.61032 3 5.80109 3 6C3 6.19891 3.07902 6.38968 3.21967 6.53033C3.36032 6.67098 3.55109 6.75 3.75 6.75ZM20.25 17.25H3.75C3.55109 17.25 3.36032 17.329 3.21967 17.4697C3.07902 17.6103 3 17.8011 3 18C3 18.1989 3.07902 18.3897 3.21967 18.5303C3.36032 18.671 3.55109 18.75 3.75 18.75H20.25C20.4489 18.75 20.6397 18.671 20.7803 18.5303C20.921 18.3897 21 18.1989 21 18C21 17.8011 20.921 17.6103 20.7803 17.4697C20.6397 17.329 20.4489 17.25 20.25 17.25Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: List (fill, node 5162:920) -->\n<path d=\"M19.5 3H4.5C4.10218 3 3.72064 3.15804 3.43934 3.43934C3.15804 3.72064 3 4.10218 3 4.5V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V4.5C21 4.10218 20.842 3.72064 20.5607 3.43934C20.2794 3.15804 19.8978 3 19.5 3ZM18 17.25H6C5.80109 17.25 5.61032 17.171 5.46967 17.0303C5.32902 16.8897 5.25 16.6989 5.25 16.5C5.25 16.3011 5.32902 16.1103 5.46967 15.9697C5.61032 15.829 5.80109 15.75 6 15.75H18C18.1989 15.75 18.3897 15.829 18.5303 15.9697C18.671 16.1103 18.75 16.3011 18.75 16.5C18.75 16.6989 18.671 16.8897 18.5303 17.0303C18.3897 17.171 18.1989 17.25 18 17.25ZM18 12.75H6C5.80109 12.75 5.61032 12.671 5.46967 12.5303C5.32902 12.3897 5.25 12.1989 5.25 12C5.25 11.8011 5.32902 11.6103 5.46967 11.4697C5.61032 11.329 5.80109 11.25 6 11.25H18C18.1989 11.25 18.3897 11.329 18.5303 11.4697C18.671 11.6103 18.75 11.8011 18.75 12C18.75 12.1989 18.671 12.3897 18.5303 12.5303C18.3897 12.671 18.1989 12.75 18 12.75ZM18 8.25H6C5.80109 8.25 5.61032 8.17098 5.46967 8.03033C5.32902 7.88968 5.25 7.69891 5.25 7.5C5.25 7.30109 5.32902 7.11032 5.46967 6.96967C5.61032 6.82902 5.80109 6.75 6 6.75H18C18.1989 6.75 18.3897 6.82902 18.5303 6.96967C18.671 7.11032 18.75 7.30109 18.75 7.5C18.75 7.69891 18.671 7.88968 18.5303 8.03033C18.3897 8.17098 18.1989 8.25 18 8.25Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Heart",
      "category": "content",
      "lineDrawable": "aurum_ic_content_heart",
      "fillDrawable": "aurum_ic_content_heart_filled",
      "lineFigmaNodeId": "5162:1045",
      "fillFigmaNodeId": "5162:930",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1045",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-930",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Heart (line, node 5162:1045) -->\n<path d=\"M16.6875 3.75C14.7516 3.75 13.0566 4.5825 12 5.98969C10.9434 4.5825 9.24844 3.75 7.3125 3.75C5.77146 3.75174 4.29404 4.36468 3.20436 5.45436C2.11468 6.54404 1.50174 8.02146 1.5 9.5625C1.5 16.125 11.2303 21.4369 11.6447 21.6562C11.7539 21.715 11.876 21.7458 12 21.7458C12.124 21.7458 12.2461 21.715 12.3553 21.6562C12.7697 21.4369 22.5 16.125 22.5 9.5625C22.4983 8.02146 21.8853 6.54404 20.7956 5.45436C19.706 4.36468 18.2285 3.75174 16.6875 3.75ZM12 20.1375C10.2881 19.14 3 14.5959 3 9.5625C3.00149 8.41921 3.45632 7.32317 4.26475 6.51475C5.07317 5.70632 6.16921 5.25149 7.3125 5.25C9.13594 5.25 10.6669 6.22125 11.3062 7.78125C11.3628 7.91881 11.4589 8.03646 11.5824 8.11926C11.7059 8.20207 11.8513 8.24627 12 8.24627C12.1487 8.24627 12.2941 8.20207 12.4176 8.11926C12.5411 8.03646 12.6372 7.91881 12.6937 7.78125C13.3331 6.21844 14.8641 5.25 16.6875 5.25C17.8308 5.25149 18.9268 5.70632 19.7353 6.51475C20.5437 7.32317 20.9985 8.41921 21 9.5625C21 14.5884 13.71 19.1391 12 20.1375Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Heart (fill, node 5162:930) -->\n<path d=\"M22.5 9.5625C22.5 16.125 12.7697 21.4369 12.3553 21.6562C12.2461 21.715 12.124 21.7458 12 21.7458C11.876 21.7458 11.7539 21.715 11.6447 21.6562C11.2303 21.4369 1.5 16.125 1.5 9.5625C1.50174 8.02146 2.11468 6.54404 3.20436 5.45436C4.29404 4.36468 5.77146 3.75174 7.3125 3.75C9.24844 3.75 10.9434 4.5825 12 5.98969C13.0566 4.5825 14.7516 3.75 16.6875 3.75C18.2285 3.75174 19.706 4.36468 20.7956 5.45436C21.8853 6.54404 22.4983 8.02146 22.5 9.5625Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Gift",
      "category": "content",
      "lineDrawable": "aurum_ic_content_gift",
      "fillDrawable": "aurum_ic_content_gift_filled",
      "lineFigmaNodeId": "5162:1033",
      "fillFigmaNodeId": "5162:918",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1033",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-918",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Gift (line, node 5162:1033) -->\n<path d=\"M20.25 6.74984H16.9613C16.9978 6.71891 17.0353 6.68891 17.0709 6.65609C17.3557 6.40314 17.5851 6.09415 17.745 5.74846C17.9049 5.40276 17.9917 5.02781 18 4.64703C18.0123 4.23048 17.9394 3.8158 17.7856 3.42846C17.6319 3.04112 17.4006 2.68928 17.106 2.39456C16.8113 2.09984 16.4596 1.86845 16.0723 1.71459C15.685 1.56073 15.2703 1.48765 14.8538 1.49984C14.4728 1.50805 14.0977 1.5948 13.7518 1.75466C13.406 1.91453 13.0968 2.14406 12.8438 2.42891C12.4936 2.83474 12.2089 3.29276 12 3.78641C11.7911 3.29276 11.5064 2.83474 11.1562 2.42891C10.9032 2.14406 10.594 1.91453 10.2482 1.75466C9.90232 1.5948 9.52718 1.50805 9.14625 1.49984C8.72969 1.48765 8.31503 1.56073 7.92774 1.71459C7.54044 1.86845 7.18868 2.09984 6.89405 2.39456C6.59941 2.68928 6.36812 3.04112 6.21438 3.42846C6.06064 3.8158 5.98768 4.23048 6 4.64703C6.00833 5.02781 6.09514 5.40276 6.255 5.74846C6.41486 6.09415 6.64434 6.40314 6.92906 6.65609C6.96469 6.68703 7.00219 6.71703 7.03875 6.74984H3.75C3.35218 6.74984 2.97064 6.90788 2.68934 7.18918C2.40804 7.47049 2.25 7.85202 2.25 8.24984V11.2498C2.25 11.6477 2.40804 12.0292 2.68934 12.3105C2.97064 12.5918 3.35218 12.7498 3.75 12.7498V18.7498C3.75 19.1477 3.90804 19.5292 4.18934 19.8105C4.47064 20.0918 4.85218 20.2498 5.25 20.2498H18.75C19.1478 20.2498 19.5294 20.0918 19.8107 19.8105C20.092 19.5292 20.25 19.1477 20.25 18.7498V12.7498C20.6478 12.7498 21.0294 12.5918 21.3107 12.3105C21.592 12.0292 21.75 11.6477 21.75 11.2498V8.24984C21.75 7.85202 21.592 7.47049 21.3107 7.18918C21.0294 6.90788 20.6478 6.74984 20.25 6.74984ZM13.9688 3.42266C14.0875 3.29152 14.2321 3.18635 14.3934 3.11375C14.5547 3.04115 14.7293 3.00269 14.9062 3.00078H14.9522C15.1595 3.00208 15.3645 3.04475 15.5552 3.12629C15.7458 3.20783 15.9183 3.3266 16.0624 3.47564C16.2066 3.62468 16.3195 3.801 16.3947 3.99425C16.4698 4.18751 16.5056 4.39382 16.5 4.60109C16.4981 4.778 16.4596 4.9526 16.387 5.11393C16.3144 5.27526 16.2093 5.41984 16.0781 5.53859C15.1884 6.32609 13.7119 6.60359 12.7969 6.70109C12.9094 5.70828 13.2188 4.26547 13.9688 3.42266ZM7.96031 3.45641C8.25088 3.16587 8.64441 3.00179 9.05531 2.99984H9.10125C9.27815 3.00175 9.45275 3.04021 9.61409 3.11281C9.77542 3.18541 9.92 3.29058 10.0388 3.42172C10.8253 4.31047 11.1028 5.78422 11.2003 6.69547C10.2891 6.60172 8.81531 6.32047 7.92656 5.53391C7.79543 5.41516 7.69026 5.27057 7.61766 5.10924C7.54506 4.94791 7.5066 4.77331 7.50469 4.59641C7.49887 4.38569 7.53593 4.17599 7.61361 3.98002C7.69128 3.78406 7.80796 3.60592 7.95656 3.45641H7.96031ZM3.75 8.24984H11.25V11.2498H3.75V8.24984ZM5.25 12.7498H11.25V18.7498H5.25V12.7498ZM18.75 18.7498H12.75V12.7498H18.75V18.7498ZM20.25 11.2498H12.75V8.24984H20.25V11.2498Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Gift (fill, node 5162:918) -->\n<path d=\"M20.25 6.75033H16.9613C16.9978 6.71939 17.0353 6.68939 17.0709 6.65658C17.3557 6.40362 17.5851 6.09464 17.745 5.74894C17.9049 5.40325 17.9917 5.02829 18 4.64752C18.0123 4.23096 17.9394 3.81629 17.7856 3.42895C17.6319 3.0416 17.4006 2.68977 17.106 2.39505C16.8113 2.10033 16.4596 1.86893 16.0723 1.71508C15.685 1.56122 15.2703 1.48814 14.8538 1.50033C14.4728 1.50854 14.0977 1.59529 13.7518 1.75515C13.406 1.91502 13.0968 2.14455 12.8438 2.42939C12.4936 2.83523 12.2089 3.29325 12 3.78689C11.7911 3.29325 11.5064 2.83523 11.1562 2.42939C10.9032 2.14455 10.594 1.91502 10.2482 1.75515C9.90232 1.59529 9.52718 1.50854 9.14625 1.50033C8.72969 1.48814 8.31503 1.56122 7.92774 1.71508C7.54044 1.86893 7.18868 2.10033 6.89405 2.39505C6.59941 2.68977 6.36812 3.0416 6.21438 3.42895C6.06064 3.81629 5.98768 4.23096 6 4.64752C6.00833 5.02829 6.09514 5.40325 6.255 5.74894C6.41486 6.09464 6.64434 6.40362 6.92906 6.65658C6.96469 6.68752 7.00219 6.71752 7.03875 6.75033H3.75C3.35218 6.75033 2.97064 6.90837 2.68934 7.18967C2.40804 7.47098 2.25 7.85251 2.25 8.25033V11.2503C2.25 11.6482 2.40804 12.0297 2.68934 12.311C2.97064 12.5923 3.35218 12.7503 3.75 12.7503V18.7503C3.75 19.1482 3.90804 19.5297 4.18934 19.811C4.47064 20.0923 4.85218 20.2503 5.25 20.2503H10.875C10.9745 20.2503 11.0698 20.2108 11.1402 20.1405C11.2105 20.0702 11.25 19.9748 11.25 19.8753V11.2503H3.75V8.25033H11.25V11.2503H12.75V8.25033H20.25V11.2503H12.75V19.8753C12.75 19.9748 12.7895 20.0702 12.8598 20.1405C12.9302 20.2108 13.0255 20.2503 13.125 20.2503H18.75C19.1478 20.2503 19.5294 20.0923 19.8107 19.811C20.092 19.5297 20.25 19.1482 20.25 18.7503V12.7503C20.6478 12.7503 21.0294 12.5923 21.3107 12.311C21.592 12.0297 21.75 11.6482 21.75 11.2503V8.25033C21.75 7.85251 21.592 7.47098 21.3107 7.18967C21.0294 6.90837 20.6478 6.75033 20.25 6.75033ZM7.92281 5.53158C7.79168 5.41283 7.68651 5.26825 7.61391 5.10692C7.54131 4.94559 7.50285 4.77099 7.50094 4.59408C7.4962 4.3868 7.53287 4.18066 7.60881 3.98774C7.68476 3.79481 7.79844 3.61899 7.9432 3.47056C8.08796 3.32213 8.26089 3.20409 8.45186 3.12334C8.64282 3.0426 8.84798 3.00078 9.05531 3.00033H9.10125C9.27815 3.00224 9.45275 3.0407 9.61409 3.1133C9.77542 3.1859 9.92 3.29107 10.0388 3.42221C10.8253 4.31096 11.1028 5.78471 11.2003 6.69596C10.2853 6.59939 8.8125 6.32189 7.92281 5.53158ZM16.0791 5.53158C15.1894 6.31908 13.7128 6.59658 12.7978 6.69408C12.9094 5.70877 13.2188 4.26596 13.9688 3.42314C14.0875 3.29201 14.2321 3.18684 14.3934 3.11424C14.5547 3.04164 14.7293 3.00318 14.9062 3.00127H14.9522C15.1595 3.00257 15.3645 3.04523 15.5552 3.12677C15.7458 3.20831 15.9183 3.32709 16.0624 3.47613C16.2066 3.62517 16.3195 3.80149 16.3947 3.99474C16.4698 4.188 16.5056 4.39431 16.5 4.60158C16.4969 4.77729 16.4578 4.95049 16.3851 5.11046C16.3124 5.27044 16.2076 5.41377 16.0772 5.53158H16.0791Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Broadcast",
      "category": "content",
      "lineDrawable": "aurum_ic_content_broadcast",
      "fillDrawable": "aurum_ic_content_broadcast_filled",
      "lineFigmaNodeId": "5162:1037",
      "fillFigmaNodeId": "5162:922",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1037",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-922",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Broadcast (line, node 5162:1037) -->\n<path d=\"M12.0002 8.24989C11.2586 8.24989 10.5335 8.46982 9.91685 8.88188C9.30016 9.29393 8.81951 9.8796 8.53569 10.5648C8.25186 11.25 8.17759 12.004 8.32229 12.7315C8.46698 13.4589 8.82414 14.1271 9.34858 14.6515C9.87303 15.176 10.5412 15.5331 11.2686 15.6778C11.9961 15.8225 12.7501 15.7483 13.4353 15.4644C14.1205 15.1806 14.7062 14.7 15.1182 14.0833C15.5303 13.4666 15.7502 12.7416 15.7502 11.9999C15.7502 11.0053 15.3551 10.0515 14.6519 9.34824C13.9486 8.64498 12.9948 8.24989 12.0002 8.24989ZM12.0002 14.2499C11.5552 14.2499 11.1202 14.1179 10.7502 13.8707C10.3802 13.6235 10.0918 13.2721 9.9215 12.8609C9.75121 12.4498 9.70665 11.9974 9.79347 11.5609C9.88028 11.1245 10.0946 10.7236 10.4092 10.4089C10.7239 10.0942 11.1248 9.87994 11.5613 9.79312C11.9977 9.70631 12.4501 9.75086 12.8613 9.92116C13.2724 10.0915 13.6238 10.3798 13.871 10.7499C14.1183 11.1199 14.2502 11.5549 14.2502 11.9999C14.2502 12.5966 14.0132 13.1689 13.5912 13.5909C13.1693 14.0128 12.597 14.2499 12.0002 14.2499ZM18.9105 14.9193C18.5883 15.6811 18.1423 16.3843 17.5905 17.0005C17.4569 17.1451 17.2719 17.2313 17.0752 17.2406C16.8786 17.2499 16.6862 17.1816 16.5395 17.0503C16.3929 16.919 16.3037 16.7353 16.2912 16.5389C16.2788 16.3424 16.3441 16.1489 16.473 16.0002C17.4578 14.9006 18.0024 13.4764 18.0024 12.0004C18.0024 10.5243 17.4578 9.10007 16.473 8.00051C16.4055 7.92744 16.3532 7.84167 16.3191 7.74819C16.2851 7.6547 16.27 7.55537 16.2747 7.45599C16.2794 7.35661 16.3038 7.25915 16.3466 7.16931C16.3893 7.07946 16.4495 6.99901 16.5236 6.93265C16.5978 6.86629 16.6844 6.81535 16.7784 6.78278C16.8724 6.75022 16.9719 6.73669 17.0712 6.74297C17.1705 6.74926 17.2676 6.77524 17.3567 6.8194C17.4459 6.86356 17.5254 6.92502 17.5905 7.0002C18.5376 8.05989 19.1643 9.36662 19.398 10.7685C19.6317 12.1703 19.4626 13.6097 18.9105 14.9193ZM6.46898 9.66458C6.02646 10.7121 5.89075 11.8638 6.07764 12.9855C6.26454 14.1072 6.76635 15.1527 7.52461 16.0002C7.65355 16.1489 7.71885 16.3424 7.70641 16.5389C7.69397 16.7353 7.6048 16.919 7.45813 17.0503C7.31146 17.1816 7.11905 17.2499 6.92242 17.2406C6.7258 17.2313 6.54071 17.1451 6.40711 17.0005C5.17578 15.6261 4.49489 13.8457 4.49489 12.0004C4.49489 10.155 5.17578 8.37462 6.40711 7.0002C6.53976 6.85164 6.72599 6.76186 6.92484 6.7506C7.12369 6.73935 7.31886 6.80755 7.46742 6.9402C7.61598 7.07285 7.70577 7.25908 7.71702 7.45793C7.72827 7.65678 7.66007 7.85195 7.52742 8.00051C7.08492 8.49278 6.72724 9.05512 6.46898 9.66458ZM23.2502 11.9999C23.2548 14.9453 22.1 17.7741 20.0355 19.8749C19.9672 19.9479 19.885 20.0065 19.7937 20.0473C19.7025 20.0881 19.6039 20.1102 19.504 20.1124C19.404 20.1146 19.3046 20.0967 19.2117 20.0599C19.1187 20.0231 19.034 19.968 18.9627 19.898C18.8913 19.828 18.8346 19.7444 18.796 19.6522C18.7574 19.56 18.7376 19.461 18.7378 19.361C18.738 19.261 18.7582 19.1621 18.7972 19.07C18.8362 18.9779 18.8932 18.8946 18.9649 18.8249C20.7525 17.0037 21.7539 14.5537 21.7539 12.0018C21.7539 9.44986 20.7525 6.99986 18.9649 5.17864C18.8252 5.03667 18.7476 4.845 18.7492 4.6458C18.7507 4.4466 18.8314 4.25619 18.9734 4.11645C19.1153 3.97672 19.307 3.8991 19.5062 3.90068C19.7054 3.90227 19.8958 3.98292 20.0355 4.12489C22.1 6.22567 23.2548 9.05451 23.2502 11.9999ZM5.03555 18.823C5.10461 18.8933 5.15916 18.9765 5.19607 19.0679C5.23297 19.1593 5.25152 19.257 5.25065 19.3556C5.24978 19.4541 5.22951 19.5515 5.19099 19.6422C5.15248 19.733 5.09647 19.8152 5.02617 19.8843C4.95587 19.9533 4.87266 20.0079 4.78128 20.0448C4.6899 20.0817 4.59215 20.1002 4.49361 20.0994C4.39506 20.0985 4.29765 20.0782 4.20694 20.0397C4.11623 20.0012 4.03399 19.9452 3.96492 19.8749C1.90072 17.7735 0.744141 14.9456 0.744141 11.9999C0.744141 9.05422 1.90072 6.22632 3.96492 4.12489C4.03322 4.05187 4.11543 3.99324 4.20672 3.95245C4.29801 3.91166 4.39653 3.88954 4.4965 3.88738C4.59646 3.88523 4.69584 3.90308 4.78881 3.93989C4.88177 3.9767 4.96643 4.03173 5.03782 4.10174C5.1092 4.17175 5.16587 4.25533 5.20448 4.34756C5.2431 4.43979 5.26288 4.53881 5.26267 4.6388C5.26246 4.73878 5.24226 4.83772 5.20325 4.92978C5.16425 5.02185 5.10723 5.10518 5.03555 5.17489C3.24798 6.99611 2.24652 9.44611 2.24652 11.998C2.24652 14.5499 3.24798 16.9999 5.03555 18.8211V18.823Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Broadcast (fill, node 5162:922) -->\n<path d=\"M15.7502 11.9999C15.7502 12.7416 15.5303 13.4666 15.1182 14.0833C14.7062 14.7 14.1205 15.1806 13.4353 15.4644C12.7501 15.7483 11.9961 15.8225 11.2686 15.6778C10.5412 15.5331 9.87303 15.176 9.34858 14.6515C8.82414 14.1271 8.46698 13.4589 8.32229 12.7315C8.17759 12.004 8.25186 11.25 8.53568 10.5648C8.81951 9.8796 9.30016 9.29393 9.91685 8.88188C10.5335 8.46982 11.2586 8.24989 12.0002 8.24989C12.9948 8.24989 13.9486 8.64498 14.6519 9.34824C15.3551 10.0515 15.7502 11.0053 15.7502 11.9999ZM19.5002 11.9999C19.5025 10.1548 18.8223 8.37398 17.5905 7.0002C17.5254 6.92502 17.4459 6.86356 17.3567 6.8194C17.2676 6.77524 17.1705 6.74926 17.0712 6.74297C16.9719 6.73669 16.8724 6.75022 16.7784 6.78278C16.6844 6.81535 16.5978 6.86629 16.5236 6.93265C16.4495 6.99901 16.3893 7.07946 16.3466 7.16931C16.3038 7.25915 16.2794 7.35661 16.2747 7.45599C16.27 7.55537 16.2851 7.6547 16.3191 7.74819C16.3532 7.84167 16.4055 7.92744 16.473 8.00051C17.4569 9.10054 18.0008 10.5246 18.0008 12.0004C18.0008 13.4762 17.4569 14.9002 16.473 16.0002C16.3441 16.1489 16.2788 16.3424 16.2912 16.5389C16.3037 16.7353 16.3929 16.919 16.5395 17.0503C16.6862 17.1816 16.8786 17.2499 17.0752 17.2406C17.2719 17.2313 17.4569 17.1451 17.5905 17.0005C18.8221 15.6263 19.5023 13.8453 19.5002 11.9999ZM7.52742 8.00051C7.59495 7.92744 7.64727 7.84167 7.68132 7.74819C7.71538 7.6547 7.73049 7.55537 7.72578 7.45599C7.72108 7.35661 7.69664 7.25915 7.6539 7.16931C7.61116 7.07946 7.55098 6.99901 7.47684 6.93265C7.40271 6.86629 7.31611 6.81535 7.2221 6.78278C7.12809 6.75022 7.02853 6.73669 6.92923 6.74297C6.82994 6.74926 6.73289 6.77524 6.64373 6.8194C6.55457 6.86356 6.47509 6.92502 6.40992 7.0002C5.17879 8.37471 4.49803 10.1551 4.49803 12.0004C4.49803 13.8456 5.17879 15.626 6.40992 17.0005C6.54353 17.1451 6.72861 17.2313 6.92523 17.2406C7.12186 17.2499 7.31427 17.1816 7.46094 17.0503C7.60761 16.919 7.69678 16.7353 7.70922 16.5389C7.72166 16.3424 7.65636 16.1489 7.52742 16.0002C6.54263 14.9006 5.99809 13.4764 5.99809 12.0004C5.99809 10.5243 6.54263 9.10007 7.52742 8.00051ZM22.3662 7.62551C21.8173 6.32196 21.0265 5.13415 20.0355 4.12489C19.9672 4.05187 19.885 3.99324 19.7937 3.95245C19.7025 3.91166 19.6039 3.88954 19.504 3.88738C19.404 3.88523 19.3046 3.90308 19.2117 3.93989C19.1187 3.9767 19.034 4.03173 18.9626 4.10174C18.8913 4.17175 18.8346 4.25533 18.796 4.34756C18.7574 4.43979 18.7376 4.53881 18.7378 4.6388C18.738 4.73878 18.7582 4.83772 18.7972 4.92978C18.8362 5.02185 18.8932 5.10518 18.9649 5.17489C20.7525 6.99611 21.7539 9.44611 21.7539 11.998C21.7539 14.5499 20.7525 16.9999 18.9649 18.8211C18.8957 18.8914 18.8411 18.9747 18.804 19.0661C18.767 19.1575 18.7484 19.2553 18.7492 19.354C18.7499 19.4526 18.7701 19.5501 18.8086 19.641C18.8471 19.7318 18.9031 19.8141 18.9734 19.8833C19.0437 19.9525 19.1269 20.0072 19.2183 20.0442C19.3097 20.0812 19.4076 20.0999 19.5062 20.0991C19.6048 20.0983 19.7023 20.0781 19.7932 20.0396C19.884 20.0012 19.9664 19.9452 20.0355 19.8749C21.5883 18.2893 22.6378 16.2802 23.0525 14.1C23.4671 11.9198 23.2284 9.66575 22.3662 7.62083V7.62551ZM3.01617 15.7949C2.26677 14.0234 2.05864 12.0697 2.41801 10.18C2.77738 8.29042 3.68817 6.5495 5.03555 5.17676C5.17503 5.03479 5.25241 4.84322 5.25065 4.6442C5.24889 4.44517 5.16814 4.255 5.02617 4.11551C4.8842 3.97603 4.69263 3.89865 4.4936 3.90041C4.29458 3.90217 4.10441 3.98292 3.96492 4.12489C1.90072 6.22632 0.744141 9.05422 0.744141 11.9999C0.744141 14.9456 1.90072 17.7735 3.96492 19.8749C4.03322 19.9479 4.11543 20.0065 4.20672 20.0473C4.29801 20.0881 4.39653 20.1102 4.4965 20.1124C4.59646 20.1146 4.69584 20.0967 4.78881 20.0599C4.88177 20.0231 4.96643 19.968 5.03782 19.898C5.1092 19.828 5.16587 19.7444 5.20448 19.6522C5.2431 19.56 5.26288 19.461 5.26267 19.361C5.26246 19.261 5.24226 19.1621 5.20325 19.07C5.16425 18.9779 5.10723 18.8946 5.03555 18.8249C4.17744 17.9512 3.49228 16.9232 3.01617 15.7949Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Chat",
      "category": "content",
      "lineDrawable": "aurum_ic_content_chat",
      "fillDrawable": "aurum_ic_content_chat_filled",
      "lineFigmaNodeId": "5162:1137",
      "fillFigmaNodeId": "5162:1023",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1137",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1023",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ChatCircle (line, node 5162:1137) -->\n<path d=\"M12.0002 2.25C10.3169 2.24963 8.66213 2.68508 7.19704 3.51396C5.73194 4.34285 4.50641 5.53692 3.63971 6.97997C2.77302 8.42301 2.29469 10.0659 2.25129 11.7486C2.20789 13.4314 2.60089 15.0967 3.39205 16.5825L2.32799 19.7747C2.23985 20.039 2.22706 20.3226 2.29105 20.5938C2.35504 20.8649 2.49328 21.1129 2.69029 21.3099C2.88729 21.5069 3.13526 21.6451 3.40642 21.7091C3.67757 21.7731 3.96119 21.7603 4.22549 21.6722L7.41768 20.6081C8.72527 21.3036 10.1741 21.6921 11.6543 21.744C13.1344 21.7959 14.6069 21.51 15.9601 20.9079C17.3132 20.3057 18.5114 19.4033 19.4636 18.269C20.4159 17.1346 21.0972 15.7983 21.4559 14.3613C21.8146 12.9244 21.8412 11.4246 21.5337 9.97578C21.2263 8.52701 20.5928 7.16732 19.6813 5.99992C18.7699 4.83253 17.6045 3.88811 16.2736 3.23836C14.9427 2.58861 13.4812 2.25061 12.0002 2.25ZM12.0002 20.25C10.5498 20.251 9.12495 19.8691 7.86955 19.1428C7.77763 19.0895 7.67544 19.0563 7.56974 19.0455C7.46404 19.0347 7.35724 19.0464 7.25643 19.08L3.75018 20.25L4.91924 16.7438C4.95294 16.643 4.96485 16.5362 4.95418 16.4305C4.94351 16.3248 4.91051 16.2226 4.85736 16.1306C3.94796 14.5584 3.58284 12.7299 3.81864 10.929C4.05444 9.12801 4.87798 7.4552 6.16151 6.17006C7.44503 4.88491 9.11679 4.05925 10.9175 3.82118C12.7181 3.5831 14.547 3.94591 16.1204 4.85333C17.6938 5.76074 18.9238 7.16204 19.6196 8.83983C20.3153 10.5176 20.4379 12.3781 19.9684 14.1327C19.4989 15.8873 18.4634 17.4379 17.0227 18.5439C15.582 19.65 13.8165 20.2497 12.0002 20.25Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ChatCircle (fill, node 5162:1023) -->\n<path d=\"M21.75 11.9999C21.7504 13.6832 21.3149 15.338 20.486 16.803C19.6572 18.2681 18.4631 19.4937 17.02 20.3604C15.577 21.2271 13.9341 21.7054 12.2514 21.7488C10.5686 21.7922 8.9033 21.3992 7.4175 20.608L4.22531 21.6721C3.96102 21.7602 3.6774 21.773 3.40624 21.709C3.13509 21.645 2.88711 21.5068 2.69011 21.3098C2.49311 21.1128 2.35486 20.8648 2.29087 20.5937C2.22688 20.3225 2.23967 20.0389 2.32781 19.7746L3.39187 16.5824C2.69639 15.2748 2.30793 13.826 2.256 12.3458C2.20406 10.8657 2.49001 9.39316 3.09213 8.04003C3.69425 6.6869 4.59672 5.48873 5.73105 4.53646C6.86537 3.58419 8.20173 2.90285 9.63869 2.54416C11.0756 2.18548 12.5754 2.15886 14.0242 2.46635C15.473 2.77383 16.8327 3.40733 18.0001 4.31875C19.1675 5.23018 20.1119 6.39558 20.7616 7.7265C21.4114 9.05741 21.7494 10.5189 21.75 11.9999Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Image",
      "category": "content",
      "lineDrawable": "aurum_ic_content_image",
      "fillDrawable": "aurum_ic_content_image_filled",
      "lineFigmaNodeId": "5364:107",
      "fillFigmaNodeId": "5364:108",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5364-107",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5364-108",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Image (line, node 5364:107) -->\n<path d=\"M19.5 3H4.5C4.10218 3 3.72064 3.15804 3.43934 3.43934C3.15804 3.72064 3 4.10218 3 4.5V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V4.5C21 4.10218 20.842 3.72064 20.5607 3.43934C20.2794 3.15804 19.8978 3 19.5 3ZM4.5 4.5H19.5V11.7544L17.1853 9.43875C16.904 9.15766 16.5227 8.99976 16.125 8.99976C15.7273 8.99976 15.346 9.15766 15.0647 9.43875L5.00344 19.5H4.5V4.5ZM7.5 9C7.5 8.70333 7.58797 8.41332 7.7528 8.16665C7.91762 7.91997 8.15189 7.72771 8.42597 7.61418C8.70006 7.50065 9.00166 7.47094 9.29264 7.52882C9.58361 7.5867 9.85088 7.72956 10.0607 7.93934C10.2704 8.14912 10.4133 8.41639 10.4712 8.70736C10.5291 8.99834 10.4994 9.29994 10.3858 9.57403C10.2723 9.84811 10.08 10.0824 9.83335 10.2472C9.58668 10.412 9.29667 10.5 9 10.5C8.60218 10.5 8.22064 10.342 7.93934 10.0607C7.65804 9.77936 7.5 9.39782 7.5 9Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Image (fill, node 5364:108) -->\n<path d=\"M19.5 3H4.5C4.10218 3 3.72064 3.15804 3.43934 3.43934C3.15804 3.72064 3 4.10218 3 4.5V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V4.5C21 4.10218 20.842 3.72064 20.5607 3.43934C20.2794 3.15804 19.8978 3 19.5 3ZM4.5 4.5H19.5V11.7544L17.1853 9.43875C16.904 9.15766 16.5227 8.99976 16.125 8.99976C15.7273 8.99976 15.346 9.15766 15.0647 9.43875L5.00344 19.5H4.5V4.5ZM19.5 19.5H7.125L16.125 10.5L19.5 13.875V19.5ZM9 11.25C9.44501 11.25 9.88002 11.118 10.25 10.8708C10.62 10.6236 10.9084 10.2722 11.0787 9.86104C11.249 9.4499 11.2936 8.9975 11.2068 8.56105C11.12 8.12459 10.9057 7.72368 10.591 7.40901C10.2763 7.09434 9.87541 6.88005 9.43895 6.79323C9.0025 6.70642 8.5501 6.75097 8.13896 6.92127C7.72783 7.09157 7.37643 7.37996 7.12919 7.74997C6.88196 8.11998 6.75 8.55499 6.75 9C6.75 9.59674 6.98705 10.169 7.40901 10.591C7.83097 11.0129 8.40326 11.25 9 11.25ZM9 8.25C9.14834 8.25 9.29334 8.29399 9.41668 8.3764C9.54001 8.45881 9.63614 8.57594 9.69291 8.71299C9.74968 8.85003 9.76453 9.00083 9.73559 9.14632C9.70665 9.2918 9.63522 9.42544 9.53033 9.53033C9.42544 9.63522 9.2918 9.70665 9.14632 9.73559C9.00083 9.76453 8.85003 9.74968 8.71299 9.69291C8.57594 9.63614 8.45881 9.54001 8.3764 9.41668C8.29399 9.29334 8.25 9.14834 8.25 9C8.25 8.80109 8.32902 8.61032 8.46967 8.46967C8.61032 8.32902 8.80109 8.25 9 8.25Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "ChatBubble",
      "category": "content",
      "lineDrawable": "aurum_ic_content_chat_bubble",
      "fillDrawable": "aurum_ic_content_chat_bubble_filled",
      "lineFigmaNodeId": "5917:1284",
      "fillFigmaNodeId": "5917:1279",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1284",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1279",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ChatCenteredDots (line, node 5917:1284) -->\n<path d=\"M10.875 12C10.875 11.7775 10.941 11.56 11.0646 11.375C11.1882 11.19 11.3639 11.0458 11.5695 10.9606C11.7751 10.8755 12.0013 10.8532 12.2195 10.8966C12.4377 10.94 12.6382 11.0472 12.7955 11.2045C12.9529 11.3618 13.06 11.5623 13.1034 11.7805C13.1468 11.9988 13.1245 12.225 13.0394 12.4305C12.9542 12.6361 12.81 12.8118 12.625 12.9354C12.44 13.059 12.2225 13.125 12 13.125C11.7017 13.125 11.4155 13.0065 11.2045 12.7955C10.9936 12.5845 10.875 12.2984 10.875 12ZM7.87503 13.125C8.09753 13.125 8.31504 13.059 8.50004 12.9354C8.68505 12.8118 8.82924 12.6361 8.91439 12.4305C8.99954 12.225 9.02182 11.9988 8.97841 11.7805C8.935 11.5623 8.82786 11.3618 8.67052 11.2045C8.51319 11.0472 8.31273 10.94 8.0945 10.8966C7.87627 10.8532 7.65007 10.8755 7.44451 10.9606C7.23894 11.0458 7.06324 11.19 6.93962 11.375C6.81601 11.56 6.75003 11.7775 6.75003 12C6.75003 12.2984 6.86855 12.5845 7.07953 12.7955C7.29051 13.0065 7.57666 13.125 7.87503 13.125ZM16.125 13.125C16.3475 13.125 16.565 13.059 16.75 12.9354C16.935 12.8118 17.0792 12.6361 17.1644 12.4305C17.2495 12.225 17.2718 11.9988 17.2284 11.7805C17.185 11.5623 17.0779 11.3618 16.9205 11.2045C16.7632 11.0472 16.5627 10.94 16.3445 10.8966C16.1263 10.8532 15.9001 10.8755 15.6945 10.9606C15.4889 11.0458 15.3132 11.19 15.1896 11.375C15.066 11.56 15 11.7775 15 12C15 12.2984 15.1186 12.5845 15.3295 12.7955C15.5405 13.0065 15.8267 13.125 16.125 13.125ZM21.75 6V18C21.75 18.3978 21.592 18.7794 21.3107 19.0607C21.0294 19.342 20.6479 19.5 20.25 19.5H7.78128L4.72503 22.14L4.71659 22.1466C4.44662 22.3755 4.10397 22.5008 3.75003 22.5C3.52968 22.4995 3.31211 22.4509 3.11253 22.3575C2.85365 22.2379 2.63468 22.0462 2.48174 21.8055C2.3288 21.5648 2.24836 21.2852 2.25003 21V6C2.25003 5.60218 2.40806 5.22064 2.68937 4.93934C2.97067 4.65804 3.3522 4.5 3.75003 4.5H20.25C20.6479 4.5 21.0294 4.65804 21.3107 4.93934C21.592 5.22064 21.75 5.60218 21.75 6ZM20.25 6H3.75003V21L7.00971 18.1875C7.14523 18.068 7.31934 18.0014 7.50003 18H20.25V6Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ChatCenteredDots (fill, node 5917:1279) -->\n<path d=\"M20.25 3.75H3.75C3.35218 3.75 2.97064 3.90804 2.68934 4.18934C2.40804 4.47064 2.25 4.85218 2.25 5.25V17.25C2.25 17.6478 2.40804 18.0294 2.68934 18.3107C2.97064 18.592 3.35218 18.75 3.75 18.75H9.41531L10.6978 20.9944C10.829 21.2239 11.0186 21.4146 11.2473 21.5473C11.4759 21.68 11.7356 21.7499 12 21.7499C12.2644 21.7499 12.5241 21.68 12.7527 21.5473C12.9814 21.4146 13.171 21.2239 13.3022 20.9944L14.5847 18.75H20.25C20.6478 18.75 21.0294 18.592 21.3107 18.3107C21.592 18.0294 21.75 17.6478 21.75 17.25V5.25C21.75 4.85218 21.592 4.47064 21.3107 4.18934C21.0294 3.90804 20.6478 3.75 20.25 3.75ZM7.875 12.375C7.6525 12.375 7.43499 12.309 7.24998 12.1854C7.06498 12.0618 6.92078 11.8861 6.83564 11.6805C6.75049 11.475 6.72821 11.2488 6.77162 11.0305C6.81502 10.8123 6.92217 10.6118 7.0795 10.4545C7.23684 10.2972 7.43729 10.19 7.65552 10.1466C7.87375 10.1032 8.09995 10.1255 8.30552 10.2106C8.51109 10.2958 8.68679 10.44 8.8104 10.625C8.93402 10.81 9 11.0275 9 11.25C9 11.5484 8.88147 11.8345 8.6705 12.0455C8.45952 12.2565 8.17337 12.375 7.875 12.375ZM12 12.375C11.7775 12.375 11.56 12.309 11.375 12.1854C11.19 12.0618 11.0458 11.8861 10.9606 11.6805C10.8755 11.475 10.8532 11.2488 10.8966 11.0305C10.94 10.8123 11.0472 10.6118 11.2045 10.4545C11.3618 10.2972 11.5623 10.19 11.7805 10.1466C11.9988 10.1032 12.225 10.1255 12.4305 10.2106C12.6361 10.2958 12.8118 10.44 12.9354 10.625C13.059 10.81 13.125 11.0275 13.125 11.25C13.125 11.5484 13.0065 11.8345 12.7955 12.0455C12.5845 12.2565 12.2984 12.375 12 12.375ZM16.125 12.375C15.9025 12.375 15.685 12.309 15.5 12.1854C15.315 12.0618 15.1708 11.8861 15.0856 11.6805C15.0005 11.475 14.9782 11.2488 15.0216 11.0305C15.065 10.8123 15.1722 10.6118 15.3295 10.4545C15.4868 10.2972 15.6873 10.19 15.9055 10.1466C16.1238 10.1032 16.35 10.1255 16.5555 10.2106C16.7611 10.2958 16.9368 10.44 17.0604 10.625C17.184 10.81 17.25 11.0275 17.25 11.25C17.25 11.5484 17.1315 11.8345 16.9205 12.0455C16.7095 12.2565 16.4234 12.375 16.125 12.375Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Star",
      "category": "content",
      "lineDrawable": "aurum_ic_content_star",
      "fillDrawable": "aurum_ic_content_star_filled",
      "lineFigmaNodeId": "6423:347",
      "fillFigmaNodeId": "6423:347",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6423-347",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6423-347",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Star (line, node 6423:347) -->\n<path d=\"M12.75 2.75L12.4808 5.01849C12.0632 8.53818 9.28818 11.3132 5.76849 11.7308L3.5 12L5.7685 12.2692C9.28818 12.6868 12.0632 15.4618 12.4808 18.9815L12.75 21.25L13.0192 18.9815C13.4368 15.4618 16.2118 12.6868 19.7315 12.2692L22 12L19.7315 11.7308C16.2118 11.3132 13.4368 8.53818 13.0192 5.01849L12.75 2.75Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Star (fill, node 6423:347) -->\n<path d=\"M12.75 2.75L12.4808 5.01849C12.0632 8.53818 9.28818 11.3132 5.76849 11.7308L3.5 12L5.7685 12.2692C9.28818 12.6868 12.0632 15.4618 12.4808 18.9815L12.75 21.25L13.0192 18.9815C13.4368 15.4618 16.2118 12.6868 19.7315 12.2692L22 12L19.7315 11.7308C16.2118 11.3132 13.4368 8.53818 13.0192 5.01849L12.75 2.75Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "ChartBar",
      "category": "content",
      "lineDrawable": "aurum_ic_content_chart_bar",
      "fillDrawable": "aurum_ic_content_chart_bar_filled",
      "lineFigmaNodeId": "6473:23775",
      "fillFigmaNodeId": "6473:23774",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6473-23775",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6473-23774",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ChartBar (line, node 6473:23775) -->\n<path d=\"M4.5 19.5V12.75H9\" fill=\"none\" stroke=\"#121212\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M21 19.5H3\" fill=\"none\" stroke=\"#121212\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M9 19.5V8.25H14.25\" fill=\"none\" stroke=\"#121212\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M14.25 19.5V3.75H19.5V19.5\" fill=\"none\" stroke=\"#121212\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ChartBar (fill, node 6473:23774) -->\n<path d=\"M21.75 19.5C21.75 19.6989 21.671 19.8897 21.5303 20.0303C21.3897 20.171 21.1989 20.25 21 20.25H3C2.80109 20.25 2.61032 20.171 2.46967 20.0303C2.32902 19.8897 2.25 19.6989 2.25 19.5C2.25 19.3011 2.32902 19.1103 2.46967 18.9697C2.61032 18.829 2.80109 18.75 3 18.75H3.75V12.75C3.75 12.5511 3.82902 12.3603 3.96967 12.2197C4.11032 12.079 4.30109 12 4.5 12H6.75C6.94891 12 7.13968 12.079 7.28033 12.2197C7.42098 12.3603 7.5 12.5511 7.5 12.75V18.75H9V8.25C9 8.05109 9.07902 7.86032 9.21967 7.71967C9.36032 7.57902 9.55109 7.5 9.75 7.5H12.75C12.9489 7.5 13.1397 7.57902 13.2803 7.71967C13.421 7.86032 13.5 8.05109 13.5 8.25V18.75H15V3.75C15 3.55109 15.079 3.36032 15.2197 3.21967C15.3603 3.07902 15.5511 3 15.75 3H19.5C19.6989 3 19.8897 3.07902 20.0303 3.21967C20.171 3.36032 20.25 3.55109 20.25 3.75V18.75H21C21.1989 18.75 21.3897 18.829 21.5303 18.9697C21.671 19.1103 21.75 19.3011 21.75 19.5Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Play",
      "category": "media",
      "lineDrawable": "aurum_ic_media_play",
      "fillDrawable": "aurum_ic_media_play_filled",
      "lineFigmaNodeId": "5162:1109",
      "fillFigmaNodeId": "5162:994",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1109",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-994",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: play (line, node 5162:1109) -->\n<path d=\"M7.00977 2.24904C7.49344 2.25076 7.96797 2.38028 8.38574 2.62404L20.3809 9.62111H20.3818C20.798 9.86266 21.1435 10.2091 21.3838 10.626C21.6242 11.043 21.7506 11.5158 21.751 11.9971C21.7514 12.4784 21.6254 12.9518 21.3857 13.3692C21.1461 13.7864 20.8015 14.1338 20.3857 14.376L20.3848 14.375L8.38574 21.375C7.96795 21.6188 7.49348 21.7483 7.00977 21.75C6.5259 21.7517 6.04945 21.6258 5.62988 21.3848C5.2104 21.1438 4.86241 20.7957 4.62012 20.377C4.37786 19.9582 4.24986 19.4828 4.25 18.999V5.00002C4.24986 4.51615 4.3778 4.0409 4.62012 3.62209C4.86242 3.2033 5.21036 2.8553 5.62988 2.61427C6.04945 2.37324 6.5259 2.2474 7.00977 2.24904ZM5.75 19C5.74996 19.2198 5.80793 19.4357 5.91797 19.626C6.02805 19.8163 6.18639 19.9744 6.37695 20.084C6.56757 20.1935 6.78408 20.2507 7.00391 20.25C7.22377 20.2493 7.43996 20.1909 7.62988 20.0801L19.6309 13.0791C19.8196 12.9691 19.9761 12.8115 20.085 12.6221C20.1939 12.4324 20.2512 12.2168 20.251 11.9981C20.2507 11.7794 20.1932 11.5645 20.084 11.375C19.9747 11.1856 19.818 11.0277 19.6289 10.918L19.627 10.917L7.62988 3.91994V3.91896C7.43999 3.80822 7.22374 3.74979 7.00391 3.74904C6.78408 3.74835 6.56757 3.80555 6.37695 3.91505C6.18635 4.02461 6.02807 4.18277 5.91797 4.37306C5.8079 4.56331 5.75 4.77925 5.75 4.99904V19Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: play (fill, node 5162:994) -->\n<path d=\"M5 4.99963C4.9999 4.64772 5.09265 4.30202 5.26888 3.99742C5.44512 3.69282 5.69861 3.44012 6.00375 3.26483C6.30889 3.08953 6.65488 2.99785 7.00679 2.99905C7.3587 3.00024 7.70406 3.09427 8.008 3.27163L20.005 10.2696C20.3078 10.4453 20.5591 10.6974 20.7339 11.0006C20.9088 11.3039 21.0009 11.6477 21.0012 11.9978C21.0015 12.3478 20.91 12.6918 20.7357 12.9954C20.5614 13.2989 20.3105 13.5514 20.008 13.7276L8.008 20.7276C7.70406 20.905 7.3587 20.999 7.00679 21.0002C6.65488 21.0014 6.30889 20.9097 6.00375 20.7344C5.69861 20.5591 5.44512 20.3064 5.26888 20.0018C5.09265 19.6972 4.9999 19.3515 5 18.9996V4.99963Z\" fill=\"#121212\"/>\n<path d=\"M7.00879 2.49904C7.44851 2.50058 7.87996 2.61826 8.25977 2.83986L20.2549 9.83693C20.6333 10.0565 20.9485 10.3719 21.167 10.751C21.3855 11.13 21.5006 11.5596 21.501 11.9971C21.5014 12.4346 21.3868 12.8647 21.1689 13.2442C20.9784 13.5761 20.7146 13.8591 20.3984 14.0723L20.2598 14.1592L8.25977 21.1592C7.87993 21.3808 7.44855 21.4985 7.00879 21.5C6.56896 21.5015 6.13627 21.387 5.75488 21.168C5.37346 20.9489 5.05624 20.6327 4.83594 20.252C4.61574 19.8713 4.49987 19.4388 4.5 18.999V5.00001C4.49987 4.56018 4.61569 4.1278 4.83594 3.74708C5.05624 3.36634 5.37346 3.05019 5.75488 2.83107C6.13625 2.61204 6.569 2.49754 7.00879 2.49904ZM5.5 19C5.49996 19.2638 5.57006 19.5226 5.70215 19.751C5.83433 19.9794 6.02407 20.1693 6.25293 20.3008C6.48171 20.4322 6.74104 20.5009 7.00488 20.5C7.26875 20.4991 7.52794 20.4289 7.75586 20.2959L19.7559 13.2959C19.9827 13.1638 20.171 12.9738 20.3018 12.7461C20.4324 12.5185 20.5012 12.2606 20.501 11.9981C20.5007 11.7356 20.4319 11.4774 20.3008 11.25C20.1697 11.0227 19.9809 10.8339 19.7539 10.7022L19.7529 10.7012L7.75586 3.70314C7.52796 3.57021 7.26871 3.49993 7.00488 3.49904C6.74108 3.49818 6.48169 3.56687 6.25293 3.69826C6.02409 3.82972 5.83433 4.01963 5.70215 4.24806C5.57004 4.47638 5.5 4.73526 5.5 4.99904V19Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Pause",
      "category": "media",
      "lineDrawable": "aurum_ic_media_pause",
      "fillDrawable": "aurum_ic_media_pause_filled",
      "lineFigmaNodeId": "5162:1111",
      "fillFigmaNodeId": "5162:996",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1111",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-996",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: pause (line, node 5162:1111) -->\n<path d=\"M9.25 4C9.25 3.86193 9.13807 3.75 9 3.75H6C5.86193 3.75 5.75 3.86193 5.75 4V20C5.75 20.1381 5.86193 20.25 6 20.25H9C9.13807 20.25 9.25 20.1381 9.25 20V4ZM18.25 4C18.25 3.86193 18.1381 3.75 18 3.75H15C14.8619 3.75 14.75 3.86193 14.75 4V20C14.75 20.1381 14.8619 20.25 15 20.25H18C18.1381 20.25 18.25 20.1381 18.25 20V4ZM10.75 20C10.75 20.9665 9.9665 21.75 9 21.75H6C5.0335 21.75 4.25 20.9665 4.25 20V4C4.25 3.0335 5.0335 2.25 6 2.25H9C9.9665 2.25 10.75 3.0335 10.75 4V20ZM19.75 20C19.75 20.9665 18.9665 21.75 18 21.75H15C14.0335 21.75 13.25 20.9665 13.25 20V4C13.25 3.0335 14.0335 2.25 15 2.25H18C18.9665 2.25 19.75 3.0335 19.75 4V20Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: pause (fill, node 5162:996) -->\n<path d=\"M18 3H15C14.4477 3 14 3.44772 14 4V20C14 20.5523 14.4477 21 15 21H18C18.5523 21 19 20.5523 19 20V4C19 3.44772 18.5523 3 18 3Z\" fill=\"#121212\"/>\n<path d=\"M9 3H6C5.44772 3 5 3.44772 5 4V20C5 20.5523 5.44772 21 6 21H9C9.55228 21 10 20.5523 10 20V4C10 3.44772 9.55228 3 9 3Z\" fill=\"#121212\"/>\n<path d=\"M9.25 4C9.25 3.86193 9.13807 3.75 9 3.75H6C5.86193 3.75 5.75 3.86193 5.75 4V20C5.75 20.1381 5.86193 20.25 6 20.25H9C9.13807 20.25 9.25 20.1381 9.25 20V4ZM18.25 4C18.25 3.86193 18.1381 3.75 18 3.75H15C14.8619 3.75 14.75 3.86193 14.75 4V20C14.75 20.1381 14.8619 20.25 15 20.25H18C18.1381 20.25 18.25 20.1381 18.25 20V4ZM10.75 20C10.75 20.9665 9.9665 21.75 9 21.75H6C5.0335 21.75 4.25 20.9665 4.25 20V4C4.25 3.0335 5.0335 2.25 6 2.25H9C9.9665 2.25 10.75 3.0335 10.75 4V20ZM19.75 20C19.75 20.9665 18.9665 21.75 18 21.75H15C14.0335 21.75 13.25 20.9665 13.25 20V4C13.25 3.0335 14.0335 2.25 15 2.25H18C18.9665 2.25 19.75 3.0335 19.75 4V20Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Camera",
      "category": "media",
      "lineDrawable": "aurum_ic_media_camera",
      "fillDrawable": "aurum_ic_media_camera_filled",
      "lineFigmaNodeId": "5162:1113",
      "fillFigmaNodeId": "5162:998",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1113",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-998",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Camera (line, node 5162:1113) -->\n<path d=\"M19.5 5.25H16.9012L15.6234 3.33375C15.555 3.23114 15.4623 3.147 15.3535 3.08879C15.2448 3.03057 15.1233 3.00007 15 3H9C8.87665 3.00007 8.75522 3.03057 8.64648 3.08879C8.53773 3.147 8.44502 3.23114 8.37656 3.33375L7.09781 5.25H4.5C3.90326 5.25 3.33097 5.48705 2.90901 5.90901C2.48705 6.33097 2.25 6.90326 2.25 7.5V18C2.25 18.5967 2.48705 19.169 2.90901 19.591C3.33097 20.0129 3.90326 20.25 4.5 20.25H19.5C20.0967 20.25 20.669 20.0129 21.091 19.591C21.5129 19.169 21.75 18.5967 21.75 18V7.5C21.75 6.90326 21.5129 6.33097 21.091 5.90901C20.669 5.48705 20.0967 5.25 19.5 5.25ZM20.25 18C20.25 18.1989 20.171 18.3897 20.0303 18.5303C19.8897 18.671 19.6989 18.75 19.5 18.75H4.5C4.30109 18.75 4.11032 18.671 3.96967 18.5303C3.82902 18.3897 3.75 18.1989 3.75 18V7.5C3.75 7.30109 3.82902 7.11032 3.96967 6.96967C4.11032 6.82902 4.30109 6.75 4.5 6.75H7.5C7.62351 6.75008 7.74512 6.71966 7.85405 6.66143C7.96297 6.60321 8.05583 6.51899 8.12438 6.41625L9.40125 4.5H14.5978L15.8756 6.41625C15.9442 6.51899 16.037 6.60321 16.146 6.66143C16.2549 6.71966 16.3765 6.75008 16.5 6.75H19.5C19.6989 6.75 19.8897 6.82902 20.0303 6.96967C20.171 7.11032 20.25 7.30109 20.25 7.5V18ZM12 8.25C11.1842 8.25 10.3866 8.49193 9.70827 8.94519C9.02992 9.39845 8.50121 10.0427 8.189 10.7964C7.87679 11.5502 7.7951 12.3796 7.95426 13.1797C8.11343 13.9799 8.50629 14.7149 9.08318 15.2918C9.66008 15.8687 10.3951 16.2616 11.1953 16.4207C11.9954 16.5799 12.8248 16.4982 13.5786 16.186C14.3323 15.8738 14.9766 15.3451 15.4298 14.6667C15.8831 13.9884 16.125 13.1908 16.125 12.375C16.1238 11.2814 15.6888 10.2329 14.9154 9.45955C14.1421 8.68624 13.0936 8.25124 12 8.25ZM12 15C11.4808 15 10.9733 14.846 10.5416 14.5576C10.1099 14.2692 9.7735 13.8592 9.57482 13.3795C9.37614 12.8999 9.32415 12.3721 9.42544 11.8629C9.52672 11.3537 9.77673 10.886 10.1438 10.5188C10.511 10.1517 10.9787 9.90172 11.4879 9.80044C11.9971 9.69915 12.5249 9.75114 13.0045 9.94982C13.4842 10.1485 13.8942 10.4849 14.1826 10.9166C14.471 11.3483 14.625 11.8558 14.625 12.375C14.625 13.0712 14.3484 13.7389 13.8562 14.2312C13.3639 14.7234 12.6962 15 12 15Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Camera (fill, node 5162:998) -->\n<path d=\"M19.5 5.25H16.9012L15.6234 3.33375C15.555 3.23114 15.4623 3.147 15.3535 3.08879C15.2448 3.03057 15.1233 3.00007 15 3H9C8.87665 3.00007 8.75522 3.03057 8.64648 3.08879C8.53773 3.147 8.44502 3.23114 8.37656 3.33375L7.09781 5.25H4.5C3.90326 5.25 3.33097 5.48705 2.90901 5.90901C2.48705 6.33097 2.25 6.90326 2.25 7.5V18C2.25 18.5967 2.48705 19.169 2.90901 19.591C3.33097 20.0129 3.90326 20.25 4.5 20.25H19.5C20.0967 20.25 20.669 20.0129 21.091 19.591C21.5129 19.169 21.75 18.5967 21.75 18V7.5C21.75 6.90326 21.5129 6.33097 21.091 5.90901C20.669 5.48705 20.0967 5.25 19.5 5.25ZM15.375 12.375C15.375 13.0425 15.1771 13.695 14.8062 14.25C14.4354 14.8051 13.9083 15.2376 13.2916 15.4931C12.6749 15.7485 11.9963 15.8154 11.3416 15.6852C10.6869 15.5549 10.0855 15.2335 9.61351 14.7615C9.14151 14.2895 8.82007 13.6881 8.68985 13.0334C8.55962 12.3787 8.62646 11.7001 8.88191 11.0834C9.13735 10.4667 9.56993 9.93964 10.125 9.56879C10.68 9.19794 11.3325 9 12 9C12.8951 9 13.7535 9.35558 14.3865 9.98851C15.0194 10.6214 15.375 11.4799 15.375 12.375Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Microphone",
      "category": "media",
      "lineDrawable": "aurum_ic_media_microphone",
      "fillDrawable": "aurum_ic_media_microphone_filled",
      "lineFigmaNodeId": "5162:1123",
      "fillFigmaNodeId": "5162:1008",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1123",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1008",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Microphone (line, node 5162:1123) -->\n<path d=\"M12 16.5C13.1931 16.4988 14.337 16.0243 15.1806 15.1806C16.0243 14.337 16.4988 13.1931 16.5 12V6C16.5 4.80653 16.0259 3.66193 15.182 2.81802C14.3381 1.97411 13.1935 1.5 12 1.5C10.8065 1.5 9.66193 1.97411 8.81802 2.81802C7.97411 3.66193 7.5 4.80653 7.5 6V12C7.50124 13.1931 7.97575 14.337 8.81939 15.1806C9.66303 16.0243 10.8069 16.4988 12 16.5ZM9 6C9 5.20435 9.31607 4.44129 9.87868 3.87868C10.4413 3.31607 11.2044 3 12 3C12.7956 3 13.5587 3.31607 14.1213 3.87868C14.6839 4.44129 15 5.20435 15 6V12C15 12.7956 14.6839 13.5587 14.1213 14.1213C13.5587 14.6839 12.7956 15 12 15C11.2044 15 10.4413 14.6839 9.87868 14.1213C9.31607 13.5587 9 12.7956 9 12V6ZM12.75 19.4625V22.5C12.75 22.6989 12.671 22.8897 12.5303 23.0303C12.3897 23.171 12.1989 23.25 12 23.25C11.8011 23.25 11.6103 23.171 11.4697 23.0303C11.329 22.8897 11.25 22.6989 11.25 22.5V19.4625C9.40091 19.2743 7.68728 18.4072 6.44048 17.0288C5.19368 15.6504 4.50228 13.8586 4.5 12C4.5 11.8011 4.57902 11.6103 4.71967 11.4697C4.86032 11.329 5.05109 11.25 5.25 11.25C5.44891 11.25 5.63968 11.329 5.78033 11.4697C5.92098 11.6103 6 11.8011 6 12C6 13.5913 6.63214 15.1174 7.75736 16.2426C8.88258 17.3679 10.4087 18 12 18C13.5913 18 15.1174 17.3679 16.2426 16.2426C17.3679 15.1174 18 13.5913 18 12C18 11.8011 18.079 11.6103 18.2197 11.4697C18.3603 11.329 18.5511 11.25 18.75 11.25C18.9489 11.25 19.1397 11.329 19.2803 11.4697C19.421 11.6103 19.5 11.8011 19.5 12C19.4977 13.8586 18.8063 15.6504 17.5595 17.0288C16.3127 18.4072 14.5991 19.2743 12.75 19.4625Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Microphone (fill, node 5162:1008) -->\n<path d=\"M7.5 12V6C7.5 4.80653 7.97411 3.66193 8.81802 2.81802C9.66193 1.97411 10.8065 1.5 12 1.5C13.1935 1.5 14.3381 1.97411 15.182 2.81802C16.0259 3.66193 16.5 4.80653 16.5 6V12C16.5 13.1935 16.0259 14.3381 15.182 15.182C14.3381 16.0259 13.1935 16.5 12 16.5C10.8065 16.5 9.66193 16.0259 8.81802 15.182C7.97411 14.3381 7.5 13.1935 7.5 12ZM19.5 12C19.5 11.8011 19.421 11.6103 19.2803 11.4697C19.1397 11.329 18.9489 11.25 18.75 11.25C18.5511 11.25 18.3603 11.329 18.2197 11.4697C18.079 11.6103 18 11.8011 18 12C18 13.5913 17.3679 15.1174 16.2426 16.2426C15.1174 17.3679 13.5913 18 12 18C10.4087 18 8.88258 17.3679 7.75736 16.2426C6.63214 15.1174 6 13.5913 6 12C6 11.8011 5.92098 11.6103 5.78033 11.4697C5.63968 11.329 5.44891 11.25 5.25 11.25C5.05109 11.25 4.86032 11.329 4.71967 11.4697C4.57902 11.6103 4.5 11.8011 4.5 12C4.50228 13.8586 5.19368 15.6504 6.44048 17.0288C7.68728 18.4072 9.40091 19.2743 11.25 19.4625V22.5C11.25 22.6989 11.329 22.8897 11.4697 23.0303C11.6103 23.171 11.8011 23.25 12 23.25C12.1989 23.25 12.3897 23.171 12.5303 23.0303C12.671 22.8897 12.75 22.6989 12.75 22.5V19.4625C14.5991 19.2743 16.3127 18.4072 17.5595 17.0288C18.8063 15.6504 19.4977 13.8586 19.5 12Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "VolumeOn",
      "category": "media",
      "lineDrawable": "aurum_ic_media_volume_on",
      "fillDrawable": "aurum_ic_media_volume_on_filled",
      "lineFigmaNodeId": "5162:1131",
      "fillFigmaNodeId": "5162:1016",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1131",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1016",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SpeakerSimpleHigh (line, node 5162:1131) -->\n<path d=\"M15.3291 2.32579C15.2029 2.26433 15.0621 2.23948 14.9226 2.25406C14.783 2.26865 14.6504 2.32208 14.5397 2.40829L7.99219 7.49985H3.75C3.35218 7.49985 2.97064 7.65788 2.68934 7.93919C2.40804 8.22049 2.25 8.60202 2.25 8.99985V14.9998C2.25 15.3977 2.40804 15.7792 2.68934 16.0605C2.97064 16.3418 3.35218 16.4998 3.75 16.4998H7.99219L14.5397 21.5914C14.6505 21.6775 14.7832 21.7309 14.9228 21.7453C15.0624 21.7597 15.2033 21.7347 15.3293 21.6731C15.4554 21.6115 15.5617 21.5157 15.6361 21.3967C15.7104 21.2777 15.7499 21.1402 15.75 20.9998V2.99985C15.75 2.85934 15.7106 2.72166 15.6361 2.60248C15.5617 2.48331 15.4553 2.38743 15.3291 2.32579ZM14.25 19.4661L8.71031 15.1583C8.57897 15.0554 8.41686 14.9996 8.25 14.9998H3.75V8.99985H8.25C8.41686 9.00012 8.57897 8.94432 8.71031 8.84141L14.25 4.5336V19.4661ZM19.5 9.74985V14.2498C19.5 14.4488 19.421 14.6395 19.2803 14.7802C19.1397 14.9208 18.9489 14.9998 18.75 14.9998C18.5511 14.9998 18.3603 14.9208 18.2197 14.7802C18.079 14.6395 18 14.4488 18 14.2498V9.74985C18 9.55094 18.079 9.36017 18.2197 9.21952C18.3603 9.07887 18.5511 8.99985 18.75 8.99985C18.9489 8.99985 19.1397 9.07887 19.2803 9.21952C19.421 9.36017 19.5 9.55094 19.5 9.74985ZM22.5 8.24985V15.7498C22.5 15.9488 22.421 16.1395 22.2803 16.2802C22.1397 16.4208 21.9489 16.4998 21.75 16.4998C21.5511 16.4998 21.3603 16.4208 21.2197 16.2802C21.079 16.1395 21 15.9488 21 15.7498V8.24985C21 8.05094 21.079 7.86017 21.2197 7.71952C21.3603 7.57887 21.5511 7.49985 21.75 7.49985C21.9489 7.49985 22.1397 7.57887 22.2803 7.71952C22.421 7.86017 22.5 8.05094 22.5 8.24985Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SpeakerSimpleHigh (fill, node 5162:1016) -->\n<path d=\"M15.75 3.00041V21.0004C15.7499 21.1408 15.7104 21.2782 15.6361 21.3973C15.5617 21.5163 15.4554 21.612 15.3293 21.6737C15.2033 21.7353 15.0624 21.7603 14.9228 21.7459C14.7832 21.7314 14.6505 21.6781 14.5397 21.592L7.99219 16.5004H3.75C3.35218 16.5004 2.97064 16.3424 2.68934 16.0611C2.40804 15.7798 2.25 15.3982 2.25 15.0004V9.00041C2.25 8.60259 2.40804 8.22106 2.68934 7.93975C2.97064 7.65845 3.35218 7.50041 3.75 7.50041H7.99219L14.5397 2.40885C14.6505 2.32272 14.7832 2.2694 14.9228 2.25496C15.0624 2.24052 15.2033 2.26553 15.3293 2.32716C15.4554 2.38878 15.5617 2.48455 15.6361 2.60356C15.7104 2.72258 15.7499 2.86008 15.75 3.00041ZM18.75 9.00041C18.5511 9.00041 18.3603 9.07943 18.2197 9.22008C18.079 9.36074 18 9.5515 18 9.75041V14.2504C18 14.4493 18.079 14.6401 18.2197 14.7807C18.3603 14.9214 18.5511 15.0004 18.75 15.0004C18.9489 15.0004 19.1397 14.9214 19.2803 14.7807C19.421 14.6401 19.5 14.4493 19.5 14.2504V9.75041C19.5 9.5515 19.421 9.36074 19.2803 9.22008C19.1397 9.07943 18.9489 9.00041 18.75 9.00041ZM21.75 7.50041C21.5511 7.50041 21.3603 7.57943 21.2197 7.72008C21.079 7.86074 21 8.0515 21 8.25041V15.7504C21 15.9493 21.079 16.1401 21.2197 16.2807C21.3603 16.4214 21.5511 16.5004 21.75 16.5004C21.9489 16.5004 22.1397 16.4214 22.2803 16.2807C22.421 16.1401 22.5 15.9493 22.5 15.7504V8.25041C22.5 8.0515 22.421 7.86074 22.2803 7.72008C22.1397 7.57943 21.9489 7.50041 21.75 7.50041Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "VolumeOff",
      "category": "media",
      "lineDrawable": "aurum_ic_media_volume_off",
      "fillDrawable": "aurum_ic_media_volume_off_filled",
      "lineFigmaNodeId": "5162:1133",
      "fillFigmaNodeId": "5162:1018",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1133",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1018",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SpeakerSimpleX (line, node 5162:1133) -->\n<path d=\"M15.3291 2.32579C15.2029 2.26433 15.0621 2.23948 14.9226 2.25406C14.783 2.26865 14.6504 2.32208 14.5397 2.40829L7.99219 7.49985H3.75C3.35218 7.49985 2.97064 7.65788 2.68934 7.93919C2.40804 8.22049 2.25 8.60202 2.25 8.99985V14.9998C2.25 15.3977 2.40804 15.7792 2.68934 16.0605C2.97064 16.3418 3.35218 16.4998 3.75 16.4998H7.99219L14.5397 21.5914C14.6505 21.6775 14.7832 21.7309 14.9228 21.7453C15.0624 21.7597 15.2033 21.7347 15.3293 21.6731C15.4554 21.6115 15.5617 21.5157 15.6361 21.3967C15.7104 21.2777 15.7499 21.1402 15.75 20.9998V2.99985C15.75 2.85934 15.7106 2.72166 15.6361 2.60248C15.5617 2.48331 15.4553 2.38743 15.3291 2.32579ZM14.25 19.4661L8.71031 15.1583C8.57897 15.0554 8.41686 14.9996 8.25 14.9998H3.75V8.99985H8.25C8.41686 9.00012 8.57897 8.94432 8.71031 8.84141L14.25 4.5336V19.4661ZM23.7806 13.7192C23.9214 13.86 24.0004 14.0508 24.0004 14.2498C24.0004 14.4489 23.9214 14.6397 23.7806 14.7805C23.6399 14.9212 23.449 15.0003 23.25 15.0003C23.051 15.0003 22.8601 14.9212 22.7194 14.7805L21 13.0602L19.2806 14.7805C19.1399 14.9212 18.949 15.0003 18.75 15.0003C18.551 15.0003 18.3601 14.9212 18.2194 14.7805C18.0786 14.6397 17.9996 14.4489 17.9996 14.2498C17.9996 14.0508 18.0786 13.86 18.2194 13.7192L19.9397 11.9998L18.2194 10.2805C18.0786 10.1397 17.9996 9.94887 17.9996 9.74985C17.9996 9.55083 18.0786 9.35995 18.2194 9.21922C18.3601 9.07849 18.551 8.99943 18.75 8.99943C18.949 8.99943 19.1399 9.07849 19.2806 9.21922L21 10.9395L22.7194 9.21922C22.8601 9.07849 23.051 8.99943 23.25 8.99943C23.449 8.99943 23.6399 9.07849 23.7806 9.21922C23.9214 9.35995 24.0004 9.55083 24.0004 9.74985C24.0004 9.94887 23.9214 10.1397 23.7806 10.2805L22.0603 11.9998L23.7806 13.7192Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SpeakerSimpleX (fill, node 5162:1018) -->\n<path d=\"M15.33 2.32607C15.2038 2.26442 15.0627 2.23947 14.923 2.25405C14.7833 2.26864 14.6505 2.32218 14.5397 2.40857L7.99219 7.50013H3.75C3.35218 7.50013 2.97064 7.65817 2.68934 7.93947C2.40804 8.22077 2.25 8.6023 2.25 9.00013V15.0001C2.25 15.398 2.40804 15.7795 2.68934 16.0608C2.97064 16.3421 3.35218 16.5001 3.75 16.5001H7.99219L14.5397 21.5917C14.671 21.6946 14.8331 21.7504 15 21.7501C15.1989 21.7501 15.3897 21.6711 15.5303 21.5305C15.671 21.3898 15.75 21.199 15.75 21.0001V3.00013C15.7501 2.85972 15.7108 2.72211 15.6365 2.60294C15.5623 2.48378 15.4561 2.38785 15.33 2.32607Z\" fill=\"#121212\"/>\n<path d=\"M22.0607 12.0004L23.781 10.281C23.9218 10.1403 24.0008 9.94944 24.0008 9.75042C24.0008 9.55139 23.9218 9.36052 23.781 9.21979C23.6403 9.07906 23.4494 9 23.2504 9C23.0514 9 22.8605 9.07906 22.7198 9.21979L21.0004 10.9401L19.281 9.21979C19.1403 9.07906 18.9494 9 18.7504 9C18.5514 9 18.3605 9.07906 18.2198 9.21979C18.0791 9.36052 18 9.55139 18 9.75042C18 9.94944 18.0791 10.1403 18.2198 10.281L19.9401 12.0004L18.2198 13.7198C18.0791 13.8605 18 14.0514 18 14.2504C18 14.4494 18.0791 14.6403 18.2198 14.781C18.3605 14.9218 18.5514 15.0008 18.7504 15.0008C18.9494 15.0008 19.1403 14.9218 19.281 14.781L21.0004 13.0607L22.7198 14.781C22.8605 14.9218 23.0514 15.0008 23.2504 15.0008C23.4494 15.0008 23.6403 14.9218 23.781 14.781C23.9218 14.6403 24.0008 14.4494 24.0008 14.2504C24.0008 14.0514 23.9218 13.8605 23.781 13.7198L22.0607 12.0004Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Replay",
      "category": "media",
      "lineDrawable": "aurum_ic_media_replay",
      "fillDrawable": "aurum_ic_media_replay_filled",
      "lineFigmaNodeId": "5913:680",
      "fillFigmaNodeId": "5913:681",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5913-680",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5913-681",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: replay (line, node 5913:680) -->\n<path d=\"M12.4092 2.25003C14.0004 2.25107 15.5671 2.64193 16.9727 3.38773C18.3781 4.13346 19.5798 5.21151 20.4727 6.52835C21.3656 7.84537 21.9232 9.36158 22.0957 10.9434C22.2681 12.5251 22.0509 14.1251 21.4629 15.6035C20.8749 17.082 19.9334 18.3936 18.7217 19.4248C17.5099 20.4561 16.0643 21.1756 14.5107 21.5196C12.9573 21.8635 11.3433 21.8217 9.80957 21.3985C8.27572 20.9752 6.86819 20.1829 5.71094 19.0909C5.63344 19.0175 5.57094 18.9294 5.52734 18.8321C5.48385 18.7348 5.4601 18.63 5.45703 18.5235C5.45401 18.4167 5.4717 18.3098 5.50977 18.21C5.54783 18.1103 5.60539 18.019 5.67871 17.9414C5.75205 17.8638 5.84005 17.8015 5.9375 17.7578C6.03496 17.7142 6.14034 17.6905 6.24707 17.6875C6.35372 17.6846 6.45988 17.7022 6.55957 17.7403C6.65936 17.7783 6.7505 17.8359 6.82812 17.9092C7.98954 19.0053 9.4488 19.7351 11.0225 20.0069C12.596 20.2786 14.2151 20.0805 15.6768 19.4375C17.1385 18.7945 18.3782 17.7343 19.2412 16.3907C20.1041 15.0472 20.5523 13.4794 20.5293 11.8828C20.5062 10.2861 20.0128 8.73121 19.1113 7.41312C18.2097 6.09499 16.9397 5.07118 15.46 4.47073C13.9802 3.87032 12.3561 3.71993 10.791 4.03714C9.22596 4.35436 7.78934 5.12577 6.66016 6.25491C5.83547 7.08975 5.11191 7.89488 4.38574 8.75003H6.72168C6.93716 8.75003 7.14353 8.83595 7.2959 8.98831C7.44826 9.14068 7.53417 9.34706 7.53418 9.56253C7.53418 9.77801 7.44826 9.98438 7.2959 10.1367C7.14353 10.2891 6.93717 10.375 6.72168 10.375H2.65918C2.44369 10.375 2.23733 10.2891 2.08496 10.1367C1.9326 9.98438 1.84668 9.77801 1.84668 9.56253V5.50003C1.84669 5.28455 1.9326 5.07818 2.08496 4.92581C2.23733 4.77345 2.4437 4.68753 2.65918 4.68753C2.87466 4.68753 3.08103 4.77345 3.2334 4.92581C3.38576 5.07818 3.47167 5.28455 3.47168 5.50003V7.32816C4.1165 6.5757 4.77253 5.85678 5.51074 5.10941C6.41442 4.20045 7.48977 3.47905 8.67383 2.98831C9.85784 2.49761 11.1275 2.24684 12.4092 2.25003ZM10.8115 7.86429C11.0713 7.86534 11.3267 7.93569 11.5508 8.06644L16.1045 10.7227L16.2646 10.8301C16.417 10.9476 16.5458 11.094 16.6426 11.2617C16.7718 11.4858 16.8395 11.7408 16.8398 11.9991C16.84 12.2573 16.772 12.5114 16.6436 12.7354V12.7364C16.5151 12.9599 16.3297 13.1462 16.1064 13.2764L11.5508 15.9346L11.5498 15.9336C11.3258 16.0643 11.0712 16.1347 10.8115 16.1358C10.5518 16.1367 10.2949 16.0691 10.0693 15.9395C9.84365 15.8098 9.65723 15.622 9.52734 15.3975C9.39747 15.1728 9.32805 14.9173 9.32812 14.6573V9.3428C9.32812 9.08279 9.39743 8.82719 9.52734 8.60257C9.65722 8.37827 9.84376 8.19023 10.0693 8.06058C10.2949 7.93112 10.552 7.86341 10.8115 7.86429ZM10.7852 9.30667L10.7842 9.30569C10.7786 9.30902 10.7741 9.31523 10.7705 9.32132C10.767 9.32736 10.7648 9.33471 10.7646 9.34183V14.6582C10.7647 14.6653 10.7669 14.6725 10.7705 14.6787L10.7852 14.6944C10.7911 14.6977 10.7984 14.6992 10.8057 14.6992C10.8134 14.6992 10.8215 14.6967 10.8271 14.6934L15.3838 12.0352C15.3896 12.0316 15.395 12.0264 15.3984 12.0205C15.4017 12.0146 15.4033 12.0071 15.4033 12C15.4033 11.9929 15.4018 11.9855 15.3984 11.9795C15.3945 11.9728 15.3893 11.9672 15.3838 11.9639H15.3828L15.3818 11.9629L10.8271 9.30667L10.8057 9.30081C10.7984 9.30085 10.791 9.30337 10.7852 9.30667Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: replay (fill, node 5913:681) -->\n<path d=\"M10.499 2.4383C12.3906 2.06096 14.3515 2.2535 16.1338 2.99104C17.9162 3.72873 19.44 4.9789 20.5117 6.58283C21.5834 8.18674 22.1558 10.0728 22.1553 12.0018C22.1552 13.9058 21.5971 15.7685 20.5508 17.3592C19.5044 18.9499 18.0149 20.1989 16.2666 20.953C14.5182 21.707 12.587 21.9332 10.7119 21.6024C8.83687 21.2715 7.09957 20.3985 5.71484 19.0916C5.63727 19.0183 5.57487 18.9303 5.53125 18.8328C5.48763 18.7354 5.46395 18.63 5.46094 18.5233C5.45795 18.4166 5.47567 18.3104 5.51367 18.2108C5.55172 18.111 5.60932 18.0198 5.68262 17.9422C5.83075 17.7855 6.0354 17.6934 6.25098 17.6873C6.35761 17.6844 6.46381 17.703 6.56348 17.741C6.66321 17.7791 6.75445 17.8367 6.83203 17.91C7.99337 19.0055 9.4521 19.7342 11.0254 20.0057C12.5989 20.2772 14.2182 20.0795 15.6797 19.4363C17.1411 18.7932 18.3805 17.7331 19.2432 16.3895C20.1058 15.046 20.5536 13.4781 20.5303 11.8817C20.5069 10.2851 20.013 8.7307 19.1113 7.41291C18.2096 6.09512 16.9397 5.07162 15.46 4.47151C13.9804 3.87152 12.3567 3.72148 10.792 4.03889C9.22713 4.35634 7.79001 5.12741 6.66113 6.25666C6.30273 6.61913 5.96564 6.97556 5.6377 7.32991L7.29395 8.98908C7.40759 9.1026 7.48515 9.24759 7.5166 9.4051C7.54798 9.56266 7.53214 9.72639 7.4707 9.87483C7.40916 10.0234 7.30461 10.1508 7.1709 10.2401C7.03732 10.3292 6.8803 10.3768 6.71973 10.3768H2.65723C2.44185 10.3767 2.23531 10.2908 2.08301 10.1385C1.93072 9.98618 1.84476 9.77967 1.84473 9.56428V5.50178C1.84468 5.34124 1.89235 5.18416 1.98145 5.05061C2.0707 4.91689 2.19816 4.81234 2.34668 4.7508C2.49514 4.68935 2.65882 4.67352 2.81641 4.70491C2.97396 4.73634 3.11888 4.81389 3.23242 4.92756L4.48535 6.18244C4.81232 5.82806 5.14941 5.47163 5.50684 5.11116C6.86972 3.74595 8.60726 2.81572 10.499 2.4383ZM10.7275 8.2635C10.9002 8.26419 11.0696 8.31036 11.2188 8.39729L15.9355 11.1492C16.0844 11.2356 16.209 11.3596 16.2949 11.5086C16.3808 11.6576 16.4256 11.8269 16.4258 11.9989C16.4259 12.1708 16.3806 12.3399 16.2949 12.4891C16.22 12.6195 16.1164 12.7305 15.9922 12.8143L15.9375 12.8485L11.2188 15.6014C11.0696 15.6884 10.9002 15.7345 10.7275 15.7352C10.5548 15.7358 10.3842 15.6913 10.2344 15.6053C10.0845 15.5192 9.95967 15.3945 9.87305 15.2449C9.78646 15.0952 9.74018 14.9247 9.74023 14.7518V9.2469C9.74022 9.07403 9.78649 8.90435 9.87305 8.75471C9.95967 8.60499 10.0844 8.48052 10.2344 8.39436C10.3843 8.30831 10.5547 8.26291 10.7275 8.2635Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "PlayCircle",
      "category": "media",
      "lineDrawable": "aurum_ic_media_play_circle",
      "fillDrawable": "aurum_ic_media_play_circle_filled",
      "lineFigmaNodeId": "6767:405",
      "fillFigmaNodeId": "6767:405",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6767-405",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6767-405",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Icons/PlayCircle (line, node 6767:405) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM15.8016 12.6169L10.9266 15.9919C10.814 16.0697 10.6823 16.1152 10.5458 16.1236C10.4092 16.1319 10.2729 16.1028 10.1517 16.0392C10.0306 15.9757 9.92907 15.8802 9.85825 15.7631C9.78744 15.6461 9.75001 15.5118 9.75 15.375V8.625C9.75001 8.48817 9.78744 8.35395 9.85825 8.23687C9.92907 8.11978 10.0306 8.02431 10.1517 7.96077C10.2729 7.89723 10.4092 7.86806 10.5458 7.8764C10.6823 7.88475 10.814 7.9303 10.9266 8.00812L15.8016 11.3831C15.9013 11.4521 15.9829 11.5443 16.0392 11.6517C16.0956 11.7592 16.125 11.8787 16.125 12C16.125 12.1213 16.0956 12.2408 16.0392 12.3483C15.9829 12.4557 15.9013 12.5479 15.8016 12.6169Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Icons/PlayCircle (fill, node 6767:405) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM15.8016 12.6169L10.9266 15.9919C10.814 16.0697 10.6823 16.1152 10.5458 16.1236C10.4092 16.1319 10.2729 16.1028 10.1517 16.0392C10.0306 15.9757 9.92907 15.8802 9.85825 15.7631C9.78744 15.6461 9.75001 15.5118 9.75 15.375V8.625C9.75001 8.48817 9.78744 8.35395 9.85825 8.23687C9.92907 8.11978 10.0306 8.02431 10.1517 7.96077C10.2729 7.89723 10.4092 7.86806 10.5458 7.8764C10.6823 7.88475 10.814 7.9303 10.9266 8.00812L15.8016 11.3831C15.9013 11.4521 15.9829 11.5443 16.0392 11.6517C16.0956 11.7592 16.125 11.8787 16.125 12C16.125 12.1213 16.0956 12.2408 16.0392 12.3483C15.9829 12.4557 15.9013 12.5479 15.8016 12.6169Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Cart",
      "category": "commerce",
      "lineDrawable": "aurum_ic_commerce_cart",
      "fillDrawable": "aurum_ic_commerce_cart_filled",
      "lineFigmaNodeId": "5162:1079",
      "fillFigmaNodeId": "5162:964",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1079",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-964",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ShoppingCart (line, node 5162:1079) -->\n<path d=\"M21.5756 5.51906C21.5052 5.43481 21.4172 5.36705 21.3177 5.32056C21.2183 5.27407 21.1098 5.24998 21 5.25H5.87625L5.30625 2.11594C5.27485 1.94313 5.1838 1.78681 5.04897 1.67425C4.91414 1.56169 4.74408 1.50003 4.56844 1.5H2.25C2.05109 1.5 1.86032 1.57902 1.71967 1.71967C1.57902 1.86032 1.5 2.05109 1.5 2.25C1.5 2.44891 1.57902 2.63968 1.71967 2.78033C1.86032 2.92098 2.05109 3 2.25 3H3.9375L6.33375 16.1522C6.40434 16.5422 6.57671 16.9067 6.83344 17.2087C6.47911 17.5397 6.22336 17.9623 6.09455 18.4298C5.96575 18.8972 5.96892 19.3912 6.10371 19.8569C6.23851 20.3226 6.49966 20.7419 6.85821 21.0683C7.21676 21.3947 7.6587 21.6154 8.13502 21.7059C8.61134 21.7965 9.10344 21.7533 9.55673 21.5813C10.01 21.4092 10.4068 21.115 10.7031 20.7312C10.9994 20.3474 11.1836 19.889 11.2353 19.407C11.287 18.9249 11.2041 18.4379 10.9959 18H15.2541C15.0863 18.3513 14.9995 18.7357 15 19.125C15 19.6442 15.154 20.1517 15.4424 20.5834C15.7308 21.0151 16.1408 21.3515 16.6205 21.5502C17.1001 21.7489 17.6279 21.8008 18.1371 21.6996C18.6463 21.5983 19.114 21.3483 19.4812 20.9812C19.8483 20.614 20.0983 20.1463 20.1996 19.6371C20.3008 19.1279 20.2489 18.6001 20.0502 18.1205C19.8515 17.6408 19.5151 17.2308 19.0834 16.9424C18.6517 16.654 18.1442 16.5 17.625 16.5H8.54719C8.37155 16.5 8.20149 16.4383 8.06665 16.3257C7.93182 16.2132 7.84077 16.0569 7.80938 15.8841L7.51219 14.25H18.3872C18.9141 14.2499 19.4243 14.0649 19.8288 13.7272C20.2333 13.3896 20.5064 12.9206 20.6006 12.4022L21.7406 6.13406C21.7599 6.02572 21.7551 5.91447 21.7266 5.80818C21.6981 5.7019 21.6466 5.60319 21.5756 5.51906ZM9.75 19.125C9.75 19.3475 9.68402 19.565 9.5604 19.75C9.43679 19.935 9.26109 20.0792 9.05552 20.1644C8.84995 20.2495 8.62375 20.2718 8.40552 20.2284C8.18729 20.185 7.98684 20.0778 7.8295 19.9205C7.67217 19.7632 7.56502 19.5627 7.52162 19.3445C7.47821 19.1262 7.50049 18.9 7.58564 18.6945C7.67078 18.4889 7.81498 18.3132 7.99998 18.1896C8.18499 18.066 8.4025 18 8.625 18C8.92337 18 9.20952 18.1185 9.4205 18.3295C9.63147 18.5405 9.75 18.8266 9.75 19.125ZM18.75 19.125C18.75 19.3475 18.684 19.565 18.5604 19.75C18.4368 19.935 18.2611 20.0792 18.0555 20.1644C17.85 20.2495 17.6238 20.2718 17.4055 20.2284C17.1873 20.185 16.9868 20.0778 16.8295 19.9205C16.6722 19.7632 16.565 19.5627 16.5216 19.3445C16.4782 19.1262 16.5005 18.9 16.5856 18.6945C16.6708 18.4889 16.815 18.3132 17 18.1896C17.185 18.066 17.4025 18 17.625 18C17.9234 18 18.2095 18.1185 18.4205 18.3295C18.6315 18.5405 18.75 18.8266 18.75 19.125ZM19.125 12.1341C19.0935 12.3074 19.0021 12.464 18.8666 12.5766C18.7312 12.6893 18.5605 12.7506 18.3844 12.75H7.23938L6.14906 6.75H20.1009L19.125 12.1341Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ShoppingCart (fill, node 5162:964) -->\n<path d=\"M21.5756 5.51906C21.5052 5.43481 21.4172 5.36705 21.3177 5.32056C21.2183 5.27407 21.1098 5.24998 21 5.25H5.87625L5.30625 2.11594C5.27485 1.94313 5.1838 1.78681 5.04897 1.67425C4.91414 1.56169 4.74408 1.50003 4.56844 1.5H2.25C2.05109 1.5 1.86032 1.57902 1.71967 1.71967C1.57902 1.86032 1.5 2.05109 1.5 2.25C1.5 2.44891 1.57902 2.63968 1.71967 2.78033C1.86032 2.92098 2.05109 3 2.25 3H3.9375L6.33375 16.1522C6.40434 16.5422 6.57671 16.9067 6.83344 17.2087C6.47911 17.5397 6.22336 17.9623 6.09455 18.4298C5.96575 18.8972 5.96892 19.3912 6.10371 19.8569C6.23851 20.3226 6.49966 20.7419 6.85821 21.0683C7.21676 21.3947 7.6587 21.6154 8.13502 21.7059C8.61134 21.7965 9.10344 21.7533 9.55673 21.5813C10.01 21.4092 10.4068 21.115 10.7031 20.7312C10.9994 20.3474 11.1836 19.889 11.2353 19.407C11.287 18.9249 11.2041 18.4379 10.9959 18H15.2541C15.0863 18.3513 14.9995 18.7357 15 19.125C15 19.6442 15.154 20.1517 15.4424 20.5834C15.7308 21.0151 16.1408 21.3515 16.6205 21.5502C17.1001 21.7489 17.6279 21.8008 18.1371 21.6996C18.6463 21.5983 19.114 21.3483 19.4812 20.9812C19.8483 20.614 20.0983 20.1463 20.1996 19.6371C20.3008 19.1279 20.2489 18.6001 20.0502 18.1205C19.8515 17.6408 19.5151 17.2308 19.0834 16.9424C18.6517 16.654 18.1442 16.5 17.625 16.5H8.54719C8.37155 16.5 8.20149 16.4383 8.06665 16.3257C7.93182 16.2132 7.84077 16.0569 7.80938 15.8841L7.51219 14.25H18.3872C18.9141 14.2499 19.4243 14.0649 19.8288 13.7272C20.2333 13.3896 20.5064 12.9206 20.6006 12.4022L21.7406 6.13406C21.7599 6.02572 21.7551 5.91447 21.7266 5.80818C21.6981 5.7019 21.6466 5.60319 21.5756 5.51906ZM9.75 19.125C9.75 19.3475 9.68402 19.565 9.5604 19.75C9.43679 19.935 9.26109 20.0792 9.05552 20.1644C8.84995 20.2495 8.62375 20.2718 8.40552 20.2284C8.18729 20.185 7.98684 20.0778 7.8295 19.9205C7.67217 19.7632 7.56502 19.5627 7.52162 19.3445C7.47821 19.1262 7.50049 18.9 7.58564 18.6945C7.67078 18.4889 7.81498 18.3132 7.99998 18.1896C8.18499 18.066 8.4025 18 8.625 18C8.92337 18 9.20952 18.1185 9.4205 18.3295C9.63147 18.5405 9.75 18.8266 9.75 19.125ZM18.75 19.125C18.75 19.3475 18.684 19.565 18.5604 19.75C18.4368 19.935 18.2611 20.0792 18.0555 20.1644C17.85 20.2495 17.6238 20.2718 17.4055 20.2284C17.1873 20.185 16.9868 20.0778 16.8295 19.9205C16.6722 19.7632 16.565 19.5627 16.5216 19.3445C16.4782 19.1262 16.5005 18.9 16.5856 18.6945C16.6708 18.4889 16.815 18.3132 17 18.1896C17.185 18.066 17.4025 18 17.625 18C17.9234 18 18.2095 18.1185 18.4205 18.3295C18.6315 18.5405 18.75 18.8266 18.75 19.125Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Wallet",
      "category": "commerce",
      "lineDrawable": "aurum_ic_commerce_wallet",
      "fillDrawable": "aurum_ic_commerce_wallet_filled",
      "lineFigmaNodeId": "5162:1081",
      "fillFigmaNodeId": "5162:966",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1081",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-966",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Wallet (line, node 5162:1081) -->\n<path d=\"M20.25 6H5.25C5.05109 6 4.86032 5.92098 4.71967 5.78033C4.57902 5.63968 4.5 5.44891 4.5 5.25C4.5 5.05109 4.57902 4.86032 4.71967 4.71967C4.86032 4.57902 5.05109 4.5 5.25 4.5H18C18.1989 4.5 18.3897 4.42098 18.5303 4.28033C18.671 4.13968 18.75 3.94891 18.75 3.75C18.75 3.55109 18.671 3.36032 18.5303 3.21967C18.3897 3.07902 18.1989 3 18 3H5.25C4.65326 3 4.08097 3.23705 3.65901 3.65901C3.23705 4.08097 3 4.65326 3 5.25V17.25C3 17.8467 3.23705 18.419 3.65901 18.841C4.08097 19.2629 4.65326 19.5 5.25 19.5H20.25C20.6478 19.5 21.0294 19.342 21.3107 19.0607C21.592 18.7794 21.75 18.3978 21.75 18V7.5C21.75 7.10218 21.592 6.72064 21.3107 6.43934C21.0294 6.15804 20.6478 6 20.25 6ZM20.25 18H5.25C5.05109 18 4.86032 17.921 4.71967 17.7803C4.57902 17.6397 4.5 17.4489 4.5 17.25V7.37156C4.74082 7.45693 4.9945 7.50037 5.25 7.5H20.25V18ZM15.75 12.375C15.75 12.1525 15.816 11.935 15.9396 11.75C16.0632 11.565 16.2389 11.4208 16.4445 11.3356C16.65 11.2505 16.8762 11.2282 17.0945 11.2716C17.3127 11.315 17.5132 11.4222 17.6705 11.5795C17.8278 11.7368 17.935 11.9373 17.9784 12.1555C18.0218 12.3738 17.9995 12.6 17.9144 12.8055C17.8292 13.0111 17.685 13.1868 17.5 13.3104C17.315 13.434 17.0975 13.5 16.875 13.5C16.5766 13.5 16.2905 13.3815 16.0795 13.1705C15.8685 12.9595 15.75 12.6734 15.75 12.375Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Wallet (fill, node 5162:966) -->\n<path d=\"M20.25 6H5.25C5.05109 6 4.86032 5.92098 4.71967 5.78033C4.57902 5.63968 4.5 5.44891 4.5 5.25C4.5 5.05109 4.57902 4.86032 4.71967 4.71967C4.86032 4.57902 5.05109 4.5 5.25 4.5H18C18.1989 4.5 18.3897 4.42098 18.5303 4.28033C18.671 4.13968 18.75 3.94891 18.75 3.75C18.75 3.55109 18.671 3.36032 18.5303 3.21967C18.3897 3.07902 18.1989 3 18 3H5.25C4.65326 3 4.08097 3.23705 3.65901 3.65901C3.23705 4.08097 3 4.65326 3 5.25V17.25C3 17.8467 3.23705 18.419 3.65901 18.841C4.08097 19.2629 4.65326 19.5 5.25 19.5H20.25C20.6478 19.5 21.0294 19.342 21.3107 19.0607C21.592 18.7794 21.75 18.3978 21.75 18V7.5C21.75 7.10218 21.592 6.72064 21.3107 6.43934C21.0294 6.15804 20.6478 6 20.25 6ZM16.875 13.5C16.6525 13.5 16.435 13.434 16.25 13.3104C16.065 13.1868 15.9208 13.0111 15.8356 12.8055C15.7505 12.6 15.7282 12.3738 15.7716 12.1555C15.815 11.9373 15.9222 11.7368 16.0795 11.5795C16.2368 11.4222 16.4373 11.315 16.6555 11.2716C16.8738 11.2282 17.1 11.2505 17.3055 11.3356C17.5111 11.4208 17.6868 11.565 17.8104 11.75C17.934 11.935 18 12.1525 18 12.375C18 12.6734 17.8815 12.9595 17.6705 13.1705C17.4595 13.3815 17.1734 13.5 16.875 13.5Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Rupee",
      "category": "commerce",
      "lineDrawable": "aurum_ic_commerce_rupee",
      "fillDrawable": "aurum_ic_commerce_rupee_filled",
      "lineFigmaNodeId": "5162:1139",
      "fillFigmaNodeId": "5162:1025",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1139",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1025",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CurrencyInr (line, node 5162:1139) -->\n<path d=\"M19.5 7.5C19.5 7.69891 19.421 7.88968 19.2803 8.03033C19.1397 8.17098 18.9489 8.25 18.75 8.25H15.7359C15.7444 8.37375 15.75 8.49844 15.75 8.625C15.7483 10.1163 15.1551 11.546 14.1006 12.6006C13.046 13.6551 11.6163 14.2483 10.125 14.25H8.68969L15.5044 20.445C15.5786 20.5109 15.6391 20.5908 15.6822 20.6802C15.7253 20.7696 15.7502 20.8667 15.7556 20.9658C15.7609 21.0649 15.7465 21.164 15.7132 21.2575C15.68 21.351 15.6284 21.437 15.5617 21.5105C15.4949 21.5839 15.4143 21.6434 15.3244 21.6854C15.2345 21.7275 15.1371 21.7513 15.038 21.7554C14.9388 21.7595 14.8398 21.744 14.7467 21.7096C14.6536 21.6752 14.5683 21.6226 14.4956 21.555L6.24563 14.055C6.13361 13.9532 6.05502 13.8199 6.0202 13.6725C5.98537 13.5252 5.99594 13.3708 6.05051 13.2296C6.10508 13.0884 6.2011 12.967 6.32595 12.8814C6.4508 12.7958 6.59862 12.75 6.75 12.75H10.125C11.2186 12.7488 12.2671 12.3138 13.0404 11.5404C13.8138 10.7671 14.2488 9.71864 14.25 8.625C14.25 8.49844 14.2434 8.37375 14.2322 8.25H6.75C6.55109 8.25 6.36032 8.17098 6.21967 8.03033C6.07902 7.88968 6 7.69891 6 7.5C6 7.30109 6.07902 7.11032 6.21967 6.96967C6.36032 6.82902 6.55109 6.75 6.75 6.75H13.7972C13.4518 6.07309 12.926 5.50476 12.278 5.10772C11.63 4.71069 10.885 4.50038 10.125 4.5H6.75C6.55109 4.5 6.36032 4.42098 6.21967 4.28033C6.07902 4.13968 6 3.94891 6 3.75C6 3.55109 6.07902 3.36032 6.21967 3.21967C6.36032 3.07902 6.55109 3 6.75 3H18.75C18.9489 3 19.1397 3.07902 19.2803 3.21967C19.421 3.36032 19.5 3.55109 19.5 3.75C19.5 3.94891 19.421 4.13968 19.2803 4.28033C19.1397 4.42098 18.9489 4.5 18.75 4.5H13.9444C14.6134 5.11907 15.1223 5.89112 15.4275 6.75H18.75C18.9489 6.75 19.1397 6.82902 19.2803 6.96967C19.421 7.11032 19.5 7.30109 19.5 7.5Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CurrencyInr (fill, node 5162:1025) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM15.5925 9H16.5C16.6989 9 16.8897 9.07902 17.0303 9.21967C17.171 9.36032 17.25 9.55109 17.25 9.75C17.25 9.94891 17.171 10.1397 17.0303 10.2803C16.8897 10.421 16.6989 10.5 16.5 10.5H15.7322C15.6374 11.5242 15.1639 12.4762 14.4043 13.1698C13.6447 13.8634 12.6536 14.2485 11.625 14.25H10.4363L15.4603 18.1584C15.5418 18.2175 15.6106 18.2923 15.6626 18.3785C15.7146 18.4647 15.7487 18.5605 15.7629 18.6602C15.7771 18.7599 15.771 18.8613 15.7452 18.9586C15.7193 19.0559 15.6741 19.147 15.6123 19.2264C15.5505 19.3059 15.4733 19.3721 15.3853 19.4211C15.2974 19.47 15.2005 19.5008 15.1004 19.5116C15.0003 19.5223 14.8991 19.5128 14.8028 19.4836C14.7064 19.4544 14.617 19.4061 14.5397 19.3416L7.78969 14.0916C7.66652 13.9956 7.57638 13.8635 7.53186 13.7138C7.48733 13.5642 7.49064 13.4043 7.54132 13.2566C7.59201 13.1089 7.68753 12.9807 7.81458 12.8899C7.94162 12.799 8.09384 12.7502 8.25 12.75H11.625C12.2562 12.7499 12.8662 12.5225 13.3433 12.1092C13.8204 11.696 14.1326 11.1247 14.2228 10.5H8.25C8.05109 10.5 7.86033 10.421 7.71967 10.2803C7.57902 10.1397 7.5 9.94891 7.5 9.75C7.5 9.55109 7.57902 9.36032 7.71967 9.21967C7.86033 9.07902 8.05109 9 8.25 9H13.9959C13.7831 8.5513 13.4474 8.17219 13.0277 7.90668C12.608 7.64116 12.1216 7.50015 11.625 7.5H8.25C8.05109 7.5 7.86033 7.42098 7.71967 7.28033C7.57902 7.13968 7.5 6.94891 7.5 6.75C7.5 6.55109 7.57902 6.36032 7.71967 6.21967C7.86033 6.07902 8.05109 6 8.25 6H16.5C16.6989 6 16.8897 6.07902 17.0303 6.21967C17.171 6.36032 17.25 6.55109 17.25 6.75C17.25 6.94891 17.171 7.13968 17.0303 7.28033C16.8897 7.42098 16.6989 7.5 16.5 7.5H14.805C15.1688 7.93993 15.4369 8.45077 15.5925 9Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Withdraw",
      "category": "commerce",
      "lineDrawable": "aurum_ic_commerce_withdraw",
      "fillDrawable": "aurum_ic_commerce_withdraw_filled",
      "lineFigmaNodeId": "5358:456",
      "fillFigmaNodeId": "5358:465",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5358-456",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5358-465",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Withdraw (line, node 5358:456) -->\n<path d=\"M21.248 8V4C21.248 3.30964 20.6884 2.75 19.998 2.75H3.99805C3.30769 2.75 2.74805 3.30964 2.74805 4V8C2.74805 8.69036 3.30769 9.25 3.99805 9.25H5.99805V10.75H3.99805C2.47926 10.75 1.24805 9.51878 1.24805 8V4C1.24805 2.48122 2.47926 1.25 3.99805 1.25H19.998C21.5168 1.25 22.748 2.48122 22.748 4V8C22.748 9.51878 21.5168 10.75 19.998 10.75H17.998V9.25H19.998C20.6884 9.25 21.248 8.69036 21.248 8Z\" fill=\"#121212\"/>\n<path d=\"M19.2476 6C19.2476 5.86193 19.1356 5.75 18.9976 5.75H4.99756C4.85949 5.75 4.74756 5.86193 4.74756 6C4.74756 6.13807 4.85949 6.25 4.99756 6.25H5.99756C6.41177 6.25 6.74756 6.58579 6.74756 7C6.74756 7.41421 6.41177 7.75 5.99756 7.75H4.99756C4.03106 7.75 3.24756 6.9665 3.24756 6C3.24756 5.0335 4.03106 4.25 4.99756 4.25H18.9976C19.9641 4.25 20.7476 5.0335 20.7476 6C20.7476 6.9665 19.9641 7.75 18.9976 7.75H17.9976C17.5833 7.75 17.2476 7.41421 17.2476 7C17.2476 6.58579 17.5833 6.25 17.9976 6.25H18.9976C19.1356 6.25 19.2476 6.13807 19.2476 6Z\" fill=\"#121212\"/>\n<path d=\"M5.2478 19.9996V4.99963H6.7478V19.9996C6.7478 20.69 7.30745 21.2496 7.9978 21.2496H15.9978C16.6882 21.2496 17.2478 20.69 17.2478 19.9996V4.99963H18.7478V19.9996C18.7478 21.5184 17.5166 22.7496 15.9978 22.7496H7.9978C6.47902 22.7496 5.2478 21.5184 5.2478 19.9996Z\" fill=\"#121212\"/>\n<path d=\"M14.7478 8.99976C15.162 8.99976 15.4978 9.33554 15.4978 9.74976C15.4978 10.164 15.162 10.4998 14.7478 10.4998H13.4822C13.5638 10.6549 13.6325 10.8212 13.6863 10.9998H14.7478C15.162 10.9998 15.4978 11.3355 15.4978 11.7498C15.4978 12.164 15.162 12.4998 14.7478 12.4998H13.7976C13.7152 13.1085 13.4706 13.607 13.1082 13.9949C12.6745 14.4589 12.1223 14.7174 11.6296 14.865C11.6047 14.8725 11.5793 14.8785 11.5544 14.8855L14.2351 17.1804C14.5497 17.4498 14.5864 17.9224 14.3171 18.2371C14.0478 18.5517 13.5751 18.5884 13.2605 18.3191L9.2605 14.8953C9.01316 14.6835 8.93072 14.3362 9.0564 14.0359C9.18225 13.7355 9.48774 13.5501 9.81226 13.5779L9.82983 13.5789C9.84744 13.5799 9.87618 13.5816 9.91382 13.5828C9.98946 13.5851 10.1011 13.5866 10.2361 13.5808C10.511 13.569 10.8616 13.5295 11.199 13.4285C11.5395 13.3264 11.8212 13.1751 12.0125 12.9705C12.1202 12.8551 12.2146 12.7053 12.2722 12.4998H9.7478C9.33359 12.4998 8.9978 12.164 8.9978 11.7498C8.9978 11.3355 9.33359 10.9998 9.7478 10.9998H12.0193C11.8803 10.8371 11.6984 10.7203 11.4851 10.6404C11.2458 10.5508 10.9929 10.5145 10.7908 10.5037C10.6922 10.4984 10.611 10.4997 10.5574 10.5017C10.5311 10.5027 10.5118 10.5038 10.5007 10.5046C10.4969 10.5049 10.4919 10.5046 10.4919 10.5046C10.4317 10.5109 10.3727 10.5074 10.3152 10.4998H9.7478C9.33359 10.4998 8.9978 10.164 8.9978 9.74976C8.9978 9.33554 9.33359 8.99976 9.7478 8.99976H14.7478Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Withdraw (fill, node 5358:465) -->\n<path d=\"M21.248 8V4C21.248 3.30964 20.6884 2.75 19.998 2.75H3.99805C3.30769 2.75 2.74805 3.30964 2.74805 4V8C2.74805 8.69036 3.30769 9.25 3.99805 9.25H5.99805V10.75H3.99805C2.47926 10.75 1.24805 9.51878 1.24805 8V4C1.24805 2.48122 2.47926 1.25 3.99805 1.25H19.998C21.5168 1.25 22.748 2.48122 22.748 4V8C22.748 9.51878 21.5168 10.75 19.998 10.75H17.998V9.25H19.998C20.6884 9.25 21.248 8.69036 21.248 8Z\" fill=\"#121212\"/>\n<path d=\"M19.2476 6C19.2476 5.86193 19.1356 5.75 18.9976 5.75H4.99756C4.85949 5.75 4.74756 5.86193 4.74756 6C4.74756 6.13807 4.85949 6.25 4.99756 6.25H5.99756C6.41177 6.25 6.74756 6.58579 6.74756 7C6.74756 7.41421 6.41177 7.75 5.99756 7.75H4.99756C4.03106 7.75 3.24756 6.9665 3.24756 6C3.24756 5.0335 4.03106 4.25 4.99756 4.25H18.9976C19.9641 4.25 20.7476 5.0335 20.7476 6C20.7476 6.9665 19.9641 7.75 18.9976 7.75H17.9976C17.5833 7.75 17.2476 7.41421 17.2476 7C17.2476 6.58579 17.5833 6.25 17.9976 6.25H18.9976C19.1356 6.25 19.2476 6.13807 19.2476 6Z\" fill=\"#121212\"/>\n<path d=\"M18.7478 19.9998C18.7478 21.5185 17.5166 22.7498 15.9978 22.7498H7.9978C6.47902 22.7498 5.2478 21.5185 5.2478 19.9998V4.24976H18.7478V19.9998ZM9.7478 8.99976C9.33359 8.99976 8.9978 9.33554 8.9978 9.74976C8.9978 10.164 9.33359 10.4998 9.7478 10.4998H10.3152C10.3727 10.5074 10.4317 10.5109 10.4919 10.5046C10.4919 10.5046 10.4969 10.5049 10.5007 10.5046C10.5118 10.5038 10.5311 10.5027 10.5574 10.5017C10.611 10.4997 10.6922 10.4984 10.7908 10.5037C10.9929 10.5145 11.2458 10.5508 11.4851 10.6404C11.6984 10.7203 11.8803 10.8371 12.0193 10.9998H9.7478C9.33359 10.9998 8.9978 11.3355 8.9978 11.7498C8.9978 12.164 9.33359 12.4998 9.7478 12.4998H12.2722C12.2146 12.7053 12.1202 12.8551 12.0125 12.9705C11.8212 13.1751 11.5395 13.3264 11.199 13.4285C10.8616 13.5295 10.511 13.569 10.2361 13.5808C10.1011 13.5866 9.98946 13.5851 9.91382 13.5828C9.87618 13.5816 9.84744 13.5799 9.82983 13.5789L9.81226 13.5779C9.48774 13.5501 9.18225 13.7355 9.0564 14.0359C8.93072 14.3362 9.01316 14.6835 9.2605 14.8953L13.2605 18.3191C13.5751 18.5884 14.0478 18.5517 14.3171 18.2371C14.5864 17.9224 14.5497 17.4498 14.2351 17.1804L11.5544 14.8855C11.5793 14.8785 11.6047 14.8725 11.6296 14.865C12.1223 14.7174 12.6745 14.4589 13.1082 13.9949C13.4706 13.607 13.7152 13.1085 13.7976 12.4998H14.7478C15.162 12.4998 15.4978 12.164 15.4978 11.7498C15.4978 11.3355 15.162 10.9998 14.7478 10.9998H13.6863C13.6325 10.8212 13.5638 10.6549 13.4822 10.4998H14.7478C15.162 10.4998 15.4978 10.164 15.4978 9.74976C15.4978 9.33554 15.162 8.99976 14.7478 8.99976H9.7478Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Bank",
      "category": "commerce",
      "lineDrawable": "aurum_ic_commerce_bank",
      "fillDrawable": "aurum_ic_commerce_bank_filled",
      "lineFigmaNodeId": "6469:23762",
      "fillFigmaNodeId": "6469:23761",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6469-23762",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6469-23761",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Bank (line, node 6469:23762) -->\n<path d=\"M22.5 18.7499C22.9142 18.7499 23.25 19.0857 23.25 19.4999C23.25 19.9141 22.9142 20.2499 22.5 20.2499H1.5C1.08582 20.2499 0.750048 19.9141 0.75 19.4999C0.75 19.0857 1.08579 18.7499 1.5 18.7499H22.5Z\" fill=\"#121212\"/>\n<path d=\"M11.6067 2.36125C11.8477 2.21292 12.1523 2.21291 12.3933 2.36125L22.1433 8.36125C22.4288 8.53718 22.5628 8.88154 22.4714 9.20427C22.38 9.52696 22.0854 9.74987 21.75 9.74992H19.5V15.7499H21C21.4142 15.7499 21.75 16.0857 21.75 16.4999C21.75 16.9141 21.4142 17.2499 21 17.2499H3C2.58582 17.2499 2.25005 16.9141 2.25 16.4999C2.25 16.0857 2.58579 15.7499 3 15.7499H4.5V9.74992H2.25C1.91456 9.74992 1.62005 9.52696 1.52856 9.20427C1.4372 8.88148 1.57106 8.53715 1.85669 8.36125L11.6067 2.36125ZM6 15.7499H9V9.74992H6V15.7499ZM10.5 15.7499H13.5V9.74992H10.5V15.7499ZM15 15.7499H18V9.74992H15V15.7499ZM4.8999 8.24992H19.1001L12 3.88029L4.8999 8.24992Z\" fill=\"#121212\" fill-rule=\"evenodd\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Bank (fill, node 6469:23761) -->\n<path d=\"M23.25 19.5005C23.25 19.6994 23.171 19.8901 23.0303 20.0308C22.8897 20.1715 22.6989 20.2505 22.5 20.2505H1.5C1.30109 20.2505 1.11032 20.1715 0.96967 20.0308C0.829018 19.8901 0.75 19.6994 0.75 19.5005C0.75 19.3016 0.829018 19.1108 0.96967 18.9701C1.11032 18.8295 1.30109 18.7505 1.5 18.7505H22.5C22.6989 18.7505 22.8897 18.8295 23.0303 18.9701C23.171 19.1108 23.25 19.3016 23.25 19.5005ZM1.52812 9.20485C1.48352 9.04756 1.49152 8.88001 1.55093 8.7277C1.61033 8.57538 1.71787 8.44665 1.85719 8.3611L11.6072 2.3611C11.7253 2.28846 11.8613 2.25 12 2.25C12.1387 2.25 12.2747 2.28846 12.3928 2.3611L22.1428 8.3611C22.2822 8.44655 22.3898 8.57519 22.4493 8.72744C22.5088 8.87969 22.517 9.04721 22.4725 9.20452C22.428 9.36182 22.3334 9.50029 22.2029 9.59884C22.0725 9.69739 21.9135 9.75064 21.75 9.75047H19.5V15.7505H21C21.1989 15.7505 21.3897 15.8295 21.5303 15.9701C21.671 16.1108 21.75 16.3016 21.75 16.5005C21.75 16.6994 21.671 16.8901 21.5303 17.0308C21.3897 17.1715 21.1989 17.2505 21 17.2505H3C2.80109 17.2505 2.61032 17.1715 2.46967 17.0308C2.32902 16.8901 2.25 16.6994 2.25 16.5005C2.25 16.3016 2.32902 16.1108 2.46967 15.9701C2.61032 15.8295 2.80109 15.7505 3 15.7505H4.5V9.75047H2.25C2.08668 9.75053 1.9278 9.69727 1.79751 9.59879C1.66721 9.50031 1.57263 9.36199 1.52812 9.20485ZM13.5 15.0005C13.5 15.1994 13.579 15.3901 13.7197 15.5308C13.8603 15.6715 14.0511 15.7505 14.25 15.7505C14.4489 15.7505 14.6397 15.6715 14.7803 15.5308C14.921 15.3901 15 15.1994 15 15.0005V10.5005C15 10.3016 14.921 10.1108 14.7803 9.97014C14.6397 9.82949 14.4489 9.75047 14.25 9.75047C14.0511 9.75047 13.8603 9.82949 13.7197 9.97014C13.579 10.1108 13.5 10.3016 13.5 10.5005V15.0005ZM9 15.0005C9 15.1994 9.07902 15.3901 9.21967 15.5308C9.36032 15.6715 9.55109 15.7505 9.75 15.7505C9.94891 15.7505 10.1397 15.6715 10.2803 15.5308C10.421 15.3901 10.5 15.1994 10.5 15.0005V10.5005C10.5 10.3016 10.421 10.1108 10.2803 9.97014C10.1397 9.82949 9.94891 9.75047 9.75 9.75047C9.55109 9.75047 9.36032 9.82949 9.21967 9.97014C9.07902 10.1108 9 10.3016 9 10.5005V15.0005Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Lock",
      "category": "system",
      "lineDrawable": "aurum_ic_system_lock",
      "fillDrawable": "aurum_ic_system_lock_filled",
      "lineFigmaNodeId": "5162:1115",
      "fillFigmaNodeId": "5162:1000",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1115",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1000",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Lock (line, node 5162:1115) -->\n<path d=\"M19.5 7.5H16.5V5.25C16.5 4.05653 16.0259 2.91193 15.182 2.06802C14.3381 1.22411 13.1935 0.75 12 0.75C10.8065 0.75 9.66193 1.22411 8.81802 2.06802C7.97411 2.91193 7.5 4.05653 7.5 5.25V7.5H4.5C4.10218 7.5 3.72064 7.65804 3.43934 7.93934C3.15804 8.22064 3 8.60218 3 9V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V9C21 8.60218 20.842 8.22064 20.5607 7.93934C20.2794 7.65804 19.8978 7.5 19.5 7.5ZM9 5.25C9 4.45435 9.31607 3.69129 9.87868 3.12868C10.4413 2.56607 11.2044 2.25 12 2.25C12.7956 2.25 13.5587 2.56607 14.1213 3.12868C14.6839 3.69129 15 4.45435 15 5.25V7.5H9V5.25ZM19.5 19.5H4.5V9H19.5V19.5ZM13.125 14.25C13.125 14.4725 13.059 14.69 12.9354 14.875C12.8118 15.06 12.6361 15.2042 12.4305 15.2894C12.225 15.3745 11.9988 15.3968 11.7805 15.3534C11.5623 15.31 11.3618 15.2028 11.2045 15.0455C11.0472 14.8882 10.94 14.6877 10.8966 14.4695C10.8532 14.2512 10.8755 14.025 10.9606 13.8195C11.0458 13.6139 11.19 13.4382 11.375 13.3146C11.56 13.191 11.7775 13.125 12 13.125C12.2984 13.125 12.5845 13.2435 12.7955 13.4545C13.0065 13.6655 13.125 13.9516 13.125 14.25Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Lock (fill, node 5162:1000) -->\n<path d=\"M19.5 7.5H16.5V5.25C16.5 4.05653 16.0259 2.91193 15.182 2.06802C14.3381 1.22411 13.1935 0.75 12 0.75C10.8065 0.75 9.66193 1.22411 8.81802 2.06802C7.97411 2.91193 7.5 4.05653 7.5 5.25V7.5H4.5C4.10218 7.5 3.72064 7.65804 3.43934 7.93934C3.15804 8.22064 3 8.60218 3 9V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V9C21 8.60218 20.842 8.22064 20.5607 7.93934C20.2794 7.65804 19.8978 7.5 19.5 7.5ZM12 15.375C11.7775 15.375 11.56 15.309 11.375 15.1854C11.19 15.0618 11.0458 14.8861 10.9606 14.6805C10.8755 14.475 10.8532 14.2488 10.8966 14.0305C10.94 13.8123 11.0472 13.6118 11.2045 13.4545C11.3618 13.2972 11.5623 13.19 11.7805 13.1466C11.9988 13.1032 12.225 13.1255 12.4305 13.2106C12.6361 13.2958 12.8118 13.44 12.9354 13.625C13.059 13.81 13.125 14.0275 13.125 14.25C13.125 14.5484 13.0065 14.8345 12.7955 15.0455C12.5845 15.2565 12.2984 15.375 12 15.375ZM15 7.5H9V5.25C9 4.45435 9.31607 3.69129 9.87868 3.12868C10.4413 2.56607 11.2044 2.25 12 2.25C12.7956 2.25 13.5587 2.56607 14.1213 3.12868C14.6839 3.69129 15 4.45435 15 5.25V7.5Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Unlock",
      "category": "system",
      "lineDrawable": "aurum_ic_system_unlock",
      "fillDrawable": "aurum_ic_system_unlock_filled",
      "lineFigmaNodeId": "5162:1117",
      "fillFigmaNodeId": "5162:1002",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1117",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1002",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: LockOpen (line, node 5162:1117) -->\n<path d=\"M19.5 7.5H9V5.25C9 4.45435 9.31607 3.69129 9.87868 3.12868C10.4413 2.56607 11.2044 2.25 12 2.25C13.4409 2.25 14.7375 3.28125 15.015 4.64906C15.0562 4.84234 15.172 5.01155 15.3373 5.11991C15.5026 5.22827 15.7039 5.26702 15.8976 5.22774C16.0913 5.18846 16.2616 5.07433 16.3716 4.91014C16.4816 4.74596 16.5224 4.545 16.485 4.35094C16.0612 2.26406 14.175 0.75 12 0.75C10.8069 0.751241 9.66303 1.22575 8.81939 2.06939C7.97575 2.91303 7.50124 4.05691 7.5 5.25V7.5H4.5C4.10218 7.5 3.72064 7.65804 3.43934 7.93934C3.15804 8.22064 3 8.60218 3 9V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V9C21 8.60218 20.842 8.22064 20.5607 7.93934C20.2794 7.65804 19.8978 7.5 19.5 7.5ZM19.5 19.5H4.5V9H19.5V19.5ZM13.125 14.25C13.125 14.4725 13.059 14.69 12.9354 14.875C12.8118 15.06 12.6361 15.2042 12.4305 15.2894C12.225 15.3745 11.9988 15.3968 11.7805 15.3534C11.5623 15.31 11.3618 15.2028 11.2045 15.0455C11.0472 14.8882 10.94 14.6877 10.8966 14.4695C10.8532 14.2512 10.8755 14.025 10.9606 13.8195C11.0458 13.6139 11.19 13.4382 11.375 13.3146C11.56 13.191 11.7775 13.125 12 13.125C12.2984 13.125 12.5845 13.2435 12.7955 13.4545C13.0065 13.6655 13.125 13.9516 13.125 14.25Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: LockOpen (fill, node 5162:1002) -->\n<path d=\"M19.5 7.5H9V5.25C9 4.45435 9.31607 3.69129 9.87868 3.12868C10.4413 2.56607 11.2044 2.25 12 2.25C13.4409 2.25 14.7375 3.28125 15.015 4.64906C15.0562 4.84234 15.172 5.01155 15.3373 5.11991C15.5026 5.22827 15.7039 5.26702 15.8976 5.22774C16.0913 5.18846 16.2616 5.07433 16.3716 4.91014C16.4816 4.74596 16.5224 4.545 16.485 4.35094C16.0612 2.26406 14.175 0.75 12 0.75C10.8069 0.751241 9.66303 1.22575 8.81939 2.06939C7.97575 2.91303 7.50124 4.05691 7.5 5.25V7.5H4.5C4.10218 7.5 3.72064 7.65804 3.43934 7.93934C3.15804 8.22064 3 8.60218 3 9V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V9C21 8.60218 20.842 8.22064 20.5607 7.93934C20.2794 7.65804 19.8978 7.5 19.5 7.5ZM12 15.375C11.7775 15.375 11.56 15.309 11.375 15.1854C11.19 15.0618 11.0458 14.8861 10.9606 14.6805C10.8755 14.475 10.8532 14.2488 10.8966 14.0305C10.94 13.8123 11.0472 13.6118 11.2045 13.4545C11.3618 13.2972 11.5623 13.19 11.7805 13.1466C11.9988 13.1032 12.225 13.1255 12.4305 13.2106C12.6361 13.2958 12.8118 13.44 12.9354 13.625C13.059 13.81 13.125 14.0275 13.125 14.25C13.125 14.5484 13.0065 14.8345 12.7955 15.0455C12.5845 15.2565 12.2984 15.375 12 15.375Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "SignIn",
      "category": "system",
      "lineDrawable": "aurum_ic_system_sign_in",
      "fillDrawable": "aurum_ic_system_sign_in_filled",
      "lineFigmaNodeId": "5162:1121",
      "fillFigmaNodeId": "5162:1006",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1121",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1006",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SignIn (line, node 5162:1121) -->\n<path d=\"M13.2806 12.5306L9.53063 16.2806C9.46094 16.3503 9.37822 16.4056 9.28717 16.4433C9.19613 16.481 9.09855 16.5004 9 16.5004C8.90145 16.5004 8.80387 16.481 8.71283 16.4433C8.62178 16.4056 8.53906 16.3503 8.46937 16.2806C8.39969 16.2109 8.34442 16.1282 8.3067 16.0372C8.26899 15.9461 8.24958 15.8485 8.24958 15.75C8.24958 15.6515 8.26899 15.5539 8.3067 15.4628C8.34442 15.3718 8.39969 15.2891 8.46937 15.2194L10.9397 12.75H2.25C2.05109 12.75 1.86032 12.671 1.71967 12.5303C1.57902 12.3897 1.5 12.1989 1.5 12C1.5 11.8011 1.57902 11.6103 1.71967 11.4697C1.86032 11.329 2.05109 11.25 2.25 11.25H10.9397L8.46937 8.78063C8.32864 8.63989 8.24958 8.44902 8.24958 8.25C8.24958 8.05098 8.32864 7.86011 8.46937 7.71937C8.61011 7.57864 8.80098 7.49958 9 7.49958C9.19902 7.49958 9.38989 7.57864 9.53063 7.71937L13.2806 11.4694C13.3504 11.539 13.4057 11.6217 13.4434 11.7128C13.4812 11.8038 13.5006 11.9014 13.5006 12C13.5006 12.0986 13.4812 12.1962 13.4434 12.2872C13.4057 12.3783 13.3504 12.461 13.2806 12.5306ZM18.75 3H12.75C12.5511 3 12.3603 3.07902 12.2197 3.21967C12.079 3.36032 12 3.55109 12 3.75C12 3.94891 12.079 4.13968 12.2197 4.28033C12.3603 4.42098 12.5511 4.5 12.75 4.5H18V19.5H12.75C12.5511 19.5 12.3603 19.579 12.2197 19.7197C12.079 19.8603 12 20.0511 12 20.25C12 20.4489 12.079 20.6397 12.2197 20.7803C12.3603 20.921 12.5511 21 12.75 21H18.75C18.9489 21 19.1397 20.921 19.2803 20.7803C19.421 20.6397 19.5 20.4489 19.5 20.25V3.75C19.5 3.55109 19.421 3.36032 19.2803 3.21967C19.1397 3.07902 18.9489 3 18.75 3Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SignIn (fill, node 5162:1006) -->\n<path d=\"M13.2806 12.5306L9.53063 16.2806C9.42573 16.3856 9.29204 16.4572 9.14648 16.4861C9.00092 16.5151 8.85002 16.5003 8.71291 16.4435C8.57579 16.3867 8.45861 16.2904 8.37621 16.167C8.29381 16.0435 8.24988 15.8984 8.25 15.75V12.75H2.25C2.05109 12.75 1.86032 12.671 1.71967 12.5303C1.57902 12.3897 1.5 12.1989 1.5 12C1.5 11.8011 1.57902 11.6103 1.71967 11.4697C1.86032 11.329 2.05109 11.25 2.25 11.25H8.25V8.25C8.24988 8.10158 8.29381 7.95646 8.37621 7.83301C8.45861 7.70957 8.57579 7.61335 8.71291 7.55653C8.85002 7.49972 9.00092 7.48487 9.14648 7.51385C9.29204 7.54284 9.42573 7.61437 9.53063 7.71937L13.2806 11.4694C13.3504 11.539 13.4057 11.6217 13.4434 11.7128C13.4812 11.8038 13.5006 11.9014 13.5006 12C13.5006 12.0986 13.4812 12.1962 13.4434 12.2872C13.4057 12.3783 13.3504 12.461 13.2806 12.5306ZM18.75 3H12.75C12.5511 3 12.3603 3.07902 12.2197 3.21967C12.079 3.36032 12 3.55109 12 3.75C12 3.94891 12.079 4.13968 12.2197 4.28033C12.3603 4.42098 12.5511 4.5 12.75 4.5H18V19.5H12.75C12.5511 19.5 12.3603 19.579 12.2197 19.7197C12.079 19.8603 12 20.0511 12 20.25C12 20.4489 12.079 20.6397 12.2197 20.7803C12.3603 20.921 12.5511 21 12.75 21H18.75C18.9489 21 19.1397 20.921 19.2803 20.7803C19.421 20.6397 19.5 20.4489 19.5 20.25V3.75C19.5 3.55109 19.421 3.36032 19.2803 3.21967C19.1397 3.07902 18.9489 3 18.75 3Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "SignOut",
      "category": "system",
      "lineDrawable": "aurum_ic_system_sign_out",
      "fillDrawable": "aurum_ic_system_sign_out_filled",
      "lineFigmaNodeId": "5162:1119",
      "fillFigmaNodeId": "5162:1004",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1119",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1004",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SignOut (line, node 5162:1119) -->\n<path d=\"M11.25 20.25C11.25 20.4489 11.171 20.6397 11.0303 20.7803C10.8897 20.921 10.6989 21 10.5 21H4.5C4.30109 21 4.11032 20.921 3.96967 20.7803C3.82902 20.6397 3.75 20.4489 3.75 20.25V3.75C3.75 3.55109 3.82902 3.36032 3.96967 3.21967C4.11032 3.07902 4.30109 3 4.5 3H10.5C10.6989 3 10.8897 3.07902 11.0303 3.21967C11.171 3.36032 11.25 3.55109 11.25 3.75C11.25 3.94891 11.171 4.13968 11.0303 4.28033C10.8897 4.42098 10.6989 4.5 10.5 4.5H5.25V19.5H10.5C10.6989 19.5 10.8897 19.579 11.0303 19.7197C11.171 19.8603 11.25 20.0511 11.25 20.25ZM21.5306 11.4694L17.7806 7.71937C17.6399 7.57864 17.449 7.49958 17.25 7.49958C17.051 7.49958 16.8601 7.57864 16.7194 7.71937C16.5786 7.86011 16.4996 8.05098 16.4996 8.25C16.4996 8.44902 16.5786 8.63989 16.7194 8.78063L19.1897 11.25H10.5C10.3011 11.25 10.1103 11.329 9.96967 11.4697C9.82902 11.6103 9.75 11.8011 9.75 12C9.75 12.1989 9.82902 12.3897 9.96967 12.5303C10.1103 12.671 10.3011 12.75 10.5 12.75H19.1897L16.7194 15.2194C16.5786 15.3601 16.4996 15.551 16.4996 15.75C16.4996 15.949 16.5786 16.1399 16.7194 16.2806C16.8601 16.4214 17.051 16.5004 17.25 16.5004C17.449 16.5004 17.6399 16.4214 17.7806 16.2806L21.5306 12.5306C21.6004 12.461 21.6557 12.3783 21.6934 12.2872C21.7312 12.1962 21.7506 12.0986 21.7506 12C21.7506 11.9014 21.7312 11.8038 21.6934 11.7128C21.6557 11.6217 21.6004 11.539 21.5306 11.4694Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SignOut (fill, node 5162:1004) -->\n<path d=\"M11.25 20.25C11.25 20.4489 11.171 20.6397 11.0303 20.7803C10.8897 20.921 10.6989 21 10.5 21H4.5C4.30109 21 4.11032 20.921 3.96967 20.7803C3.82902 20.6397 3.75 20.4489 3.75 20.25V3.75C3.75 3.55109 3.82902 3.36032 3.96967 3.21967C4.11032 3.07902 4.30109 3 4.5 3H10.5C10.6989 3 10.8897 3.07902 11.0303 3.21967C11.171 3.36032 11.25 3.55109 11.25 3.75C11.25 3.94891 11.171 4.13968 11.0303 4.28033C10.8897 4.42098 10.6989 4.5 10.5 4.5H5.25V19.5H10.5C10.6989 19.5 10.8897 19.579 11.0303 19.7197C11.171 19.8603 11.25 20.0511 11.25 20.25ZM21.5306 11.4694L17.7806 7.71937C17.6757 7.61437 17.542 7.54284 17.3965 7.51385C17.2509 7.48487 17.1 7.49972 16.9629 7.55653C16.8258 7.61335 16.7086 7.70957 16.6262 7.83301C16.5438 7.95646 16.4999 8.10158 16.5 8.25V11.25H10.5C10.3011 11.25 10.1103 11.329 9.96967 11.4697C9.82902 11.6103 9.75 11.8011 9.75 12C9.75 12.1989 9.82902 12.3897 9.96967 12.5303C10.1103 12.671 10.3011 12.75 10.5 12.75H16.5V15.75C16.4999 15.8984 16.5438 16.0435 16.6262 16.167C16.7086 16.2904 16.8258 16.3867 16.9629 16.4435C17.1 16.5003 17.2509 16.5151 17.3965 16.4861C17.542 16.4572 17.6757 16.3856 17.7806 16.2806L21.5306 12.5306C21.6004 12.461 21.6557 12.3783 21.6934 12.2872C21.7312 12.1962 21.7506 12.0986 21.7506 12C21.7506 11.9014 21.7312 11.8038 21.6934 11.7128C21.6557 11.6217 21.6004 11.539 21.5306 11.4694Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Settings",
      "category": "system",
      "lineDrawable": "aurum_ic_system_settings",
      "fillDrawable": "aurum_ic_system_settings_filled",
      "lineFigmaNodeId": "5162:1141",
      "fillFigmaNodeId": "5162:1027",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1141",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1027",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Gear (line, node 5162:1141) -->\n<path d=\"M11.9996 7.49956C11.1095 7.49956 10.2395 7.76348 9.49949 8.25794C8.75947 8.75241 8.18269 9.45521 7.8421 10.2775C7.5015 11.0997 7.41239 12.0045 7.58602 12.8775C7.75965 13.7504 8.18824 14.5522 8.81757 15.1815C9.44691 15.8109 10.2487 16.2395 11.1216 16.4131C11.9946 16.5867 12.8994 16.4976 13.7216 16.157C14.5439 15.8164 15.2467 15.2396 15.7412 14.4996C16.2356 13.7596 16.4996 12.8896 16.4996 11.9996C16.4983 10.8065 16.0238 9.66259 15.1802 8.81895C14.3365 7.9753 13.1926 7.5008 11.9996 7.49956ZM11.9996 14.9996C11.4062 14.9996 10.8262 14.8236 10.3328 14.494C9.8395 14.1643 9.45498 13.6958 9.22792 13.1476C9.00085 12.5994 8.94144 11.9962 9.0572 11.4143C9.17295 10.8323 9.45868 10.2978 9.87823 9.87823C10.2978 9.45868 10.8323 9.17295 11.4143 9.0572C11.9962 8.94144 12.5994 9.00085 13.1476 9.22792C13.6958 9.45498 14.1643 9.8395 14.494 10.3328C14.8236 10.8262 14.9996 11.4062 14.9996 11.9996C14.9996 12.7952 14.6835 13.5583 14.1209 14.1209C13.5583 14.6835 12.7952 14.9996 11.9996 14.9996ZM20.2496 12.2021C20.2533 12.0671 20.2533 11.9321 20.2496 11.7971L21.6483 10.0496C21.7216 9.9578 21.7724 9.85011 21.7965 9.73514C21.8206 9.62018 21.8174 9.50116 21.7871 9.38768C21.5578 8.52574 21.2147 7.69816 20.7671 6.92674C20.7084 6.82579 20.6271 6.73992 20.5294 6.67595C20.4318 6.61199 20.3205 6.5717 20.2046 6.5583L17.9808 6.3108C17.8883 6.2133 17.7946 6.11955 17.6996 6.02955L17.4371 3.80018C17.4236 3.68413 17.3831 3.57284 17.319 3.47518C17.2549 3.37752 17.1688 3.29619 17.0677 3.23768C16.296 2.79082 15.4685 2.44815 14.6067 2.21862C14.4932 2.18843 14.3741 2.18534 14.2592 2.2096C14.1442 2.23387 14.0365 2.2848 13.9449 2.3583L12.2021 3.74955C12.0671 3.74955 11.9321 3.74955 11.7971 3.74955L10.0496 2.35362C9.9578 2.28027 9.85011 2.22951 9.73514 2.20541C9.62018 2.18131 9.50116 2.18455 9.38768 2.21487C8.52588 2.44458 7.69836 2.78757 6.92674 3.23487C6.82579 3.29349 6.73992 3.37486 6.67595 3.47251C6.61199 3.57017 6.5717 3.6814 6.5583 3.79737L6.3108 6.02487C6.2133 6.11799 6.11955 6.21174 6.02955 6.30612L3.80018 6.56206C3.68413 6.57556 3.57284 6.61598 3.47518 6.68011C3.37752 6.74424 3.29619 6.8303 3.23768 6.93143C2.79082 7.70315 2.44815 8.53066 2.21862 9.39237C2.18843 9.50592 2.18534 9.62498 2.2096 9.73995C2.23387 9.85491 2.2848 9.96257 2.3583 10.0542L3.74955 11.7971C3.74955 11.9321 3.74955 12.0671 3.74955 12.2021L2.35362 13.9496C2.28027 14.0413 2.22951 14.149 2.20541 14.264C2.18131 14.3789 2.18455 14.4979 2.21487 14.6114C2.44417 15.4734 2.78718 16.3009 3.23487 17.0724C3.29349 17.1733 3.37486 17.2592 3.47251 17.3232C3.57017 17.3871 3.6814 17.4274 3.79737 17.4408L6.02112 17.6883C6.11424 17.7858 6.20799 17.8796 6.30237 17.9696L6.56206 20.1989C6.57556 20.315 6.61598 20.4263 6.68011 20.5239C6.74424 20.6216 6.8303 20.7029 6.93143 20.7614C7.70315 21.2083 8.53066 21.551 9.39237 21.7805C9.50592 21.8107 9.62498 21.8138 9.73995 21.7895C9.85491 21.7652 9.96257 21.7143 10.0542 21.6408L11.7971 20.2496C11.9321 20.2533 12.0671 20.2533 12.2021 20.2496L13.9496 21.6483C14.0413 21.7216 14.149 21.7724 14.264 21.7965C14.3789 21.8206 14.4979 21.8174 14.6114 21.7871C15.4734 21.5578 16.3009 21.2147 17.0724 20.7671C17.1733 20.7084 17.2592 20.6271 17.3232 20.5294C17.3871 20.4318 17.4274 20.3205 17.4408 20.2046L17.6883 17.9808C17.7858 17.8883 17.8796 17.7946 17.9696 17.6996L20.1989 17.4371C20.315 17.4236 20.4263 17.3831 20.5239 17.319C20.6216 17.2549 20.7029 17.1688 20.7614 17.0677C21.2083 16.296 21.551 15.4685 21.7805 14.6067C21.8107 14.4932 21.8138 14.3741 21.7895 14.2592C21.7652 14.1442 21.7143 14.0365 21.6408 13.9449L20.2496 12.2021ZM18.7402 11.5927C18.7561 11.8637 18.7561 12.1354 18.7402 12.4064C18.729 12.592 18.7871 12.7751 18.9033 12.9202L20.2336 14.5824C20.081 15.0675 19.8855 15.5381 19.6496 15.9886L17.5308 16.2286C17.3463 16.2491 17.1759 16.3373 17.0527 16.4761C16.8722 16.6791 16.68 16.8713 16.4771 17.0517C16.3382 17.175 16.25 17.3454 16.2296 17.5299L15.9942 19.6467C15.5438 19.8828 15.0732 20.0783 14.588 20.2308L12.9249 18.9005C12.7918 18.7942 12.6265 18.7363 12.4561 18.7364H12.4111C12.1401 18.7524 11.8684 18.7524 11.5974 18.7364C11.4118 18.7253 11.2287 18.7834 11.0836 18.8996L9.41674 20.2308C8.93162 20.0782 8.46102 19.8827 8.01049 19.6467L7.77049 17.5308C7.75001 17.3463 7.66182 17.1759 7.52299 17.0527C7.32003 16.8722 7.12783 16.68 6.94737 16.4771C6.82412 16.3382 6.65376 16.25 6.46924 16.2296L4.35237 15.9933C4.1163 15.5428 3.92084 15.0722 3.7683 14.5871L5.09862 12.9239C5.21478 12.7788 5.27291 12.5957 5.26174 12.4102C5.24581 12.1392 5.24581 11.8674 5.26174 11.5964C5.27291 11.4109 5.21478 11.2278 5.09862 11.0827L3.7683 9.41674C3.92095 8.93162 4.11641 8.46102 4.35237 8.01049L6.46831 7.77049C6.65282 7.75001 6.82318 7.66182 6.94643 7.52299C7.12689 7.32003 7.31909 7.12783 7.52205 6.94737C7.66144 6.82404 7.74999 6.65329 7.77049 6.46831L8.00581 4.35237C8.45628 4.1163 8.92689 3.92084 9.41206 3.7683L11.0752 5.09862C11.2203 5.21478 11.4034 5.27291 11.5889 5.26174C11.8599 5.24581 12.1317 5.24581 12.4027 5.26174C12.5882 5.27291 12.7713 5.21478 12.9164 5.09862L14.5824 3.7683C15.0675 3.92095 15.5381 4.11641 15.9886 4.35237L16.2286 6.46831C16.2491 6.65282 16.3373 6.82318 16.4761 6.94643C16.6791 7.12689 16.8713 7.31909 17.0517 7.52205C17.175 7.66089 17.3454 7.74907 17.5299 7.76955L19.6467 8.00487C19.8828 8.45534 20.0783 8.92595 20.2308 9.41112L18.9005 11.0742C18.7832 11.2206 18.725 11.4056 18.7374 11.5927H18.7402Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Gear (fill, node 5162:1027) -->\n<path d=\"M20.2496 12.2021C20.2533 12.0671 20.2533 11.9321 20.2496 11.7971L21.6483 10.0496C21.7216 9.9578 21.7724 9.85011 21.7965 9.73514C21.8206 9.62018 21.8174 9.50116 21.7871 9.38768C21.5573 8.52588 21.2144 7.69836 20.7671 6.92674C20.7084 6.82579 20.6271 6.73992 20.5294 6.67595C20.4318 6.61199 20.3205 6.5717 20.2046 6.5583L17.9808 6.3108C17.8883 6.2133 17.7946 6.11955 17.6996 6.02955L17.4371 3.80018C17.4236 3.68413 17.3831 3.57284 17.319 3.47518C17.2549 3.37752 17.1688 3.29619 17.0677 3.23768C16.2961 2.79073 15.4686 2.44835 14.6067 2.21955C14.4933 2.18924 14.3742 2.186 14.2593 2.2101C14.1443 2.2342 14.0366 2.28496 13.9449 2.3583L12.2021 3.74955C12.0671 3.74955 11.9321 3.74955 11.7971 3.74955L10.0496 2.35362C9.9578 2.28027 9.85011 2.22951 9.73514 2.20541C9.62018 2.18131 9.50116 2.18455 9.38768 2.21487C8.52588 2.44458 7.69836 2.78757 6.92674 3.23487C6.82579 3.29349 6.73992 3.37486 6.67595 3.47251C6.61199 3.57017 6.5717 3.6814 6.5583 3.79737L6.3108 6.02487C6.2133 6.11799 6.11955 6.21174 6.02955 6.30612L3.80018 6.56206C3.68413 6.57556 3.57284 6.61598 3.47518 6.68011C3.37752 6.74424 3.29619 6.8303 3.23768 6.93143C2.79082 7.70315 2.44815 8.53066 2.21862 9.39237C2.18843 9.50592 2.18534 9.62498 2.2096 9.73995C2.23387 9.85491 2.2848 9.96257 2.3583 10.0542L3.74955 11.7971C3.74955 11.9321 3.74955 12.0671 3.74955 12.2021L2.35362 13.9496C2.28027 14.0413 2.22951 14.149 2.20541 14.264C2.18131 14.3789 2.18455 14.4979 2.21487 14.6114C2.44458 15.4732 2.78757 16.3008 3.23487 17.0724C3.29349 17.1733 3.37486 17.2592 3.47251 17.3232C3.57017 17.3871 3.6814 17.4274 3.79737 17.4408L6.02112 17.6883C6.11424 17.7858 6.20799 17.8796 6.30237 17.9696L6.56206 20.1989C6.57556 20.315 6.61598 20.4263 6.68011 20.5239C6.74424 20.6216 6.8303 20.7029 6.93143 20.7614C7.70315 21.2083 8.53066 21.551 9.39237 21.7805C9.50592 21.8107 9.62498 21.8138 9.73995 21.7895C9.85491 21.7652 9.96257 21.7143 10.0542 21.6408L11.7971 20.2496C11.9321 20.2533 12.0671 20.2533 12.2021 20.2496L13.9496 21.6483C14.0413 21.7216 14.149 21.7724 14.264 21.7965C14.3789 21.8206 14.4979 21.8174 14.6114 21.7871C15.4734 21.5578 16.3009 21.2147 17.0724 20.7671C17.1733 20.7084 17.2592 20.6271 17.3232 20.5294C17.3871 20.4318 17.4274 20.3205 17.4408 20.2046L17.6883 17.9808C17.7858 17.8883 17.8796 17.7946 17.9696 17.6996L20.1989 17.4371C20.315 17.4236 20.4263 17.3831 20.5239 17.319C20.6216 17.2549 20.7029 17.1688 20.7614 17.0677C21.2083 16.296 21.551 15.4685 21.7805 14.6067C21.8107 14.4932 21.8138 14.3741 21.7895 14.2592C21.7652 14.1442 21.7143 14.0365 21.6408 13.9449L20.2496 12.2021ZM11.9996 15.7496C11.2579 15.7496 10.5329 15.5296 9.91617 15.1176C9.29948 14.7055 8.81884 14.1198 8.53501 13.4346C8.25118 12.7494 8.17692 11.9954 8.32161 11.268C8.4663 10.5405 8.82346 9.87235 9.3479 9.3479C9.87235 8.82346 10.5405 8.4663 11.268 8.32161C11.9954 8.17692 12.7494 8.25118 13.4346 8.53501C14.1198 8.81884 14.7055 9.29948 15.1176 9.91617C15.5296 10.5329 15.7496 11.2579 15.7496 11.9996C15.7496 12.9941 15.3545 13.9479 14.6512 14.6512C13.9479 15.3545 12.9941 15.7496 11.9996 15.7496Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Compress",
      "category": "system",
      "lineDrawable": "aurum_ic_system_compress",
      "fillDrawable": "aurum_ic_system_compress_filled",
      "lineFigmaNodeId": "5162:1129",
      "fillFigmaNodeId": "5162:1014",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1129",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1014",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CornersIn (line, node 5162:1129) -->\n<path d=\"M14.25 9V4.5C14.25 4.30109 14.329 4.11032 14.4697 3.96967C14.6103 3.82902 14.8011 3.75 15 3.75C15.1989 3.75 15.3897 3.82902 15.5303 3.96967C15.671 4.11032 15.75 4.30109 15.75 4.5V8.25H19.5C19.6989 8.25 19.8897 8.32902 20.0303 8.46967C20.171 8.61032 20.25 8.80109 20.25 9C20.25 9.19891 20.171 9.38968 20.0303 9.53033C19.8897 9.67098 19.6989 9.75 19.5 9.75H15C14.8011 9.75 14.6103 9.67098 14.4697 9.53033C14.329 9.38968 14.25 9.19891 14.25 9ZM9 14.25H4.5C4.30109 14.25 4.11032 14.329 3.96967 14.4697C3.82902 14.6103 3.75 14.8011 3.75 15C3.75 15.1989 3.82902 15.3897 3.96967 15.5303C4.11032 15.671 4.30109 15.75 4.5 15.75H8.25V19.5C8.25 19.6989 8.32902 19.8897 8.46967 20.0303C8.61032 20.171 8.80109 20.25 9 20.25C9.19891 20.25 9.38968 20.171 9.53033 20.0303C9.67098 19.8897 9.75 19.6989 9.75 19.5V15C9.75 14.8011 9.67098 14.6103 9.53033 14.4697C9.38968 14.329 9.19891 14.25 9 14.25ZM19.5 14.25H15C14.8011 14.25 14.6103 14.329 14.4697 14.4697C14.329 14.6103 14.25 14.8011 14.25 15V19.5C14.25 19.6989 14.329 19.8897 14.4697 20.0303C14.6103 20.171 14.8011 20.25 15 20.25C15.1989 20.25 15.3897 20.171 15.5303 20.0303C15.671 19.8897 15.75 19.6989 15.75 19.5V15.75H19.5C19.6989 15.75 19.8897 15.671 20.0303 15.5303C20.171 15.3897 20.25 15.1989 20.25 15C20.25 14.8011 20.171 14.6103 20.0303 14.4697C19.8897 14.329 19.6989 14.25 19.5 14.25ZM9 3.75C8.80109 3.75 8.61032 3.82902 8.46967 3.96967C8.32902 4.11032 8.25 4.30109 8.25 4.5V8.25H4.5C4.30109 8.25 4.11032 8.32902 3.96967 8.46967C3.82902 8.61032 3.75 8.80109 3.75 9C3.75 9.19891 3.82902 9.38968 3.96967 9.53033C4.11032 9.67098 4.30109 9.75 4.5 9.75H9C9.19891 9.75 9.38968 9.67098 9.53033 9.53033C9.67098 9.38968 9.75 9.19891 9.75 9V4.5C9.75 4.30109 9.67098 4.11032 9.53033 3.96967C9.38968 3.82902 9.19891 3.75 9 3.75Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CornersIn (fill, node 5162:1014) -->\n<path d=\"M14.2496 8.99961V4.49961C14.2495 4.35119 14.2934 4.20607 14.3758 4.08263C14.4582 3.95918 14.5754 3.86296 14.7125 3.80615C14.8496 3.74933 15.0005 3.73448 15.1461 3.76347C15.2917 3.79245 15.4253 3.86398 15.5302 3.96899L20.0302 8.46899C20.1353 8.57388 20.2068 8.70757 20.2358 8.85313C20.2647 8.9987 20.2499 9.14959 20.1931 9.28671C20.1363 9.42382 20.04 9.541 19.9166 9.6234C19.7932 9.70581 19.648 9.74973 19.4996 9.74961H14.9996C14.8007 9.74961 14.6099 9.6706 14.4693 9.52994C14.3286 9.38929 14.2496 9.19853 14.2496 8.99961ZM8.99961 14.2496H4.49961C4.35119 14.2495 4.20607 14.2934 4.08263 14.3758C3.95918 14.4582 3.86296 14.5754 3.80615 14.7125C3.74933 14.8496 3.73448 15.0005 3.76347 15.1461C3.79245 15.2917 3.86398 15.4253 3.96899 15.5302L8.46899 20.0302C8.57388 20.1353 8.70757 20.2068 8.85313 20.2358C8.9987 20.2647 9.14959 20.2499 9.28671 20.1931C9.42382 20.1363 9.541 20.04 9.6234 19.9166C9.70581 19.7932 9.74973 19.648 9.74961 19.4996V14.9996C9.74961 14.8007 9.6706 14.6099 9.52994 14.4693C9.38929 14.3286 9.19853 14.2496 8.99961 14.2496ZM9.28649 3.8068C9.14946 3.74995 8.99865 3.73502 8.85314 3.76389C8.70762 3.79276 8.57394 3.86413 8.46899 3.96899L3.96899 8.46899C3.86398 8.57388 3.79245 8.70757 3.76347 8.85313C3.73448 8.9987 3.74933 9.14959 3.80615 9.28671C3.86296 9.42382 3.95918 9.541 4.08263 9.6234C4.20607 9.70581 4.35119 9.74973 4.49961 9.74961H8.99961C9.19853 9.74961 9.38929 9.6706 9.52994 9.52994C9.6706 9.38929 9.74961 9.19853 9.74961 8.99961V4.49961C9.74958 4.35128 9.70557 4.20628 9.62313 4.08296C9.5407 3.95964 9.42354 3.86354 9.28649 3.8068ZM19.4996 14.2496H14.9996C14.8007 14.2496 14.6099 14.3286 14.4693 14.4693C14.3286 14.6099 14.2496 14.8007 14.2496 14.9996V19.4996C14.2495 19.648 14.2934 19.7932 14.3758 19.9166C14.4582 20.04 14.5754 20.1363 14.7125 20.1931C14.8496 20.2499 15.0005 20.2647 15.1461 20.2358C15.2917 20.2068 15.4253 20.1353 15.5302 20.0302L20.0302 15.5302C20.1353 15.4253 20.2068 15.2917 20.2358 15.1461C20.2647 15.0005 20.2499 14.8496 20.1931 14.7125C20.1363 14.5754 20.04 14.4582 19.9166 14.3758C19.7932 14.2934 19.648 14.2495 19.4996 14.2496Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Expand",
      "category": "system",
      "lineDrawable": "aurum_ic_system_expand",
      "fillDrawable": "aurum_ic_system_expand_filled",
      "lineFigmaNodeId": "5162:1127",
      "fillFigmaNodeId": "5162:1012",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1127",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1012",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CornersOut (line, node 5162:1127) -->\n<path d=\"M20.25 4.5V8.25C20.25 8.44891 20.171 8.63968 20.0303 8.78033C19.8897 8.92098 19.6989 9 19.5 9C19.3011 9 19.1103 8.92098 18.9697 8.78033C18.829 8.63968 18.75 8.44891 18.75 8.25V5.25H15.75C15.5511 5.25 15.3603 5.17098 15.2197 5.03033C15.079 4.88968 15 4.69891 15 4.5C15 4.30109 15.079 4.11032 15.2197 3.96967C15.3603 3.82902 15.5511 3.75 15.75 3.75H19.5C19.6989 3.75 19.8897 3.82902 20.0303 3.96967C20.171 4.11032 20.25 4.30109 20.25 4.5ZM8.25 18.75H5.25V15.75C5.25 15.5511 5.17098 15.3603 5.03033 15.2197C4.88968 15.079 4.69891 15 4.5 15C4.30109 15 4.11032 15.079 3.96967 15.2197C3.82902 15.3603 3.75 15.5511 3.75 15.75V19.5C3.75 19.6989 3.82902 19.8897 3.96967 20.0303C4.11032 20.171 4.30109 20.25 4.5 20.25H8.25C8.44891 20.25 8.63968 20.171 8.78033 20.0303C8.92098 19.8897 9 19.6989 9 19.5C9 19.3011 8.92098 19.1103 8.78033 18.9697C8.63968 18.829 8.44891 18.75 8.25 18.75ZM19.5 15C19.3011 15 19.1103 15.079 18.9697 15.2197C18.829 15.3603 18.75 15.5511 18.75 15.75V18.75H15.75C15.5511 18.75 15.3603 18.829 15.2197 18.9697C15.079 19.1103 15 19.3011 15 19.5C15 19.6989 15.079 19.8897 15.2197 20.0303C15.3603 20.171 15.5511 20.25 15.75 20.25H19.5C19.6989 20.25 19.8897 20.171 20.0303 20.0303C20.171 19.8897 20.25 19.6989 20.25 19.5V15.75C20.25 15.5511 20.171 15.3603 20.0303 15.2197C19.8897 15.079 19.6989 15 19.5 15ZM8.25 3.75H4.5C4.30109 3.75 4.11032 3.82902 3.96967 3.96967C3.82902 4.11032 3.75 4.30109 3.75 4.5V8.25C3.75 8.44891 3.82902 8.63968 3.96967 8.78033C4.11032 8.92098 4.30109 9 4.5 9C4.69891 9 4.88968 8.92098 5.03033 8.78033C5.17098 8.63968 5.25 8.44891 5.25 8.25V5.25H8.25C8.44891 5.25 8.63968 5.17098 8.78033 5.03033C8.92098 4.88968 9 4.69891 9 4.5C9 4.30109 8.92098 4.11032 8.78033 3.96967C8.63968 3.82902 8.44891 3.75 8.25 3.75Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CornersOut (fill, node 5162:1012) -->\n<path d=\"M8.78063 18.9694C8.88563 19.0743 8.95716 19.208 8.98615 19.3535C9.01514 19.4991 9.00028 19.65 8.94347 19.7871C8.88665 19.9242 8.79043 20.0414 8.66699 20.1238C8.54354 20.2062 8.39842 20.2501 8.25 20.25H4.5C4.30109 20.25 4.11032 20.171 3.96967 20.0303C3.82902 19.8897 3.75 19.6989 3.75 19.5V15.75C3.74988 15.6016 3.79381 15.4565 3.87621 15.333C3.95861 15.2096 4.07579 15.1133 4.21291 15.0565C4.35002 14.9997 4.50092 14.9849 4.64648 15.0139C4.79204 15.0428 4.92573 15.1144 5.03063 15.2194L8.78063 18.9694ZM8.25 3.75H4.5C4.30109 3.75 4.11032 3.82902 3.96967 3.96967C3.82902 4.11032 3.75 4.30109 3.75 4.5V8.25C3.74988 8.39842 3.79381 8.54354 3.87621 8.66699C3.95861 8.79043 4.07579 8.88665 4.21291 8.94347C4.35002 9.00028 4.50092 9.01514 4.64648 8.98615C4.79204 8.95716 4.92573 8.88563 5.03063 8.78063L8.78063 5.03063C8.88563 4.92573 8.95716 4.79204 8.98615 4.64648C9.01514 4.50092 9.00028 4.35002 8.94347 4.21291C8.88665 4.07579 8.79043 3.95861 8.66699 3.87621C8.54354 3.79381 8.39842 3.74988 8.25 3.75ZM19.7869 15.0572C19.6498 15.0003 19.499 14.9854 19.3535 15.0143C19.208 15.0431 19.0743 15.1145 18.9694 15.2194L15.2194 18.9694C15.1144 19.0743 15.0428 19.208 15.0139 19.3535C14.9849 19.4991 14.9997 19.65 15.0565 19.7871C15.1133 19.9242 15.2096 20.0414 15.333 20.1238C15.4565 20.2062 15.6016 20.2501 15.75 20.25H19.5C19.6989 20.25 19.8897 20.171 20.0303 20.0303C20.171 19.8897 20.25 19.6989 20.25 19.5V15.75C20.25 15.6017 20.206 15.4567 20.1235 15.3334C20.0411 15.21 19.9239 15.1139 19.7869 15.0572ZM19.5 3.75H15.75C15.6016 3.74988 15.4565 3.79381 15.333 3.87621C15.2096 3.95861 15.1133 4.07579 15.0565 4.21291C14.9997 4.35002 14.9849 4.50092 15.0139 4.64648C15.0428 4.79204 15.1144 4.92573 15.2194 5.03063L18.9694 8.78063C19.0743 8.88563 19.208 8.95716 19.3535 8.98615C19.4991 9.01514 19.65 9.00028 19.7871 8.94347C19.9242 8.88665 20.0414 8.79043 20.1238 8.66699C20.2062 8.54354 20.2501 8.39842 20.25 8.25V4.5C20.25 4.30109 20.171 4.11032 20.0303 3.96967C19.8897 3.82902 19.6989 3.75 19.5 3.75Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Verified",
      "category": "status",
      "lineDrawable": "aurum_ic_status_verified",
      "fillDrawable": "aurum_ic_status_verified_filled",
      "lineFigmaNodeId": "5162:1099",
      "fillFigmaNodeId": "5162:984",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1099",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-984",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SealCheck (line, node 5162:1099) -->\n<path d=\"M21.1744 9.63937C20.8209 9.27 20.4553 8.88938 20.3175 8.55469C20.19 8.24813 20.1825 7.74 20.175 7.24781C20.1609 6.33281 20.1459 5.29594 19.425 4.575C18.7041 3.85406 17.6672 3.83906 16.7522 3.825C16.26 3.8175 15.7519 3.81 15.4453 3.6825C15.1116 3.54469 14.73 3.17906 14.3606 2.82562C13.7137 2.20406 12.9788 1.5 12 1.5C11.0212 1.5 10.2872 2.20406 9.63937 2.82562C9.27 3.17906 8.88938 3.54469 8.55469 3.6825C8.25 3.81 7.74 3.8175 7.24781 3.825C6.33281 3.83906 5.29594 3.85406 4.575 4.575C3.85406 5.29594 3.84375 6.33281 3.825 7.24781C3.8175 7.74 3.81 8.24813 3.6825 8.55469C3.54469 8.88844 3.17906 9.27 2.82562 9.63937C2.20406 10.2863 1.5 11.0212 1.5 12C1.5 12.9788 2.20406 13.7128 2.82562 14.3606C3.17906 14.73 3.54469 15.1106 3.6825 15.4453C3.81 15.7519 3.8175 16.26 3.825 16.7522C3.83906 17.6672 3.85406 18.7041 4.575 19.425C5.29594 20.1459 6.33281 20.1609 7.24781 20.175C7.74 20.1825 8.24813 20.19 8.55469 20.3175C8.88844 20.4553 9.27 20.8209 9.63937 21.1744C10.2863 21.7959 11.0212 22.5 12 22.5C12.9788 22.5 13.7128 21.7959 14.3606 21.1744C14.73 20.8209 15.1106 20.4553 15.4453 20.3175C15.7519 20.19 16.26 20.1825 16.7522 20.175C17.6672 20.1609 18.7041 20.1459 19.425 19.425C20.1459 18.7041 20.1609 17.6672 20.175 16.7522C20.1825 16.26 20.19 15.7519 20.3175 15.4453C20.4553 15.1116 20.8209 14.73 21.1744 14.3606C21.7959 13.7137 22.5 12.9788 22.5 12C22.5 11.0212 21.7959 10.2872 21.1744 9.63937ZM20.0916 13.3228C19.6425 13.7916 19.1775 14.2763 18.9309 14.8716C18.6947 15.4434 18.6844 16.0969 18.675 16.7297C18.6656 17.3859 18.6553 18.0731 18.3638 18.3638C18.0722 18.6544 17.3897 18.6656 16.7297 18.675C16.0969 18.6844 15.4434 18.6947 14.8716 18.9309C14.2763 19.1775 13.7916 19.6425 13.3228 20.0916C12.8541 20.5406 12.375 21 12 21C11.625 21 11.1422 20.5387 10.6772 20.0916C10.2122 19.6444 9.72375 19.1775 9.12844 18.9309C8.55656 18.6947 7.90313 18.6844 7.27031 18.675C6.61406 18.6656 5.92688 18.6553 5.63625 18.3638C5.34562 18.0722 5.33437 17.3897 5.325 16.7297C5.31562 16.0969 5.30531 15.4434 5.06906 14.8716C4.8225 14.2763 4.3575 13.7916 3.90844 13.3228C3.45937 12.8541 3 12.375 3 12C3 11.625 3.46125 11.1422 3.90844 10.6772C4.35562 10.2122 4.8225 9.72375 5.06906 9.12844C5.30531 8.55656 5.31562 7.90313 5.325 7.27031C5.33437 6.61406 5.34469 5.92688 5.63625 5.63625C5.92781 5.34562 6.61031 5.33437 7.27031 5.325C7.90313 5.31562 8.55656 5.30531 9.12844 5.06906C9.72375 4.8225 10.2084 4.3575 10.6772 3.90844C11.1459 3.45937 11.625 3 12 3C12.375 3 12.8578 3.46125 13.3228 3.90844C13.7878 4.35562 14.2763 4.8225 14.8716 5.06906C15.4434 5.30531 16.0969 5.31562 16.7297 5.325C17.3859 5.33437 18.0731 5.34469 18.3638 5.63625C18.6544 5.92781 18.6656 6.61031 18.675 7.27031C18.6844 7.90313 18.6947 8.55656 18.9309 9.12844C19.1775 9.72375 19.6425 10.2084 20.0916 10.6772C20.5406 11.1459 21 11.625 21 12C21 12.375 20.5387 12.8578 20.0916 13.3228ZM16.2806 9.21937C16.3504 9.28903 16.4057 9.37175 16.4434 9.46279C16.4812 9.55384 16.5006 9.65144 16.5006 9.75C16.5006 9.84856 16.4812 9.94616 16.4434 10.0372C16.4057 10.1283 16.3504 10.211 16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1217 15.6557 10.039 15.6004 9.96937 15.5306L7.71937 13.2806C7.57864 13.1399 7.49958 12.949 7.49958 12.75C7.49958 12.551 7.57864 12.3601 7.71937 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44902 11.9996 8.63989 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.289 9.14964 15.3717 9.09432 15.4628 9.05658C15.5538 9.01884 15.6514 8.99941 15.75 8.99941C15.8486 8.99941 15.9462 9.01884 16.0372 9.05658C16.1283 9.09432 16.211 9.14964 16.2806 9.21937Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SealCheck (fill, node 5162:984) -->\n<path d=\"M21.1744 9.63937C20.8209 9.27 20.4553 8.88938 20.3175 8.55469C20.19 8.24813 20.1825 7.74 20.175 7.24781C20.1609 6.33281 20.1459 5.29594 19.425 4.575C18.7041 3.85406 17.6672 3.83906 16.7522 3.825C16.26 3.8175 15.7519 3.81 15.4453 3.6825C15.1116 3.54469 14.73 3.17906 14.3606 2.82562C13.7137 2.20406 12.9788 1.5 12 1.5C11.0212 1.5 10.2872 2.20406 9.63937 2.82562C9.27 3.17906 8.88938 3.54469 8.55469 3.6825C8.25 3.81 7.74 3.8175 7.24781 3.825C6.33281 3.83906 5.29594 3.85406 4.575 4.575C3.85406 5.29594 3.84375 6.33281 3.825 7.24781C3.8175 7.74 3.81 8.24813 3.6825 8.55469C3.54469 8.88844 3.17906 9.27 2.82562 9.63937C2.20406 10.2863 1.5 11.0212 1.5 12C1.5 12.9788 2.20406 13.7128 2.82562 14.3606C3.17906 14.73 3.54469 15.1106 3.6825 15.4453C3.81 15.7519 3.8175 16.26 3.825 16.7522C3.83906 17.6672 3.85406 18.7041 4.575 19.425C5.29594 20.1459 6.33281 20.1609 7.24781 20.175C7.74 20.1825 8.24813 20.19 8.55469 20.3175C8.88844 20.4553 9.27 20.8209 9.63937 21.1744C10.2863 21.7959 11.0212 22.5 12 22.5C12.9788 22.5 13.7128 21.7959 14.3606 21.1744C14.73 20.8209 15.1106 20.4553 15.4453 20.3175C15.7519 20.19 16.26 20.1825 16.7522 20.175C17.6672 20.1609 18.7041 20.1459 19.425 19.425C20.1459 18.7041 20.1609 17.6672 20.175 16.7522C20.1825 16.26 20.19 15.7519 20.3175 15.4453C20.4553 15.1116 20.8209 14.73 21.1744 14.3606C21.7959 13.7137 22.5 12.9788 22.5 12C22.5 11.0212 21.7959 10.2872 21.1744 9.63937ZM16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1217 15.6557 10.039 15.6004 9.96937 15.5306L7.71937 13.2806C7.57864 13.1399 7.49958 12.949 7.49958 12.75C7.49958 12.551 7.57864 12.3601 7.71937 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44902 11.9996 8.63989 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8485 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Discount",
      "category": "status",
      "lineDrawable": "aurum_ic_status_discount",
      "fillDrawable": "aurum_ic_status_discount_filled",
      "lineFigmaNodeId": "5162:1103",
      "fillFigmaNodeId": "5162:988",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1103",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-988",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SealPercent (line, node 5162:1103) -->\n<path d=\"M21.1744 9.63937C20.8209 9.27 20.4553 8.88938 20.3175 8.55469C20.19 8.24813 20.1825 7.74 20.175 7.24781C20.1609 6.33281 20.1459 5.29594 19.425 4.575C18.7041 3.85406 17.6672 3.83906 16.7522 3.825C16.26 3.8175 15.7519 3.81 15.4453 3.6825C15.1116 3.54469 14.73 3.17906 14.3606 2.82562C13.7137 2.20406 12.9788 1.5 12 1.5C11.0212 1.5 10.2872 2.20406 9.63937 2.82562C9.27 3.17906 8.88938 3.54469 8.55469 3.6825C8.25 3.81 7.74 3.8175 7.24781 3.825C6.33281 3.83906 5.29594 3.85406 4.575 4.575C3.85406 5.29594 3.84375 6.33281 3.825 7.24781C3.8175 7.74 3.81 8.24813 3.6825 8.55469C3.54469 8.88844 3.17906 9.27 2.82562 9.63937C2.20406 10.2872 1.5 11.0212 1.5 12C1.5 12.9788 2.20406 13.7128 2.82562 14.3606C3.17906 14.73 3.54469 15.1106 3.6825 15.4453C3.81 15.7519 3.8175 16.26 3.825 16.7522C3.83906 17.6672 3.85406 18.7041 4.575 19.425C5.29594 20.1459 6.33281 20.1609 7.24781 20.175C7.74 20.1825 8.24813 20.19 8.55469 20.3175C8.88844 20.4553 9.27 20.8209 9.63937 21.1744C10.2863 21.7959 11.0212 22.5 12 22.5C12.9788 22.5 13.7128 21.7959 14.3606 21.1744C14.73 20.8209 15.1106 20.4553 15.4453 20.3175C15.7519 20.19 16.26 20.1825 16.7522 20.175C17.6672 20.1609 18.7041 20.1459 19.425 19.425C20.1459 18.7041 20.1609 17.6672 20.175 16.7522C20.1825 16.26 20.19 15.7519 20.3175 15.4453C20.4553 15.1116 20.8209 14.73 21.1744 14.3606C21.7959 13.7128 22.5 12.9788 22.5 12C22.5 11.0212 21.7959 10.2872 21.1744 9.63937ZM20.0916 13.3228C19.6425 13.7916 19.1775 14.2763 18.9309 14.8716C18.6947 15.4434 18.6844 16.0969 18.675 16.7297C18.6656 17.3859 18.6553 18.0731 18.3638 18.3638C18.0722 18.6544 17.3897 18.6656 16.7297 18.675C16.0969 18.6844 15.4434 18.6947 14.8716 18.9309C14.2763 19.1775 13.7916 19.6425 13.3228 20.0916C12.8541 20.5406 12.375 21 12 21C11.625 21 11.1422 20.5387 10.6772 20.0916C10.2122 19.6444 9.72375 19.1775 9.12844 18.9309C8.55656 18.6947 7.90313 18.6844 7.27031 18.675C6.61406 18.6656 5.92688 18.6553 5.63625 18.3638C5.34562 18.0722 5.33437 17.3897 5.325 16.7297C5.31562 16.0969 5.30531 15.4434 5.06906 14.8716C4.8225 14.2763 4.3575 13.7916 3.90844 13.3228C3.45937 12.8541 3 12.375 3 12C3 11.625 3.46125 11.1431 3.90844 10.6772C4.35562 10.2113 4.8225 9.72375 5.06906 9.12844C5.30531 8.55656 5.31562 7.90313 5.325 7.27031C5.33437 6.61406 5.34469 5.92688 5.63625 5.63625C5.92781 5.34562 6.61031 5.33437 7.27031 5.325C7.90313 5.31562 8.55656 5.30531 9.12844 5.06906C9.72375 4.8225 10.2084 4.3575 10.6772 3.90844C11.1459 3.45937 11.625 3 12 3C12.375 3 12.8578 3.46125 13.3228 3.90844C13.7878 4.35562 14.2763 4.8225 14.8716 5.06906C15.4434 5.30531 16.0969 5.31562 16.7297 5.325C17.3859 5.33437 18.0731 5.34469 18.3638 5.63625C18.6544 5.92781 18.6656 6.61031 18.675 7.27031C18.6844 7.90313 18.6947 8.55656 18.9309 9.12844C19.1775 9.72375 19.6425 10.2084 20.0916 10.6772C20.5406 11.1459 21 11.625 21 12C21 12.375 20.5387 12.8569 20.0916 13.3228ZM11.25 9C11.25 8.55499 11.118 8.11998 10.8708 7.74997C10.6236 7.37996 10.2722 7.09157 9.86104 6.92127C9.4499 6.75097 8.9975 6.70642 8.56105 6.79323C8.12459 6.88005 7.72368 7.09434 7.40901 7.40901C7.09434 7.72368 6.88005 8.12459 6.79323 8.56105C6.70642 8.9975 6.75097 9.4499 6.92127 9.86104C7.09157 10.2722 7.37996 10.6236 7.74997 10.8708C8.11998 11.118 8.55499 11.25 9 11.25C9.59674 11.25 10.169 11.0129 10.591 10.591C11.0129 10.169 11.25 9.59674 11.25 9ZM8.25 9C8.25 8.85166 8.29399 8.70666 8.3764 8.58332C8.45881 8.45999 8.57594 8.36386 8.71299 8.30709C8.85003 8.25032 9.00083 8.23547 9.14632 8.26441C9.2918 8.29335 9.42544 8.36478 9.53033 8.46967C9.63522 8.57456 9.70665 8.7082 9.73559 8.85368C9.76453 8.99917 9.74968 9.14997 9.69291 9.28701C9.63614 9.42406 9.54002 9.54119 9.41668 9.6236C9.29334 9.70601 9.14834 9.75 9 9.75C8.80109 9.75 8.61032 9.67098 8.46967 9.53033C8.32902 9.38968 8.25 9.19891 8.25 9ZM15 12.75C14.555 12.75 14.12 12.882 13.75 13.1292C13.38 13.3764 13.0916 13.7278 12.9213 14.139C12.751 14.5501 12.7064 15.0025 12.7932 15.439C12.88 15.8754 13.0943 16.2763 13.409 16.591C13.7237 16.9057 14.1246 17.12 14.561 17.2068C14.9975 17.2936 15.4499 17.249 15.861 17.0787C16.2722 16.9084 16.6236 16.62 16.8708 16.25C17.118 15.88 17.25 15.445 17.25 15C17.25 14.4033 17.0129 13.831 16.591 13.409C16.169 12.9871 15.5967 12.75 15 12.75ZM15 15.75C14.8517 15.75 14.7067 15.706 14.5833 15.6236C14.46 15.5412 14.3639 15.4241 14.3071 15.287C14.2503 15.15 14.2355 14.9992 14.2644 14.8537C14.2934 14.7082 14.3648 14.5746 14.4697 14.4697C14.5746 14.3648 14.7082 14.2934 14.8537 14.2644C14.9992 14.2355 15.15 14.2503 15.287 14.3071C15.4241 14.3639 15.5412 14.46 15.6236 14.5833C15.706 14.7067 15.75 14.8517 15.75 15C15.75 15.1989 15.671 15.3897 15.5303 15.5303C15.3897 15.671 15.1989 15.75 15 15.75ZM16.2806 8.78063L8.78063 16.2806C8.71094 16.3503 8.62822 16.4056 8.53717 16.4433C8.44613 16.481 8.34855 16.5004 8.25 16.5004C8.15145 16.5004 8.05387 16.481 7.96283 16.4433C7.87178 16.4056 7.78906 16.3503 7.71937 16.2806C7.64969 16.2109 7.59442 16.1282 7.5567 16.0372C7.51899 15.9461 7.49958 15.8485 7.49958 15.75C7.49958 15.6515 7.51899 15.5539 7.5567 15.4628C7.59442 15.3718 7.64969 15.2891 7.71937 15.2194L15.2194 7.71937C15.2891 7.64969 15.3718 7.59442 15.4628 7.5567C15.5539 7.51899 15.6515 7.49958 15.75 7.49958C15.8485 7.49958 15.9461 7.51899 16.0372 7.5567C16.1282 7.59442 16.2109 7.64969 16.2806 7.71937C16.3503 7.78906 16.4056 7.87178 16.4433 7.96283C16.481 8.05387 16.5004 8.15145 16.5004 8.25C16.5004 8.34855 16.481 8.44613 16.4433 8.53717C16.4056 8.62822 16.3503 8.71094 16.2806 8.78063Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: SealPercent (fill, node 5162:988) -->\n<path d=\"M9 9.75C8.85166 9.75 8.70666 9.70601 8.58332 9.6236C8.45999 9.54119 8.36386 9.42406 8.30709 9.28701C8.25032 9.14997 8.23547 8.99917 8.26441 8.85368C8.29335 8.7082 8.36478 8.57456 8.46967 8.46967C8.57456 8.36478 8.7082 8.29335 8.85368 8.26441C8.99917 8.23547 9.14997 8.25032 9.28701 8.30709C9.42406 8.36386 9.54119 8.45999 9.6236 8.58332C9.70601 8.70666 9.75 8.85166 9.75 9C9.75 9.19891 9.67098 9.38968 9.53033 9.53033C9.38968 9.67098 9.19891 9.75 9 9.75ZM15 14.25C14.8517 14.25 14.7067 14.294 14.5833 14.3764C14.46 14.4588 14.3639 14.5759 14.3071 14.713C14.2503 14.85 14.2355 15.0008 14.2644 15.1463C14.2934 15.2918 14.3648 15.4254 14.4697 15.5303C14.5746 15.6352 14.7082 15.7066 14.8537 15.7356C14.9992 15.7645 15.15 15.7497 15.287 15.6929C15.4241 15.6361 15.5412 15.54 15.6236 15.4167C15.706 15.2933 15.75 15.1483 15.75 15C15.75 14.8011 15.671 14.6103 15.5303 14.4697C15.3897 14.329 15.1989 14.25 15 14.25ZM22.5 12C22.5 12.9788 21.7959 13.7128 21.1744 14.3606C20.8209 14.73 20.4553 15.1106 20.3175 15.4453C20.19 15.7519 20.1825 16.26 20.175 16.7522C20.1609 17.6672 20.1459 18.7041 19.425 19.425C18.7041 20.1459 17.6672 20.1609 16.7522 20.175C16.26 20.1825 15.7519 20.19 15.4453 20.3175C15.1106 20.4553 14.73 20.8209 14.3606 21.1744C13.7128 21.7959 12.9788 22.5 12 22.5C11.0212 22.5 10.2872 21.7959 9.63937 21.1744C9.27 20.8209 8.88938 20.4553 8.55469 20.3175C8.24813 20.19 7.74 20.1825 7.24781 20.175C6.33281 20.1609 5.29594 20.1459 4.575 19.425C3.85406 18.7041 3.83906 17.6672 3.825 16.7522C3.8175 16.26 3.81 15.7519 3.6825 15.4453C3.54469 15.1106 3.17906 14.73 2.82562 14.3606C2.20406 13.7128 1.5 12.9788 1.5 12C1.5 11.0212 2.20406 10.2872 2.82562 9.63937C3.17906 9.27 3.54469 8.88938 3.6825 8.55469C3.81 8.24813 3.8175 7.74 3.825 7.24781C3.83906 6.33281 3.85406 5.29594 4.575 4.575C5.29594 3.85406 6.33281 3.83906 7.24781 3.825C7.74 3.8175 8.24813 3.81 8.55469 3.6825C8.88938 3.54469 9.27 3.17906 9.63937 2.82562C10.2872 2.20406 11.0212 1.5 12 1.5C12.9788 1.5 13.7128 2.20406 14.3606 2.82562C14.73 3.17906 15.1106 3.54469 15.4453 3.6825C15.7519 3.81 16.26 3.8175 16.7522 3.825C17.6672 3.83906 18.7041 3.85406 19.425 4.575C20.1459 5.29594 20.1609 6.33281 20.175 7.24781C20.1825 7.74 20.19 8.24813 20.3175 8.55469C20.4553 8.88938 20.8209 9.27 21.1744 9.63937C21.7959 10.2872 22.5 11.0212 22.5 12ZM9 11.25C9.44501 11.25 9.88002 11.118 10.25 10.8708C10.62 10.6236 10.9084 10.2722 11.0787 9.86104C11.249 9.4499 11.2936 8.9975 11.2068 8.56105C11.12 8.12459 10.9057 7.72368 10.591 7.40901C10.2763 7.09434 9.87541 6.88005 9.43895 6.79323C9.0025 6.70642 8.5501 6.75097 8.13896 6.92127C7.72783 7.09157 7.37643 7.37996 7.12919 7.74997C6.88196 8.11998 6.75 8.55499 6.75 9C6.75 9.59674 6.98705 10.169 7.40901 10.591C7.83097 11.0129 8.40326 11.25 9 11.25ZM16.2806 8.78063C16.3503 8.71094 16.4056 8.62822 16.4433 8.53717C16.481 8.44613 16.5004 8.34855 16.5004 8.25C16.5004 8.15145 16.481 8.05387 16.4433 7.96283C16.4056 7.87178 16.3503 7.78906 16.2806 7.71937C16.2109 7.64969 16.1282 7.59442 16.0372 7.5567C15.9461 7.51899 15.8485 7.49958 15.75 7.49958C15.6515 7.49958 15.5539 7.51899 15.4628 7.5567C15.3718 7.59442 15.2891 7.64969 15.2194 7.71937L7.71937 15.2194C7.64969 15.2891 7.59442 15.3718 7.5567 15.4628C7.51899 15.5539 7.49958 15.6515 7.49958 15.75C7.49958 15.8485 7.51899 15.9461 7.5567 16.0372C7.59442 16.1282 7.64969 16.2109 7.71937 16.2806C7.86011 16.4214 8.05098 16.5004 8.25 16.5004C8.34855 16.5004 8.44613 16.481 8.53717 16.4433C8.62822 16.4056 8.71094 16.3503 8.78063 16.2806L16.2806 8.78063ZM17.25 15C17.25 14.555 17.118 14.12 16.8708 13.75C16.6236 13.38 16.2722 13.0916 15.861 12.9213C15.4499 12.751 14.9975 12.7064 14.561 12.7932C14.1246 12.88 13.7237 13.0943 13.409 13.409C13.0943 13.7237 12.88 14.1246 12.7932 14.561C12.7064 14.9975 12.751 15.4499 12.9213 15.861C13.0916 16.2722 13.38 16.6236 13.75 16.8708C14.12 17.118 14.555 17.25 15 17.25C15.5967 17.25 16.169 17.0129 16.591 16.591C17.0129 16.169 17.25 15.5967 17.25 15Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Shield",
      "category": "status",
      "lineDrawable": "aurum_ic_status_shield",
      "fillDrawable": "aurum_ic_status_shield_filled",
      "lineFigmaNodeId": "5162:1105",
      "fillFigmaNodeId": "5162:990",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1105",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-990",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ShieldCheck (line, node 5162:1105) -->\n<path d=\"M19.5 3.75H4.5C4.10218 3.75 3.72064 3.90804 3.43934 4.18934C3.15804 4.47064 3 4.85218 3 5.25V10.5C3 15.4425 5.3925 18.4378 7.39969 20.0803C9.56156 21.8484 11.7122 22.4484 11.8059 22.4738C11.9348 22.5088 12.0708 22.5088 12.1997 22.4738C12.2934 22.4484 14.4413 21.8484 16.6059 20.0803C18.6075 18.4378 21 15.4425 21 10.5V5.25C21 4.85218 20.842 4.47064 20.5607 4.18934C20.2794 3.90804 19.8978 3.75 19.5 3.75ZM19.5 10.5C19.5 13.9753 18.2194 16.7962 15.6937 18.8831C14.5943 19.7885 13.344 20.493 12 20.9644C10.6736 20.5012 9.4387 19.8092 8.35125 18.9197C5.79563 16.8291 4.5 13.9969 4.5 10.5V5.25H19.5V10.5ZM7.71937 13.2806C7.57864 13.1399 7.49958 12.949 7.49958 12.75C7.49958 12.551 7.57864 12.3601 7.71937 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44902 11.9996 8.63989 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8485 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1217 15.6557 10.039 15.6004 9.96937 15.5306L7.71937 13.2806Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: ShieldCheck (fill, node 5162:990) -->\n<path d=\"M19.5 3.75H4.5C4.10218 3.75 3.72064 3.90804 3.43934 4.18934C3.15804 4.47064 3 4.85218 3 5.25V10.5C3 15.4425 5.3925 18.4378 7.39969 20.0803C9.56156 21.8484 11.7122 22.4484 11.8059 22.4738C11.9348 22.5088 12.0708 22.5088 12.1997 22.4738C12.2934 22.4484 14.4413 21.8484 16.6059 20.0803C18.6075 18.4378 21 15.4425 21 10.5V5.25C21 4.85218 20.842 4.47064 20.5607 4.18934C20.2794 3.90804 19.8978 3.75 19.5 3.75ZM16.2825 10.2806L11.0325 15.5306C10.9628 15.6004 10.8801 15.6557 10.7891 15.6934C10.698 15.7312 10.6004 15.7506 10.5019 15.7506C10.4033 15.7506 10.3057 15.7312 10.2147 15.6934C10.1236 15.6557 10.0409 15.6004 9.97125 15.5306L7.72125 13.2806C7.58052 13.1399 7.50146 12.949 7.50146 12.75C7.50146 12.551 7.58052 12.3601 7.72125 12.2194C7.86198 12.0786 8.05285 11.9996 8.25187 11.9996C8.4509 11.9996 8.64177 12.0786 8.7825 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8485 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806H16.2825Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Bell",
      "category": "status",
      "lineDrawable": "aurum_ic_status_bell",
      "fillDrawable": "aurum_ic_status_bell_filled",
      "lineFigmaNodeId": "5162:1039",
      "fillFigmaNodeId": "5162:924",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1039",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-924",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Bell (line, node 5162:1039) -->\n<path d=\"M20.7936 16.4944C20.2733 15.5981 19.4999 13.0622 19.4999 9.75C19.4999 7.76088 18.7097 5.85322 17.3032 4.4467C15.8967 3.04018 13.989 2.25 11.9999 2.25C10.0108 2.25 8.10311 3.04018 6.69659 4.4467C5.29007 5.85322 4.49989 7.76088 4.49989 9.75C4.49989 13.0631 3.72551 15.5981 3.2052 16.4944C3.07233 16.7222 3.00189 16.9811 3.00099 17.2449C3.00008 17.5086 3.06874 17.768 3.20005 17.9967C3.33135 18.2255 3.52065 18.4156 3.74886 18.5478C3.97708 18.6801 4.23613 18.7498 4.49989 18.75H8.32583C8.49886 19.5967 8.95904 20.3577 9.62852 20.9042C10.298 21.4507 11.1357 21.7492 11.9999 21.7492C12.8641 21.7492 13.7018 21.4507 14.3713 20.9042C15.0407 20.3577 15.5009 19.5967 15.674 18.75H19.4999C19.7636 18.7496 20.0225 18.6798 20.2506 18.5475C20.4787 18.4151 20.6678 18.225 20.799 17.9963C20.9302 17.7676 20.9988 17.5083 20.9979 17.2446C20.9969 16.9809 20.9265 16.7222 20.7936 16.4944ZM11.9999 20.25C11.5347 20.2499 11.081 20.1055 10.7013 19.8369C10.3215 19.5683 10.0343 19.1886 9.87927 18.75H14.1205C13.9655 19.1886 13.6783 19.5683 13.2985 19.8369C12.9188 20.1055 12.4651 20.2499 11.9999 20.25ZM4.49989 17.25C5.22177 16.0087 5.99989 13.1325 5.99989 9.75C5.99989 8.1587 6.63203 6.63258 7.75725 5.50736C8.88247 4.38214 10.4086 3.75 11.9999 3.75C13.5912 3.75 15.1173 4.38214 16.2425 5.50736C17.3678 6.63258 17.9999 8.1587 17.9999 9.75C17.9999 13.1297 18.7761 16.0059 19.4999 17.25H4.49989Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Bell (fill, node 5162:924) -->\n<path d=\"M20.7936 16.4944C20.2733 15.5981 19.4999 13.0622 19.4999 9.75C19.4999 7.76088 18.7097 5.85322 17.3032 4.4467C15.8967 3.04018 13.989 2.25 11.9999 2.25C10.0108 2.25 8.10311 3.04018 6.69659 4.4467C5.29007 5.85322 4.49989 7.76088 4.49989 9.75C4.49989 13.0631 3.72551 15.5981 3.2052 16.4944C3.07233 16.7222 3.00189 16.9811 3.00099 17.2449C3.00008 17.5086 3.06874 17.768 3.20005 17.9967C3.33135 18.2255 3.52065 18.4156 3.74886 18.5478C3.97708 18.6801 4.23613 18.7498 4.49989 18.75H8.32583C8.49886 19.5967 8.95904 20.3577 9.62852 20.9042C10.298 21.4507 11.1357 21.7492 11.9999 21.7492C12.8641 21.7492 13.7018 21.4507 14.3713 20.9042C15.0407 20.3577 15.5009 19.5967 15.674 18.75H19.4999C19.7636 18.7496 20.0225 18.6798 20.2506 18.5475C20.4787 18.4151 20.6678 18.225 20.799 17.9963C20.9302 17.7676 20.9988 17.5083 20.9979 17.2446C20.9969 16.9809 20.9265 16.7222 20.7936 16.4944ZM11.9999 20.25C11.5347 20.2499 11.081 20.1055 10.7013 19.8369C10.3215 19.5683 10.0343 19.1886 9.87927 18.75H14.1205C13.9655 19.1886 13.6783 19.5683 13.2985 19.8369C12.9188 20.1055 12.4651 20.2499 11.9999 20.25Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Info",
      "category": "status",
      "lineDrawable": "aurum_ic_status_info",
      "fillDrawable": "aurum_ic_status_info_filled",
      "lineFigmaNodeId": "5162:1043",
      "fillFigmaNodeId": "5162:928",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1043",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-928",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Info (line, node 5162:1043) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM12 20.25C10.3683 20.25 8.77326 19.7661 7.41655 18.8596C6.05984 17.9531 5.00242 16.6646 4.378 15.1571C3.75358 13.6496 3.5902 11.9908 3.90853 10.3905C4.22685 8.79016 5.01259 7.32015 6.16637 6.16637C7.32016 5.01259 8.79017 4.22685 10.3905 3.90852C11.9909 3.59019 13.6497 3.75357 15.1571 4.37799C16.6646 5.00242 17.9531 6.05984 18.8596 7.41655C19.7661 8.77325 20.25 10.3683 20.25 12C20.2475 14.1873 19.3775 16.2843 17.8309 17.8309C16.2843 19.3775 14.1873 20.2475 12 20.25ZM13.5 16.5C13.5 16.6989 13.421 16.8897 13.2803 17.0303C13.1397 17.171 12.9489 17.25 12.75 17.25C12.3522 17.25 11.9706 17.092 11.6893 16.8107C11.408 16.5294 11.25 16.1478 11.25 15.75V12C11.0511 12 10.8603 11.921 10.7197 11.7803C10.579 11.6397 10.5 11.4489 10.5 11.25C10.5 11.0511 10.579 10.8603 10.7197 10.7197C10.8603 10.579 11.0511 10.5 11.25 10.5C11.6478 10.5 12.0294 10.658 12.3107 10.9393C12.592 11.2206 12.75 11.6022 12.75 12V15.75C12.9489 15.75 13.1397 15.829 13.2803 15.9697C13.421 16.1103 13.5 16.3011 13.5 16.5ZM10.5 7.875C10.5 7.6525 10.566 7.43499 10.6896 7.24998C10.8132 7.06498 10.9889 6.92078 11.1945 6.83564C11.4001 6.75049 11.6263 6.72821 11.8445 6.77162C12.0627 6.81502 12.2632 6.92217 12.4205 7.0795C12.5778 7.23684 12.685 7.43729 12.7284 7.65552C12.7718 7.87375 12.7495 8.09995 12.6644 8.30552C12.5792 8.51109 12.435 8.68679 12.25 8.8104C12.065 8.93402 11.8475 9 11.625 9C11.3266 9 11.0405 8.88147 10.8295 8.6705C10.6185 8.45952 10.5 8.17337 10.5 7.875Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Info (fill, node 5162:928) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM11.625 6.75C11.8475 6.75 12.065 6.81598 12.25 6.9396C12.435 7.06321 12.5792 7.23891 12.6644 7.44448C12.7495 7.65005 12.7718 7.87625 12.7284 8.09448C12.685 8.31271 12.5778 8.51316 12.4205 8.6705C12.2632 8.82783 12.0627 8.93498 11.8445 8.97838C11.6263 9.02179 11.4001 8.99951 11.1945 8.91436C10.9889 8.82922 10.8132 8.68502 10.6896 8.50002C10.566 8.31501 10.5 8.0975 10.5 7.875C10.5 7.57663 10.6185 7.29048 10.8295 7.0795C11.0405 6.86853 11.3266 6.75 11.625 6.75ZM12.75 17.25C12.3522 17.25 11.9706 17.092 11.6893 16.8107C11.408 16.5294 11.25 16.1478 11.25 15.75V12C11.0511 12 10.8603 11.921 10.7197 11.7803C10.579 11.6397 10.5 11.4489 10.5 11.25C10.5 11.0511 10.579 10.8603 10.7197 10.7197C10.8603 10.579 11.0511 10.5 11.25 10.5C11.6478 10.5 12.0294 10.658 12.3107 10.9393C12.592 11.2206 12.75 11.6022 12.75 12V15.75C12.9489 15.75 13.1397 15.829 13.2803 15.9697C13.421 16.1103 13.5 16.3011 13.5 16.5C13.5 16.6989 13.421 16.8897 13.2803 17.0303C13.1397 17.171 12.9489 17.25 12.75 17.25Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Help",
      "category": "status",
      "lineDrawable": "aurum_ic_status_help",
      "fillDrawable": "aurum_ic_status_help_filled",
      "lineFigmaNodeId": "5162:1091",
      "fillFigmaNodeId": "5162:976",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1091",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-976",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Question (line, node 5162:1091) -->\n<path d=\"M13.125 16.875C13.125 17.0975 13.059 17.315 12.9354 17.5C12.8118 17.685 12.6361 17.8292 12.4305 17.9144C12.225 17.9995 11.9988 18.0218 11.7805 17.9784C11.5623 17.935 11.3618 17.8278 11.2045 17.6705C11.0472 17.5132 10.94 17.3127 10.8966 17.0945C10.8532 16.8762 10.8755 16.65 10.9606 16.4445C11.0458 16.2389 11.19 16.0632 11.375 15.9396C11.56 15.816 11.7775 15.75 12 15.75C12.2984 15.75 12.5845 15.8685 12.7955 16.0795C13.0065 16.2905 13.125 16.5766 13.125 16.875ZM12 6.75C9.93188 6.75 8.25 8.26406 8.25 10.125V10.5C8.25 10.6989 8.32902 10.8897 8.46967 11.0303C8.61033 11.171 8.80109 11.25 9 11.25C9.19892 11.25 9.38968 11.171 9.53033 11.0303C9.67099 10.8897 9.75 10.6989 9.75 10.5V10.125C9.75 9.09375 10.7597 8.25 12 8.25C13.2403 8.25 14.25 9.09375 14.25 10.125C14.25 11.1562 13.2403 12 12 12C11.8011 12 11.6103 12.079 11.4697 12.2197C11.329 12.3603 11.25 12.5511 11.25 12.75V13.5C11.25 13.6989 11.329 13.8897 11.4697 14.0303C11.6103 14.171 11.8011 14.25 12 14.25C12.1989 14.25 12.3897 14.171 12.5303 14.0303C12.671 13.8897 12.75 13.6989 12.75 13.5V13.4325C14.46 13.1184 15.75 11.7544 15.75 10.125C15.75 8.26406 14.0681 6.75 12 6.75ZM21.75 12C21.75 13.9284 21.1782 15.8134 20.1068 17.4168C19.0355 19.0202 17.5127 20.2699 15.7312 21.0078C13.9496 21.7458 11.9892 21.9389 10.0979 21.5627C8.20656 21.1865 6.46928 20.2579 5.10571 18.8943C3.74215 17.5307 2.81355 15.7934 2.43735 13.9021C2.06114 12.0108 2.25422 10.0504 2.99218 8.26884C3.73013 6.48726 4.97982 4.96451 6.58319 3.89317C8.18657 2.82183 10.0716 2.25 12 2.25C14.585 2.25273 17.0634 3.28084 18.8913 5.10872C20.7192 6.93661 21.7473 9.41498 21.75 12ZM20.25 12C20.25 10.3683 19.7661 8.77325 18.8596 7.41655C17.9531 6.05984 16.6646 5.00242 15.1571 4.37799C13.6497 3.75357 11.9909 3.59019 10.3905 3.90852C8.79017 4.22685 7.32016 5.01259 6.16637 6.16637C5.01259 7.32015 4.22685 8.79016 3.90853 10.3905C3.5902 11.9908 3.75358 13.6496 4.378 15.1571C5.00242 16.6646 6.05984 17.9531 7.41655 18.8596C8.77326 19.7661 10.3683 20.25 12 20.25C14.1873 20.2475 16.2843 19.3775 17.8309 17.8309C19.3775 16.2843 20.2475 14.1873 20.25 12Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Question (fill, node 5162:976) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM12 18C11.7775 18 11.56 17.934 11.375 17.8104C11.19 17.6868 11.0458 17.5111 10.9606 17.3055C10.8755 17.1 10.8532 16.8738 10.8966 16.6555C10.94 16.4373 11.0472 16.2368 11.2045 16.0795C11.3618 15.9222 11.5623 15.815 11.7805 15.7716C11.9988 15.7282 12.225 15.7505 12.4305 15.8356C12.6361 15.9208 12.8118 16.065 12.9354 16.25C13.059 16.435 13.125 16.6525 13.125 16.875C13.125 17.1734 13.0065 17.4595 12.7955 17.6705C12.5845 17.8815 12.2984 18 12 18ZM12.75 13.4325V13.5C12.75 13.6989 12.671 13.8897 12.5303 14.0303C12.3897 14.171 12.1989 14.25 12 14.25C11.8011 14.25 11.6103 14.171 11.4697 14.0303C11.329 13.8897 11.25 13.6989 11.25 13.5V12.75C11.25 12.5511 11.329 12.3603 11.4697 12.2197C11.6103 12.079 11.8011 12 12 12C13.2403 12 14.25 11.1562 14.25 10.125C14.25 9.09375 13.2403 8.25 12 8.25C10.7597 8.25 9.75 9.09375 9.75 10.125V10.5C9.75 10.6989 9.67099 10.8897 9.53033 11.0303C9.38968 11.171 9.19892 11.25 9 11.25C8.80109 11.25 8.61033 11.171 8.46967 11.0303C8.32902 10.8897 8.25 10.6989 8.25 10.5V10.125C8.25 8.26406 9.93188 6.75 12 6.75C14.0681 6.75 15.75 8.26406 15.75 10.125C15.75 11.7544 14.46 13.1184 12.75 13.4325Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Pending",
      "category": "status",
      "lineDrawable": "aurum_ic_status_pending",
      "fillDrawable": "aurum_ic_status_pending_filled",
      "lineFigmaNodeId": "5322:1579",
      "fillFigmaNodeId": "5322:1580",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1579",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1580",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Pending (line, node 5322:1579) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM12 20.25C10.3683 20.25 8.77326 19.7661 7.41655 18.8596C6.05984 17.9531 5.00242 16.6646 4.378 15.1571C3.75358 13.6496 3.5902 11.9908 3.90853 10.3905C4.22685 8.79016 5.01259 7.32015 6.16637 6.16637C7.32016 5.01259 8.79017 4.22685 10.3905 3.90852C11.9909 3.59019 13.6497 3.75357 15.1571 4.37799C16.6646 5.00242 17.9531 6.05984 18.8596 7.41655C19.7661 8.77325 20.25 10.3683 20.25 12C20.2475 14.1873 19.3775 16.2843 17.8309 17.8309C16.2843 19.3775 14.1873 20.2475 12 20.25ZM18 12C18 12.1989 17.921 12.3897 17.7803 12.5303C17.6397 12.671 17.4489 12.75 17.25 12.75H12C11.8011 12.75 11.6103 12.671 11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V6.75C11.25 6.55109 11.329 6.36032 11.4697 6.21967C11.6103 6.07902 11.8011 6 12 6C12.1989 6 12.3897 6.07902 12.5303 6.21967C12.671 6.36032 12.75 6.55109 12.75 6.75V11.25H17.25C17.4489 11.25 17.6397 11.329 17.7803 11.4697C17.921 11.6103 18 11.8011 18 12Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Pending (fill, node 5322:1580) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM17.25 12.75H12C11.8011 12.75 11.6103 12.671 11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V6.75C11.25 6.55109 11.329 6.36032 11.4697 6.21967C11.6103 6.07902 11.8011 6 12 6C12.1989 6 12.3897 6.07902 12.5303 6.21967C12.671 6.36032 12.75 6.55109 12.75 6.75V11.25H17.25C17.4489 11.25 17.6397 11.329 17.7803 11.4697C17.921 11.6103 18 11.8011 18 12C18 12.1989 17.921 12.3897 17.7803 12.5303C17.6397 12.671 17.4489 12.75 17.25 12.75Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Warning",
      "category": "status",
      "lineDrawable": "aurum_ic_status_warning",
      "fillDrawable": "aurum_ic_status_warning_filled",
      "lineFigmaNodeId": "5308:802",
      "fillFigmaNodeId": "5308:805",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5308-802",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5308-805",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Warning (line, node 5308:802) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96452 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46927 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM11.25 7.5C11.25 7.30109 11.329 7.11032 11.4697 6.96967C11.6103 6.82902 11.8011 6.75 12 6.75C12.1989 6.75 12.3897 6.82902 12.5303 6.96967C12.671 7.11032 12.75 7.30109 12.75 7.5V12.75C12.75 12.9489 12.671 13.1397 12.5303 13.2803C12.3897 13.421 12.1989 13.5 12 13.5C11.8011 13.5 11.6103 13.421 11.4697 13.2803C11.329 13.1397 11.25 12.9489 11.25 12.75V7.5ZM12 17.25C11.7775 17.25 11.56 17.184 11.375 17.0604C11.19 16.9368 11.0458 16.7611 10.9606 16.5555C10.8755 16.35 10.8532 16.1238 10.8966 15.9055C10.94 15.6873 11.0472 15.4868 11.2045 15.3295C11.3618 15.1722 11.5623 15.065 11.7805 15.0216C11.9988 14.9782 12.225 15.0005 12.4305 15.0856C12.6361 15.1708 12.8118 15.315 12.9354 15.5C13.059 15.685 13.125 15.9025 13.125 16.125C13.125 16.4234 13.0065 16.7095 12.7955 16.9205C12.5845 17.1315 12.2984 17.25 12 17.25Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Warning (fill, node 5308:805) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM12 20.25C10.3683 20.25 8.77326 19.7661 7.41655 18.8596C6.05984 17.9531 5.00242 16.6646 4.378 15.1571C3.75358 13.6496 3.5902 11.9908 3.90853 10.3905C4.22685 8.79016 5.01259 7.32015 6.16637 6.16637C7.32016 5.01259 8.79017 4.22685 10.3905 3.90852C11.9909 3.59019 13.6497 3.75357 15.1571 4.37799C16.6646 5.00242 17.9531 6.05984 18.8596 7.41655C19.7661 8.77325 20.25 10.3683 20.25 12C20.2475 14.1873 19.3775 16.2843 17.8309 17.8309C16.2843 19.3775 14.1873 20.2475 12 20.25ZM11.25 12.75V7.5C11.25 7.30109 11.329 7.11032 11.4697 6.96967C11.6103 6.82902 11.8011 6.75 12 6.75C12.1989 6.75 12.3897 6.82902 12.5303 6.96967C12.671 7.11032 12.75 7.30109 12.75 7.5V12.75C12.75 12.9489 12.671 13.1397 12.5303 13.2803C12.3897 13.421 12.1989 13.5 12 13.5C11.8011 13.5 11.6103 13.421 11.4697 13.2803C11.329 13.1397 11.25 12.9489 11.25 12.75ZM13.125 16.125C13.125 16.3475 13.059 16.565 12.9354 16.75C12.8118 16.935 12.6361 17.0792 12.4305 17.1644C12.225 17.2495 11.9988 17.2718 11.7805 17.2284C11.5623 17.185 11.3618 17.0778 11.2045 16.9205C11.0472 16.7632 10.94 16.5627 10.8966 16.3445C10.8532 16.1262 10.8755 15.9 10.9606 15.6945C11.0458 15.4889 11.19 15.3132 11.375 15.1896C11.56 15.066 11.7775 15 12 15C12.2984 15 12.5845 15.1185 12.7955 15.3295C13.0065 15.5405 13.125 15.8266 13.125 16.125Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Success",
      "category": "status",
      "lineDrawable": "aurum_ic_status_success",
      "fillDrawable": "aurum_ic_status_success_filled",
      "lineFigmaNodeId": "5311:811",
      "fillFigmaNodeId": "5311:811",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5311-811",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5311-811",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Success (line, node 5311:811) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1218 15.6557 10.039 15.6004 9.96938 15.5306L7.71938 13.2806C7.57865 13.1399 7.49959 12.949 7.49959 12.75C7.49959 12.551 7.57865 12.3601 7.71938 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44903 11.9996 8.6399 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8486 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Success (fill, node 5311:811) -->\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1218 15.6557 10.039 15.6004 9.96938 15.5306L7.71938 13.2806C7.57865 13.1399 7.49959 12.949 7.49959 12.75C7.49959 12.551 7.57865 12.3601 7.71938 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44903 11.9996 8.6399 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8486 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Loader",
      "category": "status",
      "lineDrawable": "aurum_ic_status_loader",
      "fillDrawable": "aurum_ic_status_loader_filled",
      "lineFigmaNodeId": "5480:3920",
      "fillFigmaNodeId": "5480:3920",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5480-3920",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5480-3920",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Loader (line, node 5480:3920) -->\n<path d=\"M12 3.75C11.5858 3.75 11.25 3.41421 11.25 3C11.25 2.58579 11.5858 2.25 12 2.25V3V3.75ZM18.1758 5.45327L18.6904 4.90771L18.1758 5.45327ZM3.13729 13.566L3.87584 13.4355L3.13729 13.566ZM4.47856 7.05753L5.10535 7.4694L4.47856 7.05753ZM9.74701 2.51388C10.15 2.41816 10.5543 2.66727 10.65 3.07027C10.7457 3.47328 10.4966 3.87757 10.0936 3.97328L9.92031 3.24358L9.74701 2.51388ZM12 3V2.25C14.4875 2.25 16.881 3.20078 18.6904 4.90771L18.1758 5.45327L17.6611 5.99883C16.1301 4.5545 14.1048 3.75 12 3.75V3ZM18.1758 5.45327L18.6904 4.90771C20.4999 6.61465 21.5885 8.94864 21.7334 11.4319L20.9847 11.4756L20.236 11.5193C20.1134 9.41808 19.1922 7.44316 17.6611 5.99883L18.1758 5.45327ZM20.9847 11.4756L21.7334 11.4319C21.8784 13.9152 21.0687 16.36 19.47 18.2659L18.8954 17.7839L18.3208 17.3019C19.6735 15.6892 20.3586 13.6206 20.236 11.5193L20.9847 11.4756ZM18.8954 17.7839L19.47 18.2659C17.8714 20.1717 15.6048 21.3944 13.1342 21.6838L13.047 20.9389L12.9597 20.194C15.0502 19.9491 16.9681 18.9145 18.3208 17.3019L18.8954 17.7839ZM13.047 20.9389L13.1342 21.6838C10.6636 21.9732 8.17576 21.3073 6.18002 19.8224L6.62771 19.2207L7.0754 18.619C8.7641 19.8754 10.8692 20.4388 12.9597 20.194L13.047 20.9389ZM6.62771 19.2207L6.18002 19.8224C4.18428 18.3376 2.83155 16.1461 2.39873 13.6965L3.13729 13.566L3.87584 13.4355C4.24208 15.5082 5.3867 17.3626 7.0754 18.619L6.62771 19.2207ZM3.13729 13.566L2.39873 13.6965C1.9659 11.2469 2.48572 8.72452 3.85178 6.64566L4.47856 7.05753L5.10535 7.4694C3.94946 9.22844 3.50961 11.3628 3.87584 13.4355L3.13729 13.566ZM4.47856 7.05753L3.85178 6.64566C5.21783 4.5668 7.32681 3.08868 9.74701 2.51388L9.92031 3.24358L10.0936 3.97328C8.04576 4.45966 6.26124 5.71037 5.10535 7.4694L4.47856 7.05753Z\" fill=\"#121212\"/>\n<path d=\"M12 3.75C11.5858 3.75 11.25 3.41421 11.25 3C11.25 2.58579 11.5858 2.25 12 2.25V3V3.75ZM18.1758 5.45327L18.6904 4.90771L18.1758 5.45327ZM3.13729 13.566L3.87584 13.4355L3.13729 13.566ZM4.47856 7.05753L5.10535 7.4694L4.47856 7.05753ZM9.74701 2.51388C10.15 2.41816 10.5543 2.66727 10.65 3.07027C10.7457 3.47328 10.4966 3.87757 10.0936 3.97328L9.92031 3.24358L9.74701 2.51388ZM12 3V2.25C14.4875 2.25 16.881 3.20078 18.6904 4.90771L18.1758 5.45327L17.6611 5.99883C16.1301 4.5545 14.1048 3.75 12 3.75V3ZM18.1758 5.45327L18.6904 4.90771C20.4999 6.61465 21.5885 8.94864 21.7334 11.4319L20.9847 11.4756L20.236 11.5193C20.1134 9.41808 19.1922 7.44316 17.6611 5.99883L18.1758 5.45327ZM20.9847 11.4756L21.7334 11.4319C21.8784 13.9152 21.0687 16.36 19.47 18.2659L18.8954 17.7839L18.3208 17.3019C19.6735 15.6892 20.3586 13.6206 20.236 11.5193L20.9847 11.4756ZM18.8954 17.7839L19.47 18.2659C17.8714 20.1717 15.6048 21.3944 13.1342 21.6838L13.047 20.9389L12.9597 20.194C15.0502 19.9491 16.9681 18.9145 18.3208 17.3019L18.8954 17.7839ZM13.047 20.9389L13.1342 21.6838C10.6636 21.9732 8.17576 21.3073 6.18002 19.8224L6.62771 19.2207L7.0754 18.619C8.7641 19.8754 10.8692 20.4388 12.9597 20.194L13.047 20.9389ZM6.62771 19.2207L6.18002 19.8224C4.18428 18.3376 2.83155 16.1461 2.39873 13.6965L3.13729 13.566L3.87584 13.4355C4.24208 15.5082 5.3867 17.3626 7.0754 18.619L6.62771 19.2207ZM3.13729 13.566L2.39873 13.6965C1.9659 11.2469 2.48572 8.72452 3.85178 6.64566L4.47856 7.05753L5.10535 7.4694C3.94946 9.22844 3.50961 11.3628 3.87584 13.4355L3.13729 13.566ZM4.47856 7.05753L3.85178 6.64566C5.21783 4.5668 7.32681 3.08868 9.74701 2.51388L9.92031 3.24358L10.0936 3.97328C8.04576 4.45966 6.26124 5.71037 5.10535 7.4694L4.47856 7.05753Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Loader (fill, node 5480:3920) -->\n<path d=\"M12 3.75C11.5858 3.75 11.25 3.41421 11.25 3C11.25 2.58579 11.5858 2.25 12 2.25V3V3.75ZM18.1758 5.45327L18.6904 4.90771L18.1758 5.45327ZM3.13729 13.566L3.87584 13.4355L3.13729 13.566ZM4.47856 7.05753L5.10535 7.4694L4.47856 7.05753ZM9.74701 2.51388C10.15 2.41816 10.5543 2.66727 10.65 3.07027C10.7457 3.47328 10.4966 3.87757 10.0936 3.97328L9.92031 3.24358L9.74701 2.51388ZM12 3V2.25C14.4875 2.25 16.881 3.20078 18.6904 4.90771L18.1758 5.45327L17.6611 5.99883C16.1301 4.5545 14.1048 3.75 12 3.75V3ZM18.1758 5.45327L18.6904 4.90771C20.4999 6.61465 21.5885 8.94864 21.7334 11.4319L20.9847 11.4756L20.236 11.5193C20.1134 9.41808 19.1922 7.44316 17.6611 5.99883L18.1758 5.45327ZM20.9847 11.4756L21.7334 11.4319C21.8784 13.9152 21.0687 16.36 19.47 18.2659L18.8954 17.7839L18.3208 17.3019C19.6735 15.6892 20.3586 13.6206 20.236 11.5193L20.9847 11.4756ZM18.8954 17.7839L19.47 18.2659C17.8714 20.1717 15.6048 21.3944 13.1342 21.6838L13.047 20.9389L12.9597 20.194C15.0502 19.9491 16.9681 18.9145 18.3208 17.3019L18.8954 17.7839ZM13.047 20.9389L13.1342 21.6838C10.6636 21.9732 8.17576 21.3073 6.18002 19.8224L6.62771 19.2207L7.0754 18.619C8.7641 19.8754 10.8692 20.4388 12.9597 20.194L13.047 20.9389ZM6.62771 19.2207L6.18002 19.8224C4.18428 18.3376 2.83155 16.1461 2.39873 13.6965L3.13729 13.566L3.87584 13.4355C4.24208 15.5082 5.3867 17.3626 7.0754 18.619L6.62771 19.2207ZM3.13729 13.566L2.39873 13.6965C1.9659 11.2469 2.48572 8.72452 3.85178 6.64566L4.47856 7.05753L5.10535 7.4694C3.94946 9.22844 3.50961 11.3628 3.87584 13.4355L3.13729 13.566ZM4.47856 7.05753L3.85178 6.64566C5.21783 4.5668 7.32681 3.08868 9.74701 2.51388L9.92031 3.24358L10.0936 3.97328C8.04576 4.45966 6.26124 5.71037 5.10535 7.4694L4.47856 7.05753Z\" fill=\"#121212\"/>\n<path d=\"M12 3.75C11.5858 3.75 11.25 3.41421 11.25 3C11.25 2.58579 11.5858 2.25 12 2.25V3V3.75ZM18.1758 5.45327L18.6904 4.90771L18.1758 5.45327ZM3.13729 13.566L3.87584 13.4355L3.13729 13.566ZM4.47856 7.05753L5.10535 7.4694L4.47856 7.05753ZM9.74701 2.51388C10.15 2.41816 10.5543 2.66727 10.65 3.07027C10.7457 3.47328 10.4966 3.87757 10.0936 3.97328L9.92031 3.24358L9.74701 2.51388ZM12 3V2.25C14.4875 2.25 16.881 3.20078 18.6904 4.90771L18.1758 5.45327L17.6611 5.99883C16.1301 4.5545 14.1048 3.75 12 3.75V3ZM18.1758 5.45327L18.6904 4.90771C20.4999 6.61465 21.5885 8.94864 21.7334 11.4319L20.9847 11.4756L20.236 11.5193C20.1134 9.41808 19.1922 7.44316 17.6611 5.99883L18.1758 5.45327ZM20.9847 11.4756L21.7334 11.4319C21.8784 13.9152 21.0687 16.36 19.47 18.2659L18.8954 17.7839L18.3208 17.3019C19.6735 15.6892 20.3586 13.6206 20.236 11.5193L20.9847 11.4756ZM18.8954 17.7839L19.47 18.2659C17.8714 20.1717 15.6048 21.3944 13.1342 21.6838L13.047 20.9389L12.9597 20.194C15.0502 19.9491 16.9681 18.9145 18.3208 17.3019L18.8954 17.7839ZM13.047 20.9389L13.1342 21.6838C10.6636 21.9732 8.17576 21.3073 6.18002 19.8224L6.62771 19.2207L7.0754 18.619C8.7641 19.8754 10.8692 20.4388 12.9597 20.194L13.047 20.9389ZM6.62771 19.2207L6.18002 19.8224C4.18428 18.3376 2.83155 16.1461 2.39873 13.6965L3.13729 13.566L3.87584 13.4355C4.24208 15.5082 5.3867 17.3626 7.0754 18.619L6.62771 19.2207ZM3.13729 13.566L2.39873 13.6965C1.9659 11.2469 2.48572 8.72452 3.85178 6.64566L4.47856 7.05753L5.10535 7.4694C3.94946 9.22844 3.50961 11.3628 3.87584 13.4355L3.13729 13.566ZM4.47856 7.05753L3.85178 6.64566C5.21783 4.5668 7.32681 3.08868 9.74701 2.51388L9.92031 3.24358L10.0936 3.97328C8.04576 4.45966 6.26124 5.71037 5.10535 7.4694L4.47856 7.05753Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Timer",
      "category": "status",
      "lineDrawable": "aurum_ic_status_timer",
      "fillDrawable": "aurum_ic_status_timer_filled",
      "lineFigmaNodeId": "5896:644",
      "fillFigmaNodeId": "5896:645",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5896-644",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5896-645",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Timer (line, node 5896:644) -->\n<path d=\"M12 3.75C10.22 3.75 8.47991 4.27784 6.99987 5.26677C5.51983 6.25571 4.36628 7.66131 3.68509 9.30585C3.0039 10.9504 2.82567 12.76 3.17294 14.5058C3.5202 16.2516 4.37737 17.8553 5.63604 19.114C6.89472 20.3726 8.49836 21.2298 10.2442 21.5771C11.99 21.9243 13.7996 21.7461 15.4442 21.0649C17.0887 20.3837 18.4943 19.2302 19.4832 17.7501C20.4722 16.2701 21 14.53 21 12.75C20.9973 10.3639 20.0482 8.07629 18.361 6.38905C16.6737 4.70182 14.3861 3.75273 12 3.75ZM12 20.25C10.5166 20.25 9.0666 19.8101 7.83323 18.986C6.59986 18.1619 5.63856 16.9906 5.07091 15.6201C4.50325 14.2497 4.35473 12.7417 4.64411 11.2868C4.9335 9.83197 5.64781 8.49559 6.6967 7.4467C7.7456 6.39781 9.08197 5.6835 10.5368 5.39411C11.9917 5.10472 13.4997 5.25325 14.8701 5.8209C16.2406 6.38856 17.4119 7.34986 18.236 8.58322C19.0601 9.81659 19.5 11.2666 19.5 12.75C19.4978 14.7384 18.7069 16.6448 17.3008 18.0508C15.8948 19.4569 13.9884 20.2478 12 20.25ZM16.2806 8.46938C16.3504 8.53903 16.4057 8.62175 16.4434 8.7128C16.4812 8.80384 16.5006 8.90144 16.5006 9C16.5006 9.09856 16.4812 9.19616 16.4434 9.28721C16.4057 9.37825 16.3504 9.46097 16.2806 9.53063L12.5306 13.2806C12.4609 13.3503 12.3782 13.4056 12.2872 13.4433C12.1961 13.481 12.0986 13.5004 12 13.5004C11.9015 13.5004 11.8039 13.481 11.7128 13.4433C11.6218 13.4056 11.5391 13.3503 11.4694 13.2806C11.3997 13.2109 11.3444 13.1282 11.3067 13.0372C11.269 12.9461 11.2496 12.8485 11.2496 12.75C11.2496 12.6515 11.269 12.5539 11.3067 12.4628C11.3444 12.3718 11.3997 12.2891 11.4694 12.2194L15.2194 8.46938C15.289 8.39964 15.3718 8.34432 15.4628 8.30658C15.5538 8.26884 15.6514 8.24941 15.75 8.24941C15.8486 8.24941 15.9462 8.26884 16.0372 8.30658C16.1283 8.34432 16.211 8.39964 16.2806 8.46938ZM9 1.5C9 1.30109 9.07902 1.11032 9.21967 0.96967C9.36033 0.829018 9.55109 0.75 9.75 0.75H14.25C14.4489 0.75 14.6397 0.829018 14.7803 0.96967C14.921 1.11032 15 1.30109 15 1.5C15 1.69891 14.921 1.88968 14.7803 2.03033C14.6397 2.17098 14.4489 2.25 14.25 2.25H9.75C9.55109 2.25 9.36033 2.17098 9.21967 2.03033C9.07902 1.88968 9 1.69891 9 1.5Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Timer (fill, node 5896:645) -->\n<path d=\"M12 3.75C10.22 3.75 8.47991 4.27784 6.99987 5.26677C5.51983 6.25571 4.36628 7.66131 3.68509 9.30585C3.0039 10.9504 2.82567 12.76 3.17294 14.5058C3.5202 16.2516 4.37737 17.8553 5.63604 19.114C6.89472 20.3726 8.49836 21.2298 10.2442 21.5771C11.99 21.9243 13.7996 21.7461 15.4442 21.0649C17.0887 20.3837 18.4943 19.2302 19.4832 17.7501C20.4722 16.2701 21 14.53 21 12.75C20.9973 10.3639 20.0482 8.07629 18.361 6.38905C16.6737 4.70182 14.3861 3.75273 12 3.75ZM16.2806 9.53063L12.5306 13.2806C12.4609 13.3503 12.3782 13.4056 12.2872 13.4433C12.1961 13.481 12.0986 13.5004 12 13.5004C11.9015 13.5004 11.8039 13.481 11.7128 13.4433C11.6218 13.4056 11.5391 13.3503 11.4694 13.2806C11.3997 13.2109 11.3444 13.1282 11.3067 13.0372C11.269 12.9461 11.2496 12.8485 11.2496 12.75C11.2496 12.6515 11.269 12.5539 11.3067 12.4628C11.3444 12.3718 11.3997 12.2891 11.4694 12.2194L15.2194 8.46938C15.2891 8.39969 15.3718 8.34442 15.4628 8.30671C15.5539 8.26899 15.6515 8.24958 15.75 8.24958C15.8486 8.24958 15.9461 8.26899 16.0372 8.30671C16.1282 8.34442 16.2109 8.39969 16.2806 8.46938C16.3503 8.53906 16.4056 8.62178 16.4433 8.71283C16.481 8.80387 16.5004 8.90145 16.5004 9C16.5004 9.09855 16.481 9.19613 16.4433 9.28717C16.4056 9.37822 16.3503 9.46094 16.2806 9.53063ZM9 1.5C9 1.30109 9.07902 1.11032 9.21967 0.96967C9.36033 0.829018 9.55109 0.75 9.75 0.75H14.25C14.4489 0.75 14.6397 0.829018 14.7803 0.96967C14.921 1.11032 15 1.30109 15 1.5C15 1.69891 14.921 1.88968 14.7803 2.03033C14.6397 2.17098 14.4489 2.25 14.25 2.25H9.75C9.55109 2.25 9.36033 2.17098 9.21967 2.03033C9.07902 1.88968 9 1.69891 9 1.5Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Home",
      "category": "user",
      "lineDrawable": "aurum_ic_user_home",
      "fillDrawable": "aurum_ic_user_home_filled",
      "lineFigmaNodeId": "5162:1029",
      "fillFigmaNodeId": "5162:914",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1029",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-914",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Home (line, node 5162:1029) -->\n<path d=\"M3 10.429C3 9.74207 3.33424 9.09816 3.89598 8.70286L10.7853 3.85477C11.5139 3.34204 12.486 3.34204 13.2147 3.85477L20.104 8.70286C20.6658 9.09816 21 9.74207 21 10.429V19C21 20.1046 20.1046 21 19 21H17H15.6154C15.2755 21 15 20.7245 15 20.3846V16C15 14.3431 13.6569 13 12 13C10.3431 13 9 14.3431 9 16V20.3846C9 20.7245 8.72448 21 8.38462 21H7H5C3.89543 21 3 20.1046 3 19V10.429Z\" fill=\"none\" stroke=\"#121212\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Home (fill, node 5162:914) -->\n<path d=\"M3 10.429C3 9.74207 3.33424 9.09816 3.89598 8.70286L10.7853 3.85477C11.5139 3.34204 12.486 3.34204 13.2147 3.85477L20.104 8.70286C20.6658 9.09816 21 9.74207 21 10.429V19C21 20.1046 20.1046 21 19 21H17H14.6154C14.2755 21 14 20.7245 14 20.3846V15C14 13.8954 13.1046 13 12 13C10.8954 13 10 13.8954 10 15V20.3846C10 20.7245 9.72448 21 9.38462 21H7H5C3.89543 21 3 20.1046 3 19V10.429Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "User",
      "category": "user",
      "lineDrawable": "aurum_ic_user_user",
      "fillDrawable": "aurum_ic_user_user_filled",
      "lineFigmaNodeId": "5162:1041",
      "fillFigmaNodeId": "5162:926",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1041",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-926",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: User (line, node 5162:1041) -->\n<path d=\"M21.6484 19.8751C20.2206 17.4067 18.0203 15.6367 15.4525 14.7976C16.7226 14.0415 17.7094 12.8893 18.2614 11.518C18.8134 10.1468 18.8999 8.63224 18.5078 7.20701C18.1157 5.78178 17.2666 4.52467 16.0909 3.62873C14.9151 2.73279 13.4778 2.24756 11.9996 2.24756C10.5215 2.24756 9.08414 2.73279 7.90842 3.62873C6.73269 4.52467 5.88358 5.78178 5.49146 7.20701C5.09935 8.63224 5.18592 10.1468 5.73788 11.518C6.28984 12.8893 7.27668 14.0415 8.54683 14.7976C5.97902 15.6357 3.77871 17.4057 2.35089 19.8751C2.29853 19.9605 2.2638 20.0555 2.24875 20.1545C2.2337 20.2535 2.23863 20.3545 2.26326 20.4516C2.28789 20.5487 2.33171 20.6399 2.39214 20.7197C2.45257 20.7996 2.52838 20.8666 2.6151 20.9167C2.70183 20.9667 2.79771 20.999 2.89709 21.0114C2.99647 21.0238 3.09733 21.0163 3.19373 20.9891C3.29012 20.9619 3.3801 20.9157 3.45835 20.8532C3.5366 20.7907 3.60154 20.7131 3.64933 20.6251C5.41558 17.5726 8.53746 15.7501 11.9996 15.7501C15.4618 15.7501 18.5837 17.5726 20.35 20.6251C20.3977 20.7131 20.4627 20.7907 20.5409 20.8532C20.6192 20.9157 20.7092 20.9619 20.8056 20.9891C20.902 21.0163 21.0028 21.0238 21.1022 21.0114C21.2016 20.999 21.2975 20.9667 21.3842 20.9167C21.4709 20.8666 21.5467 20.7996 21.6072 20.7197C21.6676 20.6399 21.7114 20.5487 21.736 20.4516C21.7607 20.3545 21.7656 20.2535 21.7505 20.1545C21.7355 20.0555 21.7008 19.9605 21.6484 19.8751ZM6.74964 9.00011C6.74964 7.96176 7.05755 6.94672 7.63443 6.08337C8.21131 5.22001 9.03124 4.5471 9.99056 4.14974C10.9499 3.75238 12.0055 3.64841 13.0239 3.85099C14.0423 4.05356 14.9777 4.55357 15.712 5.2878C16.4462 6.02202 16.9462 6.95748 17.1488 7.97589C17.3513 8.99429 17.2474 10.0499 16.85 11.0092C16.4527 11.9685 15.7797 12.7884 14.9164 13.3653C14.053 13.9422 13.038 14.2501 11.9996 14.2501C10.6077 14.2486 9.27322 13.695 8.28898 12.7108C7.30473 11.7265 6.75113 10.392 6.74964 9.00011Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: User (fill, node 5162:926) -->\n<path d=\"M21.6499 20.6246C21.5841 20.7387 21.4894 20.8334 21.3753 20.8992C21.2613 20.965 21.1319 20.9997 21.0002 20.9996H3.00021C2.86862 20.9995 2.73938 20.9647 2.62548 20.8989C2.51157 20.833 2.417 20.7383 2.35127 20.6243C2.28553 20.5103 2.25094 20.381 2.25098 20.2494C2.25101 20.1178 2.28566 19.9886 2.35146 19.8746C3.77927 17.4062 5.97958 15.6362 8.54739 14.7971C7.27724 14.041 6.29041 12.8888 5.73845 11.5176C5.18648 10.1463 5.09991 8.63175 5.49203 7.20652C5.88414 5.78129 6.73326 4.52418 7.90898 3.62824C9.0847 2.7323 10.522 2.24707 12.0002 2.24707C13.4784 2.24707 14.9157 2.7323 16.0914 3.62824C17.2672 4.52418 18.1163 5.78129 18.5084 7.20652C18.9005 8.63175 18.8139 10.1463 18.262 11.5176C17.71 12.8888 16.7232 14.041 15.453 14.7971C18.0208 15.6362 20.2211 17.4062 21.649 19.8746C21.7149 19.9886 21.7497 20.1178 21.7499 20.2495C21.7501 20.3811 21.7156 20.5105 21.6499 20.6246Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Location",
      "category": "user",
      "lineDrawable": "aurum_ic_user_location",
      "fillDrawable": "aurum_ic_user_location_filled",
      "lineFigmaNodeId": "5162:1135",
      "fillFigmaNodeId": "5162:1021",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1135",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1021",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: MapPin (line, node 5162:1135) -->\n<path d=\"M12 6C11.2583 6 10.5333 6.21993 9.91661 6.63199C9.29993 7.04404 8.81928 7.62971 8.53545 8.31494C8.25162 9.00016 8.17736 9.75416 8.32205 10.4816C8.46675 11.209 8.8239 11.8772 9.34835 12.4017C9.8728 12.9261 10.541 13.2833 11.2684 13.4279C11.9958 13.5726 12.7498 13.4984 13.4351 13.2145C14.1203 12.9307 14.706 12.4501 15.118 11.8334C15.5301 11.2167 15.75 10.4917 15.75 9.75C15.75 8.75544 15.3549 7.80161 14.6517 7.09835C13.9484 6.39509 12.9946 6 12 6ZM12 12C11.555 12 11.12 11.868 10.75 11.6208C10.38 11.3736 10.0916 11.0222 9.92127 10.611C9.75097 10.1999 9.70642 9.7475 9.79323 9.31105C9.88005 8.87459 10.0943 8.47368 10.409 8.15901C10.7237 7.84434 11.1246 7.63005 11.561 7.54323C11.9975 7.45642 12.4499 7.50097 12.861 7.67127C13.2722 7.84157 13.6236 8.12996 13.8708 8.49997C14.118 8.86998 14.25 9.30499 14.25 9.75C14.25 10.3467 14.0129 10.919 13.591 11.341C13.169 11.7629 12.5967 12 12 12ZM12 1.5C9.81273 1.50248 7.71575 2.37247 6.16911 3.91911C4.62247 5.46575 3.75248 7.56273 3.75 9.75C3.75 12.6938 5.11031 15.8138 7.6875 18.7734C8.84552 20.1108 10.1489 21.3151 11.5734 22.3641C11.6995 22.4524 11.8498 22.4998 12.0037 22.4998C12.1577 22.4998 12.308 22.4524 12.4341 22.3641C13.856 21.3147 15.1568 20.1104 16.3125 18.7734C18.8859 15.8138 20.25 12.6938 20.25 9.75C20.2475 7.56273 19.3775 5.46575 17.8309 3.91911C16.2843 2.37247 14.1873 1.50248 12 1.5ZM12 20.8125C10.4503 19.5938 5.25 15.1172 5.25 9.75C5.25 7.95979 5.96116 6.2429 7.22703 4.97703C8.4929 3.71116 10.2098 3 12 3C13.7902 3 15.5071 3.71116 16.773 4.97703C18.0388 6.2429 18.75 7.95979 18.75 9.75C18.75 15.1153 13.5497 19.5938 12 20.8125Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: MapPin (fill, node 5162:1021) -->\n<path d=\"M12 1.5C9.81273 1.50248 7.71575 2.37247 6.16911 3.91911C4.62247 5.46575 3.75248 7.56273 3.75 9.75C3.75 16.8094 11.25 22.1409 11.5697 22.3641C11.6958 22.4524 11.846 22.4998 12 22.4998C12.154 22.4998 12.3042 22.4524 12.4303 22.3641C12.75 22.1409 20.25 16.8094 20.25 9.75C20.2475 7.56273 19.3775 5.46575 17.8309 3.91911C16.2843 2.37247 14.1873 1.50248 12 1.5ZM12 6.75C12.5933 6.75 13.1734 6.92595 13.6667 7.25559C14.1601 7.58524 14.5446 8.05377 14.7716 8.60195C14.9987 9.15013 15.0581 9.75333 14.9424 10.3353C14.8266 10.9172 14.5409 11.4518 14.1213 11.8713C13.7018 12.2909 13.1672 12.5766 12.5853 12.6924C12.0033 12.8081 11.4001 12.7487 10.8519 12.5216C10.3038 12.2946 9.83524 11.9101 9.50559 11.4167C9.17595 10.9234 9 10.3433 9 9.75C9 8.95435 9.31607 8.19129 9.87868 7.62868C10.4413 7.06607 11.2044 6.75 12 6.75Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Calendar",
      "category": "user",
      "lineDrawable": "aurum_ic_user_calendar",
      "fillDrawable": "aurum_ic_user_calendar_filled",
      "lineFigmaNodeId": "5162:1125",
      "fillFigmaNodeId": "5162:1010",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1125",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1010",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CalendarDots (line, node 5162:1125) -->\n<path d=\"M19.5 3H17.25V2.25C17.25 2.05109 17.171 1.86032 17.0303 1.71967C16.8897 1.57902 16.6989 1.5 16.5 1.5C16.3011 1.5 16.1103 1.57902 15.9697 1.71967C15.829 1.86032 15.75 2.05109 15.75 2.25V3H8.25V2.25C8.25 2.05109 8.17098 1.86032 8.03033 1.71967C7.88968 1.57902 7.69891 1.5 7.5 1.5C7.30109 1.5 7.11032 1.57902 6.96967 1.71967C6.82902 1.86032 6.75 2.05109 6.75 2.25V3H4.5C4.10218 3 3.72064 3.15804 3.43934 3.43934C3.15804 3.72064 3 4.10218 3 4.5V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V4.5C21 4.10218 20.842 3.72064 20.5607 3.43934C20.2794 3.15804 19.8978 3 19.5 3ZM6.75 4.5V5.25C6.75 5.44891 6.82902 5.63968 6.96967 5.78033C7.11032 5.92098 7.30109 6 7.5 6C7.69891 6 7.88968 5.92098 8.03033 5.78033C8.17098 5.63968 8.25 5.44891 8.25 5.25V4.5H15.75V5.25C15.75 5.44891 15.829 5.63968 15.9697 5.78033C16.1103 5.92098 16.3011 6 16.5 6C16.6989 6 16.8897 5.92098 17.0303 5.78033C17.171 5.63968 17.25 5.44891 17.25 5.25V4.5H19.5V7.5H4.5V4.5H6.75ZM19.5 19.5H4.5V9H19.5V19.5ZM13.125 12.375C13.125 12.5975 13.059 12.815 12.9354 13C12.8118 13.185 12.6361 13.3292 12.4305 13.4144C12.225 13.4995 11.9988 13.5218 11.7805 13.4784C11.5623 13.435 11.3618 13.3278 11.2045 13.1705C11.0472 13.0132 10.94 12.8127 10.8966 12.5945C10.8532 12.3762 10.8755 12.15 10.9606 11.9445C11.0458 11.7389 11.19 11.5632 11.375 11.4396C11.56 11.316 11.7775 11.25 12 11.25C12.2984 11.25 12.5845 11.3685 12.7955 11.5795C13.0065 11.7905 13.125 12.0766 13.125 12.375ZM17.25 12.375C17.25 12.5975 17.184 12.815 17.0604 13C16.9368 13.185 16.7611 13.3292 16.5555 13.4144C16.35 13.4995 16.1238 13.5218 15.9055 13.4784C15.6873 13.435 15.4868 13.3278 15.3295 13.1705C15.1722 13.0132 15.065 12.8127 15.0216 12.5945C14.9782 12.3762 15.0005 12.15 15.0856 11.9445C15.1708 11.7389 15.315 11.5632 15.5 11.4396C15.685 11.316 15.9025 11.25 16.125 11.25C16.4234 11.25 16.7095 11.3685 16.9205 11.5795C17.1315 11.7905 17.25 12.0766 17.25 12.375ZM9 16.125C9 16.3475 8.93402 16.565 8.8104 16.75C8.68679 16.935 8.51109 17.0792 8.30552 17.1644C8.09995 17.2495 7.87375 17.2718 7.65552 17.2284C7.43729 17.185 7.23684 17.0778 7.0795 16.9205C6.92217 16.7632 6.81502 16.5627 6.77162 16.3445C6.72821 16.1262 6.75049 15.9 6.83564 15.6945C6.92078 15.4889 7.06498 15.3132 7.24998 15.1896C7.43499 15.066 7.6525 15 7.875 15C8.17337 15 8.45952 15.1185 8.6705 15.3295C8.88147 15.5405 9 15.8266 9 16.125ZM13.125 16.125C13.125 16.3475 13.059 16.565 12.9354 16.75C12.8118 16.935 12.6361 17.0792 12.4305 17.1644C12.225 17.2495 11.9988 17.2718 11.7805 17.2284C11.5623 17.185 11.3618 17.0778 11.2045 16.9205C11.0472 16.7632 10.94 16.5627 10.8966 16.3445C10.8532 16.1262 10.8755 15.9 10.9606 15.6945C11.0458 15.4889 11.19 15.3132 11.375 15.1896C11.56 15.066 11.7775 15 12 15C12.2984 15 12.5845 15.1185 12.7955 15.3295C13.0065 15.5405 13.125 15.8266 13.125 16.125ZM17.25 16.125C17.25 16.3475 17.184 16.565 17.0604 16.75C16.9368 16.935 16.7611 17.0792 16.5555 17.1644C16.35 17.2495 16.1238 17.2718 15.9055 17.2284C15.6873 17.185 15.4868 17.0778 15.3295 16.9205C15.1722 16.7632 15.065 16.5627 15.0216 16.3445C14.9782 16.1262 15.0005 15.9 15.0856 15.6945C15.1708 15.4889 15.315 15.3132 15.5 15.1896C15.685 15.066 15.9025 15 16.125 15C16.4234 15 16.7095 15.1185 16.9205 15.3295C17.1315 15.5405 17.25 15.8266 17.25 16.125Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: CalendarDots (fill, node 5162:1010) -->\n<path d=\"M19.5 3H17.25V2.25C17.25 2.05109 17.171 1.86032 17.0303 1.71967C16.8897 1.57902 16.6989 1.5 16.5 1.5C16.3011 1.5 16.1103 1.57902 15.9697 1.71967C15.829 1.86032 15.75 2.05109 15.75 2.25V3H8.25V2.25C8.25 2.05109 8.17098 1.86032 8.03033 1.71967C7.88968 1.57902 7.69891 1.5 7.5 1.5C7.30109 1.5 7.11032 1.57902 6.96967 1.71967C6.82902 1.86032 6.75 2.05109 6.75 2.25V3H4.5C4.10218 3 3.72064 3.15804 3.43934 3.43934C3.15804 3.72064 3 4.10218 3 4.5V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V4.5C21 4.10218 20.842 3.72064 20.5607 3.43934C20.2794 3.15804 19.8978 3 19.5 3ZM7.875 17.25C7.6525 17.25 7.43499 17.184 7.24998 17.0604C7.06498 16.9368 6.92078 16.7611 6.83564 16.5555C6.75049 16.35 6.72821 16.1238 6.77162 15.9055C6.81502 15.6873 6.92217 15.4868 7.0795 15.3295C7.23684 15.1722 7.43729 15.065 7.65552 15.0216C7.87375 14.9782 8.09995 15.0005 8.30552 15.0856C8.51109 15.1708 8.68679 15.315 8.8104 15.5C8.93402 15.685 9 15.9025 9 16.125C9 16.4234 8.88147 16.7095 8.6705 16.9205C8.45952 17.1315 8.17337 17.25 7.875 17.25ZM12 17.25C11.7775 17.25 11.56 17.184 11.375 17.0604C11.19 16.9368 11.0458 16.7611 10.9606 16.5555C10.8755 16.35 10.8532 16.1238 10.8966 15.9055C10.94 15.6873 11.0472 15.4868 11.2045 15.3295C11.3618 15.1722 11.5623 15.065 11.7805 15.0216C11.9988 14.9782 12.225 15.0005 12.4305 15.0856C12.6361 15.1708 12.8118 15.315 12.9354 15.5C13.059 15.685 13.125 15.9025 13.125 16.125C13.125 16.4234 13.0065 16.7095 12.7955 16.9205C12.5845 17.1315 12.2984 17.25 12 17.25ZM12 13.5C11.7775 13.5 11.56 13.434 11.375 13.3104C11.19 13.1868 11.0458 13.0111 10.9606 12.8055C10.8755 12.6 10.8532 12.3738 10.8966 12.1555C10.94 11.9373 11.0472 11.7368 11.2045 11.5795C11.3618 11.4222 11.5623 11.315 11.7805 11.2716C11.9988 11.2282 12.225 11.2505 12.4305 11.3356C12.6361 11.4208 12.8118 11.565 12.9354 11.75C13.059 11.935 13.125 12.1525 13.125 12.375C13.125 12.6734 13.0065 12.9595 12.7955 13.1705C12.5845 13.3815 12.2984 13.5 12 13.5ZM16.125 17.25C15.9025 17.25 15.685 17.184 15.5 17.0604C15.315 16.9368 15.1708 16.7611 15.0856 16.5555C15.0005 16.35 14.9782 16.1238 15.0216 15.9055C15.065 15.6873 15.1722 15.4868 15.3295 15.3295C15.4868 15.1722 15.6873 15.065 15.9055 15.0216C16.1238 14.9782 16.35 15.0005 16.5555 15.0856C16.7611 15.1708 16.9368 15.315 17.0604 15.5C17.184 15.685 17.25 15.9025 17.25 16.125C17.25 16.4234 17.1315 16.7095 16.9205 16.9205C16.7095 17.1315 16.4234 17.25 16.125 17.25ZM16.125 13.5C15.9025 13.5 15.685 13.434 15.5 13.3104C15.315 13.1868 15.1708 13.0111 15.0856 12.8055C15.0005 12.6 14.9782 12.3738 15.0216 12.1555C15.065 11.9373 15.1722 11.7368 15.3295 11.5795C15.4868 11.4222 15.6873 11.315 15.9055 11.2716C16.1238 11.2282 16.35 11.2505 16.5555 11.3356C16.7611 11.4208 16.9368 11.565 17.0604 11.75C17.184 11.935 17.25 12.1525 17.25 12.375C17.25 12.6734 17.1315 12.9595 16.9205 13.1705C16.7095 13.3815 16.4234 13.5 16.125 13.5ZM19.5 7.5H4.5V4.5H6.75V5.25C6.75 5.44891 6.82902 5.63968 6.96967 5.78033C7.11032 5.92098 7.30109 6 7.5 6C7.69891 6 7.88968 5.92098 8.03033 5.78033C8.17098 5.63968 8.25 5.44891 8.25 5.25V4.5H15.75V5.25C15.75 5.44891 15.829 5.63968 15.9697 5.78033C16.1103 5.92098 16.3011 6 16.5 6C16.6989 6 16.8897 5.92098 17.0303 5.78033C17.171 5.63968 17.25 5.44891 17.25 5.25V4.5H19.5V7.5Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Support",
      "category": "user",
      "lineDrawable": "aurum_ic_user_support",
      "fillDrawable": "aurum_ic_user_support_filled",
      "lineFigmaNodeId": "5162:1087",
      "fillFigmaNodeId": "5162:972",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1087",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-972",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Headset (line, node 5162:1087) -->\n<path d=\"M18.9272 5.12437C18.03 4.21817 16.9629 3.49783 15.7869 3.0046C14.611 2.51137 13.3493 2.25494 12.0741 2.25H12C9.41414 2.25 6.93419 3.27723 5.10571 5.10571C3.27723 6.93419 2.25 9.41414 2.25 12V17.25C2.25 17.8467 2.48705 18.419 2.90901 18.841C3.33097 19.2629 3.90326 19.5 4.5 19.5H6C6.59674 19.5 7.16903 19.2629 7.59099 18.841C8.01295 18.419 8.25 17.8467 8.25 17.25V13.5C8.25 12.9033 8.01295 12.331 7.59099 11.909C7.16903 11.4871 6.59674 11.25 6 11.25H3.78375C3.92839 9.68619 4.51578 8.196 5.47709 6.9541C6.43839 5.71219 7.73377 4.77003 9.21141 4.23803C10.689 3.70603 12.2877 3.60624 13.82 3.95035C15.3524 4.29446 16.7548 5.06822 17.8631 6.18094C19.2177 7.54247 20.0509 9.33662 20.2172 11.25H18C17.4033 11.25 16.831 11.4871 16.409 11.909C15.9871 12.331 15.75 12.9033 15.75 13.5V17.25C15.75 17.8467 15.9871 18.419 16.409 18.841C16.831 19.2629 17.4033 19.5 18 19.5H20.25C20.25 20.0967 20.0129 20.669 19.591 21.091C19.169 21.5129 18.5967 21.75 18 21.75H12.75C12.5511 21.75 12.3603 21.829 12.2197 21.9697C12.079 22.1103 12 22.3011 12 22.5C12 22.6989 12.079 22.8897 12.2197 23.0303C12.3603 23.171 12.5511 23.25 12.75 23.25H18C18.9946 23.25 19.9484 22.8549 20.6517 22.1516C21.3549 21.4484 21.75 20.4946 21.75 19.5V12C21.7549 10.7246 21.5081 9.46077 21.0237 8.28093C20.5393 7.10108 19.8268 6.02841 18.9272 5.12437ZM6 12.75C6.19891 12.75 6.38968 12.829 6.53033 12.9697C6.67098 13.1103 6.75 13.3011 6.75 13.5V17.25C6.75 17.4489 6.67098 17.6397 6.53033 17.7803C6.38968 17.921 6.19891 18 6 18H4.5C4.30109 18 4.11032 17.921 3.96967 17.7803C3.82902 17.6397 3.75 17.4489 3.75 17.25V12.75H6ZM18 18C17.8011 18 17.6103 17.921 17.4697 17.7803C17.329 17.6397 17.25 17.4489 17.25 17.25V13.5C17.25 13.3011 17.329 13.1103 17.4697 12.9697C17.6103 12.829 17.8011 12.75 18 12.75H20.25V18H18Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Headset (fill, node 5162:972) -->\n<path d=\"M21.75 11.9997V19.4997C21.75 20.4943 21.3549 21.4481 20.6517 22.1513C19.9484 22.8546 18.9946 23.2497 18 23.2497H12.75C12.5511 23.2497 12.3603 23.1707 12.2197 23.03C12.079 22.8894 12 22.6986 12 22.4997C12 22.3008 12.079 22.11 12.2197 21.9694C12.3603 21.8287 12.5511 21.7497 12.75 21.7497H18C18.5967 21.7497 19.169 21.5126 19.591 21.0907C20.0129 20.6687 20.25 20.0964 20.25 19.4997H18C17.4033 19.4997 16.831 19.2626 16.409 18.8407C15.9871 18.4187 15.75 17.8464 15.75 17.2497V13.4997C15.75 12.903 15.9871 12.3307 16.409 11.9087C16.831 11.4867 17.4033 11.2497 18 11.2497H20.2172C20.0753 9.69057 19.4926 8.20402 18.5374 6.96367C17.5821 5.72332 16.2936 4.78039 14.8225 4.245C13.3513 3.70962 11.7581 3.60389 10.2291 3.94016C8.70008 4.27644 7.2983 5.04083 6.1875 6.14407C4.80624 7.50711 3.9543 9.31664 3.78375 11.2497H6C6.59674 11.2497 7.16903 11.4867 7.59099 11.9087C8.01295 12.3307 8.25 12.903 8.25 13.4997V17.2497C8.25 17.8464 8.01295 18.4187 7.59099 18.8407C7.16903 19.2626 6.59674 19.4997 6 19.4997H4.5C3.90326 19.4997 3.33097 19.2626 2.90901 18.8407C2.48705 18.4187 2.25 17.8464 2.25 17.2497V11.9997C2.2521 10.0683 2.82715 8.18104 3.90235 6.57665C4.97755 4.97227 6.50456 3.72294 8.29012 2.9868C10.0757 2.25066 12.0395 2.0608 13.933 2.44125C15.8265 2.82171 17.5646 3.75537 18.9272 5.12407C19.8268 6.0281 20.5393 7.10077 21.0237 8.28062C21.5081 9.46046 21.7549 10.7243 21.75 11.9997Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Translate",
      "category": "user",
      "lineDrawable": "aurum_ic_user_translate",
      "fillDrawable": "aurum_ic_user_translate_filled",
      "lineFigmaNodeId": "5162:1101",
      "fillFigmaNodeId": "5162:986",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1101",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-986",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Translate (line, node 5162:1101) -->\n<path d=\"M23.1703 19.9144L17.9203 9.41437C17.858 9.28982 17.7623 9.18506 17.6438 9.11185C17.5253 9.03864 17.3888 8.99986 17.2495 8.99986C17.1103 8.99986 16.9737 9.03864 16.8553 9.11185C16.7368 9.18506 16.641 9.28982 16.5787 9.41437L14.5434 13.4859C12.9481 13.3962 11.4131 12.8452 10.125 11.8997C11.6363 10.2857 12.552 8.20463 12.7209 6H15C15.1989 6 15.3897 5.92098 15.5303 5.78033C15.671 5.63968 15.75 5.44891 15.75 5.25C15.75 5.05109 15.671 4.86032 15.5303 4.71967C15.3897 4.57902 15.1989 4.5 15 4.5H9.75V3C9.75 2.80109 9.67098 2.61032 9.53033 2.46967C9.38968 2.32902 9.19891 2.25 9 2.25C8.80109 2.25 8.61032 2.32902 8.46967 2.46967C8.32902 2.61032 8.25 2.80109 8.25 3V4.5H3C2.80109 4.5 2.61032 4.57902 2.46967 4.71967C2.32902 4.86032 2.25 5.05109 2.25 5.25C2.25 5.44891 2.32902 5.63968 2.46967 5.78033C2.61032 5.92098 2.80109 6 3 6H11.2153C11.0483 7.83811 10.268 9.56667 9 10.9078C8.20984 10.0741 7.60306 9.08406 7.21875 8.00156C7.18715 7.90712 7.13705 7.81991 7.07139 7.74503C7.00572 7.67015 6.9258 7.6091 6.83629 7.56544C6.74678 7.52178 6.64946 7.49639 6.55003 7.49074C6.4506 7.48509 6.35104 7.49931 6.25715 7.53255C6.16327 7.5658 6.07695 7.61741 6.00323 7.68437C5.92951 7.75133 5.86987 7.83231 5.82778 7.92257C5.78569 8.01283 5.76199 8.11057 5.75808 8.21009C5.75417 8.3096 5.77012 8.4089 5.805 8.50219C6.25244 9.76769 6.95726 10.9267 7.875 11.9062C6.46197 12.9446 4.75353 13.5031 3 13.5C2.80109 13.5 2.61032 13.579 2.46967 13.7197C2.32902 13.8603 2.25 14.0511 2.25 14.25C2.25 14.4489 2.32902 14.6397 2.46967 14.7803C2.61032 14.921 2.80109 15 3 15C5.17555 15.0024 7.28875 14.2734 9 12.93C10.3965 14.0211 12.0635 14.7117 13.8225 14.9278L11.3287 19.9144C11.2847 20.0025 11.2584 20.0984 11.2514 20.1966C11.2444 20.2949 11.2568 20.3935 11.2879 20.487C11.3507 20.6757 11.486 20.8318 11.6639 20.9208C11.8418 21.0098 12.0478 21.0245 12.2365 20.9616C12.4253 20.8988 12.5813 20.7635 12.6703 20.5856L13.9631 18H20.5359L21.8288 20.5856C21.8911 20.7102 21.9869 20.815 22.1055 20.8882C22.2241 20.9614 22.3607 21.0001 22.5 21C22.6278 20.9999 22.7535 20.9672 22.8651 20.9049C22.9768 20.8426 23.0706 20.7528 23.1378 20.644C23.2049 20.5353 23.2432 20.4111 23.2489 20.2834C23.2546 20.1557 23.2275 20.0287 23.1703 19.9144ZM14.7131 16.5L17.25 11.4272L19.7859 16.5H14.7131Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Translate (fill, node 5162:986) -->\n<path d=\"M15 12.1772L16.4119 15H13.5881L14.1844 13.8094L15 12.1772ZM21 4.5V19.5C21 19.8978 20.842 20.2794 20.5607 20.5607C20.2794 20.842 19.8978 21 19.5 21H4.5C4.10218 21 3.72064 20.842 3.43934 20.5607C3.15804 20.2794 3 19.8978 3 19.5V4.5C3 4.10218 3.15804 3.72064 3.43934 3.43934C3.72064 3.15804 4.10218 3 4.5 3H19.5C19.8978 3 20.2794 3.15804 20.5607 3.43934C20.842 3.72064 21 4.10218 21 4.5ZM19.4212 17.6644L15.6713 10.1644C15.609 10.0396 15.5133 9.93458 15.3947 9.86119C15.2761 9.7878 15.1394 9.74892 15 9.74892C14.8606 9.74892 14.7239 9.7878 14.6053 9.86119C14.4867 9.93458 14.391 10.0396 14.3287 10.1644L13.0931 12.6375C12.2983 12.4818 11.5445 12.1626 10.8797 11.7C11.9159 10.5268 12.5571 9.05756 12.7125 7.5H14.25C14.4489 7.5 14.6397 7.42098 14.7803 7.28033C14.921 7.13968 15 6.94891 15 6.75C15 6.55109 14.921 6.36032 14.7803 6.21967C14.6397 6.07902 14.4489 6 14.25 6H10.5V5.25C10.5 5.05109 10.421 4.86032 10.2803 4.71967C10.1397 4.57902 9.94891 4.5 9.75 4.5C9.55109 4.5 9.36032 4.57902 9.21967 4.71967C9.07902 4.86032 9 5.05109 9 5.25V6H5.25C5.05109 6 4.86032 6.07902 4.71967 6.21967C4.57902 6.36032 4.5 6.55109 4.5 6.75C4.5 6.94891 4.57902 7.13968 4.71967 7.28033C4.86032 7.42098 5.05109 7.5 5.25 7.5H11.2013C11.0525 8.68338 10.5529 9.79515 9.76688 10.6922C9.43388 10.3035 9.15046 9.87486 8.92313 9.41625C8.83101 9.24448 8.67565 9.11532 8.48994 9.05612C8.30424 8.99693 8.10279 9.01235 7.92826 9.09913C7.75373 9.18591 7.61984 9.33722 7.55495 9.52101C7.49006 9.7048 7.49927 9.90663 7.58063 10.0837C7.86768 10.6626 8.22678 11.2028 8.64937 11.6916C7.65044 12.3822 6.46446 12.7515 5.25 12.75C5.05109 12.75 4.86032 12.829 4.71967 12.9697C4.57902 13.1103 4.5 13.3011 4.5 13.5C4.5 13.6989 4.57902 13.8897 4.71967 14.0303C4.86032 14.171 5.05109 14.25 5.25 14.25C6.87819 14.2517 8.46222 13.7206 9.76031 12.7378C10.5458 13.3382 11.4443 13.7737 12.4022 14.0184L10.5787 17.6644C10.4897 17.8424 10.4751 18.0485 10.538 18.2373C10.601 18.4261 10.7363 18.5822 10.9144 18.6713C11.0924 18.7603 11.2985 18.7749 11.4873 18.712C11.6761 18.649 11.8322 18.5137 11.9213 18.3356L12.8381 16.5H17.1619L18.0787 18.3356C18.1228 18.4238 18.1838 18.5024 18.2583 18.567C18.3327 18.6315 18.4192 18.6808 18.5127 18.712C18.6062 18.7431 18.7049 18.7556 18.8032 18.7486C18.9015 18.7416 18.9975 18.7153 19.0856 18.6713C19.1738 18.6272 19.2524 18.5662 19.317 18.4917C19.3815 18.4173 19.4308 18.3308 19.462 18.2373C19.4931 18.1438 19.5056 18.0451 19.4986 17.9468C19.4916 17.8485 19.4653 17.7525 19.4212 17.6644Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Nek",
      "category": "user",
      "lineDrawable": "aurum_ic_user_nek",
      "fillDrawable": "aurum_ic_user_nek_filled",
      "lineFigmaNodeId": "5566:790",
      "fillFigmaNodeId": "5566:790",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5566-790",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5566-790",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: NEK (line, node 5566:790) -->\n<path d=\"M2.1055 10.2119C3.51406 7.68736 6.35058 6.36829 9.13968 6.84766C9.54791 6.91783 9.82217 7.30564 9.75199 7.71387C9.68166 8.12191 9.29389 8.39535 8.88578 8.3252C6.71725 7.95247 4.51138 8.97951 3.41605 10.9424C2.21125 13.1018 2.67642 15.8094 4.53324 17.4424C6.38995 19.0752 9.13439 19.1912 11.1221 17.7207C12.9844 16.3427 13.7098 13.9213 12.9561 11.7686C12.8193 11.3777 13.0252 10.9504 13.4161 10.8135C13.807 10.6766 14.2352 10.8825 14.3721 11.2734C15.3412 14.0419 14.4092 17.1539 12.0147 18.9258C9.45892 20.8168 5.92943 20.668 3.54203 18.5684C1.15509 16.4688 0.556729 12.9881 2.1055 10.2119ZM18.25 2.75C18.5409 2.75 18.8052 2.91833 18.9287 3.18164L19.6787 4.78125C19.8258 5.09496 19.7392 5.46904 19.4688 5.68555L17.8223 7.00195C18.7736 7.26817 19.6771 7.74484 20.458 8.43164C22.845 10.5312 23.4434 14.0119 21.8946 16.7881C20.4418 19.3919 17.4698 20.7142 14.5977 20.1025C14.1926 20.0162 13.9333 19.617 14.0196 19.2119C14.106 18.807 14.5052 18.5485 14.9102 18.6348C17.1432 19.1103 19.4542 18.0822 20.584 16.0576C21.7888 13.8982 21.3237 11.1906 19.4668 9.55762C17.6101 7.9248 14.8657 7.80879 12.878 9.2793C11.0013 10.6679 10.2791 13.1162 11.0616 15.2812C11.2022 15.6708 11.0009 16.1004 10.6114 16.2412C10.2219 16.3819 9.79229 16.1804 9.6514 15.791C8.64501 13.0065 9.57237 9.85986 11.9854 8.07422C12.6607 7.5745 13.4045 7.21843 14.1768 7.00195L12.5313 5.68555C12.2609 5.46904 12.1743 5.09495 12.3213 4.78125L13.0713 3.18164L13.1241 3.08789C13.2614 2.87918 13.4955 2.75002 13.75 2.75H18.25ZM13.9287 4.88281L16 6.53906L18.0703 4.88281L17.7735 4.25H14.2266L13.9287 4.88281Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: NEK (fill, node 5566:790) -->\n<path d=\"M2.1055 10.2119C3.51406 7.68736 6.35058 6.36829 9.13968 6.84766C9.54791 6.91783 9.82217 7.30564 9.75199 7.71387C9.68166 8.12191 9.29389 8.39535 8.88578 8.3252C6.71725 7.95247 4.51138 8.97951 3.41605 10.9424C2.21125 13.1018 2.67642 15.8094 4.53324 17.4424C6.38995 19.0752 9.13439 19.1912 11.1221 17.7207C12.9844 16.3427 13.7098 13.9213 12.9561 11.7686C12.8193 11.3777 13.0252 10.9504 13.4161 10.8135C13.807 10.6766 14.2352 10.8825 14.3721 11.2734C15.3412 14.0419 14.4092 17.1539 12.0147 18.9258C9.45892 20.8168 5.92943 20.668 3.54203 18.5684C1.15509 16.4688 0.556729 12.9881 2.1055 10.2119ZM18.25 2.75C18.5409 2.75 18.8052 2.91833 18.9287 3.18164L19.6787 4.78125C19.8258 5.09496 19.7392 5.46904 19.4688 5.68555L17.8223 7.00195C18.7736 7.26817 19.6771 7.74484 20.458 8.43164C22.845 10.5312 23.4434 14.0119 21.8946 16.7881C20.4418 19.3919 17.4698 20.7142 14.5977 20.1025C14.1926 20.0162 13.9333 19.617 14.0196 19.2119C14.106 18.807 14.5052 18.5485 14.9102 18.6348C17.1432 19.1103 19.4542 18.0822 20.584 16.0576C21.7888 13.8982 21.3237 11.1906 19.4668 9.55762C17.6101 7.9248 14.8657 7.80879 12.878 9.2793C11.0013 10.6679 10.2791 13.1162 11.0616 15.2812C11.2022 15.6708 11.0009 16.1004 10.6114 16.2412C10.2219 16.3819 9.79229 16.1804 9.6514 15.791C8.64501 13.0065 9.57237 9.85986 11.9854 8.07422C12.6607 7.5745 13.4045 7.21843 14.1768 7.00195L12.5313 5.68555C12.2609 5.46904 12.1743 5.09495 12.3213 4.78125L13.0713 3.18164L13.1241 3.08789C13.2614 2.87918 13.4955 2.75002 13.75 2.75H18.25ZM13.9287 4.88281L16 6.53906L18.0703 4.88281L17.7735 4.25H14.2266L13.9287 4.88281Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "WhatsApp",
      "category": "user",
      "lineDrawable": "aurum_ic_user_whatsapp",
      "fillDrawable": "aurum_ic_user_whatsapp_filled",
      "lineFigmaNodeId": "5917:1282",
      "fillFigmaNodeId": "5917:1281",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1282",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1281",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: WhatsappLogo (line, node 5917:1282) -->\n<path d=\"M17.5858 13.5787L14.5858 12.0787C14.4677 12.0199 14.3362 11.9933 14.2045 12.0015C14.0728 12.0097 13.9456 12.0525 13.8358 12.1256L12.4586 13.0444C11.8264 12.6968 11.3062 12.1766 10.9586 11.5444L11.8774 10.1672C11.9505 10.0573 11.9933 9.93016 12.0015 9.79848C12.0097 9.6668 11.9831 9.53528 11.9242 9.41719L10.4242 6.41719C10.3621 6.29163 10.266 6.186 10.1468 6.11226C10.0277 6.03853 9.89028 5.99964 9.75017 6C8.75561 6 7.80179 6.39509 7.09852 7.09835C6.39526 7.80161 6.00018 8.75544 6.00017 9.75C6.00266 11.9373 6.87265 14.0343 8.41928 15.5809C9.96592 17.1275 12.0629 17.9975 14.2502 18C14.7426 18 15.2303 17.903 15.6852 17.7145C16.1402 17.5261 16.5536 17.2499 16.9018 16.9017C17.25 16.5534 17.5263 16.14 17.7147 15.6851C17.9032 15.2301 18.0002 14.7425 18.0002 14.25C18.0003 14.1107 17.9616 13.9741 17.8884 13.8555C17.8152 13.7369 17.7104 13.6411 17.5858 13.5787ZM14.2502 16.5C12.4606 16.498 10.7448 15.7862 9.4794 14.5208C8.21396 13.2553 7.50216 11.5396 7.50017 9.75C7.50003 9.2298 7.68014 8.72562 8.00986 8.32326C8.33958 7.9209 8.79853 7.64521 9.30861 7.54313L10.3849 9.69938L9.46892 11.0625C9.40048 11.1652 9.35842 11.2831 9.34649 11.406C9.33455 11.5288 9.3531 11.6526 9.40049 11.7666C9.9371 13.0419 10.9517 14.0565 12.227 14.5931C12.3413 14.6426 12.4661 14.6629 12.5902 14.6521C12.7143 14.6413 12.8337 14.5998 12.9377 14.5312L14.3074 13.6181L16.4636 14.6944C16.3607 15.205 16.0838 15.6642 15.6802 15.9935C15.2765 16.3228 14.7711 16.5018 14.2502 16.5ZM12.0002 2.25C10.3169 2.24963 8.66213 2.68508 7.19704 3.51396C5.73194 4.34285 4.50641 5.53692 3.63971 6.97997C2.77302 8.42301 2.29469 10.0659 2.25129 11.7486C2.20789 13.4314 2.60089 15.0967 3.39205 16.5825L2.32799 19.7747C2.23985 20.039 2.22706 20.3226 2.29105 20.5938C2.35504 20.8649 2.49328 21.1129 2.69029 21.3099C2.88729 21.5069 3.13526 21.6451 3.40642 21.7091C3.67757 21.7731 3.96119 21.7603 4.22549 21.6722L7.41768 20.6081C8.72527 21.3036 10.1741 21.6921 11.6543 21.744C13.1344 21.7959 14.6069 21.51 15.9601 20.9079C17.3132 20.3057 18.5114 19.4033 19.4636 18.269C20.4159 17.1346 21.0972 15.7983 21.4559 14.3613C21.8146 12.9244 21.8412 11.4246 21.5337 9.97578C21.2263 8.52701 20.5928 7.16732 19.6813 5.99992C18.7699 4.83253 17.6045 3.88811 16.2736 3.23836C14.9427 2.58861 13.4812 2.25061 12.0002 2.25ZM12.0002 20.25C10.5498 20.251 9.12495 19.8691 7.86955 19.1428C7.77763 19.0895 7.67544 19.0563 7.56974 19.0455C7.46404 19.0347 7.35724 19.0464 7.25643 19.08L3.75018 20.25L4.91924 16.7438C4.95294 16.643 4.96485 16.5362 4.95418 16.4305C4.94351 16.3248 4.91051 16.2226 4.85736 16.1306C3.94796 14.5584 3.58284 12.7299 3.81864 10.929C4.05444 9.12801 4.87798 7.4552 6.16151 6.17006C7.44503 4.88491 9.11679 4.05925 10.9175 3.82118C12.7181 3.5831 14.547 3.94591 16.1204 4.85333C17.6938 5.76074 18.9238 7.16204 19.6196 8.83983C20.3153 10.5176 20.4379 12.3781 19.9684 14.1327C19.4989 15.8873 18.4634 17.4379 17.0227 18.5439C15.582 19.65 13.8165 20.2497 12.0002 20.25Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: WhatsappLogo (fill, node 5917:1281) -->\n<path d=\"M14.3044 13.6152L16.4606 14.6915C16.3584 15.2022 16.0822 15.6616 15.679 15.9914C15.2759 16.3212 14.7708 16.5009 14.25 16.4999C12.4604 16.4979 10.7447 15.7861 9.47922 14.5207C8.21378 13.2552 7.50198 11.5395 7.5 9.74991C7.49985 9.22971 7.67997 8.72553 8.00968 8.32316C8.3394 7.9208 8.79835 7.64512 9.30844 7.54303L10.3847 9.69928L9.46875 11.0624C9.40031 11.1651 9.35825 11.283 9.34631 11.4059C9.33437 11.5287 9.35292 11.6525 9.40031 11.7665C9.93692 13.0418 10.9515 14.0564 12.2269 14.593C12.3411 14.6425 12.466 14.6628 12.59 14.652C12.7141 14.6412 12.8335 14.5997 12.9375 14.5312L14.3044 13.6152ZM21.75 11.9999C21.7504 13.6832 21.3149 15.338 20.486 16.803C19.6572 18.2681 18.4631 19.4937 17.02 20.3604C15.577 21.2271 13.9341 21.7054 12.2514 21.7488C10.5686 21.7922 8.9033 21.3992 7.4175 20.608L4.22531 21.6721C3.96102 21.7602 3.6774 21.773 3.40624 21.709C3.13509 21.645 2.88711 21.5068 2.69011 21.3098C2.49311 21.1128 2.35486 20.8648 2.29087 20.5937C2.22688 20.3225 2.23967 20.0389 2.32781 19.7746L3.39187 16.5824C2.69639 15.2748 2.30793 13.826 2.256 12.3458C2.20406 10.8657 2.49001 9.39316 3.09213 8.04003C3.69425 6.6869 4.59672 5.48873 5.73105 4.53646C6.86537 3.58419 8.20173 2.90285 9.63869 2.54416C11.0756 2.18548 12.5754 2.15886 14.0242 2.46635C15.473 2.77383 16.8327 3.40733 18.0001 4.31875C19.1675 5.23018 20.1119 6.39558 20.7616 7.7265C21.4114 9.05741 21.7494 10.5189 21.75 11.9999ZM18 14.2499C18.0001 14.1106 17.9614 13.974 17.8882 13.8554C17.815 13.7368 17.7102 13.641 17.5856 13.5787L14.5856 12.0787C14.4675 12.0198 14.336 11.9932 14.2043 12.0014C14.0726 12.0096 13.9455 12.0524 13.8356 12.1255L12.4584 13.0443C11.8262 12.6967 11.306 12.1765 10.9584 11.5443L11.8772 10.1671C11.9503 10.0573 11.9931 9.93007 12.0013 9.79839C12.0096 9.66671 11.9829 9.53518 11.9241 9.41709L10.4241 6.41709C10.3619 6.29154 10.2658 6.1859 10.1467 6.11217C10.0275 6.03843 9.89011 5.99954 9.75 5.99991C8.75544 5.99991 7.80161 6.395 7.09835 7.09826C6.39509 7.80152 6 8.75535 6 9.74991C6.00248 11.9372 6.87247 14.0342 8.41911 15.5808C9.96575 17.1274 12.0627 17.9974 14.25 17.9999C14.7425 17.9999 15.2301 17.9029 15.6851 17.7145C16.14 17.526 16.5534 17.2498 16.9017 16.9016C17.2499 16.5533 17.5261 16.1399 17.7145 15.685C17.903 15.23 18 14.7424 18 14.2499Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Phone",
      "category": "user",
      "lineDrawable": "aurum_ic_user_phone",
      "fillDrawable": "aurum_ic_user_phone_filled",
      "lineFigmaNodeId": "5917:1283",
      "fillFigmaNodeId": "5917:1280",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1283",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1280",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Phone (line, node 5917:1283) -->\n<path d=\"M20.8472 14.8554L16.4306 12.8764L16.4184 12.8707C16.1892 12.7727 15.939 12.7333 15.6907 12.7562C15.4424 12.7792 15.2037 12.8636 14.9963 13.002C14.9718 13.0181 14.9484 13.0357 14.9259 13.0545L12.6441 14.9998C11.1984 14.2976 9.70595 12.8164 9.00376 11.3895L10.9519 9.07294C10.9706 9.0495 10.9884 9.02606 11.0053 9.00075C11.1407 8.79384 11.2229 8.55667 11.2445 8.31035C11.2661 8.06402 11.2264 7.81618 11.1291 7.58887V7.57762L9.14438 3.15356C9.0157 2.85662 8.79444 2.60926 8.51362 2.44841C8.2328 2.28756 7.9075 2.22184 7.58626 2.26106C6.31592 2.42822 5.14986 3.05209 4.30588 4.01615C3.4619 4.98021 2.99771 6.21852 3.00001 7.49981C3.00001 14.9436 9.05626 20.9998 16.5 20.9998C17.7813 21.0021 19.0196 20.5379 19.9837 19.6939C20.9477 18.85 21.5716 17.6839 21.7388 16.4136C21.7781 16.0924 21.7125 15.7672 21.5518 15.4864C21.3911 15.2056 21.144 14.9843 20.8472 14.8554ZM16.5 19.4998C13.3185 19.4963 10.2682 18.2309 8.01856 15.9813C5.76888 13.7316 4.50348 10.6813 4.50001 7.49981C4.49648 6.58433 4.82631 5.69887 5.42789 5.00879C6.02947 4.3187 6.86167 3.87118 7.76907 3.74981C7.7687 3.75355 7.7687 3.75732 7.76907 3.76106L9.73782 8.16731L7.80001 10.4867C7.78034 10.5093 7.76247 10.5335 7.74657 10.5589C7.60549 10.7754 7.52273 11.0246 7.5063 11.2825C7.48988 11.5404 7.54035 11.7981 7.65282 12.0307C8.5022 13.7679 10.2525 15.5051 12.0084 16.3536C12.2428 16.465 12.502 16.5137 12.7608 16.495C13.0196 16.4762 13.2692 16.3907 13.485 16.2467C13.5091 16.2305 13.5322 16.2129 13.5544 16.1942L15.8334 14.2498L20.2397 16.2232C20.2397 16.2232 20.2472 16.2232 20.25 16.2232C20.1301 17.1319 19.6833 17.9658 18.9931 18.5689C18.3028 19.172 17.4166 19.5029 16.5 19.4998Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Phone (fill, node 5917:1280) -->\n<path d=\"M21.7388 16.4136C21.5716 17.6839 20.9477 18.85 19.9837 19.6939C19.0196 20.5379 17.7813 21.0021 16.5 20.9998C9.05626 20.9998 3.00001 14.9436 3.00001 7.49981C2.99771 6.21852 3.4619 4.98021 4.30588 4.01615C5.14986 3.05209 6.31592 2.42822 7.58626 2.26106C7.9075 2.22184 8.2328 2.28756 8.51362 2.44841C8.79444 2.60926 9.0157 2.85662 9.14438 3.15356L11.1244 7.57387V7.58512C11.2229 7.81242 11.2636 8.06059 11.2428 8.30744C11.222 8.5543 11.1404 8.79217 11.0053 8.99981C10.9884 9.02512 10.9706 9.04856 10.9519 9.072L9.00001 11.3857C9.7022 12.8126 11.1947 14.292 12.6403 14.9961L14.9222 13.0545C14.9446 13.0357 14.9681 13.0181 14.9925 13.002C15.2 12.8636 15.4387 12.7792 15.687 12.7562C15.9353 12.7333 16.1854 12.7727 16.4147 12.8707L16.4269 12.8764L20.8434 14.8554C21.1409 14.9837 21.3889 15.2047 21.5503 15.4856C21.7116 15.7664 21.7778 16.092 21.7388 16.4136Z\" fill=\"#121212\"/>\n</svg>"
    },
    {
      "name": "Check",
      "category": "selection",
      "lineDrawable": "aurum_ic_selection_check",
      "fillDrawable": "aurum_ic_selection_check_filled",
      "lineFigmaNodeId": "5308:800",
      "fillFigmaNodeId": "5308:800",
      "lineFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5308-800",
      "fillFigmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5308-800",
      "lineSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Check (line, node 5308:800) -->\n<path d=\"M21.7959 7.54597L9.7959 19.546C9.69138 19.6509 9.56719 19.7341 9.43044 19.7909C9.2937 19.8476 9.14709 19.8769 8.99902 19.8769C8.85096 19.8769 8.70435 19.8476 8.5676 19.7909C8.43085 19.7341 8.30666 19.6509 8.20215 19.546L2.95215 14.296C2.8475 14.1913 2.76449 14.0671 2.70785 13.9304C2.65122 13.7936 2.62207 13.6471 2.62207 13.4991C2.62207 13.3511 2.65122 13.2046 2.70785 13.0678C2.76449 12.9311 2.8475 12.8069 2.95215 12.7022C3.05679 12.5976 3.18103 12.5146 3.31776 12.4579C3.45448 12.4013 3.60103 12.3721 3.74902 12.3721C3.89702 12.3721 4.04356 12.4013 4.18029 12.4579C4.31702 12.5146 4.44125 12.5976 4.5459 12.7022L8.99996 17.1563L20.204 5.9541C20.4154 5.74276 20.702 5.62402 21.0009 5.62402C21.2998 5.62402 21.5864 5.74276 21.7978 5.9541C22.0091 6.16544 22.1278 6.45209 22.1278 6.75098C22.1278 7.04986 22.0091 7.33651 21.7978 7.54785L21.7959 7.54597Z\" fill=\"#121212\"/>\n</svg>",
      "fillSvg": "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<!-- @generated — Figma source: Check (fill, node 5308:800) -->\n<path d=\"M21.7959 7.54597L9.7959 19.546C9.69138 19.6509 9.56719 19.7341 9.43044 19.7909C9.2937 19.8476 9.14709 19.8769 8.99902 19.8769C8.85096 19.8769 8.70435 19.8476 8.5676 19.7909C8.43085 19.7341 8.30666 19.6509 8.20215 19.546L2.95215 14.296C2.8475 14.1913 2.76449 14.0671 2.70785 13.9304C2.65122 13.7936 2.62207 13.6471 2.62207 13.4991C2.62207 13.3511 2.65122 13.2046 2.70785 13.0678C2.76449 12.9311 2.8475 12.8069 2.95215 12.7022C3.05679 12.5976 3.18103 12.5146 3.31776 12.4579C3.45448 12.4013 3.60103 12.3721 3.74902 12.3721C3.89702 12.3721 4.04356 12.4013 4.18029 12.4579C4.31702 12.5146 4.44125 12.5976 4.5459 12.7022L8.99996 17.1563L20.204 5.9541C20.4154 5.74276 20.702 5.62402 21.0009 5.62402C21.2998 5.62402 21.5864 5.74276 21.7978 5.9541C22.0091 6.16544 22.1278 6.45209 22.1278 6.75098C22.1278 7.04986 22.0091 7.33651 21.7978 7.54785L21.7959 7.54597Z\" fill=\"#121212\"/>\n</svg>"
    }
  ],
  "codeConnect": [
    {
      "component": "AurumAmountInput",
      "figmaNodeId": "5080:261",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5080-261",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumAmountInput.figma.swift"
    },
    {
      "component": "AurumBadge",
      "figmaNodeId": "4240:10542",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4240-10542",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumBadge.figma.swift"
    },
    {
      "component": "AurumBottomSheet",
      "figmaNodeId": "6002:939",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6002-939",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumBottomSheet.figma.swift"
    },
    {
      "component": "AurumButton",
      "figmaNodeId": "4692:1074",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4692-1074",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumButton.figma.swift"
    },
    {
      "component": "AurumCheckbox",
      "figmaNodeId": "5169:1314",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5169-1314",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumCheckbox.figma.swift"
    },
    {
      "component": "AurumCheckboxGroup",
      "figmaNodeId": "5169:1796",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5169-1796",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumCheckboxGroup.figma.swift"
    },
    {
      "component": "AurumChip",
      "figmaNodeId": "4446:701",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4446-701",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumChip.figma.swift"
    },
    {
      "component": "AurumGlobalHeader",
      "figmaNodeId": "5252:2274",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5252-2274",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumGlobalHeader.figma.swift"
    },
    {
      "component": "AurumLabel",
      "figmaNodeId": "3774:137816",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=3774-137816",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumLabel.figma.swift"
    },
    {
      "component": "AurumLinkButton",
      "figmaNodeId": "4784:1286",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4784-1286",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumLinkButton.figma.swift"
    },
    {
      "component": "AurumLoader",
      "figmaNodeId": "4530:2084",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4530-2084",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumLoader.figma.swift"
    },
    {
      "component": "AurumNavBar",
      "figmaNodeId": "5575:14226",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5575-14226",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumNavBar.figma.swift"
    },
    {
      "component": "AurumOtpInput",
      "figmaNodeId": "4975:1630",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4975-1630",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumOtpInput.figma.swift"
    },
    {
      "component": "AurumPageHeader",
      "figmaNodeId": "4826:1058",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4826-1058",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumPageHeader.figma.swift"
    },
    {
      "component": "AurumPhoneNumberInput",
      "figmaNodeId": "4904:2455",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4904-2455",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumPhoneNumberInput.figma.swift"
    },
    {
      "component": "AurumProgressBar",
      "figmaNodeId": "5934:846",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5934-846",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumProgressBar.figma.swift"
    },
    {
      "component": "AurumRadioButton",
      "figmaNodeId": "5126:2507",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5126-2507",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumRadioButton.figma.swift"
    },
    {
      "component": "AurumRadioGroup",
      "figmaNodeId": "5157:2034",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5157-2034",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumRadioGroup.figma.swift"
    },
    {
      "component": "AurumSectionHeader",
      "figmaNodeId": "3702:162190",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=3702-162190",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumSectionHeader.figma.swift"
    },
    {
      "component": "AurumSegmentedProgressBar",
      "figmaNodeId": "5889:2361",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5889-2361",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumSegmentedProgressBar.figma.swift"
    },
    {
      "component": "AurumStepper",
      "figmaNodeId": "4506:201",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4506-201",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumStepper.figma.swift"
    },
    {
      "component": "AurumSwitch",
      "figmaNodeId": "4018:557",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4018-557",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumSwitch.figma.swift"
    },
    {
      "component": "AurumTab",
      "figmaNodeId": "5430:3115",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5430-3115",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumTab.figma.swift"
    },
    {
      "component": "AurumTabRow",
      "figmaNodeId": "5531:795",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5531-795",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumTabRow.figma.swift"
    },
    {
      "component": "AurumTextField",
      "figmaNodeId": "4623:373",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=4623-373",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumTextField.figma.swift"
    },
    {
      "component": "AurumToast",
      "figmaNodeId": "6014:2621",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6014-2621",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumToast.figma.swift"
    },
    {
      "component": "AurumTransactionListCard",
      "figmaNodeId": "5576:19749",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5576-19749",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/AurumTransactionListCard.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5322:1592",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1592",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconAdd.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5322:1593",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1593",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconAddFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1059",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1059",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowDown.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:944",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-944",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowDownFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5874:1925",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5874-1925",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowDownLeft.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5874:1925",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5874-1925",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowDownLeftFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1053",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1053",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowLeft.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:938",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-938",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowLeftFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1055",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1055",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowRight.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:940",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-940",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowRightFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1057",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1057",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowUp.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:942",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-942",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowUpFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5874:1926",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5874-1926",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowUpRight.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5874:1926",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5874-1926",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconArrowUpRightFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6469:23762",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6469-23762",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconBank.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6469:23761",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6469-23761",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconBankFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1039",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1039",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconBell.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:924",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-924",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconBellFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1047",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1047",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconBookmark.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:932",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-932",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconBookmarkFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1037",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1037",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconBroadcast.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:922",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-922",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconBroadcastFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1125",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1125",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCalendar.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1010",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1010",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCalendarFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1113",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1113",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCamera.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:998",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-998",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCameraFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "7570:656",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-656",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretBoldDown.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "7570:656",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-656",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretBoldDownFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "7570:657",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-657",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretBoldLeft.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "7570:657",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-657",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretBoldLeftFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "7570:654",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-654",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretBoldRight.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "7570:654",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-654",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretBoldRightFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "7570:655",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-655",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretBoldUp.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "7570:655",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=7570-655",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretBoldUpFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6419:335",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-335",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretDown.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6419:335",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-335",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretDownFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6419:336",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-336",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretLeft.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6419:336",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-336",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretLeftFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6419:337",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-337",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretRight.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6419:337",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-337",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretRightFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6419:334",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-334",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretUp.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6419:334",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6419-334",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCaretUpFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1079",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1079",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCart.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:964",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-964",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCartFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6473:23775",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6473-23775",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChartBar.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6473:23774",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6473-23774",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChartBarFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1137",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1137",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChat.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5917:1284",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1284",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChatBubble.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5917:1279",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1279",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChatBubbleFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1023",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1023",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChatFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5308:800",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5308-800",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCheck.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5308:800",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5308-800",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCheckFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1067",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1067",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChevronDown.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:952",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-952",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChevronDownFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1063",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1063",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChevronLeft.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:948",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-948",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChevronLeftFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1061",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1061",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChevronRight.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:946",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-946",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChevronRightFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1065",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1065",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChevronUp.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:950",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-950",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconChevronUpFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1069",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1069",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconClose.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5311:823",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5311-823",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCloseFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1129",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1129",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCompress.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1014",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1014",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCompressFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1075",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1075",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCopy.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:960",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-960",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconCopyFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1107",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1107",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconDelete.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:992",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-992",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconDeleteFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1103",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1103",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconDiscount.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:988",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-988",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconDiscountFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1031",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1031",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconDocument.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:916",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-916",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconDocumentFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1071",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1071",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconDownload.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:956",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-956",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconDownloadFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1051",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1051",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconEdit.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:936",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-936",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconEditFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1127",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1127",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconExpand.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1012",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1012",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconExpandFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5861:1987",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5861-1987",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconFilter.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5861:1986",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5861-1986",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconFilterFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1033",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1033",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconGift.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:918",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-918",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconGiftFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1045",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1045",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconHeart.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:930",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-930",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconHeartFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1091",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1091",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconHelp.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:976",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-976",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconHelpFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1083",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1083",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconHistory.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:968",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-968",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconHistoryFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1029",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1029",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconHome.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:914",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-914",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconHomeFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5364:107",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5364-107",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconImage.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5364:108",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5364-108",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconImageFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1043",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1043",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconInfo.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:928",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-928",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconInfoFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1077",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1077",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconLink.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:962",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-962",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconLinkFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1035",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1035",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconList.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:920",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-920",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconListFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5480:3920",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5480-3920",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconLoader.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5480:3920",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5480-3920",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconLoaderFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1135",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1135",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconLocation.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1021",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1021",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconLocationFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1115",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1115",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconLock.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1000",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1000",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconLockFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1123",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1123",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconMicrophone.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1008",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1008",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconMicrophoneFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5322:1594",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1594",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconMinus.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5322:1595",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1595",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconMinusFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5431:2847",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5431-2847",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconMoreHorizontal.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5431:2849",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5431-2849",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconMoreHorizontalFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5566:790",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5566-790",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconNek.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5566:790",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5566-790",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconNekFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5431:2848",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5431-2848",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconOverflow.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5431:2850",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5431-2850",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconOverflowFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1111",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1111",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconPause.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:996",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-996",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconPauseFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5322:1579",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1579",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconPending.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5322:1580",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5322-1580",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconPendingFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5917:1283",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1283",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconPhone.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5917:1280",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1280",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconPhoneFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1109",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1109",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconPlay.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6767:405",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6767-405",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconPlayCircle.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6767:405",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6767-405",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconPlayCircleFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:994",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-994",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconPlayFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1093",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1093",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconQrCode.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:978",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-978",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconQrCodeFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1085",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1085",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconRefresh.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:970",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-970",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconRefreshFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5913:680",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5913-680",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconReplay.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5913:681",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5913-681",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconReplayFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1139",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1139",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconRupee.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1025",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1025",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconRupeeFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1089",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1089",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSearch.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:974",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-974",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSearchFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1141",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1141",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSettings.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1027",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1027",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSettingsFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1049",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1049",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconShare.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:934",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-934",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconShareFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1105",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1105",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconShield.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:990",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-990",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconShieldFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1121",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1121",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSignIn.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1006",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1006",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSignInFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1119",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1119",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSignOut.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1004",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1004",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSignOutFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1097",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1097",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSortAscending.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:982",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-982",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSortAscendingFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1095",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1095",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSortDescending.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:980",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-980",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSortDescendingFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6423:347",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6423-347",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconStar.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "6423:347",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=6423-347",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconStarFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5311:811",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5311-811",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSuccess.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5311:811",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5311-811",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSuccessFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1087",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1087",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSupport.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:972",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-972",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconSupportFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5896:644",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5896-644",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconTimer.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5896:645",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5896-645",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconTimerFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1101",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1101",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconTranslate.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:986",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-986",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconTranslateFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1117",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1117",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconUnlock.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1002",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1002",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconUnlockFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1073",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1073",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconUpload.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:958",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-958",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconUploadFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1041",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1041",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconUser.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:926",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-926",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconUserFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1099",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1099",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconVerified.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:984",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-984",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconVerifiedFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1133",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1133",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconVolumeOff.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1018",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1018",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconVolumeOffFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1131",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1131",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconVolumeOn.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1016",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1016",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconVolumeOnFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:1081",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-1081",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconWallet.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5162:966",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5162-966",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconWalletFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5308:802",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5308-802",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconWarning.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5308:805",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5308-805",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconWarningFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5917:1282",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1282",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconWhatsApp.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5917:1281",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5917-1281",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconWhatsAppFilled.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5358:456",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5358-456",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconWithdraw.figma.swift"
    },
    {
      "component": "AurumIcon",
      "figmaNodeId": "5358:465",
      "figmaUrl": "https://www.figma.com/design/YvIxqu2oTlM6UnkL0OloHc/?node-id=5358-465",
      "kotlinPath": "FigmaConnect/Sources/AurumFigmaConnect/Icons/AurumIconWithdrawFilled.figma.swift"
    }
  ],
  "changelog": {
    "raw": "# Changelog\n\nAll notable changes to Aurum-iOS. Follows [Keep a Changelog](https://keepachangelog.com);\nversions follow semver (`patch` = token/bug fix, `minor` = new component/token,\n`major` = breaking API).\n\n## [0.2.3] - 2026-07-30\n\n### Fixed\n\n- **`AurumSectionHeaderAction.link` now renders neutral-subtle, matching its\n  Figma master (`5442:462`).** The link action was styled identically to the\n  `text` action — `Title/XS-SemiBold` in `interactive.textPrimaryNormal`\n  (brand purple) with a 20pt `iconPrimaryNormal` chevron — so \"View All /\n  See More\" links shouted as loudly as the section title and were\n  indistinguishable from a brand text-button. The sheet's `action link`\n  layer specifies `Body/S-Medium` in `interactive.textNeutralSubtle` with a\n  12pt `interactive.iconNeutralSubtle` chevron; the component now follows\n  it. `text` is unchanged and remains the brand-emphasis option.\n  **Consumer impact:** every existing `link` action becomes grey and one\n  step smaller — intended, but visible. Mirrors aurum-android 0.3.29.\n\n- **`surface.textStaticBlackDisabled` / `surface.iconStaticBlackDisabled`\n  were `#121212`; Figma and Android say `#000000`** (same 32% alpha). The\n  token-codegen carried a deliberate \"normalize `_global-colors/neutral/\n  black/100` to palette `black100` for Android parity\" mapping whose premise\n  was false — verified against the live Figma file (alias chain walks to\n  `#000000@0.32`) and Android's manifest (ships `#000000`). The mapping also\n  silenced the codegen's own alias-integrity check. Removed: aliases into\n  collections outside the primitives export now inline Figma's resolved\n  value verbatim (and `colors/*` misses still hard-fail). Surfaced by\n  aurum-mcp's cross-platform token-parity check at merge time.\n\n### Changed\n\n- **Portal redesigned as a specimen book** (`tooling/gallery/`): the\n  presentation layer is now the locked Aurum-portal design system\n  (`tooling/gallery/design.md`, shared with aurum-android; platform lens\n  tokens are the only divergence). Newspaper masthead with the version as\n  the issue line, live type specimens rendered from real tokens on the\n  landing page, hairline plates instead of cards, tabular spec sheets on\n  component pages, typographic Do/Don't columns, a build-facts colophon\n  footer, full OKLCH tokenisation (`tooling/gallery/tokens.css`), in-place\n  copy feedback, and a platform-lens colour drawn from the system's own\n  palette (iOS = visual.blue.600). Verified at 320/375/768/1440 px with no\n  horizontal scroll; light + dark.\n- **Gallery rebuilt as the \"Aurum for iOS\" designer portal**\n  (`tooling/gallery/generate.py`): the presentation layer is now a port of\n  aurum-android's portal — landing page with hero/stats/release card,\n  light/dark/auto theme, ⌘K live search on components and icons,\n  copy-to-clipboard token swatches and icon symbol paths, per-component\n  pages with intended-use/Do/Don't cards and pinned-simulator snapshot\n  tiles, SPM install section, and bidirectional cross-links with the\n  Android portal. Data layer, CLI (`--validate` / `--emit-manifest` /\n  `--out`), and manifest schema unchanged.\n\n### Added\n\n- **`AurumIcons.Navigation.caretBold{Up,Down,Left,Right}` (+ `Filled`).**\n  Their masters have been sitting in the canonical icon sheet\n  (`5130:35416`) without code counterparts on either platform. Single-weight\n  in Figma, so both weights resolve to the same asset — the same convention\n  the existing caret family uses. Imported via `make icons-import` from\n  aurum-android's normalized Vector Drawables, bringing the iOS set back to\n  parity at 89 icons × 2 weights. The `ICON_MANIFEST` in\n  `tooling/icon-import/import_icons.py` gained the matching entries; it is a\n  verbatim port of Android's table, so an entry added on one platform must\n  land on the other in the same sitting.\n\n- **Catalog app** (`catalog/AurumCatalog.xcodeproj`, XcodeGen-generated\n  from `project.yml` — SPM can't declare app targets): an on-device\n  showcase with 11 family screens covering every component, including\n  live demos of the stateful surfaces the static gallery can't show —\n  the toast FIFO queue + timers, the persistent banner host, bottom\n  sheet presentations, and interactive tabs / nav bar / stepper /\n  selection controls. `make catalog` regenerates + builds.\n\n- **Gallery + MCP manifest tooling** (`tooling/gallery/generate.py`, the\n  iOS twin of aurum-android's generator): `--validate` enforces the\n  doc-tag + Figma-url contract in CI (`make validate-docs`, wired into\n  `check.yml`); `--out` renders the static HTML gallery (components with\n  doc tags + snapshot strips, tokens, icons, changelog); `--emit-manifest`\n  emits the aurum-mcp manifest (`schemaVersion: 2`,\n  `platforms: [\"ios\"]`), schema-validated against aurum-android's\n  contract. `pages.yml` deploys gallery + `/data/manifest.json` to GitHub\n  Pages after `check` passes on main.\n\n## [0.2.2] - 2026-07-21\n\n### Fixed\n\n- Code Connect: the checkbox mappings used property names guessed from\n  the radio set; the Figma checkbox masters actually expose\n  `shownSubtext` / `shownLabel` / `shownHelptext` / `validationState`\n  (and `\"indeterminate\"`, not `\"intermediate\"`). v0.2.1's tag publish\n  failed validation on these; this release republishes all 197 mappings.\n  `AurumCheckbox`'s mapping also gained the `types` label-position axis\n  (parity with Android's).\n\n## [0.2.1] - 2026-07-21\n\n### Added\n\n- **`AurumNavBar`**: bottom navigation with `standard3/4/5` and\n  `centerQr5` layouts (item-count preconditions), line→filled icon swap,\n  the `purple/500 → pink/50 @ 61%` brand ramp on selected glyphs (sRGB\n  blend helper — `Color.mix` needs iOS 18), and the raised 56 pt Scan-QR\n  dome (elliptical radial wash, gradient ring, purple hard shadow, 33 pt\n  glyph box for Figma's 27 pt drawn size). Labels clip at the cell edge\n  (Figma's `overflow-clip`) instead of ellipsising. One Code Connect\n  mapping (197 total parse clean) + one snapshot tile. **This completes\n  the aurum-android component-catalogue port** — every Figma-backed\n  Android component now has a SwiftUI counterpart (`AurumScreen` /\n  `AurumFragmentBridge` are Android platform glue with no iOS\n  equivalent).\n\n- **Surface, stepper, transaction card**: `AurumSurface` (base container\n  primitive — token background + shape clip + optional border +\n  `.aurumShadow` elevation; codebase-only), `AurumStepper` (± quantity\n  control, neutral/brand, \"Add\" initial state at `minValue`, bound-aware\n  disabling), `AurumTransactionListCard` (status-tinted history row:\n  `feedback.*` outer wash, white inner card, status badge, tinted amount,\n  optional 40 pt leading slot + helper line). Two Code Connect mappings\n  (196 total parse clean) + three snapshot tiles.\n\n- **Selection family**: `AurumRadioButton` + `AurumRadioGroup`,\n  `AurumCheckbox` (tri-state with check/indeterminate glyph shapes) +\n  `AurumCheckboxGroup`, and `AurumSwitch` (custom-drawn to the Figma/M3\n  anatomy — 52×32 track, thumb grows 16→24 pt with a check glyph when on,\n  which the native `Toggle` can't render). Controls draw Figma's press\n  state-layer via a press-reporting button style; error tinting, disabled\n  fade, start/end label positions, 32 pt-indented subtext, and group\n  label/helper/error lines all mirror Android. Five Code Connect mappings\n  (194 total parse clean) + four snapshot tiles.\n\n- **Tabs**: `AurumTab` (selected/unselected cell, optional 24 pt leading\n  icon, Title/XS-Bold label) + `AurumTabRow` (data-driven `items:` array —\n  a documented deviation from Android's slot lambda; fit-or-scroll width\n  algorithm `max(widestNatural, 100 pt)` with flex-equal fit and\n  pinned-width scroll modes, animated 2 pt indicator, hairline divider).\n  Two Code Connect mappings (189 total parse clean) + one snapshot tile.\n\n- **Headers**: `AurumGlobalHeader` (profile pill with radial sheen +\n  support / rewards+notifications / live-price right-group variants,\n  onLight/onDark schemes with dark-glass gradient borders) and\n  `AurumPageHeader` (56 pt title-and-actions row covering the 10 Figma\n  trailing-action types via nilable button/icon/overflow slots, 32×40 pt\n  icon wrappers, onDark scheme). Both bleed `containerColor` under the\n  status bar at the top edge (Android's inset params with no API). Two\n  Code Connect mappings (187 total parse clean) + two snapshot tiles.\n\n- **Toast + Banner families**: `AurumToast` (6 tones × small/large, per-tone\n  status glyph, always-dismissible; Code Connect mapping — 185 total parse\n  clean) with `AurumToastHost`/`AurumToastHostState` (FIFO-serialised async\n  `showToast`, short/long/indefinite auto-dismiss, slide-up/fade);\n  `AurumBanner` (persistent full-bleed top band, same tonal language,\n  inline action + optional ✕; backgrounds bleed under the status bar at the\n  top edge — Android's `windowInsets` for free) with\n  `AurumBannerHost`/`AurumBannerHostState` (single persistent slot,\n  slide-from-top expand/collapse). Plus `AurumIconButton` (icon-only\n  button, 44 pt touch floor, pressed dim) — needed by both close\n  affordances. Hosts + banner + icon button are codebase-only (no Figma\n  nodes), mirroring Android. `AurumElevationLevel` gained a public init\n  (Android parity) for the toast's master-declared 0/1/1 shadow recipe.\n  Four snapshot tiles.\n\n- **Progress bars**: `AurumProgressBar` (determinate 8 pt track + primary\n  fill, optional label/percentage header) and `AurumSegmentedProgressBar`\n  (bars/bubbles × 6 intents, numbered checkpoints). Two Code Connect\n  mappings (184 total parse clean) + two snapshot tiles.\n- **`AurumBottomSheet`** (`.aurumBottomSheet` modifier): native `.sheet`\n  presentation with a self-sizing `.height` detent, token corner radius +\n  card colour, strict (56 pt header + sticky button slot) and flexible\n  types. Platform deviations documented: system drag indicator inside the\n  card, system scrim.\n- **`AurumOtpInput`**: underline digit cells (4/6), invisible capture field\n  with `oneTimeCode` autofill, none/error/success/timer validation states,\n  completion-boundary `onComplete`. `AurumTypeStyle` gained a public init\n  (parity with Android's constructible `TextStyle`) for its Figma-specified\n  24/32 Bold digit style.\n\n- **Field family**: `AurumTextField` (static-label anatomy, validation-driven\n  borders and derived status affordances, counter, secure entry, multiline;\n  shape via a small enum — SwiftUI's `InsettableShape` can't be type-erased),\n  `AurumSearchField` (pill + magnifier + clear), `AurumPhoneNumberInput`\n  (country prefix + digits-only filter), `AurumAmountInput` (Num/XL hero\n  value + currency symbol + derived suffix). Three more Code Connect\n  mappings (180 total parse clean) and four snapshot tiles.\n\n- **Second component wave**, API-parity ports of aurum-android prioritized\n  by jar consumer usage: `AurumLabel` (default/subtle/strong × uppercase),\n  `AurumLinkButton` (text-only brand action with pressed dim + slots),\n  `AurumBadge` (6 roles × 2 emphases × 2 sizes, cross-axis token pairing,\n  optional leading icon), `AurumChip` (action/other × neutral/brand/black/\n  selected × large/small with pressed states), `AurumSectionHeader`\n  (title/subtitle + link/text/icon actions). Each with doc tags, a Code\n  Connect mapping (177 total now published on release), and snapshot tiles.\n\n### Fixed\n\n- `AurumChip`'s capsule border rasterizes its stroke (`drawingGroup`) to\n  side-step an iOS 26.5 shape-layer quirk that paints stray vertical\n  hairlines at a stroked capsule's horizontal extremes.\n\n## [0.2.0] - 2026-07-20\n\n### Removed\n\n- **`AurumIcons.Navigation.caretCircleUp/Down/Left/Right` (+ `Filled`) —\n  removed to restore the 1:1 sheet↔catalog contract** (breaking). Their\n  Figma masters were deleted from the \"Component Icons\" sheet and current\n  product designs use chevron affordances exclusively; keeping ghost icons\n  breaks the premise that the catalog mirrors the sheet. Mirrors\n  aurum-android PR #57 (same removal); jar-android's only usage migrates to\n  a disc + `chevronRight` composition. 8 imagesets, 8 catalog entries gone\n  (170 remain); the `FIGMA_DELETED` workaround in the importer is gone with\n  them — a deleted Figma node now fails the import loudly, as the 1:1\n  contract demands.\n\n## [0.1.2] - 2026-07-20\n\n### Fixed\n\n- Code Connect: skip the four `CaretCircle*` icon mappings — their Figma\n  master components were deleted from the file (verified via the components\n  API; only the plain Caret set survives), and publish validation fails on\n  ghost nodes. The icon assets remain in the catalog. Android's\n  ICON_MANIFEST carries the same stale node ids and needs the same fix.\n\n## [0.1.1] - 2026-07-20\n\n### Added\n\n- **Figma Code Connect** (research §11.4): `FigmaConnect/` dev-only nested\n  SPM package with 180 `.figma.swift` mappings — `AurumButton` (variant ×\n  size × isFullWidth × label), `AurumLoader`, and one per icon×weight\n  emitted by the icon importer. All 180 validated with the Swift parser\n  (`make figma-parse`). `figma-code-connect.yml` parse-validates on PR and\n  publishes to Dev Mode only from `v*.*.*` tags (Android's release gate,\n  mirrored).\n\n## [0.1.0] - 2026-07-20\n\n### Added\n\n- **First components** (research §11.3), API-parity ports of aurum-android:\n  - `AurumText` — canonical text primitive over `Aurum.type.*` roles with the\n    Android foreground-resolution order (explicit `foreground:` ShapeStyle →\n    `color:` → `textDefaultNormal`); `AttributedString` overload for\n    per-run styling.\n  - `AurumIcon` + generated `AurumIcons` catalog (89 icons × line/filled) —\n    template-rendered asset-catalog SVGs with tint resolution explicit →\n    ambient `\\.aurumContentColor` (the `LocalContentColor` port) →\n    `iconDefaultNormal`; gradient tint overload.\n  - **Icon importer** (`tooling/icon-import/import_icons.py`): converts\n    aurum-android's committed, already-normalized Vector Drawables to\n    imagesets + the Swift catalog, so both platforms share one normalization\n    pipeline (`make icons-import`).\n  - `AurumButton` — variants primary/secondary/tertiary × sizes 40/48/56 pt,\n    full-width, loading, auto-advance `progress`, leading/trailing slots;\n    radial primary fill, top-lit rim, and the dimensional purple/800\n    hard-shadow press (drop + 2 pt sink) via a private `ButtonStyle`.\n  - `AurumLoader` — track + 90° arc spinner with optional right/bottom label.\n  - `AurumDivider`, `AurumSkeleton` (t=0-deterministic shimmer).\n  - Tests: icon-catalog contract suite, button-defaults unit suite, and 13\n    component snapshot tiles mirroring the Android `@AurumPreview` groups.\n\n- **Foundations** — the initial package skeleton per the architecture research\n  (`docs/ios-design-system-research.md`):\n  - Source SPM package with two products: `AurumTokens` (extension-safe token\n    layer) and `Aurum` (components + paint toolkit, re-exports the tokens).\n    iOS 17 floor.\n  - **Token codegen** (`tooling/token-codegen/generate.py`): committed Figma\n    W3C JSON exports → generated Swift token layer (`Sources/AurumTokens/Token/`),\n    with a `--check` determinism gate for CI. Name mapping is a faithful port\n    of the Token Sync plugin's `mapping.ts`. 156 palette primitives, 295\n    semantic + visual colors, 45 typography composites, 4 elevation recipes,\n    spacing/radius/borderWidth/iconSize scales.\n  - **Theme layer**: static `Aurum.*` namespace (`colors`, `type`, `space`,\n    `radius`, `borderWidth`, `shape`, `elevation`, `iconSize`, `motion`,\n    `opacity`), theme-shaped structs, `AurumRoot` / `.aurumTheme()`.\n  - **Typography**: bundled static Inter + Frank Ruhl Libre TTFs registered at\n    runtime (`Aurum.registerFonts()`, idempotent); every style carries a\n    Dynamic Type anchor (`relativeTo`); `.aurumType(_:)` reproduces Figma's\n    exact line height and scales it along the anchor curve.\n  - **Paint toolkit**: `AurumLinearGradient` (CSS-angle, size-aware),\n    `AurumRadialGradient` (circular + rotated-elliptical via Core Graphics),\n    `.aurumShadow()` (offset/blur/spread/tint, Figma-blur÷2 conversion,\n    interior knockout, optional alpha mask), `.aurumHardShadow()`,\n    `.aurumInnerShadow()`, `Aurum.shape.smooth()` continuous corners.\n  - **Tests**: token integrity + paint math unit suites; snapshot harness on\n    swift-snapshot-testing with Git LFS baselines (pinned: iPhone 17 Pro,\n    iOS 26.5) covering gradients, shadows, squircle audit, and the full type\n    ramp.\n  - CI: `check.yml` (codegen gate + build + test) and `record.yml`\n    (label-triggered baseline re-record).\n",
    "entries": [
      {
        "version": "0.2.3",
        "date": "2026-07-30",
        "sections": {
          "Fixed": [
            "**`AurumSectionHeaderAction.link` now renders neutral-subtle, matching its Figma master (`5442:462`).** The link action was styled identically to the `text` action — `Title/XS-SemiBold` in `interactive.textPrimaryNormal` (brand purple) with a 20pt `iconPrimaryNormal` chevron — so \"View All / See More\" links shouted as loudly as the section title and were indistinguishable from a brand text-button. The sheet's `action link` layer specifies `Body/S-Medium` in `interactive.textNeutralSubtle` with a 12pt `interactive.iconNeutralSubtle` chevron; the component now follows it. `text` is unchanged and remains the brand-emphasis option. **Consumer impact:** every existing `link` action becomes grey and one step smaller — intended, but visible. Mirrors aurum-android 0.3.29.",
            "**`surface.textStaticBlackDisabled` / `surface.iconStaticBlackDisabled` were `#121212`; Figma and Android say `#000000`** (same 32% alpha). The token-codegen carried a deliberate \"normalize `_global-colors/neutral/ black/100` to palette `black100` for Android parity\" mapping whose premise was false — verified against the live Figma file (alias chain walks to `#000000@0.32`) and Android's manifest (ships `#000000`). The mapping also silenced the codegen's own alias-integrity check. Removed: aliases into collections outside the primitives export now inline Figma's resolved value verbatim (and `colors/*` misses still hard-fail). Surfaced by aurum-mcp's cross-platform token-parity check at merge time."
          ],
          "Changed": [
            "**Portal redesigned as a specimen book** (`tooling/gallery/`): the presentation layer is now the locked Aurum-portal design system (`tooling/gallery/design.md`, shared with aurum-android; platform lens tokens are the only divergence). Newspaper masthead with the version as the issue line, live type specimens rendered from real tokens on the landing page, hairline plates instead of cards, tabular spec sheets on component pages, typographic Do/Don't columns, a build-facts colophon footer, full OKLCH tokenisation (`tooling/gallery/tokens.css`), in-place copy feedback, and a platform-lens colour drawn from the system's own palette (iOS = visual.blue.600). Verified at 320/375/768/1440 px with no horizontal scroll; light + dark.",
            "**Gallery rebuilt as the \"Aurum for iOS\" designer portal** (`tooling/gallery/generate.py`): the presentation layer is now a port of aurum-android's portal — landing page with hero/stats/release card, light/dark/auto theme, ⌘K live search on components and icons, copy-to-clipboard token swatches and icon symbol paths, per-component pages with intended-use/Do/Don't cards and pinned-simulator snapshot tiles, SPM install section, and bidirectional cross-links with the Android portal. Data layer, CLI (`--validate` / `--emit-manifest` / `--out`), and manifest schema unchanged."
          ],
          "Added": [
            "**`AurumIcons.Navigation.caretBold{Up,Down,Left,Right}` (+ `Filled`).** Their masters have been sitting in the canonical icon sheet (`5130:35416`) without code counterparts on either platform. Single-weight in Figma, so both weights resolve to the same asset — the same convention the existing caret family uses. Imported via `make icons-import` from aurum-android's normalized Vector Drawables, bringing the iOS set back to parity at 89 icons × 2 weights. The `ICON_MANIFEST` in `tooling/icon-import/import_icons.py` gained the matching entries; it is a verbatim port of Android's table, so an entry added on one platform must land on the other in the same sitting.",
            "**Catalog app** (`catalog/AurumCatalog.xcodeproj`, XcodeGen-generated from `project.yml` — SPM can't declare app targets): an on-device showcase with 11 family screens covering every component, including live demos of the stateful surfaces the static gallery can't show — the toast FIFO queue + timers, the persistent banner host, bottom sheet presentations, and interactive tabs / nav bar / stepper / selection controls. `make catalog` regenerates + builds.",
            "**Gallery + MCP manifest tooling** (`tooling/gallery/generate.py`, the iOS twin of aurum-android's generator): `--validate` enforces the doc-tag + Figma-url contract in CI (`make validate-docs`, wired into `check.yml`); `--out` renders the static HTML gallery (components with doc tags + snapshot strips, tokens, icons, changelog); `--emit-manifest` emits the aurum-mcp manifest (`schemaVersion: 2`, `platforms: [\"ios\"]`), schema-validated against aurum-android's contract. `pages.yml` deploys gallery + `/data/manifest.json` to GitHub Pages after `check` passes on main."
          ]
        }
      },
      {
        "version": "0.2.2",
        "date": "2026-07-21",
        "sections": {
          "Fixed": [
            "Code Connect: the checkbox mappings used property names guessed from the radio set; the Figma checkbox masters actually expose `shownSubtext` / `shownLabel` / `shownHelptext` / `validationState` (and `\"indeterminate\"`, not `\"intermediate\"`). v0.2.1's tag publish failed validation on these; this release republishes all 197 mappings. `AurumCheckbox`'s mapping also gained the `types` label-position axis (parity with Android's)."
          ]
        }
      },
      {
        "version": "0.2.1",
        "date": "2026-07-21",
        "sections": {
          "Added": [
            "**`AurumNavBar`**: bottom navigation with `standard3/4/5` and `centerQr5` layouts (item-count preconditions), line→filled icon swap, the `purple/500 → pink/50 @ 61%` brand ramp on selected glyphs (sRGB blend helper — `Color.mix` needs iOS 18), and the raised 56 pt Scan-QR dome (elliptical radial wash, gradient ring, purple hard shadow, 33 pt glyph box for Figma's 27 pt drawn size). Labels clip at the cell edge (Figma's `overflow-clip`) instead of ellipsising. One Code Connect mapping (197 total parse clean) + one snapshot tile. **This completes the aurum-android component-catalogue port** — every Figma-backed Android component now has a SwiftUI counterpart (`AurumScreen` / `AurumFragmentBridge` are Android platform glue with no iOS equivalent).",
            "**Surface, stepper, transaction card**: `AurumSurface` (base container primitive — token background + shape clip + optional border + `.aurumShadow` elevation; codebase-only), `AurumStepper` (± quantity control, neutral/brand, \"Add\" initial state at `minValue`, bound-aware disabling), `AurumTransactionListCard` (status-tinted history row: `feedback.*` outer wash, white inner card, status badge, tinted amount, optional 40 pt leading slot + helper line). Two Code Connect mappings (196 total parse clean) + three snapshot tiles.",
            "**Selection family**: `AurumRadioButton` + `AurumRadioGroup`, `AurumCheckbox` (tri-state with check/indeterminate glyph shapes) + `AurumCheckboxGroup`, and `AurumSwitch` (custom-drawn to the Figma/M3 anatomy — 52×32 track, thumb grows 16→24 pt with a check glyph when on, which the native `Toggle` can't render). Controls draw Figma's press state-layer via a press-reporting button style; error tinting, disabled fade, start/end label positions, 32 pt-indented subtext, and group label/helper/error lines all mirror Android. Five Code Connect mappings (194 total parse clean) + four snapshot tiles.",
            "**Tabs**: `AurumTab` (selected/unselected cell, optional 24 pt leading icon, Title/XS-Bold label) + `AurumTabRow` (data-driven `items:` array — a documented deviation from Android's slot lambda; fit-or-scroll width algorithm `max(widestNatural, 100 pt)` with flex-equal fit and pinned-width scroll modes, animated 2 pt indicator, hairline divider). Two Code Connect mappings (189 total parse clean) + one snapshot tile.",
            "**Headers**: `AurumGlobalHeader` (profile pill with radial sheen + support / rewards+notifications / live-price right-group variants, onLight/onDark schemes with dark-glass gradient borders) and `AurumPageHeader` (56 pt title-and-actions row covering the 10 Figma trailing-action types via nilable button/icon/overflow slots, 32×40 pt icon wrappers, onDark scheme). Both bleed `containerColor` under the status bar at the top edge (Android's inset params with no API). Two Code Connect mappings (187 total parse clean) + two snapshot tiles.",
            "**Toast + Banner families**: `AurumToast` (6 tones × small/large, per-tone status glyph, always-dismissible; Code Connect mapping — 185 total parse clean) with `AurumToastHost`/`AurumToastHostState` (FIFO-serialised async `showToast`, short/long/indefinite auto-dismiss, slide-up/fade); `AurumBanner` (persistent full-bleed top band, same tonal language, inline action + optional ✕; backgrounds bleed under the status bar at the top edge — Android's `windowInsets` for free) with `AurumBannerHost`/`AurumBannerHostState` (single persistent slot, slide-from-top expand/collapse). Plus `AurumIconButton` (icon-only button, 44 pt touch floor, pressed dim) — needed by both close affordances. Hosts + banner + icon button are codebase-only (no Figma nodes), mirroring Android. `AurumElevationLevel` gained a public init (Android parity) for the toast's master-declared 0/1/1 shadow recipe. Four snapshot tiles.",
            "**Progress bars**: `AurumProgressBar` (determinate 8 pt track + primary fill, optional label/percentage header) and `AurumSegmentedProgressBar` (bars/bubbles × 6 intents, numbered checkpoints). Two Code Connect mappings (184 total parse clean) + two snapshot tiles.",
            "**`AurumBottomSheet`** (`.aurumBottomSheet` modifier): native `.sheet` presentation with a self-sizing `.height` detent, token corner radius + card colour, strict (56 pt header + sticky button slot) and flexible types. Platform deviations documented: system drag indicator inside the card, system scrim.",
            "**`AurumOtpInput`**: underline digit cells (4/6), invisible capture field with `oneTimeCode` autofill, none/error/success/timer validation states, completion-boundary `onComplete`. `AurumTypeStyle` gained a public init (parity with Android's constructible `TextStyle`) for its Figma-specified 24/32 Bold digit style.",
            "**Field family**: `AurumTextField` (static-label anatomy, validation-driven borders and derived status affordances, counter, secure entry, multiline; shape via a small enum — SwiftUI's `InsettableShape` can't be type-erased), `AurumSearchField` (pill + magnifier + clear), `AurumPhoneNumberInput` (country prefix + digits-only filter), `AurumAmountInput` (Num/XL hero value + currency symbol + derived suffix). Three more Code Connect mappings (180 total parse clean) and four snapshot tiles.",
            "**Second component wave**, API-parity ports of aurum-android prioritized by jar consumer usage: `AurumLabel` (default/subtle/strong × uppercase), `AurumLinkButton` (text-only brand action with pressed dim + slots), `AurumBadge` (6 roles × 2 emphases × 2 sizes, cross-axis token pairing, optional leading icon), `AurumChip` (action/other × neutral/brand/black/ selected × large/small with pressed states), `AurumSectionHeader` (title/subtitle + link/text/icon actions). Each with doc tags, a Code Connect mapping (177 total now published on release), and snapshot tiles."
          ],
          "Fixed": [
            "`AurumChip`'s capsule border rasterizes its stroke (`drawingGroup`) to side-step an iOS 26.5 shape-layer quirk that paints stray vertical hairlines at a stroked capsule's horizontal extremes."
          ]
        }
      },
      {
        "version": "0.2.0",
        "date": "2026-07-20",
        "sections": {
          "Removed": [
            "**`AurumIcons.Navigation.caretCircleUp/Down/Left/Right` (+ `Filled`) — removed to restore the 1:1 sheet↔catalog contract** (breaking). Their Figma masters were deleted from the \"Component Icons\" sheet and current product designs use chevron affordances exclusively; keeping ghost icons breaks the premise that the catalog mirrors the sheet. Mirrors aurum-android PR #57 (same removal); jar-android's only usage migrates to a disc + `chevronRight` composition. 8 imagesets, 8 catalog entries gone (170 remain); the `FIGMA_DELETED` workaround in the importer is gone with them — a deleted Figma node now fails the import loudly, as the 1:1 contract demands."
          ]
        }
      },
      {
        "version": "0.1.2",
        "date": "2026-07-20",
        "sections": {
          "Fixed": [
            "Code Connect: skip the four `CaretCircle*` icon mappings — their Figma master components were deleted from the file (verified via the components API; only the plain Caret set survives), and publish validation fails on ghost nodes. The icon assets remain in the catalog. Android's ICON_MANIFEST carries the same stale node ids and needs the same fix."
          ]
        }
      },
      {
        "version": "0.1.1",
        "date": "2026-07-20",
        "sections": {
          "Added": [
            "**Figma Code Connect** (research §11.4): `FigmaConnect/` dev-only nested SPM package with 180 `.figma.swift` mappings — `AurumButton` (variant × size × isFullWidth × label), `AurumLoader`, and one per icon×weight emitted by the icon importer. All 180 validated with the Swift parser (`make figma-parse`). `figma-code-connect.yml` parse-validates on PR and publishes to Dev Mode only from `v*.*.*` tags (Android's release gate, mirrored)."
          ]
        }
      },
      {
        "version": "0.1.0",
        "date": "2026-07-20",
        "sections": {
          "Added": [
            "**First components** (research §11.3), API-parity ports of aurum-android: - `AurumText` — canonical text primitive over `Aurum.type.*` roles with the Android foreground-resolution order (explicit `foreground:` ShapeStyle → `color:` → `textDefaultNormal`); `AttributedString` overload for per-run styling. - `AurumIcon` + generated `AurumIcons` catalog (89 icons × line/filled) — template-rendered asset-catalog SVGs with tint resolution explicit → ambient `\\.aurumContentColor` (the `LocalContentColor` port) → `iconDefaultNormal`; gradient tint overload. - **Icon importer** (`tooling/icon-import/import_icons.py`): converts aurum-android's committed, already-normalized Vector Drawables to imagesets + the Swift catalog, so both platforms share one normalization pipeline (`make icons-import`). - `AurumButton` — variants primary/secondary/tertiary × sizes 40/48/56 pt, full-width, loading, auto-advance `progress`, leading/trailing slots; radial primary fill, top-lit rim, and the dimensional purple/800 hard-shadow press (drop + 2 pt sink) via a private `ButtonStyle`. - `AurumLoader` — track + 90° arc spinner with optional right/bottom label. - `AurumDivider`, `AurumSkeleton` (t=0-deterministic shimmer). - Tests: icon-catalog contract suite, button-defaults unit suite, and 13 component snapshot tiles mirroring the Android `@AurumPreview` groups.",
            "**Foundations** — the initial package skeleton per the architecture research (`docs/ios-design-system-research.md`): - Source SPM package with two products: `AurumTokens` (extension-safe token layer) and `Aurum` (components + paint toolkit, re-exports the tokens). iOS 17 floor. - **Token codegen** (`tooling/token-codegen/generate.py`): committed Figma W3C JSON exports → generated Swift token layer (`Sources/AurumTokens/Token/`), with a `--check` determinism gate for CI. Name mapping is a faithful port of the Token Sync plugin's `mapping.ts`. 156 palette primitives, 295 semantic + visual colors, 45 typography composites, 4 elevation recipes, spacing/radius/borderWidth/iconSize scales. - **Theme layer**: static `Aurum.*` namespace (`colors`, `type`, `space`, `radius`, `borderWidth`, `shape`, `elevation`, `iconSize`, `motion`, `opacity`), theme-shaped structs, `AurumRoot` / `.aurumTheme()`. - **Typography**: bundled static Inter + Frank Ruhl Libre TTFs registered at runtime (`Aurum.registerFonts()`, idempotent); every style carries a Dynamic Type anchor (`relativeTo`); `.aurumType(_:)` reproduces Figma's exact line height and scales it along the anchor curve. - **Paint toolkit**: `AurumLinearGradient` (CSS-angle, size-aware), `AurumRadialGradient` (circular + rotated-elliptical via Core Graphics), `.aurumShadow()` (offset/blur/spread/tint, Figma-blur÷2 conversion, interior knockout, optional alpha mask), `.aurumHardShadow()`, `.aurumInnerShadow()`, `Aurum.shape.smooth()` continuous corners. - **Tests**: token integrity + paint math unit suites; snapshot harness on swift-snapshot-testing with Git LFS baselines (pinned: iPhone 17 Pro, iOS 26.5) covering gradients, shadows, squircle audit, and the full type ramp. - CI: `check.yml` (codegen gate + build + test) and `record.yml` (label-triggered baseline re-record)."
          ]
        }
      }
    ]
  }
}
