@singi-labs/sifa-sdk 0.19.46 → 0.19.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/taxonomy/activity-tiers.ts","../../src/taxonomy/activity-tiers.json"],"sourcesContent":["import { z } from 'zod';\n\n// This SDK is the source of truth for the activity taxonomy.\n//\n// It used to be synced from sifa-lexicons, but the taxonomy is editorial\n// rather than protocol: none of it is published to a PDS, and it governs how\n// Sifa renders records rather than what any record means. Keeping it in the\n// lexicon repo meant it lived where nobody edited it, and the two copies\n// drifted 60 entries apart before anything noticed.\n//\n// It is served publicly at https://sifa.id/.well-known/sifa-activity-tiers.json\n// so third-party clients and sibling AppViews can read Sifa's choices rather\n// than infer them.\nimport rawTaxonomy from './activity-tiers.json' with { type: 'json' };\n\nexport type ActivityTier = 'creation' | 'action' | 'filtered';\n\nexport interface TierMeta {\n label: string | null;\n description: string;\n shownOnPublicProfile: boolean;\n}\n\nexport interface LexiconEntry {\n tier: ActivityTier;\n app?: string;\n notes?: string;\n}\n\nexport interface ActivityTaxonomy {\n version: string;\n updated: string;\n tiers: Record<ActivityTier, TierMeta>;\n lexicons: Record<string, LexiconEntry>;\n}\n\nconst tierMetaSchema = z.object({\n label: z.string().nullable(),\n description: z.string(),\n shownOnPublicProfile: z.boolean(),\n});\n\nconst lexiconEntrySchema = z.object({\n tier: z.enum(['creation', 'action', 'filtered']),\n app: z.string().optional(),\n notes: z.string().optional(),\n});\n\nconst taxonomySchema = z.object({\n version: z.string(),\n updated: z.string(),\n tiers: z.object({\n creation: tierMetaSchema,\n action: tierMetaSchema,\n filtered: tierMetaSchema,\n }),\n lexicons: z.record(z.string(), lexiconEntrySchema),\n});\n\nconst parsed: ActivityTaxonomy = taxonomySchema.parse(rawTaxonomy);\n\nexport const ACTIVITY_TIERS: Readonly<ActivityTaxonomy> = Object.freeze(parsed);\n\n/**\n * Returns the activity tier for a given AT Protocol NSID.\n * Returns 'filtered' for unknown/unclassified NSIDs (safe default — won't\n * leak unknown records to public profile surfaces).\n */\nexport function getActivityTier(nsid: string): ActivityTier {\n if (!nsid) return 'filtered';\n const entry = ACTIVITY_TIERS.lexicons[nsid];\n return entry ? entry.tier : 'filtered';\n}\n\n/**\n * Returns the full lexicon entry (tier + app + notes), or null if unknown.\n */\nexport function getLexiconEntry(nsid: string): LexiconEntry | null {\n if (!nsid) return null;\n const entry = ACTIVITY_TIERS.lexicons[nsid];\n return entry ?? null;\n}\n\n/**\n * Returns tier metadata (label, description, public visibility).\n */\nexport function getTierMeta(tier: ActivityTier): TierMeta {\n return ACTIVITY_TIERS.tiers[tier];\n}\n\n/**\n * Returns the taxonomy version + updated date for diagnostics and\n * version-skew detection between SDK consumers and the canonical taxonomy.\n */\nexport function getActivityTaxonomyVersion(): { version: string; updated: string } {\n return { version: ACTIVITY_TIERS.version, updated: ACTIVITY_TIERS.updated };\n}\n","{\n \"$schema\": \"https://sifa.id/schemas/activity-tiers/v1.json\",\n \"version\": \"1.4.0\",\n \"updated\": \"2026-09-04\",\n \"tiers\": {\n \"creation\": {\n \"label\": \"Made\",\n \"description\": \"Substantive records the actor authored: posts, articles, repos, galleries, livestreams, RSVPs, CV entries. Surfaced on the public profile and in the network timeline.\",\n \"shownOnPublicProfile\": true\n },\n \"action\": {\n \"label\": \"Did\",\n \"description\": \"Engagement records (likes, reposts, follows, votes, stars, reactions). Visible to the actor on the 'What is public about me' page and on the originating app, but not surfaced on the Sifa public profile.\",\n \"shownOnPublicProfile\": false\n },\n \"filtered\": {\n \"label\": null,\n \"description\": \"Configuration, infrastructure, moderation, game state, ephemeral consumption signals (bookmarks, highlights), and other records Sifa does not display anywhere. The records remain public on the actor's PDS regardless.\",\n \"shownOnPublicProfile\": false\n }\n },\n \"lexicons\": {\n \"actor.rpg.sprite\": {\n \"tier\": \"creation\",\n \"app\": \"rpgactor\",\n \"notes\": \"The player's pixel-art RPG character sprite sheet (rkey self), portable across games.\"\n },\n \"equipment.rpg.item\": {\n \"tier\": \"creation\",\n \"app\": \"rpgactor\",\n \"notes\": \"An equipment item the player accepted from a provider, in the player's own repo. The provider-side equipment.rpg.give stays filtered.\"\n },\n \"agency.portable.membership\": {\n \"tier\": \"creation\",\n \"app\": \"portable\",\n \"notes\": \"Joining a community (a commitment), attested by another actor.\"\n },\n \"in.atmob.paste.document\": {\n \"tier\": \"creation\",\n \"app\": \"atmob\"\n },\n \"in.atmob.paste.bundle\": {\n \"tier\": \"creation\",\n \"app\": \"atmob\"\n },\n \"ma.tokono.byov.video\": {\n \"tier\": \"creation\",\n \"app\": \"tokono\"\n },\n \"app.atmobb.discussion.reply\": {\n \"tier\": \"creation\",\n \"app\": \"atmobb\",\n \"notes\": \"Replies are authored text, consistent with app.bsky.feed.post covering replies.\"\n },\n \"app.atmobb.discussion.thread\": {\n \"tier\": \"creation\",\n \"app\": \"atmobb\"\n },\n \"app.beaconbits.beacon\": {\n \"tier\": \"creation\",\n \"app\": \"beaconbits\"\n },\n \"app.bsky.actor.profile\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Profile metadata record.\"\n },\n \"app.bsky.feed.generator\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Feed generator definition record, not personal activity.\"\n },\n \"app.bsky.feed.like\": {\n \"tier\": \"action\",\n \"app\": \"bluesky\"\n },\n \"app.bsky.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"bluesky\",\n \"notes\": \"Ambiguous: many posts are casual, but the lexicon also carries long-form posts and threads. Treated as creation; empty quote-posts (no text + record embed) are filtered at the consumer layer, not here.\"\n },\n \"app.bsky.feed.repost\": {\n \"tier\": \"action\",\n \"app\": \"bluesky\"\n },\n \"app.bsky.graph.block\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Moderation record.\"\n },\n \"app.bsky.graph.follow\": {\n \"tier\": \"action\",\n \"app\": \"bluesky\"\n },\n \"app.bsky.graph.list\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"User-curated list metadata; not surfaced as profile activity.\"\n },\n \"app.bsky.graph.listblock\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Moderation record.\"\n },\n \"app.bsky.graph.listitem\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"List membership; rendered via the parent list, not as standalone activity.\"\n },\n \"app.bsky.graph.mute\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Moderation record.\"\n },\n \"app.bsky.graph.starterpack\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\"\n },\n \"app.bsky.graph.verification\": {\n \"tier\": \"creation\",\n \"app\": \"bluesky\",\n \"notes\": \"Diverges from app.bsky.graph.follow (action) on purpose: verifying another account's handle is a deliberate trust statement the actor authors, not a tap. Sifa renders it with its own card.\"\n },\n \"app.certified.actor.membership\": {\n \"tier\": \"creation\",\n \"app\": \"certified\",\n \"notes\": \"Joining a group is a commitment, same shape as a Colibri or Open Social membership.\"\n },\n \"app.certified.badge.award\": {\n \"tier\": \"creation\",\n \"app\": \"certified\",\n \"notes\": \"An endorsement issued to another DID. A trust signal the actor contributes, like a Bluesky verification.\"\n },\n \"app.certified.badge.response\": {\n \"tier\": \"creation\",\n \"app\": \"certified\",\n \"notes\": \"The recipient's acceptance of a badge someone else awarded them. An accepted badge is a credential the person holds; rejected ones are hidden by an ACTIVITY_VISIBILITY_RULES predicate.\"\n },\n \"app.collectivesocial.feed.list\": {\n \"tier\": \"creation\",\n \"app\": \"collectivesocial\",\n \"notes\": \"Auto-created default Inbox lists are filtered at the consumer layer via isDefault=true predicate.\"\n },\n \"app.dropanchor.checkin\": {\n \"tier\": \"creation\",\n \"app\": \"dropanchor\",\n \"notes\": \"A location check-in (place, geo, category, optional review text). Authored, so creation. app.dropanchor.like is excluded backend-side.\"\n },\n \"app.askeverything.feed.answer\": {\n \"tier\": \"creation\",\n \"app\": \"askeverything\",\n \"notes\": \"An authored answer to a community question (opinion with body text). app.askeverything.actor.* and graph.follow are excluded backend-side.\"\n },\n \"app.greengale.blog.entry\": {\n \"tier\": \"creation\",\n \"app\": \"greengale\",\n \"notes\": \"An authored blog post (title, subtitle, Markdown body, visibility). app.greengale.document and app.greengale.publication (drafts/containers) are excluded backend-side.\"\n },\n \"social.kut.community.membership\": {\n \"tier\": \"creation\",\n \"app\": \"kut\",\n \"notes\": \"Joining a Kut community, a commitment. Mirrors Colibri/OpenSocial memberships, which are creation-tier.\"\n },\n \"app.mcp.server\": {\n \"tier\": \"creation\",\n \"app\": \"mcp\"\n },\n \"app.photosky.collection\": {\n \"tier\": \"creation\",\n \"app\": \"zeens\",\n \"notes\": \"A curated photo collection on Zeens (still the app.photosky namespace).\"\n },\n \"app.sidetrail.trail\": {\n \"tier\": \"creation\",\n \"app\": \"semble\"\n },\n \"app.sidetrail.walk\": {\n \"tier\": \"creation\",\n \"app\": \"semble\"\n },\n \"app.userinput.discussion\": {\n \"tier\": \"creation\",\n \"app\": \"userinput\"\n },\n \"app.userinput.reply\": {\n \"tier\": \"creation\",\n \"app\": \"userinput\",\n \"notes\": \"Replies are authored text, consistent with app.bsky.feed.post covering replies.\"\n },\n \"at.locale.project\": {\n \"tier\": \"creation\",\n \"app\": \"locale\",\n \"notes\": \"A localization project the actor owns: git source, source and target locales.\"\n },\n \"at.locale.translation\": {\n \"tier\": \"creation\",\n \"app\": \"locale\",\n \"notes\": \"One authored translated string for a message key in a target locale.\"\n },\n \"at.margin.annotation\": {\n \"tier\": \"creation\",\n \"app\": \"margin\",\n \"notes\": \"An annotation on someone else's text is still authored writing.\"\n },\n \"at.margin.bookmark\": {\n \"tier\": \"filtered\",\n \"notes\": \"Bookmark \\u2014 consumption signal, not creation.\",\n \"app\": \"margin\"\n },\n \"at.margin.highlight\": {\n \"tier\": \"filtered\",\n \"notes\": \"Highlight \\u2014 consumption signal, not creation.\",\n \"app\": \"margin\"\n },\n \"at.margin.note\": {\n \"tier\": \"creation\",\n \"app\": \"margin\"\n },\n \"at.marque.domain\": {\n \"tier\": \"creation\",\n \"app\": \"marque\"\n },\n \"at.youandme.connection\": {\n \"tier\": \"creation\",\n \"app\": \"youandme\"\n },\n \"blog.pckt.mini.post\": {\n \"tier\": \"creation\",\n \"app\": \"pckt\",\n \"notes\": \"A pckt microblog post. Long-form pckt posts are site.standard.document instead.\"\n },\n \"blue.flashes.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"flashes\"\n },\n \"blue.linkat.board\": {\n \"tier\": \"filtered\",\n \"notes\": \"Link-in-bio board; consumption signal.\",\n \"app\": \"linkat\"\n },\n \"buzz.bookhive.book\": {\n \"tier\": \"creation\",\n \"app\": \"bookhive\"\n },\n \"com.minomobi.music.composition\": {\n \"tier\": \"creation\",\n \"app\": \"minomobi\"\n },\n \"com.shinolabs.pinksea.oekaki\": {\n \"tier\": \"creation\",\n \"app\": \"pinksea\",\n \"notes\": \"A drawing made in PinkSea's canvas, stored as an image blob with alt text and tags.\"\n },\n \"com.voxport.podcast.series\": {\n \"tier\": \"creation\",\n \"app\": \"voxport\"\n },\n \"com.whtwnd.blog.entry\": {\n \"tier\": \"creation\",\n \"app\": \"whitewind\"\n },\n \"community.lexicon.badge.award\": {\n \"tier\": \"creation\",\n \"app\": \"badges\",\n \"notes\": \"The award record is authored by the giver, so it is their attestation about someone else.\"\n },\n \"community.lexicon.bookmarks.bookmark\": {\n \"tier\": \"filtered\",\n \"notes\": \"Bookmark \\u2014 consumption signal.\",\n \"app\": \"kipclip\"\n },\n \"community.lexicon.calendar.rsvp\": {\n \"tier\": \"creation\",\n \"app\": \"smokesignal\",\n \"notes\": \"Ambiguous: RSVPs are reactions to events, but they are public commitments and the only Smoke Signal record Sifa scans today. Classified as creation.\"\n },\n \"community.nooki.comments\": {\n \"tier\": \"creation\",\n \"app\": \"nooki\",\n \"notes\": \"Comments are authored text.\"\n },\n \"community.nooki.membership\": {\n \"tier\": \"creation\",\n \"app\": \"nooki\",\n \"notes\": \"Joining a community, classified like social.colibri.membership (creation).\"\n },\n \"community.opensocial.membership\": {\n \"tier\": \"creation\",\n \"app\": \"opensocial\",\n \"notes\": \"Joining a community, classified like social.colibri.membership (creation).\"\n },\n \"computer.aetheros.page\": {\n \"tier\": \"creation\",\n \"app\": \"aetheros\"\n },\n \"dev.atvouch.graph.vouch\": {\n \"tier\": \"creation\",\n \"app\": \"atvouch\",\n \"notes\": \"Vouching for someone. Authored attestation, same reasoning as fund.at.graph.endorse.\"\n },\n \"dev.baileytownsend.guestbook.entry\": {\n \"tier\": \"creation\",\n \"app\": \"guestbook\",\n \"notes\": \"Signing someone else's guestbook is a short authored message.\"\n },\n \"dev.keytrace.claim\": {\n \"tier\": \"creation\",\n \"app\": \"keytrace\"\n },\n \"dev.skyboard.board\": {\n \"tier\": \"filtered\",\n \"notes\": \"Skyboard task-board metadata.\",\n \"app\": \"skyboard\"\n },\n \"dev.skyboard.op\": {\n \"tier\": \"filtered\",\n \"notes\": \"Skyboard operation log.\",\n \"app\": \"skyboard\"\n },\n \"dev.skyboard.task\": {\n \"tier\": \"filtered\",\n \"notes\": \"Skyboard task record.\",\n \"app\": \"skyboard\"\n },\n \"eu.atcommons.member\": {\n \"tier\": \"creation\",\n \"app\": \"atcommons\",\n \"notes\": \"Joining a national AT Protocol community commons, classified like community.opensocial.membership (creation).\"\n },\n \"events.smokesignal.profile\": {\n \"tier\": \"filtered\",\n \"app\": \"smokesignal\",\n \"notes\": \"Profile metadata record.\"\n },\n \"exchange.recipe.recipe\": {\n \"tier\": \"creation\",\n \"app\": \"recipe\"\n },\n \"fm.plyr.comment\": {\n \"tier\": \"creation\",\n \"app\": \"plyr\",\n \"notes\": \"Comments are authored text.\"\n },\n \"forum.barazo.community.member\": {\n \"tier\": \"creation\",\n \"app\": \"barazo\"\n },\n \"forum.barazo.flag\": {\n \"tier\": \"filtered\",\n \"app\": \"barazo\",\n \"notes\": \"Moderation flag.\"\n },\n \"forum.barazo.post\": {\n \"tier\": \"creation\",\n \"app\": \"barazo\"\n },\n \"forum.barazo.reaction\": {\n \"tier\": \"action\",\n \"app\": \"barazo\"\n },\n \"forum.barazo.reply\": {\n \"tier\": \"action\",\n \"app\": \"barazo\",\n \"notes\": \"Short conversational reply \\u2014 engagement signal.\"\n },\n \"forum.barazo.reputation.event\": {\n \"tier\": \"creation\",\n \"app\": \"barazo\"\n },\n \"fund.at.graph.endorse\": {\n \"tier\": \"creation\",\n \"app\": \"atfund\",\n \"notes\": \"Endorsing someone. Authored attestation, not engagement.\"\n },\n \"fyi.asq.answer\": {\n \"tier\": \"creation\",\n \"app\": \"asq\"\n },\n \"fyi.asq.question\": {\n \"tier\": \"creation\",\n \"app\": \"asq\"\n },\n \"fyi.atstore.listing.review\": {\n \"tier\": \"creation\",\n \"app\": \"atstore\"\n },\n \"fyi.unravel.frontpage.post\": {\n \"tier\": \"creation\",\n \"app\": \"frontpage\"\n },\n \"fyi.unravel.frontpage.vote\": {\n \"tier\": \"action\",\n \"app\": \"frontpage\"\n },\n \"id.sifa.authConnection\": {\n \"tier\": \"filtered\",\n \"app\": \"sifa\",\n \"notes\": \"OAuth scope record.\"\n },\n \"id.sifa.authMeet\": {\n \"tier\": \"filtered\",\n \"app\": \"sifa\",\n \"notes\": \"OAuth scope record.\"\n },\n \"id.sifa.authProfile\": {\n \"tier\": \"filtered\",\n \"app\": \"sifa\",\n \"notes\": \"OAuth scope record.\"\n },\n \"id.sifa.authProfileAccess\": {\n \"tier\": \"filtered\",\n \"app\": \"sifa\",\n \"notes\": \"OAuth profile-access record.\"\n },\n \"id.sifa.authProject\": {\n \"tier\": \"filtered\",\n \"app\": \"sifa\",\n \"notes\": \"OAuth scope record.\"\n },\n \"id.sifa.confirmation\": {\n \"tier\": \"action\",\n \"app\": \"sifa\",\n \"notes\": \"Confirmation that a record naming the actor is accurate (co-speaker credit, project membership).\"\n },\n \"id.sifa.endorsement\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\",\n \"notes\": \"Endorsement authored by the actor about another profile.\"\n },\n \"id.sifa.endorsement.confirmation\": {\n \"tier\": \"action\",\n \"app\": \"sifa\",\n \"notes\": \"Confirmation/acceptance of an endorsement received.\"\n },\n \"id.sifa.graph.connection\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\",\n \"notes\": \"Mutual professional connection record.\"\n },\n \"id.sifa.graph.follow\": {\n \"tier\": \"action\",\n \"app\": \"sifa\"\n },\n \"id.sifa.meeting\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.certification\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.course\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.education\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.externalAccount\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.honor\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.language\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.location\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.position\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.presentation\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.presentationDelivery\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.project\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.publication\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.self\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\",\n \"notes\": \"Sifa professional profile root.\"\n },\n \"id.sifa.profile.skill\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.volunteering\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.project.member\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\",\n \"notes\": \"Deprecated, never implemented. Superseded by id.sifa.confirmation.\"\n },\n \"id.sifa.project.membership\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\",\n \"notes\": \"Deprecated, never implemented. Superseded by id.sifa.confirmation.\"\n },\n \"id.sifa.project.self\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"io.atcr.repo.page\": {\n \"tier\": \"creation\",\n \"app\": \"atcr\"\n },\n \"io.calabro.watsm.program\": {\n \"tier\": \"creation\",\n \"app\": \"watsm\"\n },\n \"io.kich.recipe.recipe\": {\n \"tier\": \"creation\",\n \"app\": \"kich\"\n },\n \"is.kevara.directory.speaker\": {\n \"tier\": \"creation\",\n \"app\": \"kevara\"\n },\n \"li.plonk.paste\": {\n \"tier\": \"creation\",\n \"app\": \"plonk\"\n },\n \"link.pastesphere.snippet\": {\n \"tier\": \"creation\",\n \"app\": \"pastesphere\"\n },\n \"net.alternativeproto.submission\": {\n \"tier\": \"creation\",\n \"app\": \"alternativeproto\"\n },\n \"net.alternativeproto.vote\": {\n \"tier\": \"action\",\n \"notes\": \"Vote record on a third-party protocol.\",\n \"app\": \"alternativeproto\"\n },\n \"net.anisota.feed.list\": {\n \"tier\": \"creation\",\n \"app\": \"anisota\"\n },\n \"net.anisota.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"anisota\"\n },\n \"net.anisota.player.state\": {\n \"tier\": \"filtered\",\n \"notes\": \"Anisota game player state.\",\n \"app\": \"anisota\"\n },\n \"network.cosmik.card\": {\n \"tier\": \"filtered\",\n \"notes\": \"Link-in-bio card; consumption signal.\",\n \"app\": \"cosmik\"\n },\n \"network.cosmik.collection\": {\n \"tier\": \"filtered\",\n \"notes\": \"Stale registry id \\u2014 Cosmik formerly in app registry.\",\n \"app\": \"cosmik\"\n },\n \"network.cosmik.collectionLink\": {\n \"tier\": \"filtered\",\n \"app\": \"cosmik\"\n },\n \"network.cosmik.connection\": {\n \"tier\": \"filtered\",\n \"app\": \"cosmik\"\n },\n \"network.cosmik.follow\": {\n \"tier\": \"filtered\",\n \"app\": \"cosmik\"\n },\n \"one.papili.post\": {\n \"tier\": \"creation\",\n \"app\": \"papili\"\n },\n \"org.hypercerts.claim.activity\": {\n \"tier\": \"creation\",\n \"app\": \"hypercerts\",\n \"notes\": \"A hypercert: an authored claim of work done, with title, description, and weighted contributors.\"\n },\n \"org.hypercerts.claim.collection\": {\n \"tier\": \"creation\",\n \"app\": \"hypercerts\",\n \"notes\": \"Older shape of the project container that groups claims. Superseded by org.hypercerts.collection.\"\n },\n \"org.hypercerts.claim.evaluation\": {\n \"tier\": \"creation\",\n \"app\": \"hypercerts\",\n \"notes\": \"An assessment of a claim carrying a score and a written summary. An opinion with a body.\"\n },\n \"org.hypercerts.collection\": {\n \"tier\": \"creation\",\n \"app\": \"hypercerts\",\n \"notes\": \"An authored project container grouping hypercert claims, with its own title, banner, and description.\"\n },\n \"org.impactindexer.review.comment\": {\n \"tier\": \"creation\",\n \"app\": \"impactindexer\",\n \"notes\": \"A written review of a hypercert claim, like a Popfeed or BookHive review.\"\n },\n \"org.v-it.skill\": {\n \"tier\": \"creation\",\n \"app\": \"vit\"\n },\n \"os.aether.docs.presentation\": {\n \"tier\": \"creation\",\n \"app\": \"aetherdocs\"\n },\n \"pics.pixl.image\": {\n \"tier\": \"creation\",\n \"app\": \"pixl\"\n },\n \"place.stream.broadcast.origin\": {\n \"tier\": \"filtered\",\n \"app\": \"streamplace\",\n \"notes\": \"Broadcast origin/infrastructure record.\"\n },\n \"place.stream.chat.message\": {\n \"tier\": \"filtered\",\n \"app\": \"streamplace\",\n \"notes\": \"Ephemeral chat message.\"\n },\n \"place.stream.chat.profile\": {\n \"tier\": \"filtered\",\n \"app\": \"streamplace\",\n \"notes\": \"Chat profile metadata.\"\n },\n \"place.stream.key\": {\n \"tier\": \"filtered\",\n \"app\": \"streamplace\",\n \"notes\": \"Stream key \\u2014 sensitive infrastructure record.\"\n },\n \"place.stream.livestream\": {\n \"tier\": \"creation\",\n \"app\": \"streamplace\"\n },\n \"place.stream.metadata.configuration\": {\n \"tier\": \"filtered\",\n \"app\": \"streamplace\",\n \"notes\": \"Stream configuration metadata.\"\n },\n \"pub.chive.eprint.submission\": {\n \"tier\": \"creation\",\n \"app\": \"chive\",\n \"notes\": \"An authored preprint: title, ordered authors with affiliations, abstract.\"\n },\n \"pub.leaflet.authFullPermissions\": {\n \"tier\": \"filtered\",\n \"app\": \"leaflet\",\n \"notes\": \"OAuth permission record.\"\n },\n \"pub.leaflet.comment\": {\n \"tier\": \"creation\",\n \"app\": \"leaflet\"\n },\n \"pub.leaflet.interactions.recommend\": {\n \"tier\": \"action\",\n \"app\": \"leaflet\"\n },\n \"quest.atmo.checkin\": {\n \"tier\": \"creation\",\n \"app\": \"atmorsvp\",\n \"notes\": \"Attendance, classified like community.lexicon.calendar.rsvp (creation) rather than as engagement. The creation tier description names RSVPs explicitly.\"\n },\n \"quest.atmo.event\": {\n \"tier\": \"creation\",\n \"app\": \"atmorsvp\"\n },\n \"sh.tangled.actor.profile\": {\n \"tier\": \"filtered\",\n \"app\": \"tangled\",\n \"notes\": \"Profile metadata record.\"\n },\n \"sh.tangled.feed.star\": {\n \"tier\": \"action\",\n \"app\": \"tangled\"\n },\n \"sh.tangled.graph.follow\": {\n \"tier\": \"action\",\n \"app\": \"tangled\"\n },\n \"sh.tangled.repo\": {\n \"tier\": \"creation\",\n \"app\": \"tangled\"\n },\n \"sh.tangled.repo.issue\": {\n \"tier\": \"creation\",\n \"app\": \"tangled\"\n },\n \"sh.tangled.repo.pull\": {\n \"tier\": \"creation\",\n \"app\": \"tangled\"\n },\n \"site.standard.document\": {\n \"tier\": \"creation\",\n \"app\": \"standard\"\n },\n \"so.sprk.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"spark\"\n },\n \"so.sprk.story.post\": {\n \"tier\": \"creation\",\n \"app\": \"spark\"\n },\n \"social.colibri.actor.data\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Actor metadata.\"\n },\n \"social.colibri.approval\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Moderation approval record.\"\n },\n \"social.colibri.category\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Category metadata.\"\n },\n \"social.colibri.channel\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Channel definition.\"\n },\n \"social.colibri.channel.read\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Read-state marker.\"\n },\n \"social.colibri.community\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Community definition.\"\n },\n \"social.colibri.membership\": {\n \"tier\": \"creation\",\n \"app\": \"colibri\"\n },\n \"social.colibri.message\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Chat message \\u2014 high-volume conversational signal, not portfolio.\"\n },\n \"social.colibri.reaction\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Chat reaction.\"\n },\n \"social.colibri.richtext.facet\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Richtext facet sub-record.\"\n },\n \"social.crate.content\": {\n \"tier\": \"creation\",\n \"app\": \"crate\"\n },\n \"social.crate.note\": {\n \"tier\": \"creation\",\n \"app\": \"crate\"\n },\n \"social.grain.gallery\": {\n \"tier\": \"creation\",\n \"app\": \"grain\"\n },\n \"social.grain.gallery.item\": {\n \"tier\": \"filtered\",\n \"app\": \"grain\",\n \"notes\": \"Item-within-gallery; rendered via parent gallery.\"\n },\n \"social.grain.photo\": {\n \"tier\": \"filtered\",\n \"app\": \"grain\",\n \"notes\": \"Raw photo asset; surfaced via the gallery that references it.\"\n },\n \"social.grain.photo.exif\": {\n \"tier\": \"filtered\",\n \"app\": \"grain\",\n \"notes\": \"EXIF metadata for a photo.\"\n },\n \"social.grain.story\": {\n \"tier\": \"filtered\",\n \"app\": \"grain\",\n \"notes\": \"Ephemeral story format.\"\n },\n \"social.passports.fiftyStates.visit\": {\n \"tier\": \"creation\",\n \"app\": \"passports\"\n },\n \"social.passports.travel.leg\": {\n \"tier\": \"creation\",\n \"app\": \"passports\"\n },\n \"social.pinksky.app.preference\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Pinkleap (Bluesky client) app preferences.\"\n },\n \"social.popfeed.actor.profile\": {\n \"tier\": \"filtered\",\n \"app\": \"popfeed\",\n \"notes\": \"Profile metadata record.\"\n },\n \"social.popfeed.challenge.participation\": {\n \"tier\": \"filtered\",\n \"app\": \"popfeed\",\n \"notes\": \"Challenge participation tracking.\"\n },\n \"social.popfeed.feed.like\": {\n \"tier\": \"action\",\n \"app\": \"popfeed\"\n },\n \"social.popfeed.feed.note\": {\n \"tier\": \"creation\",\n \"app\": \"popfeed\"\n },\n \"social.popfeed.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"popfeed\"\n },\n \"social.popfeed.feed.review\": {\n \"tier\": \"creation\",\n \"app\": \"popfeed\"\n },\n \"social.psky.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"picosky\"\n },\n \"space.roomy.space.personal\": {\n \"tier\": \"creation\",\n \"app\": \"roomy\"\n },\n \"st.lifepo.lifeEvent\": {\n \"tier\": \"creation\",\n \"app\": \"lifepo\"\n },\n \"stream.thought.blip\": {\n \"tier\": \"creation\",\n \"app\": \"streamthought\"\n },\n \"tech.waow.doodl.drawing\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.doodl.icon\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.doodl.iconset\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.doodl.logo\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.pollz.poll\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.slides.deck\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.slides.slide\": {\n \"tier\": \"creation\",\n \"app\": \"waow\",\n \"notes\": \"Individual slides are components of a deck. Both are kept; the consumer decides whether to collapse them.\"\n },\n \"wiki.lichen.note\": {\n \"tier\": \"creation\",\n \"app\": \"lichen\"\n },\n \"wiki.lichen.wiki\": {\n \"tier\": \"creation\",\n \"app\": \"lichen\"\n },\n \"xyz.statusphere.status\": {\n \"tier\": \"filtered\",\n \"notes\": \"Statusphere emoji status \\u2014 leisure signal.\",\n \"app\": \"statusphere\"\n }\n }\n}\n"],"mappings":"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","names":[]}
1
+ {"version":3,"sources":["../../src/taxonomy/activity-tiers.json","../../src/taxonomy/activity-tiers.ts"],"sourcesContent":["{\n \"$schema\": \"https://sifa.id/schemas/activity-tiers/v1.json\",\n \"version\": \"1.4.0\",\n \"updated\": \"2026-09-04\",\n \"tiers\": {\n \"creation\": {\n \"label\": \"Made\",\n \"description\": \"Substantive records the actor authored: posts, articles, repos, galleries, livestreams, RSVPs, CV entries. Surfaced on the public profile and in the network timeline.\",\n \"shownOnPublicProfile\": true\n },\n \"action\": {\n \"label\": \"Did\",\n \"description\": \"Engagement records (likes, reposts, follows, votes, stars, reactions). Visible to the actor on the 'What is public about me' page and on the originating app, but not surfaced on the Sifa public profile.\",\n \"shownOnPublicProfile\": false\n },\n \"filtered\": {\n \"label\": null,\n \"description\": \"Configuration, infrastructure, moderation, game state, ephemeral consumption signals (bookmarks, highlights), and other records Sifa does not display anywhere. The records remain public on the actor's PDS regardless.\",\n \"shownOnPublicProfile\": false\n }\n },\n \"lexicons\": {\n \"actor.rpg.sprite\": {\n \"tier\": \"creation\",\n \"app\": \"rpgactor\",\n \"notes\": \"The player's pixel-art RPG character sprite sheet (rkey self), portable across games.\"\n },\n \"equipment.rpg.item\": {\n \"tier\": \"creation\",\n \"app\": \"rpgactor\",\n \"notes\": \"An equipment item the player accepted from a provider, in the player's own repo. The provider-side equipment.rpg.give stays filtered.\"\n },\n \"agency.portable.membership\": {\n \"tier\": \"creation\",\n \"app\": \"portable\",\n \"notes\": \"Joining a community (a commitment), attested by another actor.\"\n },\n \"in.atmob.paste.document\": {\n \"tier\": \"creation\",\n \"app\": \"atmob\"\n },\n \"in.atmob.paste.bundle\": {\n \"tier\": \"creation\",\n \"app\": \"atmob\"\n },\n \"ma.tokono.byov.video\": {\n \"tier\": \"creation\",\n \"app\": \"tokono\"\n },\n \"app.atmobb.discussion.reply\": {\n \"tier\": \"creation\",\n \"app\": \"atmobb\",\n \"notes\": \"Replies are authored text, consistent with app.bsky.feed.post covering replies.\"\n },\n \"app.atmobb.discussion.thread\": {\n \"tier\": \"creation\",\n \"app\": \"atmobb\"\n },\n \"app.beaconbits.beacon\": {\n \"tier\": \"creation\",\n \"app\": \"beaconbits\"\n },\n \"app.bsky.actor.profile\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Profile metadata record.\"\n },\n \"app.bsky.feed.generator\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Feed generator definition record, not personal activity.\"\n },\n \"app.bsky.feed.like\": {\n \"tier\": \"action\",\n \"app\": \"bluesky\"\n },\n \"app.bsky.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"bluesky\",\n \"notes\": \"Ambiguous: many posts are casual, but the lexicon also carries long-form posts and threads. Treated as creation; empty quote-posts (no text + record embed) are filtered at the consumer layer, not here.\"\n },\n \"app.bsky.feed.repost\": {\n \"tier\": \"action\",\n \"app\": \"bluesky\"\n },\n \"app.bsky.graph.block\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Moderation record.\"\n },\n \"app.bsky.graph.follow\": {\n \"tier\": \"action\",\n \"app\": \"bluesky\"\n },\n \"app.bsky.graph.list\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"User-curated list metadata; not surfaced as profile activity.\"\n },\n \"app.bsky.graph.listblock\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Moderation record.\"\n },\n \"app.bsky.graph.listitem\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"List membership; rendered via the parent list, not as standalone activity.\"\n },\n \"app.bsky.graph.mute\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Moderation record.\"\n },\n \"app.bsky.graph.starterpack\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\"\n },\n \"app.bsky.graph.verification\": {\n \"tier\": \"creation\",\n \"app\": \"bluesky\",\n \"notes\": \"Diverges from app.bsky.graph.follow (action) on purpose: verifying another account's handle is a deliberate trust statement the actor authors, not a tap. Sifa renders it with its own card.\"\n },\n \"app.certified.actor.membership\": {\n \"tier\": \"creation\",\n \"app\": \"certified\",\n \"notes\": \"Joining a group is a commitment, same shape as a Colibri or Open Social membership.\"\n },\n \"app.certified.badge.award\": {\n \"tier\": \"creation\",\n \"app\": \"certified\",\n \"notes\": \"An endorsement issued to another DID. A trust signal the actor contributes, like a Bluesky verification.\"\n },\n \"app.certified.badge.response\": {\n \"tier\": \"creation\",\n \"app\": \"certified\",\n \"notes\": \"The recipient's acceptance of a badge someone else awarded them. An accepted badge is a credential the person holds; rejected ones are hidden by an ACTIVITY_VISIBILITY_RULES predicate.\"\n },\n \"app.collectivesocial.feed.list\": {\n \"tier\": \"creation\",\n \"app\": \"collectivesocial\",\n \"notes\": \"Auto-created default Inbox lists are filtered at the consumer layer via isDefault=true predicate.\"\n },\n \"app.dropanchor.checkin\": {\n \"tier\": \"creation\",\n \"app\": \"dropanchor\",\n \"notes\": \"A location check-in (place, geo, category, optional review text). Authored, so creation. app.dropanchor.like is excluded backend-side.\"\n },\n \"app.askeverything.feed.answer\": {\n \"tier\": \"creation\",\n \"app\": \"askeverything\",\n \"notes\": \"An authored answer to a community question (opinion with body text). app.askeverything.actor.* and graph.follow are excluded backend-side.\"\n },\n \"app.greengale.blog.entry\": {\n \"tier\": \"creation\",\n \"app\": \"greengale\",\n \"notes\": \"An authored blog post (title, subtitle, Markdown body, visibility). app.greengale.document and app.greengale.publication (drafts/containers) are excluded backend-side.\"\n },\n \"social.kut.community.membership\": {\n \"tier\": \"creation\",\n \"app\": \"kut\",\n \"notes\": \"Joining a Kut community, a commitment. Mirrors Colibri/OpenSocial memberships, which are creation-tier.\"\n },\n \"app.mcp.server\": {\n \"tier\": \"creation\",\n \"app\": \"mcp\"\n },\n \"app.photosky.collection\": {\n \"tier\": \"creation\",\n \"app\": \"zeens\",\n \"notes\": \"A curated photo collection on Zeens (still the app.photosky namespace).\"\n },\n \"app.sidetrail.trail\": {\n \"tier\": \"creation\",\n \"app\": \"semble\"\n },\n \"app.sidetrail.walk\": {\n \"tier\": \"creation\",\n \"app\": \"semble\"\n },\n \"app.userinput.discussion\": {\n \"tier\": \"creation\",\n \"app\": \"userinput\"\n },\n \"app.userinput.reply\": {\n \"tier\": \"creation\",\n \"app\": \"userinput\",\n \"notes\": \"Replies are authored text, consistent with app.bsky.feed.post covering replies.\"\n },\n \"at.locale.project\": {\n \"tier\": \"creation\",\n \"app\": \"locale\",\n \"notes\": \"A localization project the actor owns: git source, source and target locales.\"\n },\n \"at.locale.translation\": {\n \"tier\": \"creation\",\n \"app\": \"locale\",\n \"notes\": \"One authored translated string for a message key in a target locale.\"\n },\n \"at.margin.annotation\": {\n \"tier\": \"creation\",\n \"app\": \"margin\",\n \"notes\": \"An annotation on someone else's text is still authored writing.\"\n },\n \"at.margin.bookmark\": {\n \"tier\": \"filtered\",\n \"notes\": \"Bookmark \\u2014 consumption signal, not creation.\",\n \"app\": \"margin\"\n },\n \"at.margin.highlight\": {\n \"tier\": \"filtered\",\n \"notes\": \"Highlight \\u2014 consumption signal, not creation.\",\n \"app\": \"margin\"\n },\n \"at.margin.note\": {\n \"tier\": \"creation\",\n \"app\": \"margin\"\n },\n \"at.marque.domain\": {\n \"tier\": \"creation\",\n \"app\": \"marque\"\n },\n \"at.youandme.connection\": {\n \"tier\": \"creation\",\n \"app\": \"youandme\"\n },\n \"blog.pckt.mini.post\": {\n \"tier\": \"creation\",\n \"app\": \"pckt\",\n \"notes\": \"A pckt microblog post. Long-form pckt posts are site.standard.document instead.\"\n },\n \"blue.flashes.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"flashes\"\n },\n \"blue.linkat.board\": {\n \"tier\": \"filtered\",\n \"notes\": \"Link-in-bio board; consumption signal.\",\n \"app\": \"linkat\"\n },\n \"buzz.bookhive.book\": {\n \"tier\": \"creation\",\n \"app\": \"bookhive\"\n },\n \"com.minomobi.music.composition\": {\n \"tier\": \"creation\",\n \"app\": \"minomobi\"\n },\n \"com.shinolabs.pinksea.oekaki\": {\n \"tier\": \"creation\",\n \"app\": \"pinksea\",\n \"notes\": \"A drawing made in PinkSea's canvas, stored as an image blob with alt text and tags.\"\n },\n \"com.voxport.podcast.series\": {\n \"tier\": \"creation\",\n \"app\": \"voxport\"\n },\n \"com.whtwnd.blog.entry\": {\n \"tier\": \"creation\",\n \"app\": \"whitewind\"\n },\n \"community.lexicon.badge.award\": {\n \"tier\": \"creation\",\n \"app\": \"badges\",\n \"notes\": \"The award record is authored by the giver, so it is their attestation about someone else.\"\n },\n \"community.lexicon.bookmarks.bookmark\": {\n \"tier\": \"filtered\",\n \"notes\": \"Bookmark \\u2014 consumption signal.\",\n \"app\": \"kipclip\"\n },\n \"community.lexicon.calendar.rsvp\": {\n \"tier\": \"creation\",\n \"app\": \"smokesignal\",\n \"notes\": \"Ambiguous: RSVPs are reactions to events, but they are public commitments and the only Smoke Signal record Sifa scans today. Classified as creation.\"\n },\n \"community.nooki.comments\": {\n \"tier\": \"creation\",\n \"app\": \"nooki\",\n \"notes\": \"Comments are authored text.\"\n },\n \"community.nooki.membership\": {\n \"tier\": \"creation\",\n \"app\": \"nooki\",\n \"notes\": \"Joining a community, classified like social.colibri.membership (creation).\"\n },\n \"community.opensocial.membership\": {\n \"tier\": \"creation\",\n \"app\": \"opensocial\",\n \"notes\": \"Joining a community, classified like social.colibri.membership (creation).\"\n },\n \"computer.aetheros.page\": {\n \"tier\": \"creation\",\n \"app\": \"aetheros\"\n },\n \"dev.atvouch.graph.vouch\": {\n \"tier\": \"creation\",\n \"app\": \"atvouch\",\n \"notes\": \"Vouching for someone. Authored attestation, same reasoning as fund.at.graph.endorse.\"\n },\n \"dev.baileytownsend.guestbook.entry\": {\n \"tier\": \"creation\",\n \"app\": \"guestbook\",\n \"notes\": \"Signing someone else's guestbook is a short authored message.\"\n },\n \"dev.keytrace.claim\": {\n \"tier\": \"creation\",\n \"app\": \"keytrace\"\n },\n \"dev.skyboard.board\": {\n \"tier\": \"filtered\",\n \"notes\": \"Skyboard task-board metadata.\",\n \"app\": \"skyboard\"\n },\n \"dev.skyboard.op\": {\n \"tier\": \"filtered\",\n \"notes\": \"Skyboard operation log.\",\n \"app\": \"skyboard\"\n },\n \"dev.skyboard.task\": {\n \"tier\": \"filtered\",\n \"notes\": \"Skyboard task record.\",\n \"app\": \"skyboard\"\n },\n \"eu.atcommons.member\": {\n \"tier\": \"creation\",\n \"app\": \"atcommons\",\n \"notes\": \"Joining a national AT Protocol community commons, classified like community.opensocial.membership (creation).\"\n },\n \"events.smokesignal.profile\": {\n \"tier\": \"filtered\",\n \"app\": \"smokesignal\",\n \"notes\": \"Profile metadata record.\"\n },\n \"exchange.recipe.recipe\": {\n \"tier\": \"creation\",\n \"app\": \"recipe\"\n },\n \"fm.plyr.comment\": {\n \"tier\": \"creation\",\n \"app\": \"plyr\",\n \"notes\": \"Comments are authored text.\"\n },\n \"forum.barazo.community.member\": {\n \"tier\": \"creation\",\n \"app\": \"barazo\"\n },\n \"forum.barazo.flag\": {\n \"tier\": \"filtered\",\n \"app\": \"barazo\",\n \"notes\": \"Moderation flag.\"\n },\n \"forum.barazo.post\": {\n \"tier\": \"creation\",\n \"app\": \"barazo\"\n },\n \"forum.barazo.reaction\": {\n \"tier\": \"action\",\n \"app\": \"barazo\"\n },\n \"forum.barazo.reply\": {\n \"tier\": \"action\",\n \"app\": \"barazo\",\n \"notes\": \"Short conversational reply \\u2014 engagement signal.\"\n },\n \"forum.barazo.reputation.event\": {\n \"tier\": \"creation\",\n \"app\": \"barazo\"\n },\n \"fund.at.graph.endorse\": {\n \"tier\": \"creation\",\n \"app\": \"atfund\",\n \"notes\": \"Endorsing someone. Authored attestation, not engagement.\"\n },\n \"fyi.asq.answer\": {\n \"tier\": \"creation\",\n \"app\": \"asq\"\n },\n \"fyi.asq.question\": {\n \"tier\": \"creation\",\n \"app\": \"asq\"\n },\n \"fyi.atstore.listing.review\": {\n \"tier\": \"creation\",\n \"app\": \"atstore\"\n },\n \"fyi.unravel.frontpage.post\": {\n \"tier\": \"creation\",\n \"app\": \"frontpage\"\n },\n \"fyi.unravel.frontpage.vote\": {\n \"tier\": \"action\",\n \"app\": \"frontpage\"\n },\n \"id.sifa.authConnection\": {\n \"tier\": \"filtered\",\n \"app\": \"sifa\",\n \"notes\": \"OAuth scope record.\"\n },\n \"id.sifa.authMeet\": {\n \"tier\": \"filtered\",\n \"app\": \"sifa\",\n \"notes\": \"OAuth scope record.\"\n },\n \"id.sifa.authProfile\": {\n \"tier\": \"filtered\",\n \"app\": \"sifa\",\n \"notes\": \"OAuth scope record.\"\n },\n \"id.sifa.authProfileAccess\": {\n \"tier\": \"filtered\",\n \"app\": \"sifa\",\n \"notes\": \"OAuth profile-access record.\"\n },\n \"id.sifa.authProject\": {\n \"tier\": \"filtered\",\n \"app\": \"sifa\",\n \"notes\": \"OAuth scope record.\"\n },\n \"id.sifa.confirmation\": {\n \"tier\": \"action\",\n \"app\": \"sifa\",\n \"notes\": \"Confirmation that a record naming the actor is accurate (co-speaker credit, project membership).\"\n },\n \"id.sifa.endorsement\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\",\n \"notes\": \"Endorsement authored by the actor about another profile.\"\n },\n \"id.sifa.endorsement.confirmation\": {\n \"tier\": \"action\",\n \"app\": \"sifa\",\n \"notes\": \"Confirmation/acceptance of an endorsement received.\"\n },\n \"id.sifa.graph.connection\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\",\n \"notes\": \"Mutual professional connection record.\"\n },\n \"id.sifa.graph.follow\": {\n \"tier\": \"action\",\n \"app\": \"sifa\"\n },\n \"id.sifa.meeting\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.certification\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.course\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.education\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.externalAccount\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.honor\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.language\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.location\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.position\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.presentation\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.presentationDelivery\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.project\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.publication\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.self\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\",\n \"notes\": \"Sifa professional profile root.\"\n },\n \"id.sifa.profile.skill\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.profile.volunteering\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"id.sifa.project.member\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\",\n \"notes\": \"Deprecated, never implemented. Superseded by id.sifa.confirmation.\"\n },\n \"id.sifa.project.membership\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\",\n \"notes\": \"Deprecated, never implemented. Superseded by id.sifa.confirmation.\"\n },\n \"id.sifa.project.self\": {\n \"tier\": \"creation\",\n \"app\": \"sifa\"\n },\n \"io.atcr.repo.page\": {\n \"tier\": \"creation\",\n \"app\": \"atcr\"\n },\n \"io.calabro.watsm.program\": {\n \"tier\": \"creation\",\n \"app\": \"watsm\"\n },\n \"io.kich.recipe.recipe\": {\n \"tier\": \"creation\",\n \"app\": \"kich\"\n },\n \"is.kevara.directory.speaker\": {\n \"tier\": \"creation\",\n \"app\": \"kevara\"\n },\n \"li.plonk.paste\": {\n \"tier\": \"creation\",\n \"app\": \"plonk\"\n },\n \"link.pastesphere.snippet\": {\n \"tier\": \"creation\",\n \"app\": \"pastesphere\"\n },\n \"net.alternativeproto.submission\": {\n \"tier\": \"creation\",\n \"app\": \"alternativeproto\"\n },\n \"net.alternativeproto.vote\": {\n \"tier\": \"action\",\n \"notes\": \"Vote record on a third-party protocol.\",\n \"app\": \"alternativeproto\"\n },\n \"net.anisota.feed.list\": {\n \"tier\": \"creation\",\n \"app\": \"anisota\"\n },\n \"net.anisota.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"anisota\"\n },\n \"net.anisota.player.state\": {\n \"tier\": \"filtered\",\n \"notes\": \"Anisota game player state.\",\n \"app\": \"anisota\"\n },\n \"network.cosmik.card\": {\n \"tier\": \"filtered\",\n \"notes\": \"Link-in-bio card; consumption signal.\",\n \"app\": \"cosmik\"\n },\n \"network.cosmik.collection\": {\n \"tier\": \"filtered\",\n \"notes\": \"Stale registry id \\u2014 Cosmik formerly in app registry.\",\n \"app\": \"cosmik\"\n },\n \"network.cosmik.collectionLink\": {\n \"tier\": \"filtered\",\n \"app\": \"cosmik\"\n },\n \"network.cosmik.connection\": {\n \"tier\": \"filtered\",\n \"app\": \"cosmik\"\n },\n \"network.cosmik.follow\": {\n \"tier\": \"filtered\",\n \"app\": \"cosmik\"\n },\n \"one.papili.post\": {\n \"tier\": \"creation\",\n \"app\": \"papili\"\n },\n \"org.hypercerts.claim.activity\": {\n \"tier\": \"creation\",\n \"app\": \"hypercerts\",\n \"notes\": \"A hypercert: an authored claim of work done, with title, description, and weighted contributors.\"\n },\n \"org.hypercerts.claim.collection\": {\n \"tier\": \"creation\",\n \"app\": \"hypercerts\",\n \"notes\": \"Older shape of the project container that groups claims. Superseded by org.hypercerts.collection.\"\n },\n \"org.hypercerts.claim.evaluation\": {\n \"tier\": \"creation\",\n \"app\": \"hypercerts\",\n \"notes\": \"An assessment of a claim carrying a score and a written summary. An opinion with a body.\"\n },\n \"org.hypercerts.collection\": {\n \"tier\": \"creation\",\n \"app\": \"hypercerts\",\n \"notes\": \"An authored project container grouping hypercert claims, with its own title, banner, and description.\"\n },\n \"org.impactindexer.review.comment\": {\n \"tier\": \"creation\",\n \"app\": \"impactindexer\",\n \"notes\": \"A written review of a hypercert claim, like a Popfeed or BookHive review.\"\n },\n \"org.v-it.skill\": {\n \"tier\": \"creation\",\n \"app\": \"vit\"\n },\n \"os.aether.docs.presentation\": {\n \"tier\": \"creation\",\n \"app\": \"aetherdocs\"\n },\n \"pics.pixl.image\": {\n \"tier\": \"creation\",\n \"app\": \"pixl\"\n },\n \"place.stream.broadcast.origin\": {\n \"tier\": \"filtered\",\n \"app\": \"streamplace\",\n \"notes\": \"Broadcast origin/infrastructure record.\"\n },\n \"place.stream.chat.message\": {\n \"tier\": \"filtered\",\n \"app\": \"streamplace\",\n \"notes\": \"Ephemeral chat message.\"\n },\n \"place.stream.chat.profile\": {\n \"tier\": \"filtered\",\n \"app\": \"streamplace\",\n \"notes\": \"Chat profile metadata.\"\n },\n \"place.stream.key\": {\n \"tier\": \"filtered\",\n \"app\": \"streamplace\",\n \"notes\": \"Stream key \\u2014 sensitive infrastructure record.\"\n },\n \"place.stream.livestream\": {\n \"tier\": \"creation\",\n \"app\": \"streamplace\"\n },\n \"place.stream.metadata.configuration\": {\n \"tier\": \"filtered\",\n \"app\": \"streamplace\",\n \"notes\": \"Stream configuration metadata.\"\n },\n \"pub.chive.eprint.submission\": {\n \"tier\": \"creation\",\n \"app\": \"chive\",\n \"notes\": \"An authored preprint: title, ordered authors with affiliations, abstract.\"\n },\n \"pub.leaflet.authFullPermissions\": {\n \"tier\": \"filtered\",\n \"app\": \"leaflet\",\n \"notes\": \"OAuth permission record.\"\n },\n \"pub.leaflet.comment\": {\n \"tier\": \"creation\",\n \"app\": \"leaflet\"\n },\n \"pub.leaflet.interactions.recommend\": {\n \"tier\": \"action\",\n \"app\": \"leaflet\"\n },\n \"quest.atmo.checkin\": {\n \"tier\": \"creation\",\n \"app\": \"atmorsvp\",\n \"notes\": \"Attendance, classified like community.lexicon.calendar.rsvp (creation) rather than as engagement. The creation tier description names RSVPs explicitly.\"\n },\n \"quest.atmo.event\": {\n \"tier\": \"creation\",\n \"app\": \"atmorsvp\"\n },\n \"sh.tangled.actor.profile\": {\n \"tier\": \"filtered\",\n \"app\": \"tangled\",\n \"notes\": \"Profile metadata record.\"\n },\n \"sh.tangled.feed.star\": {\n \"tier\": \"action\",\n \"app\": \"tangled\"\n },\n \"sh.tangled.graph.follow\": {\n \"tier\": \"action\",\n \"app\": \"tangled\"\n },\n \"sh.tangled.repo\": {\n \"tier\": \"creation\",\n \"app\": \"tangled\"\n },\n \"sh.tangled.repo.issue\": {\n \"tier\": \"creation\",\n \"app\": \"tangled\"\n },\n \"sh.tangled.repo.pull\": {\n \"tier\": \"creation\",\n \"app\": \"tangled\"\n },\n \"site.standard.document\": {\n \"tier\": \"creation\",\n \"app\": \"standard\"\n },\n \"so.sprk.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"spark\"\n },\n \"so.sprk.story.post\": {\n \"tier\": \"creation\",\n \"app\": \"spark\"\n },\n \"social.colibri.actor.data\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Actor metadata.\"\n },\n \"social.colibri.approval\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Moderation approval record.\"\n },\n \"social.colibri.category\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Category metadata.\"\n },\n \"social.colibri.channel\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Channel definition.\"\n },\n \"social.colibri.channel.read\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Read-state marker.\"\n },\n \"social.colibri.community\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Community definition.\"\n },\n \"social.colibri.membership\": {\n \"tier\": \"creation\",\n \"app\": \"colibri\"\n },\n \"social.colibri.message\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Chat message \\u2014 high-volume conversational signal, not portfolio.\"\n },\n \"social.colibri.reaction\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Chat reaction.\"\n },\n \"social.colibri.richtext.facet\": {\n \"tier\": \"filtered\",\n \"app\": \"colibri\",\n \"notes\": \"Richtext facet sub-record.\"\n },\n \"social.crate.content\": {\n \"tier\": \"creation\",\n \"app\": \"crate\"\n },\n \"social.crate.note\": {\n \"tier\": \"creation\",\n \"app\": \"crate\"\n },\n \"social.grain.gallery\": {\n \"tier\": \"creation\",\n \"app\": \"grain\"\n },\n \"social.grain.gallery.item\": {\n \"tier\": \"filtered\",\n \"app\": \"grain\",\n \"notes\": \"Item-within-gallery; rendered via parent gallery.\"\n },\n \"social.grain.photo\": {\n \"tier\": \"filtered\",\n \"app\": \"grain\",\n \"notes\": \"Raw photo asset; surfaced via the gallery that references it.\"\n },\n \"social.grain.photo.exif\": {\n \"tier\": \"filtered\",\n \"app\": \"grain\",\n \"notes\": \"EXIF metadata for a photo.\"\n },\n \"social.grain.story\": {\n \"tier\": \"filtered\",\n \"app\": \"grain\",\n \"notes\": \"Ephemeral story format.\"\n },\n \"social.passports.fiftyStates.visit\": {\n \"tier\": \"creation\",\n \"app\": \"passports\"\n },\n \"social.passports.travel.leg\": {\n \"tier\": \"creation\",\n \"app\": \"passports\"\n },\n \"social.pinksky.app.preference\": {\n \"tier\": \"filtered\",\n \"app\": \"bluesky\",\n \"notes\": \"Pinkleap (Bluesky client) app preferences.\"\n },\n \"social.popfeed.actor.profile\": {\n \"tier\": \"filtered\",\n \"app\": \"popfeed\",\n \"notes\": \"Profile metadata record.\"\n },\n \"social.popfeed.challenge.participation\": {\n \"tier\": \"filtered\",\n \"app\": \"popfeed\",\n \"notes\": \"Challenge participation tracking.\"\n },\n \"social.popfeed.feed.like\": {\n \"tier\": \"action\",\n \"app\": \"popfeed\"\n },\n \"social.popfeed.feed.note\": {\n \"tier\": \"creation\",\n \"app\": \"popfeed\"\n },\n \"social.popfeed.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"popfeed\"\n },\n \"social.popfeed.feed.review\": {\n \"tier\": \"creation\",\n \"app\": \"popfeed\"\n },\n \"social.psky.feed.post\": {\n \"tier\": \"creation\",\n \"app\": \"picosky\"\n },\n \"space.roomy.space.personal\": {\n \"tier\": \"creation\",\n \"app\": \"roomy\"\n },\n \"st.lifepo.lifeEvent\": {\n \"tier\": \"creation\",\n \"app\": \"lifepo\"\n },\n \"stream.thought.blip\": {\n \"tier\": \"creation\",\n \"app\": \"streamthought\"\n },\n \"tech.waow.doodl.drawing\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.doodl.icon\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.doodl.iconset\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.doodl.logo\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.pollz.poll\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.slides.deck\": {\n \"tier\": \"creation\",\n \"app\": \"waow\"\n },\n \"tech.waow.slides.slide\": {\n \"tier\": \"creation\",\n \"app\": \"waow\",\n \"notes\": \"Individual slides are components of a deck. Both are kept; the consumer decides whether to collapse them.\"\n },\n \"wiki.lichen.note\": {\n \"tier\": \"creation\",\n \"app\": \"lichen\"\n },\n \"wiki.lichen.wiki\": {\n \"tier\": \"creation\",\n \"app\": \"lichen\"\n },\n \"xyz.statusphere.status\": {\n \"tier\": \"filtered\",\n \"notes\": \"Statusphere emoji status \\u2014 leisure signal.\",\n \"app\": \"statusphere\"\n }\n }\n}\n","// This SDK is the source of truth for the activity taxonomy.\n//\n// It used to be synced from sifa-lexicons, but the taxonomy is editorial\n// rather than protocol: none of it is published to a PDS, and it governs how\n// Sifa renders records rather than what any record means. Keeping it in the\n// lexicon repo meant it lived where nobody edited it, and the two copies\n// drifted 60 entries apart before anything noticed.\n//\n// It is served publicly at https://sifa.id/.well-known/sifa-activity-tiers.json\n// so third-party clients and sibling AppViews can read Sifa's choices rather\n// than infer them.\nimport rawTaxonomy from './activity-tiers.json' with { type: 'json' };\n\nexport type ActivityTier = 'creation' | 'action' | 'filtered';\n\nexport interface TierMeta {\n label: string | null;\n description: string;\n shownOnPublicProfile: boolean;\n}\n\nexport interface LexiconEntry {\n tier: ActivityTier;\n app?: string;\n notes?: string;\n}\n\nexport interface ActivityTaxonomy {\n version: string;\n updated: string;\n tiers: Record<ActivityTier, TierMeta>;\n lexicons: Record<string, LexiconEntry>;\n}\n\n// activity-tiers.json is checked against this shape in activity-tiers.test.ts.\n// Only the taxonomy fields are copied, so the file's `$schema` key stays out.\nconst parsed: ActivityTaxonomy = {\n version: rawTaxonomy.version,\n updated: rawTaxonomy.updated,\n tiers: rawTaxonomy.tiers,\n lexicons: rawTaxonomy.lexicons as Record<string, LexiconEntry>,\n};\n\nexport const ACTIVITY_TIERS: Readonly<ActivityTaxonomy> = Object.freeze(parsed);\n\n/**\n * Returns the activity tier for a given AT Protocol NSID.\n * Returns 'filtered' for unknown/unclassified NSIDs (safe default — won't\n * leak unknown records to public profile surfaces).\n */\nexport function getActivityTier(nsid: string): ActivityTier {\n if (!nsid) return 'filtered';\n const entry = ACTIVITY_TIERS.lexicons[nsid];\n return entry ? entry.tier : 'filtered';\n}\n\n/**\n * Returns the full lexicon entry (tier + app + notes), or null if unknown.\n */\nexport function getLexiconEntry(nsid: string): LexiconEntry | null {\n if (!nsid) return null;\n const entry = ACTIVITY_TIERS.lexicons[nsid];\n return entry ?? null;\n}\n\n/**\n * Returns tier metadata (label, description, public visibility).\n */\nexport function getTierMeta(tier: ActivityTier): TierMeta {\n return ACTIVITY_TIERS.tiers[tier];\n}\n\n/**\n * Returns the taxonomy version + updated date for diagnostics and\n * version-skew detection between SDK consumers and the canonical taxonomy.\n */\nexport function getActivityTaxonomyVersion(): { version: string; updated: string } {\n return { version: ACTIVITY_TIERS.version, updated: ACTIVITY_TIERS.updated };\n}\n"],"mappings":";AAAA;AAAA,EACE,SAAW;AAAA,EACX,SAAW;AAAA,EACX,SAAW;AAAA,EACX,OAAS;AAAA,IACP,UAAY;AAAA,MACV,OAAS;AAAA,MACT,aAAe;AAAA,MACf,sBAAwB;AAAA,IAC1B;AAAA,IACA,QAAU;AAAA,MACR,OAAS;AAAA,MACT,aAAe;AAAA,MACf,sBAAwB;AAAA,IAC1B;AAAA,IACA,UAAY;AAAA,MACV,OAAS;AAAA,MACT,aAAe;AAAA,MACf,sBAAwB;AAAA,IAC1B;AAAA,EACF;AAAA,EACA,UAAY;AAAA,IACV,oBAAoB;AAAA,MAClB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,8BAA8B;AAAA,MAC5B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,+BAA+B;AAAA,MAC7B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,gCAAgC;AAAA,MAC9B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,8BAA8B;AAAA,MAC5B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,+BAA+B;AAAA,MAC7B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,kCAAkC;AAAA,MAChC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,gCAAgC;AAAA,MAC9B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,kCAAkC;AAAA,MAChC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,iCAAiC;AAAA,MAC/B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,mCAAmC;AAAA,MACjC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,kBAAkB;AAAA,MAChB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,qBAAqB;AAAA,MACnB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,IACA,kBAAkB;AAAA,MAChB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,oBAAoB;AAAA,MAClB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,qBAAqB;AAAA,MACnB,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,kCAAkC;AAAA,MAChC,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,gCAAgC;AAAA,MAC9B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,8BAA8B;AAAA,MAC5B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,iCAAiC;AAAA,MAC/B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,wCAAwC;AAAA,MACtC,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,IACA,mCAAmC;AAAA,MACjC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,8BAA8B;AAAA,MAC5B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,mCAAmC;AAAA,MACjC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,sCAAsC;AAAA,MACpC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,IACA,mBAAmB;AAAA,MACjB,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,IACA,qBAAqB;AAAA,MACnB,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,8BAA8B;AAAA,MAC5B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,mBAAmB;AAAA,MACjB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,iCAAiC;AAAA,MAC/B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,qBAAqB;AAAA,MACnB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,qBAAqB;AAAA,MACnB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,iCAAiC;AAAA,MAC/B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,kBAAkB;AAAA,MAChB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,oBAAoB;AAAA,MAClB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,8BAA8B;AAAA,MAC5B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,8BAA8B;AAAA,MAC5B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,8BAA8B;AAAA,MAC5B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,oBAAoB;AAAA,MAClB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,oCAAoC;AAAA,MAClC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,mBAAmB;AAAA,MACjB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,iCAAiC;AAAA,MAC/B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,mCAAmC;AAAA,MACjC,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,gCAAgC;AAAA,MAC9B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,wCAAwC;AAAA,MACtC,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,+BAA+B;AAAA,MAC7B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,gCAAgC;AAAA,MAC9B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,8BAA8B;AAAA,MAC5B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,qBAAqB;AAAA,MACnB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,+BAA+B;AAAA,MAC7B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,kBAAkB;AAAA,MAChB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,mCAAmC;AAAA,MACjC,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,IACA,iCAAiC;AAAA,MAC/B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,mBAAmB;AAAA,MACjB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,iCAAiC;AAAA,MAC/B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,mCAAmC;AAAA,MACjC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,mCAAmC;AAAA,MACjC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,oCAAoC;AAAA,MAClC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,kBAAkB;AAAA,MAChB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,+BAA+B;AAAA,MAC7B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,mBAAmB;AAAA,MACjB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,iCAAiC;AAAA,MAC/B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,oBAAoB;AAAA,MAClB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,uCAAuC;AAAA,MACrC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,+BAA+B;AAAA,MAC7B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,mCAAmC;AAAA,MACjC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,sCAAsC;AAAA,MACpC,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,oBAAoB;AAAA,MAClB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,mBAAmB;AAAA,MACjB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,qBAAqB;AAAA,MACnB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,+BAA+B;AAAA,MAC7B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,iCAAiC;AAAA,MAC/B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,qBAAqB;AAAA,MACnB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,6BAA6B;AAAA,MAC3B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,sBAAsB;AAAA,MACpB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,sCAAsC;AAAA,MACpC,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,+BAA+B;AAAA,MAC7B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,iCAAiC;AAAA,MAC/B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,gCAAgC;AAAA,MAC9B,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,0CAA0C;AAAA,MACxC,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,4BAA4B;AAAA,MAC1B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,8BAA8B;AAAA,MAC5B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,8BAA8B;AAAA,MAC5B,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,uBAAuB;AAAA,MACrB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,2BAA2B;AAAA,MACzB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,wBAAwB;AAAA,MACtB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,yBAAyB;AAAA,MACvB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,KAAO;AAAA,MACP,OAAS;AAAA,IACX;AAAA,IACA,oBAAoB;AAAA,MAClB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,oBAAoB;AAAA,MAClB,MAAQ;AAAA,MACR,KAAO;AAAA,IACT;AAAA,IACA,0BAA0B;AAAA,MACxB,MAAQ;AAAA,MACR,OAAS;AAAA,MACT,KAAO;AAAA,IACT;AAAA,EACF;AACF;;;ACn2BA,IAAM,SAA2B;AAAA,EAC/B,SAAS,uBAAY;AAAA,EACrB,SAAS,uBAAY;AAAA,EACrB,OAAO,uBAAY;AAAA,EACnB,UAAU,uBAAY;AACxB;AAEO,IAAM,iBAA6C,OAAO,OAAO,MAAM;AAOvE,SAAS,gBAAgB,MAA4B;AAC1D,MAAI,CAAC,KAAM,QAAO;AAClB,QAAM,QAAQ,eAAe,SAAS,IAAI;AAC1C,SAAO,QAAQ,MAAM,OAAO;AAC9B;AAKO,SAAS,gBAAgB,MAAmC;AACjE,MAAI,CAAC,KAAM,QAAO;AAClB,QAAM,QAAQ,eAAe,SAAS,IAAI;AAC1C,SAAO,SAAS;AAClB;AAKO,SAAS,YAAY,MAA8B;AACxD,SAAO,eAAe,MAAM,IAAI;AAClC;AAMO,SAAS,6BAAmE;AACjF,SAAO,EAAE,SAAS,eAAe,SAAS,SAAS,eAAe,QAAQ;AAC5E;","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@singi-labs/sifa-sdk",
3
- "version": "0.19.46",
3
+ "version": "0.19.47",
4
4
  "description": "Sifa SDK — public client library for the Sifa AppView on AT Protocol. Shared by sifa-web and sifa-app.",
5
5
  "license": "MIT",
6
6
  "type": "module",