@hotmeshio/long-tail 0.14.3 → 0.16.0
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.
- package/README.md +23 -9
- package/build/api/escalations/create.js +18 -0
- package/build/api/escalations/index.d.ts +1 -0
- package/build/api/escalations/index.js +3 -1
- package/build/api/escalations/lookups.d.ts +20 -0
- package/build/api/escalations/lookups.js +90 -0
- package/build/api/escalations/metadata.d.ts +1 -1
- package/build/api/escalations/metadata.js +4 -4
- package/build/api/escalations/resolve.d.ts +1 -1
- package/build/api/escalations/resolve.js +6 -6
- package/build/api/knowledge.d.ts +9 -0
- package/build/api/knowledge.js +24 -0
- package/build/bin/ltc.js +10 -0
- package/build/index.d.ts +1 -1
- package/build/index.js +3 -2
- package/build/lib/cli/commands/escalations.d.ts +3 -0
- package/build/lib/cli/commands/escalations.js +25 -0
- package/build/lib/cli/commands/knowledge.d.ts +5 -0
- package/build/lib/cli/commands/knowledge.js +17 -2
- package/build/lib/cli/scanner.js +2 -0
- package/build/lib/db/schemas/033_knowledge_versions.sql +33 -0
- package/build/routes/escalations/single.js +10 -0
- package/build/routes/knowledge.js +35 -2
- package/build/sdk/index.d.ts +5 -0
- package/build/sdk/index.js +3 -0
- package/build/services/diagnostics/patterns.js +1 -1
- package/build/services/escalation/crud.d.ts +3 -3
- package/build/services/escalation/crud.js +9 -2
- package/build/services/escalation/resolver-validation.js +6 -0
- package/build/services/escalation/sql.d.ts +1 -1
- package/build/services/escalation/sql.js +1 -1
- package/build/services/knowledge/index.d.ts +18 -0
- package/build/services/knowledge/index.js +52 -0
- package/build/services/knowledge/lookup-cache.d.ts +29 -0
- package/build/services/knowledge/lookup-cache.js +94 -0
- package/build/services/knowledge/sql.d.ts +2 -0
- package/build/services/knowledge/sql.js +14 -0
- package/build/services/mcp/server-tools.js +30 -0
- package/build/services/orchestrator/condition.d.ts +33 -13
- package/build/services/orchestrator/condition.js +41 -14
- package/build/services/yaml-workflow/durable-compiler/parser.js +4 -1
- package/build/shared/form-validation/ctx-path.d.ts +12 -0
- package/build/shared/form-validation/ctx-path.js +56 -0
- package/build/shared/form-validation/field-validator.d.ts +4 -2
- package/build/shared/form-validation/field-validator.js +25 -19
- package/build/shared/form-validation/index.d.ts +3 -0
- package/build/shared/form-validation/index.js +3 -0
- package/build/shared/form-validation/validate-resolver-payload.d.ts +2 -0
- package/build/shared/form-validation/validate-resolver-payload.js +19 -0
- package/build/shared/form-validation/x-lt-help.d.ts +1 -1
- package/build/shared/form-validation/x-lt-help.js +2 -1
- package/build/shared/form-validation/x-lt-options.d.ts +7 -0
- package/build/shared/form-validation/x-lt-options.js +63 -0
- package/build/shared/form-validation/x-lt-require-sum.d.ts +30 -0
- package/build/shared/form-validation/x-lt-require-sum.js +59 -0
- package/build/system/activities/knowledge.d.ts +3 -0
- package/build/system/activities/knowledge.js +5 -2
- package/build/system/activities/sql.d.ts +6 -10
- package/build/system/activities/sql.js +105 -49
- package/build/system/mcp-servers/admin/schemas.d.ts +4 -4
- package/build/system/mcp-servers/knowledge.js +23 -2
- package/build/system/seed/tool-manifests-escalation.js +12 -0
- package/build/system/seed/tool-manifests-knowledge.d.ts +36 -0
- package/build/system/seed/tool-manifests-knowledge.js +15 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/types/escalation.d.ts +37 -3
- package/build/types/escalation.js +42 -2
- package/dashboard/dist/assets/{AdminDashboard-BS3wd7Zg.js → AdminDashboard-BVgjY4zN.js} +2 -2
- package/dashboard/dist/assets/{AdminDashboard-BS3wd7Zg.js.map → AdminDashboard-BVgjY4zN.js.map} +1 -1
- package/dashboard/dist/assets/{AgentConfigPage-4C9aU0dj.js → AgentConfigPage-ChL59YL5.js} +6 -6
- package/dashboard/dist/assets/AgentConfigPage-ChL59YL5.js.map +1 -0
- package/dashboard/dist/assets/{AgentDetailPage-B6uvDnMF.js → AgentDetailPage-IJfgCOIF.js} +2 -2
- package/dashboard/dist/assets/AgentDetailPage-IJfgCOIF.js.map +1 -0
- package/dashboard/dist/assets/{AgentsPage-vtxdvdrQ.js → AgentsPage-C7PnPXz_.js} +2 -2
- package/dashboard/dist/assets/{AgentsPage-vtxdvdrQ.js.map → AgentsPage-C7PnPXz_.js.map} +1 -1
- package/dashboard/dist/assets/AvailableEscalationsPage-C5f2rqHa.js +2 -0
- package/dashboard/dist/assets/{AvailableEscalationsPage-C9VKPhD6.js.map → AvailableEscalationsPage-C5f2rqHa.js.map} +1 -1
- package/dashboard/dist/assets/{BotPicker-CkY9u7nD.js → BotPicker-CBf6bHLV.js} +2 -2
- package/dashboard/dist/assets/{BotPicker-CkY9u7nD.js.map → BotPicker-CBf6bHLV.js.map} +1 -1
- package/dashboard/dist/assets/{BulkAssignModal-OIbUDYlC.js → BulkAssignModal-CkxoPByA.js} +2 -2
- package/dashboard/dist/assets/{BulkAssignModal-OIbUDYlC.js.map → BulkAssignModal-CkxoPByA.js.map} +1 -1
- package/dashboard/dist/assets/CapabilitiesPage-D7USh3F0.js +2 -0
- package/dashboard/dist/assets/{CapabilitiesPage-Bkbq_GO6.js.map → CapabilitiesPage-D7USh3F0.js.map} +1 -1
- package/dashboard/dist/assets/{CollapsibleSection-Zuz9HkFL.js → CollapsibleSection-DfPpAIxa.js} +2 -2
- package/dashboard/dist/assets/{CollapsibleSection-Zuz9HkFL.js.map → CollapsibleSection-DfPpAIxa.js.map} +1 -1
- package/dashboard/dist/assets/CountdownTimer-DVL7WIcE.js +2 -0
- package/dashboard/dist/assets/CountdownTimer-DVL7WIcE.js.map +1 -0
- package/dashboard/dist/assets/{CredentialsPage-CAmDMnzV.js → CredentialsPage-BHZ5SKIu.js} +2 -2
- package/dashboard/dist/assets/{CredentialsPage-CAmDMnzV.js.map → CredentialsPage-BHZ5SKIu.js.map} +1 -1
- package/dashboard/dist/assets/{CronLabel-DX2woCPZ.js → CronLabel-wE8Hms6c.js} +2 -2
- package/dashboard/dist/assets/{CronLabel-DX2woCPZ.js.map → CronLabel-wE8Hms6c.js.map} +1 -1
- package/dashboard/dist/assets/{DropZone-7UoXQ4qL.js → DropZone-Pv-v5RAs.js} +2 -2
- package/dashboard/dist/assets/{DropZone-7UoXQ4qL.js.map → DropZone-Pv-v5RAs.js.map} +1 -1
- package/dashboard/dist/assets/{ElapsedCell-D2old1NF.js → ElapsedCell-B4VxKHpw.js} +2 -2
- package/dashboard/dist/assets/{ElapsedCell-D2old1NF.js.map → ElapsedCell-B4VxKHpw.js.map} +1 -1
- package/dashboard/dist/assets/{EntityTimelinePanel-m9baDiW0.js → EntityTimelinePanel-CFbQDHOj.js} +2 -2
- package/dashboard/dist/assets/{EntityTimelinePanel-m9baDiW0.js.map → EntityTimelinePanel-CFbQDHOj.js.map} +1 -1
- package/dashboard/dist/assets/{EscalationListSchemaPage-BPr7Ou8c.js → EscalationListSchemaPage-YTgexl4f.js} +2 -2
- package/dashboard/dist/assets/{EscalationListSchemaPage-BPr7Ou8c.js.map → EscalationListSchemaPage-YTgexl4f.js.map} +1 -1
- package/dashboard/dist/assets/{EscalationSchemaPage-83n5JyAh.js → EscalationSchemaPage-Sjk05eHP.js} +2 -2
- package/dashboard/dist/assets/{EscalationSchemaPage-83n5JyAh.js.map → EscalationSchemaPage-Sjk05eHP.js.map} +1 -1
- package/dashboard/dist/assets/{EscalationsOverview-CDJ5wRlq.js → EscalationsOverview-gHWPjUpZ.js} +2 -2
- package/dashboard/dist/assets/{EscalationsOverview-CDJ5wRlq.js.map → EscalationsOverview-gHWPjUpZ.js.map} +1 -1
- package/dashboard/dist/assets/{EventTable-DRUHkKtv.js → EventTable-C9lHQ57t.js} +2 -2
- package/dashboard/dist/assets/{EventTable-DRUHkKtv.js.map → EventTable-C9lHQ57t.js.map} +1 -1
- package/dashboard/dist/assets/{FilterBar-C06DK5Oa.js → FilterBar-BY--ANxv.js} +2 -2
- package/dashboard/dist/assets/{FilterBar-C06DK5Oa.js.map → FilterBar-BY--ANxv.js.map} +1 -1
- package/dashboard/dist/assets/{GraphInvokePage-DSlyTmyq.js → GraphInvokePage-B-Oo5s-W.js} +2 -2
- package/dashboard/dist/assets/{GraphInvokePage-DSlyTmyq.js.map → GraphInvokePage-B-Oo5s-W.js.map} +1 -1
- package/dashboard/dist/assets/{HomePage-DXzDBkQV.js → HomePage-BrcjKOaJ.js} +2 -2
- package/dashboard/dist/assets/{HomePage-DXzDBkQV.js.map → HomePage-BrcjKOaJ.js.map} +1 -1
- package/dashboard/dist/assets/ListToolbar-D5TQ4X_M.js +2 -0
- package/dashboard/dist/assets/{ListToolbar-BvpGFFYp.js.map → ListToolbar-D5TQ4X_M.js.map} +1 -1
- package/dashboard/dist/assets/{McpOverview-C2atR_B6.js → McpOverview-jlukVWQ7.js} +2 -2
- package/dashboard/dist/assets/{McpOverview-C2atR_B6.js.map → McpOverview-jlukVWQ7.js.map} +1 -1
- package/dashboard/dist/assets/{McpQueryDetailPage-BUxPspjB.js → McpQueryDetailPage-BWKbvJSd.js} +3 -3
- package/dashboard/dist/assets/{McpQueryDetailPage-BUxPspjB.js.map → McpQueryDetailPage-BWKbvJSd.js.map} +1 -1
- package/dashboard/dist/assets/McpQueryPage-BH2Pon4M.js +2 -0
- package/dashboard/dist/assets/{McpQueryPage-CM_Fgl9G.js.map → McpQueryPage-BH2Pon4M.js.map} +1 -1
- package/dashboard/dist/assets/{McpRunDetailPage-Bo9vXQBA.js → McpRunDetailPage-kUnq2QSO.js} +2 -2
- package/dashboard/dist/assets/{McpRunDetailPage-Bo9vXQBA.js.map → McpRunDetailPage-kUnq2QSO.js.map} +1 -1
- package/dashboard/dist/assets/{McpRunsPage-BwsgvGtg.js → McpRunsPage-BTucgt64.js} +2 -2
- package/dashboard/dist/assets/{McpRunsPage-BwsgvGtg.js.map → McpRunsPage-BTucgt64.js.map} +1 -1
- package/dashboard/dist/assets/{NamespacePill-CKp_9EaI.js → NamespacePill-DONj6eUU.js} +2 -2
- package/dashboard/dist/assets/{NamespacePill-CKp_9EaI.js.map → NamespacePill-DONj6eUU.js.map} +1 -1
- package/dashboard/dist/assets/{OperationsPage-BftWAJ9m.js → OperationsPage-Cp8WL-ld.js} +3 -3
- package/dashboard/dist/assets/{OperationsPage-BftWAJ9m.js.map → OperationsPage-Cp8WL-ld.js.map} +1 -1
- package/dashboard/dist/assets/{OperatorDashboard-CKjrYYFi.js → OperatorDashboard-wHyeLWzX.js} +2 -2
- package/dashboard/dist/assets/{OperatorDashboard-CKjrYYFi.js.map → OperatorDashboard-wHyeLWzX.js.map} +1 -1
- package/dashboard/dist/assets/{PageHeader-CDDpHpdv.js → PageHeader-CFVw67M6.js} +2 -2
- package/dashboard/dist/assets/{PageHeader-CDDpHpdv.js.map → PageHeader-CFVw67M6.js.map} +1 -1
- package/dashboard/dist/assets/{PageHeaderWithStats-DIWH6fRv.js → PageHeaderWithStats-D9tQxILm.js} +2 -2
- package/dashboard/dist/assets/{PageHeaderWithStats-DIWH6fRv.js.map → PageHeaderWithStats-D9tQxILm.js.map} +1 -1
- package/dashboard/dist/assets/{PersonaDetailPage-BsIPtBxZ.js → PersonaDetailPage-BXlTqLDK.js} +2 -2
- package/dashboard/dist/assets/{PersonaDetailPage-BsIPtBxZ.js.map → PersonaDetailPage-BXlTqLDK.js.map} +1 -1
- package/dashboard/dist/assets/{PersonasPage-62hANmNf.js → PersonasPage-DlmdJ3Dm.js} +2 -2
- package/dashboard/dist/assets/{PersonasPage-62hANmNf.js.map → PersonasPage-DlmdJ3Dm.js.map} +1 -1
- package/dashboard/dist/assets/{ProcessDetailPage-DS_t9DcR.js → ProcessDetailPage-D88ocvmT.js} +2 -2
- package/dashboard/dist/assets/{ProcessDetailPage-DS_t9DcR.js.map → ProcessDetailPage-D88ocvmT.js.map} +1 -1
- package/dashboard/dist/assets/{ProcessesListPage-Ch2tSICc.js → ProcessesListPage-DpXm-KtK.js} +2 -2
- package/dashboard/dist/assets/{ProcessesListPage-Ch2tSICc.js.map → ProcessesListPage-DpXm-KtK.js.map} +1 -1
- package/dashboard/dist/assets/{RoleDetailPage-DVbtnTvn.js → RoleDetailPage-DE2Rj2QE.js} +2 -2
- package/dashboard/dist/assets/{RoleDetailPage-DVbtnTvn.js.map → RoleDetailPage-DE2Rj2QE.js.map} +1 -1
- package/dashboard/dist/assets/{RolePill-C0hExOmI.js → RolePill-Di_5hfvw.js} +2 -2
- package/dashboard/dist/assets/{RolePill-C0hExOmI.js.map → RolePill-Di_5hfvw.js.map} +1 -1
- package/dashboard/dist/assets/{RolesPage-CK6FjD5P.js → RolesPage-CZSvJlsz.js} +2 -2
- package/dashboard/dist/assets/{RolesPage-CK6FjD5P.js.map → RolesPage-CZSvJlsz.js.map} +1 -1
- package/dashboard/dist/assets/{RunAsSelector-ImueSaJ4.js → RunAsSelector-BawZcqAk.js} +2 -2
- package/dashboard/dist/assets/{RunAsSelector-ImueSaJ4.js.map → RunAsSelector-BawZcqAk.js.map} +1 -1
- package/dashboard/dist/assets/{ScanCodesPage-CDqLJuCq.js → ScanCodesPage-DSlpA9kK.js} +2 -2
- package/dashboard/dist/assets/{ScanCodesPage-CDqLJuCq.js.map → ScanCodesPage-DSlpA9kK.js.map} +1 -1
- package/dashboard/dist/assets/{ScanSchemeDetailPage-DO6qtJdM.js → ScanSchemeDetailPage-BK4hisGD.js} +2 -2
- package/dashboard/dist/assets/{ScanSchemeDetailPage-DO6qtJdM.js.map → ScanSchemeDetailPage-BK4hisGD.js.map} +1 -1
- package/dashboard/dist/assets/{ScanStationPage-ID3xMhds.js → ScanStationPage-D3QjajFD.js} +2 -2
- package/dashboard/dist/assets/{ScanStationPage-ID3xMhds.js.map → ScanStationPage-D3QjajFD.js.map} +1 -1
- package/dashboard/dist/assets/{ScopeBadge-BBQvz4pj.js → ScopeBadge-CqIIeWjK.js} +2 -2
- package/dashboard/dist/assets/{ScopeBadge-BBQvz4pj.js.map → ScopeBadge-CqIIeWjK.js.map} +1 -1
- package/dashboard/dist/assets/{StickyPagination-XA1krmz5.js → StickyPagination-BfZwU2NR.js} +2 -2
- package/dashboard/dist/assets/{StickyPagination-XA1krmz5.js.map → StickyPagination-BfZwU2NR.js.map} +1 -1
- package/dashboard/dist/assets/{StreamMessageDetail-DziA1g1e.js → StreamMessageDetail-C7zIHX5D.js} +2 -2
- package/dashboard/dist/assets/{StreamMessageDetail-DziA1g1e.js.map → StreamMessageDetail-C7zIHX5D.js.map} +1 -1
- package/dashboard/dist/assets/{SwimlaneTimeline-DTNEnHiF.js → SwimlaneTimeline-DNSo8AT8.js} +2 -2
- package/dashboard/dist/assets/{SwimlaneTimeline-DTNEnHiF.js.map → SwimlaneTimeline-DNSo8AT8.js.map} +1 -1
- package/dashboard/dist/assets/{TagInput-BXxXs1JD.js → TagInput-BLwxTNsI.js} +2 -2
- package/dashboard/dist/assets/{TagInput-BXxXs1JD.js.map → TagInput-BLwxTNsI.js.map} +1 -1
- package/dashboard/dist/assets/{TaskDetailPage-U19sJHAI.js → TaskDetailPage-BOJ8pwh3.js} +2 -2
- package/dashboard/dist/assets/{TaskDetailPage-U19sJHAI.js.map → TaskDetailPage-BOJ8pwh3.js.map} +1 -1
- package/dashboard/dist/assets/{TaskQueuePill-BKGJBVZG.js → TaskQueuePill-DVgcqd-h.js} +2 -2
- package/dashboard/dist/assets/{TaskQueuePill-BKGJBVZG.js.map → TaskQueuePill-DVgcqd-h.js.map} +1 -1
- package/dashboard/dist/assets/{TasksListPage-jc4Xk7kI.js → TasksListPage-C4CYqZf8.js} +2 -2
- package/dashboard/dist/assets/{TasksListPage-jc4Xk7kI.js.map → TasksListPage-C4CYqZf8.js.map} +1 -1
- package/dashboard/dist/assets/{TimeAgo-GWgJ0LVq.js → TimeAgo-JRPi9IEd.js} +2 -2
- package/dashboard/dist/assets/{TimeAgo-GWgJ0LVq.js.map → TimeAgo-JRPi9IEd.js.map} +1 -1
- package/dashboard/dist/assets/{TimestampCell-Dk1TVsFV.js → TimestampCell-BVYyU-nl.js} +2 -2
- package/dashboard/dist/assets/{TimestampCell-Dk1TVsFV.js.map → TimestampCell-BVYyU-nl.js.map} +1 -1
- package/dashboard/dist/assets/{ToolPill-BY6zLSfA.js → ToolPill-C6hkOqPx.js} +2 -2
- package/dashboard/dist/assets/{ToolPill-BY6zLSfA.js.map → ToolPill-C6hkOqPx.js.map} +1 -1
- package/dashboard/dist/assets/{ToolTestPanel-BKcqnR68.js → ToolTestPanel-IGrd44Au.js} +2 -2
- package/dashboard/dist/assets/{ToolTestPanel-BKcqnR68.js.map → ToolTestPanel-IGrd44Au.js.map} +1 -1
- package/dashboard/dist/assets/{TopicDetailPage-D8GcDu_0.js → TopicDetailPage-DhianNey.js} +3 -3
- package/dashboard/dist/assets/{TopicDetailPage-D8GcDu_0.js.map → TopicDetailPage-DhianNey.js.map} +1 -1
- package/dashboard/dist/assets/{TopicsPage-BT9LV3yH.js → TopicsPage-Glhqz_Nv.js} +2 -2
- package/dashboard/dist/assets/{TopicsPage-BT9LV3yH.js.map → TopicsPage-Glhqz_Nv.js.map} +1 -1
- package/dashboard/dist/assets/{UserName-BrwZnLjU.js → UserName-CD9OqhNI.js} +2 -2
- package/dashboard/dist/assets/{UserName-BrwZnLjU.js.map → UserName-CD9OqhNI.js.map} +1 -1
- package/dashboard/dist/assets/{WorkflowExecutionPage-CldfHwky.js → WorkflowExecutionPage-8Q2438Ry.js} +2 -2
- package/dashboard/dist/assets/{WorkflowExecutionPage-CldfHwky.js.map → WorkflowExecutionPage-8Q2438Ry.js.map} +1 -1
- package/dashboard/dist/assets/{WorkflowPill-qp5UF3-y.js → WorkflowPill-CN-952iI.js} +2 -2
- package/dashboard/dist/assets/{WorkflowPill-qp5UF3-y.js.map → WorkflowPill-CN-952iI.js.map} +1 -1
- package/dashboard/dist/assets/{WorkflowsDashboard-DkyGkxW1.js → WorkflowsDashboard-CkAoYT86.js} +2 -2
- package/dashboard/dist/assets/{WorkflowsDashboard-DkyGkxW1.js.map → WorkflowsDashboard-CkAoYT86.js.map} +1 -1
- package/dashboard/dist/assets/{WorkflowsOverview-DACADuUE.js → WorkflowsOverview-Zh_EidMp.js} +2 -2
- package/dashboard/dist/assets/{WorkflowsOverview-DACADuUE.js.map → WorkflowsOverview-Zh_EidMp.js.map} +1 -1
- package/dashboard/dist/assets/{YamlWorkflowDetailPage-DSAjzido.js → YamlWorkflowDetailPage-BKJbFT8C.js} +2 -2
- package/dashboard/dist/assets/{YamlWorkflowDetailPage-DSAjzido.js.map → YamlWorkflowDetailPage-BKJbFT8C.js.map} +1 -1
- package/dashboard/dist/assets/{YamlWorkflowsPage-CqoSFz5B.js → YamlWorkflowsPage-DK1z6iFt.js} +2 -2
- package/dashboard/dist/assets/{YamlWorkflowsPage-CqoSFz5B.js.map → YamlWorkflowsPage-DK1z6iFt.js.map} +1 -1
- package/dashboard/dist/assets/{agents-Cg_e-aaf.js → agents-BEASyYpg.js} +2 -2
- package/dashboard/dist/assets/{agents-Cg_e-aaf.js.map → agents-BEASyYpg.js.map} +1 -1
- package/dashboard/dist/assets/{bots-B047yNJ0.js → bots-CaXqSHat.js} +2 -2
- package/dashboard/dist/assets/{bots-B047yNJ0.js.map → bots-CaXqSHat.js.map} +1 -1
- package/dashboard/dist/assets/{capabilities-CI1dbCDk.js → capabilities-Cijq-qev.js} +2 -2
- package/dashboard/dist/assets/{capabilities-CI1dbCDk.js.map → capabilities-Cijq-qev.js.map} +1 -1
- package/dashboard/dist/assets/{controlplane-Cy7snw7f.js → controlplane-HGuRC7AW.js} +2 -2
- package/dashboard/dist/assets/{controlplane-Cy7snw7f.js.map → controlplane-HGuRC7AW.js.map} +1 -1
- package/dashboard/dist/assets/{escalation-columns-BNrONMYj.js → escalation-columns-BLVz8XCP.js} +2 -2
- package/dashboard/dist/assets/{escalation-columns-BNrONMYj.js.map → escalation-columns-BLVz8XCP.js.map} +1 -1
- package/dashboard/dist/assets/index-BJDAXUzO.js +2 -0
- package/dashboard/dist/assets/index-BJDAXUzO.js.map +1 -0
- package/dashboard/dist/assets/{index-DVtIMrTb.js → index-CEIp6WWg.js} +2 -2
- package/dashboard/dist/assets/{index-DVtIMrTb.js.map → index-CEIp6WWg.js.map} +1 -1
- package/dashboard/dist/assets/index-CK_ohh6Q.js +3 -0
- package/dashboard/dist/assets/index-CK_ohh6Q.js.map +1 -0
- package/dashboard/dist/assets/{index-DAUV3eJ-.js → index-CLQ0HBHR.js} +2 -2
- package/dashboard/dist/assets/{index-DAUV3eJ-.js.map → index-CLQ0HBHR.js.map} +1 -1
- package/dashboard/dist/assets/{index-COKZW8Xx.js → index-Cg0vCZng.js} +2 -2
- package/dashboard/dist/assets/{index-COKZW8Xx.js.map → index-Cg0vCZng.js.map} +1 -1
- package/dashboard/dist/assets/{index-lGfBW1PB.js → index-CgXVDPW-.js} +31 -31
- package/dashboard/dist/assets/index-CgXVDPW-.js.map +1 -0
- package/dashboard/dist/assets/index-ClY0ihQ5.js +2 -0
- package/dashboard/dist/assets/{index-X3_AxcUk.js.map → index-ClY0ihQ5.js.map} +1 -1
- package/dashboard/dist/assets/{index-C_y0lQ_o.js → index-D2OU2MJb.js} +2 -2
- package/dashboard/dist/assets/{index-C_y0lQ_o.js.map → index-D2OU2MJb.js.map} +1 -1
- package/dashboard/dist/assets/{index-Bf3hVGXZ.js → index-IkgBE7e_.js} +2 -2
- package/dashboard/dist/assets/{index-Bf3hVGXZ.js.map → index-IkgBE7e_.js.map} +1 -1
- package/dashboard/dist/assets/{index-B6Grf1WQ.js → index-Xi3LO4Ye.js} +4 -4
- package/dashboard/dist/assets/{index-B6Grf1WQ.js.map → index-Xi3LO4Ye.js.map} +1 -1
- package/dashboard/dist/assets/{index-Bxd2sXqz.js → index-YMd3ZiPd.js} +2 -2
- package/dashboard/dist/assets/{index-Bxd2sXqz.js.map → index-YMd3ZiPd.js.map} +1 -1
- package/dashboard/dist/assets/{index-Uk6N1qiH.js → index-t1JXcmBG.js} +2 -2
- package/dashboard/dist/assets/{index-Uk6N1qiH.js.map → index-t1JXcmBG.js.map} +1 -1
- package/dashboard/dist/assets/{index-DyTb77Jb.js → index-tCDjx1kF.js} +2 -2
- package/dashboard/dist/assets/{index-DyTb77Jb.js.map → index-tCDjx1kF.js.map} +1 -1
- package/dashboard/dist/assets/knowledge-DpaUJtVW.js +2 -0
- package/dashboard/dist/assets/knowledge-DpaUJtVW.js.map +1 -0
- package/dashboard/dist/assets/{mcp-D889kZ-c.js → mcp-BkkLq6OE.js} +2 -2
- package/dashboard/dist/assets/{mcp-D889kZ-c.js.map → mcp-BkkLq6OE.js.map} +1 -1
- package/dashboard/dist/assets/{mcp-query-Cs9J2pVT.js → mcp-query-DeXu3La5.js} +2 -2
- package/dashboard/dist/assets/{mcp-query-Cs9J2pVT.js.map → mcp-query-DeXu3La5.js.map} +1 -1
- package/dashboard/dist/assets/{personas-xHB16O-Q.js → personas-BRbKVVko.js} +2 -2
- package/dashboard/dist/assets/{personas-xHB16O-Q.js.map → personas-BRbKVVko.js.map} +1 -1
- package/dashboard/dist/assets/{pipelines-DnTPjw1v.js → pipelines-B7xo92sK.js} +2 -2
- package/dashboard/dist/assets/{pipelines-DnTPjw1v.js.map → pipelines-B7xo92sK.js.map} +1 -1
- package/dashboard/dist/assets/{tasks-BcDvp6dL.js → tasks-BGyqM1Ho.js} +2 -2
- package/dashboard/dist/assets/{tasks-BcDvp6dL.js.map → tasks-BGyqM1Ho.js.map} +1 -1
- package/dashboard/dist/assets/{topics-DXw6BNy5.js → topics-I81rKc75.js} +2 -2
- package/dashboard/dist/assets/{topics-DXw6BNy5.js.map → topics-I81rKc75.js.map} +1 -1
- package/dashboard/dist/assets/{useEventHooks-C-bsD8zP.js → useEventHooks-CjV3uNxt.js} +2 -2
- package/dashboard/dist/assets/{useEventHooks-C-bsD8zP.js.map → useEventHooks-CjV3uNxt.js.map} +1 -1
- package/dashboard/dist/assets/{useNamespace-wZCsEF6O.js → useNamespace-B-HMdRka.js} +2 -2
- package/dashboard/dist/assets/{useNamespace-wZCsEF6O.js.map → useNamespace-B-HMdRka.js.map} +1 -1
- package/dashboard/dist/assets/{useYamlActivityEvents-Cu_o4-ow.js → useYamlActivityEvents-CNsAlsgz.js} +2 -2
- package/dashboard/dist/assets/{useYamlActivityEvents-Cu_o4-ow.js.map → useYamlActivityEvents-CNsAlsgz.js.map} +1 -1
- package/dashboard/dist/assets/{users-XpCq_umD.js → users-DiTqBepm.js} +2 -2
- package/dashboard/dist/assets/{users-XpCq_umD.js.map → users-DiTqBepm.js.map} +1 -1
- package/dashboard/dist/assets/{vendor-icons-BgsXTN4h.js → vendor-icons-h-jlRSb9.js} +141 -146
- package/dashboard/dist/assets/vendor-icons-h-jlRSb9.js.map +1 -0
- package/dashboard/dist/assets/{workflows-CMxHVqQ8.js → workflows-TA0p_3B8.js} +2 -2
- package/dashboard/dist/assets/{workflows-CMxHVqQ8.js.map → workflows-TA0p_3B8.js.map} +1 -1
- package/dashboard/dist/assets/{yaml-workflows-kxOF5yEC.js → yaml-workflows-DN9-DBnQ.js} +2 -2
- package/dashboard/dist/assets/{yaml-workflows-kxOF5yEC.js.map → yaml-workflows-DN9-DBnQ.js.map} +1 -1
- package/dashboard/dist/index.html +2 -2
- package/docs/api/http/escalations.md +31 -8
- package/docs/api/http/knowledge.md +24 -2
- package/docs/api/http/roles.md +1 -1
- package/docs/api/mcp/admin.md +1 -1
- package/docs/api/mcp/human-queue.md +14 -0
- package/docs/api/mcp/knowledge.md +17 -1
- package/docs/api/sdk/escalations.md +38 -15
- package/docs/api/sdk/knowledge.md +27 -0
- package/docs/api/sdk/roles.md +1 -1
- package/docs/compilation.md +1 -1
- package/docs/compiler.md +2 -2
- package/docs/dashboard.md +1 -1
- package/docs/data.md +3 -3
- package/docs/hitl/escalation.md +14 -12
- package/docs/hitl/form.md +1 -0
- package/docs/hitl/iframe.md +2 -2
- package/docs/hitl/lookups.md +134 -0
- package/docs/hitl/resolution.md +4 -4
- package/docs/hitl/roles.md +4 -4
- package/docs/hitl/x-lt-show-if.md +1 -1
- package/docs/hitl/x-lt-transition.md +2 -2
- package/docs/hitl/x-lt-validation.md +64 -2
- package/docs/hitl/x-lt-widget.md +2 -2
- package/docs/hitl-guide.md +8 -2
- package/docs/story.md +1 -1
- package/package.json +1 -1
- package/dashboard/dist/assets/AgentConfigPage-4C9aU0dj.js.map +0 -1
- package/dashboard/dist/assets/AgentDetailPage-B6uvDnMF.js.map +0 -1
- package/dashboard/dist/assets/AvailableEscalationsPage-C9VKPhD6.js +0 -2
- package/dashboard/dist/assets/CapabilitiesPage-Bkbq_GO6.js +0 -2
- package/dashboard/dist/assets/CountdownTimer-CGnk4Bw_.js +0 -2
- package/dashboard/dist/assets/CountdownTimer-CGnk4Bw_.js.map +0 -1
- package/dashboard/dist/assets/ListToolbar-BvpGFFYp.js +0 -2
- package/dashboard/dist/assets/McpQueryPage-CM_Fgl9G.js +0 -2
- package/dashboard/dist/assets/index-Ds5rGe-i.js +0 -3
- package/dashboard/dist/assets/index-Ds5rGe-i.js.map +0 -1
- package/dashboard/dist/assets/index-X3_AxcUk.js +0 -2
- package/dashboard/dist/assets/index-lGfBW1PB.js.map +0 -1
- package/dashboard/dist/assets/index-nUmEwQrg.js +0 -2
- package/dashboard/dist/assets/index-nUmEwQrg.js.map +0 -1
- package/dashboard/dist/assets/knowledge-DsIUzscY.js +0 -2
- package/dashboard/dist/assets/knowledge-DsIUzscY.js.map +0 -1
- package/dashboard/dist/assets/vendor-icons-BgsXTN4h.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./ProcessesListPage-
|
|
2
|
-
var
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./ProcessesListPage-DpXm-KtK.js","./vendor-query-RUZdMvN6.js","./tasks-BGyqM1Ho.js","./workflows-TA0p_3B8.js","./useEventHooks-CjV3uNxt.js","./useFilterParams-crmlBw_l.js","./vendor-react-CdqEC2zv.js","./useDebouncedValue-C4P2jQuh.js","./api-path-u2Jf9QXS.js","./DataTable-DFPMeqyQ.js","./EmptyState-lpUFYfun.js","./TimestampCell-BVYyU-nl.js","./StickyPagination-BfZwU2NR.js","./FilterBar-BY--ANxv.js","./vendor-icons-h-jlRSb9.js","./PageHeader-CFVw67M6.js","./ListToolbar-D5TQ4X_M.js","./WorkflowPill-CN-952iI.js","./ProcessDetailPage-D88ocvmT.js","./PageHeaderWithStats-D9tQxILm.js","./StatusBadge-BDeUwPtb.js","./RolePill-Di_5hfvw.js","./UserName-CD9OqhNI.js","./users-DiTqBepm.js","./McpOverview-jlukVWQ7.js","./mcp-BkkLq6OE.js","./pipelines-B7xo92sK.js","./yaml-workflows-DN9-DBnQ.js","./controlplane-HGuRC7AW.js","./StatCard-BXQ8dD9Y.js","./McpRunsPage-BTucgt64.js","./useNamespace-B-HMdRka.js","./ElapsedCell-B4VxKHpw.js","./RowActions-eYrzgQSj.js","./McpRunDetailPage-kUnq2QSO.js","./SegmentedTabs-DXNzY05q.js","./EventTable-C9lHQ57t.js","./SwimlaneTimeline-DNSo8AT8.js","./StreamMessageDetail-C7zIHX5D.js","./CopyableId-4Lqlc5cU.js","./McpQueryPage-BH2Pon4M.js","./mcp-query-DeXu3La5.js","./McpQueryDetailPage-BWKbvJSd.js","./TagInput-BLwxTNsI.js","./CollapsibleSection-DfPpAIxa.js","./useYamlActivityEvents-CNsAlsgz.js","./helpers-DzO-OGPe.js","./RunAsSelector-BawZcqAk.js","./BotPicker-CBf6bHLV.js","./bots-CaXqSHat.js","./ToolPill-C6hkOqPx.js","./TimeAgo-JRPi9IEd.js","./EscalationsOverview-gHWPjUpZ.js","./AvailableEscalationsPage-C5f2rqHa.js","./task-queues-7-sHKPsN.js","./BulkAssignModal-CkxoPByA.js","./Modal-BU7No9NH.js","./constants-BHkpVaqx.js","./escalation-columns-BLVz8XCP.js","./EntityTimelinePanel-CFbQDHOj.js","./PriorityBadge-BETdj4M-.js","./CountdownTimer-DVL7WIcE.js","./OperatorDashboard-wHyeLWzX.js","./index-CK_ohh6Q.js","./metadata-display-DHjqWkLG.js","./WorkflowsOverview-Zh_EidMp.js","./index-Xi3LO4Ye.js","./NamespacePill-DONj6eUU.js","./WorkflowsDashboard-CkAoYT86.js","./YamlWorkflowsPage-DK1z6iFt.js","./GraphInvokePage-B-Oo5s-W.js","./YamlWorkflowDetailPage-BKJbFT8C.js","./TasksListPage-C4CYqZf8.js","./TaskDetailPage-BOJ8pwh3.js","./WorkflowExecutionPage-8Q2438Ry.js","./AdminDashboard-BVgjY4zN.js","./index-CLQ0HBHR.js","./TaskQueuePill-DVgcqd-h.js","./index-D2OU2MJb.js","./ConfirmDeleteModal-CQsJUzEa.js","./index-t1JXcmBG.js","./ToolTestPanel-IGrd44Au.js","./index-YMd3ZiPd.js","./index-tCDjx1kF.js","./personas-BRbKVVko.js","./ScopeBadge-CqIIeWjK.js","./RolesPage-CZSvJlsz.js","./RoleDetailPage-DE2Rj2QE.js","./AutoGrowTextarea-DgEQeRQw.js","./PersonasPage-DlmdJ3Dm.js","./PersonaDetailPage-BXlTqLDK.js","./EscalationSchemaPage-Sjk05eHP.js","./EscalationListSchemaPage-YTgexl4f.js","./ScanCodesPage-DSlpA9kK.js","./ScanSchemeDetailPage-BK4hisGD.js","./ScanStationPage-D3QjajFD.js","./index-Cg0vCZng.js","./OperationsPage-Cp8WL-ld.js","./index-IkgBE7e_.js","./index-ClY0ihQ5.js","./CredentialsPage-BHZ5SKIu.js","./index-CEIp6WWg.js","./DropZone-Pv-v5RAs.js","./index-BJDAXUzO.js","./knowledge-DpaUJtVW.js","./HomePage-BrcjKOaJ.js","./AgentsPage-C7PnPXz_.js","./agents-BEASyYpg.js","./AgentDetailPage-IJfgCOIF.js","./CronLabel-wE8Hms6c.js","./AgentConfigPage-ChL59YL5.js","./capabilities-Cijq-qev.js","./topics-I81rKc75.js","./CapabilitiesPage-D7USh3F0.js","./TopicsPage-Glhqz_Nv.js","./TopicDetailPage-DhianNey.js"])))=>i.map(i=>d[i]);
|
|
2
|
+
var nw=Object.defineProperty;var rw=(i,t,r)=>t in i?nw(i,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):i[t]=r;var A=(i,t,r)=>rw(i,typeof t!="symbol"?t+"":t,r);import{r as iw,u as lt,a as j,j as p,b as rt,c as mt,g as sw,Q as aw,d as ow}from"./vendor-query-RUZdMvN6.js";import{r as lw,u as yo,a as yn,b as ib,L as Ii,N as Hs,c as In,O as Ls,d as cw,R as uw}from"./vendor-react-CdqEC2zv.js";import{X as Gt,E as fw,S as hw,M as dw,a as ou,b as mw,C as sb,c as Xh,I as Jh,R as ab,B as ob,U as pw,d as yw,L as gw,e as bw,Z as vw,P as Py,f as lb,g as xw,h as Uy,i as zy,j as Iy,k as _w,W as Ed,l as ww,m as Sw,F as Ew,n as cb,o as Ow,D as Aw,N as jw,p as Tw,q as ub,r as fb,s as hb,t as db,u as Nw,v as kw,w as Cw,G as Mw,T as Rw,x as Dw,y as qw,z as Bw}from"./vendor-icons-h-jlRSb9.js";(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const l of document.querySelectorAll('link[rel="modulepreload"]'))s(l);new MutationObserver(l=>{for(const c of l)if(c.type==="childList")for(const d of c.addedNodes)d.tagName==="LINK"&&d.rel==="modulepreload"&&s(d)}).observe(document,{childList:!0,subtree:!0});function r(l){const c={};return l.integrity&&(c.integrity=l.integrity),l.referrerPolicy&&(c.referrerPolicy=l.referrerPolicy),l.crossOrigin==="use-credentials"?c.credentials="include":l.crossOrigin==="anonymous"?c.credentials="omit":c.credentials="same-origin",c}function s(l){if(l.ep)return;l.ep=!0;const c=r(l);fetch(l.href,c)}})();var kh={exports:{}},Ga={},Ch={exports:{}},Mh={};/**
|
|
3
3
|
* @license React
|
|
4
4
|
* scheduler.production.js
|
|
5
5
|
*
|
|
@@ -7,7 +7,7 @@ var tw=Object.defineProperty;var nw=(i,t,r)=>t in i?tw(i,t,{enumerable:!0,config
|
|
|
7
7
|
*
|
|
8
8
|
* This source code is licensed under the MIT license found in the
|
|
9
9
|
* LICENSE file in the root directory of this source tree.
|
|
10
|
-
*/var $
|
|
10
|
+
*/var $y;function Lw(){return $y||($y=1,(function(i){function t(Y,ae){var de=Y.length;Y.push(ae);e:for(;0<de;){var Oe=de-1>>>1,oe=Y[Oe];if(0<l(oe,ae))Y[Oe]=ae,Y[de]=oe,de=Oe;else break e}}function r(Y){return Y.length===0?null:Y[0]}function s(Y){if(Y.length===0)return null;var ae=Y[0],de=Y.pop();if(de!==ae){Y[0]=de;e:for(var Oe=0,oe=Y.length,je=oe>>>1;Oe<je;){var Se=2*(Oe+1)-1,Ne=Y[Se],We=Se+1,Ae=Y[We];if(0>l(Ne,de))We<oe&&0>l(Ae,Ne)?(Y[Oe]=Ae,Y[We]=de,Oe=We):(Y[Oe]=Ne,Y[Se]=de,Oe=Se);else if(We<oe&&0>l(Ae,de))Y[Oe]=Ae,Y[We]=de,Oe=We;else break e}}return ae}function l(Y,ae){var de=Y.sortIndex-ae.sortIndex;return de!==0?de:Y.id-ae.id}if(i.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var c=performance;i.unstable_now=function(){return c.now()}}else{var d=Date,y=d.now();i.unstable_now=function(){return d.now()-y}}var g=[],f=[],m=1,b=null,v=3,_=!1,w=!1,S=!1,M=!1,B=typeof setTimeout=="function"?setTimeout:null,U=typeof clearTimeout=="function"?clearTimeout:null,re=typeof setImmediate<"u"?setImmediate:null;function ce(Y){for(var ae=r(f);ae!==null;){if(ae.callback===null)s(f);else if(ae.startTime<=Y)s(f),ae.sortIndex=ae.expirationTime,t(g,ae);else break;ae=r(f)}}function C(Y){if(S=!1,ce(Y),!w)if(r(g)!==null)w=!0,P||(P=!0,J());else{var ae=r(f);ae!==null&&Te(C,ae.startTime-Y)}}var P=!1,ie=-1,X=5,L=-1;function G(){return M?!0:!(i.unstable_now()-L<X)}function W(){if(M=!1,P){var Y=i.unstable_now();L=Y;var ae=!0;try{e:{w=!1,S&&(S=!1,U(ie),ie=-1),_=!0;var de=v;try{t:{for(ce(Y),b=r(g);b!==null&&!(b.expirationTime>Y&&G());){var Oe=b.callback;if(typeof Oe=="function"){b.callback=null,v=b.priorityLevel;var oe=Oe(b.expirationTime<=Y);if(Y=i.unstable_now(),typeof oe=="function"){b.callback=oe,ce(Y),ae=!0;break t}b===r(g)&&s(g),ce(Y)}else s(g);b=r(g)}if(b!==null)ae=!0;else{var je=r(f);je!==null&&Te(C,je.startTime-Y),ae=!1}}break e}finally{b=null,v=de,_=!1}ae=void 0}}finally{ae?J():P=!1}}}var J;if(typeof re=="function")J=function(){re(W)};else if(typeof MessageChannel<"u"){var he=new MessageChannel,xe=he.port2;he.port1.onmessage=W,J=function(){xe.postMessage(null)}}else J=function(){B(W,0)};function Te(Y,ae){ie=B(function(){Y(i.unstable_now())},ae)}i.unstable_IdlePriority=5,i.unstable_ImmediatePriority=1,i.unstable_LowPriority=4,i.unstable_NormalPriority=3,i.unstable_Profiling=null,i.unstable_UserBlockingPriority=2,i.unstable_cancelCallback=function(Y){Y.callback=null},i.unstable_forceFrameRate=function(Y){0>Y||125<Y?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):X=0<Y?Math.floor(1e3/Y):5},i.unstable_getCurrentPriorityLevel=function(){return v},i.unstable_next=function(Y){switch(v){case 1:case 2:case 3:var ae=3;break;default:ae=v}var de=v;v=ae;try{return Y()}finally{v=de}},i.unstable_requestPaint=function(){M=!0},i.unstable_runWithPriority=function(Y,ae){switch(Y){case 1:case 2:case 3:case 4:case 5:break;default:Y=3}var de=v;v=Y;try{return ae()}finally{v=de}},i.unstable_scheduleCallback=function(Y,ae,de){var Oe=i.unstable_now();switch(typeof de=="object"&&de!==null?(de=de.delay,de=typeof de=="number"&&0<de?Oe+de:Oe):de=Oe,Y){case 1:var oe=-1;break;case 2:oe=250;break;case 5:oe=1073741823;break;case 4:oe=1e4;break;default:oe=5e3}return oe=de+oe,Y={id:m++,callback:ae,priorityLevel:Y,startTime:de,expirationTime:oe,sortIndex:-1},de>Oe?(Y.sortIndex=de,t(f,Y),r(g)===null&&Y===r(f)&&(S?(U(ie),ie=-1):S=!0,Te(C,de-Oe))):(Y.sortIndex=oe,t(g,Y),w||_||(w=!0,P||(P=!0,J()))),Y},i.unstable_shouldYield=G,i.unstable_wrapCallback=function(Y){var ae=v;return function(){var de=v;v=ae;try{return Y.apply(this,arguments)}finally{v=de}}}})(Mh)),Mh}var Hy;function Pw(){return Hy||(Hy=1,Ch.exports=Lw()),Ch.exports}/**
|
|
11
11
|
* @license React
|
|
12
12
|
* react-dom-client.production.js
|
|
13
13
|
*
|
|
@@ -15,53 +15,53 @@ var tw=Object.defineProperty;var nw=(i,t,r)=>t in i?tw(i,t,{enumerable:!0,config
|
|
|
15
15
|
*
|
|
16
16
|
* This source code is licensed under the MIT license found in the
|
|
17
17
|
* LICENSE file in the root directory of this source tree.
|
|
18
|
-
*/var
|
|
18
|
+
*/var Gy;function Uw(){if(Gy)return Ga;Gy=1;var i=Pw(),t=iw(),r=lw();function s(e){var n="https://react.dev/errors/"+e;if(1<arguments.length){n+="?args[]="+encodeURIComponent(arguments[1]);for(var a=2;a<arguments.length;a++)n+="&args[]="+encodeURIComponent(arguments[a])}return"Minified React error #"+e+"; visit "+n+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function l(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11)}function c(e){var n=e,a=e;if(e.alternate)for(;n.return;)n=n.return;else{e=n;do n=e,(n.flags&4098)!==0&&(a=n.return),e=n.return;while(e)}return n.tag===3?a:null}function d(e){if(e.tag===13){var n=e.memoizedState;if(n===null&&(e=e.alternate,e!==null&&(n=e.memoizedState)),n!==null)return n.dehydrated}return null}function y(e){if(e.tag===31){var n=e.memoizedState;if(n===null&&(e=e.alternate,e!==null&&(n=e.memoizedState)),n!==null)return n.dehydrated}return null}function g(e){if(c(e)!==e)throw Error(s(188))}function f(e){var n=e.alternate;if(!n){if(n=c(e),n===null)throw Error(s(188));return n!==e?null:e}for(var a=e,o=n;;){var u=a.return;if(u===null)break;var h=u.alternate;if(h===null){if(o=u.return,o!==null){a=o;continue}break}if(u.child===h.child){for(h=u.child;h;){if(h===a)return g(u),e;if(h===o)return g(u),n;h=h.sibling}throw Error(s(188))}if(a.return!==o.return)a=u,o=h;else{for(var x=!1,E=u.child;E;){if(E===a){x=!0,a=u,o=h;break}if(E===o){x=!0,o=u,a=h;break}E=E.sibling}if(!x){for(E=h.child;E;){if(E===a){x=!0,a=h,o=u;break}if(E===o){x=!0,o=h,a=u;break}E=E.sibling}if(!x)throw Error(s(189))}}if(a.alternate!==o)throw Error(s(190))}if(a.tag!==3)throw Error(s(188));return a.stateNode.current===a?e:n}function m(e){var n=e.tag;if(n===5||n===26||n===27||n===6)return e;for(e=e.child;e!==null;){if(n=m(e),n!==null)return n;e=e.sibling}return null}var b=Object.assign,v=Symbol.for("react.element"),_=Symbol.for("react.transitional.element"),w=Symbol.for("react.portal"),S=Symbol.for("react.fragment"),M=Symbol.for("react.strict_mode"),B=Symbol.for("react.profiler"),U=Symbol.for("react.consumer"),re=Symbol.for("react.context"),ce=Symbol.for("react.forward_ref"),C=Symbol.for("react.suspense"),P=Symbol.for("react.suspense_list"),ie=Symbol.for("react.memo"),X=Symbol.for("react.lazy"),L=Symbol.for("react.activity"),G=Symbol.for("react.memo_cache_sentinel"),W=Symbol.iterator;function J(e){return e===null||typeof e!="object"?null:(e=W&&e[W]||e["@@iterator"],typeof e=="function"?e:null)}var he=Symbol.for("react.client.reference");function xe(e){if(e==null)return null;if(typeof e=="function")return e.$$typeof===he?null:e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case S:return"Fragment";case B:return"Profiler";case M:return"StrictMode";case C:return"Suspense";case P:return"SuspenseList";case L:return"Activity"}if(typeof e=="object")switch(e.$$typeof){case w:return"Portal";case re:return e.displayName||"Context";case U:return(e._context.displayName||"Context")+".Consumer";case ce:var n=e.render;return e=e.displayName,e||(e=n.displayName||n.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case ie:return n=e.displayName||null,n!==null?n:xe(e.type)||"Memo";case X:n=e._payload,e=e._init;try{return xe(e(n))}catch{}}return null}var Te=Array.isArray,Y=t.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,ae=r.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,de={pending:!1,data:null,method:null,action:null},Oe=[],oe=-1;function je(e){return{current:e}}function Se(e){0>oe||(e.current=Oe[oe],Oe[oe]=null,oe--)}function Ne(e,n){oe++,Oe[oe]=e.current,e.current=n}var We=je(null),Ae=je(null),ct=je(null),At=je(null);function qt(e,n){switch(Ne(ct,n),Ne(Ae,e),Ne(We,null),n.nodeType){case 9:case 11:e=(e=n.documentElement)&&(e=e.namespaceURI)?oy(e):0;break;default:if(e=n.tagName,n=n.namespaceURI)n=oy(n),e=ly(n,e);else switch(e){case"svg":e=1;break;case"math":e=2;break;default:e=0}}Se(We),Ne(We,e)}function ke(){Se(We),Se(Ae),Se(ct)}function Bt(e){e.memoizedState!==null&&Ne(At,e);var n=We.current,a=ly(n,e.type);n!==a&&(Ne(Ae,e),Ne(We,a))}function di(e){Ae.current===e&&(Se(We),Se(Ae)),At.current===e&&(Se(At),za._currentValue=de)}var Gi,mi;function bn(e){if(Gi===void 0)try{throw Error()}catch(a){var n=a.stack.trim().match(/\n( *(at )?)/);Gi=n&&n[1]||"",mi=-1<a.stack.indexOf(`
|
|
19
19
|
at`)?" (<anonymous>)":-1<a.stack.indexOf("@")?"@unknown:0:0":""}return`
|
|
20
20
|
`+Gi+e+mi}var Fi=!1;function Ar(e,n){if(!e||Fi)return"";Fi=!0;var a=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var o={DetermineComponentFrameRoot:function(){try{if(n){var ne=function(){throw Error()};if(Object.defineProperty(ne.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(ne,[])}catch(K){var F=K}Reflect.construct(e,[],ne)}else{try{ne.call()}catch(K){F=K}e.call(ne.prototype)}}else{try{throw Error()}catch(K){F=K}(ne=e())&&typeof ne.catch=="function"&&ne.catch(function(){})}}catch(K){if(K&&F&&typeof K.stack=="string")return[K.stack,F.stack]}return[null,null]}};o.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var u=Object.getOwnPropertyDescriptor(o.DetermineComponentFrameRoot,"name");u&&u.configurable&&Object.defineProperty(o.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var h=o.DetermineComponentFrameRoot(),x=h[0],E=h[1];if(x&&E){var R=x.split(`
|
|
21
21
|
`),H=E.split(`
|
|
22
22
|
`);for(u=o=0;o<R.length&&!R[o].includes("DetermineComponentFrameRoot");)o++;for(;u<H.length&&!H[u].includes("DetermineComponentFrameRoot");)u++;if(o===R.length||u===H.length)for(o=R.length-1,u=H.length-1;1<=o&&0<=u&&R[o]!==H[u];)u--;for(;1<=o&&0<=u;o--,u--)if(R[o]!==H[u]){if(o!==1||u!==1)do if(o--,u--,0>u||R[o]!==H[u]){var Q=`
|
|
23
23
|
`+R[o].replace(" at new "," at ");return e.displayName&&Q.includes("<anonymous>")&&(Q=Q.replace("<anonymous>",e.displayName)),Q}while(1<=o&&0<=u);break}}}finally{Fi=!1,Error.prepareStackTrace=a}return(a=e?e.displayName||e.name:"")?bn(a):""}function Eo(e,n){switch(e.tag){case 26:case 27:case 5:return bn(e.type);case 16:return bn("Lazy");case 13:return e.child!==n&&n!==null?bn("Suspense Fallback"):bn("Suspense");case 19:return bn("SuspenseList");case 0:case 15:return Ar(e.type,!1);case 11:return Ar(e.type.render,!1);case 1:return Ar(e.type,!0);case 31:return bn("Activity");default:return""}}function Oo(e){try{var n="",a=null;do n+=Eo(e,a),a=e,e=e.return;while(e);return n}catch(o){return`
|
|
24
24
|
Error generating stack: `+o.message+`
|
|
25
|
-
`+o.stack}}var Js=Object.prototype.hasOwnProperty,Qs=i.unstable_scheduleCallback,er=i.unstable_cancelCallback,Ao=i.unstable_shouldYield,Vi=i.unstable_requestPaint,it=i.unstable_now,vu=i.unstable_getCurrentPriorityLevel,jo=i.unstable_ImmediatePriority,No=i.unstable_UserBlockingPriority,Yi=i.unstable_NormalPriority,xu=i.unstable_LowPriority,To=i.unstable_IdlePriority,_u=i.log,ko=i.unstable_setDisableYieldValue,pi=null,pt=null;function Zt(e){if(typeof _u=="function"&&ko(e),pt&&typeof pt.setStrictMode=="function")try{pt.setStrictMode(pi,e)}catch{}}var Lt=Math.clz32?Math.clz32:Ki,Zs=Math.log,Ws=Math.LN2;function Ki(e){return e>>>=0,e===0?32:31-(Zs(e)/Ws|0)|0}var jr=256,tr=262144,Nr=4194304;function Mn(e){var n=e&42;if(n!==0)return n;switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return e}}function gi(e,n,a){var o=e.pendingLanes;if(o===0)return 0;var u=0,h=e.suspendedLanes,x=e.pingedLanes;e=e.warmLanes;var E=o&134217727;return E!==0?(o=E&~h,o!==0?u=Mn(o):(x&=E,x!==0?u=Mn(x):a||(a=E&~e,a!==0&&(u=Mn(a))))):(E=o&~h,E!==0?u=Mn(E):x!==0?u=Mn(x):a||(a=o&~e,a!==0&&(u=Mn(a)))),u===0?0:n!==0&&n!==u&&(n&h)===0&&(h=u&-u,a=n&-n,h>=a||h===32&&(a&4194048)!==0)?n:u}function yi(e,n){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&n)===0}function ea(e,n){switch(e){case 1:case 2:case 4:case 8:case 64:return n+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return n+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Xi(){var e=Nr;return Nr<<=1,(Nr&62914560)===0&&(Nr=4194304),e}function Tr(e){for(var n=[],a=0;31>a;a++)n.push(e);return n}function Rn(e,n){e.pendingLanes|=n,n!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function kr(e,n,a,o,u,h){var x=e.pendingLanes;e.pendingLanes=a,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=a,e.entangledLanes&=a,e.errorRecoveryDisabledLanes&=a,e.shellSuspendCounter=0;var E=e.entanglements,R=e.expirationTimes,H=e.hiddenUpdates;for(a=x&~a;0<a;){var Q=31-Lt(a),ne=1<<Q;E[Q]=0,R[Q]=-1;var F=H[Q];if(F!==null)for(H[Q]=null,Q=0;Q<F.length;Q++){var K=F[Q];K!==null&&(K.lane&=-536870913)}a&=~ne}o!==0&&Cr(e,o,0),h!==0&&u===0&&e.tag!==0&&(e.suspendedLanes|=h&~(x&~n))}function Cr(e,n,a){e.pendingLanes|=n,e.suspendedLanes&=~n;var o=31-Lt(n);e.entangledLanes|=n,e.entanglements[o]=e.entanglements[o]|1073741824|a&261930}function bi(e,n){var a=e.entangledLanes|=n;for(e=e.entanglements;a;){var o=31-Lt(a),u=1<<o;u&n|e[o]&n&&(e[o]|=n),a&=~u}}function Mr(e,n){var a=n&-n;return a=(a&42)!==0?1:nr(a),(a&(e.suspendedLanes|n))!==0?0:a}function nr(e){switch(e){case 2:e=1;break;case 8:e=4;break;case 32:e=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:e=128;break;case 268435456:e=134217728;break;default:e=0}return e}function vi(e){return e&=-e,2<e?8<e?(e&134217727)!==0?32:268435456:8:2}function ta(){var e=ae.p;return e!==0?e:(e=window.event,e===void 0?32:Cg(e.type))}function Co(e,n){var a=ae.p;try{return ae.p=e,n()}finally{ae.p=a}}var Gn=Math.random().toString(36).slice(2),Qe="__reactFiber$"+Gn,ct="__reactProps$"+Gn,Wt="__reactContainer$"+Gn,xi="__reactEvents$"+Gn,na="__reactListeners$"+Gn,Mo="__reactHandles$"+Gn,Ro="__reactResources$"+Gn,Et="__reactMarker$"+Gn;function Ji(e){delete e[Qe],delete e[ct],delete e[xi],delete e[na],delete e[Mo]}function O(e){var n=e[Qe];if(n)return n;for(var a=e.parentNode;a;){if(n=a[Wt]||a[Qe]){if(a=n.alternate,n.child!==null||a!==null&&a.child!==null)for(e=pg(e);e!==null;){if(a=e[Qe])return a;e=pg(e)}return n}e=a,a=e.parentNode}return null}function T(e){if(e=e[Qe]||e[Wt]){var n=e.tag;if(n===5||n===6||n===13||n===31||n===26||n===27||n===3)return e}return null}function N(e){var n=e.tag;if(n===5||n===26||n===27||n===6)return e.stateNode;throw Error(s(33))}function k(e){var n=e[Ro];return n||(n=e[Ro]={hoistableStyles:new Map,hoistableScripts:new Map}),n}function D(e){e[Et]=!0}var I=new Set,te={};function se(e,n){V(e,n),V(e+"Capture",n)}function V(e,n){for(te[e]=n,e=0;e<n.length;e++)I.add(n[e])}var ee=RegExp("^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),pe={},Re={};function et(e){return Js.call(Re,e)?!0:Js.call(pe,e)?!1:ee.test(e)?Re[e]=!0:(pe[e]=!0,!1)}function Pt(e,n,a){if(et(n))if(a===null)e.removeAttribute(n);else{switch(typeof a){case"undefined":case"function":case"symbol":e.removeAttribute(n);return;case"boolean":var o=n.toLowerCase().slice(0,5);if(o!=="data-"&&o!=="aria-"){e.removeAttribute(n);return}}e.setAttribute(n,""+a)}}function Dn(e,n,a){if(a===null)e.removeAttribute(n);else{switch(typeof a){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(n);return}e.setAttribute(n,""+a)}}function rr(e,n,a,o){if(o===null)e.removeAttribute(a);else{switch(typeof o){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(a);return}e.setAttributeNS(n,a,""+o)}}function vn(e){switch(typeof e){case"bigint":case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function Wd(e){var n=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(n==="checkbox"||n==="radio")}function Kv(e,n,a){var o=Object.getOwnPropertyDescriptor(e.constructor.prototype,n);if(!e.hasOwnProperty(n)&&typeof o<"u"&&typeof o.get=="function"&&typeof o.set=="function"){var u=o.get,h=o.set;return Object.defineProperty(e,n,{configurable:!0,get:function(){return u.call(this)},set:function(x){a=""+x,h.call(this,x)}}),Object.defineProperty(e,n,{enumerable:o.enumerable}),{getValue:function(){return a},setValue:function(x){a=""+x},stopTracking:function(){e._valueTracker=null,delete e[n]}}}}function wu(e){if(!e._valueTracker){var n=Wd(e)?"checked":"value";e._valueTracker=Kv(e,n,""+e[n])}}function em(e){if(!e)return!1;var n=e._valueTracker;if(!n)return!0;var a=n.getValue(),o="";return e&&(o=Wd(e)?e.checked?"true":"false":e.value),e=o,e!==a?(n.setValue(e),!0):!1}function Do(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}var Xv=/[\n"\\]/g;function xn(e){return e.replace(Xv,function(n){return"\\"+n.charCodeAt(0).toString(16)+" "})}function Su(e,n,a,o,u,h,x,E){e.name="",x!=null&&typeof x!="function"&&typeof x!="symbol"&&typeof x!="boolean"?e.type=x:e.removeAttribute("type"),n!=null?x==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+vn(n)):e.value!==""+vn(n)&&(e.value=""+vn(n)):x!=="submit"&&x!=="reset"||e.removeAttribute("value"),n!=null?Eu(e,x,vn(n)):a!=null?Eu(e,x,vn(a)):o!=null&&e.removeAttribute("value"),u==null&&h!=null&&(e.defaultChecked=!!h),u!=null&&(e.checked=u&&typeof u!="function"&&typeof u!="symbol"),E!=null&&typeof E!="function"&&typeof E!="symbol"&&typeof E!="boolean"?e.name=""+vn(E):e.removeAttribute("name")}function tm(e,n,a,o,u,h,x,E){if(h!=null&&typeof h!="function"&&typeof h!="symbol"&&typeof h!="boolean"&&(e.type=h),n!=null||a!=null){if(!(h!=="submit"&&h!=="reset"||n!=null)){wu(e);return}a=a!=null?""+vn(a):"",n=n!=null?""+vn(n):a,E||n===e.value||(e.value=n),e.defaultValue=n}o=o??u,o=typeof o!="function"&&typeof o!="symbol"&&!!o,e.checked=E?e.checked:!!o,e.defaultChecked=!!o,x!=null&&typeof x!="function"&&typeof x!="symbol"&&typeof x!="boolean"&&(e.name=x),wu(e)}function Eu(e,n,a){n==="number"&&Do(e.ownerDocument)===e||e.defaultValue===""+a||(e.defaultValue=""+a)}function Qi(e,n,a,o){if(e=e.options,n){n={};for(var u=0;u<a.length;u++)n["$"+a[u]]=!0;for(a=0;a<e.length;a++)u=n.hasOwnProperty("$"+e[a].value),e[a].selected!==u&&(e[a].selected=u),u&&o&&(e[a].defaultSelected=!0)}else{for(a=""+vn(a),n=null,u=0;u<e.length;u++){if(e[u].value===a){e[u].selected=!0,o&&(e[u].defaultSelected=!0);return}n!==null||e[u].disabled||(n=e[u])}n!==null&&(n.selected=!0)}}function nm(e,n,a){if(n!=null&&(n=""+vn(n),n!==e.value&&(e.value=n),a==null)){e.defaultValue!==n&&(e.defaultValue=n);return}e.defaultValue=a!=null?""+vn(a):""}function rm(e,n,a,o){if(n==null){if(o!=null){if(a!=null)throw Error(s(92));if(Ne(o)){if(1<o.length)throw Error(s(93));o=o[0]}a=o}a==null&&(a=""),n=a}a=vn(n),e.defaultValue=a,o=e.textContent,o===a&&o!==""&&o!==null&&(e.value=o),wu(e)}function Zi(e,n){if(n){var a=e.firstChild;if(a&&a===e.lastChild&&a.nodeType===3){a.nodeValue=n;return}}e.textContent=n}var Jv=new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" "));function im(e,n,a){var o=n.indexOf("--")===0;a==null||typeof a=="boolean"||a===""?o?e.setProperty(n,""):n==="float"?e.cssFloat="":e[n]="":o?e.setProperty(n,a):typeof a!="number"||a===0||Jv.has(n)?n==="float"?e.cssFloat=a:e[n]=(""+a).trim():e[n]=a+"px"}function sm(e,n,a){if(n!=null&&typeof n!="object")throw Error(s(62));if(e=e.style,a!=null){for(var o in a)!a.hasOwnProperty(o)||n!=null&&n.hasOwnProperty(o)||(o.indexOf("--")===0?e.setProperty(o,""):o==="float"?e.cssFloat="":e[o]="");for(var u in n)o=n[u],n.hasOwnProperty(u)&&a[u]!==o&&im(e,u,o)}else for(var h in n)n.hasOwnProperty(h)&&im(e,h,n[h])}function Ou(e){if(e.indexOf("-")===-1)return!1;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var Qv=new Map([["acceptCharset","accept-charset"],["htmlFor","for"],["httpEquiv","http-equiv"],["crossOrigin","crossorigin"],["accentHeight","accent-height"],["alignmentBaseline","alignment-baseline"],["arabicForm","arabic-form"],["baselineShift","baseline-shift"],["capHeight","cap-height"],["clipPath","clip-path"],["clipRule","clip-rule"],["colorInterpolation","color-interpolation"],["colorInterpolationFilters","color-interpolation-filters"],["colorProfile","color-profile"],["colorRendering","color-rendering"],["dominantBaseline","dominant-baseline"],["enableBackground","enable-background"],["fillOpacity","fill-opacity"],["fillRule","fill-rule"],["floodColor","flood-color"],["floodOpacity","flood-opacity"],["fontFamily","font-family"],["fontSize","font-size"],["fontSizeAdjust","font-size-adjust"],["fontStretch","font-stretch"],["fontStyle","font-style"],["fontVariant","font-variant"],["fontWeight","font-weight"],["glyphName","glyph-name"],["glyphOrientationHorizontal","glyph-orientation-horizontal"],["glyphOrientationVertical","glyph-orientation-vertical"],["horizAdvX","horiz-adv-x"],["horizOriginX","horiz-origin-x"],["imageRendering","image-rendering"],["letterSpacing","letter-spacing"],["lightingColor","lighting-color"],["markerEnd","marker-end"],["markerMid","marker-mid"],["markerStart","marker-start"],["overlinePosition","overline-position"],["overlineThickness","overline-thickness"],["paintOrder","paint-order"],["panose-1","panose-1"],["pointerEvents","pointer-events"],["renderingIntent","rendering-intent"],["shapeRendering","shape-rendering"],["stopColor","stop-color"],["stopOpacity","stop-opacity"],["strikethroughPosition","strikethrough-position"],["strikethroughThickness","strikethrough-thickness"],["strokeDasharray","stroke-dasharray"],["strokeDashoffset","stroke-dashoffset"],["strokeLinecap","stroke-linecap"],["strokeLinejoin","stroke-linejoin"],["strokeMiterlimit","stroke-miterlimit"],["strokeOpacity","stroke-opacity"],["strokeWidth","stroke-width"],["textAnchor","text-anchor"],["textDecoration","text-decoration"],["textRendering","text-rendering"],["transformOrigin","transform-origin"],["underlinePosition","underline-position"],["underlineThickness","underline-thickness"],["unicodeBidi","unicode-bidi"],["unicodeRange","unicode-range"],["unitsPerEm","units-per-em"],["vAlphabetic","v-alphabetic"],["vHanging","v-hanging"],["vIdeographic","v-ideographic"],["vMathematical","v-mathematical"],["vectorEffect","vector-effect"],["vertAdvY","vert-adv-y"],["vertOriginX","vert-origin-x"],["vertOriginY","vert-origin-y"],["wordSpacing","word-spacing"],["writingMode","writing-mode"],["xmlnsXlink","xmlns:xlink"],["xHeight","x-height"]]),Zv=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function qo(e){return Zv.test(""+e)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":e}function ir(){}var Au=null;function ju(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var Wi=null,es=null;function am(e){var n=T(e);if(n&&(e=n.stateNode)){var a=e[ct]||null;e:switch(e=n.stateNode,n.type){case"input":if(Su(e,a.value,a.defaultValue,a.defaultValue,a.checked,a.defaultChecked,a.type,a.name),n=a.name,a.type==="radio"&&n!=null){for(a=e;a.parentNode;)a=a.parentNode;for(a=a.querySelectorAll('input[name="'+xn(""+n)+'"][type="radio"]'),n=0;n<a.length;n++){var o=a[n];if(o!==e&&o.form===e.form){var u=o[ct]||null;if(!u)throw Error(s(90));Su(o,u.value,u.defaultValue,u.defaultValue,u.checked,u.defaultChecked,u.type,u.name)}}for(n=0;n<a.length;n++)o=a[n],o.form===e.form&&em(o)}break e;case"textarea":nm(e,a.value,a.defaultValue);break e;case"select":n=a.value,n!=null&&Qi(e,!!a.multiple,n,!1)}}}var Nu=!1;function om(e,n,a){if(Nu)return e(n,a);Nu=!0;try{var o=e(n);return o}finally{if(Nu=!1,(Wi!==null||es!==null)&&(wl(),Wi&&(n=Wi,e=es,es=Wi=null,am(n),e)))for(n=0;n<e.length;n++)am(e[n])}}function ra(e,n){var a=e.stateNode;if(a===null)return null;var o=a[ct]||null;if(o===null)return null;a=o[n];e:switch(n){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(o=!o.disabled)||(e=e.type,o=!(e==="button"||e==="input"||e==="select"||e==="textarea")),e=!o;break e;default:e=!1}if(e)return null;if(a&&typeof a!="function")throw Error(s(231,n,typeof a));return a}var sr=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Tu=!1;if(sr)try{var ia={};Object.defineProperty(ia,"passive",{get:function(){Tu=!0}}),window.addEventListener("test",ia,ia),window.removeEventListener("test",ia,ia)}catch{Tu=!1}var Rr=null,ku=null,Bo=null;function lm(){if(Bo)return Bo;var e,n=ku,a=n.length,o,u="value"in Rr?Rr.value:Rr.textContent,h=u.length;for(e=0;e<a&&n[e]===u[e];e++);var x=a-e;for(o=1;o<=x&&n[a-o]===u[h-o];o++);return Bo=u.slice(e,1<o?1-o:void 0)}function Lo(e){var n=e.keyCode;return"charCode"in e?(e=e.charCode,e===0&&n===13&&(e=13)):e=n,e===10&&(e=13),32<=e||e===13?e:0}function Po(){return!0}function cm(){return!1}function Vt(e){function n(a,o,u,h,x){this._reactName=a,this._targetInst=u,this.type=o,this.nativeEvent=h,this.target=x,this.currentTarget=null;for(var E in e)e.hasOwnProperty(E)&&(a=e[E],this[E]=a?a(h):h[E]);return this.isDefaultPrevented=(h.defaultPrevented!=null?h.defaultPrevented:h.returnValue===!1)?Po:cm,this.isPropagationStopped=cm,this}return b(n.prototype,{preventDefault:function(){this.defaultPrevented=!0;var a=this.nativeEvent;a&&(a.preventDefault?a.preventDefault():typeof a.returnValue!="unknown"&&(a.returnValue=!1),this.isDefaultPrevented=Po)},stopPropagation:function(){var a=this.nativeEvent;a&&(a.stopPropagation?a.stopPropagation():typeof a.cancelBubble!="unknown"&&(a.cancelBubble=!0),this.isPropagationStopped=Po)},persist:function(){},isPersistent:Po}),n}var _i={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Uo=Vt(_i),sa=b({},_i,{view:0,detail:0}),Wv=Vt(sa),Cu,Mu,aa,zo=b({},sa,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Du,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==aa&&(aa&&e.type==="mousemove"?(Cu=e.screenX-aa.screenX,Mu=e.screenY-aa.screenY):Mu=Cu=0,aa=e),Cu)},movementY:function(e){return"movementY"in e?e.movementY:Mu}}),um=Vt(zo),ex=b({},zo,{dataTransfer:0}),tx=Vt(ex),nx=b({},sa,{relatedTarget:0}),Ru=Vt(nx),rx=b({},_i,{animationName:0,elapsedTime:0,pseudoElement:0}),ix=Vt(rx),sx=b({},_i,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),ax=Vt(sx),ox=b({},_i,{data:0}),fm=Vt(ox),lx={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},cx={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},ux={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function fx(e){var n=this.nativeEvent;return n.getModifierState?n.getModifierState(e):(e=ux[e])?!!n[e]:!1}function Du(){return fx}var hx=b({},sa,{key:function(e){if(e.key){var n=lx[e.key]||e.key;if(n!=="Unidentified")return n}return e.type==="keypress"?(e=Lo(e),e===13?"Enter":String.fromCharCode(e)):e.type==="keydown"||e.type==="keyup"?cx[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Du,charCode:function(e){return e.type==="keypress"?Lo(e):0},keyCode:function(e){return e.type==="keydown"||e.type==="keyup"?e.keyCode:0},which:function(e){return e.type==="keypress"?Lo(e):e.type==="keydown"||e.type==="keyup"?e.keyCode:0}}),dx=Vt(hx),mx=b({},zo,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),hm=Vt(mx),px=b({},sa,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Du}),gx=Vt(px),yx=b({},_i,{propertyName:0,elapsedTime:0,pseudoElement:0}),bx=Vt(yx),vx=b({},zo,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),xx=Vt(vx),_x=b({},_i,{newState:0,oldState:0}),wx=Vt(_x),Sx=[9,13,27,32],qu=sr&&"CompositionEvent"in window,oa=null;sr&&"documentMode"in document&&(oa=document.documentMode);var Ex=sr&&"TextEvent"in window&&!oa,dm=sr&&(!qu||oa&&8<oa&&11>=oa),mm=" ",pm=!1;function gm(e,n){switch(e){case"keyup":return Sx.indexOf(n.keyCode)!==-1;case"keydown":return n.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function ym(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var ts=!1;function Ox(e,n){switch(e){case"compositionend":return ym(n);case"keypress":return n.which!==32?null:(pm=!0,mm);case"textInput":return e=n.data,e===mm&&pm?null:e;default:return null}}function Ax(e,n){if(ts)return e==="compositionend"||!qu&&gm(e,n)?(e=lm(),Bo=ku=Rr=null,ts=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(n.ctrlKey||n.altKey||n.metaKey)||n.ctrlKey&&n.altKey){if(n.char&&1<n.char.length)return n.char;if(n.which)return String.fromCharCode(n.which)}return null;case"compositionend":return dm&&n.locale!=="ko"?null:n.data;default:return null}}var jx={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function bm(e){var n=e&&e.nodeName&&e.nodeName.toLowerCase();return n==="input"?!!jx[e.type]:n==="textarea"}function vm(e,n,a,o){Wi?es?es.push(o):es=[o]:Wi=o,n=Tl(n,"onChange"),0<n.length&&(a=new Uo("onChange","change",null,a,o),e.push({event:a,listeners:n}))}var la=null,ca=null;function Nx(e){tg(e,0)}function Io(e){var n=N(e);if(em(n))return e}function xm(e,n){if(e==="change")return n}var _m=!1;if(sr){var Bu;if(sr){var Lu="oninput"in document;if(!Lu){var wm=document.createElement("div");wm.setAttribute("oninput","return;"),Lu=typeof wm.oninput=="function"}Bu=Lu}else Bu=!1;_m=Bu&&(!document.documentMode||9<document.documentMode)}function Sm(){la&&(la.detachEvent("onpropertychange",Em),ca=la=null)}function Em(e){if(e.propertyName==="value"&&Io(ca)){var n=[];vm(n,ca,e,ju(e)),om(Nx,n)}}function Tx(e,n,a){e==="focusin"?(Sm(),la=n,ca=a,la.attachEvent("onpropertychange",Em)):e==="focusout"&&Sm()}function kx(e){if(e==="selectionchange"||e==="keyup"||e==="keydown")return Io(ca)}function Cx(e,n){if(e==="click")return Io(n)}function Mx(e,n){if(e==="input"||e==="change")return Io(n)}function Rx(e,n){return e===n&&(e!==0||1/e===1/n)||e!==e&&n!==n}var en=typeof Object.is=="function"?Object.is:Rx;function ua(e,n){if(en(e,n))return!0;if(typeof e!="object"||e===null||typeof n!="object"||n===null)return!1;var a=Object.keys(e),o=Object.keys(n);if(a.length!==o.length)return!1;for(o=0;o<a.length;o++){var u=a[o];if(!Js.call(n,u)||!en(e[u],n[u]))return!1}return!0}function Om(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function Am(e,n){var a=Om(e);e=0;for(var o;a;){if(a.nodeType===3){if(o=e+a.textContent.length,e<=n&&o>=n)return{node:a,offset:n-e};e=o}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=Om(a)}}function jm(e,n){return e&&n?e===n?!0:e&&e.nodeType===3?!1:n&&n.nodeType===3?jm(e,n.parentNode):"contains"in e?e.contains(n):e.compareDocumentPosition?!!(e.compareDocumentPosition(n)&16):!1:!1}function Nm(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var n=Do(e.document);n instanceof e.HTMLIFrameElement;){try{var a=typeof n.contentWindow.location.href=="string"}catch{a=!1}if(a)e=n.contentWindow;else break;n=Do(e.document)}return n}function Pu(e){var n=e&&e.nodeName&&e.nodeName.toLowerCase();return n&&(n==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||n==="textarea"||e.contentEditable==="true")}var Dx=sr&&"documentMode"in document&&11>=document.documentMode,ns=null,Uu=null,fa=null,zu=!1;function Tm(e,n,a){var o=a.window===a?a.document:a.nodeType===9?a:a.ownerDocument;zu||ns==null||ns!==Do(o)||(o=ns,"selectionStart"in o&&Pu(o)?o={start:o.selectionStart,end:o.selectionEnd}:(o=(o.ownerDocument&&o.ownerDocument.defaultView||window).getSelection(),o={anchorNode:o.anchorNode,anchorOffset:o.anchorOffset,focusNode:o.focusNode,focusOffset:o.focusOffset}),fa&&ua(fa,o)||(fa=o,o=Tl(Uu,"onSelect"),0<o.length&&(n=new Uo("onSelect","select",null,n,a),e.push({event:n,listeners:o}),n.target=ns)))}function wi(e,n){var a={};return a[e.toLowerCase()]=n.toLowerCase(),a["Webkit"+e]="webkit"+n,a["Moz"+e]="moz"+n,a}var rs={animationend:wi("Animation","AnimationEnd"),animationiteration:wi("Animation","AnimationIteration"),animationstart:wi("Animation","AnimationStart"),transitionrun:wi("Transition","TransitionRun"),transitionstart:wi("Transition","TransitionStart"),transitioncancel:wi("Transition","TransitionCancel"),transitionend:wi("Transition","TransitionEnd")},Iu={},km={};sr&&(km=document.createElement("div").style,"AnimationEvent"in window||(delete rs.animationend.animation,delete rs.animationiteration.animation,delete rs.animationstart.animation),"TransitionEvent"in window||delete rs.transitionend.transition);function Si(e){if(Iu[e])return Iu[e];if(!rs[e])return e;var n=rs[e],a;for(a in n)if(n.hasOwnProperty(a)&&a in km)return Iu[e]=n[a];return e}var Cm=Si("animationend"),Mm=Si("animationiteration"),Rm=Si("animationstart"),qx=Si("transitionrun"),Bx=Si("transitionstart"),Lx=Si("transitioncancel"),Dm=Si("transitionend"),qm=new Map,$u="abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");$u.push("scrollEnd");function qn(e,n){qm.set(e,n),se(n,[e])}var $o=typeof reportError=="function"?reportError:function(e){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var n=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof e=="object"&&e!==null&&typeof e.message=="string"?String(e.message):String(e),error:e});if(!window.dispatchEvent(n))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",e);return}console.error(e)},_n=[],is=0,Hu=0;function Ho(){for(var e=is,n=Hu=is=0;n<e;){var a=_n[n];_n[n++]=null;var o=_n[n];_n[n++]=null;var u=_n[n];_n[n++]=null;var h=_n[n];if(_n[n++]=null,o!==null&&u!==null){var x=o.pending;x===null?u.next=u:(u.next=x.next,x.next=u),o.pending=u}h!==0&&Bm(a,u,h)}}function Go(e,n,a,o){_n[is++]=e,_n[is++]=n,_n[is++]=a,_n[is++]=o,Hu|=o,e.lanes|=o,e=e.alternate,e!==null&&(e.lanes|=o)}function Gu(e,n,a,o){return Go(e,n,a,o),Fo(e)}function Ei(e,n){return Go(e,null,null,n),Fo(e)}function Bm(e,n,a){e.lanes|=a;var o=e.alternate;o!==null&&(o.lanes|=a);for(var u=!1,h=e.return;h!==null;)h.childLanes|=a,o=h.alternate,o!==null&&(o.childLanes|=a),h.tag===22&&(e=h.stateNode,e===null||e._visibility&1||(u=!0)),e=h,h=h.return;return e.tag===3?(h=e.stateNode,u&&n!==null&&(u=31-Lt(a),e=h.hiddenUpdates,o=e[u],o===null?e[u]=[n]:o.push(n),n.lane=a|536870912),h):null}function Fo(e){if(50<Ra)throw Ra=0,eh=null,Error(s(185));for(var n=e.return;n!==null;)e=n,n=e.return;return e.tag===3?e.stateNode:null}var ss={};function Px(e,n,a,o){this.tag=e,this.key=a,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=n,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=o,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function tn(e,n,a,o){return new Px(e,n,a,o)}function Fu(e){return e=e.prototype,!(!e||!e.isReactComponent)}function ar(e,n){var a=e.alternate;return a===null?(a=tn(e.tag,n,e.key,e.mode),a.elementType=e.elementType,a.type=e.type,a.stateNode=e.stateNode,a.alternate=e,e.alternate=a):(a.pendingProps=n,a.type=e.type,a.flags=0,a.subtreeFlags=0,a.deletions=null),a.flags=e.flags&65011712,a.childLanes=e.childLanes,a.lanes=e.lanes,a.child=e.child,a.memoizedProps=e.memoizedProps,a.memoizedState=e.memoizedState,a.updateQueue=e.updateQueue,n=e.dependencies,a.dependencies=n===null?null:{lanes:n.lanes,firstContext:n.firstContext},a.sibling=e.sibling,a.index=e.index,a.ref=e.ref,a.refCleanup=e.refCleanup,a}function Lm(e,n){e.flags&=65011714;var a=e.alternate;return a===null?(e.childLanes=0,e.lanes=n,e.child=null,e.subtreeFlags=0,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null):(e.childLanes=a.childLanes,e.lanes=a.lanes,e.child=a.child,e.subtreeFlags=0,e.deletions=null,e.memoizedProps=a.memoizedProps,e.memoizedState=a.memoizedState,e.updateQueue=a.updateQueue,e.type=a.type,n=a.dependencies,e.dependencies=n===null?null:{lanes:n.lanes,firstContext:n.firstContext}),e}function Vo(e,n,a,o,u,h){var x=0;if(o=e,typeof e=="function")Fu(e)&&(x=1);else if(typeof e=="string")x=H_(e,a,We.current)?26:e==="html"||e==="head"||e==="body"?27:5;else e:switch(e){case L:return e=tn(31,a,n,u),e.elementType=L,e.lanes=h,e;case S:return Oi(a.children,u,h,n);case M:x=8,u|=24;break;case B:return e=tn(12,a,n,u|2),e.elementType=B,e.lanes=h,e;case C:return e=tn(13,a,n,u),e.elementType=C,e.lanes=h,e;case P:return e=tn(19,a,n,u),e.elementType=P,e.lanes=h,e;default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case re:x=10;break e;case U:x=9;break e;case ce:x=11;break e;case ie:x=14;break e;case X:x=16,o=null;break e}x=29,a=Error(s(130,e===null?"null":typeof e,"")),o=null}return n=tn(x,a,n,u),n.elementType=e,n.type=o,n.lanes=h,n}function Oi(e,n,a,o){return e=tn(7,e,o,n),e.lanes=a,e}function Vu(e,n,a){return e=tn(6,e,null,n),e.lanes=a,e}function Pm(e){var n=tn(18,null,null,0);return n.stateNode=e,n}function Yu(e,n,a){return n=tn(4,e.children!==null?e.children:[],e.key,n),n.lanes=a,n.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},n}var Um=new WeakMap;function wn(e,n){if(typeof e=="object"&&e!==null){var a=Um.get(e);return a!==void 0?a:(n={value:e,source:n,stack:Oo(n)},Um.set(e,n),n)}return{value:e,source:n,stack:Oo(n)}}var as=[],os=0,Yo=null,ha=0,Sn=[],En=0,Dr=null,Fn=1,Vn="";function or(e,n){as[os++]=ha,as[os++]=Yo,Yo=e,ha=n}function zm(e,n,a){Sn[En++]=Fn,Sn[En++]=Vn,Sn[En++]=Dr,Dr=e;var o=Fn;e=Vn;var u=32-Lt(o)-1;o&=~(1<<u),a+=1;var h=32-Lt(n)+u;if(30<h){var x=u-u%5;h=(o&(1<<x)-1).toString(32),o>>=x,u-=x,Fn=1<<32-Lt(n)+u|a<<u|o,Vn=h+e}else Fn=1<<h|a<<u|o,Vn=e}function Ku(e){e.return!==null&&(or(e,1),zm(e,1,0))}function Xu(e){for(;e===Yo;)Yo=as[--os],as[os]=null,ha=as[--os],as[os]=null;for(;e===Dr;)Dr=Sn[--En],Sn[En]=null,Vn=Sn[--En],Sn[En]=null,Fn=Sn[--En],Sn[En]=null}function Im(e,n){Sn[En++]=Fn,Sn[En++]=Vn,Sn[En++]=Dr,Fn=n.id,Vn=n.overflow,Dr=e}var Ct=null,tt=null,Pe=!1,qr=null,On=!1,Ju=Error(s(519));function Br(e){var n=Error(s(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?"text":"HTML",""));throw da(wn(n,e)),Ju}function $m(e){var n=e.stateNode,a=e.type,o=e.memoizedProps;switch(n[Qe]=e,n[ct]=o,a){case"dialog":qe("cancel",n),qe("close",n);break;case"iframe":case"object":case"embed":qe("load",n);break;case"video":case"audio":for(a=0;a<qa.length;a++)qe(qa[a],n);break;case"source":qe("error",n);break;case"img":case"image":case"link":qe("error",n),qe("load",n);break;case"details":qe("toggle",n);break;case"input":qe("invalid",n),tm(n,o.value,o.defaultValue,o.checked,o.defaultChecked,o.type,o.name,!0);break;case"select":qe("invalid",n);break;case"textarea":qe("invalid",n),rm(n,o.value,o.defaultValue,o.children)}a=o.children,typeof a!="string"&&typeof a!="number"&&typeof a!="bigint"||n.textContent===""+a||o.suppressHydrationWarning===!0||sg(n.textContent,a)?(o.popover!=null&&(qe("beforetoggle",n),qe("toggle",n)),o.onScroll!=null&&qe("scroll",n),o.onScrollEnd!=null&&qe("scrollend",n),o.onClick!=null&&(n.onclick=ir),n=!0):n=!1,n||Br(e,!0)}function Hm(e){for(Ct=e.return;Ct;)switch(Ct.tag){case 5:case 31:case 13:On=!1;return;case 27:case 3:On=!0;return;default:Ct=Ct.return}}function ls(e){if(e!==Ct)return!1;if(!Pe)return Hm(e),Pe=!0,!1;var n=e.tag,a;if((a=n!==3&&n!==27)&&((a=n===5)&&(a=e.type,a=!(a!=="form"&&a!=="button")||ph(e.type,e.memoizedProps)),a=!a),a&&tt&&Br(e),Hm(e),n===13){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(s(317));tt=mg(e)}else if(n===31){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(s(317));tt=mg(e)}else n===27?(n=tt,Jr(e.type)?(e=xh,xh=null,tt=e):tt=n):tt=Ct?jn(e.stateNode.nextSibling):null;return!0}function Ai(){tt=Ct=null,Pe=!1}function Qu(){var e=qr;return e!==null&&(Jt===null?Jt=e:Jt.push.apply(Jt,e),qr=null),e}function da(e){qr===null?qr=[e]:qr.push(e)}var Zu=je(null),ji=null,lr=null;function Lr(e,n,a){Te(Zu,n._currentValue),n._currentValue=a}function cr(e){e._currentValue=Zu.current,Se(Zu)}function Wu(e,n,a){for(;e!==null;){var o=e.alternate;if((e.childLanes&n)!==n?(e.childLanes|=n,o!==null&&(o.childLanes|=n)):o!==null&&(o.childLanes&n)!==n&&(o.childLanes|=n),e===a)break;e=e.return}}function ef(e,n,a,o){var u=e.child;for(u!==null&&(u.return=e);u!==null;){var h=u.dependencies;if(h!==null){var x=u.child;h=h.firstContext;e:for(;h!==null;){var E=h;h=u;for(var R=0;R<n.length;R++)if(E.context===n[R]){h.lanes|=a,E=h.alternate,E!==null&&(E.lanes|=a),Wu(h.return,a,e),o||(x=null);break e}h=E.next}}else if(u.tag===18){if(x=u.return,x===null)throw Error(s(341));x.lanes|=a,h=x.alternate,h!==null&&(h.lanes|=a),Wu(x,a,e),x=null}else x=u.child;if(x!==null)x.return=u;else for(x=u;x!==null;){if(x===e){x=null;break}if(u=x.sibling,u!==null){u.return=x.return,x=u;break}x=x.return}u=x}}function cs(e,n,a,o){e=null;for(var u=n,h=!1;u!==null;){if(!h){if((u.flags&524288)!==0)h=!0;else if((u.flags&262144)!==0)break}if(u.tag===10){var x=u.alternate;if(x===null)throw Error(s(387));if(x=x.memoizedProps,x!==null){var E=u.type;en(u.pendingProps.value,x.value)||(e!==null?e.push(E):e=[E])}}else if(u===At.current){if(x=u.alternate,x===null)throw Error(s(387));x.memoizedState.memoizedState!==u.memoizedState.memoizedState&&(e!==null?e.push(za):e=[za])}u=u.return}e!==null&&ef(n,e,a,o),n.flags|=262144}function Ko(e){for(e=e.firstContext;e!==null;){if(!en(e.context._currentValue,e.memoizedValue))return!0;e=e.next}return!1}function Ni(e){ji=e,lr=null,e=e.dependencies,e!==null&&(e.firstContext=null)}function Mt(e){return Gm(ji,e)}function Xo(e,n){return ji===null&&Ni(e),Gm(e,n)}function Gm(e,n){var a=n._currentValue;if(n={context:n,memoizedValue:a,next:null},lr===null){if(e===null)throw Error(s(308));lr=n,e.dependencies={lanes:0,firstContext:n},e.flags|=524288}else lr=lr.next=n;return a}var Ux=typeof AbortController<"u"?AbortController:function(){var e=[],n=this.signal={aborted:!1,addEventListener:function(a,o){e.push(o)}};this.abort=function(){n.aborted=!0,e.forEach(function(a){return a()})}},zx=i.unstable_scheduleCallback,Ix=i.unstable_NormalPriority,vt={$$typeof:re,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function tf(){return{controller:new Ux,data:new Map,refCount:0}}function ma(e){e.refCount--,e.refCount===0&&zx(Ix,function(){e.controller.abort()})}var pa=null,nf=0,us=0,fs=null;function $x(e,n){if(pa===null){var a=pa=[];nf=0,us=ah(),fs={status:"pending",value:void 0,then:function(o){a.push(o)}}}return nf++,n.then(Fm,Fm),n}function Fm(){if(--nf===0&&pa!==null){fs!==null&&(fs.status="fulfilled");var e=pa;pa=null,us=0,fs=null;for(var n=0;n<e.length;n++)(0,e[n])()}}function Hx(e,n){var a=[],o={status:"pending",value:null,reason:null,then:function(u){a.push(u)}};return e.then(function(){o.status="fulfilled",o.value=n;for(var u=0;u<a.length;u++)(0,a[u])(n)},function(u){for(o.status="rejected",o.reason=u,u=0;u<a.length;u++)(0,a[u])(void 0)}),o}var Vm=Y.S;Y.S=function(e,n){Tp=it(),typeof n=="object"&&n!==null&&typeof n.then=="function"&&$x(e,n),Vm!==null&&Vm(e,n)};var Ti=je(null);function rf(){var e=Ti.current;return e!==null?e:Ze.pooledCache}function Jo(e,n){n===null?Te(Ti,Ti.current):Te(Ti,n.pool)}function Ym(){var e=rf();return e===null?null:{parent:vt._currentValue,pool:e}}var hs=Error(s(460)),sf=Error(s(474)),Qo=Error(s(542)),Zo={then:function(){}};function Km(e){return e=e.status,e==="fulfilled"||e==="rejected"}function Xm(e,n,a){switch(a=e[a],a===void 0?e.push(n):a!==n&&(n.then(ir,ir),n=a),n.status){case"fulfilled":return n.value;case"rejected":throw e=n.reason,Qm(e),e;default:if(typeof n.status=="string")n.then(ir,ir);else{if(e=Ze,e!==null&&100<e.shellSuspendCounter)throw Error(s(482));e=n,e.status="pending",e.then(function(o){if(n.status==="pending"){var u=n;u.status="fulfilled",u.value=o}},function(o){if(n.status==="pending"){var u=n;u.status="rejected",u.reason=o}})}switch(n.status){case"fulfilled":return n.value;case"rejected":throw e=n.reason,Qm(e),e}throw Ci=n,hs}}function ki(e){try{var n=e._init;return n(e._payload)}catch(a){throw a!==null&&typeof a=="object"&&typeof a.then=="function"?(Ci=a,hs):a}}var Ci=null;function Jm(){if(Ci===null)throw Error(s(459));var e=Ci;return Ci=null,e}function Qm(e){if(e===hs||e===Qo)throw Error(s(483))}var ds=null,ga=0;function Wo(e){var n=ga;return ga+=1,ds===null&&(ds=[]),Xm(ds,e,n)}function ya(e,n){n=n.props.ref,e.ref=n!==void 0?n:null}function el(e,n){throw n.$$typeof===v?Error(s(525)):(e=Object.prototype.toString.call(n),Error(s(31,e==="[object Object]"?"object with keys {"+Object.keys(n).join(", ")+"}":e)))}function Zm(e){function n(z,q){if(e){var $=z.deletions;$===null?(z.deletions=[q],z.flags|=16):$.push(q)}}function a(z,q){if(!e)return null;for(;q!==null;)n(z,q),q=q.sibling;return null}function o(z){for(var q=new Map;z!==null;)z.key!==null?q.set(z.key,z):q.set(z.index,z),z=z.sibling;return q}function u(z,q){return z=ar(z,q),z.index=0,z.sibling=null,z}function h(z,q,$){return z.index=$,e?($=z.alternate,$!==null?($=$.index,$<q?(z.flags|=67108866,q):$):(z.flags|=67108866,q)):(z.flags|=1048576,q)}function x(z){return e&&z.alternate===null&&(z.flags|=67108866),z}function E(z,q,$,Z){return q===null||q.tag!==6?(q=Vu($,z.mode,Z),q.return=z,q):(q=u(q,$),q.return=z,q)}function R(z,q,$,Z){var ve=$.type;return ve===S?Q(z,q,$.props.children,Z,$.key):q!==null&&(q.elementType===ve||typeof ve=="object"&&ve!==null&&ve.$$typeof===X&&ki(ve)===q.type)?(q=u(q,$.props),ya(q,$),q.return=z,q):(q=Vo($.type,$.key,$.props,null,z.mode,Z),ya(q,$),q.return=z,q)}function H(z,q,$,Z){return q===null||q.tag!==4||q.stateNode.containerInfo!==$.containerInfo||q.stateNode.implementation!==$.implementation?(q=Yu($,z.mode,Z),q.return=z,q):(q=u(q,$.children||[]),q.return=z,q)}function Q(z,q,$,Z,ve){return q===null||q.tag!==7?(q=Oi($,z.mode,Z,ve),q.return=z,q):(q=u(q,$),q.return=z,q)}function ne(z,q,$){if(typeof q=="string"&&q!==""||typeof q=="number"||typeof q=="bigint")return q=Vu(""+q,z.mode,$),q.return=z,q;if(typeof q=="object"&&q!==null){switch(q.$$typeof){case _:return $=Vo(q.type,q.key,q.props,null,z.mode,$),ya($,q),$.return=z,$;case w:return q=Yu(q,z.mode,$),q.return=z,q;case X:return q=ki(q),ne(z,q,$)}if(Ne(q)||J(q))return q=Oi(q,z.mode,$,null),q.return=z,q;if(typeof q.then=="function")return ne(z,Wo(q),$);if(q.$$typeof===re)return ne(z,Xo(z,q),$);el(z,q)}return null}function F(z,q,$,Z){var ve=q!==null?q.key:null;if(typeof $=="string"&&$!==""||typeof $=="number"||typeof $=="bigint")return ve!==null?null:E(z,q,""+$,Z);if(typeof $=="object"&&$!==null){switch($.$$typeof){case _:return $.key===ve?R(z,q,$,Z):null;case w:return $.key===ve?H(z,q,$,Z):null;case X:return $=ki($),F(z,q,$,Z)}if(Ne($)||J($))return ve!==null?null:Q(z,q,$,Z,null);if(typeof $.then=="function")return F(z,q,Wo($),Z);if($.$$typeof===re)return F(z,q,Xo(z,$),Z);el(z,$)}return null}function K(z,q,$,Z,ve){if(typeof Z=="string"&&Z!==""||typeof Z=="number"||typeof Z=="bigint")return z=z.get($)||null,E(q,z,""+Z,ve);if(typeof Z=="object"&&Z!==null){switch(Z.$$typeof){case _:return z=z.get(Z.key===null?$:Z.key)||null,R(q,z,Z,ve);case w:return z=z.get(Z.key===null?$:Z.key)||null,H(q,z,Z,ve);case X:return Z=ki(Z),K(z,q,$,Z,ve)}if(Ne(Z)||J(Z))return z=z.get($)||null,Q(q,z,Z,ve,null);if(typeof Z.then=="function")return K(z,q,$,Wo(Z),ve);if(Z.$$typeof===re)return K(z,q,$,Xo(q,Z),ve);el(q,Z)}return null}function ge(z,q,$,Z){for(var ve=null,$e=null,ye=q,Me=q=0,Le=null;ye!==null&&Me<$.length;Me++){ye.index>Me?(Le=ye,ye=null):Le=ye.sibling;var He=F(z,ye,$[Me],Z);if(He===null){ye===null&&(ye=Le);break}e&&ye&&He.alternate===null&&n(z,ye),q=h(He,q,Me),$e===null?ve=He:$e.sibling=He,$e=He,ye=Le}if(Me===$.length)return a(z,ye),Pe&&or(z,Me),ve;if(ye===null){for(;Me<$.length;Me++)ye=ne(z,$[Me],Z),ye!==null&&(q=h(ye,q,Me),$e===null?ve=ye:$e.sibling=ye,$e=ye);return Pe&&or(z,Me),ve}for(ye=o(ye);Me<$.length;Me++)Le=K(ye,z,Me,$[Me],Z),Le!==null&&(e&&Le.alternate!==null&&ye.delete(Le.key===null?Me:Le.key),q=h(Le,q,Me),$e===null?ve=Le:$e.sibling=Le,$e=Le);return e&&ye.forEach(function(ti){return n(z,ti)}),Pe&&or(z,Me),ve}function Ee(z,q,$,Z){if($==null)throw Error(s(151));for(var ve=null,$e=null,ye=q,Me=q=0,Le=null,He=$.next();ye!==null&&!He.done;Me++,He=$.next()){ye.index>Me?(Le=ye,ye=null):Le=ye.sibling;var ti=F(z,ye,He.value,Z);if(ti===null){ye===null&&(ye=Le);break}e&&ye&&ti.alternate===null&&n(z,ye),q=h(ti,q,Me),$e===null?ve=ti:$e.sibling=ti,$e=ti,ye=Le}if(He.done)return a(z,ye),Pe&&or(z,Me),ve;if(ye===null){for(;!He.done;Me++,He=$.next())He=ne(z,He.value,Z),He!==null&&(q=h(He,q,Me),$e===null?ve=He:$e.sibling=He,$e=He);return Pe&&or(z,Me),ve}for(ye=o(ye);!He.done;Me++,He=$.next())He=K(ye,z,Me,He.value,Z),He!==null&&(e&&He.alternate!==null&&ye.delete(He.key===null?Me:He.key),q=h(He,q,Me),$e===null?ve=He:$e.sibling=He,$e=He);return e&&ye.forEach(function(ew){return n(z,ew)}),Pe&&or(z,Me),ve}function Je(z,q,$,Z){if(typeof $=="object"&&$!==null&&$.type===S&&$.key===null&&($=$.props.children),typeof $=="object"&&$!==null){switch($.$$typeof){case _:e:{for(var ve=$.key;q!==null;){if(q.key===ve){if(ve=$.type,ve===S){if(q.tag===7){a(z,q.sibling),Z=u(q,$.props.children),Z.return=z,z=Z;break e}}else if(q.elementType===ve||typeof ve=="object"&&ve!==null&&ve.$$typeof===X&&ki(ve)===q.type){a(z,q.sibling),Z=u(q,$.props),ya(Z,$),Z.return=z,z=Z;break e}a(z,q);break}else n(z,q);q=q.sibling}$.type===S?(Z=Oi($.props.children,z.mode,Z,$.key),Z.return=z,z=Z):(Z=Vo($.type,$.key,$.props,null,z.mode,Z),ya(Z,$),Z.return=z,z=Z)}return x(z);case w:e:{for(ve=$.key;q!==null;){if(q.key===ve)if(q.tag===4&&q.stateNode.containerInfo===$.containerInfo&&q.stateNode.implementation===$.implementation){a(z,q.sibling),Z=u(q,$.children||[]),Z.return=z,z=Z;break e}else{a(z,q);break}else n(z,q);q=q.sibling}Z=Yu($,z.mode,Z),Z.return=z,z=Z}return x(z);case X:return $=ki($),Je(z,q,$,Z)}if(Ne($))return ge(z,q,$,Z);if(J($)){if(ve=J($),typeof ve!="function")throw Error(s(150));return $=ve.call($),Ee(z,q,$,Z)}if(typeof $.then=="function")return Je(z,q,Wo($),Z);if($.$$typeof===re)return Je(z,q,Xo(z,$),Z);el(z,$)}return typeof $=="string"&&$!==""||typeof $=="number"||typeof $=="bigint"?($=""+$,q!==null&&q.tag===6?(a(z,q.sibling),Z=u(q,$),Z.return=z,z=Z):(a(z,q),Z=Vu($,z.mode,Z),Z.return=z,z=Z),x(z)):a(z,q)}return function(z,q,$,Z){try{ga=0;var ve=Je(z,q,$,Z);return ds=null,ve}catch(ye){if(ye===hs||ye===Qo)throw ye;var $e=tn(29,ye,null,z.mode);return $e.lanes=Z,$e.return=z,$e}finally{}}}var Mi=Zm(!0),Wm=Zm(!1),Pr=!1;function af(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function of(e,n){e=e.updateQueue,n.updateQueue===e&&(n.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function Ur(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function zr(e,n,a){var o=e.updateQueue;if(o===null)return null;if(o=o.shared,(Ge&2)!==0){var u=o.pending;return u===null?n.next=n:(n.next=u.next,u.next=n),o.pending=n,n=Fo(e),Bm(e,null,a),n}return Go(e,o,n,a),Fo(e)}function ba(e,n,a){if(n=n.updateQueue,n!==null&&(n=n.shared,(a&4194048)!==0)){var o=n.lanes;o&=e.pendingLanes,a|=o,n.lanes=a,bi(e,a)}}function lf(e,n){var a=e.updateQueue,o=e.alternate;if(o!==null&&(o=o.updateQueue,a===o)){var u=null,h=null;if(a=a.firstBaseUpdate,a!==null){do{var x={lane:a.lane,tag:a.tag,payload:a.payload,callback:null,next:null};h===null?u=h=x:h=h.next=x,a=a.next}while(a!==null);h===null?u=h=n:h=h.next=n}else u=h=n;a={baseState:o.baseState,firstBaseUpdate:u,lastBaseUpdate:h,shared:o.shared,callbacks:o.callbacks},e.updateQueue=a;return}e=a.lastBaseUpdate,e===null?a.firstBaseUpdate=n:e.next=n,a.lastBaseUpdate=n}var cf=!1;function va(){if(cf){var e=fs;if(e!==null)throw e}}function xa(e,n,a,o){cf=!1;var u=e.updateQueue;Pr=!1;var h=u.firstBaseUpdate,x=u.lastBaseUpdate,E=u.shared.pending;if(E!==null){u.shared.pending=null;var R=E,H=R.next;R.next=null,x===null?h=H:x.next=H,x=R;var Q=e.alternate;Q!==null&&(Q=Q.updateQueue,E=Q.lastBaseUpdate,E!==x&&(E===null?Q.firstBaseUpdate=H:E.next=H,Q.lastBaseUpdate=R))}if(h!==null){var ne=u.baseState;x=0,Q=H=R=null,E=h;do{var F=E.lane&-536870913,K=F!==E.lane;if(K?(Be&F)===F:(o&F)===F){F!==0&&F===us&&(cf=!0),Q!==null&&(Q=Q.next={lane:0,tag:E.tag,payload:E.payload,callback:null,next:null});e:{var ge=e,Ee=E;F=n;var Je=a;switch(Ee.tag){case 1:if(ge=Ee.payload,typeof ge=="function"){ne=ge.call(Je,ne,F);break e}ne=ge;break e;case 3:ge.flags=ge.flags&-65537|128;case 0:if(ge=Ee.payload,F=typeof ge=="function"?ge.call(Je,ne,F):ge,F==null)break e;ne=b({},ne,F);break e;case 2:Pr=!0}}F=E.callback,F!==null&&(e.flags|=64,K&&(e.flags|=8192),K=u.callbacks,K===null?u.callbacks=[F]:K.push(F))}else K={lane:F,tag:E.tag,payload:E.payload,callback:E.callback,next:null},Q===null?(H=Q=K,R=ne):Q=Q.next=K,x|=F;if(E=E.next,E===null){if(E=u.shared.pending,E===null)break;K=E,E=K.next,K.next=null,u.lastBaseUpdate=K,u.shared.pending=null}}while(!0);Q===null&&(R=ne),u.baseState=R,u.firstBaseUpdate=H,u.lastBaseUpdate=Q,h===null&&(u.shared.lanes=0),Fr|=x,e.lanes=x,e.memoizedState=ne}}function e0(e,n){if(typeof e!="function")throw Error(s(191,e));e.call(n)}function t0(e,n){var a=e.callbacks;if(a!==null)for(e.callbacks=null,e=0;e<a.length;e++)e0(a[e],n)}var ms=je(null),tl=je(0);function n0(e,n){e=br,Te(tl,e),Te(ms,n),br=e|n.baseLanes}function uf(){Te(tl,br),Te(ms,ms.current)}function ff(){br=tl.current,Se(ms),Se(tl)}var nn=je(null),An=null;function Ir(e){var n=e.alternate;Te(gt,gt.current&1),Te(nn,e),An===null&&(n===null||ms.current!==null||n.memoizedState!==null)&&(An=e)}function hf(e){Te(gt,gt.current),Te(nn,e),An===null&&(An=e)}function r0(e){e.tag===22?(Te(gt,gt.current),Te(nn,e),An===null&&(An=e)):$r()}function $r(){Te(gt,gt.current),Te(nn,nn.current)}function rn(e){Se(nn),An===e&&(An=null),Se(gt)}var gt=je(0);function nl(e){for(var n=e;n!==null;){if(n.tag===13){var a=n.memoizedState;if(a!==null&&(a=a.dehydrated,a===null||bh(a)||vh(a)))return n}else if(n.tag===19&&(n.memoizedProps.revealOrder==="forwards"||n.memoizedProps.revealOrder==="backwards"||n.memoizedProps.revealOrder==="unstable_legacy-backwards"||n.memoizedProps.revealOrder==="together")){if((n.flags&128)!==0)return n}else if(n.child!==null){n.child.return=n,n=n.child;continue}if(n===e)break;for(;n.sibling===null;){if(n.return===null||n.return===e)return null;n=n.return}n.sibling.return=n.return,n=n.sibling}return null}var ur=0,Ce=null,Ke=null,xt=null,rl=!1,ps=!1,Ri=!1,il=0,_a=0,gs=null,Gx=0;function ut(){throw Error(s(321))}function df(e,n){if(n===null)return!1;for(var a=0;a<n.length&&a<e.length;a++)if(!en(e[a],n[a]))return!1;return!0}function mf(e,n,a,o,u,h){return ur=h,Ce=n,n.memoizedState=null,n.updateQueue=null,n.lanes=0,Y.H=e===null||e.memoizedState===null?z0:Tf,Ri=!1,h=a(o,u),Ri=!1,ps&&(h=s0(n,a,o,u)),i0(e),h}function i0(e){Y.H=Ea;var n=Ke!==null&&Ke.next!==null;if(ur=0,xt=Ke=Ce=null,rl=!1,_a=0,gs=null,n)throw Error(s(300));e===null||_t||(e=e.dependencies,e!==null&&Ko(e)&&(_t=!0))}function s0(e,n,a,o){Ce=e;var u=0;do{if(ps&&(gs=null),_a=0,ps=!1,25<=u)throw Error(s(301));if(u+=1,xt=Ke=null,e.updateQueue!=null){var h=e.updateQueue;h.lastEffect=null,h.events=null,h.stores=null,h.memoCache!=null&&(h.memoCache.index=0)}Y.H=I0,h=n(a,o)}while(ps);return h}function Fx(){var e=Y.H,n=e.useState()[0];return n=typeof n.then=="function"?wa(n):n,e=e.useState()[0],(Ke!==null?Ke.memoizedState:null)!==e&&(Ce.flags|=1024),n}function pf(){var e=il!==0;return il=0,e}function gf(e,n,a){n.updateQueue=e.updateQueue,n.flags&=-2053,e.lanes&=~a}function yf(e){if(rl){for(e=e.memoizedState;e!==null;){var n=e.queue;n!==null&&(n.pending=null),e=e.next}rl=!1}ur=0,xt=Ke=Ce=null,ps=!1,_a=il=0,gs=null}function Ut(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return xt===null?Ce.memoizedState=xt=e:xt=xt.next=e,xt}function yt(){if(Ke===null){var e=Ce.alternate;e=e!==null?e.memoizedState:null}else e=Ke.next;var n=xt===null?Ce.memoizedState:xt.next;if(n!==null)xt=n,Ke=e;else{if(e===null)throw Ce.alternate===null?Error(s(467)):Error(s(310));Ke=e,e={memoizedState:Ke.memoizedState,baseState:Ke.baseState,baseQueue:Ke.baseQueue,queue:Ke.queue,next:null},xt===null?Ce.memoizedState=xt=e:xt=xt.next=e}return xt}function sl(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function wa(e){var n=_a;return _a+=1,gs===null&&(gs=[]),e=Xm(gs,e,n),n=Ce,(xt===null?n.memoizedState:xt.next)===null&&(n=n.alternate,Y.H=n===null||n.memoizedState===null?z0:Tf),e}function al(e){if(e!==null&&typeof e=="object"){if(typeof e.then=="function")return wa(e);if(e.$$typeof===re)return Mt(e)}throw Error(s(438,String(e)))}function bf(e){var n=null,a=Ce.updateQueue;if(a!==null&&(n=a.memoCache),n==null){var o=Ce.alternate;o!==null&&(o=o.updateQueue,o!==null&&(o=o.memoCache,o!=null&&(n={data:o.data.map(function(u){return u.slice()}),index:0})))}if(n==null&&(n={data:[],index:0}),a===null&&(a=sl(),Ce.updateQueue=a),a.memoCache=n,a=n.data[n.index],a===void 0)for(a=n.data[n.index]=Array(e),o=0;o<e;o++)a[o]=G;return n.index++,a}function fr(e,n){return typeof n=="function"?n(e):n}function ol(e){var n=yt();return vf(n,Ke,e)}function vf(e,n,a){var o=e.queue;if(o===null)throw Error(s(311));o.lastRenderedReducer=a;var u=e.baseQueue,h=o.pending;if(h!==null){if(u!==null){var x=u.next;u.next=h.next,h.next=x}n.baseQueue=u=h,o.pending=null}if(h=e.baseState,u===null)e.memoizedState=h;else{n=u.next;var E=x=null,R=null,H=n,Q=!1;do{var ne=H.lane&-536870913;if(ne!==H.lane?(Be&ne)===ne:(ur&ne)===ne){var F=H.revertLane;if(F===0)R!==null&&(R=R.next={lane:0,revertLane:0,gesture:null,action:H.action,hasEagerState:H.hasEagerState,eagerState:H.eagerState,next:null}),ne===us&&(Q=!0);else if((ur&F)===F){H=H.next,F===us&&(Q=!0);continue}else ne={lane:0,revertLane:H.revertLane,gesture:null,action:H.action,hasEagerState:H.hasEagerState,eagerState:H.eagerState,next:null},R===null?(E=R=ne,x=h):R=R.next=ne,Ce.lanes|=F,Fr|=F;ne=H.action,Ri&&a(h,ne),h=H.hasEagerState?H.eagerState:a(h,ne)}else F={lane:ne,revertLane:H.revertLane,gesture:H.gesture,action:H.action,hasEagerState:H.hasEagerState,eagerState:H.eagerState,next:null},R===null?(E=R=F,x=h):R=R.next=F,Ce.lanes|=ne,Fr|=ne;H=H.next}while(H!==null&&H!==n);if(R===null?x=h:R.next=E,!en(h,e.memoizedState)&&(_t=!0,Q&&(a=fs,a!==null)))throw a;e.memoizedState=h,e.baseState=x,e.baseQueue=R,o.lastRenderedState=h}return u===null&&(o.lanes=0),[e.memoizedState,o.dispatch]}function xf(e){var n=yt(),a=n.queue;if(a===null)throw Error(s(311));a.lastRenderedReducer=e;var o=a.dispatch,u=a.pending,h=n.memoizedState;if(u!==null){a.pending=null;var x=u=u.next;do h=e(h,x.action),x=x.next;while(x!==u);en(h,n.memoizedState)||(_t=!0),n.memoizedState=h,n.baseQueue===null&&(n.baseState=h),a.lastRenderedState=h}return[h,o]}function a0(e,n,a){var o=Ce,u=yt(),h=Pe;if(h){if(a===void 0)throw Error(s(407));a=a()}else a=n();var x=!en((Ke||u).memoizedState,a);if(x&&(u.memoizedState=a,_t=!0),u=u.queue,Sf(c0.bind(null,o,u,e),[e]),u.getSnapshot!==n||x||xt!==null&&xt.memoizedState.tag&1){if(o.flags|=2048,ys(9,{destroy:void 0},l0.bind(null,o,u,a,n),null),Ze===null)throw Error(s(349));h||(ur&127)!==0||o0(o,n,a)}return a}function o0(e,n,a){e.flags|=16384,e={getSnapshot:n,value:a},n=Ce.updateQueue,n===null?(n=sl(),Ce.updateQueue=n,n.stores=[e]):(a=n.stores,a===null?n.stores=[e]:a.push(e))}function l0(e,n,a,o){n.value=a,n.getSnapshot=o,u0(n)&&f0(e)}function c0(e,n,a){return a(function(){u0(n)&&f0(e)})}function u0(e){var n=e.getSnapshot;e=e.value;try{var a=n();return!en(e,a)}catch{return!0}}function f0(e){var n=Ei(e,2);n!==null&&Qt(n,e,2)}function _f(e){var n=Ut();if(typeof e=="function"){var a=e;if(e=a(),Ri){Zt(!0);try{a()}finally{Zt(!1)}}}return n.memoizedState=n.baseState=e,n.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:fr,lastRenderedState:e},n}function h0(e,n,a,o){return e.baseState=a,vf(e,Ke,typeof o=="function"?o:fr)}function Vx(e,n,a,o,u){if(ul(e))throw Error(s(485));if(e=n.action,e!==null){var h={payload:u,action:e,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(x){h.listeners.push(x)}};Y.T!==null?a(!0):h.isTransition=!1,o(h),a=n.pending,a===null?(h.next=n.pending=h,d0(n,h)):(h.next=a.next,n.pending=a.next=h)}}function d0(e,n){var a=n.action,o=n.payload,u=e.state;if(n.isTransition){var h=Y.T,x={};Y.T=x;try{var E=a(u,o),R=Y.S;R!==null&&R(x,E),m0(e,n,E)}catch(H){wf(e,n,H)}finally{h!==null&&x.types!==null&&(h.types=x.types),Y.T=h}}else try{h=a(u,o),m0(e,n,h)}catch(H){wf(e,n,H)}}function m0(e,n,a){a!==null&&typeof a=="object"&&typeof a.then=="function"?a.then(function(o){p0(e,n,o)},function(o){return wf(e,n,o)}):p0(e,n,a)}function p0(e,n,a){n.status="fulfilled",n.value=a,g0(n),e.state=a,n=e.pending,n!==null&&(a=n.next,a===n?e.pending=null:(a=a.next,n.next=a,d0(e,a)))}function wf(e,n,a){var o=e.pending;if(e.pending=null,o!==null){o=o.next;do n.status="rejected",n.reason=a,g0(n),n=n.next;while(n!==o)}e.action=null}function g0(e){e=e.listeners;for(var n=0;n<e.length;n++)(0,e[n])()}function y0(e,n){return n}function b0(e,n){if(Pe){var a=Ze.formState;if(a!==null){e:{var o=Ce;if(Pe){if(tt){t:{for(var u=tt,h=On;u.nodeType!==8;){if(!h){u=null;break t}if(u=jn(u.nextSibling),u===null){u=null;break t}}h=u.data,u=h==="F!"||h==="F"?u:null}if(u){tt=jn(u.nextSibling),o=u.data==="F!";break e}}Br(o)}o=!1}o&&(n=a[0])}}return a=Ut(),a.memoizedState=a.baseState=n,o={pending:null,lanes:0,dispatch:null,lastRenderedReducer:y0,lastRenderedState:n},a.queue=o,a=L0.bind(null,Ce,o),o.dispatch=a,o=_f(!1),h=Nf.bind(null,Ce,!1,o.queue),o=Ut(),u={state:n,dispatch:null,action:e,pending:null},o.queue=u,a=Vx.bind(null,Ce,u,h,a),u.dispatch=a,o.memoizedState=e,[n,a,!1]}function v0(e){var n=yt();return x0(n,Ke,e)}function x0(e,n,a){if(n=vf(e,n,y0)[0],e=ol(fr)[0],typeof n=="object"&&n!==null&&typeof n.then=="function")try{var o=wa(n)}catch(x){throw x===hs?Qo:x}else o=n;n=yt();var u=n.queue,h=u.dispatch;return a!==n.memoizedState&&(Ce.flags|=2048,ys(9,{destroy:void 0},Yx.bind(null,u,a),null)),[o,h,e]}function Yx(e,n){e.action=n}function _0(e){var n=yt(),a=Ke;if(a!==null)return x0(n,a,e);yt(),n=n.memoizedState,a=yt();var o=a.queue.dispatch;return a.memoizedState=e,[n,o,!1]}function ys(e,n,a,o){return e={tag:e,create:a,deps:o,inst:n,next:null},n=Ce.updateQueue,n===null&&(n=sl(),Ce.updateQueue=n),a=n.lastEffect,a===null?n.lastEffect=e.next=e:(o=a.next,a.next=e,e.next=o,n.lastEffect=e),e}function w0(){return yt().memoizedState}function ll(e,n,a,o){var u=Ut();Ce.flags|=e,u.memoizedState=ys(1|n,{destroy:void 0},a,o===void 0?null:o)}function cl(e,n,a,o){var u=yt();o=o===void 0?null:o;var h=u.memoizedState.inst;Ke!==null&&o!==null&&df(o,Ke.memoizedState.deps)?u.memoizedState=ys(n,h,a,o):(Ce.flags|=e,u.memoizedState=ys(1|n,h,a,o))}function S0(e,n){ll(8390656,8,e,n)}function Sf(e,n){cl(2048,8,e,n)}function Kx(e){Ce.flags|=4;var n=Ce.updateQueue;if(n===null)n=sl(),Ce.updateQueue=n,n.events=[e];else{var a=n.events;a===null?n.events=[e]:a.push(e)}}function E0(e){var n=yt().memoizedState;return Kx({ref:n,nextImpl:e}),function(){if((Ge&2)!==0)throw Error(s(440));return n.impl.apply(void 0,arguments)}}function O0(e,n){return cl(4,2,e,n)}function A0(e,n){return cl(4,4,e,n)}function j0(e,n){if(typeof n=="function"){e=e();var a=n(e);return function(){typeof a=="function"?a():n(null)}}if(n!=null)return e=e(),n.current=e,function(){n.current=null}}function N0(e,n,a){a=a!=null?a.concat([e]):null,cl(4,4,j0.bind(null,n,e),a)}function Ef(){}function T0(e,n){var a=yt();n=n===void 0?null:n;var o=a.memoizedState;return n!==null&&df(n,o[1])?o[0]:(a.memoizedState=[e,n],e)}function k0(e,n){var a=yt();n=n===void 0?null:n;var o=a.memoizedState;if(n!==null&&df(n,o[1]))return o[0];if(o=e(),Ri){Zt(!0);try{e()}finally{Zt(!1)}}return a.memoizedState=[o,n],o}function Of(e,n,a){return a===void 0||(ur&1073741824)!==0&&(Be&261930)===0?e.memoizedState=n:(e.memoizedState=a,e=Cp(),Ce.lanes|=e,Fr|=e,a)}function C0(e,n,a,o){return en(a,n)?a:ms.current!==null?(e=Of(e,a,o),en(e,n)||(_t=!0),e):(ur&42)===0||(ur&1073741824)!==0&&(Be&261930)===0?(_t=!0,e.memoizedState=a):(e=Cp(),Ce.lanes|=e,Fr|=e,n)}function M0(e,n,a,o,u){var h=ae.p;ae.p=h!==0&&8>h?h:8;var x=Y.T,E={};Y.T=E,Nf(e,!1,n,a);try{var R=u(),H=Y.S;if(H!==null&&H(E,R),R!==null&&typeof R=="object"&&typeof R.then=="function"){var Q=Hx(R,o);Sa(e,n,Q,on(e))}else Sa(e,n,o,on(e))}catch(ne){Sa(e,n,{then:function(){},status:"rejected",reason:ne},on())}finally{ae.p=h,x!==null&&E.types!==null&&(x.types=E.types),Y.T=x}}function Xx(){}function Af(e,n,a,o){if(e.tag!==5)throw Error(s(476));var u=R0(e).queue;M0(e,u,n,de,a===null?Xx:function(){return D0(e),a(o)})}function R0(e){var n=e.memoizedState;if(n!==null)return n;n={memoizedState:de,baseState:de,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:fr,lastRenderedState:de},next:null};var a={};return n.next={memoizedState:a,baseState:a,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:fr,lastRenderedState:a},next:null},e.memoizedState=n,e=e.alternate,e!==null&&(e.memoizedState=n),n}function D0(e){var n=R0(e);n.next===null&&(n=e.alternate.memoizedState),Sa(e,n.next.queue,{},on())}function jf(){return Mt(za)}function q0(){return yt().memoizedState}function B0(){return yt().memoizedState}function Jx(e){for(var n=e.return;n!==null;){switch(n.tag){case 24:case 3:var a=on();e=Ur(a);var o=zr(n,e,a);o!==null&&(Qt(o,n,a),ba(o,n,a)),n={cache:tf()},e.payload=n;return}n=n.return}}function Qx(e,n,a){var o=on();a={lane:o,revertLane:0,gesture:null,action:a,hasEagerState:!1,eagerState:null,next:null},ul(e)?P0(n,a):(a=Gu(e,n,a,o),a!==null&&(Qt(a,e,o),U0(a,n,o)))}function L0(e,n,a){var o=on();Sa(e,n,a,o)}function Sa(e,n,a,o){var u={lane:o,revertLane:0,gesture:null,action:a,hasEagerState:!1,eagerState:null,next:null};if(ul(e))P0(n,u);else{var h=e.alternate;if(e.lanes===0&&(h===null||h.lanes===0)&&(h=n.lastRenderedReducer,h!==null))try{var x=n.lastRenderedState,E=h(x,a);if(u.hasEagerState=!0,u.eagerState=E,en(E,x))return Go(e,n,u,0),Ze===null&&Ho(),!1}catch{}finally{}if(a=Gu(e,n,u,o),a!==null)return Qt(a,e,o),U0(a,n,o),!0}return!1}function Nf(e,n,a,o){if(o={lane:2,revertLane:ah(),gesture:null,action:o,hasEagerState:!1,eagerState:null,next:null},ul(e)){if(n)throw Error(s(479))}else n=Gu(e,a,o,2),n!==null&&Qt(n,e,2)}function ul(e){var n=e.alternate;return e===Ce||n!==null&&n===Ce}function P0(e,n){ps=rl=!0;var a=e.pending;a===null?n.next=n:(n.next=a.next,a.next=n),e.pending=n}function U0(e,n,a){if((a&4194048)!==0){var o=n.lanes;o&=e.pendingLanes,a|=o,n.lanes=a,bi(e,a)}}var Ea={readContext:Mt,use:al,useCallback:ut,useContext:ut,useEffect:ut,useImperativeHandle:ut,useLayoutEffect:ut,useInsertionEffect:ut,useMemo:ut,useReducer:ut,useRef:ut,useState:ut,useDebugValue:ut,useDeferredValue:ut,useTransition:ut,useSyncExternalStore:ut,useId:ut,useHostTransitionStatus:ut,useFormState:ut,useActionState:ut,useOptimistic:ut,useMemoCache:ut,useCacheRefresh:ut};Ea.useEffectEvent=ut;var z0={readContext:Mt,use:al,useCallback:function(e,n){return Ut().memoizedState=[e,n===void 0?null:n],e},useContext:Mt,useEffect:S0,useImperativeHandle:function(e,n,a){a=a!=null?a.concat([e]):null,ll(4194308,4,j0.bind(null,n,e),a)},useLayoutEffect:function(e,n){return ll(4194308,4,e,n)},useInsertionEffect:function(e,n){ll(4,2,e,n)},useMemo:function(e,n){var a=Ut();n=n===void 0?null:n;var o=e();if(Ri){Zt(!0);try{e()}finally{Zt(!1)}}return a.memoizedState=[o,n],o},useReducer:function(e,n,a){var o=Ut();if(a!==void 0){var u=a(n);if(Ri){Zt(!0);try{a(n)}finally{Zt(!1)}}}else u=n;return o.memoizedState=o.baseState=u,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:u},o.queue=e,e=e.dispatch=Qx.bind(null,Ce,e),[o.memoizedState,e]},useRef:function(e){var n=Ut();return e={current:e},n.memoizedState=e},useState:function(e){e=_f(e);var n=e.queue,a=L0.bind(null,Ce,n);return n.dispatch=a,[e.memoizedState,a]},useDebugValue:Ef,useDeferredValue:function(e,n){var a=Ut();return Of(a,e,n)},useTransition:function(){var e=_f(!1);return e=M0.bind(null,Ce,e.queue,!0,!1),Ut().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,n,a){var o=Ce,u=Ut();if(Pe){if(a===void 0)throw Error(s(407));a=a()}else{if(a=n(),Ze===null)throw Error(s(349));(Be&127)!==0||o0(o,n,a)}u.memoizedState=a;var h={value:a,getSnapshot:n};return u.queue=h,S0(c0.bind(null,o,h,e),[e]),o.flags|=2048,ys(9,{destroy:void 0},l0.bind(null,o,h,a,n),null),a},useId:function(){var e=Ut(),n=Ze.identifierPrefix;if(Pe){var a=Vn,o=Fn;a=(o&~(1<<32-Lt(o)-1)).toString(32)+a,n="_"+n+"R_"+a,a=il++,0<a&&(n+="H"+a.toString(32)),n+="_"}else a=Gx++,n="_"+n+"r_"+a.toString(32)+"_";return e.memoizedState=n},useHostTransitionStatus:jf,useFormState:b0,useActionState:b0,useOptimistic:function(e){var n=Ut();n.memoizedState=n.baseState=e;var a={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return n.queue=a,n=Nf.bind(null,Ce,!0,a),a.dispatch=n,[e,n]},useMemoCache:bf,useCacheRefresh:function(){return Ut().memoizedState=Jx.bind(null,Ce)},useEffectEvent:function(e){var n=Ut(),a={impl:e};return n.memoizedState=a,function(){if((Ge&2)!==0)throw Error(s(440));return a.impl.apply(void 0,arguments)}}},Tf={readContext:Mt,use:al,useCallback:T0,useContext:Mt,useEffect:Sf,useImperativeHandle:N0,useInsertionEffect:O0,useLayoutEffect:A0,useMemo:k0,useReducer:ol,useRef:w0,useState:function(){return ol(fr)},useDebugValue:Ef,useDeferredValue:function(e,n){var a=yt();return C0(a,Ke.memoizedState,e,n)},useTransition:function(){var e=ol(fr)[0],n=yt().memoizedState;return[typeof e=="boolean"?e:wa(e),n]},useSyncExternalStore:a0,useId:q0,useHostTransitionStatus:jf,useFormState:v0,useActionState:v0,useOptimistic:function(e,n){var a=yt();return h0(a,Ke,e,n)},useMemoCache:bf,useCacheRefresh:B0};Tf.useEffectEvent=E0;var I0={readContext:Mt,use:al,useCallback:T0,useContext:Mt,useEffect:Sf,useImperativeHandle:N0,useInsertionEffect:O0,useLayoutEffect:A0,useMemo:k0,useReducer:xf,useRef:w0,useState:function(){return xf(fr)},useDebugValue:Ef,useDeferredValue:function(e,n){var a=yt();return Ke===null?Of(a,e,n):C0(a,Ke.memoizedState,e,n)},useTransition:function(){var e=xf(fr)[0],n=yt().memoizedState;return[typeof e=="boolean"?e:wa(e),n]},useSyncExternalStore:a0,useId:q0,useHostTransitionStatus:jf,useFormState:_0,useActionState:_0,useOptimistic:function(e,n){var a=yt();return Ke!==null?h0(a,Ke,e,n):(a.baseState=e,[e,a.queue.dispatch])},useMemoCache:bf,useCacheRefresh:B0};I0.useEffectEvent=E0;function kf(e,n,a,o){n=e.memoizedState,a=a(o,n),a=a==null?n:b({},n,a),e.memoizedState=a,e.lanes===0&&(e.updateQueue.baseState=a)}var Cf={enqueueSetState:function(e,n,a){e=e._reactInternals;var o=on(),u=Ur(o);u.payload=n,a!=null&&(u.callback=a),n=zr(e,u,o),n!==null&&(Qt(n,e,o),ba(n,e,o))},enqueueReplaceState:function(e,n,a){e=e._reactInternals;var o=on(),u=Ur(o);u.tag=1,u.payload=n,a!=null&&(u.callback=a),n=zr(e,u,o),n!==null&&(Qt(n,e,o),ba(n,e,o))},enqueueForceUpdate:function(e,n){e=e._reactInternals;var a=on(),o=Ur(a);o.tag=2,n!=null&&(o.callback=n),n=zr(e,o,a),n!==null&&(Qt(n,e,a),ba(n,e,a))}};function $0(e,n,a,o,u,h,x){return e=e.stateNode,typeof e.shouldComponentUpdate=="function"?e.shouldComponentUpdate(o,h,x):n.prototype&&n.prototype.isPureReactComponent?!ua(a,o)||!ua(u,h):!0}function H0(e,n,a,o){e=n.state,typeof n.componentWillReceiveProps=="function"&&n.componentWillReceiveProps(a,o),typeof n.UNSAFE_componentWillReceiveProps=="function"&&n.UNSAFE_componentWillReceiveProps(a,o),n.state!==e&&Cf.enqueueReplaceState(n,n.state,null)}function Di(e,n){var a=n;if("ref"in n){a={};for(var o in n)o!=="ref"&&(a[o]=n[o])}if(e=e.defaultProps){a===n&&(a=b({},a));for(var u in e)a[u]===void 0&&(a[u]=e[u])}return a}function G0(e){$o(e)}function F0(e){console.error(e)}function V0(e){$o(e)}function fl(e,n){try{var a=e.onUncaughtError;a(n.value,{componentStack:n.stack})}catch(o){setTimeout(function(){throw o})}}function Y0(e,n,a){try{var o=e.onCaughtError;o(a.value,{componentStack:a.stack,errorBoundary:n.tag===1?n.stateNode:null})}catch(u){setTimeout(function(){throw u})}}function Mf(e,n,a){return a=Ur(a),a.tag=3,a.payload={element:null},a.callback=function(){fl(e,n)},a}function K0(e){return e=Ur(e),e.tag=3,e}function X0(e,n,a,o){var u=a.type.getDerivedStateFromError;if(typeof u=="function"){var h=o.value;e.payload=function(){return u(h)},e.callback=function(){Y0(n,a,o)}}var x=a.stateNode;x!==null&&typeof x.componentDidCatch=="function"&&(e.callback=function(){Y0(n,a,o),typeof u!="function"&&(Vr===null?Vr=new Set([this]):Vr.add(this));var E=o.stack;this.componentDidCatch(o.value,{componentStack:E!==null?E:""})})}function Zx(e,n,a,o,u){if(a.flags|=32768,o!==null&&typeof o=="object"&&typeof o.then=="function"){if(n=a.alternate,n!==null&&cs(n,a,u,!0),a=nn.current,a!==null){switch(a.tag){case 31:case 13:return An===null?Sl():a.alternate===null&&ft===0&&(ft=3),a.flags&=-257,a.flags|=65536,a.lanes=u,o===Zo?a.flags|=16384:(n=a.updateQueue,n===null?a.updateQueue=new Set([o]):n.add(o),rh(e,o,u)),!1;case 22:return a.flags|=65536,o===Zo?a.flags|=16384:(n=a.updateQueue,n===null?(n={transitions:null,markerInstances:null,retryQueue:new Set([o])},a.updateQueue=n):(a=n.retryQueue,a===null?n.retryQueue=new Set([o]):a.add(o)),rh(e,o,u)),!1}throw Error(s(435,a.tag))}return rh(e,o,u),Sl(),!1}if(Pe)return n=nn.current,n!==null?((n.flags&65536)===0&&(n.flags|=256),n.flags|=65536,n.lanes=u,o!==Ju&&(e=Error(s(422),{cause:o}),da(wn(e,a)))):(o!==Ju&&(n=Error(s(423),{cause:o}),da(wn(n,a))),e=e.current.alternate,e.flags|=65536,u&=-u,e.lanes|=u,o=wn(o,a),u=Mf(e.stateNode,o,u),lf(e,u),ft!==4&&(ft=2)),!1;var h=Error(s(520),{cause:o});if(h=wn(h,a),Ma===null?Ma=[h]:Ma.push(h),ft!==4&&(ft=2),n===null)return!0;o=wn(o,a),a=n;do{switch(a.tag){case 3:return a.flags|=65536,e=u&-u,a.lanes|=e,e=Mf(a.stateNode,o,e),lf(a,e),!1;case 1:if(n=a.type,h=a.stateNode,(a.flags&128)===0&&(typeof n.getDerivedStateFromError=="function"||h!==null&&typeof h.componentDidCatch=="function"&&(Vr===null||!Vr.has(h))))return a.flags|=65536,u&=-u,a.lanes|=u,u=K0(u),X0(u,e,a,o),lf(a,u),!1}a=a.return}while(a!==null);return!1}var Rf=Error(s(461)),_t=!1;function Rt(e,n,a,o){n.child=e===null?Wm(n,null,a,o):Mi(n,e.child,a,o)}function J0(e,n,a,o,u){a=a.render;var h=n.ref;if("ref"in o){var x={};for(var E in o)E!=="ref"&&(x[E]=o[E])}else x=o;return Ni(n),o=mf(e,n,a,x,h,u),E=pf(),e!==null&&!_t?(gf(e,n,u),hr(e,n,u)):(Pe&&E&&Ku(n),n.flags|=1,Rt(e,n,o,u),n.child)}function Q0(e,n,a,o,u){if(e===null){var h=a.type;return typeof h=="function"&&!Fu(h)&&h.defaultProps===void 0&&a.compare===null?(n.tag=15,n.type=h,Z0(e,n,h,o,u)):(e=Vo(a.type,null,o,n,n.mode,u),e.ref=n.ref,e.return=n,n.child=e)}if(h=e.child,!If(e,u)){var x=h.memoizedProps;if(a=a.compare,a=a!==null?a:ua,a(x,o)&&e.ref===n.ref)return hr(e,n,u)}return n.flags|=1,e=ar(h,o),e.ref=n.ref,e.return=n,n.child=e}function Z0(e,n,a,o,u){if(e!==null){var h=e.memoizedProps;if(ua(h,o)&&e.ref===n.ref)if(_t=!1,n.pendingProps=o=h,If(e,u))(e.flags&131072)!==0&&(_t=!0);else return n.lanes=e.lanes,hr(e,n,u)}return Df(e,n,a,o,u)}function W0(e,n,a,o){var u=o.children,h=e!==null?e.memoizedState:null;if(e===null&&n.stateNode===null&&(n.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),o.mode==="hidden"){if((n.flags&128)!==0){if(h=h!==null?h.baseLanes|a:a,e!==null){for(o=n.child=e.child,u=0;o!==null;)u=u|o.lanes|o.childLanes,o=o.sibling;o=u&~h}else o=0,n.child=null;return ep(e,n,h,a,o)}if((a&536870912)!==0)n.memoizedState={baseLanes:0,cachePool:null},e!==null&&Jo(n,h!==null?h.cachePool:null),h!==null?n0(n,h):uf(),r0(n);else return o=n.lanes=536870912,ep(e,n,h!==null?h.baseLanes|a:a,a,o)}else h!==null?(Jo(n,h.cachePool),n0(n,h),$r(),n.memoizedState=null):(e!==null&&Jo(n,null),uf(),$r());return Rt(e,n,u,a),n.child}function Oa(e,n){return e!==null&&e.tag===22||n.stateNode!==null||(n.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),n.sibling}function ep(e,n,a,o,u){var h=rf();return h=h===null?null:{parent:vt._currentValue,pool:h},n.memoizedState={baseLanes:a,cachePool:h},e!==null&&Jo(n,null),uf(),r0(n),e!==null&&cs(e,n,o,!0),n.childLanes=u,null}function hl(e,n){return n=ml({mode:n.mode,children:n.children},e.mode),n.ref=e.ref,e.child=n,n.return=e,n}function tp(e,n,a){return Mi(n,e.child,null,a),e=hl(n,n.pendingProps),e.flags|=2,rn(n),n.memoizedState=null,e}function Wx(e,n,a){var o=n.pendingProps,u=(n.flags&128)!==0;if(n.flags&=-129,e===null){if(Pe){if(o.mode==="hidden")return e=hl(n,o),n.lanes=536870912,Oa(null,e);if(hf(n),(e=tt)?(e=dg(e,On),e=e!==null&&e.data==="&"?e:null,e!==null&&(n.memoizedState={dehydrated:e,treeContext:Dr!==null?{id:Fn,overflow:Vn}:null,retryLane:536870912,hydrationErrors:null},a=Pm(e),a.return=n,n.child=a,Ct=n,tt=null)):e=null,e===null)throw Br(n);return n.lanes=536870912,null}return hl(n,o)}var h=e.memoizedState;if(h!==null){var x=h.dehydrated;if(hf(n),u)if(n.flags&256)n.flags&=-257,n=tp(e,n,a);else if(n.memoizedState!==null)n.child=e.child,n.flags|=128,n=null;else throw Error(s(558));else if(_t||cs(e,n,a,!1),u=(a&e.childLanes)!==0,_t||u){if(o=Ze,o!==null&&(x=Mr(o,a),x!==0&&x!==h.retryLane))throw h.retryLane=x,Ei(e,x),Qt(o,e,x),Rf;Sl(),n=tp(e,n,a)}else e=h.treeContext,tt=jn(x.nextSibling),Ct=n,Pe=!0,qr=null,On=!1,e!==null&&Im(n,e),n=hl(n,o),n.flags|=4096;return n}return e=ar(e.child,{mode:o.mode,children:o.children}),e.ref=n.ref,n.child=e,e.return=n,e}function dl(e,n){var a=n.ref;if(a===null)e!==null&&e.ref!==null&&(n.flags|=4194816);else{if(typeof a!="function"&&typeof a!="object")throw Error(s(284));(e===null||e.ref!==a)&&(n.flags|=4194816)}}function Df(e,n,a,o,u){return Ni(n),a=mf(e,n,a,o,void 0,u),o=pf(),e!==null&&!_t?(gf(e,n,u),hr(e,n,u)):(Pe&&o&&Ku(n),n.flags|=1,Rt(e,n,a,u),n.child)}function np(e,n,a,o,u,h){return Ni(n),n.updateQueue=null,a=s0(n,o,a,u),i0(e),o=pf(),e!==null&&!_t?(gf(e,n,h),hr(e,n,h)):(Pe&&o&&Ku(n),n.flags|=1,Rt(e,n,a,h),n.child)}function rp(e,n,a,o,u){if(Ni(n),n.stateNode===null){var h=ss,x=a.contextType;typeof x=="object"&&x!==null&&(h=Mt(x)),h=new a(o,h),n.memoizedState=h.state!==null&&h.state!==void 0?h.state:null,h.updater=Cf,n.stateNode=h,h._reactInternals=n,h=n.stateNode,h.props=o,h.state=n.memoizedState,h.refs={},af(n),x=a.contextType,h.context=typeof x=="object"&&x!==null?Mt(x):ss,h.state=n.memoizedState,x=a.getDerivedStateFromProps,typeof x=="function"&&(kf(n,a,x,o),h.state=n.memoizedState),typeof a.getDerivedStateFromProps=="function"||typeof h.getSnapshotBeforeUpdate=="function"||typeof h.UNSAFE_componentWillMount!="function"&&typeof h.componentWillMount!="function"||(x=h.state,typeof h.componentWillMount=="function"&&h.componentWillMount(),typeof h.UNSAFE_componentWillMount=="function"&&h.UNSAFE_componentWillMount(),x!==h.state&&Cf.enqueueReplaceState(h,h.state,null),xa(n,o,h,u),va(),h.state=n.memoizedState),typeof h.componentDidMount=="function"&&(n.flags|=4194308),o=!0}else if(e===null){h=n.stateNode;var E=n.memoizedProps,R=Di(a,E);h.props=R;var H=h.context,Q=a.contextType;x=ss,typeof Q=="object"&&Q!==null&&(x=Mt(Q));var ne=a.getDerivedStateFromProps;Q=typeof ne=="function"||typeof h.getSnapshotBeforeUpdate=="function",E=n.pendingProps!==E,Q||typeof h.UNSAFE_componentWillReceiveProps!="function"&&typeof h.componentWillReceiveProps!="function"||(E||H!==x)&&H0(n,h,o,x),Pr=!1;var F=n.memoizedState;h.state=F,xa(n,o,h,u),va(),H=n.memoizedState,E||F!==H||Pr?(typeof ne=="function"&&(kf(n,a,ne,o),H=n.memoizedState),(R=Pr||$0(n,a,R,o,F,H,x))?(Q||typeof h.UNSAFE_componentWillMount!="function"&&typeof h.componentWillMount!="function"||(typeof h.componentWillMount=="function"&&h.componentWillMount(),typeof h.UNSAFE_componentWillMount=="function"&&h.UNSAFE_componentWillMount()),typeof h.componentDidMount=="function"&&(n.flags|=4194308)):(typeof h.componentDidMount=="function"&&(n.flags|=4194308),n.memoizedProps=o,n.memoizedState=H),h.props=o,h.state=H,h.context=x,o=R):(typeof h.componentDidMount=="function"&&(n.flags|=4194308),o=!1)}else{h=n.stateNode,of(e,n),x=n.memoizedProps,Q=Di(a,x),h.props=Q,ne=n.pendingProps,F=h.context,H=a.contextType,R=ss,typeof H=="object"&&H!==null&&(R=Mt(H)),E=a.getDerivedStateFromProps,(H=typeof E=="function"||typeof h.getSnapshotBeforeUpdate=="function")||typeof h.UNSAFE_componentWillReceiveProps!="function"&&typeof h.componentWillReceiveProps!="function"||(x!==ne||F!==R)&&H0(n,h,o,R),Pr=!1,F=n.memoizedState,h.state=F,xa(n,o,h,u),va();var K=n.memoizedState;x!==ne||F!==K||Pr||e!==null&&e.dependencies!==null&&Ko(e.dependencies)?(typeof E=="function"&&(kf(n,a,E,o),K=n.memoizedState),(Q=Pr||$0(n,a,Q,o,F,K,R)||e!==null&&e.dependencies!==null&&Ko(e.dependencies))?(H||typeof h.UNSAFE_componentWillUpdate!="function"&&typeof h.componentWillUpdate!="function"||(typeof h.componentWillUpdate=="function"&&h.componentWillUpdate(o,K,R),typeof h.UNSAFE_componentWillUpdate=="function"&&h.UNSAFE_componentWillUpdate(o,K,R)),typeof h.componentDidUpdate=="function"&&(n.flags|=4),typeof h.getSnapshotBeforeUpdate=="function"&&(n.flags|=1024)):(typeof h.componentDidUpdate!="function"||x===e.memoizedProps&&F===e.memoizedState||(n.flags|=4),typeof h.getSnapshotBeforeUpdate!="function"||x===e.memoizedProps&&F===e.memoizedState||(n.flags|=1024),n.memoizedProps=o,n.memoizedState=K),h.props=o,h.state=K,h.context=R,o=Q):(typeof h.componentDidUpdate!="function"||x===e.memoizedProps&&F===e.memoizedState||(n.flags|=4),typeof h.getSnapshotBeforeUpdate!="function"||x===e.memoizedProps&&F===e.memoizedState||(n.flags|=1024),o=!1)}return h=o,dl(e,n),o=(n.flags&128)!==0,h||o?(h=n.stateNode,a=o&&typeof a.getDerivedStateFromError!="function"?null:h.render(),n.flags|=1,e!==null&&o?(n.child=Mi(n,e.child,null,u),n.child=Mi(n,null,a,u)):Rt(e,n,a,u),n.memoizedState=h.state,e=n.child):e=hr(e,n,u),e}function ip(e,n,a,o){return Ai(),n.flags|=256,Rt(e,n,a,o),n.child}var qf={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function Bf(e){return{baseLanes:e,cachePool:Ym()}}function Lf(e,n,a){return e=e!==null?e.childLanes&~a:0,n&&(e|=an),e}function sp(e,n,a){var o=n.pendingProps,u=!1,h=(n.flags&128)!==0,x;if((x=h)||(x=e!==null&&e.memoizedState===null?!1:(gt.current&2)!==0),x&&(u=!0,n.flags&=-129),x=(n.flags&32)!==0,n.flags&=-33,e===null){if(Pe){if(u?Ir(n):$r(),(e=tt)?(e=dg(e,On),e=e!==null&&e.data!=="&"?e:null,e!==null&&(n.memoizedState={dehydrated:e,treeContext:Dr!==null?{id:Fn,overflow:Vn}:null,retryLane:536870912,hydrationErrors:null},a=Pm(e),a.return=n,n.child=a,Ct=n,tt=null)):e=null,e===null)throw Br(n);return vh(e)?n.lanes=32:n.lanes=536870912,null}var E=o.children;return o=o.fallback,u?($r(),u=n.mode,E=ml({mode:"hidden",children:E},u),o=Oi(o,u,a,null),E.return=n,o.return=n,E.sibling=o,n.child=E,o=n.child,o.memoizedState=Bf(a),o.childLanes=Lf(e,x,a),n.memoizedState=qf,Oa(null,o)):(Ir(n),Pf(n,E))}var R=e.memoizedState;if(R!==null&&(E=R.dehydrated,E!==null)){if(h)n.flags&256?(Ir(n),n.flags&=-257,n=Uf(e,n,a)):n.memoizedState!==null?($r(),n.child=e.child,n.flags|=128,n=null):($r(),E=o.fallback,u=n.mode,o=ml({mode:"visible",children:o.children},u),E=Oi(E,u,a,null),E.flags|=2,o.return=n,E.return=n,o.sibling=E,n.child=o,Mi(n,e.child,null,a),o=n.child,o.memoizedState=Bf(a),o.childLanes=Lf(e,x,a),n.memoizedState=qf,n=Oa(null,o));else if(Ir(n),vh(E)){if(x=E.nextSibling&&E.nextSibling.dataset,x)var H=x.dgst;x=H,o=Error(s(419)),o.stack="",o.digest=x,da({value:o,source:null,stack:null}),n=Uf(e,n,a)}else if(_t||cs(e,n,a,!1),x=(a&e.childLanes)!==0,_t||x){if(x=Ze,x!==null&&(o=Mr(x,a),o!==0&&o!==R.retryLane))throw R.retryLane=o,Ei(e,o),Qt(x,e,o),Rf;bh(E)||Sl(),n=Uf(e,n,a)}else bh(E)?(n.flags|=192,n.child=e.child,n=null):(e=R.treeContext,tt=jn(E.nextSibling),Ct=n,Pe=!0,qr=null,On=!1,e!==null&&Im(n,e),n=Pf(n,o.children),n.flags|=4096);return n}return u?($r(),E=o.fallback,u=n.mode,R=e.child,H=R.sibling,o=ar(R,{mode:"hidden",children:o.children}),o.subtreeFlags=R.subtreeFlags&65011712,H!==null?E=ar(H,E):(E=Oi(E,u,a,null),E.flags|=2),E.return=n,o.return=n,o.sibling=E,n.child=o,Oa(null,o),o=n.child,E=e.child.memoizedState,E===null?E=Bf(a):(u=E.cachePool,u!==null?(R=vt._currentValue,u=u.parent!==R?{parent:R,pool:R}:u):u=Ym(),E={baseLanes:E.baseLanes|a,cachePool:u}),o.memoizedState=E,o.childLanes=Lf(e,x,a),n.memoizedState=qf,Oa(e.child,o)):(Ir(n),a=e.child,e=a.sibling,a=ar(a,{mode:"visible",children:o.children}),a.return=n,a.sibling=null,e!==null&&(x=n.deletions,x===null?(n.deletions=[e],n.flags|=16):x.push(e)),n.child=a,n.memoizedState=null,a)}function Pf(e,n){return n=ml({mode:"visible",children:n},e.mode),n.return=e,e.child=n}function ml(e,n){return e=tn(22,e,null,n),e.lanes=0,e}function Uf(e,n,a){return Mi(n,e.child,null,a),e=Pf(n,n.pendingProps.children),e.flags|=2,n.memoizedState=null,e}function ap(e,n,a){e.lanes|=n;var o=e.alternate;o!==null&&(o.lanes|=n),Wu(e.return,n,a)}function zf(e,n,a,o,u,h){var x=e.memoizedState;x===null?e.memoizedState={isBackwards:n,rendering:null,renderingStartTime:0,last:o,tail:a,tailMode:u,treeForkCount:h}:(x.isBackwards=n,x.rendering=null,x.renderingStartTime=0,x.last=o,x.tail=a,x.tailMode=u,x.treeForkCount=h)}function op(e,n,a){var o=n.pendingProps,u=o.revealOrder,h=o.tail;o=o.children;var x=gt.current,E=(x&2)!==0;if(E?(x=x&1|2,n.flags|=128):x&=1,Te(gt,x),Rt(e,n,o,a),o=Pe?ha:0,!E&&e!==null&&(e.flags&128)!==0)e:for(e=n.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&ap(e,a,n);else if(e.tag===19)ap(e,a,n);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===n)break e;for(;e.sibling===null;){if(e.return===null||e.return===n)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}switch(u){case"forwards":for(a=n.child,u=null;a!==null;)e=a.alternate,e!==null&&nl(e)===null&&(u=a),a=a.sibling;a=u,a===null?(u=n.child,n.child=null):(u=a.sibling,a.sibling=null),zf(n,!1,u,a,h,o);break;case"backwards":case"unstable_legacy-backwards":for(a=null,u=n.child,n.child=null;u!==null;){if(e=u.alternate,e!==null&&nl(e)===null){n.child=u;break}e=u.sibling,u.sibling=a,a=u,u=e}zf(n,!0,a,null,h,o);break;case"together":zf(n,!1,null,null,void 0,o);break;default:n.memoizedState=null}return n.child}function hr(e,n,a){if(e!==null&&(n.dependencies=e.dependencies),Fr|=n.lanes,(a&n.childLanes)===0)if(e!==null){if(cs(e,n,a,!1),(a&n.childLanes)===0)return null}else return null;if(e!==null&&n.child!==e.child)throw Error(s(153));if(n.child!==null){for(e=n.child,a=ar(e,e.pendingProps),n.child=a,a.return=n;e.sibling!==null;)e=e.sibling,a=a.sibling=ar(e,e.pendingProps),a.return=n;a.sibling=null}return n.child}function If(e,n){return(e.lanes&n)!==0?!0:(e=e.dependencies,!!(e!==null&&Ko(e)))}function e_(e,n,a){switch(n.tag){case 3:qt(n,n.stateNode.containerInfo),Lr(n,vt,e.memoizedState.cache),Ai();break;case 27:case 5:Bt(n);break;case 4:qt(n,n.stateNode.containerInfo);break;case 10:Lr(n,n.type,n.memoizedProps.value);break;case 31:if(n.memoizedState!==null)return n.flags|=128,hf(n),null;break;case 13:var o=n.memoizedState;if(o!==null)return o.dehydrated!==null?(Ir(n),n.flags|=128,null):(a&n.child.childLanes)!==0?sp(e,n,a):(Ir(n),e=hr(e,n,a),e!==null?e.sibling:null);Ir(n);break;case 19:var u=(e.flags&128)!==0;if(o=(a&n.childLanes)!==0,o||(cs(e,n,a,!1),o=(a&n.childLanes)!==0),u){if(o)return op(e,n,a);n.flags|=128}if(u=n.memoizedState,u!==null&&(u.rendering=null,u.tail=null,u.lastEffect=null),Te(gt,gt.current),o)break;return null;case 22:return n.lanes=0,W0(e,n,a,n.pendingProps);case 24:Lr(n,vt,e.memoizedState.cache)}return hr(e,n,a)}function lp(e,n,a){if(e!==null)if(e.memoizedProps!==n.pendingProps)_t=!0;else{if(!If(e,a)&&(n.flags&128)===0)return _t=!1,e_(e,n,a);_t=(e.flags&131072)!==0}else _t=!1,Pe&&(n.flags&1048576)!==0&&zm(n,ha,n.index);switch(n.lanes=0,n.tag){case 16:e:{var o=n.pendingProps;if(e=ki(n.elementType),n.type=e,typeof e=="function")Fu(e)?(o=Di(e,o),n.tag=1,n=rp(null,n,e,o,a)):(n.tag=0,n=Df(null,n,e,o,a));else{if(e!=null){var u=e.$$typeof;if(u===ce){n.tag=11,n=J0(null,n,e,o,a);break e}else if(u===ie){n.tag=14,n=Q0(null,n,e,o,a);break e}}throw n=xe(e)||e,Error(s(306,n,""))}}return n;case 0:return Df(e,n,n.type,n.pendingProps,a);case 1:return o=n.type,u=Di(o,n.pendingProps),rp(e,n,o,u,a);case 3:e:{if(qt(n,n.stateNode.containerInfo),e===null)throw Error(s(387));o=n.pendingProps;var h=n.memoizedState;u=h.element,of(e,n),xa(n,o,null,a);var x=n.memoizedState;if(o=x.cache,Lr(n,vt,o),o!==h.cache&&ef(n,[vt],a,!0),va(),o=x.element,h.isDehydrated)if(h={element:o,isDehydrated:!1,cache:x.cache},n.updateQueue.baseState=h,n.memoizedState=h,n.flags&256){n=ip(e,n,o,a);break e}else if(o!==u){u=wn(Error(s(424)),n),da(u),n=ip(e,n,o,a);break e}else{switch(e=n.stateNode.containerInfo,e.nodeType){case 9:e=e.body;break;default:e=e.nodeName==="HTML"?e.ownerDocument.body:e}for(tt=jn(e.firstChild),Ct=n,Pe=!0,qr=null,On=!0,a=Wm(n,null,o,a),n.child=a;a;)a.flags=a.flags&-3|4096,a=a.sibling}else{if(Ai(),o===u){n=hr(e,n,a);break e}Rt(e,n,o,a)}n=n.child}return n;case 26:return dl(e,n),e===null?(a=vg(n.type,null,n.pendingProps,null))?n.memoizedState=a:Pe||(a=n.type,e=n.pendingProps,o=kl(lt.current).createElement(a),o[Qe]=n,o[ct]=e,Dt(o,a,e),D(o),n.stateNode=o):n.memoizedState=vg(n.type,e.memoizedProps,n.pendingProps,e.memoizedState),null;case 27:return Bt(n),e===null&&Pe&&(o=n.stateNode=gg(n.type,n.pendingProps,lt.current),Ct=n,On=!0,u=tt,Jr(n.type)?(xh=u,tt=jn(o.firstChild)):tt=u),Rt(e,n,n.pendingProps.children,a),dl(e,n),e===null&&(n.flags|=4194304),n.child;case 5:return e===null&&Pe&&((u=o=tt)&&(o=k_(o,n.type,n.pendingProps,On),o!==null?(n.stateNode=o,Ct=n,tt=jn(o.firstChild),On=!1,u=!0):u=!1),u||Br(n)),Bt(n),u=n.type,h=n.pendingProps,x=e!==null?e.memoizedProps:null,o=h.children,ph(u,h)?o=null:x!==null&&ph(u,x)&&(n.flags|=32),n.memoizedState!==null&&(u=mf(e,n,Fx,null,null,a),za._currentValue=u),dl(e,n),Rt(e,n,o,a),n.child;case 6:return e===null&&Pe&&((e=a=tt)&&(a=C_(a,n.pendingProps,On),a!==null?(n.stateNode=a,Ct=n,tt=null,e=!0):e=!1),e||Br(n)),null;case 13:return sp(e,n,a);case 4:return qt(n,n.stateNode.containerInfo),o=n.pendingProps,e===null?n.child=Mi(n,null,o,a):Rt(e,n,o,a),n.child;case 11:return J0(e,n,n.type,n.pendingProps,a);case 7:return Rt(e,n,n.pendingProps,a),n.child;case 8:return Rt(e,n,n.pendingProps.children,a),n.child;case 12:return Rt(e,n,n.pendingProps.children,a),n.child;case 10:return o=n.pendingProps,Lr(n,n.type,o.value),Rt(e,n,o.children,a),n.child;case 9:return u=n.type._context,o=n.pendingProps.children,Ni(n),u=Mt(u),o=o(u),n.flags|=1,Rt(e,n,o,a),n.child;case 14:return Q0(e,n,n.type,n.pendingProps,a);case 15:return Z0(e,n,n.type,n.pendingProps,a);case 19:return op(e,n,a);case 31:return Wx(e,n,a);case 22:return W0(e,n,a,n.pendingProps);case 24:return Ni(n),o=Mt(vt),e===null?(u=rf(),u===null&&(u=Ze,h=tf(),u.pooledCache=h,h.refCount++,h!==null&&(u.pooledCacheLanes|=a),u=h),n.memoizedState={parent:o,cache:u},af(n),Lr(n,vt,u)):((e.lanes&a)!==0&&(of(e,n),xa(n,null,null,a),va()),u=e.memoizedState,h=n.memoizedState,u.parent!==o?(u={parent:o,cache:o},n.memoizedState=u,n.lanes===0&&(n.memoizedState=n.updateQueue.baseState=u),Lr(n,vt,o)):(o=h.cache,Lr(n,vt,o),o!==u.cache&&ef(n,[vt],a,!0))),Rt(e,n,n.pendingProps.children,a),n.child;case 29:throw n.pendingProps}throw Error(s(156,n.tag))}function dr(e){e.flags|=4}function $f(e,n,a,o,u){if((n=(e.mode&32)!==0)&&(n=!1),n){if(e.flags|=16777216,(u&335544128)===u)if(e.stateNode.complete)e.flags|=8192;else if(qp())e.flags|=8192;else throw Ci=Zo,sf}else e.flags&=-16777217}function cp(e,n){if(n.type!=="stylesheet"||(n.state.loading&4)!==0)e.flags&=-16777217;else if(e.flags|=16777216,!Eg(n))if(qp())e.flags|=8192;else throw Ci=Zo,sf}function pl(e,n){n!==null&&(e.flags|=4),e.flags&16384&&(n=e.tag!==22?Xi():536870912,e.lanes|=n,_s|=n)}function Aa(e,n){if(!Pe)switch(e.tailMode){case"hidden":n=e.tail;for(var a=null;n!==null;)n.alternate!==null&&(a=n),n=n.sibling;a===null?e.tail=null:a.sibling=null;break;case"collapsed":a=e.tail;for(var o=null;a!==null;)a.alternate!==null&&(o=a),a=a.sibling;o===null?n||e.tail===null?e.tail=null:e.tail.sibling=null:o.sibling=null}}function nt(e){var n=e.alternate!==null&&e.alternate.child===e.child,a=0,o=0;if(n)for(var u=e.child;u!==null;)a|=u.lanes|u.childLanes,o|=u.subtreeFlags&65011712,o|=u.flags&65011712,u.return=e,u=u.sibling;else for(u=e.child;u!==null;)a|=u.lanes|u.childLanes,o|=u.subtreeFlags,o|=u.flags,u.return=e,u=u.sibling;return e.subtreeFlags|=o,e.childLanes=a,n}function t_(e,n,a){var o=n.pendingProps;switch(Xu(n),n.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return nt(n),null;case 1:return nt(n),null;case 3:return a=n.stateNode,o=null,e!==null&&(o=e.memoizedState.cache),n.memoizedState.cache!==o&&(n.flags|=2048),cr(vt),ke(),a.pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),(e===null||e.child===null)&&(ls(n)?dr(n):e===null||e.memoizedState.isDehydrated&&(n.flags&256)===0||(n.flags|=1024,Qu())),nt(n),null;case 26:var u=n.type,h=n.memoizedState;return e===null?(dr(n),h!==null?(nt(n),cp(n,h)):(nt(n),$f(n,u,null,o,a))):h?h!==e.memoizedState?(dr(n),nt(n),cp(n,h)):(nt(n),n.flags&=-16777217):(e=e.memoizedProps,e!==o&&dr(n),nt(n),$f(n,u,e,o,a)),null;case 27:if(di(n),a=lt.current,u=n.type,e!==null&&n.stateNode!=null)e.memoizedProps!==o&&dr(n);else{if(!o){if(n.stateNode===null)throw Error(s(166));return nt(n),null}e=We.current,ls(n)?$m(n):(e=gg(u,o,a),n.stateNode=e,dr(n))}return nt(n),null;case 5:if(di(n),u=n.type,e!==null&&n.stateNode!=null)e.memoizedProps!==o&&dr(n);else{if(!o){if(n.stateNode===null)throw Error(s(166));return nt(n),null}if(h=We.current,ls(n))$m(n);else{var x=kl(lt.current);switch(h){case 1:h=x.createElementNS("http://www.w3.org/2000/svg",u);break;case 2:h=x.createElementNS("http://www.w3.org/1998/Math/MathML",u);break;default:switch(u){case"svg":h=x.createElementNS("http://www.w3.org/2000/svg",u);break;case"math":h=x.createElementNS("http://www.w3.org/1998/Math/MathML",u);break;case"script":h=x.createElement("div"),h.innerHTML="<script><\/script>",h=h.removeChild(h.firstChild);break;case"select":h=typeof o.is=="string"?x.createElement("select",{is:o.is}):x.createElement("select"),o.multiple?h.multiple=!0:o.size&&(h.size=o.size);break;default:h=typeof o.is=="string"?x.createElement(u,{is:o.is}):x.createElement(u)}}h[Qe]=n,h[ct]=o;e:for(x=n.child;x!==null;){if(x.tag===5||x.tag===6)h.appendChild(x.stateNode);else if(x.tag!==4&&x.tag!==27&&x.child!==null){x.child.return=x,x=x.child;continue}if(x===n)break e;for(;x.sibling===null;){if(x.return===null||x.return===n)break e;x=x.return}x.sibling.return=x.return,x=x.sibling}n.stateNode=h;e:switch(Dt(h,u,o),u){case"button":case"input":case"select":case"textarea":o=!!o.autoFocus;break e;case"img":o=!0;break e;default:o=!1}o&&dr(n)}}return nt(n),$f(n,n.type,e===null?null:e.memoizedProps,n.pendingProps,a),null;case 6:if(e&&n.stateNode!=null)e.memoizedProps!==o&&dr(n);else{if(typeof o!="string"&&n.stateNode===null)throw Error(s(166));if(e=lt.current,ls(n)){if(e=n.stateNode,a=n.memoizedProps,o=null,u=Ct,u!==null)switch(u.tag){case 27:case 5:o=u.memoizedProps}e[Qe]=n,e=!!(e.nodeValue===a||o!==null&&o.suppressHydrationWarning===!0||sg(e.nodeValue,a)),e||Br(n,!0)}else e=kl(e).createTextNode(o),e[Qe]=n,n.stateNode=e}return nt(n),null;case 31:if(a=n.memoizedState,e===null||e.memoizedState!==null){if(o=ls(n),a!==null){if(e===null){if(!o)throw Error(s(318));if(e=n.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(s(557));e[Qe]=n}else Ai(),(n.flags&128)===0&&(n.memoizedState=null),n.flags|=4;nt(n),e=!1}else a=Qu(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=a),e=!0;if(!e)return n.flags&256?(rn(n),n):(rn(n),null);if((n.flags&128)!==0)throw Error(s(558))}return nt(n),null;case 13:if(o=n.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(u=ls(n),o!==null&&o.dehydrated!==null){if(e===null){if(!u)throw Error(s(318));if(u=n.memoizedState,u=u!==null?u.dehydrated:null,!u)throw Error(s(317));u[Qe]=n}else Ai(),(n.flags&128)===0&&(n.memoizedState=null),n.flags|=4;nt(n),u=!1}else u=Qu(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=u),u=!0;if(!u)return n.flags&256?(rn(n),n):(rn(n),null)}return rn(n),(n.flags&128)!==0?(n.lanes=a,n):(a=o!==null,e=e!==null&&e.memoizedState!==null,a&&(o=n.child,u=null,o.alternate!==null&&o.alternate.memoizedState!==null&&o.alternate.memoizedState.cachePool!==null&&(u=o.alternate.memoizedState.cachePool.pool),h=null,o.memoizedState!==null&&o.memoizedState.cachePool!==null&&(h=o.memoizedState.cachePool.pool),h!==u&&(o.flags|=2048)),a!==e&&a&&(n.child.flags|=8192),pl(n,n.updateQueue),nt(n),null);case 4:return ke(),e===null&&uh(n.stateNode.containerInfo),nt(n),null;case 10:return cr(n.type),nt(n),null;case 19:if(Se(gt),o=n.memoizedState,o===null)return nt(n),null;if(u=(n.flags&128)!==0,h=o.rendering,h===null)if(u)Aa(o,!1);else{if(ft!==0||e!==null&&(e.flags&128)!==0)for(e=n.child;e!==null;){if(h=nl(e),h!==null){for(n.flags|=128,Aa(o,!1),e=h.updateQueue,n.updateQueue=e,pl(n,e),n.subtreeFlags=0,e=a,a=n.child;a!==null;)Lm(a,e),a=a.sibling;return Te(gt,gt.current&1|2),Pe&&or(n,o.treeForkCount),n.child}e=e.sibling}o.tail!==null&&it()>xl&&(n.flags|=128,u=!0,Aa(o,!1),n.lanes=4194304)}else{if(!u)if(e=nl(h),e!==null){if(n.flags|=128,u=!0,e=e.updateQueue,n.updateQueue=e,pl(n,e),Aa(o,!0),o.tail===null&&o.tailMode==="hidden"&&!h.alternate&&!Pe)return nt(n),null}else 2*it()-o.renderingStartTime>xl&&a!==536870912&&(n.flags|=128,u=!0,Aa(o,!1),n.lanes=4194304);o.isBackwards?(h.sibling=n.child,n.child=h):(e=o.last,e!==null?e.sibling=h:n.child=h,o.last=h)}return o.tail!==null?(e=o.tail,o.rendering=e,o.tail=e.sibling,o.renderingStartTime=it(),e.sibling=null,a=gt.current,Te(gt,u?a&1|2:a&1),Pe&&or(n,o.treeForkCount),e):(nt(n),null);case 22:case 23:return rn(n),ff(),o=n.memoizedState!==null,e!==null?e.memoizedState!==null!==o&&(n.flags|=8192):o&&(n.flags|=8192),o?(a&536870912)!==0&&(n.flags&128)===0&&(nt(n),n.subtreeFlags&6&&(n.flags|=8192)):nt(n),a=n.updateQueue,a!==null&&pl(n,a.retryQueue),a=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(a=e.memoizedState.cachePool.pool),o=null,n.memoizedState!==null&&n.memoizedState.cachePool!==null&&(o=n.memoizedState.cachePool.pool),o!==a&&(n.flags|=2048),e!==null&&Se(Ti),null;case 24:return a=null,e!==null&&(a=e.memoizedState.cache),n.memoizedState.cache!==a&&(n.flags|=2048),cr(vt),nt(n),null;case 25:return null;case 30:return null}throw Error(s(156,n.tag))}function n_(e,n){switch(Xu(n),n.tag){case 1:return e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 3:return cr(vt),ke(),e=n.flags,(e&65536)!==0&&(e&128)===0?(n.flags=e&-65537|128,n):null;case 26:case 27:case 5:return di(n),null;case 31:if(n.memoizedState!==null){if(rn(n),n.alternate===null)throw Error(s(340));Ai()}return e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 13:if(rn(n),e=n.memoizedState,e!==null&&e.dehydrated!==null){if(n.alternate===null)throw Error(s(340));Ai()}return e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 19:return Se(gt),null;case 4:return ke(),null;case 10:return cr(n.type),null;case 22:case 23:return rn(n),ff(),e!==null&&Se(Ti),e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 24:return cr(vt),null;case 25:return null;default:return null}}function up(e,n){switch(Xu(n),n.tag){case 3:cr(vt),ke();break;case 26:case 27:case 5:di(n);break;case 4:ke();break;case 31:n.memoizedState!==null&&rn(n);break;case 13:rn(n);break;case 19:Se(gt);break;case 10:cr(n.type);break;case 22:case 23:rn(n),ff(),e!==null&&Se(Ti);break;case 24:cr(vt)}}function ja(e,n){try{var a=n.updateQueue,o=a!==null?a.lastEffect:null;if(o!==null){var u=o.next;a=u;do{if((a.tag&e)===e){o=void 0;var h=a.create,x=a.inst;o=h(),x.destroy=o}a=a.next}while(a!==u)}}catch(E){Ve(n,n.return,E)}}function Hr(e,n,a){try{var o=n.updateQueue,u=o!==null?o.lastEffect:null;if(u!==null){var h=u.next;o=h;do{if((o.tag&e)===e){var x=o.inst,E=x.destroy;if(E!==void 0){x.destroy=void 0,u=n;var R=a,H=E;try{H()}catch(Q){Ve(u,R,Q)}}}o=o.next}while(o!==h)}}catch(Q){Ve(n,n.return,Q)}}function fp(e){var n=e.updateQueue;if(n!==null){var a=e.stateNode;try{t0(n,a)}catch(o){Ve(e,e.return,o)}}}function hp(e,n,a){a.props=Di(e.type,e.memoizedProps),a.state=e.memoizedState;try{a.componentWillUnmount()}catch(o){Ve(e,n,o)}}function Na(e,n){try{var a=e.ref;if(a!==null){switch(e.tag){case 26:case 27:case 5:var o=e.stateNode;break;case 30:o=e.stateNode;break;default:o=e.stateNode}typeof a=="function"?e.refCleanup=a(o):a.current=o}}catch(u){Ve(e,n,u)}}function Yn(e,n){var a=e.ref,o=e.refCleanup;if(a!==null)if(typeof o=="function")try{o()}catch(u){Ve(e,n,u)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof a=="function")try{a(null)}catch(u){Ve(e,n,u)}else a.current=null}function dp(e){var n=e.type,a=e.memoizedProps,o=e.stateNode;try{e:switch(n){case"button":case"input":case"select":case"textarea":a.autoFocus&&o.focus();break e;case"img":a.src?o.src=a.src:a.srcSet&&(o.srcset=a.srcSet)}}catch(u){Ve(e,e.return,u)}}function Hf(e,n,a){try{var o=e.stateNode;E_(o,e.type,a,n),o[ct]=n}catch(u){Ve(e,e.return,u)}}function mp(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&Jr(e.type)||e.tag===4}function Gf(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||mp(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.tag===27&&Jr(e.type)||e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Ff(e,n,a){var o=e.tag;if(o===5||o===6)e=e.stateNode,n?(a.nodeType===9?a.body:a.nodeName==="HTML"?a.ownerDocument.body:a).insertBefore(e,n):(n=a.nodeType===9?a.body:a.nodeName==="HTML"?a.ownerDocument.body:a,n.appendChild(e),a=a._reactRootContainer,a!=null||n.onclick!==null||(n.onclick=ir));else if(o!==4&&(o===27&&Jr(e.type)&&(a=e.stateNode,n=null),e=e.child,e!==null))for(Ff(e,n,a),e=e.sibling;e!==null;)Ff(e,n,a),e=e.sibling}function gl(e,n,a){var o=e.tag;if(o===5||o===6)e=e.stateNode,n?a.insertBefore(e,n):a.appendChild(e);else if(o!==4&&(o===27&&Jr(e.type)&&(a=e.stateNode),e=e.child,e!==null))for(gl(e,n,a),e=e.sibling;e!==null;)gl(e,n,a),e=e.sibling}function pp(e){var n=e.stateNode,a=e.memoizedProps;try{for(var o=e.type,u=n.attributes;u.length;)n.removeAttributeNode(u[0]);Dt(n,o,a),n[Qe]=e,n[ct]=a}catch(h){Ve(e,e.return,h)}}var mr=!1,wt=!1,Vf=!1,gp=typeof WeakSet=="function"?WeakSet:Set,jt=null;function r_(e,n){if(e=e.containerInfo,dh=Ll,e=Nm(e),Pu(e)){if("selectionStart"in e)var a={start:e.selectionStart,end:e.selectionEnd};else e:{a=(a=e.ownerDocument)&&a.defaultView||window;var o=a.getSelection&&a.getSelection();if(o&&o.rangeCount!==0){a=o.anchorNode;var u=o.anchorOffset,h=o.focusNode;o=o.focusOffset;try{a.nodeType,h.nodeType}catch{a=null;break e}var x=0,E=-1,R=-1,H=0,Q=0,ne=e,F=null;t:for(;;){for(var K;ne!==a||u!==0&&ne.nodeType!==3||(E=x+u),ne!==h||o!==0&&ne.nodeType!==3||(R=x+o),ne.nodeType===3&&(x+=ne.nodeValue.length),(K=ne.firstChild)!==null;)F=ne,ne=K;for(;;){if(ne===e)break t;if(F===a&&++H===u&&(E=x),F===h&&++Q===o&&(R=x),(K=ne.nextSibling)!==null)break;ne=F,F=ne.parentNode}ne=K}a=E===-1||R===-1?null:{start:E,end:R}}else a=null}a=a||{start:0,end:0}}else a=null;for(mh={focusedElem:e,selectionRange:a},Ll=!1,jt=n;jt!==null;)if(n=jt,e=n.child,(n.subtreeFlags&1028)!==0&&e!==null)e.return=n,jt=e;else for(;jt!==null;){switch(n=jt,h=n.alternate,e=n.flags,n.tag){case 0:if((e&4)!==0&&(e=n.updateQueue,e=e!==null?e.events:null,e!==null))for(a=0;a<e.length;a++)u=e[a],u.ref.impl=u.nextImpl;break;case 11:case 15:break;case 1:if((e&1024)!==0&&h!==null){e=void 0,a=n,u=h.memoizedProps,h=h.memoizedState,o=a.stateNode;try{var ge=Di(a.type,u);e=o.getSnapshotBeforeUpdate(ge,h),o.__reactInternalSnapshotBeforeUpdate=e}catch(Ee){Ve(a,a.return,Ee)}}break;case 3:if((e&1024)!==0){if(e=n.stateNode.containerInfo,a=e.nodeType,a===9)yh(e);else if(a===1)switch(e.nodeName){case"HEAD":case"HTML":case"BODY":yh(e);break;default:e.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((e&1024)!==0)throw Error(s(163))}if(e=n.sibling,e!==null){e.return=n.return,jt=e;break}jt=n.return}}function yp(e,n,a){var o=a.flags;switch(a.tag){case 0:case 11:case 15:gr(e,a),o&4&&ja(5,a);break;case 1:if(gr(e,a),o&4)if(e=a.stateNode,n===null)try{e.componentDidMount()}catch(x){Ve(a,a.return,x)}else{var u=Di(a.type,n.memoizedProps);n=n.memoizedState;try{e.componentDidUpdate(u,n,e.__reactInternalSnapshotBeforeUpdate)}catch(x){Ve(a,a.return,x)}}o&64&&fp(a),o&512&&Na(a,a.return);break;case 3:if(gr(e,a),o&64&&(e=a.updateQueue,e!==null)){if(n=null,a.child!==null)switch(a.child.tag){case 27:case 5:n=a.child.stateNode;break;case 1:n=a.child.stateNode}try{t0(e,n)}catch(x){Ve(a,a.return,x)}}break;case 27:n===null&&o&4&&pp(a);case 26:case 5:gr(e,a),n===null&&o&4&&dp(a),o&512&&Na(a,a.return);break;case 12:gr(e,a);break;case 31:gr(e,a),o&4&&xp(e,a);break;case 13:gr(e,a),o&4&&_p(e,a),o&64&&(e=a.memoizedState,e!==null&&(e=e.dehydrated,e!==null&&(a=h_.bind(null,a),M_(e,a))));break;case 22:if(o=a.memoizedState!==null||mr,!o){n=n!==null&&n.memoizedState!==null||wt,u=mr;var h=wt;mr=o,(wt=n)&&!h?yr(e,a,(a.subtreeFlags&8772)!==0):gr(e,a),mr=u,wt=h}break;case 30:break;default:gr(e,a)}}function bp(e){var n=e.alternate;n!==null&&(e.alternate=null,bp(n)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(n=e.stateNode,n!==null&&Ji(n)),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}var st=null,Yt=!1;function pr(e,n,a){for(a=a.child;a!==null;)vp(e,n,a),a=a.sibling}function vp(e,n,a){if(pt&&typeof pt.onCommitFiberUnmount=="function")try{pt.onCommitFiberUnmount(pi,a)}catch{}switch(a.tag){case 26:wt||Yn(a,n),pr(e,n,a),a.memoizedState?a.memoizedState.count--:a.stateNode&&(a=a.stateNode,a.parentNode.removeChild(a));break;case 27:wt||Yn(a,n);var o=st,u=Yt;Jr(a.type)&&(st=a.stateNode,Yt=!1),pr(e,n,a),La(a.stateNode),st=o,Yt=u;break;case 5:wt||Yn(a,n);case 6:if(o=st,u=Yt,st=null,pr(e,n,a),st=o,Yt=u,st!==null)if(Yt)try{(st.nodeType===9?st.body:st.nodeName==="HTML"?st.ownerDocument.body:st).removeChild(a.stateNode)}catch(h){Ve(a,n,h)}else try{st.removeChild(a.stateNode)}catch(h){Ve(a,n,h)}break;case 18:st!==null&&(Yt?(e=st,fg(e.nodeType===9?e.body:e.nodeName==="HTML"?e.ownerDocument.body:e,a.stateNode),Ts(e)):fg(st,a.stateNode));break;case 4:o=st,u=Yt,st=a.stateNode.containerInfo,Yt=!0,pr(e,n,a),st=o,Yt=u;break;case 0:case 11:case 14:case 15:Hr(2,a,n),wt||Hr(4,a,n),pr(e,n,a);break;case 1:wt||(Yn(a,n),o=a.stateNode,typeof o.componentWillUnmount=="function"&&hp(a,n,o)),pr(e,n,a);break;case 21:pr(e,n,a);break;case 22:wt=(o=wt)||a.memoizedState!==null,pr(e,n,a),wt=o;break;default:pr(e,n,a)}}function xp(e,n){if(n.memoizedState===null&&(e=n.alternate,e!==null&&(e=e.memoizedState,e!==null))){e=e.dehydrated;try{Ts(e)}catch(a){Ve(n,n.return,a)}}}function _p(e,n){if(n.memoizedState===null&&(e=n.alternate,e!==null&&(e=e.memoizedState,e!==null&&(e=e.dehydrated,e!==null))))try{Ts(e)}catch(a){Ve(n,n.return,a)}}function i_(e){switch(e.tag){case 31:case 13:case 19:var n=e.stateNode;return n===null&&(n=e.stateNode=new gp),n;case 22:return e=e.stateNode,n=e._retryCache,n===null&&(n=e._retryCache=new gp),n;default:throw Error(s(435,e.tag))}}function yl(e,n){var a=i_(e);n.forEach(function(o){if(!a.has(o)){a.add(o);var u=d_.bind(null,e,o);o.then(u,u)}})}function Kt(e,n){var a=n.deletions;if(a!==null)for(var o=0;o<a.length;o++){var u=a[o],h=e,x=n,E=x;e:for(;E!==null;){switch(E.tag){case 27:if(Jr(E.type)){st=E.stateNode,Yt=!1;break e}break;case 5:st=E.stateNode,Yt=!1;break e;case 3:case 4:st=E.stateNode.containerInfo,Yt=!0;break e}E=E.return}if(st===null)throw Error(s(160));vp(h,x,u),st=null,Yt=!1,h=u.alternate,h!==null&&(h.return=null),u.return=null}if(n.subtreeFlags&13886)for(n=n.child;n!==null;)wp(n,e),n=n.sibling}var Bn=null;function wp(e,n){var a=e.alternate,o=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:Kt(n,e),Xt(e),o&4&&(Hr(3,e,e.return),ja(3,e),Hr(5,e,e.return));break;case 1:Kt(n,e),Xt(e),o&512&&(wt||a===null||Yn(a,a.return)),o&64&&mr&&(e=e.updateQueue,e!==null&&(o=e.callbacks,o!==null&&(a=e.shared.hiddenCallbacks,e.shared.hiddenCallbacks=a===null?o:a.concat(o))));break;case 26:var u=Bn;if(Kt(n,e),Xt(e),o&512&&(wt||a===null||Yn(a,a.return)),o&4){var h=a!==null?a.memoizedState:null;if(o=e.memoizedState,a===null)if(o===null)if(e.stateNode===null){e:{o=e.type,a=e.memoizedProps,u=u.ownerDocument||u;t:switch(o){case"title":h=u.getElementsByTagName("title")[0],(!h||h[Et]||h[Qe]||h.namespaceURI==="http://www.w3.org/2000/svg"||h.hasAttribute("itemprop"))&&(h=u.createElement(o),u.head.insertBefore(h,u.querySelector("head > title"))),Dt(h,o,a),h[Qe]=e,D(h),o=h;break e;case"link":var x=wg("link","href",u).get(o+(a.href||""));if(x){for(var E=0;E<x.length;E++)if(h=x[E],h.getAttribute("href")===(a.href==null||a.href===""?null:a.href)&&h.getAttribute("rel")===(a.rel==null?null:a.rel)&&h.getAttribute("title")===(a.title==null?null:a.title)&&h.getAttribute("crossorigin")===(a.crossOrigin==null?null:a.crossOrigin)){x.splice(E,1);break t}}h=u.createElement(o),Dt(h,o,a),u.head.appendChild(h);break;case"meta":if(x=wg("meta","content",u).get(o+(a.content||""))){for(E=0;E<x.length;E++)if(h=x[E],h.getAttribute("content")===(a.content==null?null:""+a.content)&&h.getAttribute("name")===(a.name==null?null:a.name)&&h.getAttribute("property")===(a.property==null?null:a.property)&&h.getAttribute("http-equiv")===(a.httpEquiv==null?null:a.httpEquiv)&&h.getAttribute("charset")===(a.charSet==null?null:a.charSet)){x.splice(E,1);break t}}h=u.createElement(o),Dt(h,o,a),u.head.appendChild(h);break;default:throw Error(s(468,o))}h[Qe]=e,D(h),o=h}e.stateNode=o}else Sg(u,e.type,e.stateNode);else e.stateNode=_g(u,o,e.memoizedProps);else h!==o?(h===null?a.stateNode!==null&&(a=a.stateNode,a.parentNode.removeChild(a)):h.count--,o===null?Sg(u,e.type,e.stateNode):_g(u,o,e.memoizedProps)):o===null&&e.stateNode!==null&&Hf(e,e.memoizedProps,a.memoizedProps)}break;case 27:Kt(n,e),Xt(e),o&512&&(wt||a===null||Yn(a,a.return)),a!==null&&o&4&&Hf(e,e.memoizedProps,a.memoizedProps);break;case 5:if(Kt(n,e),Xt(e),o&512&&(wt||a===null||Yn(a,a.return)),e.flags&32){u=e.stateNode;try{Zi(u,"")}catch(ge){Ve(e,e.return,ge)}}o&4&&e.stateNode!=null&&(u=e.memoizedProps,Hf(e,u,a!==null?a.memoizedProps:u)),o&1024&&(Vf=!0);break;case 6:if(Kt(n,e),Xt(e),o&4){if(e.stateNode===null)throw Error(s(162));o=e.memoizedProps,a=e.stateNode;try{a.nodeValue=o}catch(ge){Ve(e,e.return,ge)}}break;case 3:if(Rl=null,u=Bn,Bn=Cl(n.containerInfo),Kt(n,e),Bn=u,Xt(e),o&4&&a!==null&&a.memoizedState.isDehydrated)try{Ts(n.containerInfo)}catch(ge){Ve(e,e.return,ge)}Vf&&(Vf=!1,Sp(e));break;case 4:o=Bn,Bn=Cl(e.stateNode.containerInfo),Kt(n,e),Xt(e),Bn=o;break;case 12:Kt(n,e),Xt(e);break;case 31:Kt(n,e),Xt(e),o&4&&(o=e.updateQueue,o!==null&&(e.updateQueue=null,yl(e,o)));break;case 13:Kt(n,e),Xt(e),e.child.flags&8192&&e.memoizedState!==null!=(a!==null&&a.memoizedState!==null)&&(vl=it()),o&4&&(o=e.updateQueue,o!==null&&(e.updateQueue=null,yl(e,o)));break;case 22:u=e.memoizedState!==null;var R=a!==null&&a.memoizedState!==null,H=mr,Q=wt;if(mr=H||u,wt=Q||R,Kt(n,e),wt=Q,mr=H,Xt(e),o&8192)e:for(n=e.stateNode,n._visibility=u?n._visibility&-2:n._visibility|1,u&&(a===null||R||mr||wt||qi(e)),a=null,n=e;;){if(n.tag===5||n.tag===26){if(a===null){R=a=n;try{if(h=R.stateNode,u)x=h.style,typeof x.setProperty=="function"?x.setProperty("display","none","important"):x.display="none";else{E=R.stateNode;var ne=R.memoizedProps.style,F=ne!=null&&ne.hasOwnProperty("display")?ne.display:null;E.style.display=F==null||typeof F=="boolean"?"":(""+F).trim()}}catch(ge){Ve(R,R.return,ge)}}}else if(n.tag===6){if(a===null){R=n;try{R.stateNode.nodeValue=u?"":R.memoizedProps}catch(ge){Ve(R,R.return,ge)}}}else if(n.tag===18){if(a===null){R=n;try{var K=R.stateNode;u?hg(K,!0):hg(R.stateNode,!1)}catch(ge){Ve(R,R.return,ge)}}}else if((n.tag!==22&&n.tag!==23||n.memoizedState===null||n===e)&&n.child!==null){n.child.return=n,n=n.child;continue}if(n===e)break e;for(;n.sibling===null;){if(n.return===null||n.return===e)break e;a===n&&(a=null),n=n.return}a===n&&(a=null),n.sibling.return=n.return,n=n.sibling}o&4&&(o=e.updateQueue,o!==null&&(a=o.retryQueue,a!==null&&(o.retryQueue=null,yl(e,a))));break;case 19:Kt(n,e),Xt(e),o&4&&(o=e.updateQueue,o!==null&&(e.updateQueue=null,yl(e,o)));break;case 30:break;case 21:break;default:Kt(n,e),Xt(e)}}function Xt(e){var n=e.flags;if(n&2){try{for(var a,o=e.return;o!==null;){if(mp(o)){a=o;break}o=o.return}if(a==null)throw Error(s(160));switch(a.tag){case 27:var u=a.stateNode,h=Gf(e);gl(e,h,u);break;case 5:var x=a.stateNode;a.flags&32&&(Zi(x,""),a.flags&=-33);var E=Gf(e);gl(e,E,x);break;case 3:case 4:var R=a.stateNode.containerInfo,H=Gf(e);Ff(e,H,R);break;default:throw Error(s(161))}}catch(Q){Ve(e,e.return,Q)}e.flags&=-3}n&4096&&(e.flags&=-4097)}function Sp(e){if(e.subtreeFlags&1024)for(e=e.child;e!==null;){var n=e;Sp(n),n.tag===5&&n.flags&1024&&n.stateNode.reset(),e=e.sibling}}function gr(e,n){if(n.subtreeFlags&8772)for(n=n.child;n!==null;)yp(e,n.alternate,n),n=n.sibling}function qi(e){for(e=e.child;e!==null;){var n=e;switch(n.tag){case 0:case 11:case 14:case 15:Hr(4,n,n.return),qi(n);break;case 1:Yn(n,n.return);var a=n.stateNode;typeof a.componentWillUnmount=="function"&&hp(n,n.return,a),qi(n);break;case 27:La(n.stateNode);case 26:case 5:Yn(n,n.return),qi(n);break;case 22:n.memoizedState===null&&qi(n);break;case 30:qi(n);break;default:qi(n)}e=e.sibling}}function yr(e,n,a){for(a=a&&(n.subtreeFlags&8772)!==0,n=n.child;n!==null;){var o=n.alternate,u=e,h=n,x=h.flags;switch(h.tag){case 0:case 11:case 15:yr(u,h,a),ja(4,h);break;case 1:if(yr(u,h,a),o=h,u=o.stateNode,typeof u.componentDidMount=="function")try{u.componentDidMount()}catch(H){Ve(o,o.return,H)}if(o=h,u=o.updateQueue,u!==null){var E=o.stateNode;try{var R=u.shared.hiddenCallbacks;if(R!==null)for(u.shared.hiddenCallbacks=null,u=0;u<R.length;u++)e0(R[u],E)}catch(H){Ve(o,o.return,H)}}a&&x&64&&fp(h),Na(h,h.return);break;case 27:pp(h);case 26:case 5:yr(u,h,a),a&&o===null&&x&4&&dp(h),Na(h,h.return);break;case 12:yr(u,h,a);break;case 31:yr(u,h,a),a&&x&4&&xp(u,h);break;case 13:yr(u,h,a),a&&x&4&&_p(u,h);break;case 22:h.memoizedState===null&&yr(u,h,a),Na(h,h.return);break;case 30:break;default:yr(u,h,a)}n=n.sibling}}function Yf(e,n){var a=null;e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(a=e.memoizedState.cachePool.pool),e=null,n.memoizedState!==null&&n.memoizedState.cachePool!==null&&(e=n.memoizedState.cachePool.pool),e!==a&&(e!=null&&e.refCount++,a!=null&&ma(a))}function Kf(e,n){e=null,n.alternate!==null&&(e=n.alternate.memoizedState.cache),n=n.memoizedState.cache,n!==e&&(n.refCount++,e!=null&&ma(e))}function Ln(e,n,a,o){if(n.subtreeFlags&10256)for(n=n.child;n!==null;)Ep(e,n,a,o),n=n.sibling}function Ep(e,n,a,o){var u=n.flags;switch(n.tag){case 0:case 11:case 15:Ln(e,n,a,o),u&2048&&ja(9,n);break;case 1:Ln(e,n,a,o);break;case 3:Ln(e,n,a,o),u&2048&&(e=null,n.alternate!==null&&(e=n.alternate.memoizedState.cache),n=n.memoizedState.cache,n!==e&&(n.refCount++,e!=null&&ma(e)));break;case 12:if(u&2048){Ln(e,n,a,o),e=n.stateNode;try{var h=n.memoizedProps,x=h.id,E=h.onPostCommit;typeof E=="function"&&E(x,n.alternate===null?"mount":"update",e.passiveEffectDuration,-0)}catch(R){Ve(n,n.return,R)}}else Ln(e,n,a,o);break;case 31:Ln(e,n,a,o);break;case 13:Ln(e,n,a,o);break;case 23:break;case 22:h=n.stateNode,x=n.alternate,n.memoizedState!==null?h._visibility&2?Ln(e,n,a,o):Ta(e,n):h._visibility&2?Ln(e,n,a,o):(h._visibility|=2,bs(e,n,a,o,(n.subtreeFlags&10256)!==0||!1)),u&2048&&Yf(x,n);break;case 24:Ln(e,n,a,o),u&2048&&Kf(n.alternate,n);break;default:Ln(e,n,a,o)}}function bs(e,n,a,o,u){for(u=u&&((n.subtreeFlags&10256)!==0||!1),n=n.child;n!==null;){var h=e,x=n,E=a,R=o,H=x.flags;switch(x.tag){case 0:case 11:case 15:bs(h,x,E,R,u),ja(8,x);break;case 23:break;case 22:var Q=x.stateNode;x.memoizedState!==null?Q._visibility&2?bs(h,x,E,R,u):Ta(h,x):(Q._visibility|=2,bs(h,x,E,R,u)),u&&H&2048&&Yf(x.alternate,x);break;case 24:bs(h,x,E,R,u),u&&H&2048&&Kf(x.alternate,x);break;default:bs(h,x,E,R,u)}n=n.sibling}}function Ta(e,n){if(n.subtreeFlags&10256)for(n=n.child;n!==null;){var a=e,o=n,u=o.flags;switch(o.tag){case 22:Ta(a,o),u&2048&&Yf(o.alternate,o);break;case 24:Ta(a,o),u&2048&&Kf(o.alternate,o);break;default:Ta(a,o)}n=n.sibling}}var ka=8192;function vs(e,n,a){if(e.subtreeFlags&ka)for(e=e.child;e!==null;)Op(e,n,a),e=e.sibling}function Op(e,n,a){switch(e.tag){case 26:vs(e,n,a),e.flags&ka&&e.memoizedState!==null&&G_(a,Bn,e.memoizedState,e.memoizedProps);break;case 5:vs(e,n,a);break;case 3:case 4:var o=Bn;Bn=Cl(e.stateNode.containerInfo),vs(e,n,a),Bn=o;break;case 22:e.memoizedState===null&&(o=e.alternate,o!==null&&o.memoizedState!==null?(o=ka,ka=16777216,vs(e,n,a),ka=o):vs(e,n,a));break;default:vs(e,n,a)}}function Ap(e){var n=e.alternate;if(n!==null&&(e=n.child,e!==null)){n.child=null;do n=e.sibling,e.sibling=null,e=n;while(e!==null)}}function Ca(e){var n=e.deletions;if((e.flags&16)!==0){if(n!==null)for(var a=0;a<n.length;a++){var o=n[a];jt=o,Np(o,e)}Ap(e)}if(e.subtreeFlags&10256)for(e=e.child;e!==null;)jp(e),e=e.sibling}function jp(e){switch(e.tag){case 0:case 11:case 15:Ca(e),e.flags&2048&&Hr(9,e,e.return);break;case 3:Ca(e);break;case 12:Ca(e);break;case 22:var n=e.stateNode;e.memoizedState!==null&&n._visibility&2&&(e.return===null||e.return.tag!==13)?(n._visibility&=-3,bl(e)):Ca(e);break;default:Ca(e)}}function bl(e){var n=e.deletions;if((e.flags&16)!==0){if(n!==null)for(var a=0;a<n.length;a++){var o=n[a];jt=o,Np(o,e)}Ap(e)}for(e=e.child;e!==null;){switch(n=e,n.tag){case 0:case 11:case 15:Hr(8,n,n.return),bl(n);break;case 22:a=n.stateNode,a._visibility&2&&(a._visibility&=-3,bl(n));break;default:bl(n)}e=e.sibling}}function Np(e,n){for(;jt!==null;){var a=jt;switch(a.tag){case 0:case 11:case 15:Hr(8,a,n);break;case 23:case 22:if(a.memoizedState!==null&&a.memoizedState.cachePool!==null){var o=a.memoizedState.cachePool.pool;o!=null&&o.refCount++}break;case 24:ma(a.memoizedState.cache)}if(o=a.child,o!==null)o.return=a,jt=o;else e:for(a=e;jt!==null;){o=jt;var u=o.sibling,h=o.return;if(bp(o),o===a){jt=null;break e}if(u!==null){u.return=h,jt=u;break e}jt=h}}}var s_={getCacheForType:function(e){var n=Mt(vt),a=n.data.get(e);return a===void 0&&(a=e(),n.data.set(e,a)),a},cacheSignal:function(){return Mt(vt).controller.signal}},a_=typeof WeakMap=="function"?WeakMap:Map,Ge=0,Ze=null,De=null,Be=0,Fe=0,sn=null,Gr=!1,xs=!1,Xf=!1,br=0,ft=0,Fr=0,Bi=0,Jf=0,an=0,_s=0,Ma=null,Jt=null,Qf=!1,vl=0,Tp=0,xl=1/0,_l=null,Vr=null,Ot=0,Yr=null,ws=null,vr=0,Zf=0,Wf=null,kp=null,Ra=0,eh=null;function on(){return(Ge&2)!==0&&Be!==0?Be&-Be:Y.T!==null?ah():ta()}function Cp(){if(an===0)if((Be&536870912)===0||Pe){var e=tr;tr<<=1,(tr&3932160)===0&&(tr=262144),an=e}else an=536870912;return e=nn.current,e!==null&&(e.flags|=32),an}function Qt(e,n,a){(e===Ze&&(Fe===2||Fe===9)||e.cancelPendingCommit!==null)&&(Ss(e,0),Kr(e,Be,an,!1)),Rn(e,a),((Ge&2)===0||e!==Ze)&&(e===Ze&&((Ge&2)===0&&(Bi|=a),ft===4&&Kr(e,Be,an,!1)),Kn(e))}function Mp(e,n,a){if((Ge&6)!==0)throw Error(s(327));var o=!a&&(n&127)===0&&(n&e.expiredLanes)===0||yi(e,n),u=o?c_(e,n):nh(e,n,!0),h=o;do{if(u===0){xs&&!o&&Kr(e,n,0,!1);break}else{if(a=e.current.alternate,h&&!o_(a)){u=nh(e,n,!1),h=!1;continue}if(u===2){if(h=n,e.errorRecoveryDisabledLanes&h)var x=0;else x=e.pendingLanes&-536870913,x=x!==0?x:x&536870912?536870912:0;if(x!==0){n=x;e:{var E=e;u=Ma;var R=E.current.memoizedState.isDehydrated;if(R&&(Ss(E,x).flags|=256),x=nh(E,x,!1),x!==2){if(Xf&&!R){E.errorRecoveryDisabledLanes|=h,Bi|=h,u=4;break e}h=Jt,Jt=u,h!==null&&(Jt===null?Jt=h:Jt.push.apply(Jt,h))}u=x}if(h=!1,u!==2)continue}}if(u===1){Ss(e,0),Kr(e,n,0,!0);break}e:{switch(o=e,h=u,h){case 0:case 1:throw Error(s(345));case 4:if((n&4194048)!==n)break;case 6:Kr(o,n,an,!Gr);break e;case 2:Jt=null;break;case 3:case 5:break;default:throw Error(s(329))}if((n&62914560)===n&&(u=vl+300-it(),10<u)){if(Kr(o,n,an,!Gr),gi(o,0,!0)!==0)break e;vr=n,o.timeoutHandle=cg(Rp.bind(null,o,a,Jt,_l,Qf,n,an,Bi,_s,Gr,h,"Throttled",-0,0),u);break e}Rp(o,a,Jt,_l,Qf,n,an,Bi,_s,Gr,h,null,-0,0)}}break}while(!0);Kn(e)}function Rp(e,n,a,o,u,h,x,E,R,H,Q,ne,F,K){if(e.timeoutHandle=-1,ne=n.subtreeFlags,ne&8192||(ne&16785408)===16785408){ne={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:ir},Op(n,h,ne);var ge=(h&62914560)===h?vl-it():(h&4194048)===h?Tp-it():0;if(ge=F_(ne,ge),ge!==null){vr=h,e.cancelPendingCommit=ge(Ip.bind(null,e,n,h,a,o,u,x,E,R,Q,ne,null,F,K)),Kr(e,h,x,!H);return}}Ip(e,n,h,a,o,u,x,E,R)}function o_(e){for(var n=e;;){var a=n.tag;if((a===0||a===11||a===15)&&n.flags&16384&&(a=n.updateQueue,a!==null&&(a=a.stores,a!==null)))for(var o=0;o<a.length;o++){var u=a[o],h=u.getSnapshot;u=u.value;try{if(!en(h(),u))return!1}catch{return!1}}if(a=n.child,n.subtreeFlags&16384&&a!==null)a.return=n,n=a;else{if(n===e)break;for(;n.sibling===null;){if(n.return===null||n.return===e)return!0;n=n.return}n.sibling.return=n.return,n=n.sibling}}return!0}function Kr(e,n,a,o){n&=~Jf,n&=~Bi,e.suspendedLanes|=n,e.pingedLanes&=~n,o&&(e.warmLanes|=n),o=e.expirationTimes;for(var u=n;0<u;){var h=31-Lt(u),x=1<<h;o[h]=-1,u&=~x}a!==0&&Cr(e,a,n)}function wl(){return(Ge&6)===0?(Da(0),!1):!0}function th(){if(De!==null){if(Fe===0)var e=De.return;else e=De,lr=ji=null,yf(e),ds=null,ga=0,e=De;for(;e!==null;)up(e.alternate,e),e=e.return;De=null}}function Ss(e,n){var a=e.timeoutHandle;a!==-1&&(e.timeoutHandle=-1,j_(a)),a=e.cancelPendingCommit,a!==null&&(e.cancelPendingCommit=null,a()),vr=0,th(),Ze=e,De=a=ar(e.current,null),Be=n,Fe=0,sn=null,Gr=!1,xs=yi(e,n),Xf=!1,_s=an=Jf=Bi=Fr=ft=0,Jt=Ma=null,Qf=!1,(n&8)!==0&&(n|=n&32);var o=e.entangledLanes;if(o!==0)for(e=e.entanglements,o&=n;0<o;){var u=31-Lt(o),h=1<<u;n|=e[u],o&=~h}return br=n,Ho(),a}function Dp(e,n){Ce=null,Y.H=Ea,n===hs||n===Qo?(n=Jm(),Fe=3):n===sf?(n=Jm(),Fe=4):Fe=n===Rf?8:n!==null&&typeof n=="object"&&typeof n.then=="function"?6:1,sn=n,De===null&&(ft=1,fl(e,wn(n,e.current)))}function qp(){var e=nn.current;return e===null?!0:(Be&4194048)===Be?An===null:(Be&62914560)===Be||(Be&536870912)!==0?e===An:!1}function Bp(){var e=Y.H;return Y.H=Ea,e===null?Ea:e}function Lp(){var e=Y.A;return Y.A=s_,e}function Sl(){ft=4,Gr||(Be&4194048)!==Be&&nn.current!==null||(xs=!0),(Fr&134217727)===0&&(Bi&134217727)===0||Ze===null||Kr(Ze,Be,an,!1)}function nh(e,n,a){var o=Ge;Ge|=2;var u=Bp(),h=Lp();(Ze!==e||Be!==n)&&(_l=null,Ss(e,n)),n=!1;var x=ft;e:do try{if(Fe!==0&&De!==null){var E=De,R=sn;switch(Fe){case 8:th(),x=6;break e;case 3:case 2:case 9:case 6:nn.current===null&&(n=!0);var H=Fe;if(Fe=0,sn=null,Es(e,E,R,H),a&&xs){x=0;break e}break;default:H=Fe,Fe=0,sn=null,Es(e,E,R,H)}}l_(),x=ft;break}catch(Q){Dp(e,Q)}while(!0);return n&&e.shellSuspendCounter++,lr=ji=null,Ge=o,Y.H=u,Y.A=h,De===null&&(Ze=null,Be=0,Ho()),x}function l_(){for(;De!==null;)Pp(De)}function c_(e,n){var a=Ge;Ge|=2;var o=Bp(),u=Lp();Ze!==e||Be!==n?(_l=null,xl=it()+500,Ss(e,n)):xs=yi(e,n);e:do try{if(Fe!==0&&De!==null){n=De;var h=sn;t:switch(Fe){case 1:Fe=0,sn=null,Es(e,n,h,1);break;case 2:case 9:if(Km(h)){Fe=0,sn=null,Up(n);break}n=function(){Fe!==2&&Fe!==9||Ze!==e||(Fe=7),Kn(e)},h.then(n,n);break e;case 3:Fe=7;break e;case 4:Fe=5;break e;case 7:Km(h)?(Fe=0,sn=null,Up(n)):(Fe=0,sn=null,Es(e,n,h,7));break;case 5:var x=null;switch(De.tag){case 26:x=De.memoizedState;case 5:case 27:var E=De;if(x?Eg(x):E.stateNode.complete){Fe=0,sn=null;var R=E.sibling;if(R!==null)De=R;else{var H=E.return;H!==null?(De=H,El(H)):De=null}break t}}Fe=0,sn=null,Es(e,n,h,5);break;case 6:Fe=0,sn=null,Es(e,n,h,6);break;case 8:th(),ft=6;break e;default:throw Error(s(462))}}u_();break}catch(Q){Dp(e,Q)}while(!0);return lr=ji=null,Y.H=o,Y.A=u,Ge=a,De!==null?0:(Ze=null,Be=0,Ho(),ft)}function u_(){for(;De!==null&&!Ao();)Pp(De)}function Pp(e){var n=lp(e.alternate,e,br);e.memoizedProps=e.pendingProps,n===null?El(e):De=n}function Up(e){var n=e,a=n.alternate;switch(n.tag){case 15:case 0:n=np(a,n,n.pendingProps,n.type,void 0,Be);break;case 11:n=np(a,n,n.pendingProps,n.type.render,n.ref,Be);break;case 5:yf(n);default:up(a,n),n=De=Lm(n,br),n=lp(a,n,br)}e.memoizedProps=e.pendingProps,n===null?El(e):De=n}function Es(e,n,a,o){lr=ji=null,yf(n),ds=null,ga=0;var u=n.return;try{if(Zx(e,u,n,a,Be)){ft=1,fl(e,wn(a,e.current)),De=null;return}}catch(h){if(u!==null)throw De=u,h;ft=1,fl(e,wn(a,e.current)),De=null;return}n.flags&32768?(Pe||o===1?e=!0:xs||(Be&536870912)!==0?e=!1:(Gr=e=!0,(o===2||o===9||o===3||o===6)&&(o=nn.current,o!==null&&o.tag===13&&(o.flags|=16384))),zp(n,e)):El(n)}function El(e){var n=e;do{if((n.flags&32768)!==0){zp(n,Gr);return}e=n.return;var a=t_(n.alternate,n,br);if(a!==null){De=a;return}if(n=n.sibling,n!==null){De=n;return}De=n=e}while(n!==null);ft===0&&(ft=5)}function zp(e,n){do{var a=n_(e.alternate,e);if(a!==null){a.flags&=32767,De=a;return}if(a=e.return,a!==null&&(a.flags|=32768,a.subtreeFlags=0,a.deletions=null),!n&&(e=e.sibling,e!==null)){De=e;return}De=e=a}while(e!==null);ft=6,De=null}function Ip(e,n,a,o,u,h,x,E,R){e.cancelPendingCommit=null;do Ol();while(Ot!==0);if((Ge&6)!==0)throw Error(s(327));if(n!==null){if(n===e.current)throw Error(s(177));if(h=n.lanes|n.childLanes,h|=Hu,kr(e,a,h,x,E,R),e===Ze&&(De=Ze=null,Be=0),ws=n,Yr=e,vr=a,Zf=h,Wf=u,kp=o,(n.subtreeFlags&10256)!==0||(n.flags&10256)!==0?(e.callbackNode=null,e.callbackPriority=0,m_(Yi,function(){return Vp(),null})):(e.callbackNode=null,e.callbackPriority=0),o=(n.flags&13878)!==0,(n.subtreeFlags&13878)!==0||o){o=Y.T,Y.T=null,u=ae.p,ae.p=2,x=Ge,Ge|=4;try{r_(e,n,a)}finally{Ge=x,ae.p=u,Y.T=o}}Ot=1,$p(),Hp(),Gp()}}function $p(){if(Ot===1){Ot=0;var e=Yr,n=ws,a=(n.flags&13878)!==0;if((n.subtreeFlags&13878)!==0||a){a=Y.T,Y.T=null;var o=ae.p;ae.p=2;var u=Ge;Ge|=4;try{wp(n,e);var h=mh,x=Nm(e.containerInfo),E=h.focusedElem,R=h.selectionRange;if(x!==E&&E&&E.ownerDocument&&jm(E.ownerDocument.documentElement,E)){if(R!==null&&Pu(E)){var H=R.start,Q=R.end;if(Q===void 0&&(Q=H),"selectionStart"in E)E.selectionStart=H,E.selectionEnd=Math.min(Q,E.value.length);else{var ne=E.ownerDocument||document,F=ne&&ne.defaultView||window;if(F.getSelection){var K=F.getSelection(),ge=E.textContent.length,Ee=Math.min(R.start,ge),Je=R.end===void 0?Ee:Math.min(R.end,ge);!K.extend&&Ee>Je&&(x=Je,Je=Ee,Ee=x);var z=Am(E,Ee),q=Am(E,Je);if(z&&q&&(K.rangeCount!==1||K.anchorNode!==z.node||K.anchorOffset!==z.offset||K.focusNode!==q.node||K.focusOffset!==q.offset)){var $=ne.createRange();$.setStart(z.node,z.offset),K.removeAllRanges(),Ee>Je?(K.addRange($),K.extend(q.node,q.offset)):($.setEnd(q.node,q.offset),K.addRange($))}}}}for(ne=[],K=E;K=K.parentNode;)K.nodeType===1&&ne.push({element:K,left:K.scrollLeft,top:K.scrollTop});for(typeof E.focus=="function"&&E.focus(),E=0;E<ne.length;E++){var Z=ne[E];Z.element.scrollLeft=Z.left,Z.element.scrollTop=Z.top}}Ll=!!dh,mh=dh=null}finally{Ge=u,ae.p=o,Y.T=a}}e.current=n,Ot=2}}function Hp(){if(Ot===2){Ot=0;var e=Yr,n=ws,a=(n.flags&8772)!==0;if((n.subtreeFlags&8772)!==0||a){a=Y.T,Y.T=null;var o=ae.p;ae.p=2;var u=Ge;Ge|=4;try{yp(e,n.alternate,n)}finally{Ge=u,ae.p=o,Y.T=a}}Ot=3}}function Gp(){if(Ot===4||Ot===3){Ot=0,Vi();var e=Yr,n=ws,a=vr,o=kp;(n.subtreeFlags&10256)!==0||(n.flags&10256)!==0?Ot=5:(Ot=0,ws=Yr=null,Fp(e,e.pendingLanes));var u=e.pendingLanes;if(u===0&&(Vr=null),vi(a),n=n.stateNode,pt&&typeof pt.onCommitFiberRoot=="function")try{pt.onCommitFiberRoot(pi,n,void 0,(n.current.flags&128)===128)}catch{}if(o!==null){n=Y.T,u=ae.p,ae.p=2,Y.T=null;try{for(var h=e.onRecoverableError,x=0;x<o.length;x++){var E=o[x];h(E.value,{componentStack:E.stack})}}finally{Y.T=n,ae.p=u}}(vr&3)!==0&&Ol(),Kn(e),u=e.pendingLanes,(a&261930)!==0&&(u&42)!==0?e===eh?Ra++:(Ra=0,eh=e):Ra=0,Da(0)}}function Fp(e,n){(e.pooledCacheLanes&=n)===0&&(n=e.pooledCache,n!=null&&(e.pooledCache=null,ma(n)))}function Ol(){return $p(),Hp(),Gp(),Vp()}function Vp(){if(Ot!==5)return!1;var e=Yr,n=Zf;Zf=0;var a=vi(vr),o=Y.T,u=ae.p;try{ae.p=32>a?32:a,Y.T=null,a=Wf,Wf=null;var h=Yr,x=vr;if(Ot=0,ws=Yr=null,vr=0,(Ge&6)!==0)throw Error(s(331));var E=Ge;if(Ge|=4,jp(h.current),Ep(h,h.current,x,a),Ge=E,Da(0,!1),pt&&typeof pt.onPostCommitFiberRoot=="function")try{pt.onPostCommitFiberRoot(pi,h)}catch{}return!0}finally{ae.p=u,Y.T=o,Fp(e,n)}}function Yp(e,n,a){n=wn(a,n),n=Mf(e.stateNode,n,2),e=zr(e,n,2),e!==null&&(Rn(e,2),Kn(e))}function Ve(e,n,a){if(e.tag===3)Yp(e,e,a);else for(;n!==null;){if(n.tag===3){Yp(n,e,a);break}else if(n.tag===1){var o=n.stateNode;if(typeof n.type.getDerivedStateFromError=="function"||typeof o.componentDidCatch=="function"&&(Vr===null||!Vr.has(o))){e=wn(a,e),a=K0(2),o=zr(n,a,2),o!==null&&(X0(a,o,n,e),Rn(o,2),Kn(o));break}}n=n.return}}function rh(e,n,a){var o=e.pingCache;if(o===null){o=e.pingCache=new a_;var u=new Set;o.set(n,u)}else u=o.get(n),u===void 0&&(u=new Set,o.set(n,u));u.has(a)||(Xf=!0,u.add(a),e=f_.bind(null,e,n,a),n.then(e,e))}function f_(e,n,a){var o=e.pingCache;o!==null&&o.delete(n),e.pingedLanes|=e.suspendedLanes&a,e.warmLanes&=~a,Ze===e&&(Be&a)===a&&(ft===4||ft===3&&(Be&62914560)===Be&&300>it()-vl?(Ge&2)===0&&Ss(e,0):Jf|=a,_s===Be&&(_s=0)),Kn(e)}function Kp(e,n){n===0&&(n=Xi()),e=Ei(e,n),e!==null&&(Rn(e,n),Kn(e))}function h_(e){var n=e.memoizedState,a=0;n!==null&&(a=n.retryLane),Kp(e,a)}function d_(e,n){var a=0;switch(e.tag){case 31:case 13:var o=e.stateNode,u=e.memoizedState;u!==null&&(a=u.retryLane);break;case 19:o=e.stateNode;break;case 22:o=e.stateNode._retryCache;break;default:throw Error(s(314))}o!==null&&o.delete(n),Kp(e,a)}function m_(e,n){return Qs(e,n)}var Al=null,Os=null,ih=!1,jl=!1,sh=!1,Xr=0;function Kn(e){e!==Os&&e.next===null&&(Os===null?Al=Os=e:Os=Os.next=e),jl=!0,ih||(ih=!0,g_())}function Da(e,n){if(!sh&&jl){sh=!0;do for(var a=!1,o=Al;o!==null;){if(e!==0){var u=o.pendingLanes;if(u===0)var h=0;else{var x=o.suspendedLanes,E=o.pingedLanes;h=(1<<31-Lt(42|e)+1)-1,h&=u&~(x&~E),h=h&201326741?h&201326741|1:h?h|2:0}h!==0&&(a=!0,Zp(o,h))}else h=Be,h=gi(o,o===Ze?h:0,o.cancelPendingCommit!==null||o.timeoutHandle!==-1),(h&3)===0||yi(o,h)||(a=!0,Zp(o,h));o=o.next}while(a);sh=!1}}function p_(){Xp()}function Xp(){jl=ih=!1;var e=0;Xr!==0&&A_()&&(e=Xr);for(var n=it(),a=null,o=Al;o!==null;){var u=o.next,h=Jp(o,n);h===0?(o.next=null,a===null?Al=u:a.next=u,u===null&&(Os=a)):(a=o,(e!==0||(h&3)!==0)&&(jl=!0)),o=u}Ot!==0&&Ot!==5||Da(e),Xr!==0&&(Xr=0)}function Jp(e,n){for(var a=e.suspendedLanes,o=e.pingedLanes,u=e.expirationTimes,h=e.pendingLanes&-62914561;0<h;){var x=31-Lt(h),E=1<<x,R=u[x];R===-1?((E&a)===0||(E&o)!==0)&&(u[x]=ea(E,n)):R<=n&&(e.expiredLanes|=E),h&=~E}if(n=Ze,a=Be,a=gi(e,e===n?a:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),o=e.callbackNode,a===0||e===n&&(Fe===2||Fe===9)||e.cancelPendingCommit!==null)return o!==null&&o!==null&&er(o),e.callbackNode=null,e.callbackPriority=0;if((a&3)===0||yi(e,a)){if(n=a&-a,n===e.callbackPriority)return n;switch(o!==null&&er(o),vi(a)){case 2:case 8:a=No;break;case 32:a=Yi;break;case 268435456:a=To;break;default:a=Yi}return o=Qp.bind(null,e),a=Qs(a,o),e.callbackPriority=n,e.callbackNode=a,n}return o!==null&&o!==null&&er(o),e.callbackPriority=2,e.callbackNode=null,2}function Qp(e,n){if(Ot!==0&&Ot!==5)return e.callbackNode=null,e.callbackPriority=0,null;var a=e.callbackNode;if(Ol()&&e.callbackNode!==a)return null;var o=Be;return o=gi(e,e===Ze?o:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),o===0?null:(Mp(e,o,n),Jp(e,it()),e.callbackNode!=null&&e.callbackNode===a?Qp.bind(null,e):null)}function Zp(e,n){if(Ol())return null;Mp(e,n,!0)}function g_(){N_(function(){(Ge&6)!==0?Qs(jo,p_):Xp()})}function ah(){if(Xr===0){var e=us;e===0&&(e=jr,jr<<=1,(jr&261888)===0&&(jr=256)),Xr=e}return Xr}function Wp(e){return e==null||typeof e=="symbol"||typeof e=="boolean"?null:typeof e=="function"?e:qo(""+e)}function eg(e,n){var a=n.ownerDocument.createElement("input");return a.name=n.name,a.value=n.value,e.id&&a.setAttribute("form",e.id),n.parentNode.insertBefore(a,n),e=new FormData(e),a.parentNode.removeChild(a),e}function y_(e,n,a,o,u){if(n==="submit"&&a&&a.stateNode===u){var h=Wp((u[ct]||null).action),x=o.submitter;x&&(n=(n=x[ct]||null)?Wp(n.formAction):x.getAttribute("formAction"),n!==null&&(h=n,x=null));var E=new Uo("action","action",null,o,u);e.push({event:E,listeners:[{instance:null,listener:function(){if(o.defaultPrevented){if(Xr!==0){var R=x?eg(u,x):new FormData(u);Af(a,{pending:!0,data:R,method:u.method,action:h},null,R)}}else typeof h=="function"&&(E.preventDefault(),R=x?eg(u,x):new FormData(u),Af(a,{pending:!0,data:R,method:u.method,action:h},h,R))},currentTarget:u}]})}}for(var oh=0;oh<$u.length;oh++){var lh=$u[oh],b_=lh.toLowerCase(),v_=lh[0].toUpperCase()+lh.slice(1);qn(b_,"on"+v_)}qn(Cm,"onAnimationEnd"),qn(Mm,"onAnimationIteration"),qn(Rm,"onAnimationStart"),qn("dblclick","onDoubleClick"),qn("focusin","onFocus"),qn("focusout","onBlur"),qn(qx,"onTransitionRun"),qn(Bx,"onTransitionStart"),qn(Lx,"onTransitionCancel"),qn(Dm,"onTransitionEnd"),V("onMouseEnter",["mouseout","mouseover"]),V("onMouseLeave",["mouseout","mouseover"]),V("onPointerEnter",["pointerout","pointerover"]),V("onPointerLeave",["pointerout","pointerover"]),se("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),se("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),se("onBeforeInput",["compositionend","keypress","textInput","paste"]),se("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),se("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),se("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var qa="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),x_=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(qa));function tg(e,n){n=(n&4)!==0;for(var a=0;a<e.length;a++){var o=e[a],u=o.event;o=o.listeners;e:{var h=void 0;if(n)for(var x=o.length-1;0<=x;x--){var E=o[x],R=E.instance,H=E.currentTarget;if(E=E.listener,R!==h&&u.isPropagationStopped())break e;h=E,u.currentTarget=H;try{h(u)}catch(Q){$o(Q)}u.currentTarget=null,h=R}else for(x=0;x<o.length;x++){if(E=o[x],R=E.instance,H=E.currentTarget,E=E.listener,R!==h&&u.isPropagationStopped())break e;h=E,u.currentTarget=H;try{h(u)}catch(Q){$o(Q)}u.currentTarget=null,h=R}}}}function qe(e,n){var a=n[xi];a===void 0&&(a=n[xi]=new Set);var o=e+"__bubble";a.has(o)||(ng(n,e,2,!1),a.add(o))}function ch(e,n,a){var o=0;n&&(o|=4),ng(a,e,o,n)}var Nl="_reactListening"+Math.random().toString(36).slice(2);function uh(e){if(!e[Nl]){e[Nl]=!0,I.forEach(function(a){a!=="selectionchange"&&(x_.has(a)||ch(a,!1,e),ch(a,!0,e))});var n=e.nodeType===9?e:e.ownerDocument;n===null||n[Nl]||(n[Nl]=!0,ch("selectionchange",!1,n))}}function ng(e,n,a,o){switch(Cg(n)){case 2:var u=K_;break;case 8:u=X_;break;default:u=Oh}a=u.bind(null,n,a,e),u=void 0,!Tu||n!=="touchstart"&&n!=="touchmove"&&n!=="wheel"||(u=!0),o?u!==void 0?e.addEventListener(n,a,{capture:!0,passive:u}):e.addEventListener(n,a,!0):u!==void 0?e.addEventListener(n,a,{passive:u}):e.addEventListener(n,a,!1)}function fh(e,n,a,o,u){var h=o;if((n&1)===0&&(n&2)===0&&o!==null)e:for(;;){if(o===null)return;var x=o.tag;if(x===3||x===4){var E=o.stateNode.containerInfo;if(E===u)break;if(x===4)for(x=o.return;x!==null;){var R=x.tag;if((R===3||R===4)&&x.stateNode.containerInfo===u)return;x=x.return}for(;E!==null;){if(x=O(E),x===null)return;if(R=x.tag,R===5||R===6||R===26||R===27){o=h=x;continue e}E=E.parentNode}}o=o.return}om(function(){var H=h,Q=ju(a),ne=[];e:{var F=qm.get(e);if(F!==void 0){var K=Uo,ge=e;switch(e){case"keypress":if(Lo(a)===0)break e;case"keydown":case"keyup":K=dx;break;case"focusin":ge="focus",K=Ru;break;case"focusout":ge="blur",K=Ru;break;case"beforeblur":case"afterblur":K=Ru;break;case"click":if(a.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":K=um;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":K=tx;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":K=gx;break;case Cm:case Mm:case Rm:K=ix;break;case Dm:K=bx;break;case"scroll":case"scrollend":K=Wv;break;case"wheel":K=xx;break;case"copy":case"cut":case"paste":K=ax;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":K=hm;break;case"toggle":case"beforetoggle":K=wx}var Ee=(n&4)!==0,Je=!Ee&&(e==="scroll"||e==="scrollend"),z=Ee?F!==null?F+"Capture":null:F;Ee=[];for(var q=H,$;q!==null;){var Z=q;if($=Z.stateNode,Z=Z.tag,Z!==5&&Z!==26&&Z!==27||$===null||z===null||(Z=ra(q,z),Z!=null&&Ee.push(Ba(q,Z,$))),Je)break;q=q.return}0<Ee.length&&(F=new K(F,ge,null,a,Q),ne.push({event:F,listeners:Ee}))}}if((n&7)===0){e:{if(F=e==="mouseover"||e==="pointerover",K=e==="mouseout"||e==="pointerout",F&&a!==Au&&(ge=a.relatedTarget||a.fromElement)&&(O(ge)||ge[Wt]))break e;if((K||F)&&(F=Q.window===Q?Q:(F=Q.ownerDocument)?F.defaultView||F.parentWindow:window,K?(ge=a.relatedTarget||a.toElement,K=H,ge=ge?O(ge):null,ge!==null&&(Je=c(ge),Ee=ge.tag,ge!==Je||Ee!==5&&Ee!==27&&Ee!==6)&&(ge=null)):(K=null,ge=H),K!==ge)){if(Ee=um,Z="onMouseLeave",z="onMouseEnter",q="mouse",(e==="pointerout"||e==="pointerover")&&(Ee=hm,Z="onPointerLeave",z="onPointerEnter",q="pointer"),Je=K==null?F:N(K),$=ge==null?F:N(ge),F=new Ee(Z,q+"leave",K,a,Q),F.target=Je,F.relatedTarget=$,Z=null,O(Q)===H&&(Ee=new Ee(z,q+"enter",ge,a,Q),Ee.target=$,Ee.relatedTarget=Je,Z=Ee),Je=Z,K&&ge)t:{for(Ee=__,z=K,q=ge,$=0,Z=z;Z;Z=Ee(Z))$++;Z=0;for(var ve=q;ve;ve=Ee(ve))Z++;for(;0<$-Z;)z=Ee(z),$--;for(;0<Z-$;)q=Ee(q),Z--;for(;$--;){if(z===q||q!==null&&z===q.alternate){Ee=z;break t}z=Ee(z),q=Ee(q)}Ee=null}else Ee=null;K!==null&&rg(ne,F,K,Ee,!1),ge!==null&&Je!==null&&rg(ne,Je,ge,Ee,!0)}}e:{if(F=H?N(H):window,K=F.nodeName&&F.nodeName.toLowerCase(),K==="select"||K==="input"&&F.type==="file")var $e=xm;else if(bm(F))if(_m)$e=Mx;else{$e=kx;var ye=Tx}else K=F.nodeName,!K||K.toLowerCase()!=="input"||F.type!=="checkbox"&&F.type!=="radio"?H&&Ou(H.elementType)&&($e=xm):$e=Cx;if($e&&($e=$e(e,H))){vm(ne,$e,a,Q);break e}ye&&ye(e,F,H),e==="focusout"&&H&&F.type==="number"&&H.memoizedProps.value!=null&&Eu(F,"number",F.value)}switch(ye=H?N(H):window,e){case"focusin":(bm(ye)||ye.contentEditable==="true")&&(ns=ye,Uu=H,fa=null);break;case"focusout":fa=Uu=ns=null;break;case"mousedown":zu=!0;break;case"contextmenu":case"mouseup":case"dragend":zu=!1,Tm(ne,a,Q);break;case"selectionchange":if(Dx)break;case"keydown":case"keyup":Tm(ne,a,Q)}var Me;if(qu)e:{switch(e){case"compositionstart":var Le="onCompositionStart";break e;case"compositionend":Le="onCompositionEnd";break e;case"compositionupdate":Le="onCompositionUpdate";break e}Le=void 0}else ts?gm(e,a)&&(Le="onCompositionEnd"):e==="keydown"&&a.keyCode===229&&(Le="onCompositionStart");Le&&(dm&&a.locale!=="ko"&&(ts||Le!=="onCompositionStart"?Le==="onCompositionEnd"&&ts&&(Me=lm()):(Rr=Q,ku="value"in Rr?Rr.value:Rr.textContent,ts=!0)),ye=Tl(H,Le),0<ye.length&&(Le=new fm(Le,e,null,a,Q),ne.push({event:Le,listeners:ye}),Me?Le.data=Me:(Me=ym(a),Me!==null&&(Le.data=Me)))),(Me=Ex?Ox(e,a):Ax(e,a))&&(Le=Tl(H,"onBeforeInput"),0<Le.length&&(ye=new fm("onBeforeInput","beforeinput",null,a,Q),ne.push({event:ye,listeners:Le}),ye.data=Me)),y_(ne,e,H,a,Q)}tg(ne,n)})}function Ba(e,n,a){return{instance:e,listener:n,currentTarget:a}}function Tl(e,n){for(var a=n+"Capture",o=[];e!==null;){var u=e,h=u.stateNode;if(u=u.tag,u!==5&&u!==26&&u!==27||h===null||(u=ra(e,a),u!=null&&o.unshift(Ba(e,u,h)),u=ra(e,n),u!=null&&o.push(Ba(e,u,h))),e.tag===3)return o;e=e.return}return[]}function __(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5&&e.tag!==27);return e||null}function rg(e,n,a,o,u){for(var h=n._reactName,x=[];a!==null&&a!==o;){var E=a,R=E.alternate,H=E.stateNode;if(E=E.tag,R!==null&&R===o)break;E!==5&&E!==26&&E!==27||H===null||(R=H,u?(H=ra(a,h),H!=null&&x.unshift(Ba(a,H,R))):u||(H=ra(a,h),H!=null&&x.push(Ba(a,H,R)))),a=a.return}x.length!==0&&e.push({event:n,listeners:x})}var w_=/\r\n?/g,S_=/\u0000|\uFFFD/g;function ig(e){return(typeof e=="string"?e:""+e).replace(w_,`
|
|
26
|
-
`).replace(S_,"")}function sg(e,n){return n=ig(n),ig(e)===n}function Xe(e,n,a,o,u,h){switch(a){case"children":typeof o=="string"?n==="body"||n==="textarea"&&o===""||Zi(e,o):(typeof o=="number"||typeof o=="bigint")&&n!=="body"&&Zi(e,""+o);break;case"className":Dn(e,"class",o);break;case"tabIndex":Dn(e,"tabindex",o);break;case"dir":case"role":case"viewBox":case"width":case"height":Dn(e,a,o);break;case"style":sm(e,o,h);break;case"data":if(n!=="object"){Dn(e,"data",o);break}case"src":case"href":if(o===""&&(n!=="a"||a!=="href")){e.removeAttribute(a);break}if(o==null||typeof o=="function"||typeof o=="symbol"||typeof o=="boolean"){e.removeAttribute(a);break}o=qo(""+o),e.setAttribute(a,o);break;case"action":case"formAction":if(typeof o=="function"){e.setAttribute(a,"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')");break}else typeof h=="function"&&(a==="formAction"?(n!=="input"&&Xe(e,n,"name",u.name,u,null),Xe(e,n,"formEncType",u.formEncType,u,null),Xe(e,n,"formMethod",u.formMethod,u,null),Xe(e,n,"formTarget",u.formTarget,u,null)):(Xe(e,n,"encType",u.encType,u,null),Xe(e,n,"method",u.method,u,null),Xe(e,n,"target",u.target,u,null)));if(o==null||typeof o=="symbol"||typeof o=="boolean"){e.removeAttribute(a);break}o=qo(""+o),e.setAttribute(a,o);break;case"onClick":o!=null&&(e.onclick=ir);break;case"onScroll":o!=null&&qe("scroll",e);break;case"onScrollEnd":o!=null&&qe("scrollend",e);break;case"dangerouslySetInnerHTML":if(o!=null){if(typeof o!="object"||!("__html"in o))throw Error(s(61));if(a=o.__html,a!=null){if(u.children!=null)throw Error(s(60));e.innerHTML=a}}break;case"multiple":e.multiple=o&&typeof o!="function"&&typeof o!="symbol";break;case"muted":e.muted=o&&typeof o!="function"&&typeof o!="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(o==null||typeof o=="function"||typeof o=="boolean"||typeof o=="symbol"){e.removeAttribute("xlink:href");break}a=qo(""+o),e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",a);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":o!=null&&typeof o!="function"&&typeof o!="symbol"?e.setAttribute(a,""+o):e.removeAttribute(a);break;case"inert":case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":o&&typeof o!="function"&&typeof o!="symbol"?e.setAttribute(a,""):e.removeAttribute(a);break;case"capture":case"download":o===!0?e.setAttribute(a,""):o!==!1&&o!=null&&typeof o!="function"&&typeof o!="symbol"?e.setAttribute(a,o):e.removeAttribute(a);break;case"cols":case"rows":case"size":case"span":o!=null&&typeof o!="function"&&typeof o!="symbol"&&!isNaN(o)&&1<=o?e.setAttribute(a,o):e.removeAttribute(a);break;case"rowSpan":case"start":o==null||typeof o=="function"||typeof o=="symbol"||isNaN(o)?e.removeAttribute(a):e.setAttribute(a,o);break;case"popover":qe("beforetoggle",e),qe("toggle",e),Pt(e,"popover",o);break;case"xlinkActuate":rr(e,"http://www.w3.org/1999/xlink","xlink:actuate",o);break;case"xlinkArcrole":rr(e,"http://www.w3.org/1999/xlink","xlink:arcrole",o);break;case"xlinkRole":rr(e,"http://www.w3.org/1999/xlink","xlink:role",o);break;case"xlinkShow":rr(e,"http://www.w3.org/1999/xlink","xlink:show",o);break;case"xlinkTitle":rr(e,"http://www.w3.org/1999/xlink","xlink:title",o);break;case"xlinkType":rr(e,"http://www.w3.org/1999/xlink","xlink:type",o);break;case"xmlBase":rr(e,"http://www.w3.org/XML/1998/namespace","xml:base",o);break;case"xmlLang":rr(e,"http://www.w3.org/XML/1998/namespace","xml:lang",o);break;case"xmlSpace":rr(e,"http://www.w3.org/XML/1998/namespace","xml:space",o);break;case"is":Pt(e,"is",o);break;case"innerText":case"textContent":break;default:(!(2<a.length)||a[0]!=="o"&&a[0]!=="O"||a[1]!=="n"&&a[1]!=="N")&&(a=Qv.get(a)||a,Pt(e,a,o))}}function hh(e,n,a,o,u,h){switch(a){case"style":sm(e,o,h);break;case"dangerouslySetInnerHTML":if(o!=null){if(typeof o!="object"||!("__html"in o))throw Error(s(61));if(a=o.__html,a!=null){if(u.children!=null)throw Error(s(60));e.innerHTML=a}}break;case"children":typeof o=="string"?Zi(e,o):(typeof o=="number"||typeof o=="bigint")&&Zi(e,""+o);break;case"onScroll":o!=null&&qe("scroll",e);break;case"onScrollEnd":o!=null&&qe("scrollend",e);break;case"onClick":o!=null&&(e.onclick=ir);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(!te.hasOwnProperty(a))e:{if(a[0]==="o"&&a[1]==="n"&&(u=a.endsWith("Capture"),n=a.slice(2,u?a.length-7:void 0),h=e[ct]||null,h=h!=null?h[a]:null,typeof h=="function"&&e.removeEventListener(n,h,u),typeof o=="function")){typeof h!="function"&&h!==null&&(a in e?e[a]=null:e.hasAttribute(a)&&e.removeAttribute(a)),e.addEventListener(n,o,u);break e}a in e?e[a]=o:o===!0?e.setAttribute(a,""):Pt(e,a,o)}}}function Dt(e,n,a){switch(n){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":qe("error",e),qe("load",e);var o=!1,u=!1,h;for(h in a)if(a.hasOwnProperty(h)){var x=a[h];if(x!=null)switch(h){case"src":o=!0;break;case"srcSet":u=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(s(137,n));default:Xe(e,n,h,x,a,null)}}u&&Xe(e,n,"srcSet",a.srcSet,a,null),o&&Xe(e,n,"src",a.src,a,null);return;case"input":qe("invalid",e);var E=h=x=u=null,R=null,H=null;for(o in a)if(a.hasOwnProperty(o)){var Q=a[o];if(Q!=null)switch(o){case"name":u=Q;break;case"type":x=Q;break;case"checked":R=Q;break;case"defaultChecked":H=Q;break;case"value":h=Q;break;case"defaultValue":E=Q;break;case"children":case"dangerouslySetInnerHTML":if(Q!=null)throw Error(s(137,n));break;default:Xe(e,n,o,Q,a,null)}}tm(e,h,E,R,H,x,u,!1);return;case"select":qe("invalid",e),o=x=h=null;for(u in a)if(a.hasOwnProperty(u)&&(E=a[u],E!=null))switch(u){case"value":h=E;break;case"defaultValue":x=E;break;case"multiple":o=E;default:Xe(e,n,u,E,a,null)}n=h,a=x,e.multiple=!!o,n!=null?Qi(e,!!o,n,!1):a!=null&&Qi(e,!!o,a,!0);return;case"textarea":qe("invalid",e),h=u=o=null;for(x in a)if(a.hasOwnProperty(x)&&(E=a[x],E!=null))switch(x){case"value":o=E;break;case"defaultValue":u=E;break;case"children":h=E;break;case"dangerouslySetInnerHTML":if(E!=null)throw Error(s(91));break;default:Xe(e,n,x,E,a,null)}rm(e,o,u,h);return;case"option":for(R in a)if(a.hasOwnProperty(R)&&(o=a[R],o!=null))switch(R){case"selected":e.selected=o&&typeof o!="function"&&typeof o!="symbol";break;default:Xe(e,n,R,o,a,null)}return;case"dialog":qe("beforetoggle",e),qe("toggle",e),qe("cancel",e),qe("close",e);break;case"iframe":case"object":qe("load",e);break;case"video":case"audio":for(o=0;o<qa.length;o++)qe(qa[o],e);break;case"image":qe("error",e),qe("load",e);break;case"details":qe("toggle",e);break;case"embed":case"source":case"link":qe("error",e),qe("load",e);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(H in a)if(a.hasOwnProperty(H)&&(o=a[H],o!=null))switch(H){case"children":case"dangerouslySetInnerHTML":throw Error(s(137,n));default:Xe(e,n,H,o,a,null)}return;default:if(Ou(n)){for(Q in a)a.hasOwnProperty(Q)&&(o=a[Q],o!==void 0&&hh(e,n,Q,o,a,void 0));return}}for(E in a)a.hasOwnProperty(E)&&(o=a[E],o!=null&&Xe(e,n,E,o,a,null))}function E_(e,n,a,o){switch(n){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var u=null,h=null,x=null,E=null,R=null,H=null,Q=null;for(K in a){var ne=a[K];if(a.hasOwnProperty(K)&&ne!=null)switch(K){case"checked":break;case"value":break;case"defaultValue":R=ne;default:o.hasOwnProperty(K)||Xe(e,n,K,null,o,ne)}}for(var F in o){var K=o[F];if(ne=a[F],o.hasOwnProperty(F)&&(K!=null||ne!=null))switch(F){case"type":h=K;break;case"name":u=K;break;case"checked":H=K;break;case"defaultChecked":Q=K;break;case"value":x=K;break;case"defaultValue":E=K;break;case"children":case"dangerouslySetInnerHTML":if(K!=null)throw Error(s(137,n));break;default:K!==ne&&Xe(e,n,F,K,o,ne)}}Su(e,x,E,R,H,Q,h,u);return;case"select":K=x=E=F=null;for(h in a)if(R=a[h],a.hasOwnProperty(h)&&R!=null)switch(h){case"value":break;case"multiple":K=R;default:o.hasOwnProperty(h)||Xe(e,n,h,null,o,R)}for(u in o)if(h=o[u],R=a[u],o.hasOwnProperty(u)&&(h!=null||R!=null))switch(u){case"value":F=h;break;case"defaultValue":E=h;break;case"multiple":x=h;default:h!==R&&Xe(e,n,u,h,o,R)}n=E,a=x,o=K,F!=null?Qi(e,!!a,F,!1):!!o!=!!a&&(n!=null?Qi(e,!!a,n,!0):Qi(e,!!a,a?[]:"",!1));return;case"textarea":K=F=null;for(E in a)if(u=a[E],a.hasOwnProperty(E)&&u!=null&&!o.hasOwnProperty(E))switch(E){case"value":break;case"children":break;default:Xe(e,n,E,null,o,u)}for(x in o)if(u=o[x],h=a[x],o.hasOwnProperty(x)&&(u!=null||h!=null))switch(x){case"value":F=u;break;case"defaultValue":K=u;break;case"children":break;case"dangerouslySetInnerHTML":if(u!=null)throw Error(s(91));break;default:u!==h&&Xe(e,n,x,u,o,h)}nm(e,F,K);return;case"option":for(var ge in a)if(F=a[ge],a.hasOwnProperty(ge)&&F!=null&&!o.hasOwnProperty(ge))switch(ge){case"selected":e.selected=!1;break;default:Xe(e,n,ge,null,o,F)}for(R in o)if(F=o[R],K=a[R],o.hasOwnProperty(R)&&F!==K&&(F!=null||K!=null))switch(R){case"selected":e.selected=F&&typeof F!="function"&&typeof F!="symbol";break;default:Xe(e,n,R,F,o,K)}return;case"img":case"link":case"area":case"base":case"br":case"col":case"embed":case"hr":case"keygen":case"meta":case"param":case"source":case"track":case"wbr":case"menuitem":for(var Ee in a)F=a[Ee],a.hasOwnProperty(Ee)&&F!=null&&!o.hasOwnProperty(Ee)&&Xe(e,n,Ee,null,o,F);for(H in o)if(F=o[H],K=a[H],o.hasOwnProperty(H)&&F!==K&&(F!=null||K!=null))switch(H){case"children":case"dangerouslySetInnerHTML":if(F!=null)throw Error(s(137,n));break;default:Xe(e,n,H,F,o,K)}return;default:if(Ou(n)){for(var Je in a)F=a[Je],a.hasOwnProperty(Je)&&F!==void 0&&!o.hasOwnProperty(Je)&&hh(e,n,Je,void 0,o,F);for(Q in o)F=o[Q],K=a[Q],!o.hasOwnProperty(Q)||F===K||F===void 0&&K===void 0||hh(e,n,Q,F,o,K);return}}for(var z in a)F=a[z],a.hasOwnProperty(z)&&F!=null&&!o.hasOwnProperty(z)&&Xe(e,n,z,null,o,F);for(ne in o)F=o[ne],K=a[ne],!o.hasOwnProperty(ne)||F===K||F==null&&K==null||Xe(e,n,ne,F,o,K)}function ag(e){switch(e){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function O_(){if(typeof performance.getEntriesByType=="function"){for(var e=0,n=0,a=performance.getEntriesByType("resource"),o=0;o<a.length;o++){var u=a[o],h=u.transferSize,x=u.initiatorType,E=u.duration;if(h&&E&&ag(x)){for(x=0,E=u.responseEnd,o+=1;o<a.length;o++){var R=a[o],H=R.startTime;if(H>E)break;var Q=R.transferSize,ne=R.initiatorType;Q&&ag(ne)&&(R=R.responseEnd,x+=Q*(R<E?1:(E-H)/(R-H)))}if(--o,n+=8*(h+x)/(u.duration/1e3),e++,10<e)break}}if(0<e)return n/e/1e6}return navigator.connection&&(e=navigator.connection.downlink,typeof e=="number")?e:5}var dh=null,mh=null;function kl(e){return e.nodeType===9?e:e.ownerDocument}function og(e){switch(e){case"http://www.w3.org/2000/svg":return 1;case"http://www.w3.org/1998/Math/MathML":return 2;default:return 0}}function lg(e,n){if(e===0)switch(n){case"svg":return 1;case"math":return 2;default:return 0}return e===1&&n==="foreignObject"?0:e}function ph(e,n){return e==="textarea"||e==="noscript"||typeof n.children=="string"||typeof n.children=="number"||typeof n.children=="bigint"||typeof n.dangerouslySetInnerHTML=="object"&&n.dangerouslySetInnerHTML!==null&&n.dangerouslySetInnerHTML.__html!=null}var gh=null;function A_(){var e=window.event;return e&&e.type==="popstate"?e===gh?!1:(gh=e,!0):(gh=null,!1)}var cg=typeof setTimeout=="function"?setTimeout:void 0,j_=typeof clearTimeout=="function"?clearTimeout:void 0,ug=typeof Promise=="function"?Promise:void 0,N_=typeof queueMicrotask=="function"?queueMicrotask:typeof ug<"u"?function(e){return ug.resolve(null).then(e).catch(T_)}:cg;function T_(e){setTimeout(function(){throw e})}function Jr(e){return e==="head"}function fg(e,n){var a=n,o=0;do{var u=a.nextSibling;if(e.removeChild(a),u&&u.nodeType===8)if(a=u.data,a==="/$"||a==="/&"){if(o===0){e.removeChild(u),Ts(n);return}o--}else if(a==="$"||a==="$?"||a==="$~"||a==="$!"||a==="&")o++;else if(a==="html")La(e.ownerDocument.documentElement);else if(a==="head"){a=e.ownerDocument.head,La(a);for(var h=a.firstChild;h;){var x=h.nextSibling,E=h.nodeName;h[Et]||E==="SCRIPT"||E==="STYLE"||E==="LINK"&&h.rel.toLowerCase()==="stylesheet"||a.removeChild(h),h=x}}else a==="body"&&La(e.ownerDocument.body);a=u}while(a);Ts(n)}function hg(e,n){var a=e;e=0;do{var o=a.nextSibling;if(a.nodeType===1?n?(a._stashedDisplay=a.style.display,a.style.display="none"):(a.style.display=a._stashedDisplay||"",a.getAttribute("style")===""&&a.removeAttribute("style")):a.nodeType===3&&(n?(a._stashedText=a.nodeValue,a.nodeValue=""):a.nodeValue=a._stashedText||""),o&&o.nodeType===8)if(a=o.data,a==="/$"){if(e===0)break;e--}else a!=="$"&&a!=="$?"&&a!=="$~"&&a!=="$!"||e++;a=o}while(a)}function yh(e){var n=e.firstChild;for(n&&n.nodeType===10&&(n=n.nextSibling);n;){var a=n;switch(n=n.nextSibling,a.nodeName){case"HTML":case"HEAD":case"BODY":yh(a),Ji(a);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(a.rel.toLowerCase()==="stylesheet")continue}e.removeChild(a)}}function k_(e,n,a,o){for(;e.nodeType===1;){var u=a;if(e.nodeName.toLowerCase()!==n.toLowerCase()){if(!o&&(e.nodeName!=="INPUT"||e.type!=="hidden"))break}else if(o){if(!e[Et])switch(n){case"meta":if(!e.hasAttribute("itemprop"))break;return e;case"link":if(h=e.getAttribute("rel"),h==="stylesheet"&&e.hasAttribute("data-precedence"))break;if(h!==u.rel||e.getAttribute("href")!==(u.href==null||u.href===""?null:u.href)||e.getAttribute("crossorigin")!==(u.crossOrigin==null?null:u.crossOrigin)||e.getAttribute("title")!==(u.title==null?null:u.title))break;return e;case"style":if(e.hasAttribute("data-precedence"))break;return e;case"script":if(h=e.getAttribute("src"),(h!==(u.src==null?null:u.src)||e.getAttribute("type")!==(u.type==null?null:u.type)||e.getAttribute("crossorigin")!==(u.crossOrigin==null?null:u.crossOrigin))&&h&&e.hasAttribute("async")&&!e.hasAttribute("itemprop"))break;return e;default:return e}}else if(n==="input"&&e.type==="hidden"){var h=u.name==null?null:""+u.name;if(u.type==="hidden"&&e.getAttribute("name")===h)return e}else return e;if(e=jn(e.nextSibling),e===null)break}return null}function C_(e,n,a){if(n==="")return null;for(;e.nodeType!==3;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!a||(e=jn(e.nextSibling),e===null))return null;return e}function dg(e,n){for(;e.nodeType!==8;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!n||(e=jn(e.nextSibling),e===null))return null;return e}function bh(e){return e.data==="$?"||e.data==="$~"}function vh(e){return e.data==="$!"||e.data==="$?"&&e.ownerDocument.readyState!=="loading"}function M_(e,n){var a=e.ownerDocument;if(e.data==="$~")e._reactRetry=n;else if(e.data!=="$?"||a.readyState!=="loading")n();else{var o=function(){n(),a.removeEventListener("DOMContentLoaded",o)};a.addEventListener("DOMContentLoaded",o),e._reactRetry=o}}function jn(e){for(;e!=null;e=e.nextSibling){var n=e.nodeType;if(n===1||n===3)break;if(n===8){if(n=e.data,n==="$"||n==="$!"||n==="$?"||n==="$~"||n==="&"||n==="F!"||n==="F")break;if(n==="/$"||n==="/&")return null}}return e}var xh=null;function mg(e){e=e.nextSibling;for(var n=0;e;){if(e.nodeType===8){var a=e.data;if(a==="/$"||a==="/&"){if(n===0)return jn(e.nextSibling);n--}else a!=="$"&&a!=="$!"&&a!=="$?"&&a!=="$~"&&a!=="&"||n++}e=e.nextSibling}return null}function pg(e){e=e.previousSibling;for(var n=0;e;){if(e.nodeType===8){var a=e.data;if(a==="$"||a==="$!"||a==="$?"||a==="$~"||a==="&"){if(n===0)return e;n--}else a!=="/$"&&a!=="/&"||n++}e=e.previousSibling}return null}function gg(e,n,a){switch(n=kl(a),e){case"html":if(e=n.documentElement,!e)throw Error(s(452));return e;case"head":if(e=n.head,!e)throw Error(s(453));return e;case"body":if(e=n.body,!e)throw Error(s(454));return e;default:throw Error(s(451))}}function La(e){for(var n=e.attributes;n.length;)e.removeAttributeNode(n[0]);Ji(e)}var Nn=new Map,yg=new Set;function Cl(e){return typeof e.getRootNode=="function"?e.getRootNode():e.nodeType===9?e:e.ownerDocument}var xr=ae.d;ae.d={f:R_,r:D_,D:q_,C:B_,L:L_,m:P_,X:z_,S:U_,M:I_};function R_(){var e=xr.f(),n=wl();return e||n}function D_(e){var n=T(e);n!==null&&n.tag===5&&n.type==="form"?D0(n):xr.r(e)}var As=typeof document>"u"?null:document;function bg(e,n,a){var o=As;if(o&&typeof n=="string"&&n){var u=xn(n);u='link[rel="'+e+'"][href="'+u+'"]',typeof a=="string"&&(u+='[crossorigin="'+a+'"]'),yg.has(u)||(yg.add(u),e={rel:e,crossOrigin:a,href:n},o.querySelector(u)===null&&(n=o.createElement("link"),Dt(n,"link",e),D(n),o.head.appendChild(n)))}}function q_(e){xr.D(e),bg("dns-prefetch",e,null)}function B_(e,n){xr.C(e,n),bg("preconnect",e,n)}function L_(e,n,a){xr.L(e,n,a);var o=As;if(o&&e&&n){var u='link[rel="preload"][as="'+xn(n)+'"]';n==="image"&&a&&a.imageSrcSet?(u+='[imagesrcset="'+xn(a.imageSrcSet)+'"]',typeof a.imageSizes=="string"&&(u+='[imagesizes="'+xn(a.imageSizes)+'"]')):u+='[href="'+xn(e)+'"]';var h=u;switch(n){case"style":h=js(e);break;case"script":h=Ns(e)}Nn.has(h)||(e=b({rel:"preload",href:n==="image"&&a&&a.imageSrcSet?void 0:e,as:n},a),Nn.set(h,e),o.querySelector(u)!==null||n==="style"&&o.querySelector(Pa(h))||n==="script"&&o.querySelector(Ua(h))||(n=o.createElement("link"),Dt(n,"link",e),D(n),o.head.appendChild(n)))}}function P_(e,n){xr.m(e,n);var a=As;if(a&&e){var o=n&&typeof n.as=="string"?n.as:"script",u='link[rel="modulepreload"][as="'+xn(o)+'"][href="'+xn(e)+'"]',h=u;switch(o){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":h=Ns(e)}if(!Nn.has(h)&&(e=b({rel:"modulepreload",href:e},n),Nn.set(h,e),a.querySelector(u)===null)){switch(o){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(a.querySelector(Ua(h)))return}o=a.createElement("link"),Dt(o,"link",e),D(o),a.head.appendChild(o)}}}function U_(e,n,a){xr.S(e,n,a);var o=As;if(o&&e){var u=k(o).hoistableStyles,h=js(e);n=n||"default";var x=u.get(h);if(!x){var E={loading:0,preload:null};if(x=o.querySelector(Pa(h)))E.loading=5;else{e=b({rel:"stylesheet",href:e,"data-precedence":n},a),(a=Nn.get(h))&&_h(e,a);var R=x=o.createElement("link");D(R),Dt(R,"link",e),R._p=new Promise(function(H,Q){R.onload=H,R.onerror=Q}),R.addEventListener("load",function(){E.loading|=1}),R.addEventListener("error",function(){E.loading|=2}),E.loading|=4,Ml(x,n,o)}x={type:"stylesheet",instance:x,count:1,state:E},u.set(h,x)}}}function z_(e,n){xr.X(e,n);var a=As;if(a&&e){var o=k(a).hoistableScripts,u=Ns(e),h=o.get(u);h||(h=a.querySelector(Ua(u)),h||(e=b({src:e,async:!0},n),(n=Nn.get(u))&&wh(e,n),h=a.createElement("script"),D(h),Dt(h,"link",e),a.head.appendChild(h)),h={type:"script",instance:h,count:1,state:null},o.set(u,h))}}function I_(e,n){xr.M(e,n);var a=As;if(a&&e){var o=k(a).hoistableScripts,u=Ns(e),h=o.get(u);h||(h=a.querySelector(Ua(u)),h||(e=b({src:e,async:!0,type:"module"},n),(n=Nn.get(u))&&wh(e,n),h=a.createElement("script"),D(h),Dt(h,"link",e),a.head.appendChild(h)),h={type:"script",instance:h,count:1,state:null},o.set(u,h))}}function vg(e,n,a,o){var u=(u=lt.current)?Cl(u):null;if(!u)throw Error(s(446));switch(e){case"meta":case"title":return null;case"style":return typeof a.precedence=="string"&&typeof a.href=="string"?(n=js(a.href),a=k(u).hoistableStyles,o=a.get(n),o||(o={type:"style",instance:null,count:0,state:null},a.set(n,o)),o):{type:"void",instance:null,count:0,state:null};case"link":if(a.rel==="stylesheet"&&typeof a.href=="string"&&typeof a.precedence=="string"){e=js(a.href);var h=k(u).hoistableStyles,x=h.get(e);if(x||(u=u.ownerDocument||u,x={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},h.set(e,x),(h=u.querySelector(Pa(e)))&&!h._p&&(x.instance=h,x.state.loading=5),Nn.has(e)||(a={rel:"preload",as:"style",href:a.href,crossOrigin:a.crossOrigin,integrity:a.integrity,media:a.media,hrefLang:a.hrefLang,referrerPolicy:a.referrerPolicy},Nn.set(e,a),h||$_(u,e,a,x.state))),n&&o===null)throw Error(s(528,""));return x}if(n&&o!==null)throw Error(s(529,""));return null;case"script":return n=a.async,a=a.src,typeof a=="string"&&n&&typeof n!="function"&&typeof n!="symbol"?(n=Ns(a),a=k(u).hoistableScripts,o=a.get(n),o||(o={type:"script",instance:null,count:0,state:null},a.set(n,o)),o):{type:"void",instance:null,count:0,state:null};default:throw Error(s(444,e))}}function js(e){return'href="'+xn(e)+'"'}function Pa(e){return'link[rel="stylesheet"]['+e+"]"}function xg(e){return b({},e,{"data-precedence":e.precedence,precedence:null})}function $_(e,n,a,o){e.querySelector('link[rel="preload"][as="style"]['+n+"]")?o.loading=1:(n=e.createElement("link"),o.preload=n,n.addEventListener("load",function(){return o.loading|=1}),n.addEventListener("error",function(){return o.loading|=2}),Dt(n,"link",a),D(n),e.head.appendChild(n))}function Ns(e){return'[src="'+xn(e)+'"]'}function Ua(e){return"script[async]"+e}function _g(e,n,a){if(n.count++,n.instance===null)switch(n.type){case"style":var o=e.querySelector('style[data-href~="'+xn(a.href)+'"]');if(o)return n.instance=o,D(o),o;var u=b({},a,{"data-href":a.href,"data-precedence":a.precedence,href:null,precedence:null});return o=(e.ownerDocument||e).createElement("style"),D(o),Dt(o,"style",u),Ml(o,a.precedence,e),n.instance=o;case"stylesheet":u=js(a.href);var h=e.querySelector(Pa(u));if(h)return n.state.loading|=4,n.instance=h,D(h),h;o=xg(a),(u=Nn.get(u))&&_h(o,u),h=(e.ownerDocument||e).createElement("link"),D(h);var x=h;return x._p=new Promise(function(E,R){x.onload=E,x.onerror=R}),Dt(h,"link",o),n.state.loading|=4,Ml(h,a.precedence,e),n.instance=h;case"script":return h=Ns(a.src),(u=e.querySelector(Ua(h)))?(n.instance=u,D(u),u):(o=a,(u=Nn.get(h))&&(o=b({},a),wh(o,u)),e=e.ownerDocument||e,u=e.createElement("script"),D(u),Dt(u,"link",o),e.head.appendChild(u),n.instance=u);case"void":return null;default:throw Error(s(443,n.type))}else n.type==="stylesheet"&&(n.state.loading&4)===0&&(o=n.instance,n.state.loading|=4,Ml(o,a.precedence,e));return n.instance}function Ml(e,n,a){for(var o=a.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),u=o.length?o[o.length-1]:null,h=u,x=0;x<o.length;x++){var E=o[x];if(E.dataset.precedence===n)h=E;else if(h!==u)break}h?h.parentNode.insertBefore(e,h.nextSibling):(n=a.nodeType===9?a.head:a,n.insertBefore(e,n.firstChild))}function _h(e,n){e.crossOrigin==null&&(e.crossOrigin=n.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=n.referrerPolicy),e.title==null&&(e.title=n.title)}function wh(e,n){e.crossOrigin==null&&(e.crossOrigin=n.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=n.referrerPolicy),e.integrity==null&&(e.integrity=n.integrity)}var Rl=null;function wg(e,n,a){if(Rl===null){var o=new Map,u=Rl=new Map;u.set(a,o)}else u=Rl,o=u.get(a),o||(o=new Map,u.set(a,o));if(o.has(e))return o;for(o.set(e,null),a=a.getElementsByTagName(e),u=0;u<a.length;u++){var h=a[u];if(!(h[Et]||h[Qe]||e==="link"&&h.getAttribute("rel")==="stylesheet")&&h.namespaceURI!=="http://www.w3.org/2000/svg"){var x=h.getAttribute(n)||"";x=e+x;var E=o.get(x);E?E.push(h):o.set(x,[h])}}return o}function Sg(e,n,a){e=e.ownerDocument||e,e.head.insertBefore(a,n==="title"?e.querySelector("head > title"):null)}function H_(e,n,a){if(a===1||n.itemProp!=null)return!1;switch(e){case"meta":case"title":return!0;case"style":if(typeof n.precedence!="string"||typeof n.href!="string"||n.href==="")break;return!0;case"link":if(typeof n.rel!="string"||typeof n.href!="string"||n.href===""||n.onLoad||n.onError)break;switch(n.rel){case"stylesheet":return e=n.disabled,typeof n.precedence=="string"&&e==null;default:return!0}case"script":if(n.async&&typeof n.async!="function"&&typeof n.async!="symbol"&&!n.onLoad&&!n.onError&&n.src&&typeof n.src=="string")return!0}return!1}function Eg(e){return!(e.type==="stylesheet"&&(e.state.loading&3)===0)}function G_(e,n,a,o){if(a.type==="stylesheet"&&(typeof o.media!="string"||matchMedia(o.media).matches!==!1)&&(a.state.loading&4)===0){if(a.instance===null){var u=js(o.href),h=n.querySelector(Pa(u));if(h){n=h._p,n!==null&&typeof n=="object"&&typeof n.then=="function"&&(e.count++,e=Dl.bind(e),n.then(e,e)),a.state.loading|=4,a.instance=h,D(h);return}h=n.ownerDocument||n,o=xg(o),(u=Nn.get(u))&&_h(o,u),h=h.createElement("link"),D(h);var x=h;x._p=new Promise(function(E,R){x.onload=E,x.onerror=R}),Dt(h,"link",o),a.instance=h}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(a,n),(n=a.state.preload)&&(a.state.loading&3)===0&&(e.count++,a=Dl.bind(e),n.addEventListener("load",a),n.addEventListener("error",a))}}var Sh=0;function F_(e,n){return e.stylesheets&&e.count===0&&Bl(e,e.stylesheets),0<e.count||0<e.imgCount?function(a){var o=setTimeout(function(){if(e.stylesheets&&Bl(e,e.stylesheets),e.unsuspend){var h=e.unsuspend;e.unsuspend=null,h()}},6e4+n);0<e.imgBytes&&Sh===0&&(Sh=62500*O_());var u=setTimeout(function(){if(e.waitingForImages=!1,e.count===0&&(e.stylesheets&&Bl(e,e.stylesheets),e.unsuspend)){var h=e.unsuspend;e.unsuspend=null,h()}},(e.imgBytes>Sh?50:800)+n);return e.unsuspend=a,function(){e.unsuspend=null,clearTimeout(o),clearTimeout(u)}}:null}function Dl(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Bl(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}var ql=null;function Bl(e,n){e.stylesheets=null,e.unsuspend!==null&&(e.count++,ql=new Map,n.forEach(V_,e),ql=null,Dl.call(e))}function V_(e,n){if(!(n.state.loading&4)){var a=ql.get(e);if(a)var o=a.get(null);else{a=new Map,ql.set(e,a);for(var u=e.querySelectorAll("link[data-precedence],style[data-precedence]"),h=0;h<u.length;h++){var x=u[h];(x.nodeName==="LINK"||x.getAttribute("media")!=="not all")&&(a.set(x.dataset.precedence,x),o=x)}o&&a.set(null,o)}u=n.instance,x=u.getAttribute("data-precedence"),h=a.get(x)||o,h===o&&a.set(null,u),a.set(x,u),this.count++,o=Dl.bind(this),u.addEventListener("load",o),u.addEventListener("error",o),h?h.parentNode.insertBefore(u,h.nextSibling):(e=e.nodeType===9?e.head:e,e.insertBefore(u,e.firstChild)),n.state.loading|=4}}var za={$$typeof:re,Provider:null,Consumer:null,_currentValue:de,_currentValue2:de,_threadCount:0};function Y_(e,n,a,o,u,h,x,E,R){this.tag=1,this.containerInfo=e,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=Tr(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Tr(0),this.hiddenUpdates=Tr(null),this.identifierPrefix=o,this.onUncaughtError=u,this.onCaughtError=h,this.onRecoverableError=x,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=R,this.incompleteTransitions=new Map}function Og(e,n,a,o,u,h,x,E,R,H,Q,ne){return e=new Y_(e,n,a,x,R,H,Q,ne,E),n=1,h===!0&&(n|=24),h=tn(3,null,null,n),e.current=h,h.stateNode=e,n=tf(),n.refCount++,e.pooledCache=n,n.refCount++,h.memoizedState={element:o,isDehydrated:a,cache:n},af(h),e}function Ag(e){return e?(e=ss,e):ss}function jg(e,n,a,o,u,h){u=Ag(u),o.context===null?o.context=u:o.pendingContext=u,o=Ur(n),o.payload={element:a},h=h===void 0?null:h,h!==null&&(o.callback=h),a=zr(e,o,n),a!==null&&(Qt(a,e,n),ba(a,e,n))}function Ng(e,n){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var a=e.retryLane;e.retryLane=a!==0&&a<n?a:n}}function Eh(e,n){Ng(e,n),(e=e.alternate)&&Ng(e,n)}function Tg(e){if(e.tag===13||e.tag===31){var n=Ei(e,67108864);n!==null&&Qt(n,e,67108864),Eh(e,67108864)}}function kg(e){if(e.tag===13||e.tag===31){var n=on();n=nr(n);var a=Ei(e,n);a!==null&&Qt(a,e,n),Eh(e,n)}}var Ll=!0;function K_(e,n,a,o){var u=Y.T;Y.T=null;var h=ae.p;try{ae.p=2,Oh(e,n,a,o)}finally{ae.p=h,Y.T=u}}function X_(e,n,a,o){var u=Y.T;Y.T=null;var h=ae.p;try{ae.p=8,Oh(e,n,a,o)}finally{ae.p=h,Y.T=u}}function Oh(e,n,a,o){if(Ll){var u=Ah(o);if(u===null)fh(e,n,o,Pl,a),Mg(e,o);else if(Q_(u,e,n,a,o))o.stopPropagation();else if(Mg(e,o),n&4&&-1<J_.indexOf(e)){for(;u!==null;){var h=T(u);if(h!==null)switch(h.tag){case 3:if(h=h.stateNode,h.current.memoizedState.isDehydrated){var x=Mn(h.pendingLanes);if(x!==0){var E=h;for(E.pendingLanes|=2,E.entangledLanes|=2;x;){var R=1<<31-Lt(x);E.entanglements[1]|=R,x&=~R}Kn(h),(Ge&6)===0&&(xl=it()+500,Da(0))}}break;case 31:case 13:E=Ei(h,2),E!==null&&Qt(E,h,2),wl(),Eh(h,2)}if(h=Ah(o),h===null&&fh(e,n,o,Pl,a),h===u)break;u=h}u!==null&&o.stopPropagation()}else fh(e,n,o,null,a)}}function Ah(e){return e=ju(e),jh(e)}var Pl=null;function jh(e){if(Pl=null,e=O(e),e!==null){var n=c(e);if(n===null)e=null;else{var a=n.tag;if(a===13){if(e=d(n),e!==null)return e;e=null}else if(a===31){if(e=g(n),e!==null)return e;e=null}else if(a===3){if(n.stateNode.current.memoizedState.isDehydrated)return n.tag===3?n.stateNode.containerInfo:null;e=null}else n!==e&&(e=null)}}return Pl=e,null}function Cg(e){switch(e){case"beforetoggle":case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"toggle":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 2;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 8;case"message":switch(vu()){case jo:return 2;case No:return 8;case Yi:case xu:return 32;case To:return 268435456;default:return 32}default:return 32}}var Nh=!1,Qr=null,Zr=null,Wr=null,Ia=new Map,$a=new Map,ei=[],J_="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(" ");function Mg(e,n){switch(e){case"focusin":case"focusout":Qr=null;break;case"dragenter":case"dragleave":Zr=null;break;case"mouseover":case"mouseout":Wr=null;break;case"pointerover":case"pointerout":Ia.delete(n.pointerId);break;case"gotpointercapture":case"lostpointercapture":$a.delete(n.pointerId)}}function Ha(e,n,a,o,u,h){return e===null||e.nativeEvent!==h?(e={blockedOn:n,domEventName:a,eventSystemFlags:o,nativeEvent:h,targetContainers:[u]},n!==null&&(n=T(n),n!==null&&Tg(n)),e):(e.eventSystemFlags|=o,n=e.targetContainers,u!==null&&n.indexOf(u)===-1&&n.push(u),e)}function Q_(e,n,a,o,u){switch(n){case"focusin":return Qr=Ha(Qr,e,n,a,o,u),!0;case"dragenter":return Zr=Ha(Zr,e,n,a,o,u),!0;case"mouseover":return Wr=Ha(Wr,e,n,a,o,u),!0;case"pointerover":var h=u.pointerId;return Ia.set(h,Ha(Ia.get(h)||null,e,n,a,o,u)),!0;case"gotpointercapture":return h=u.pointerId,$a.set(h,Ha($a.get(h)||null,e,n,a,o,u)),!0}return!1}function Rg(e){var n=O(e.target);if(n!==null){var a=c(n);if(a!==null){if(n=a.tag,n===13){if(n=d(a),n!==null){e.blockedOn=n,Co(e.priority,function(){kg(a)});return}}else if(n===31){if(n=g(a),n!==null){e.blockedOn=n,Co(e.priority,function(){kg(a)});return}}else if(n===3&&a.stateNode.current.memoizedState.isDehydrated){e.blockedOn=a.tag===3?a.stateNode.containerInfo:null;return}}}e.blockedOn=null}function Ul(e){if(e.blockedOn!==null)return!1;for(var n=e.targetContainers;0<n.length;){var a=Ah(e.nativeEvent);if(a===null){a=e.nativeEvent;var o=new a.constructor(a.type,a);Au=o,a.target.dispatchEvent(o),Au=null}else return n=T(a),n!==null&&Tg(n),e.blockedOn=a,!1;n.shift()}return!0}function Dg(e,n,a){Ul(e)&&a.delete(n)}function Z_(){Nh=!1,Qr!==null&&Ul(Qr)&&(Qr=null),Zr!==null&&Ul(Zr)&&(Zr=null),Wr!==null&&Ul(Wr)&&(Wr=null),Ia.forEach(Dg),$a.forEach(Dg)}function zl(e,n){e.blockedOn===n&&(e.blockedOn=null,Nh||(Nh=!0,i.unstable_scheduleCallback(i.unstable_NormalPriority,Z_)))}var Il=null;function qg(e){Il!==e&&(Il=e,i.unstable_scheduleCallback(i.unstable_NormalPriority,function(){Il===e&&(Il=null);for(var n=0;n<e.length;n+=3){var a=e[n],o=e[n+1],u=e[n+2];if(typeof o!="function"){if(jh(o||a)===null)continue;break}var h=T(a);h!==null&&(e.splice(n,3),n-=3,Af(h,{pending:!0,data:u,method:a.method,action:o},o,u))}}))}function Ts(e){function n(R){return zl(R,e)}Qr!==null&&zl(Qr,e),Zr!==null&&zl(Zr,e),Wr!==null&&zl(Wr,e),Ia.forEach(n),$a.forEach(n);for(var a=0;a<ei.length;a++){var o=ei[a];o.blockedOn===e&&(o.blockedOn=null)}for(;0<ei.length&&(a=ei[0],a.blockedOn===null);)Rg(a),a.blockedOn===null&&ei.shift();if(a=(e.ownerDocument||e).$$reactFormReplay,a!=null)for(o=0;o<a.length;o+=3){var u=a[o],h=a[o+1],x=u[ct]||null;if(typeof h=="function")x||qg(a);else if(x){var E=null;if(h&&h.hasAttribute("formAction")){if(u=h,x=h[ct]||null)E=x.formAction;else if(jh(u)!==null)continue}else E=x.action;typeof E=="function"?a[o+1]=E:(a.splice(o,3),o-=3),qg(a)}}}function Bg(){function e(h){h.canIntercept&&h.info==="react-transition"&&h.intercept({handler:function(){return new Promise(function(x){return u=x})},focusReset:"manual",scroll:"manual"})}function n(){u!==null&&(u(),u=null),o||setTimeout(a,20)}function a(){if(!o&&!navigation.transition){var h=navigation.currentEntry;h&&h.url!=null&&navigation.navigate(h.url,{state:h.getState(),info:"react-transition",history:"replace"})}}if(typeof navigation=="object"){var o=!1,u=null;return navigation.addEventListener("navigate",e),navigation.addEventListener("navigatesuccess",n),navigation.addEventListener("navigateerror",n),setTimeout(a,100),function(){o=!0,navigation.removeEventListener("navigate",e),navigation.removeEventListener("navigatesuccess",n),navigation.removeEventListener("navigateerror",n),u!==null&&(u(),u=null)}}}function Th(e){this._internalRoot=e}$l.prototype.render=Th.prototype.render=function(e){var n=this._internalRoot;if(n===null)throw Error(s(409));var a=n.current,o=on();jg(a,o,e,n,null,null)},$l.prototype.unmount=Th.prototype.unmount=function(){var e=this._internalRoot;if(e!==null){this._internalRoot=null;var n=e.containerInfo;jg(e.current,2,null,e,null,null),wl(),n[Wt]=null}};function $l(e){this._internalRoot=e}$l.prototype.unstable_scheduleHydration=function(e){if(e){var n=ta();e={blockedOn:null,target:e,priority:n};for(var a=0;a<ei.length&&n!==0&&n<ei[a].priority;a++);ei.splice(a,0,e),a===0&&Rg(e)}};var Lg=t.version;if(Lg!=="19.2.4")throw Error(s(527,Lg,"19.2.4"));ae.findDOMNode=function(e){var n=e._reactInternals;if(n===void 0)throw typeof e.render=="function"?Error(s(188)):(e=Object.keys(e).join(","),Error(s(268,e)));return e=f(n),e=e!==null?m(e):null,e=e===null?null:e.stateNode,e};var W_={bundleType:0,version:"19.2.4",rendererPackageName:"react-dom",currentDispatcherRef:Y,reconcilerVersion:"19.2.4"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var Hl=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!Hl.isDisabled&&Hl.supportsFiber)try{pi=Hl.inject(W_),pt=Hl}catch{}}return Ga.createRoot=function(e,n){if(!l(e))throw Error(s(299));var a=!1,o="",u=G0,h=F0,x=V0;return n!=null&&(n.unstable_strictMode===!0&&(a=!0),n.identifierPrefix!==void 0&&(o=n.identifierPrefix),n.onUncaughtError!==void 0&&(u=n.onUncaughtError),n.onCaughtError!==void 0&&(h=n.onCaughtError),n.onRecoverableError!==void 0&&(x=n.onRecoverableError)),n=Og(e,1,!1,null,null,a,o,null,u,h,x,Bg),e[Wt]=n.current,uh(e),new Th(n)},Ga.hydrateRoot=function(e,n,a){if(!l(e))throw Error(s(299));var o=!1,u="",h=G0,x=F0,E=V0,R=null;return a!=null&&(a.unstable_strictMode===!0&&(o=!0),a.identifierPrefix!==void 0&&(u=a.identifierPrefix),a.onUncaughtError!==void 0&&(h=a.onUncaughtError),a.onCaughtError!==void 0&&(x=a.onCaughtError),a.onRecoverableError!==void 0&&(E=a.onRecoverableError),a.formState!==void 0&&(R=a.formState)),n=Og(e,1,!0,n,a??null,o,u,R,h,x,E,Bg),n.context=Ag(null),a=n.current,o=on(),o=nr(o),u=Ur(o),u.callback=null,zr(a,u,o),a=o,n.current.lanes=a,Rn(n,a),Kn(n),e[Wt]=n.current,uh(e),new $l(n)},Ga.version="19.2.4",Ga}var Fg;function Iw(){if(Fg)return kh.exports;Fg=1;function i(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(i)}catch(t){console.error(t)}}return i(),kh.exports=zw(),kh.exports}var $w=Iw();const Hw="modulepreload",Gw=function(i,t){return new URL(i,t).href},Vg={},we=function(t,r,s){let l=Promise.resolve();if(r&&r.length>0){let d=function(m){return Promise.all(m.map(b=>Promise.resolve(b).then(v=>({status:"fulfilled",value:v}),v=>({status:"rejected",reason:v}))))};const g=document.getElementsByTagName("link"),y=document.querySelector("meta[property=csp-nonce]"),f=(y==null?void 0:y.nonce)||(y==null?void 0:y.getAttribute("nonce"));l=d(r.map(m=>{if(m=Gw(m,s),m in Vg)return;Vg[m]=!0;const b=m.endsWith(".css"),v=b?'[rel="stylesheet"]':"";if(!!s)for(let S=g.length-1;S>=0;S--){const M=g[S];if(M.href===m&&(!b||M.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${m}"]${v}`))return;const w=document.createElement("link");if(w.rel=b?"stylesheet":Hw,b||(w.as="script"),w.crossOrigin="",w.href=m,f&&w.setAttribute("nonce",f),document.head.appendChild(w),b)return new Promise((S,M)=>{w.addEventListener("load",S),w.addEventListener("error",()=>M(new Error(`Unable to preload CSS for ${m}`)))})}))}function c(d){const g=new Event("vite:preloadError",{cancelable:!0});if(g.payload=d,window.dispatchEvent(g),!g.defaultPrevented)throw d}return l.then(d=>{for(const g of d||[])g.status==="rejected"&&c(g.reason);return t().catch(c)})};function lu(i){try{const t=i.split(".");if(t.length!==3)return null;const r=atob(t[1].replace(/-/g,"+").replace(/_/g,"/"));return JSON.parse(r)}catch{return null}}function db(i){const t=lu(i);return!t||typeof t.exp!="number"?null:t.exp}function Od(i,t=0){const r=db(i);return r===null?!0:Date.now()/1e3>=r-t}const Tt=window.__LT_BASE__??"",Qh=`${Tt}/api`;class Yg extends Error{constructor(t,r,s){super(t),this.status=r,this.body=s,this.name="ApiError"}}let si=null;function Gl(i){si=i}function mb(){return si}const Fw="X-LT-Acting-Token";let Uc=null,zc=null;function Kg(i){Uc=i}function Xg(i){zc=i}function Vw(i){const t=i==null?void 0:i.error;return typeof t=="string"&&/acting[- ]identity/i.test(t)}async function Jg(){const i=sessionStorage.getItem("lt_credentials");if(!i)return null;try{const{username:t,password:r}=JSON.parse(i),s=await fetch(`${Qh}/auth/login`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:t,password:r})});if(!s.ok)return null;const l=await s.json();return l.token&&l.user&&sessionStorage.setItem("lt_user_info",JSON.stringify({displayName:l.user.display_name,username:l.user.external_id})),l.token??null}catch{return null}}let ni=null;async function _e(i,t={}){const r={"Content-Type":"application/json",...t.headers};if(si){if(Od(si)){ni||(ni=Jg().finally(()=>{ni=null}));const c=await ni;if(c)si=c,window.dispatchEvent(new CustomEvent("auth:refreshed",{detail:{token:c}}));else throw window.dispatchEvent(new CustomEvent("auth:unauthorized")),new Error("Session expired")}r.Authorization=`Bearer ${si}`}const s=(Uc==null?void 0:Uc())??null;s&&(r[Fw]=s);let l=await fetch(`${Qh}${i}`,{...t,headers:r});if(l.status===401&&s){const c=await l.clone().json().catch(()=>null);if(Vw(c))throw zc==null||zc(),new Yg(c.error,401,c)}if(l.status===401&&si){ni||(ni=Jg().finally(()=>{ni=null}));const c=await ni;if(c&&(si=c,window.dispatchEvent(new CustomEvent("auth:refreshed",{detail:{token:c}})),r.Authorization=`Bearer ${c}`,l=await fetch(`${Qh}${i}`,{...t,headers:r})),l.status===401)throw window.dispatchEvent(new CustomEvent("auth:unauthorized")),new Error("Session expired")}else if(l.status===401)throw window.dispatchEvent(new CustomEvent("auth:unauthorized")),new Error("Session expired");if(!l.ok){const c=await l.json().catch(()=>({error:l.statusText}));throw new Yg(c.message||c.error||l.statusText,l.status,c)}return l.json()}const Yw="lt_ai_override";function Kw(){return _e("/settings")}function Xw(){try{if(localStorage.getItem(Yw)==="off")return!1}catch{}return null}function Wn(){var r;const i=dt({queryKey:["settings"],queryFn:Kw,staleTime:1/0}),t=Xw();return i.data&&t===!1&&((r=i.data.ai)!=null&&r.enabled)?{...i,data:{...i.data,ai:{enabled:!1}}}:i}function Jw(i){var f,m,b;const{data:t}=Wn(),r=((f=t==null?void 0:t.auth)==null?void 0:f.ssoKeepaliveSeconds)??0,s=((m=t==null?void 0:t.auth)==null?void 0:m.ssoKeepaliveIdleTimeoutSeconds)??0,l=j.useRef(Date.now()),c=j.useRef(Date.now()),d=j.useRef(!1),y=!!i&&((b=lu(i))==null?void 0:b.sso)===!0&&r>0;j.useEffect(()=>{if(!y)return;const v=()=>{l.current=Date.now()};window.addEventListener("pointerdown",v,{passive:!0}),window.addEventListener("keydown",v,{passive:!0}),window.addEventListener("wheel",v,{passive:!0});const _=async()=>{if(!d.current&&document.visibilityState==="visible"&&!(s>0&&Date.now()-l.current>s*1e3)){d.current=!0;try{const M=await fetch(`${Tt}/api/auth/sso`,{method:"POST"});if(M.status===401||M.status===403){window.dispatchEvent(new CustomEvent("auth:unauthorized"));return}if(!M.ok)return;const B=await M.json().catch(()=>null);B!=null&&B.token&&(c.current=Date.now(),window.dispatchEvent(new CustomEvent("auth:refreshed",{detail:{token:B.token}})))}catch{}finally{d.current=!1}}},w=setInterval(_,r*1e3),S=()=>{document.visibilityState==="visible"&&Date.now()-c.current>r*1e3&&_()};return document.addEventListener("visibilitychange",S),()=>{clearInterval(w),document.removeEventListener("visibilitychange",S),window.removeEventListener("pointerdown",v),window.removeEventListener("keydown",v),window.removeEventListener("wheel",v)}},[y,r,s])}const pb=j.createContext(null),Qw=300;function Rh(i,t){if(Od(i))return null;const r=lu(i);if(!r)return null;const s=t??(()=>{try{const l=sessionStorage.getItem("lt_user_info");return l?JSON.parse(l):null}catch{return null}})();return{userId:r.userId,displayName:(s==null?void 0:s.displayName)??null,username:(s==null?void 0:s.username)??null,roles:r.roles??[]}}function Zw({children:i}){const[t,r]=j.useState(()=>{const b=sessionStorage.getItem("lt_token");return b?Od(b)?(sessionStorage.removeItem("lt_token"),null):(Gl(b),Rh(b)):null}),s=j.useRef(void 0),l=j.useCallback(b=>{clearTimeout(s.current);const v=db(b);if(!v)return;const _=(v-Qw)*1e3-Date.now();_<=0||(s.current=setTimeout(async()=>{try{const w=lu(b);if(w!=null&&w.sso){const ce=await fetch(`${Tt}/api/auth/sso`,{method:"POST"});if(!ce.ok)return;const C=await ce.json();C.token&&window.dispatchEvent(new CustomEvent("auth:refreshed",{detail:{token:C.token}}));return}const S=sessionStorage.getItem("lt_credentials");if(!S)return;const{username:M,password:B}=JSON.parse(S),U=await fetch(`${Tt}/api/auth/login`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:M,password:B})});if(!U.ok)return;const re=await U.json();re.token&&window.dispatchEvent(new CustomEvent("auth:refreshed",{detail:{token:re.token}}))}catch{}},_))},[]),c=j.useCallback((b,v,_)=>{const w={displayName:(_==null?void 0:_.displayName)??null,username:(_==null?void 0:_.username)??(v==null?void 0:v.username)??null},S=Rh(b,w);S&&(Gl(b),sessionStorage.setItem("lt_token",b),sessionStorage.setItem("lt_user_info",JSON.stringify(w)),v&&sessionStorage.setItem("lt_credentials",JSON.stringify(v)),r(S),l(b))},[l]),d=j.useCallback(()=>{clearTimeout(s.current);const b=sessionStorage.getItem("lt_sso_logout_url");Gl(null),sessionStorage.removeItem("lt_token"),sessionStorage.removeItem("lt_credentials"),sessionStorage.removeItem("lt_user_info"),sessionStorage.removeItem("lt_sso_logout_url"),r(null),b&&(window.location.href=b)},[]);j.useEffect(()=>{const b=()=>d(),v=_=>{var M;const w=(M=_.detail)==null?void 0:M.token;if(!w)return;const S=Rh(w);S&&(Gl(w),sessionStorage.setItem("lt_token",w),r(S),l(w))};return window.addEventListener("auth:unauthorized",b),window.addEventListener("auth:refreshed",v),()=>{window.removeEventListener("auth:unauthorized",b),window.removeEventListener("auth:refreshed",v)}},[d,l]),j.useEffect(()=>{const b=sessionStorage.getItem("lt_token");return b&&t&&l(b),()=>clearTimeout(s.current)},[]);const g=(t==null?void 0:t.roles.some(b=>b.type==="superadmin"))??!1,y=j.useCallback(b=>(t==null?void 0:t.roles.some(v=>v.role===b))??!1,[t]),f=j.useCallback(b=>(t==null?void 0:t.roles.some(v=>v.type===b))??!1,[t]),m=(t==null?void 0:t.roles.map(b=>b.role))??[];return p.jsxs(pb.Provider,{value:{user:t,isAuthenticated:!!t,isSuperAdmin:g,login:c,logout:d,hasRole:y,hasRoleType:f,userRoleNames:m},children:[p.jsx(Ww,{authenticated:t!==null}),i]})}function Ww({authenticated:i}){return Jw(i?sessionStorage.getItem("lt_token"):null),null}function Ft(){const i=j.useContext(pb);if(!i)throw new Error("useAuth must be used within AuthProvider");return i}const mn=new Uint8Array(0),Hi=new TextEncoder,hn=new TextDecoder;function eS(...i){let t=0;for(let l=0;l<i.length;l++)t+=i[l].length;const r=new Uint8Array(t);let s=0;for(let l=0;l<i.length;l++)r.set(i[l],s),s+=i[l].length;return r}function so(...i){const t=[];for(let r=0;r<i.length;r++)t.push(Hi.encode(i[r]));return t.length===0?mn:t.length===1?t[0]:eS(...t)}function Qg(i){return!i||i.length===0?"":hn.decode(i)}const Zg="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ",Wg=36,tS=0xcfd41b9100000,ey=33,nS=333,ty=22;function rS(i){for(let t=0;t<i.length;t++)i[t]=Math.floor(Math.random()*255)}function iS(i){var t;(t=globalThis==null?void 0:globalThis.crypto)!=null&&t.getRandomValues?globalThis.crypto.getRandomValues(i):rS(i)}class sS{constructor(){A(this,"buf");A(this,"seq");A(this,"inc");A(this,"inited");this.buf=new Uint8Array(ty),this.inited=!1}init(){this.inited=!0,this.setPre(),this.initSeqAndInc(),this.fillSeq()}initSeqAndInc(){this.seq=Math.floor(Math.random()*tS),this.inc=Math.floor(Math.random()*(nS-ey)+ey)}setPre(){const t=new Uint8Array(12);iS(t);for(let r=0;r<12;r++){const s=t[r]%36;this.buf[r]=Zg.charCodeAt(s)}}fillSeq(){let t=this.seq;for(let r=ty-1;r>=12;r--)this.buf[r]=Zg.charCodeAt(t%Wg),t=Math.floor(t/Wg)}next(){return this.inited||this.init(),this.seq+=this.inc,this.seq>0xcfd41b9100000&&(this.setPre(),this.initSeqAndInc()),this.fillSeq(),String.fromCharCode.apply(String,this.buf)}reset(){this.init()}}const fi=new sS;var wr;(function(i){i.Disconnect="disconnect",i.Reconnect="reconnect",i.Update="update",i.LDM="ldm",i.Error="error"})(wr||(wr={}));var Ps;(function(i){i.Reconnecting="reconnecting",i.PingTimer="pingTimer",i.StaleConnection="staleConnection",i.ClientInitiatedReconnect="client initiated reconnect"})(Ps||(Ps={}));var le;(function(i){i.ApiError="BAD API",i.BadAuthentication="BAD_AUTHENTICATION",i.BadCreds="BAD_CREDS",i.BadHeader="BAD_HEADER",i.BadJson="BAD_JSON",i.BadPayload="BAD_PAYLOAD",i.BadSubject="BAD_SUBJECT",i.Cancelled="CANCELLED",i.ConnectionClosed="CONNECTION_CLOSED",i.ConnectionDraining="CONNECTION_DRAINING",i.ConnectionRefused="CONNECTION_REFUSED",i.ConnectionTimeout="CONNECTION_TIMEOUT",i.Disconnect="DISCONNECT",i.InvalidOption="INVALID_OPTION",i.InvalidPayload="INVALID_PAYLOAD",i.MaxPayloadExceeded="MAX_PAYLOAD_EXCEEDED",i.NoResponders="503",i.NotFunction="NOT_FUNC",i.RequestError="REQUEST_ERROR",i.ServerOptionNotAvailable="SERVER_OPT_NA",i.SubClosed="SUB_CLOSED",i.SubDraining="SUB_DRAINING",i.Timeout="TIMEOUT",i.Tls="TLS",i.Unknown="UNKNOWN_ERROR",i.WssRequired="WSS_REQUIRED",i.JetStreamInvalidAck="JESTREAM_INVALID_ACK",i.JetStream404NoMessages="404",i.JetStream408RequestTimeout="408",i.JetStream409MaxAckPendingExceeded="409",i.JetStream409="409",i.JetStreamNotEnabled="503",i.JetStreamIdleHeartBeat="IDLE_HEARTBEAT",i.AuthorizationViolation="AUTHORIZATION_VIOLATION",i.AuthenticationExpired="AUTHENTICATION_EXPIRED",i.ProtocolError="NATS_PROTOCOL_ERR",i.PermissionsViolation="PERMISSIONS_VIOLATION",i.AuthenticationTimeout="AUTHENTICATION_TIMEOUT",i.AccountExpired="ACCOUNT_EXPIRED"})(le||(le={}));function aS(i){return typeof i.code=="string"}class gb{constructor(){A(this,"messages");this.messages=new Map,this.messages.set(le.InvalidPayload,"Invalid payload type - payloads can be 'binary', 'string', or 'json'"),this.messages.set(le.BadJson,"Bad JSON"),this.messages.set(le.WssRequired,"TLS is required, therefore a secure websocket connection is also required")}static getMessage(t){return oS.getMessage(t)}getMessage(t){return this.messages.get(t)||t}}const oS=new gb;class me extends Error{constructor(r,s,l){super(r);A(this,"name");A(this,"message");A(this,"code");A(this,"permissionContext");A(this,"chainedError");A(this,"api_error");this.name="NatsError",this.message=r,this.code=s,this.chainedError=l}static errorForCode(r,s){const l=gb.getMessage(r);return new me(l,r,s)}isAuthError(){return this.code===le.AuthenticationExpired||this.code===le.AuthorizationViolation||this.code===le.AccountExpired}isAuthTimeout(){return this.code===le.AuthenticationTimeout}isPermissionError(){return this.code===le.PermissionsViolation}isProtocolError(){return this.code===le.ProtocolError}isJetStreamError(){return this.api_error!==void 0}jsError(){return this.api_error?this.api_error:null}}var un;(function(i){i[i.Exact=0]="Exact",i[i.CanonicalMIME=1]="CanonicalMIME",i[i.IgnoreCase=2]="IgnoreCase"})(un||(un={}));var $n;(function(i){i.Timer="timer",i.Count="count",i.JitterTimer="jitterTimer",i.SentinelMsg="sentinelMsg"})($n||($n={}));var ao;(function(i){i.STATS="io.nats.micro.v1.stats_response",i.INFO="io.nats.micro.v1.info_response",i.PING="io.nats.micro.v1.ping_response"})(ao||(ao={}));const Kc="Nats-Service-Error",Xc="Nats-Service-Error-Code";class Jc extends Error{constructor(r,s){super(s);A(this,"code");this.code=r}static isServiceError(r){return Jc.toServiceError(r)!==null}static toServiceError(r){var l,c;const s=((l=r==null?void 0:r.headers)==null?void 0:l.get(Xc))||"";if(s!==""){const d=parseInt(s)||400,g=((c=r==null?void 0:r.headers)==null?void 0:c.get(Kc))||"";return new Jc(d,g.length?g:s)}return null}}function Sr(i=""){if(i=i||"_INBOX",typeof i!="string")throw new Error("prefix must be a string");return i.split(".").forEach(t=>{if(t==="*"||t===">")throw new Error(`inbox prefixes cannot have wildcards '${i}'`)}),`${i}.${fi.next()}`}const Zh="127.0.0.1";var ai;(function(i){i.PING="PING",i.STATS="STATS",i.INFO="INFO"})(ai||(ai={}));function cu(i,...t){for(let r=0;r<t.length;r++){const s=t[r];Object.keys(s).forEach(function(l){i[l]=s[l]})}return i}function Fl(i){return hn.decode(i).replace(/\n/g,"␊").replace(/\r/g,"␍")}function Gs(i,t=!0){const r=t?me.errorForCode(le.Timeout):null;let s,l;const c=new Promise((d,g)=>{s={cancel:()=>{l&&clearTimeout(l)}},l=setTimeout(()=>{g(r===null?me.errorForCode(le.Timeout):r)},i)});return Object.assign(c,s)}function Ys(i=0){let t;const r=new Promise(s=>{const l=setTimeout(()=>{s()},i);t={cancel:()=>{l&&clearTimeout(l)}}});return Object.assign(r,t)}function ot(){let i={};const t=new Promise((r,s)=>{i={resolve:r,reject:s}});return Object.assign(t,i)}function yb(i){for(let t=i.length-1;t>0;t--){const r=Math.floor(Math.random()*(t+1));[i[t],i[r]]=[i[r],i[t]]}return i}function lS(i){return i===0?0:Math.floor(i/2+Math.random()*i)}function Ad(i=[0,250,250,500,500,3e3,5e3]){Array.isArray(i)||(i=[0,250,250,500,500,3e3,5e3]);const t=i.length-1;return{backoff(r){return lS(r>t?i[t]:i[r])}}}function at(i){return i*1e6}function jd(i){return Math.floor(i/1e6)}function ny(i){let s=!0;const l=new Array(i.length);for(let c=0;c<i.length;c++){let d=i.charCodeAt(c);if(d===58||d<33||d>126)throw new me(`'${i[c]}' is not a valid character for a header key`,le.BadHeader);s&&97<=d&&d<=122?d-=32:!s&&65<=d&&d<=90&&(d+=32),l[c]=d,s=d==45}return String.fromCharCode(...l)}function Er(i=0,t=""){if(i===0&&t!==""||i>0&&t==="")throw new Error("setting status requires both code and description");return new oi(i,t)}const Dh="NATS/1.0";class oi{constructor(t=0,r=""){A(this,"_code");A(this,"headers");A(this,"_description");this._code=t,this._description=r,this.headers=new Map}[Symbol.iterator](){return this.headers.entries()}size(){return this.headers.size}equals(t){if(t&&this.headers.size===t.headers.size&&this._code===t._code){for(const[r,s]of this.headers){const l=t.values(r);if(s.length!==l.length)return!1;const c=[...s].sort(),d=[...l].sort();for(let g=0;g<c.length;g++)if(c[g]!==d[g])return!1}return!0}return!1}static decode(t){const r=new oi,l=hn.decode(t).split(`\r
|
|
27
|
-
`),c=l[0];if(c!==Dh){let d=c.replace(Dh,"").trim();if(d.length>0){r._code=parseInt(d,10),isNaN(r._code)&&(r._code=0);const
|
|
25
|
+
`+o.stack}}var Js=Object.prototype.hasOwnProperty,Qs=i.unstable_scheduleCallback,er=i.unstable_cancelCallback,Ao=i.unstable_shouldYield,Vi=i.unstable_requestPaint,it=i.unstable_now,vu=i.unstable_getCurrentPriorityLevel,jo=i.unstable_ImmediatePriority,To=i.unstable_UserBlockingPriority,Yi=i.unstable_NormalPriority,xu=i.unstable_LowPriority,No=i.unstable_IdlePriority,_u=i.log,ko=i.unstable_setDisableYieldValue,pi=null,pt=null;function Zt(e){if(typeof _u=="function"&&ko(e),pt&&typeof pt.setStrictMode=="function")try{pt.setStrictMode(pi,e)}catch{}}var Lt=Math.clz32?Math.clz32:Ki,Zs=Math.log,Ws=Math.LN2;function Ki(e){return e>>>=0,e===0?32:31-(Zs(e)/Ws|0)|0}var jr=256,tr=262144,Tr=4194304;function Mn(e){var n=e&42;if(n!==0)return n;switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return e}}function yi(e,n,a){var o=e.pendingLanes;if(o===0)return 0;var u=0,h=e.suspendedLanes,x=e.pingedLanes;e=e.warmLanes;var E=o&134217727;return E!==0?(o=E&~h,o!==0?u=Mn(o):(x&=E,x!==0?u=Mn(x):a||(a=E&~e,a!==0&&(u=Mn(a))))):(E=o&~h,E!==0?u=Mn(E):x!==0?u=Mn(x):a||(a=o&~e,a!==0&&(u=Mn(a)))),u===0?0:n!==0&&n!==u&&(n&h)===0&&(h=u&-u,a=n&-n,h>=a||h===32&&(a&4194048)!==0)?n:u}function gi(e,n){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&n)===0}function ea(e,n){switch(e){case 1:case 2:case 4:case 8:case 64:return n+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return n+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Xi(){var e=Tr;return Tr<<=1,(Tr&62914560)===0&&(Tr=4194304),e}function Nr(e){for(var n=[],a=0;31>a;a++)n.push(e);return n}function Rn(e,n){e.pendingLanes|=n,n!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function kr(e,n,a,o,u,h){var x=e.pendingLanes;e.pendingLanes=a,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=a,e.entangledLanes&=a,e.errorRecoveryDisabledLanes&=a,e.shellSuspendCounter=0;var E=e.entanglements,R=e.expirationTimes,H=e.hiddenUpdates;for(a=x&~a;0<a;){var Q=31-Lt(a),ne=1<<Q;E[Q]=0,R[Q]=-1;var F=H[Q];if(F!==null)for(H[Q]=null,Q=0;Q<F.length;Q++){var K=F[Q];K!==null&&(K.lane&=-536870913)}a&=~ne}o!==0&&Cr(e,o,0),h!==0&&u===0&&e.tag!==0&&(e.suspendedLanes|=h&~(x&~n))}function Cr(e,n,a){e.pendingLanes|=n,e.suspendedLanes&=~n;var o=31-Lt(n);e.entangledLanes|=n,e.entanglements[o]=e.entanglements[o]|1073741824|a&261930}function bi(e,n){var a=e.entangledLanes|=n;for(e=e.entanglements;a;){var o=31-Lt(a),u=1<<o;u&n|e[o]&n&&(e[o]|=n),a&=~u}}function Mr(e,n){var a=n&-n;return a=(a&42)!==0?1:nr(a),(a&(e.suspendedLanes|n))!==0?0:a}function nr(e){switch(e){case 2:e=1;break;case 8:e=4;break;case 32:e=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:e=128;break;case 268435456:e=134217728;break;default:e=0}return e}function vi(e){return e&=-e,2<e?8<e?(e&134217727)!==0?32:268435456:8:2}function ta(){var e=ae.p;return e!==0?e:(e=window.event,e===void 0?32:Cy(e.type))}function Co(e,n){var a=ae.p;try{return ae.p=e,n()}finally{ae.p=a}}var Gn=Math.random().toString(36).slice(2),Qe="__reactFiber$"+Gn,ut="__reactProps$"+Gn,Wt="__reactContainer$"+Gn,xi="__reactEvents$"+Gn,na="__reactListeners$"+Gn,Mo="__reactHandles$"+Gn,Ro="__reactResources$"+Gn,Et="__reactMarker$"+Gn;function Ji(e){delete e[Qe],delete e[ut],delete e[xi],delete e[na],delete e[Mo]}function O(e){var n=e[Qe];if(n)return n;for(var a=e.parentNode;a;){if(n=a[Wt]||a[Qe]){if(a=n.alternate,n.child!==null||a!==null&&a.child!==null)for(e=py(e);e!==null;){if(a=e[Qe])return a;e=py(e)}return n}e=a,a=e.parentNode}return null}function N(e){if(e=e[Qe]||e[Wt]){var n=e.tag;if(n===5||n===6||n===13||n===31||n===26||n===27||n===3)return e}return null}function T(e){var n=e.tag;if(n===5||n===26||n===27||n===6)return e.stateNode;throw Error(s(33))}function k(e){var n=e[Ro];return n||(n=e[Ro]={hoistableStyles:new Map,hoistableScripts:new Map}),n}function D(e){e[Et]=!0}var I=new Set,te={};function se(e,n){V(e,n),V(e+"Capture",n)}function V(e,n){for(te[e]=n,e=0;e<n.length;e++)I.add(n[e])}var ee=RegExp("^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),pe={},Re={};function et(e){return Js.call(Re,e)?!0:Js.call(pe,e)?!1:ee.test(e)?Re[e]=!0:(pe[e]=!0,!1)}function Pt(e,n,a){if(et(n))if(a===null)e.removeAttribute(n);else{switch(typeof a){case"undefined":case"function":case"symbol":e.removeAttribute(n);return;case"boolean":var o=n.toLowerCase().slice(0,5);if(o!=="data-"&&o!=="aria-"){e.removeAttribute(n);return}}e.setAttribute(n,""+a)}}function Dn(e,n,a){if(a===null)e.removeAttribute(n);else{switch(typeof a){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(n);return}e.setAttribute(n,""+a)}}function rr(e,n,a,o){if(o===null)e.removeAttribute(a);else{switch(typeof o){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(a);return}e.setAttributeNS(n,a,""+o)}}function vn(e){switch(typeof e){case"bigint":case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function Wd(e){var n=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(n==="checkbox"||n==="radio")}function Xv(e,n,a){var o=Object.getOwnPropertyDescriptor(e.constructor.prototype,n);if(!e.hasOwnProperty(n)&&typeof o<"u"&&typeof o.get=="function"&&typeof o.set=="function"){var u=o.get,h=o.set;return Object.defineProperty(e,n,{configurable:!0,get:function(){return u.call(this)},set:function(x){a=""+x,h.call(this,x)}}),Object.defineProperty(e,n,{enumerable:o.enumerable}),{getValue:function(){return a},setValue:function(x){a=""+x},stopTracking:function(){e._valueTracker=null,delete e[n]}}}}function wu(e){if(!e._valueTracker){var n=Wd(e)?"checked":"value";e._valueTracker=Xv(e,n,""+e[n])}}function em(e){if(!e)return!1;var n=e._valueTracker;if(!n)return!0;var a=n.getValue(),o="";return e&&(o=Wd(e)?e.checked?"true":"false":e.value),e=o,e!==a?(n.setValue(e),!0):!1}function Do(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}var Jv=/[\n"\\]/g;function xn(e){return e.replace(Jv,function(n){return"\\"+n.charCodeAt(0).toString(16)+" "})}function Su(e,n,a,o,u,h,x,E){e.name="",x!=null&&typeof x!="function"&&typeof x!="symbol"&&typeof x!="boolean"?e.type=x:e.removeAttribute("type"),n!=null?x==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+vn(n)):e.value!==""+vn(n)&&(e.value=""+vn(n)):x!=="submit"&&x!=="reset"||e.removeAttribute("value"),n!=null?Eu(e,x,vn(n)):a!=null?Eu(e,x,vn(a)):o!=null&&e.removeAttribute("value"),u==null&&h!=null&&(e.defaultChecked=!!h),u!=null&&(e.checked=u&&typeof u!="function"&&typeof u!="symbol"),E!=null&&typeof E!="function"&&typeof E!="symbol"&&typeof E!="boolean"?e.name=""+vn(E):e.removeAttribute("name")}function tm(e,n,a,o,u,h,x,E){if(h!=null&&typeof h!="function"&&typeof h!="symbol"&&typeof h!="boolean"&&(e.type=h),n!=null||a!=null){if(!(h!=="submit"&&h!=="reset"||n!=null)){wu(e);return}a=a!=null?""+vn(a):"",n=n!=null?""+vn(n):a,E||n===e.value||(e.value=n),e.defaultValue=n}o=o??u,o=typeof o!="function"&&typeof o!="symbol"&&!!o,e.checked=E?e.checked:!!o,e.defaultChecked=!!o,x!=null&&typeof x!="function"&&typeof x!="symbol"&&typeof x!="boolean"&&(e.name=x),wu(e)}function Eu(e,n,a){n==="number"&&Do(e.ownerDocument)===e||e.defaultValue===""+a||(e.defaultValue=""+a)}function Qi(e,n,a,o){if(e=e.options,n){n={};for(var u=0;u<a.length;u++)n["$"+a[u]]=!0;for(a=0;a<e.length;a++)u=n.hasOwnProperty("$"+e[a].value),e[a].selected!==u&&(e[a].selected=u),u&&o&&(e[a].defaultSelected=!0)}else{for(a=""+vn(a),n=null,u=0;u<e.length;u++){if(e[u].value===a){e[u].selected=!0,o&&(e[u].defaultSelected=!0);return}n!==null||e[u].disabled||(n=e[u])}n!==null&&(n.selected=!0)}}function nm(e,n,a){if(n!=null&&(n=""+vn(n),n!==e.value&&(e.value=n),a==null)){e.defaultValue!==n&&(e.defaultValue=n);return}e.defaultValue=a!=null?""+vn(a):""}function rm(e,n,a,o){if(n==null){if(o!=null){if(a!=null)throw Error(s(92));if(Te(o)){if(1<o.length)throw Error(s(93));o=o[0]}a=o}a==null&&(a=""),n=a}a=vn(n),e.defaultValue=a,o=e.textContent,o===a&&o!==""&&o!==null&&(e.value=o),wu(e)}function Zi(e,n){if(n){var a=e.firstChild;if(a&&a===e.lastChild&&a.nodeType===3){a.nodeValue=n;return}}e.textContent=n}var Qv=new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" "));function im(e,n,a){var o=n.indexOf("--")===0;a==null||typeof a=="boolean"||a===""?o?e.setProperty(n,""):n==="float"?e.cssFloat="":e[n]="":o?e.setProperty(n,a):typeof a!="number"||a===0||Qv.has(n)?n==="float"?e.cssFloat=a:e[n]=(""+a).trim():e[n]=a+"px"}function sm(e,n,a){if(n!=null&&typeof n!="object")throw Error(s(62));if(e=e.style,a!=null){for(var o in a)!a.hasOwnProperty(o)||n!=null&&n.hasOwnProperty(o)||(o.indexOf("--")===0?e.setProperty(o,""):o==="float"?e.cssFloat="":e[o]="");for(var u in n)o=n[u],n.hasOwnProperty(u)&&a[u]!==o&&im(e,u,o)}else for(var h in n)n.hasOwnProperty(h)&&im(e,h,n[h])}function Ou(e){if(e.indexOf("-")===-1)return!1;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var Zv=new Map([["acceptCharset","accept-charset"],["htmlFor","for"],["httpEquiv","http-equiv"],["crossOrigin","crossorigin"],["accentHeight","accent-height"],["alignmentBaseline","alignment-baseline"],["arabicForm","arabic-form"],["baselineShift","baseline-shift"],["capHeight","cap-height"],["clipPath","clip-path"],["clipRule","clip-rule"],["colorInterpolation","color-interpolation"],["colorInterpolationFilters","color-interpolation-filters"],["colorProfile","color-profile"],["colorRendering","color-rendering"],["dominantBaseline","dominant-baseline"],["enableBackground","enable-background"],["fillOpacity","fill-opacity"],["fillRule","fill-rule"],["floodColor","flood-color"],["floodOpacity","flood-opacity"],["fontFamily","font-family"],["fontSize","font-size"],["fontSizeAdjust","font-size-adjust"],["fontStretch","font-stretch"],["fontStyle","font-style"],["fontVariant","font-variant"],["fontWeight","font-weight"],["glyphName","glyph-name"],["glyphOrientationHorizontal","glyph-orientation-horizontal"],["glyphOrientationVertical","glyph-orientation-vertical"],["horizAdvX","horiz-adv-x"],["horizOriginX","horiz-origin-x"],["imageRendering","image-rendering"],["letterSpacing","letter-spacing"],["lightingColor","lighting-color"],["markerEnd","marker-end"],["markerMid","marker-mid"],["markerStart","marker-start"],["overlinePosition","overline-position"],["overlineThickness","overline-thickness"],["paintOrder","paint-order"],["panose-1","panose-1"],["pointerEvents","pointer-events"],["renderingIntent","rendering-intent"],["shapeRendering","shape-rendering"],["stopColor","stop-color"],["stopOpacity","stop-opacity"],["strikethroughPosition","strikethrough-position"],["strikethroughThickness","strikethrough-thickness"],["strokeDasharray","stroke-dasharray"],["strokeDashoffset","stroke-dashoffset"],["strokeLinecap","stroke-linecap"],["strokeLinejoin","stroke-linejoin"],["strokeMiterlimit","stroke-miterlimit"],["strokeOpacity","stroke-opacity"],["strokeWidth","stroke-width"],["textAnchor","text-anchor"],["textDecoration","text-decoration"],["textRendering","text-rendering"],["transformOrigin","transform-origin"],["underlinePosition","underline-position"],["underlineThickness","underline-thickness"],["unicodeBidi","unicode-bidi"],["unicodeRange","unicode-range"],["unitsPerEm","units-per-em"],["vAlphabetic","v-alphabetic"],["vHanging","v-hanging"],["vIdeographic","v-ideographic"],["vMathematical","v-mathematical"],["vectorEffect","vector-effect"],["vertAdvY","vert-adv-y"],["vertOriginX","vert-origin-x"],["vertOriginY","vert-origin-y"],["wordSpacing","word-spacing"],["writingMode","writing-mode"],["xmlnsXlink","xmlns:xlink"],["xHeight","x-height"]]),Wv=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function qo(e){return Wv.test(""+e)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":e}function ir(){}var Au=null;function ju(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var Wi=null,es=null;function am(e){var n=N(e);if(n&&(e=n.stateNode)){var a=e[ut]||null;e:switch(e=n.stateNode,n.type){case"input":if(Su(e,a.value,a.defaultValue,a.defaultValue,a.checked,a.defaultChecked,a.type,a.name),n=a.name,a.type==="radio"&&n!=null){for(a=e;a.parentNode;)a=a.parentNode;for(a=a.querySelectorAll('input[name="'+xn(""+n)+'"][type="radio"]'),n=0;n<a.length;n++){var o=a[n];if(o!==e&&o.form===e.form){var u=o[ut]||null;if(!u)throw Error(s(90));Su(o,u.value,u.defaultValue,u.defaultValue,u.checked,u.defaultChecked,u.type,u.name)}}for(n=0;n<a.length;n++)o=a[n],o.form===e.form&&em(o)}break e;case"textarea":nm(e,a.value,a.defaultValue);break e;case"select":n=a.value,n!=null&&Qi(e,!!a.multiple,n,!1)}}}var Tu=!1;function om(e,n,a){if(Tu)return e(n,a);Tu=!0;try{var o=e(n);return o}finally{if(Tu=!1,(Wi!==null||es!==null)&&(wl(),Wi&&(n=Wi,e=es,es=Wi=null,am(n),e)))for(n=0;n<e.length;n++)am(e[n])}}function ra(e,n){var a=e.stateNode;if(a===null)return null;var o=a[ut]||null;if(o===null)return null;a=o[n];e:switch(n){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(o=!o.disabled)||(e=e.type,o=!(e==="button"||e==="input"||e==="select"||e==="textarea")),e=!o;break e;default:e=!1}if(e)return null;if(a&&typeof a!="function")throw Error(s(231,n,typeof a));return a}var sr=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Nu=!1;if(sr)try{var ia={};Object.defineProperty(ia,"passive",{get:function(){Nu=!0}}),window.addEventListener("test",ia,ia),window.removeEventListener("test",ia,ia)}catch{Nu=!1}var Rr=null,ku=null,Bo=null;function lm(){if(Bo)return Bo;var e,n=ku,a=n.length,o,u="value"in Rr?Rr.value:Rr.textContent,h=u.length;for(e=0;e<a&&n[e]===u[e];e++);var x=a-e;for(o=1;o<=x&&n[a-o]===u[h-o];o++);return Bo=u.slice(e,1<o?1-o:void 0)}function Lo(e){var n=e.keyCode;return"charCode"in e?(e=e.charCode,e===0&&n===13&&(e=13)):e=n,e===10&&(e=13),32<=e||e===13?e:0}function Po(){return!0}function cm(){return!1}function Vt(e){function n(a,o,u,h,x){this._reactName=a,this._targetInst=u,this.type=o,this.nativeEvent=h,this.target=x,this.currentTarget=null;for(var E in e)e.hasOwnProperty(E)&&(a=e[E],this[E]=a?a(h):h[E]);return this.isDefaultPrevented=(h.defaultPrevented!=null?h.defaultPrevented:h.returnValue===!1)?Po:cm,this.isPropagationStopped=cm,this}return b(n.prototype,{preventDefault:function(){this.defaultPrevented=!0;var a=this.nativeEvent;a&&(a.preventDefault?a.preventDefault():typeof a.returnValue!="unknown"&&(a.returnValue=!1),this.isDefaultPrevented=Po)},stopPropagation:function(){var a=this.nativeEvent;a&&(a.stopPropagation?a.stopPropagation():typeof a.cancelBubble!="unknown"&&(a.cancelBubble=!0),this.isPropagationStopped=Po)},persist:function(){},isPersistent:Po}),n}var _i={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Uo=Vt(_i),sa=b({},_i,{view:0,detail:0}),ex=Vt(sa),Cu,Mu,aa,zo=b({},sa,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Du,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==aa&&(aa&&e.type==="mousemove"?(Cu=e.screenX-aa.screenX,Mu=e.screenY-aa.screenY):Mu=Cu=0,aa=e),Cu)},movementY:function(e){return"movementY"in e?e.movementY:Mu}}),um=Vt(zo),tx=b({},zo,{dataTransfer:0}),nx=Vt(tx),rx=b({},sa,{relatedTarget:0}),Ru=Vt(rx),ix=b({},_i,{animationName:0,elapsedTime:0,pseudoElement:0}),sx=Vt(ix),ax=b({},_i,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),ox=Vt(ax),lx=b({},_i,{data:0}),fm=Vt(lx),cx={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},ux={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},fx={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function hx(e){var n=this.nativeEvent;return n.getModifierState?n.getModifierState(e):(e=fx[e])?!!n[e]:!1}function Du(){return hx}var dx=b({},sa,{key:function(e){if(e.key){var n=cx[e.key]||e.key;if(n!=="Unidentified")return n}return e.type==="keypress"?(e=Lo(e),e===13?"Enter":String.fromCharCode(e)):e.type==="keydown"||e.type==="keyup"?ux[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Du,charCode:function(e){return e.type==="keypress"?Lo(e):0},keyCode:function(e){return e.type==="keydown"||e.type==="keyup"?e.keyCode:0},which:function(e){return e.type==="keypress"?Lo(e):e.type==="keydown"||e.type==="keyup"?e.keyCode:0}}),mx=Vt(dx),px=b({},zo,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),hm=Vt(px),yx=b({},sa,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Du}),gx=Vt(yx),bx=b({},_i,{propertyName:0,elapsedTime:0,pseudoElement:0}),vx=Vt(bx),xx=b({},zo,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),_x=Vt(xx),wx=b({},_i,{newState:0,oldState:0}),Sx=Vt(wx),Ex=[9,13,27,32],qu=sr&&"CompositionEvent"in window,oa=null;sr&&"documentMode"in document&&(oa=document.documentMode);var Ox=sr&&"TextEvent"in window&&!oa,dm=sr&&(!qu||oa&&8<oa&&11>=oa),mm=" ",pm=!1;function ym(e,n){switch(e){case"keyup":return Ex.indexOf(n.keyCode)!==-1;case"keydown":return n.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function gm(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var ts=!1;function Ax(e,n){switch(e){case"compositionend":return gm(n);case"keypress":return n.which!==32?null:(pm=!0,mm);case"textInput":return e=n.data,e===mm&&pm?null:e;default:return null}}function jx(e,n){if(ts)return e==="compositionend"||!qu&&ym(e,n)?(e=lm(),Bo=ku=Rr=null,ts=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(n.ctrlKey||n.altKey||n.metaKey)||n.ctrlKey&&n.altKey){if(n.char&&1<n.char.length)return n.char;if(n.which)return String.fromCharCode(n.which)}return null;case"compositionend":return dm&&n.locale!=="ko"?null:n.data;default:return null}}var Tx={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function bm(e){var n=e&&e.nodeName&&e.nodeName.toLowerCase();return n==="input"?!!Tx[e.type]:n==="textarea"}function vm(e,n,a,o){Wi?es?es.push(o):es=[o]:Wi=o,n=Nl(n,"onChange"),0<n.length&&(a=new Uo("onChange","change",null,a,o),e.push({event:a,listeners:n}))}var la=null,ca=null;function Nx(e){ty(e,0)}function Io(e){var n=T(e);if(em(n))return e}function xm(e,n){if(e==="change")return n}var _m=!1;if(sr){var Bu;if(sr){var Lu="oninput"in document;if(!Lu){var wm=document.createElement("div");wm.setAttribute("oninput","return;"),Lu=typeof wm.oninput=="function"}Bu=Lu}else Bu=!1;_m=Bu&&(!document.documentMode||9<document.documentMode)}function Sm(){la&&(la.detachEvent("onpropertychange",Em),ca=la=null)}function Em(e){if(e.propertyName==="value"&&Io(ca)){var n=[];vm(n,ca,e,ju(e)),om(Nx,n)}}function kx(e,n,a){e==="focusin"?(Sm(),la=n,ca=a,la.attachEvent("onpropertychange",Em)):e==="focusout"&&Sm()}function Cx(e){if(e==="selectionchange"||e==="keyup"||e==="keydown")return Io(ca)}function Mx(e,n){if(e==="click")return Io(n)}function Rx(e,n){if(e==="input"||e==="change")return Io(n)}function Dx(e,n){return e===n&&(e!==0||1/e===1/n)||e!==e&&n!==n}var en=typeof Object.is=="function"?Object.is:Dx;function ua(e,n){if(en(e,n))return!0;if(typeof e!="object"||e===null||typeof n!="object"||n===null)return!1;var a=Object.keys(e),o=Object.keys(n);if(a.length!==o.length)return!1;for(o=0;o<a.length;o++){var u=a[o];if(!Js.call(n,u)||!en(e[u],n[u]))return!1}return!0}function Om(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function Am(e,n){var a=Om(e);e=0;for(var o;a;){if(a.nodeType===3){if(o=e+a.textContent.length,e<=n&&o>=n)return{node:a,offset:n-e};e=o}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=Om(a)}}function jm(e,n){return e&&n?e===n?!0:e&&e.nodeType===3?!1:n&&n.nodeType===3?jm(e,n.parentNode):"contains"in e?e.contains(n):e.compareDocumentPosition?!!(e.compareDocumentPosition(n)&16):!1:!1}function Tm(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var n=Do(e.document);n instanceof e.HTMLIFrameElement;){try{var a=typeof n.contentWindow.location.href=="string"}catch{a=!1}if(a)e=n.contentWindow;else break;n=Do(e.document)}return n}function Pu(e){var n=e&&e.nodeName&&e.nodeName.toLowerCase();return n&&(n==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||n==="textarea"||e.contentEditable==="true")}var qx=sr&&"documentMode"in document&&11>=document.documentMode,ns=null,Uu=null,fa=null,zu=!1;function Nm(e,n,a){var o=a.window===a?a.document:a.nodeType===9?a:a.ownerDocument;zu||ns==null||ns!==Do(o)||(o=ns,"selectionStart"in o&&Pu(o)?o={start:o.selectionStart,end:o.selectionEnd}:(o=(o.ownerDocument&&o.ownerDocument.defaultView||window).getSelection(),o={anchorNode:o.anchorNode,anchorOffset:o.anchorOffset,focusNode:o.focusNode,focusOffset:o.focusOffset}),fa&&ua(fa,o)||(fa=o,o=Nl(Uu,"onSelect"),0<o.length&&(n=new Uo("onSelect","select",null,n,a),e.push({event:n,listeners:o}),n.target=ns)))}function wi(e,n){var a={};return a[e.toLowerCase()]=n.toLowerCase(),a["Webkit"+e]="webkit"+n,a["Moz"+e]="moz"+n,a}var rs={animationend:wi("Animation","AnimationEnd"),animationiteration:wi("Animation","AnimationIteration"),animationstart:wi("Animation","AnimationStart"),transitionrun:wi("Transition","TransitionRun"),transitionstart:wi("Transition","TransitionStart"),transitioncancel:wi("Transition","TransitionCancel"),transitionend:wi("Transition","TransitionEnd")},Iu={},km={};sr&&(km=document.createElement("div").style,"AnimationEvent"in window||(delete rs.animationend.animation,delete rs.animationiteration.animation,delete rs.animationstart.animation),"TransitionEvent"in window||delete rs.transitionend.transition);function Si(e){if(Iu[e])return Iu[e];if(!rs[e])return e;var n=rs[e],a;for(a in n)if(n.hasOwnProperty(a)&&a in km)return Iu[e]=n[a];return e}var Cm=Si("animationend"),Mm=Si("animationiteration"),Rm=Si("animationstart"),Bx=Si("transitionrun"),Lx=Si("transitionstart"),Px=Si("transitioncancel"),Dm=Si("transitionend"),qm=new Map,$u="abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");$u.push("scrollEnd");function qn(e,n){qm.set(e,n),se(n,[e])}var $o=typeof reportError=="function"?reportError:function(e){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var n=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof e=="object"&&e!==null&&typeof e.message=="string"?String(e.message):String(e),error:e});if(!window.dispatchEvent(n))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",e);return}console.error(e)},_n=[],is=0,Hu=0;function Ho(){for(var e=is,n=Hu=is=0;n<e;){var a=_n[n];_n[n++]=null;var o=_n[n];_n[n++]=null;var u=_n[n];_n[n++]=null;var h=_n[n];if(_n[n++]=null,o!==null&&u!==null){var x=o.pending;x===null?u.next=u:(u.next=x.next,x.next=u),o.pending=u}h!==0&&Bm(a,u,h)}}function Go(e,n,a,o){_n[is++]=e,_n[is++]=n,_n[is++]=a,_n[is++]=o,Hu|=o,e.lanes|=o,e=e.alternate,e!==null&&(e.lanes|=o)}function Gu(e,n,a,o){return Go(e,n,a,o),Fo(e)}function Ei(e,n){return Go(e,null,null,n),Fo(e)}function Bm(e,n,a){e.lanes|=a;var o=e.alternate;o!==null&&(o.lanes|=a);for(var u=!1,h=e.return;h!==null;)h.childLanes|=a,o=h.alternate,o!==null&&(o.childLanes|=a),h.tag===22&&(e=h.stateNode,e===null||e._visibility&1||(u=!0)),e=h,h=h.return;return e.tag===3?(h=e.stateNode,u&&n!==null&&(u=31-Lt(a),e=h.hiddenUpdates,o=e[u],o===null?e[u]=[n]:o.push(n),n.lane=a|536870912),h):null}function Fo(e){if(50<Ra)throw Ra=0,eh=null,Error(s(185));for(var n=e.return;n!==null;)e=n,n=e.return;return e.tag===3?e.stateNode:null}var ss={};function Ux(e,n,a,o){this.tag=e,this.key=a,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=n,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=o,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function tn(e,n,a,o){return new Ux(e,n,a,o)}function Fu(e){return e=e.prototype,!(!e||!e.isReactComponent)}function ar(e,n){var a=e.alternate;return a===null?(a=tn(e.tag,n,e.key,e.mode),a.elementType=e.elementType,a.type=e.type,a.stateNode=e.stateNode,a.alternate=e,e.alternate=a):(a.pendingProps=n,a.type=e.type,a.flags=0,a.subtreeFlags=0,a.deletions=null),a.flags=e.flags&65011712,a.childLanes=e.childLanes,a.lanes=e.lanes,a.child=e.child,a.memoizedProps=e.memoizedProps,a.memoizedState=e.memoizedState,a.updateQueue=e.updateQueue,n=e.dependencies,a.dependencies=n===null?null:{lanes:n.lanes,firstContext:n.firstContext},a.sibling=e.sibling,a.index=e.index,a.ref=e.ref,a.refCleanup=e.refCleanup,a}function Lm(e,n){e.flags&=65011714;var a=e.alternate;return a===null?(e.childLanes=0,e.lanes=n,e.child=null,e.subtreeFlags=0,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null):(e.childLanes=a.childLanes,e.lanes=a.lanes,e.child=a.child,e.subtreeFlags=0,e.deletions=null,e.memoizedProps=a.memoizedProps,e.memoizedState=a.memoizedState,e.updateQueue=a.updateQueue,e.type=a.type,n=a.dependencies,e.dependencies=n===null?null:{lanes:n.lanes,firstContext:n.firstContext}),e}function Vo(e,n,a,o,u,h){var x=0;if(o=e,typeof e=="function")Fu(e)&&(x=1);else if(typeof e=="string")x=G_(e,a,We.current)?26:e==="html"||e==="head"||e==="body"?27:5;else e:switch(e){case L:return e=tn(31,a,n,u),e.elementType=L,e.lanes=h,e;case S:return Oi(a.children,u,h,n);case M:x=8,u|=24;break;case B:return e=tn(12,a,n,u|2),e.elementType=B,e.lanes=h,e;case C:return e=tn(13,a,n,u),e.elementType=C,e.lanes=h,e;case P:return e=tn(19,a,n,u),e.elementType=P,e.lanes=h,e;default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case re:x=10;break e;case U:x=9;break e;case ce:x=11;break e;case ie:x=14;break e;case X:x=16,o=null;break e}x=29,a=Error(s(130,e===null?"null":typeof e,"")),o=null}return n=tn(x,a,n,u),n.elementType=e,n.type=o,n.lanes=h,n}function Oi(e,n,a,o){return e=tn(7,e,o,n),e.lanes=a,e}function Vu(e,n,a){return e=tn(6,e,null,n),e.lanes=a,e}function Pm(e){var n=tn(18,null,null,0);return n.stateNode=e,n}function Yu(e,n,a){return n=tn(4,e.children!==null?e.children:[],e.key,n),n.lanes=a,n.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},n}var Um=new WeakMap;function wn(e,n){if(typeof e=="object"&&e!==null){var a=Um.get(e);return a!==void 0?a:(n={value:e,source:n,stack:Oo(n)},Um.set(e,n),n)}return{value:e,source:n,stack:Oo(n)}}var as=[],os=0,Yo=null,ha=0,Sn=[],En=0,Dr=null,Fn=1,Vn="";function or(e,n){as[os++]=ha,as[os++]=Yo,Yo=e,ha=n}function zm(e,n,a){Sn[En++]=Fn,Sn[En++]=Vn,Sn[En++]=Dr,Dr=e;var o=Fn;e=Vn;var u=32-Lt(o)-1;o&=~(1<<u),a+=1;var h=32-Lt(n)+u;if(30<h){var x=u-u%5;h=(o&(1<<x)-1).toString(32),o>>=x,u-=x,Fn=1<<32-Lt(n)+u|a<<u|o,Vn=h+e}else Fn=1<<h|a<<u|o,Vn=e}function Ku(e){e.return!==null&&(or(e,1),zm(e,1,0))}function Xu(e){for(;e===Yo;)Yo=as[--os],as[os]=null,ha=as[--os],as[os]=null;for(;e===Dr;)Dr=Sn[--En],Sn[En]=null,Vn=Sn[--En],Sn[En]=null,Fn=Sn[--En],Sn[En]=null}function Im(e,n){Sn[En++]=Fn,Sn[En++]=Vn,Sn[En++]=Dr,Fn=n.id,Vn=n.overflow,Dr=e}var Ct=null,tt=null,Pe=!1,qr=null,On=!1,Ju=Error(s(519));function Br(e){var n=Error(s(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?"text":"HTML",""));throw da(wn(n,e)),Ju}function $m(e){var n=e.stateNode,a=e.type,o=e.memoizedProps;switch(n[Qe]=e,n[ut]=o,a){case"dialog":qe("cancel",n),qe("close",n);break;case"iframe":case"object":case"embed":qe("load",n);break;case"video":case"audio":for(a=0;a<qa.length;a++)qe(qa[a],n);break;case"source":qe("error",n);break;case"img":case"image":case"link":qe("error",n),qe("load",n);break;case"details":qe("toggle",n);break;case"input":qe("invalid",n),tm(n,o.value,o.defaultValue,o.checked,o.defaultChecked,o.type,o.name,!0);break;case"select":qe("invalid",n);break;case"textarea":qe("invalid",n),rm(n,o.value,o.defaultValue,o.children)}a=o.children,typeof a!="string"&&typeof a!="number"&&typeof a!="bigint"||n.textContent===""+a||o.suppressHydrationWarning===!0||sy(n.textContent,a)?(o.popover!=null&&(qe("beforetoggle",n),qe("toggle",n)),o.onScroll!=null&&qe("scroll",n),o.onScrollEnd!=null&&qe("scrollend",n),o.onClick!=null&&(n.onclick=ir),n=!0):n=!1,n||Br(e,!0)}function Hm(e){for(Ct=e.return;Ct;)switch(Ct.tag){case 5:case 31:case 13:On=!1;return;case 27:case 3:On=!0;return;default:Ct=Ct.return}}function ls(e){if(e!==Ct)return!1;if(!Pe)return Hm(e),Pe=!0,!1;var n=e.tag,a;if((a=n!==3&&n!==27)&&((a=n===5)&&(a=e.type,a=!(a!=="form"&&a!=="button")||ph(e.type,e.memoizedProps)),a=!a),a&&tt&&Br(e),Hm(e),n===13){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(s(317));tt=my(e)}else if(n===31){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(s(317));tt=my(e)}else n===27?(n=tt,Jr(e.type)?(e=xh,xh=null,tt=e):tt=n):tt=Ct?jn(e.stateNode.nextSibling):null;return!0}function Ai(){tt=Ct=null,Pe=!1}function Qu(){var e=qr;return e!==null&&(Jt===null?Jt=e:Jt.push.apply(Jt,e),qr=null),e}function da(e){qr===null?qr=[e]:qr.push(e)}var Zu=je(null),ji=null,lr=null;function Lr(e,n,a){Ne(Zu,n._currentValue),n._currentValue=a}function cr(e){e._currentValue=Zu.current,Se(Zu)}function Wu(e,n,a){for(;e!==null;){var o=e.alternate;if((e.childLanes&n)!==n?(e.childLanes|=n,o!==null&&(o.childLanes|=n)):o!==null&&(o.childLanes&n)!==n&&(o.childLanes|=n),e===a)break;e=e.return}}function ef(e,n,a,o){var u=e.child;for(u!==null&&(u.return=e);u!==null;){var h=u.dependencies;if(h!==null){var x=u.child;h=h.firstContext;e:for(;h!==null;){var E=h;h=u;for(var R=0;R<n.length;R++)if(E.context===n[R]){h.lanes|=a,E=h.alternate,E!==null&&(E.lanes|=a),Wu(h.return,a,e),o||(x=null);break e}h=E.next}}else if(u.tag===18){if(x=u.return,x===null)throw Error(s(341));x.lanes|=a,h=x.alternate,h!==null&&(h.lanes|=a),Wu(x,a,e),x=null}else x=u.child;if(x!==null)x.return=u;else for(x=u;x!==null;){if(x===e){x=null;break}if(u=x.sibling,u!==null){u.return=x.return,x=u;break}x=x.return}u=x}}function cs(e,n,a,o){e=null;for(var u=n,h=!1;u!==null;){if(!h){if((u.flags&524288)!==0)h=!0;else if((u.flags&262144)!==0)break}if(u.tag===10){var x=u.alternate;if(x===null)throw Error(s(387));if(x=x.memoizedProps,x!==null){var E=u.type;en(u.pendingProps.value,x.value)||(e!==null?e.push(E):e=[E])}}else if(u===At.current){if(x=u.alternate,x===null)throw Error(s(387));x.memoizedState.memoizedState!==u.memoizedState.memoizedState&&(e!==null?e.push(za):e=[za])}u=u.return}e!==null&&ef(n,e,a,o),n.flags|=262144}function Ko(e){for(e=e.firstContext;e!==null;){if(!en(e.context._currentValue,e.memoizedValue))return!0;e=e.next}return!1}function Ti(e){ji=e,lr=null,e=e.dependencies,e!==null&&(e.firstContext=null)}function Mt(e){return Gm(ji,e)}function Xo(e,n){return ji===null&&Ti(e),Gm(e,n)}function Gm(e,n){var a=n._currentValue;if(n={context:n,memoizedValue:a,next:null},lr===null){if(e===null)throw Error(s(308));lr=n,e.dependencies={lanes:0,firstContext:n},e.flags|=524288}else lr=lr.next=n;return a}var zx=typeof AbortController<"u"?AbortController:function(){var e=[],n=this.signal={aborted:!1,addEventListener:function(a,o){e.push(o)}};this.abort=function(){n.aborted=!0,e.forEach(function(a){return a()})}},Ix=i.unstable_scheduleCallback,$x=i.unstable_NormalPriority,vt={$$typeof:re,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function tf(){return{controller:new zx,data:new Map,refCount:0}}function ma(e){e.refCount--,e.refCount===0&&Ix($x,function(){e.controller.abort()})}var pa=null,nf=0,us=0,fs=null;function Hx(e,n){if(pa===null){var a=pa=[];nf=0,us=ah(),fs={status:"pending",value:void 0,then:function(o){a.push(o)}}}return nf++,n.then(Fm,Fm),n}function Fm(){if(--nf===0&&pa!==null){fs!==null&&(fs.status="fulfilled");var e=pa;pa=null,us=0,fs=null;for(var n=0;n<e.length;n++)(0,e[n])()}}function Gx(e,n){var a=[],o={status:"pending",value:null,reason:null,then:function(u){a.push(u)}};return e.then(function(){o.status="fulfilled",o.value=n;for(var u=0;u<a.length;u++)(0,a[u])(n)},function(u){for(o.status="rejected",o.reason=u,u=0;u<a.length;u++)(0,a[u])(void 0)}),o}var Vm=Y.S;Y.S=function(e,n){Np=it(),typeof n=="object"&&n!==null&&typeof n.then=="function"&&Hx(e,n),Vm!==null&&Vm(e,n)};var Ni=je(null);function rf(){var e=Ni.current;return e!==null?e:Ze.pooledCache}function Jo(e,n){n===null?Ne(Ni,Ni.current):Ne(Ni,n.pool)}function Ym(){var e=rf();return e===null?null:{parent:vt._currentValue,pool:e}}var hs=Error(s(460)),sf=Error(s(474)),Qo=Error(s(542)),Zo={then:function(){}};function Km(e){return e=e.status,e==="fulfilled"||e==="rejected"}function Xm(e,n,a){switch(a=e[a],a===void 0?e.push(n):a!==n&&(n.then(ir,ir),n=a),n.status){case"fulfilled":return n.value;case"rejected":throw e=n.reason,Qm(e),e;default:if(typeof n.status=="string")n.then(ir,ir);else{if(e=Ze,e!==null&&100<e.shellSuspendCounter)throw Error(s(482));e=n,e.status="pending",e.then(function(o){if(n.status==="pending"){var u=n;u.status="fulfilled",u.value=o}},function(o){if(n.status==="pending"){var u=n;u.status="rejected",u.reason=o}})}switch(n.status){case"fulfilled":return n.value;case"rejected":throw e=n.reason,Qm(e),e}throw Ci=n,hs}}function ki(e){try{var n=e._init;return n(e._payload)}catch(a){throw a!==null&&typeof a=="object"&&typeof a.then=="function"?(Ci=a,hs):a}}var Ci=null;function Jm(){if(Ci===null)throw Error(s(459));var e=Ci;return Ci=null,e}function Qm(e){if(e===hs||e===Qo)throw Error(s(483))}var ds=null,ya=0;function Wo(e){var n=ya;return ya+=1,ds===null&&(ds=[]),Xm(ds,e,n)}function ga(e,n){n=n.props.ref,e.ref=n!==void 0?n:null}function el(e,n){throw n.$$typeof===v?Error(s(525)):(e=Object.prototype.toString.call(n),Error(s(31,e==="[object Object]"?"object with keys {"+Object.keys(n).join(", ")+"}":e)))}function Zm(e){function n(z,q){if(e){var $=z.deletions;$===null?(z.deletions=[q],z.flags|=16):$.push(q)}}function a(z,q){if(!e)return null;for(;q!==null;)n(z,q),q=q.sibling;return null}function o(z){for(var q=new Map;z!==null;)z.key!==null?q.set(z.key,z):q.set(z.index,z),z=z.sibling;return q}function u(z,q){return z=ar(z,q),z.index=0,z.sibling=null,z}function h(z,q,$){return z.index=$,e?($=z.alternate,$!==null?($=$.index,$<q?(z.flags|=67108866,q):$):(z.flags|=67108866,q)):(z.flags|=1048576,q)}function x(z){return e&&z.alternate===null&&(z.flags|=67108866),z}function E(z,q,$,Z){return q===null||q.tag!==6?(q=Vu($,z.mode,Z),q.return=z,q):(q=u(q,$),q.return=z,q)}function R(z,q,$,Z){var ve=$.type;return ve===S?Q(z,q,$.props.children,Z,$.key):q!==null&&(q.elementType===ve||typeof ve=="object"&&ve!==null&&ve.$$typeof===X&&ki(ve)===q.type)?(q=u(q,$.props),ga(q,$),q.return=z,q):(q=Vo($.type,$.key,$.props,null,z.mode,Z),ga(q,$),q.return=z,q)}function H(z,q,$,Z){return q===null||q.tag!==4||q.stateNode.containerInfo!==$.containerInfo||q.stateNode.implementation!==$.implementation?(q=Yu($,z.mode,Z),q.return=z,q):(q=u(q,$.children||[]),q.return=z,q)}function Q(z,q,$,Z,ve){return q===null||q.tag!==7?(q=Oi($,z.mode,Z,ve),q.return=z,q):(q=u(q,$),q.return=z,q)}function ne(z,q,$){if(typeof q=="string"&&q!==""||typeof q=="number"||typeof q=="bigint")return q=Vu(""+q,z.mode,$),q.return=z,q;if(typeof q=="object"&&q!==null){switch(q.$$typeof){case _:return $=Vo(q.type,q.key,q.props,null,z.mode,$),ga($,q),$.return=z,$;case w:return q=Yu(q,z.mode,$),q.return=z,q;case X:return q=ki(q),ne(z,q,$)}if(Te(q)||J(q))return q=Oi(q,z.mode,$,null),q.return=z,q;if(typeof q.then=="function")return ne(z,Wo(q),$);if(q.$$typeof===re)return ne(z,Xo(z,q),$);el(z,q)}return null}function F(z,q,$,Z){var ve=q!==null?q.key:null;if(typeof $=="string"&&$!==""||typeof $=="number"||typeof $=="bigint")return ve!==null?null:E(z,q,""+$,Z);if(typeof $=="object"&&$!==null){switch($.$$typeof){case _:return $.key===ve?R(z,q,$,Z):null;case w:return $.key===ve?H(z,q,$,Z):null;case X:return $=ki($),F(z,q,$,Z)}if(Te($)||J($))return ve!==null?null:Q(z,q,$,Z,null);if(typeof $.then=="function")return F(z,q,Wo($),Z);if($.$$typeof===re)return F(z,q,Xo(z,$),Z);el(z,$)}return null}function K(z,q,$,Z,ve){if(typeof Z=="string"&&Z!==""||typeof Z=="number"||typeof Z=="bigint")return z=z.get($)||null,E(q,z,""+Z,ve);if(typeof Z=="object"&&Z!==null){switch(Z.$$typeof){case _:return z=z.get(Z.key===null?$:Z.key)||null,R(q,z,Z,ve);case w:return z=z.get(Z.key===null?$:Z.key)||null,H(q,z,Z,ve);case X:return Z=ki(Z),K(z,q,$,Z,ve)}if(Te(Z)||J(Z))return z=z.get($)||null,Q(q,z,Z,ve,null);if(typeof Z.then=="function")return K(z,q,$,Wo(Z),ve);if(Z.$$typeof===re)return K(z,q,$,Xo(q,Z),ve);el(q,Z)}return null}function ye(z,q,$,Z){for(var ve=null,$e=null,ge=q,Me=q=0,Le=null;ge!==null&&Me<$.length;Me++){ge.index>Me?(Le=ge,ge=null):Le=ge.sibling;var He=F(z,ge,$[Me],Z);if(He===null){ge===null&&(ge=Le);break}e&&ge&&He.alternate===null&&n(z,ge),q=h(He,q,Me),$e===null?ve=He:$e.sibling=He,$e=He,ge=Le}if(Me===$.length)return a(z,ge),Pe&&or(z,Me),ve;if(ge===null){for(;Me<$.length;Me++)ge=ne(z,$[Me],Z),ge!==null&&(q=h(ge,q,Me),$e===null?ve=ge:$e.sibling=ge,$e=ge);return Pe&&or(z,Me),ve}for(ge=o(ge);Me<$.length;Me++)Le=K(ge,z,Me,$[Me],Z),Le!==null&&(e&&Le.alternate!==null&&ge.delete(Le.key===null?Me:Le.key),q=h(Le,q,Me),$e===null?ve=Le:$e.sibling=Le,$e=Le);return e&&ge.forEach(function(ti){return n(z,ti)}),Pe&&or(z,Me),ve}function Ee(z,q,$,Z){if($==null)throw Error(s(151));for(var ve=null,$e=null,ge=q,Me=q=0,Le=null,He=$.next();ge!==null&&!He.done;Me++,He=$.next()){ge.index>Me?(Le=ge,ge=null):Le=ge.sibling;var ti=F(z,ge,He.value,Z);if(ti===null){ge===null&&(ge=Le);break}e&&ge&&ti.alternate===null&&n(z,ge),q=h(ti,q,Me),$e===null?ve=ti:$e.sibling=ti,$e=ti,ge=Le}if(He.done)return a(z,ge),Pe&&or(z,Me),ve;if(ge===null){for(;!He.done;Me++,He=$.next())He=ne(z,He.value,Z),He!==null&&(q=h(He,q,Me),$e===null?ve=He:$e.sibling=He,$e=He);return Pe&&or(z,Me),ve}for(ge=o(ge);!He.done;Me++,He=$.next())He=K(ge,z,Me,He.value,Z),He!==null&&(e&&He.alternate!==null&&ge.delete(He.key===null?Me:He.key),q=h(He,q,Me),$e===null?ve=He:$e.sibling=He,$e=He);return e&&ge.forEach(function(tw){return n(z,tw)}),Pe&&or(z,Me),ve}function Je(z,q,$,Z){if(typeof $=="object"&&$!==null&&$.type===S&&$.key===null&&($=$.props.children),typeof $=="object"&&$!==null){switch($.$$typeof){case _:e:{for(var ve=$.key;q!==null;){if(q.key===ve){if(ve=$.type,ve===S){if(q.tag===7){a(z,q.sibling),Z=u(q,$.props.children),Z.return=z,z=Z;break e}}else if(q.elementType===ve||typeof ve=="object"&&ve!==null&&ve.$$typeof===X&&ki(ve)===q.type){a(z,q.sibling),Z=u(q,$.props),ga(Z,$),Z.return=z,z=Z;break e}a(z,q);break}else n(z,q);q=q.sibling}$.type===S?(Z=Oi($.props.children,z.mode,Z,$.key),Z.return=z,z=Z):(Z=Vo($.type,$.key,$.props,null,z.mode,Z),ga(Z,$),Z.return=z,z=Z)}return x(z);case w:e:{for(ve=$.key;q!==null;){if(q.key===ve)if(q.tag===4&&q.stateNode.containerInfo===$.containerInfo&&q.stateNode.implementation===$.implementation){a(z,q.sibling),Z=u(q,$.children||[]),Z.return=z,z=Z;break e}else{a(z,q);break}else n(z,q);q=q.sibling}Z=Yu($,z.mode,Z),Z.return=z,z=Z}return x(z);case X:return $=ki($),Je(z,q,$,Z)}if(Te($))return ye(z,q,$,Z);if(J($)){if(ve=J($),typeof ve!="function")throw Error(s(150));return $=ve.call($),Ee(z,q,$,Z)}if(typeof $.then=="function")return Je(z,q,Wo($),Z);if($.$$typeof===re)return Je(z,q,Xo(z,$),Z);el(z,$)}return typeof $=="string"&&$!==""||typeof $=="number"||typeof $=="bigint"?($=""+$,q!==null&&q.tag===6?(a(z,q.sibling),Z=u(q,$),Z.return=z,z=Z):(a(z,q),Z=Vu($,z.mode,Z),Z.return=z,z=Z),x(z)):a(z,q)}return function(z,q,$,Z){try{ya=0;var ve=Je(z,q,$,Z);return ds=null,ve}catch(ge){if(ge===hs||ge===Qo)throw ge;var $e=tn(29,ge,null,z.mode);return $e.lanes=Z,$e.return=z,$e}finally{}}}var Mi=Zm(!0),Wm=Zm(!1),Pr=!1;function af(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function of(e,n){e=e.updateQueue,n.updateQueue===e&&(n.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function Ur(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function zr(e,n,a){var o=e.updateQueue;if(o===null)return null;if(o=o.shared,(Ge&2)!==0){var u=o.pending;return u===null?n.next=n:(n.next=u.next,u.next=n),o.pending=n,n=Fo(e),Bm(e,null,a),n}return Go(e,o,n,a),Fo(e)}function ba(e,n,a){if(n=n.updateQueue,n!==null&&(n=n.shared,(a&4194048)!==0)){var o=n.lanes;o&=e.pendingLanes,a|=o,n.lanes=a,bi(e,a)}}function lf(e,n){var a=e.updateQueue,o=e.alternate;if(o!==null&&(o=o.updateQueue,a===o)){var u=null,h=null;if(a=a.firstBaseUpdate,a!==null){do{var x={lane:a.lane,tag:a.tag,payload:a.payload,callback:null,next:null};h===null?u=h=x:h=h.next=x,a=a.next}while(a!==null);h===null?u=h=n:h=h.next=n}else u=h=n;a={baseState:o.baseState,firstBaseUpdate:u,lastBaseUpdate:h,shared:o.shared,callbacks:o.callbacks},e.updateQueue=a;return}e=a.lastBaseUpdate,e===null?a.firstBaseUpdate=n:e.next=n,a.lastBaseUpdate=n}var cf=!1;function va(){if(cf){var e=fs;if(e!==null)throw e}}function xa(e,n,a,o){cf=!1;var u=e.updateQueue;Pr=!1;var h=u.firstBaseUpdate,x=u.lastBaseUpdate,E=u.shared.pending;if(E!==null){u.shared.pending=null;var R=E,H=R.next;R.next=null,x===null?h=H:x.next=H,x=R;var Q=e.alternate;Q!==null&&(Q=Q.updateQueue,E=Q.lastBaseUpdate,E!==x&&(E===null?Q.firstBaseUpdate=H:E.next=H,Q.lastBaseUpdate=R))}if(h!==null){var ne=u.baseState;x=0,Q=H=R=null,E=h;do{var F=E.lane&-536870913,K=F!==E.lane;if(K?(Be&F)===F:(o&F)===F){F!==0&&F===us&&(cf=!0),Q!==null&&(Q=Q.next={lane:0,tag:E.tag,payload:E.payload,callback:null,next:null});e:{var ye=e,Ee=E;F=n;var Je=a;switch(Ee.tag){case 1:if(ye=Ee.payload,typeof ye=="function"){ne=ye.call(Je,ne,F);break e}ne=ye;break e;case 3:ye.flags=ye.flags&-65537|128;case 0:if(ye=Ee.payload,F=typeof ye=="function"?ye.call(Je,ne,F):ye,F==null)break e;ne=b({},ne,F);break e;case 2:Pr=!0}}F=E.callback,F!==null&&(e.flags|=64,K&&(e.flags|=8192),K=u.callbacks,K===null?u.callbacks=[F]:K.push(F))}else K={lane:F,tag:E.tag,payload:E.payload,callback:E.callback,next:null},Q===null?(H=Q=K,R=ne):Q=Q.next=K,x|=F;if(E=E.next,E===null){if(E=u.shared.pending,E===null)break;K=E,E=K.next,K.next=null,u.lastBaseUpdate=K,u.shared.pending=null}}while(!0);Q===null&&(R=ne),u.baseState=R,u.firstBaseUpdate=H,u.lastBaseUpdate=Q,h===null&&(u.shared.lanes=0),Fr|=x,e.lanes=x,e.memoizedState=ne}}function e0(e,n){if(typeof e!="function")throw Error(s(191,e));e.call(n)}function t0(e,n){var a=e.callbacks;if(a!==null)for(e.callbacks=null,e=0;e<a.length;e++)e0(a[e],n)}var ms=je(null),tl=je(0);function n0(e,n){e=br,Ne(tl,e),Ne(ms,n),br=e|n.baseLanes}function uf(){Ne(tl,br),Ne(ms,ms.current)}function ff(){br=tl.current,Se(ms),Se(tl)}var nn=je(null),An=null;function Ir(e){var n=e.alternate;Ne(yt,yt.current&1),Ne(nn,e),An===null&&(n===null||ms.current!==null||n.memoizedState!==null)&&(An=e)}function hf(e){Ne(yt,yt.current),Ne(nn,e),An===null&&(An=e)}function r0(e){e.tag===22?(Ne(yt,yt.current),Ne(nn,e),An===null&&(An=e)):$r()}function $r(){Ne(yt,yt.current),Ne(nn,nn.current)}function rn(e){Se(nn),An===e&&(An=null),Se(yt)}var yt=je(0);function nl(e){for(var n=e;n!==null;){if(n.tag===13){var a=n.memoizedState;if(a!==null&&(a=a.dehydrated,a===null||bh(a)||vh(a)))return n}else if(n.tag===19&&(n.memoizedProps.revealOrder==="forwards"||n.memoizedProps.revealOrder==="backwards"||n.memoizedProps.revealOrder==="unstable_legacy-backwards"||n.memoizedProps.revealOrder==="together")){if((n.flags&128)!==0)return n}else if(n.child!==null){n.child.return=n,n=n.child;continue}if(n===e)break;for(;n.sibling===null;){if(n.return===null||n.return===e)return null;n=n.return}n.sibling.return=n.return,n=n.sibling}return null}var ur=0,Ce=null,Ke=null,xt=null,rl=!1,ps=!1,Ri=!1,il=0,_a=0,ys=null,Fx=0;function ft(){throw Error(s(321))}function df(e,n){if(n===null)return!1;for(var a=0;a<n.length&&a<e.length;a++)if(!en(e[a],n[a]))return!1;return!0}function mf(e,n,a,o,u,h){return ur=h,Ce=n,n.memoizedState=null,n.updateQueue=null,n.lanes=0,Y.H=e===null||e.memoizedState===null?z0:Nf,Ri=!1,h=a(o,u),Ri=!1,ps&&(h=s0(n,a,o,u)),i0(e),h}function i0(e){Y.H=Ea;var n=Ke!==null&&Ke.next!==null;if(ur=0,xt=Ke=Ce=null,rl=!1,_a=0,ys=null,n)throw Error(s(300));e===null||_t||(e=e.dependencies,e!==null&&Ko(e)&&(_t=!0))}function s0(e,n,a,o){Ce=e;var u=0;do{if(ps&&(ys=null),_a=0,ps=!1,25<=u)throw Error(s(301));if(u+=1,xt=Ke=null,e.updateQueue!=null){var h=e.updateQueue;h.lastEffect=null,h.events=null,h.stores=null,h.memoCache!=null&&(h.memoCache.index=0)}Y.H=I0,h=n(a,o)}while(ps);return h}function Vx(){var e=Y.H,n=e.useState()[0];return n=typeof n.then=="function"?wa(n):n,e=e.useState()[0],(Ke!==null?Ke.memoizedState:null)!==e&&(Ce.flags|=1024),n}function pf(){var e=il!==0;return il=0,e}function yf(e,n,a){n.updateQueue=e.updateQueue,n.flags&=-2053,e.lanes&=~a}function gf(e){if(rl){for(e=e.memoizedState;e!==null;){var n=e.queue;n!==null&&(n.pending=null),e=e.next}rl=!1}ur=0,xt=Ke=Ce=null,ps=!1,_a=il=0,ys=null}function Ut(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return xt===null?Ce.memoizedState=xt=e:xt=xt.next=e,xt}function gt(){if(Ke===null){var e=Ce.alternate;e=e!==null?e.memoizedState:null}else e=Ke.next;var n=xt===null?Ce.memoizedState:xt.next;if(n!==null)xt=n,Ke=e;else{if(e===null)throw Ce.alternate===null?Error(s(467)):Error(s(310));Ke=e,e={memoizedState:Ke.memoizedState,baseState:Ke.baseState,baseQueue:Ke.baseQueue,queue:Ke.queue,next:null},xt===null?Ce.memoizedState=xt=e:xt=xt.next=e}return xt}function sl(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function wa(e){var n=_a;return _a+=1,ys===null&&(ys=[]),e=Xm(ys,e,n),n=Ce,(xt===null?n.memoizedState:xt.next)===null&&(n=n.alternate,Y.H=n===null||n.memoizedState===null?z0:Nf),e}function al(e){if(e!==null&&typeof e=="object"){if(typeof e.then=="function")return wa(e);if(e.$$typeof===re)return Mt(e)}throw Error(s(438,String(e)))}function bf(e){var n=null,a=Ce.updateQueue;if(a!==null&&(n=a.memoCache),n==null){var o=Ce.alternate;o!==null&&(o=o.updateQueue,o!==null&&(o=o.memoCache,o!=null&&(n={data:o.data.map(function(u){return u.slice()}),index:0})))}if(n==null&&(n={data:[],index:0}),a===null&&(a=sl(),Ce.updateQueue=a),a.memoCache=n,a=n.data[n.index],a===void 0)for(a=n.data[n.index]=Array(e),o=0;o<e;o++)a[o]=G;return n.index++,a}function fr(e,n){return typeof n=="function"?n(e):n}function ol(e){var n=gt();return vf(n,Ke,e)}function vf(e,n,a){var o=e.queue;if(o===null)throw Error(s(311));o.lastRenderedReducer=a;var u=e.baseQueue,h=o.pending;if(h!==null){if(u!==null){var x=u.next;u.next=h.next,h.next=x}n.baseQueue=u=h,o.pending=null}if(h=e.baseState,u===null)e.memoizedState=h;else{n=u.next;var E=x=null,R=null,H=n,Q=!1;do{var ne=H.lane&-536870913;if(ne!==H.lane?(Be&ne)===ne:(ur&ne)===ne){var F=H.revertLane;if(F===0)R!==null&&(R=R.next={lane:0,revertLane:0,gesture:null,action:H.action,hasEagerState:H.hasEagerState,eagerState:H.eagerState,next:null}),ne===us&&(Q=!0);else if((ur&F)===F){H=H.next,F===us&&(Q=!0);continue}else ne={lane:0,revertLane:H.revertLane,gesture:null,action:H.action,hasEagerState:H.hasEagerState,eagerState:H.eagerState,next:null},R===null?(E=R=ne,x=h):R=R.next=ne,Ce.lanes|=F,Fr|=F;ne=H.action,Ri&&a(h,ne),h=H.hasEagerState?H.eagerState:a(h,ne)}else F={lane:ne,revertLane:H.revertLane,gesture:H.gesture,action:H.action,hasEagerState:H.hasEagerState,eagerState:H.eagerState,next:null},R===null?(E=R=F,x=h):R=R.next=F,Ce.lanes|=ne,Fr|=ne;H=H.next}while(H!==null&&H!==n);if(R===null?x=h:R.next=E,!en(h,e.memoizedState)&&(_t=!0,Q&&(a=fs,a!==null)))throw a;e.memoizedState=h,e.baseState=x,e.baseQueue=R,o.lastRenderedState=h}return u===null&&(o.lanes=0),[e.memoizedState,o.dispatch]}function xf(e){var n=gt(),a=n.queue;if(a===null)throw Error(s(311));a.lastRenderedReducer=e;var o=a.dispatch,u=a.pending,h=n.memoizedState;if(u!==null){a.pending=null;var x=u=u.next;do h=e(h,x.action),x=x.next;while(x!==u);en(h,n.memoizedState)||(_t=!0),n.memoizedState=h,n.baseQueue===null&&(n.baseState=h),a.lastRenderedState=h}return[h,o]}function a0(e,n,a){var o=Ce,u=gt(),h=Pe;if(h){if(a===void 0)throw Error(s(407));a=a()}else a=n();var x=!en((Ke||u).memoizedState,a);if(x&&(u.memoizedState=a,_t=!0),u=u.queue,Sf(c0.bind(null,o,u,e),[e]),u.getSnapshot!==n||x||xt!==null&&xt.memoizedState.tag&1){if(o.flags|=2048,gs(9,{destroy:void 0},l0.bind(null,o,u,a,n),null),Ze===null)throw Error(s(349));h||(ur&127)!==0||o0(o,n,a)}return a}function o0(e,n,a){e.flags|=16384,e={getSnapshot:n,value:a},n=Ce.updateQueue,n===null?(n=sl(),Ce.updateQueue=n,n.stores=[e]):(a=n.stores,a===null?n.stores=[e]:a.push(e))}function l0(e,n,a,o){n.value=a,n.getSnapshot=o,u0(n)&&f0(e)}function c0(e,n,a){return a(function(){u0(n)&&f0(e)})}function u0(e){var n=e.getSnapshot;e=e.value;try{var a=n();return!en(e,a)}catch{return!0}}function f0(e){var n=Ei(e,2);n!==null&&Qt(n,e,2)}function _f(e){var n=Ut();if(typeof e=="function"){var a=e;if(e=a(),Ri){Zt(!0);try{a()}finally{Zt(!1)}}}return n.memoizedState=n.baseState=e,n.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:fr,lastRenderedState:e},n}function h0(e,n,a,o){return e.baseState=a,vf(e,Ke,typeof o=="function"?o:fr)}function Yx(e,n,a,o,u){if(ul(e))throw Error(s(485));if(e=n.action,e!==null){var h={payload:u,action:e,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(x){h.listeners.push(x)}};Y.T!==null?a(!0):h.isTransition=!1,o(h),a=n.pending,a===null?(h.next=n.pending=h,d0(n,h)):(h.next=a.next,n.pending=a.next=h)}}function d0(e,n){var a=n.action,o=n.payload,u=e.state;if(n.isTransition){var h=Y.T,x={};Y.T=x;try{var E=a(u,o),R=Y.S;R!==null&&R(x,E),m0(e,n,E)}catch(H){wf(e,n,H)}finally{h!==null&&x.types!==null&&(h.types=x.types),Y.T=h}}else try{h=a(u,o),m0(e,n,h)}catch(H){wf(e,n,H)}}function m0(e,n,a){a!==null&&typeof a=="object"&&typeof a.then=="function"?a.then(function(o){p0(e,n,o)},function(o){return wf(e,n,o)}):p0(e,n,a)}function p0(e,n,a){n.status="fulfilled",n.value=a,y0(n),e.state=a,n=e.pending,n!==null&&(a=n.next,a===n?e.pending=null:(a=a.next,n.next=a,d0(e,a)))}function wf(e,n,a){var o=e.pending;if(e.pending=null,o!==null){o=o.next;do n.status="rejected",n.reason=a,y0(n),n=n.next;while(n!==o)}e.action=null}function y0(e){e=e.listeners;for(var n=0;n<e.length;n++)(0,e[n])()}function g0(e,n){return n}function b0(e,n){if(Pe){var a=Ze.formState;if(a!==null){e:{var o=Ce;if(Pe){if(tt){t:{for(var u=tt,h=On;u.nodeType!==8;){if(!h){u=null;break t}if(u=jn(u.nextSibling),u===null){u=null;break t}}h=u.data,u=h==="F!"||h==="F"?u:null}if(u){tt=jn(u.nextSibling),o=u.data==="F!";break e}}Br(o)}o=!1}o&&(n=a[0])}}return a=Ut(),a.memoizedState=a.baseState=n,o={pending:null,lanes:0,dispatch:null,lastRenderedReducer:g0,lastRenderedState:n},a.queue=o,a=L0.bind(null,Ce,o),o.dispatch=a,o=_f(!1),h=Tf.bind(null,Ce,!1,o.queue),o=Ut(),u={state:n,dispatch:null,action:e,pending:null},o.queue=u,a=Yx.bind(null,Ce,u,h,a),u.dispatch=a,o.memoizedState=e,[n,a,!1]}function v0(e){var n=gt();return x0(n,Ke,e)}function x0(e,n,a){if(n=vf(e,n,g0)[0],e=ol(fr)[0],typeof n=="object"&&n!==null&&typeof n.then=="function")try{var o=wa(n)}catch(x){throw x===hs?Qo:x}else o=n;n=gt();var u=n.queue,h=u.dispatch;return a!==n.memoizedState&&(Ce.flags|=2048,gs(9,{destroy:void 0},Kx.bind(null,u,a),null)),[o,h,e]}function Kx(e,n){e.action=n}function _0(e){var n=gt(),a=Ke;if(a!==null)return x0(n,a,e);gt(),n=n.memoizedState,a=gt();var o=a.queue.dispatch;return a.memoizedState=e,[n,o,!1]}function gs(e,n,a,o){return e={tag:e,create:a,deps:o,inst:n,next:null},n=Ce.updateQueue,n===null&&(n=sl(),Ce.updateQueue=n),a=n.lastEffect,a===null?n.lastEffect=e.next=e:(o=a.next,a.next=e,e.next=o,n.lastEffect=e),e}function w0(){return gt().memoizedState}function ll(e,n,a,o){var u=Ut();Ce.flags|=e,u.memoizedState=gs(1|n,{destroy:void 0},a,o===void 0?null:o)}function cl(e,n,a,o){var u=gt();o=o===void 0?null:o;var h=u.memoizedState.inst;Ke!==null&&o!==null&&df(o,Ke.memoizedState.deps)?u.memoizedState=gs(n,h,a,o):(Ce.flags|=e,u.memoizedState=gs(1|n,h,a,o))}function S0(e,n){ll(8390656,8,e,n)}function Sf(e,n){cl(2048,8,e,n)}function Xx(e){Ce.flags|=4;var n=Ce.updateQueue;if(n===null)n=sl(),Ce.updateQueue=n,n.events=[e];else{var a=n.events;a===null?n.events=[e]:a.push(e)}}function E0(e){var n=gt().memoizedState;return Xx({ref:n,nextImpl:e}),function(){if((Ge&2)!==0)throw Error(s(440));return n.impl.apply(void 0,arguments)}}function O0(e,n){return cl(4,2,e,n)}function A0(e,n){return cl(4,4,e,n)}function j0(e,n){if(typeof n=="function"){e=e();var a=n(e);return function(){typeof a=="function"?a():n(null)}}if(n!=null)return e=e(),n.current=e,function(){n.current=null}}function T0(e,n,a){a=a!=null?a.concat([e]):null,cl(4,4,j0.bind(null,n,e),a)}function Ef(){}function N0(e,n){var a=gt();n=n===void 0?null:n;var o=a.memoizedState;return n!==null&&df(n,o[1])?o[0]:(a.memoizedState=[e,n],e)}function k0(e,n){var a=gt();n=n===void 0?null:n;var o=a.memoizedState;if(n!==null&&df(n,o[1]))return o[0];if(o=e(),Ri){Zt(!0);try{e()}finally{Zt(!1)}}return a.memoizedState=[o,n],o}function Of(e,n,a){return a===void 0||(ur&1073741824)!==0&&(Be&261930)===0?e.memoizedState=n:(e.memoizedState=a,e=Cp(),Ce.lanes|=e,Fr|=e,a)}function C0(e,n,a,o){return en(a,n)?a:ms.current!==null?(e=Of(e,a,o),en(e,n)||(_t=!0),e):(ur&42)===0||(ur&1073741824)!==0&&(Be&261930)===0?(_t=!0,e.memoizedState=a):(e=Cp(),Ce.lanes|=e,Fr|=e,n)}function M0(e,n,a,o,u){var h=ae.p;ae.p=h!==0&&8>h?h:8;var x=Y.T,E={};Y.T=E,Tf(e,!1,n,a);try{var R=u(),H=Y.S;if(H!==null&&H(E,R),R!==null&&typeof R=="object"&&typeof R.then=="function"){var Q=Gx(R,o);Sa(e,n,Q,on(e))}else Sa(e,n,o,on(e))}catch(ne){Sa(e,n,{then:function(){},status:"rejected",reason:ne},on())}finally{ae.p=h,x!==null&&E.types!==null&&(x.types=E.types),Y.T=x}}function Jx(){}function Af(e,n,a,o){if(e.tag!==5)throw Error(s(476));var u=R0(e).queue;M0(e,u,n,de,a===null?Jx:function(){return D0(e),a(o)})}function R0(e){var n=e.memoizedState;if(n!==null)return n;n={memoizedState:de,baseState:de,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:fr,lastRenderedState:de},next:null};var a={};return n.next={memoizedState:a,baseState:a,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:fr,lastRenderedState:a},next:null},e.memoizedState=n,e=e.alternate,e!==null&&(e.memoizedState=n),n}function D0(e){var n=R0(e);n.next===null&&(n=e.alternate.memoizedState),Sa(e,n.next.queue,{},on())}function jf(){return Mt(za)}function q0(){return gt().memoizedState}function B0(){return gt().memoizedState}function Qx(e){for(var n=e.return;n!==null;){switch(n.tag){case 24:case 3:var a=on();e=Ur(a);var o=zr(n,e,a);o!==null&&(Qt(o,n,a),ba(o,n,a)),n={cache:tf()},e.payload=n;return}n=n.return}}function Zx(e,n,a){var o=on();a={lane:o,revertLane:0,gesture:null,action:a,hasEagerState:!1,eagerState:null,next:null},ul(e)?P0(n,a):(a=Gu(e,n,a,o),a!==null&&(Qt(a,e,o),U0(a,n,o)))}function L0(e,n,a){var o=on();Sa(e,n,a,o)}function Sa(e,n,a,o){var u={lane:o,revertLane:0,gesture:null,action:a,hasEagerState:!1,eagerState:null,next:null};if(ul(e))P0(n,u);else{var h=e.alternate;if(e.lanes===0&&(h===null||h.lanes===0)&&(h=n.lastRenderedReducer,h!==null))try{var x=n.lastRenderedState,E=h(x,a);if(u.hasEagerState=!0,u.eagerState=E,en(E,x))return Go(e,n,u,0),Ze===null&&Ho(),!1}catch{}finally{}if(a=Gu(e,n,u,o),a!==null)return Qt(a,e,o),U0(a,n,o),!0}return!1}function Tf(e,n,a,o){if(o={lane:2,revertLane:ah(),gesture:null,action:o,hasEagerState:!1,eagerState:null,next:null},ul(e)){if(n)throw Error(s(479))}else n=Gu(e,a,o,2),n!==null&&Qt(n,e,2)}function ul(e){var n=e.alternate;return e===Ce||n!==null&&n===Ce}function P0(e,n){ps=rl=!0;var a=e.pending;a===null?n.next=n:(n.next=a.next,a.next=n),e.pending=n}function U0(e,n,a){if((a&4194048)!==0){var o=n.lanes;o&=e.pendingLanes,a|=o,n.lanes=a,bi(e,a)}}var Ea={readContext:Mt,use:al,useCallback:ft,useContext:ft,useEffect:ft,useImperativeHandle:ft,useLayoutEffect:ft,useInsertionEffect:ft,useMemo:ft,useReducer:ft,useRef:ft,useState:ft,useDebugValue:ft,useDeferredValue:ft,useTransition:ft,useSyncExternalStore:ft,useId:ft,useHostTransitionStatus:ft,useFormState:ft,useActionState:ft,useOptimistic:ft,useMemoCache:ft,useCacheRefresh:ft};Ea.useEffectEvent=ft;var z0={readContext:Mt,use:al,useCallback:function(e,n){return Ut().memoizedState=[e,n===void 0?null:n],e},useContext:Mt,useEffect:S0,useImperativeHandle:function(e,n,a){a=a!=null?a.concat([e]):null,ll(4194308,4,j0.bind(null,n,e),a)},useLayoutEffect:function(e,n){return ll(4194308,4,e,n)},useInsertionEffect:function(e,n){ll(4,2,e,n)},useMemo:function(e,n){var a=Ut();n=n===void 0?null:n;var o=e();if(Ri){Zt(!0);try{e()}finally{Zt(!1)}}return a.memoizedState=[o,n],o},useReducer:function(e,n,a){var o=Ut();if(a!==void 0){var u=a(n);if(Ri){Zt(!0);try{a(n)}finally{Zt(!1)}}}else u=n;return o.memoizedState=o.baseState=u,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:u},o.queue=e,e=e.dispatch=Zx.bind(null,Ce,e),[o.memoizedState,e]},useRef:function(e){var n=Ut();return e={current:e},n.memoizedState=e},useState:function(e){e=_f(e);var n=e.queue,a=L0.bind(null,Ce,n);return n.dispatch=a,[e.memoizedState,a]},useDebugValue:Ef,useDeferredValue:function(e,n){var a=Ut();return Of(a,e,n)},useTransition:function(){var e=_f(!1);return e=M0.bind(null,Ce,e.queue,!0,!1),Ut().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,n,a){var o=Ce,u=Ut();if(Pe){if(a===void 0)throw Error(s(407));a=a()}else{if(a=n(),Ze===null)throw Error(s(349));(Be&127)!==0||o0(o,n,a)}u.memoizedState=a;var h={value:a,getSnapshot:n};return u.queue=h,S0(c0.bind(null,o,h,e),[e]),o.flags|=2048,gs(9,{destroy:void 0},l0.bind(null,o,h,a,n),null),a},useId:function(){var e=Ut(),n=Ze.identifierPrefix;if(Pe){var a=Vn,o=Fn;a=(o&~(1<<32-Lt(o)-1)).toString(32)+a,n="_"+n+"R_"+a,a=il++,0<a&&(n+="H"+a.toString(32)),n+="_"}else a=Fx++,n="_"+n+"r_"+a.toString(32)+"_";return e.memoizedState=n},useHostTransitionStatus:jf,useFormState:b0,useActionState:b0,useOptimistic:function(e){var n=Ut();n.memoizedState=n.baseState=e;var a={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return n.queue=a,n=Tf.bind(null,Ce,!0,a),a.dispatch=n,[e,n]},useMemoCache:bf,useCacheRefresh:function(){return Ut().memoizedState=Qx.bind(null,Ce)},useEffectEvent:function(e){var n=Ut(),a={impl:e};return n.memoizedState=a,function(){if((Ge&2)!==0)throw Error(s(440));return a.impl.apply(void 0,arguments)}}},Nf={readContext:Mt,use:al,useCallback:N0,useContext:Mt,useEffect:Sf,useImperativeHandle:T0,useInsertionEffect:O0,useLayoutEffect:A0,useMemo:k0,useReducer:ol,useRef:w0,useState:function(){return ol(fr)},useDebugValue:Ef,useDeferredValue:function(e,n){var a=gt();return C0(a,Ke.memoizedState,e,n)},useTransition:function(){var e=ol(fr)[0],n=gt().memoizedState;return[typeof e=="boolean"?e:wa(e),n]},useSyncExternalStore:a0,useId:q0,useHostTransitionStatus:jf,useFormState:v0,useActionState:v0,useOptimistic:function(e,n){var a=gt();return h0(a,Ke,e,n)},useMemoCache:bf,useCacheRefresh:B0};Nf.useEffectEvent=E0;var I0={readContext:Mt,use:al,useCallback:N0,useContext:Mt,useEffect:Sf,useImperativeHandle:T0,useInsertionEffect:O0,useLayoutEffect:A0,useMemo:k0,useReducer:xf,useRef:w0,useState:function(){return xf(fr)},useDebugValue:Ef,useDeferredValue:function(e,n){var a=gt();return Ke===null?Of(a,e,n):C0(a,Ke.memoizedState,e,n)},useTransition:function(){var e=xf(fr)[0],n=gt().memoizedState;return[typeof e=="boolean"?e:wa(e),n]},useSyncExternalStore:a0,useId:q0,useHostTransitionStatus:jf,useFormState:_0,useActionState:_0,useOptimistic:function(e,n){var a=gt();return Ke!==null?h0(a,Ke,e,n):(a.baseState=e,[e,a.queue.dispatch])},useMemoCache:bf,useCacheRefresh:B0};I0.useEffectEvent=E0;function kf(e,n,a,o){n=e.memoizedState,a=a(o,n),a=a==null?n:b({},n,a),e.memoizedState=a,e.lanes===0&&(e.updateQueue.baseState=a)}var Cf={enqueueSetState:function(e,n,a){e=e._reactInternals;var o=on(),u=Ur(o);u.payload=n,a!=null&&(u.callback=a),n=zr(e,u,o),n!==null&&(Qt(n,e,o),ba(n,e,o))},enqueueReplaceState:function(e,n,a){e=e._reactInternals;var o=on(),u=Ur(o);u.tag=1,u.payload=n,a!=null&&(u.callback=a),n=zr(e,u,o),n!==null&&(Qt(n,e,o),ba(n,e,o))},enqueueForceUpdate:function(e,n){e=e._reactInternals;var a=on(),o=Ur(a);o.tag=2,n!=null&&(o.callback=n),n=zr(e,o,a),n!==null&&(Qt(n,e,a),ba(n,e,a))}};function $0(e,n,a,o,u,h,x){return e=e.stateNode,typeof e.shouldComponentUpdate=="function"?e.shouldComponentUpdate(o,h,x):n.prototype&&n.prototype.isPureReactComponent?!ua(a,o)||!ua(u,h):!0}function H0(e,n,a,o){e=n.state,typeof n.componentWillReceiveProps=="function"&&n.componentWillReceiveProps(a,o),typeof n.UNSAFE_componentWillReceiveProps=="function"&&n.UNSAFE_componentWillReceiveProps(a,o),n.state!==e&&Cf.enqueueReplaceState(n,n.state,null)}function Di(e,n){var a=n;if("ref"in n){a={};for(var o in n)o!=="ref"&&(a[o]=n[o])}if(e=e.defaultProps){a===n&&(a=b({},a));for(var u in e)a[u]===void 0&&(a[u]=e[u])}return a}function G0(e){$o(e)}function F0(e){console.error(e)}function V0(e){$o(e)}function fl(e,n){try{var a=e.onUncaughtError;a(n.value,{componentStack:n.stack})}catch(o){setTimeout(function(){throw o})}}function Y0(e,n,a){try{var o=e.onCaughtError;o(a.value,{componentStack:a.stack,errorBoundary:n.tag===1?n.stateNode:null})}catch(u){setTimeout(function(){throw u})}}function Mf(e,n,a){return a=Ur(a),a.tag=3,a.payload={element:null},a.callback=function(){fl(e,n)},a}function K0(e){return e=Ur(e),e.tag=3,e}function X0(e,n,a,o){var u=a.type.getDerivedStateFromError;if(typeof u=="function"){var h=o.value;e.payload=function(){return u(h)},e.callback=function(){Y0(n,a,o)}}var x=a.stateNode;x!==null&&typeof x.componentDidCatch=="function"&&(e.callback=function(){Y0(n,a,o),typeof u!="function"&&(Vr===null?Vr=new Set([this]):Vr.add(this));var E=o.stack;this.componentDidCatch(o.value,{componentStack:E!==null?E:""})})}function Wx(e,n,a,o,u){if(a.flags|=32768,o!==null&&typeof o=="object"&&typeof o.then=="function"){if(n=a.alternate,n!==null&&cs(n,a,u,!0),a=nn.current,a!==null){switch(a.tag){case 31:case 13:return An===null?Sl():a.alternate===null&&ht===0&&(ht=3),a.flags&=-257,a.flags|=65536,a.lanes=u,o===Zo?a.flags|=16384:(n=a.updateQueue,n===null?a.updateQueue=new Set([o]):n.add(o),rh(e,o,u)),!1;case 22:return a.flags|=65536,o===Zo?a.flags|=16384:(n=a.updateQueue,n===null?(n={transitions:null,markerInstances:null,retryQueue:new Set([o])},a.updateQueue=n):(a=n.retryQueue,a===null?n.retryQueue=new Set([o]):a.add(o)),rh(e,o,u)),!1}throw Error(s(435,a.tag))}return rh(e,o,u),Sl(),!1}if(Pe)return n=nn.current,n!==null?((n.flags&65536)===0&&(n.flags|=256),n.flags|=65536,n.lanes=u,o!==Ju&&(e=Error(s(422),{cause:o}),da(wn(e,a)))):(o!==Ju&&(n=Error(s(423),{cause:o}),da(wn(n,a))),e=e.current.alternate,e.flags|=65536,u&=-u,e.lanes|=u,o=wn(o,a),u=Mf(e.stateNode,o,u),lf(e,u),ht!==4&&(ht=2)),!1;var h=Error(s(520),{cause:o});if(h=wn(h,a),Ma===null?Ma=[h]:Ma.push(h),ht!==4&&(ht=2),n===null)return!0;o=wn(o,a),a=n;do{switch(a.tag){case 3:return a.flags|=65536,e=u&-u,a.lanes|=e,e=Mf(a.stateNode,o,e),lf(a,e),!1;case 1:if(n=a.type,h=a.stateNode,(a.flags&128)===0&&(typeof n.getDerivedStateFromError=="function"||h!==null&&typeof h.componentDidCatch=="function"&&(Vr===null||!Vr.has(h))))return a.flags|=65536,u&=-u,a.lanes|=u,u=K0(u),X0(u,e,a,o),lf(a,u),!1}a=a.return}while(a!==null);return!1}var Rf=Error(s(461)),_t=!1;function Rt(e,n,a,o){n.child=e===null?Wm(n,null,a,o):Mi(n,e.child,a,o)}function J0(e,n,a,o,u){a=a.render;var h=n.ref;if("ref"in o){var x={};for(var E in o)E!=="ref"&&(x[E]=o[E])}else x=o;return Ti(n),o=mf(e,n,a,x,h,u),E=pf(),e!==null&&!_t?(yf(e,n,u),hr(e,n,u)):(Pe&&E&&Ku(n),n.flags|=1,Rt(e,n,o,u),n.child)}function Q0(e,n,a,o,u){if(e===null){var h=a.type;return typeof h=="function"&&!Fu(h)&&h.defaultProps===void 0&&a.compare===null?(n.tag=15,n.type=h,Z0(e,n,h,o,u)):(e=Vo(a.type,null,o,n,n.mode,u),e.ref=n.ref,e.return=n,n.child=e)}if(h=e.child,!If(e,u)){var x=h.memoizedProps;if(a=a.compare,a=a!==null?a:ua,a(x,o)&&e.ref===n.ref)return hr(e,n,u)}return n.flags|=1,e=ar(h,o),e.ref=n.ref,e.return=n,n.child=e}function Z0(e,n,a,o,u){if(e!==null){var h=e.memoizedProps;if(ua(h,o)&&e.ref===n.ref)if(_t=!1,n.pendingProps=o=h,If(e,u))(e.flags&131072)!==0&&(_t=!0);else return n.lanes=e.lanes,hr(e,n,u)}return Df(e,n,a,o,u)}function W0(e,n,a,o){var u=o.children,h=e!==null?e.memoizedState:null;if(e===null&&n.stateNode===null&&(n.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),o.mode==="hidden"){if((n.flags&128)!==0){if(h=h!==null?h.baseLanes|a:a,e!==null){for(o=n.child=e.child,u=0;o!==null;)u=u|o.lanes|o.childLanes,o=o.sibling;o=u&~h}else o=0,n.child=null;return ep(e,n,h,a,o)}if((a&536870912)!==0)n.memoizedState={baseLanes:0,cachePool:null},e!==null&&Jo(n,h!==null?h.cachePool:null),h!==null?n0(n,h):uf(),r0(n);else return o=n.lanes=536870912,ep(e,n,h!==null?h.baseLanes|a:a,a,o)}else h!==null?(Jo(n,h.cachePool),n0(n,h),$r(),n.memoizedState=null):(e!==null&&Jo(n,null),uf(),$r());return Rt(e,n,u,a),n.child}function Oa(e,n){return e!==null&&e.tag===22||n.stateNode!==null||(n.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),n.sibling}function ep(e,n,a,o,u){var h=rf();return h=h===null?null:{parent:vt._currentValue,pool:h},n.memoizedState={baseLanes:a,cachePool:h},e!==null&&Jo(n,null),uf(),r0(n),e!==null&&cs(e,n,o,!0),n.childLanes=u,null}function hl(e,n){return n=ml({mode:n.mode,children:n.children},e.mode),n.ref=e.ref,e.child=n,n.return=e,n}function tp(e,n,a){return Mi(n,e.child,null,a),e=hl(n,n.pendingProps),e.flags|=2,rn(n),n.memoizedState=null,e}function e_(e,n,a){var o=n.pendingProps,u=(n.flags&128)!==0;if(n.flags&=-129,e===null){if(Pe){if(o.mode==="hidden")return e=hl(n,o),n.lanes=536870912,Oa(null,e);if(hf(n),(e=tt)?(e=dy(e,On),e=e!==null&&e.data==="&"?e:null,e!==null&&(n.memoizedState={dehydrated:e,treeContext:Dr!==null?{id:Fn,overflow:Vn}:null,retryLane:536870912,hydrationErrors:null},a=Pm(e),a.return=n,n.child=a,Ct=n,tt=null)):e=null,e===null)throw Br(n);return n.lanes=536870912,null}return hl(n,o)}var h=e.memoizedState;if(h!==null){var x=h.dehydrated;if(hf(n),u)if(n.flags&256)n.flags&=-257,n=tp(e,n,a);else if(n.memoizedState!==null)n.child=e.child,n.flags|=128,n=null;else throw Error(s(558));else if(_t||cs(e,n,a,!1),u=(a&e.childLanes)!==0,_t||u){if(o=Ze,o!==null&&(x=Mr(o,a),x!==0&&x!==h.retryLane))throw h.retryLane=x,Ei(e,x),Qt(o,e,x),Rf;Sl(),n=tp(e,n,a)}else e=h.treeContext,tt=jn(x.nextSibling),Ct=n,Pe=!0,qr=null,On=!1,e!==null&&Im(n,e),n=hl(n,o),n.flags|=4096;return n}return e=ar(e.child,{mode:o.mode,children:o.children}),e.ref=n.ref,n.child=e,e.return=n,e}function dl(e,n){var a=n.ref;if(a===null)e!==null&&e.ref!==null&&(n.flags|=4194816);else{if(typeof a!="function"&&typeof a!="object")throw Error(s(284));(e===null||e.ref!==a)&&(n.flags|=4194816)}}function Df(e,n,a,o,u){return Ti(n),a=mf(e,n,a,o,void 0,u),o=pf(),e!==null&&!_t?(yf(e,n,u),hr(e,n,u)):(Pe&&o&&Ku(n),n.flags|=1,Rt(e,n,a,u),n.child)}function np(e,n,a,o,u,h){return Ti(n),n.updateQueue=null,a=s0(n,o,a,u),i0(e),o=pf(),e!==null&&!_t?(yf(e,n,h),hr(e,n,h)):(Pe&&o&&Ku(n),n.flags|=1,Rt(e,n,a,h),n.child)}function rp(e,n,a,o,u){if(Ti(n),n.stateNode===null){var h=ss,x=a.contextType;typeof x=="object"&&x!==null&&(h=Mt(x)),h=new a(o,h),n.memoizedState=h.state!==null&&h.state!==void 0?h.state:null,h.updater=Cf,n.stateNode=h,h._reactInternals=n,h=n.stateNode,h.props=o,h.state=n.memoizedState,h.refs={},af(n),x=a.contextType,h.context=typeof x=="object"&&x!==null?Mt(x):ss,h.state=n.memoizedState,x=a.getDerivedStateFromProps,typeof x=="function"&&(kf(n,a,x,o),h.state=n.memoizedState),typeof a.getDerivedStateFromProps=="function"||typeof h.getSnapshotBeforeUpdate=="function"||typeof h.UNSAFE_componentWillMount!="function"&&typeof h.componentWillMount!="function"||(x=h.state,typeof h.componentWillMount=="function"&&h.componentWillMount(),typeof h.UNSAFE_componentWillMount=="function"&&h.UNSAFE_componentWillMount(),x!==h.state&&Cf.enqueueReplaceState(h,h.state,null),xa(n,o,h,u),va(),h.state=n.memoizedState),typeof h.componentDidMount=="function"&&(n.flags|=4194308),o=!0}else if(e===null){h=n.stateNode;var E=n.memoizedProps,R=Di(a,E);h.props=R;var H=h.context,Q=a.contextType;x=ss,typeof Q=="object"&&Q!==null&&(x=Mt(Q));var ne=a.getDerivedStateFromProps;Q=typeof ne=="function"||typeof h.getSnapshotBeforeUpdate=="function",E=n.pendingProps!==E,Q||typeof h.UNSAFE_componentWillReceiveProps!="function"&&typeof h.componentWillReceiveProps!="function"||(E||H!==x)&&H0(n,h,o,x),Pr=!1;var F=n.memoizedState;h.state=F,xa(n,o,h,u),va(),H=n.memoizedState,E||F!==H||Pr?(typeof ne=="function"&&(kf(n,a,ne,o),H=n.memoizedState),(R=Pr||$0(n,a,R,o,F,H,x))?(Q||typeof h.UNSAFE_componentWillMount!="function"&&typeof h.componentWillMount!="function"||(typeof h.componentWillMount=="function"&&h.componentWillMount(),typeof h.UNSAFE_componentWillMount=="function"&&h.UNSAFE_componentWillMount()),typeof h.componentDidMount=="function"&&(n.flags|=4194308)):(typeof h.componentDidMount=="function"&&(n.flags|=4194308),n.memoizedProps=o,n.memoizedState=H),h.props=o,h.state=H,h.context=x,o=R):(typeof h.componentDidMount=="function"&&(n.flags|=4194308),o=!1)}else{h=n.stateNode,of(e,n),x=n.memoizedProps,Q=Di(a,x),h.props=Q,ne=n.pendingProps,F=h.context,H=a.contextType,R=ss,typeof H=="object"&&H!==null&&(R=Mt(H)),E=a.getDerivedStateFromProps,(H=typeof E=="function"||typeof h.getSnapshotBeforeUpdate=="function")||typeof h.UNSAFE_componentWillReceiveProps!="function"&&typeof h.componentWillReceiveProps!="function"||(x!==ne||F!==R)&&H0(n,h,o,R),Pr=!1,F=n.memoizedState,h.state=F,xa(n,o,h,u),va();var K=n.memoizedState;x!==ne||F!==K||Pr||e!==null&&e.dependencies!==null&&Ko(e.dependencies)?(typeof E=="function"&&(kf(n,a,E,o),K=n.memoizedState),(Q=Pr||$0(n,a,Q,o,F,K,R)||e!==null&&e.dependencies!==null&&Ko(e.dependencies))?(H||typeof h.UNSAFE_componentWillUpdate!="function"&&typeof h.componentWillUpdate!="function"||(typeof h.componentWillUpdate=="function"&&h.componentWillUpdate(o,K,R),typeof h.UNSAFE_componentWillUpdate=="function"&&h.UNSAFE_componentWillUpdate(o,K,R)),typeof h.componentDidUpdate=="function"&&(n.flags|=4),typeof h.getSnapshotBeforeUpdate=="function"&&(n.flags|=1024)):(typeof h.componentDidUpdate!="function"||x===e.memoizedProps&&F===e.memoizedState||(n.flags|=4),typeof h.getSnapshotBeforeUpdate!="function"||x===e.memoizedProps&&F===e.memoizedState||(n.flags|=1024),n.memoizedProps=o,n.memoizedState=K),h.props=o,h.state=K,h.context=R,o=Q):(typeof h.componentDidUpdate!="function"||x===e.memoizedProps&&F===e.memoizedState||(n.flags|=4),typeof h.getSnapshotBeforeUpdate!="function"||x===e.memoizedProps&&F===e.memoizedState||(n.flags|=1024),o=!1)}return h=o,dl(e,n),o=(n.flags&128)!==0,h||o?(h=n.stateNode,a=o&&typeof a.getDerivedStateFromError!="function"?null:h.render(),n.flags|=1,e!==null&&o?(n.child=Mi(n,e.child,null,u),n.child=Mi(n,null,a,u)):Rt(e,n,a,u),n.memoizedState=h.state,e=n.child):e=hr(e,n,u),e}function ip(e,n,a,o){return Ai(),n.flags|=256,Rt(e,n,a,o),n.child}var qf={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function Bf(e){return{baseLanes:e,cachePool:Ym()}}function Lf(e,n,a){return e=e!==null?e.childLanes&~a:0,n&&(e|=an),e}function sp(e,n,a){var o=n.pendingProps,u=!1,h=(n.flags&128)!==0,x;if((x=h)||(x=e!==null&&e.memoizedState===null?!1:(yt.current&2)!==0),x&&(u=!0,n.flags&=-129),x=(n.flags&32)!==0,n.flags&=-33,e===null){if(Pe){if(u?Ir(n):$r(),(e=tt)?(e=dy(e,On),e=e!==null&&e.data!=="&"?e:null,e!==null&&(n.memoizedState={dehydrated:e,treeContext:Dr!==null?{id:Fn,overflow:Vn}:null,retryLane:536870912,hydrationErrors:null},a=Pm(e),a.return=n,n.child=a,Ct=n,tt=null)):e=null,e===null)throw Br(n);return vh(e)?n.lanes=32:n.lanes=536870912,null}var E=o.children;return o=o.fallback,u?($r(),u=n.mode,E=ml({mode:"hidden",children:E},u),o=Oi(o,u,a,null),E.return=n,o.return=n,E.sibling=o,n.child=E,o=n.child,o.memoizedState=Bf(a),o.childLanes=Lf(e,x,a),n.memoizedState=qf,Oa(null,o)):(Ir(n),Pf(n,E))}var R=e.memoizedState;if(R!==null&&(E=R.dehydrated,E!==null)){if(h)n.flags&256?(Ir(n),n.flags&=-257,n=Uf(e,n,a)):n.memoizedState!==null?($r(),n.child=e.child,n.flags|=128,n=null):($r(),E=o.fallback,u=n.mode,o=ml({mode:"visible",children:o.children},u),E=Oi(E,u,a,null),E.flags|=2,o.return=n,E.return=n,o.sibling=E,n.child=o,Mi(n,e.child,null,a),o=n.child,o.memoizedState=Bf(a),o.childLanes=Lf(e,x,a),n.memoizedState=qf,n=Oa(null,o));else if(Ir(n),vh(E)){if(x=E.nextSibling&&E.nextSibling.dataset,x)var H=x.dgst;x=H,o=Error(s(419)),o.stack="",o.digest=x,da({value:o,source:null,stack:null}),n=Uf(e,n,a)}else if(_t||cs(e,n,a,!1),x=(a&e.childLanes)!==0,_t||x){if(x=Ze,x!==null&&(o=Mr(x,a),o!==0&&o!==R.retryLane))throw R.retryLane=o,Ei(e,o),Qt(x,e,o),Rf;bh(E)||Sl(),n=Uf(e,n,a)}else bh(E)?(n.flags|=192,n.child=e.child,n=null):(e=R.treeContext,tt=jn(E.nextSibling),Ct=n,Pe=!0,qr=null,On=!1,e!==null&&Im(n,e),n=Pf(n,o.children),n.flags|=4096);return n}return u?($r(),E=o.fallback,u=n.mode,R=e.child,H=R.sibling,o=ar(R,{mode:"hidden",children:o.children}),o.subtreeFlags=R.subtreeFlags&65011712,H!==null?E=ar(H,E):(E=Oi(E,u,a,null),E.flags|=2),E.return=n,o.return=n,o.sibling=E,n.child=o,Oa(null,o),o=n.child,E=e.child.memoizedState,E===null?E=Bf(a):(u=E.cachePool,u!==null?(R=vt._currentValue,u=u.parent!==R?{parent:R,pool:R}:u):u=Ym(),E={baseLanes:E.baseLanes|a,cachePool:u}),o.memoizedState=E,o.childLanes=Lf(e,x,a),n.memoizedState=qf,Oa(e.child,o)):(Ir(n),a=e.child,e=a.sibling,a=ar(a,{mode:"visible",children:o.children}),a.return=n,a.sibling=null,e!==null&&(x=n.deletions,x===null?(n.deletions=[e],n.flags|=16):x.push(e)),n.child=a,n.memoizedState=null,a)}function Pf(e,n){return n=ml({mode:"visible",children:n},e.mode),n.return=e,e.child=n}function ml(e,n){return e=tn(22,e,null,n),e.lanes=0,e}function Uf(e,n,a){return Mi(n,e.child,null,a),e=Pf(n,n.pendingProps.children),e.flags|=2,n.memoizedState=null,e}function ap(e,n,a){e.lanes|=n;var o=e.alternate;o!==null&&(o.lanes|=n),Wu(e.return,n,a)}function zf(e,n,a,o,u,h){var x=e.memoizedState;x===null?e.memoizedState={isBackwards:n,rendering:null,renderingStartTime:0,last:o,tail:a,tailMode:u,treeForkCount:h}:(x.isBackwards=n,x.rendering=null,x.renderingStartTime=0,x.last=o,x.tail=a,x.tailMode=u,x.treeForkCount=h)}function op(e,n,a){var o=n.pendingProps,u=o.revealOrder,h=o.tail;o=o.children;var x=yt.current,E=(x&2)!==0;if(E?(x=x&1|2,n.flags|=128):x&=1,Ne(yt,x),Rt(e,n,o,a),o=Pe?ha:0,!E&&e!==null&&(e.flags&128)!==0)e:for(e=n.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&ap(e,a,n);else if(e.tag===19)ap(e,a,n);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===n)break e;for(;e.sibling===null;){if(e.return===null||e.return===n)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}switch(u){case"forwards":for(a=n.child,u=null;a!==null;)e=a.alternate,e!==null&&nl(e)===null&&(u=a),a=a.sibling;a=u,a===null?(u=n.child,n.child=null):(u=a.sibling,a.sibling=null),zf(n,!1,u,a,h,o);break;case"backwards":case"unstable_legacy-backwards":for(a=null,u=n.child,n.child=null;u!==null;){if(e=u.alternate,e!==null&&nl(e)===null){n.child=u;break}e=u.sibling,u.sibling=a,a=u,u=e}zf(n,!0,a,null,h,o);break;case"together":zf(n,!1,null,null,void 0,o);break;default:n.memoizedState=null}return n.child}function hr(e,n,a){if(e!==null&&(n.dependencies=e.dependencies),Fr|=n.lanes,(a&n.childLanes)===0)if(e!==null){if(cs(e,n,a,!1),(a&n.childLanes)===0)return null}else return null;if(e!==null&&n.child!==e.child)throw Error(s(153));if(n.child!==null){for(e=n.child,a=ar(e,e.pendingProps),n.child=a,a.return=n;e.sibling!==null;)e=e.sibling,a=a.sibling=ar(e,e.pendingProps),a.return=n;a.sibling=null}return n.child}function If(e,n){return(e.lanes&n)!==0?!0:(e=e.dependencies,!!(e!==null&&Ko(e)))}function t_(e,n,a){switch(n.tag){case 3:qt(n,n.stateNode.containerInfo),Lr(n,vt,e.memoizedState.cache),Ai();break;case 27:case 5:Bt(n);break;case 4:qt(n,n.stateNode.containerInfo);break;case 10:Lr(n,n.type,n.memoizedProps.value);break;case 31:if(n.memoizedState!==null)return n.flags|=128,hf(n),null;break;case 13:var o=n.memoizedState;if(o!==null)return o.dehydrated!==null?(Ir(n),n.flags|=128,null):(a&n.child.childLanes)!==0?sp(e,n,a):(Ir(n),e=hr(e,n,a),e!==null?e.sibling:null);Ir(n);break;case 19:var u=(e.flags&128)!==0;if(o=(a&n.childLanes)!==0,o||(cs(e,n,a,!1),o=(a&n.childLanes)!==0),u){if(o)return op(e,n,a);n.flags|=128}if(u=n.memoizedState,u!==null&&(u.rendering=null,u.tail=null,u.lastEffect=null),Ne(yt,yt.current),o)break;return null;case 22:return n.lanes=0,W0(e,n,a,n.pendingProps);case 24:Lr(n,vt,e.memoizedState.cache)}return hr(e,n,a)}function lp(e,n,a){if(e!==null)if(e.memoizedProps!==n.pendingProps)_t=!0;else{if(!If(e,a)&&(n.flags&128)===0)return _t=!1,t_(e,n,a);_t=(e.flags&131072)!==0}else _t=!1,Pe&&(n.flags&1048576)!==0&&zm(n,ha,n.index);switch(n.lanes=0,n.tag){case 16:e:{var o=n.pendingProps;if(e=ki(n.elementType),n.type=e,typeof e=="function")Fu(e)?(o=Di(e,o),n.tag=1,n=rp(null,n,e,o,a)):(n.tag=0,n=Df(null,n,e,o,a));else{if(e!=null){var u=e.$$typeof;if(u===ce){n.tag=11,n=J0(null,n,e,o,a);break e}else if(u===ie){n.tag=14,n=Q0(null,n,e,o,a);break e}}throw n=xe(e)||e,Error(s(306,n,""))}}return n;case 0:return Df(e,n,n.type,n.pendingProps,a);case 1:return o=n.type,u=Di(o,n.pendingProps),rp(e,n,o,u,a);case 3:e:{if(qt(n,n.stateNode.containerInfo),e===null)throw Error(s(387));o=n.pendingProps;var h=n.memoizedState;u=h.element,of(e,n),xa(n,o,null,a);var x=n.memoizedState;if(o=x.cache,Lr(n,vt,o),o!==h.cache&&ef(n,[vt],a,!0),va(),o=x.element,h.isDehydrated)if(h={element:o,isDehydrated:!1,cache:x.cache},n.updateQueue.baseState=h,n.memoizedState=h,n.flags&256){n=ip(e,n,o,a);break e}else if(o!==u){u=wn(Error(s(424)),n),da(u),n=ip(e,n,o,a);break e}else{switch(e=n.stateNode.containerInfo,e.nodeType){case 9:e=e.body;break;default:e=e.nodeName==="HTML"?e.ownerDocument.body:e}for(tt=jn(e.firstChild),Ct=n,Pe=!0,qr=null,On=!0,a=Wm(n,null,o,a),n.child=a;a;)a.flags=a.flags&-3|4096,a=a.sibling}else{if(Ai(),o===u){n=hr(e,n,a);break e}Rt(e,n,o,a)}n=n.child}return n;case 26:return dl(e,n),e===null?(a=vy(n.type,null,n.pendingProps,null))?n.memoizedState=a:Pe||(a=n.type,e=n.pendingProps,o=kl(ct.current).createElement(a),o[Qe]=n,o[ut]=e,Dt(o,a,e),D(o),n.stateNode=o):n.memoizedState=vy(n.type,e.memoizedProps,n.pendingProps,e.memoizedState),null;case 27:return Bt(n),e===null&&Pe&&(o=n.stateNode=yy(n.type,n.pendingProps,ct.current),Ct=n,On=!0,u=tt,Jr(n.type)?(xh=u,tt=jn(o.firstChild)):tt=u),Rt(e,n,n.pendingProps.children,a),dl(e,n),e===null&&(n.flags|=4194304),n.child;case 5:return e===null&&Pe&&((u=o=tt)&&(o=C_(o,n.type,n.pendingProps,On),o!==null?(n.stateNode=o,Ct=n,tt=jn(o.firstChild),On=!1,u=!0):u=!1),u||Br(n)),Bt(n),u=n.type,h=n.pendingProps,x=e!==null?e.memoizedProps:null,o=h.children,ph(u,h)?o=null:x!==null&&ph(u,x)&&(n.flags|=32),n.memoizedState!==null&&(u=mf(e,n,Vx,null,null,a),za._currentValue=u),dl(e,n),Rt(e,n,o,a),n.child;case 6:return e===null&&Pe&&((e=a=tt)&&(a=M_(a,n.pendingProps,On),a!==null?(n.stateNode=a,Ct=n,tt=null,e=!0):e=!1),e||Br(n)),null;case 13:return sp(e,n,a);case 4:return qt(n,n.stateNode.containerInfo),o=n.pendingProps,e===null?n.child=Mi(n,null,o,a):Rt(e,n,o,a),n.child;case 11:return J0(e,n,n.type,n.pendingProps,a);case 7:return Rt(e,n,n.pendingProps,a),n.child;case 8:return Rt(e,n,n.pendingProps.children,a),n.child;case 12:return Rt(e,n,n.pendingProps.children,a),n.child;case 10:return o=n.pendingProps,Lr(n,n.type,o.value),Rt(e,n,o.children,a),n.child;case 9:return u=n.type._context,o=n.pendingProps.children,Ti(n),u=Mt(u),o=o(u),n.flags|=1,Rt(e,n,o,a),n.child;case 14:return Q0(e,n,n.type,n.pendingProps,a);case 15:return Z0(e,n,n.type,n.pendingProps,a);case 19:return op(e,n,a);case 31:return e_(e,n,a);case 22:return W0(e,n,a,n.pendingProps);case 24:return Ti(n),o=Mt(vt),e===null?(u=rf(),u===null&&(u=Ze,h=tf(),u.pooledCache=h,h.refCount++,h!==null&&(u.pooledCacheLanes|=a),u=h),n.memoizedState={parent:o,cache:u},af(n),Lr(n,vt,u)):((e.lanes&a)!==0&&(of(e,n),xa(n,null,null,a),va()),u=e.memoizedState,h=n.memoizedState,u.parent!==o?(u={parent:o,cache:o},n.memoizedState=u,n.lanes===0&&(n.memoizedState=n.updateQueue.baseState=u),Lr(n,vt,o)):(o=h.cache,Lr(n,vt,o),o!==u.cache&&ef(n,[vt],a,!0))),Rt(e,n,n.pendingProps.children,a),n.child;case 29:throw n.pendingProps}throw Error(s(156,n.tag))}function dr(e){e.flags|=4}function $f(e,n,a,o,u){if((n=(e.mode&32)!==0)&&(n=!1),n){if(e.flags|=16777216,(u&335544128)===u)if(e.stateNode.complete)e.flags|=8192;else if(qp())e.flags|=8192;else throw Ci=Zo,sf}else e.flags&=-16777217}function cp(e,n){if(n.type!=="stylesheet"||(n.state.loading&4)!==0)e.flags&=-16777217;else if(e.flags|=16777216,!Ey(n))if(qp())e.flags|=8192;else throw Ci=Zo,sf}function pl(e,n){n!==null&&(e.flags|=4),e.flags&16384&&(n=e.tag!==22?Xi():536870912,e.lanes|=n,_s|=n)}function Aa(e,n){if(!Pe)switch(e.tailMode){case"hidden":n=e.tail;for(var a=null;n!==null;)n.alternate!==null&&(a=n),n=n.sibling;a===null?e.tail=null:a.sibling=null;break;case"collapsed":a=e.tail;for(var o=null;a!==null;)a.alternate!==null&&(o=a),a=a.sibling;o===null?n||e.tail===null?e.tail=null:e.tail.sibling=null:o.sibling=null}}function nt(e){var n=e.alternate!==null&&e.alternate.child===e.child,a=0,o=0;if(n)for(var u=e.child;u!==null;)a|=u.lanes|u.childLanes,o|=u.subtreeFlags&65011712,o|=u.flags&65011712,u.return=e,u=u.sibling;else for(u=e.child;u!==null;)a|=u.lanes|u.childLanes,o|=u.subtreeFlags,o|=u.flags,u.return=e,u=u.sibling;return e.subtreeFlags|=o,e.childLanes=a,n}function n_(e,n,a){var o=n.pendingProps;switch(Xu(n),n.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return nt(n),null;case 1:return nt(n),null;case 3:return a=n.stateNode,o=null,e!==null&&(o=e.memoizedState.cache),n.memoizedState.cache!==o&&(n.flags|=2048),cr(vt),ke(),a.pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),(e===null||e.child===null)&&(ls(n)?dr(n):e===null||e.memoizedState.isDehydrated&&(n.flags&256)===0||(n.flags|=1024,Qu())),nt(n),null;case 26:var u=n.type,h=n.memoizedState;return e===null?(dr(n),h!==null?(nt(n),cp(n,h)):(nt(n),$f(n,u,null,o,a))):h?h!==e.memoizedState?(dr(n),nt(n),cp(n,h)):(nt(n),n.flags&=-16777217):(e=e.memoizedProps,e!==o&&dr(n),nt(n),$f(n,u,e,o,a)),null;case 27:if(di(n),a=ct.current,u=n.type,e!==null&&n.stateNode!=null)e.memoizedProps!==o&&dr(n);else{if(!o){if(n.stateNode===null)throw Error(s(166));return nt(n),null}e=We.current,ls(n)?$m(n):(e=yy(u,o,a),n.stateNode=e,dr(n))}return nt(n),null;case 5:if(di(n),u=n.type,e!==null&&n.stateNode!=null)e.memoizedProps!==o&&dr(n);else{if(!o){if(n.stateNode===null)throw Error(s(166));return nt(n),null}if(h=We.current,ls(n))$m(n);else{var x=kl(ct.current);switch(h){case 1:h=x.createElementNS("http://www.w3.org/2000/svg",u);break;case 2:h=x.createElementNS("http://www.w3.org/1998/Math/MathML",u);break;default:switch(u){case"svg":h=x.createElementNS("http://www.w3.org/2000/svg",u);break;case"math":h=x.createElementNS("http://www.w3.org/1998/Math/MathML",u);break;case"script":h=x.createElement("div"),h.innerHTML="<script><\/script>",h=h.removeChild(h.firstChild);break;case"select":h=typeof o.is=="string"?x.createElement("select",{is:o.is}):x.createElement("select"),o.multiple?h.multiple=!0:o.size&&(h.size=o.size);break;default:h=typeof o.is=="string"?x.createElement(u,{is:o.is}):x.createElement(u)}}h[Qe]=n,h[ut]=o;e:for(x=n.child;x!==null;){if(x.tag===5||x.tag===6)h.appendChild(x.stateNode);else if(x.tag!==4&&x.tag!==27&&x.child!==null){x.child.return=x,x=x.child;continue}if(x===n)break e;for(;x.sibling===null;){if(x.return===null||x.return===n)break e;x=x.return}x.sibling.return=x.return,x=x.sibling}n.stateNode=h;e:switch(Dt(h,u,o),u){case"button":case"input":case"select":case"textarea":o=!!o.autoFocus;break e;case"img":o=!0;break e;default:o=!1}o&&dr(n)}}return nt(n),$f(n,n.type,e===null?null:e.memoizedProps,n.pendingProps,a),null;case 6:if(e&&n.stateNode!=null)e.memoizedProps!==o&&dr(n);else{if(typeof o!="string"&&n.stateNode===null)throw Error(s(166));if(e=ct.current,ls(n)){if(e=n.stateNode,a=n.memoizedProps,o=null,u=Ct,u!==null)switch(u.tag){case 27:case 5:o=u.memoizedProps}e[Qe]=n,e=!!(e.nodeValue===a||o!==null&&o.suppressHydrationWarning===!0||sy(e.nodeValue,a)),e||Br(n,!0)}else e=kl(e).createTextNode(o),e[Qe]=n,n.stateNode=e}return nt(n),null;case 31:if(a=n.memoizedState,e===null||e.memoizedState!==null){if(o=ls(n),a!==null){if(e===null){if(!o)throw Error(s(318));if(e=n.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(s(557));e[Qe]=n}else Ai(),(n.flags&128)===0&&(n.memoizedState=null),n.flags|=4;nt(n),e=!1}else a=Qu(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=a),e=!0;if(!e)return n.flags&256?(rn(n),n):(rn(n),null);if((n.flags&128)!==0)throw Error(s(558))}return nt(n),null;case 13:if(o=n.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(u=ls(n),o!==null&&o.dehydrated!==null){if(e===null){if(!u)throw Error(s(318));if(u=n.memoizedState,u=u!==null?u.dehydrated:null,!u)throw Error(s(317));u[Qe]=n}else Ai(),(n.flags&128)===0&&(n.memoizedState=null),n.flags|=4;nt(n),u=!1}else u=Qu(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=u),u=!0;if(!u)return n.flags&256?(rn(n),n):(rn(n),null)}return rn(n),(n.flags&128)!==0?(n.lanes=a,n):(a=o!==null,e=e!==null&&e.memoizedState!==null,a&&(o=n.child,u=null,o.alternate!==null&&o.alternate.memoizedState!==null&&o.alternate.memoizedState.cachePool!==null&&(u=o.alternate.memoizedState.cachePool.pool),h=null,o.memoizedState!==null&&o.memoizedState.cachePool!==null&&(h=o.memoizedState.cachePool.pool),h!==u&&(o.flags|=2048)),a!==e&&a&&(n.child.flags|=8192),pl(n,n.updateQueue),nt(n),null);case 4:return ke(),e===null&&uh(n.stateNode.containerInfo),nt(n),null;case 10:return cr(n.type),nt(n),null;case 19:if(Se(yt),o=n.memoizedState,o===null)return nt(n),null;if(u=(n.flags&128)!==0,h=o.rendering,h===null)if(u)Aa(o,!1);else{if(ht!==0||e!==null&&(e.flags&128)!==0)for(e=n.child;e!==null;){if(h=nl(e),h!==null){for(n.flags|=128,Aa(o,!1),e=h.updateQueue,n.updateQueue=e,pl(n,e),n.subtreeFlags=0,e=a,a=n.child;a!==null;)Lm(a,e),a=a.sibling;return Ne(yt,yt.current&1|2),Pe&&or(n,o.treeForkCount),n.child}e=e.sibling}o.tail!==null&&it()>xl&&(n.flags|=128,u=!0,Aa(o,!1),n.lanes=4194304)}else{if(!u)if(e=nl(h),e!==null){if(n.flags|=128,u=!0,e=e.updateQueue,n.updateQueue=e,pl(n,e),Aa(o,!0),o.tail===null&&o.tailMode==="hidden"&&!h.alternate&&!Pe)return nt(n),null}else 2*it()-o.renderingStartTime>xl&&a!==536870912&&(n.flags|=128,u=!0,Aa(o,!1),n.lanes=4194304);o.isBackwards?(h.sibling=n.child,n.child=h):(e=o.last,e!==null?e.sibling=h:n.child=h,o.last=h)}return o.tail!==null?(e=o.tail,o.rendering=e,o.tail=e.sibling,o.renderingStartTime=it(),e.sibling=null,a=yt.current,Ne(yt,u?a&1|2:a&1),Pe&&or(n,o.treeForkCount),e):(nt(n),null);case 22:case 23:return rn(n),ff(),o=n.memoizedState!==null,e!==null?e.memoizedState!==null!==o&&(n.flags|=8192):o&&(n.flags|=8192),o?(a&536870912)!==0&&(n.flags&128)===0&&(nt(n),n.subtreeFlags&6&&(n.flags|=8192)):nt(n),a=n.updateQueue,a!==null&&pl(n,a.retryQueue),a=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(a=e.memoizedState.cachePool.pool),o=null,n.memoizedState!==null&&n.memoizedState.cachePool!==null&&(o=n.memoizedState.cachePool.pool),o!==a&&(n.flags|=2048),e!==null&&Se(Ni),null;case 24:return a=null,e!==null&&(a=e.memoizedState.cache),n.memoizedState.cache!==a&&(n.flags|=2048),cr(vt),nt(n),null;case 25:return null;case 30:return null}throw Error(s(156,n.tag))}function r_(e,n){switch(Xu(n),n.tag){case 1:return e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 3:return cr(vt),ke(),e=n.flags,(e&65536)!==0&&(e&128)===0?(n.flags=e&-65537|128,n):null;case 26:case 27:case 5:return di(n),null;case 31:if(n.memoizedState!==null){if(rn(n),n.alternate===null)throw Error(s(340));Ai()}return e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 13:if(rn(n),e=n.memoizedState,e!==null&&e.dehydrated!==null){if(n.alternate===null)throw Error(s(340));Ai()}return e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 19:return Se(yt),null;case 4:return ke(),null;case 10:return cr(n.type),null;case 22:case 23:return rn(n),ff(),e!==null&&Se(Ni),e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 24:return cr(vt),null;case 25:return null;default:return null}}function up(e,n){switch(Xu(n),n.tag){case 3:cr(vt),ke();break;case 26:case 27:case 5:di(n);break;case 4:ke();break;case 31:n.memoizedState!==null&&rn(n);break;case 13:rn(n);break;case 19:Se(yt);break;case 10:cr(n.type);break;case 22:case 23:rn(n),ff(),e!==null&&Se(Ni);break;case 24:cr(vt)}}function ja(e,n){try{var a=n.updateQueue,o=a!==null?a.lastEffect:null;if(o!==null){var u=o.next;a=u;do{if((a.tag&e)===e){o=void 0;var h=a.create,x=a.inst;o=h(),x.destroy=o}a=a.next}while(a!==u)}}catch(E){Ve(n,n.return,E)}}function Hr(e,n,a){try{var o=n.updateQueue,u=o!==null?o.lastEffect:null;if(u!==null){var h=u.next;o=h;do{if((o.tag&e)===e){var x=o.inst,E=x.destroy;if(E!==void 0){x.destroy=void 0,u=n;var R=a,H=E;try{H()}catch(Q){Ve(u,R,Q)}}}o=o.next}while(o!==h)}}catch(Q){Ve(n,n.return,Q)}}function fp(e){var n=e.updateQueue;if(n!==null){var a=e.stateNode;try{t0(n,a)}catch(o){Ve(e,e.return,o)}}}function hp(e,n,a){a.props=Di(e.type,e.memoizedProps),a.state=e.memoizedState;try{a.componentWillUnmount()}catch(o){Ve(e,n,o)}}function Ta(e,n){try{var a=e.ref;if(a!==null){switch(e.tag){case 26:case 27:case 5:var o=e.stateNode;break;case 30:o=e.stateNode;break;default:o=e.stateNode}typeof a=="function"?e.refCleanup=a(o):a.current=o}}catch(u){Ve(e,n,u)}}function Yn(e,n){var a=e.ref,o=e.refCleanup;if(a!==null)if(typeof o=="function")try{o()}catch(u){Ve(e,n,u)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof a=="function")try{a(null)}catch(u){Ve(e,n,u)}else a.current=null}function dp(e){var n=e.type,a=e.memoizedProps,o=e.stateNode;try{e:switch(n){case"button":case"input":case"select":case"textarea":a.autoFocus&&o.focus();break e;case"img":a.src?o.src=a.src:a.srcSet&&(o.srcset=a.srcSet)}}catch(u){Ve(e,e.return,u)}}function Hf(e,n,a){try{var o=e.stateNode;O_(o,e.type,a,n),o[ut]=n}catch(u){Ve(e,e.return,u)}}function mp(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&Jr(e.type)||e.tag===4}function Gf(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||mp(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.tag===27&&Jr(e.type)||e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Ff(e,n,a){var o=e.tag;if(o===5||o===6)e=e.stateNode,n?(a.nodeType===9?a.body:a.nodeName==="HTML"?a.ownerDocument.body:a).insertBefore(e,n):(n=a.nodeType===9?a.body:a.nodeName==="HTML"?a.ownerDocument.body:a,n.appendChild(e),a=a._reactRootContainer,a!=null||n.onclick!==null||(n.onclick=ir));else if(o!==4&&(o===27&&Jr(e.type)&&(a=e.stateNode,n=null),e=e.child,e!==null))for(Ff(e,n,a),e=e.sibling;e!==null;)Ff(e,n,a),e=e.sibling}function yl(e,n,a){var o=e.tag;if(o===5||o===6)e=e.stateNode,n?a.insertBefore(e,n):a.appendChild(e);else if(o!==4&&(o===27&&Jr(e.type)&&(a=e.stateNode),e=e.child,e!==null))for(yl(e,n,a),e=e.sibling;e!==null;)yl(e,n,a),e=e.sibling}function pp(e){var n=e.stateNode,a=e.memoizedProps;try{for(var o=e.type,u=n.attributes;u.length;)n.removeAttributeNode(u[0]);Dt(n,o,a),n[Qe]=e,n[ut]=a}catch(h){Ve(e,e.return,h)}}var mr=!1,wt=!1,Vf=!1,yp=typeof WeakSet=="function"?WeakSet:Set,jt=null;function i_(e,n){if(e=e.containerInfo,dh=Ll,e=Tm(e),Pu(e)){if("selectionStart"in e)var a={start:e.selectionStart,end:e.selectionEnd};else e:{a=(a=e.ownerDocument)&&a.defaultView||window;var o=a.getSelection&&a.getSelection();if(o&&o.rangeCount!==0){a=o.anchorNode;var u=o.anchorOffset,h=o.focusNode;o=o.focusOffset;try{a.nodeType,h.nodeType}catch{a=null;break e}var x=0,E=-1,R=-1,H=0,Q=0,ne=e,F=null;t:for(;;){for(var K;ne!==a||u!==0&&ne.nodeType!==3||(E=x+u),ne!==h||o!==0&&ne.nodeType!==3||(R=x+o),ne.nodeType===3&&(x+=ne.nodeValue.length),(K=ne.firstChild)!==null;)F=ne,ne=K;for(;;){if(ne===e)break t;if(F===a&&++H===u&&(E=x),F===h&&++Q===o&&(R=x),(K=ne.nextSibling)!==null)break;ne=F,F=ne.parentNode}ne=K}a=E===-1||R===-1?null:{start:E,end:R}}else a=null}a=a||{start:0,end:0}}else a=null;for(mh={focusedElem:e,selectionRange:a},Ll=!1,jt=n;jt!==null;)if(n=jt,e=n.child,(n.subtreeFlags&1028)!==0&&e!==null)e.return=n,jt=e;else for(;jt!==null;){switch(n=jt,h=n.alternate,e=n.flags,n.tag){case 0:if((e&4)!==0&&(e=n.updateQueue,e=e!==null?e.events:null,e!==null))for(a=0;a<e.length;a++)u=e[a],u.ref.impl=u.nextImpl;break;case 11:case 15:break;case 1:if((e&1024)!==0&&h!==null){e=void 0,a=n,u=h.memoizedProps,h=h.memoizedState,o=a.stateNode;try{var ye=Di(a.type,u);e=o.getSnapshotBeforeUpdate(ye,h),o.__reactInternalSnapshotBeforeUpdate=e}catch(Ee){Ve(a,a.return,Ee)}}break;case 3:if((e&1024)!==0){if(e=n.stateNode.containerInfo,a=e.nodeType,a===9)gh(e);else if(a===1)switch(e.nodeName){case"HEAD":case"HTML":case"BODY":gh(e);break;default:e.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((e&1024)!==0)throw Error(s(163))}if(e=n.sibling,e!==null){e.return=n.return,jt=e;break}jt=n.return}}function gp(e,n,a){var o=a.flags;switch(a.tag){case 0:case 11:case 15:yr(e,a),o&4&&ja(5,a);break;case 1:if(yr(e,a),o&4)if(e=a.stateNode,n===null)try{e.componentDidMount()}catch(x){Ve(a,a.return,x)}else{var u=Di(a.type,n.memoizedProps);n=n.memoizedState;try{e.componentDidUpdate(u,n,e.__reactInternalSnapshotBeforeUpdate)}catch(x){Ve(a,a.return,x)}}o&64&&fp(a),o&512&&Ta(a,a.return);break;case 3:if(yr(e,a),o&64&&(e=a.updateQueue,e!==null)){if(n=null,a.child!==null)switch(a.child.tag){case 27:case 5:n=a.child.stateNode;break;case 1:n=a.child.stateNode}try{t0(e,n)}catch(x){Ve(a,a.return,x)}}break;case 27:n===null&&o&4&&pp(a);case 26:case 5:yr(e,a),n===null&&o&4&&dp(a),o&512&&Ta(a,a.return);break;case 12:yr(e,a);break;case 31:yr(e,a),o&4&&xp(e,a);break;case 13:yr(e,a),o&4&&_p(e,a),o&64&&(e=a.memoizedState,e!==null&&(e=e.dehydrated,e!==null&&(a=d_.bind(null,a),R_(e,a))));break;case 22:if(o=a.memoizedState!==null||mr,!o){n=n!==null&&n.memoizedState!==null||wt,u=mr;var h=wt;mr=o,(wt=n)&&!h?gr(e,a,(a.subtreeFlags&8772)!==0):yr(e,a),mr=u,wt=h}break;case 30:break;default:yr(e,a)}}function bp(e){var n=e.alternate;n!==null&&(e.alternate=null,bp(n)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(n=e.stateNode,n!==null&&Ji(n)),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}var st=null,Yt=!1;function pr(e,n,a){for(a=a.child;a!==null;)vp(e,n,a),a=a.sibling}function vp(e,n,a){if(pt&&typeof pt.onCommitFiberUnmount=="function")try{pt.onCommitFiberUnmount(pi,a)}catch{}switch(a.tag){case 26:wt||Yn(a,n),pr(e,n,a),a.memoizedState?a.memoizedState.count--:a.stateNode&&(a=a.stateNode,a.parentNode.removeChild(a));break;case 27:wt||Yn(a,n);var o=st,u=Yt;Jr(a.type)&&(st=a.stateNode,Yt=!1),pr(e,n,a),La(a.stateNode),st=o,Yt=u;break;case 5:wt||Yn(a,n);case 6:if(o=st,u=Yt,st=null,pr(e,n,a),st=o,Yt=u,st!==null)if(Yt)try{(st.nodeType===9?st.body:st.nodeName==="HTML"?st.ownerDocument.body:st).removeChild(a.stateNode)}catch(h){Ve(a,n,h)}else try{st.removeChild(a.stateNode)}catch(h){Ve(a,n,h)}break;case 18:st!==null&&(Yt?(e=st,fy(e.nodeType===9?e.body:e.nodeName==="HTML"?e.ownerDocument.body:e,a.stateNode),Ns(e)):fy(st,a.stateNode));break;case 4:o=st,u=Yt,st=a.stateNode.containerInfo,Yt=!0,pr(e,n,a),st=o,Yt=u;break;case 0:case 11:case 14:case 15:Hr(2,a,n),wt||Hr(4,a,n),pr(e,n,a);break;case 1:wt||(Yn(a,n),o=a.stateNode,typeof o.componentWillUnmount=="function"&&hp(a,n,o)),pr(e,n,a);break;case 21:pr(e,n,a);break;case 22:wt=(o=wt)||a.memoizedState!==null,pr(e,n,a),wt=o;break;default:pr(e,n,a)}}function xp(e,n){if(n.memoizedState===null&&(e=n.alternate,e!==null&&(e=e.memoizedState,e!==null))){e=e.dehydrated;try{Ns(e)}catch(a){Ve(n,n.return,a)}}}function _p(e,n){if(n.memoizedState===null&&(e=n.alternate,e!==null&&(e=e.memoizedState,e!==null&&(e=e.dehydrated,e!==null))))try{Ns(e)}catch(a){Ve(n,n.return,a)}}function s_(e){switch(e.tag){case 31:case 13:case 19:var n=e.stateNode;return n===null&&(n=e.stateNode=new yp),n;case 22:return e=e.stateNode,n=e._retryCache,n===null&&(n=e._retryCache=new yp),n;default:throw Error(s(435,e.tag))}}function gl(e,n){var a=s_(e);n.forEach(function(o){if(!a.has(o)){a.add(o);var u=m_.bind(null,e,o);o.then(u,u)}})}function Kt(e,n){var a=n.deletions;if(a!==null)for(var o=0;o<a.length;o++){var u=a[o],h=e,x=n,E=x;e:for(;E!==null;){switch(E.tag){case 27:if(Jr(E.type)){st=E.stateNode,Yt=!1;break e}break;case 5:st=E.stateNode,Yt=!1;break e;case 3:case 4:st=E.stateNode.containerInfo,Yt=!0;break e}E=E.return}if(st===null)throw Error(s(160));vp(h,x,u),st=null,Yt=!1,h=u.alternate,h!==null&&(h.return=null),u.return=null}if(n.subtreeFlags&13886)for(n=n.child;n!==null;)wp(n,e),n=n.sibling}var Bn=null;function wp(e,n){var a=e.alternate,o=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:Kt(n,e),Xt(e),o&4&&(Hr(3,e,e.return),ja(3,e),Hr(5,e,e.return));break;case 1:Kt(n,e),Xt(e),o&512&&(wt||a===null||Yn(a,a.return)),o&64&&mr&&(e=e.updateQueue,e!==null&&(o=e.callbacks,o!==null&&(a=e.shared.hiddenCallbacks,e.shared.hiddenCallbacks=a===null?o:a.concat(o))));break;case 26:var u=Bn;if(Kt(n,e),Xt(e),o&512&&(wt||a===null||Yn(a,a.return)),o&4){var h=a!==null?a.memoizedState:null;if(o=e.memoizedState,a===null)if(o===null)if(e.stateNode===null){e:{o=e.type,a=e.memoizedProps,u=u.ownerDocument||u;t:switch(o){case"title":h=u.getElementsByTagName("title")[0],(!h||h[Et]||h[Qe]||h.namespaceURI==="http://www.w3.org/2000/svg"||h.hasAttribute("itemprop"))&&(h=u.createElement(o),u.head.insertBefore(h,u.querySelector("head > title"))),Dt(h,o,a),h[Qe]=e,D(h),o=h;break e;case"link":var x=wy("link","href",u).get(o+(a.href||""));if(x){for(var E=0;E<x.length;E++)if(h=x[E],h.getAttribute("href")===(a.href==null||a.href===""?null:a.href)&&h.getAttribute("rel")===(a.rel==null?null:a.rel)&&h.getAttribute("title")===(a.title==null?null:a.title)&&h.getAttribute("crossorigin")===(a.crossOrigin==null?null:a.crossOrigin)){x.splice(E,1);break t}}h=u.createElement(o),Dt(h,o,a),u.head.appendChild(h);break;case"meta":if(x=wy("meta","content",u).get(o+(a.content||""))){for(E=0;E<x.length;E++)if(h=x[E],h.getAttribute("content")===(a.content==null?null:""+a.content)&&h.getAttribute("name")===(a.name==null?null:a.name)&&h.getAttribute("property")===(a.property==null?null:a.property)&&h.getAttribute("http-equiv")===(a.httpEquiv==null?null:a.httpEquiv)&&h.getAttribute("charset")===(a.charSet==null?null:a.charSet)){x.splice(E,1);break t}}h=u.createElement(o),Dt(h,o,a),u.head.appendChild(h);break;default:throw Error(s(468,o))}h[Qe]=e,D(h),o=h}e.stateNode=o}else Sy(u,e.type,e.stateNode);else e.stateNode=_y(u,o,e.memoizedProps);else h!==o?(h===null?a.stateNode!==null&&(a=a.stateNode,a.parentNode.removeChild(a)):h.count--,o===null?Sy(u,e.type,e.stateNode):_y(u,o,e.memoizedProps)):o===null&&e.stateNode!==null&&Hf(e,e.memoizedProps,a.memoizedProps)}break;case 27:Kt(n,e),Xt(e),o&512&&(wt||a===null||Yn(a,a.return)),a!==null&&o&4&&Hf(e,e.memoizedProps,a.memoizedProps);break;case 5:if(Kt(n,e),Xt(e),o&512&&(wt||a===null||Yn(a,a.return)),e.flags&32){u=e.stateNode;try{Zi(u,"")}catch(ye){Ve(e,e.return,ye)}}o&4&&e.stateNode!=null&&(u=e.memoizedProps,Hf(e,u,a!==null?a.memoizedProps:u)),o&1024&&(Vf=!0);break;case 6:if(Kt(n,e),Xt(e),o&4){if(e.stateNode===null)throw Error(s(162));o=e.memoizedProps,a=e.stateNode;try{a.nodeValue=o}catch(ye){Ve(e,e.return,ye)}}break;case 3:if(Rl=null,u=Bn,Bn=Cl(n.containerInfo),Kt(n,e),Bn=u,Xt(e),o&4&&a!==null&&a.memoizedState.isDehydrated)try{Ns(n.containerInfo)}catch(ye){Ve(e,e.return,ye)}Vf&&(Vf=!1,Sp(e));break;case 4:o=Bn,Bn=Cl(e.stateNode.containerInfo),Kt(n,e),Xt(e),Bn=o;break;case 12:Kt(n,e),Xt(e);break;case 31:Kt(n,e),Xt(e),o&4&&(o=e.updateQueue,o!==null&&(e.updateQueue=null,gl(e,o)));break;case 13:Kt(n,e),Xt(e),e.child.flags&8192&&e.memoizedState!==null!=(a!==null&&a.memoizedState!==null)&&(vl=it()),o&4&&(o=e.updateQueue,o!==null&&(e.updateQueue=null,gl(e,o)));break;case 22:u=e.memoizedState!==null;var R=a!==null&&a.memoizedState!==null,H=mr,Q=wt;if(mr=H||u,wt=Q||R,Kt(n,e),wt=Q,mr=H,Xt(e),o&8192)e:for(n=e.stateNode,n._visibility=u?n._visibility&-2:n._visibility|1,u&&(a===null||R||mr||wt||qi(e)),a=null,n=e;;){if(n.tag===5||n.tag===26){if(a===null){R=a=n;try{if(h=R.stateNode,u)x=h.style,typeof x.setProperty=="function"?x.setProperty("display","none","important"):x.display="none";else{E=R.stateNode;var ne=R.memoizedProps.style,F=ne!=null&&ne.hasOwnProperty("display")?ne.display:null;E.style.display=F==null||typeof F=="boolean"?"":(""+F).trim()}}catch(ye){Ve(R,R.return,ye)}}}else if(n.tag===6){if(a===null){R=n;try{R.stateNode.nodeValue=u?"":R.memoizedProps}catch(ye){Ve(R,R.return,ye)}}}else if(n.tag===18){if(a===null){R=n;try{var K=R.stateNode;u?hy(K,!0):hy(R.stateNode,!1)}catch(ye){Ve(R,R.return,ye)}}}else if((n.tag!==22&&n.tag!==23||n.memoizedState===null||n===e)&&n.child!==null){n.child.return=n,n=n.child;continue}if(n===e)break e;for(;n.sibling===null;){if(n.return===null||n.return===e)break e;a===n&&(a=null),n=n.return}a===n&&(a=null),n.sibling.return=n.return,n=n.sibling}o&4&&(o=e.updateQueue,o!==null&&(a=o.retryQueue,a!==null&&(o.retryQueue=null,gl(e,a))));break;case 19:Kt(n,e),Xt(e),o&4&&(o=e.updateQueue,o!==null&&(e.updateQueue=null,gl(e,o)));break;case 30:break;case 21:break;default:Kt(n,e),Xt(e)}}function Xt(e){var n=e.flags;if(n&2){try{for(var a,o=e.return;o!==null;){if(mp(o)){a=o;break}o=o.return}if(a==null)throw Error(s(160));switch(a.tag){case 27:var u=a.stateNode,h=Gf(e);yl(e,h,u);break;case 5:var x=a.stateNode;a.flags&32&&(Zi(x,""),a.flags&=-33);var E=Gf(e);yl(e,E,x);break;case 3:case 4:var R=a.stateNode.containerInfo,H=Gf(e);Ff(e,H,R);break;default:throw Error(s(161))}}catch(Q){Ve(e,e.return,Q)}e.flags&=-3}n&4096&&(e.flags&=-4097)}function Sp(e){if(e.subtreeFlags&1024)for(e=e.child;e!==null;){var n=e;Sp(n),n.tag===5&&n.flags&1024&&n.stateNode.reset(),e=e.sibling}}function yr(e,n){if(n.subtreeFlags&8772)for(n=n.child;n!==null;)gp(e,n.alternate,n),n=n.sibling}function qi(e){for(e=e.child;e!==null;){var n=e;switch(n.tag){case 0:case 11:case 14:case 15:Hr(4,n,n.return),qi(n);break;case 1:Yn(n,n.return);var a=n.stateNode;typeof a.componentWillUnmount=="function"&&hp(n,n.return,a),qi(n);break;case 27:La(n.stateNode);case 26:case 5:Yn(n,n.return),qi(n);break;case 22:n.memoizedState===null&&qi(n);break;case 30:qi(n);break;default:qi(n)}e=e.sibling}}function gr(e,n,a){for(a=a&&(n.subtreeFlags&8772)!==0,n=n.child;n!==null;){var o=n.alternate,u=e,h=n,x=h.flags;switch(h.tag){case 0:case 11:case 15:gr(u,h,a),ja(4,h);break;case 1:if(gr(u,h,a),o=h,u=o.stateNode,typeof u.componentDidMount=="function")try{u.componentDidMount()}catch(H){Ve(o,o.return,H)}if(o=h,u=o.updateQueue,u!==null){var E=o.stateNode;try{var R=u.shared.hiddenCallbacks;if(R!==null)for(u.shared.hiddenCallbacks=null,u=0;u<R.length;u++)e0(R[u],E)}catch(H){Ve(o,o.return,H)}}a&&x&64&&fp(h),Ta(h,h.return);break;case 27:pp(h);case 26:case 5:gr(u,h,a),a&&o===null&&x&4&&dp(h),Ta(h,h.return);break;case 12:gr(u,h,a);break;case 31:gr(u,h,a),a&&x&4&&xp(u,h);break;case 13:gr(u,h,a),a&&x&4&&_p(u,h);break;case 22:h.memoizedState===null&&gr(u,h,a),Ta(h,h.return);break;case 30:break;default:gr(u,h,a)}n=n.sibling}}function Yf(e,n){var a=null;e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(a=e.memoizedState.cachePool.pool),e=null,n.memoizedState!==null&&n.memoizedState.cachePool!==null&&(e=n.memoizedState.cachePool.pool),e!==a&&(e!=null&&e.refCount++,a!=null&&ma(a))}function Kf(e,n){e=null,n.alternate!==null&&(e=n.alternate.memoizedState.cache),n=n.memoizedState.cache,n!==e&&(n.refCount++,e!=null&&ma(e))}function Ln(e,n,a,o){if(n.subtreeFlags&10256)for(n=n.child;n!==null;)Ep(e,n,a,o),n=n.sibling}function Ep(e,n,a,o){var u=n.flags;switch(n.tag){case 0:case 11:case 15:Ln(e,n,a,o),u&2048&&ja(9,n);break;case 1:Ln(e,n,a,o);break;case 3:Ln(e,n,a,o),u&2048&&(e=null,n.alternate!==null&&(e=n.alternate.memoizedState.cache),n=n.memoizedState.cache,n!==e&&(n.refCount++,e!=null&&ma(e)));break;case 12:if(u&2048){Ln(e,n,a,o),e=n.stateNode;try{var h=n.memoizedProps,x=h.id,E=h.onPostCommit;typeof E=="function"&&E(x,n.alternate===null?"mount":"update",e.passiveEffectDuration,-0)}catch(R){Ve(n,n.return,R)}}else Ln(e,n,a,o);break;case 31:Ln(e,n,a,o);break;case 13:Ln(e,n,a,o);break;case 23:break;case 22:h=n.stateNode,x=n.alternate,n.memoizedState!==null?h._visibility&2?Ln(e,n,a,o):Na(e,n):h._visibility&2?Ln(e,n,a,o):(h._visibility|=2,bs(e,n,a,o,(n.subtreeFlags&10256)!==0||!1)),u&2048&&Yf(x,n);break;case 24:Ln(e,n,a,o),u&2048&&Kf(n.alternate,n);break;default:Ln(e,n,a,o)}}function bs(e,n,a,o,u){for(u=u&&((n.subtreeFlags&10256)!==0||!1),n=n.child;n!==null;){var h=e,x=n,E=a,R=o,H=x.flags;switch(x.tag){case 0:case 11:case 15:bs(h,x,E,R,u),ja(8,x);break;case 23:break;case 22:var Q=x.stateNode;x.memoizedState!==null?Q._visibility&2?bs(h,x,E,R,u):Na(h,x):(Q._visibility|=2,bs(h,x,E,R,u)),u&&H&2048&&Yf(x.alternate,x);break;case 24:bs(h,x,E,R,u),u&&H&2048&&Kf(x.alternate,x);break;default:bs(h,x,E,R,u)}n=n.sibling}}function Na(e,n){if(n.subtreeFlags&10256)for(n=n.child;n!==null;){var a=e,o=n,u=o.flags;switch(o.tag){case 22:Na(a,o),u&2048&&Yf(o.alternate,o);break;case 24:Na(a,o),u&2048&&Kf(o.alternate,o);break;default:Na(a,o)}n=n.sibling}}var ka=8192;function vs(e,n,a){if(e.subtreeFlags&ka)for(e=e.child;e!==null;)Op(e,n,a),e=e.sibling}function Op(e,n,a){switch(e.tag){case 26:vs(e,n,a),e.flags&ka&&e.memoizedState!==null&&F_(a,Bn,e.memoizedState,e.memoizedProps);break;case 5:vs(e,n,a);break;case 3:case 4:var o=Bn;Bn=Cl(e.stateNode.containerInfo),vs(e,n,a),Bn=o;break;case 22:e.memoizedState===null&&(o=e.alternate,o!==null&&o.memoizedState!==null?(o=ka,ka=16777216,vs(e,n,a),ka=o):vs(e,n,a));break;default:vs(e,n,a)}}function Ap(e){var n=e.alternate;if(n!==null&&(e=n.child,e!==null)){n.child=null;do n=e.sibling,e.sibling=null,e=n;while(e!==null)}}function Ca(e){var n=e.deletions;if((e.flags&16)!==0){if(n!==null)for(var a=0;a<n.length;a++){var o=n[a];jt=o,Tp(o,e)}Ap(e)}if(e.subtreeFlags&10256)for(e=e.child;e!==null;)jp(e),e=e.sibling}function jp(e){switch(e.tag){case 0:case 11:case 15:Ca(e),e.flags&2048&&Hr(9,e,e.return);break;case 3:Ca(e);break;case 12:Ca(e);break;case 22:var n=e.stateNode;e.memoizedState!==null&&n._visibility&2&&(e.return===null||e.return.tag!==13)?(n._visibility&=-3,bl(e)):Ca(e);break;default:Ca(e)}}function bl(e){var n=e.deletions;if((e.flags&16)!==0){if(n!==null)for(var a=0;a<n.length;a++){var o=n[a];jt=o,Tp(o,e)}Ap(e)}for(e=e.child;e!==null;){switch(n=e,n.tag){case 0:case 11:case 15:Hr(8,n,n.return),bl(n);break;case 22:a=n.stateNode,a._visibility&2&&(a._visibility&=-3,bl(n));break;default:bl(n)}e=e.sibling}}function Tp(e,n){for(;jt!==null;){var a=jt;switch(a.tag){case 0:case 11:case 15:Hr(8,a,n);break;case 23:case 22:if(a.memoizedState!==null&&a.memoizedState.cachePool!==null){var o=a.memoizedState.cachePool.pool;o!=null&&o.refCount++}break;case 24:ma(a.memoizedState.cache)}if(o=a.child,o!==null)o.return=a,jt=o;else e:for(a=e;jt!==null;){o=jt;var u=o.sibling,h=o.return;if(bp(o),o===a){jt=null;break e}if(u!==null){u.return=h,jt=u;break e}jt=h}}}var a_={getCacheForType:function(e){var n=Mt(vt),a=n.data.get(e);return a===void 0&&(a=e(),n.data.set(e,a)),a},cacheSignal:function(){return Mt(vt).controller.signal}},o_=typeof WeakMap=="function"?WeakMap:Map,Ge=0,Ze=null,De=null,Be=0,Fe=0,sn=null,Gr=!1,xs=!1,Xf=!1,br=0,ht=0,Fr=0,Bi=0,Jf=0,an=0,_s=0,Ma=null,Jt=null,Qf=!1,vl=0,Np=0,xl=1/0,_l=null,Vr=null,Ot=0,Yr=null,ws=null,vr=0,Zf=0,Wf=null,kp=null,Ra=0,eh=null;function on(){return(Ge&2)!==0&&Be!==0?Be&-Be:Y.T!==null?ah():ta()}function Cp(){if(an===0)if((Be&536870912)===0||Pe){var e=tr;tr<<=1,(tr&3932160)===0&&(tr=262144),an=e}else an=536870912;return e=nn.current,e!==null&&(e.flags|=32),an}function Qt(e,n,a){(e===Ze&&(Fe===2||Fe===9)||e.cancelPendingCommit!==null)&&(Ss(e,0),Kr(e,Be,an,!1)),Rn(e,a),((Ge&2)===0||e!==Ze)&&(e===Ze&&((Ge&2)===0&&(Bi|=a),ht===4&&Kr(e,Be,an,!1)),Kn(e))}function Mp(e,n,a){if((Ge&6)!==0)throw Error(s(327));var o=!a&&(n&127)===0&&(n&e.expiredLanes)===0||gi(e,n),u=o?u_(e,n):nh(e,n,!0),h=o;do{if(u===0){xs&&!o&&Kr(e,n,0,!1);break}else{if(a=e.current.alternate,h&&!l_(a)){u=nh(e,n,!1),h=!1;continue}if(u===2){if(h=n,e.errorRecoveryDisabledLanes&h)var x=0;else x=e.pendingLanes&-536870913,x=x!==0?x:x&536870912?536870912:0;if(x!==0){n=x;e:{var E=e;u=Ma;var R=E.current.memoizedState.isDehydrated;if(R&&(Ss(E,x).flags|=256),x=nh(E,x,!1),x!==2){if(Xf&&!R){E.errorRecoveryDisabledLanes|=h,Bi|=h,u=4;break e}h=Jt,Jt=u,h!==null&&(Jt===null?Jt=h:Jt.push.apply(Jt,h))}u=x}if(h=!1,u!==2)continue}}if(u===1){Ss(e,0),Kr(e,n,0,!0);break}e:{switch(o=e,h=u,h){case 0:case 1:throw Error(s(345));case 4:if((n&4194048)!==n)break;case 6:Kr(o,n,an,!Gr);break e;case 2:Jt=null;break;case 3:case 5:break;default:throw Error(s(329))}if((n&62914560)===n&&(u=vl+300-it(),10<u)){if(Kr(o,n,an,!Gr),yi(o,0,!0)!==0)break e;vr=n,o.timeoutHandle=cy(Rp.bind(null,o,a,Jt,_l,Qf,n,an,Bi,_s,Gr,h,"Throttled",-0,0),u);break e}Rp(o,a,Jt,_l,Qf,n,an,Bi,_s,Gr,h,null,-0,0)}}break}while(!0);Kn(e)}function Rp(e,n,a,o,u,h,x,E,R,H,Q,ne,F,K){if(e.timeoutHandle=-1,ne=n.subtreeFlags,ne&8192||(ne&16785408)===16785408){ne={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:ir},Op(n,h,ne);var ye=(h&62914560)===h?vl-it():(h&4194048)===h?Np-it():0;if(ye=V_(ne,ye),ye!==null){vr=h,e.cancelPendingCommit=ye(Ip.bind(null,e,n,h,a,o,u,x,E,R,Q,ne,null,F,K)),Kr(e,h,x,!H);return}}Ip(e,n,h,a,o,u,x,E,R)}function l_(e){for(var n=e;;){var a=n.tag;if((a===0||a===11||a===15)&&n.flags&16384&&(a=n.updateQueue,a!==null&&(a=a.stores,a!==null)))for(var o=0;o<a.length;o++){var u=a[o],h=u.getSnapshot;u=u.value;try{if(!en(h(),u))return!1}catch{return!1}}if(a=n.child,n.subtreeFlags&16384&&a!==null)a.return=n,n=a;else{if(n===e)break;for(;n.sibling===null;){if(n.return===null||n.return===e)return!0;n=n.return}n.sibling.return=n.return,n=n.sibling}}return!0}function Kr(e,n,a,o){n&=~Jf,n&=~Bi,e.suspendedLanes|=n,e.pingedLanes&=~n,o&&(e.warmLanes|=n),o=e.expirationTimes;for(var u=n;0<u;){var h=31-Lt(u),x=1<<h;o[h]=-1,u&=~x}a!==0&&Cr(e,a,n)}function wl(){return(Ge&6)===0?(Da(0),!1):!0}function th(){if(De!==null){if(Fe===0)var e=De.return;else e=De,lr=ji=null,gf(e),ds=null,ya=0,e=De;for(;e!==null;)up(e.alternate,e),e=e.return;De=null}}function Ss(e,n){var a=e.timeoutHandle;a!==-1&&(e.timeoutHandle=-1,T_(a)),a=e.cancelPendingCommit,a!==null&&(e.cancelPendingCommit=null,a()),vr=0,th(),Ze=e,De=a=ar(e.current,null),Be=n,Fe=0,sn=null,Gr=!1,xs=gi(e,n),Xf=!1,_s=an=Jf=Bi=Fr=ht=0,Jt=Ma=null,Qf=!1,(n&8)!==0&&(n|=n&32);var o=e.entangledLanes;if(o!==0)for(e=e.entanglements,o&=n;0<o;){var u=31-Lt(o),h=1<<u;n|=e[u],o&=~h}return br=n,Ho(),a}function Dp(e,n){Ce=null,Y.H=Ea,n===hs||n===Qo?(n=Jm(),Fe=3):n===sf?(n=Jm(),Fe=4):Fe=n===Rf?8:n!==null&&typeof n=="object"&&typeof n.then=="function"?6:1,sn=n,De===null&&(ht=1,fl(e,wn(n,e.current)))}function qp(){var e=nn.current;return e===null?!0:(Be&4194048)===Be?An===null:(Be&62914560)===Be||(Be&536870912)!==0?e===An:!1}function Bp(){var e=Y.H;return Y.H=Ea,e===null?Ea:e}function Lp(){var e=Y.A;return Y.A=a_,e}function Sl(){ht=4,Gr||(Be&4194048)!==Be&&nn.current!==null||(xs=!0),(Fr&134217727)===0&&(Bi&134217727)===0||Ze===null||Kr(Ze,Be,an,!1)}function nh(e,n,a){var o=Ge;Ge|=2;var u=Bp(),h=Lp();(Ze!==e||Be!==n)&&(_l=null,Ss(e,n)),n=!1;var x=ht;e:do try{if(Fe!==0&&De!==null){var E=De,R=sn;switch(Fe){case 8:th(),x=6;break e;case 3:case 2:case 9:case 6:nn.current===null&&(n=!0);var H=Fe;if(Fe=0,sn=null,Es(e,E,R,H),a&&xs){x=0;break e}break;default:H=Fe,Fe=0,sn=null,Es(e,E,R,H)}}c_(),x=ht;break}catch(Q){Dp(e,Q)}while(!0);return n&&e.shellSuspendCounter++,lr=ji=null,Ge=o,Y.H=u,Y.A=h,De===null&&(Ze=null,Be=0,Ho()),x}function c_(){for(;De!==null;)Pp(De)}function u_(e,n){var a=Ge;Ge|=2;var o=Bp(),u=Lp();Ze!==e||Be!==n?(_l=null,xl=it()+500,Ss(e,n)):xs=gi(e,n);e:do try{if(Fe!==0&&De!==null){n=De;var h=sn;t:switch(Fe){case 1:Fe=0,sn=null,Es(e,n,h,1);break;case 2:case 9:if(Km(h)){Fe=0,sn=null,Up(n);break}n=function(){Fe!==2&&Fe!==9||Ze!==e||(Fe=7),Kn(e)},h.then(n,n);break e;case 3:Fe=7;break e;case 4:Fe=5;break e;case 7:Km(h)?(Fe=0,sn=null,Up(n)):(Fe=0,sn=null,Es(e,n,h,7));break;case 5:var x=null;switch(De.tag){case 26:x=De.memoizedState;case 5:case 27:var E=De;if(x?Ey(x):E.stateNode.complete){Fe=0,sn=null;var R=E.sibling;if(R!==null)De=R;else{var H=E.return;H!==null?(De=H,El(H)):De=null}break t}}Fe=0,sn=null,Es(e,n,h,5);break;case 6:Fe=0,sn=null,Es(e,n,h,6);break;case 8:th(),ht=6;break e;default:throw Error(s(462))}}f_();break}catch(Q){Dp(e,Q)}while(!0);return lr=ji=null,Y.H=o,Y.A=u,Ge=a,De!==null?0:(Ze=null,Be=0,Ho(),ht)}function f_(){for(;De!==null&&!Ao();)Pp(De)}function Pp(e){var n=lp(e.alternate,e,br);e.memoizedProps=e.pendingProps,n===null?El(e):De=n}function Up(e){var n=e,a=n.alternate;switch(n.tag){case 15:case 0:n=np(a,n,n.pendingProps,n.type,void 0,Be);break;case 11:n=np(a,n,n.pendingProps,n.type.render,n.ref,Be);break;case 5:gf(n);default:up(a,n),n=De=Lm(n,br),n=lp(a,n,br)}e.memoizedProps=e.pendingProps,n===null?El(e):De=n}function Es(e,n,a,o){lr=ji=null,gf(n),ds=null,ya=0;var u=n.return;try{if(Wx(e,u,n,a,Be)){ht=1,fl(e,wn(a,e.current)),De=null;return}}catch(h){if(u!==null)throw De=u,h;ht=1,fl(e,wn(a,e.current)),De=null;return}n.flags&32768?(Pe||o===1?e=!0:xs||(Be&536870912)!==0?e=!1:(Gr=e=!0,(o===2||o===9||o===3||o===6)&&(o=nn.current,o!==null&&o.tag===13&&(o.flags|=16384))),zp(n,e)):El(n)}function El(e){var n=e;do{if((n.flags&32768)!==0){zp(n,Gr);return}e=n.return;var a=n_(n.alternate,n,br);if(a!==null){De=a;return}if(n=n.sibling,n!==null){De=n;return}De=n=e}while(n!==null);ht===0&&(ht=5)}function zp(e,n){do{var a=r_(e.alternate,e);if(a!==null){a.flags&=32767,De=a;return}if(a=e.return,a!==null&&(a.flags|=32768,a.subtreeFlags=0,a.deletions=null),!n&&(e=e.sibling,e!==null)){De=e;return}De=e=a}while(e!==null);ht=6,De=null}function Ip(e,n,a,o,u,h,x,E,R){e.cancelPendingCommit=null;do Ol();while(Ot!==0);if((Ge&6)!==0)throw Error(s(327));if(n!==null){if(n===e.current)throw Error(s(177));if(h=n.lanes|n.childLanes,h|=Hu,kr(e,a,h,x,E,R),e===Ze&&(De=Ze=null,Be=0),ws=n,Yr=e,vr=a,Zf=h,Wf=u,kp=o,(n.subtreeFlags&10256)!==0||(n.flags&10256)!==0?(e.callbackNode=null,e.callbackPriority=0,p_(Yi,function(){return Vp(),null})):(e.callbackNode=null,e.callbackPriority=0),o=(n.flags&13878)!==0,(n.subtreeFlags&13878)!==0||o){o=Y.T,Y.T=null,u=ae.p,ae.p=2,x=Ge,Ge|=4;try{i_(e,n,a)}finally{Ge=x,ae.p=u,Y.T=o}}Ot=1,$p(),Hp(),Gp()}}function $p(){if(Ot===1){Ot=0;var e=Yr,n=ws,a=(n.flags&13878)!==0;if((n.subtreeFlags&13878)!==0||a){a=Y.T,Y.T=null;var o=ae.p;ae.p=2;var u=Ge;Ge|=4;try{wp(n,e);var h=mh,x=Tm(e.containerInfo),E=h.focusedElem,R=h.selectionRange;if(x!==E&&E&&E.ownerDocument&&jm(E.ownerDocument.documentElement,E)){if(R!==null&&Pu(E)){var H=R.start,Q=R.end;if(Q===void 0&&(Q=H),"selectionStart"in E)E.selectionStart=H,E.selectionEnd=Math.min(Q,E.value.length);else{var ne=E.ownerDocument||document,F=ne&&ne.defaultView||window;if(F.getSelection){var K=F.getSelection(),ye=E.textContent.length,Ee=Math.min(R.start,ye),Je=R.end===void 0?Ee:Math.min(R.end,ye);!K.extend&&Ee>Je&&(x=Je,Je=Ee,Ee=x);var z=Am(E,Ee),q=Am(E,Je);if(z&&q&&(K.rangeCount!==1||K.anchorNode!==z.node||K.anchorOffset!==z.offset||K.focusNode!==q.node||K.focusOffset!==q.offset)){var $=ne.createRange();$.setStart(z.node,z.offset),K.removeAllRanges(),Ee>Je?(K.addRange($),K.extend(q.node,q.offset)):($.setEnd(q.node,q.offset),K.addRange($))}}}}for(ne=[],K=E;K=K.parentNode;)K.nodeType===1&&ne.push({element:K,left:K.scrollLeft,top:K.scrollTop});for(typeof E.focus=="function"&&E.focus(),E=0;E<ne.length;E++){var Z=ne[E];Z.element.scrollLeft=Z.left,Z.element.scrollTop=Z.top}}Ll=!!dh,mh=dh=null}finally{Ge=u,ae.p=o,Y.T=a}}e.current=n,Ot=2}}function Hp(){if(Ot===2){Ot=0;var e=Yr,n=ws,a=(n.flags&8772)!==0;if((n.subtreeFlags&8772)!==0||a){a=Y.T,Y.T=null;var o=ae.p;ae.p=2;var u=Ge;Ge|=4;try{gp(e,n.alternate,n)}finally{Ge=u,ae.p=o,Y.T=a}}Ot=3}}function Gp(){if(Ot===4||Ot===3){Ot=0,Vi();var e=Yr,n=ws,a=vr,o=kp;(n.subtreeFlags&10256)!==0||(n.flags&10256)!==0?Ot=5:(Ot=0,ws=Yr=null,Fp(e,e.pendingLanes));var u=e.pendingLanes;if(u===0&&(Vr=null),vi(a),n=n.stateNode,pt&&typeof pt.onCommitFiberRoot=="function")try{pt.onCommitFiberRoot(pi,n,void 0,(n.current.flags&128)===128)}catch{}if(o!==null){n=Y.T,u=ae.p,ae.p=2,Y.T=null;try{for(var h=e.onRecoverableError,x=0;x<o.length;x++){var E=o[x];h(E.value,{componentStack:E.stack})}}finally{Y.T=n,ae.p=u}}(vr&3)!==0&&Ol(),Kn(e),u=e.pendingLanes,(a&261930)!==0&&(u&42)!==0?e===eh?Ra++:(Ra=0,eh=e):Ra=0,Da(0)}}function Fp(e,n){(e.pooledCacheLanes&=n)===0&&(n=e.pooledCache,n!=null&&(e.pooledCache=null,ma(n)))}function Ol(){return $p(),Hp(),Gp(),Vp()}function Vp(){if(Ot!==5)return!1;var e=Yr,n=Zf;Zf=0;var a=vi(vr),o=Y.T,u=ae.p;try{ae.p=32>a?32:a,Y.T=null,a=Wf,Wf=null;var h=Yr,x=vr;if(Ot=0,ws=Yr=null,vr=0,(Ge&6)!==0)throw Error(s(331));var E=Ge;if(Ge|=4,jp(h.current),Ep(h,h.current,x,a),Ge=E,Da(0,!1),pt&&typeof pt.onPostCommitFiberRoot=="function")try{pt.onPostCommitFiberRoot(pi,h)}catch{}return!0}finally{ae.p=u,Y.T=o,Fp(e,n)}}function Yp(e,n,a){n=wn(a,n),n=Mf(e.stateNode,n,2),e=zr(e,n,2),e!==null&&(Rn(e,2),Kn(e))}function Ve(e,n,a){if(e.tag===3)Yp(e,e,a);else for(;n!==null;){if(n.tag===3){Yp(n,e,a);break}else if(n.tag===1){var o=n.stateNode;if(typeof n.type.getDerivedStateFromError=="function"||typeof o.componentDidCatch=="function"&&(Vr===null||!Vr.has(o))){e=wn(a,e),a=K0(2),o=zr(n,a,2),o!==null&&(X0(a,o,n,e),Rn(o,2),Kn(o));break}}n=n.return}}function rh(e,n,a){var o=e.pingCache;if(o===null){o=e.pingCache=new o_;var u=new Set;o.set(n,u)}else u=o.get(n),u===void 0&&(u=new Set,o.set(n,u));u.has(a)||(Xf=!0,u.add(a),e=h_.bind(null,e,n,a),n.then(e,e))}function h_(e,n,a){var o=e.pingCache;o!==null&&o.delete(n),e.pingedLanes|=e.suspendedLanes&a,e.warmLanes&=~a,Ze===e&&(Be&a)===a&&(ht===4||ht===3&&(Be&62914560)===Be&&300>it()-vl?(Ge&2)===0&&Ss(e,0):Jf|=a,_s===Be&&(_s=0)),Kn(e)}function Kp(e,n){n===0&&(n=Xi()),e=Ei(e,n),e!==null&&(Rn(e,n),Kn(e))}function d_(e){var n=e.memoizedState,a=0;n!==null&&(a=n.retryLane),Kp(e,a)}function m_(e,n){var a=0;switch(e.tag){case 31:case 13:var o=e.stateNode,u=e.memoizedState;u!==null&&(a=u.retryLane);break;case 19:o=e.stateNode;break;case 22:o=e.stateNode._retryCache;break;default:throw Error(s(314))}o!==null&&o.delete(n),Kp(e,a)}function p_(e,n){return Qs(e,n)}var Al=null,Os=null,ih=!1,jl=!1,sh=!1,Xr=0;function Kn(e){e!==Os&&e.next===null&&(Os===null?Al=Os=e:Os=Os.next=e),jl=!0,ih||(ih=!0,g_())}function Da(e,n){if(!sh&&jl){sh=!0;do for(var a=!1,o=Al;o!==null;){if(e!==0){var u=o.pendingLanes;if(u===0)var h=0;else{var x=o.suspendedLanes,E=o.pingedLanes;h=(1<<31-Lt(42|e)+1)-1,h&=u&~(x&~E),h=h&201326741?h&201326741|1:h?h|2:0}h!==0&&(a=!0,Zp(o,h))}else h=Be,h=yi(o,o===Ze?h:0,o.cancelPendingCommit!==null||o.timeoutHandle!==-1),(h&3)===0||gi(o,h)||(a=!0,Zp(o,h));o=o.next}while(a);sh=!1}}function y_(){Xp()}function Xp(){jl=ih=!1;var e=0;Xr!==0&&j_()&&(e=Xr);for(var n=it(),a=null,o=Al;o!==null;){var u=o.next,h=Jp(o,n);h===0?(o.next=null,a===null?Al=u:a.next=u,u===null&&(Os=a)):(a=o,(e!==0||(h&3)!==0)&&(jl=!0)),o=u}Ot!==0&&Ot!==5||Da(e),Xr!==0&&(Xr=0)}function Jp(e,n){for(var a=e.suspendedLanes,o=e.pingedLanes,u=e.expirationTimes,h=e.pendingLanes&-62914561;0<h;){var x=31-Lt(h),E=1<<x,R=u[x];R===-1?((E&a)===0||(E&o)!==0)&&(u[x]=ea(E,n)):R<=n&&(e.expiredLanes|=E),h&=~E}if(n=Ze,a=Be,a=yi(e,e===n?a:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),o=e.callbackNode,a===0||e===n&&(Fe===2||Fe===9)||e.cancelPendingCommit!==null)return o!==null&&o!==null&&er(o),e.callbackNode=null,e.callbackPriority=0;if((a&3)===0||gi(e,a)){if(n=a&-a,n===e.callbackPriority)return n;switch(o!==null&&er(o),vi(a)){case 2:case 8:a=To;break;case 32:a=Yi;break;case 268435456:a=No;break;default:a=Yi}return o=Qp.bind(null,e),a=Qs(a,o),e.callbackPriority=n,e.callbackNode=a,n}return o!==null&&o!==null&&er(o),e.callbackPriority=2,e.callbackNode=null,2}function Qp(e,n){if(Ot!==0&&Ot!==5)return e.callbackNode=null,e.callbackPriority=0,null;var a=e.callbackNode;if(Ol()&&e.callbackNode!==a)return null;var o=Be;return o=yi(e,e===Ze?o:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),o===0?null:(Mp(e,o,n),Jp(e,it()),e.callbackNode!=null&&e.callbackNode===a?Qp.bind(null,e):null)}function Zp(e,n){if(Ol())return null;Mp(e,n,!0)}function g_(){N_(function(){(Ge&6)!==0?Qs(jo,y_):Xp()})}function ah(){if(Xr===0){var e=us;e===0&&(e=jr,jr<<=1,(jr&261888)===0&&(jr=256)),Xr=e}return Xr}function Wp(e){return e==null||typeof e=="symbol"||typeof e=="boolean"?null:typeof e=="function"?e:qo(""+e)}function ey(e,n){var a=n.ownerDocument.createElement("input");return a.name=n.name,a.value=n.value,e.id&&a.setAttribute("form",e.id),n.parentNode.insertBefore(a,n),e=new FormData(e),a.parentNode.removeChild(a),e}function b_(e,n,a,o,u){if(n==="submit"&&a&&a.stateNode===u){var h=Wp((u[ut]||null).action),x=o.submitter;x&&(n=(n=x[ut]||null)?Wp(n.formAction):x.getAttribute("formAction"),n!==null&&(h=n,x=null));var E=new Uo("action","action",null,o,u);e.push({event:E,listeners:[{instance:null,listener:function(){if(o.defaultPrevented){if(Xr!==0){var R=x?ey(u,x):new FormData(u);Af(a,{pending:!0,data:R,method:u.method,action:h},null,R)}}else typeof h=="function"&&(E.preventDefault(),R=x?ey(u,x):new FormData(u),Af(a,{pending:!0,data:R,method:u.method,action:h},h,R))},currentTarget:u}]})}}for(var oh=0;oh<$u.length;oh++){var lh=$u[oh],v_=lh.toLowerCase(),x_=lh[0].toUpperCase()+lh.slice(1);qn(v_,"on"+x_)}qn(Cm,"onAnimationEnd"),qn(Mm,"onAnimationIteration"),qn(Rm,"onAnimationStart"),qn("dblclick","onDoubleClick"),qn("focusin","onFocus"),qn("focusout","onBlur"),qn(Bx,"onTransitionRun"),qn(Lx,"onTransitionStart"),qn(Px,"onTransitionCancel"),qn(Dm,"onTransitionEnd"),V("onMouseEnter",["mouseout","mouseover"]),V("onMouseLeave",["mouseout","mouseover"]),V("onPointerEnter",["pointerout","pointerover"]),V("onPointerLeave",["pointerout","pointerover"]),se("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),se("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),se("onBeforeInput",["compositionend","keypress","textInput","paste"]),se("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),se("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),se("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var qa="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),__=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(qa));function ty(e,n){n=(n&4)!==0;for(var a=0;a<e.length;a++){var o=e[a],u=o.event;o=o.listeners;e:{var h=void 0;if(n)for(var x=o.length-1;0<=x;x--){var E=o[x],R=E.instance,H=E.currentTarget;if(E=E.listener,R!==h&&u.isPropagationStopped())break e;h=E,u.currentTarget=H;try{h(u)}catch(Q){$o(Q)}u.currentTarget=null,h=R}else for(x=0;x<o.length;x++){if(E=o[x],R=E.instance,H=E.currentTarget,E=E.listener,R!==h&&u.isPropagationStopped())break e;h=E,u.currentTarget=H;try{h(u)}catch(Q){$o(Q)}u.currentTarget=null,h=R}}}}function qe(e,n){var a=n[xi];a===void 0&&(a=n[xi]=new Set);var o=e+"__bubble";a.has(o)||(ny(n,e,2,!1),a.add(o))}function ch(e,n,a){var o=0;n&&(o|=4),ny(a,e,o,n)}var Tl="_reactListening"+Math.random().toString(36).slice(2);function uh(e){if(!e[Tl]){e[Tl]=!0,I.forEach(function(a){a!=="selectionchange"&&(__.has(a)||ch(a,!1,e),ch(a,!0,e))});var n=e.nodeType===9?e:e.ownerDocument;n===null||n[Tl]||(n[Tl]=!0,ch("selectionchange",!1,n))}}function ny(e,n,a,o){switch(Cy(n)){case 2:var u=X_;break;case 8:u=J_;break;default:u=Oh}a=u.bind(null,n,a,e),u=void 0,!Nu||n!=="touchstart"&&n!=="touchmove"&&n!=="wheel"||(u=!0),o?u!==void 0?e.addEventListener(n,a,{capture:!0,passive:u}):e.addEventListener(n,a,!0):u!==void 0?e.addEventListener(n,a,{passive:u}):e.addEventListener(n,a,!1)}function fh(e,n,a,o,u){var h=o;if((n&1)===0&&(n&2)===0&&o!==null)e:for(;;){if(o===null)return;var x=o.tag;if(x===3||x===4){var E=o.stateNode.containerInfo;if(E===u)break;if(x===4)for(x=o.return;x!==null;){var R=x.tag;if((R===3||R===4)&&x.stateNode.containerInfo===u)return;x=x.return}for(;E!==null;){if(x=O(E),x===null)return;if(R=x.tag,R===5||R===6||R===26||R===27){o=h=x;continue e}E=E.parentNode}}o=o.return}om(function(){var H=h,Q=ju(a),ne=[];e:{var F=qm.get(e);if(F!==void 0){var K=Uo,ye=e;switch(e){case"keypress":if(Lo(a)===0)break e;case"keydown":case"keyup":K=mx;break;case"focusin":ye="focus",K=Ru;break;case"focusout":ye="blur",K=Ru;break;case"beforeblur":case"afterblur":K=Ru;break;case"click":if(a.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":K=um;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":K=nx;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":K=gx;break;case Cm:case Mm:case Rm:K=sx;break;case Dm:K=vx;break;case"scroll":case"scrollend":K=ex;break;case"wheel":K=_x;break;case"copy":case"cut":case"paste":K=ox;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":K=hm;break;case"toggle":case"beforetoggle":K=Sx}var Ee=(n&4)!==0,Je=!Ee&&(e==="scroll"||e==="scrollend"),z=Ee?F!==null?F+"Capture":null:F;Ee=[];for(var q=H,$;q!==null;){var Z=q;if($=Z.stateNode,Z=Z.tag,Z!==5&&Z!==26&&Z!==27||$===null||z===null||(Z=ra(q,z),Z!=null&&Ee.push(Ba(q,Z,$))),Je)break;q=q.return}0<Ee.length&&(F=new K(F,ye,null,a,Q),ne.push({event:F,listeners:Ee}))}}if((n&7)===0){e:{if(F=e==="mouseover"||e==="pointerover",K=e==="mouseout"||e==="pointerout",F&&a!==Au&&(ye=a.relatedTarget||a.fromElement)&&(O(ye)||ye[Wt]))break e;if((K||F)&&(F=Q.window===Q?Q:(F=Q.ownerDocument)?F.defaultView||F.parentWindow:window,K?(ye=a.relatedTarget||a.toElement,K=H,ye=ye?O(ye):null,ye!==null&&(Je=c(ye),Ee=ye.tag,ye!==Je||Ee!==5&&Ee!==27&&Ee!==6)&&(ye=null)):(K=null,ye=H),K!==ye)){if(Ee=um,Z="onMouseLeave",z="onMouseEnter",q="mouse",(e==="pointerout"||e==="pointerover")&&(Ee=hm,Z="onPointerLeave",z="onPointerEnter",q="pointer"),Je=K==null?F:T(K),$=ye==null?F:T(ye),F=new Ee(Z,q+"leave",K,a,Q),F.target=Je,F.relatedTarget=$,Z=null,O(Q)===H&&(Ee=new Ee(z,q+"enter",ye,a,Q),Ee.target=$,Ee.relatedTarget=Je,Z=Ee),Je=Z,K&&ye)t:{for(Ee=w_,z=K,q=ye,$=0,Z=z;Z;Z=Ee(Z))$++;Z=0;for(var ve=q;ve;ve=Ee(ve))Z++;for(;0<$-Z;)z=Ee(z),$--;for(;0<Z-$;)q=Ee(q),Z--;for(;$--;){if(z===q||q!==null&&z===q.alternate){Ee=z;break t}z=Ee(z),q=Ee(q)}Ee=null}else Ee=null;K!==null&&ry(ne,F,K,Ee,!1),ye!==null&&Je!==null&&ry(ne,Je,ye,Ee,!0)}}e:{if(F=H?T(H):window,K=F.nodeName&&F.nodeName.toLowerCase(),K==="select"||K==="input"&&F.type==="file")var $e=xm;else if(bm(F))if(_m)$e=Rx;else{$e=Cx;var ge=kx}else K=F.nodeName,!K||K.toLowerCase()!=="input"||F.type!=="checkbox"&&F.type!=="radio"?H&&Ou(H.elementType)&&($e=xm):$e=Mx;if($e&&($e=$e(e,H))){vm(ne,$e,a,Q);break e}ge&&ge(e,F,H),e==="focusout"&&H&&F.type==="number"&&H.memoizedProps.value!=null&&Eu(F,"number",F.value)}switch(ge=H?T(H):window,e){case"focusin":(bm(ge)||ge.contentEditable==="true")&&(ns=ge,Uu=H,fa=null);break;case"focusout":fa=Uu=ns=null;break;case"mousedown":zu=!0;break;case"contextmenu":case"mouseup":case"dragend":zu=!1,Nm(ne,a,Q);break;case"selectionchange":if(qx)break;case"keydown":case"keyup":Nm(ne,a,Q)}var Me;if(qu)e:{switch(e){case"compositionstart":var Le="onCompositionStart";break e;case"compositionend":Le="onCompositionEnd";break e;case"compositionupdate":Le="onCompositionUpdate";break e}Le=void 0}else ts?ym(e,a)&&(Le="onCompositionEnd"):e==="keydown"&&a.keyCode===229&&(Le="onCompositionStart");Le&&(dm&&a.locale!=="ko"&&(ts||Le!=="onCompositionStart"?Le==="onCompositionEnd"&&ts&&(Me=lm()):(Rr=Q,ku="value"in Rr?Rr.value:Rr.textContent,ts=!0)),ge=Nl(H,Le),0<ge.length&&(Le=new fm(Le,e,null,a,Q),ne.push({event:Le,listeners:ge}),Me?Le.data=Me:(Me=gm(a),Me!==null&&(Le.data=Me)))),(Me=Ox?Ax(e,a):jx(e,a))&&(Le=Nl(H,"onBeforeInput"),0<Le.length&&(ge=new fm("onBeforeInput","beforeinput",null,a,Q),ne.push({event:ge,listeners:Le}),ge.data=Me)),b_(ne,e,H,a,Q)}ty(ne,n)})}function Ba(e,n,a){return{instance:e,listener:n,currentTarget:a}}function Nl(e,n){for(var a=n+"Capture",o=[];e!==null;){var u=e,h=u.stateNode;if(u=u.tag,u!==5&&u!==26&&u!==27||h===null||(u=ra(e,a),u!=null&&o.unshift(Ba(e,u,h)),u=ra(e,n),u!=null&&o.push(Ba(e,u,h))),e.tag===3)return o;e=e.return}return[]}function w_(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5&&e.tag!==27);return e||null}function ry(e,n,a,o,u){for(var h=n._reactName,x=[];a!==null&&a!==o;){var E=a,R=E.alternate,H=E.stateNode;if(E=E.tag,R!==null&&R===o)break;E!==5&&E!==26&&E!==27||H===null||(R=H,u?(H=ra(a,h),H!=null&&x.unshift(Ba(a,H,R))):u||(H=ra(a,h),H!=null&&x.push(Ba(a,H,R)))),a=a.return}x.length!==0&&e.push({event:n,listeners:x})}var S_=/\r\n?/g,E_=/\u0000|\uFFFD/g;function iy(e){return(typeof e=="string"?e:""+e).replace(S_,`
|
|
26
|
+
`).replace(E_,"")}function sy(e,n){return n=iy(n),iy(e)===n}function Xe(e,n,a,o,u,h){switch(a){case"children":typeof o=="string"?n==="body"||n==="textarea"&&o===""||Zi(e,o):(typeof o=="number"||typeof o=="bigint")&&n!=="body"&&Zi(e,""+o);break;case"className":Dn(e,"class",o);break;case"tabIndex":Dn(e,"tabindex",o);break;case"dir":case"role":case"viewBox":case"width":case"height":Dn(e,a,o);break;case"style":sm(e,o,h);break;case"data":if(n!=="object"){Dn(e,"data",o);break}case"src":case"href":if(o===""&&(n!=="a"||a!=="href")){e.removeAttribute(a);break}if(o==null||typeof o=="function"||typeof o=="symbol"||typeof o=="boolean"){e.removeAttribute(a);break}o=qo(""+o),e.setAttribute(a,o);break;case"action":case"formAction":if(typeof o=="function"){e.setAttribute(a,"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')");break}else typeof h=="function"&&(a==="formAction"?(n!=="input"&&Xe(e,n,"name",u.name,u,null),Xe(e,n,"formEncType",u.formEncType,u,null),Xe(e,n,"formMethod",u.formMethod,u,null),Xe(e,n,"formTarget",u.formTarget,u,null)):(Xe(e,n,"encType",u.encType,u,null),Xe(e,n,"method",u.method,u,null),Xe(e,n,"target",u.target,u,null)));if(o==null||typeof o=="symbol"||typeof o=="boolean"){e.removeAttribute(a);break}o=qo(""+o),e.setAttribute(a,o);break;case"onClick":o!=null&&(e.onclick=ir);break;case"onScroll":o!=null&&qe("scroll",e);break;case"onScrollEnd":o!=null&&qe("scrollend",e);break;case"dangerouslySetInnerHTML":if(o!=null){if(typeof o!="object"||!("__html"in o))throw Error(s(61));if(a=o.__html,a!=null){if(u.children!=null)throw Error(s(60));e.innerHTML=a}}break;case"multiple":e.multiple=o&&typeof o!="function"&&typeof o!="symbol";break;case"muted":e.muted=o&&typeof o!="function"&&typeof o!="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(o==null||typeof o=="function"||typeof o=="boolean"||typeof o=="symbol"){e.removeAttribute("xlink:href");break}a=qo(""+o),e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",a);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":o!=null&&typeof o!="function"&&typeof o!="symbol"?e.setAttribute(a,""+o):e.removeAttribute(a);break;case"inert":case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":o&&typeof o!="function"&&typeof o!="symbol"?e.setAttribute(a,""):e.removeAttribute(a);break;case"capture":case"download":o===!0?e.setAttribute(a,""):o!==!1&&o!=null&&typeof o!="function"&&typeof o!="symbol"?e.setAttribute(a,o):e.removeAttribute(a);break;case"cols":case"rows":case"size":case"span":o!=null&&typeof o!="function"&&typeof o!="symbol"&&!isNaN(o)&&1<=o?e.setAttribute(a,o):e.removeAttribute(a);break;case"rowSpan":case"start":o==null||typeof o=="function"||typeof o=="symbol"||isNaN(o)?e.removeAttribute(a):e.setAttribute(a,o);break;case"popover":qe("beforetoggle",e),qe("toggle",e),Pt(e,"popover",o);break;case"xlinkActuate":rr(e,"http://www.w3.org/1999/xlink","xlink:actuate",o);break;case"xlinkArcrole":rr(e,"http://www.w3.org/1999/xlink","xlink:arcrole",o);break;case"xlinkRole":rr(e,"http://www.w3.org/1999/xlink","xlink:role",o);break;case"xlinkShow":rr(e,"http://www.w3.org/1999/xlink","xlink:show",o);break;case"xlinkTitle":rr(e,"http://www.w3.org/1999/xlink","xlink:title",o);break;case"xlinkType":rr(e,"http://www.w3.org/1999/xlink","xlink:type",o);break;case"xmlBase":rr(e,"http://www.w3.org/XML/1998/namespace","xml:base",o);break;case"xmlLang":rr(e,"http://www.w3.org/XML/1998/namespace","xml:lang",o);break;case"xmlSpace":rr(e,"http://www.w3.org/XML/1998/namespace","xml:space",o);break;case"is":Pt(e,"is",o);break;case"innerText":case"textContent":break;default:(!(2<a.length)||a[0]!=="o"&&a[0]!=="O"||a[1]!=="n"&&a[1]!=="N")&&(a=Zv.get(a)||a,Pt(e,a,o))}}function hh(e,n,a,o,u,h){switch(a){case"style":sm(e,o,h);break;case"dangerouslySetInnerHTML":if(o!=null){if(typeof o!="object"||!("__html"in o))throw Error(s(61));if(a=o.__html,a!=null){if(u.children!=null)throw Error(s(60));e.innerHTML=a}}break;case"children":typeof o=="string"?Zi(e,o):(typeof o=="number"||typeof o=="bigint")&&Zi(e,""+o);break;case"onScroll":o!=null&&qe("scroll",e);break;case"onScrollEnd":o!=null&&qe("scrollend",e);break;case"onClick":o!=null&&(e.onclick=ir);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(!te.hasOwnProperty(a))e:{if(a[0]==="o"&&a[1]==="n"&&(u=a.endsWith("Capture"),n=a.slice(2,u?a.length-7:void 0),h=e[ut]||null,h=h!=null?h[a]:null,typeof h=="function"&&e.removeEventListener(n,h,u),typeof o=="function")){typeof h!="function"&&h!==null&&(a in e?e[a]=null:e.hasAttribute(a)&&e.removeAttribute(a)),e.addEventListener(n,o,u);break e}a in e?e[a]=o:o===!0?e.setAttribute(a,""):Pt(e,a,o)}}}function Dt(e,n,a){switch(n){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":qe("error",e),qe("load",e);var o=!1,u=!1,h;for(h in a)if(a.hasOwnProperty(h)){var x=a[h];if(x!=null)switch(h){case"src":o=!0;break;case"srcSet":u=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(s(137,n));default:Xe(e,n,h,x,a,null)}}u&&Xe(e,n,"srcSet",a.srcSet,a,null),o&&Xe(e,n,"src",a.src,a,null);return;case"input":qe("invalid",e);var E=h=x=u=null,R=null,H=null;for(o in a)if(a.hasOwnProperty(o)){var Q=a[o];if(Q!=null)switch(o){case"name":u=Q;break;case"type":x=Q;break;case"checked":R=Q;break;case"defaultChecked":H=Q;break;case"value":h=Q;break;case"defaultValue":E=Q;break;case"children":case"dangerouslySetInnerHTML":if(Q!=null)throw Error(s(137,n));break;default:Xe(e,n,o,Q,a,null)}}tm(e,h,E,R,H,x,u,!1);return;case"select":qe("invalid",e),o=x=h=null;for(u in a)if(a.hasOwnProperty(u)&&(E=a[u],E!=null))switch(u){case"value":h=E;break;case"defaultValue":x=E;break;case"multiple":o=E;default:Xe(e,n,u,E,a,null)}n=h,a=x,e.multiple=!!o,n!=null?Qi(e,!!o,n,!1):a!=null&&Qi(e,!!o,a,!0);return;case"textarea":qe("invalid",e),h=u=o=null;for(x in a)if(a.hasOwnProperty(x)&&(E=a[x],E!=null))switch(x){case"value":o=E;break;case"defaultValue":u=E;break;case"children":h=E;break;case"dangerouslySetInnerHTML":if(E!=null)throw Error(s(91));break;default:Xe(e,n,x,E,a,null)}rm(e,o,u,h);return;case"option":for(R in a)if(a.hasOwnProperty(R)&&(o=a[R],o!=null))switch(R){case"selected":e.selected=o&&typeof o!="function"&&typeof o!="symbol";break;default:Xe(e,n,R,o,a,null)}return;case"dialog":qe("beforetoggle",e),qe("toggle",e),qe("cancel",e),qe("close",e);break;case"iframe":case"object":qe("load",e);break;case"video":case"audio":for(o=0;o<qa.length;o++)qe(qa[o],e);break;case"image":qe("error",e),qe("load",e);break;case"details":qe("toggle",e);break;case"embed":case"source":case"link":qe("error",e),qe("load",e);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(H in a)if(a.hasOwnProperty(H)&&(o=a[H],o!=null))switch(H){case"children":case"dangerouslySetInnerHTML":throw Error(s(137,n));default:Xe(e,n,H,o,a,null)}return;default:if(Ou(n)){for(Q in a)a.hasOwnProperty(Q)&&(o=a[Q],o!==void 0&&hh(e,n,Q,o,a,void 0));return}}for(E in a)a.hasOwnProperty(E)&&(o=a[E],o!=null&&Xe(e,n,E,o,a,null))}function O_(e,n,a,o){switch(n){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var u=null,h=null,x=null,E=null,R=null,H=null,Q=null;for(K in a){var ne=a[K];if(a.hasOwnProperty(K)&&ne!=null)switch(K){case"checked":break;case"value":break;case"defaultValue":R=ne;default:o.hasOwnProperty(K)||Xe(e,n,K,null,o,ne)}}for(var F in o){var K=o[F];if(ne=a[F],o.hasOwnProperty(F)&&(K!=null||ne!=null))switch(F){case"type":h=K;break;case"name":u=K;break;case"checked":H=K;break;case"defaultChecked":Q=K;break;case"value":x=K;break;case"defaultValue":E=K;break;case"children":case"dangerouslySetInnerHTML":if(K!=null)throw Error(s(137,n));break;default:K!==ne&&Xe(e,n,F,K,o,ne)}}Su(e,x,E,R,H,Q,h,u);return;case"select":K=x=E=F=null;for(h in a)if(R=a[h],a.hasOwnProperty(h)&&R!=null)switch(h){case"value":break;case"multiple":K=R;default:o.hasOwnProperty(h)||Xe(e,n,h,null,o,R)}for(u in o)if(h=o[u],R=a[u],o.hasOwnProperty(u)&&(h!=null||R!=null))switch(u){case"value":F=h;break;case"defaultValue":E=h;break;case"multiple":x=h;default:h!==R&&Xe(e,n,u,h,o,R)}n=E,a=x,o=K,F!=null?Qi(e,!!a,F,!1):!!o!=!!a&&(n!=null?Qi(e,!!a,n,!0):Qi(e,!!a,a?[]:"",!1));return;case"textarea":K=F=null;for(E in a)if(u=a[E],a.hasOwnProperty(E)&&u!=null&&!o.hasOwnProperty(E))switch(E){case"value":break;case"children":break;default:Xe(e,n,E,null,o,u)}for(x in o)if(u=o[x],h=a[x],o.hasOwnProperty(x)&&(u!=null||h!=null))switch(x){case"value":F=u;break;case"defaultValue":K=u;break;case"children":break;case"dangerouslySetInnerHTML":if(u!=null)throw Error(s(91));break;default:u!==h&&Xe(e,n,x,u,o,h)}nm(e,F,K);return;case"option":for(var ye in a)if(F=a[ye],a.hasOwnProperty(ye)&&F!=null&&!o.hasOwnProperty(ye))switch(ye){case"selected":e.selected=!1;break;default:Xe(e,n,ye,null,o,F)}for(R in o)if(F=o[R],K=a[R],o.hasOwnProperty(R)&&F!==K&&(F!=null||K!=null))switch(R){case"selected":e.selected=F&&typeof F!="function"&&typeof F!="symbol";break;default:Xe(e,n,R,F,o,K)}return;case"img":case"link":case"area":case"base":case"br":case"col":case"embed":case"hr":case"keygen":case"meta":case"param":case"source":case"track":case"wbr":case"menuitem":for(var Ee in a)F=a[Ee],a.hasOwnProperty(Ee)&&F!=null&&!o.hasOwnProperty(Ee)&&Xe(e,n,Ee,null,o,F);for(H in o)if(F=o[H],K=a[H],o.hasOwnProperty(H)&&F!==K&&(F!=null||K!=null))switch(H){case"children":case"dangerouslySetInnerHTML":if(F!=null)throw Error(s(137,n));break;default:Xe(e,n,H,F,o,K)}return;default:if(Ou(n)){for(var Je in a)F=a[Je],a.hasOwnProperty(Je)&&F!==void 0&&!o.hasOwnProperty(Je)&&hh(e,n,Je,void 0,o,F);for(Q in o)F=o[Q],K=a[Q],!o.hasOwnProperty(Q)||F===K||F===void 0&&K===void 0||hh(e,n,Q,F,o,K);return}}for(var z in a)F=a[z],a.hasOwnProperty(z)&&F!=null&&!o.hasOwnProperty(z)&&Xe(e,n,z,null,o,F);for(ne in o)F=o[ne],K=a[ne],!o.hasOwnProperty(ne)||F===K||F==null&&K==null||Xe(e,n,ne,F,o,K)}function ay(e){switch(e){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function A_(){if(typeof performance.getEntriesByType=="function"){for(var e=0,n=0,a=performance.getEntriesByType("resource"),o=0;o<a.length;o++){var u=a[o],h=u.transferSize,x=u.initiatorType,E=u.duration;if(h&&E&&ay(x)){for(x=0,E=u.responseEnd,o+=1;o<a.length;o++){var R=a[o],H=R.startTime;if(H>E)break;var Q=R.transferSize,ne=R.initiatorType;Q&&ay(ne)&&(R=R.responseEnd,x+=Q*(R<E?1:(E-H)/(R-H)))}if(--o,n+=8*(h+x)/(u.duration/1e3),e++,10<e)break}}if(0<e)return n/e/1e6}return navigator.connection&&(e=navigator.connection.downlink,typeof e=="number")?e:5}var dh=null,mh=null;function kl(e){return e.nodeType===9?e:e.ownerDocument}function oy(e){switch(e){case"http://www.w3.org/2000/svg":return 1;case"http://www.w3.org/1998/Math/MathML":return 2;default:return 0}}function ly(e,n){if(e===0)switch(n){case"svg":return 1;case"math":return 2;default:return 0}return e===1&&n==="foreignObject"?0:e}function ph(e,n){return e==="textarea"||e==="noscript"||typeof n.children=="string"||typeof n.children=="number"||typeof n.children=="bigint"||typeof n.dangerouslySetInnerHTML=="object"&&n.dangerouslySetInnerHTML!==null&&n.dangerouslySetInnerHTML.__html!=null}var yh=null;function j_(){var e=window.event;return e&&e.type==="popstate"?e===yh?!1:(yh=e,!0):(yh=null,!1)}var cy=typeof setTimeout=="function"?setTimeout:void 0,T_=typeof clearTimeout=="function"?clearTimeout:void 0,uy=typeof Promise=="function"?Promise:void 0,N_=typeof queueMicrotask=="function"?queueMicrotask:typeof uy<"u"?function(e){return uy.resolve(null).then(e).catch(k_)}:cy;function k_(e){setTimeout(function(){throw e})}function Jr(e){return e==="head"}function fy(e,n){var a=n,o=0;do{var u=a.nextSibling;if(e.removeChild(a),u&&u.nodeType===8)if(a=u.data,a==="/$"||a==="/&"){if(o===0){e.removeChild(u),Ns(n);return}o--}else if(a==="$"||a==="$?"||a==="$~"||a==="$!"||a==="&")o++;else if(a==="html")La(e.ownerDocument.documentElement);else if(a==="head"){a=e.ownerDocument.head,La(a);for(var h=a.firstChild;h;){var x=h.nextSibling,E=h.nodeName;h[Et]||E==="SCRIPT"||E==="STYLE"||E==="LINK"&&h.rel.toLowerCase()==="stylesheet"||a.removeChild(h),h=x}}else a==="body"&&La(e.ownerDocument.body);a=u}while(a);Ns(n)}function hy(e,n){var a=e;e=0;do{var o=a.nextSibling;if(a.nodeType===1?n?(a._stashedDisplay=a.style.display,a.style.display="none"):(a.style.display=a._stashedDisplay||"",a.getAttribute("style")===""&&a.removeAttribute("style")):a.nodeType===3&&(n?(a._stashedText=a.nodeValue,a.nodeValue=""):a.nodeValue=a._stashedText||""),o&&o.nodeType===8)if(a=o.data,a==="/$"){if(e===0)break;e--}else a!=="$"&&a!=="$?"&&a!=="$~"&&a!=="$!"||e++;a=o}while(a)}function gh(e){var n=e.firstChild;for(n&&n.nodeType===10&&(n=n.nextSibling);n;){var a=n;switch(n=n.nextSibling,a.nodeName){case"HTML":case"HEAD":case"BODY":gh(a),Ji(a);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(a.rel.toLowerCase()==="stylesheet")continue}e.removeChild(a)}}function C_(e,n,a,o){for(;e.nodeType===1;){var u=a;if(e.nodeName.toLowerCase()!==n.toLowerCase()){if(!o&&(e.nodeName!=="INPUT"||e.type!=="hidden"))break}else if(o){if(!e[Et])switch(n){case"meta":if(!e.hasAttribute("itemprop"))break;return e;case"link":if(h=e.getAttribute("rel"),h==="stylesheet"&&e.hasAttribute("data-precedence"))break;if(h!==u.rel||e.getAttribute("href")!==(u.href==null||u.href===""?null:u.href)||e.getAttribute("crossorigin")!==(u.crossOrigin==null?null:u.crossOrigin)||e.getAttribute("title")!==(u.title==null?null:u.title))break;return e;case"style":if(e.hasAttribute("data-precedence"))break;return e;case"script":if(h=e.getAttribute("src"),(h!==(u.src==null?null:u.src)||e.getAttribute("type")!==(u.type==null?null:u.type)||e.getAttribute("crossorigin")!==(u.crossOrigin==null?null:u.crossOrigin))&&h&&e.hasAttribute("async")&&!e.hasAttribute("itemprop"))break;return e;default:return e}}else if(n==="input"&&e.type==="hidden"){var h=u.name==null?null:""+u.name;if(u.type==="hidden"&&e.getAttribute("name")===h)return e}else return e;if(e=jn(e.nextSibling),e===null)break}return null}function M_(e,n,a){if(n==="")return null;for(;e.nodeType!==3;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!a||(e=jn(e.nextSibling),e===null))return null;return e}function dy(e,n){for(;e.nodeType!==8;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!n||(e=jn(e.nextSibling),e===null))return null;return e}function bh(e){return e.data==="$?"||e.data==="$~"}function vh(e){return e.data==="$!"||e.data==="$?"&&e.ownerDocument.readyState!=="loading"}function R_(e,n){var a=e.ownerDocument;if(e.data==="$~")e._reactRetry=n;else if(e.data!=="$?"||a.readyState!=="loading")n();else{var o=function(){n(),a.removeEventListener("DOMContentLoaded",o)};a.addEventListener("DOMContentLoaded",o),e._reactRetry=o}}function jn(e){for(;e!=null;e=e.nextSibling){var n=e.nodeType;if(n===1||n===3)break;if(n===8){if(n=e.data,n==="$"||n==="$!"||n==="$?"||n==="$~"||n==="&"||n==="F!"||n==="F")break;if(n==="/$"||n==="/&")return null}}return e}var xh=null;function my(e){e=e.nextSibling;for(var n=0;e;){if(e.nodeType===8){var a=e.data;if(a==="/$"||a==="/&"){if(n===0)return jn(e.nextSibling);n--}else a!=="$"&&a!=="$!"&&a!=="$?"&&a!=="$~"&&a!=="&"||n++}e=e.nextSibling}return null}function py(e){e=e.previousSibling;for(var n=0;e;){if(e.nodeType===8){var a=e.data;if(a==="$"||a==="$!"||a==="$?"||a==="$~"||a==="&"){if(n===0)return e;n--}else a!=="/$"&&a!=="/&"||n++}e=e.previousSibling}return null}function yy(e,n,a){switch(n=kl(a),e){case"html":if(e=n.documentElement,!e)throw Error(s(452));return e;case"head":if(e=n.head,!e)throw Error(s(453));return e;case"body":if(e=n.body,!e)throw Error(s(454));return e;default:throw Error(s(451))}}function La(e){for(var n=e.attributes;n.length;)e.removeAttributeNode(n[0]);Ji(e)}var Tn=new Map,gy=new Set;function Cl(e){return typeof e.getRootNode=="function"?e.getRootNode():e.nodeType===9?e:e.ownerDocument}var xr=ae.d;ae.d={f:D_,r:q_,D:B_,C:L_,L:P_,m:U_,X:I_,S:z_,M:$_};function D_(){var e=xr.f(),n=wl();return e||n}function q_(e){var n=N(e);n!==null&&n.tag===5&&n.type==="form"?D0(n):xr.r(e)}var As=typeof document>"u"?null:document;function by(e,n,a){var o=As;if(o&&typeof n=="string"&&n){var u=xn(n);u='link[rel="'+e+'"][href="'+u+'"]',typeof a=="string"&&(u+='[crossorigin="'+a+'"]'),gy.has(u)||(gy.add(u),e={rel:e,crossOrigin:a,href:n},o.querySelector(u)===null&&(n=o.createElement("link"),Dt(n,"link",e),D(n),o.head.appendChild(n)))}}function B_(e){xr.D(e),by("dns-prefetch",e,null)}function L_(e,n){xr.C(e,n),by("preconnect",e,n)}function P_(e,n,a){xr.L(e,n,a);var o=As;if(o&&e&&n){var u='link[rel="preload"][as="'+xn(n)+'"]';n==="image"&&a&&a.imageSrcSet?(u+='[imagesrcset="'+xn(a.imageSrcSet)+'"]',typeof a.imageSizes=="string"&&(u+='[imagesizes="'+xn(a.imageSizes)+'"]')):u+='[href="'+xn(e)+'"]';var h=u;switch(n){case"style":h=js(e);break;case"script":h=Ts(e)}Tn.has(h)||(e=b({rel:"preload",href:n==="image"&&a&&a.imageSrcSet?void 0:e,as:n},a),Tn.set(h,e),o.querySelector(u)!==null||n==="style"&&o.querySelector(Pa(h))||n==="script"&&o.querySelector(Ua(h))||(n=o.createElement("link"),Dt(n,"link",e),D(n),o.head.appendChild(n)))}}function U_(e,n){xr.m(e,n);var a=As;if(a&&e){var o=n&&typeof n.as=="string"?n.as:"script",u='link[rel="modulepreload"][as="'+xn(o)+'"][href="'+xn(e)+'"]',h=u;switch(o){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":h=Ts(e)}if(!Tn.has(h)&&(e=b({rel:"modulepreload",href:e},n),Tn.set(h,e),a.querySelector(u)===null)){switch(o){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(a.querySelector(Ua(h)))return}o=a.createElement("link"),Dt(o,"link",e),D(o),a.head.appendChild(o)}}}function z_(e,n,a){xr.S(e,n,a);var o=As;if(o&&e){var u=k(o).hoistableStyles,h=js(e);n=n||"default";var x=u.get(h);if(!x){var E={loading:0,preload:null};if(x=o.querySelector(Pa(h)))E.loading=5;else{e=b({rel:"stylesheet",href:e,"data-precedence":n},a),(a=Tn.get(h))&&_h(e,a);var R=x=o.createElement("link");D(R),Dt(R,"link",e),R._p=new Promise(function(H,Q){R.onload=H,R.onerror=Q}),R.addEventListener("load",function(){E.loading|=1}),R.addEventListener("error",function(){E.loading|=2}),E.loading|=4,Ml(x,n,o)}x={type:"stylesheet",instance:x,count:1,state:E},u.set(h,x)}}}function I_(e,n){xr.X(e,n);var a=As;if(a&&e){var o=k(a).hoistableScripts,u=Ts(e),h=o.get(u);h||(h=a.querySelector(Ua(u)),h||(e=b({src:e,async:!0},n),(n=Tn.get(u))&&wh(e,n),h=a.createElement("script"),D(h),Dt(h,"link",e),a.head.appendChild(h)),h={type:"script",instance:h,count:1,state:null},o.set(u,h))}}function $_(e,n){xr.M(e,n);var a=As;if(a&&e){var o=k(a).hoistableScripts,u=Ts(e),h=o.get(u);h||(h=a.querySelector(Ua(u)),h||(e=b({src:e,async:!0,type:"module"},n),(n=Tn.get(u))&&wh(e,n),h=a.createElement("script"),D(h),Dt(h,"link",e),a.head.appendChild(h)),h={type:"script",instance:h,count:1,state:null},o.set(u,h))}}function vy(e,n,a,o){var u=(u=ct.current)?Cl(u):null;if(!u)throw Error(s(446));switch(e){case"meta":case"title":return null;case"style":return typeof a.precedence=="string"&&typeof a.href=="string"?(n=js(a.href),a=k(u).hoistableStyles,o=a.get(n),o||(o={type:"style",instance:null,count:0,state:null},a.set(n,o)),o):{type:"void",instance:null,count:0,state:null};case"link":if(a.rel==="stylesheet"&&typeof a.href=="string"&&typeof a.precedence=="string"){e=js(a.href);var h=k(u).hoistableStyles,x=h.get(e);if(x||(u=u.ownerDocument||u,x={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},h.set(e,x),(h=u.querySelector(Pa(e)))&&!h._p&&(x.instance=h,x.state.loading=5),Tn.has(e)||(a={rel:"preload",as:"style",href:a.href,crossOrigin:a.crossOrigin,integrity:a.integrity,media:a.media,hrefLang:a.hrefLang,referrerPolicy:a.referrerPolicy},Tn.set(e,a),h||H_(u,e,a,x.state))),n&&o===null)throw Error(s(528,""));return x}if(n&&o!==null)throw Error(s(529,""));return null;case"script":return n=a.async,a=a.src,typeof a=="string"&&n&&typeof n!="function"&&typeof n!="symbol"?(n=Ts(a),a=k(u).hoistableScripts,o=a.get(n),o||(o={type:"script",instance:null,count:0,state:null},a.set(n,o)),o):{type:"void",instance:null,count:0,state:null};default:throw Error(s(444,e))}}function js(e){return'href="'+xn(e)+'"'}function Pa(e){return'link[rel="stylesheet"]['+e+"]"}function xy(e){return b({},e,{"data-precedence":e.precedence,precedence:null})}function H_(e,n,a,o){e.querySelector('link[rel="preload"][as="style"]['+n+"]")?o.loading=1:(n=e.createElement("link"),o.preload=n,n.addEventListener("load",function(){return o.loading|=1}),n.addEventListener("error",function(){return o.loading|=2}),Dt(n,"link",a),D(n),e.head.appendChild(n))}function Ts(e){return'[src="'+xn(e)+'"]'}function Ua(e){return"script[async]"+e}function _y(e,n,a){if(n.count++,n.instance===null)switch(n.type){case"style":var o=e.querySelector('style[data-href~="'+xn(a.href)+'"]');if(o)return n.instance=o,D(o),o;var u=b({},a,{"data-href":a.href,"data-precedence":a.precedence,href:null,precedence:null});return o=(e.ownerDocument||e).createElement("style"),D(o),Dt(o,"style",u),Ml(o,a.precedence,e),n.instance=o;case"stylesheet":u=js(a.href);var h=e.querySelector(Pa(u));if(h)return n.state.loading|=4,n.instance=h,D(h),h;o=xy(a),(u=Tn.get(u))&&_h(o,u),h=(e.ownerDocument||e).createElement("link"),D(h);var x=h;return x._p=new Promise(function(E,R){x.onload=E,x.onerror=R}),Dt(h,"link",o),n.state.loading|=4,Ml(h,a.precedence,e),n.instance=h;case"script":return h=Ts(a.src),(u=e.querySelector(Ua(h)))?(n.instance=u,D(u),u):(o=a,(u=Tn.get(h))&&(o=b({},a),wh(o,u)),e=e.ownerDocument||e,u=e.createElement("script"),D(u),Dt(u,"link",o),e.head.appendChild(u),n.instance=u);case"void":return null;default:throw Error(s(443,n.type))}else n.type==="stylesheet"&&(n.state.loading&4)===0&&(o=n.instance,n.state.loading|=4,Ml(o,a.precedence,e));return n.instance}function Ml(e,n,a){for(var o=a.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),u=o.length?o[o.length-1]:null,h=u,x=0;x<o.length;x++){var E=o[x];if(E.dataset.precedence===n)h=E;else if(h!==u)break}h?h.parentNode.insertBefore(e,h.nextSibling):(n=a.nodeType===9?a.head:a,n.insertBefore(e,n.firstChild))}function _h(e,n){e.crossOrigin==null&&(e.crossOrigin=n.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=n.referrerPolicy),e.title==null&&(e.title=n.title)}function wh(e,n){e.crossOrigin==null&&(e.crossOrigin=n.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=n.referrerPolicy),e.integrity==null&&(e.integrity=n.integrity)}var Rl=null;function wy(e,n,a){if(Rl===null){var o=new Map,u=Rl=new Map;u.set(a,o)}else u=Rl,o=u.get(a),o||(o=new Map,u.set(a,o));if(o.has(e))return o;for(o.set(e,null),a=a.getElementsByTagName(e),u=0;u<a.length;u++){var h=a[u];if(!(h[Et]||h[Qe]||e==="link"&&h.getAttribute("rel")==="stylesheet")&&h.namespaceURI!=="http://www.w3.org/2000/svg"){var x=h.getAttribute(n)||"";x=e+x;var E=o.get(x);E?E.push(h):o.set(x,[h])}}return o}function Sy(e,n,a){e=e.ownerDocument||e,e.head.insertBefore(a,n==="title"?e.querySelector("head > title"):null)}function G_(e,n,a){if(a===1||n.itemProp!=null)return!1;switch(e){case"meta":case"title":return!0;case"style":if(typeof n.precedence!="string"||typeof n.href!="string"||n.href==="")break;return!0;case"link":if(typeof n.rel!="string"||typeof n.href!="string"||n.href===""||n.onLoad||n.onError)break;switch(n.rel){case"stylesheet":return e=n.disabled,typeof n.precedence=="string"&&e==null;default:return!0}case"script":if(n.async&&typeof n.async!="function"&&typeof n.async!="symbol"&&!n.onLoad&&!n.onError&&n.src&&typeof n.src=="string")return!0}return!1}function Ey(e){return!(e.type==="stylesheet"&&(e.state.loading&3)===0)}function F_(e,n,a,o){if(a.type==="stylesheet"&&(typeof o.media!="string"||matchMedia(o.media).matches!==!1)&&(a.state.loading&4)===0){if(a.instance===null){var u=js(o.href),h=n.querySelector(Pa(u));if(h){n=h._p,n!==null&&typeof n=="object"&&typeof n.then=="function"&&(e.count++,e=Dl.bind(e),n.then(e,e)),a.state.loading|=4,a.instance=h,D(h);return}h=n.ownerDocument||n,o=xy(o),(u=Tn.get(u))&&_h(o,u),h=h.createElement("link"),D(h);var x=h;x._p=new Promise(function(E,R){x.onload=E,x.onerror=R}),Dt(h,"link",o),a.instance=h}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(a,n),(n=a.state.preload)&&(a.state.loading&3)===0&&(e.count++,a=Dl.bind(e),n.addEventListener("load",a),n.addEventListener("error",a))}}var Sh=0;function V_(e,n){return e.stylesheets&&e.count===0&&Bl(e,e.stylesheets),0<e.count||0<e.imgCount?function(a){var o=setTimeout(function(){if(e.stylesheets&&Bl(e,e.stylesheets),e.unsuspend){var h=e.unsuspend;e.unsuspend=null,h()}},6e4+n);0<e.imgBytes&&Sh===0&&(Sh=62500*A_());var u=setTimeout(function(){if(e.waitingForImages=!1,e.count===0&&(e.stylesheets&&Bl(e,e.stylesheets),e.unsuspend)){var h=e.unsuspend;e.unsuspend=null,h()}},(e.imgBytes>Sh?50:800)+n);return e.unsuspend=a,function(){e.unsuspend=null,clearTimeout(o),clearTimeout(u)}}:null}function Dl(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Bl(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}var ql=null;function Bl(e,n){e.stylesheets=null,e.unsuspend!==null&&(e.count++,ql=new Map,n.forEach(Y_,e),ql=null,Dl.call(e))}function Y_(e,n){if(!(n.state.loading&4)){var a=ql.get(e);if(a)var o=a.get(null);else{a=new Map,ql.set(e,a);for(var u=e.querySelectorAll("link[data-precedence],style[data-precedence]"),h=0;h<u.length;h++){var x=u[h];(x.nodeName==="LINK"||x.getAttribute("media")!=="not all")&&(a.set(x.dataset.precedence,x),o=x)}o&&a.set(null,o)}u=n.instance,x=u.getAttribute("data-precedence"),h=a.get(x)||o,h===o&&a.set(null,u),a.set(x,u),this.count++,o=Dl.bind(this),u.addEventListener("load",o),u.addEventListener("error",o),h?h.parentNode.insertBefore(u,h.nextSibling):(e=e.nodeType===9?e.head:e,e.insertBefore(u,e.firstChild)),n.state.loading|=4}}var za={$$typeof:re,Provider:null,Consumer:null,_currentValue:de,_currentValue2:de,_threadCount:0};function K_(e,n,a,o,u,h,x,E,R){this.tag=1,this.containerInfo=e,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=Nr(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Nr(0),this.hiddenUpdates=Nr(null),this.identifierPrefix=o,this.onUncaughtError=u,this.onCaughtError=h,this.onRecoverableError=x,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=R,this.incompleteTransitions=new Map}function Oy(e,n,a,o,u,h,x,E,R,H,Q,ne){return e=new K_(e,n,a,x,R,H,Q,ne,E),n=1,h===!0&&(n|=24),h=tn(3,null,null,n),e.current=h,h.stateNode=e,n=tf(),n.refCount++,e.pooledCache=n,n.refCount++,h.memoizedState={element:o,isDehydrated:a,cache:n},af(h),e}function Ay(e){return e?(e=ss,e):ss}function jy(e,n,a,o,u,h){u=Ay(u),o.context===null?o.context=u:o.pendingContext=u,o=Ur(n),o.payload={element:a},h=h===void 0?null:h,h!==null&&(o.callback=h),a=zr(e,o,n),a!==null&&(Qt(a,e,n),ba(a,e,n))}function Ty(e,n){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var a=e.retryLane;e.retryLane=a!==0&&a<n?a:n}}function Eh(e,n){Ty(e,n),(e=e.alternate)&&Ty(e,n)}function Ny(e){if(e.tag===13||e.tag===31){var n=Ei(e,67108864);n!==null&&Qt(n,e,67108864),Eh(e,67108864)}}function ky(e){if(e.tag===13||e.tag===31){var n=on();n=nr(n);var a=Ei(e,n);a!==null&&Qt(a,e,n),Eh(e,n)}}var Ll=!0;function X_(e,n,a,o){var u=Y.T;Y.T=null;var h=ae.p;try{ae.p=2,Oh(e,n,a,o)}finally{ae.p=h,Y.T=u}}function J_(e,n,a,o){var u=Y.T;Y.T=null;var h=ae.p;try{ae.p=8,Oh(e,n,a,o)}finally{ae.p=h,Y.T=u}}function Oh(e,n,a,o){if(Ll){var u=Ah(o);if(u===null)fh(e,n,o,Pl,a),My(e,o);else if(Z_(u,e,n,a,o))o.stopPropagation();else if(My(e,o),n&4&&-1<Q_.indexOf(e)){for(;u!==null;){var h=N(u);if(h!==null)switch(h.tag){case 3:if(h=h.stateNode,h.current.memoizedState.isDehydrated){var x=Mn(h.pendingLanes);if(x!==0){var E=h;for(E.pendingLanes|=2,E.entangledLanes|=2;x;){var R=1<<31-Lt(x);E.entanglements[1]|=R,x&=~R}Kn(h),(Ge&6)===0&&(xl=it()+500,Da(0))}}break;case 31:case 13:E=Ei(h,2),E!==null&&Qt(E,h,2),wl(),Eh(h,2)}if(h=Ah(o),h===null&&fh(e,n,o,Pl,a),h===u)break;u=h}u!==null&&o.stopPropagation()}else fh(e,n,o,null,a)}}function Ah(e){return e=ju(e),jh(e)}var Pl=null;function jh(e){if(Pl=null,e=O(e),e!==null){var n=c(e);if(n===null)e=null;else{var a=n.tag;if(a===13){if(e=d(n),e!==null)return e;e=null}else if(a===31){if(e=y(n),e!==null)return e;e=null}else if(a===3){if(n.stateNode.current.memoizedState.isDehydrated)return n.tag===3?n.stateNode.containerInfo:null;e=null}else n!==e&&(e=null)}}return Pl=e,null}function Cy(e){switch(e){case"beforetoggle":case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"toggle":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 2;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 8;case"message":switch(vu()){case jo:return 2;case To:return 8;case Yi:case xu:return 32;case No:return 268435456;default:return 32}default:return 32}}var Th=!1,Qr=null,Zr=null,Wr=null,Ia=new Map,$a=new Map,ei=[],Q_="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(" ");function My(e,n){switch(e){case"focusin":case"focusout":Qr=null;break;case"dragenter":case"dragleave":Zr=null;break;case"mouseover":case"mouseout":Wr=null;break;case"pointerover":case"pointerout":Ia.delete(n.pointerId);break;case"gotpointercapture":case"lostpointercapture":$a.delete(n.pointerId)}}function Ha(e,n,a,o,u,h){return e===null||e.nativeEvent!==h?(e={blockedOn:n,domEventName:a,eventSystemFlags:o,nativeEvent:h,targetContainers:[u]},n!==null&&(n=N(n),n!==null&&Ny(n)),e):(e.eventSystemFlags|=o,n=e.targetContainers,u!==null&&n.indexOf(u)===-1&&n.push(u),e)}function Z_(e,n,a,o,u){switch(n){case"focusin":return Qr=Ha(Qr,e,n,a,o,u),!0;case"dragenter":return Zr=Ha(Zr,e,n,a,o,u),!0;case"mouseover":return Wr=Ha(Wr,e,n,a,o,u),!0;case"pointerover":var h=u.pointerId;return Ia.set(h,Ha(Ia.get(h)||null,e,n,a,o,u)),!0;case"gotpointercapture":return h=u.pointerId,$a.set(h,Ha($a.get(h)||null,e,n,a,o,u)),!0}return!1}function Ry(e){var n=O(e.target);if(n!==null){var a=c(n);if(a!==null){if(n=a.tag,n===13){if(n=d(a),n!==null){e.blockedOn=n,Co(e.priority,function(){ky(a)});return}}else if(n===31){if(n=y(a),n!==null){e.blockedOn=n,Co(e.priority,function(){ky(a)});return}}else if(n===3&&a.stateNode.current.memoizedState.isDehydrated){e.blockedOn=a.tag===3?a.stateNode.containerInfo:null;return}}}e.blockedOn=null}function Ul(e){if(e.blockedOn!==null)return!1;for(var n=e.targetContainers;0<n.length;){var a=Ah(e.nativeEvent);if(a===null){a=e.nativeEvent;var o=new a.constructor(a.type,a);Au=o,a.target.dispatchEvent(o),Au=null}else return n=N(a),n!==null&&Ny(n),e.blockedOn=a,!1;n.shift()}return!0}function Dy(e,n,a){Ul(e)&&a.delete(n)}function W_(){Th=!1,Qr!==null&&Ul(Qr)&&(Qr=null),Zr!==null&&Ul(Zr)&&(Zr=null),Wr!==null&&Ul(Wr)&&(Wr=null),Ia.forEach(Dy),$a.forEach(Dy)}function zl(e,n){e.blockedOn===n&&(e.blockedOn=null,Th||(Th=!0,i.unstable_scheduleCallback(i.unstable_NormalPriority,W_)))}var Il=null;function qy(e){Il!==e&&(Il=e,i.unstable_scheduleCallback(i.unstable_NormalPriority,function(){Il===e&&(Il=null);for(var n=0;n<e.length;n+=3){var a=e[n],o=e[n+1],u=e[n+2];if(typeof o!="function"){if(jh(o||a)===null)continue;break}var h=N(a);h!==null&&(e.splice(n,3),n-=3,Af(h,{pending:!0,data:u,method:a.method,action:o},o,u))}}))}function Ns(e){function n(R){return zl(R,e)}Qr!==null&&zl(Qr,e),Zr!==null&&zl(Zr,e),Wr!==null&&zl(Wr,e),Ia.forEach(n),$a.forEach(n);for(var a=0;a<ei.length;a++){var o=ei[a];o.blockedOn===e&&(o.blockedOn=null)}for(;0<ei.length&&(a=ei[0],a.blockedOn===null);)Ry(a),a.blockedOn===null&&ei.shift();if(a=(e.ownerDocument||e).$$reactFormReplay,a!=null)for(o=0;o<a.length;o+=3){var u=a[o],h=a[o+1],x=u[ut]||null;if(typeof h=="function")x||qy(a);else if(x){var E=null;if(h&&h.hasAttribute("formAction")){if(u=h,x=h[ut]||null)E=x.formAction;else if(jh(u)!==null)continue}else E=x.action;typeof E=="function"?a[o+1]=E:(a.splice(o,3),o-=3),qy(a)}}}function By(){function e(h){h.canIntercept&&h.info==="react-transition"&&h.intercept({handler:function(){return new Promise(function(x){return u=x})},focusReset:"manual",scroll:"manual"})}function n(){u!==null&&(u(),u=null),o||setTimeout(a,20)}function a(){if(!o&&!navigation.transition){var h=navigation.currentEntry;h&&h.url!=null&&navigation.navigate(h.url,{state:h.getState(),info:"react-transition",history:"replace"})}}if(typeof navigation=="object"){var o=!1,u=null;return navigation.addEventListener("navigate",e),navigation.addEventListener("navigatesuccess",n),navigation.addEventListener("navigateerror",n),setTimeout(a,100),function(){o=!0,navigation.removeEventListener("navigate",e),navigation.removeEventListener("navigatesuccess",n),navigation.removeEventListener("navigateerror",n),u!==null&&(u(),u=null)}}}function Nh(e){this._internalRoot=e}$l.prototype.render=Nh.prototype.render=function(e){var n=this._internalRoot;if(n===null)throw Error(s(409));var a=n.current,o=on();jy(a,o,e,n,null,null)},$l.prototype.unmount=Nh.prototype.unmount=function(){var e=this._internalRoot;if(e!==null){this._internalRoot=null;var n=e.containerInfo;jy(e.current,2,null,e,null,null),wl(),n[Wt]=null}};function $l(e){this._internalRoot=e}$l.prototype.unstable_scheduleHydration=function(e){if(e){var n=ta();e={blockedOn:null,target:e,priority:n};for(var a=0;a<ei.length&&n!==0&&n<ei[a].priority;a++);ei.splice(a,0,e),a===0&&Ry(e)}};var Ly=t.version;if(Ly!=="19.2.4")throw Error(s(527,Ly,"19.2.4"));ae.findDOMNode=function(e){var n=e._reactInternals;if(n===void 0)throw typeof e.render=="function"?Error(s(188)):(e=Object.keys(e).join(","),Error(s(268,e)));return e=f(n),e=e!==null?m(e):null,e=e===null?null:e.stateNode,e};var ew={bundleType:0,version:"19.2.4",rendererPackageName:"react-dom",currentDispatcherRef:Y,reconcilerVersion:"19.2.4"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var Hl=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!Hl.isDisabled&&Hl.supportsFiber)try{pi=Hl.inject(ew),pt=Hl}catch{}}return Ga.createRoot=function(e,n){if(!l(e))throw Error(s(299));var a=!1,o="",u=G0,h=F0,x=V0;return n!=null&&(n.unstable_strictMode===!0&&(a=!0),n.identifierPrefix!==void 0&&(o=n.identifierPrefix),n.onUncaughtError!==void 0&&(u=n.onUncaughtError),n.onCaughtError!==void 0&&(h=n.onCaughtError),n.onRecoverableError!==void 0&&(x=n.onRecoverableError)),n=Oy(e,1,!1,null,null,a,o,null,u,h,x,By),e[Wt]=n.current,uh(e),new Nh(n)},Ga.hydrateRoot=function(e,n,a){if(!l(e))throw Error(s(299));var o=!1,u="",h=G0,x=F0,E=V0,R=null;return a!=null&&(a.unstable_strictMode===!0&&(o=!0),a.identifierPrefix!==void 0&&(u=a.identifierPrefix),a.onUncaughtError!==void 0&&(h=a.onUncaughtError),a.onCaughtError!==void 0&&(x=a.onCaughtError),a.onRecoverableError!==void 0&&(E=a.onRecoverableError),a.formState!==void 0&&(R=a.formState)),n=Oy(e,1,!0,n,a??null,o,u,R,h,x,E,By),n.context=Ay(null),a=n.current,o=on(),o=nr(o),u=Ur(o),u.callback=null,zr(a,u,o),a=o,n.current.lanes=a,Rn(n,a),Kn(n),e[Wt]=n.current,uh(e),new $l(n)},Ga.version="19.2.4",Ga}var Fy;function zw(){if(Fy)return kh.exports;Fy=1;function i(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(i)}catch(t){console.error(t)}}return i(),kh.exports=Uw(),kh.exports}var Iw=zw();const $w="modulepreload",Hw=function(i,t){return new URL(i,t).href},Vy={},we=function(t,r,s){let l=Promise.resolve();if(r&&r.length>0){let d=function(m){return Promise.all(m.map(b=>Promise.resolve(b).then(v=>({status:"fulfilled",value:v}),v=>({status:"rejected",reason:v}))))};const y=document.getElementsByTagName("link"),g=document.querySelector("meta[property=csp-nonce]"),f=(g==null?void 0:g.nonce)||(g==null?void 0:g.getAttribute("nonce"));l=d(r.map(m=>{if(m=Hw(m,s),m in Vy)return;Vy[m]=!0;const b=m.endsWith(".css"),v=b?'[rel="stylesheet"]':"";if(!!s)for(let S=y.length-1;S>=0;S--){const M=y[S];if(M.href===m&&(!b||M.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${m}"]${v}`))return;const w=document.createElement("link");if(w.rel=b?"stylesheet":$w,b||(w.as="script"),w.crossOrigin="",w.href=m,f&&w.setAttribute("nonce",f),document.head.appendChild(w),b)return new Promise((S,M)=>{w.addEventListener("load",S),w.addEventListener("error",()=>M(new Error(`Unable to preload CSS for ${m}`)))})}))}function c(d){const y=new Event("vite:preloadError",{cancelable:!0});if(y.payload=d,window.dispatchEvent(y),!y.defaultPrevented)throw d}return l.then(d=>{for(const y of d||[])y.status==="rejected"&&c(y.reason);return t().catch(c)})};function lu(i){try{const t=i.split(".");if(t.length!==3)return null;const r=atob(t[1].replace(/-/g,"+").replace(/_/g,"/"));return JSON.parse(r)}catch{return null}}function mb(i){const t=lu(i);return!t||typeof t.exp!="number"?null:t.exp}function Od(i,t=0){const r=mb(i);return r===null?!0:Date.now()/1e3>=r-t}const Nt=window.__LT_BASE__??"",Qh=`${Nt}/api`;class Yy extends Error{constructor(t,r,s){super(t),this.status=r,this.body=s,this.name="ApiError"}}let si=null;function Gl(i){si=i}function pb(){return si}const Gw="X-LT-Acting-Token";let Uc=null,zc=null;function Ky(i){Uc=i}function Xy(i){zc=i}function Fw(i){const t=i==null?void 0:i.error;return typeof t=="string"&&/acting[- ]identity/i.test(t)}async function Jy(){const i=sessionStorage.getItem("lt_credentials");if(!i)return null;try{const{username:t,password:r}=JSON.parse(i),s=await fetch(`${Qh}/auth/login`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:t,password:r})});if(!s.ok)return null;const l=await s.json();return l.token&&l.user&&sessionStorage.setItem("lt_user_info",JSON.stringify({displayName:l.user.display_name,username:l.user.external_id})),l.token??null}catch{return null}}let ni=null;async function _e(i,t={}){const r={"Content-Type":"application/json",...t.headers};if(si){if(Od(si)){ni||(ni=Jy().finally(()=>{ni=null}));const c=await ni;if(c)si=c,window.dispatchEvent(new CustomEvent("auth:refreshed",{detail:{token:c}}));else throw window.dispatchEvent(new CustomEvent("auth:unauthorized")),new Error("Session expired")}r.Authorization=`Bearer ${si}`}const s=(Uc==null?void 0:Uc())??null;s&&(r[Gw]=s);let l=await fetch(`${Qh}${i}`,{...t,headers:r});if(l.status===401&&s){const c=await l.clone().json().catch(()=>null);if(Fw(c))throw zc==null||zc(),new Yy(c.error,401,c)}if(l.status===401&&si){ni||(ni=Jy().finally(()=>{ni=null}));const c=await ni;if(c&&(si=c,window.dispatchEvent(new CustomEvent("auth:refreshed",{detail:{token:c}})),r.Authorization=`Bearer ${c}`,l=await fetch(`${Qh}${i}`,{...t,headers:r})),l.status===401)throw window.dispatchEvent(new CustomEvent("auth:unauthorized")),new Error("Session expired")}else if(l.status===401)throw window.dispatchEvent(new CustomEvent("auth:unauthorized")),new Error("Session expired");if(!l.ok){const c=await l.json().catch(()=>({error:l.statusText}));throw new Yy(c.message||c.error||l.statusText,l.status,c)}return l.json()}const Vw="lt_ai_override";function Yw(){return _e("/settings")}function Kw(){try{if(localStorage.getItem(Vw)==="off")return!1}catch{}return null}function Wn(){var r;const i=lt({queryKey:["settings"],queryFn:Yw,staleTime:1/0}),t=Kw();return i.data&&t===!1&&((r=i.data.ai)!=null&&r.enabled)?{...i,data:{...i.data,ai:{enabled:!1}}}:i}function Xw(i){var f,m,b;const{data:t}=Wn(),r=((f=t==null?void 0:t.auth)==null?void 0:f.ssoKeepaliveSeconds)??0,s=((m=t==null?void 0:t.auth)==null?void 0:m.ssoKeepaliveIdleTimeoutSeconds)??0,l=j.useRef(Date.now()),c=j.useRef(Date.now()),d=j.useRef(!1),g=!!i&&((b=lu(i))==null?void 0:b.sso)===!0&&r>0;j.useEffect(()=>{if(!g)return;const v=()=>{l.current=Date.now()};window.addEventListener("pointerdown",v,{passive:!0}),window.addEventListener("keydown",v,{passive:!0}),window.addEventListener("wheel",v,{passive:!0});const _=async()=>{if(!d.current&&document.visibilityState==="visible"&&!(s>0&&Date.now()-l.current>s*1e3)){d.current=!0;try{const M=await fetch(`${Nt}/api/auth/sso`,{method:"POST"});if(M.status===401||M.status===403){window.dispatchEvent(new CustomEvent("auth:unauthorized"));return}if(!M.ok)return;const B=await M.json().catch(()=>null);B!=null&&B.token&&(c.current=Date.now(),window.dispatchEvent(new CustomEvent("auth:refreshed",{detail:{token:B.token}})))}catch{}finally{d.current=!1}}},w=setInterval(_,r*1e3),S=()=>{document.visibilityState==="visible"&&Date.now()-c.current>r*1e3&&_()};return document.addEventListener("visibilitychange",S),()=>{clearInterval(w),document.removeEventListener("visibilitychange",S),window.removeEventListener("pointerdown",v),window.removeEventListener("keydown",v),window.removeEventListener("wheel",v)}},[g,r,s])}const yb=j.createContext(null),Jw=300;function Rh(i,t){if(Od(i))return null;const r=lu(i);if(!r)return null;const s=t??(()=>{try{const l=sessionStorage.getItem("lt_user_info");return l?JSON.parse(l):null}catch{return null}})();return{userId:r.userId,displayName:(s==null?void 0:s.displayName)??null,username:(s==null?void 0:s.username)??null,roles:r.roles??[]}}function Qw({children:i}){const[t,r]=j.useState(()=>{const b=sessionStorage.getItem("lt_token");return b?Od(b)?(sessionStorage.removeItem("lt_token"),null):(Gl(b),Rh(b)):null}),s=j.useRef(void 0),l=j.useCallback(b=>{clearTimeout(s.current);const v=mb(b);if(!v)return;const _=(v-Jw)*1e3-Date.now();_<=0||(s.current=setTimeout(async()=>{try{const w=lu(b);if(w!=null&&w.sso){const ce=await fetch(`${Nt}/api/auth/sso`,{method:"POST"});if(!ce.ok)return;const C=await ce.json();C.token&&window.dispatchEvent(new CustomEvent("auth:refreshed",{detail:{token:C.token}}));return}const S=sessionStorage.getItem("lt_credentials");if(!S)return;const{username:M,password:B}=JSON.parse(S),U=await fetch(`${Nt}/api/auth/login`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:M,password:B})});if(!U.ok)return;const re=await U.json();re.token&&window.dispatchEvent(new CustomEvent("auth:refreshed",{detail:{token:re.token}}))}catch{}},_))},[]),c=j.useCallback((b,v,_)=>{const w={displayName:(_==null?void 0:_.displayName)??null,username:(_==null?void 0:_.username)??(v==null?void 0:v.username)??null},S=Rh(b,w);S&&(Gl(b),sessionStorage.setItem("lt_token",b),sessionStorage.setItem("lt_user_info",JSON.stringify(w)),v&&sessionStorage.setItem("lt_credentials",JSON.stringify(v)),r(S),l(b))},[l]),d=j.useCallback(()=>{clearTimeout(s.current);const b=sessionStorage.getItem("lt_sso_logout_url");Gl(null),sessionStorage.removeItem("lt_token"),sessionStorage.removeItem("lt_credentials"),sessionStorage.removeItem("lt_user_info"),sessionStorage.removeItem("lt_sso_logout_url"),r(null),b&&(window.location.href=b)},[]);j.useEffect(()=>{const b=()=>d(),v=_=>{var M;const w=(M=_.detail)==null?void 0:M.token;if(!w)return;const S=Rh(w);S&&(Gl(w),sessionStorage.setItem("lt_token",w),r(S),l(w))};return window.addEventListener("auth:unauthorized",b),window.addEventListener("auth:refreshed",v),()=>{window.removeEventListener("auth:unauthorized",b),window.removeEventListener("auth:refreshed",v)}},[d,l]),j.useEffect(()=>{const b=sessionStorage.getItem("lt_token");return b&&t&&l(b),()=>clearTimeout(s.current)},[]);const y=(t==null?void 0:t.roles.some(b=>b.type==="superadmin"))??!1,g=j.useCallback(b=>(t==null?void 0:t.roles.some(v=>v.role===b))??!1,[t]),f=j.useCallback(b=>(t==null?void 0:t.roles.some(v=>v.type===b))??!1,[t]),m=(t==null?void 0:t.roles.map(b=>b.role))??[];return p.jsxs(yb.Provider,{value:{user:t,isAuthenticated:!!t,isSuperAdmin:y,login:c,logout:d,hasRole:g,hasRoleType:f,userRoleNames:m},children:[p.jsx(Zw,{authenticated:t!==null}),i]})}function Zw({authenticated:i}){return Xw(i?sessionStorage.getItem("lt_token"):null),null}function Ft(){const i=j.useContext(yb);if(!i)throw new Error("useAuth must be used within AuthProvider");return i}const mn=new Uint8Array(0),Hi=new TextEncoder,hn=new TextDecoder;function Ww(...i){let t=0;for(let l=0;l<i.length;l++)t+=i[l].length;const r=new Uint8Array(t);let s=0;for(let l=0;l<i.length;l++)r.set(i[l],s),s+=i[l].length;return r}function so(...i){const t=[];for(let r=0;r<i.length;r++)t.push(Hi.encode(i[r]));return t.length===0?mn:t.length===1?t[0]:Ww(...t)}function Qy(i){return!i||i.length===0?"":hn.decode(i)}const Zy="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ",Wy=36,eS=0xcfd41b9100000,eg=33,tS=333,tg=22;function nS(i){for(let t=0;t<i.length;t++)i[t]=Math.floor(Math.random()*255)}function rS(i){var t;(t=globalThis==null?void 0:globalThis.crypto)!=null&&t.getRandomValues?globalThis.crypto.getRandomValues(i):nS(i)}class iS{constructor(){A(this,"buf");A(this,"seq");A(this,"inc");A(this,"inited");this.buf=new Uint8Array(tg),this.inited=!1}init(){this.inited=!0,this.setPre(),this.initSeqAndInc(),this.fillSeq()}initSeqAndInc(){this.seq=Math.floor(Math.random()*eS),this.inc=Math.floor(Math.random()*(tS-eg)+eg)}setPre(){const t=new Uint8Array(12);rS(t);for(let r=0;r<12;r++){const s=t[r]%36;this.buf[r]=Zy.charCodeAt(s)}}fillSeq(){let t=this.seq;for(let r=tg-1;r>=12;r--)this.buf[r]=Zy.charCodeAt(t%Wy),t=Math.floor(t/Wy)}next(){return this.inited||this.init(),this.seq+=this.inc,this.seq>0xcfd41b9100000&&(this.setPre(),this.initSeqAndInc()),this.fillSeq(),String.fromCharCode.apply(String,this.buf)}reset(){this.init()}}const fi=new iS;var wr;(function(i){i.Disconnect="disconnect",i.Reconnect="reconnect",i.Update="update",i.LDM="ldm",i.Error="error"})(wr||(wr={}));var Ps;(function(i){i.Reconnecting="reconnecting",i.PingTimer="pingTimer",i.StaleConnection="staleConnection",i.ClientInitiatedReconnect="client initiated reconnect"})(Ps||(Ps={}));var le;(function(i){i.ApiError="BAD API",i.BadAuthentication="BAD_AUTHENTICATION",i.BadCreds="BAD_CREDS",i.BadHeader="BAD_HEADER",i.BadJson="BAD_JSON",i.BadPayload="BAD_PAYLOAD",i.BadSubject="BAD_SUBJECT",i.Cancelled="CANCELLED",i.ConnectionClosed="CONNECTION_CLOSED",i.ConnectionDraining="CONNECTION_DRAINING",i.ConnectionRefused="CONNECTION_REFUSED",i.ConnectionTimeout="CONNECTION_TIMEOUT",i.Disconnect="DISCONNECT",i.InvalidOption="INVALID_OPTION",i.InvalidPayload="INVALID_PAYLOAD",i.MaxPayloadExceeded="MAX_PAYLOAD_EXCEEDED",i.NoResponders="503",i.NotFunction="NOT_FUNC",i.RequestError="REQUEST_ERROR",i.ServerOptionNotAvailable="SERVER_OPT_NA",i.SubClosed="SUB_CLOSED",i.SubDraining="SUB_DRAINING",i.Timeout="TIMEOUT",i.Tls="TLS",i.Unknown="UNKNOWN_ERROR",i.WssRequired="WSS_REQUIRED",i.JetStreamInvalidAck="JESTREAM_INVALID_ACK",i.JetStream404NoMessages="404",i.JetStream408RequestTimeout="408",i.JetStream409MaxAckPendingExceeded="409",i.JetStream409="409",i.JetStreamNotEnabled="503",i.JetStreamIdleHeartBeat="IDLE_HEARTBEAT",i.AuthorizationViolation="AUTHORIZATION_VIOLATION",i.AuthenticationExpired="AUTHENTICATION_EXPIRED",i.ProtocolError="NATS_PROTOCOL_ERR",i.PermissionsViolation="PERMISSIONS_VIOLATION",i.AuthenticationTimeout="AUTHENTICATION_TIMEOUT",i.AccountExpired="ACCOUNT_EXPIRED"})(le||(le={}));function sS(i){return typeof i.code=="string"}class gb{constructor(){A(this,"messages");this.messages=new Map,this.messages.set(le.InvalidPayload,"Invalid payload type - payloads can be 'binary', 'string', or 'json'"),this.messages.set(le.BadJson,"Bad JSON"),this.messages.set(le.WssRequired,"TLS is required, therefore a secure websocket connection is also required")}static getMessage(t){return aS.getMessage(t)}getMessage(t){return this.messages.get(t)||t}}const aS=new gb;class me extends Error{constructor(r,s,l){super(r);A(this,"name");A(this,"message");A(this,"code");A(this,"permissionContext");A(this,"chainedError");A(this,"api_error");this.name="NatsError",this.message=r,this.code=s,this.chainedError=l}static errorForCode(r,s){const l=gb.getMessage(r);return new me(l,r,s)}isAuthError(){return this.code===le.AuthenticationExpired||this.code===le.AuthorizationViolation||this.code===le.AccountExpired}isAuthTimeout(){return this.code===le.AuthenticationTimeout}isPermissionError(){return this.code===le.PermissionsViolation}isProtocolError(){return this.code===le.ProtocolError}isJetStreamError(){return this.api_error!==void 0}jsError(){return this.api_error?this.api_error:null}}var un;(function(i){i[i.Exact=0]="Exact",i[i.CanonicalMIME=1]="CanonicalMIME",i[i.IgnoreCase=2]="IgnoreCase"})(un||(un={}));var $n;(function(i){i.Timer="timer",i.Count="count",i.JitterTimer="jitterTimer",i.SentinelMsg="sentinelMsg"})($n||($n={}));var ao;(function(i){i.STATS="io.nats.micro.v1.stats_response",i.INFO="io.nats.micro.v1.info_response",i.PING="io.nats.micro.v1.ping_response"})(ao||(ao={}));const Kc="Nats-Service-Error",Xc="Nats-Service-Error-Code";class Jc extends Error{constructor(r,s){super(s);A(this,"code");this.code=r}static isServiceError(r){return Jc.toServiceError(r)!==null}static toServiceError(r){var l,c;const s=((l=r==null?void 0:r.headers)==null?void 0:l.get(Xc))||"";if(s!==""){const d=parseInt(s)||400,y=((c=r==null?void 0:r.headers)==null?void 0:c.get(Kc))||"";return new Jc(d,y.length?y:s)}return null}}function Sr(i=""){if(i=i||"_INBOX",typeof i!="string")throw new Error("prefix must be a string");return i.split(".").forEach(t=>{if(t==="*"||t===">")throw new Error(`inbox prefixes cannot have wildcards '${i}'`)}),`${i}.${fi.next()}`}const Zh="127.0.0.1";var ai;(function(i){i.PING="PING",i.STATS="STATS",i.INFO="INFO"})(ai||(ai={}));function cu(i,...t){for(let r=0;r<t.length;r++){const s=t[r];Object.keys(s).forEach(function(l){i[l]=s[l]})}return i}function Fl(i){return hn.decode(i).replace(/\n/g,"␊").replace(/\r/g,"␍")}function Gs(i,t=!0){const r=t?me.errorForCode(le.Timeout):null;let s,l;const c=new Promise((d,y)=>{s={cancel:()=>{l&&clearTimeout(l)}},l=setTimeout(()=>{y(r===null?me.errorForCode(le.Timeout):r)},i)});return Object.assign(c,s)}function Ys(i=0){let t;const r=new Promise(s=>{const l=setTimeout(()=>{s()},i);t={cancel:()=>{l&&clearTimeout(l)}}});return Object.assign(r,t)}function ot(){let i={};const t=new Promise((r,s)=>{i={resolve:r,reject:s}});return Object.assign(t,i)}function bb(i){for(let t=i.length-1;t>0;t--){const r=Math.floor(Math.random()*(t+1));[i[t],i[r]]=[i[r],i[t]]}return i}function oS(i){return i===0?0:Math.floor(i/2+Math.random()*i)}function Ad(i=[0,250,250,500,500,3e3,5e3]){Array.isArray(i)||(i=[0,250,250,500,500,3e3,5e3]);const t=i.length-1;return{backoff(r){return oS(r>t?i[t]:i[r])}}}function at(i){return i*1e6}function jd(i){return Math.floor(i/1e6)}function ng(i){let s=!0;const l=new Array(i.length);for(let c=0;c<i.length;c++){let d=i.charCodeAt(c);if(d===58||d<33||d>126)throw new me(`'${i[c]}' is not a valid character for a header key`,le.BadHeader);s&&97<=d&&d<=122?d-=32:!s&&65<=d&&d<=90&&(d+=32),l[c]=d,s=d==45}return String.fromCharCode(...l)}function Er(i=0,t=""){if(i===0&&t!==""||i>0&&t==="")throw new Error("setting status requires both code and description");return new oi(i,t)}const Dh="NATS/1.0";class oi{constructor(t=0,r=""){A(this,"_code");A(this,"headers");A(this,"_description");this._code=t,this._description=r,this.headers=new Map}[Symbol.iterator](){return this.headers.entries()}size(){return this.headers.size}equals(t){if(t&&this.headers.size===t.headers.size&&this._code===t._code){for(const[r,s]of this.headers){const l=t.values(r);if(s.length!==l.length)return!1;const c=[...s].sort(),d=[...l].sort();for(let y=0;y<c.length;y++)if(c[y]!==d[y])return!1}return!0}return!1}static decode(t){const r=new oi,l=hn.decode(t).split(`\r
|
|
27
|
+
`),c=l[0];if(c!==Dh){let d=c.replace(Dh,"").trim();if(d.length>0){r._code=parseInt(d,10),isNaN(r._code)&&(r._code=0);const y=r._code.toString();d=d.replace(y,""),r._description=d.trim()}}return l.length>=1&&l.slice(1).map(d=>{if(d){const y=d.indexOf(":");if(y>-1){const g=d.slice(0,y),f=d.slice(y+1).trim();r.append(g,f)}}}),r}toString(){if(this.headers.size===0&&this._code===0)return"";let t=Dh;this._code>0&&this._description!==""&&(t+=` ${this._code} ${this._description}`);for(const[r,s]of this.headers)for(let l=0;l<s.length;l++)t=`${t}\r
|
|
28
28
|
${r}: ${s[l]}`;return`${t}\r
|
|
29
29
|
\r
|
|
30
|
-
`}encode(){return Hi.encode(this.toString())}static validHeaderValue(t){if(/[\r\n]/.test(t))throw new me("invalid header value - \\r and \\n are not allowed.",le.BadHeader);return t.trim()}keys(){const t=[];for(const r of this.headers.keys())t.push(r);return t}findKeys(t,r=un.Exact){const s=this.keys();switch(r){case un.Exact:return s.filter(l=>l===t);case un.CanonicalMIME:return t=
|
|
30
|
+
`}encode(){return Hi.encode(this.toString())}static validHeaderValue(t){if(/[\r\n]/.test(t))throw new me("invalid header value - \\r and \\n are not allowed.",le.BadHeader);return t.trim()}keys(){const t=[];for(const r of this.headers.keys())t.push(r);return t}findKeys(t,r=un.Exact){const s=this.keys();switch(r){case un.Exact:return s.filter(l=>l===t);case un.CanonicalMIME:return t=ng(t),s.filter(l=>l===t);default:{const l=t.toLowerCase();return s.filter(c=>l===c.toLowerCase())}}}get(t,r=un.Exact){const s=this.findKeys(t,r);if(s.length){const l=this.headers.get(s[0]);if(l)return Array.isArray(l)?l[0]:l}return""}last(t,r=un.Exact){const s=this.findKeys(t,r);if(s.length){const l=this.headers.get(s[0]);if(l)return Array.isArray(l)?l[l.length-1]:l}return""}has(t,r=un.Exact){return this.findKeys(t,r).length>0}set(t,r,s=un.Exact){this.delete(t,s),this.append(t,r,s)}append(t,r,s=un.Exact){const l=ng(t);s===un.CanonicalMIME&&(t=l);const c=this.findKeys(t,s);t=c.length>0?c[0]:t;const d=oi.validHeaderValue(r);let y=this.headers.get(t);y||(y=[],this.headers.set(t,y)),y.push(d)}values(t,r=un.Exact){const s=[];return this.findKeys(t,r).forEach(c=>{const d=this.headers.get(c);d&&s.push(...d)}),s}delete(t,r=un.Exact){this.findKeys(t,r).forEach(l=>{this.headers.delete(l)})}get hasError(){return this._code>=300}get status(){return`${this._code} ${this._description}`.trim()}toRecord(){const t={};return this.keys().forEach(r=>{t[r]=this.values(r)}),t}get code(){return this._code}get description(){return this._description}static fromRecord(t){const r=new oi;for(const s in t)r.headers.set(s,t[s]);return r}}function Wh(){return{encode(i){return Hi.encode(i)},decode(i){return hn.decode(i)}}}function Hn(i){return{encode(t){try{return t===void 0&&(t=null),Hi.encode(JSON.stringify(t))}catch(r){throw me.errorForCode(le.BadJson,r)}},decode(t){try{return JSON.parse(hn.decode(t),i)}catch(r){throw me.errorForCode(le.BadJson,r)}}}}function vb(i){var t;return i&&i.data.length===0&&((t=i.headers)==null?void 0:t.code)===503?me.errorForCode(le.NoResponders):null}class Td{constructor(t,r,s){A(this,"_headers");A(this,"_msg");A(this,"_rdata");A(this,"_reply");A(this,"_subject");A(this,"publisher");this._msg=t,this._rdata=r,this.publisher=s}get subject(){return this._subject?this._subject:(this._subject=hn.decode(this._msg.subject),this._subject)}get reply(){return this._reply?this._reply:(this._reply=hn.decode(this._msg.reply),this._reply)}get sid(){return this._msg.sid}get headers(){if(this._msg.hdr>-1&&!this._headers){const t=this._rdata.subarray(0,this._msg.hdr);this._headers=oi.decode(t)}return this._headers}get data(){return this._rdata?this._msg.hdr>-1?this._rdata.subarray(this._msg.hdr):this._rdata:new Uint8Array(0)}respond(t=mn,r){return this.reply?(this.publisher.publish(this.reply,t,r),!0):!1}size(){var l;const t=this._msg.subject.length,r=((l=this._msg.reply)==null?void 0:l.length)||0,s=this._msg.size===-1?0:this._msg.size;return t+r+s}json(t){return Hn(t).decode(this.data)}string(){return hn.decode(this.data)}requestInfo(){var r;const t=(r=this.headers)==null?void 0:r.get("Nats-Request-Info");return t?JSON.parse(t,function(s,l){return(s==="start"||s==="stop")&&l!==""?new Date(Date.parse(l)):l}):null}}A(Td,"jc");function Us(i){return uu("durable",i)}function It(i){return uu("stream",i)}function uu(i,t=""){if(t==="")throw Error(`${i} name required`);return[".","*",">","/","\\"," "," ",`
|
|
31
31
|
`,"\r"].forEach(s=>{if(t.indexOf(s)!==-1){switch(s){case`
|
|
32
|
-
`:s="\\n";break;case"\r":s="\\r";break;case" ":s="\\t";break}throw Error(`invalid ${i} name - ${i} name cannot contain '${s}'`)}}),""}function no(i,t=""){if(t==="")throw Error(`${i} name required`);const r=cS(t);if(r.length)throw new Error(`invalid ${i} name - ${i} name ${r}`)}function cS(i=""){if(i==="")throw Error("name required");const t=/^[-\w]+$/g;if(i.match(t)===null){for(const s of i.split(""))if(s.match(t)===null)return`cannot contain '${s}'`}return""}function ed(i){if(i.data.length>0)return!1;const t=i.headers;return t?t.code>=100&&t.code<200:!1}function td(i){var t;return ed(i)&&((t=i.headers)==null?void 0:t.description)==="Idle Heartbeat"}function uS(i,t,r){const s=Er(i,t),l={hdr:1,sid:0,size:0},c=new Nd(l,mn,{});return c._headers=s,c._subject=r,c}function zs(i){if(i.data.length!==0)return null;const t=i.headers;return t?vb(t.code,t.description):null}var kn;(function(i){i.MaxBatchExceeded="exceeded maxrequestbatch of",i.MaxExpiresExceeded="exceeded maxrequestexpires of",i.MaxBytesExceeded="exceeded maxrequestmaxbytes of",i.MaxMessageSizeExceeded="message size exceeds maxbytes",i.PushConsumer="consumer is push based",i.MaxWaitingExceeded="exceeded maxwaiting",i.IdleHeartbeatMissed="idle heartbeats missed",i.ConsumerDeleted="consumer deleted"})(kn||(kn={}));function fS(i){return i.code!==le.JetStream409?!1:[kn.MaxBatchExceeded,kn.MaxExpiresExceeded,kn.MaxBytesExceeded,kn.MaxMessageSizeExceeded,kn.PushConsumer,kn.IdleHeartbeatMissed,kn.ConsumerDeleted].find(r=>i.message.indexOf(r)!==-1)!==void 0}function vb(i,t=""){if(i<300)return null;switch(t=t.toLowerCase(),i){case 404:return new me(t,le.JetStream404NoMessages);case 408:return new me(t,le.JetStream408RequestTimeout);case 409:{const r=t.startsWith(kn.IdleHeartbeatMissed)?le.JetStreamIdleHeartBeat:le.JetStream409;return new me(t,r)}case 503:return me.errorForCode(le.JetStreamNotEnabled,new Error(t));default:return t===""&&(t=le.Unknown),new me(t,`${i}`)}}class kt{constructor(){A(this,"inflight");A(this,"processed");A(this,"received");A(this,"noIterator");A(this,"iterClosed");A(this,"done");A(this,"signal");A(this,"yields");A(this,"filtered");A(this,"pendingFiltered");A(this,"ingestionFilterFn");A(this,"protocolFilterFn");A(this,"dispatchedFn");A(this,"ctx");A(this,"_data");A(this,"err");A(this,"time");A(this,"yielding");this.inflight=0,this.filtered=0,this.pendingFiltered=0,this.processed=0,this.received=0,this.noIterator=!1,this.done=!1,this.signal=ot(),this.yields=[],this.iterClosed=ot(),this.time=0,this.yielding=!1}[Symbol.asyncIterator](){return this.iterate()}push(t){if(this.done)return;if(typeof t=="function"){this.yields.push(t),this.signal.resolve();return}const{ingest:r,protocol:s}=this.ingestionFilterFn?this.ingestionFilterFn(t,this.ctx||this):{ingest:!0,protocol:!1};r&&(s&&(this.filtered++,this.pendingFiltered++),this.yields.push(t),this.signal.resolve())}async*iterate(){if(this.noIterator)throw new me("unsupported iterator",le.ApiError);if(this.yielding)throw new me("already yielding",le.ApiError);this.yielding=!0;try{for(;;){if(this.yields.length===0&&await this.signal,this.err)throw this.err;const t=this.yields;this.inflight=t.length,this.yields=[];for(let r=0;r<t.length;r++){if(typeof t[r]=="function"){const l=t[r];try{l()}catch(c){throw c}if(this.err)throw this.err;continue}if(this.protocolFilterFn?this.protocolFilterFn(t[r]):!0){this.processed++;const l=Date.now();yield t[r],this.time=Date.now()-l,this.dispatchedFn&&t[r]&&this.dispatchedFn(t[r])}else this.pendingFiltered--;this.inflight--}if(this.done)break;this.yields.length===0&&(t.length=0,this.yields=t,this.signal=ot())}}finally{this.stop()}}stop(t){this.done||(this.err=t,this.done=!0,this.signal.resolve(),this.iterClosed.resolve(t))}getProcessed(){return this.noIterator?this.received:this.processed}getPending(){return this.yields.length+this.inflight-this.pendingFiltered}getReceived(){return this.received-this.filtered}}class Td{constructor(t,r,s={maxOut:2}){A(this,"interval");A(this,"maxOut");A(this,"cancelAfter");A(this,"timer");A(this,"autoCancelTimer");A(this,"last");A(this,"missed");A(this,"count");A(this,"callback");this.interval=t,this.maxOut=(s==null?void 0:s.maxOut)||2,this.cancelAfter=(s==null?void 0:s.cancelAfter)||0,this.last=Date.now(),this.missed=0,this.count=0,this.callback=r,this._schedule()}cancel(){this.autoCancelTimer&&clearTimeout(this.autoCancelTimer),this.timer&&clearInterval(this.timer),this.timer=0,this.autoCancelTimer=0,this.missed=0}work(){this.last=Date.now(),this.missed=0}_change(t,r=0,s=2){this.interval=t,this.maxOut=s,this.cancelAfter=r,this.restart()}restart(){this.cancel(),this._schedule()}_schedule(){this.cancelAfter>0&&(this.autoCancelTimer=setTimeout(()=>{this.cancel()},this.cancelAfter)),this.timer=setInterval(()=>{if(this.count++,Date.now()-this.last>this.interval&&this.missed++,this.missed>=this.maxOut)try{this.callback(this.missed)===!0&&this.cancel()}catch(t){console.log(t)}},this.interval)}}var nd;(function(i){i.Limits="limits",i.Interest="interest",i.Workqueue="workqueue"})(nd||(nd={}));var uo;(function(i){i.Old="old",i.New="new"})(uo||(uo={}));var rd;(function(i){i.File="file",i.Memory="memory"})(rd||(rd={}));var bt;(function(i){i.All="all",i.Last="last",i.New="new",i.StartSequence="by_start_sequence",i.StartTime="by_start_time",i.LastPerSubject="last_per_subject"})(bt||(bt={}));var Nt;(function(i){i.None="none",i.All="all",i.Explicit="explicit",i.NotSet=""})(Nt||(Nt={}));var Fs;(function(i){i.Instant="instant",i.Original="original"})(Fs||(Fs={}));var hi;(function(i){i.None="none",i.S2="s2"})(hi||(hi={}));var Qc;(function(i){i.CreateOrUpdate="",i.Update="update",i.Create="create"})(Qc||(Qc={}));function hS(i,t={}){return Object.assign({name:i,deliver_policy:bt.All,ack_policy:Nt.Explicit,ack_wait:at(30*1e3),replay_policy:Fs.Instant},t)}var ry;(function(i){i.API="api_audit",i.StreamAction="stream_action",i.ConsumerAction="consumer_action",i.SnapshotCreate="snapshot_create",i.SnapshotComplete="snapshot_complete",i.RestoreCreate="restore_create",i.RestoreComplete="restore_complete",i.MaxDeliver="max_deliver",i.Terminated="terminated",i.Ack="consumer_ack",i.StreamLeaderElected="stream_leader_elected",i.StreamQuorumLost="stream_quorum_lost",i.ConsumerLeaderElected="consumer_leader_elected",i.ConsumerQuorumLost="consumer_quorum_lost"})(ry||(ry={}));var Ht;(function(i){i.StreamSourceHdr="Nats-Stream-Source",i.LastConsumerSeqHdr="Nats-Last-Consumer",i.LastStreamSeqHdr="Nats-Last-Stream",i.ConsumerStalledHdr="Nats-Consumer-Stalled",i.MessageSizeHdr="Nats-Msg-Size",i.RollupHdr="Nats-Rollup",i.RollupValueSubject="sub",i.RollupValueAll="all",i.PendingMessagesHdr="Nats-Pending-Messages",i.PendingBytesHdr="Nats-Pending-Bytes"})(Ht||(Ht={}));var Un;(function(i){i.LastValue="",i.AllHistory="history",i.UpdatesOnly="updates"})(Un||(Un={}));var Bs;(function(i){i.Stream="Nats-Stream",i.Sequence="Nats-Sequence",i.TimeStamp="Nats-Time-Stamp",i.Subject="Nats-Subject"})(Bs||(Bs={}));var iy;(function(i){i.Stream="Nats-Stream",i.Subject="Nats-Subject",i.Sequence="Nats-Sequence",i.LastSequence="Nats-Last-Sequence",i.Size="Nats-Msg-Size"})(iy||(iy={}));const fn="KV_";class dS{constructor(t){A(this,"config");A(this,"ordered");A(this,"mack");A(this,"stream");A(this,"callbackFn");A(this,"max");A(this,"qname");A(this,"isBind");A(this,"filters");this.stream="",this.mack=!1,this.ordered=!1,this.config=hS("",t||{})}getOpts(){var r;const t={};if(t.config=Object.assign({},this.config),t.config.filter_subject&&(this.filterSubject(t.config.filter_subject),t.config.filter_subject=void 0),t.config.filter_subjects&&((r=t.config.filter_subjects)==null||r.forEach(s=>{this.filterSubject(s)}),t.config.filter_subjects=void 0),t.mack=this.mack,t.stream=this.stream,t.callbackFn=this.callbackFn,t.max=this.max,t.queue=this.qname,t.ordered=this.ordered,t.config.ack_policy=t.ordered?Nt.None:t.config.ack_policy,t.isBind=t.isBind||!1,this.filters)switch(this.filters.length){case 0:break;case 1:t.config.filter_subject=this.filters[0];break;default:t.config.filter_subjects=this.filters}return t}description(t){return this.config.description=t,this}deliverTo(t){return this.config.deliver_subject=t,this}durable(t){return Us(t),this.config.durable_name=t,this}startSequence(t){if(t<=0)throw new Error("sequence must be greater than 0");return this.config.deliver_policy=bt.StartSequence,this.config.opt_start_seq=t,this}startTime(t){return this.config.deliver_policy=bt.StartTime,this.config.opt_start_time=t.toISOString(),this}deliverAll(){return this.config.deliver_policy=bt.All,this}deliverLastPerSubject(){return this.config.deliver_policy=bt.LastPerSubject,this}deliverLast(){return this.config.deliver_policy=bt.Last,this}deliverNew(){return this.config.deliver_policy=bt.New,this}startAtTimeDelta(t){return this.startTime(new Date(Date.now()-t)),this}headersOnly(){return this.config.headers_only=!0,this}ackNone(){return this.config.ack_policy=Nt.None,this}ackAll(){return this.config.ack_policy=Nt.All,this}ackExplicit(){return this.config.ack_policy=Nt.Explicit,this}ackWait(t){return this.config.ack_wait=at(t),this}maxDeliver(t){return this.config.max_deliver=t,this}filterSubject(t){return this.filters=this.filters||[],this.filters.push(t),this}replayInstantly(){return this.config.replay_policy=Fs.Instant,this}replayOriginal(){return this.config.replay_policy=Fs.Original,this}sample(t){if(t=Math.trunc(t),t<0||t>100)throw new Error("value must be between 0-100");return this.config.sample_freq=`${t}%`,this}limit(t){return this.config.rate_limit_bps=t,this}maxWaiting(t){return this.config.max_waiting=t,this}maxAckPending(t){return this.config.max_ack_pending=t,this}idleHeartbeat(t){return this.config.idle_heartbeat=at(t),this}flowControl(){return this.config.flow_control=!0,this}deliverGroup(t){return this.queue(t),this}manualAck(){return this.mack=!0,this}maxMessages(t){return this.max=t,this}callback(t){return this.callbackFn=t,this}queue(t){return this.qname=t,this.config.deliver_group=t,this}orderedConsumer(){return this.ordered=!0,this}bind(t,r){return this.stream=t,this.config.durable_name=r,this.isBind=!0,this}bindStream(t){return this.stream=t,this}inactiveEphemeralThreshold(t){return this.config.inactive_threshold=at(t),this}maxPullBatch(t){return this.config.max_batch=t,this}maxPullRequestExpires(t){return this.config.max_expires=at(t),this}memory(){return this.config.mem_storage=!0,this}numReplicas(t){return this.config.num_replicas=t,this}consumerName(t){return this.config.name=t,this}}function li(i){return new dS(i)}function sy(i){return typeof i.getOpts=="function"}class mS{static encode(t){if(typeof t=="string")return btoa(t);const r=Array.from(t);return btoa(String.fromCharCode(...r))}static decode(t,r=!1){const s=atob(t);return r?Uint8Array.from(s,l=>l.charCodeAt(0)):s}}class Is{static encode(t){return Is.toB64URLEncoding(mS.encode(t))}static decode(t,r=!1){return Is.decode(Is.fromB64URLEncoding(t),r)}static toB64URLEncoding(t){return t.replace(/\+/g,"-").replace(/\//g,"_")}static fromB64URLEncoding(t){return t.replace(/_/g,"/").replace(/-/g,"+")}}class Vs{constructor(){A(this,"buffers");A(this,"byteLength");this.buffers=[],this.byteLength=0}static concat(...t){let r=0;for(let c=0;c<t.length;c++)r+=t[c].length;const s=new Uint8Array(r);let l=0;for(let c=0;c<t.length;c++)s.set(t[c],l),l+=t[c].length;return s}static fromAscii(t){return t||(t=""),Hi.encode(t)}static toAscii(t){return hn.decode(t)}reset(){this.buffers.length=0,this.byteLength=0}pack(){if(this.buffers.length>1){const t=new Uint8Array(this.byteLength);let r=0;for(let s=0;s<this.buffers.length;s++)t.set(this.buffers[s],r),r+=this.buffers[s].length;this.buffers.length=0,this.buffers.push(t)}}shift(){if(this.buffers.length){const t=this.buffers.shift();if(t)return this.byteLength-=t.length,t}return new Uint8Array(0)}drain(t){if(this.buffers.length){this.pack();const r=this.buffers.pop();if(r){const s=this.byteLength;(t===void 0||t>s)&&(t=s);const l=r.subarray(0,t);return s>t&&this.buffers.push(r.subarray(t)),this.byteLength=s-t,l}}return new Uint8Array(0)}fill(t,...r){t&&(this.buffers.push(t),this.byteLength+=t.length);for(let s=0;s<r.length;s++)r[s]&&r[s].length&&(this.buffers.push(r[s]),this.byteLength+=r[s].length)}peek(){return this.buffers.length?(this.pack(),this.buffers[0]):new Uint8Array(0)}size(){return this.byteLength}length(){return this.buffers.length}}function pS(i,t){return t.forEach(function(r){r&&typeof r!="string"&&!Array.isArray(r)&&Object.keys(r).forEach(function(s){if(s!=="default"&&!(s in i)){var l=Object.getOwnPropertyDescriptor(r,s);Object.defineProperty(i,s,l.get?l:{enumerable:!0,get:function(){return r[s]}})}})}),Object.freeze(i)}var gS=typeof global<"u"?global:typeof self<"u"?self:typeof window<"u"?window:{},Fa=gS.performance||{};Fa.now||Fa.mozNow||Fa.msNow||Fa.oNow||Fa.webkitNow;var ay={versions:{}},yS=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function bS(i){if(i.__esModule)return i;var t=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(i).forEach(function(r){var s=Object.getOwnPropertyDescriptor(i,r);Object.defineProperty(t,r,s.get?s:{enumerable:!0,get:function(){return i[r]}})}),t}var qh,fu={exports:{}},oy={},ly=bS(pS({__proto__:null,default:oy},[oy]));qh=fu,(function(){var i="input is invalid type",t=typeof window=="object",r=t?window:{};r.JS_SHA256_NO_WINDOW&&(t=!1);var s=!t&&typeof self=="object",l=!r.JS_SHA256_NO_NODE_JS&&ay.versions&&ay.versions.node;l?r=yS:s&&(r=self);var c=!r.JS_SHA256_NO_COMMON_JS&&qh.exports,d=!r.JS_SHA256_NO_ARRAY_BUFFER&&typeof ArrayBuffer<"u",g="0123456789abcdef".split(""),y=[-2147483648,8388608,32768,128],f=[24,16,8,0],m=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],b=["hex","array","digest","arrayBuffer"],v=[];!r.JS_SHA256_NO_NODE_JS&&Array.isArray||(Array.isArray=function(C){return Object.prototype.toString.call(C)==="[object Array]"}),!d||!r.JS_SHA256_NO_ARRAY_BUFFER_IS_VIEW&&ArrayBuffer.isView||(ArrayBuffer.isView=function(C){return typeof C=="object"&&C.buffer&&C.buffer.constructor===ArrayBuffer});var _=function(C,P){return function(ie){return new U(P,!0).update(ie)[C]()}},w=function(C){var P=_("hex",C);l&&(P=S(P,C)),P.create=function(){return new U(C)},P.update=function(L){return P.create().update(L)};for(var ie=0;ie<b.length;++ie){var X=b[ie];P[X]=_(X,C)}return P},S=function(C,P){var ie,X=ly,L=ly.Buffer,G=P?"sha224":"sha256";return ie=L.from&&!r.JS_SHA256_NO_BUFFER_FROM?L.from:function(W){return new L(W)},function(W){if(typeof W=="string")return X.createHash(G).update(W,"utf8").digest("hex");if(W==null)throw new Error(i);return W.constructor===ArrayBuffer&&(W=new Uint8Array(W)),Array.isArray(W)||ArrayBuffer.isView(W)||W.constructor===L?X.createHash(G).update(ie(W)).digest("hex"):C(W)}},M=function(C,P){return function(ie,X){return new re(ie,P,!0).update(X)[C]()}},B=function(C){var P=M("hex",C);P.create=function(L){return new re(L,C)},P.update=function(L,G){return P.create(L).update(G)};for(var ie=0;ie<b.length;++ie){var X=b[ie];P[X]=M(X,C)}return P};function U(C,P){P?(v[0]=v[16]=v[1]=v[2]=v[3]=v[4]=v[5]=v[6]=v[7]=v[8]=v[9]=v[10]=v[11]=v[12]=v[13]=v[14]=v[15]=0,this.blocks=v):this.blocks=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],C?(this.h0=3238371032,this.h1=914150663,this.h2=812702999,this.h3=4144912697,this.h4=4290775857,this.h5=1750603025,this.h6=1694076839,this.h7=3204075428):(this.h0=1779033703,this.h1=3144134277,this.h2=1013904242,this.h3=2773480762,this.h4=1359893119,this.h5=2600822924,this.h6=528734635,this.h7=1541459225),this.block=this.start=this.bytes=this.hBytes=0,this.finalized=this.hashed=!1,this.first=!0,this.is224=C}function re(C,P,ie){var X,L=typeof C;if(L==="string"){var G,W=[],J=C.length,he=0;for(X=0;X<J;++X)(G=C.charCodeAt(X))<128?W[he++]=G:G<2048?(W[he++]=192|G>>>6,W[he++]=128|63&G):G<55296||G>=57344?(W[he++]=224|G>>>12,W[he++]=128|G>>>6&63,W[he++]=128|63&G):(G=65536+((1023&G)<<10|1023&C.charCodeAt(++X)),W[he++]=240|G>>>18,W[he++]=128|G>>>12&63,W[he++]=128|G>>>6&63,W[he++]=128|63&G);C=W}else{if(L!=="object")throw new Error(i);if(C===null)throw new Error(i);if(d&&C.constructor===ArrayBuffer)C=new Uint8Array(C);else if(!(Array.isArray(C)||d&&ArrayBuffer.isView(C)))throw new Error(i)}C.length>64&&(C=new U(P,!0).update(C).array());var xe=[],Ne=[];for(X=0;X<64;++X){var Y=C[X]||0;xe[X]=92^Y,Ne[X]=54^Y}U.call(this,P,ie),this.update(Ne),this.oKeyPad=xe,this.inner=!0,this.sharedMemory=ie}U.prototype.update=function(C){if(!this.finalized){var P,ie=typeof C;if(ie!=="string"){if(ie!=="object")throw new Error(i);if(C===null)throw new Error(i);if(d&&C.constructor===ArrayBuffer)C=new Uint8Array(C);else if(!(Array.isArray(C)||d&&ArrayBuffer.isView(C)))throw new Error(i);P=!0}for(var X,L,G=0,W=C.length,J=this.blocks;G<W;){if(this.hashed&&(this.hashed=!1,J[0]=this.block,this.block=J[16]=J[1]=J[2]=J[3]=J[4]=J[5]=J[6]=J[7]=J[8]=J[9]=J[10]=J[11]=J[12]=J[13]=J[14]=J[15]=0),P)for(L=this.start;G<W&&L<64;++G)J[L>>>2]|=C[G]<<f[3&L++];else for(L=this.start;G<W&&L<64;++G)(X=C.charCodeAt(G))<128?J[L>>>2]|=X<<f[3&L++]:X<2048?(J[L>>>2]|=(192|X>>>6)<<f[3&L++],J[L>>>2]|=(128|63&X)<<f[3&L++]):X<55296||X>=57344?(J[L>>>2]|=(224|X>>>12)<<f[3&L++],J[L>>>2]|=(128|X>>>6&63)<<f[3&L++],J[L>>>2]|=(128|63&X)<<f[3&L++]):(X=65536+((1023&X)<<10|1023&C.charCodeAt(++G)),J[L>>>2]|=(240|X>>>18)<<f[3&L++],J[L>>>2]|=(128|X>>>12&63)<<f[3&L++],J[L>>>2]|=(128|X>>>6&63)<<f[3&L++],J[L>>>2]|=(128|63&X)<<f[3&L++]);this.lastByteIndex=L,this.bytes+=L-this.start,L>=64?(this.block=J[16],this.start=L-64,this.hash(),this.hashed=!0):this.start=L}return this.bytes>4294967295&&(this.hBytes+=this.bytes/4294967296|0,this.bytes=this.bytes%4294967296),this}},U.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var C=this.blocks,P=this.lastByteIndex;C[16]=this.block,C[P>>>2]|=y[3&P],this.block=C[16],P>=56&&(this.hashed||this.hash(),C[0]=this.block,C[16]=C[1]=C[2]=C[3]=C[4]=C[5]=C[6]=C[7]=C[8]=C[9]=C[10]=C[11]=C[12]=C[13]=C[14]=C[15]=0),C[14]=this.hBytes<<3|this.bytes>>>29,C[15]=this.bytes<<3,this.hash()}},U.prototype.hash=function(){var C,P,ie,X,L,G,W,J,he,xe=this.h0,Ne=this.h1,Y=this.h2,ae=this.h3,de=this.h4,Oe=this.h5,oe=this.h6,je=this.h7,Se=this.blocks;for(C=16;C<64;++C)P=((L=Se[C-15])>>>7|L<<25)^(L>>>18|L<<14)^L>>>3,ie=((L=Se[C-2])>>>17|L<<15)^(L>>>19|L<<13)^L>>>10,Se[C]=Se[C-16]+P+Se[C-7]+ie|0;for(he=Ne&Y,C=0;C<64;C+=4)this.first?(this.is224?(G=300032,je=(L=Se[0]-1413257819)-150054599|0,ae=L+24177077|0):(G=704751109,je=(L=Se[0]-210244248)-1521486534|0,ae=L+143694565|0),this.first=!1):(P=(xe>>>2|xe<<30)^(xe>>>13|xe<<19)^(xe>>>22|xe<<10),X=(G=xe&Ne)^xe&Y^he,je=ae+(L=je+(ie=(de>>>6|de<<26)^(de>>>11|de<<21)^(de>>>25|de<<7))+(de&Oe^~de&oe)+m[C]+Se[C])|0,ae=L+(P+X)|0),P=(ae>>>2|ae<<30)^(ae>>>13|ae<<19)^(ae>>>22|ae<<10),X=(W=ae&xe)^ae&Ne^G,oe=Y+(L=oe+(ie=(je>>>6|je<<26)^(je>>>11|je<<21)^(je>>>25|je<<7))+(je&de^~je&Oe)+m[C+1]+Se[C+1])|0,P=((Y=L+(P+X)|0)>>>2|Y<<30)^(Y>>>13|Y<<19)^(Y>>>22|Y<<10),X=(J=Y&ae)^Y&xe^W,Oe=Ne+(L=Oe+(ie=(oe>>>6|oe<<26)^(oe>>>11|oe<<21)^(oe>>>25|oe<<7))+(oe&je^~oe&de)+m[C+2]+Se[C+2])|0,P=((Ne=L+(P+X)|0)>>>2|Ne<<30)^(Ne>>>13|Ne<<19)^(Ne>>>22|Ne<<10),X=(he=Ne&Y)^Ne&ae^J,de=xe+(L=de+(ie=(Oe>>>6|Oe<<26)^(Oe>>>11|Oe<<21)^(Oe>>>25|Oe<<7))+(Oe&oe^~Oe&je)+m[C+3]+Se[C+3])|0,xe=L+(P+X)|0,this.chromeBugWorkAround=!0;this.h0=this.h0+xe|0,this.h1=this.h1+Ne|0,this.h2=this.h2+Y|0,this.h3=this.h3+ae|0,this.h4=this.h4+de|0,this.h5=this.h5+Oe|0,this.h6=this.h6+oe|0,this.h7=this.h7+je|0},U.prototype.hex=function(){this.finalize();var C=this.h0,P=this.h1,ie=this.h2,X=this.h3,L=this.h4,G=this.h5,W=this.h6,J=this.h7,he=g[C>>>28&15]+g[C>>>24&15]+g[C>>>20&15]+g[C>>>16&15]+g[C>>>12&15]+g[C>>>8&15]+g[C>>>4&15]+g[15&C]+g[P>>>28&15]+g[P>>>24&15]+g[P>>>20&15]+g[P>>>16&15]+g[P>>>12&15]+g[P>>>8&15]+g[P>>>4&15]+g[15&P]+g[ie>>>28&15]+g[ie>>>24&15]+g[ie>>>20&15]+g[ie>>>16&15]+g[ie>>>12&15]+g[ie>>>8&15]+g[ie>>>4&15]+g[15&ie]+g[X>>>28&15]+g[X>>>24&15]+g[X>>>20&15]+g[X>>>16&15]+g[X>>>12&15]+g[X>>>8&15]+g[X>>>4&15]+g[15&X]+g[L>>>28&15]+g[L>>>24&15]+g[L>>>20&15]+g[L>>>16&15]+g[L>>>12&15]+g[L>>>8&15]+g[L>>>4&15]+g[15&L]+g[G>>>28&15]+g[G>>>24&15]+g[G>>>20&15]+g[G>>>16&15]+g[G>>>12&15]+g[G>>>8&15]+g[G>>>4&15]+g[15&G]+g[W>>>28&15]+g[W>>>24&15]+g[W>>>20&15]+g[W>>>16&15]+g[W>>>12&15]+g[W>>>8&15]+g[W>>>4&15]+g[15&W];return this.is224||(he+=g[J>>>28&15]+g[J>>>24&15]+g[J>>>20&15]+g[J>>>16&15]+g[J>>>12&15]+g[J>>>8&15]+g[J>>>4&15]+g[15&J]),he},U.prototype.toString=U.prototype.hex,U.prototype.digest=function(){this.finalize();var C=this.h0,P=this.h1,ie=this.h2,X=this.h3,L=this.h4,G=this.h5,W=this.h6,J=this.h7,he=[C>>>24&255,C>>>16&255,C>>>8&255,255&C,P>>>24&255,P>>>16&255,P>>>8&255,255&P,ie>>>24&255,ie>>>16&255,ie>>>8&255,255&ie,X>>>24&255,X>>>16&255,X>>>8&255,255&X,L>>>24&255,L>>>16&255,L>>>8&255,255&L,G>>>24&255,G>>>16&255,G>>>8&255,255&G,W>>>24&255,W>>>16&255,W>>>8&255,255&W];return this.is224||he.push(J>>>24&255,J>>>16&255,J>>>8&255,255&J),he},U.prototype.array=U.prototype.digest,U.prototype.arrayBuffer=function(){this.finalize();var C=new ArrayBuffer(this.is224?28:32),P=new DataView(C);return P.setUint32(0,this.h0),P.setUint32(4,this.h1),P.setUint32(8,this.h2),P.setUint32(12,this.h3),P.setUint32(16,this.h4),P.setUint32(20,this.h5),P.setUint32(24,this.h6),this.is224||P.setUint32(28,this.h7),C},re.prototype=new U,re.prototype.finalize=function(){if(U.prototype.finalize.call(this),this.inner){this.inner=!1;var C=this.array();U.call(this,this.is224,this.sharedMemory),this.update(this.oKeyPad),this.update(C),U.prototype.finalize.call(this)}};var ce=w();ce.sha256=ce,ce.sha224=w(!0),ce.sha256.hmac=B(),ce.sha224.hmac=B(!0),c?qh.exports=ce:(r.sha256=ce.sha256,r.sha224=ce.sha224)})();fu.exports;fu.exports.sha224;var cy=fu.exports.sha256;function id(i){return ES(i)}function vS(i){if(!/^[0-9A-Fa-f]+$/.test(i))return!1;const r=/^[0-9A-F]+$/.test(i),s=/^[0-9a-f]+$/.test(i);return r||s?i.length%2===0:!1}function xS(i){return/^[A-Za-z0-9\-_]*(={0,2})?$/.test(i)||/^[A-Za-z0-9+/]*(={0,2})?$/.test(i)}function _S(i){return vS(i)?"hex":xS(i)?"b64":""}function wS(i){if(i.length%2!==0)throw new Error("hex string must have an even length");const t=new Uint8Array(i.length/2);for(let r=0;r<i.length;r+=2)t[r/2]=parseInt(i.substring(r,r+2),16);return t}function SS(i){i=i.replace(/-/g,"+"),i=i.replace(/_/g,"/");const t=atob(i);return Uint8Array.from(t,r=>r.charCodeAt(0))}function ES(i){switch(_S(i)){case"hex":return wS(i);case"b64":return SS(i)}return null}function OS(i,t){const r=typeof i=="string"?id(i):i,s=typeof t=="string"?id(t):t;if(r===null||s===null||r.length!==s.length)return!1;for(let l=0;l<r.length;l++)if(r[l]!==s[l])return!1;return!0}class xb{constructor(t,r,s=!0){A(this,"token");A(this,"received");A(this,"ctx");A(this,"requestSubject");A(this,"mux");this.mux=t,this.requestSubject=r,this.received=0,this.token=fi.next(),s&&(this.ctx=new Error)}}class AS extends xb{constructor(r,s,l={maxWait:1e3}){super(r,s);A(this,"callback");A(this,"done");A(this,"timer");A(this,"max");A(this,"opts");if(this.opts=l,typeof this.opts.callback!="function")throw new Error("callback is required");this.callback=this.opts.callback,this.max=typeof l.maxMessages=="number"&&l.maxMessages>0?l.maxMessages:-1,this.done=ot(),this.done.then(()=>{this.callback(null,null)}),this.timer=setTimeout(()=>{this.cancel()},l.maxWait)}cancel(r){r&&this.callback(r,null),clearTimeout(this.timer),this.mux.cancel(this),this.done.resolve()}resolver(r,s){r?(this.ctx&&(r.stack+=`
|
|
32
|
+
`:s="\\n";break;case"\r":s="\\r";break;case" ":s="\\t";break}throw Error(`invalid ${i} name - ${i} name cannot contain '${s}'`)}}),""}function no(i,t=""){if(t==="")throw Error(`${i} name required`);const r=lS(t);if(r.length)throw new Error(`invalid ${i} name - ${i} name ${r}`)}function lS(i=""){if(i==="")throw Error("name required");const t=/^[-\w]+$/g;if(i.match(t)===null){for(const s of i.split(""))if(s.match(t)===null)return`cannot contain '${s}'`}return""}function ed(i){if(i.data.length>0)return!1;const t=i.headers;return t?t.code>=100&&t.code<200:!1}function td(i){var t;return ed(i)&&((t=i.headers)==null?void 0:t.description)==="Idle Heartbeat"}function cS(i,t,r){const s=Er(i,t),l={hdr:1,sid:0,size:0},c=new Td(l,mn,{});return c._headers=s,c._subject=r,c}function zs(i){if(i.data.length!==0)return null;const t=i.headers;return t?xb(t.code,t.description):null}var kn;(function(i){i.MaxBatchExceeded="exceeded maxrequestbatch of",i.MaxExpiresExceeded="exceeded maxrequestexpires of",i.MaxBytesExceeded="exceeded maxrequestmaxbytes of",i.MaxMessageSizeExceeded="message size exceeds maxbytes",i.PushConsumer="consumer is push based",i.MaxWaitingExceeded="exceeded maxwaiting",i.IdleHeartbeatMissed="idle heartbeats missed",i.ConsumerDeleted="consumer deleted"})(kn||(kn={}));function uS(i){return i.code!==le.JetStream409?!1:[kn.MaxBatchExceeded,kn.MaxExpiresExceeded,kn.MaxBytesExceeded,kn.MaxMessageSizeExceeded,kn.PushConsumer,kn.IdleHeartbeatMissed,kn.ConsumerDeleted].find(r=>i.message.indexOf(r)!==-1)!==void 0}function xb(i,t=""){if(i<300)return null;switch(t=t.toLowerCase(),i){case 404:return new me(t,le.JetStream404NoMessages);case 408:return new me(t,le.JetStream408RequestTimeout);case 409:{const r=t.startsWith(kn.IdleHeartbeatMissed)?le.JetStreamIdleHeartBeat:le.JetStream409;return new me(t,r)}case 503:return me.errorForCode(le.JetStreamNotEnabled,new Error(t));default:return t===""&&(t=le.Unknown),new me(t,`${i}`)}}class kt{constructor(){A(this,"inflight");A(this,"processed");A(this,"received");A(this,"noIterator");A(this,"iterClosed");A(this,"done");A(this,"signal");A(this,"yields");A(this,"filtered");A(this,"pendingFiltered");A(this,"ingestionFilterFn");A(this,"protocolFilterFn");A(this,"dispatchedFn");A(this,"ctx");A(this,"_data");A(this,"err");A(this,"time");A(this,"yielding");this.inflight=0,this.filtered=0,this.pendingFiltered=0,this.processed=0,this.received=0,this.noIterator=!1,this.done=!1,this.signal=ot(),this.yields=[],this.iterClosed=ot(),this.time=0,this.yielding=!1}[Symbol.asyncIterator](){return this.iterate()}push(t){if(this.done)return;if(typeof t=="function"){this.yields.push(t),this.signal.resolve();return}const{ingest:r,protocol:s}=this.ingestionFilterFn?this.ingestionFilterFn(t,this.ctx||this):{ingest:!0,protocol:!1};r&&(s&&(this.filtered++,this.pendingFiltered++),this.yields.push(t),this.signal.resolve())}async*iterate(){if(this.noIterator)throw new me("unsupported iterator",le.ApiError);if(this.yielding)throw new me("already yielding",le.ApiError);this.yielding=!0;try{for(;;){if(this.yields.length===0&&await this.signal,this.err)throw this.err;const t=this.yields;this.inflight=t.length,this.yields=[];for(let r=0;r<t.length;r++){if(typeof t[r]=="function"){const l=t[r];try{l()}catch(c){throw c}if(this.err)throw this.err;continue}if(this.protocolFilterFn?this.protocolFilterFn(t[r]):!0){this.processed++;const l=Date.now();yield t[r],this.time=Date.now()-l,this.dispatchedFn&&t[r]&&this.dispatchedFn(t[r])}else this.pendingFiltered--;this.inflight--}if(this.done)break;this.yields.length===0&&(t.length=0,this.yields=t,this.signal=ot())}}finally{this.stop()}}stop(t){this.done||(this.err=t,this.done=!0,this.signal.resolve(),this.iterClosed.resolve(t))}getProcessed(){return this.noIterator?this.received:this.processed}getPending(){return this.yields.length+this.inflight-this.pendingFiltered}getReceived(){return this.received-this.filtered}}class Nd{constructor(t,r,s={maxOut:2}){A(this,"interval");A(this,"maxOut");A(this,"cancelAfter");A(this,"timer");A(this,"autoCancelTimer");A(this,"last");A(this,"missed");A(this,"count");A(this,"callback");this.interval=t,this.maxOut=(s==null?void 0:s.maxOut)||2,this.cancelAfter=(s==null?void 0:s.cancelAfter)||0,this.last=Date.now(),this.missed=0,this.count=0,this.callback=r,this._schedule()}cancel(){this.autoCancelTimer&&clearTimeout(this.autoCancelTimer),this.timer&&clearInterval(this.timer),this.timer=0,this.autoCancelTimer=0,this.missed=0}work(){this.last=Date.now(),this.missed=0}_change(t,r=0,s=2){this.interval=t,this.maxOut=s,this.cancelAfter=r,this.restart()}restart(){this.cancel(),this._schedule()}_schedule(){this.cancelAfter>0&&(this.autoCancelTimer=setTimeout(()=>{this.cancel()},this.cancelAfter)),this.timer=setInterval(()=>{if(this.count++,Date.now()-this.last>this.interval&&this.missed++,this.missed>=this.maxOut)try{this.callback(this.missed)===!0&&this.cancel()}catch(t){console.log(t)}},this.interval)}}var nd;(function(i){i.Limits="limits",i.Interest="interest",i.Workqueue="workqueue"})(nd||(nd={}));var uo;(function(i){i.Old="old",i.New="new"})(uo||(uo={}));var rd;(function(i){i.File="file",i.Memory="memory"})(rd||(rd={}));var bt;(function(i){i.All="all",i.Last="last",i.New="new",i.StartSequence="by_start_sequence",i.StartTime="by_start_time",i.LastPerSubject="last_per_subject"})(bt||(bt={}));var Tt;(function(i){i.None="none",i.All="all",i.Explicit="explicit",i.NotSet=""})(Tt||(Tt={}));var Fs;(function(i){i.Instant="instant",i.Original="original"})(Fs||(Fs={}));var hi;(function(i){i.None="none",i.S2="s2"})(hi||(hi={}));var Qc;(function(i){i.CreateOrUpdate="",i.Update="update",i.Create="create"})(Qc||(Qc={}));function fS(i,t={}){return Object.assign({name:i,deliver_policy:bt.All,ack_policy:Tt.Explicit,ack_wait:at(30*1e3),replay_policy:Fs.Instant},t)}var rg;(function(i){i.API="api_audit",i.StreamAction="stream_action",i.ConsumerAction="consumer_action",i.SnapshotCreate="snapshot_create",i.SnapshotComplete="snapshot_complete",i.RestoreCreate="restore_create",i.RestoreComplete="restore_complete",i.MaxDeliver="max_deliver",i.Terminated="terminated",i.Ack="consumer_ack",i.StreamLeaderElected="stream_leader_elected",i.StreamQuorumLost="stream_quorum_lost",i.ConsumerLeaderElected="consumer_leader_elected",i.ConsumerQuorumLost="consumer_quorum_lost"})(rg||(rg={}));var Ht;(function(i){i.StreamSourceHdr="Nats-Stream-Source",i.LastConsumerSeqHdr="Nats-Last-Consumer",i.LastStreamSeqHdr="Nats-Last-Stream",i.ConsumerStalledHdr="Nats-Consumer-Stalled",i.MessageSizeHdr="Nats-Msg-Size",i.RollupHdr="Nats-Rollup",i.RollupValueSubject="sub",i.RollupValueAll="all",i.PendingMessagesHdr="Nats-Pending-Messages",i.PendingBytesHdr="Nats-Pending-Bytes"})(Ht||(Ht={}));var Un;(function(i){i.LastValue="",i.AllHistory="history",i.UpdatesOnly="updates"})(Un||(Un={}));var Bs;(function(i){i.Stream="Nats-Stream",i.Sequence="Nats-Sequence",i.TimeStamp="Nats-Time-Stamp",i.Subject="Nats-Subject"})(Bs||(Bs={}));var ig;(function(i){i.Stream="Nats-Stream",i.Subject="Nats-Subject",i.Sequence="Nats-Sequence",i.LastSequence="Nats-Last-Sequence",i.Size="Nats-Msg-Size"})(ig||(ig={}));const fn="KV_";class hS{constructor(t){A(this,"config");A(this,"ordered");A(this,"mack");A(this,"stream");A(this,"callbackFn");A(this,"max");A(this,"qname");A(this,"isBind");A(this,"filters");this.stream="",this.mack=!1,this.ordered=!1,this.config=fS("",t||{})}getOpts(){var r;const t={};if(t.config=Object.assign({},this.config),t.config.filter_subject&&(this.filterSubject(t.config.filter_subject),t.config.filter_subject=void 0),t.config.filter_subjects&&((r=t.config.filter_subjects)==null||r.forEach(s=>{this.filterSubject(s)}),t.config.filter_subjects=void 0),t.mack=this.mack,t.stream=this.stream,t.callbackFn=this.callbackFn,t.max=this.max,t.queue=this.qname,t.ordered=this.ordered,t.config.ack_policy=t.ordered?Tt.None:t.config.ack_policy,t.isBind=t.isBind||!1,this.filters)switch(this.filters.length){case 0:break;case 1:t.config.filter_subject=this.filters[0];break;default:t.config.filter_subjects=this.filters}return t}description(t){return this.config.description=t,this}deliverTo(t){return this.config.deliver_subject=t,this}durable(t){return Us(t),this.config.durable_name=t,this}startSequence(t){if(t<=0)throw new Error("sequence must be greater than 0");return this.config.deliver_policy=bt.StartSequence,this.config.opt_start_seq=t,this}startTime(t){return this.config.deliver_policy=bt.StartTime,this.config.opt_start_time=t.toISOString(),this}deliverAll(){return this.config.deliver_policy=bt.All,this}deliverLastPerSubject(){return this.config.deliver_policy=bt.LastPerSubject,this}deliverLast(){return this.config.deliver_policy=bt.Last,this}deliverNew(){return this.config.deliver_policy=bt.New,this}startAtTimeDelta(t){return this.startTime(new Date(Date.now()-t)),this}headersOnly(){return this.config.headers_only=!0,this}ackNone(){return this.config.ack_policy=Tt.None,this}ackAll(){return this.config.ack_policy=Tt.All,this}ackExplicit(){return this.config.ack_policy=Tt.Explicit,this}ackWait(t){return this.config.ack_wait=at(t),this}maxDeliver(t){return this.config.max_deliver=t,this}filterSubject(t){return this.filters=this.filters||[],this.filters.push(t),this}replayInstantly(){return this.config.replay_policy=Fs.Instant,this}replayOriginal(){return this.config.replay_policy=Fs.Original,this}sample(t){if(t=Math.trunc(t),t<0||t>100)throw new Error("value must be between 0-100");return this.config.sample_freq=`${t}%`,this}limit(t){return this.config.rate_limit_bps=t,this}maxWaiting(t){return this.config.max_waiting=t,this}maxAckPending(t){return this.config.max_ack_pending=t,this}idleHeartbeat(t){return this.config.idle_heartbeat=at(t),this}flowControl(){return this.config.flow_control=!0,this}deliverGroup(t){return this.queue(t),this}manualAck(){return this.mack=!0,this}maxMessages(t){return this.max=t,this}callback(t){return this.callbackFn=t,this}queue(t){return this.qname=t,this.config.deliver_group=t,this}orderedConsumer(){return this.ordered=!0,this}bind(t,r){return this.stream=t,this.config.durable_name=r,this.isBind=!0,this}bindStream(t){return this.stream=t,this}inactiveEphemeralThreshold(t){return this.config.inactive_threshold=at(t),this}maxPullBatch(t){return this.config.max_batch=t,this}maxPullRequestExpires(t){return this.config.max_expires=at(t),this}memory(){return this.config.mem_storage=!0,this}numReplicas(t){return this.config.num_replicas=t,this}consumerName(t){return this.config.name=t,this}}function li(i){return new hS(i)}function sg(i){return typeof i.getOpts=="function"}class dS{static encode(t){if(typeof t=="string")return btoa(t);const r=Array.from(t);return btoa(String.fromCharCode(...r))}static decode(t,r=!1){const s=atob(t);return r?Uint8Array.from(s,l=>l.charCodeAt(0)):s}}class Is{static encode(t){return Is.toB64URLEncoding(dS.encode(t))}static decode(t,r=!1){return Is.decode(Is.fromB64URLEncoding(t),r)}static toB64URLEncoding(t){return t.replace(/\+/g,"-").replace(/\//g,"_")}static fromB64URLEncoding(t){return t.replace(/_/g,"/").replace(/-/g,"+")}}class Vs{constructor(){A(this,"buffers");A(this,"byteLength");this.buffers=[],this.byteLength=0}static concat(...t){let r=0;for(let c=0;c<t.length;c++)r+=t[c].length;const s=new Uint8Array(r);let l=0;for(let c=0;c<t.length;c++)s.set(t[c],l),l+=t[c].length;return s}static fromAscii(t){return t||(t=""),Hi.encode(t)}static toAscii(t){return hn.decode(t)}reset(){this.buffers.length=0,this.byteLength=0}pack(){if(this.buffers.length>1){const t=new Uint8Array(this.byteLength);let r=0;for(let s=0;s<this.buffers.length;s++)t.set(this.buffers[s],r),r+=this.buffers[s].length;this.buffers.length=0,this.buffers.push(t)}}shift(){if(this.buffers.length){const t=this.buffers.shift();if(t)return this.byteLength-=t.length,t}return new Uint8Array(0)}drain(t){if(this.buffers.length){this.pack();const r=this.buffers.pop();if(r){const s=this.byteLength;(t===void 0||t>s)&&(t=s);const l=r.subarray(0,t);return s>t&&this.buffers.push(r.subarray(t)),this.byteLength=s-t,l}}return new Uint8Array(0)}fill(t,...r){t&&(this.buffers.push(t),this.byteLength+=t.length);for(let s=0;s<r.length;s++)r[s]&&r[s].length&&(this.buffers.push(r[s]),this.byteLength+=r[s].length)}peek(){return this.buffers.length?(this.pack(),this.buffers[0]):new Uint8Array(0)}size(){return this.byteLength}length(){return this.buffers.length}}function mS(i,t){return t.forEach(function(r){r&&typeof r!="string"&&!Array.isArray(r)&&Object.keys(r).forEach(function(s){if(s!=="default"&&!(s in i)){var l=Object.getOwnPropertyDescriptor(r,s);Object.defineProperty(i,s,l.get?l:{enumerable:!0,get:function(){return r[s]}})}})}),Object.freeze(i)}var pS=typeof global<"u"?global:typeof self<"u"?self:typeof window<"u"?window:{},Fa=pS.performance||{};Fa.now||Fa.mozNow||Fa.msNow||Fa.oNow||Fa.webkitNow;var ag={versions:{}},yS=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function gS(i){if(i.__esModule)return i;var t=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(i).forEach(function(r){var s=Object.getOwnPropertyDescriptor(i,r);Object.defineProperty(t,r,s.get?s:{enumerable:!0,get:function(){return i[r]}})}),t}var qh,fu={exports:{}},og={},lg=gS(mS({__proto__:null,default:og},[og]));qh=fu,(function(){var i="input is invalid type",t=typeof window=="object",r=t?window:{};r.JS_SHA256_NO_WINDOW&&(t=!1);var s=!t&&typeof self=="object",l=!r.JS_SHA256_NO_NODE_JS&&ag.versions&&ag.versions.node;l?r=yS:s&&(r=self);var c=!r.JS_SHA256_NO_COMMON_JS&&qh.exports,d=!r.JS_SHA256_NO_ARRAY_BUFFER&&typeof ArrayBuffer<"u",y="0123456789abcdef".split(""),g=[-2147483648,8388608,32768,128],f=[24,16,8,0],m=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],b=["hex","array","digest","arrayBuffer"],v=[];!r.JS_SHA256_NO_NODE_JS&&Array.isArray||(Array.isArray=function(C){return Object.prototype.toString.call(C)==="[object Array]"}),!d||!r.JS_SHA256_NO_ARRAY_BUFFER_IS_VIEW&&ArrayBuffer.isView||(ArrayBuffer.isView=function(C){return typeof C=="object"&&C.buffer&&C.buffer.constructor===ArrayBuffer});var _=function(C,P){return function(ie){return new U(P,!0).update(ie)[C]()}},w=function(C){var P=_("hex",C);l&&(P=S(P,C)),P.create=function(){return new U(C)},P.update=function(L){return P.create().update(L)};for(var ie=0;ie<b.length;++ie){var X=b[ie];P[X]=_(X,C)}return P},S=function(C,P){var ie,X=lg,L=lg.Buffer,G=P?"sha224":"sha256";return ie=L.from&&!r.JS_SHA256_NO_BUFFER_FROM?L.from:function(W){return new L(W)},function(W){if(typeof W=="string")return X.createHash(G).update(W,"utf8").digest("hex");if(W==null)throw new Error(i);return W.constructor===ArrayBuffer&&(W=new Uint8Array(W)),Array.isArray(W)||ArrayBuffer.isView(W)||W.constructor===L?X.createHash(G).update(ie(W)).digest("hex"):C(W)}},M=function(C,P){return function(ie,X){return new re(ie,P,!0).update(X)[C]()}},B=function(C){var P=M("hex",C);P.create=function(L){return new re(L,C)},P.update=function(L,G){return P.create(L).update(G)};for(var ie=0;ie<b.length;++ie){var X=b[ie];P[X]=M(X,C)}return P};function U(C,P){P?(v[0]=v[16]=v[1]=v[2]=v[3]=v[4]=v[5]=v[6]=v[7]=v[8]=v[9]=v[10]=v[11]=v[12]=v[13]=v[14]=v[15]=0,this.blocks=v):this.blocks=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],C?(this.h0=3238371032,this.h1=914150663,this.h2=812702999,this.h3=4144912697,this.h4=4290775857,this.h5=1750603025,this.h6=1694076839,this.h7=3204075428):(this.h0=1779033703,this.h1=3144134277,this.h2=1013904242,this.h3=2773480762,this.h4=1359893119,this.h5=2600822924,this.h6=528734635,this.h7=1541459225),this.block=this.start=this.bytes=this.hBytes=0,this.finalized=this.hashed=!1,this.first=!0,this.is224=C}function re(C,P,ie){var X,L=typeof C;if(L==="string"){var G,W=[],J=C.length,he=0;for(X=0;X<J;++X)(G=C.charCodeAt(X))<128?W[he++]=G:G<2048?(W[he++]=192|G>>>6,W[he++]=128|63&G):G<55296||G>=57344?(W[he++]=224|G>>>12,W[he++]=128|G>>>6&63,W[he++]=128|63&G):(G=65536+((1023&G)<<10|1023&C.charCodeAt(++X)),W[he++]=240|G>>>18,W[he++]=128|G>>>12&63,W[he++]=128|G>>>6&63,W[he++]=128|63&G);C=W}else{if(L!=="object")throw new Error(i);if(C===null)throw new Error(i);if(d&&C.constructor===ArrayBuffer)C=new Uint8Array(C);else if(!(Array.isArray(C)||d&&ArrayBuffer.isView(C)))throw new Error(i)}C.length>64&&(C=new U(P,!0).update(C).array());var xe=[],Te=[];for(X=0;X<64;++X){var Y=C[X]||0;xe[X]=92^Y,Te[X]=54^Y}U.call(this,P,ie),this.update(Te),this.oKeyPad=xe,this.inner=!0,this.sharedMemory=ie}U.prototype.update=function(C){if(!this.finalized){var P,ie=typeof C;if(ie!=="string"){if(ie!=="object")throw new Error(i);if(C===null)throw new Error(i);if(d&&C.constructor===ArrayBuffer)C=new Uint8Array(C);else if(!(Array.isArray(C)||d&&ArrayBuffer.isView(C)))throw new Error(i);P=!0}for(var X,L,G=0,W=C.length,J=this.blocks;G<W;){if(this.hashed&&(this.hashed=!1,J[0]=this.block,this.block=J[16]=J[1]=J[2]=J[3]=J[4]=J[5]=J[6]=J[7]=J[8]=J[9]=J[10]=J[11]=J[12]=J[13]=J[14]=J[15]=0),P)for(L=this.start;G<W&&L<64;++G)J[L>>>2]|=C[G]<<f[3&L++];else for(L=this.start;G<W&&L<64;++G)(X=C.charCodeAt(G))<128?J[L>>>2]|=X<<f[3&L++]:X<2048?(J[L>>>2]|=(192|X>>>6)<<f[3&L++],J[L>>>2]|=(128|63&X)<<f[3&L++]):X<55296||X>=57344?(J[L>>>2]|=(224|X>>>12)<<f[3&L++],J[L>>>2]|=(128|X>>>6&63)<<f[3&L++],J[L>>>2]|=(128|63&X)<<f[3&L++]):(X=65536+((1023&X)<<10|1023&C.charCodeAt(++G)),J[L>>>2]|=(240|X>>>18)<<f[3&L++],J[L>>>2]|=(128|X>>>12&63)<<f[3&L++],J[L>>>2]|=(128|X>>>6&63)<<f[3&L++],J[L>>>2]|=(128|63&X)<<f[3&L++]);this.lastByteIndex=L,this.bytes+=L-this.start,L>=64?(this.block=J[16],this.start=L-64,this.hash(),this.hashed=!0):this.start=L}return this.bytes>4294967295&&(this.hBytes+=this.bytes/4294967296|0,this.bytes=this.bytes%4294967296),this}},U.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var C=this.blocks,P=this.lastByteIndex;C[16]=this.block,C[P>>>2]|=g[3&P],this.block=C[16],P>=56&&(this.hashed||this.hash(),C[0]=this.block,C[16]=C[1]=C[2]=C[3]=C[4]=C[5]=C[6]=C[7]=C[8]=C[9]=C[10]=C[11]=C[12]=C[13]=C[14]=C[15]=0),C[14]=this.hBytes<<3|this.bytes>>>29,C[15]=this.bytes<<3,this.hash()}},U.prototype.hash=function(){var C,P,ie,X,L,G,W,J,he,xe=this.h0,Te=this.h1,Y=this.h2,ae=this.h3,de=this.h4,Oe=this.h5,oe=this.h6,je=this.h7,Se=this.blocks;for(C=16;C<64;++C)P=((L=Se[C-15])>>>7|L<<25)^(L>>>18|L<<14)^L>>>3,ie=((L=Se[C-2])>>>17|L<<15)^(L>>>19|L<<13)^L>>>10,Se[C]=Se[C-16]+P+Se[C-7]+ie|0;for(he=Te&Y,C=0;C<64;C+=4)this.first?(this.is224?(G=300032,je=(L=Se[0]-1413257819)-150054599|0,ae=L+24177077|0):(G=704751109,je=(L=Se[0]-210244248)-1521486534|0,ae=L+143694565|0),this.first=!1):(P=(xe>>>2|xe<<30)^(xe>>>13|xe<<19)^(xe>>>22|xe<<10),X=(G=xe&Te)^xe&Y^he,je=ae+(L=je+(ie=(de>>>6|de<<26)^(de>>>11|de<<21)^(de>>>25|de<<7))+(de&Oe^~de&oe)+m[C]+Se[C])|0,ae=L+(P+X)|0),P=(ae>>>2|ae<<30)^(ae>>>13|ae<<19)^(ae>>>22|ae<<10),X=(W=ae&xe)^ae&Te^G,oe=Y+(L=oe+(ie=(je>>>6|je<<26)^(je>>>11|je<<21)^(je>>>25|je<<7))+(je&de^~je&Oe)+m[C+1]+Se[C+1])|0,P=((Y=L+(P+X)|0)>>>2|Y<<30)^(Y>>>13|Y<<19)^(Y>>>22|Y<<10),X=(J=Y&ae)^Y&xe^W,Oe=Te+(L=Oe+(ie=(oe>>>6|oe<<26)^(oe>>>11|oe<<21)^(oe>>>25|oe<<7))+(oe&je^~oe&de)+m[C+2]+Se[C+2])|0,P=((Te=L+(P+X)|0)>>>2|Te<<30)^(Te>>>13|Te<<19)^(Te>>>22|Te<<10),X=(he=Te&Y)^Te&ae^J,de=xe+(L=de+(ie=(Oe>>>6|Oe<<26)^(Oe>>>11|Oe<<21)^(Oe>>>25|Oe<<7))+(Oe&oe^~Oe&je)+m[C+3]+Se[C+3])|0,xe=L+(P+X)|0,this.chromeBugWorkAround=!0;this.h0=this.h0+xe|0,this.h1=this.h1+Te|0,this.h2=this.h2+Y|0,this.h3=this.h3+ae|0,this.h4=this.h4+de|0,this.h5=this.h5+Oe|0,this.h6=this.h6+oe|0,this.h7=this.h7+je|0},U.prototype.hex=function(){this.finalize();var C=this.h0,P=this.h1,ie=this.h2,X=this.h3,L=this.h4,G=this.h5,W=this.h6,J=this.h7,he=y[C>>>28&15]+y[C>>>24&15]+y[C>>>20&15]+y[C>>>16&15]+y[C>>>12&15]+y[C>>>8&15]+y[C>>>4&15]+y[15&C]+y[P>>>28&15]+y[P>>>24&15]+y[P>>>20&15]+y[P>>>16&15]+y[P>>>12&15]+y[P>>>8&15]+y[P>>>4&15]+y[15&P]+y[ie>>>28&15]+y[ie>>>24&15]+y[ie>>>20&15]+y[ie>>>16&15]+y[ie>>>12&15]+y[ie>>>8&15]+y[ie>>>4&15]+y[15&ie]+y[X>>>28&15]+y[X>>>24&15]+y[X>>>20&15]+y[X>>>16&15]+y[X>>>12&15]+y[X>>>8&15]+y[X>>>4&15]+y[15&X]+y[L>>>28&15]+y[L>>>24&15]+y[L>>>20&15]+y[L>>>16&15]+y[L>>>12&15]+y[L>>>8&15]+y[L>>>4&15]+y[15&L]+y[G>>>28&15]+y[G>>>24&15]+y[G>>>20&15]+y[G>>>16&15]+y[G>>>12&15]+y[G>>>8&15]+y[G>>>4&15]+y[15&G]+y[W>>>28&15]+y[W>>>24&15]+y[W>>>20&15]+y[W>>>16&15]+y[W>>>12&15]+y[W>>>8&15]+y[W>>>4&15]+y[15&W];return this.is224||(he+=y[J>>>28&15]+y[J>>>24&15]+y[J>>>20&15]+y[J>>>16&15]+y[J>>>12&15]+y[J>>>8&15]+y[J>>>4&15]+y[15&J]),he},U.prototype.toString=U.prototype.hex,U.prototype.digest=function(){this.finalize();var C=this.h0,P=this.h1,ie=this.h2,X=this.h3,L=this.h4,G=this.h5,W=this.h6,J=this.h7,he=[C>>>24&255,C>>>16&255,C>>>8&255,255&C,P>>>24&255,P>>>16&255,P>>>8&255,255&P,ie>>>24&255,ie>>>16&255,ie>>>8&255,255&ie,X>>>24&255,X>>>16&255,X>>>8&255,255&X,L>>>24&255,L>>>16&255,L>>>8&255,255&L,G>>>24&255,G>>>16&255,G>>>8&255,255&G,W>>>24&255,W>>>16&255,W>>>8&255,255&W];return this.is224||he.push(J>>>24&255,J>>>16&255,J>>>8&255,255&J),he},U.prototype.array=U.prototype.digest,U.prototype.arrayBuffer=function(){this.finalize();var C=new ArrayBuffer(this.is224?28:32),P=new DataView(C);return P.setUint32(0,this.h0),P.setUint32(4,this.h1),P.setUint32(8,this.h2),P.setUint32(12,this.h3),P.setUint32(16,this.h4),P.setUint32(20,this.h5),P.setUint32(24,this.h6),this.is224||P.setUint32(28,this.h7),C},re.prototype=new U,re.prototype.finalize=function(){if(U.prototype.finalize.call(this),this.inner){this.inner=!1;var C=this.array();U.call(this,this.is224,this.sharedMemory),this.update(this.oKeyPad),this.update(C),U.prototype.finalize.call(this)}};var ce=w();ce.sha256=ce,ce.sha224=w(!0),ce.sha256.hmac=B(),ce.sha224.hmac=B(!0),c?qh.exports=ce:(r.sha256=ce.sha256,r.sha224=ce.sha224)})();fu.exports;fu.exports.sha224;var cg=fu.exports.sha256;function id(i){return SS(i)}function bS(i){if(!/^[0-9A-Fa-f]+$/.test(i))return!1;const r=/^[0-9A-F]+$/.test(i),s=/^[0-9a-f]+$/.test(i);return r||s?i.length%2===0:!1}function vS(i){return/^[A-Za-z0-9\-_]*(={0,2})?$/.test(i)||/^[A-Za-z0-9+/]*(={0,2})?$/.test(i)}function xS(i){return bS(i)?"hex":vS(i)?"b64":""}function _S(i){if(i.length%2!==0)throw new Error("hex string must have an even length");const t=new Uint8Array(i.length/2);for(let r=0;r<i.length;r+=2)t[r/2]=parseInt(i.substring(r,r+2),16);return t}function wS(i){i=i.replace(/-/g,"+"),i=i.replace(/_/g,"/");const t=atob(i);return Uint8Array.from(t,r=>r.charCodeAt(0))}function SS(i){switch(xS(i)){case"hex":return _S(i);case"b64":return wS(i)}return null}function ES(i,t){const r=typeof i=="string"?id(i):i,s=typeof t=="string"?id(t):t;if(r===null||s===null||r.length!==s.length)return!1;for(let l=0;l<r.length;l++)if(r[l]!==s[l])return!1;return!0}class _b{constructor(t,r,s=!0){A(this,"token");A(this,"received");A(this,"ctx");A(this,"requestSubject");A(this,"mux");this.mux=t,this.requestSubject=r,this.received=0,this.token=fi.next(),s&&(this.ctx=new Error)}}class OS extends _b{constructor(r,s,l={maxWait:1e3}){super(r,s);A(this,"callback");A(this,"done");A(this,"timer");A(this,"max");A(this,"opts");if(this.opts=l,typeof this.opts.callback!="function")throw new Error("callback is required");this.callback=this.opts.callback,this.max=typeof l.maxMessages=="number"&&l.maxMessages>0?l.maxMessages:-1,this.done=ot(),this.done.then(()=>{this.callback(null,null)}),this.timer=setTimeout(()=>{this.cancel()},l.maxWait)}cancel(r){r&&this.callback(r,null),clearTimeout(this.timer),this.mux.cancel(this),this.done.resolve()}resolver(r,s){r?(this.ctx&&(r.stack+=`
|
|
33
33
|
|
|
34
|
-
${this.ctx.stack}`),this.cancel(r)):(this.callback(null,s),this.opts.strategy===$n.Count&&(this.max--,this.max===0&&this.cancel()),this.opts.strategy===$n.JitterTimer&&(clearTimeout(this.timer),this.timer=setTimeout(()=>{this.cancel()},this.opts.jitter||300)),this.opts.strategy===$n.SentinelMsg&&s&&s.data.length===0&&this.cancel())}}class
|
|
34
|
+
${this.ctx.stack}`),this.cancel(r)):(this.callback(null,s),this.opts.strategy===$n.Count&&(this.max--,this.max===0&&this.cancel()),this.opts.strategy===$n.JitterTimer&&(clearTimeout(this.timer),this.timer=setTimeout(()=>{this.cancel()},this.opts.jitter||300)),this.opts.strategy===$n.SentinelMsg&&s&&s.data.length===0&&this.cancel())}}class wb extends _b{constructor(r,s,l={timeout:1e3},c=!0){super(r,s,c);A(this,"deferred");A(this,"timer");this.deferred=ot(),this.timer=Gs(l.timeout,c)}resolver(r,s){this.timer&&this.timer.cancel(),r?(this.ctx&&(r.stack+=`
|
|
35
35
|
|
|
36
|
-
${this.ctx.stack}`),this.deferred.reject(r)):this.deferred.resolve(s),this.cancel()}cancel(r){this.timer&&this.timer.cancel(),this.mux.cancel(this),this.deferred.reject(r||me.errorForCode(le.Cancelled))}}const
|
|
37
|
-
`,Wc=Vs.fromAscii(Ic),RS=new Uint8Array(Wc)[0],DS=new Uint8Array(Wc)[1];function qS(i){for(let t=0;t<i.length;t++){const r=t+1;if(i.byteLength>r&&i[t]===RS&&i[r]===DS)return r+1}return 0}function BS(i){const t=qS(i);if(t>0){const s=new Uint8Array(i).slice(0,t);return hn.decode(s)}return""}const LS=4,Sb=48,PS=65,US=97;function zS(i,t,r,s){const l=new Uint8Array(16);return[0,0,0,0,0,0,0,0,0,0,255,255].forEach((d,g)=>{l[g]=d}),l[12]=i,l[13]=t,l[14]=r,l[15]=s,l}function od(i){return IS(i)!==void 0}function IS(i){for(let t=0;t<i.length;t++)switch(i[t]){case".":return Eb(i);case":":return $S(i)}}function Eb(i){const t=new Uint8Array(4);for(let r=0;r<4;r++){if(i.length===0)return;if(r>0){if(i[0]!==".")return;i=i.substring(1)}const{n:s,c:l,ok:c}=HS(i);if(!c||s>255)return;i=i.substring(l),t[r]=s}return zS(t[0],t[1],t[2],t[3])}function $S(i){const t=new Uint8Array(16);let r=-1;if(i.length>=2&&i[0]===":"&&i[1]===":"&&(r=0,i=i.substring(2),i.length===0))return t;let s=0;for(;s<16;){const{n:l,c,ok:d}=GS(i);if(!d||l>65535)return;if(c<i.length&&i[c]==="."){if(r<0&&s!=12||s+4>16)return;const g=Eb(i);if(g===void 0)return;t[s]=g[12],t[s+1]=g[13],t[s+2]=g[14],t[s+3]=g[15],i="",s+=LS;break}if(t[s]=l>>8,t[s+1]=l,s+=2,i=i.substring(c),i.length===0)break;if(i[0]!==":"||i.length==1)return;if(i=i.substring(1),i[0]===":"){if(r>=0)return;if(r=s,i=i.substring(1),i.length===0)break}}if(i.length===0){if(s<16){if(r<0)return;const l=16-s;for(let c=s-1;c>=r;c--)t[c+l]=t[c];for(let c=r+l-1;c>=r;c--)t[c]=0}else if(r>=0)return;return t}}function HS(i){let t=0,r=0;for(t=0;t<i.length&&48<=i.charCodeAt(t)&&i.charCodeAt(t)<=57;t++)if(r=r*10+(i.charCodeAt(t)-Sb),r>=16777215)return{n:16777215,c:t,ok:!1};return t===0?{n:0,c:0,ok:!1}:{n:r,c:t,ok:!0}}function GS(i){let t=0,r=0;for(r=0;r<i.length;r++){if(48<=i.charCodeAt(r)&&i.charCodeAt(r)<=57)t*=16,t+=i.charCodeAt(r)-Sb;else if(97<=i.charCodeAt(r)&&i.charCodeAt(r)<=102)t*=16,t+=i.charCodeAt(r)-US+10;else if(65<=i.charCodeAt(r)&&i.charCodeAt(r)<=70)t*=16,t+=i.charCodeAt(r)-PS+10;else break;if(t>=16777215)return{n:0,c:r,ok:!1}}return r===0?{n:0,c:r,ok:!1}:{n:t,c:r,ok:!0}}function FS(i){return i.indexOf("[")!==-1||i.indexOf("::")!==-1?!1:i.indexOf(".")!==-1||i.split(":").length<=2}function ld(i){return!FS(i)}function VS(i){const t="::FFFF:",r=i.toUpperCase().indexOf(t);if(r!==-1&&i.indexOf(".")!==-1){let s=i.substring(r+t.length);return s=s.replace("[",""),s.replace("]","")}return i}function YS(i){i=i.trim(),i.match(/^(.*:\/\/)(.*)/m)&&(i=i.replace(/^(.*:\/\/)(.*)/gm,"$2")),i=VS(i),ld(i)&&i.indexOf("[")===-1&&(i=`[${i}]`);const t=ld(i)?i.match(/(]:)(\d+)/):i.match(/(:)(\d+)/),r=t&&t.length===3&&t[1]&&t[2]?parseInt(t[2]):4222,s=r===80?"https":"http",l=new URL(`${s}://${i}`);l.port=`${r}`;let c=l.hostname;return c.charAt(0)==="["&&(c=c.substring(1,c.length-1)),{listen:l.host,hostname:c,port:r}}class oo{constructor(t,r=!1){A(this,"src");A(this,"listen");A(this,"hostname");A(this,"port");A(this,"didConnect");A(this,"reconnects");A(this,"lastConnect");A(this,"gossiped");A(this,"tlsName");A(this,"resolves");this.src=t,this.tlsName="";const s=YS(t);this.listen=s.listen,this.hostname=s.hostname,this.port=s.port,this.didConnect=!1,this.reconnects=0,this.lastConnect=0,this.gossiped=r}toString(){return this.listen}async resolve(t){if(!t.fn||t.resolve===!1)return[this];const r=[];if(od(this.hostname))return[this];{const s=await t.fn(this.hostname);t.debug&&console.log(`resolve ${this.hostname} = ${s.join(",")}`);for(const l of s){const c=this.port===80?"https":"http",d=new URL(`${c}://${ld(l)?"["+l+"]":l}`);d.port=`${this.port}`;const g=new oo(d.host,!1);g.tlsName=this.hostname,r.push(g)}}return t.randomize&&yb(r),this.resolves=r,r}}class KS{constructor(t=[],r={}){A(this,"firstSelect");A(this,"servers");A(this,"currentServer");A(this,"tlsName");A(this,"randomize");this.firstSelect=!0,this.servers=[],this.tlsName="",this.randomize=r.randomize||!1;const s=Bh();t&&(t.forEach(l=>{l=s?s(l):l,this.servers.push(new oo(l))}),this.randomize&&(this.servers=yb(this.servers))),this.servers.length===0&&this.addServer(`${Zh}:${wb()}`,!1),this.currentServer=this.servers[0]}clear(){this.servers.length=0}updateTLSName(){const t=this.getCurrentServer();od(t.hostname)||(this.tlsName=t.hostname,this.servers.forEach(r=>{r.gossiped&&(r.tlsName=this.tlsName)}))}getCurrentServer(){return this.currentServer}addServer(t,r=!1){const s=Bh();t=s?s(t):t;const l=new oo(t,r);od(l.hostname)&&(l.tlsName=this.tlsName),this.servers.push(l)}selectServer(){if(this.firstSelect)return this.firstSelect=!1,this.currentServer;const t=this.servers.shift();return t&&(this.servers.push(t),this.currentServer=t),t}removeCurrentServer(){this.removeServer(this.currentServer)}removeServer(t){if(t){const r=this.servers.indexOf(t);this.servers.splice(r,1)}}length(){return this.servers.length}next(){return this.servers.length?this.servers[0]:void 0}getServers(){return this.servers}update(t,r){const s=[];let l=[];const c=Bh(),d=new Map;t.connect_urls&&t.connect_urls.length>0&&t.connect_urls.forEach(y=>{y=c?c(y,r):y;const f=new oo(y,!0);d.set(y,f)});const g=[];return this.servers.forEach((y,f)=>{const m=y.listen;y.gossiped&&this.currentServer.listen!==m&&d.get(m)===void 0&&g.push(f),d.delete(m)}),g.reverse(),g.forEach(y=>{const f=this.servers.splice(y,1);l=l.concat(f[0].listen)}),d.forEach((y,f)=>{this.servers.push(y),s.push(f)}),{added:s,deleted:l}}}class XS{constructor(){A(this,"baseInbox");A(this,"reqs");this.reqs=new Map}size(){return this.reqs.size}init(t){return this.baseInbox=`${Sr(t)}.`,this.baseInbox}add(t){isNaN(t.received)||(t.received=0),this.reqs.set(t.token,t)}get(t){return this.reqs.get(t)}cancel(t){this.reqs.delete(t.token)}getToken(t){const r=t.subject||"";return r.indexOf(this.baseInbox)===0?r.substring(this.baseInbox.length):null}all(){return Array.from(this.reqs.values())}handleError(t,r){if(r&&r.permissionContext){if(t)return this.all().forEach(l=>{l.resolver(r,{})}),!0;const s=r.permissionContext;if(s.operation==="publish"){const l=this.all().find(c=>c.requestSubject===s.subject);if(l)return l.resolver(r,{}),!0}}return!1}dispatcher(){return(t,r)=>{const s=this.getToken(r);if(s){const l=this.get(s);l&&(t===null&&r.headers&&(t=bb(r)),l.resolver(t,r))}}}close(){const t=me.errorForCode(le.Timeout);this.reqs.forEach(r=>{r.resolver(t,{})})}}class JS{constructor(t,r,s){A(this,"ph");A(this,"interval");A(this,"maxOut");A(this,"timer");A(this,"pendings");this.ph=t,this.interval=r,this.maxOut=s,this.pendings=[]}start(){this.cancel(),this._schedule()}cancel(t){this.timer&&(clearTimeout(this.timer),this.timer=void 0),this._reset(),t&&this.ph.disconnect()}_schedule(){this.timer=setTimeout(()=>{if(this.ph.dispatchStatus({type:Ps.PingTimer,data:`${this.pendings.length+1}`}),this.pendings.length===this.maxOut){this.cancel(!0);return}const t=ot();this.ph.flush(t).then(()=>{this._reset()}).catch(()=>{this.cancel()}),this.pendings.push(t),this._schedule()},this.interval)}_reset(){this.pendings=this.pendings.filter(t=>(t.resolve(),!1))}}class QS extends Error{constructor(t){super(t),this.name="AssertionError"}}function ZS(i,t="Assertion failed."){if(!i)throw new QS(t)}const uy=32*1024,Lh=2**32-2;function Vl(i,t,r=0){const s=t.byteLength-r;return i.byteLength>s&&(i=i.subarray(0,s)),t.set(i,r),i.byteLength}class Ph{constructor(t){A(this,"_buf");A(this,"_off");if(this._off=0,t==null){this._buf=new Uint8Array(0);return}this._buf=new Uint8Array(t)}bytes(t={copy:!0}){return t.copy===!1?this._buf.subarray(this._off):this._buf.slice(this._off)}empty(){return this._buf.byteLength<=this._off}get length(){return this._buf.byteLength-this._off}get capacity(){return this._buf.buffer.byteLength}truncate(t){if(t===0){this.reset();return}if(t<0||t>this.length)throw Error("bytes.Buffer: truncation out of range");this._reslice(this._off+t)}reset(){this._reslice(0),this._off=0}_tryGrowByReslice(t){const r=this._buf.byteLength;return t<=this.capacity-r?(this._reslice(r+t),r):-1}_reslice(t){ZS(t<=this._buf.buffer.byteLength),this._buf=new Uint8Array(this._buf.buffer,0,t)}readByte(){const t=new Uint8Array(1);return this.read(t)?t[0]:null}read(t){if(this.empty())return this.reset(),t.byteLength===0?0:null;const r=Vl(this._buf.subarray(this._off),t);return this._off+=r,r}writeByte(t){return this.write(Uint8Array.of(t))}writeString(t){return this.write(Hi.encode(t))}write(t){const r=this._grow(t.byteLength);return Vl(t,this._buf,r)}_grow(t){const r=this.length;r===0&&this._off!==0&&this.reset();const s=this._tryGrowByReslice(t);if(s>=0)return s;const l=this.capacity;if(t<=Math.floor(l/2)-r)Vl(this._buf.subarray(this._off),this._buf);else{if(l+t>Lh)throw new Error("The buffer cannot be grown beyond the maximum size.");{const c=new Uint8Array(Math.min(2*l+t,Lh));Vl(this._buf.subarray(this._off),c),this._buf=c}}return this._off=0,this._reslice(Math.min(r+t,Lh)),r}grow(t){if(t<0)throw Error("Buffer._grow: negative count");const r=this._grow(t);this._reslice(r)}readFrom(t){let r=0;const s=new Uint8Array(uy);for(;;){const l=this.capacity-this.length<uy,c=l?s:new Uint8Array(this._buf.buffer,this.length),d=t.read(c);if(d===null)return r;l?this.write(c.subarray(0,d)):this._reslice(this.length+d),r+=d}}}var $t;(function(i){i[i.OK=0]="OK",i[i.ERR=1]="ERR",i[i.MSG=2]="MSG",i[i.INFO=3]="INFO",i[i.PING=4]="PING",i[i.PONG=5]="PONG"})($t||($t={}));function fy(){const i={};return i.sid=-1,i.hdr=-1,i.size=-1,i}const WS=48;class hy{constructor(t){A(this,"dispatcher");A(this,"state");A(this,"as");A(this,"drop");A(this,"hdr");A(this,"ma");A(this,"argBuf");A(this,"msgBuf");this.dispatcher=t,this.state=ue.OP_START,this.as=0,this.drop=0,this.hdr=0}parse(t){let r;for(r=0;r<t.length;r++){const s=t[r];switch(this.state){case ue.OP_START:switch(s){case fe.M:case fe.m:this.state=ue.OP_M,this.hdr=-1,this.ma=fy();break;case fe.H:case fe.h:this.state=ue.OP_H,this.hdr=0,this.ma=fy();break;case fe.P:case fe.p:this.state=ue.OP_P;break;case fe.PLUS:this.state=ue.OP_PLUS;break;case fe.MINUS:this.state=ue.OP_MINUS;break;case fe.I:case fe.i:this.state=ue.OP_I;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_H:switch(s){case fe.M:case fe.m:this.state=ue.OP_M;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_M:switch(s){case fe.S:case fe.s:this.state=ue.OP_MS;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MS:switch(s){case fe.G:case fe.g:this.state=ue.OP_MSG;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MSG:switch(s){case fe.SPACE:case fe.TAB:this.state=ue.OP_MSG_SPC;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MSG_SPC:switch(s){case fe.SPACE:case fe.TAB:continue;default:this.state=ue.MSG_ARG,this.as=r}break;case ue.MSG_ARG:switch(s){case fe.CR:this.drop=1;break;case fe.NL:{const l=this.argBuf?this.argBuf.bytes():t.subarray(this.as,r-this.drop);this.processMsgArgs(l),this.drop=0,this.as=r+1,this.state=ue.MSG_PAYLOAD,r=this.as+this.ma.size-1;break}default:this.argBuf&&this.argBuf.writeByte(s)}break;case ue.MSG_PAYLOAD:if(this.msgBuf)if(this.msgBuf.length>=this.ma.size){const l=this.msgBuf.bytes({copy:!1});this.dispatcher.push({kind:$t.MSG,msg:this.ma,data:l}),this.argBuf=void 0,this.msgBuf=void 0,this.state=ue.MSG_END}else{let l=this.ma.size-this.msgBuf.length;const c=t.length-r;c<l&&(l=c),l>0?(this.msgBuf.write(t.subarray(r,r+l)),r=r+l-1):this.msgBuf.writeByte(s)}else r-this.as>=this.ma.size&&(this.dispatcher.push({kind:$t.MSG,msg:this.ma,data:t.subarray(this.as,r)}),this.argBuf=void 0,this.msgBuf=void 0,this.state=ue.MSG_END);break;case ue.MSG_END:switch(s){case fe.NL:this.drop=0,this.as=r+1,this.state=ue.OP_START;break;default:continue}break;case ue.OP_PLUS:switch(s){case fe.O:case fe.o:this.state=ue.OP_PLUS_O;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PLUS_O:switch(s){case fe.K:case fe.k:this.state=ue.OP_PLUS_OK;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PLUS_OK:switch(s){case fe.NL:this.dispatcher.push({kind:$t.OK}),this.drop=0,this.state=ue.OP_START;break}break;case ue.OP_MINUS:switch(s){case fe.E:case fe.e:this.state=ue.OP_MINUS_E;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MINUS_E:switch(s){case fe.R:case fe.r:this.state=ue.OP_MINUS_ER;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MINUS_ER:switch(s){case fe.R:case fe.r:this.state=ue.OP_MINUS_ERR;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MINUS_ERR:switch(s){case fe.SPACE:case fe.TAB:this.state=ue.OP_MINUS_ERR_SPC;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MINUS_ERR_SPC:switch(s){case fe.SPACE:case fe.TAB:continue;default:this.state=ue.MINUS_ERR_ARG,this.as=r}break;case ue.MINUS_ERR_ARG:switch(s){case fe.CR:this.drop=1;break;case fe.NL:{let l;this.argBuf?(l=this.argBuf.bytes(),this.argBuf=void 0):l=t.subarray(this.as,r-this.drop),this.dispatcher.push({kind:$t.ERR,data:l}),this.drop=0,this.as=r+1,this.state=ue.OP_START;break}default:this.argBuf&&this.argBuf.write(Uint8Array.of(s))}break;case ue.OP_P:switch(s){case fe.I:case fe.i:this.state=ue.OP_PI;break;case fe.O:case fe.o:this.state=ue.OP_PO;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PO:switch(s){case fe.N:case fe.n:this.state=ue.OP_PON;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PON:switch(s){case fe.G:case fe.g:this.state=ue.OP_PONG;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PONG:switch(s){case fe.NL:this.dispatcher.push({kind:$t.PONG}),this.drop=0,this.state=ue.OP_START;break}break;case ue.OP_PI:switch(s){case fe.N:case fe.n:this.state=ue.OP_PIN;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PIN:switch(s){case fe.G:case fe.g:this.state=ue.OP_PING;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PING:switch(s){case fe.NL:this.dispatcher.push({kind:$t.PING}),this.drop=0,this.state=ue.OP_START;break}break;case ue.OP_I:switch(s){case fe.N:case fe.n:this.state=ue.OP_IN;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_IN:switch(s){case fe.F:case fe.f:this.state=ue.OP_INF;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_INF:switch(s){case fe.O:case fe.o:this.state=ue.OP_INFO;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_INFO:switch(s){case fe.SPACE:case fe.TAB:this.state=ue.OP_INFO_SPC;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_INFO_SPC:switch(s){case fe.SPACE:case fe.TAB:continue;default:this.state=ue.INFO_ARG,this.as=r}break;case ue.INFO_ARG:switch(s){case fe.CR:this.drop=1;break;case fe.NL:{let l;this.argBuf?(l=this.argBuf.bytes(),this.argBuf=void 0):l=t.subarray(this.as,r-this.drop),this.dispatcher.push({kind:$t.INFO,data:l}),this.drop=0,this.as=r+1,this.state=ue.OP_START;break}default:this.argBuf&&this.argBuf.writeByte(s)}break;default:throw this.fail(t.subarray(r))}}(this.state===ue.MSG_ARG||this.state===ue.MINUS_ERR_ARG||this.state===ue.INFO_ARG)&&!this.argBuf&&(this.argBuf=new Ph(t.subarray(this.as,r-this.drop))),this.state===ue.MSG_PAYLOAD&&!this.msgBuf&&(this.argBuf||this.cloneMsgArg(),this.msgBuf=new Ph(t.subarray(this.as)))}cloneMsgArg(){const t=this.ma.subject.length,r=this.ma.reply?this.ma.reply.length:0,s=new Uint8Array(t+r);s.set(this.ma.subject),this.ma.reply&&s.set(this.ma.reply,t),this.argBuf=new Ph(s),this.ma.subject=s.subarray(0,t),this.ma.reply&&(this.ma.reply=s.subarray(t))}processMsgArgs(t){if(this.hdr>=0)return this.processHeaderMsgArgs(t);const r=[];let s=-1;for(let l=0;l<t.length;l++)switch(t[l]){case fe.SPACE:case fe.TAB:case fe.CR:case fe.NL:s>=0&&(r.push(t.subarray(s,l)),s=-1);break;default:s<0&&(s=l)}switch(s>=0&&r.push(t.subarray(s)),r.length){case 3:this.ma.subject=r[0],this.ma.sid=this.protoParseInt(r[1]),this.ma.reply=void 0,this.ma.size=this.protoParseInt(r[2]);break;case 4:this.ma.subject=r[0],this.ma.sid=this.protoParseInt(r[1]),this.ma.reply=r[2],this.ma.size=this.protoParseInt(r[3]);break;default:throw this.fail(t,"processMsgArgs Parse Error")}if(this.ma.sid<0)throw this.fail(t,"processMsgArgs Bad or Missing Sid Error");if(this.ma.size<0)throw this.fail(t,"processMsgArgs Bad or Missing Size Error")}fail(t,r=""){return r?r=`${r} [${this.state}]`:r=`parse error [${this.state}]`,new Error(`${r}: ${hn.decode(t)}`)}processHeaderMsgArgs(t){const r=[];let s=-1;for(let l=0;l<t.length;l++)switch(t[l]){case fe.SPACE:case fe.TAB:case fe.CR:case fe.NL:s>=0&&(r.push(t.subarray(s,l)),s=-1);break;default:s<0&&(s=l)}switch(s>=0&&r.push(t.subarray(s)),r.length){case 4:this.ma.subject=r[0],this.ma.sid=this.protoParseInt(r[1]),this.ma.reply=void 0,this.ma.hdr=this.protoParseInt(r[2]),this.ma.size=this.protoParseInt(r[3]);break;case 5:this.ma.subject=r[0],this.ma.sid=this.protoParseInt(r[1]),this.ma.reply=r[2],this.ma.hdr=this.protoParseInt(r[3]),this.ma.size=this.protoParseInt(r[4]);break;default:throw this.fail(t,"processHeaderMsgArgs Parse Error")}if(this.ma.sid<0)throw this.fail(t,"processHeaderMsgArgs Bad or Missing Sid Error");if(this.ma.hdr<0||this.ma.hdr>this.ma.size)throw this.fail(t,"processHeaderMsgArgs Bad or Missing Header Size Error");if(this.ma.size<0)throw this.fail(t,"processHeaderMsgArgs Bad or Missing Size Error")}protoParseInt(t){if(t.length===0)return-1;let r=0;for(let s=0;s<t.length;s++){if(t[s]<48||t[s]>57)return-1;r=r*10+(t[s]-WS)}return r}}var ue;(function(i){i[i.OP_START=0]="OP_START",i[i.OP_PLUS=1]="OP_PLUS",i[i.OP_PLUS_O=2]="OP_PLUS_O",i[i.OP_PLUS_OK=3]="OP_PLUS_OK",i[i.OP_MINUS=4]="OP_MINUS",i[i.OP_MINUS_E=5]="OP_MINUS_E",i[i.OP_MINUS_ER=6]="OP_MINUS_ER",i[i.OP_MINUS_ERR=7]="OP_MINUS_ERR",i[i.OP_MINUS_ERR_SPC=8]="OP_MINUS_ERR_SPC",i[i.MINUS_ERR_ARG=9]="MINUS_ERR_ARG",i[i.OP_M=10]="OP_M",i[i.OP_MS=11]="OP_MS",i[i.OP_MSG=12]="OP_MSG",i[i.OP_MSG_SPC=13]="OP_MSG_SPC",i[i.MSG_ARG=14]="MSG_ARG",i[i.MSG_PAYLOAD=15]="MSG_PAYLOAD",i[i.MSG_END=16]="MSG_END",i[i.OP_H=17]="OP_H",i[i.OP_P=18]="OP_P",i[i.OP_PI=19]="OP_PI",i[i.OP_PIN=20]="OP_PIN",i[i.OP_PING=21]="OP_PING",i[i.OP_PO=22]="OP_PO",i[i.OP_PON=23]="OP_PON",i[i.OP_PONG=24]="OP_PONG",i[i.OP_I=25]="OP_I",i[i.OP_IN=26]="OP_IN",i[i.OP_INF=27]="OP_INF",i[i.OP_INFO=28]="OP_INFO",i[i.OP_INFO_SPC=29]="OP_INFO_SPC",i[i.INFO_ARG=30]="INFO_ARG"})(ue||(ue={}));var fe;(function(i){i[i.CR=13]="CR",i[i.E=69]="E",i[i.e=101]="e",i[i.F=70]="F",i[i.f=102]="f",i[i.G=71]="G",i[i.g=103]="g",i[i.H=72]="H",i[i.h=104]="h",i[i.I=73]="I",i[i.i=105]="i",i[i.K=75]="K",i[i.k=107]="k",i[i.M=77]="M",i[i.m=109]="m",i[i.MINUS=45]="MINUS",i[i.N=78]="N",i[i.n=110]="n",i[i.NL=10]="NL",i[i.O=79]="O",i[i.o=111]="o",i[i.P=80]="P",i[i.p=112]="p",i[i.PLUS=43]="PLUS",i[i.R=82]="R",i[i.r=114]="r",i[i.S=83]="S",i[i.s=115]="s",i[i.SPACE=32]="SPACE",i[i.TAB=9]="TAB"})(fe||(fe={}));(function(i){var t=function(O,T){this.hi=O|0,this.lo=T|0},r=function(O){var T,N=new Float64Array(16);if(O)for(T=0;T<O.length;T++)N[T]=O[T];return N},s=function(){throw new Error("no PRNG")},l=new Uint8Array(16),c=new Uint8Array(32);c[0]=9;var d=r(),g=r([1]),y=r([56129,1]),f=r([30883,4953,19914,30187,55467,16705,2637,112,59544,30585,16505,36039,65139,11119,27886,20995]),m=r([61785,9906,39828,60374,45398,33411,5274,224,53552,61171,33010,6542,64743,22239,55772,9222]),b=r([54554,36645,11616,51542,42930,38181,51040,26924,56412,64982,57905,49316,21502,52590,14035,8553]),v=r([26200,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214]),_=r([41136,18958,6951,50414,58488,44335,6150,12099,55207,15867,153,11085,57099,20417,9344,11139]);function w(O,T){return O<<T|O>>>32-T}function S(O,T){var N=O[T+3]&255;return N=N<<8|O[T+2]&255,N=N<<8|O[T+1]&255,N<<8|O[T+0]&255}function M(O,T){var N=O[T]<<24|O[T+1]<<16|O[T+2]<<8|O[T+3],k=O[T+4]<<24|O[T+5]<<16|O[T+6]<<8|O[T+7];return new t(N,k)}function B(O,T,N){var k;for(k=0;k<4;k++)O[T+k]=N&255,N>>>=8}function U(O,T,N){O[T]=N.hi>>24&255,O[T+1]=N.hi>>16&255,O[T+2]=N.hi>>8&255,O[T+3]=N.hi&255,O[T+4]=N.lo>>24&255,O[T+5]=N.lo>>16&255,O[T+6]=N.lo>>8&255,O[T+7]=N.lo&255}function re(O,T,N,k,D){var I,te=0;for(I=0;I<D;I++)te|=O[T+I]^N[k+I];return(1&te-1>>>8)-1}function ce(O,T,N,k){return re(O,T,N,k,16)}function C(O,T,N,k){return re(O,T,N,k,32)}function P(O,T,N,k,D){var I=new Uint32Array(16),te=new Uint32Array(16),se=new Uint32Array(16),V=new Uint32Array(4),ee,pe,Re;for(ee=0;ee<4;ee++)te[5*ee]=S(k,4*ee),te[1+ee]=S(N,4*ee),te[6+ee]=S(T,4*ee),te[11+ee]=S(N,16+4*ee);for(ee=0;ee<16;ee++)se[ee]=te[ee];for(ee=0;ee<20;ee++){for(pe=0;pe<4;pe++){for(Re=0;Re<4;Re++)V[Re]=te[(5*pe+4*Re)%16];for(V[1]^=w(V[0]+V[3]|0,7),V[2]^=w(V[1]+V[0]|0,9),V[3]^=w(V[2]+V[1]|0,13),V[0]^=w(V[3]+V[2]|0,18),Re=0;Re<4;Re++)I[4*pe+(pe+Re)%4]=V[Re]}for(Re=0;Re<16;Re++)te[Re]=I[Re]}if(D){for(ee=0;ee<16;ee++)te[ee]=te[ee]+se[ee]|0;for(ee=0;ee<4;ee++)te[5*ee]=te[5*ee]-S(k,4*ee)|0,te[6+ee]=te[6+ee]-S(T,4*ee)|0;for(ee=0;ee<4;ee++)B(O,4*ee,te[5*ee]),B(O,16+4*ee,te[6+ee])}else for(ee=0;ee<16;ee++)B(O,4*ee,te[ee]+se[ee]|0)}function ie(O,T,N,k){return P(O,T,N,k,!1),0}function X(O,T,N,k){return P(O,T,N,k,!0),0}var L=new Uint8Array([101,120,112,97,110,100,32,51,50,45,98,121,116,101,32,107]);function G(O,T,N,k,D,I,te){var se=new Uint8Array(16),V=new Uint8Array(64),ee,pe;if(!D)return 0;for(pe=0;pe<16;pe++)se[pe]=0;for(pe=0;pe<8;pe++)se[pe]=I[pe];for(;D>=64;){for(ie(V,se,te,L),pe=0;pe<64;pe++)O[T+pe]=(N?N[k+pe]:0)^V[pe];for(ee=1,pe=8;pe<16;pe++)ee=ee+(se[pe]&255)|0,se[pe]=ee&255,ee>>>=8;D-=64,T+=64,N&&(k+=64)}if(D>0)for(ie(V,se,te,L),pe=0;pe<D;pe++)O[T+pe]=(N?N[k+pe]:0)^V[pe];return 0}function W(O,T,N,k,D){return G(O,T,null,0,N,k,D)}function J(O,T,N,k,D){var I=new Uint8Array(32);return X(I,k,D,L),W(O,T,N,k.subarray(16),I)}function he(O,T,N,k,D,I,te){var se=new Uint8Array(32);return X(se,I,te,L),G(O,T,N,k,D,I.subarray(16),se)}function xe(O,T){var N,k=0;for(N=0;N<17;N++)k=k+(O[N]+T[N]|0)|0,O[N]=k&255,k>>>=8}var Ne=new Uint32Array([5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252]);function Y(O,T,N,k,D,I){var te,se,V,ee,pe=new Uint32Array(17),Re=new Uint32Array(17),et=new Uint32Array(17),Pt=new Uint32Array(17),Dn=new Uint32Array(17);for(V=0;V<17;V++)Re[V]=et[V]=0;for(V=0;V<16;V++)Re[V]=I[V];for(Re[3]&=15,Re[4]&=252,Re[7]&=15,Re[8]&=252,Re[11]&=15,Re[12]&=252,Re[15]&=15;D>0;){for(V=0;V<17;V++)Pt[V]=0;for(V=0;V<16&&V<D;++V)Pt[V]=N[k+V];for(Pt[V]=1,k+=V,D-=V,xe(et,Pt),se=0;se<17;se++)for(pe[se]=0,V=0;V<17;V++)pe[se]=pe[se]+et[V]*(V<=se?Re[se-V]:320*Re[se+17-V]|0)|0|0;for(se=0;se<17;se++)et[se]=pe[se];for(ee=0,V=0;V<16;V++)ee=ee+et[V]|0,et[V]=ee&255,ee>>>=8;for(ee=ee+et[16]|0,et[16]=ee&3,ee=5*(ee>>>2)|0,V=0;V<16;V++)ee=ee+et[V]|0,et[V]=ee&255,ee>>>=8;ee=ee+et[16]|0,et[16]=ee}for(V=0;V<17;V++)Dn[V]=et[V];for(xe(et,Ne),te=-(et[16]>>>7)|0,V=0;V<17;V++)et[V]^=te&(Dn[V]^et[V]);for(V=0;V<16;V++)Pt[V]=I[V+16];for(Pt[16]=0,xe(et,Pt),V=0;V<16;V++)O[T+V]=et[V];return 0}function ae(O,T,N,k,D,I){var te=new Uint8Array(16);return Y(te,0,N,k,D,I),ce(O,T,te,0)}function de(O,T,N,k,D){var I;if(N<32)return-1;for(he(O,0,T,0,N,k,D),Y(O,16,O,32,N-32,O),I=0;I<16;I++)O[I]=0;return 0}function Oe(O,T,N,k,D){var I,te=new Uint8Array(32);if(N<32||(J(te,0,32,k,D),ae(T,16,T,32,N-32,te)!==0))return-1;for(he(O,0,T,0,N,k,D),I=0;I<32;I++)O[I]=0;return 0}function oe(O,T){var N;for(N=0;N<16;N++)O[N]=T[N]|0}function je(O){var T,N;for(N=0;N<16;N++)O[N]+=65536,T=Math.floor(O[N]/65536),O[(N+1)*(N<15?1:0)]+=T-1+37*(T-1)*(N===15?1:0),O[N]-=T*65536}function Se(O,T,N){for(var k,D=~(N-1),I=0;I<16;I++)k=D&(O[I]^T[I]),O[I]^=k,T[I]^=k}function Te(O,T){var N,k,D,I=r(),te=r();for(N=0;N<16;N++)te[N]=T[N];for(je(te),je(te),je(te),k=0;k<2;k++){for(I[0]=te[0]-65517,N=1;N<15;N++)I[N]=te[N]-65535-(I[N-1]>>16&1),I[N-1]&=65535;I[15]=te[15]-32767-(I[14]>>16&1),D=I[15]>>16&1,I[14]&=65535,Se(te,I,1-D)}for(N=0;N<16;N++)O[2*N]=te[N]&255,O[2*N+1]=te[N]>>8}function We(O,T){var N=new Uint8Array(32),k=new Uint8Array(32);return Te(N,O),Te(k,T),C(N,0,k,0)}function Ae(O){var T=new Uint8Array(32);return Te(T,O),T[0]&1}function lt(O,T){var N;for(N=0;N<16;N++)O[N]=T[2*N]+(T[2*N+1]<<8);O[15]&=32767}function At(O,T,N){var k;for(k=0;k<16;k++)O[k]=T[k]+N[k]|0}function qt(O,T,N){var k;for(k=0;k<16;k++)O[k]=T[k]-N[k]|0}function ke(O,T,N){var k,D,I=new Float64Array(31);for(k=0;k<31;k++)I[k]=0;for(k=0;k<16;k++)for(D=0;D<16;D++)I[k+D]+=T[k]*N[D];for(k=0;k<15;k++)I[k]+=38*I[k+16];for(k=0;k<16;k++)O[k]=I[k];je(O),je(O)}function Bt(O,T){ke(O,T,T)}function di(O,T){var N=r(),k;for(k=0;k<16;k++)N[k]=T[k];for(k=253;k>=0;k--)Bt(N,N),k!==2&&k!==4&&ke(N,N,T);for(k=0;k<16;k++)O[k]=N[k]}function Gi(O,T){var N=r(),k;for(k=0;k<16;k++)N[k]=T[k];for(k=250;k>=0;k--)Bt(N,N),k!==1&&ke(N,N,T);for(k=0;k<16;k++)O[k]=N[k]}function mi(O,T,N){var k=new Uint8Array(32),D=new Float64Array(80),I,te,se=r(),V=r(),ee=r(),pe=r(),Re=r(),et=r();for(te=0;te<31;te++)k[te]=T[te];for(k[31]=T[31]&127|64,k[0]&=248,lt(D,N),te=0;te<16;te++)V[te]=D[te],pe[te]=se[te]=ee[te]=0;for(se[0]=pe[0]=1,te=254;te>=0;--te)I=k[te>>>3]>>>(te&7)&1,Se(se,V,I),Se(ee,pe,I),At(Re,se,ee),qt(se,se,ee),At(ee,V,pe),qt(V,V,pe),Bt(pe,Re),Bt(et,se),ke(se,ee,se),ke(ee,V,Re),At(Re,se,ee),qt(se,se,ee),Bt(V,se),qt(ee,pe,et),ke(se,ee,y),At(se,se,pe),ke(ee,ee,se),ke(se,pe,et),ke(pe,V,D),Bt(V,Re),Se(se,V,I),Se(ee,pe,I);for(te=0;te<16;te++)D[te+16]=se[te],D[te+32]=ee[te],D[te+48]=V[te],D[te+64]=pe[te];var Pt=D.subarray(32),Dn=D.subarray(16);return di(Pt,Pt),ke(Dn,Dn,Pt),Te(O,Dn),0}function bn(O,T){return mi(O,T,c)}function Fi(O,T){return s(T,32),bn(O,T)}function Ar(O,T,N){var k=new Uint8Array(32);return mi(k,N,T),X(O,l,k,L)}var Eo=de,Oo=Oe;function Js(O,T,N,k,D,I){var te=new Uint8Array(32);return Ar(te,D,I),Eo(O,T,N,k,te)}function Qs(O,T,N,k,D,I){var te=new Uint8Array(32);return Ar(te,D,I),Oo(O,T,N,k,te)}function er(){var O=0,T=0,N=0,k=0,D=65535,I,te,se;for(se=0;se<arguments.length;se++)I=arguments[se].lo,te=arguments[se].hi,O+=I&D,T+=I>>>16,N+=te&D,k+=te>>>16;return T+=O>>>16,N+=T>>>16,k+=N>>>16,new t(N&D|k<<16,O&D|T<<16)}function Ao(O,T){return new t(O.hi>>>T,O.lo>>>T|O.hi<<32-T)}function Vi(){var O=0,T=0,N;for(N=0;N<arguments.length;N++)O^=arguments[N].lo,T^=arguments[N].hi;return new t(T,O)}function it(O,T){var N,k,D=32-T;return T<32?(N=O.hi>>>T|O.lo<<D,k=O.lo>>>T|O.hi<<D):T<64&&(N=O.lo>>>T|O.hi<<D,k=O.hi>>>T|O.lo<<D),new t(N,k)}function vu(O,T,N){var k=O.hi&T.hi^~O.hi&N.hi,D=O.lo&T.lo^~O.lo&N.lo;return new t(k,D)}function jo(O,T,N){var k=O.hi&T.hi^O.hi&N.hi^T.hi&N.hi,D=O.lo&T.lo^O.lo&N.lo^T.lo&N.lo;return new t(k,D)}function No(O){return Vi(it(O,28),it(O,34),it(O,39))}function Yi(O){return Vi(it(O,14),it(O,18),it(O,41))}function xu(O){return Vi(it(O,1),it(O,8),Ao(O,7))}function To(O){return Vi(it(O,19),it(O,61),Ao(O,6))}var _u=[new t(1116352408,3609767458),new t(1899447441,602891725),new t(3049323471,3964484399),new t(3921009573,2173295548),new t(961987163,4081628472),new t(1508970993,3053834265),new t(2453635748,2937671579),new t(2870763221,3664609560),new t(3624381080,2734883394),new t(310598401,1164996542),new t(607225278,1323610764),new t(1426881987,3590304994),new t(1925078388,4068182383),new t(2162078206,991336113),new t(2614888103,633803317),new t(3248222580,3479774868),new t(3835390401,2666613458),new t(4022224774,944711139),new t(264347078,2341262773),new t(604807628,2007800933),new t(770255983,1495990901),new t(1249150122,1856431235),new t(1555081692,3175218132),new t(1996064986,2198950837),new t(2554220882,3999719339),new t(2821834349,766784016),new t(2952996808,2566594879),new t(3210313671,3203337956),new t(3336571891,1034457026),new t(3584528711,2466948901),new t(113926993,3758326383),new t(338241895,168717936),new t(666307205,1188179964),new t(773529912,1546045734),new t(1294757372,1522805485),new t(1396182291,2643833823),new t(1695183700,2343527390),new t(1986661051,1014477480),new t(2177026350,1206759142),new t(2456956037,344077627),new t(2730485921,1290863460),new t(2820302411,3158454273),new t(3259730800,3505952657),new t(3345764771,106217008),new t(3516065817,3606008344),new t(3600352804,1432725776),new t(4094571909,1467031594),new t(275423344,851169720),new t(430227734,3100823752),new t(506948616,1363258195),new t(659060556,3750685593),new t(883997877,3785050280),new t(958139571,3318307427),new t(1322822218,3812723403),new t(1537002063,2003034995),new t(1747873779,3602036899),new t(1955562222,1575990012),new t(2024104815,1125592928),new t(2227730452,2716904306),new t(2361852424,442776044),new t(2428436474,593698344),new t(2756734187,3733110249),new t(3204031479,2999351573),new t(3329325298,3815920427),new t(3391569614,3928383900),new t(3515267271,566280711),new t(3940187606,3454069534),new t(4118630271,4000239992),new t(116418474,1914138554),new t(174292421,2731055270),new t(289380356,3203993006),new t(460393269,320620315),new t(685471733,587496836),new t(852142971,1086792851),new t(1017036298,365543100),new t(1126000580,2618297676),new t(1288033470,3409855158),new t(1501505948,4234509866),new t(1607167915,987167468),new t(1816402316,1246189591)];function ko(O,T,N){var k=[],D=[],I=[],te=[],se,V,ee;for(V=0;V<8;V++)k[V]=I[V]=M(O,8*V);for(var pe=0;N>=128;){for(V=0;V<16;V++)te[V]=M(T,8*V+pe);for(V=0;V<80;V++){for(ee=0;ee<8;ee++)D[ee]=I[ee];for(se=er(I[7],Yi(I[4]),vu(I[4],I[5],I[6]),_u[V],te[V%16]),D[7]=er(se,No(I[0]),jo(I[0],I[1],I[2])),D[3]=er(D[3],se),ee=0;ee<8;ee++)I[(ee+1)%8]=D[ee];if(V%16===15)for(ee=0;ee<16;ee++)te[ee]=er(te[ee],te[(ee+9)%16],xu(te[(ee+1)%16]),To(te[(ee+14)%16]))}for(V=0;V<8;V++)I[V]=er(I[V],k[V]),k[V]=I[V];pe+=128,N-=128}for(V=0;V<8;V++)U(O,8*V,k[V]);return N}var pi=new Uint8Array([106,9,230,103,243,188,201,8,187,103,174,133,132,202,167,59,60,110,243,114,254,148,248,43,165,79,245,58,95,29,54,241,81,14,82,127,173,230,130,209,155,5,104,140,43,62,108,31,31,131,217,171,251,65,189,107,91,224,205,25,19,126,33,121]);function pt(O,T,N){var k=new Uint8Array(64),D=new Uint8Array(256),I,te=N;for(I=0;I<64;I++)k[I]=pi[I];for(ko(k,T,N),N%=128,I=0;I<256;I++)D[I]=0;for(I=0;I<N;I++)D[I]=T[te-N+I];for(D[N]=128,N=256-128*(N<112?1:0),D[N-9]=0,U(D,N-8,new t(te/536870912|0,te<<3)),ko(k,D,N),I=0;I<64;I++)O[I]=k[I];return 0}function Zt(O,T){var N=r(),k=r(),D=r(),I=r(),te=r(),se=r(),V=r(),ee=r(),pe=r();qt(N,O[1],O[0]),qt(pe,T[1],T[0]),ke(N,N,pe),At(k,O[0],O[1]),At(pe,T[0],T[1]),ke(k,k,pe),ke(D,O[3],T[3]),ke(D,D,m),ke(I,O[2],T[2]),At(I,I,I),qt(te,k,N),qt(se,I,D),At(V,I,D),At(ee,k,N),ke(O[0],te,se),ke(O[1],ee,V),ke(O[2],V,se),ke(O[3],te,ee)}function Lt(O,T,N){var k;for(k=0;k<4;k++)Se(O[k],T[k],N)}function Zs(O,T){var N=r(),k=r(),D=r();di(D,T[2]),ke(N,T[0],D),ke(k,T[1],D),Te(O,k),O[31]^=Ae(N)<<7}function Ws(O,T,N){var k,D;for(oe(O[0],d),oe(O[1],g),oe(O[2],g),oe(O[3],d),D=255;D>=0;--D)k=N[D/8|0]>>(D&7)&1,Lt(O,T,k),Zt(T,O),Zt(O,O),Lt(O,T,k)}function Ki(O,T){var N=[r(),r(),r(),r()];oe(N[0],b),oe(N[1],v),oe(N[2],g),ke(N[3],b,v),Ws(O,N,T)}function jr(O,T,N){var k=new Uint8Array(64),D=[r(),r(),r(),r()],I;for(N||s(T,32),pt(k,T,32),k[0]&=248,k[31]&=127,k[31]|=64,Ki(D,k),Zs(O,D),I=0;I<32;I++)T[I+32]=O[I];return 0}var tr=new Float64Array([237,211,245,92,26,99,18,88,214,156,247,162,222,249,222,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16]);function Nr(O,T){var N,k,D,I;for(k=63;k>=32;--k){for(N=0,D=k-32,I=k-12;D<I;++D)T[D]+=N-16*T[k]*tr[D-(k-32)],N=Math.floor((T[D]+128)/256),T[D]-=N*256;T[D]+=N,T[k]=0}for(N=0,D=0;D<32;D++)T[D]+=N-(T[31]>>4)*tr[D],N=T[D]>>8,T[D]&=255;for(D=0;D<32;D++)T[D]-=N*tr[D];for(k=0;k<32;k++)T[k+1]+=T[k]>>8,O[k]=T[k]&255}function Mn(O){var T=new Float64Array(64),N;for(N=0;N<64;N++)T[N]=O[N];for(N=0;N<64;N++)O[N]=0;Nr(O,T)}function gi(O,T,N,k){var D=new Uint8Array(64),I=new Uint8Array(64),te=new Uint8Array(64),se,V,ee=new Float64Array(64),pe=[r(),r(),r(),r()];pt(D,k,32),D[0]&=248,D[31]&=127,D[31]|=64;var Re=N+64;for(se=0;se<N;se++)O[64+se]=T[se];for(se=0;se<32;se++)O[32+se]=D[32+se];for(pt(te,O.subarray(32),N+32),Mn(te),Ki(pe,te),Zs(O,pe),se=32;se<64;se++)O[se]=k[se];for(pt(I,O,N+64),Mn(I),se=0;se<64;se++)ee[se]=0;for(se=0;se<32;se++)ee[se]=te[se];for(se=0;se<32;se++)for(V=0;V<32;V++)ee[se+V]+=I[se]*D[V];return Nr(O.subarray(32),ee),Re}function yi(O,T){var N=r(),k=r(),D=r(),I=r(),te=r(),se=r(),V=r();return oe(O[2],g),lt(O[1],T),Bt(D,O[1]),ke(I,D,f),qt(D,D,O[2]),At(I,O[2],I),Bt(te,I),Bt(se,te),ke(V,se,te),ke(N,V,D),ke(N,N,I),Gi(N,N),ke(N,N,D),ke(N,N,I),ke(N,N,I),ke(O[0],N,I),Bt(k,O[0]),ke(k,k,I),We(k,D)&&ke(O[0],O[0],_),Bt(k,O[0]),ke(k,k,I),We(k,D)?-1:(Ae(O[0])===T[31]>>7&&qt(O[0],d,O[0]),ke(O[3],O[0],O[1]),0)}function ea(O,T,N,k){var D,I=new Uint8Array(32),te=new Uint8Array(64),se=[r(),r(),r(),r()],V=[r(),r(),r(),r()];if(N<64||yi(V,k))return-1;for(D=0;D<N;D++)O[D]=T[D];for(D=0;D<32;D++)O[D+32]=k[D];if(pt(te,O,N),Mn(te),Ws(se,V,te),Ki(V,T.subarray(32)),Zt(se,V),Zs(I,se),N-=64,C(T,0,I,0)){for(D=0;D<N;D++)O[D]=0;return-1}for(D=0;D<N;D++)O[D]=T[D+64];return N}var Xi=32,Tr=24,Rn=32,kr=16,Cr=32,bi=32,Mr=32,nr=32,vi=32,ta=Tr,Co=Rn,Gn=kr,Qe=64,ct=32,Wt=64,xi=32,na=64;i.lowlevel={crypto_core_hsalsa20:X,crypto_stream_xor:he,crypto_stream:J,crypto_stream_salsa20_xor:G,crypto_stream_salsa20:W,crypto_onetimeauth:Y,crypto_onetimeauth_verify:ae,crypto_verify_16:ce,crypto_verify_32:C,crypto_secretbox:de,crypto_secretbox_open:Oe,crypto_scalarmult:mi,crypto_scalarmult_base:bn,crypto_box_beforenm:Ar,crypto_box_afternm:Eo,crypto_box:Js,crypto_box_open:Qs,crypto_box_keypair:Fi,crypto_hash:pt,crypto_sign:gi,crypto_sign_keypair:jr,crypto_sign_open:ea,crypto_secretbox_KEYBYTES:Xi,crypto_secretbox_NONCEBYTES:Tr,crypto_secretbox_ZEROBYTES:Rn,crypto_secretbox_BOXZEROBYTES:kr,crypto_scalarmult_BYTES:Cr,crypto_scalarmult_SCALARBYTES:bi,crypto_box_PUBLICKEYBYTES:Mr,crypto_box_SECRETKEYBYTES:nr,crypto_box_BEFORENMBYTES:vi,crypto_box_NONCEBYTES:ta,crypto_box_ZEROBYTES:Co,crypto_box_BOXZEROBYTES:Gn,crypto_sign_BYTES:Qe,crypto_sign_PUBLICKEYBYTES:ct,crypto_sign_SECRETKEYBYTES:Wt,crypto_sign_SEEDBYTES:xi,crypto_hash_BYTES:na,gf:r,D:f,L:tr,pack25519:Te,unpack25519:lt,M:ke,A:At,S:Bt,Z:qt,pow2523:Gi,add:Zt,set25519:oe,modL:Nr,scalarmult:Ws,scalarbase:Ki};function Mo(O,T){if(O.length!==Xi)throw new Error("bad key size");if(T.length!==Tr)throw new Error("bad nonce size")}function Ro(O,T){if(O.length!==Mr)throw new Error("bad public key size");if(T.length!==nr)throw new Error("bad secret key size")}function Et(){for(var O=0;O<arguments.length;O++)if(!(arguments[O]instanceof Uint8Array))throw new TypeError("unexpected type, use Uint8Array")}function Ji(O){for(var T=0;T<O.length;T++)O[T]=0}i.randomBytes=function(O){var T=new Uint8Array(O);return s(T,O),T},i.secretbox=function(O,T,N){Et(O,T,N),Mo(N,T);for(var k=new Uint8Array(Rn+O.length),D=new Uint8Array(k.length),I=0;I<O.length;I++)k[I+Rn]=O[I];return de(D,k,k.length,T,N),D.subarray(kr)},i.secretbox.open=function(O,T,N){Et(O,T,N),Mo(N,T);for(var k=new Uint8Array(kr+O.length),D=new Uint8Array(k.length),I=0;I<O.length;I++)k[I+kr]=O[I];return k.length<32||Oe(D,k,k.length,T,N)!==0?null:D.subarray(Rn)},i.secretbox.keyLength=Xi,i.secretbox.nonceLength=Tr,i.secretbox.overheadLength=kr,i.scalarMult=function(O,T){if(Et(O,T),O.length!==bi)throw new Error("bad n size");if(T.length!==Cr)throw new Error("bad p size");var N=new Uint8Array(Cr);return mi(N,O,T),N},i.scalarMult.base=function(O){if(Et(O),O.length!==bi)throw new Error("bad n size");var T=new Uint8Array(Cr);return bn(T,O),T},i.scalarMult.scalarLength=bi,i.scalarMult.groupElementLength=Cr,i.box=function(O,T,N,k){var D=i.box.before(N,k);return i.secretbox(O,T,D)},i.box.before=function(O,T){Et(O,T),Ro(O,T);var N=new Uint8Array(vi);return Ar(N,O,T),N},i.box.after=i.secretbox,i.box.open=function(O,T,N,k){var D=i.box.before(N,k);return i.secretbox.open(O,T,D)},i.box.open.after=i.secretbox.open,i.box.keyPair=function(){var O=new Uint8Array(Mr),T=new Uint8Array(nr);return Fi(O,T),{publicKey:O,secretKey:T}},i.box.keyPair.fromSecretKey=function(O){if(Et(O),O.length!==nr)throw new Error("bad secret key size");var T=new Uint8Array(Mr);return bn(T,O),{publicKey:T,secretKey:new Uint8Array(O)}},i.box.publicKeyLength=Mr,i.box.secretKeyLength=nr,i.box.sharedKeyLength=vi,i.box.nonceLength=ta,i.box.overheadLength=i.secretbox.overheadLength,i.sign=function(O,T){if(Et(O,T),T.length!==Wt)throw new Error("bad secret key size");var N=new Uint8Array(Qe+O.length);return gi(N,O,O.length,T),N},i.sign.open=function(O,T){if(Et(O,T),T.length!==ct)throw new Error("bad public key size");var N=new Uint8Array(O.length),k=ea(N,O,O.length,T);if(k<0)return null;for(var D=new Uint8Array(k),I=0;I<D.length;I++)D[I]=N[I];return D},i.sign.detached=function(O,T){for(var N=i.sign(O,T),k=new Uint8Array(Qe),D=0;D<k.length;D++)k[D]=N[D];return k},i.sign.detached.verify=function(O,T,N){if(Et(O,T,N),T.length!==Qe)throw new Error("bad signature size");if(N.length!==ct)throw new Error("bad public key size");var k=new Uint8Array(Qe+O.length),D=new Uint8Array(Qe+O.length),I;for(I=0;I<Qe;I++)k[I]=T[I];for(I=0;I<O.length;I++)k[I+Qe]=O[I];return ea(D,k,k.length,N)>=0},i.sign.keyPair=function(){var O=new Uint8Array(ct),T=new Uint8Array(Wt);return jr(O,T),{publicKey:O,secretKey:T}},i.sign.keyPair.fromSecretKey=function(O){if(Et(O),O.length!==Wt)throw new Error("bad secret key size");for(var T=new Uint8Array(ct),N=0;N<T.length;N++)T[N]=O[32+N];return{publicKey:T,secretKey:new Uint8Array(O)}},i.sign.keyPair.fromSeed=function(O){if(Et(O),O.length!==xi)throw new Error("bad seed size");for(var T=new Uint8Array(ct),N=new Uint8Array(Wt),k=0;k<32;k++)N[k]=O[k];return jr(T,N,!0),{publicKey:T,secretKey:N}},i.sign.publicKeyLength=ct,i.sign.secretKeyLength=Wt,i.sign.seedLength=xi,i.sign.signatureLength=Qe,i.hash=function(O){Et(O);var T=new Uint8Array(na);return pt(T,O,O.length),T},i.hash.hashLength=na,i.verify=function(O,T){return Et(O,T),O.length===0||T.length===0||O.length!==T.length?!1:re(O,0,T,0,O.length)===0},i.setPRNG=function(O){s=O},(function(){var O=typeof globalThis<"u"?globalThis.crypto||globalThis.msCrypto:null;if(O&&O.getRandomValues){var T=65536;i.setPRNG(function(N,k){var D,I=new Uint8Array(k);for(D=0;D<k;D+=T)O.getRandomValues(I.subarray(D,D+Math.min(k-D,T)));for(D=0;D<k;D++)N[D]=I[D];Ji(I)})}else typeof require<"u"&&(O=require("crypto"),O&&O.randomBytes&&i.setPRNG(function(N,k){var D,I=O.randomBytes(k);for(D=0;D<k;D++)N[D]=I[D];Ji(I)}))})()})(typeof module<"u"&&module.exports?module.exports:globalThis.nacl=globalThis.nacl||{});const Yl=typeof module<"u"&&module.exports?module.exports:globalThis.nacl;Yl.sign.keyPair.fromSeed,Yl.sign.detached,Yl.sign.detached.verify,Yl.randomBytes;var dy;(function(i){i.InvalidPrefixByte="nkeys: invalid prefix byte",i.InvalidKey="nkeys: invalid key",i.InvalidPublicKey="nkeys: invalid public key",i.InvalidSeedLen="nkeys: invalid seed length",i.InvalidSeed="nkeys: invalid seed",i.InvalidEncoding="nkeys: invalid encoded key",i.InvalidSignature="nkeys: signature verification failed",i.CannotSign="nkeys: cannot sign, no private key available",i.PublicKeyOnly="nkeys: no seed or private key available",i.InvalidChecksum="nkeys: invalid checksum",i.SerializationError="nkeys: serialization error",i.ApiError="nkeys: api error",i.ClearedPair="nkeys: pair is cleared"})(dy||(dy={}));var my;(function(i){i[i.Seed=144]="Seed",i[i.Private=120]="Private",i[i.Operator=112]="Operator",i[i.Server=104]="Server",i[i.Cluster=16]="Cluster",i[i.Account=0]="Account",i[i.User=160]="User"})(my||(my={}));function eE(i){return t=>{let r={};return i.forEach(s=>{const l=s(t)||{};r=Object.assign(r,l)}),r}}function tE(){return()=>{}}function nE(i,t){return()=>{const r=typeof i=="function"?i():i,s=typeof t=="function"?t():t;return{user:r,pass:s}}}function rE(i){return()=>({auth_token:typeof i=="function"?i():i})}const Ob=120*1e3,iE=2,Ab=2*1e3;function sE(){return{maxPingOut:2,maxReconnectAttempts:10,noRandomize:!1,pedantic:!1,pingInterval:Ob,reconnect:!0,reconnectJitter:100,reconnectJitterTLS:1e3,reconnectTimeWait:Ab,tls:void 0,verbose:!1,waitOnFirstConnect:!1,ignoreAuthErrorAbort:!1}}function aE(i){const t=[];return typeof i.authenticator=="function"&&t.push(i.authenticator),Array.isArray(i.authenticator)&&t.push(...i.authenticator),i.token&&t.push(rE(i.token)),i.user&&t.push(nE(i.user,i.pass)),t.length===0?tE():eE(t)}function oE(i){const t=`${Zh}:${wb()}`;if(i=i||{servers:[t]},i.servers=i.servers||[],typeof i.servers=="string"&&(i.servers=[i.servers]),i.servers.length>0&&i.port)throw new me("port and servers options are mutually exclusive",le.InvalidOption);i.servers.length===0&&i.port&&(i.servers=[`${Zh}:${i.port}`]),i.servers&&i.servers.length===0&&(i.servers=[t]);const r=cu(sE(),i);if(r.authenticator=aE(r),["reconnectDelayHandler","authenticator"].forEach(s=>{if(r[s]&&typeof r[s]!="function")throw new me(`${s} option should be a function`,le.NotFunction)}),r.reconnectDelayHandler||(r.reconnectDelayHandler=()=>{let s=r.tls?r.reconnectJitterTLS:r.reconnectJitter;return s&&(s++,s=Math.floor(Math.random()*s)),r.reconnectTimeWait+s}),r.inboxPrefix)try{Sr(r.inboxPrefix)}catch(s){throw new me(s.message,le.ApiError)}if(r.resolve===void 0&&(r.resolve=typeof ad()=="function"),r.resolve&&typeof ad()!="function")throw new me("'resolve' is not supported on this client",le.InvalidOption);return r}function lE(i,t){const{proto:r,tls_required:s,tls_available:l}=i;if((r===void 0||r<1)&&t.noEcho)throw new me("noEcho",le.ServerOptionNotAvailable);const c=s||l||!1;if(t.tls&&!c)throw new me("tls",le.ServerOptionNotAvailable)}const cE=1024*32,uE=/^INFO\s+([^\r\n]+)\r\n/i,fE=so(`PONG\r
|
|
38
|
-
`),
|
|
39
|
-
`);class hE{constructor(t,r,s){A(this,"echo");A(this,"no_responders");A(this,"protocol");A(this,"verbose");A(this,"pedantic");A(this,"jwt");A(this,"nkey");A(this,"sig");A(this,"user");A(this,"pass");A(this,"auth_token");A(this,"tls_required");A(this,"name");A(this,"lang");A(this,"version");A(this,"headers");this.protocol=1,this.version=t.version,this.lang=t.lang,this.echo=r.noEcho?!1:void 0,this.verbose=r.verbose,this.pedantic=r.pedantic,this.tls_required=r.tls?!0:void 0,this.name=r.name;const l=(r&&typeof r.authenticator=="function"?r.authenticator(s):{})||{};cu(this,l)}}class jb extends kt{constructor(r,s,l={}){var d;super();A(this,"sid");A(this,"queue");A(this,"draining");A(this,"max");A(this,"subject");A(this,"drained");A(this,"protocol");A(this,"timer");A(this,"info");A(this,"cleanupFn");A(this,"closed");A(this,"requestSubject");cu(this,l),this.protocol=r,this.subject=s,this.draining=!1,this.noIterator=typeof l.callback=="function",this.closed=ot();const c=!((d=r.options)!=null&&d.noAsyncTraces);l.timeout&&(this.timer=Gs(l.timeout,c),this.timer.then(()=>{this.timer=void 0}).catch(g=>{this.stop(g),this.noIterator&&this.callback(g,{})})),this.noIterator||this.iterClosed.then(()=>{this.closed.resolve(),this.unsubscribe()})}setPrePostHandlers(r){if(this.noIterator){const s=this.callback,l=r.ingestionFilterFn?r.ingestionFilterFn:()=>({ingest:!0,protocol:!1}),c=r.protocolFilterFn?r.protocolFilterFn:()=>!0,d=r.dispatchedFn?r.dispatchedFn:()=>{};this.callback=(g,y)=>{const{ingest:f}=l(y);f&&c(y)&&(s(g,y),d(y))}}else this.protocolFilterFn=r.protocolFilterFn,this.dispatchedFn=r.dispatchedFn}callback(r,s){this.cancelTimeout(),r?this.stop(r):this.push(s)}close(){if(!this.isClosed()){this.cancelTimeout();const r=()=>{if(this.stop(),this.cleanupFn)try{this.cleanupFn(this,this.info)}catch{}this.closed.resolve()};this.noIterator?r():this.push(r)}}unsubscribe(r){this.protocol.unsubscribe(this,r)}cancelTimeout(){this.timer&&(this.timer.cancel(),this.timer=void 0)}drain(){return this.protocol.isClosed()?Promise.reject(me.errorForCode(le.ConnectionClosed)):this.isClosed()?Promise.reject(me.errorForCode(le.SubClosed)):(this.drained||(this.draining=!0,this.protocol.unsub(this),this.drained=this.protocol.flush(ot()).then(()=>{this.protocol.subscriptions.cancel(this)}).catch(()=>{this.protocol.subscriptions.cancel(this)})),this.drained)}isDraining(){return this.draining}isClosed(){return this.done}getSubject(){return this.subject}getMax(){return this.max}getID(){return this.sid}}class dE{constructor(){A(this,"mux");A(this,"subs");A(this,"sidCounter");this.sidCounter=0,this.mux=null,this.subs=new Map}size(){return this.subs.size}add(t){return this.sidCounter++,t.sid=this.sidCounter,this.subs.set(t.sid,t),t}setMux(t){return this.mux=t,t}getMux(){return this.mux}get(t){return this.subs.get(t)}resub(t){return this.sidCounter++,this.subs.delete(t.sid),t.sid=this.sidCounter,this.subs.set(t.sid,t),t}all(){return Array.from(this.subs.values())}cancel(t){t&&(t.close(),this.subs.delete(t.sid))}handleError(t){if(t&&t.permissionContext){const r=t.permissionContext,s=this.all();let l;if(r.operation==="subscription"&&(l=s.find(c=>c.subject===r.subject&&c.queue===r.queue)),r.operation==="publish"&&(l=s.find(c=>c.requestSubject===r.subject)),l)return l.callback(t,{}),l.close(),this.subs.delete(l.sid),l!==this.mux}return!1}close(){this.subs.forEach(t=>{t.close()})}}class eu{constructor(t,r){A(this,"connected");A(this,"connectedOnce");A(this,"infoReceived");A(this,"info");A(this,"muxSubscriptions");A(this,"options");A(this,"outbound");A(this,"pongs");A(this,"subscriptions");A(this,"transport");A(this,"noMorePublishing");A(this,"connectError");A(this,"publisher");A(this,"_closed");A(this,"closed");A(this,"listeners");A(this,"heartbeats");A(this,"parser");A(this,"outMsgs");A(this,"inMsgs");A(this,"outBytes");A(this,"inBytes");A(this,"pendingLimit");A(this,"lastError");A(this,"abortReconnect");A(this,"whyClosed");A(this,"servers");A(this,"server");A(this,"features");A(this,"connectPromise");this._closed=!1,this.connected=!1,this.connectedOnce=!1,this.infoReceived=!1,this.noMorePublishing=!1,this.abortReconnect=!1,this.listeners=[],this.pendingLimit=cE,this.outMsgs=0,this.inMsgs=0,this.outBytes=0,this.inBytes=0,this.options=t,this.publisher=r,this.subscriptions=new dE,this.muxSubscriptions=new XS,this.outbound=new Vs,this.pongs=[],this.whyClosed="",this.pendingLimit=t.pendingLimit||this.pendingLimit,this.features=new TS({major:0,minor:0,micro:0}),this.connectPromise=null;const s=typeof t.servers=="string"?[t.servers]:t.servers;this.servers=new KS(s,{randomize:!t.noRandomize}),this.closed=ot(),this.parser=new hy(this),this.heartbeats=new JS(this,this.options.pingInterval||Ob,this.options.maxPingOut||iE)}resetOutbound(){this.outbound.reset();const t=this.pongs;this.pongs=[];const r=me.errorForCode(le.Disconnect);r.stack="",t.forEach(s=>{s.reject(r)}),this.parser=new hy(this),this.infoReceived=!1}dispatchStatus(t){this.listeners.forEach(r=>{r.push(t)})}status(){const t=new kt;return this.listeners.push(t),t}prepare(){this.transport&&this.transport.discard(),this.info=void 0,this.resetOutbound();const t=ot();return t.catch(()=>{}),this.pongs.unshift(t),this.connectError=r=>{t.reject(r)},this.transport=MS(),this.transport.closed().then(async r=>{if(this.connected=!1,!this.isClosed()){await this.disconnected(this.transport.closeError||this.lastError);return}}),t}disconnect(){this.dispatchStatus({type:Ps.StaleConnection,data:""}),this.transport.disconnect()}reconnect(){return this.connected&&(this.dispatchStatus({type:Ps.ClientInitiatedReconnect,data:""}),this.transport.disconnect()),Promise.resolve()}async disconnected(t){this.dispatchStatus({type:wr.Disconnect,data:this.servers.getCurrentServer().toString()}),this.options.reconnect?await this.dialLoop().then(()=>{var r;this.dispatchStatus({type:wr.Reconnect,data:this.servers.getCurrentServer().toString()}),((r=this.lastError)==null?void 0:r.code)===le.AuthenticationExpired&&(this.lastError=void 0)}).catch(r=>{this._close(r)}):await this._close(t)}async dial(t){const r=this.prepare();let s;try{s=Gs(this.options.timeout||2e4);const l=this.transport.connect(t,this.options);await Promise.race([l,s]),(async()=>{try{for await(const c of this.transport)this.parser.parse(c)}catch(c){console.log("reader closed",c)}})().then()}catch(l){r.reject(l)}try{await Promise.race([s,r]),s&&s.cancel(),this.connected=!0,this.connectError=void 0,this.sendSubscriptions(),this.connectedOnce=!0,this.server.didConnect=!0,this.server.reconnects=0,this.flushPending(),this.heartbeats.start()}catch(l){throw s&&s.cancel(),await this.transport.close(l),l}}async _doDial(t){const{resolve:r}=this.options,s=await t.resolve({fn:ad(),debug:this.options.debug,randomize:!this.options.noRandomize,resolve:r});let l=null;for(const c of s)try{l=null,this.dispatchStatus({type:Ps.Reconnecting,data:c.toString()}),await this.dial(c);return}catch(d){l=d}throw l}dialLoop(){return this.connectPromise===null&&(this.connectPromise=this.dodialLoop(),this.connectPromise.then(()=>{}).catch(()=>{}).finally(()=>{this.connectPromise=null})),this.connectPromise}async dodialLoop(){let t;for(;;){this._closed&&this.servers.clear();const r=this.options.reconnectDelayHandler?this.options.reconnectDelayHandler():Ab;let s=r;const l=this.selectServer();if(!l||this.abortReconnect)throw t||(this.lastError?this.lastError:me.errorForCode(le.ConnectionRefused));const c=Date.now();if(l.lastConnect===0||l.lastConnect+r<=c){l.lastConnect=Date.now();try{await this._doDial(l);break}catch(d){if(t=d,!this.connectedOnce){if(this.options.waitOnFirstConnect)continue;this.servers.removeCurrentServer()}l.reconnects++;const g=this.options.maxReconnectAttempts||0;g!==-1&&l.reconnects>=g&&this.servers.removeCurrentServer()}}else s=Math.min(s,l.lastConnect+r-c),await Ys(s)}}static async connect(t,r){const s=new eu(t,r);return await s.dialLoop(),s}static toError(t){const r=t?t.toLowerCase():"";if(r.indexOf("permissions violation")!==-1){const s=new me(t,le.PermissionsViolation),l=t.match(/(Publish|Subscription) to "(\S+)"/);if(l){s.permissionContext={operation:l[1].toLowerCase(),subject:l[2],queue:void 0};const c=t.match(/using queue "(\S+)"/);c&&(s.permissionContext.queue=c[1])}return s}else return r.indexOf("authorization violation")!==-1?new me(t,le.AuthorizationViolation):r.indexOf("user authentication expired")!==-1?new me(t,le.AuthenticationExpired):r.indexOf("account authentication expired")!=-1?new me(t,le.AccountExpired):r.indexOf("authentication timeout")!==-1?new me(t,le.AuthenticationTimeout):new me(t,le.ProtocolError)}processMsg(t,r){if(this.inMsgs++,this.inBytes+=r.length,!this.subscriptions.sidCounter)return;const s=this.subscriptions.get(t.sid);s&&(s.received+=1,s.callback&&s.callback(null,new Nd(t,r,this)),s.max!==void 0&&s.received>=s.max&&s.unsubscribe())}processError(t){const r=Qg(t),s=eu.toError(r),l={type:wr.Error,data:s.code};if(s.isPermissionError()){let c=!1;if(s.permissionContext){l.permissionContext=s.permissionContext;const d=this.subscriptions.getMux();c=(d==null?void 0:d.subject)===s.permissionContext.subject}this.subscriptions.handleError(s),this.muxSubscriptions.handleError(c,s),c&&this.subscriptions.setMux(null)}this.dispatchStatus(l),this.handleError(s)}handleError(t){t.isAuthError()?this.handleAuthError(t):t.isProtocolError()?this.lastError=t:t.isAuthTimeout()&&(this.lastError=t),t.isPermissionError()||(this.lastError=t)}handleAuthError(t){this.lastError&&t.code===this.lastError.code&&this.options.ignoreAuthErrorAbort===!1&&(this.abortReconnect=!0),this.connectError?this.connectError(t):this.disconnect()}processPing(){this.transport.send(fE)}processPong(){const t=this.pongs.shift();t&&t.resolve()}processInfo(t){const r=JSON.parse(Qg(t));this.info=r;const s=this.options&&this.options.ignoreClusterUpdates?void 0:this.servers.update(r,this.transport.isEncrypted());if(!this.infoReceived){this.features.update($i(r.version)),this.infoReceived=!0,this.transport.isEncrypted()&&this.servers.updateTLSName();const{version:c,lang:d}=this.transport;try{const g=new hE({version:c,lang:d},this.options,r.nonce);r.headers&&(g.headers=!0,g.no_responders=!0);const y=JSON.stringify(g);this.transport.send(so(`CONNECT ${y}${Ic}`)),this.transport.send(py)}catch(g){this._close(g)}}s&&this.dispatchStatus({type:wr.Update,data:s}),(r.ldm!==void 0?r.ldm:!1)&&this.dispatchStatus({type:wr.LDM,data:this.servers.getCurrentServer().toString()})}push(t){switch(t.kind){case $t.MSG:{const{msg:r,data:s}=t;this.processMsg(r,s);break}case $t.OK:break;case $t.ERR:this.processError(t.data);break;case $t.PING:this.processPing();break;case $t.PONG:this.processPong();break;case $t.INFO:this.processInfo(t.data);break}}sendCommand(t,...r){const s=this.outbound.length();let l;typeof t=="string"?l=so(t):l=t,this.outbound.fill(l,...r),s===0?queueMicrotask(()=>{this.flushPending()}):this.outbound.size()>=this.pendingLimit&&this.flushPending()}publish(t,r=mn,s){let l;if(r instanceof Uint8Array)l=r;else if(typeof r=="string")l=Hi.encode(r);else throw me.errorForCode(le.BadPayload);let c=l.length;s=s||{},s.reply=s.reply||"";let d=mn,g=0;if(s.headers){if(this.info&&!this.info.headers)throw new me("headers",le.ServerOptionNotAvailable);d=s.headers.encode(),g=d.length,c=l.length+g}if(this.info&&c>this.info.max_payload)throw me.errorForCode(le.MaxPayloadExceeded);this.outBytes+=c,this.outMsgs++;let y;s.headers?(s.reply?y=`HPUB ${t} ${s.reply} ${g} ${c}\r
|
|
40
|
-
`:
|
|
41
|
-
`,this.sendCommand(
|
|
42
|
-
`:
|
|
43
|
-
`,this.sendCommand(
|
|
36
|
+
${this.ctx.stack}`),this.deferred.reject(r)):this.deferred.resolve(s),this.cancel()}cancel(r){this.timer&&this.timer.cancel(),this.mux.cancel(this),this.deferred.reject(r||me.errorForCode(le.Cancelled))}}const AS="$JS.API";function jS(i){return i=i||{},i.domain&&(i.apiPrefix=`$JS.${i.domain}.API`,delete i.domain),cu({apiPrefix:AS,timeout:5e3},i)}class go{constructor(t,r){A(this,"nc");A(this,"opts");A(this,"prefix");A(this,"timeout");A(this,"jc");this.nc=t,this.opts=jS(r),this._parseOpts(),this.prefix=this.opts.apiPrefix,this.timeout=this.opts.timeout,this.jc=Hn()}getOptions(){return Object.assign({},this.opts)}_parseOpts(){let t=this.opts.apiPrefix;if(!t||t.length===0)throw new Error("invalid empty prefix");t[t.length-1]==="."&&(t=t.substr(0,t.length-1)),this.opts.apiPrefix=t}async _request(t,r=null,s){s=s||{},s.timeout=this.timeout;let l=mn;r&&(l=this.jc.encode(r));let{retries:c}=s;c=c||1,c=c===-1?Number.MAX_SAFE_INTEGER:c;const d=Ad();for(let y=0;y<c;y++)try{const g=await this.nc.request(t,l,s);return this.parseJsResponse(g)}catch(g){const f=g;if((f.code==="503"||f.code===le.Timeout)&&y+1<c)await Ys(d.backoff(y));else throw g}}async findStream(t){const r={subject:t},l=await this._request(`${this.prefix}.STREAM.NAMES`,r);if(!l.streams||l.streams.length!==1)throw new Error("no stream matches subject");return l.streams[0]}getConnection(){return this.nc}parseJsResponse(t){const r=this.jc.decode(t.data),s=r;if(s.error){const l=xb(s.error.code,s.error.description);if(l!==null)throw l.api_error=s.error,l}return r}}class ro{constructor(t,r,s,l){A(this,"err");A(this,"offset");A(this,"pageInfo");A(this,"subject");A(this,"jsm");A(this,"filter");A(this,"payload");if(!t)throw new Error("subject is required");this.subject=t,this.jsm=s,this.offset=0,this.pageInfo={},this.filter=r,this.payload=l||{}}async next(){if(this.err)return[];if(this.pageInfo&&this.offset>=this.pageInfo.total)return[];const t={offset:this.offset};this.payload&&Object.assign(t,this.payload);try{const r=await this.jsm._request(this.subject,t,{timeout:this.jsm.timeout});this.pageInfo=r;const s=this.countResponse(r);return s===0?[]:(this.offset+=s,this.filter(r))}catch(r){throw this.err=r,r}}countResponse(t){var r,s,l;switch(t==null?void 0:t.type){case"io.nats.jetstream.api.v1.stream_names_response":case"io.nats.jetstream.api.v1.stream_list_response":return((r=t.streams)==null?void 0:r.length)||0;case"io.nats.jetstream.api.v1.consumer_list_response":return((s=t.consumers)==null?void 0:s.length)||0;default:return console.error(`jslister.ts: unknown API response for paged output: ${t==null?void 0:t.type}`),((l=t.streams)==null?void 0:l.length)||0}return 0}async*[Symbol.asyncIterator](){let t=await this.next();for(;t.length>0;){for(const r of t)yield r;t=await this.next()}}}function $i(i=""){const t=i.match(/(\d+).(\d+).(\d+)/);if(t)return{major:parseInt(t[1]),minor:parseInt(t[2]),micro:parseInt(t[3])};throw new Error(`'${i}' is not a semver value`)}function sd(i,t){return i.major<t.major?-1:i.major>t.major?1:i.minor<t.minor?-1:i.minor>t.minor?1:i.micro<t.micro?-1:i.micro>t.micro?1:0}var Ie;(function(i){i.JS_KV="js_kv",i.JS_OBJECTSTORE="js_objectstore",i.JS_PULL_MAX_BYTES="js_pull_max_bytes",i.JS_NEW_CONSUMER_CREATE_API="js_new_consumer_create",i.JS_ALLOW_DIRECT="js_allow_direct",i.JS_MULTIPLE_CONSUMER_FILTER="js_multiple_consumer_filter",i.JS_SIMPLIFICATION="js_simplification",i.JS_STREAM_CONSUMER_METADATA="js_stream_consumer_metadata",i.JS_CONSUMER_FILTER_SUBJECTS="js_consumer_filter_subjects",i.JS_STREAM_FIRST_SEQ="js_stream_first_seq",i.JS_STREAM_SUBJECT_TRANSFORM="js_stream_subject_transform",i.JS_STREAM_SOURCE_SUBJECT_TRANSFORM="js_stream_source_subject_transform",i.JS_STREAM_COMPRESSION="js_stream_compression",i.JS_DEFAULT_CONSUMER_LIMITS="js_default_consumer_limits",i.JS_BATCH_DIRECT_GET="js_batch_direct_get"})(Ie||(Ie={}));class TS{constructor(t){A(this,"server");A(this,"features");A(this,"disabled");this.features=new Map,this.disabled=[],this.update(t)}resetDisabled(){this.disabled.length=0,this.update(this.server)}disable(t){this.disabled.push(t),this.update(this.server)}isDisabled(t){return this.disabled.indexOf(t)!==-1}update(t){typeof t=="string"&&(t=$i(t)),this.server=t,this.set(Ie.JS_KV,"2.6.2"),this.set(Ie.JS_OBJECTSTORE,"2.6.3"),this.set(Ie.JS_PULL_MAX_BYTES,"2.8.3"),this.set(Ie.JS_NEW_CONSUMER_CREATE_API,"2.9.0"),this.set(Ie.JS_ALLOW_DIRECT,"2.9.0"),this.set(Ie.JS_MULTIPLE_CONSUMER_FILTER,"2.10.0"),this.set(Ie.JS_SIMPLIFICATION,"2.9.4"),this.set(Ie.JS_STREAM_CONSUMER_METADATA,"2.10.0"),this.set(Ie.JS_CONSUMER_FILTER_SUBJECTS,"2.10.0"),this.set(Ie.JS_STREAM_FIRST_SEQ,"2.10.0"),this.set(Ie.JS_STREAM_SUBJECT_TRANSFORM,"2.10.0"),this.set(Ie.JS_STREAM_SOURCE_SUBJECT_TRANSFORM,"2.10.0"),this.set(Ie.JS_STREAM_COMPRESSION,"2.10.0"),this.set(Ie.JS_DEFAULT_CONSUMER_LIMITS,"2.10.0"),this.set(Ie.JS_BATCH_DIRECT_GET,"2.11.0"),this.disabled.forEach(r=>{this.features.delete(r)})}set(t,r){this.features.set(t,{min:r,ok:sd(this.server,$i(r))>=0})}get(t){return this.features.get(t)||{min:"unknown",ok:!1}}supports(t){var r;return((r=this.get(t))==null?void 0:r.ok)||!1}require(t){return typeof t=="string"&&(t=$i(t)),sd(this.server,t)>=0}}class Zc extends go{constructor(t,r){super(t,r)}async add(t,r,s=Qc.Create){if(It(t),r.deliver_group&&r.flow_control)throw new Error("jetstream flow control is not supported with queue groups");if(r.deliver_group&&r.idle_heartbeat)throw new Error("jetstream idle heartbeat is not supported with queue groups");const l={};l.config=r,l.stream_name=t,l.action=s,l.config.durable_name&&Us(l.config.durable_name);const c=this.nc;let{min:d,ok:y}=c.features.get(Ie.JS_NEW_CONSUMER_CREATE_API);const g=r.name===""?void 0:r.name;if(g&&!y)throw new Error(`consumer 'name' requires server ${d}`);if(g)try{uu("name",g)}catch(v){const _=v.message,w=_.indexOf("cannot contain");throw w!==-1?new Error(`consumer 'name' ${_.substring(w)}`):v}let f,m="";if(Array.isArray(r.filter_subjects)){const{min:v,ok:_}=c.features.get(Ie.JS_MULTIPLE_CONSUMER_FILTER);if(!_)throw new Error(`consumer 'filter_subjects' requires server ${v}`);y=!1}if(r.metadata){const{min:v,ok:_}=c.features.get(Ie.JS_STREAM_CONSUMER_METADATA);if(!_)throw new Error(`consumer 'metadata' requires server ${v}`)}if(y&&(m=r.name??r.durable_name??""),m!==""){let v=r.filter_subject??void 0;v===">"&&(v=void 0),f=v!==void 0?`${this.prefix}.CONSUMER.CREATE.${t}.${m}.${v}`:`${this.prefix}.CONSUMER.CREATE.${t}.${m}`}else f=r.durable_name?`${this.prefix}.CONSUMER.DURABLE.CREATE.${t}.${r.durable_name}`:`${this.prefix}.CONSUMER.CREATE.${t}`;return await this._request(f,l)}async update(t,r,s){const l=await this.info(t,r),c=s;return this.add(t,Object.assign(l.config,c),Qc.Update)}async info(t,r){return It(t),Us(r),await this._request(`${this.prefix}.CONSUMER.INFO.${t}.${r}`)}async delete(t,r){return It(t),Us(r),(await this._request(`${this.prefix}.CONSUMER.DELETE.${t}.${r}`)).success}list(t){It(t);const r=l=>l.consumers,s=`${this.prefix}.CONSUMER.LIST.${t}`;return new ro(s,r,this)}pause(t,r,s){const l=`${this.prefix}.CONSUMER.PAUSE.${t}.${r}`,c={pause_until:s.toISOString()};return this._request(l,c)}resume(t,r){return this.pause(t,r,new Date(0))}}function ks(i,t,r=!1){if(r===!0&&!i)throw me.errorForCode(le.ApiError,new Error(`${t} is not a function`));if(i&&typeof i!="function")throw me.errorForCode(le.ApiError,new Error(`${t} is not a function`))}class NS extends kt{constructor(r,s,l){super();A(this,"sub");A(this,"adapter");A(this,"subIterDone");ks(l.adapter,"adapter",!0),this.adapter=l.adapter,l.callback&&ks(l.callback,"callback"),this.noIterator=typeof l.callback=="function",l.ingestionFilterFn&&(ks(l.ingestionFilterFn,"ingestionFilterFn"),this.ingestionFilterFn=l.ingestionFilterFn),l.protocolFilterFn&&(ks(l.protocolFilterFn,"protocolFilterFn"),this.protocolFilterFn=l.protocolFilterFn),l.dispatchedFn&&(ks(l.dispatchedFn,"dispatchedFn"),this.dispatchedFn=l.dispatchedFn),l.cleanupFn&&ks(l.cleanupFn,"cleanupFn");let c=(m,b)=>{this.callback(m,b)};if(l.callback){const m=l.callback;c=(b,v)=>{const[_,w]=this.adapter(b,v);if(_){m(_,null);return}const{ingest:S}=this.ingestionFilterFn?this.ingestionFilterFn(w,this):{ingest:!0};S&&(!this.protocolFilterFn||this.protocolFilterFn(w))&&(m(_,w),this.dispatchedFn&&w&&this.dispatchedFn(w))}}const{max:d,queue:y,timeout:g}=l,f={queue:y,timeout:g,callback:c};d&&d>0&&(f.max=d),this.sub=r.subscribe(s,f),l.cleanupFn&&(this.sub.cleanupFn=l.cleanupFn),this.noIterator||this.iterClosed.then(()=>{this.unsubscribe()}),this.subIterDone=ot(),Promise.all([this.sub.closed,this.iterClosed]).then(()=>{this.subIterDone.resolve()}).catch(()=>{this.subIterDone.resolve()}),(async m=>{await m.closed,this.stop()})(this.sub).then().catch()}unsubscribe(r){this.sub.unsubscribe(r)}drain(){return this.sub.drain()}isDraining(){return this.sub.isDraining()}isClosed(){return this.sub.isClosed()}callback(r,s){this.sub.cancelTimeout();const[l,c]=this.adapter(r,s);l&&this.stop(l),c&&this.push(c)}getSubject(){return this.sub.getSubject()}getReceived(){return this.sub.getReceived()}getProcessed(){return this.sub.getProcessed()}getPending(){return this.sub.getPending()}getID(){return this.sub.getID()}getMax(){return this.sub.getMax()}get closed(){return this.sub.closed}}let dn;function kS(i){dn=i}function Sb(){return dn!==void 0&&dn.defaultPort!==void 0?dn.defaultPort:4222}function Bh(){return dn!==void 0&&dn.urlParseFn?dn.urlParseFn:void 0}function CS(){if(!dn||typeof dn.factory!="function")throw new Error("transport fn is not set");return dn.factory()}function ad(){return dn!==void 0&&dn.dnsResolveFn?dn.dnsResolveFn:void 0}const Ic=`\r
|
|
37
|
+
`,Wc=Vs.fromAscii(Ic),MS=new Uint8Array(Wc)[0],RS=new Uint8Array(Wc)[1];function DS(i){for(let t=0;t<i.length;t++){const r=t+1;if(i.byteLength>r&&i[t]===MS&&i[r]===RS)return r+1}return 0}function qS(i){const t=DS(i);if(t>0){const s=new Uint8Array(i).slice(0,t);return hn.decode(s)}return""}const BS=4,Eb=48,LS=65,PS=97;function US(i,t,r,s){const l=new Uint8Array(16);return[0,0,0,0,0,0,0,0,0,0,255,255].forEach((d,y)=>{l[y]=d}),l[12]=i,l[13]=t,l[14]=r,l[15]=s,l}function od(i){return zS(i)!==void 0}function zS(i){for(let t=0;t<i.length;t++)switch(i[t]){case".":return Ob(i);case":":return IS(i)}}function Ob(i){const t=new Uint8Array(4);for(let r=0;r<4;r++){if(i.length===0)return;if(r>0){if(i[0]!==".")return;i=i.substring(1)}const{n:s,c:l,ok:c}=$S(i);if(!c||s>255)return;i=i.substring(l),t[r]=s}return US(t[0],t[1],t[2],t[3])}function IS(i){const t=new Uint8Array(16);let r=-1;if(i.length>=2&&i[0]===":"&&i[1]===":"&&(r=0,i=i.substring(2),i.length===0))return t;let s=0;for(;s<16;){const{n:l,c,ok:d}=HS(i);if(!d||l>65535)return;if(c<i.length&&i[c]==="."){if(r<0&&s!=12||s+4>16)return;const y=Ob(i);if(y===void 0)return;t[s]=y[12],t[s+1]=y[13],t[s+2]=y[14],t[s+3]=y[15],i="",s+=BS;break}if(t[s]=l>>8,t[s+1]=l,s+=2,i=i.substring(c),i.length===0)break;if(i[0]!==":"||i.length==1)return;if(i=i.substring(1),i[0]===":"){if(r>=0)return;if(r=s,i=i.substring(1),i.length===0)break}}if(i.length===0){if(s<16){if(r<0)return;const l=16-s;for(let c=s-1;c>=r;c--)t[c+l]=t[c];for(let c=r+l-1;c>=r;c--)t[c]=0}else if(r>=0)return;return t}}function $S(i){let t=0,r=0;for(t=0;t<i.length&&48<=i.charCodeAt(t)&&i.charCodeAt(t)<=57;t++)if(r=r*10+(i.charCodeAt(t)-Eb),r>=16777215)return{n:16777215,c:t,ok:!1};return t===0?{n:0,c:0,ok:!1}:{n:r,c:t,ok:!0}}function HS(i){let t=0,r=0;for(r=0;r<i.length;r++){if(48<=i.charCodeAt(r)&&i.charCodeAt(r)<=57)t*=16,t+=i.charCodeAt(r)-Eb;else if(97<=i.charCodeAt(r)&&i.charCodeAt(r)<=102)t*=16,t+=i.charCodeAt(r)-PS+10;else if(65<=i.charCodeAt(r)&&i.charCodeAt(r)<=70)t*=16,t+=i.charCodeAt(r)-LS+10;else break;if(t>=16777215)return{n:0,c:r,ok:!1}}return r===0?{n:0,c:r,ok:!1}:{n:t,c:r,ok:!0}}function GS(i){return i.indexOf("[")!==-1||i.indexOf("::")!==-1?!1:i.indexOf(".")!==-1||i.split(":").length<=2}function ld(i){return!GS(i)}function FS(i){const t="::FFFF:",r=i.toUpperCase().indexOf(t);if(r!==-1&&i.indexOf(".")!==-1){let s=i.substring(r+t.length);return s=s.replace("[",""),s.replace("]","")}return i}function VS(i){i=i.trim(),i.match(/^(.*:\/\/)(.*)/m)&&(i=i.replace(/^(.*:\/\/)(.*)/gm,"$2")),i=FS(i),ld(i)&&i.indexOf("[")===-1&&(i=`[${i}]`);const t=ld(i)?i.match(/(]:)(\d+)/):i.match(/(:)(\d+)/),r=t&&t.length===3&&t[1]&&t[2]?parseInt(t[2]):4222,s=r===80?"https":"http",l=new URL(`${s}://${i}`);l.port=`${r}`;let c=l.hostname;return c.charAt(0)==="["&&(c=c.substring(1,c.length-1)),{listen:l.host,hostname:c,port:r}}class oo{constructor(t,r=!1){A(this,"src");A(this,"listen");A(this,"hostname");A(this,"port");A(this,"didConnect");A(this,"reconnects");A(this,"lastConnect");A(this,"gossiped");A(this,"tlsName");A(this,"resolves");this.src=t,this.tlsName="";const s=VS(t);this.listen=s.listen,this.hostname=s.hostname,this.port=s.port,this.didConnect=!1,this.reconnects=0,this.lastConnect=0,this.gossiped=r}toString(){return this.listen}async resolve(t){if(!t.fn||t.resolve===!1)return[this];const r=[];if(od(this.hostname))return[this];{const s=await t.fn(this.hostname);t.debug&&console.log(`resolve ${this.hostname} = ${s.join(",")}`);for(const l of s){const c=this.port===80?"https":"http",d=new URL(`${c}://${ld(l)?"["+l+"]":l}`);d.port=`${this.port}`;const y=new oo(d.host,!1);y.tlsName=this.hostname,r.push(y)}}return t.randomize&&bb(r),this.resolves=r,r}}class YS{constructor(t=[],r={}){A(this,"firstSelect");A(this,"servers");A(this,"currentServer");A(this,"tlsName");A(this,"randomize");this.firstSelect=!0,this.servers=[],this.tlsName="",this.randomize=r.randomize||!1;const s=Bh();t&&(t.forEach(l=>{l=s?s(l):l,this.servers.push(new oo(l))}),this.randomize&&(this.servers=bb(this.servers))),this.servers.length===0&&this.addServer(`${Zh}:${Sb()}`,!1),this.currentServer=this.servers[0]}clear(){this.servers.length=0}updateTLSName(){const t=this.getCurrentServer();od(t.hostname)||(this.tlsName=t.hostname,this.servers.forEach(r=>{r.gossiped&&(r.tlsName=this.tlsName)}))}getCurrentServer(){return this.currentServer}addServer(t,r=!1){const s=Bh();t=s?s(t):t;const l=new oo(t,r);od(l.hostname)&&(l.tlsName=this.tlsName),this.servers.push(l)}selectServer(){if(this.firstSelect)return this.firstSelect=!1,this.currentServer;const t=this.servers.shift();return t&&(this.servers.push(t),this.currentServer=t),t}removeCurrentServer(){this.removeServer(this.currentServer)}removeServer(t){if(t){const r=this.servers.indexOf(t);this.servers.splice(r,1)}}length(){return this.servers.length}next(){return this.servers.length?this.servers[0]:void 0}getServers(){return this.servers}update(t,r){const s=[];let l=[];const c=Bh(),d=new Map;t.connect_urls&&t.connect_urls.length>0&&t.connect_urls.forEach(g=>{g=c?c(g,r):g;const f=new oo(g,!0);d.set(g,f)});const y=[];return this.servers.forEach((g,f)=>{const m=g.listen;g.gossiped&&this.currentServer.listen!==m&&d.get(m)===void 0&&y.push(f),d.delete(m)}),y.reverse(),y.forEach(g=>{const f=this.servers.splice(g,1);l=l.concat(f[0].listen)}),d.forEach((g,f)=>{this.servers.push(g),s.push(f)}),{added:s,deleted:l}}}class KS{constructor(){A(this,"baseInbox");A(this,"reqs");this.reqs=new Map}size(){return this.reqs.size}init(t){return this.baseInbox=`${Sr(t)}.`,this.baseInbox}add(t){isNaN(t.received)||(t.received=0),this.reqs.set(t.token,t)}get(t){return this.reqs.get(t)}cancel(t){this.reqs.delete(t.token)}getToken(t){const r=t.subject||"";return r.indexOf(this.baseInbox)===0?r.substring(this.baseInbox.length):null}all(){return Array.from(this.reqs.values())}handleError(t,r){if(r&&r.permissionContext){if(t)return this.all().forEach(l=>{l.resolver(r,{})}),!0;const s=r.permissionContext;if(s.operation==="publish"){const l=this.all().find(c=>c.requestSubject===s.subject);if(l)return l.resolver(r,{}),!0}}return!1}dispatcher(){return(t,r)=>{const s=this.getToken(r);if(s){const l=this.get(s);l&&(t===null&&r.headers&&(t=vb(r)),l.resolver(t,r))}}}close(){const t=me.errorForCode(le.Timeout);this.reqs.forEach(r=>{r.resolver(t,{})})}}class XS{constructor(t,r,s){A(this,"ph");A(this,"interval");A(this,"maxOut");A(this,"timer");A(this,"pendings");this.ph=t,this.interval=r,this.maxOut=s,this.pendings=[]}start(){this.cancel(),this._schedule()}cancel(t){this.timer&&(clearTimeout(this.timer),this.timer=void 0),this._reset(),t&&this.ph.disconnect()}_schedule(){this.timer=setTimeout(()=>{if(this.ph.dispatchStatus({type:Ps.PingTimer,data:`${this.pendings.length+1}`}),this.pendings.length===this.maxOut){this.cancel(!0);return}const t=ot();this.ph.flush(t).then(()=>{this._reset()}).catch(()=>{this.cancel()}),this.pendings.push(t),this._schedule()},this.interval)}_reset(){this.pendings=this.pendings.filter(t=>(t.resolve(),!1))}}class JS extends Error{constructor(t){super(t),this.name="AssertionError"}}function QS(i,t="Assertion failed."){if(!i)throw new JS(t)}const ug=32*1024,Lh=2**32-2;function Vl(i,t,r=0){const s=t.byteLength-r;return i.byteLength>s&&(i=i.subarray(0,s)),t.set(i,r),i.byteLength}class Ph{constructor(t){A(this,"_buf");A(this,"_off");if(this._off=0,t==null){this._buf=new Uint8Array(0);return}this._buf=new Uint8Array(t)}bytes(t={copy:!0}){return t.copy===!1?this._buf.subarray(this._off):this._buf.slice(this._off)}empty(){return this._buf.byteLength<=this._off}get length(){return this._buf.byteLength-this._off}get capacity(){return this._buf.buffer.byteLength}truncate(t){if(t===0){this.reset();return}if(t<0||t>this.length)throw Error("bytes.Buffer: truncation out of range");this._reslice(this._off+t)}reset(){this._reslice(0),this._off=0}_tryGrowByReslice(t){const r=this._buf.byteLength;return t<=this.capacity-r?(this._reslice(r+t),r):-1}_reslice(t){QS(t<=this._buf.buffer.byteLength),this._buf=new Uint8Array(this._buf.buffer,0,t)}readByte(){const t=new Uint8Array(1);return this.read(t)?t[0]:null}read(t){if(this.empty())return this.reset(),t.byteLength===0?0:null;const r=Vl(this._buf.subarray(this._off),t);return this._off+=r,r}writeByte(t){return this.write(Uint8Array.of(t))}writeString(t){return this.write(Hi.encode(t))}write(t){const r=this._grow(t.byteLength);return Vl(t,this._buf,r)}_grow(t){const r=this.length;r===0&&this._off!==0&&this.reset();const s=this._tryGrowByReslice(t);if(s>=0)return s;const l=this.capacity;if(t<=Math.floor(l/2)-r)Vl(this._buf.subarray(this._off),this._buf);else{if(l+t>Lh)throw new Error("The buffer cannot be grown beyond the maximum size.");{const c=new Uint8Array(Math.min(2*l+t,Lh));Vl(this._buf.subarray(this._off),c),this._buf=c}}return this._off=0,this._reslice(Math.min(r+t,Lh)),r}grow(t){if(t<0)throw Error("Buffer._grow: negative count");const r=this._grow(t);this._reslice(r)}readFrom(t){let r=0;const s=new Uint8Array(ug);for(;;){const l=this.capacity-this.length<ug,c=l?s:new Uint8Array(this._buf.buffer,this.length),d=t.read(c);if(d===null)return r;l?this.write(c.subarray(0,d)):this._reslice(this.length+d),r+=d}}}var $t;(function(i){i[i.OK=0]="OK",i[i.ERR=1]="ERR",i[i.MSG=2]="MSG",i[i.INFO=3]="INFO",i[i.PING=4]="PING",i[i.PONG=5]="PONG"})($t||($t={}));function fg(){const i={};return i.sid=-1,i.hdr=-1,i.size=-1,i}const ZS=48;class hg{constructor(t){A(this,"dispatcher");A(this,"state");A(this,"as");A(this,"drop");A(this,"hdr");A(this,"ma");A(this,"argBuf");A(this,"msgBuf");this.dispatcher=t,this.state=ue.OP_START,this.as=0,this.drop=0,this.hdr=0}parse(t){let r;for(r=0;r<t.length;r++){const s=t[r];switch(this.state){case ue.OP_START:switch(s){case fe.M:case fe.m:this.state=ue.OP_M,this.hdr=-1,this.ma=fg();break;case fe.H:case fe.h:this.state=ue.OP_H,this.hdr=0,this.ma=fg();break;case fe.P:case fe.p:this.state=ue.OP_P;break;case fe.PLUS:this.state=ue.OP_PLUS;break;case fe.MINUS:this.state=ue.OP_MINUS;break;case fe.I:case fe.i:this.state=ue.OP_I;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_H:switch(s){case fe.M:case fe.m:this.state=ue.OP_M;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_M:switch(s){case fe.S:case fe.s:this.state=ue.OP_MS;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MS:switch(s){case fe.G:case fe.g:this.state=ue.OP_MSG;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MSG:switch(s){case fe.SPACE:case fe.TAB:this.state=ue.OP_MSG_SPC;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MSG_SPC:switch(s){case fe.SPACE:case fe.TAB:continue;default:this.state=ue.MSG_ARG,this.as=r}break;case ue.MSG_ARG:switch(s){case fe.CR:this.drop=1;break;case fe.NL:{const l=this.argBuf?this.argBuf.bytes():t.subarray(this.as,r-this.drop);this.processMsgArgs(l),this.drop=0,this.as=r+1,this.state=ue.MSG_PAYLOAD,r=this.as+this.ma.size-1;break}default:this.argBuf&&this.argBuf.writeByte(s)}break;case ue.MSG_PAYLOAD:if(this.msgBuf)if(this.msgBuf.length>=this.ma.size){const l=this.msgBuf.bytes({copy:!1});this.dispatcher.push({kind:$t.MSG,msg:this.ma,data:l}),this.argBuf=void 0,this.msgBuf=void 0,this.state=ue.MSG_END}else{let l=this.ma.size-this.msgBuf.length;const c=t.length-r;c<l&&(l=c),l>0?(this.msgBuf.write(t.subarray(r,r+l)),r=r+l-1):this.msgBuf.writeByte(s)}else r-this.as>=this.ma.size&&(this.dispatcher.push({kind:$t.MSG,msg:this.ma,data:t.subarray(this.as,r)}),this.argBuf=void 0,this.msgBuf=void 0,this.state=ue.MSG_END);break;case ue.MSG_END:switch(s){case fe.NL:this.drop=0,this.as=r+1,this.state=ue.OP_START;break;default:continue}break;case ue.OP_PLUS:switch(s){case fe.O:case fe.o:this.state=ue.OP_PLUS_O;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PLUS_O:switch(s){case fe.K:case fe.k:this.state=ue.OP_PLUS_OK;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PLUS_OK:switch(s){case fe.NL:this.dispatcher.push({kind:$t.OK}),this.drop=0,this.state=ue.OP_START;break}break;case ue.OP_MINUS:switch(s){case fe.E:case fe.e:this.state=ue.OP_MINUS_E;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MINUS_E:switch(s){case fe.R:case fe.r:this.state=ue.OP_MINUS_ER;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MINUS_ER:switch(s){case fe.R:case fe.r:this.state=ue.OP_MINUS_ERR;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MINUS_ERR:switch(s){case fe.SPACE:case fe.TAB:this.state=ue.OP_MINUS_ERR_SPC;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_MINUS_ERR_SPC:switch(s){case fe.SPACE:case fe.TAB:continue;default:this.state=ue.MINUS_ERR_ARG,this.as=r}break;case ue.MINUS_ERR_ARG:switch(s){case fe.CR:this.drop=1;break;case fe.NL:{let l;this.argBuf?(l=this.argBuf.bytes(),this.argBuf=void 0):l=t.subarray(this.as,r-this.drop),this.dispatcher.push({kind:$t.ERR,data:l}),this.drop=0,this.as=r+1,this.state=ue.OP_START;break}default:this.argBuf&&this.argBuf.write(Uint8Array.of(s))}break;case ue.OP_P:switch(s){case fe.I:case fe.i:this.state=ue.OP_PI;break;case fe.O:case fe.o:this.state=ue.OP_PO;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PO:switch(s){case fe.N:case fe.n:this.state=ue.OP_PON;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PON:switch(s){case fe.G:case fe.g:this.state=ue.OP_PONG;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PONG:switch(s){case fe.NL:this.dispatcher.push({kind:$t.PONG}),this.drop=0,this.state=ue.OP_START;break}break;case ue.OP_PI:switch(s){case fe.N:case fe.n:this.state=ue.OP_PIN;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PIN:switch(s){case fe.G:case fe.g:this.state=ue.OP_PING;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_PING:switch(s){case fe.NL:this.dispatcher.push({kind:$t.PING}),this.drop=0,this.state=ue.OP_START;break}break;case ue.OP_I:switch(s){case fe.N:case fe.n:this.state=ue.OP_IN;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_IN:switch(s){case fe.F:case fe.f:this.state=ue.OP_INF;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_INF:switch(s){case fe.O:case fe.o:this.state=ue.OP_INFO;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_INFO:switch(s){case fe.SPACE:case fe.TAB:this.state=ue.OP_INFO_SPC;break;default:throw this.fail(t.subarray(r))}break;case ue.OP_INFO_SPC:switch(s){case fe.SPACE:case fe.TAB:continue;default:this.state=ue.INFO_ARG,this.as=r}break;case ue.INFO_ARG:switch(s){case fe.CR:this.drop=1;break;case fe.NL:{let l;this.argBuf?(l=this.argBuf.bytes(),this.argBuf=void 0):l=t.subarray(this.as,r-this.drop),this.dispatcher.push({kind:$t.INFO,data:l}),this.drop=0,this.as=r+1,this.state=ue.OP_START;break}default:this.argBuf&&this.argBuf.writeByte(s)}break;default:throw this.fail(t.subarray(r))}}(this.state===ue.MSG_ARG||this.state===ue.MINUS_ERR_ARG||this.state===ue.INFO_ARG)&&!this.argBuf&&(this.argBuf=new Ph(t.subarray(this.as,r-this.drop))),this.state===ue.MSG_PAYLOAD&&!this.msgBuf&&(this.argBuf||this.cloneMsgArg(),this.msgBuf=new Ph(t.subarray(this.as)))}cloneMsgArg(){const t=this.ma.subject.length,r=this.ma.reply?this.ma.reply.length:0,s=new Uint8Array(t+r);s.set(this.ma.subject),this.ma.reply&&s.set(this.ma.reply,t),this.argBuf=new Ph(s),this.ma.subject=s.subarray(0,t),this.ma.reply&&(this.ma.reply=s.subarray(t))}processMsgArgs(t){if(this.hdr>=0)return this.processHeaderMsgArgs(t);const r=[];let s=-1;for(let l=0;l<t.length;l++)switch(t[l]){case fe.SPACE:case fe.TAB:case fe.CR:case fe.NL:s>=0&&(r.push(t.subarray(s,l)),s=-1);break;default:s<0&&(s=l)}switch(s>=0&&r.push(t.subarray(s)),r.length){case 3:this.ma.subject=r[0],this.ma.sid=this.protoParseInt(r[1]),this.ma.reply=void 0,this.ma.size=this.protoParseInt(r[2]);break;case 4:this.ma.subject=r[0],this.ma.sid=this.protoParseInt(r[1]),this.ma.reply=r[2],this.ma.size=this.protoParseInt(r[3]);break;default:throw this.fail(t,"processMsgArgs Parse Error")}if(this.ma.sid<0)throw this.fail(t,"processMsgArgs Bad or Missing Sid Error");if(this.ma.size<0)throw this.fail(t,"processMsgArgs Bad or Missing Size Error")}fail(t,r=""){return r?r=`${r} [${this.state}]`:r=`parse error [${this.state}]`,new Error(`${r}: ${hn.decode(t)}`)}processHeaderMsgArgs(t){const r=[];let s=-1;for(let l=0;l<t.length;l++)switch(t[l]){case fe.SPACE:case fe.TAB:case fe.CR:case fe.NL:s>=0&&(r.push(t.subarray(s,l)),s=-1);break;default:s<0&&(s=l)}switch(s>=0&&r.push(t.subarray(s)),r.length){case 4:this.ma.subject=r[0],this.ma.sid=this.protoParseInt(r[1]),this.ma.reply=void 0,this.ma.hdr=this.protoParseInt(r[2]),this.ma.size=this.protoParseInt(r[3]);break;case 5:this.ma.subject=r[0],this.ma.sid=this.protoParseInt(r[1]),this.ma.reply=r[2],this.ma.hdr=this.protoParseInt(r[3]),this.ma.size=this.protoParseInt(r[4]);break;default:throw this.fail(t,"processHeaderMsgArgs Parse Error")}if(this.ma.sid<0)throw this.fail(t,"processHeaderMsgArgs Bad or Missing Sid Error");if(this.ma.hdr<0||this.ma.hdr>this.ma.size)throw this.fail(t,"processHeaderMsgArgs Bad or Missing Header Size Error");if(this.ma.size<0)throw this.fail(t,"processHeaderMsgArgs Bad or Missing Size Error")}protoParseInt(t){if(t.length===0)return-1;let r=0;for(let s=0;s<t.length;s++){if(t[s]<48||t[s]>57)return-1;r=r*10+(t[s]-ZS)}return r}}var ue;(function(i){i[i.OP_START=0]="OP_START",i[i.OP_PLUS=1]="OP_PLUS",i[i.OP_PLUS_O=2]="OP_PLUS_O",i[i.OP_PLUS_OK=3]="OP_PLUS_OK",i[i.OP_MINUS=4]="OP_MINUS",i[i.OP_MINUS_E=5]="OP_MINUS_E",i[i.OP_MINUS_ER=6]="OP_MINUS_ER",i[i.OP_MINUS_ERR=7]="OP_MINUS_ERR",i[i.OP_MINUS_ERR_SPC=8]="OP_MINUS_ERR_SPC",i[i.MINUS_ERR_ARG=9]="MINUS_ERR_ARG",i[i.OP_M=10]="OP_M",i[i.OP_MS=11]="OP_MS",i[i.OP_MSG=12]="OP_MSG",i[i.OP_MSG_SPC=13]="OP_MSG_SPC",i[i.MSG_ARG=14]="MSG_ARG",i[i.MSG_PAYLOAD=15]="MSG_PAYLOAD",i[i.MSG_END=16]="MSG_END",i[i.OP_H=17]="OP_H",i[i.OP_P=18]="OP_P",i[i.OP_PI=19]="OP_PI",i[i.OP_PIN=20]="OP_PIN",i[i.OP_PING=21]="OP_PING",i[i.OP_PO=22]="OP_PO",i[i.OP_PON=23]="OP_PON",i[i.OP_PONG=24]="OP_PONG",i[i.OP_I=25]="OP_I",i[i.OP_IN=26]="OP_IN",i[i.OP_INF=27]="OP_INF",i[i.OP_INFO=28]="OP_INFO",i[i.OP_INFO_SPC=29]="OP_INFO_SPC",i[i.INFO_ARG=30]="INFO_ARG"})(ue||(ue={}));var fe;(function(i){i[i.CR=13]="CR",i[i.E=69]="E",i[i.e=101]="e",i[i.F=70]="F",i[i.f=102]="f",i[i.G=71]="G",i[i.g=103]="g",i[i.H=72]="H",i[i.h=104]="h",i[i.I=73]="I",i[i.i=105]="i",i[i.K=75]="K",i[i.k=107]="k",i[i.M=77]="M",i[i.m=109]="m",i[i.MINUS=45]="MINUS",i[i.N=78]="N",i[i.n=110]="n",i[i.NL=10]="NL",i[i.O=79]="O",i[i.o=111]="o",i[i.P=80]="P",i[i.p=112]="p",i[i.PLUS=43]="PLUS",i[i.R=82]="R",i[i.r=114]="r",i[i.S=83]="S",i[i.s=115]="s",i[i.SPACE=32]="SPACE",i[i.TAB=9]="TAB"})(fe||(fe={}));(function(i){var t=function(O,N){this.hi=O|0,this.lo=N|0},r=function(O){var N,T=new Float64Array(16);if(O)for(N=0;N<O.length;N++)T[N]=O[N];return T},s=function(){throw new Error("no PRNG")},l=new Uint8Array(16),c=new Uint8Array(32);c[0]=9;var d=r(),y=r([1]),g=r([56129,1]),f=r([30883,4953,19914,30187,55467,16705,2637,112,59544,30585,16505,36039,65139,11119,27886,20995]),m=r([61785,9906,39828,60374,45398,33411,5274,224,53552,61171,33010,6542,64743,22239,55772,9222]),b=r([54554,36645,11616,51542,42930,38181,51040,26924,56412,64982,57905,49316,21502,52590,14035,8553]),v=r([26200,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214]),_=r([41136,18958,6951,50414,58488,44335,6150,12099,55207,15867,153,11085,57099,20417,9344,11139]);function w(O,N){return O<<N|O>>>32-N}function S(O,N){var T=O[N+3]&255;return T=T<<8|O[N+2]&255,T=T<<8|O[N+1]&255,T<<8|O[N+0]&255}function M(O,N){var T=O[N]<<24|O[N+1]<<16|O[N+2]<<8|O[N+3],k=O[N+4]<<24|O[N+5]<<16|O[N+6]<<8|O[N+7];return new t(T,k)}function B(O,N,T){var k;for(k=0;k<4;k++)O[N+k]=T&255,T>>>=8}function U(O,N,T){O[N]=T.hi>>24&255,O[N+1]=T.hi>>16&255,O[N+2]=T.hi>>8&255,O[N+3]=T.hi&255,O[N+4]=T.lo>>24&255,O[N+5]=T.lo>>16&255,O[N+6]=T.lo>>8&255,O[N+7]=T.lo&255}function re(O,N,T,k,D){var I,te=0;for(I=0;I<D;I++)te|=O[N+I]^T[k+I];return(1&te-1>>>8)-1}function ce(O,N,T,k){return re(O,N,T,k,16)}function C(O,N,T,k){return re(O,N,T,k,32)}function P(O,N,T,k,D){var I=new Uint32Array(16),te=new Uint32Array(16),se=new Uint32Array(16),V=new Uint32Array(4),ee,pe,Re;for(ee=0;ee<4;ee++)te[5*ee]=S(k,4*ee),te[1+ee]=S(T,4*ee),te[6+ee]=S(N,4*ee),te[11+ee]=S(T,16+4*ee);for(ee=0;ee<16;ee++)se[ee]=te[ee];for(ee=0;ee<20;ee++){for(pe=0;pe<4;pe++){for(Re=0;Re<4;Re++)V[Re]=te[(5*pe+4*Re)%16];for(V[1]^=w(V[0]+V[3]|0,7),V[2]^=w(V[1]+V[0]|0,9),V[3]^=w(V[2]+V[1]|0,13),V[0]^=w(V[3]+V[2]|0,18),Re=0;Re<4;Re++)I[4*pe+(pe+Re)%4]=V[Re]}for(Re=0;Re<16;Re++)te[Re]=I[Re]}if(D){for(ee=0;ee<16;ee++)te[ee]=te[ee]+se[ee]|0;for(ee=0;ee<4;ee++)te[5*ee]=te[5*ee]-S(k,4*ee)|0,te[6+ee]=te[6+ee]-S(N,4*ee)|0;for(ee=0;ee<4;ee++)B(O,4*ee,te[5*ee]),B(O,16+4*ee,te[6+ee])}else for(ee=0;ee<16;ee++)B(O,4*ee,te[ee]+se[ee]|0)}function ie(O,N,T,k){return P(O,N,T,k,!1),0}function X(O,N,T,k){return P(O,N,T,k,!0),0}var L=new Uint8Array([101,120,112,97,110,100,32,51,50,45,98,121,116,101,32,107]);function G(O,N,T,k,D,I,te){var se=new Uint8Array(16),V=new Uint8Array(64),ee,pe;if(!D)return 0;for(pe=0;pe<16;pe++)se[pe]=0;for(pe=0;pe<8;pe++)se[pe]=I[pe];for(;D>=64;){for(ie(V,se,te,L),pe=0;pe<64;pe++)O[N+pe]=(T?T[k+pe]:0)^V[pe];for(ee=1,pe=8;pe<16;pe++)ee=ee+(se[pe]&255)|0,se[pe]=ee&255,ee>>>=8;D-=64,N+=64,T&&(k+=64)}if(D>0)for(ie(V,se,te,L),pe=0;pe<D;pe++)O[N+pe]=(T?T[k+pe]:0)^V[pe];return 0}function W(O,N,T,k,D){return G(O,N,null,0,T,k,D)}function J(O,N,T,k,D){var I=new Uint8Array(32);return X(I,k,D,L),W(O,N,T,k.subarray(16),I)}function he(O,N,T,k,D,I,te){var se=new Uint8Array(32);return X(se,I,te,L),G(O,N,T,k,D,I.subarray(16),se)}function xe(O,N){var T,k=0;for(T=0;T<17;T++)k=k+(O[T]+N[T]|0)|0,O[T]=k&255,k>>>=8}var Te=new Uint32Array([5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252]);function Y(O,N,T,k,D,I){var te,se,V,ee,pe=new Uint32Array(17),Re=new Uint32Array(17),et=new Uint32Array(17),Pt=new Uint32Array(17),Dn=new Uint32Array(17);for(V=0;V<17;V++)Re[V]=et[V]=0;for(V=0;V<16;V++)Re[V]=I[V];for(Re[3]&=15,Re[4]&=252,Re[7]&=15,Re[8]&=252,Re[11]&=15,Re[12]&=252,Re[15]&=15;D>0;){for(V=0;V<17;V++)Pt[V]=0;for(V=0;V<16&&V<D;++V)Pt[V]=T[k+V];for(Pt[V]=1,k+=V,D-=V,xe(et,Pt),se=0;se<17;se++)for(pe[se]=0,V=0;V<17;V++)pe[se]=pe[se]+et[V]*(V<=se?Re[se-V]:320*Re[se+17-V]|0)|0|0;for(se=0;se<17;se++)et[se]=pe[se];for(ee=0,V=0;V<16;V++)ee=ee+et[V]|0,et[V]=ee&255,ee>>>=8;for(ee=ee+et[16]|0,et[16]=ee&3,ee=5*(ee>>>2)|0,V=0;V<16;V++)ee=ee+et[V]|0,et[V]=ee&255,ee>>>=8;ee=ee+et[16]|0,et[16]=ee}for(V=0;V<17;V++)Dn[V]=et[V];for(xe(et,Te),te=-(et[16]>>>7)|0,V=0;V<17;V++)et[V]^=te&(Dn[V]^et[V]);for(V=0;V<16;V++)Pt[V]=I[V+16];for(Pt[16]=0,xe(et,Pt),V=0;V<16;V++)O[N+V]=et[V];return 0}function ae(O,N,T,k,D,I){var te=new Uint8Array(16);return Y(te,0,T,k,D,I),ce(O,N,te,0)}function de(O,N,T,k,D){var I;if(T<32)return-1;for(he(O,0,N,0,T,k,D),Y(O,16,O,32,T-32,O),I=0;I<16;I++)O[I]=0;return 0}function Oe(O,N,T,k,D){var I,te=new Uint8Array(32);if(T<32||(J(te,0,32,k,D),ae(N,16,N,32,T-32,te)!==0))return-1;for(he(O,0,N,0,T,k,D),I=0;I<32;I++)O[I]=0;return 0}function oe(O,N){var T;for(T=0;T<16;T++)O[T]=N[T]|0}function je(O){var N,T;for(T=0;T<16;T++)O[T]+=65536,N=Math.floor(O[T]/65536),O[(T+1)*(T<15?1:0)]+=N-1+37*(N-1)*(T===15?1:0),O[T]-=N*65536}function Se(O,N,T){for(var k,D=~(T-1),I=0;I<16;I++)k=D&(O[I]^N[I]),O[I]^=k,N[I]^=k}function Ne(O,N){var T,k,D,I=r(),te=r();for(T=0;T<16;T++)te[T]=N[T];for(je(te),je(te),je(te),k=0;k<2;k++){for(I[0]=te[0]-65517,T=1;T<15;T++)I[T]=te[T]-65535-(I[T-1]>>16&1),I[T-1]&=65535;I[15]=te[15]-32767-(I[14]>>16&1),D=I[15]>>16&1,I[14]&=65535,Se(te,I,1-D)}for(T=0;T<16;T++)O[2*T]=te[T]&255,O[2*T+1]=te[T]>>8}function We(O,N){var T=new Uint8Array(32),k=new Uint8Array(32);return Ne(T,O),Ne(k,N),C(T,0,k,0)}function Ae(O){var N=new Uint8Array(32);return Ne(N,O),N[0]&1}function ct(O,N){var T;for(T=0;T<16;T++)O[T]=N[2*T]+(N[2*T+1]<<8);O[15]&=32767}function At(O,N,T){var k;for(k=0;k<16;k++)O[k]=N[k]+T[k]|0}function qt(O,N,T){var k;for(k=0;k<16;k++)O[k]=N[k]-T[k]|0}function ke(O,N,T){var k,D,I=new Float64Array(31);for(k=0;k<31;k++)I[k]=0;for(k=0;k<16;k++)for(D=0;D<16;D++)I[k+D]+=N[k]*T[D];for(k=0;k<15;k++)I[k]+=38*I[k+16];for(k=0;k<16;k++)O[k]=I[k];je(O),je(O)}function Bt(O,N){ke(O,N,N)}function di(O,N){var T=r(),k;for(k=0;k<16;k++)T[k]=N[k];for(k=253;k>=0;k--)Bt(T,T),k!==2&&k!==4&&ke(T,T,N);for(k=0;k<16;k++)O[k]=T[k]}function Gi(O,N){var T=r(),k;for(k=0;k<16;k++)T[k]=N[k];for(k=250;k>=0;k--)Bt(T,T),k!==1&&ke(T,T,N);for(k=0;k<16;k++)O[k]=T[k]}function mi(O,N,T){var k=new Uint8Array(32),D=new Float64Array(80),I,te,se=r(),V=r(),ee=r(),pe=r(),Re=r(),et=r();for(te=0;te<31;te++)k[te]=N[te];for(k[31]=N[31]&127|64,k[0]&=248,ct(D,T),te=0;te<16;te++)V[te]=D[te],pe[te]=se[te]=ee[te]=0;for(se[0]=pe[0]=1,te=254;te>=0;--te)I=k[te>>>3]>>>(te&7)&1,Se(se,V,I),Se(ee,pe,I),At(Re,se,ee),qt(se,se,ee),At(ee,V,pe),qt(V,V,pe),Bt(pe,Re),Bt(et,se),ke(se,ee,se),ke(ee,V,Re),At(Re,se,ee),qt(se,se,ee),Bt(V,se),qt(ee,pe,et),ke(se,ee,g),At(se,se,pe),ke(ee,ee,se),ke(se,pe,et),ke(pe,V,D),Bt(V,Re),Se(se,V,I),Se(ee,pe,I);for(te=0;te<16;te++)D[te+16]=se[te],D[te+32]=ee[te],D[te+48]=V[te],D[te+64]=pe[te];var Pt=D.subarray(32),Dn=D.subarray(16);return di(Pt,Pt),ke(Dn,Dn,Pt),Ne(O,Dn),0}function bn(O,N){return mi(O,N,c)}function Fi(O,N){return s(N,32),bn(O,N)}function Ar(O,N,T){var k=new Uint8Array(32);return mi(k,T,N),X(O,l,k,L)}var Eo=de,Oo=Oe;function Js(O,N,T,k,D,I){var te=new Uint8Array(32);return Ar(te,D,I),Eo(O,N,T,k,te)}function Qs(O,N,T,k,D,I){var te=new Uint8Array(32);return Ar(te,D,I),Oo(O,N,T,k,te)}function er(){var O=0,N=0,T=0,k=0,D=65535,I,te,se;for(se=0;se<arguments.length;se++)I=arguments[se].lo,te=arguments[se].hi,O+=I&D,N+=I>>>16,T+=te&D,k+=te>>>16;return N+=O>>>16,T+=N>>>16,k+=T>>>16,new t(T&D|k<<16,O&D|N<<16)}function Ao(O,N){return new t(O.hi>>>N,O.lo>>>N|O.hi<<32-N)}function Vi(){var O=0,N=0,T;for(T=0;T<arguments.length;T++)O^=arguments[T].lo,N^=arguments[T].hi;return new t(N,O)}function it(O,N){var T,k,D=32-N;return N<32?(T=O.hi>>>N|O.lo<<D,k=O.lo>>>N|O.hi<<D):N<64&&(T=O.lo>>>N|O.hi<<D,k=O.hi>>>N|O.lo<<D),new t(T,k)}function vu(O,N,T){var k=O.hi&N.hi^~O.hi&T.hi,D=O.lo&N.lo^~O.lo&T.lo;return new t(k,D)}function jo(O,N,T){var k=O.hi&N.hi^O.hi&T.hi^N.hi&T.hi,D=O.lo&N.lo^O.lo&T.lo^N.lo&T.lo;return new t(k,D)}function To(O){return Vi(it(O,28),it(O,34),it(O,39))}function Yi(O){return Vi(it(O,14),it(O,18),it(O,41))}function xu(O){return Vi(it(O,1),it(O,8),Ao(O,7))}function No(O){return Vi(it(O,19),it(O,61),Ao(O,6))}var _u=[new t(1116352408,3609767458),new t(1899447441,602891725),new t(3049323471,3964484399),new t(3921009573,2173295548),new t(961987163,4081628472),new t(1508970993,3053834265),new t(2453635748,2937671579),new t(2870763221,3664609560),new t(3624381080,2734883394),new t(310598401,1164996542),new t(607225278,1323610764),new t(1426881987,3590304994),new t(1925078388,4068182383),new t(2162078206,991336113),new t(2614888103,633803317),new t(3248222580,3479774868),new t(3835390401,2666613458),new t(4022224774,944711139),new t(264347078,2341262773),new t(604807628,2007800933),new t(770255983,1495990901),new t(1249150122,1856431235),new t(1555081692,3175218132),new t(1996064986,2198950837),new t(2554220882,3999719339),new t(2821834349,766784016),new t(2952996808,2566594879),new t(3210313671,3203337956),new t(3336571891,1034457026),new t(3584528711,2466948901),new t(113926993,3758326383),new t(338241895,168717936),new t(666307205,1188179964),new t(773529912,1546045734),new t(1294757372,1522805485),new t(1396182291,2643833823),new t(1695183700,2343527390),new t(1986661051,1014477480),new t(2177026350,1206759142),new t(2456956037,344077627),new t(2730485921,1290863460),new t(2820302411,3158454273),new t(3259730800,3505952657),new t(3345764771,106217008),new t(3516065817,3606008344),new t(3600352804,1432725776),new t(4094571909,1467031594),new t(275423344,851169720),new t(430227734,3100823752),new t(506948616,1363258195),new t(659060556,3750685593),new t(883997877,3785050280),new t(958139571,3318307427),new t(1322822218,3812723403),new t(1537002063,2003034995),new t(1747873779,3602036899),new t(1955562222,1575990012),new t(2024104815,1125592928),new t(2227730452,2716904306),new t(2361852424,442776044),new t(2428436474,593698344),new t(2756734187,3733110249),new t(3204031479,2999351573),new t(3329325298,3815920427),new t(3391569614,3928383900),new t(3515267271,566280711),new t(3940187606,3454069534),new t(4118630271,4000239992),new t(116418474,1914138554),new t(174292421,2731055270),new t(289380356,3203993006),new t(460393269,320620315),new t(685471733,587496836),new t(852142971,1086792851),new t(1017036298,365543100),new t(1126000580,2618297676),new t(1288033470,3409855158),new t(1501505948,4234509866),new t(1607167915,987167468),new t(1816402316,1246189591)];function ko(O,N,T){var k=[],D=[],I=[],te=[],se,V,ee;for(V=0;V<8;V++)k[V]=I[V]=M(O,8*V);for(var pe=0;T>=128;){for(V=0;V<16;V++)te[V]=M(N,8*V+pe);for(V=0;V<80;V++){for(ee=0;ee<8;ee++)D[ee]=I[ee];for(se=er(I[7],Yi(I[4]),vu(I[4],I[5],I[6]),_u[V],te[V%16]),D[7]=er(se,To(I[0]),jo(I[0],I[1],I[2])),D[3]=er(D[3],se),ee=0;ee<8;ee++)I[(ee+1)%8]=D[ee];if(V%16===15)for(ee=0;ee<16;ee++)te[ee]=er(te[ee],te[(ee+9)%16],xu(te[(ee+1)%16]),No(te[(ee+14)%16]))}for(V=0;V<8;V++)I[V]=er(I[V],k[V]),k[V]=I[V];pe+=128,T-=128}for(V=0;V<8;V++)U(O,8*V,k[V]);return T}var pi=new Uint8Array([106,9,230,103,243,188,201,8,187,103,174,133,132,202,167,59,60,110,243,114,254,148,248,43,165,79,245,58,95,29,54,241,81,14,82,127,173,230,130,209,155,5,104,140,43,62,108,31,31,131,217,171,251,65,189,107,91,224,205,25,19,126,33,121]);function pt(O,N,T){var k=new Uint8Array(64),D=new Uint8Array(256),I,te=T;for(I=0;I<64;I++)k[I]=pi[I];for(ko(k,N,T),T%=128,I=0;I<256;I++)D[I]=0;for(I=0;I<T;I++)D[I]=N[te-T+I];for(D[T]=128,T=256-128*(T<112?1:0),D[T-9]=0,U(D,T-8,new t(te/536870912|0,te<<3)),ko(k,D,T),I=0;I<64;I++)O[I]=k[I];return 0}function Zt(O,N){var T=r(),k=r(),D=r(),I=r(),te=r(),se=r(),V=r(),ee=r(),pe=r();qt(T,O[1],O[0]),qt(pe,N[1],N[0]),ke(T,T,pe),At(k,O[0],O[1]),At(pe,N[0],N[1]),ke(k,k,pe),ke(D,O[3],N[3]),ke(D,D,m),ke(I,O[2],N[2]),At(I,I,I),qt(te,k,T),qt(se,I,D),At(V,I,D),At(ee,k,T),ke(O[0],te,se),ke(O[1],ee,V),ke(O[2],V,se),ke(O[3],te,ee)}function Lt(O,N,T){var k;for(k=0;k<4;k++)Se(O[k],N[k],T)}function Zs(O,N){var T=r(),k=r(),D=r();di(D,N[2]),ke(T,N[0],D),ke(k,N[1],D),Ne(O,k),O[31]^=Ae(T)<<7}function Ws(O,N,T){var k,D;for(oe(O[0],d),oe(O[1],y),oe(O[2],y),oe(O[3],d),D=255;D>=0;--D)k=T[D/8|0]>>(D&7)&1,Lt(O,N,k),Zt(N,O),Zt(O,O),Lt(O,N,k)}function Ki(O,N){var T=[r(),r(),r(),r()];oe(T[0],b),oe(T[1],v),oe(T[2],y),ke(T[3],b,v),Ws(O,T,N)}function jr(O,N,T){var k=new Uint8Array(64),D=[r(),r(),r(),r()],I;for(T||s(N,32),pt(k,N,32),k[0]&=248,k[31]&=127,k[31]|=64,Ki(D,k),Zs(O,D),I=0;I<32;I++)N[I+32]=O[I];return 0}var tr=new Float64Array([237,211,245,92,26,99,18,88,214,156,247,162,222,249,222,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16]);function Tr(O,N){var T,k,D,I;for(k=63;k>=32;--k){for(T=0,D=k-32,I=k-12;D<I;++D)N[D]+=T-16*N[k]*tr[D-(k-32)],T=Math.floor((N[D]+128)/256),N[D]-=T*256;N[D]+=T,N[k]=0}for(T=0,D=0;D<32;D++)N[D]+=T-(N[31]>>4)*tr[D],T=N[D]>>8,N[D]&=255;for(D=0;D<32;D++)N[D]-=T*tr[D];for(k=0;k<32;k++)N[k+1]+=N[k]>>8,O[k]=N[k]&255}function Mn(O){var N=new Float64Array(64),T;for(T=0;T<64;T++)N[T]=O[T];for(T=0;T<64;T++)O[T]=0;Tr(O,N)}function yi(O,N,T,k){var D=new Uint8Array(64),I=new Uint8Array(64),te=new Uint8Array(64),se,V,ee=new Float64Array(64),pe=[r(),r(),r(),r()];pt(D,k,32),D[0]&=248,D[31]&=127,D[31]|=64;var Re=T+64;for(se=0;se<T;se++)O[64+se]=N[se];for(se=0;se<32;se++)O[32+se]=D[32+se];for(pt(te,O.subarray(32),T+32),Mn(te),Ki(pe,te),Zs(O,pe),se=32;se<64;se++)O[se]=k[se];for(pt(I,O,T+64),Mn(I),se=0;se<64;se++)ee[se]=0;for(se=0;se<32;se++)ee[se]=te[se];for(se=0;se<32;se++)for(V=0;V<32;V++)ee[se+V]+=I[se]*D[V];return Tr(O.subarray(32),ee),Re}function gi(O,N){var T=r(),k=r(),D=r(),I=r(),te=r(),se=r(),V=r();return oe(O[2],y),ct(O[1],N),Bt(D,O[1]),ke(I,D,f),qt(D,D,O[2]),At(I,O[2],I),Bt(te,I),Bt(se,te),ke(V,se,te),ke(T,V,D),ke(T,T,I),Gi(T,T),ke(T,T,D),ke(T,T,I),ke(T,T,I),ke(O[0],T,I),Bt(k,O[0]),ke(k,k,I),We(k,D)&&ke(O[0],O[0],_),Bt(k,O[0]),ke(k,k,I),We(k,D)?-1:(Ae(O[0])===N[31]>>7&&qt(O[0],d,O[0]),ke(O[3],O[0],O[1]),0)}function ea(O,N,T,k){var D,I=new Uint8Array(32),te=new Uint8Array(64),se=[r(),r(),r(),r()],V=[r(),r(),r(),r()];if(T<64||gi(V,k))return-1;for(D=0;D<T;D++)O[D]=N[D];for(D=0;D<32;D++)O[D+32]=k[D];if(pt(te,O,T),Mn(te),Ws(se,V,te),Ki(V,N.subarray(32)),Zt(se,V),Zs(I,se),T-=64,C(N,0,I,0)){for(D=0;D<T;D++)O[D]=0;return-1}for(D=0;D<T;D++)O[D]=N[D+64];return T}var Xi=32,Nr=24,Rn=32,kr=16,Cr=32,bi=32,Mr=32,nr=32,vi=32,ta=Nr,Co=Rn,Gn=kr,Qe=64,ut=32,Wt=64,xi=32,na=64;i.lowlevel={crypto_core_hsalsa20:X,crypto_stream_xor:he,crypto_stream:J,crypto_stream_salsa20_xor:G,crypto_stream_salsa20:W,crypto_onetimeauth:Y,crypto_onetimeauth_verify:ae,crypto_verify_16:ce,crypto_verify_32:C,crypto_secretbox:de,crypto_secretbox_open:Oe,crypto_scalarmult:mi,crypto_scalarmult_base:bn,crypto_box_beforenm:Ar,crypto_box_afternm:Eo,crypto_box:Js,crypto_box_open:Qs,crypto_box_keypair:Fi,crypto_hash:pt,crypto_sign:yi,crypto_sign_keypair:jr,crypto_sign_open:ea,crypto_secretbox_KEYBYTES:Xi,crypto_secretbox_NONCEBYTES:Nr,crypto_secretbox_ZEROBYTES:Rn,crypto_secretbox_BOXZEROBYTES:kr,crypto_scalarmult_BYTES:Cr,crypto_scalarmult_SCALARBYTES:bi,crypto_box_PUBLICKEYBYTES:Mr,crypto_box_SECRETKEYBYTES:nr,crypto_box_BEFORENMBYTES:vi,crypto_box_NONCEBYTES:ta,crypto_box_ZEROBYTES:Co,crypto_box_BOXZEROBYTES:Gn,crypto_sign_BYTES:Qe,crypto_sign_PUBLICKEYBYTES:ut,crypto_sign_SECRETKEYBYTES:Wt,crypto_sign_SEEDBYTES:xi,crypto_hash_BYTES:na,gf:r,D:f,L:tr,pack25519:Ne,unpack25519:ct,M:ke,A:At,S:Bt,Z:qt,pow2523:Gi,add:Zt,set25519:oe,modL:Tr,scalarmult:Ws,scalarbase:Ki};function Mo(O,N){if(O.length!==Xi)throw new Error("bad key size");if(N.length!==Nr)throw new Error("bad nonce size")}function Ro(O,N){if(O.length!==Mr)throw new Error("bad public key size");if(N.length!==nr)throw new Error("bad secret key size")}function Et(){for(var O=0;O<arguments.length;O++)if(!(arguments[O]instanceof Uint8Array))throw new TypeError("unexpected type, use Uint8Array")}function Ji(O){for(var N=0;N<O.length;N++)O[N]=0}i.randomBytes=function(O){var N=new Uint8Array(O);return s(N,O),N},i.secretbox=function(O,N,T){Et(O,N,T),Mo(T,N);for(var k=new Uint8Array(Rn+O.length),D=new Uint8Array(k.length),I=0;I<O.length;I++)k[I+Rn]=O[I];return de(D,k,k.length,N,T),D.subarray(kr)},i.secretbox.open=function(O,N,T){Et(O,N,T),Mo(T,N);for(var k=new Uint8Array(kr+O.length),D=new Uint8Array(k.length),I=0;I<O.length;I++)k[I+kr]=O[I];return k.length<32||Oe(D,k,k.length,N,T)!==0?null:D.subarray(Rn)},i.secretbox.keyLength=Xi,i.secretbox.nonceLength=Nr,i.secretbox.overheadLength=kr,i.scalarMult=function(O,N){if(Et(O,N),O.length!==bi)throw new Error("bad n size");if(N.length!==Cr)throw new Error("bad p size");var T=new Uint8Array(Cr);return mi(T,O,N),T},i.scalarMult.base=function(O){if(Et(O),O.length!==bi)throw new Error("bad n size");var N=new Uint8Array(Cr);return bn(N,O),N},i.scalarMult.scalarLength=bi,i.scalarMult.groupElementLength=Cr,i.box=function(O,N,T,k){var D=i.box.before(T,k);return i.secretbox(O,N,D)},i.box.before=function(O,N){Et(O,N),Ro(O,N);var T=new Uint8Array(vi);return Ar(T,O,N),T},i.box.after=i.secretbox,i.box.open=function(O,N,T,k){var D=i.box.before(T,k);return i.secretbox.open(O,N,D)},i.box.open.after=i.secretbox.open,i.box.keyPair=function(){var O=new Uint8Array(Mr),N=new Uint8Array(nr);return Fi(O,N),{publicKey:O,secretKey:N}},i.box.keyPair.fromSecretKey=function(O){if(Et(O),O.length!==nr)throw new Error("bad secret key size");var N=new Uint8Array(Mr);return bn(N,O),{publicKey:N,secretKey:new Uint8Array(O)}},i.box.publicKeyLength=Mr,i.box.secretKeyLength=nr,i.box.sharedKeyLength=vi,i.box.nonceLength=ta,i.box.overheadLength=i.secretbox.overheadLength,i.sign=function(O,N){if(Et(O,N),N.length!==Wt)throw new Error("bad secret key size");var T=new Uint8Array(Qe+O.length);return yi(T,O,O.length,N),T},i.sign.open=function(O,N){if(Et(O,N),N.length!==ut)throw new Error("bad public key size");var T=new Uint8Array(O.length),k=ea(T,O,O.length,N);if(k<0)return null;for(var D=new Uint8Array(k),I=0;I<D.length;I++)D[I]=T[I];return D},i.sign.detached=function(O,N){for(var T=i.sign(O,N),k=new Uint8Array(Qe),D=0;D<k.length;D++)k[D]=T[D];return k},i.sign.detached.verify=function(O,N,T){if(Et(O,N,T),N.length!==Qe)throw new Error("bad signature size");if(T.length!==ut)throw new Error("bad public key size");var k=new Uint8Array(Qe+O.length),D=new Uint8Array(Qe+O.length),I;for(I=0;I<Qe;I++)k[I]=N[I];for(I=0;I<O.length;I++)k[I+Qe]=O[I];return ea(D,k,k.length,T)>=0},i.sign.keyPair=function(){var O=new Uint8Array(ut),N=new Uint8Array(Wt);return jr(O,N),{publicKey:O,secretKey:N}},i.sign.keyPair.fromSecretKey=function(O){if(Et(O),O.length!==Wt)throw new Error("bad secret key size");for(var N=new Uint8Array(ut),T=0;T<N.length;T++)N[T]=O[32+T];return{publicKey:N,secretKey:new Uint8Array(O)}},i.sign.keyPair.fromSeed=function(O){if(Et(O),O.length!==xi)throw new Error("bad seed size");for(var N=new Uint8Array(ut),T=new Uint8Array(Wt),k=0;k<32;k++)T[k]=O[k];return jr(N,T,!0),{publicKey:N,secretKey:T}},i.sign.publicKeyLength=ut,i.sign.secretKeyLength=Wt,i.sign.seedLength=xi,i.sign.signatureLength=Qe,i.hash=function(O){Et(O);var N=new Uint8Array(na);return pt(N,O,O.length),N},i.hash.hashLength=na,i.verify=function(O,N){return Et(O,N),O.length===0||N.length===0||O.length!==N.length?!1:re(O,0,N,0,O.length)===0},i.setPRNG=function(O){s=O},(function(){var O=typeof globalThis<"u"?globalThis.crypto||globalThis.msCrypto:null;if(O&&O.getRandomValues){var N=65536;i.setPRNG(function(T,k){var D,I=new Uint8Array(k);for(D=0;D<k;D+=N)O.getRandomValues(I.subarray(D,D+Math.min(k-D,N)));for(D=0;D<k;D++)T[D]=I[D];Ji(I)})}else typeof require<"u"&&(O=require("crypto"),O&&O.randomBytes&&i.setPRNG(function(T,k){var D,I=O.randomBytes(k);for(D=0;D<k;D++)T[D]=I[D];Ji(I)}))})()})(typeof module<"u"&&module.exports?module.exports:globalThis.nacl=globalThis.nacl||{});const Yl=typeof module<"u"&&module.exports?module.exports:globalThis.nacl;Yl.sign.keyPair.fromSeed,Yl.sign.detached,Yl.sign.detached.verify,Yl.randomBytes;var dg;(function(i){i.InvalidPrefixByte="nkeys: invalid prefix byte",i.InvalidKey="nkeys: invalid key",i.InvalidPublicKey="nkeys: invalid public key",i.InvalidSeedLen="nkeys: invalid seed length",i.InvalidSeed="nkeys: invalid seed",i.InvalidEncoding="nkeys: invalid encoded key",i.InvalidSignature="nkeys: signature verification failed",i.CannotSign="nkeys: cannot sign, no private key available",i.PublicKeyOnly="nkeys: no seed or private key available",i.InvalidChecksum="nkeys: invalid checksum",i.SerializationError="nkeys: serialization error",i.ApiError="nkeys: api error",i.ClearedPair="nkeys: pair is cleared"})(dg||(dg={}));var mg;(function(i){i[i.Seed=144]="Seed",i[i.Private=120]="Private",i[i.Operator=112]="Operator",i[i.Server=104]="Server",i[i.Cluster=16]="Cluster",i[i.Account=0]="Account",i[i.User=160]="User"})(mg||(mg={}));function WS(i){return t=>{let r={};return i.forEach(s=>{const l=s(t)||{};r=Object.assign(r,l)}),r}}function eE(){return()=>{}}function tE(i,t){return()=>{const r=typeof i=="function"?i():i,s=typeof t=="function"?t():t;return{user:r,pass:s}}}function nE(i){return()=>({auth_token:typeof i=="function"?i():i})}const Ab=120*1e3,rE=2,jb=2*1e3;function iE(){return{maxPingOut:2,maxReconnectAttempts:10,noRandomize:!1,pedantic:!1,pingInterval:Ab,reconnect:!0,reconnectJitter:100,reconnectJitterTLS:1e3,reconnectTimeWait:jb,tls:void 0,verbose:!1,waitOnFirstConnect:!1,ignoreAuthErrorAbort:!1}}function sE(i){const t=[];return typeof i.authenticator=="function"&&t.push(i.authenticator),Array.isArray(i.authenticator)&&t.push(...i.authenticator),i.token&&t.push(nE(i.token)),i.user&&t.push(tE(i.user,i.pass)),t.length===0?eE():WS(t)}function aE(i){const t=`${Zh}:${Sb()}`;if(i=i||{servers:[t]},i.servers=i.servers||[],typeof i.servers=="string"&&(i.servers=[i.servers]),i.servers.length>0&&i.port)throw new me("port and servers options are mutually exclusive",le.InvalidOption);i.servers.length===0&&i.port&&(i.servers=[`${Zh}:${i.port}`]),i.servers&&i.servers.length===0&&(i.servers=[t]);const r=cu(iE(),i);if(r.authenticator=sE(r),["reconnectDelayHandler","authenticator"].forEach(s=>{if(r[s]&&typeof r[s]!="function")throw new me(`${s} option should be a function`,le.NotFunction)}),r.reconnectDelayHandler||(r.reconnectDelayHandler=()=>{let s=r.tls?r.reconnectJitterTLS:r.reconnectJitter;return s&&(s++,s=Math.floor(Math.random()*s)),r.reconnectTimeWait+s}),r.inboxPrefix)try{Sr(r.inboxPrefix)}catch(s){throw new me(s.message,le.ApiError)}if(r.resolve===void 0&&(r.resolve=typeof ad()=="function"),r.resolve&&typeof ad()!="function")throw new me("'resolve' is not supported on this client",le.InvalidOption);return r}function oE(i,t){const{proto:r,tls_required:s,tls_available:l}=i;if((r===void 0||r<1)&&t.noEcho)throw new me("noEcho",le.ServerOptionNotAvailable);const c=s||l||!1;if(t.tls&&!c)throw new me("tls",le.ServerOptionNotAvailable)}const lE=1024*32,cE=/^INFO\s+([^\r\n]+)\r\n/i,uE=so(`PONG\r
|
|
38
|
+
`),pg=so(`PING\r
|
|
39
|
+
`);class fE{constructor(t,r,s){A(this,"echo");A(this,"no_responders");A(this,"protocol");A(this,"verbose");A(this,"pedantic");A(this,"jwt");A(this,"nkey");A(this,"sig");A(this,"user");A(this,"pass");A(this,"auth_token");A(this,"tls_required");A(this,"name");A(this,"lang");A(this,"version");A(this,"headers");this.protocol=1,this.version=t.version,this.lang=t.lang,this.echo=r.noEcho?!1:void 0,this.verbose=r.verbose,this.pedantic=r.pedantic,this.tls_required=r.tls?!0:void 0,this.name=r.name;const l=(r&&typeof r.authenticator=="function"?r.authenticator(s):{})||{};cu(this,l)}}class Tb extends kt{constructor(r,s,l={}){var d;super();A(this,"sid");A(this,"queue");A(this,"draining");A(this,"max");A(this,"subject");A(this,"drained");A(this,"protocol");A(this,"timer");A(this,"info");A(this,"cleanupFn");A(this,"closed");A(this,"requestSubject");cu(this,l),this.protocol=r,this.subject=s,this.draining=!1,this.noIterator=typeof l.callback=="function",this.closed=ot();const c=!((d=r.options)!=null&&d.noAsyncTraces);l.timeout&&(this.timer=Gs(l.timeout,c),this.timer.then(()=>{this.timer=void 0}).catch(y=>{this.stop(y),this.noIterator&&this.callback(y,{})})),this.noIterator||this.iterClosed.then(()=>{this.closed.resolve(),this.unsubscribe()})}setPrePostHandlers(r){if(this.noIterator){const s=this.callback,l=r.ingestionFilterFn?r.ingestionFilterFn:()=>({ingest:!0,protocol:!1}),c=r.protocolFilterFn?r.protocolFilterFn:()=>!0,d=r.dispatchedFn?r.dispatchedFn:()=>{};this.callback=(y,g)=>{const{ingest:f}=l(g);f&&c(g)&&(s(y,g),d(g))}}else this.protocolFilterFn=r.protocolFilterFn,this.dispatchedFn=r.dispatchedFn}callback(r,s){this.cancelTimeout(),r?this.stop(r):this.push(s)}close(){if(!this.isClosed()){this.cancelTimeout();const r=()=>{if(this.stop(),this.cleanupFn)try{this.cleanupFn(this,this.info)}catch{}this.closed.resolve()};this.noIterator?r():this.push(r)}}unsubscribe(r){this.protocol.unsubscribe(this,r)}cancelTimeout(){this.timer&&(this.timer.cancel(),this.timer=void 0)}drain(){return this.protocol.isClosed()?Promise.reject(me.errorForCode(le.ConnectionClosed)):this.isClosed()?Promise.reject(me.errorForCode(le.SubClosed)):(this.drained||(this.draining=!0,this.protocol.unsub(this),this.drained=this.protocol.flush(ot()).then(()=>{this.protocol.subscriptions.cancel(this)}).catch(()=>{this.protocol.subscriptions.cancel(this)})),this.drained)}isDraining(){return this.draining}isClosed(){return this.done}getSubject(){return this.subject}getMax(){return this.max}getID(){return this.sid}}class hE{constructor(){A(this,"mux");A(this,"subs");A(this,"sidCounter");this.sidCounter=0,this.mux=null,this.subs=new Map}size(){return this.subs.size}add(t){return this.sidCounter++,t.sid=this.sidCounter,this.subs.set(t.sid,t),t}setMux(t){return this.mux=t,t}getMux(){return this.mux}get(t){return this.subs.get(t)}resub(t){return this.sidCounter++,this.subs.delete(t.sid),t.sid=this.sidCounter,this.subs.set(t.sid,t),t}all(){return Array.from(this.subs.values())}cancel(t){t&&(t.close(),this.subs.delete(t.sid))}handleError(t){if(t&&t.permissionContext){const r=t.permissionContext,s=this.all();let l;if(r.operation==="subscription"&&(l=s.find(c=>c.subject===r.subject&&c.queue===r.queue)),r.operation==="publish"&&(l=s.find(c=>c.requestSubject===r.subject)),l)return l.callback(t,{}),l.close(),this.subs.delete(l.sid),l!==this.mux}return!1}close(){this.subs.forEach(t=>{t.close()})}}class eu{constructor(t,r){A(this,"connected");A(this,"connectedOnce");A(this,"infoReceived");A(this,"info");A(this,"muxSubscriptions");A(this,"options");A(this,"outbound");A(this,"pongs");A(this,"subscriptions");A(this,"transport");A(this,"noMorePublishing");A(this,"connectError");A(this,"publisher");A(this,"_closed");A(this,"closed");A(this,"listeners");A(this,"heartbeats");A(this,"parser");A(this,"outMsgs");A(this,"inMsgs");A(this,"outBytes");A(this,"inBytes");A(this,"pendingLimit");A(this,"lastError");A(this,"abortReconnect");A(this,"whyClosed");A(this,"servers");A(this,"server");A(this,"features");A(this,"connectPromise");this._closed=!1,this.connected=!1,this.connectedOnce=!1,this.infoReceived=!1,this.noMorePublishing=!1,this.abortReconnect=!1,this.listeners=[],this.pendingLimit=lE,this.outMsgs=0,this.inMsgs=0,this.outBytes=0,this.inBytes=0,this.options=t,this.publisher=r,this.subscriptions=new hE,this.muxSubscriptions=new KS,this.outbound=new Vs,this.pongs=[],this.whyClosed="",this.pendingLimit=t.pendingLimit||this.pendingLimit,this.features=new TS({major:0,minor:0,micro:0}),this.connectPromise=null;const s=typeof t.servers=="string"?[t.servers]:t.servers;this.servers=new YS(s,{randomize:!t.noRandomize}),this.closed=ot(),this.parser=new hg(this),this.heartbeats=new XS(this,this.options.pingInterval||Ab,this.options.maxPingOut||rE)}resetOutbound(){this.outbound.reset();const t=this.pongs;this.pongs=[];const r=me.errorForCode(le.Disconnect);r.stack="",t.forEach(s=>{s.reject(r)}),this.parser=new hg(this),this.infoReceived=!1}dispatchStatus(t){this.listeners.forEach(r=>{r.push(t)})}status(){const t=new kt;return this.listeners.push(t),t}prepare(){this.transport&&this.transport.discard(),this.info=void 0,this.resetOutbound();const t=ot();return t.catch(()=>{}),this.pongs.unshift(t),this.connectError=r=>{t.reject(r)},this.transport=CS(),this.transport.closed().then(async r=>{if(this.connected=!1,!this.isClosed()){await this.disconnected(this.transport.closeError||this.lastError);return}}),t}disconnect(){this.dispatchStatus({type:Ps.StaleConnection,data:""}),this.transport.disconnect()}reconnect(){return this.connected&&(this.dispatchStatus({type:Ps.ClientInitiatedReconnect,data:""}),this.transport.disconnect()),Promise.resolve()}async disconnected(t){this.dispatchStatus({type:wr.Disconnect,data:this.servers.getCurrentServer().toString()}),this.options.reconnect?await this.dialLoop().then(()=>{var r;this.dispatchStatus({type:wr.Reconnect,data:this.servers.getCurrentServer().toString()}),((r=this.lastError)==null?void 0:r.code)===le.AuthenticationExpired&&(this.lastError=void 0)}).catch(r=>{this._close(r)}):await this._close(t)}async dial(t){const r=this.prepare();let s;try{s=Gs(this.options.timeout||2e4);const l=this.transport.connect(t,this.options);await Promise.race([l,s]),(async()=>{try{for await(const c of this.transport)this.parser.parse(c)}catch(c){console.log("reader closed",c)}})().then()}catch(l){r.reject(l)}try{await Promise.race([s,r]),s&&s.cancel(),this.connected=!0,this.connectError=void 0,this.sendSubscriptions(),this.connectedOnce=!0,this.server.didConnect=!0,this.server.reconnects=0,this.flushPending(),this.heartbeats.start()}catch(l){throw s&&s.cancel(),await this.transport.close(l),l}}async _doDial(t){const{resolve:r}=this.options,s=await t.resolve({fn:ad(),debug:this.options.debug,randomize:!this.options.noRandomize,resolve:r});let l=null;for(const c of s)try{l=null,this.dispatchStatus({type:Ps.Reconnecting,data:c.toString()}),await this.dial(c);return}catch(d){l=d}throw l}dialLoop(){return this.connectPromise===null&&(this.connectPromise=this.dodialLoop(),this.connectPromise.then(()=>{}).catch(()=>{}).finally(()=>{this.connectPromise=null})),this.connectPromise}async dodialLoop(){let t;for(;;){this._closed&&this.servers.clear();const r=this.options.reconnectDelayHandler?this.options.reconnectDelayHandler():jb;let s=r;const l=this.selectServer();if(!l||this.abortReconnect)throw t||(this.lastError?this.lastError:me.errorForCode(le.ConnectionRefused));const c=Date.now();if(l.lastConnect===0||l.lastConnect+r<=c){l.lastConnect=Date.now();try{await this._doDial(l);break}catch(d){if(t=d,!this.connectedOnce){if(this.options.waitOnFirstConnect)continue;this.servers.removeCurrentServer()}l.reconnects++;const y=this.options.maxReconnectAttempts||0;y!==-1&&l.reconnects>=y&&this.servers.removeCurrentServer()}}else s=Math.min(s,l.lastConnect+r-c),await Ys(s)}}static async connect(t,r){const s=new eu(t,r);return await s.dialLoop(),s}static toError(t){const r=t?t.toLowerCase():"";if(r.indexOf("permissions violation")!==-1){const s=new me(t,le.PermissionsViolation),l=t.match(/(Publish|Subscription) to "(\S+)"/);if(l){s.permissionContext={operation:l[1].toLowerCase(),subject:l[2],queue:void 0};const c=t.match(/using queue "(\S+)"/);c&&(s.permissionContext.queue=c[1])}return s}else return r.indexOf("authorization violation")!==-1?new me(t,le.AuthorizationViolation):r.indexOf("user authentication expired")!==-1?new me(t,le.AuthenticationExpired):r.indexOf("account authentication expired")!=-1?new me(t,le.AccountExpired):r.indexOf("authentication timeout")!==-1?new me(t,le.AuthenticationTimeout):new me(t,le.ProtocolError)}processMsg(t,r){if(this.inMsgs++,this.inBytes+=r.length,!this.subscriptions.sidCounter)return;const s=this.subscriptions.get(t.sid);s&&(s.received+=1,s.callback&&s.callback(null,new Td(t,r,this)),s.max!==void 0&&s.received>=s.max&&s.unsubscribe())}processError(t){const r=Qy(t),s=eu.toError(r),l={type:wr.Error,data:s.code};if(s.isPermissionError()){let c=!1;if(s.permissionContext){l.permissionContext=s.permissionContext;const d=this.subscriptions.getMux();c=(d==null?void 0:d.subject)===s.permissionContext.subject}this.subscriptions.handleError(s),this.muxSubscriptions.handleError(c,s),c&&this.subscriptions.setMux(null)}this.dispatchStatus(l),this.handleError(s)}handleError(t){t.isAuthError()?this.handleAuthError(t):t.isProtocolError()?this.lastError=t:t.isAuthTimeout()&&(this.lastError=t),t.isPermissionError()||(this.lastError=t)}handleAuthError(t){this.lastError&&t.code===this.lastError.code&&this.options.ignoreAuthErrorAbort===!1&&(this.abortReconnect=!0),this.connectError?this.connectError(t):this.disconnect()}processPing(){this.transport.send(uE)}processPong(){const t=this.pongs.shift();t&&t.resolve()}processInfo(t){const r=JSON.parse(Qy(t));this.info=r;const s=this.options&&this.options.ignoreClusterUpdates?void 0:this.servers.update(r,this.transport.isEncrypted());if(!this.infoReceived){this.features.update($i(r.version)),this.infoReceived=!0,this.transport.isEncrypted()&&this.servers.updateTLSName();const{version:c,lang:d}=this.transport;try{const y=new fE({version:c,lang:d},this.options,r.nonce);r.headers&&(y.headers=!0,y.no_responders=!0);const g=JSON.stringify(y);this.transport.send(so(`CONNECT ${g}${Ic}`)),this.transport.send(pg)}catch(y){this._close(y)}}s&&this.dispatchStatus({type:wr.Update,data:s}),(r.ldm!==void 0?r.ldm:!1)&&this.dispatchStatus({type:wr.LDM,data:this.servers.getCurrentServer().toString()})}push(t){switch(t.kind){case $t.MSG:{const{msg:r,data:s}=t;this.processMsg(r,s);break}case $t.OK:break;case $t.ERR:this.processError(t.data);break;case $t.PING:this.processPing();break;case $t.PONG:this.processPong();break;case $t.INFO:this.processInfo(t.data);break}}sendCommand(t,...r){const s=this.outbound.length();let l;typeof t=="string"?l=so(t):l=t,this.outbound.fill(l,...r),s===0?queueMicrotask(()=>{this.flushPending()}):this.outbound.size()>=this.pendingLimit&&this.flushPending()}publish(t,r=mn,s){let l;if(r instanceof Uint8Array)l=r;else if(typeof r=="string")l=Hi.encode(r);else throw me.errorForCode(le.BadPayload);let c=l.length;s=s||{},s.reply=s.reply||"";let d=mn,y=0;if(s.headers){if(this.info&&!this.info.headers)throw new me("headers",le.ServerOptionNotAvailable);d=s.headers.encode(),y=d.length,c=l.length+y}if(this.info&&c>this.info.max_payload)throw me.errorForCode(le.MaxPayloadExceeded);this.outBytes+=c,this.outMsgs++;let g;s.headers?(s.reply?g=`HPUB ${t} ${s.reply} ${y} ${c}\r
|
|
40
|
+
`:g=`HPUB ${t} ${y} ${c}\r
|
|
41
|
+
`,this.sendCommand(g,d,l,Wc)):(s.reply?g=`PUB ${t} ${s.reply} ${c}\r
|
|
42
|
+
`:g=`PUB ${t} ${c}\r
|
|
43
|
+
`,this.sendCommand(g,l,Wc))}request(t){return this.initMux(),this.muxSubscriptions.add(t),t}subscribe(t){return this.subscriptions.add(t),this._subunsub(t),t}_sub(t){t.queue?this.sendCommand(`SUB ${t.subject} ${t.queue} ${t.sid}\r
|
|
44
44
|
`):this.sendCommand(`SUB ${t.subject} ${t.sid}\r
|
|
45
45
|
`)}_subunsub(t){return this._sub(t),t.max&&this.unsubscribe(t,t.max),t}unsubscribe(t,r){this.unsub(t,r),(t.max===void 0||t.received>=t.max)&&this.subscriptions.cancel(t)}unsub(t,r){!t||this.isClosed()||(r?this.sendCommand(`UNSUB ${t.sid} ${r}\r
|
|
46
46
|
`):this.sendCommand(`UNSUB ${t.sid}\r
|
|
47
|
-
`),t.max=r)}resub(t,r){!t||this.isClosed()||(this.unsub(t),t.subject=r,this.subscriptions.resub(t),this._sub(t))}flush(t){return t||(t=ot()),this.pongs.push(t),this.outbound.fill(py),this.flushPending(),t}sendSubscriptions(){const t=[];this.subscriptions.all().forEach(r=>{const s=r;s.queue?t.push(`SUB ${s.subject} ${s.queue} ${s.sid}${Ic}`):t.push(`SUB ${s.subject} ${s.sid}${Ic}`)}),t.length&&this.transport.send(so(t.join("")))}async _close(t){this._closed||(this.whyClosed=new Error("close trace").stack||"",this.heartbeats.cancel(),this.connectError&&(this.connectError(t),this.connectError=void 0),this.muxSubscriptions.close(),this.subscriptions.close(),this.listeners.forEach(r=>{r.stop()}),this._closed=!0,await this.transport.close(t),await this.closed.resolve(t))}close(){return this._close()}isClosed(){return this._closed}drain(){const t=this.subscriptions.all(),r=[];return t.forEach(s=>{r.push(s.drain())}),Promise.all(r).then(async()=>(this.noMorePublishing=!0,await this.flush(),this.close())).catch(()=>{})}flushPending(){if(!(!this.infoReceived||!this.connected)&&this.outbound.size()){const t=this.outbound.drain();this.transport.send(t)}}initMux(){if(!this.subscriptions.getMux()){const r=this.muxSubscriptions.init(this.options.inboxPrefix),s=new jb(this,`${r}*`);s.callback=this.muxSubscriptions.dispatcher(),this.subscriptions.setMux(s),this.subscribe(s)}}selectServer(){const t=this.servers.selectServer();if(t!==void 0)return this.server=t,this.server}getServer(){return this.server}}const mE="$SRV";class gy{constructor(t){A(this,"msg");this.msg=t}get data(){return this.msg.data}get sid(){return this.msg.sid}get subject(){return this.msg.subject}get reply(){return this.msg.reply||""}get headers(){return this.msg.headers}respond(t,r){return this.msg.respond(t,r)}respondError(t,r,s,l){var c,d;return l=l||{},l.headers=l.headers||Er(),(c=l.headers)==null||c.set(Xc,`${t}`),(d=l.headers)==null||d.set(Kc,r),this.msg.respond(s,l)}json(t){return this.msg.json(t)}string(){return this.msg.string()}}class fo{constructor(t,r="",s=""){A(this,"subject");A(this,"queue");A(this,"srv");r!==""&&gE("service group",r);let l="";if(t instanceof bo)this.srv=t,l="";else if(t instanceof fo){const c=t;this.srv=c.srv,s===""&&c.queue!==""&&(s=c.queue),l=c.subject}else throw new Error("unknown ServiceGroup type");this.subject=this.calcSubject(l,r),this.queue=s}calcSubject(t,r=""){return r===""?t:t!==""?`${t}.${r}`:r}addEndpoint(t="",r){r=r||{subject:t};const s=typeof r=="function"?{handler:r,subject:t}:r;no("endpoint",t);let{subject:l,handler:c,metadata:d,queue:g}=s;l=l||t,g=g||this.queue,pE("endpoint subject",l),l=this.calcSubject(this.subject,l);const y={name:t,subject:l,queue:g,handler:c,metadata:d};return this.srv._addEndpoint(y)}addGroup(t="",r=""){return new fo(this,t,r)}}function pE(i,t){if(t==="")throw new Error(`${i} cannot be empty`);if(t.indexOf(" ")!==-1)throw new Error(`${i} cannot contain spaces: '${t}'`);const r=t.split(".");r.forEach((s,l)=>{if(s===">"&&l!==r.length-1)throw new Error(`${i} cannot have internal '>': '${t}'`)})}function gE(i,t){if(t.indexOf(" ")!==-1)throw new Error(`${i} cannot contain spaces: '${t}'`);t.split(".").forEach(s=>{if(s===">")throw new Error(`${i} name cannot contain internal '>': '${t}'`)})}class bo{constructor(t,r={name:"",version:""}){A(this,"nc");A(this,"_id");A(this,"config");A(this,"handlers");A(this,"internal");A(this,"_stopped");A(this,"_done");A(this,"started");this.nc=t,this.config=Object.assign({},r),this.config.queue||(this.config.queue="q"),no("name",this.config.name),no("queue",this.config.queue),$i(this.config.version),this._id=fi.next(),this.internal=[],this._done=ot(),this._stopped=!1,this.handlers=[],this.started=new Date().toISOString(),this.reset(),this.nc.closed().then(()=>{this.close().catch()}).catch(s=>{this.close(s).catch()})}static controlSubject(t,r="",s="",l){const c=l??mE;return r===""&&s===""?`${c}.${t}`:(no("control subject name",r),s!==""?(no("control subject id",s),`${c}.${t}.${r}.${s}`):`${c}.${t}.${r}`)}get subjects(){return this.handlers.filter(t=>t.internal===!1).map(t=>t.subject)}get id(){return this._id}get name(){return this.config.name}get description(){return this.config.description??""}get version(){return this.config.version}get metadata(){return this.config.metadata}errorToHeader(t){const r=Er();if(t instanceof Jc){const s=t;r.set(Kc,s.message),r.set(Xc,`${s.code}`)}else r.set(Kc,t.message),r.set(Xc,"500");return r}setupHandler(t,r=!1){const s=r?"":t.queue?t.queue:this.config.queue,{name:l,subject:c,handler:d}=t,g=t;g.internal=r,r&&this.internal.push(g),g.stats=new yE(l,c,s),g.queue=s;const y=d?(f,m)=>{if(f){this.close(f);return}const b=Date.now();try{d(f,new gy(m))}catch(v){g.stats.countError(v),m==null||m.respond(mn,{headers:this.errorToHeader(v)})}finally{g.stats.countLatency(b)}}:void 0;return g.sub=this.nc.subscribe(c,{callback:y,queue:s}),g.sub.closed.then(()=>{this._stopped||this.close(new Error(`required subscription ${t.subject} stopped`)).catch()}).catch(f=>{if(!this._stopped){const m=new Error(`required subscription ${t.subject} errored: ${f.message}`);m.stack=f.stack,this.close(m).catch()}}),g}info(){return{type:ao.INFO,name:this.name,id:this.id,version:this.version,description:this.description,metadata:this.metadata,endpoints:this.endpoints()}}endpoints(){return this.handlers.map(t=>{const{subject:r,metadata:s,name:l,queue:c}=t;return{subject:r,metadata:s,name:l,queue_group:c}})}async stats(){const t=[];for(const r of this.handlers){if(typeof this.config.statsHandler=="function")try{r.stats.data=await this.config.statsHandler(r)}catch(s){r.stats.countError(s)}t.push(r.stats.stats(r.qi))}return{type:ao.STATS,name:this.name,id:this.id,version:this.version,started:this.started,metadata:this.metadata,endpoints:t}}addInternalHandler(t,r){const s=`${t}`.toUpperCase();this._doAddInternalHandler(`${s}-all`,t,r),this._doAddInternalHandler(`${s}-kind`,t,r,this.name),this._doAddInternalHandler(`${s}`,t,r,this.name,this.id)}_doAddInternalHandler(t,r,s,l="",c=""){const d={};d.name=t,d.subject=bo.controlSubject(r,l,c),d.handler=s,this.setupHandler(d,!0)}start(){const t=Hn(),r=(d,g)=>d?(this.close(d),Promise.reject(d)):this.stats().then(y=>(g==null||g.respond(t.encode(y)),Promise.resolve())),s=(d,g)=>d?(this.close(d),Promise.reject(d)):(g==null||g.respond(t.encode(this.info())),Promise.resolve()),l=t.encode(this.ping()),c=(d,g)=>d?(this.close(d).then().catch(),Promise.reject(d)):(g.respond(l),Promise.resolve());return this.addInternalHandler(ai.PING,c),this.addInternalHandler(ai.STATS,r),this.addInternalHandler(ai.INFO,s),this.handlers.forEach(d=>{const{subject:g}=d;typeof g=="string"&&d.handler!==null&&this.setupHandler(d)}),Promise.resolve(this)}close(t){if(this._stopped)return this._done;this._stopped=!0;let r=[];return this.nc.isClosed()||(r=this.handlers.concat(this.internal).map(s=>s.sub.drain())),Promise.allSettled(r).then(()=>{this._done.resolve(t||null)}),this._done}get stopped(){return this._done}get isStopped(){return this._stopped}stop(t){return this.close(t)}ping(){return{type:ao.PING,name:this.name,id:this.id,version:this.version,metadata:this.metadata}}reset(){if(this.started=new Date().toISOString(),this.handlers)for(const t of this.handlers)t.stats.reset(t.qi)}addGroup(t,r){return new fo(this,t,r)}addEndpoint(t,r){return new fo(this).addEndpoint(t,r)}_addEndpoint(t){const r=new kt;r.noIterator=typeof t.handler=="function",r.noIterator||(t.handler=(l,c)=>{l?this.stop(l).catch():r.push(new gy(c))},r.iterClosed.then(()=>{this.close().catch()}));const s=this.setupHandler(t,!1);return s.qi=r,this.handlers.push(s),r}}class yE{constructor(t,r,s=""){A(this,"name");A(this,"subject");A(this,"average_processing_time");A(this,"num_requests");A(this,"processing_time");A(this,"num_errors");A(this,"last_error");A(this,"data");A(this,"metadata");A(this,"queue");this.name=t,this.subject=r,this.average_processing_time=0,this.num_errors=0,this.num_requests=0,this.processing_time=0,this.queue=s}reset(t){this.num_requests=0,this.processing_time=0,this.average_processing_time=0,this.num_errors=0,this.last_error=void 0,this.data=void 0;const r=t;r&&(r.time=0,r.processed=0)}countLatency(t){this.num_requests++,this.processing_time+=at(Date.now()-t),this.average_processing_time=Math.round(this.processing_time/this.num_requests)}countError(t){this.num_errors++,this.last_error=t.message}_stats(){const{name:t,subject:r,average_processing_time:s,num_errors:l,num_requests:c,processing_time:d,last_error:g,data:y,queue:f}=this;return{name:t,subject:r,average_processing_time:s,num_errors:l,num_requests:c,processing_time:d,last_error:g,data:y,queue_group:f}}stats(t){const r=t;return(r==null?void 0:r.noIterator)===!1&&(this.processing_time=at(r.time),this.num_requests=r.processed,this.average_processing_time=this.processing_time>0&&this.num_requests>0?this.processing_time/this.num_requests:0),this._stats()}}class bE{constructor(t,r={strategy:$n.JitterTimer,maxWait:2e3},s){A(this,"nc");A(this,"prefix");A(this,"opts");this.nc=t,this.prefix=s,this.opts=r}ping(t="",r=""){return this.q(ai.PING,t,r)}stats(t="",r=""){return this.q(ai.STATS,t,r)}info(t="",r=""){return this.q(ai.INFO,t,r)}async q(t,r="",s=""){const l=new kt,c=Hn(),d=bo.controlSubject(t,r,s,this.prefix),g=await this.nc.requestMany(d,mn,this.opts);return(async()=>{for await(const y of g)try{const f=c.decode(y.data);l.push(f)}catch(f){l.push(()=>{l.stop(f)})}l.push(()=>{l.stop()})})().catch(y=>{l.stop(y)}),l}}function Nb(){return{key:{encode(i){return i},decode(i){return i}},value:{encode(i){return i},decode(i){return i}}}}function vE(){return{replicas:1,history:1,timeout:2e3,max_bytes:-1,maxValueSize:-1,codec:Nb(),storage:rd.File}}const tu="KV-Operation",yy="$KV",xE=/^[-/=.\w]+$/,_E=/^[-/=.>*\w]+$/,wE=/^[-\w]+$/;function SE(i){if(i.startsWith(".")||i.endsWith(".")||!xE.test(i))throw new Error(`invalid key: ${i}`)}function EE(i){if(i.startsWith(".")||i.endsWith(".")||!_E.test(i))throw new Error(`invalid key: ${i}`)}function OE(i){if(i.startsWith(".")||i.endsWith("."))throw new Error(`invalid key: ${i}`);const t=i.split(".");let r=!1;for(let s=0;s<t.length;s++)switch(t[s]){case"*":r=!0;break;case">":if(s!==t.length-1)throw new Error(`invalid key: ${i}`);r=!0;break}return r}function $c(i){if(!wE.test(i))throw new Error(`invalid bucket name: ${i}`)}var Xn;(function(i){i.MsgIdHdr="Nats-Msg-Id",i.ExpectedStreamHdr="Nats-Expected-Stream",i.ExpectedLastSeqHdr="Nats-Expected-Last-Sequence",i.ExpectedLastMsgIdHdr="Nats-Expected-Last-Msg-Id",i.ExpectedLastSubjectSequenceHdr="Nats-Expected-Last-Subject-Sequence"})(Xn||(Xn={}));class ho{constructor(t,r,s){A(this,"js");A(this,"jsm");A(this,"stream");A(this,"bucket");A(this,"direct");A(this,"codec");A(this,"prefix");A(this,"editPrefix");A(this,"useJsPrefix");A(this,"_prefixLen");A(this,"validateKey",SE);A(this,"validateSearchKey",EE);A(this,"hasWildcards",OE);$c(t),this.js=r,this.jsm=s,this.bucket=t,this.prefix=yy,this.editPrefix="",this.useJsPrefix=!1,this._prefixLen=0}static async create(t,r,s={}){$c(r);const l=await t.jetstreamManager(),c=new ho(r,t,l);return await c.init(s),c}static async bind(t,r,s={}){const l=await t.jetstreamManager(),c={config:{allow_direct:s.allow_direct}};$c(r);const d=new ho(r,t,l);return c.config.name=s.streamName??d.bucketName(),Object.assign(d,c),d.stream=c.config.name,d.codec=s.codec||Nb(),d.direct=c.config.allow_direct??!1,d.initializePrefixes(c),d}async init(t={}){const r=Object.assign(vE(),t);this.codec=r.codec;const s={};this.stream=s.name=t.streamName??this.bucketName(),s.retention=nd.Limits,s.max_msgs_per_subject=r.history,r.maxBucketSize&&(r.max_bytes=r.maxBucketSize),r.max_bytes&&(s.max_bytes=r.max_bytes),s.max_msg_size=r.maxValueSize,s.storage=r.storage;const l=t.placementCluster??"";if(l&&(t.placement={},t.placement.cluster=l,t.placement.tags=[]),t.placement&&(s.placement=t.placement),t.republish&&(s.republish=t.republish),t.description&&(s.description=t.description),t.mirror){const b=Object.assign({},t.mirror);b.name.startsWith(fn)||(b.name=`${fn}${b.name}`),s.mirror=b,s.mirror_direct=!0}else if(t.sources){const b=t.sources.map(v=>{const _=Object.assign({},v),w=_.name.startsWith(fn)?_.name.substring(fn.length):_.name;return _.name.startsWith(fn)||(_.name=`${fn}${_.name}`),!v.external&&w!==this.bucket&&(_.subject_transforms=[{src:`$KV.${w}.>`,dest:`$KV.${this.bucket}.>`}]),_});s.sources=b,s.subjects=[this.subjectForBucket()]}else s.subjects=[this.subjectForBucket()];t.metadata&&(s.metadata=t.metadata),typeof t.compression=="boolean"&&(s.compression=t.compression?hi.S2:hi.None);const c=this.js.nc,d=c.getServerVersion(),g=d?sd(d,$i("2.7.2"))>=0:!1;s.discard=g?uo.New:uo.Old;const{ok:y,min:f}=c.features.get(Ie.JS_ALLOW_DIRECT);if(!y&&t.allow_direct===!0){const b=d?`${d.major}.${d.minor}.${d.micro}`:"unknown";return Promise.reject(new Error(`allow_direct is not available on server version ${b} - requires ${f}`))}t.allow_direct=typeof t.allow_direct=="boolean"?t.allow_direct:y,s.allow_direct=t.allow_direct,this.direct=s.allow_direct,s.num_replicas=r.replicas,r.ttl&&(s.max_age=at(r.ttl)),s.allow_rollup_hdrs=!0;let m;try{m=await this.jsm.streams.info(s.name),!m.config.allow_direct&&this.direct===!0&&(this.direct=!1)}catch(b){if(b.message==="stream not found")m=await this.jsm.streams.add(s);else throw b}this.initializePrefixes(m)}initializePrefixes(t){this._prefixLen=0,this.prefix=`$KV.${this.bucket}`,this.useJsPrefix=this.js.apiPrefix!=="$JS.API";const{mirror:r}=t.config;if(r){let s=r.name;if(s.startsWith(fn)&&(s=s.substring(fn.length)),r.external&&r.external.api!==""){const l=r.name.substring(fn.length);this.useJsPrefix=!1,this.prefix=`$KV.${l}`,this.editPrefix=`${r.external.api}.$KV.${s}`}else this.editPrefix=this.prefix}}bucketName(){return this.stream??`${fn}${this.bucket}`}subjectForBucket(){return`${this.prefix}.${this.bucket}.>`}subjectForKey(t,r=!1){const s=[];return r?(this.useJsPrefix&&s.push(this.js.apiPrefix),this.editPrefix!==""?s.push(this.editPrefix):s.push(this.prefix)):this.prefix&&s.push(this.prefix),s.push(t),s.join(".")}fullKeyName(t){return this.prefix!==""?`${this.prefix}.${t}`:`${yy}.${this.bucket}.${t}`}get prefixLen(){return this._prefixLen===0&&(this._prefixLen=this.prefix.length+1),this._prefixLen}encodeKey(t){const r=[];for(const s of t.split("."))switch(s){case">":case"*":r.push(s);break;default:r.push(this.codec.key.encode(s));break}return r.join(".")}decodeKey(t){const r=[];for(const s of t.split("."))switch(s){case">":case"*":r.push(s);break;default:r.push(this.codec.key.decode(s));break}return r.join(".")}close(){return Promise.resolve()}dataLen(t,r){const s=r&&r.get(Ht.MessageSizeHdr)||"";return s!==""?parseInt(s,10):t.length}smToEntry(t){return new zE(this.bucket,this.prefixLen,t)}jmToEntry(t){const r=this.decodeKey(t.subject.substring(this.prefixLen));return new IE(this.bucket,r,t)}async create(t,r){var c;let s;try{const d=await this.put(t,r,{previousSeq:0});return Promise.resolve(d)}catch(d){if(s=d,((c=d==null?void 0:d.api_error)==null?void 0:c.err_code)!==10071)return Promise.reject(d)}let l=0;try{const d=await this.get(t);return(d==null?void 0:d.operation)==="DEL"||(d==null?void 0:d.operation)==="PURGE"?(l=d!==null?d.revision:0,this.update(t,r,l)):Promise.reject(s)}catch(d){return Promise.reject(d)}}update(t,r,s){if(s<=0)throw new Error("version must be greater than 0");return this.put(t,r,{previousSeq:s})}async put(t,r,s={}){var d,g;const l=this.encodeKey(t);this.validateKey(l);const c={};if(s.previousSeq!==void 0){const y=Er();c.headers=y,y.set(Xn.ExpectedLastSubjectSequenceHdr,`${s.previousSeq}`)}try{return(await this.js.publish(this.subjectForKey(l,!0),r,c)).seq}catch(y){const f=y;return f.isJetStreamError()?(f.message=(d=f.api_error)==null?void 0:d.description,f.code=`${(g=f.api_error)==null?void 0:g.code}`,Promise.reject(f)):Promise.reject(y)}}async get(t,r){const s=this.encodeKey(t);this.validateKey(s);let l={last_by_subj:this.subjectForKey(s)};r&&r.revision>0&&(l={seq:r.revision});let c;try{this.direct?c=await this.jsm.direct.getMessage(this.bucketName(),l):c=await this.jsm.streams.getMessage(this.bucketName(),l);const d=this.smToEntry(c);return d.key!==s?null:d}catch(d){if(d.code===le.JetStream404NoMessages)return null;throw d}}purge(t,r){return this._deleteOrPurge(t,"PURGE",r)}delete(t,r){return this._deleteOrPurge(t,"DEL",r)}async purgeDeletes(t=1800*1e3){const r=ot(),s=[],l=await this.watch({key:">",initializedFn:()=>{r.resolve()}});(async()=>{for await(const y of l)(y.operation==="DEL"||y.operation==="PURGE")&&s.push(y)})().then(),await r,l.stop();const c=Date.now()-t,d=s.map(y=>{const f=this.subjectForKey(y.key);return y.created.getTime()>=c?this.jsm.streams.purge(this.stream,{filter:f,keep:1}):this.jsm.streams.purge(this.stream,{filter:f,keep:0})}),g=await Promise.all(d);return g.unshift({success:!0,purged:0}),g.reduce((y,f)=>(y.purged+=f.purged,y))}async _deleteOrPurge(t,r,s){if(!this.hasWildcards(t))return this._doDeleteOrPurge(t,r,s);const l=await this.keys(t),c=[];for await(const d of l)c.push(this._doDeleteOrPurge(d,r)),c.length===100&&(await Promise.all(c),c.length=0);c.length>0&&await Promise.all(c)}async _doDeleteOrPurge(t,r,s){const l=this.encodeKey(t);this.validateKey(l);const c=Er();c.set(tu,r),r==="PURGE"&&c.set(Ht.RollupHdr,Ht.RollupValueSubject),s!=null&&s.previousSeq&&c.set(Xn.ExpectedLastSubjectSequenceHdr,`${s.previousSeq}`),await this.js.publish(this.subjectForKey(l,!0),mn,{headers:c})}_buildCC(t,r,s={}){let c=(Array.isArray(t)?t:[t]).map(y=>{const f=this.encodeKey(y);return this.validateSearchKey(y),this.fullKeyName(f)}),d=bt.LastPerSubject;r===Un.AllHistory&&(d=bt.All),r===Un.UpdatesOnly&&(d=bt.New);let g;return c.length===1&&(g=c[0],c=void 0),Object.assign({deliver_policy:d,ack_policy:Nt.None,filter_subjects:c,filter_subject:g,flow_control:!0,idle_heartbeat:at(5*1e3)},s)}remove(t){return this.purge(t)}async history(t={}){const r=t.key??">",s=new kt,l={};l.headers_only=t.headers_only||!1;let c;c=()=>{s.stop()};let d=0;const g=this._buildCC(r,Un.AllHistory,l),y=g.filter_subject,f=li(g);f.bindStream(this.stream),f.orderedConsumer(),f.callback((b,v)=>{if(b){s.stop(b);return}if(v){const _=this.jmToEntry(v);s.push(_),s.received++,(c&&d>0&&s.received>=d||v.info.pending===0)&&(s.push(c),c=void 0)}});const m=await this.js.subscribe(y,f);if(c){const{info:{last:b}}=m,v=b.num_pending+b.delivered.consumer_seq;if(v===0||s.received>=v)try{c()}catch(_){s.stop(_)}finally{c=void 0}else d=v}return s._data=m,s.iterClosed.then(()=>{m.unsubscribe()}),m.closed.then(()=>{s.stop()}).catch(b=>{s.stop(b)}),s}canSetWatcherName(){const r=this.js.nc,{ok:s}=r.features.get(Ie.JS_NEW_CONSUMER_CREATE_API);return s}async watch(t={}){const r=t.key??">",s=new kt,l={};l.headers_only=t.headers_only||!1;let c=Un.LastValue;t.include===Un.AllHistory?c=Un.AllHistory:t.include===Un.UpdatesOnly&&(c=Un.UpdatesOnly);const d=t.ignoreDeletes===!0;let g=t.initializedFn,y=0;const f=this._buildCC(r,c,l),m=f.filter_subject,b=li(f);this.canSetWatcherName()&&b.consumerName(fi.next()),b.bindStream(this.stream),t.resumeFromRevision&&t.resumeFromRevision>0&&b.startSequence(t.resumeFromRevision),b.orderedConsumer(),b.callback((_,w)=>{if(_){s.stop(_);return}if(w){const S=this.jmToEntry(w);if(d&&S.operation==="DEL")return;s.push(S),s.received++,g&&(y>0&&s.received>=y||w.info.pending===0)&&(s.push(g),g=void 0)}});const v=await this.js.subscribe(m,b);if(g){const{info:{last:_}}=v,w=_.num_pending+_.delivered.consumer_seq;if(w===0||s.received>=w)try{g()}catch(S){s.stop(S)}finally{g=void 0}else y=w}return s._data=v,s.iterClosed.then(()=>{v.unsubscribe()}),v.closed.then(()=>{s.stop()}).catch(_=>{s.stop(_)}),s}async keys(t=">"){const r=new kt,s=this._buildCC(t,Un.LastValue,{headers_only:!0}),l=Array.isArray(t)?">":s.filter_subject,c=li(s);c.bindStream(this.stream),c.orderedConsumer();const d=await this.js.subscribe(l,c);return(async()=>{var y;for await(const f of d){const m=(y=f.headers)==null?void 0:y.get(tu);if(m!=="DEL"&&m!=="PURGE"){const b=this.decodeKey(f.subject.substring(this.prefixLen));r.push(b)}f.info.pending===0&&d.unsubscribe()}})().then(()=>{r.stop()}).catch(y=>{r.stop(y)}),d.info.last.num_pending===0&&d.unsubscribe(),r}purgeBucket(t){return this.jsm.streams.purge(this.bucketName(),t)}destroy(){return this.jsm.streams.delete(this.bucketName())}async status(){var c;const r=((c=this.js.nc.info)==null?void 0:c.cluster)??"",s=this.bucketName(),l=await this.jsm.streams.info(s);return new Tb(l,r)}}class Tb{constructor(t,r=""){A(this,"si");A(this,"cluster");this.si=t,this.cluster=r}get bucket(){return this.si.config.name.startsWith(fn)?this.si.config.name.substring(fn.length):this.si.config.name}get values(){return this.si.state.messages}get history(){return this.si.config.max_msgs_per_subject}get ttl(){return jd(this.si.config.max_age)}get bucket_location(){return this.cluster}get backingStore(){return this.si.config.storage}get storage(){return this.si.config.storage}get replicas(){return this.si.config.num_replicas}get description(){return this.si.config.description??""}get maxBucketSize(){return this.si.config.max_bytes}get maxValueSize(){return this.si.config.max_msg_size}get max_bytes(){return this.si.config.max_bytes}get placement(){return this.si.config.placement||{cluster:"",tags:[]}}get placementCluster(){var t;return((t=this.si.config.placement)==null?void 0:t.cluster)??""}get republish(){return this.si.config.republish??{src:"",dest:""}}get streamInfo(){return this.si}get size(){return this.si.state.bytes}get metadata(){return this.si.config.metadata??{}}get compression(){return this.si.config.compression?this.si.config.compression!==hi.None:!1}}const kd="OBJ_",by="SHA-256=";function AE(i){return $c(i),`${kd}${i}`}function jE(i){return i.startsWith(kd)?i.substring(4):i}class cd{constructor(t){A(this,"si");A(this,"backingStore");this.si=t,this.backingStore="JetStream"}get bucket(){return jE(this.si.config.name)}get description(){return this.si.config.description??""}get ttl(){return this.si.config.max_age}get storage(){return this.si.config.storage}get replicas(){return this.si.config.num_replicas}get sealed(){return this.si.config.sealed}get size(){return this.si.state.bytes}get streamInfo(){return this.si}get metadata(){return this.si.config.metadata}get compression(){return this.si.config.compression?this.si.config.compression!==hi.None:!1}}function Kl(i){if(i===void 0)return;const{domain:t}=i;if(t===void 0)return i;const r=Object.assign({},i);if(delete r.domain,t==="")return r;if(r.external)throw new Error("domain and external are both set");return r.external={api:`$JS.${t}.API`},r}var Tn;(function(i){i[i.Unset=-1]="Unset",i[i.Consume=0]="Consume",i[i.Fetch=1]="Fetch"})(Tn||(Tn={}));var Jn;(function(i){i.HeartbeatsMissed="heartbeats_missed",i.ConsumerNotFound="consumer_not_found",i.StreamNotFound="stream_not_found",i.ConsumerDeleted="consumer_deleted",i.OrderedConsumerRecreated="ordered_consumer_recreated",i.NoResponders="no_responders"})(Jn||(Jn={}));var $s;(function(i){i.DebugEvent="debug",i.Discard="discard",i.Reset="reset",i.Next="next"})($s||($s={}));const vy=Uint8Array.of(43,65,67,75),NE=Uint8Array.of(45,78,65,75),Va=Uint8Array.of(43,87,80,73),TE=Uint8Array.of(43,78,88,84),kE=Uint8Array.of(43,84,69,82,77),CE=Uint8Array.of(32);function mo(i,t=5e3){return new KE(i,t)}class Uh extends kt{constructor(r,s,l=!1){super();A(this,"consumer");A(this,"opts");A(this,"sub");A(this,"monitor");A(this,"pending");A(this,"inbox");A(this,"refilling");A(this,"pong");A(this,"callback");A(this,"timeout");A(this,"cleanupHandler");A(this,"listeners");A(this,"statusIterator");A(this,"forOrderedConsumer");A(this,"resetHandler");A(this,"abortOnMissingResource");A(this,"bind");A(this,"inBackOff");this.consumer=r;const c=s;this.opts=this.parseOptions(s,l),this.callback=c.callback||null,this.noIterator=typeof this.callback=="function",this.monitor=null,this.pong=null,this.pending={msgs:0,bytes:0,requests:0},this.refilling=l,this.timeout=null,this.inbox=Sr(r.api.nc.options.inboxPrefix),this.listeners=[],this.forOrderedConsumer=!1,this.abortOnMissingResource=c.abort_on_missing_resource===!0,this.bind=c.bind===!0,this.inBackOff=!1,this.start()}start(){const{max_messages:r,max_bytes:s,idle_heartbeat:l,threshold_bytes:c,threshold_messages:d}=this.opts;this.closed().then(y=>{if(this.cleanupHandler)try{this.cleanupHandler(y)}catch{}});const{sub:g}=this;g&&g.unsubscribe(),this.sub=this.consumer.api.nc.subscribe(this.inbox,{callback:(y,f)=>{var b,v,_,w;if(y){this.stop(y);return}if((b=this.monitor)==null||b.work(),f.subject===this.inbox){if(td(f))return;const S=(v=f.headers)==null?void 0:v.code,M=((w=(_=f.headers)==null?void 0:_.description)==null?void 0:w.toLowerCase())||"unknown",{msgsLeft:B,bytesLeft:U}=this.parseDiscard(f.headers);if(B>0||U>0)this.pending.msgs-=B,this.pending.bytes-=U,this.pending.requests--,this.notify($s.Discard,{msgsLeft:B,bytesLeft:U});else if(S===400){this.stop(new me(M,`${S}`));return}else if(S===409&&M==="consumer deleted"){if(this.notify(Jn.ConsumerDeleted,`${S} ${M}`),!this.refilling||this.abortOnMissingResource){const re=new me(M,`${S}`);this.stop(re);return}}else if(S===503){if(this.notify(Jn.NoResponders,`${S} No Responders`),!this.refilling||this.abortOnMissingResource){const re=new me("no responders",`${S}`);this.stop(re);return}}else this.notify($s.DebugEvent,`${S} ${M}`)}else this._push(mo(f,this.consumer.api.timeout)),this.received++,this.pending.msgs&&this.pending.msgs--,this.pending.bytes&&(this.pending.bytes-=f.size());if(this.pending.msgs===0&&this.pending.bytes===0&&(this.pending.requests=0),this.refilling){if(r&&this.pending.msgs<=d||s&&this.pending.bytes<=c){const S=this.pullOptions();this.pull(S)}}else this.pending.requests===0&&this._push(()=>{this.stop()})}}),this.sub.closed.then(()=>{this.sub.draining&&this._push(()=>{this.stop()})}),l&&(this.monitor=new Td(l,y=>(this.notify(Jn.HeartbeatsMissed,y),this.resetPending().then(()=>{}).catch(()=>{}),!1),{maxOut:2})),(async()=>{var f;const y=this.consumer.api.nc.status();this.statusIterator=y;for await(const m of y)switch(m.type){case wr.Disconnect:(f=this.monitor)==null||f.cancel();break;case wr.Reconnect:this.resetPending().then(b=>{var v;b&&((v=this.monitor)==null||v.restart())}).catch(()=>{});break}})(),this.pull(this.pullOptions())}_push(r){if(!this.callback)super.push(r);else{const s=typeof r=="function"?r:null;try{s?s():this.callback(r)}catch(l){this.stop(l)}}}notify(r,s){this.listeners.length>0&&this.listeners.forEach(l=>{l.done||l.push({type:r,data:s})})}resetPending(){return this.bind?this.resetPendingNoInfo():this.resetPendingWithInfo()}resetPendingNoInfo(){return this.pending.msgs=0,this.pending.bytes=0,this.pending.requests=0,this.pull(this.pullOptions()),Promise.resolve(!0)}async resetPendingWithInfo(){if(this.inBackOff)return!1;let r=0,s=0;const l=Ad([this.opts.expires]);let c=0;for(;;){if(this.done)return!1;if(this.consumer.api.nc.isClosed())return console.error("aborting resetPending - connection is closed"),!1;try{return await this.consumer.info(),this.inBackOff=!1,r=0,this.pending.msgs=0,this.pending.bytes=0,this.pending.requests=0,this.pull(this.pullOptions()),!0}catch(d){if(d.message==="stream not found"){if(s++,this.notify(Jn.StreamNotFound,s),!this.refilling||this.abortOnMissingResource)return this.stop(d),!1}else if(d.message==="consumer not found"){if(r++,this.notify(Jn.ConsumerNotFound,r),this.resetHandler)try{this.resetHandler()}catch{}if(!this.refilling||this.abortOnMissingResource)return this.stop(d),!1;if(this.forOrderedConsumer)return!1}else r=0,s=0;this.inBackOff=!0;const g=l.backoff(c),y=Ys(g);await Promise.race([y,this.consumer.api.nc.closed()]),y.cancel(),c++}}}pull(r){this.pending.bytes+=r.max_bytes??0,this.pending.msgs+=r.batch??0,this.pending.requests++;const s=this.consumer.api.nc;this._push(()=>{s.publish(`${this.consumer.api.prefix}.CONSUMER.MSG.NEXT.${this.consumer.stream}.${this.consumer.name}`,this.consumer.api.jc.encode(r),{reply:this.inbox}),this.notify($s.Next,r)})}pullOptions(){const r=this.opts.max_messages-this.pending.msgs,s=this.opts.max_bytes-this.pending.bytes,l=at(this.opts.idle_heartbeat),c=at(this.opts.expires);return{batch:r,max_bytes:s,idle_heartbeat:l,expires:c}}parseDiscard(r){const s={msgsLeft:0,bytesLeft:0},l=r==null?void 0:r.get(Ht.PendingMessagesHdr);l&&(s.msgsLeft=parseInt(l));const c=r==null?void 0:r.get(Ht.PendingBytesHdr);return c&&(s.bytesLeft=parseInt(c)),s}trackTimeout(r){this.timeout=r}close(){return this.stop(),this.iterClosed}closed(){return this.iterClosed}clearTimers(){var r,s;(r=this.monitor)==null||r.cancel(),this.monitor=null,(s=this.timeout)==null||s.cancel(),this.timeout=null}setCleanupHandler(r){this.cleanupHandler=r}stop(r){var s,l;this.done||((s=this.sub)==null||s.unsubscribe(),this.clearTimers(),(l=this.statusIterator)==null||l.stop(),this._push(()=>{super.stop(r),this.listeners.forEach(c=>{c.stop()})}))}parseOptions(r,s=!1){const l=r||{};if(l.max_messages=l.max_messages||0,l.max_bytes=l.max_bytes||0,l.max_messages!==0&&l.max_bytes!==0)throw new Error("only specify one of max_messages or max_bytes");if(l.max_messages===0&&(l.max_messages=100),l.expires=l.expires||3e4,l.expires<1e3)throw new Error("expires should be at least 1000ms");if(l.idle_heartbeat=l.idle_heartbeat||l.expires/2,l.idle_heartbeat=l.idle_heartbeat>3e4?3e4:l.idle_heartbeat,s){const c=Math.round(l.max_messages*.75)||1;l.threshold_messages=l.threshold_messages||c;const d=Math.round(l.max_bytes*.75)||1;l.threshold_bytes=l.threshold_bytes||d}return l}status(){const r=new kt;return this.listeners.push(r),Promise.resolve(r)}}class ME extends kt{constructor(){super();A(this,"src");A(this,"listeners");this.listeners=[]}setSource(r){this.src&&(this.src.resetHandler=void 0,this.src.setCleanupHandler(),this.src.stop()),this.src=r,this.src.setCleanupHandler(s=>{this.stop(s||void 0)}),(async()=>{const s=await this.src.status();for await(const l of s)this.notify(l.type,l.data)})().catch(()=>{})}notify(r,s){this.listeners.length>0&&this.listeners.forEach(l=>{l.done||l.push({type:r,data:s})})}stop(r){var s;this.done||((s=this.src)==null||s.stop(r),super.stop(r),this.listeners.forEach(l=>{l.stop()}))}close(){return this.stop(),this.iterClosed}closed(){return this.iterClosed}status(){const r=new kt;return this.listeners.push(r),Promise.resolve(r)}}class ud{constructor(t,r){A(this,"api");A(this,"_info");A(this,"stream");A(this,"name");this.api=t,this._info=r,this.stream=r.stream_name,this.name=r.name}consume(t={max_messages:100,expires:3e4}){return Promise.resolve(new Uh(this,t,!0))}fetch(t={max_messages:100,expires:3e4}){const r=new Uh(this,t,!1),s=Math.round(r.opts.expires*1.05),l=Gs(s);return r.closed().catch(()=>{}).finally(()=>{l.cancel()}),l.catch(()=>{r.close().catch()}),r.trackTimeout(l),Promise.resolve(r)}next(t={expires:3e4}){const r=ot(),s=t;s.max_messages=1;const l=new Uh(this,s,!1),c=Math.round(l.opts.expires*1.05);c>=6e4&&(async()=>{for await(const g of await l.status())if(g.type===Jn.HeartbeatsMissed&&g.data>=2){r.reject(new Error("consumer missed heartbeats"));break}})().catch(),(async()=>{for await(const g of l){r.resolve(g);break}})().catch(()=>{});const d=Gs(c);return l.closed().then(g=>{g?r.reject(g):r.resolve(null)}).catch(g=>{r.reject(g)}).finally(()=>{d.cancel()}),d.catch(g=>{r.resolve(null),l.close().catch()}),l.trackTimeout(d),r}delete(){const{stream_name:t,name:r}=this._info;return this.api.delete(t,r)}info(t=!1){if(t)return Promise.resolve(this._info);const{stream_name:r,name:s}=this._info;return this.api.info(r,s).then(l=>(this._info=l,this._info))}}class RE{constructor(t,r,s={}){A(this,"api");A(this,"consumerOpts");A(this,"consumer");A(this,"opts");A(this,"cursor");A(this,"stream");A(this,"namePrefix");A(this,"serial");A(this,"currentConsumer");A(this,"userCallback");A(this,"iter");A(this,"type");A(this,"startSeq");A(this,"maxInitialReset");this.api=t,this.stream=r,this.cursor={stream_seq:1,deliver_seq:0},this.namePrefix=fi.next(),typeof s.name_prefix=="string"&&(uu("name_prefix",s.name_prefix),this.namePrefix=s.name_prefix+this.namePrefix),this.serial=0,this.currentConsumer=null,this.userCallback=null,this.iter=null,this.type=Tn.Unset,this.consumerOpts=s,this.maxInitialReset=30,this.startSeq=this.consumerOpts.opt_start_seq||0,this.cursor.stream_seq=this.startSeq>0?this.startSeq-1:0}getConsumerOpts(t){this.serial++;const r=`${this.namePrefix}_${this.serial}`;t=t===0?1:t;const s={name:r,deliver_policy:bt.StartSequence,opt_start_seq:t,ack_policy:Nt.None,inactive_threshold:at(300*1e3),num_replicas:1};return this.consumerOpts.headers_only===!0&&(s.headers_only=!0),Array.isArray(this.consumerOpts.filterSubjects)&&(s.filter_subjects=this.consumerOpts.filterSubjects),typeof this.consumerOpts.filterSubjects=="string"&&(s.filter_subject=this.consumerOpts.filterSubjects),this.consumerOpts.replay_policy&&(s.replay_policy=this.consumerOpts.replay_policy),t===this.startSeq+1&&(s.deliver_policy=this.consumerOpts.deliver_policy||bt.StartSequence,(this.consumerOpts.deliver_policy===bt.LastPerSubject||this.consumerOpts.deliver_policy===bt.New||this.consumerOpts.deliver_policy===bt.Last)&&(delete s.opt_start_seq,s.deliver_policy=this.consumerOpts.deliver_policy),s.deliver_policy===bt.LastPerSubject&&typeof s.filter_subjects>"u"&&typeof s.filter_subject>"u"&&(s.filter_subject=">"),this.consumerOpts.opt_start_time&&(delete s.opt_start_seq,s.deliver_policy=bt.StartTime,s.opt_start_time=this.consumerOpts.opt_start_time),this.consumerOpts.inactive_threshold&&(s.inactive_threshold=at(this.consumerOpts.inactive_threshold))),s}async resetConsumer(t=0){var d,g,y,f,m;fi.next();const r=this.serial===0;(d=this.consumer)==null||d.delete().catch(()=>{}),t=t===0?1:t,this.cursor.deliver_seq=0;const s=this.getConsumerOpts(t);s.max_deliver=1,s.mem_storage=!0;const l=Ad([((g=this.opts)==null?void 0:g.expires)||3e4]);let c;for(let b=0;;b++)try{c=await this.api.add(this.stream,s),(y=this.iter)==null||y.notify(Jn.OrderedConsumerRecreated,c.name);break}catch(v){if(v.message==="stream not found"&&((f=this.iter)==null||f.notify(Jn.StreamNotFound,b),this.type===Tn.Fetch||this.opts.abort_on_missing_resource===!0))return(m=this.iter)==null||m.stop(v),Promise.reject(v);if(r&&b>=this.maxInitialReset)throw v;await Ys(l.backoff(b+1))}return c}internalHandler(t){return r=>{var l;if(this.serial!==t)return;const s=r.info.deliverySequence;if(s!==this.cursor.deliver_seq+1){this.notifyOrderedResetAndReset();return}this.cursor.deliver_seq=s,this.cursor.stream_seq=r.info.streamSequence,this.userCallback?this.userCallback(r):(l=this.iter)==null||l.push(r)}}async reset(t={max_messages:100,expires:3e4},r){var y,f;r=r||{};const s=r.fromFetch||!1,l=r.orderedReset||!1;if(this.type===Tn.Fetch&&l){(y=this.iter)==null||y.src.stop(),await((f=this.iter)==null?void 0:f.closed()),this.currentConsumer=null;return}(this.currentConsumer===null||l)&&(this.currentConsumer=await this.resetConsumer(this.cursor.stream_seq+1)),(this.iter===null||s)&&(this.iter=new ME),this.consumer=new ud(this.api,this.currentConsumer);const c=t;c.callback=this.internalHandler(this.serial);let d=null;this.type===Tn.Fetch&&s?d=await this.consumer.fetch(t):this.type===Tn.Consume&&(d=await this.consumer.consume(t));const g=d;g.forOrderedConsumer=!0,g.resetHandler=()=>{this.notifyOrderedResetAndReset()},this.iter.setSource(g)}notifyOrderedResetAndReset(){var t;(t=this.iter)==null||t.notify($s.Reset,""),this.reset(this.opts,{orderedReset:!0})}async consume(t={max_messages:100,expires:3e4}){if(t.bind)return Promise.reject(new Error("bind is not supported"));if(this.type===Tn.Fetch)return Promise.reject(new Error("ordered consumer initialized as fetch"));if(this.type===Tn.Consume)return Promise.reject(new Error("ordered consumer doesn't support concurrent consume"));const{callback:s}=t;return s&&(this.userCallback=s),this.type=Tn.Consume,this.opts=t,await this.reset(t),this.iter}async fetch(t={max_messages:100,expires:3e4}){var l;if(t.bind)return Promise.reject(new Error("bind is not supported"));if(this.type===Tn.Consume)return Promise.reject(new Error("ordered consumer already initialized as consume"));if(((l=this.iter)==null?void 0:l.done)===!1)return Promise.reject(new Error("ordered consumer doesn't support concurrent fetch"));const{callback:s}=t;return s&&(this.userCallback=s),this.type=Tn.Fetch,this.opts=t,await this.reset(t,{fromFetch:!0}),this.iter}async next(t={expires:3e4}){const r=t;if(r.bind)return Promise.reject(new Error("bind is not supported"));r.max_messages=1;const s=ot();return r.callback=c=>{this.userCallback=null,s.resolve(c)},(await this.fetch(r)).iterClosed.then(c=>{c&&s.reject(c),s.resolve(null)}).catch(c=>{s.reject(c)}),s}delete(){return this.currentConsumer?this.api.delete(this.stream,this.currentConsumer.name).then(t=>Promise.resolve(t)).catch(t=>Promise.reject(t)).finally(()=>{this.currentConsumer=null}):Promise.resolve(!1)}async info(t){return this.currentConsumer==null?(this.currentConsumer=await this.resetConsumer(this.startSeq),Promise.resolve(this.currentConsumer)):t&&this.currentConsumer?Promise.resolve(this.currentConsumer):this.api.info(this.stream,this.currentConsumer.name)}}class fd{constructor(t){A(this,"api");A(this,"notified");this.api=t,this.notified=!1}checkVersion(){const t=this.api.nc.features.get(Ie.JS_SIMPLIFICATION);return t.ok?Promise.resolve():Promise.reject(new Error(`consumers framework is only supported on servers ${t.min} or better`))}getPullConsumerFor(t){if(t.config.deliver_subject!==void 0)throw new Error("push consumer not supported");return new ud(this.api,t)}async get(t,r={}){return typeof r=="object"?this.ordered(t,r):(await this.checkVersion(),this.api.info(t,r).then(s=>s.config.deliver_subject!==void 0?Promise.reject(new Error("push consumer not supported")):new ud(this.api,s)).catch(s=>Promise.reject(s)))}async ordered(t,r){await this.checkVersion();const s=this.api;return new Cd(s.nc,s.opts).info(t).then(c=>Promise.resolve(new RE(this.api,t,r))).catch(c=>Promise.reject(c))}}class hu{constructor(t,r){A(this,"api");A(this,"_info");this.api=t,this._info=r}get name(){return this._info.config.name}alternates(){return this.info().then(t=>t.alternates?t.alternates:[])}async best(){if(await this.info(),this._info.alternates){const t=await this.api.info(this._info.alternates[0].name);return new hu(this.api,t)}else return this}info(t=!1,r){return t?Promise.resolve(this._info):this.api.info(this.name,r).then(s=>(this._info=s,this._info))}getConsumerFromInfo(t){return new fd(new Zc(this.api.nc,this.api.opts)).getPullConsumerFor(t)}getConsumer(t){return new fd(new Zc(this.api.nc,this.api.opts)).get(this.name,t)}getMessage(t){return this.api.getMessage(this.name,t)}deleteMessage(t,r){return this.api.deleteMessage(this.name,t,r)}}class Cd extends yo{constructor(t,r){super(t,r)}checkStreamConfigVersions(t){const r=this.nc;if(t.metadata){const{min:l,ok:c}=r.features.get(Ie.JS_STREAM_CONSUMER_METADATA);if(!c)throw new Error(`stream 'metadata' requires server ${l}`)}if(t.first_seq){const{min:l,ok:c}=r.features.get(Ie.JS_STREAM_FIRST_SEQ);if(!c)throw new Error(`stream 'first_seq' requires server ${l}`)}if(t.subject_transform){const{min:l,ok:c}=r.features.get(Ie.JS_STREAM_SUBJECT_TRANSFORM);if(!c)throw new Error(`stream 'subject_transform' requires server ${l}`)}if(t.compression){const{min:l,ok:c}=r.features.get(Ie.JS_STREAM_COMPRESSION);if(!c)throw new Error(`stream 'compression' requires server ${l}`)}if(t.consumer_limits){const{min:l,ok:c}=r.features.get(Ie.JS_DEFAULT_CONSUMER_LIMITS);if(!c)throw new Error(`stream 'consumer_limits' requires server ${l}`)}function s(l,c){var g;if((((g=c==null?void 0:c.subject_transforms)==null?void 0:g.length)||0)>0){const{min:y,ok:f}=r.features.get(Ie.JS_STREAM_SOURCE_SUBJECT_TRANSFORM);if(!f)throw new Error(`${l} 'subject_transforms' requires server ${y}`)}}t.sources&&t.sources.forEach(l=>{s("stream sources",l)}),t.mirror&&s("stream mirror",t.mirror)}async add(t={}){var l;this.checkStreamConfigVersions(t),It(t.name),t.mirror=Kl(t.mirror),t.sources=(l=t.sources)==null?void 0:l.map(Kl);const s=await this._request(`${this.prefix}.STREAM.CREATE.${t.name}`,t);return this._fixInfo(s),s}async delete(t){return It(t),(await this._request(`${this.prefix}.STREAM.DELETE.${t}`)).success}async update(t,r={}){var g;if(typeof t=="object"){const y=t;t=y.name,r=y,console.trace("\x1B[33m >> streams.update(config: StreamConfig) api changed to streams.update(name: string, config: StreamUpdateConfig) - this shim will be removed - update your code. \x1B[0m")}this.checkStreamConfigVersions(r),It(t);const s=await this.info(t),l=Object.assign(s.config,r);l.mirror=Kl(l.mirror),l.sources=(g=l.sources)==null?void 0:g.map(Kl);const d=await this._request(`${this.prefix}.STREAM.UPDATE.${t}`,l);return this._fixInfo(d),d}async info(t,r){It(t);const s=`${this.prefix}.STREAM.INFO.${t}`;let c=await this._request(s,r),{total:d,limit:g}=c,y=c.state.subjects?Object.getOwnPropertyNames(c.state.subjects).length:1;if(d&&d>y){const f=[c],m=r||{};let b=0;for(;d>y;){b++,m.offset=g*b;const _=await this._request(s,m);d=_.total,f.push(_);const w=Object.getOwnPropertyNames(_.state.subjects).length;if(y+=w,w<g)break}let v={};for(let _=0;_<f.length;_++)c=f[_],c.state.subjects&&(v=Object.assign(v,c.state.subjects));c.offset=0,c.total=0,c.limit=0,c.state.subjects=v}return this._fixInfo(c),c}list(t=""){const r=t!=null&&t.length?{subject:t}:{},s=c=>{const d=c;return d.streams.forEach(g=>{this._fixInfo(g)}),d.streams},l=`${this.prefix}.STREAM.LIST`;return new ro(l,s,this,r)}_fixInfo(t){t.config.sealed=t.config.sealed||!1,t.config.deny_delete=t.config.deny_delete||!1,t.config.deny_purge=t.config.deny_purge||!1,t.config.allow_rollup_hdrs=t.config.allow_rollup_hdrs||!1}async purge(t,r){if(r){const{keep:l,seq:c}=r;if(typeof l=="number"&&typeof c=="number")throw new Error("can specify one of keep or seq")}return It(t),await this._request(`${this.prefix}.STREAM.PURGE.${t}`,r)}async deleteMessage(t,r,s=!0){It(t);const l={seq:r};return s||(l.no_erase=!0),(await this._request(`${this.prefix}.STREAM.MSG.DELETE.${t}`,l)).success}async getMessage(t,r){It(t);const l=await this._request(`${this.prefix}.STREAM.MSG.GET.${t}`,r);return new kb(l)}find(t){return this.findStream(t)}listKvs(){const t=s=>{var y;const c=s.streams.filter(f=>f.config.name.startsWith(fn));c.forEach(f=>{this._fixInfo(f)});let d="";return c.length&&(d=((y=this.nc.info)==null?void 0:y.cluster)??""),c.map(f=>new Tb(f,d))},r=`${this.prefix}.STREAM.LIST`;return new ro(r,t,this)}listObjectStores(){const t=s=>{const c=s.streams.filter(g=>g.config.name.startsWith(kd));return c.forEach(g=>{this._fixInfo(g)}),c.map(g=>new cd(g))},r=`${this.prefix}.STREAM.LIST`;return new ro(r,t,this)}names(t=""){const r=t!=null&&t.length?{subject:t}:{},s=c=>c.streams,l=`${this.prefix}.STREAM.NAMES`;return new ro(l,s,this,r)}async get(t){const r=await this.info(t);return Promise.resolve(new hu(this,r))}}class DE extends yo{constructor(t,r){super(t,r)}async getMessage(t,r){It(t);let s=r;const{last_by_subj:l}=s;l&&(s=null);const c=s?this.jc.encode(s):mn,d=this.opts.apiPrefix||"$JS.API",g=l?`${d}.DIRECT.GET.${t}.${l}`:`${d}.DIRECT.GET.${t}`,y=await this.nc.request(g,c,{timeout:this.timeout}),f=zs(y);if(f)return Promise.reject(f);const m=new hd(y);return Promise.resolve(m)}async getBatch(t,r){It(t);const l=`${this.opts.apiPrefix||"$JS.API"}.DIRECT.GET.${t}`;if(!Array.isArray(r.multi_last)||r.multi_last.length===0)return Promise.reject("multi_last is required");const c=JSON.stringify(r,(y,f)=>y==="up_to_time"&&f instanceof Date?f.toISOString():f),d=new kt,g=await this.nc.requestMany(l,c,{strategy:$n.SentinelMsg});return(async()=>{var b,v,_;let y=!1,f=!1,m;for await(const w of g){if(!y){y=!0;const S=((b=w.headers)==null?void 0:b.code)||0;if(S!==0&&S<200||S>299){m=(v=w.headers)==null?void 0:v.description.toLowerCase();break}if(((_=w.headers)==null?void 0:_.get("Nats-Num-Pending"))===""){f=!0;break}}if(w.data.length===0)break;d.push(new hd(w))}d.push(()=>{if(f)throw new Error("batch direct get not supported by the server");if(m)throw new Error(`bad request: ${m}`);d.stop()})})(),Promise.resolve(d)}}class hd{constructor(t){A(this,"data");A(this,"header");if(!t.headers)throw new Error("headers expected");this.data=t.data,this.header=t.headers}get subject(){return this.header.last(Bs.Subject)}get seq(){const t=this.header.last(Bs.Sequence);return typeof t=="string"?parseInt(t):0}get time(){return new Date(Date.parse(this.timestamp))}get timestamp(){return this.header.last(Bs.TimeStamp)}get stream(){return this.header.last(Bs.Stream)}json(t){return Hn(t).decode(this.data)}string(){return hn.decode(this.data)}}A(hd,"jc");class qE extends yo{constructor(r,s){super(r,s);A(this,"streams");A(this,"consumers");A(this,"direct");this.streams=new Cd(r,s),this.consumers=new Zc(r,s),this.direct=new DE(r,s)}async getAccountInfo(){return await this._request(`${this.prefix}.INFO`)}jetstream(){return this.nc.jetstream(this.getOptions())}advisories(){const r=new kt;return this.nc.subscribe("$JS.EVENT.ADVISORY.>",{callback:(s,l)=>{if(s)throw s;try{const c=this.parseJsResponse(l),d=c.type.split("."),g=d[d.length-1];r.push({kind:g,data:c})}catch(c){r.stop(c)}}}),r}}class kb{constructor(t){A(this,"_header");A(this,"smr");this.smr=t}get subject(){return this.smr.message.subject}get seq(){return this.smr.message.seq}get timestamp(){return this.smr.message.time}get time(){return new Date(Date.parse(this.timestamp))}get data(){return this.smr.message.data?this._parse(this.smr.message.data):mn}get header(){if(!this._header)if(this.smr.message.hdrs){const t=this._parse(this.smr.message.hdrs);this._header=oi.decode(t)}else this._header=Er();return this._header}_parse(t){const r=atob(t),s=r.length,l=new Uint8Array(s);for(let c=0;c<s;c++)l[c]=r.charCodeAt(c);return l}json(t){return Hn(t).decode(this.data)}string(){return hn.decode(this.data)}}A(kb,"jc");class BE{constructor(t){A(this,"api");this.api=t}get(t){return this.api.info(t).then(r=>new hu(this.api,r))}}class zh{constructor(t){A(this,"info");A(this,"hdrs");this.info=t}get name(){return this.info.name}get description(){return this.info.description??""}get headers(){return this.hdrs||(this.hdrs=oi.fromRecord(this.info.headers||{})),this.hdrs}get options(){return this.info.options}get bucket(){return this.info.bucket}get chunks(){return this.info.chunks}get deleted(){return this.info.deleted??!1}get digest(){return this.info.digest}get mtime(){return this.info.mtime}get nuid(){return this.info.nuid}get size(){return this.info.size}get revision(){return this.info.revision}get metadata(){return this.info.metadata||{}}isLink(){var t,r;return((t=this.info.options)==null?void 0:t.link)!==void 0&&((r=this.info.options)==null?void 0:r.link)!==null}}function xy(i){const t={name:i.name,description:i.description??"",options:i.options,metadata:i.metadata};if(i.headers){const r=i.headers;t.headers=r.toRecord()}return t}function LE(){return new ReadableStream({pull(i){i.enqueue(new Uint8Array(0)),i.close()}})}class lo{constructor(t,r,s){A(this,"jsm");A(this,"js");A(this,"stream");A(this,"name");this.name=t,this.jsm=r,this.js=s}_checkNotEmpty(t){return!t||t.length===0?{name:t,error:new Error("name cannot be empty")}:{name:t}}async info(t){const r=await this.rawInfo(t);return r?new zh(r):null}async list(){const t=[],r=await this.watch({ignoreDeletes:!0,includeHistory:!0});for await(const s of r){if(s===null)break;t.push(s)}return Promise.resolve(t)}async rawInfo(t){const{name:r,error:s}=this._checkNotEmpty(t);if(s)return Promise.reject(s);const l=this._metaSubject(r);try{const c=await this.jsm.streams.getMessage(this.stream,{last_by_subj:l}),g=Hn().decode(c.data);return g.revision=c.seq,g}catch(c){return c.code==="404"?null:Promise.reject(c)}}async _si(t){try{return await this.jsm.streams.info(this.stream,t)}catch(r){return r.code==="404"?null:Promise.reject(r)}}async seal(){let t=await this._si();return t===null?Promise.reject(new Error("object store not found")):(t.config.sealed=!0,t=await this.jsm.streams.update(this.stream,t.config),Promise.resolve(new cd(t)))}async status(t){const r=await this._si(t);return r===null?Promise.reject(new Error("object store not found")):Promise.resolve(new cd(r))}destroy(){return this.jsm.streams.delete(this.stream)}async _put(t,r,s){var ce;const l=this.js.getOptions();s=s||{timeout:l.timeout},s.timeout=s.timeout||l.timeout,s.previousRevision=s.previousRevision??void 0;const{timeout:c,previousRevision:d}=s,g=this.js.nc.info,y=(g==null?void 0:g.max_payload)||1024;t=t||{},t.options=t.options||{};let f=((ce=t.options)==null?void 0:ce.max_chunk_size)||128*1024;f=f>y?y:f,t.options.max_chunk_size=f;const m=await this.info(t.name),{name:b,error:v}=this._checkNotEmpty(t.name);if(v)return Promise.reject(v);const _=fi.next(),w=this._chunkSubject(_),S=this._metaSubject(b),M=Object.assign({bucket:this.name,nuid:_,size:0,chunks:0},xy(t)),B=ot(),U=[],re=new Vs;try{const C=r?r.getReader():null,P=cy.create();for(;;){const{done:ie,value:X}=C?await C.read():{done:!0,value:void 0};if(ie){if(re.size()>0){const J=re.drain();P.update(J),M.chunks++,M.size+=J.length,U.push(this.js.publish(w,J,{timeout:c}))}await Promise.all(U),U.length=0,M.mtime=new Date().toISOString();const L=Is.encode(P.digest());M.digest=`${by}${L}`,M.deleted=!1;const G=Er();typeof d=="number"&&G.set(Xn.ExpectedLastSubjectSequenceHdr,`${d}`),G.set(Ht.RollupHdr,Ht.RollupValueSubject);const W=await this.js.publish(S,Hn().encode(M),{headers:G,timeout:c});if(M.revision=W.seq,m)try{await this.jsm.streams.purge(this.stream,{filter:`$O.${this.name}.C.${m.nuid}`})}catch{}B.resolve(new zh(M));break}if(X)for(re.fill(X);re.size()>f;){M.chunks++,M.size+=f;const L=re.drain(t.options.max_chunk_size);P.update(L),U.push(this.js.publish(w,L,{timeout:c}))}}}catch(C){await this.jsm.streams.purge(this.stream,{filter:w}),B.reject(C)}return B}putBlob(t,r,s){function l(c){return new ReadableStream({pull(d){d.enqueue(c),d.close()}})}return r===null&&(r=new Uint8Array(0)),this.put(t,l(r),s)}put(t,r,s){var l;return(l=t==null?void 0:t.options)!=null&&l.link?Promise.reject(new Error("link cannot be set when putting the object in bucket")):this._put(t,r,s)}async getBlob(t){async function r(c){const d=new Vs,g=c.getReader();for(;;){const{done:y,value:f}=await g.read();if(y)return d.drain();f&&f.length&&d.fill(f)}}const s=await this.get(t);if(s===null)return Promise.resolve(null);const l=await Promise.all([s.error,r(s.data)]);return l[0]?Promise.reject(l[0]):Promise.resolve(l[1])}async get(t){const r=await this.rawInfo(t);if(r===null||r.deleted)return Promise.resolve(null);if(r.options&&r.options.link){const b=r.options.link.name||"";if(b==="")throw new Error("link is a bucket");return(r.options.link.bucket!==this.name?await lo.create(this.js,r.options.link.bucket):this).get(b)}if(!r.digest.startsWith(by))return Promise.reject(new Error(`unknown digest type: ${r.digest}`));const s=id(r.digest.substring(8));if(s===null)return Promise.reject(new Error(`unable to parse digest: ${r.digest}`));const l=ot(),c={info:new zh(r),error:l};if(r.size===0)return c.data=LE(),l.resolve(null),Promise.resolve(c);let d;const g=li();g.orderedConsumer();const y=cy.create(),f=`$O.${this.name}.C.${r.nuid}`,m=await this.js.subscribe(f,g);return(async()=>{for await(const b of m)b.data.length>0&&(y.update(b.data),d.enqueue(b.data)),b.info.pending===0&&(OS(s,y.digest())?d.close():d.error(new Error(`received a corrupt object, digests do not match received: ${r.digest} calculated ${s}`)),m.unsubscribe())})().then(()=>{l.resolve()}).catch(b=>{d.error(b),l.reject(b)}),c.data=new ReadableStream({start(b){d=b},cancel(){m.unsubscribe()}}),c}linkStore(t,r){if(!(r instanceof lo))return Promise.reject("bucket required");const s=r,{name:l,error:c}=this._checkNotEmpty(t);if(c)return Promise.reject(c);const d={name:l,options:{link:{bucket:s.name}}};return this._put(d,null)}async link(t,r){const{name:s,error:l}=this._checkNotEmpty(t);if(l)return Promise.reject(l);if(r.deleted)return Promise.reject(new Error("src object is deleted"));if(r.isLink())return Promise.reject(new Error("src object is a link"));const c=await this.rawInfo(t);if(c!==null&&!c.deleted)return Promise.reject(new Error("an object already exists with that name"));const d={bucket:r.bucket,name:r.name},g={name:s,bucket:r.bucket,options:{link:d}};await this.js.publish(this._metaSubject(t),JSON.stringify(g));const y=await this.info(t);return Promise.resolve(y)}async delete(t){const r=await this.rawInfo(t);if(r===null)return Promise.resolve({purged:0,success:!1});r.deleted=!0,r.size=0,r.chunks=0,r.digest="";const s=Hn(),l=Er();return l.set(Ht.RollupHdr,Ht.RollupValueSubject),await this.js.publish(this._metaSubject(r.name),s.encode(r),{headers:l}),this.jsm.streams.purge(this.stream,{filter:this._chunkSubject(r.nuid)})}async update(t,r={}){const s=await this.rawInfo(t);if(s===null)return Promise.reject(new Error("object not found"));if(s.deleted)return Promise.reject(new Error("cannot update meta for a deleted object"));r.name=r.name??s.name;const{name:l,error:c}=this._checkNotEmpty(r.name);if(c)return Promise.reject(c);if(t!==r.name){const y=await this.info(r.name);if(y&&!y.deleted)return Promise.reject(new Error("an object already exists with that name"))}r.name=l;const d=Object.assign({},s,xy(r)),g=await this.js.publish(this._metaSubject(d.name),JSON.stringify(d));return t!==r.name&&await this.jsm.streams.purge(this.stream,{filter:this._metaSubject(t)}),Promise.resolve(g)}async watch(t={}){t.includeHistory=t.includeHistory??!1,t.ignoreDeletes=t.ignoreDeletes??!1;let r=!1;const s=new kt,l=this._metaSubjectAll();try{await this.jsm.streams.getMessage(this.stream,{last_by_subj:l})}catch(y){y.code==="404"?(s.push(null),r=!0):s.stop(y)}const c=Hn(),d=li();d.orderedConsumer(),t.includeHistory?d.deliverLastPerSubject():(r=!0,d.deliverNew()),d.callback((y,f)=>{var m;if(y){s.stop(y);return}if(f!==null){const b=c.decode(f.data);b.deleted&&t.ignoreDeletes===!0||s.push(b),((m=f.info)==null?void 0:m.pending)===0&&!r&&(r=!0,s.push(null))}});const g=await this.js.subscribe(l,d);return s._data=g,s.iterClosed.then(()=>{g.unsubscribe()}),g.closed.then(()=>{s.stop()}).catch(y=>{s.stop(y)}),s}_chunkSubject(t){return`$O.${this.name}.C.${t}`}_metaSubject(t){return`$O.${this.name}.M.${Is.encode(t)}`}_metaSubjectAll(){return`$O.${this.name}.M.>`}async init(t={}){try{this.stream=AE(this.name)}catch(l){return Promise.reject(l)}const r=(t==null?void 0:t.ttl)||0;delete t.ttl;const s=Object.assign({max_age:r},t);s.name=this.stream,s.num_replicas=t.replicas??1,s.allow_direct=!0,s.allow_rollup_hdrs=!0,s.discard=uo.New,s.subjects=[`$O.${this.name}.C.>`,`$O.${this.name}.M.>`],t.placement&&(s.placement=t.placement),t.metadata&&(s.metadata=t.metadata),typeof t.compression=="boolean"&&(s.compression=t.compression?hi.S2:hi.None);try{await this.jsm.streams.info(s.name)}catch(l){l.message==="stream not found"&&await this.jsm.streams.add(s)}}static async create(t,r,s={}){const l=await t.jetstreamManager(),c=new lo(r,l,t);return await c.init(s),Promise.resolve(c)}}class PE{constructor(t){A(this,"js");this.js=t}kv(t,r={}){const s=this.js,{ok:l,min:c}=s.nc.features.get(Ie.JS_KV);return l?r.bindOnly?ho.bind(this.js,t,r):ho.create(this.js,t,r):Promise.reject(new Error(`kv is only supported on servers ${c} or better`))}os(t,r={}){var d;if(typeof((d=crypto==null?void 0:crypto.subtle)==null?void 0:d.digest)!="function")return Promise.reject(new Error("objectstore: unable to calculate hashes - crypto.subtle.digest with sha256 support is required"));const s=this.js,{ok:l,min:c}=s.nc.features.get(Ie.JS_OBJECTSTORE);return l?lo.create(this.js,t,r):Promise.reject(new Error(`objectstore is only supported on servers ${c} or better`))}}class Md extends yo{constructor(r,s){super(r,s);A(this,"consumers");A(this,"streams");A(this,"consumerAPI");A(this,"streamAPI");this.consumerAPI=new Zc(r,s),this.streamAPI=new Cd(r,s),this.consumers=new fd(this.consumerAPI),this.streams=new BE(this.streamAPI)}jetstreamManager(r){r===void 0&&(r=this.opts.checkAPI);const s=Object.assign({},this.opts,{checkAPI:r});return this.nc.jetstreamManager(s)}get apiPrefix(){return this.prefix}get views(){return new PE(this)}async publish(r,s=mn,l){l=l||{},l.expect=l.expect||{};const c=(l==null?void 0:l.headers)||Er();l&&(l.msgID&&c.set(Xn.MsgIdHdr,l.msgID),l.expect.lastMsgID&&c.set(Xn.ExpectedLastMsgIdHdr,l.expect.lastMsgID),l.expect.streamName&&c.set(Xn.ExpectedStreamHdr,l.expect.streamName),typeof l.expect.lastSequence=="number"&&c.set(Xn.ExpectedLastSeqHdr,`${l.expect.lastSequence}`),typeof l.expect.lastSubjectSequence=="number"&&c.set(Xn.ExpectedLastSubjectSequenceHdr,`${l.expect.lastSubjectSequence}`));const d=l.timeout||this.timeout,g={};d&&(g.timeout=d),l&&(g.headers=c);let{retries:y,retry_delay:f}=l;y=y||1,f=f||250;let m;for(let v=0;v<y;v++)try{m=await this.nc.request(r,s,g);break}catch(_){if(_.code==="503"&&v+1<y)await Ys(f);else throw _}const b=this.parseJsResponse(m);if(b.stream==="")throw me.errorForCode(le.JetStreamInvalidAck);return b.duplicate=b.duplicate?b.duplicate:!1,b}async pull(r,s,l=0){It(r),Us(s);let c=this.timeout;l>c&&(c=l),l=l<0?0:at(l);const d={batch:1,no_wait:l===0,expires:l},g=await this.nc.request(`${this.prefix}.CONSUMER.MSG.NEXT.${r}.${s}`,this.jc.encode(d),{noMux:!0,timeout:c}),y=zs(g);if(y)throw y;return mo(g,this.timeout)}fetch(r,s,l={}){It(r),Us(s);let c=null;const d=(l.max_bytes??0)>0;let g=0;const y=d?l.max_bytes:0;let f=null;const m={};if(m.batch=l.batch||1,y){const U=this.nc.features.get(Ie.JS_PULL_MAX_BYTES);if(!U.ok)throw new Error(`max_bytes is only supported on servers ${U.min} or better`);m.max_bytes=y}m.no_wait=l.no_wait||!1,m.no_wait&&m.expires&&(m.expires=0);const b=l.expires||0;if(b&&(m.expires=at(b)),b===0&&m.no_wait===!1)throw new Error("expires or no_wait is required");const v=l.idle_heartbeat||0;v&&(m.idle_heartbeat=at(v),l.delay_heartbeat===!0&&(m.idle_heartbeat=at(v*4)));const _=new kt,w=m.batch;let S=0;_.protocolFilterFn=(U,re=!1)=>td(U.msg)?(f==null||f.work(),!1):!0,_.dispatchedFn=U=>{if(U){if(d&&(g+=U.data.length),S++,c&&U.info.pending===0)return;(_.getPending()===1&&U.info.pending===0||w===S||y>0&&g>=y)&&_.stop()}};const M=Sr(this.nc.options.inboxPrefix),B=this.nc.subscribe(M,{max:l.batch,callback:(U,re)=>{U===null&&(U=zs(re)),U!==null?(c&&(c.cancel(),c=null),aS(U)?_.stop(Mb(U)===null?void 0:U):_.stop(U)):(f==null||f.work(),_.received++,_.push(mo(re,this.timeout)))}});return b&&(c=Gs(b),c.catch(()=>{B.isClosed()||(B.drain().catch(()=>{}),c=null),f&&f.cancel()})),(async()=>{try{v&&(f=new Td(v,U=>(_.push(()=>{_.err=new me(`${kn.IdleHeartbeatMissed}: ${U}`,le.JetStreamIdleHeartBeat)}),!0)))}catch{}await B.closed,c!==null&&(c.cancel(),c=null),f&&f.cancel(),_.stop()})().catch(),this.nc.publish(`${this.prefix}.CONSUMER.MSG.NEXT.${r}.${s}`,this.jc.encode(m),{reply:M}),_}async pullSubscribe(r,s=li()){const l=await this._processOptions(r,s);if(l.ordered)throw new Error("pull subscribers cannot be be ordered");if(l.config.deliver_subject)throw new Error("consumer info specifies deliver_subject - pull consumers cannot have deliver_subject set");const c=l.config.ack_policy;if(c===Nt.None||c===Nt.All)throw new Error("ack policy for pull consumers must be explicit");const d=this._buildTypedSubscriptionOpts(l),g=new $E(this,l.deliver,d);g.info=l;try{await this._maybeCreateConsumer(l)}catch(y){throw g.unsubscribe(),y}return g}async subscribe(r,s=li()){const l=await this._processOptions(r,s);if(!l.isBind&&!l.config.deliver_subject)throw new Error("push consumer requires deliver_subject");const c=this._buildTypedSubscriptionOpts(l),d=new Cb(this,l.deliver,c);d.info=l;try{await this._maybeCreateConsumer(l)}catch(g){throw d.unsubscribe(),g}return d._maybeSetupHbMonitoring(),d}async _processOptions(r,s=li()){const l=sy(s)?s.getOpts():s;if(l.isBind=sy(s)?s.isBind:!1,l.flow_control={heartbeat_count:0,fc_count:0,consumer_restarts:0},l.ordered){if(l.ordered_consumer_sequence={stream_seq:0,delivery_seq:0},l.config.ack_policy!==Nt.NotSet&&l.config.ack_policy!==Nt.None)throw new me("ordered consumer: ack_policy can only be set to 'none'",le.ApiError);if(l.config.durable_name&&l.config.durable_name.length>0)throw new me("ordered consumer: durable_name cannot be set",le.ApiError);if(l.config.deliver_subject&&l.config.deliver_subject.length>0)throw new me("ordered consumer: deliver_subject cannot be set",le.ApiError);if(l.config.max_deliver!==void 0&&l.config.max_deliver>1)throw new me("ordered consumer: max_deliver cannot be set",le.ApiError);if(l.config.deliver_group&&l.config.deliver_group.length>0)throw new me("ordered consumer: deliver_group cannot be set",le.ApiError);l.config.deliver_subject=Sr(this.nc.options.inboxPrefix),l.config.ack_policy=Nt.None,l.config.max_deliver=1,l.config.flow_control=!0,l.config.idle_heartbeat=l.config.idle_heartbeat||at(5e3),l.config.ack_wait=at(1320*60*1e3),l.config.mem_storage=!0,l.config.num_replicas=1}if(l.config.ack_policy===Nt.NotSet&&(l.config.ack_policy=Nt.All),l.api=this,l.config=l.config||{},l.stream=l.stream?l.stream:await this.findStream(r),l.attached=!1,l.config.durable_name)try{const c=await this.consumerAPI.info(l.stream,l.config.durable_name);if(c){if(c.config.filter_subject&&c.config.filter_subject!==r)throw new Error("subject does not match consumer");const d=l.config.deliver_group??"";if(d===""&&c.push_bound===!0)throw new Error("duplicate subscription");const g=c.config.deliver_group??"";if(d!==g)throw g===""?new Error("durable requires no queue group"):new Error(`durable requires queue group '${g}'`);l.last=c,l.config=c.config,l.attached=!0,l.config.durable_name||(l.name=c.name)}}catch(c){if(c.code!=="404")throw c}return!l.attached&&l.config.filter_subject===void 0&&l.config.filter_subjects===void 0&&(l.config.filter_subject=r),l.deliver=l.config.deliver_subject||Sr(this.nc.options.inboxPrefix),l}_buildTypedSubscriptionOpts(r){const s={};return s.adapter=HE(r.callbackFn===void 0,this.timeout),s.ingestionFilterFn=Md.ingestionFn(r.ordered),s.protocolFilterFn=(l,c=!1)=>{const d=l;return ed(d.msg)?(c||d.msg.respond(),!1):!0},!r.mack&&r.config.ack_policy!==Nt.None&&(s.dispatchedFn=VE),r.callbackFn&&(s.callback=r.callbackFn),s.max=r.max||0,s.queue=r.queue,s}async _maybeCreateConsumer(r){if(r.attached)return;if(r.isBind)throw new Error(`unable to bind - durable consumer ${r.config.durable_name} doesn't exist in ${r.stream}`);r.config=Object.assign({deliver_policy:bt.All,ack_policy:Nt.Explicit,ack_wait:at(30*1e3),replay_policy:Fs.Instant},r.config);const s=await this.consumerAPI.add(r.stream,r.config);if(Array.isArray(r.config.filter_subjects&&!Array.isArray(s.config.filter_subjects)))throw new Error("jetstream server doesn't support consumers with multiple filter subjects");r.name=s.name,r.config=s.config,r.last=s}static ingestionFn(r){return(s,l)=>{var y;const c=l;if(!s)return{ingest:!1,protocol:!1};const d=s;if(zs(d.msg)||(y=c.monitor)==null||y.work(),td(d.msg)){const f=r?c._checkHbOrderConsumer(d.msg):!0;return r||c.info.flow_control.heartbeat_count++,{ingest:f,protocol:!0}}else if(ed(d.msg))return c.info.flow_control.fc_count++,{ingest:!0,protocol:!0};return{ingest:r?c._checkOrderedConsumer(s):!0,protocol:!1}}}}class Rd{constructor(t){A(this,"options");A(this,"protocol");A(this,"draining");A(this,"listeners");A(this,"_services");this.draining=!1,this.options=oE(t),this.listeners=[]}static connect(t={}){return new Promise((r,s)=>{const l=new Rd(t);eu.connect(l.options,l).then(c=>{l.protocol=c,(async function(){for await(const d of c.status())l.listeners.forEach(g=>{g.push(d)})})(),r(l)}).catch(c=>{s(c)})})}closed(){return this.protocol.closed}async close(){await this.protocol.close()}_check(t,r,s){if(this.isClosed())throw me.errorForCode(le.ConnectionClosed);if(r&&this.isDraining()||s&&this.protocol.noMorePublishing)throw me.errorForCode(le.ConnectionDraining);if(t=t||"",t.length===0)throw me.errorForCode(le.BadSubject)}publish(t,r,s){this._check(t,!1,!0),this.protocol.publish(t,r,s)}publishMessage(t){return this.publish(t.subject,t.data,{reply:t.reply,headers:t.headers})}respondMessage(t){return t.reply?(this.publish(t.reply,t.data,{reply:t.reply,headers:t.headers}),!0):!1}subscribe(t,r={}){this._check(t,!0,!1);const s=new jb(this.protocol,t,r);return this.protocol.subscribe(s),s}_resub(t,r,s){this._check(r,!0,!1);const l=t;l.max=s,s&&(l.max=s+l.received),this.protocol.resub(l,r)}requestMany(t,r=mn,s={maxWait:1e3,maxMessages:-1}){const l=!this.protocol.options.noAsyncTraces;try{this._check(t,!0,!0)}catch(y){return Promise.reject(y)}if(s.strategy=s.strategy||$n.Timer,s.maxWait=s.maxWait||1e3,s.maxWait<1)return Promise.reject(new me("timeout",le.InvalidOption));const c=new kt;function d(y){c.push(()=>{c.stop(y)})}function g(y,f){y||f===null?d(y===null?void 0:y):c.push(f)}if(s.noMux){const y=l?new Error().stack:null;let f=typeof s.maxMessages=="number"&&s.maxMessages>0?s.maxMessages:-1;const m=this.subscribe(Sr(this.options.inboxPrefix),{callback:(w,S)=>{var M,B;if(((M=S==null?void 0:S.data)==null?void 0:M.length)===0&&((B=S==null?void 0:S.headers)==null?void 0:B.status)===le.NoResponders&&(w=me.errorForCode(le.NoResponders)),w){y&&(w.stack+=`
|
|
47
|
+
`),t.max=r)}resub(t,r){!t||this.isClosed()||(this.unsub(t),t.subject=r,this.subscriptions.resub(t),this._sub(t))}flush(t){return t||(t=ot()),this.pongs.push(t),this.outbound.fill(pg),this.flushPending(),t}sendSubscriptions(){const t=[];this.subscriptions.all().forEach(r=>{const s=r;s.queue?t.push(`SUB ${s.subject} ${s.queue} ${s.sid}${Ic}`):t.push(`SUB ${s.subject} ${s.sid}${Ic}`)}),t.length&&this.transport.send(so(t.join("")))}async _close(t){this._closed||(this.whyClosed=new Error("close trace").stack||"",this.heartbeats.cancel(),this.connectError&&(this.connectError(t),this.connectError=void 0),this.muxSubscriptions.close(),this.subscriptions.close(),this.listeners.forEach(r=>{r.stop()}),this._closed=!0,await this.transport.close(t),await this.closed.resolve(t))}close(){return this._close()}isClosed(){return this._closed}drain(){const t=this.subscriptions.all(),r=[];return t.forEach(s=>{r.push(s.drain())}),Promise.all(r).then(async()=>(this.noMorePublishing=!0,await this.flush(),this.close())).catch(()=>{})}flushPending(){if(!(!this.infoReceived||!this.connected)&&this.outbound.size()){const t=this.outbound.drain();this.transport.send(t)}}initMux(){if(!this.subscriptions.getMux()){const r=this.muxSubscriptions.init(this.options.inboxPrefix),s=new Tb(this,`${r}*`);s.callback=this.muxSubscriptions.dispatcher(),this.subscriptions.setMux(s),this.subscribe(s)}}selectServer(){const t=this.servers.selectServer();if(t!==void 0)return this.server=t,this.server}getServer(){return this.server}}const dE="$SRV";class yg{constructor(t){A(this,"msg");this.msg=t}get data(){return this.msg.data}get sid(){return this.msg.sid}get subject(){return this.msg.subject}get reply(){return this.msg.reply||""}get headers(){return this.msg.headers}respond(t,r){return this.msg.respond(t,r)}respondError(t,r,s,l){var c,d;return l=l||{},l.headers=l.headers||Er(),(c=l.headers)==null||c.set(Xc,`${t}`),(d=l.headers)==null||d.set(Kc,r),this.msg.respond(s,l)}json(t){return this.msg.json(t)}string(){return this.msg.string()}}class fo{constructor(t,r="",s=""){A(this,"subject");A(this,"queue");A(this,"srv");r!==""&&pE("service group",r);let l="";if(t instanceof bo)this.srv=t,l="";else if(t instanceof fo){const c=t;this.srv=c.srv,s===""&&c.queue!==""&&(s=c.queue),l=c.subject}else throw new Error("unknown ServiceGroup type");this.subject=this.calcSubject(l,r),this.queue=s}calcSubject(t,r=""){return r===""?t:t!==""?`${t}.${r}`:r}addEndpoint(t="",r){r=r||{subject:t};const s=typeof r=="function"?{handler:r,subject:t}:r;no("endpoint",t);let{subject:l,handler:c,metadata:d,queue:y}=s;l=l||t,y=y||this.queue,mE("endpoint subject",l),l=this.calcSubject(this.subject,l);const g={name:t,subject:l,queue:y,handler:c,metadata:d};return this.srv._addEndpoint(g)}addGroup(t="",r=""){return new fo(this,t,r)}}function mE(i,t){if(t==="")throw new Error(`${i} cannot be empty`);if(t.indexOf(" ")!==-1)throw new Error(`${i} cannot contain spaces: '${t}'`);const r=t.split(".");r.forEach((s,l)=>{if(s===">"&&l!==r.length-1)throw new Error(`${i} cannot have internal '>': '${t}'`)})}function pE(i,t){if(t.indexOf(" ")!==-1)throw new Error(`${i} cannot contain spaces: '${t}'`);t.split(".").forEach(s=>{if(s===">")throw new Error(`${i} name cannot contain internal '>': '${t}'`)})}class bo{constructor(t,r={name:"",version:""}){A(this,"nc");A(this,"_id");A(this,"config");A(this,"handlers");A(this,"internal");A(this,"_stopped");A(this,"_done");A(this,"started");this.nc=t,this.config=Object.assign({},r),this.config.queue||(this.config.queue="q"),no("name",this.config.name),no("queue",this.config.queue),$i(this.config.version),this._id=fi.next(),this.internal=[],this._done=ot(),this._stopped=!1,this.handlers=[],this.started=new Date().toISOString(),this.reset(),this.nc.closed().then(()=>{this.close().catch()}).catch(s=>{this.close(s).catch()})}static controlSubject(t,r="",s="",l){const c=l??dE;return r===""&&s===""?`${c}.${t}`:(no("control subject name",r),s!==""?(no("control subject id",s),`${c}.${t}.${r}.${s}`):`${c}.${t}.${r}`)}get subjects(){return this.handlers.filter(t=>t.internal===!1).map(t=>t.subject)}get id(){return this._id}get name(){return this.config.name}get description(){return this.config.description??""}get version(){return this.config.version}get metadata(){return this.config.metadata}errorToHeader(t){const r=Er();if(t instanceof Jc){const s=t;r.set(Kc,s.message),r.set(Xc,`${s.code}`)}else r.set(Kc,t.message),r.set(Xc,"500");return r}setupHandler(t,r=!1){const s=r?"":t.queue?t.queue:this.config.queue,{name:l,subject:c,handler:d}=t,y=t;y.internal=r,r&&this.internal.push(y),y.stats=new yE(l,c,s),y.queue=s;const g=d?(f,m)=>{if(f){this.close(f);return}const b=Date.now();try{d(f,new yg(m))}catch(v){y.stats.countError(v),m==null||m.respond(mn,{headers:this.errorToHeader(v)})}finally{y.stats.countLatency(b)}}:void 0;return y.sub=this.nc.subscribe(c,{callback:g,queue:s}),y.sub.closed.then(()=>{this._stopped||this.close(new Error(`required subscription ${t.subject} stopped`)).catch()}).catch(f=>{if(!this._stopped){const m=new Error(`required subscription ${t.subject} errored: ${f.message}`);m.stack=f.stack,this.close(m).catch()}}),y}info(){return{type:ao.INFO,name:this.name,id:this.id,version:this.version,description:this.description,metadata:this.metadata,endpoints:this.endpoints()}}endpoints(){return this.handlers.map(t=>{const{subject:r,metadata:s,name:l,queue:c}=t;return{subject:r,metadata:s,name:l,queue_group:c}})}async stats(){const t=[];for(const r of this.handlers){if(typeof this.config.statsHandler=="function")try{r.stats.data=await this.config.statsHandler(r)}catch(s){r.stats.countError(s)}t.push(r.stats.stats(r.qi))}return{type:ao.STATS,name:this.name,id:this.id,version:this.version,started:this.started,metadata:this.metadata,endpoints:t}}addInternalHandler(t,r){const s=`${t}`.toUpperCase();this._doAddInternalHandler(`${s}-all`,t,r),this._doAddInternalHandler(`${s}-kind`,t,r,this.name),this._doAddInternalHandler(`${s}`,t,r,this.name,this.id)}_doAddInternalHandler(t,r,s,l="",c=""){const d={};d.name=t,d.subject=bo.controlSubject(r,l,c),d.handler=s,this.setupHandler(d,!0)}start(){const t=Hn(),r=(d,y)=>d?(this.close(d),Promise.reject(d)):this.stats().then(g=>(y==null||y.respond(t.encode(g)),Promise.resolve())),s=(d,y)=>d?(this.close(d),Promise.reject(d)):(y==null||y.respond(t.encode(this.info())),Promise.resolve()),l=t.encode(this.ping()),c=(d,y)=>d?(this.close(d).then().catch(),Promise.reject(d)):(y.respond(l),Promise.resolve());return this.addInternalHandler(ai.PING,c),this.addInternalHandler(ai.STATS,r),this.addInternalHandler(ai.INFO,s),this.handlers.forEach(d=>{const{subject:y}=d;typeof y=="string"&&d.handler!==null&&this.setupHandler(d)}),Promise.resolve(this)}close(t){if(this._stopped)return this._done;this._stopped=!0;let r=[];return this.nc.isClosed()||(r=this.handlers.concat(this.internal).map(s=>s.sub.drain())),Promise.allSettled(r).then(()=>{this._done.resolve(t||null)}),this._done}get stopped(){return this._done}get isStopped(){return this._stopped}stop(t){return this.close(t)}ping(){return{type:ao.PING,name:this.name,id:this.id,version:this.version,metadata:this.metadata}}reset(){if(this.started=new Date().toISOString(),this.handlers)for(const t of this.handlers)t.stats.reset(t.qi)}addGroup(t,r){return new fo(this,t,r)}addEndpoint(t,r){return new fo(this).addEndpoint(t,r)}_addEndpoint(t){const r=new kt;r.noIterator=typeof t.handler=="function",r.noIterator||(t.handler=(l,c)=>{l?this.stop(l).catch():r.push(new yg(c))},r.iterClosed.then(()=>{this.close().catch()}));const s=this.setupHandler(t,!1);return s.qi=r,this.handlers.push(s),r}}class yE{constructor(t,r,s=""){A(this,"name");A(this,"subject");A(this,"average_processing_time");A(this,"num_requests");A(this,"processing_time");A(this,"num_errors");A(this,"last_error");A(this,"data");A(this,"metadata");A(this,"queue");this.name=t,this.subject=r,this.average_processing_time=0,this.num_errors=0,this.num_requests=0,this.processing_time=0,this.queue=s}reset(t){this.num_requests=0,this.processing_time=0,this.average_processing_time=0,this.num_errors=0,this.last_error=void 0,this.data=void 0;const r=t;r&&(r.time=0,r.processed=0)}countLatency(t){this.num_requests++,this.processing_time+=at(Date.now()-t),this.average_processing_time=Math.round(this.processing_time/this.num_requests)}countError(t){this.num_errors++,this.last_error=t.message}_stats(){const{name:t,subject:r,average_processing_time:s,num_errors:l,num_requests:c,processing_time:d,last_error:y,data:g,queue:f}=this;return{name:t,subject:r,average_processing_time:s,num_errors:l,num_requests:c,processing_time:d,last_error:y,data:g,queue_group:f}}stats(t){const r=t;return(r==null?void 0:r.noIterator)===!1&&(this.processing_time=at(r.time),this.num_requests=r.processed,this.average_processing_time=this.processing_time>0&&this.num_requests>0?this.processing_time/this.num_requests:0),this._stats()}}class gE{constructor(t,r={strategy:$n.JitterTimer,maxWait:2e3},s){A(this,"nc");A(this,"prefix");A(this,"opts");this.nc=t,this.prefix=s,this.opts=r}ping(t="",r=""){return this.q(ai.PING,t,r)}stats(t="",r=""){return this.q(ai.STATS,t,r)}info(t="",r=""){return this.q(ai.INFO,t,r)}async q(t,r="",s=""){const l=new kt,c=Hn(),d=bo.controlSubject(t,r,s,this.prefix),y=await this.nc.requestMany(d,mn,this.opts);return(async()=>{for await(const g of y)try{const f=c.decode(g.data);l.push(f)}catch(f){l.push(()=>{l.stop(f)})}l.push(()=>{l.stop()})})().catch(g=>{l.stop(g)}),l}}function Nb(){return{key:{encode(i){return i},decode(i){return i}},value:{encode(i){return i},decode(i){return i}}}}function bE(){return{replicas:1,history:1,timeout:2e3,max_bytes:-1,maxValueSize:-1,codec:Nb(),storage:rd.File}}const tu="KV-Operation",gg="$KV",vE=/^[-/=.\w]+$/,xE=/^[-/=.>*\w]+$/,_E=/^[-\w]+$/;function wE(i){if(i.startsWith(".")||i.endsWith(".")||!vE.test(i))throw new Error(`invalid key: ${i}`)}function SE(i){if(i.startsWith(".")||i.endsWith(".")||!xE.test(i))throw new Error(`invalid key: ${i}`)}function EE(i){if(i.startsWith(".")||i.endsWith("."))throw new Error(`invalid key: ${i}`);const t=i.split(".");let r=!1;for(let s=0;s<t.length;s++)switch(t[s]){case"*":r=!0;break;case">":if(s!==t.length-1)throw new Error(`invalid key: ${i}`);r=!0;break}return r}function $c(i){if(!_E.test(i))throw new Error(`invalid bucket name: ${i}`)}var Xn;(function(i){i.MsgIdHdr="Nats-Msg-Id",i.ExpectedStreamHdr="Nats-Expected-Stream",i.ExpectedLastSeqHdr="Nats-Expected-Last-Sequence",i.ExpectedLastMsgIdHdr="Nats-Expected-Last-Msg-Id",i.ExpectedLastSubjectSequenceHdr="Nats-Expected-Last-Subject-Sequence"})(Xn||(Xn={}));class ho{constructor(t,r,s){A(this,"js");A(this,"jsm");A(this,"stream");A(this,"bucket");A(this,"direct");A(this,"codec");A(this,"prefix");A(this,"editPrefix");A(this,"useJsPrefix");A(this,"_prefixLen");A(this,"validateKey",wE);A(this,"validateSearchKey",SE);A(this,"hasWildcards",EE);$c(t),this.js=r,this.jsm=s,this.bucket=t,this.prefix=gg,this.editPrefix="",this.useJsPrefix=!1,this._prefixLen=0}static async create(t,r,s={}){$c(r);const l=await t.jetstreamManager(),c=new ho(r,t,l);return await c.init(s),c}static async bind(t,r,s={}){const l=await t.jetstreamManager(),c={config:{allow_direct:s.allow_direct}};$c(r);const d=new ho(r,t,l);return c.config.name=s.streamName??d.bucketName(),Object.assign(d,c),d.stream=c.config.name,d.codec=s.codec||Nb(),d.direct=c.config.allow_direct??!1,d.initializePrefixes(c),d}async init(t={}){const r=Object.assign(bE(),t);this.codec=r.codec;const s={};this.stream=s.name=t.streamName??this.bucketName(),s.retention=nd.Limits,s.max_msgs_per_subject=r.history,r.maxBucketSize&&(r.max_bytes=r.maxBucketSize),r.max_bytes&&(s.max_bytes=r.max_bytes),s.max_msg_size=r.maxValueSize,s.storage=r.storage;const l=t.placementCluster??"";if(l&&(t.placement={},t.placement.cluster=l,t.placement.tags=[]),t.placement&&(s.placement=t.placement),t.republish&&(s.republish=t.republish),t.description&&(s.description=t.description),t.mirror){const b=Object.assign({},t.mirror);b.name.startsWith(fn)||(b.name=`${fn}${b.name}`),s.mirror=b,s.mirror_direct=!0}else if(t.sources){const b=t.sources.map(v=>{const _=Object.assign({},v),w=_.name.startsWith(fn)?_.name.substring(fn.length):_.name;return _.name.startsWith(fn)||(_.name=`${fn}${_.name}`),!v.external&&w!==this.bucket&&(_.subject_transforms=[{src:`$KV.${w}.>`,dest:`$KV.${this.bucket}.>`}]),_});s.sources=b,s.subjects=[this.subjectForBucket()]}else s.subjects=[this.subjectForBucket()];t.metadata&&(s.metadata=t.metadata),typeof t.compression=="boolean"&&(s.compression=t.compression?hi.S2:hi.None);const c=this.js.nc,d=c.getServerVersion(),y=d?sd(d,$i("2.7.2"))>=0:!1;s.discard=y?uo.New:uo.Old;const{ok:g,min:f}=c.features.get(Ie.JS_ALLOW_DIRECT);if(!g&&t.allow_direct===!0){const b=d?`${d.major}.${d.minor}.${d.micro}`:"unknown";return Promise.reject(new Error(`allow_direct is not available on server version ${b} - requires ${f}`))}t.allow_direct=typeof t.allow_direct=="boolean"?t.allow_direct:g,s.allow_direct=t.allow_direct,this.direct=s.allow_direct,s.num_replicas=r.replicas,r.ttl&&(s.max_age=at(r.ttl)),s.allow_rollup_hdrs=!0;let m;try{m=await this.jsm.streams.info(s.name),!m.config.allow_direct&&this.direct===!0&&(this.direct=!1)}catch(b){if(b.message==="stream not found")m=await this.jsm.streams.add(s);else throw b}this.initializePrefixes(m)}initializePrefixes(t){this._prefixLen=0,this.prefix=`$KV.${this.bucket}`,this.useJsPrefix=this.js.apiPrefix!=="$JS.API";const{mirror:r}=t.config;if(r){let s=r.name;if(s.startsWith(fn)&&(s=s.substring(fn.length)),r.external&&r.external.api!==""){const l=r.name.substring(fn.length);this.useJsPrefix=!1,this.prefix=`$KV.${l}`,this.editPrefix=`${r.external.api}.$KV.${s}`}else this.editPrefix=this.prefix}}bucketName(){return this.stream??`${fn}${this.bucket}`}subjectForBucket(){return`${this.prefix}.${this.bucket}.>`}subjectForKey(t,r=!1){const s=[];return r?(this.useJsPrefix&&s.push(this.js.apiPrefix),this.editPrefix!==""?s.push(this.editPrefix):s.push(this.prefix)):this.prefix&&s.push(this.prefix),s.push(t),s.join(".")}fullKeyName(t){return this.prefix!==""?`${this.prefix}.${t}`:`${gg}.${this.bucket}.${t}`}get prefixLen(){return this._prefixLen===0&&(this._prefixLen=this.prefix.length+1),this._prefixLen}encodeKey(t){const r=[];for(const s of t.split("."))switch(s){case">":case"*":r.push(s);break;default:r.push(this.codec.key.encode(s));break}return r.join(".")}decodeKey(t){const r=[];for(const s of t.split("."))switch(s){case">":case"*":r.push(s);break;default:r.push(this.codec.key.decode(s));break}return r.join(".")}close(){return Promise.resolve()}dataLen(t,r){const s=r&&r.get(Ht.MessageSizeHdr)||"";return s!==""?parseInt(s,10):t.length}smToEntry(t){return new UE(this.bucket,this.prefixLen,t)}jmToEntry(t){const r=this.decodeKey(t.subject.substring(this.prefixLen));return new zE(this.bucket,r,t)}async create(t,r){var c;let s;try{const d=await this.put(t,r,{previousSeq:0});return Promise.resolve(d)}catch(d){if(s=d,((c=d==null?void 0:d.api_error)==null?void 0:c.err_code)!==10071)return Promise.reject(d)}let l=0;try{const d=await this.get(t);return(d==null?void 0:d.operation)==="DEL"||(d==null?void 0:d.operation)==="PURGE"?(l=d!==null?d.revision:0,this.update(t,r,l)):Promise.reject(s)}catch(d){return Promise.reject(d)}}update(t,r,s){if(s<=0)throw new Error("version must be greater than 0");return this.put(t,r,{previousSeq:s})}async put(t,r,s={}){var d,y;const l=this.encodeKey(t);this.validateKey(l);const c={};if(s.previousSeq!==void 0){const g=Er();c.headers=g,g.set(Xn.ExpectedLastSubjectSequenceHdr,`${s.previousSeq}`)}try{return(await this.js.publish(this.subjectForKey(l,!0),r,c)).seq}catch(g){const f=g;return f.isJetStreamError()?(f.message=(d=f.api_error)==null?void 0:d.description,f.code=`${(y=f.api_error)==null?void 0:y.code}`,Promise.reject(f)):Promise.reject(g)}}async get(t,r){const s=this.encodeKey(t);this.validateKey(s);let l={last_by_subj:this.subjectForKey(s)};r&&r.revision>0&&(l={seq:r.revision});let c;try{this.direct?c=await this.jsm.direct.getMessage(this.bucketName(),l):c=await this.jsm.streams.getMessage(this.bucketName(),l);const d=this.smToEntry(c);return d.key!==s?null:d}catch(d){if(d.code===le.JetStream404NoMessages)return null;throw d}}purge(t,r){return this._deleteOrPurge(t,"PURGE",r)}delete(t,r){return this._deleteOrPurge(t,"DEL",r)}async purgeDeletes(t=1800*1e3){const r=ot(),s=[],l=await this.watch({key:">",initializedFn:()=>{r.resolve()}});(async()=>{for await(const g of l)(g.operation==="DEL"||g.operation==="PURGE")&&s.push(g)})().then(),await r,l.stop();const c=Date.now()-t,d=s.map(g=>{const f=this.subjectForKey(g.key);return g.created.getTime()>=c?this.jsm.streams.purge(this.stream,{filter:f,keep:1}):this.jsm.streams.purge(this.stream,{filter:f,keep:0})}),y=await Promise.all(d);return y.unshift({success:!0,purged:0}),y.reduce((g,f)=>(g.purged+=f.purged,g))}async _deleteOrPurge(t,r,s){if(!this.hasWildcards(t))return this._doDeleteOrPurge(t,r,s);const l=await this.keys(t),c=[];for await(const d of l)c.push(this._doDeleteOrPurge(d,r)),c.length===100&&(await Promise.all(c),c.length=0);c.length>0&&await Promise.all(c)}async _doDeleteOrPurge(t,r,s){const l=this.encodeKey(t);this.validateKey(l);const c=Er();c.set(tu,r),r==="PURGE"&&c.set(Ht.RollupHdr,Ht.RollupValueSubject),s!=null&&s.previousSeq&&c.set(Xn.ExpectedLastSubjectSequenceHdr,`${s.previousSeq}`),await this.js.publish(this.subjectForKey(l,!0),mn,{headers:c})}_buildCC(t,r,s={}){let c=(Array.isArray(t)?t:[t]).map(g=>{const f=this.encodeKey(g);return this.validateSearchKey(g),this.fullKeyName(f)}),d=bt.LastPerSubject;r===Un.AllHistory&&(d=bt.All),r===Un.UpdatesOnly&&(d=bt.New);let y;return c.length===1&&(y=c[0],c=void 0),Object.assign({deliver_policy:d,ack_policy:Tt.None,filter_subjects:c,filter_subject:y,flow_control:!0,idle_heartbeat:at(5*1e3)},s)}remove(t){return this.purge(t)}async history(t={}){const r=t.key??">",s=new kt,l={};l.headers_only=t.headers_only||!1;let c;c=()=>{s.stop()};let d=0;const y=this._buildCC(r,Un.AllHistory,l),g=y.filter_subject,f=li(y);f.bindStream(this.stream),f.orderedConsumer(),f.callback((b,v)=>{if(b){s.stop(b);return}if(v){const _=this.jmToEntry(v);s.push(_),s.received++,(c&&d>0&&s.received>=d||v.info.pending===0)&&(s.push(c),c=void 0)}});const m=await this.js.subscribe(g,f);if(c){const{info:{last:b}}=m,v=b.num_pending+b.delivered.consumer_seq;if(v===0||s.received>=v)try{c()}catch(_){s.stop(_)}finally{c=void 0}else d=v}return s._data=m,s.iterClosed.then(()=>{m.unsubscribe()}),m.closed.then(()=>{s.stop()}).catch(b=>{s.stop(b)}),s}canSetWatcherName(){const r=this.js.nc,{ok:s}=r.features.get(Ie.JS_NEW_CONSUMER_CREATE_API);return s}async watch(t={}){const r=t.key??">",s=new kt,l={};l.headers_only=t.headers_only||!1;let c=Un.LastValue;t.include===Un.AllHistory?c=Un.AllHistory:t.include===Un.UpdatesOnly&&(c=Un.UpdatesOnly);const d=t.ignoreDeletes===!0;let y=t.initializedFn,g=0;const f=this._buildCC(r,c,l),m=f.filter_subject,b=li(f);this.canSetWatcherName()&&b.consumerName(fi.next()),b.bindStream(this.stream),t.resumeFromRevision&&t.resumeFromRevision>0&&b.startSequence(t.resumeFromRevision),b.orderedConsumer(),b.callback((_,w)=>{if(_){s.stop(_);return}if(w){const S=this.jmToEntry(w);if(d&&S.operation==="DEL")return;s.push(S),s.received++,y&&(g>0&&s.received>=g||w.info.pending===0)&&(s.push(y),y=void 0)}});const v=await this.js.subscribe(m,b);if(y){const{info:{last:_}}=v,w=_.num_pending+_.delivered.consumer_seq;if(w===0||s.received>=w)try{y()}catch(S){s.stop(S)}finally{y=void 0}else g=w}return s._data=v,s.iterClosed.then(()=>{v.unsubscribe()}),v.closed.then(()=>{s.stop()}).catch(_=>{s.stop(_)}),s}async keys(t=">"){const r=new kt,s=this._buildCC(t,Un.LastValue,{headers_only:!0}),l=Array.isArray(t)?">":s.filter_subject,c=li(s);c.bindStream(this.stream),c.orderedConsumer();const d=await this.js.subscribe(l,c);return(async()=>{var g;for await(const f of d){const m=(g=f.headers)==null?void 0:g.get(tu);if(m!=="DEL"&&m!=="PURGE"){const b=this.decodeKey(f.subject.substring(this.prefixLen));r.push(b)}f.info.pending===0&&d.unsubscribe()}})().then(()=>{r.stop()}).catch(g=>{r.stop(g)}),d.info.last.num_pending===0&&d.unsubscribe(),r}purgeBucket(t){return this.jsm.streams.purge(this.bucketName(),t)}destroy(){return this.jsm.streams.delete(this.bucketName())}async status(){var c;const r=((c=this.js.nc.info)==null?void 0:c.cluster)??"",s=this.bucketName(),l=await this.jsm.streams.info(s);return new kb(l,r)}}class kb{constructor(t,r=""){A(this,"si");A(this,"cluster");this.si=t,this.cluster=r}get bucket(){return this.si.config.name.startsWith(fn)?this.si.config.name.substring(fn.length):this.si.config.name}get values(){return this.si.state.messages}get history(){return this.si.config.max_msgs_per_subject}get ttl(){return jd(this.si.config.max_age)}get bucket_location(){return this.cluster}get backingStore(){return this.si.config.storage}get storage(){return this.si.config.storage}get replicas(){return this.si.config.num_replicas}get description(){return this.si.config.description??""}get maxBucketSize(){return this.si.config.max_bytes}get maxValueSize(){return this.si.config.max_msg_size}get max_bytes(){return this.si.config.max_bytes}get placement(){return this.si.config.placement||{cluster:"",tags:[]}}get placementCluster(){var t;return((t=this.si.config.placement)==null?void 0:t.cluster)??""}get republish(){return this.si.config.republish??{src:"",dest:""}}get streamInfo(){return this.si}get size(){return this.si.state.bytes}get metadata(){return this.si.config.metadata??{}}get compression(){return this.si.config.compression?this.si.config.compression!==hi.None:!1}}const kd="OBJ_",bg="SHA-256=";function OE(i){return $c(i),`${kd}${i}`}function AE(i){return i.startsWith(kd)?i.substring(4):i}class cd{constructor(t){A(this,"si");A(this,"backingStore");this.si=t,this.backingStore="JetStream"}get bucket(){return AE(this.si.config.name)}get description(){return this.si.config.description??""}get ttl(){return this.si.config.max_age}get storage(){return this.si.config.storage}get replicas(){return this.si.config.num_replicas}get sealed(){return this.si.config.sealed}get size(){return this.si.state.bytes}get streamInfo(){return this.si}get metadata(){return this.si.config.metadata}get compression(){return this.si.config.compression?this.si.config.compression!==hi.None:!1}}function Kl(i){if(i===void 0)return;const{domain:t}=i;if(t===void 0)return i;const r=Object.assign({},i);if(delete r.domain,t==="")return r;if(r.external)throw new Error("domain and external are both set");return r.external={api:`$JS.${t}.API`},r}var Nn;(function(i){i[i.Unset=-1]="Unset",i[i.Consume=0]="Consume",i[i.Fetch=1]="Fetch"})(Nn||(Nn={}));var Jn;(function(i){i.HeartbeatsMissed="heartbeats_missed",i.ConsumerNotFound="consumer_not_found",i.StreamNotFound="stream_not_found",i.ConsumerDeleted="consumer_deleted",i.OrderedConsumerRecreated="ordered_consumer_recreated",i.NoResponders="no_responders"})(Jn||(Jn={}));var $s;(function(i){i.DebugEvent="debug",i.Discard="discard",i.Reset="reset",i.Next="next"})($s||($s={}));const vg=Uint8Array.of(43,65,67,75),jE=Uint8Array.of(45,78,65,75),Va=Uint8Array.of(43,87,80,73),TE=Uint8Array.of(43,78,88,84),NE=Uint8Array.of(43,84,69,82,77),kE=Uint8Array.of(32);function mo(i,t=5e3){return new YE(i,t)}class Uh extends kt{constructor(r,s,l=!1){super();A(this,"consumer");A(this,"opts");A(this,"sub");A(this,"monitor");A(this,"pending");A(this,"inbox");A(this,"refilling");A(this,"pong");A(this,"callback");A(this,"timeout");A(this,"cleanupHandler");A(this,"listeners");A(this,"statusIterator");A(this,"forOrderedConsumer");A(this,"resetHandler");A(this,"abortOnMissingResource");A(this,"bind");A(this,"inBackOff");this.consumer=r;const c=s;this.opts=this.parseOptions(s,l),this.callback=c.callback||null,this.noIterator=typeof this.callback=="function",this.monitor=null,this.pong=null,this.pending={msgs:0,bytes:0,requests:0},this.refilling=l,this.timeout=null,this.inbox=Sr(r.api.nc.options.inboxPrefix),this.listeners=[],this.forOrderedConsumer=!1,this.abortOnMissingResource=c.abort_on_missing_resource===!0,this.bind=c.bind===!0,this.inBackOff=!1,this.start()}start(){const{max_messages:r,max_bytes:s,idle_heartbeat:l,threshold_bytes:c,threshold_messages:d}=this.opts;this.closed().then(g=>{if(this.cleanupHandler)try{this.cleanupHandler(g)}catch{}});const{sub:y}=this;y&&y.unsubscribe(),this.sub=this.consumer.api.nc.subscribe(this.inbox,{callback:(g,f)=>{var b,v,_,w;if(g){this.stop(g);return}if((b=this.monitor)==null||b.work(),f.subject===this.inbox){if(td(f))return;const S=(v=f.headers)==null?void 0:v.code,M=((w=(_=f.headers)==null?void 0:_.description)==null?void 0:w.toLowerCase())||"unknown",{msgsLeft:B,bytesLeft:U}=this.parseDiscard(f.headers);if(B>0||U>0)this.pending.msgs-=B,this.pending.bytes-=U,this.pending.requests--,this.notify($s.Discard,{msgsLeft:B,bytesLeft:U});else if(S===400){this.stop(new me(M,`${S}`));return}else if(S===409&&M==="consumer deleted"){if(this.notify(Jn.ConsumerDeleted,`${S} ${M}`),!this.refilling||this.abortOnMissingResource){const re=new me(M,`${S}`);this.stop(re);return}}else if(S===503){if(this.notify(Jn.NoResponders,`${S} No Responders`),!this.refilling||this.abortOnMissingResource){const re=new me("no responders",`${S}`);this.stop(re);return}}else this.notify($s.DebugEvent,`${S} ${M}`)}else this._push(mo(f,this.consumer.api.timeout)),this.received++,this.pending.msgs&&this.pending.msgs--,this.pending.bytes&&(this.pending.bytes-=f.size());if(this.pending.msgs===0&&this.pending.bytes===0&&(this.pending.requests=0),this.refilling){if(r&&this.pending.msgs<=d||s&&this.pending.bytes<=c){const S=this.pullOptions();this.pull(S)}}else this.pending.requests===0&&this._push(()=>{this.stop()})}}),this.sub.closed.then(()=>{this.sub.draining&&this._push(()=>{this.stop()})}),l&&(this.monitor=new Nd(l,g=>(this.notify(Jn.HeartbeatsMissed,g),this.resetPending().then(()=>{}).catch(()=>{}),!1),{maxOut:2})),(async()=>{var f;const g=this.consumer.api.nc.status();this.statusIterator=g;for await(const m of g)switch(m.type){case wr.Disconnect:(f=this.monitor)==null||f.cancel();break;case wr.Reconnect:this.resetPending().then(b=>{var v;b&&((v=this.monitor)==null||v.restart())}).catch(()=>{});break}})(),this.pull(this.pullOptions())}_push(r){if(!this.callback)super.push(r);else{const s=typeof r=="function"?r:null;try{s?s():this.callback(r)}catch(l){this.stop(l)}}}notify(r,s){this.listeners.length>0&&this.listeners.forEach(l=>{l.done||l.push({type:r,data:s})})}resetPending(){return this.bind?this.resetPendingNoInfo():this.resetPendingWithInfo()}resetPendingNoInfo(){return this.pending.msgs=0,this.pending.bytes=0,this.pending.requests=0,this.pull(this.pullOptions()),Promise.resolve(!0)}async resetPendingWithInfo(){if(this.inBackOff)return!1;let r=0,s=0;const l=Ad([this.opts.expires]);let c=0;for(;;){if(this.done)return!1;if(this.consumer.api.nc.isClosed())return console.error("aborting resetPending - connection is closed"),!1;try{return await this.consumer.info(),this.inBackOff=!1,r=0,this.pending.msgs=0,this.pending.bytes=0,this.pending.requests=0,this.pull(this.pullOptions()),!0}catch(d){if(d.message==="stream not found"){if(s++,this.notify(Jn.StreamNotFound,s),!this.refilling||this.abortOnMissingResource)return this.stop(d),!1}else if(d.message==="consumer not found"){if(r++,this.notify(Jn.ConsumerNotFound,r),this.resetHandler)try{this.resetHandler()}catch{}if(!this.refilling||this.abortOnMissingResource)return this.stop(d),!1;if(this.forOrderedConsumer)return!1}else r=0,s=0;this.inBackOff=!0;const y=l.backoff(c),g=Ys(y);await Promise.race([g,this.consumer.api.nc.closed()]),g.cancel(),c++}}}pull(r){this.pending.bytes+=r.max_bytes??0,this.pending.msgs+=r.batch??0,this.pending.requests++;const s=this.consumer.api.nc;this._push(()=>{s.publish(`${this.consumer.api.prefix}.CONSUMER.MSG.NEXT.${this.consumer.stream}.${this.consumer.name}`,this.consumer.api.jc.encode(r),{reply:this.inbox}),this.notify($s.Next,r)})}pullOptions(){const r=this.opts.max_messages-this.pending.msgs,s=this.opts.max_bytes-this.pending.bytes,l=at(this.opts.idle_heartbeat),c=at(this.opts.expires);return{batch:r,max_bytes:s,idle_heartbeat:l,expires:c}}parseDiscard(r){const s={msgsLeft:0,bytesLeft:0},l=r==null?void 0:r.get(Ht.PendingMessagesHdr);l&&(s.msgsLeft=parseInt(l));const c=r==null?void 0:r.get(Ht.PendingBytesHdr);return c&&(s.bytesLeft=parseInt(c)),s}trackTimeout(r){this.timeout=r}close(){return this.stop(),this.iterClosed}closed(){return this.iterClosed}clearTimers(){var r,s;(r=this.monitor)==null||r.cancel(),this.monitor=null,(s=this.timeout)==null||s.cancel(),this.timeout=null}setCleanupHandler(r){this.cleanupHandler=r}stop(r){var s,l;this.done||((s=this.sub)==null||s.unsubscribe(),this.clearTimers(),(l=this.statusIterator)==null||l.stop(),this._push(()=>{super.stop(r),this.listeners.forEach(c=>{c.stop()})}))}parseOptions(r,s=!1){const l=r||{};if(l.max_messages=l.max_messages||0,l.max_bytes=l.max_bytes||0,l.max_messages!==0&&l.max_bytes!==0)throw new Error("only specify one of max_messages or max_bytes");if(l.max_messages===0&&(l.max_messages=100),l.expires=l.expires||3e4,l.expires<1e3)throw new Error("expires should be at least 1000ms");if(l.idle_heartbeat=l.idle_heartbeat||l.expires/2,l.idle_heartbeat=l.idle_heartbeat>3e4?3e4:l.idle_heartbeat,s){const c=Math.round(l.max_messages*.75)||1;l.threshold_messages=l.threshold_messages||c;const d=Math.round(l.max_bytes*.75)||1;l.threshold_bytes=l.threshold_bytes||d}return l}status(){const r=new kt;return this.listeners.push(r),Promise.resolve(r)}}class CE extends kt{constructor(){super();A(this,"src");A(this,"listeners");this.listeners=[]}setSource(r){this.src&&(this.src.resetHandler=void 0,this.src.setCleanupHandler(),this.src.stop()),this.src=r,this.src.setCleanupHandler(s=>{this.stop(s||void 0)}),(async()=>{const s=await this.src.status();for await(const l of s)this.notify(l.type,l.data)})().catch(()=>{})}notify(r,s){this.listeners.length>0&&this.listeners.forEach(l=>{l.done||l.push({type:r,data:s})})}stop(r){var s;this.done||((s=this.src)==null||s.stop(r),super.stop(r),this.listeners.forEach(l=>{l.stop()}))}close(){return this.stop(),this.iterClosed}closed(){return this.iterClosed}status(){const r=new kt;return this.listeners.push(r),Promise.resolve(r)}}class ud{constructor(t,r){A(this,"api");A(this,"_info");A(this,"stream");A(this,"name");this.api=t,this._info=r,this.stream=r.stream_name,this.name=r.name}consume(t={max_messages:100,expires:3e4}){return Promise.resolve(new Uh(this,t,!0))}fetch(t={max_messages:100,expires:3e4}){const r=new Uh(this,t,!1),s=Math.round(r.opts.expires*1.05),l=Gs(s);return r.closed().catch(()=>{}).finally(()=>{l.cancel()}),l.catch(()=>{r.close().catch()}),r.trackTimeout(l),Promise.resolve(r)}next(t={expires:3e4}){const r=ot(),s=t;s.max_messages=1;const l=new Uh(this,s,!1),c=Math.round(l.opts.expires*1.05);c>=6e4&&(async()=>{for await(const y of await l.status())if(y.type===Jn.HeartbeatsMissed&&y.data>=2){r.reject(new Error("consumer missed heartbeats"));break}})().catch(),(async()=>{for await(const y of l){r.resolve(y);break}})().catch(()=>{});const d=Gs(c);return l.closed().then(y=>{y?r.reject(y):r.resolve(null)}).catch(y=>{r.reject(y)}).finally(()=>{d.cancel()}),d.catch(y=>{r.resolve(null),l.close().catch()}),l.trackTimeout(d),r}delete(){const{stream_name:t,name:r}=this._info;return this.api.delete(t,r)}info(t=!1){if(t)return Promise.resolve(this._info);const{stream_name:r,name:s}=this._info;return this.api.info(r,s).then(l=>(this._info=l,this._info))}}class ME{constructor(t,r,s={}){A(this,"api");A(this,"consumerOpts");A(this,"consumer");A(this,"opts");A(this,"cursor");A(this,"stream");A(this,"namePrefix");A(this,"serial");A(this,"currentConsumer");A(this,"userCallback");A(this,"iter");A(this,"type");A(this,"startSeq");A(this,"maxInitialReset");this.api=t,this.stream=r,this.cursor={stream_seq:1,deliver_seq:0},this.namePrefix=fi.next(),typeof s.name_prefix=="string"&&(uu("name_prefix",s.name_prefix),this.namePrefix=s.name_prefix+this.namePrefix),this.serial=0,this.currentConsumer=null,this.userCallback=null,this.iter=null,this.type=Nn.Unset,this.consumerOpts=s,this.maxInitialReset=30,this.startSeq=this.consumerOpts.opt_start_seq||0,this.cursor.stream_seq=this.startSeq>0?this.startSeq-1:0}getConsumerOpts(t){this.serial++;const r=`${this.namePrefix}_${this.serial}`;t=t===0?1:t;const s={name:r,deliver_policy:bt.StartSequence,opt_start_seq:t,ack_policy:Tt.None,inactive_threshold:at(300*1e3),num_replicas:1};return this.consumerOpts.headers_only===!0&&(s.headers_only=!0),Array.isArray(this.consumerOpts.filterSubjects)&&(s.filter_subjects=this.consumerOpts.filterSubjects),typeof this.consumerOpts.filterSubjects=="string"&&(s.filter_subject=this.consumerOpts.filterSubjects),this.consumerOpts.replay_policy&&(s.replay_policy=this.consumerOpts.replay_policy),t===this.startSeq+1&&(s.deliver_policy=this.consumerOpts.deliver_policy||bt.StartSequence,(this.consumerOpts.deliver_policy===bt.LastPerSubject||this.consumerOpts.deliver_policy===bt.New||this.consumerOpts.deliver_policy===bt.Last)&&(delete s.opt_start_seq,s.deliver_policy=this.consumerOpts.deliver_policy),s.deliver_policy===bt.LastPerSubject&&typeof s.filter_subjects>"u"&&typeof s.filter_subject>"u"&&(s.filter_subject=">"),this.consumerOpts.opt_start_time&&(delete s.opt_start_seq,s.deliver_policy=bt.StartTime,s.opt_start_time=this.consumerOpts.opt_start_time),this.consumerOpts.inactive_threshold&&(s.inactive_threshold=at(this.consumerOpts.inactive_threshold))),s}async resetConsumer(t=0){var d,y,g,f,m;fi.next();const r=this.serial===0;(d=this.consumer)==null||d.delete().catch(()=>{}),t=t===0?1:t,this.cursor.deliver_seq=0;const s=this.getConsumerOpts(t);s.max_deliver=1,s.mem_storage=!0;const l=Ad([((y=this.opts)==null?void 0:y.expires)||3e4]);let c;for(let b=0;;b++)try{c=await this.api.add(this.stream,s),(g=this.iter)==null||g.notify(Jn.OrderedConsumerRecreated,c.name);break}catch(v){if(v.message==="stream not found"&&((f=this.iter)==null||f.notify(Jn.StreamNotFound,b),this.type===Nn.Fetch||this.opts.abort_on_missing_resource===!0))return(m=this.iter)==null||m.stop(v),Promise.reject(v);if(r&&b>=this.maxInitialReset)throw v;await Ys(l.backoff(b+1))}return c}internalHandler(t){return r=>{var l;if(this.serial!==t)return;const s=r.info.deliverySequence;if(s!==this.cursor.deliver_seq+1){this.notifyOrderedResetAndReset();return}this.cursor.deliver_seq=s,this.cursor.stream_seq=r.info.streamSequence,this.userCallback?this.userCallback(r):(l=this.iter)==null||l.push(r)}}async reset(t={max_messages:100,expires:3e4},r){var g,f;r=r||{};const s=r.fromFetch||!1,l=r.orderedReset||!1;if(this.type===Nn.Fetch&&l){(g=this.iter)==null||g.src.stop(),await((f=this.iter)==null?void 0:f.closed()),this.currentConsumer=null;return}(this.currentConsumer===null||l)&&(this.currentConsumer=await this.resetConsumer(this.cursor.stream_seq+1)),(this.iter===null||s)&&(this.iter=new CE),this.consumer=new ud(this.api,this.currentConsumer);const c=t;c.callback=this.internalHandler(this.serial);let d=null;this.type===Nn.Fetch&&s?d=await this.consumer.fetch(t):this.type===Nn.Consume&&(d=await this.consumer.consume(t));const y=d;y.forOrderedConsumer=!0,y.resetHandler=()=>{this.notifyOrderedResetAndReset()},this.iter.setSource(y)}notifyOrderedResetAndReset(){var t;(t=this.iter)==null||t.notify($s.Reset,""),this.reset(this.opts,{orderedReset:!0})}async consume(t={max_messages:100,expires:3e4}){if(t.bind)return Promise.reject(new Error("bind is not supported"));if(this.type===Nn.Fetch)return Promise.reject(new Error("ordered consumer initialized as fetch"));if(this.type===Nn.Consume)return Promise.reject(new Error("ordered consumer doesn't support concurrent consume"));const{callback:s}=t;return s&&(this.userCallback=s),this.type=Nn.Consume,this.opts=t,await this.reset(t),this.iter}async fetch(t={max_messages:100,expires:3e4}){var l;if(t.bind)return Promise.reject(new Error("bind is not supported"));if(this.type===Nn.Consume)return Promise.reject(new Error("ordered consumer already initialized as consume"));if(((l=this.iter)==null?void 0:l.done)===!1)return Promise.reject(new Error("ordered consumer doesn't support concurrent fetch"));const{callback:s}=t;return s&&(this.userCallback=s),this.type=Nn.Fetch,this.opts=t,await this.reset(t,{fromFetch:!0}),this.iter}async next(t={expires:3e4}){const r=t;if(r.bind)return Promise.reject(new Error("bind is not supported"));r.max_messages=1;const s=ot();return r.callback=c=>{this.userCallback=null,s.resolve(c)},(await this.fetch(r)).iterClosed.then(c=>{c&&s.reject(c),s.resolve(null)}).catch(c=>{s.reject(c)}),s}delete(){return this.currentConsumer?this.api.delete(this.stream,this.currentConsumer.name).then(t=>Promise.resolve(t)).catch(t=>Promise.reject(t)).finally(()=>{this.currentConsumer=null}):Promise.resolve(!1)}async info(t){return this.currentConsumer==null?(this.currentConsumer=await this.resetConsumer(this.startSeq),Promise.resolve(this.currentConsumer)):t&&this.currentConsumer?Promise.resolve(this.currentConsumer):this.api.info(this.stream,this.currentConsumer.name)}}class fd{constructor(t){A(this,"api");A(this,"notified");this.api=t,this.notified=!1}checkVersion(){const t=this.api.nc.features.get(Ie.JS_SIMPLIFICATION);return t.ok?Promise.resolve():Promise.reject(new Error(`consumers framework is only supported on servers ${t.min} or better`))}getPullConsumerFor(t){if(t.config.deliver_subject!==void 0)throw new Error("push consumer not supported");return new ud(this.api,t)}async get(t,r={}){return typeof r=="object"?this.ordered(t,r):(await this.checkVersion(),this.api.info(t,r).then(s=>s.config.deliver_subject!==void 0?Promise.reject(new Error("push consumer not supported")):new ud(this.api,s)).catch(s=>Promise.reject(s)))}async ordered(t,r){await this.checkVersion();const s=this.api;return new Cd(s.nc,s.opts).info(t).then(c=>Promise.resolve(new ME(this.api,t,r))).catch(c=>Promise.reject(c))}}class hu{constructor(t,r){A(this,"api");A(this,"_info");this.api=t,this._info=r}get name(){return this._info.config.name}alternates(){return this.info().then(t=>t.alternates?t.alternates:[])}async best(){if(await this.info(),this._info.alternates){const t=await this.api.info(this._info.alternates[0].name);return new hu(this.api,t)}else return this}info(t=!1,r){return t?Promise.resolve(this._info):this.api.info(this.name,r).then(s=>(this._info=s,this._info))}getConsumerFromInfo(t){return new fd(new Zc(this.api.nc,this.api.opts)).getPullConsumerFor(t)}getConsumer(t){return new fd(new Zc(this.api.nc,this.api.opts)).get(this.name,t)}getMessage(t){return this.api.getMessage(this.name,t)}deleteMessage(t,r){return this.api.deleteMessage(this.name,t,r)}}class Cd extends go{constructor(t,r){super(t,r)}checkStreamConfigVersions(t){const r=this.nc;if(t.metadata){const{min:l,ok:c}=r.features.get(Ie.JS_STREAM_CONSUMER_METADATA);if(!c)throw new Error(`stream 'metadata' requires server ${l}`)}if(t.first_seq){const{min:l,ok:c}=r.features.get(Ie.JS_STREAM_FIRST_SEQ);if(!c)throw new Error(`stream 'first_seq' requires server ${l}`)}if(t.subject_transform){const{min:l,ok:c}=r.features.get(Ie.JS_STREAM_SUBJECT_TRANSFORM);if(!c)throw new Error(`stream 'subject_transform' requires server ${l}`)}if(t.compression){const{min:l,ok:c}=r.features.get(Ie.JS_STREAM_COMPRESSION);if(!c)throw new Error(`stream 'compression' requires server ${l}`)}if(t.consumer_limits){const{min:l,ok:c}=r.features.get(Ie.JS_DEFAULT_CONSUMER_LIMITS);if(!c)throw new Error(`stream 'consumer_limits' requires server ${l}`)}function s(l,c){var y;if((((y=c==null?void 0:c.subject_transforms)==null?void 0:y.length)||0)>0){const{min:g,ok:f}=r.features.get(Ie.JS_STREAM_SOURCE_SUBJECT_TRANSFORM);if(!f)throw new Error(`${l} 'subject_transforms' requires server ${g}`)}}t.sources&&t.sources.forEach(l=>{s("stream sources",l)}),t.mirror&&s("stream mirror",t.mirror)}async add(t={}){var l;this.checkStreamConfigVersions(t),It(t.name),t.mirror=Kl(t.mirror),t.sources=(l=t.sources)==null?void 0:l.map(Kl);const s=await this._request(`${this.prefix}.STREAM.CREATE.${t.name}`,t);return this._fixInfo(s),s}async delete(t){return It(t),(await this._request(`${this.prefix}.STREAM.DELETE.${t}`)).success}async update(t,r={}){var y;if(typeof t=="object"){const g=t;t=g.name,r=g,console.trace("\x1B[33m >> streams.update(config: StreamConfig) api changed to streams.update(name: string, config: StreamUpdateConfig) - this shim will be removed - update your code. \x1B[0m")}this.checkStreamConfigVersions(r),It(t);const s=await this.info(t),l=Object.assign(s.config,r);l.mirror=Kl(l.mirror),l.sources=(y=l.sources)==null?void 0:y.map(Kl);const d=await this._request(`${this.prefix}.STREAM.UPDATE.${t}`,l);return this._fixInfo(d),d}async info(t,r){It(t);const s=`${this.prefix}.STREAM.INFO.${t}`;let c=await this._request(s,r),{total:d,limit:y}=c,g=c.state.subjects?Object.getOwnPropertyNames(c.state.subjects).length:1;if(d&&d>g){const f=[c],m=r||{};let b=0;for(;d>g;){b++,m.offset=y*b;const _=await this._request(s,m);d=_.total,f.push(_);const w=Object.getOwnPropertyNames(_.state.subjects).length;if(g+=w,w<y)break}let v={};for(let _=0;_<f.length;_++)c=f[_],c.state.subjects&&(v=Object.assign(v,c.state.subjects));c.offset=0,c.total=0,c.limit=0,c.state.subjects=v}return this._fixInfo(c),c}list(t=""){const r=t!=null&&t.length?{subject:t}:{},s=c=>{const d=c;return d.streams.forEach(y=>{this._fixInfo(y)}),d.streams},l=`${this.prefix}.STREAM.LIST`;return new ro(l,s,this,r)}_fixInfo(t){t.config.sealed=t.config.sealed||!1,t.config.deny_delete=t.config.deny_delete||!1,t.config.deny_purge=t.config.deny_purge||!1,t.config.allow_rollup_hdrs=t.config.allow_rollup_hdrs||!1}async purge(t,r){if(r){const{keep:l,seq:c}=r;if(typeof l=="number"&&typeof c=="number")throw new Error("can specify one of keep or seq")}return It(t),await this._request(`${this.prefix}.STREAM.PURGE.${t}`,r)}async deleteMessage(t,r,s=!0){It(t);const l={seq:r};return s||(l.no_erase=!0),(await this._request(`${this.prefix}.STREAM.MSG.DELETE.${t}`,l)).success}async getMessage(t,r){It(t);const l=await this._request(`${this.prefix}.STREAM.MSG.GET.${t}`,r);return new Cb(l)}find(t){return this.findStream(t)}listKvs(){const t=s=>{var g;const c=s.streams.filter(f=>f.config.name.startsWith(fn));c.forEach(f=>{this._fixInfo(f)});let d="";return c.length&&(d=((g=this.nc.info)==null?void 0:g.cluster)??""),c.map(f=>new kb(f,d))},r=`${this.prefix}.STREAM.LIST`;return new ro(r,t,this)}listObjectStores(){const t=s=>{const c=s.streams.filter(y=>y.config.name.startsWith(kd));return c.forEach(y=>{this._fixInfo(y)}),c.map(y=>new cd(y))},r=`${this.prefix}.STREAM.LIST`;return new ro(r,t,this)}names(t=""){const r=t!=null&&t.length?{subject:t}:{},s=c=>c.streams,l=`${this.prefix}.STREAM.NAMES`;return new ro(l,s,this,r)}async get(t){const r=await this.info(t);return Promise.resolve(new hu(this,r))}}class RE extends go{constructor(t,r){super(t,r)}async getMessage(t,r){It(t);let s=r;const{last_by_subj:l}=s;l&&(s=null);const c=s?this.jc.encode(s):mn,d=this.opts.apiPrefix||"$JS.API",y=l?`${d}.DIRECT.GET.${t}.${l}`:`${d}.DIRECT.GET.${t}`,g=await this.nc.request(y,c,{timeout:this.timeout}),f=zs(g);if(f)return Promise.reject(f);const m=new hd(g);return Promise.resolve(m)}async getBatch(t,r){It(t);const l=`${this.opts.apiPrefix||"$JS.API"}.DIRECT.GET.${t}`;if(!Array.isArray(r.multi_last)||r.multi_last.length===0)return Promise.reject("multi_last is required");const c=JSON.stringify(r,(g,f)=>g==="up_to_time"&&f instanceof Date?f.toISOString():f),d=new kt,y=await this.nc.requestMany(l,c,{strategy:$n.SentinelMsg});return(async()=>{var b,v,_;let g=!1,f=!1,m;for await(const w of y){if(!g){g=!0;const S=((b=w.headers)==null?void 0:b.code)||0;if(S!==0&&S<200||S>299){m=(v=w.headers)==null?void 0:v.description.toLowerCase();break}if(((_=w.headers)==null?void 0:_.get("Nats-Num-Pending"))===""){f=!0;break}}if(w.data.length===0)break;d.push(new hd(w))}d.push(()=>{if(f)throw new Error("batch direct get not supported by the server");if(m)throw new Error(`bad request: ${m}`);d.stop()})})(),Promise.resolve(d)}}class hd{constructor(t){A(this,"data");A(this,"header");if(!t.headers)throw new Error("headers expected");this.data=t.data,this.header=t.headers}get subject(){return this.header.last(Bs.Subject)}get seq(){const t=this.header.last(Bs.Sequence);return typeof t=="string"?parseInt(t):0}get time(){return new Date(Date.parse(this.timestamp))}get timestamp(){return this.header.last(Bs.TimeStamp)}get stream(){return this.header.last(Bs.Stream)}json(t){return Hn(t).decode(this.data)}string(){return hn.decode(this.data)}}A(hd,"jc");class DE extends go{constructor(r,s){super(r,s);A(this,"streams");A(this,"consumers");A(this,"direct");this.streams=new Cd(r,s),this.consumers=new Zc(r,s),this.direct=new RE(r,s)}async getAccountInfo(){return await this._request(`${this.prefix}.INFO`)}jetstream(){return this.nc.jetstream(this.getOptions())}advisories(){const r=new kt;return this.nc.subscribe("$JS.EVENT.ADVISORY.>",{callback:(s,l)=>{if(s)throw s;try{const c=this.parseJsResponse(l),d=c.type.split("."),y=d[d.length-1];r.push({kind:y,data:c})}catch(c){r.stop(c)}}}),r}}class Cb{constructor(t){A(this,"_header");A(this,"smr");this.smr=t}get subject(){return this.smr.message.subject}get seq(){return this.smr.message.seq}get timestamp(){return this.smr.message.time}get time(){return new Date(Date.parse(this.timestamp))}get data(){return this.smr.message.data?this._parse(this.smr.message.data):mn}get header(){if(!this._header)if(this.smr.message.hdrs){const t=this._parse(this.smr.message.hdrs);this._header=oi.decode(t)}else this._header=Er();return this._header}_parse(t){const r=atob(t),s=r.length,l=new Uint8Array(s);for(let c=0;c<s;c++)l[c]=r.charCodeAt(c);return l}json(t){return Hn(t).decode(this.data)}string(){return hn.decode(this.data)}}A(Cb,"jc");class qE{constructor(t){A(this,"api");this.api=t}get(t){return this.api.info(t).then(r=>new hu(this.api,r))}}class zh{constructor(t){A(this,"info");A(this,"hdrs");this.info=t}get name(){return this.info.name}get description(){return this.info.description??""}get headers(){return this.hdrs||(this.hdrs=oi.fromRecord(this.info.headers||{})),this.hdrs}get options(){return this.info.options}get bucket(){return this.info.bucket}get chunks(){return this.info.chunks}get deleted(){return this.info.deleted??!1}get digest(){return this.info.digest}get mtime(){return this.info.mtime}get nuid(){return this.info.nuid}get size(){return this.info.size}get revision(){return this.info.revision}get metadata(){return this.info.metadata||{}}isLink(){var t,r;return((t=this.info.options)==null?void 0:t.link)!==void 0&&((r=this.info.options)==null?void 0:r.link)!==null}}function xg(i){const t={name:i.name,description:i.description??"",options:i.options,metadata:i.metadata};if(i.headers){const r=i.headers;t.headers=r.toRecord()}return t}function BE(){return new ReadableStream({pull(i){i.enqueue(new Uint8Array(0)),i.close()}})}class lo{constructor(t,r,s){A(this,"jsm");A(this,"js");A(this,"stream");A(this,"name");this.name=t,this.jsm=r,this.js=s}_checkNotEmpty(t){return!t||t.length===0?{name:t,error:new Error("name cannot be empty")}:{name:t}}async info(t){const r=await this.rawInfo(t);return r?new zh(r):null}async list(){const t=[],r=await this.watch({ignoreDeletes:!0,includeHistory:!0});for await(const s of r){if(s===null)break;t.push(s)}return Promise.resolve(t)}async rawInfo(t){const{name:r,error:s}=this._checkNotEmpty(t);if(s)return Promise.reject(s);const l=this._metaSubject(r);try{const c=await this.jsm.streams.getMessage(this.stream,{last_by_subj:l}),y=Hn().decode(c.data);return y.revision=c.seq,y}catch(c){return c.code==="404"?null:Promise.reject(c)}}async _si(t){try{return await this.jsm.streams.info(this.stream,t)}catch(r){return r.code==="404"?null:Promise.reject(r)}}async seal(){let t=await this._si();return t===null?Promise.reject(new Error("object store not found")):(t.config.sealed=!0,t=await this.jsm.streams.update(this.stream,t.config),Promise.resolve(new cd(t)))}async status(t){const r=await this._si(t);return r===null?Promise.reject(new Error("object store not found")):Promise.resolve(new cd(r))}destroy(){return this.jsm.streams.delete(this.stream)}async _put(t,r,s){var ce;const l=this.js.getOptions();s=s||{timeout:l.timeout},s.timeout=s.timeout||l.timeout,s.previousRevision=s.previousRevision??void 0;const{timeout:c,previousRevision:d}=s,y=this.js.nc.info,g=(y==null?void 0:y.max_payload)||1024;t=t||{},t.options=t.options||{};let f=((ce=t.options)==null?void 0:ce.max_chunk_size)||128*1024;f=f>g?g:f,t.options.max_chunk_size=f;const m=await this.info(t.name),{name:b,error:v}=this._checkNotEmpty(t.name);if(v)return Promise.reject(v);const _=fi.next(),w=this._chunkSubject(_),S=this._metaSubject(b),M=Object.assign({bucket:this.name,nuid:_,size:0,chunks:0},xg(t)),B=ot(),U=[],re=new Vs;try{const C=r?r.getReader():null,P=cg.create();for(;;){const{done:ie,value:X}=C?await C.read():{done:!0,value:void 0};if(ie){if(re.size()>0){const J=re.drain();P.update(J),M.chunks++,M.size+=J.length,U.push(this.js.publish(w,J,{timeout:c}))}await Promise.all(U),U.length=0,M.mtime=new Date().toISOString();const L=Is.encode(P.digest());M.digest=`${bg}${L}`,M.deleted=!1;const G=Er();typeof d=="number"&&G.set(Xn.ExpectedLastSubjectSequenceHdr,`${d}`),G.set(Ht.RollupHdr,Ht.RollupValueSubject);const W=await this.js.publish(S,Hn().encode(M),{headers:G,timeout:c});if(M.revision=W.seq,m)try{await this.jsm.streams.purge(this.stream,{filter:`$O.${this.name}.C.${m.nuid}`})}catch{}B.resolve(new zh(M));break}if(X)for(re.fill(X);re.size()>f;){M.chunks++,M.size+=f;const L=re.drain(t.options.max_chunk_size);P.update(L),U.push(this.js.publish(w,L,{timeout:c}))}}}catch(C){await this.jsm.streams.purge(this.stream,{filter:w}),B.reject(C)}return B}putBlob(t,r,s){function l(c){return new ReadableStream({pull(d){d.enqueue(c),d.close()}})}return r===null&&(r=new Uint8Array(0)),this.put(t,l(r),s)}put(t,r,s){var l;return(l=t==null?void 0:t.options)!=null&&l.link?Promise.reject(new Error("link cannot be set when putting the object in bucket")):this._put(t,r,s)}async getBlob(t){async function r(c){const d=new Vs,y=c.getReader();for(;;){const{done:g,value:f}=await y.read();if(g)return d.drain();f&&f.length&&d.fill(f)}}const s=await this.get(t);if(s===null)return Promise.resolve(null);const l=await Promise.all([s.error,r(s.data)]);return l[0]?Promise.reject(l[0]):Promise.resolve(l[1])}async get(t){const r=await this.rawInfo(t);if(r===null||r.deleted)return Promise.resolve(null);if(r.options&&r.options.link){const b=r.options.link.name||"";if(b==="")throw new Error("link is a bucket");return(r.options.link.bucket!==this.name?await lo.create(this.js,r.options.link.bucket):this).get(b)}if(!r.digest.startsWith(bg))return Promise.reject(new Error(`unknown digest type: ${r.digest}`));const s=id(r.digest.substring(8));if(s===null)return Promise.reject(new Error(`unable to parse digest: ${r.digest}`));const l=ot(),c={info:new zh(r),error:l};if(r.size===0)return c.data=BE(),l.resolve(null),Promise.resolve(c);let d;const y=li();y.orderedConsumer();const g=cg.create(),f=`$O.${this.name}.C.${r.nuid}`,m=await this.js.subscribe(f,y);return(async()=>{for await(const b of m)b.data.length>0&&(g.update(b.data),d.enqueue(b.data)),b.info.pending===0&&(ES(s,g.digest())?d.close():d.error(new Error(`received a corrupt object, digests do not match received: ${r.digest} calculated ${s}`)),m.unsubscribe())})().then(()=>{l.resolve()}).catch(b=>{d.error(b),l.reject(b)}),c.data=new ReadableStream({start(b){d=b},cancel(){m.unsubscribe()}}),c}linkStore(t,r){if(!(r instanceof lo))return Promise.reject("bucket required");const s=r,{name:l,error:c}=this._checkNotEmpty(t);if(c)return Promise.reject(c);const d={name:l,options:{link:{bucket:s.name}}};return this._put(d,null)}async link(t,r){const{name:s,error:l}=this._checkNotEmpty(t);if(l)return Promise.reject(l);if(r.deleted)return Promise.reject(new Error("src object is deleted"));if(r.isLink())return Promise.reject(new Error("src object is a link"));const c=await this.rawInfo(t);if(c!==null&&!c.deleted)return Promise.reject(new Error("an object already exists with that name"));const d={bucket:r.bucket,name:r.name},y={name:s,bucket:r.bucket,options:{link:d}};await this.js.publish(this._metaSubject(t),JSON.stringify(y));const g=await this.info(t);return Promise.resolve(g)}async delete(t){const r=await this.rawInfo(t);if(r===null)return Promise.resolve({purged:0,success:!1});r.deleted=!0,r.size=0,r.chunks=0,r.digest="";const s=Hn(),l=Er();return l.set(Ht.RollupHdr,Ht.RollupValueSubject),await this.js.publish(this._metaSubject(r.name),s.encode(r),{headers:l}),this.jsm.streams.purge(this.stream,{filter:this._chunkSubject(r.nuid)})}async update(t,r={}){const s=await this.rawInfo(t);if(s===null)return Promise.reject(new Error("object not found"));if(s.deleted)return Promise.reject(new Error("cannot update meta for a deleted object"));r.name=r.name??s.name;const{name:l,error:c}=this._checkNotEmpty(r.name);if(c)return Promise.reject(c);if(t!==r.name){const g=await this.info(r.name);if(g&&!g.deleted)return Promise.reject(new Error("an object already exists with that name"))}r.name=l;const d=Object.assign({},s,xg(r)),y=await this.js.publish(this._metaSubject(d.name),JSON.stringify(d));return t!==r.name&&await this.jsm.streams.purge(this.stream,{filter:this._metaSubject(t)}),Promise.resolve(y)}async watch(t={}){t.includeHistory=t.includeHistory??!1,t.ignoreDeletes=t.ignoreDeletes??!1;let r=!1;const s=new kt,l=this._metaSubjectAll();try{await this.jsm.streams.getMessage(this.stream,{last_by_subj:l})}catch(g){g.code==="404"?(s.push(null),r=!0):s.stop(g)}const c=Hn(),d=li();d.orderedConsumer(),t.includeHistory?d.deliverLastPerSubject():(r=!0,d.deliverNew()),d.callback((g,f)=>{var m;if(g){s.stop(g);return}if(f!==null){const b=c.decode(f.data);b.deleted&&t.ignoreDeletes===!0||s.push(b),((m=f.info)==null?void 0:m.pending)===0&&!r&&(r=!0,s.push(null))}});const y=await this.js.subscribe(l,d);return s._data=y,s.iterClosed.then(()=>{y.unsubscribe()}),y.closed.then(()=>{s.stop()}).catch(g=>{s.stop(g)}),s}_chunkSubject(t){return`$O.${this.name}.C.${t}`}_metaSubject(t){return`$O.${this.name}.M.${Is.encode(t)}`}_metaSubjectAll(){return`$O.${this.name}.M.>`}async init(t={}){try{this.stream=OE(this.name)}catch(l){return Promise.reject(l)}const r=(t==null?void 0:t.ttl)||0;delete t.ttl;const s=Object.assign({max_age:r},t);s.name=this.stream,s.num_replicas=t.replicas??1,s.allow_direct=!0,s.allow_rollup_hdrs=!0,s.discard=uo.New,s.subjects=[`$O.${this.name}.C.>`,`$O.${this.name}.M.>`],t.placement&&(s.placement=t.placement),t.metadata&&(s.metadata=t.metadata),typeof t.compression=="boolean"&&(s.compression=t.compression?hi.S2:hi.None);try{await this.jsm.streams.info(s.name)}catch(l){l.message==="stream not found"&&await this.jsm.streams.add(s)}}static async create(t,r,s={}){const l=await t.jetstreamManager(),c=new lo(r,l,t);return await c.init(s),Promise.resolve(c)}}class LE{constructor(t){A(this,"js");this.js=t}kv(t,r={}){const s=this.js,{ok:l,min:c}=s.nc.features.get(Ie.JS_KV);return l?r.bindOnly?ho.bind(this.js,t,r):ho.create(this.js,t,r):Promise.reject(new Error(`kv is only supported on servers ${c} or better`))}os(t,r={}){var d;if(typeof((d=crypto==null?void 0:crypto.subtle)==null?void 0:d.digest)!="function")return Promise.reject(new Error("objectstore: unable to calculate hashes - crypto.subtle.digest with sha256 support is required"));const s=this.js,{ok:l,min:c}=s.nc.features.get(Ie.JS_OBJECTSTORE);return l?lo.create(this.js,t,r):Promise.reject(new Error(`objectstore is only supported on servers ${c} or better`))}}class Md extends go{constructor(r,s){super(r,s);A(this,"consumers");A(this,"streams");A(this,"consumerAPI");A(this,"streamAPI");this.consumerAPI=new Zc(r,s),this.streamAPI=new Cd(r,s),this.consumers=new fd(this.consumerAPI),this.streams=new qE(this.streamAPI)}jetstreamManager(r){r===void 0&&(r=this.opts.checkAPI);const s=Object.assign({},this.opts,{checkAPI:r});return this.nc.jetstreamManager(s)}get apiPrefix(){return this.prefix}get views(){return new LE(this)}async publish(r,s=mn,l){l=l||{},l.expect=l.expect||{};const c=(l==null?void 0:l.headers)||Er();l&&(l.msgID&&c.set(Xn.MsgIdHdr,l.msgID),l.expect.lastMsgID&&c.set(Xn.ExpectedLastMsgIdHdr,l.expect.lastMsgID),l.expect.streamName&&c.set(Xn.ExpectedStreamHdr,l.expect.streamName),typeof l.expect.lastSequence=="number"&&c.set(Xn.ExpectedLastSeqHdr,`${l.expect.lastSequence}`),typeof l.expect.lastSubjectSequence=="number"&&c.set(Xn.ExpectedLastSubjectSequenceHdr,`${l.expect.lastSubjectSequence}`));const d=l.timeout||this.timeout,y={};d&&(y.timeout=d),l&&(y.headers=c);let{retries:g,retry_delay:f}=l;g=g||1,f=f||250;let m;for(let v=0;v<g;v++)try{m=await this.nc.request(r,s,y);break}catch(_){if(_.code==="503"&&v+1<g)await Ys(f);else throw _}const b=this.parseJsResponse(m);if(b.stream==="")throw me.errorForCode(le.JetStreamInvalidAck);return b.duplicate=b.duplicate?b.duplicate:!1,b}async pull(r,s,l=0){It(r),Us(s);let c=this.timeout;l>c&&(c=l),l=l<0?0:at(l);const d={batch:1,no_wait:l===0,expires:l},y=await this.nc.request(`${this.prefix}.CONSUMER.MSG.NEXT.${r}.${s}`,this.jc.encode(d),{noMux:!0,timeout:c}),g=zs(y);if(g)throw g;return mo(y,this.timeout)}fetch(r,s,l={}){It(r),Us(s);let c=null;const d=(l.max_bytes??0)>0;let y=0;const g=d?l.max_bytes:0;let f=null;const m={};if(m.batch=l.batch||1,g){const U=this.nc.features.get(Ie.JS_PULL_MAX_BYTES);if(!U.ok)throw new Error(`max_bytes is only supported on servers ${U.min} or better`);m.max_bytes=g}m.no_wait=l.no_wait||!1,m.no_wait&&m.expires&&(m.expires=0);const b=l.expires||0;if(b&&(m.expires=at(b)),b===0&&m.no_wait===!1)throw new Error("expires or no_wait is required");const v=l.idle_heartbeat||0;v&&(m.idle_heartbeat=at(v),l.delay_heartbeat===!0&&(m.idle_heartbeat=at(v*4)));const _=new kt,w=m.batch;let S=0;_.protocolFilterFn=(U,re=!1)=>td(U.msg)?(f==null||f.work(),!1):!0,_.dispatchedFn=U=>{if(U){if(d&&(y+=U.data.length),S++,c&&U.info.pending===0)return;(_.getPending()===1&&U.info.pending===0||w===S||g>0&&y>=g)&&_.stop()}};const M=Sr(this.nc.options.inboxPrefix),B=this.nc.subscribe(M,{max:l.batch,callback:(U,re)=>{U===null&&(U=zs(re)),U!==null?(c&&(c.cancel(),c=null),sS(U)?_.stop(Rb(U)===null?void 0:U):_.stop(U)):(f==null||f.work(),_.received++,_.push(mo(re,this.timeout)))}});return b&&(c=Gs(b),c.catch(()=>{B.isClosed()||(B.drain().catch(()=>{}),c=null),f&&f.cancel()})),(async()=>{try{v&&(f=new Nd(v,U=>(_.push(()=>{_.err=new me(`${kn.IdleHeartbeatMissed}: ${U}`,le.JetStreamIdleHeartBeat)}),!0)))}catch{}await B.closed,c!==null&&(c.cancel(),c=null),f&&f.cancel(),_.stop()})().catch(),this.nc.publish(`${this.prefix}.CONSUMER.MSG.NEXT.${r}.${s}`,this.jc.encode(m),{reply:M}),_}async pullSubscribe(r,s=li()){const l=await this._processOptions(r,s);if(l.ordered)throw new Error("pull subscribers cannot be be ordered");if(l.config.deliver_subject)throw new Error("consumer info specifies deliver_subject - pull consumers cannot have deliver_subject set");const c=l.config.ack_policy;if(c===Tt.None||c===Tt.All)throw new Error("ack policy for pull consumers must be explicit");const d=this._buildTypedSubscriptionOpts(l),y=new IE(this,l.deliver,d);y.info=l;try{await this._maybeCreateConsumer(l)}catch(g){throw y.unsubscribe(),g}return y}async subscribe(r,s=li()){const l=await this._processOptions(r,s);if(!l.isBind&&!l.config.deliver_subject)throw new Error("push consumer requires deliver_subject");const c=this._buildTypedSubscriptionOpts(l),d=new Mb(this,l.deliver,c);d.info=l;try{await this._maybeCreateConsumer(l)}catch(y){throw d.unsubscribe(),y}return d._maybeSetupHbMonitoring(),d}async _processOptions(r,s=li()){const l=sg(s)?s.getOpts():s;if(l.isBind=sg(s)?s.isBind:!1,l.flow_control={heartbeat_count:0,fc_count:0,consumer_restarts:0},l.ordered){if(l.ordered_consumer_sequence={stream_seq:0,delivery_seq:0},l.config.ack_policy!==Tt.NotSet&&l.config.ack_policy!==Tt.None)throw new me("ordered consumer: ack_policy can only be set to 'none'",le.ApiError);if(l.config.durable_name&&l.config.durable_name.length>0)throw new me("ordered consumer: durable_name cannot be set",le.ApiError);if(l.config.deliver_subject&&l.config.deliver_subject.length>0)throw new me("ordered consumer: deliver_subject cannot be set",le.ApiError);if(l.config.max_deliver!==void 0&&l.config.max_deliver>1)throw new me("ordered consumer: max_deliver cannot be set",le.ApiError);if(l.config.deliver_group&&l.config.deliver_group.length>0)throw new me("ordered consumer: deliver_group cannot be set",le.ApiError);l.config.deliver_subject=Sr(this.nc.options.inboxPrefix),l.config.ack_policy=Tt.None,l.config.max_deliver=1,l.config.flow_control=!0,l.config.idle_heartbeat=l.config.idle_heartbeat||at(5e3),l.config.ack_wait=at(1320*60*1e3),l.config.mem_storage=!0,l.config.num_replicas=1}if(l.config.ack_policy===Tt.NotSet&&(l.config.ack_policy=Tt.All),l.api=this,l.config=l.config||{},l.stream=l.stream?l.stream:await this.findStream(r),l.attached=!1,l.config.durable_name)try{const c=await this.consumerAPI.info(l.stream,l.config.durable_name);if(c){if(c.config.filter_subject&&c.config.filter_subject!==r)throw new Error("subject does not match consumer");const d=l.config.deliver_group??"";if(d===""&&c.push_bound===!0)throw new Error("duplicate subscription");const y=c.config.deliver_group??"";if(d!==y)throw y===""?new Error("durable requires no queue group"):new Error(`durable requires queue group '${y}'`);l.last=c,l.config=c.config,l.attached=!0,l.config.durable_name||(l.name=c.name)}}catch(c){if(c.code!=="404")throw c}return!l.attached&&l.config.filter_subject===void 0&&l.config.filter_subjects===void 0&&(l.config.filter_subject=r),l.deliver=l.config.deliver_subject||Sr(this.nc.options.inboxPrefix),l}_buildTypedSubscriptionOpts(r){const s={};return s.adapter=$E(r.callbackFn===void 0,this.timeout),s.ingestionFilterFn=Md.ingestionFn(r.ordered),s.protocolFilterFn=(l,c=!1)=>{const d=l;return ed(d.msg)?(c||d.msg.respond(),!1):!0},!r.mack&&r.config.ack_policy!==Tt.None&&(s.dispatchedFn=FE),r.callbackFn&&(s.callback=r.callbackFn),s.max=r.max||0,s.queue=r.queue,s}async _maybeCreateConsumer(r){if(r.attached)return;if(r.isBind)throw new Error(`unable to bind - durable consumer ${r.config.durable_name} doesn't exist in ${r.stream}`);r.config=Object.assign({deliver_policy:bt.All,ack_policy:Tt.Explicit,ack_wait:at(30*1e3),replay_policy:Fs.Instant},r.config);const s=await this.consumerAPI.add(r.stream,r.config);if(Array.isArray(r.config.filter_subjects&&!Array.isArray(s.config.filter_subjects)))throw new Error("jetstream server doesn't support consumers with multiple filter subjects");r.name=s.name,r.config=s.config,r.last=s}static ingestionFn(r){return(s,l)=>{var g;const c=l;if(!s)return{ingest:!1,protocol:!1};const d=s;if(zs(d.msg)||(g=c.monitor)==null||g.work(),td(d.msg)){const f=r?c._checkHbOrderConsumer(d.msg):!0;return r||c.info.flow_control.heartbeat_count++,{ingest:f,protocol:!0}}else if(ed(d.msg))return c.info.flow_control.fc_count++,{ingest:!0,protocol:!0};return{ingest:r?c._checkOrderedConsumer(s):!0,protocol:!1}}}}class Rd{constructor(t){A(this,"options");A(this,"protocol");A(this,"draining");A(this,"listeners");A(this,"_services");this.draining=!1,this.options=aE(t),this.listeners=[]}static connect(t={}){return new Promise((r,s)=>{const l=new Rd(t);eu.connect(l.options,l).then(c=>{l.protocol=c,(async function(){for await(const d of c.status())l.listeners.forEach(y=>{y.push(d)})})(),r(l)}).catch(c=>{s(c)})})}closed(){return this.protocol.closed}async close(){await this.protocol.close()}_check(t,r,s){if(this.isClosed())throw me.errorForCode(le.ConnectionClosed);if(r&&this.isDraining()||s&&this.protocol.noMorePublishing)throw me.errorForCode(le.ConnectionDraining);if(t=t||"",t.length===0)throw me.errorForCode(le.BadSubject)}publish(t,r,s){this._check(t,!1,!0),this.protocol.publish(t,r,s)}publishMessage(t){return this.publish(t.subject,t.data,{reply:t.reply,headers:t.headers})}respondMessage(t){return t.reply?(this.publish(t.reply,t.data,{reply:t.reply,headers:t.headers}),!0):!1}subscribe(t,r={}){this._check(t,!0,!1);const s=new Tb(this.protocol,t,r);return this.protocol.subscribe(s),s}_resub(t,r,s){this._check(r,!0,!1);const l=t;l.max=s,s&&(l.max=s+l.received),this.protocol.resub(l,r)}requestMany(t,r=mn,s={maxWait:1e3,maxMessages:-1}){const l=!this.protocol.options.noAsyncTraces;try{this._check(t,!0,!0)}catch(g){return Promise.reject(g)}if(s.strategy=s.strategy||$n.Timer,s.maxWait=s.maxWait||1e3,s.maxWait<1)return Promise.reject(new me("timeout",le.InvalidOption));const c=new kt;function d(g){c.push(()=>{c.stop(g)})}function y(g,f){g||f===null?d(g===null?void 0:g):c.push(f)}if(s.noMux){const g=l?new Error().stack:null;let f=typeof s.maxMessages=="number"&&s.maxMessages>0?s.maxMessages:-1;const m=this.subscribe(Sr(this.options.inboxPrefix),{callback:(w,S)=>{var M,B;if(((M=S==null?void 0:S.data)==null?void 0:M.length)===0&&((B=S==null?void 0:S.headers)==null?void 0:B.status)===le.NoResponders&&(w=me.errorForCode(le.NoResponders)),w){g&&(w.stack+=`
|
|
48
48
|
|
|
49
|
-
${
|
|
49
|
+
${g}`),b(w);return}y(null,S),s.strategy===$n.Count&&(f--,f===0&&b()),s.strategy===$n.JitterTimer&&(_(),v=setTimeout(()=>{b()},300)),s.strategy===$n.SentinelMsg&&S&&S.data.length===0&&b()}});m.requestSubject=t,m.closed.then(()=>{d()}).catch(w=>{c.stop(w)});const b=w=>{w&&c.push(()=>{throw w}),_(),m.drain().then(()=>{d()}).catch(S=>{d()})};c.iterClosed.then(()=>{_(),m==null||m.unsubscribe()}).catch(w=>{_(),m==null||m.unsubscribe()});try{this.publish(t,r,{reply:m.getSubject()})}catch(w){b(w)}let v=setTimeout(()=>{b()},s.maxWait);const _=()=>{v&&clearTimeout(v)}}else{const g=s;g.callback=y,c.iterClosed.then(()=>{f.cancel()}).catch(m=>{f.cancel(m)});const f=new OS(this.protocol.muxSubscriptions,t,g);this.protocol.request(f);try{this.publish(t,r,{reply:`${this.protocol.muxSubscriptions.baseInbox}${f.token}`,headers:s.headers})}catch(m){f.cancel(m)}}return Promise.resolve(c)}request(t,r,s={timeout:1e3,noMux:!1}){try{this._check(t,!0,!0)}catch(c){return Promise.reject(c)}const l=!this.protocol.options.noAsyncTraces;if(s.timeout=s.timeout||1e3,s.timeout<1)return Promise.reject(new me("timeout",le.InvalidOption));if(!s.noMux&&s.reply)return Promise.reject(new me("reply can only be used with noMux",le.InvalidOption));if(s.noMux){const c=s.reply?s.reply:Sr(this.options.inboxPrefix),d=ot(),y=l?new Error:null,g=this.subscribe(c,{max:1,timeout:s.timeout,callback:(f,m)=>{f?(y&&f.code!==le.Timeout&&(f.stack+=`
|
|
50
50
|
|
|
51
|
-
${
|
|
51
|
+
${y.stack}`),g.unsubscribe(),d.reject(f)):(f=vb(m),f?(y&&(f.stack+=`
|
|
52
52
|
|
|
53
|
-
${g.stack}`),d.reject(f)):d.resolve(m))}});return y.requestSubject=t,this.protocol.publish(t,r,{reply:c,headers:s.headers}),d}else{const c=new _b(this.protocol.muxSubscriptions,t,s,l);this.protocol.request(c);try{this.publish(t,r,{reply:`${this.protocol.muxSubscriptions.baseInbox}${c.token}`,headers:s.headers})}catch(g){c.cancel(g)}const d=Promise.race([c.timer,c.deferred]);return d.catch(()=>{c.cancel()}),d}}flush(){return this.isClosed()?Promise.reject(me.errorForCode(le.ConnectionClosed)):this.protocol.flush()}drain(){return this.isClosed()?Promise.reject(me.errorForCode(le.ConnectionClosed)):this.isDraining()?Promise.reject(me.errorForCode(le.ConnectionDraining)):(this.draining=!0,this.protocol.drain())}isClosed(){return this.protocol.isClosed()}isDraining(){return this.draining}getServer(){const t=this.protocol.getServer();return t?t.listen:""}status(){const t=new kt;return t.iterClosed.then(()=>{const r=this.listeners.indexOf(t);this.listeners.splice(r,1)}),this.listeners.push(t),t}get info(){return this.protocol.isClosed()?void 0:this.protocol.info}async context(){return(await this.request("$SYS.REQ.USER.INFO")).json((r,s)=>r==="time"?new Date(Date.parse(s)):s)}stats(){return{inBytes:this.protocol.inBytes,outBytes:this.protocol.outBytes,inMsgs:this.protocol.inMsgs,outMsgs:this.protocol.outMsgs}}async jetstreamManager(t={}){const r=new qE(this,t);if(t.checkAPI!==!1)try{await r.getAccountInfo()}catch(s){const l=s;throw l.code===le.NoResponders&&(l.code=le.JetStreamNotEnabled),l}return r}jetstream(t={}){return new Md(this,t)}getServerVersion(){const t=this.info;return t?$i(t.version):void 0}async rtt(){if(!this.protocol._closed&&!this.protocol.connected)throw me.errorForCode(le.Disconnect);const t=Date.now();return await this.flush(),Date.now()-t}get features(){return this.protocol.features}get services(){return this._services||(this._services=new UE(this)),this._services}reconnect(){return this.isClosed()?Promise.reject(me.errorForCode(le.ConnectionClosed)):this.isDraining()?Promise.reject(me.errorForCode(le.ConnectionDraining)):this.protocol.reconnect()}}class UE{constructor(t){A(this,"nc");this.nc=t}add(t){try{return new bo(this.nc,t).start()}catch(r){return Promise.reject(r)}}client(t,r){return new bE(this.nc,t,r)}}class zE{constructor(t,r,s){A(this,"bucket");A(this,"sm");A(this,"prefixLen");this.bucket=t,this.prefixLen=r,this.sm=s}get key(){return this.sm.subject.substring(this.prefixLen)}get value(){return this.sm.data}get delta(){return 0}get created(){return this.sm.time}get revision(){return this.sm.seq}get operation(){return this.sm.header.get(tu)||"PUT"}get length(){const t=this.sm.header.get(Ht.MessageSizeHdr)||"";return t!==""?parseInt(t,10):this.sm.data.length}json(){return this.sm.json()}string(){return this.sm.string()}}class IE{constructor(t,r,s){A(this,"bucket");A(this,"key");A(this,"sm");this.bucket=t,this.key=r,this.sm=s}get value(){return this.sm.data}get created(){return new Date(jd(this.sm.info.timestampNanos))}get revision(){return this.sm.seq}get operation(){var t;return((t=this.sm.headers)==null?void 0:t.get(tu))||"PUT"}get delta(){return this.sm.info.pending}get length(){var r;const t=((r=this.sm.headers)==null?void 0:r.get(Ht.MessageSizeHdr))||"";return t!==""?parseInt(t,10):this.sm.data.length}json(){return this.sm.json()}string(){return this.sm.string()}}class Cb extends kS{constructor(r,s,l){super(r.nc,s,l);A(this,"js");A(this,"monitor");this.js=r,this.monitor=null,this.sub.closed.then(()=>{this.monitor&&this.monitor.cancel()})}set info(r){this.sub.info=r}get info(){return this.sub.info}_resetOrderedConsumer(r){if(this.info===null||this.sub.isClosed())return;const s=Sr(this.js.nc.options.inboxPrefix);this.js.nc._resub(this.sub,s);const c=this.info;c.config.name=fi.next(),c.ordered_consumer_sequence.delivery_seq=0,c.flow_control.heartbeat_count=0,c.flow_control.fc_count=0,c.flow_control.consumer_restarts++,c.deliver=s,c.config.deliver_subject=s,c.config.deliver_policy=bt.StartSequence,c.config.opt_start_seq=r;const d={};d.stream_name=this.info.stream,d.config=c.config;const g=`${c.api.prefix}.CONSUMER.CREATE.${c.stream}`;this.js._request(g,d,{retries:-1}).then(y=>{const f=y,m=this.sub.info;m.last=f,this.info.config=f.config,this.info.name=f.name}).catch(y=>{const f=new me(`unable to recreate ordered consumer ${c.stream} at seq ${r}`,le.RequestError,y);this.sub.callback(f,{})})}_maybeSetupHbMonitoring(){var s,l;const r=((l=(s=this.info)==null?void 0:s.config)==null?void 0:l.idle_heartbeat)||0;r&&this._setupHbMonitoring(jd(r))}_setupHbMonitoring(r,s=0){const l={cancelAfter:0,maxOut:2};s&&(l.cancelAfter=s);const c=this.sub,d=g=>{var m,b,v,_;const y=uS(409,`${kn.IdleHeartbeatMissed}: ${g}`,this.sub.subject);if(!((m=this.info)==null?void 0:m.ordered))this.sub.callback(null,y);else{if(!this.js.nc.protocol.connected)return!1;const w=((v=(b=this.info)==null?void 0:b.ordered_consumer_sequence)==null?void 0:v.stream_seq)||0;return this._resetOrderedConsumer(w+1),(_=this.monitor)==null||_.restart(),!1}return!c.noIterator};this.monitor=new Td(r,d,l)}_checkHbOrderConsumer(r){const s=r.headers.get(Ht.ConsumerStalledHdr);s!==""&&this.js.nc.publish(s);const l=parseInt(r.headers.get(Ht.LastConsumerSeqHdr),10),c=this.info.ordered_consumer_sequence;return this.info.flow_control.heartbeat_count++,l!==c.delivery_seq&&this._resetOrderedConsumer(c.stream_seq+1),!1}_checkOrderedConsumer(r){const s=this.info.ordered_consumer_sequence,l=r.info.streamSequence,c=r.info.deliverySequence;return c!=s.delivery_seq+1?(this._resetOrderedConsumer(s.stream_seq+1),!1):(s.delivery_seq=c,s.stream_seq=l,!0)}async destroy(){this.isClosed()||await this.drain();const r=this.sub.info,s=r.config.durable_name||r.name,l=`${r.api.prefix}.CONSUMER.DELETE.${r.stream}.${s}`;await r.api._request(l)}async consumerInfo(){const r=this.sub.info,s=r.config.durable_name||r.name,l=`${r.api.prefix}.CONSUMER.INFO.${r.stream}.${s}`,c=await r.api._request(l);return r.last=c,c}}class $E extends Cb{constructor(t,r,s){super(t,r,s)}pull(t={batch:1}){const{stream:r,config:s,name:l}=this.sub.info,c=s.durable_name??l,d={};if(d.batch=t.batch||1,d.no_wait=t.no_wait||!1,(t.max_bytes??0)>0){const f=this.js.nc.features.get(Ie.JS_PULL_MAX_BYTES);if(!f.ok)throw new Error(`max_bytes is only supported on servers ${f.min} or better`);d.max_bytes=t.max_bytes}let g=0;t.expires&&t.expires>0&&(g=t.expires,d.expires=at(g));let y=0;if(t.idle_heartbeat&&t.idle_heartbeat>0&&(y=t.idle_heartbeat,d.idle_heartbeat=at(y)),y&&g===0)throw new Error("idle_heartbeat requires expires");if(y>g)throw new Error("expires must be greater than idle_heartbeat");if(this.info){this.monitor&&this.monitor.cancel(),g&&y&&(this.monitor?this.monitor._change(y,g):this._setupHbMonitoring(y,g));const f=this.info.api,m=`${f.prefix}.CONSUMER.MSG.NEXT.${r}.${c}`,b=this.sub.subject;f.nc.publish(m,f.jc.encode(d),{reply:b})}}}function HE(i,t){return i?FE(t):GE(t)}function GE(i){return(t,r)=>t?[t,null]:(t=zs(r),t?[t,null]:[null,mo(r,i)])}function FE(i){return(t,r)=>{if(t)return[t,null];const s=zs(r);return s!==null?[Mb(s),null]:[null,mo(r,i)]}}function Mb(i){if(i!==null)switch(i.code){case le.JetStream404NoMessages:case le.JetStream408RequestTimeout:return null;case le.JetStream409:return fS(i)?i:null;default:return i}return null}function VE(i){i&&i.ack()}function YE(i){const t=i.split(".");if(t.length===9&&t.splice(2,0,"_",""),t.length<11||t[0]!=="$JS"||t[1]!=="ACK")throw new Error("not js message");const r={};return r.domain=t[2]==="_"?"":t[2],r.account_hash=t[3],r.stream=t[4],r.consumer=t[5],r.deliveryCount=parseInt(t[6],10),r.redeliveryCount=r.deliveryCount,r.redelivered=r.deliveryCount>1,r.streamSequence=parseInt(t[7],10),r.deliverySequence=parseInt(t[8],10),r.timestampNanos=parseInt(t[9],10),r.pending=parseInt(t[10],10),r}class KE{constructor(t,r){A(this,"msg");A(this,"di");A(this,"didAck");A(this,"timeout");this.msg=t,this.didAck=!1,this.timeout=r}get subject(){return this.msg.subject}get sid(){return this.msg.sid}get data(){return this.msg.data}get headers(){return this.msg.headers}get info(){return this.di||(this.di=YE(this.reply)),this.di}get redelivered(){return this.info.deliveryCount>1}get reply(){return this.msg.reply||""}get seq(){return this.info.streamSequence}doAck(t){this.didAck||(this.didAck=!this.isWIP(t),this.msg.respond(t))}isWIP(t){return t.length===4&&t[0]===Va[0]&&t[1]===Va[1]&&t[2]===Va[2]&&t[3]===Va[3]}async ackAck(t){var s;t=t||{},t.timeout=t.timeout||this.timeout;const r=ot();if(this.didAck)r.resolve(!1);else if(this.didAck=!0,this.msg.reply){const c=this.msg.publisher,d=!((s=c.options)!=null&&s.noAsyncTraces),g=new _b(c.muxSubscriptions,this.msg.reply,{timeout:t.timeout},d);c.request(g);try{c.publish(this.msg.reply,vy,{reply:`${c.muxSubscriptions.baseInbox}${g.token}`})}catch(y){g.cancel(y)}try{await Promise.race([g.timer,g.deferred]),r.resolve(!0)}catch(y){g.cancel(y),r.reject(y)}}else r.resolve(!1);return r}ack(){this.doAck(vy)}nak(t){let r=NE;t&&(r=Wh().encode(`-NAK ${JSON.stringify({delay:at(t)})}`)),this.doAck(r)}working(){this.doAck(Va)}next(t,r={batch:1}){const s={};s.batch=r.batch||1,s.no_wait=r.no_wait||!1,r.expires&&r.expires>0&&(s.expires=at(r.expires));const l=Hn().encode(s),c=Vs.concat(TE,CE,l),d=t?{reply:t}:void 0;this.msg.respond(c,d)}term(t=""){let r=kE;(t==null?void 0:t.length)>0&&(r=Wh().encode(`+TERM ${t}`)),this.doAck(r)}json(){return this.msg.json()}string(){return this.msg.string()}}const XE="1.30.3",JE="nats.ws";class QE{constructor(){A(this,"version");A(this,"lang");A(this,"closeError");A(this,"connected");A(this,"done");A(this,"socket");A(this,"options");A(this,"socketClosed");A(this,"encrypted");A(this,"peeked");A(this,"yields");A(this,"signal");A(this,"closedNotification");this.version=XE,this.lang=JE,this.connected=!1,this.done=!1,this.socketClosed=!1,this.encrypted=!1,this.peeked=!1,this.yields=[],this.signal=ot(),this.closedNotification=ot()}async connect(t,r){const s=ot();if(r.tls)return s.reject(new me("tls",le.InvalidOption)),s;this.options=r;const l=t.src;if(r.wsFactory){const{socket:c,encrypted:d}=await r.wsFactory(t.src,r);this.socket=c,this.encrypted=d}else this.encrypted=l.indexOf("wss://")===0,this.socket=new WebSocket(l);return this.socket.binaryType="arraybuffer",this.socket.onopen=()=>{this.isDiscarded()},this.socket.onmessage=c=>{if(this.isDiscarded())return;if(this.yields.push(new Uint8Array(c.data)),this.peeked){this.signal.resolve();return}const d=Vs.concat(...this.yields),g=BS(d);if(g!==""){const y=uE.exec(g);if(!y){r.debug&&console.error("!!!",Fl(d)),s.reject(new Error("unexpected response from server"));return}try{const f=JSON.parse(y[1]);lE(f,this.options),this.peeked=!0,this.connected=!0,this.signal.resolve(),s.resolve()}catch(f){s.reject(f);return}}},this.socket.onclose=c=>{if(this.isDiscarded())return;this.socketClosed=!0;let d;this.done||(c.wasClean||(d=new Error(c.reason)),this._closed(d))},this.socket.onerror=c=>{if(this.isDiscarded())return;const d=c,g=new me(d.message,le.Unknown,new Error(d.error));s.reject(g)},s}disconnect(){this._closed(void 0,!0)}async _closed(t,r=!0){if(!this.isDiscarded()&&this.connected&&!this.done){if(this.closeError=t,!t)for(;!this.socketClosed&&this.socket.bufferedAmount>0;)await Ys(100);this.done=!0;try{this.socket.close(t?1002:1e3,t?t.message:void 0)}catch{}r&&this.closedNotification.resolve(t)}}get isClosed(){return this.done}[Symbol.asyncIterator](){return this.iterate()}async*iterate(){for(;;){if(this.isDiscarded())return;this.yields.length===0&&await this.signal;const t=this.yields;this.yields=[];for(let r=0;r<t.length;r++)this.options.debug&&console.info(`> ${Fl(t[r])}`),yield t[r];if(this.done)break;this.yields.length===0&&(t.length=0,this.yields=t,this.signal=ot())}}isEncrypted(){return this.connected&&this.encrypted}send(t){if(!this.isDiscarded())try{this.socket.send(t.buffer),this.options.debug&&console.info(`< ${Fl(t)}`);return}catch(r){this.options.debug&&console.error(`!!! ${Fl(t)}: ${r}`)}}close(t){return this._closed(t,!1)}closed(){return this.closedNotification}isDiscarded(){return this.done?(this.discard(),!0):!1}discard(){var t;this.done=!0;try{(t=this.socket)==null||t.close()}catch{}}}function ZE(i,t){/^(.*:\/\/)(.*)/.test(i)||(typeof t=="boolean"?i=`${t===!0?"https":"http"}://${i}`:i=`https://${i}`);let s=new URL(i);const l=s.protocol.toLowerCase();l==="ws:"&&(t=!1),l==="wss:"&&(t=!0),l!=="https:"&&l!=="http"&&(i=i.replace(/^(.*:\/\/)(.*)/gm,"$2"),s=new URL(`http://${i}`));let c,d;const g=s.hostname,y=s.pathname,f=s.search||"";switch(l){case"http:":case"ws:":case"nats:":d=s.port||"80",c="ws:";break;case"https:":case"wss:":case"tls:":d=s.port||"443",c="wss:";break;default:d=s.port||t===!0?"443":"80",c=t===!0?"wss:":"ws:";break}return`${c}//${g}:${d}${y}${f}`}function WE(i={}){return CS({defaultPort:443,urlParseFn:ZE,factory:()=>new QE}),Rd.connect(i)}const e2=null,t2=null,Rb="lt.events";function Db(i,t){const r=i.split("."),s=t.split(".");for(let l=0;l<s.length;l++){const c=s[l];if(c===">")return!0;if(l>=r.length||c!=="*"&&c!==r[l])return!1}return r.length===s.length}const Ks=j.createContext({connected:!1,subscribe:()=>()=>{}});function n2(){const{connected:i}=j.useContext(Ks);return{connected:i}}function r2(i,t){const{subscribe:r}=j.useContext(Ks),s=j.useRef(t);s.current=t,j.useEffect(()=>r(i,c=>s.current(c)),[r,i])}function Dd(i,t){const{subscribe:r}=j.useContext(Ks),s=j.useRef(t);s.current=t;const l=i.join(","),c=j.useMemo(()=>l.split(",").filter(Boolean),[l]);j.useEffect(()=>{const d=y=>s.current(y),g=c.map(y=>r(y,d));return()=>g.forEach(y=>y())},[r,c])}const i2=j.createContext({connected:!1,subscribe:()=>()=>{}}),s2=Wh();function a2({children:i,url:t,token:r}){const s=j.useRef(null),[l,c]=j.useState(!1),d=j.useRef(null),g=j.useRef(new Map),y=j.useRef(new Map),f=j.useCallback((_,w)=>{(async()=>{for await(const S of w)try{if(!Db(S.subject,_))continue;const M=JSON.parse(s2.decode(S.data)),B=g.current.get(_);if(!B)continue;for(const U of B)try{U(M)}catch{}}catch{}})()},[]),m=j.useCallback(_=>{var S;const w=s.current;if(!(!w||(S=w.isClosed)!=null&&S.call(w)||y.current.has(_)))try{const M=w.subscribe(_);y.current.set(_,M),f(_,M)}catch{}},[f]),b=j.useCallback((_,w)=>{const S=g.current;return S.has(_)||S.set(_,new Set),S.get(_).add(w),m(_),()=>{const M=S.get(_);if(M&&(M.delete(w),M.size===0)){S.delete(_);const B=y.current.get(_);if(B){y.current.delete(_);try{B.unsubscribe()}catch{}}}}},[m]),v=j.useCallback(async()=>{try{if(s.current)return;const _=t||e2;if(!_){console.error("[lt-nats] no NATS WebSocket URL configured — set NATS_WS_URL on the server");return}const w=await WE({servers:_,token:r||t2||void 0,reconnect:!0,maxReconnectAttempts:-1,reconnectTimeWait:2e3});s.current=w,c(!0);for(const S of g.current.keys())m(S);(async()=>{for await(const S of w.status())S.type==="disconnect"||S.type==="error"?c(!1):S.type==="reconnect"&&c(!0)})()}catch{c(!1),d.current=setTimeout(v,3e3)}},[m]);return j.useEffect(()=>(v(),()=>{d.current&&clearTimeout(d.current);for(const _ of y.current.values())try{_.unsubscribe()}catch{}y.current.clear(),s.current&&(s.current.close().catch(()=>{}),s.current=null),c(!1)}),[v]),p.jsx(i2.Provider,{value:{connected:l,subscribe:b},children:p.jsx(Ks.Provider,{value:{connected:l,subscribe:b},children:i})})}const Zn=Object.create(null);Zn.open="0";Zn.close="1";Zn.ping="2";Zn.pong="3";Zn.message="4";Zn.upgrade="5";Zn.noop="6";const Hc=Object.create(null);Object.keys(Zn).forEach(i=>{Hc[Zn[i]]=i});const dd={type:"error",data:"parser error"},qb=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",Bb=typeof ArrayBuffer=="function",Lb=i=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(i):i&&i.buffer instanceof ArrayBuffer,qd=({type:i,data:t},r,s)=>qb&&t instanceof Blob?r?s(t):_y(t,s):Bb&&(t instanceof ArrayBuffer||Lb(t))?r?s(t):_y(new Blob([t]),s):s(Zn[i]+(t||"")),_y=(i,t)=>{const r=new FileReader;return r.onload=function(){const s=r.result.split(",")[1];t("b"+(s||""))},r.readAsDataURL(i)};function wy(i){return i instanceof Uint8Array?i:i instanceof ArrayBuffer?new Uint8Array(i):new Uint8Array(i.buffer,i.byteOffset,i.byteLength)}let Ih;function o2(i,t){if(qb&&i.data instanceof Blob)return i.data.arrayBuffer().then(wy).then(t);if(Bb&&(i.data instanceof ArrayBuffer||Lb(i.data)))return t(wy(i.data));qd(i,!1,r=>{Ih||(Ih=new TextEncoder),t(Ih.encode(r))})}const Sy="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",io=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let i=0;i<Sy.length;i++)io[Sy.charCodeAt(i)]=i;const l2=i=>{let t=i.length*.75,r=i.length,s,l=0,c,d,g,y;i[i.length-1]==="="&&(t--,i[i.length-2]==="="&&t--);const f=new ArrayBuffer(t),m=new Uint8Array(f);for(s=0;s<r;s+=4)c=io[i.charCodeAt(s)],d=io[i.charCodeAt(s+1)],g=io[i.charCodeAt(s+2)],y=io[i.charCodeAt(s+3)],m[l++]=c<<2|d>>4,m[l++]=(d&15)<<4|g>>2,m[l++]=(g&3)<<6|y&63;return f},c2=typeof ArrayBuffer=="function",Bd=(i,t)=>{if(typeof i!="string")return{type:"message",data:Pb(i,t)};const r=i.charAt(0);return r==="b"?{type:"message",data:u2(i.substring(1),t)}:Hc[r]?i.length>1?{type:Hc[r],data:i.substring(1)}:{type:Hc[r]}:dd},u2=(i,t)=>{if(c2){const r=l2(i);return Pb(r,t)}else return{base64:!0,data:i}},Pb=(i,t)=>{switch(t){case"blob":return i instanceof Blob?i:new Blob([i]);case"arraybuffer":default:return i instanceof ArrayBuffer?i:i.buffer}},Ub="",f2=(i,t)=>{const r=i.length,s=new Array(r);let l=0;i.forEach((c,d)=>{qd(c,!1,g=>{s[d]=g,++l===r&&t(s.join(Ub))})})},h2=(i,t)=>{const r=i.split(Ub),s=[];for(let l=0;l<r.length;l++){const c=Bd(r[l],t);if(s.push(c),c.type==="error")break}return s};function d2(){return new TransformStream({transform(i,t){o2(i,r=>{const s=r.length;let l;if(s<126)l=new Uint8Array(1),new DataView(l.buffer).setUint8(0,s);else if(s<65536){l=new Uint8Array(3);const c=new DataView(l.buffer);c.setUint8(0,126),c.setUint16(1,s)}else{l=new Uint8Array(9);const c=new DataView(l.buffer);c.setUint8(0,127),c.setBigUint64(1,BigInt(s))}i.data&&typeof i.data!="string"&&(l[0]|=128),t.enqueue(l),t.enqueue(r)})}})}let $h;function Xl(i){return i.reduce((t,r)=>t+r.length,0)}function Jl(i,t){if(i[0].length===t)return i.shift();const r=new Uint8Array(t);let s=0;for(let l=0;l<t;l++)r[l]=i[0][s++],s===i[0].length&&(i.shift(),s=0);return i.length&&s<i[0].length&&(i[0]=i[0].slice(s)),r}function m2(i,t){$h||($h=new TextDecoder);const r=[];let s=0,l=-1,c=!1;return new TransformStream({transform(d,g){for(r.push(d);;){if(s===0){if(Xl(r)<1)break;const y=Jl(r,1);c=(y[0]&128)===128,l=y[0]&127,l<126?s=3:l===126?s=1:s=2}else if(s===1){if(Xl(r)<2)break;const y=Jl(r,2);l=new DataView(y.buffer,y.byteOffset,y.length).getUint16(0),s=3}else if(s===2){if(Xl(r)<8)break;const y=Jl(r,8),f=new DataView(y.buffer,y.byteOffset,y.length),m=f.getUint32(0);if(m>Math.pow(2,21)-1){g.enqueue(dd);break}l=m*Math.pow(2,32)+f.getUint32(4),s=3}else{if(Xl(r)<l)break;const y=Jl(r,l);g.enqueue(Bd(c?y:$h.decode(y),t)),s=0}if(l===0||l>i){g.enqueue(dd);break}}}})}const zb=4;function St(i){if(i)return p2(i)}function p2(i){for(var t in St.prototype)i[t]=St.prototype[t];return i}St.prototype.on=St.prototype.addEventListener=function(i,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+i]=this._callbacks["$"+i]||[]).push(t),this};St.prototype.once=function(i,t){function r(){this.off(i,r),t.apply(this,arguments)}return r.fn=t,this.on(i,r),this};St.prototype.off=St.prototype.removeListener=St.prototype.removeAllListeners=St.prototype.removeEventListener=function(i,t){if(this._callbacks=this._callbacks||{},arguments.length==0)return this._callbacks={},this;var r=this._callbacks["$"+i];if(!r)return this;if(arguments.length==1)return delete this._callbacks["$"+i],this;for(var s,l=0;l<r.length;l++)if(s=r[l],s===t||s.fn===t){r.splice(l,1);break}return r.length===0&&delete this._callbacks["$"+i],this};St.prototype.emit=function(i){this._callbacks=this._callbacks||{};for(var t=new Array(arguments.length-1),r=this._callbacks["$"+i],s=1;s<arguments.length;s++)t[s-1]=arguments[s];if(r){r=r.slice(0);for(var s=0,l=r.length;s<l;++s)r[s].apply(this,t)}return this};St.prototype.emitReserved=St.prototype.emit;St.prototype.listeners=function(i){return this._callbacks=this._callbacks||{},this._callbacks["$"+i]||[]};St.prototype.hasListeners=function(i){return!!this.listeners(i).length};const du=typeof Promise=="function"&&typeof Promise.resolve=="function"?t=>Promise.resolve().then(t):(t,r)=>r(t,0),Cn=typeof self<"u"?self:typeof window<"u"?window:Function("return this")(),g2="arraybuffer";function Ib(i,...t){return t.reduce((r,s)=>(i.hasOwnProperty(s)&&(r[s]=i[s]),r),{})}const y2=Cn.setTimeout,b2=Cn.clearTimeout;function mu(i,t){t.useNativeTimers?(i.setTimeoutFn=y2.bind(Cn),i.clearTimeoutFn=b2.bind(Cn)):(i.setTimeoutFn=Cn.setTimeout.bind(Cn),i.clearTimeoutFn=Cn.clearTimeout.bind(Cn))}const v2=1.33;function x2(i){return typeof i=="string"?_2(i):Math.ceil((i.byteLength||i.size)*v2)}function _2(i){let t=0,r=0;for(let s=0,l=i.length;s<l;s++)t=i.charCodeAt(s),t<128?r+=1:t<2048?r+=2:t<55296||t>=57344?r+=3:(s++,r+=4);return r}function $b(){return Date.now().toString(36).substring(3)+Math.random().toString(36).substring(2,5)}function w2(i){let t="";for(let r in i)i.hasOwnProperty(r)&&(t.length&&(t+="&"),t+=encodeURIComponent(r)+"="+encodeURIComponent(i[r]));return t}function S2(i){let t={},r=i.split("&");for(let s=0,l=r.length;s<l;s++){let c=r[s].split("=");t[decodeURIComponent(c[0])]=decodeURIComponent(c[1])}return t}class E2 extends Error{constructor(t,r,s){super(t),this.description=r,this.context=s,this.type="TransportError"}}class Ld extends St{constructor(t){super(),this.writable=!1,mu(this,t),this.opts=t,this.query=t.query,this.socket=t.socket,this.supportsBinary=!t.forceBase64}onError(t,r,s){return super.emitReserved("error",new E2(t,r,s)),this}open(){return this.readyState="opening",this.doOpen(),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(t){this.readyState==="open"&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const r=Bd(t,this.socket.binaryType);this.onPacket(r)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}pause(t){}createUri(t,r={}){return t+"://"+this._hostname()+this._port()+this.opts.path+this._query(r)}_hostname(){const t=this.opts.hostname;return t.indexOf(":")===-1?t:"["+t+"]"}_port(){return this.opts.port&&(this.opts.secure&&Number(this.opts.port)!==443||!this.opts.secure&&Number(this.opts.port)!==80)?":"+this.opts.port:""}_query(t){const r=w2(t);return r.length?"?"+r:""}}class O2 extends Ld{constructor(){super(...arguments),this._polling=!1}get name(){return"polling"}doOpen(){this._poll()}pause(t){this.readyState="pausing";const r=()=>{this.readyState="paused",t()};if(this._polling||!this.writable){let s=0;this._polling&&(s++,this.once("pollComplete",function(){--s||r()})),this.writable||(s++,this.once("drain",function(){--s||r()}))}else r()}_poll(){this._polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){const r=s=>{if(this.readyState==="opening"&&s.type==="open"&&this.onOpen(),s.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(s)};h2(t,this.socket.binaryType).forEach(r),this.readyState!=="closed"&&(this._polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this._poll())}doClose(){const t=()=>{this.write([{type:"close"}])};this.readyState==="open"?t():this.once("open",t)}write(t){this.writable=!1,f2(t,r=>{this.doWrite(r,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){const t=this.opts.secure?"https":"http",r=this.query||{};return this.opts.timestampRequests!==!1&&(r[this.opts.timestampParam]=$b()),!this.supportsBinary&&!r.sid&&(r.b64=1),this.createUri(t,r)}}let Hb=!1;try{Hb=typeof XMLHttpRequest<"u"&&"withCredentials"in new XMLHttpRequest}catch{}const A2=Hb;function j2(){}class N2 extends O2{constructor(t){if(super(t),typeof location<"u"){const r=location.protocol==="https:";let s=location.port;s||(s=r?"443":"80"),this.xd=typeof location<"u"&&t.hostname!==location.hostname||s!==t.port}}doWrite(t,r){const s=this.request({method:"POST",data:t});s.on("success",r),s.on("error",(l,c)=>{this.onError("xhr post error",l,c)})}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",(r,s)=>{this.onError("xhr poll error",r,s)}),this.pollXhr=t}}class Qn extends St{constructor(t,r,s){super(),this.createRequest=t,mu(this,s),this._opts=s,this._method=s.method||"GET",this._uri=r,this._data=s.data!==void 0?s.data:null,this._create()}_create(){var t;const r=Ib(this._opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");r.xdomain=!!this._opts.xd;const s=this._xhr=this.createRequest(r);try{s.open(this._method,this._uri,!0);try{if(this._opts.extraHeaders){s.setDisableHeaderCheck&&s.setDisableHeaderCheck(!0);for(let l in this._opts.extraHeaders)this._opts.extraHeaders.hasOwnProperty(l)&&s.setRequestHeader(l,this._opts.extraHeaders[l])}}catch{}if(this._method==="POST")try{s.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{s.setRequestHeader("Accept","*/*")}catch{}(t=this._opts.cookieJar)===null||t===void 0||t.addCookies(s),"withCredentials"in s&&(s.withCredentials=this._opts.withCredentials),this._opts.requestTimeout&&(s.timeout=this._opts.requestTimeout),s.onreadystatechange=()=>{var l;s.readyState===3&&((l=this._opts.cookieJar)===null||l===void 0||l.parseCookies(s.getResponseHeader("set-cookie"))),s.readyState===4&&(s.status===200||s.status===1223?this._onLoad():this.setTimeoutFn(()=>{this._onError(typeof s.status=="number"?s.status:0)},0))},s.send(this._data)}catch(l){this.setTimeoutFn(()=>{this._onError(l)},0);return}typeof document<"u"&&(this._index=Qn.requestsCount++,Qn.requests[this._index]=this)}_onError(t){this.emitReserved("error",t,this._xhr),this._cleanup(!0)}_cleanup(t){if(!(typeof this._xhr>"u"||this._xhr===null)){if(this._xhr.onreadystatechange=j2,t)try{this._xhr.abort()}catch{}typeof document<"u"&&delete Qn.requests[this._index],this._xhr=null}}_onLoad(){const t=this._xhr.responseText;t!==null&&(this.emitReserved("data",t),this.emitReserved("success"),this._cleanup())}abort(){this._cleanup()}}Qn.requestsCount=0;Qn.requests={};if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",Ey);else if(typeof addEventListener=="function"){const i="onpagehide"in Cn?"pagehide":"unload";addEventListener(i,Ey,!1)}}function Ey(){for(let i in Qn.requests)Qn.requests.hasOwnProperty(i)&&Qn.requests[i].abort()}const T2=(function(){const i=Gb({xdomain:!1});return i&&i.responseType!==null})();class k2 extends N2{constructor(t){super(t);const r=t&&t.forceBase64;this.supportsBinary=T2&&!r}request(t={}){return Object.assign(t,{xd:this.xd},this.opts),new Qn(Gb,this.uri(),t)}}function Gb(i){const t=i.xdomain;try{if(typeof XMLHttpRequest<"u"&&(!t||A2))return new XMLHttpRequest}catch{}if(!t)try{return new Cn[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP")}catch{}}const Fb=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class C2 extends Ld{get name(){return"websocket"}doOpen(){const t=this.uri(),r=this.opts.protocols,s=Fb?{}:Ib(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(s.headers=this.opts.extraHeaders);try{this.ws=this.createSocket(t,r,s)}catch(l){return this.emitReserved("error",l)}this.ws.binaryType=this.socket.binaryType,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let r=0;r<t.length;r++){const s=t[r],l=r===t.length-1;qd(s,this.supportsBinary,c=>{try{this.doWrite(s,c)}catch{}l&&du(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.onerror=()=>{},this.ws.close(),this.ws=null)}uri(){const t=this.opts.secure?"wss":"ws",r=this.query||{};return this.opts.timestampRequests&&(r[this.opts.timestampParam]=$b()),this.supportsBinary||(r.b64=1),this.createUri(t,r)}}const Hh=Cn.WebSocket||Cn.MozWebSocket;class M2 extends C2{createSocket(t,r,s){return Fb?new Hh(t,r,s):r?new Hh(t,r):new Hh(t)}doWrite(t,r){this.ws.send(r)}}class R2 extends Ld{get name(){return"webtransport"}doOpen(){try{this._transport=new WebTransport(this.createUri("https"),this.opts.transportOptions[this.name])}catch(t){return this.emitReserved("error",t)}this._transport.closed.then(()=>{this.onClose()}).catch(t=>{this.onError("webtransport error",t)}),this._transport.ready.then(()=>{this._transport.createBidirectionalStream().then(t=>{const r=m2(Number.MAX_SAFE_INTEGER,this.socket.binaryType),s=t.readable.pipeThrough(r).getReader(),l=d2();l.readable.pipeTo(t.writable),this._writer=l.writable.getWriter();const c=()=>{s.read().then(({done:g,value:y})=>{g||(this.onPacket(y),c())}).catch(g=>{})};c();const d={type:"open"};this.query.sid&&(d.data=`{"sid":"${this.query.sid}"}`),this._writer.write(d).then(()=>this.onOpen())})})}write(t){this.writable=!1;for(let r=0;r<t.length;r++){const s=t[r],l=r===t.length-1;this._writer.write(s).then(()=>{l&&du(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){var t;(t=this._transport)===null||t===void 0||t.close()}}const D2={websocket:M2,webtransport:R2,polling:k2},q2=/^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,B2=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function md(i){if(i.length>8e3)throw"URI too long";const t=i,r=i.indexOf("["),s=i.indexOf("]");r!=-1&&s!=-1&&(i=i.substring(0,r)+i.substring(r,s).replace(/:/g,";")+i.substring(s,i.length));let l=q2.exec(i||""),c={},d=14;for(;d--;)c[B2[d]]=l[d]||"";return r!=-1&&s!=-1&&(c.source=t,c.host=c.host.substring(1,c.host.length-1).replace(/;/g,":"),c.authority=c.authority.replace("[","").replace("]","").replace(/;/g,":"),c.ipv6uri=!0),c.pathNames=L2(c,c.path),c.queryKey=P2(c,c.query),c}function L2(i,t){const r=/\/{2,9}/g,s=t.replace(r,"/").split("/");return(t.slice(0,1)=="/"||t.length===0)&&s.splice(0,1),t.slice(-1)=="/"&&s.splice(s.length-1,1),s}function P2(i,t){const r={};return t.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(s,l,c){l&&(r[l]=c)}),r}const pd=typeof addEventListener=="function"&&typeof removeEventListener=="function",Gc=[];pd&&addEventListener("offline",()=>{Gc.forEach(i=>i())},!1);class ci extends St{constructor(t,r){if(super(),this.binaryType=g2,this.writeBuffer=[],this._prevBufferLen=0,this._pingInterval=-1,this._pingTimeout=-1,this._maxPayload=-1,this._pingTimeoutTime=1/0,t&&typeof t=="object"&&(r=t,t=null),t){const s=md(t);r.hostname=s.host,r.secure=s.protocol==="https"||s.protocol==="wss",r.port=s.port,s.query&&(r.query=s.query)}else r.host&&(r.hostname=md(r.host).host);mu(this,r),this.secure=r.secure!=null?r.secure:typeof location<"u"&&location.protocol==="https:",r.hostname&&!r.port&&(r.port=this.secure?"443":"80"),this.hostname=r.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=r.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=[],this._transportsByName={},r.transports.forEach(s=>{const l=s.prototype.name;this.transports.push(l),this._transportsByName[l]=s}),this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,addTrailingSlash:!0,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!1},r),this.opts.path=this.opts.path.replace(/\/$/,"")+(this.opts.addTrailingSlash?"/":""),typeof this.opts.query=="string"&&(this.opts.query=S2(this.opts.query)),pd&&(this.opts.closeOnBeforeunload&&(this._beforeunloadEventListener=()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},addEventListener("beforeunload",this._beforeunloadEventListener,!1)),this.hostname!=="localhost"&&(this._offlineEventListener=()=>{this._onClose("transport close",{description:"network connection lost"})},Gc.push(this._offlineEventListener))),this.opts.withCredentials&&(this._cookieJar=void 0),this._open()}createTransport(t){const r=Object.assign({},this.opts.query);r.EIO=zb,r.transport=t,this.id&&(r.sid=this.id);const s=Object.assign({},this.opts,{query:r,socket:this,hostname:this.hostname,secure:this.secure,port:this.port},this.opts.transportOptions[t]);return new this._transportsByName[t](s)}_open(){if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}const t=this.opts.rememberUpgrade&&ci.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1?"websocket":this.transports[0];this.readyState="opening";const r=this.createTransport(t);r.open(),this.setTransport(r)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this._onDrain.bind(this)).on("packet",this._onPacket.bind(this)).on("error",this._onError.bind(this)).on("close",r=>this._onClose("transport close",r))}onOpen(){this.readyState="open",ci.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush()}_onPacket(t){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")switch(this.emitReserved("packet",t),this.emitReserved("heartbeat"),t.type){case"open":this.onHandshake(JSON.parse(t.data));break;case"ping":this._sendPacket("pong"),this.emitReserved("ping"),this.emitReserved("pong"),this._resetPingTimeout();break;case"error":const r=new Error("server error");r.code=t.data,this._onError(r);break;case"message":this.emitReserved("data",t.data),this.emitReserved("message",t.data);break}}onHandshake(t){this.emitReserved("handshake",t),this.id=t.sid,this.transport.query.sid=t.sid,this._pingInterval=t.pingInterval,this._pingTimeout=t.pingTimeout,this._maxPayload=t.maxPayload,this.onOpen(),this.readyState!=="closed"&&this._resetPingTimeout()}_resetPingTimeout(){this.clearTimeoutFn(this._pingTimeoutTimer);const t=this._pingInterval+this._pingTimeout;this._pingTimeoutTime=Date.now()+t,this._pingTimeoutTimer=this.setTimeoutFn(()=>{this._onClose("ping timeout")},t),this.opts.autoUnref&&this._pingTimeoutTimer.unref()}_onDrain(){this.writeBuffer.splice(0,this._prevBufferLen),this._prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this._getWritablePackets();this.transport.send(t),this._prevBufferLen=t.length,this.emitReserved("flush")}}_getWritablePackets(){if(!(this._maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let r=1;for(let s=0;s<this.writeBuffer.length;s++){const l=this.writeBuffer[s].data;if(l&&(r+=x2(l)),s>0&&r>this._maxPayload)return this.writeBuffer.slice(0,s);r+=2}return this.writeBuffer}_hasPingExpired(){if(!this._pingTimeoutTime)return!0;const t=Date.now()>this._pingTimeoutTime;return t&&(this._pingTimeoutTime=0,du(()=>{this._onClose("ping timeout")},this.setTimeoutFn)),t}write(t,r,s){return this._sendPacket("message",t,r,s),this}send(t,r,s){return this._sendPacket("message",t,r,s),this}_sendPacket(t,r,s,l){if(typeof r=="function"&&(l=r,r=void 0),typeof s=="function"&&(l=s,s=null),this.readyState==="closing"||this.readyState==="closed")return;s=s||{},s.compress=s.compress!==!1;const c={type:t,data:r,options:s};this.emitReserved("packetCreate",c),this.writeBuffer.push(c),l&&this.once("flush",l),this.flush()}close(){const t=()=>{this._onClose("forced close"),this.transport.close()},r=()=>{this.off("upgrade",r),this.off("upgradeError",r),t()},s=()=>{this.once("upgrade",r),this.once("upgradeError",r)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?s():t()}):this.upgrading?s():t()),this}_onError(t){if(ci.priorWebsocketSuccess=!1,this.opts.tryAllTransports&&this.transports.length>1&&this.readyState==="opening")return this.transports.shift(),this._open();this.emitReserved("error",t),this._onClose("transport error",t)}_onClose(t,r){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing"){if(this.clearTimeoutFn(this._pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),pd&&(this._beforeunloadEventListener&&removeEventListener("beforeunload",this._beforeunloadEventListener,!1),this._offlineEventListener)){const s=Gc.indexOf(this._offlineEventListener);s!==-1&&Gc.splice(s,1)}this.readyState="closed",this.id=null,this.emitReserved("close",t,r),this.writeBuffer=[],this._prevBufferLen=0}}}ci.protocol=zb;class U2 extends ci{constructor(){super(...arguments),this._upgrades=[]}onOpen(){if(super.onOpen(),this.readyState==="open"&&this.opts.upgrade)for(let t=0;t<this._upgrades.length;t++)this._probe(this._upgrades[t])}_probe(t){let r=this.createTransport(t),s=!1;ci.priorWebsocketSuccess=!1;const l=()=>{s||(r.send([{type:"ping",data:"probe"}]),r.once("packet",b=>{if(!s)if(b.type==="pong"&&b.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",r),!r)return;ci.priorWebsocketSuccess=r.name==="websocket",this.transport.pause(()=>{s||this.readyState!=="closed"&&(m(),this.setTransport(r),r.send([{type:"upgrade"}]),this.emitReserved("upgrade",r),r=null,this.upgrading=!1,this.flush())})}else{const v=new Error("probe error");v.transport=r.name,this.emitReserved("upgradeError",v)}}))};function c(){s||(s=!0,m(),r.close(),r=null)}const d=b=>{const v=new Error("probe error: "+b);v.transport=r.name,c(),this.emitReserved("upgradeError",v)};function g(){d("transport closed")}function y(){d("socket closed")}function f(b){r&&b.name!==r.name&&c()}const m=()=>{r.removeListener("open",l),r.removeListener("error",d),r.removeListener("close",g),this.off("close",y),this.off("upgrading",f)};r.once("open",l),r.once("error",d),r.once("close",g),this.once("close",y),this.once("upgrading",f),this._upgrades.indexOf("webtransport")!==-1&&t!=="webtransport"?this.setTimeoutFn(()=>{s||r.open()},200):r.open()}onHandshake(t){this._upgrades=this._filterUpgrades(t.upgrades),super.onHandshake(t)}_filterUpgrades(t){const r=[];for(let s=0;s<t.length;s++)~this.transports.indexOf(t[s])&&r.push(t[s]);return r}}let z2=class extends U2{constructor(t,r={}){const s=typeof t=="object"?t:r;(!s.transports||s.transports&&typeof s.transports[0]=="string")&&(s.transports=(s.transports||["polling","websocket","webtransport"]).map(l=>D2[l]).filter(l=>!!l)),super(t,s)}};function I2(i,t="",r){let s=i;r=r||typeof location<"u"&&location,i==null&&(i=r.protocol+"//"+r.host),typeof i=="string"&&(i.charAt(0)==="/"&&(i.charAt(1)==="/"?i=r.protocol+i:i=r.host+i),/^(https?|wss?):\/\//.test(i)||(typeof r<"u"?i=r.protocol+"//"+i:i="https://"+i),s=md(i)),s.port||(/^(http|ws)$/.test(s.protocol)?s.port="80":/^(http|ws)s$/.test(s.protocol)&&(s.port="443")),s.path=s.path||"/";const c=s.host.indexOf(":")!==-1?"["+s.host+"]":s.host;return s.id=s.protocol+"://"+c+":"+s.port+t,s.href=s.protocol+"://"+c+(r&&r.port===s.port?"":":"+s.port),s}const $2=typeof ArrayBuffer=="function",H2=i=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(i):i.buffer instanceof ArrayBuffer,Vb=Object.prototype.toString,G2=typeof Blob=="function"||typeof Blob<"u"&&Vb.call(Blob)==="[object BlobConstructor]",F2=typeof File=="function"||typeof File<"u"&&Vb.call(File)==="[object FileConstructor]";function Pd(i){return $2&&(i instanceof ArrayBuffer||H2(i))||G2&&i instanceof Blob||F2&&i instanceof File}function Fc(i,t){if(!i||typeof i!="object")return!1;if(Array.isArray(i)){for(let r=0,s=i.length;r<s;r++)if(Fc(i[r]))return!0;return!1}if(Pd(i))return!0;if(i.toJSON&&typeof i.toJSON=="function"&&arguments.length===1)return Fc(i.toJSON(),!0);for(const r in i)if(Object.prototype.hasOwnProperty.call(i,r)&&Fc(i[r]))return!0;return!1}function V2(i){const t=[],r=i.data,s=i;return s.data=gd(r,t),s.attachments=t.length,{packet:s,buffers:t}}function gd(i,t){if(!i)return i;if(Pd(i)){const r={_placeholder:!0,num:t.length};return t.push(i),r}else if(Array.isArray(i)){const r=new Array(i.length);for(let s=0;s<i.length;s++)r[s]=gd(i[s],t);return r}else if(typeof i=="object"&&!(i instanceof Date)){const r={};for(const s in i)Object.prototype.hasOwnProperty.call(i,s)&&(r[s]=gd(i[s],t));return r}return i}function Y2(i,t){return i.data=yd(i.data,t),delete i.attachments,i}function yd(i,t){if(!i)return i;if(i&&i._placeholder===!0){if(typeof i.num=="number"&&i.num>=0&&i.num<t.length)return t[i.num];throw new Error("illegal attachments")}else if(Array.isArray(i))for(let r=0;r<i.length;r++)i[r]=yd(i[r],t);else if(typeof i=="object")for(const r in i)Object.prototype.hasOwnProperty.call(i,r)&&(i[r]=yd(i[r],t));return i}const K2=["connect","connect_error","disconnect","disconnecting","newListener","removeListener"];var Ue;(function(i){i[i.CONNECT=0]="CONNECT",i[i.DISCONNECT=1]="DISCONNECT",i[i.EVENT=2]="EVENT",i[i.ACK=3]="ACK",i[i.CONNECT_ERROR=4]="CONNECT_ERROR",i[i.BINARY_EVENT=5]="BINARY_EVENT",i[i.BINARY_ACK=6]="BINARY_ACK"})(Ue||(Ue={}));class X2{constructor(t){this.replacer=t}encode(t){return(t.type===Ue.EVENT||t.type===Ue.ACK)&&Fc(t)?this.encodeAsBinary({type:t.type===Ue.EVENT?Ue.BINARY_EVENT:Ue.BINARY_ACK,nsp:t.nsp,data:t.data,id:t.id}):[this.encodeAsString(t)]}encodeAsString(t){let r=""+t.type;return(t.type===Ue.BINARY_EVENT||t.type===Ue.BINARY_ACK)&&(r+=t.attachments+"-"),t.nsp&&t.nsp!=="/"&&(r+=t.nsp+","),t.id!=null&&(r+=t.id),t.data!=null&&(r+=JSON.stringify(t.data,this.replacer)),r}encodeAsBinary(t){const r=V2(t),s=this.encodeAsString(r.packet),l=r.buffers;return l.unshift(s),l}}class Ud extends St{constructor(t){super(),this.opts=Object.assign({reviver:void 0,maxAttachments:10},typeof t=="function"?{reviver:t}:t)}add(t){let r;if(typeof t=="string"){if(this.reconstructor)throw new Error("got plaintext data when reconstructing a packet");r=this.decodeString(t);const s=r.type===Ue.BINARY_EVENT;s||r.type===Ue.BINARY_ACK?(r.type=s?Ue.EVENT:Ue.ACK,this.reconstructor=new J2(r),r.attachments===0&&super.emitReserved("decoded",r)):super.emitReserved("decoded",r)}else if(Pd(t)||t.base64)if(this.reconstructor)r=this.reconstructor.takeBinaryData(t),r&&(this.reconstructor=null,super.emitReserved("decoded",r));else throw new Error("got binary data when not reconstructing a packet");else throw new Error("Unknown type: "+t)}decodeString(t){let r=0;const s={type:Number(t.charAt(0))};if(Ue[s.type]===void 0)throw new Error("unknown packet type "+s.type);if(s.type===Ue.BINARY_EVENT||s.type===Ue.BINARY_ACK){const c=r+1;for(;t.charAt(++r)!=="-"&&r!=t.length;);const d=t.substring(c,r);if(d!=Number(d)||t.charAt(r)!=="-")throw new Error("Illegal attachments");const g=Number(d);if(!Q2(g)||g<0)throw new Error("Illegal attachments");if(g>this.opts.maxAttachments)throw new Error("too many attachments");s.attachments=g}if(t.charAt(r+1)==="/"){const c=r+1;for(;++r&&!(t.charAt(r)===","||r===t.length););s.nsp=t.substring(c,r)}else s.nsp="/";const l=t.charAt(r+1);if(l!==""&&Number(l)==l){const c=r+1;for(;++r;){const d=t.charAt(r);if(d==null||Number(d)!=d){--r;break}if(r===t.length)break}s.id=Number(t.substring(c,r+1))}if(t.charAt(++r)){const c=this.tryParse(t.substr(r));if(Ud.isPayloadValid(s.type,c))s.data=c;else throw new Error("invalid payload")}return s}tryParse(t){try{return JSON.parse(t,this.opts.reviver)}catch{return!1}}static isPayloadValid(t,r){switch(t){case Ue.CONNECT:return Oy(r);case Ue.DISCONNECT:return r===void 0;case Ue.CONNECT_ERROR:return typeof r=="string"||Oy(r);case Ue.EVENT:case Ue.BINARY_EVENT:return Array.isArray(r)&&(typeof r[0]=="number"||typeof r[0]=="string"&&K2.indexOf(r[0])===-1);case Ue.ACK:case Ue.BINARY_ACK:return Array.isArray(r)}}destroy(){this.reconstructor&&(this.reconstructor.finishedReconstruction(),this.reconstructor=null)}}class J2{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const r=Y2(this.reconPack,this.buffers);return this.finishedReconstruction(),r}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}const Q2=Number.isInteger||function(i){return typeof i=="number"&&isFinite(i)&&Math.floor(i)===i};function Oy(i){return Object.prototype.toString.call(i)==="[object Object]"}const Z2=Object.freeze(Object.defineProperty({__proto__:null,Decoder:Ud,Encoder:X2,get PacketType(){return Ue}},Symbol.toStringTag,{value:"Module"}));function zn(i,t,r){return i.on(t,r),function(){i.off(t,r)}}const W2=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class Yb extends St{constructor(t,r,s){super(),this.connected=!1,this.recovered=!1,this.receiveBuffer=[],this.sendBuffer=[],this._queue=[],this._queueSeq=0,this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=r,s&&s.auth&&(this.auth=s.auth),this._opts=Object.assign({},s),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[zn(t,"open",this.onopen.bind(this)),zn(t,"packet",this.onpacket.bind(this)),zn(t,"error",this.onerror.bind(this)),zn(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...r){var s,l,c;if(W2.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');if(r.unshift(t),this._opts.retries&&!this.flags.fromQueue&&!this.flags.volatile)return this._addToQueue(r),this;const d={type:Ue.EVENT,data:r};if(d.options={},d.options.compress=this.flags.compress!==!1,typeof r[r.length-1]=="function"){const m=this.ids++,b=r.pop();this._registerAckCallback(m,b),d.id=m}const g=(l=(s=this.io.engine)===null||s===void 0?void 0:s.transport)===null||l===void 0?void 0:l.writable,y=this.connected&&!(!((c=this.io.engine)===null||c===void 0)&&c._hasPingExpired());return this.flags.volatile&&!g||(y?(this.notifyOutgoingListeners(d),this.packet(d)):this.sendBuffer.push(d)),this.flags={},this}_registerAckCallback(t,r){var s;const l=(s=this.flags.timeout)!==null&&s!==void 0?s:this._opts.ackTimeout;if(l===void 0){this.acks[t]=r;return}const c=this.io.setTimeoutFn(()=>{delete this.acks[t];for(let g=0;g<this.sendBuffer.length;g++)this.sendBuffer[g].id===t&&this.sendBuffer.splice(g,1);r.call(this,new Error("operation has timed out"))},l),d=(...g)=>{this.io.clearTimeoutFn(c),r.apply(this,g)};d.withError=!0,this.acks[t]=d}emitWithAck(t,...r){return new Promise((s,l)=>{const c=(d,g)=>d?l(d):s(g);c.withError=!0,r.push(c),this.emit(t,...r)})}_addToQueue(t){let r;typeof t[t.length-1]=="function"&&(r=t.pop());const s={id:this._queueSeq++,tryCount:0,pending:!1,args:t,flags:Object.assign({fromQueue:!0},this.flags)};t.push((l,...c)=>(this._queue[0],l!==null?s.tryCount>this._opts.retries&&(this._queue.shift(),r&&r(l)):(this._queue.shift(),r&&r(null,...c)),s.pending=!1,this._drainQueue())),this._queue.push(s),this._drainQueue()}_drainQueue(t=!1){if(!this.connected||this._queue.length===0)return;const r=this._queue[0];r.pending&&!t||(r.pending=!0,r.tryCount++,this.flags=r.flags,this.emit.apply(this,r.args))}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){typeof this.auth=="function"?this.auth(t=>{this._sendConnectPacket(t)}):this._sendConnectPacket(this.auth)}_sendConnectPacket(t){this.packet({type:Ue.CONNECT,data:this._pid?Object.assign({pid:this._pid,offset:this._lastOffset},t):t})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,r){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,r),this._clearAcks()}_clearAcks(){Object.keys(this.acks).forEach(t=>{if(!this.sendBuffer.some(s=>String(s.id)===t)){const s=this.acks[t];delete this.acks[t],s.withError&&s.call(this,new Error("socket has been disconnected"))}})}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case Ue.CONNECT:t.data&&t.data.sid?this.onconnect(t.data.sid,t.data.pid):this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case Ue.EVENT:case Ue.BINARY_EVENT:this.onevent(t);break;case Ue.ACK:case Ue.BINARY_ACK:this.onack(t);break;case Ue.DISCONNECT:this.ondisconnect();break;case Ue.CONNECT_ERROR:this.destroy();const s=new Error(t.data.message);s.data=t.data.data,this.emitReserved("connect_error",s);break}}onevent(t){const r=t.data||[];t.id!=null&&r.push(this.ack(t.id)),this.connected?this.emitEvent(r):this.receiveBuffer.push(Object.freeze(r))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const r=this._anyListeners.slice();for(const s of r)s.apply(this,t)}super.emit.apply(this,t),this._pid&&t.length&&typeof t[t.length-1]=="string"&&(this._lastOffset=t[t.length-1])}ack(t){const r=this;let s=!1;return function(...l){s||(s=!0,r.packet({type:Ue.ACK,id:t,data:l}))}}onack(t){const r=this.acks[t.id];typeof r=="function"&&(delete this.acks[t.id],r.withError&&t.data.unshift(null),r.apply(this,t.data))}onconnect(t,r){this.id=t,this.recovered=r&&this._pid===r,this._pid=r,this.connected=!0,this.emitBuffered(),this._drainQueue(!0),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach(t=>this.emitEvent(t)),this.receiveBuffer=[],this.sendBuffer.forEach(t=>{this.notifyOutgoingListeners(t),this.packet(t)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(t=>t()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:Ue.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const r=this._anyListeners;for(let s=0;s<r.length;s++)if(t===r[s])return r.splice(s,1),this}else this._anyListeners=[];return this}listenersAny(){return this._anyListeners||[]}onAnyOutgoing(t){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.push(t),this}prependAnyOutgoing(t){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.unshift(t),this}offAnyOutgoing(t){if(!this._anyOutgoingListeners)return this;if(t){const r=this._anyOutgoingListeners;for(let s=0;s<r.length;s++)if(t===r[s])return r.splice(s,1),this}else this._anyOutgoingListeners=[];return this}listenersAnyOutgoing(){return this._anyOutgoingListeners||[]}notifyOutgoingListeners(t){if(this._anyOutgoingListeners&&this._anyOutgoingListeners.length){const r=this._anyOutgoingListeners.slice();for(const s of r)s.apply(this,t.data)}}}function Xs(i){i=i||{},this.ms=i.min||100,this.max=i.max||1e4,this.factor=i.factor||2,this.jitter=i.jitter>0&&i.jitter<=1?i.jitter:0,this.attempts=0}Xs.prototype.duration=function(){var i=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var t=Math.random(),r=Math.floor(t*this.jitter*i);i=(Math.floor(t*10)&1)==0?i-r:i+r}return Math.min(i,this.max)|0};Xs.prototype.reset=function(){this.attempts=0};Xs.prototype.setMin=function(i){this.ms=i};Xs.prototype.setMax=function(i){this.max=i};Xs.prototype.setJitter=function(i){this.jitter=i};class bd extends St{constructor(t,r){var s;super(),this.nsps={},this.subs=[],t&&typeof t=="object"&&(r=t,t=void 0),r=r||{},r.path=r.path||"/socket.io",this.opts=r,mu(this,r),this.reconnection(r.reconnection!==!1),this.reconnectionAttempts(r.reconnectionAttempts||1/0),this.reconnectionDelay(r.reconnectionDelay||1e3),this.reconnectionDelayMax(r.reconnectionDelayMax||5e3),this.randomizationFactor((s=r.randomizationFactor)!==null&&s!==void 0?s:.5),this.backoff=new Xs({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(r.timeout==null?2e4:r.timeout),this._readyState="closed",this.uri=t;const l=r.parser||Z2;this.encoder=new l.Encoder,this.decoder=new l.Decoder,this._autoConnect=r.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,t||(this.skipReconnect=!0),this):this._reconnection}reconnectionAttempts(t){return t===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var r;return t===void 0?this._reconnectionDelay:(this._reconnectionDelay=t,(r=this.backoff)===null||r===void 0||r.setMin(t),this)}randomizationFactor(t){var r;return t===void 0?this._randomizationFactor:(this._randomizationFactor=t,(r=this.backoff)===null||r===void 0||r.setJitter(t),this)}reconnectionDelayMax(t){var r;return t===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,(r=this.backoff)===null||r===void 0||r.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new z2(this.uri,this.opts);const r=this.engine,s=this;this._readyState="opening",this.skipReconnect=!1;const l=zn(r,"open",function(){s.onopen(),t&&t()}),c=g=>{this.cleanup(),this._readyState="closed",this.emitReserved("error",g),t?t(g):this.maybeReconnectOnOpen()},d=zn(r,"error",c);if(this._timeout!==!1){const g=this._timeout,y=this.setTimeoutFn(()=>{l(),c(new Error("timeout")),r.close()},g);this.opts.autoUnref&&y.unref(),this.subs.push(()=>{this.clearTimeoutFn(y)})}return this.subs.push(l),this.subs.push(d),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push(zn(t,"ping",this.onping.bind(this)),zn(t,"data",this.ondata.bind(this)),zn(t,"error",this.onerror.bind(this)),zn(t,"close",this.onclose.bind(this)),zn(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch(r){this.onclose("parse error",r)}}ondecoded(t){du(()=>{this.emitReserved("packet",t)},this.setTimeoutFn)}onerror(t){this.emitReserved("error",t)}socket(t,r){let s=this.nsps[t];return s?this._autoConnect&&!s.active&&s.connect():(s=new Yb(this,t,r),this.nsps[t]=s),s}_destroy(t){const r=Object.keys(this.nsps);for(const s of r)if(this.nsps[s].active)return;this._close()}_packet(t){const r=this.encoder.encode(t);for(let s=0;s<r.length;s++)this.engine.write(r[s],t.options)}cleanup(){this.subs.forEach(t=>t()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close")}disconnect(){return this._close()}onclose(t,r){var s;this.cleanup(),(s=this.engine)===null||s===void 0||s.close(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,r),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const r=this.backoff.duration();this._reconnecting=!0;const s=this.setTimeoutFn(()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),!t.skipReconnect&&t.open(l=>{l?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",l)):t.onreconnect()}))},r);this.opts.autoUnref&&s.unref(),this.subs.push(()=>{this.clearTimeoutFn(s)})}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const Ya={};function Vc(i,t){typeof i=="object"&&(t=i,i=void 0),t=t||{};const r=I2(i,t.path||"/socket.io"),s=r.source,l=r.id,c=r.path,d=Ya[l]&&c in Ya[l].nsps,g=t.forceNew||t["force new connection"]||t.multiplex===!1||d;let y;return g?y=new bd(s,t):(Ya[l]||(Ya[l]=new bd(s,t)),y=Ya[l]),r.query&&!t.query&&(t.query=r.queryKey),y.socket(r.path,t)}Object.assign(Vc,{Manager:bd,Socket:Yb,io:Vc,connect:Vc});const eO=j.createContext({connected:!1,subscribe:()=>()=>{}});function tO({children:i}){const t=j.useRef(null),[r,s]=j.useState(!1),l=j.useRef(new Map),c=j.useCallback((g,y)=>{var m;const f=l.current;return f.has(g)||(f.set(g,new Set),(m=t.current)==null||m.emit("lt.subscribe",g)),f.get(g).add(y),()=>{var v;const b=f.get(g);b&&(b.delete(y),b.size===0&&(f.delete(g),(v=t.current)==null||v.emit("lt.unsubscribe",g)))}},[]),d=j.useCallback((g,y)=>{for(const[f,m]of l.current)if(Db(g,f))for(const b of m)try{b(y)}catch{}},[]);return j.useEffect(()=>{const g=mb(),y=Vc({path:`${Tt}/socket.io`,transports:["polling","websocket"],upgrade:!0,reconnection:!0,reconnectionAttempts:1/0,reconnectionDelay:2e3,...g?{auth:{token:g}}:{}});return t.current=y,console.log("[lt-socketio] connecting..."),y.on("connect",()=>{console.log("[lt-socketio] connected, id:",y.id),s(!0);for(const f of l.current.keys())y.emit("lt.subscribe",f)}),y.on("disconnect",f=>{console.log("[lt-socketio] disconnected:",f),s(!1)}),y.on("connect_error",f=>{console.warn("[lt-socketio] connect error:",f.message),s(!1)}),y.onAny((f,m)=>{if(f.startsWith("lt."))try{const b=typeof m=="string"?JSON.parse(m):m;d(f,b)}catch{}}),()=>{y.removeAllListeners(),y.disconnect(),t.current=null,s(!1)}},[d]),p.jsx(eO.Provider,{value:{connected:r,subscribe:c},children:p.jsx(Ks.Provider,{value:{connected:r,subscribe:c},children:i})})}function nO({children:i}){const[t,r]=j.useState(null),[s,l]=j.useState({url:null,token:null});return j.useEffect(()=>{let c=!1;async function d(){var g;try{console.log("[lt-transport] detecting event transport...");const y=await fetch(`${Tt}/api/settings`);if(!y.ok){console.warn("[lt-transport] settings fetch failed, falling back to socketio"),c||r("socketio");return}const f=await y.json(),m=(g=f==null?void 0:f.events)==null?void 0:g.transport;if(console.log("[lt-transport] server reports:",m),!c){if(m==="nats"){let b=f.events.natsWsUrl??null,v=null;const _=mb();if(_)try{const w=await fetch(`${Tt}/api/nats-credentials`,{headers:{Authorization:`Bearer ${_}`}});if(w.ok){const S=await w.json();b=S.natsWsUrl??b,v=S.natsToken??null}}catch{console.warn("[lt-transport] failed to fetch NATS credentials")}l({url:b,token:v})}r(m==="nats"?"nats":"socketio")}}catch(y){console.warn("[lt-transport] settings fetch error, falling back to socketio",y),c||r("socketio")}}return d(),()=>{c=!0}},[]),t==="nats"?p.jsx(a2,{url:s.url,token:s.token,children:i}):t==="socketio"?p.jsx(tO,{children:i}):p.jsx(p.Fragment,{children:i})}const zd="lt_view_as",Id="lt_ai_override",vd="lt_graph_enabled",$d="lt_scan_override";function Kb(){try{const i=localStorage.getItem(Id);if(i==="true")return!0;if(i==="false")return!1}catch{}return null}function rO(i){try{localStorage.setItem(Id,String(i))}catch{}}function iO(){try{localStorage.removeItem(Id)}catch{}}function Hd(){try{const i=localStorage.getItem(zd);if(i==="admin"||i==="engineer"||i==="operator")return i}catch{}return null}function sO(i){try{localStorage.setItem(zd,i)}catch{}window.location.reload()}function xd(){try{localStorage.removeItem(zd)}catch{}window.location.reload()}function Xb(){try{return localStorage.getItem(vd)==="true"}catch{return!1}}function aO(i){try{i?localStorage.setItem(vd,"true"):localStorage.removeItem(vd)}catch{}}function Jb(){try{const i=localStorage.getItem($d);if(i==="true")return!0;if(i==="false")return!1}catch{}return null}function oO(i){try{localStorage.setItem($d,String(i))}catch{}}function lO(){try{localStorage.removeItem($d)}catch{}}function Qb(){const{isSuperAdmin:i,hasRoleType:t,hasRole:r}=Ft(),s=Hd(),l=i||r("engineer"),c=t("admin"),d=i||t("admin");return{isBuilder:s?!1:l,isOps:s?s==="admin"||s==="engineer":c,canBulk:s?s==="admin":d,viewAs:s,realIsBuilder:l}}function Zb(){var f;const{isSuperAdmin:i,hasRoleType:t,hasRole:r}=Ft(),{data:s}=Wn(),l=((f=s==null?void 0:s.features)==null?void 0:f.publicPaceBoard)!==!1,c=i?"superadmin":t("admin")?"admin":r("engineer")?"engineer":"operator",d=Hd(),g=d==="admin"||d==="engineer"||d==="operator"?d:null,y=g??c;return{tier:y,realTier:c,viewAs:g,canSeePaceBoard:l||y==="superadmin"||y==="admin",canSeeWorkflows:y==="superadmin"||y==="engineer",showTaskQueueCards:y==="operator"&&!l}}function Wb(i){return(i??"").replace(/[^A-Za-z0-9_-]+/g,"-").replace(/^-+|-+$/g,"")||"none"}function _d(i={}){const t=i.role?Wb(i.role):"*",r=i.id??"*",s=i.verb??">";return`${Rb}.system.escalation.${t}.${r}.${s}`}function Ay(i){return i.verbs.map(t=>_d({role:i.role,verb:t}))}function Gd(i){const{user:t,isSuperAdmin:r,hasRoleType:s}=Ft(),l=r||s("admin"),c=((t==null?void 0:t.roles)??[]).map(g=>g.role).sort().join(","),d=(i??[]).join(",");return j.useMemo(()=>{const g=d?d.split(","):null;return l||!c?g?Ay({verbs:g}):[_d({})]:c.split(",").flatMap(y=>g?Ay({role:y,verbs:g}):[_d({role:y})])},[l,c,d])}const wd="/escalations/detail/";function cO(i){return i.startsWith(wd)&&i.slice(wd.length).split("/")[0]||void 0}function uO(){const{user:i}=Ft(),t=go(),r=gn(),s=j.useRef(r.pathname);s.current=r.pathname;const l=j.useRef(i==null?void 0:i.userId);l.current=i==null?void 0:i.userId;const c=j.useCallback(d=>{var b,v,_;if((d==null?void 0:d.assignedAtCreation)!==!0)return;const g=(d==null?void 0:d.escalationId)??((b=d==null?void 0:d.data)==null?void 0:b.id),y=(v=d==null?void 0:d.data)==null?void 0:v.assigned_to,f=(_=d==null?void 0:d.data)==null?void 0:_.parent_id;if(!g||y!==l.current||!f||f!==cO(s.current))return;const m=`${wd}${g}`;s.current!==m&&t(m)},[t]);Dd(Gd(["claimed"]),c)}function fO(){return dt({queryKey:["roles"],queryFn:()=>_e("/roles")})}function ev(i){return dt({queryKey:["roles","details"],queryFn:()=>_e("/roles/details"),enabled:(i==null?void 0:i.enabled)??!0})}function A3(i,t,r=!0){return dt({queryKey:["roles",i,"schema",t??"latest"],queryFn:()=>_e(`/roles/${encodeURIComponent(i)}/schema${t!=null?`?version=${t}`:""}`),enabled:r&&!!i})}function j3(i){return dt({queryKey:["roles",i,"schema-versions"],queryFn:()=>_e(`/roles/${encodeURIComponent(i)}/schema/versions`),enabled:!!i})}function N3(i,t,r=!0){return dt({queryKey:["roles",i,"list-schema",t??"latest"],queryFn:()=>_e(`/roles/${encodeURIComponent(i)}/list-schema${t!=null?`?version=${t}`:""}`),enabled:r&&!!i})}function T3(i){return dt({queryKey:["roles",i,"list-schema-versions"],queryFn:()=>_e(`/roles/${encodeURIComponent(i)}/list-schema/versions`),enabled:!!i})}function k3(){const i=rt();return mt({mutationFn:t=>_e("/roles",{method:"POST",body:JSON.stringify({role:t})}),onSuccess:()=>{i.invalidateQueries({queryKey:["roles"]})}})}function C3(){const i=rt();return mt({mutationFn:({role:t,...r})=>_e(`/roles/${encodeURIComponent(t)}`,{method:"PATCH",body:JSON.stringify(r)}),onMutate:async({role:t,...r})=>{await i.cancelQueries({queryKey:["roles","details"]});const s=i.getQueryData(["roles","details"]);return s&&i.setQueryData(["roles","details"],{roles:s.roles.map(l=>l.role===t?{...l,...r}:l)}),{previous:s}},onError:(t,r,s)=>{s!=null&&s.previous&&i.setQueryData(["roles","details"],s.previous)},onSuccess:()=>{i.invalidateQueries({queryKey:["roles"]})}})}function M3(){const i=rt();return mt({mutationFn:t=>_e(`/roles/${encodeURIComponent(t)}`,{method:"DELETE"}),onSuccess:()=>{i.invalidateQueries({queryKey:["roles"]})}})}function hO(){const{user:i}=Ft(),{data:t}=ev();return j.useMemo(()=>{var c,d;const r=(i==null?void 0:i.roles)??[],s=r.length===1?r[0]:null;if(!s||s.type!=="member")return{kiosk:!1,role:null,homePath:null};const l=(c=t==null?void 0:t.roles)==null?void 0:c.find(g=>g.role===s.role);return((d=l==null?void 0:l.properties)==null?void 0:d.kiosk)!==!0?{kiosk:!1,role:null,homePath:null}:{kiosk:!0,role:s.role,homePath:`/escalations/available?role=${encodeURIComponent(s.role)}&status=available`}},[i,t])}const dO=["/escalations","/scan","/login"];function mO(i){return dO.some(t=>i===t||i.startsWith(`${t}/`)||i.startsWith(`${t}?`))}const Fd=j.createContext(null),Gh="lt_sidebar_collapsed",tv="(max-width: 1023px)";function pO(){try{return window.matchMedia(tv).matches}catch{return!1}}function gO({children:i}){const[t,r]=j.useState(()=>{if(pO())return!0;try{return localStorage.getItem(Gh)==="true"}catch{return!1}});j.useEffect(()=>{let l;try{l=window.matchMedia(tv)}catch{return}const c=d=>{if(d.matches)r(!0);else try{r(localStorage.getItem(Gh)==="true")}catch{r(!1)}};return l.addEventListener("change",c),()=>l.removeEventListener("change",c)},[]);const s=j.useCallback(()=>{r(l=>{const c=!l;try{localStorage.setItem(Gh,String(c))}catch{}return c})},[]);return p.jsx(Fd.Provider,{value:{collapsed:t,toggle:s},children:i})}function yO({children:i}){return p.jsx(Fd.Provider,{value:{collapsed:!1,toggle:()=>{}},children:i})}function Vd(){const i=j.useContext(Fd);if(!i)throw new Error("useSidebar must be used within SidebarProvider");return i}const jy=380,Yd=j.createContext(null);function bO({children:i}){const[t,r]=j.useState({node:null,width:jy,open:!1,ownerKey:null}),s=gn(),l=j.useRef(s.pathname),c=j.useCallback((g,y)=>{r({node:g,width:(y==null?void 0:y.width)??jy,open:!0,ownerKey:(y==null?void 0:y.key)??null})},[]),d=j.useCallback(g=>{r(y=>typeof g=="string"&&y.ownerKey!==g?y:{...y,open:!1})},[]);return j.useEffect(()=>{s.pathname!==l.current&&(l.current=s.pathname,r(g=>g.open||g.node?{...g,node:null,open:!1,ownerKey:null}:g))},[s.pathname]),p.jsx(Yd.Provider,{value:{...t,setPanel:c,closePanel:d},children:i})}function Kd(){const i=j.useContext(Yd);if(!i)throw new Error("useShellPanel must be used within ShellPanelProvider");return i}function R3(){return j.useContext(Yd)}function vO({open:i,width:t=380,children:r,className:s=""}){const[l,c]=j.useState(i);return j.useEffect(()=>{i&&c(!0)},[i]),p.jsx("div",{className:`shrink-0 overflow-hidden transition-[width] duration-300 ease-out ${s}`,style:{width:i?t:0,maxWidth:"50%"},onTransitionEnd:d=>{!i&&d.propertyName==="width"&&c(!1)},children:p.jsx("div",{style:{width:t},className:"h-full",children:l?r:null})})}function D3({label:i,children:t}){return p.jsxs("div",{children:[p.jsx("dt",{className:"text-2xs font-medium text-text-secondary uppercase tracking-wide",children:i}),p.jsx("dd",{className:"text-xs text-text-primary mt-0.5",children:t})]})}function q3({views:i,activeId:t,onViewChange:r,onClose:s,headerActions:l,stickyClassName:c,labelInline:d}){const g=i.find(y=>y.id===t)??i[0];return g?p.jsx("div",{className:"h-full bg-surface-hover",children:p.jsxs("div",{className:`flex flex-col ${c??"sticky top-0 z-10 max-h-[calc(100vh-3.5rem)]"}`,children:[p.jsxs("div",{className:`flex items-center justify-between pl-4 pr-3 shrink-0 ${d?"pt-10 pb-2":"pt-3"}`,children:[p.jsxs("div",{className:"flex items-center gap-2 min-w-0",children:[p.jsx("div",{className:"flex items-center gap-1 shrink-0",role:"radiogroup","aria-label":"Panel view",children:i.map(y=>{const f=y.icon,m=y.id===g.id;return p.jsx("button",{role:"radio","aria-checked":m,onClick:()=>r(y.id),title:y.label,className:`p-1.5 rounded-md transition-colors ${m?"bg-accent/10 text-accent":"text-accent/60 hover:text-accent hover:bg-surface-hover"}`,children:p.jsx(f,{className:"w-3.5 h-3.5"})},y.id)})}),d&&p.jsx("span",{className:"text-2xs font-semibold uppercase tracking-widest text-text-secondary truncate",children:g.label})]}),p.jsxs("div",{className:"flex items-center gap-1 shrink-0",children:[l,s&&p.jsx("button",{onClick:s,title:"Close panel",className:"p-1 rounded text-accent/60 hover:text-accent hover:bg-surface-hover transition-colors",children:p.jsx(Gt,{className:"w-3.5 h-3.5"})})]})]}),!d&&p.jsx("p",{className:"px-5 pt-2 pb-1 text-2xs font-semibold uppercase tracking-widest text-text-secondary shrink-0",children:g.label}),p.jsx("div",{className:`flex-1 overflow-y-auto px-5 ${d?"pt-4 pb-8":"pb-5 pt-1"}`,children:g.content})]})}):null}function nv(i,t){var r,s,l,c,d;t.facets&&Object.keys(t.facets).length&&i.set("facets",JSON.stringify(t.facets)),(r=t.block)!=null&&r.length&&i.set("block",JSON.stringify(t.block)),(s=t.range)!=null&&s.length&&i.set("range",JSON.stringify(t.range)),(l=t.exists)!=null&&l.length&&i.set("exists",JSON.stringify(t.exists)),(c=t.roles)!=null&&c.length&&i.set("roles",JSON.stringify(t.roles)),(d=t.orderBy)!=null&&d.length&&i.set("orderBy",JSON.stringify(t.orderBy)),t.available!==void 0&&i.set("available",String(t.available)),t.jeopardy===!0&&i.set("jeopardy","1"),t.include&&i.set("include",t.include)}function B3(i,t){const r=i??"24h";return dt({queryKey:["stationMetrics",r],queryFn:()=>_e(`/escalations/station-metrics?period=${r}`),staleTime:5e3,enabled:(t==null?void 0:t.enabled)??!0})}function L3(i){const t=i?`?period=${i}`:"";return dt({queryKey:["escalationStats",i],queryFn:()=>_e(`/escalations/stats${t}`)})}function P3(){return dt({queryKey:["escalationTypes"],queryFn:()=>_e("/escalations/types")})}function U3(i=!0){return dt({queryKey:["escalationFacetKeys"],queryFn:()=>_e("/escalations/facet-keys"),enabled:i,staleTime:6e4})}function rv(i){const{enabled:t=!0,staleTime:r,...s}=i,l=new URLSearchParams;return s.status&&l.set("status",s.status),s.role&&l.set("role",s.role),s.type&&l.set("type",s.type),s.subtype&&l.set("subtype",s.subtype),s.assigned_to&&l.set("assigned_to",s.assigned_to),s.parent_id&&l.set("parent_id",s.parent_id),s.claimed&&l.set("claimed","true"),s.priority&&l.set("priority",String(s.priority)),s.limit&&l.set("limit",String(s.limit)),s.offset!==void 0&&l.set("offset",String(s.offset)),s.sort_by&&l.set("sort_by",s.sort_by),s.order&&l.set("order",s.order),s.search&&l.set("search",s.search),nv(l,s),dt({queryKey:["escalations",s],queryFn:()=>_e(`/escalations?${l}`),enabled:t,...r!==void 0?{staleTime:r}:{}})}function iv(i){const{enabled:t=!0,staleTime:r,...s}=i,l=new URLSearchParams;return s.role&&l.set("role",s.role),s.type&&l.set("type",s.type),s.subtype&&l.set("subtype",s.subtype),s.priority&&l.set("priority",String(s.priority)),s.limit&&l.set("limit",String(s.limit)),s.offset!==void 0&&l.set("offset",String(s.offset)),s.sort_by&&l.set("sort_by",s.sort_by),s.order&&l.set("order",s.order),s.search&&l.set("search",s.search),nv(l,s),dt({queryKey:["escalations","available",s],queryFn:()=>_e(`/escalations/available?${l}`),enabled:t,...r!==void 0?{staleTime:r}:{}})}function z3(i){return dt({queryKey:["escalations","by-workflow",i],queryFn:()=>_e(`/escalations/by-workflow/${i}`),enabled:!!i})}function I3(i){return dt({queryKey:["escalations",i],queryFn:()=>_e(`/escalations/${i}`),enabled:!!i})}function $3(){const i=rt();return mt({mutationFn:({id:t,durationMinutes:r})=>_e(`/escalations/${t}/claim`,{method:"POST",body:JSON.stringify({durationMinutes:r})}),onSuccess:()=>{i.resetQueries({queryKey:["escalations"]}),i.resetQueries({queryKey:["escalationStats"]})}})}function H3(){const i=rt();return mt({mutationFn:t=>_e(`/escalations/${t}/release`,{method:"POST"}),onSuccess:()=>{i.resetQueries({queryKey:["escalations"]}),i.resetQueries({queryKey:["escalationStats"]})}})}function G3(){const i=rt();return mt({mutationFn:({id:t,resolverPayload:r})=>_e(`/escalations/${t}/resolve`,{method:"POST",body:JSON.stringify({resolverPayload:r})}),onSuccess:()=>{i.resetQueries({queryKey:["escalations"]}),i.resetQueries({queryKey:["escalationStats"]}),i.resetQueries({queryKey:["tasks"]}),i.resetQueries({queryKey:["jobs"]})}})}function F3(){const i=rt();return mt({mutationFn:({id:t,targetRole:r})=>_e(`/escalations/${t}/escalate`,{method:"PATCH",body:JSON.stringify({targetRole:r})}),onSuccess:()=>{i.resetQueries({queryKey:["escalations"]}),i.resetQueries({queryKey:["escalationStats"]})}})}function V3(){const i=rt();return mt({mutationFn:({ids:t,priority:r})=>_e("/escalations/priority",{method:"PATCH",body:JSON.stringify({ids:t,priority:r})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function Y3(){const i=rt();return mt({mutationFn:({ids:t,durationMinutes:r})=>_e("/escalations/bulk-claim",{method:"POST",body:JSON.stringify({ids:t,durationMinutes:r})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function K3(){const i=rt();return mt({mutationFn:({ids:t,targetUserId:r,durationMinutes:s,reassign:l})=>_e("/escalations/bulk-assign",{method:"POST",body:JSON.stringify({ids:t,targetUserId:r,durationMinutes:s,...l?{reassign:!0}:{}})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function X3(){const i=rt();return mt({mutationFn:({ids:t})=>_e("/escalations/bulk-unassign",{method:"POST",body:JSON.stringify({ids:t})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function J3(){const i=rt();return mt({mutationFn:({ids:t,hint:r})=>_e("/escalations/bulk-triage",{method:"POST",body:JSON.stringify({ids:t,...r?{hint:r}:{}})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function Q3(){const i=rt();return mt({mutationFn:t=>_e(`/escalations/${t}/cancel`,{method:"POST"}),onSuccess:()=>{i.resetQueries({queryKey:["escalations"]}),i.resetQueries({queryKey:["escalationStats"]})}})}function Z3(){const i=rt();return mt({mutationFn:({ids:t})=>_e("/escalations/bulk-cancel",{method:"POST",body:JSON.stringify({ids:t})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function xO(){const{user:i}=Ft(),t=i==null?void 0:i.userId,r=rt(),s=j.useRef(null),l=j.useCallback(()=>{s.current||(s.current=setTimeout(()=>{s.current=null,r.invalidateQueries({queryKey:["escalations"]})},15e3))},[r]);Dd(Gd(),l);const{data:c}=iv({limit:1}),{data:d}=rv({assigned_to:t,status:"pending",limit:1});return{available:(c==null?void 0:c.total)??0,mine:(d==null?void 0:d.total)??0}}function nu({size:i="sm",hideLabel:t=!1,className:r="",appName:s="LongTail",variant:l="full"}){const c=i==="lg";if(l==="comet")return p.jsx("div",{className:`relative overflow-visible ${r}`,style:{width:"2.5rem",height:"2.5rem",flexShrink:0},children:p.jsx("span",{role:"img","aria-label":s,className:"logo-mark absolute pointer-events-none select-none",style:{"--logo-url":`url(${Tt}/logo512.png)`,width:"82px",height:"82px",top:"-12px",left:"-80px",transform:"rotate(232deg)",zIndex:-1,opacity:.55}})});if(l==="mark")return p.jsx("div",{className:`flex items-center ${r}`,children:p.jsx("span",{role:"img","aria-label":s,className:"logo-mark shrink-0 w-7 h-7",style:{"--logo-url":`url(${Tt}/logo512.png)`}})});const d=c?"w-[16rem] h-[16rem] -rotate-[120deg] opacity-55 -ml-10":"w-[12.5rem] h-[12.5rem] -rotate-[120deg] opacity-55 -ml-8",g=c?"text-[44px] font-normal text-text-primary tracking-[0.15em] -ml-[12.5rem]":"text-[36px] font-normal text-text-primary tracking-[0.15em] -ml-[9.75rem]";return p.jsxs("div",{className:`flex items-center ${r}`,style:{height:"50px"},children:[p.jsx("span",{role:"img","aria-label":s,className:`logo-mark shrink-0 z-0 ${d}`,style:{"--logo-url":`url(${Tt}/logo512.png)`}}),p.jsx("span",{className:`z-[1] transition-opacity duration-300 ${g} ${t?"opacity-0":""}`,children:s})]})}const _O="system.surfaces.dashboard",wO=`${Rb}.${_O}`;function sv(i=!0){return dt({queryKey:["announcements"],queryFn:()=>_e("/announcements"),enabled:i,staleTime:3e4})}function SO(){const i=rt();return mt({mutationFn:t=>_e("/announcements",{method:"POST",body:JSON.stringify(t)}),onSuccess:()=>{i.invalidateQueries({queryKey:["announcements"]})}})}function EO(){const i=rt();return mt({mutationFn:t=>_e(`/announcements/${encodeURIComponent(t)}`,{method:"DELETE"}),onSuccess:()=>{i.invalidateQueries({queryKey:["announcements"]})}})}const av=6048e5,OO=864e5,Ny=6e4,Ty=525600,ky=43200,Cy=1440,My=Symbol.for("constructDateFrom");function Or(i,t){return typeof i=="function"?i(t):i&&typeof i=="object"&&My in i?i[My](t):i instanceof Date?new i.constructor(t):new Date(t)}function pn(i,t){return Or(t||i,i)}let AO={};function vo(){return AO}function po(i,t){var g,y,f,m;const r=vo(),s=(t==null?void 0:t.weekStartsOn)??((y=(g=t==null?void 0:t.locale)==null?void 0:g.options)==null?void 0:y.weekStartsOn)??r.weekStartsOn??((m=(f=r.locale)==null?void 0:f.options)==null?void 0:m.weekStartsOn)??0,l=pn(i,t==null?void 0:t.in),c=l.getDay(),d=(c<s?7:0)+c-s;return l.setDate(l.getDate()-d),l.setHours(0,0,0,0),l}function ru(i,t){return po(i,{...t,weekStartsOn:1})}function ov(i,t){const r=pn(i,t==null?void 0:t.in),s=r.getFullYear(),l=Or(r,0);l.setFullYear(s+1,0,4),l.setHours(0,0,0,0);const c=ru(l),d=Or(r,0);d.setFullYear(s,0,4),d.setHours(0,0,0,0);const g=ru(d);return r.getTime()>=c.getTime()?s+1:r.getTime()>=g.getTime()?s:s-1}function iu(i){const t=pn(i),r=new Date(Date.UTC(t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()));return r.setUTCFullYear(t.getFullYear()),+i-+r}function lv(i,...t){const r=Or.bind(null,i||t.find(s=>typeof s=="object"));return t.map(r)}function Ry(i,t){const r=pn(i,t==null?void 0:t.in);return r.setHours(0,0,0,0),r}function jO(i,t,r){const[s,l]=lv(r==null?void 0:r.in,i,t),c=Ry(s),d=Ry(l),g=+c-iu(c),y=+d-iu(d);return Math.round((g-y)/OO)}function NO(i,t){const r=ov(i,t),s=Or(i,0);return s.setFullYear(r,0,4),s.setHours(0,0,0,0),ru(s)}function TO(i,t){const r=+pn(i)-+pn(t);return r<0?-1:r>0?1:r}function kO(i){return Or(i,Date.now())}function CO(i){return i instanceof Date||typeof i=="object"&&Object.prototype.toString.call(i)==="[object Date]"}function MO(i){return!(!CO(i)&&typeof i!="number"||isNaN(+pn(i)))}function RO(i){return t=>{const s=(i?Math[i]:Math.trunc)(t);return s===0?0:s}}function DO(i,t){const r=pn(i,t==null?void 0:t.in);return r.setFullYear(r.getFullYear(),0,1),r.setHours(0,0,0,0),r}const qO={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},BO=(i,t,r)=>{let s;const l=qO[i];return typeof l=="string"?s=l:t===1?s=l.one:s=l.other.replace("{{count}}",t.toString()),r!=null&&r.addSuffix?r.comparison&&r.comparison>0?"in "+s:s+" ago":s};function Fh(i){return(t={})=>{const r=t.width?String(t.width):i.defaultWidth;return i.formats[r]||i.formats[i.defaultWidth]}}const LO={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},PO={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},UO={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},zO={date:Fh({formats:LO,defaultWidth:"full"}),time:Fh({formats:PO,defaultWidth:"full"}),dateTime:Fh({formats:UO,defaultWidth:"full"})},IO={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},$O=(i,t,r,s)=>IO[i];function Ka(i){return(t,r)=>{const s=r!=null&&r.context?String(r.context):"standalone";let l;if(s==="formatting"&&i.formattingValues){const d=i.defaultFormattingWidth||i.defaultWidth,g=r!=null&&r.width?String(r.width):d;l=i.formattingValues[g]||i.formattingValues[d]}else{const d=i.defaultWidth,g=r!=null&&r.width?String(r.width):i.defaultWidth;l=i.values[g]||i.values[d]}const c=i.argumentCallback?i.argumentCallback(t):t;return l[c]}}const HO={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},GO={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},FO={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},VO={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},YO={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},KO={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},XO=(i,t)=>{const r=Number(i),s=r%100;if(s>20||s<10)switch(s%10){case 1:return r+"st";case 2:return r+"nd";case 3:return r+"rd"}return r+"th"},JO={ordinalNumber:XO,era:Ka({values:HO,defaultWidth:"wide"}),quarter:Ka({values:GO,defaultWidth:"wide",argumentCallback:i=>i-1}),month:Ka({values:FO,defaultWidth:"wide"}),day:Ka({values:VO,defaultWidth:"wide"}),dayPeriod:Ka({values:YO,defaultWidth:"wide",formattingValues:KO,defaultFormattingWidth:"wide"})};function Xa(i){return(t,r={})=>{const s=r.width,l=s&&i.matchPatterns[s]||i.matchPatterns[i.defaultMatchWidth],c=t.match(l);if(!c)return null;const d=c[0],g=s&&i.parsePatterns[s]||i.parsePatterns[i.defaultParseWidth],y=Array.isArray(g)?ZO(g,b=>b.test(d)):QO(g,b=>b.test(d));let f;f=i.valueCallback?i.valueCallback(y):y,f=r.valueCallback?r.valueCallback(f):f;const m=t.slice(d.length);return{value:f,rest:m}}}function QO(i,t){for(const r in i)if(Object.prototype.hasOwnProperty.call(i,r)&&t(i[r]))return r}function ZO(i,t){for(let r=0;r<i.length;r++)if(t(i[r]))return r}function WO(i){return(t,r={})=>{const s=t.match(i.matchPattern);if(!s)return null;const l=s[0],c=t.match(i.parsePattern);if(!c)return null;let d=i.valueCallback?i.valueCallback(c[0]):c[0];d=r.valueCallback?r.valueCallback(d):d;const g=t.slice(l.length);return{value:d,rest:g}}}const eA=/^(\d+)(th|st|nd|rd)?/i,tA=/\d+/i,nA={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},rA={any:[/^b/i,/^(a|c)/i]},iA={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},sA={any:[/1/i,/2/i,/3/i,/4/i]},aA={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},oA={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},lA={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},cA={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},uA={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},fA={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},hA={ordinalNumber:WO({matchPattern:eA,parsePattern:tA,valueCallback:i=>parseInt(i,10)}),era:Xa({matchPatterns:nA,defaultMatchWidth:"wide",parsePatterns:rA,defaultParseWidth:"any"}),quarter:Xa({matchPatterns:iA,defaultMatchWidth:"wide",parsePatterns:sA,defaultParseWidth:"any",valueCallback:i=>i+1}),month:Xa({matchPatterns:aA,defaultMatchWidth:"wide",parsePatterns:oA,defaultParseWidth:"any"}),day:Xa({matchPatterns:lA,defaultMatchWidth:"wide",parsePatterns:cA,defaultParseWidth:"any"}),dayPeriod:Xa({matchPatterns:uA,defaultMatchWidth:"any",parsePatterns:fA,defaultParseWidth:"any"})},cv={code:"en-US",formatDistance:BO,formatLong:zO,formatRelative:$O,localize:JO,match:hA,options:{weekStartsOn:0,firstWeekContainsDate:1}};function dA(i,t){const r=pn(i,t==null?void 0:t.in);return jO(r,DO(r))+1}function mA(i,t){const r=pn(i,t==null?void 0:t.in),s=+ru(r)-+NO(r);return Math.round(s/av)+1}function uv(i,t){var m,b,v,_;const r=pn(i,t==null?void 0:t.in),s=r.getFullYear(),l=vo(),c=(t==null?void 0:t.firstWeekContainsDate)??((b=(m=t==null?void 0:t.locale)==null?void 0:m.options)==null?void 0:b.firstWeekContainsDate)??l.firstWeekContainsDate??((_=(v=l.locale)==null?void 0:v.options)==null?void 0:_.firstWeekContainsDate)??1,d=Or((t==null?void 0:t.in)||i,0);d.setFullYear(s+1,0,c),d.setHours(0,0,0,0);const g=po(d,t),y=Or((t==null?void 0:t.in)||i,0);y.setFullYear(s,0,c),y.setHours(0,0,0,0);const f=po(y,t);return+r>=+g?s+1:+r>=+f?s:s-1}function pA(i,t){var g,y,f,m;const r=vo(),s=(t==null?void 0:t.firstWeekContainsDate)??((y=(g=t==null?void 0:t.locale)==null?void 0:g.options)==null?void 0:y.firstWeekContainsDate)??r.firstWeekContainsDate??((m=(f=r.locale)==null?void 0:f.options)==null?void 0:m.firstWeekContainsDate)??1,l=uv(i,t),c=Or((t==null?void 0:t.in)||i,0);return c.setFullYear(l,0,s),c.setHours(0,0,0,0),po(c,t)}function gA(i,t){const r=pn(i,t==null?void 0:t.in),s=+po(r,t)-+pA(r,t);return Math.round(s/av)+1}function Ye(i,t){const r=i<0?"-":"",s=Math.abs(i).toString().padStart(t,"0");return r+s}const ri={y(i,t){const r=i.getFullYear(),s=r>0?r:1-r;return Ye(t==="yy"?s%100:s,t.length)},M(i,t){const r=i.getMonth();return t==="M"?String(r+1):Ye(r+1,2)},d(i,t){return Ye(i.getDate(),t.length)},a(i,t){const r=i.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return r.toUpperCase();case"aaa":return r;case"aaaaa":return r[0];case"aaaa":default:return r==="am"?"a.m.":"p.m."}},h(i,t){return Ye(i.getHours()%12||12,t.length)},H(i,t){return Ye(i.getHours(),t.length)},m(i,t){return Ye(i.getMinutes(),t.length)},s(i,t){return Ye(i.getSeconds(),t.length)},S(i,t){const r=t.length,s=i.getMilliseconds(),l=Math.trunc(s*Math.pow(10,r-3));return Ye(l,t.length)}},Cs={midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},Dy={G:function(i,t,r){const s=i.getFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return r.era(s,{width:"abbreviated"});case"GGGGG":return r.era(s,{width:"narrow"});case"GGGG":default:return r.era(s,{width:"wide"})}},y:function(i,t,r){if(t==="yo"){const s=i.getFullYear(),l=s>0?s:1-s;return r.ordinalNumber(l,{unit:"year"})}return ri.y(i,t)},Y:function(i,t,r,s){const l=uv(i,s),c=l>0?l:1-l;if(t==="YY"){const d=c%100;return Ye(d,2)}return t==="Yo"?r.ordinalNumber(c,{unit:"year"}):Ye(c,t.length)},R:function(i,t){const r=ov(i);return Ye(r,t.length)},u:function(i,t){const r=i.getFullYear();return Ye(r,t.length)},Q:function(i,t,r){const s=Math.ceil((i.getMonth()+1)/3);switch(t){case"Q":return String(s);case"QQ":return Ye(s,2);case"Qo":return r.ordinalNumber(s,{unit:"quarter"});case"QQQ":return r.quarter(s,{width:"abbreviated",context:"formatting"});case"QQQQQ":return r.quarter(s,{width:"narrow",context:"formatting"});case"QQQQ":default:return r.quarter(s,{width:"wide",context:"formatting"})}},q:function(i,t,r){const s=Math.ceil((i.getMonth()+1)/3);switch(t){case"q":return String(s);case"qq":return Ye(s,2);case"qo":return r.ordinalNumber(s,{unit:"quarter"});case"qqq":return r.quarter(s,{width:"abbreviated",context:"standalone"});case"qqqqq":return r.quarter(s,{width:"narrow",context:"standalone"});case"qqqq":default:return r.quarter(s,{width:"wide",context:"standalone"})}},M:function(i,t,r){const s=i.getMonth();switch(t){case"M":case"MM":return ri.M(i,t);case"Mo":return r.ordinalNumber(s+1,{unit:"month"});case"MMM":return r.month(s,{width:"abbreviated",context:"formatting"});case"MMMMM":return r.month(s,{width:"narrow",context:"formatting"});case"MMMM":default:return r.month(s,{width:"wide",context:"formatting"})}},L:function(i,t,r){const s=i.getMonth();switch(t){case"L":return String(s+1);case"LL":return Ye(s+1,2);case"Lo":return r.ordinalNumber(s+1,{unit:"month"});case"LLL":return r.month(s,{width:"abbreviated",context:"standalone"});case"LLLLL":return r.month(s,{width:"narrow",context:"standalone"});case"LLLL":default:return r.month(s,{width:"wide",context:"standalone"})}},w:function(i,t,r,s){const l=gA(i,s);return t==="wo"?r.ordinalNumber(l,{unit:"week"}):Ye(l,t.length)},I:function(i,t,r){const s=mA(i);return t==="Io"?r.ordinalNumber(s,{unit:"week"}):Ye(s,t.length)},d:function(i,t,r){return t==="do"?r.ordinalNumber(i.getDate(),{unit:"date"}):ri.d(i,t)},D:function(i,t,r){const s=dA(i);return t==="Do"?r.ordinalNumber(s,{unit:"dayOfYear"}):Ye(s,t.length)},E:function(i,t,r){const s=i.getDay();switch(t){case"E":case"EE":case"EEE":return r.day(s,{width:"abbreviated",context:"formatting"});case"EEEEE":return r.day(s,{width:"narrow",context:"formatting"});case"EEEEEE":return r.day(s,{width:"short",context:"formatting"});case"EEEE":default:return r.day(s,{width:"wide",context:"formatting"})}},e:function(i,t,r,s){const l=i.getDay(),c=(l-s.weekStartsOn+8)%7||7;switch(t){case"e":return String(c);case"ee":return Ye(c,2);case"eo":return r.ordinalNumber(c,{unit:"day"});case"eee":return r.day(l,{width:"abbreviated",context:"formatting"});case"eeeee":return r.day(l,{width:"narrow",context:"formatting"});case"eeeeee":return r.day(l,{width:"short",context:"formatting"});case"eeee":default:return r.day(l,{width:"wide",context:"formatting"})}},c:function(i,t,r,s){const l=i.getDay(),c=(l-s.weekStartsOn+8)%7||7;switch(t){case"c":return String(c);case"cc":return Ye(c,t.length);case"co":return r.ordinalNumber(c,{unit:"day"});case"ccc":return r.day(l,{width:"abbreviated",context:"standalone"});case"ccccc":return r.day(l,{width:"narrow",context:"standalone"});case"cccccc":return r.day(l,{width:"short",context:"standalone"});case"cccc":default:return r.day(l,{width:"wide",context:"standalone"})}},i:function(i,t,r){const s=i.getDay(),l=s===0?7:s;switch(t){case"i":return String(l);case"ii":return Ye(l,t.length);case"io":return r.ordinalNumber(l,{unit:"day"});case"iii":return r.day(s,{width:"abbreviated",context:"formatting"});case"iiiii":return r.day(s,{width:"narrow",context:"formatting"});case"iiiiii":return r.day(s,{width:"short",context:"formatting"});case"iiii":default:return r.day(s,{width:"wide",context:"formatting"})}},a:function(i,t,r){const l=i.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return r.dayPeriod(l,{width:"abbreviated",context:"formatting"});case"aaa":return r.dayPeriod(l,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return r.dayPeriod(l,{width:"narrow",context:"formatting"});case"aaaa":default:return r.dayPeriod(l,{width:"wide",context:"formatting"})}},b:function(i,t,r){const s=i.getHours();let l;switch(s===12?l=Cs.noon:s===0?l=Cs.midnight:l=s/12>=1?"pm":"am",t){case"b":case"bb":return r.dayPeriod(l,{width:"abbreviated",context:"formatting"});case"bbb":return r.dayPeriod(l,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return r.dayPeriod(l,{width:"narrow",context:"formatting"});case"bbbb":default:return r.dayPeriod(l,{width:"wide",context:"formatting"})}},B:function(i,t,r){const s=i.getHours();let l;switch(s>=17?l=Cs.evening:s>=12?l=Cs.afternoon:s>=4?l=Cs.morning:l=Cs.night,t){case"B":case"BB":case"BBB":return r.dayPeriod(l,{width:"abbreviated",context:"formatting"});case"BBBBB":return r.dayPeriod(l,{width:"narrow",context:"formatting"});case"BBBB":default:return r.dayPeriod(l,{width:"wide",context:"formatting"})}},h:function(i,t,r){if(t==="ho"){let s=i.getHours()%12;return s===0&&(s=12),r.ordinalNumber(s,{unit:"hour"})}return ri.h(i,t)},H:function(i,t,r){return t==="Ho"?r.ordinalNumber(i.getHours(),{unit:"hour"}):ri.H(i,t)},K:function(i,t,r){const s=i.getHours()%12;return t==="Ko"?r.ordinalNumber(s,{unit:"hour"}):Ye(s,t.length)},k:function(i,t,r){let s=i.getHours();return s===0&&(s=24),t==="ko"?r.ordinalNumber(s,{unit:"hour"}):Ye(s,t.length)},m:function(i,t,r){return t==="mo"?r.ordinalNumber(i.getMinutes(),{unit:"minute"}):ri.m(i,t)},s:function(i,t,r){return t==="so"?r.ordinalNumber(i.getSeconds(),{unit:"second"}):ri.s(i,t)},S:function(i,t){return ri.S(i,t)},X:function(i,t,r){const s=i.getTimezoneOffset();if(s===0)return"Z";switch(t){case"X":return By(s);case"XXXX":case"XX":return Ui(s);case"XXXXX":case"XXX":default:return Ui(s,":")}},x:function(i,t,r){const s=i.getTimezoneOffset();switch(t){case"x":return By(s);case"xxxx":case"xx":return Ui(s);case"xxxxx":case"xxx":default:return Ui(s,":")}},O:function(i,t,r){const s=i.getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+qy(s,":");case"OOOO":default:return"GMT"+Ui(s,":")}},z:function(i,t,r){const s=i.getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+qy(s,":");case"zzzz":default:return"GMT"+Ui(s,":")}},t:function(i,t,r){const s=Math.trunc(+i/1e3);return Ye(s,t.length)},T:function(i,t,r){return Ye(+i,t.length)}};function qy(i,t=""){const r=i>0?"-":"+",s=Math.abs(i),l=Math.trunc(s/60),c=s%60;return c===0?r+String(l):r+String(l)+t+Ye(c,2)}function By(i,t){return i%60===0?(i>0?"-":"+")+Ye(Math.abs(i)/60,2):Ui(i,t)}function Ui(i,t=""){const r=i>0?"-":"+",s=Math.abs(i),l=Ye(Math.trunc(s/60),2),c=Ye(s%60,2);return r+l+t+c}const Ly=(i,t)=>{switch(i){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});case"PPPP":default:return t.date({width:"full"})}},fv=(i,t)=>{switch(i){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});case"pppp":default:return t.time({width:"full"})}},yA=(i,t)=>{const r=i.match(/(P+)(p+)?/)||[],s=r[1],l=r[2];if(!l)return Ly(i,t);let c;switch(s){case"P":c=t.dateTime({width:"short"});break;case"PP":c=t.dateTime({width:"medium"});break;case"PPP":c=t.dateTime({width:"long"});break;case"PPPP":default:c=t.dateTime({width:"full"});break}return c.replace("{{date}}",Ly(s,t)).replace("{{time}}",fv(l,t))},bA={p:fv,P:yA},vA=/^D+$/,xA=/^Y+$/,_A=["D","DD","YY","YYYY"];function wA(i){return vA.test(i)}function SA(i){return xA.test(i)}function EA(i,t,r){const s=OA(i,t,r);if(console.warn(s),_A.includes(i))throw new RangeError(s)}function OA(i,t,r){const s=i[0]==="Y"?"years":"days of the month";return`Use \`${i.toLowerCase()}\` instead of \`${i}\` (in \`${t}\`) for formatting ${s} to the input \`${r}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}const AA=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,jA=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,NA=/^'([^]*?)'?$/,TA=/''/g,kA=/[a-zA-Z]/;function Xd(i,t,r){var m,b,v,_;const s=vo(),l=s.locale??cv,c=s.firstWeekContainsDate??((b=(m=s.locale)==null?void 0:m.options)==null?void 0:b.firstWeekContainsDate)??1,d=s.weekStartsOn??((_=(v=s.locale)==null?void 0:v.options)==null?void 0:_.weekStartsOn)??0,g=pn(i,r==null?void 0:r.in);if(!MO(g))throw new RangeError("Invalid time value");let y=t.match(jA).map(w=>{const S=w[0];if(S==="p"||S==="P"){const M=bA[S];return M(w,l.formatLong)}return w}).join("").match(AA).map(w=>{if(w==="''")return{isToken:!1,value:"'"};const S=w[0];if(S==="'")return{isToken:!1,value:CA(w)};if(Dy[S])return{isToken:!0,value:w};if(S.match(kA))throw new RangeError("Format string contains an unescaped latin alphabet character `"+S+"`");return{isToken:!1,value:w}});l.localize.preprocessor&&(y=l.localize.preprocessor(g,y));const f={firstWeekContainsDate:c,weekStartsOn:d,locale:l};return y.map(w=>{if(!w.isToken)return w.value;const S=w.value;(SA(S)||wA(S))&&EA(S,t,String(i));const M=Dy[S[0]];return M(g,S,l.localize,f)}).join("")}function CA(i){const t=i.match(NA);return t?t[1].replace(TA,"'"):i}function MA(i,t,r){const s=vo(),l=(r==null?void 0:r.locale)??s.locale??cv,c=TO(i,t);if(isNaN(c))throw new RangeError("Invalid time value");const d=Object.assign({},r,{addSuffix:r==null?void 0:r.addSuffix,comparison:c}),[g,y]=lv(r==null?void 0:r.in,...c>0?[t,i]:[i,t]),f=RO((r==null?void 0:r.roundingMethod)??"round"),m=y.getTime()-g.getTime(),b=m/Ny,v=iu(y)-iu(g),_=(m-v)/Ny,w=r==null?void 0:r.unit;let S;if(w?S=w:b<1?S="second":b<60?S="minute":b<Cy?S="hour":_<ky?S="day":_<Ty?S="month":S="year",S==="second"){const M=f(m/1e3);return l.formatDistance("xSeconds",M,d)}else if(S==="minute"){const M=f(b);return l.formatDistance("xMinutes",M,d)}else if(S==="hour"){const M=f(b/60);return l.formatDistance("xHours",M,d)}else if(S==="day"){const M=f(_/Cy);return l.formatDistance("xDays",M,d)}else if(S==="month"){const M=f(_/ky);return M===12&&w!=="month"?l.formatDistance("xYears",1,d):l.formatDistance("xMonths",M,d)}else{const M=f(_/Ty);return l.formatDistance("xYears",M,d)}}function RA(i,t){return MA(i,kO(i),t)}function W3(i){return i.toLocaleString()}function ek(i){return i>=1e9?`${(i/1e9).toFixed(1).replace(/\.0$/,"")}B`:i>=1e6?`${(i/1e6).toFixed(1).replace(/\.0$/,"")}M`:i>=1e4?`${(i/1e3).toFixed(1).replace(/\.0$/,"")}K`:i.toLocaleString()}function DA(i){const t=new Date(i);return t.getTime()>Date.now()?"just now":RA(t,{addSuffix:!0})}function tk(i){const t=Date.now()-new Date(i).getTime();if(t<0)return"now";const r=Math.floor(t/1e3);if(r<60)return`${r}s`;const s=Math.floor(r/60);if(s<60)return`${s}m`;const l=Math.floor(s/60);if(l<24)return`${l}h`;const c=Math.floor(l/24);return c<7?`${c}d`:c<30?`${Math.floor(c/7)}w`:c<365?`${Math.floor(c/30)}mo`:`${Math.floor(c/365)}y`}function nk(i){return i<=0?"Expired":Jd(i)}function qA(i){return i==null?"--":Jd(i)}function rk(i){return i?Xd(new Date(i),"MMM d, yyyy h:mm a"):"--"}function Jd(i){if(i<1e3)return`${Math.round(i)}ms`;if(i<6e4){const d=i/1e3;return Number.isInteger(d)?`${d}s`:`${d.toFixed(1)}s`}const t=Math.floor(i/1e3),r=Math.floor(t/86400),s=Math.floor(t%86400/3600),l=Math.floor(t%3600/60),c=t%60;return r>0?s>0?`${r}d ${s}h`:`${r}d`:s>0?l>0?`${s}h ${l}m`:`${s}h`:c>0?`${l}m ${c}s`:`${l}m`}function ik(i,t){const r=new Date(i).getTime(),s=t?new Date(t).getTime():Date.now();return Jd(s-r)}function hv({options:i,children:t,className:r=""}){const[s,l]=j.useState(!1),[c,d]=j.useState(null),[g,y]=j.useState(null),f=j.useRef(null),m=j.useRef(void 0),b=j.useRef(void 0),v=220,_=j.useCallback(()=>{if(!f.current)return;const B=f.current.getBoundingClientRect(),U=window.innerWidth-v-8,re=Math.max(8,Math.min(B.left,U));y({top:B.bottom+4,left:re})},[]),w=j.useCallback(async(B,U)=>{try{await navigator.clipboard.writeText(B),d(U),clearTimeout(m.current),m.current=setTimeout(()=>d(null),1200)}catch{}},[]),S=j.useCallback(()=>{clearTimeout(b.current),_(),l(!0)},[_]),M=j.useCallback(()=>{b.current=setTimeout(()=>l(!1),150)},[]);return j.useEffect(()=>()=>{clearTimeout(m.current),clearTimeout(b.current)},[]),p.jsxs("span",{ref:f,className:`inline-flex items-center cursor-default ${r}`,onMouseEnter:S,onMouseLeave:M,children:[t,s&&g&&ib.createPortal(p.jsx("span",{className:"fixed z-[9999] bg-surface-raised border border-surface-border rounded shadow-lg py-1 min-w-[180px]",style:{top:g.top,left:g.left},onMouseEnter:S,onMouseLeave:M,children:i.map(B=>p.jsxs("button",{onClick:U=>{U.stopPropagation(),w(B.value,B.label)},className:"flex items-center justify-between w-full px-2.5 py-1 text-left hover:bg-surface-hover transition-colors",children:[p.jsx("span",{className:"text-2xs font-medium uppercase tracking-wider text-text-tertiary w-10 shrink-0",children:B.label}),p.jsx("span",{className:"text-2xs font-mono text-text-secondary truncate ml-2",children:c===B.label?"✓":B.value})]},B.label))}),document.body)]})}function BA(i,t){const r=new Date(i);switch(t){case"relative":return DA(i);case"datetime":return Xd(r,"MMM d, yyyy h:mm a");case"time":return r.toLocaleTimeString([],{hour:"2-digit",minute:"2-digit",second:"2-digit"})}}function LA(i){const t=new Date(i);return[{label:"ms",value:String(t.getTime())},{label:"utc",value:t.toISOString()},{label:"local",value:Xd(t,"MMM d, yyyy h:mm:ss a")}]}function dv({date:i,format:t="relative",className:r=""}){const[,s]=j.useState(0);j.useEffect(()=>{if(t!=="relative")return;const c=setInterval(()=>s(d=>d+1),3e4);return()=>clearInterval(c)},[t]);const l=j.useMemo(()=>LA(i),[i]);return p.jsx(hv,{options:l,children:p.jsx("time",{dateTime:i,className:`text-xs text-text-tertiary ${r}`,children:BA(i,t)})})}function PA({values:i,options:t,onChange:r,addLabel:s,emptyText:l,ariaLabel:c}){const d=t.filter(g=>!i.includes(g));return p.jsxs("div",{className:"flex flex-wrap items-center gap-1.5",children:[i.map(g=>p.jsxs("button",{type:"button",onClick:()=>r(i.filter(y=>y!==g)),className:"inline-flex items-center gap-1 text-2xs font-mono text-text-primary border border-surface-border px-1.5 py-0.5 hover:text-status-error hover:border-status-error/50 transition-colors",title:`Remove ${g}`,children:[g,p.jsx(Gt,{className:"w-3 h-3",strokeWidth:1.5})]},g)),i.length===0&&l&&p.jsx("span",{className:"text-2xs text-text-tertiary italic",children:l}),d.length>0&&p.jsxs("select",{value:"",onChange:g=>g.target.value&&r([...i,g.target.value]),className:"select font-mono","aria-label":c??s,children:[p.jsx("option",{value:"",children:s}),d.map(g=>p.jsx("option",{value:g,children:g},g))]})]})}const UA=[{minutes:1,label:"1 minute"},{minutes:15,label:"15 minutes"},{minutes:30,label:"30 minutes"},{minutes:60,label:"1 hour"},{minutes:240,label:"4 hours"},{minutes:1440,label:"24 hours"},{minutes:4320,label:"3 days"},{minutes:10080,label:"7 days"}];function zA(){const{data:i}=sv(),{data:t}=fO(),r=SO(),s=EO(),[l,c]=j.useState(""),[d,g]=j.useState(""),[y,f]=j.useState(1440),[m,b]=j.useState([]),v=(i==null?void 0:i.announcements)??[],_=()=>{d.trim()&&r.mutate({body:d.trim(),...l.trim()?{title:l.trim()}:{},...m.length?{roles:m}:{},expiresAt:new Date(Date.now()+y*6e4).toISOString()},{onSuccess:()=>{c(""),g(""),b([])}})};return p.jsxs("div",{children:[p.jsx("p",{className:"text-2xs font-medium uppercase tracking-widest text-text-tertiary mb-4",children:"Alerts"}),p.jsxs("div",{className:"space-y-3",children:[p.jsxs("label",{className:"block",children:[p.jsx("span",{className:"block text-2xs text-text-tertiary mb-1",children:"Title"}),p.jsx("input",{type:"text",value:l,onChange:w=>c(w.target.value),placeholder:"Optional headline",className:"input text-xs w-full"})]}),p.jsxs("label",{className:"block",children:[p.jsx("span",{className:"block text-2xs text-text-tertiary mb-1",children:"Summary"}),p.jsx("textarea",{value:d,onChange:w=>g(w.target.value),placeholder:"What everyone should know (markdown supported)",rows:3,className:"input text-xs w-full resize-y"})]}),p.jsxs("label",{className:"block",children:[p.jsx("span",{className:"block text-2xs text-text-tertiary mb-1",children:"Visible for"}),p.jsx("select",{value:y,onChange:w=>f(Number(w.target.value)),className:"select text-xs w-full",children:UA.map(w=>p.jsx("option",{value:w.minutes,children:w.label},w.minutes))})]}),p.jsxs("div",{className:"block",children:[p.jsx("span",{className:"block text-2xs text-text-tertiary mb-1",children:"Visible to"}),p.jsx(PA,{values:m,options:(t==null?void 0:t.roles)??[],onChange:b,addLabel:"Add a role…",emptyText:"Everyone",ariaLabel:"Add a role"})]}),r.error&&p.jsx("p",{className:"text-xs text-status-error",children:r.error.message}),p.jsx("button",{onClick:_,disabled:!d.trim()||r.isPending,className:"btn-primary text-xs w-full disabled:opacity-50",children:r.isPending?"Publishing…":"Publish alert"})]}),v.length>0&&p.jsxs("div",{className:"mt-6",children:[p.jsx("p",{className:"text-2xs text-text-tertiary mb-2",children:"Active now — stacked as banner rows, newest first"}),p.jsx("div",{className:"space-y-1",children:v.map(w=>p.jsxs("div",{className:"flex items-start gap-2 py-1.5 border-b border-surface-border/40 last:border-b-0",children:[p.jsxs("span",{className:"min-w-0 flex-1",children:[p.jsx("span",{className:"block text-xs text-text-primary truncate",children:w.title??w.body.split(`
|
|
54
|
-
`)[0]}),p.jsxs("span",{className:"block text-2xs text-text-tertiary",children:["expires ",p.jsx(dv,{date:w.expires_at,format:"relative"})]})]}),p.jsx("button",{onClick:()=>s.mutate(w.id),disabled:s.isPending,className:"icon-link shrink-0 mt-0.5",title:"Remove for everyone","aria-label":`Remove ${w.title??"announcement"}`,children:p.jsx(Gt,{className:"w-3.5 h-3.5",strokeWidth:1.5})})]},w.id))})]})]})}const IA=[{id:null,label:"Your view",description:"Full access based on your account role",minTier:"operator"},{id:"admin",label:"Admin",description:"Pace Board + identity management",minTier:"superadmin"},{id:"engineer",label:"Engineer",description:"Work queue + identity management",minTier:"admin"},{id:"operator",label:"Operator",description:"Escalation queue only",minTier:"engineer"}],$A=["operator","engineer","admin","superadmin"];function Py(i){return $A.indexOf(i)}function HA(i,t){return Py(i)>=Py(t)}function GA({onClose:i}){var de,Oe,oe,je,Se,Te,We;const{isSuperAdmin:t,hasRoleType:r,hasRole:s}=Ft(),{data:l}=Wn(),c=Hd(),d=!!((de=l==null?void 0:l.ai)!=null&&de.enabled),g=Kb(),y=g!==null?g:d,[f,m]=j.useState(y),b=(Oe=l==null?void 0:l.features)==null?void 0:Oe.graphWorkflows,v=b==null,[_,w]=j.useState(b===!0||v&&Xb()),S=!!((oe=l==null?void 0:l.features)!=null&&oe.scanCodes),M=Jb(),[B,U]=j.useState(M!==null?M:S),re=t?"superadmin":r("admin")?"admin":s("engineer")?"engineer":"operator",ce=((je=l==null?void 0:l.branding)==null?void 0:je.appName)??"LongTail",C=(Se=l==null?void 0:l.environment)==null?void 0:Se.longTailVersion,P=(Te=l==null?void 0:l.environment)==null?void 0:Te.hotmeshVersion,ie=(We=l==null?void 0:l.environment)==null?void 0:We.nodeEnv;j.useEffect(()=>{const Ae=lt=>{lt.key==="Escape"&&i()};return document.addEventListener("keydown",Ae),()=>document.removeEventListener("keydown",Ae)},[i]);const X=IA.filter(Ae=>HA(re,Ae.minTier)),L=X.length>1,G=re!=="operator",W=[...L?[{id:"viewas",label:"View As",icon:uw}]:[],{id:"features",label:"Features",icon:fw},...G?[{id:"alerts",label:"Alerts",icon:hw}]:[]],[J,he]=j.useState(W[0].id),xe=Ae=>{Ae===null?xd():sO(Ae)},Ne=()=>{const Ae=!f;m(Ae),Ae===d?iO():rO(Ae),window.location.reload()},Y=()=>{const Ae=!_;w(Ae),aO(Ae),window.location.reload()},ae=()=>{const Ae=!B;U(Ae),Ae===S?lO():oO(Ae),window.location.reload()};return p.jsx("div",{className:"fixed inset-0 z-[100] bg-surface-sunken/75 backdrop-blur-sm flex items-center justify-center",onClick:i,children:p.jsxs("div",{className:"relative w-[440px] max-h-[85vh] overflow-y-auto bg-surface-raised px-12 py-10",onClick:Ae=>Ae.stopPropagation(),children:[p.jsx("button",{onClick:i,className:"absolute top-4 right-4 text-text-quaternary hover:text-text-secondary transition-colors p-1","aria-label":"Close",children:p.jsx(Gt,{className:"w-4 h-4",strokeWidth:1.5})}),p.jsxs("div",{className:"flex flex-col items-center gap-3 pb-8",children:[p.jsx("span",{className:"logo-mark block w-20 h-20 opacity-50",style:{"--logo-url":`url(${Tt}/logo512.png)`}}),p.jsxs("div",{className:"text-center",children:[p.jsx("p",{className:"text-2xl font-light text-text-primary tracking-[0.12em]",children:ce}),C&&p.jsxs("p",{className:"mt-1 text-2xs text-text-tertiary",children:["v",C,P&&p.jsxs(p.Fragment,{children:[" · HotMesh v",P]}),ie&&ie!=="production"&&p.jsx("span",{className:"ml-1 text-status-warning",children:ie})]})]})]}),p.jsx("hr",{className:"border-surface-border/50 mb-6"}),W.length>1&&p.jsx("div",{className:"flex items-center justify-center gap-2 mb-8",role:"tablist",children:W.map(Ae=>{const lt=J===Ae.id;return p.jsxs("button",{role:"tab","aria-selected":lt,onClick:()=>he(Ae.id),title:Ae.label,className:`flex flex-col items-center gap-1.5 px-5 py-2.5 rounded-lg transition-colors ${lt?"bg-accent/10 text-accent":"text-text-tertiary hover:text-text-secondary hover:bg-surface-hover"}`,children:[p.jsx(Ae.icon,{className:"w-5 h-5",strokeWidth:1.5,...lt?{fill:"currentColor",fillOpacity:.15}:{}}),p.jsx("span",{className:"text-2xs font-medium",children:Ae.label})]},Ae.id)})}),J==="viewas"&&L&&p.jsxs("div",{className:"space-y-1",children:[p.jsx("p",{className:"text-2xs font-medium uppercase tracking-widest text-text-tertiary mb-4",children:"View As"}),X.map(Ae=>{const lt=c===Ae.id,At=Ae.id===null?`Your view · ${re}`:Ae.label;return p.jsxs("button",{onClick:()=>xe(Ae.id),className:"w-full text-left flex items-start gap-3 py-2.5 px-1 group",children:[p.jsx("span",{className:`mt-0.5 w-4 h-4 rounded-full border shrink-0 flex items-center justify-center transition-colors ${lt?"border-accent bg-accent":"border-surface-border group-hover:border-accent/60"}`,children:lt&&p.jsx("span",{className:"w-1.5 h-1.5 rounded-full bg-text-inverse"})}),p.jsxs("span",{children:[p.jsx("span",{className:`block text-sm font-medium transition-colors ${lt?"text-accent":"text-text-primary group-hover:text-accent"}`,children:At}),p.jsx("span",{className:"block text-xs text-text-secondary mt-0.5",children:Ae.description})]})]},String(Ae.id))})]}),J==="features"&&p.jsxs("div",{children:[p.jsx("p",{className:"text-2xs font-medium uppercase tracking-widest text-text-tertiary mb-4",children:"Features"}),p.jsxs("button",{onClick:Ne,className:"w-full text-left flex items-center justify-between py-2.5 px-1 group",children:[p.jsxs("span",{children:[p.jsx("span",{className:"block text-sm font-medium text-text-primary group-hover:text-accent transition-colors",children:"AI features"}),p.jsx("span",{className:"block text-xs text-text-secondary mt-0.5",children:f?"Enabled — AI assist, agent labels, bulk AI actions":"Hidden — automation labels, no AI surfaces"})]}),p.jsx("span",{className:`shrink-0 ml-4 w-9 h-5 rounded-full transition-colors flex items-center px-0.5 ${f?"bg-accent":"bg-surface-border"}`,children:p.jsx("span",{className:`w-4 h-4 rounded-full bg-text-inverse shadow-sm transition-transform ${f?"translate-x-4":"translate-x-0"}`})})]}),v&&p.jsxs("button",{onClick:Y,className:"w-full text-left flex items-center justify-between py-2.5 px-1 group",children:[p.jsxs("span",{children:[p.jsx("span",{className:"block text-sm font-medium text-text-primary group-hover:text-accent transition-colors",children:"Graph workflows"}),p.jsx("span",{className:"block text-xs text-text-secondary mt-0.5",children:_?"Visible — Graph section shown in Orchestrate sidebar":"Hidden — use Procedural workflows instead"})]}),p.jsx("span",{className:`shrink-0 ml-4 w-9 h-5 rounded-full transition-colors flex items-center px-0.5 ${_?"bg-accent":"bg-surface-border"}`,children:p.jsx("span",{className:`w-4 h-4 rounded-full bg-text-inverse shadow-sm transition-transform ${_?"translate-x-4":"translate-x-0"}`})})]}),p.jsxs("button",{onClick:ae,className:"w-full text-left flex items-center justify-between py-2.5 px-1 group",children:[p.jsxs("span",{children:[p.jsx("span",{className:"block text-sm font-medium text-text-primary group-hover:text-accent transition-colors",children:"Scan input"}),p.jsx("span",{className:"block text-xs text-text-secondary mt-0.5",children:B?"Enabled — header scan affordance, panel, and keyboard-wedge capture":"Hidden — the deployment opts in with features.scanCodes"})]}),p.jsx("span",{className:`shrink-0 ml-4 w-9 h-5 rounded-full transition-colors flex items-center px-0.5 ${B?"bg-accent":"bg-surface-border"}`,children:p.jsx("span",{className:`w-4 h-4 rounded-full bg-text-inverse shadow-sm transition-transform ${B?"translate-x-4":"translate-x-0"}`})})]})]}),J==="alerts"&&G&&p.jsx(zA,{}),p.jsx("hr",{className:"border-surface-border/50 mt-8"}),p.jsx("p",{className:"mt-4 text-2xs text-text-quaternary text-center",children:"Esc or click outside to close"})]})})}const mv=[{id:"violet",label:"Violet",swatch:"#7B3BE0"},{id:"red",label:"Brick",swatch:"#DC382D"},{id:"green",label:"Emerald",swatch:"#059669"},{id:"blue",label:"Electric",swatch:"#2563EB"},{id:"rose",label:"Raspberry",swatch:"#D6246E"},{id:"orange",label:"Harvest",swatch:"#E85D04"}],Uy="blue",pv="lt.theme";let gv=[];function FA(i){const t=new Set(mv.map(s=>s.id)),r=new Set;gv=i.filter(s=>!(s!=null&&s.id)||t.has(s.id)||r.has(s.id)?!1:(r.add(s.id),!0))}function VA(){return[...mv,...gv]}function yv(){try{return localStorage.getItem(pv)||Uy}catch{return Uy}}function bv(i){document.documentElement.dataset.theme=i}function YA(i){try{localStorage.setItem(pv,i)}catch{}bv(i)}const vv=j.createContext(null);function KA(){const i=j.useContext(vv);if(!i)throw new Error("useActingIdentity must be used within ActingIdentityProvider");return i}function XA({children:i}){const[t,r]=j.useState(null),s=j.useRef(t);s.current=t,j.useEffect(()=>{if(!(t!=null&&t.expiresAt))return;const y=new Date(t.expiresAt).getTime()-Date.now();if(y<=0){r(null);return}const f=setTimeout(()=>r(null),y);return()=>clearTimeout(f)},[t]);const l=j.useCallback(y=>{var m;if(!y.actingToken||!y.actor)return null;const f=((m=s.current)==null?void 0:m.actingToken)??null;return r({actingToken:y.actingToken,actorId:y.actor.id,displayName:y.actor.displayName,expiresAt:y.expiresAt??null}),f},[]),c=j.useCallback(()=>r(null),[]);j.useEffect(()=>(Kg(()=>{var y;return((y=s.current)==null?void 0:y.actingToken)??null}),Xg(c),()=>{Kg(null),Xg(null)}),[c]);const d=j.useCallback(()=>{var f;const y=(f=s.current)==null?void 0:f.expiresAt;return y?Math.max(0,Math.floor((new Date(y).getTime()-Date.now())/1e3)):0},[]),g=j.useMemo(()=>({identity:t,prime:l,clear:c,remainingSeconds:d}),[t,l,c,d]);return p.jsx(vv.Provider,{value:g,children:i})}const Yc={maxKeyGapMs:500,terminators:["Enter","Tab"],minLength:6,autoFireQuietMs:300,autoFireMaxAvgKeyMs:50},xv="lt_scan_wedge_config";function _v(){try{const i=localStorage.getItem(xv);return i?{...Yc,...JSON.parse(i)}:Yc}catch{return Yc}}function JA(i){const t={..._v(),...i};return localStorage.setItem(xv,JSON.stringify(t)),t}const QA=[/[1-9][0-9]:[0-9]:[a-zA-Z0-9._-]+$/,/[1-9][0-9]{7,}$/];function zy(i){let t=null;for(const r of QA){const s=i.match(r);s&&(!t||s[0].length>t.length)&&(t=s[0])}return t}const ZA=new Set(["Shift","CapsLock"]),Ql={suppress:!1,emit:null};function WA(i=Yc){let t={buffer:"",times:[],lastKeyMs:0};function r(){t={buffer:"",times:[],lastKeyMs:0}}function s(d){const{key:g,timeMs:y,hasModifier:f,isRepeat:m}=d;if(ZA.has(g))return Ql;if(i.terminators.includes(g)){const S=zy(t.buffer);return r(),S&&S.length>=i.minLength?{suppress:!0,emit:S,consumedLength:S.length}:Ql}if(f||m||g.length!==1)return r(),Ql;const b=y-t.lastKeyMs,v=t.lastKeyMs>0&&b<=i.maxKeyGapMs,_=(v?t.buffer+g:g).slice(-128),w=(v?[...t.times,y]:[y]).slice(-128);return t={buffer:_,times:w,lastKeyMs:y},Ql}function l(){return{buffer:t.buffer}}function c(){const d=zy(t.buffer);if(!d||d.length<i.minLength)return null;const g=t.times.slice(-d.length);return g.length<2||(g[g.length-1]-g[0])/(g.length-1)>i.autoFireMaxAvgKeyMs?null:{code:d,consumedLength:d.length}}return{step:s,reset:r,snapshot:l,pendingAutoFire:c}}function ej(){const i=document.activeElement;return i instanceof HTMLInputElement?["text","search","tel","url","email","password","number"].includes(i.type)?i:null:i instanceof HTMLTextAreaElement?i:null}function tj(i,t,r){var c;const s=i instanceof HTMLInputElement?HTMLInputElement.prototype:HTMLTextAreaElement.prototype,l=(c=Object.getOwnPropertyDescriptor(s,"value"))==null?void 0:c.set;l?l.call(i,t):i.value=t;try{i.setSelectionRange(r,r)}catch{}i.dispatchEvent(new Event("input",{bubbles:!0}))}function Iy(i){if(i<=0)return;const t=ej();if(!t)return;const r=t.selectionStart??t.value.length,s=Math.max(0,r-i);tj(t,t.value.slice(0,s)+t.value.slice(r),s)}function nj({active:i,wedgeConfig:t,diagnosticsOn:r,onScan:s,onDiag:l}){const c=j.useRef({diagnosticsOn:r,onScan:s,onDiag:l});c.current={diagnosticsOn:r,onScan:s,onDiag:l};const d=j.useRef(0),g=j.useRef(0);j.useEffect(()=>{if(!i)return;const y=WA(t);let f=null;const m=()=>{f&&(clearTimeout(f),f=null)},b=(w,S,M)=>{S&&Iy(S),c.current.diagnosticsOn&&(console.debug("[scan]",M),c.current.onDiag({seq:++d.current,key:"(quiet)",code:"",deltaMs:0,buffer:"",note:M})),c.current.onScan(w)},v=()=>{m(),y.pendingAutoFire()&&(f=setTimeout(()=>{f=null;const w=y.pendingAutoFire();w&&(y.reset(),b(w.code,w.consumedLength,`capture → ${w.code} (quiet period — no suffix)`))},t.autoFireQuietMs))},_=w=>{const S=y.snapshot().buffer,{suppress:M,emit:B,consumedLength:U}=y.step({key:w.key,timeMs:w.timeStamp,hasModifier:w.ctrlKey||w.metaKey||w.altKey,isRepeat:w.repeat});if(M&&(w.preventDefault(),w.stopPropagation()),c.current.diagnosticsOn){const re=y.snapshot().buffer,ce=t.terminators.includes(w.key),C=B?`capture → ${B}`:ce?`terminator — no code tail in "${S.slice(-24)}"`:re===S?S?"neutral (chord key)":"ignored":re===""?"reset (edit/chord/non-printable)":re.length<=1&&S.length>1?"gap — new episode":"accumulate",P=g.current?Math.round(w.timeStamp-g.current):0,ie={seq:++d.current,key:w.key,code:w.code!==w.key?w.code:"",deltaMs:P,buffer:re.slice(-24),note:C};console.debug("[scan]",ie.key,ie.code,`${ie.deltaMs}ms`,ie.note),c.current.onDiag(ie)}g.current=w.timeStamp,B?(m(),U&&Iy(U),c.current.onScan(B)):v()};return window.addEventListener("keydown",_,{capture:!0}),()=>{m(),window.removeEventListener("keydown",_,{capture:!0})}},[i,t])}const ze={EXECUTED:"executed",MATCHED_LIST:"matched_list",CONFIRM_REQUIRED:"confirm_required",NO_MATCH_FALLBACK:"no_match_fallback",UNCONFIGURED:"unconfigured",INVALID_CODE:"invalid_code",FORBIDDEN:"forbidden",CONFLICT:"conflict",IDENTITY_PRIMED:"identity_primed",IDENTITY_UNKNOWN:"identity_unknown",NOT_PRIMED:"not_primed",CHOICES:"choices"},Zl={SHOW_DETAIL:"show-detail",SHOW_LIST:"show-list",CLAIM:"claim",CLAIM_SHOW_DETAIL:"claim-show-detail",RELEASE:"release",RESOLVE:"resolve",ESCALATE:"escalate",CANCEL:"cancel",PRESENT:"present"},sk={ACTION:"action",IDENTITY:"identity"};function rj(i,t){return _e("/scan-codes/execute",{method:"POST",body:JSON.stringify({code:i,...t!=null&&t.actingToken?{actingToken:t.actingToken}:{},...t!=null&&t.previousActingToken?{previousActingToken:t.previousActingToken}:{}})})}function ak(i){return _e("/scan-codes/execute-choice",{method:"POST",body:JSON.stringify(i)})}function ok(){return dt({queryKey:["scan-schemes"],queryFn:()=>_e("/scan-codes/schemes")})}function lk(i){return dt({queryKey:["scan-schemes",i],queryFn:()=>_e(`/scan-codes/schemes/${i}`),enabled:i!=null})}function ck(){const i=rt();return mt({mutationFn:t=>_e(`/scan-codes/schemes/${t.version}`,{method:"PUT",body:JSON.stringify(t)}),onSuccess:()=>i.invalidateQueries({queryKey:["scan-schemes"]})})}function uk(){const i=rt();return mt({mutationFn:t=>_e(`/scan-codes/schemes/${t}`,{method:"DELETE"}),onSuccess:()=>i.invalidateQueries({queryKey:["scan-schemes"]})})}function fk(){const i=rt();return mt({mutationFn:t=>_e(`/scan-codes/schemes/${t.scheme_version}/actions/${t.category}`,{method:"PUT",body:JSON.stringify(t)}),onSuccess:(t,r)=>i.invalidateQueries({queryKey:["scan-schemes",r.scheme_version]})})}function hk(){const i=rt();return mt({mutationFn:t=>_e(`/scan-codes/schemes/${t.scheme_version}/actions/${t.category}`,{method:"DELETE"}),onSuccess:(t,r)=>i.invalidateQueries({queryKey:["scan-schemes",r.scheme_version]})})}const $y={KEYBOARD_WEDGE:"keyboard-wedge",MANUAL:"manual"},Ms=i=>{if(i)try{return JSON.parse(i)}catch{return}},zi=i=>i==null||Array.isArray(i)&&i.length===0||typeof i=="object"&&!Array.isArray(i)&&Object.keys(i).length===0;function ij(i){const t={},r=Ms(i.get("facets"));zi(r)||(t.facets=r);const s=Ms(i.get("block"));zi(s)||(t.block=s);const l=Ms(i.get("range"));zi(l)||(t.range=l);const c=Ms(i.get("exists"));zi(c)||(t.exists=c);const d=Ms(i.get("roles"));zi(d)||(t.roles=d);const g=Ms(i.get("orderBy"));zi(g)||(t.orderBy=g),i.get("available")!=null&&(t.available=i.get("available")==="true");const y=i.get("jeopardy");return(y==="1"||y==="true")&&(t.jeopardy=!0),t}function dk(i,t){const r=(s,l)=>zi(l)?i.delete(s):i.set(s,JSON.stringify(l));r("facets",t.facets),r("block",t.block),r("range",t.range),r("exists",t.exists),r("roles",t.roles),r("orderBy",t.orderBy),t.available==null?i.delete("available"):i.set("available",String(t.available)),t.jeopardy===!0?i.set("jeopardy","1"):i.delete("jeopardy")}const Hy=`&status=all&view=table&orderBy=${encodeURIComponent(JSON.stringify([{field:"created_at",direction:"desc"}]))}`;function wv(i,t){const r={};for(const[l,c]of Object.entries(i))r[l]=typeof c=="object"&&c!==null?JSON.stringify(c):c;const s=encodeURIComponent(JSON.stringify(r));return t?`/escalations/available?role=${encodeURIComponent(t)}&facets=${s}${Hy}`:`/escalations/available?facets=${s}${Hy}`}function mk(i,t,r){return wv({[i]:t},r)}function pk(i){var t,r,s;return Object.keys(i.facets??{}).length+(((t=i.block)==null?void 0:t.length)??0)+(((r=i.range)==null?void 0:r.length)??0)+(((s=i.exists)==null?void 0:s.length)??0)+(i.available!=null?1:0)+(i.jeopardy===!0?1:0)}function Sv(){var r;const{data:i}=Wn(),t=Jb();return t!==null?t:!!((r=i==null?void 0:i.features)!=null&&r.scanCodes)}const Ev=j.createContext(null);function Ov(){const i=j.useContext(Ev);if(!i)throw new Error("useScanInput must be used within ScanInputProvider");return i}const sj="scanPendingAction",aj="scanChoices",oj="/scan/station";function lj({children:i}){const{user:t}=Ft(),r=Sv(),s=go(),{identity:l,prime:c}=KA(),[d,g]=j.useState(null),[y,f]=j.useState(!1),[m,b]=j.useState(()=>_v()),[v,_]=j.useState([]),[w,S]=j.useState(!1),M=j.useCallback(L=>{var W;const{outcome:G}=L;if(G===ze.CONFIRM_REQUIRED&&L.pendingAction)return s(`/escalations/detail/${L.pendingAction.escalationId}`,{state:{[sj]:L.pendingAction}}),!0;if(G===ze.EXECUTED&&L.escalation){const J=[Zl.SHOW_DETAIL,Zl.CLAIM_SHOW_DETAIL,Zl.CLAIM,Zl.ESCALATE];return L.verb&&J.includes(L.verb)?(s(`/escalations/detail/${L.escalation.id}`),!0):!1}if(G===ze.MATCHED_LIST&&L.listQuery){const{targetFacet:J,target:he,roles:xe}=L.listQuery;return s(wv({[J]:he},(xe==null?void 0:xe[0])??null)),!0}return G===ze.CHOICES&&L.choices?(s(oj,{state:{[aj]:L}}),!0):G===ze.NO_MATCH_FALLBACK&&((W=L.fallback)!=null&&W.route)?(s(L.fallback.route),!0):!1},[s]),B=j.useRef(null);B.current=(l==null?void 0:l.actingToken)??null;const U=j.useRef(null),re=j.useRef(null),ce=j.useCallback(L=>{re.current=L},[]),C=j.useCallback(async(L,G=$y.MANUAL)=>{var J;if((J=re.current)!=null&&J.call(re,L))return;f(!0);const W=Date.now();try{const he=await rj(L,{actingToken:B.current??void 0,previousActingToken:U.current??void 0});he.outcome===ze.IDENTITY_PRIMED&&(U.current=c(he));const xe=M(he);g({code:L,source:G,at:W,response:he,error:null,navigated:xe})}catch(he){g({code:L,source:G,at:W,response:null,error:he.message,navigated:!1})}finally{f(!1)}},[M,c]),P=j.useRef(C);P.current=C,nj({active:!!t&&r,wedgeConfig:m,diagnosticsOn:w,onScan:L=>void P.current(L,$y.KEYBOARD_WEDGE),onDiag:L=>_(G=>[...G.slice(-29),L])});const ie=j.useCallback(L=>{b(JA(L))},[]),X=j.useMemo(()=>({submitCode:C,setCodeInterceptor:ce,lastResult:d,busy:y,wedgeConfig:m,updateWedgeConfig:ie,diagnostics:v,diagnosticsOn:w,setDiagnosticsOn:S}),[C,ce,d,y,m,ie,v,w]);return p.jsx(Ev.Provider,{value:X,children:i})}var Wl={},Ja={},ec={},Gy;function yn(){if(Gy)return ec;Gy=1,Object.defineProperty(ec,"__esModule",{value:!0});function i(r,s){if(!(r instanceof s))throw new TypeError("Cannot call a class as a function")}var t=function r(s,l){i(this,r),this.data=s,this.text=l.text||s,this.options=l};return ec.default=t,ec}var Fy;function cj(){if(Fy)return Ja;Fy=1,Object.defineProperty(Ja,"__esModule",{value:!0}),Ja.CODE39=void 0;var i=(function(){function S(M,B){for(var U=0;U<B.length;U++){var re=B[U];re.enumerable=re.enumerable||!1,re.configurable=!0,"value"in re&&(re.writable=!0),Object.defineProperty(M,re.key,re)}}return function(M,B,U){return B&&S(M.prototype,B),U&&S(M,U),M}})(),t=yn(),r=s(t);function s(S){return S&&S.__esModule?S:{default:S}}function l(S,M){if(!(S instanceof M))throw new TypeError("Cannot call a class as a function")}function c(S,M){if(!S)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return M&&(typeof M=="object"||typeof M=="function")?M:S}function d(S,M){if(typeof M!="function"&&M!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof M);S.prototype=Object.create(M&&M.prototype,{constructor:{value:S,enumerable:!1,writable:!0,configurable:!0}}),M&&(Object.setPrototypeOf?Object.setPrototypeOf(S,M):S.__proto__=M)}var g=(function(S){d(M,S);function M(B,U){return l(this,M),B=B.toUpperCase(),U.mod43&&(B+=v(w(B))),c(this,(M.__proto__||Object.getPrototypeOf(M)).call(this,B,U))}return i(M,[{key:"encode",value:function(){for(var U=m("*"),re=0;re<this.data.length;re++)U+=m(this.data[re])+"0";return U+=m("*"),{data:U,text:this.text}}},{key:"valid",value:function(){return this.data.search(/^[0-9A-Z\-\.\ \$\/\+\%]+$/)!==-1}}]),M})(r.default),y=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","-","."," ","$","/","+","%","*"],f=[20957,29783,23639,30485,20951,29813,23669,20855,29789,23645,29975,23831,30533,22295,30149,24005,21623,29981,23837,22301,30023,23879,30545,22343,30161,24017,21959,30065,23921,22385,29015,18263,29141,17879,29045,18293,17783,29021,18269,17477,17489,17681,20753,35770];function m(S){return b(_(S))}function b(S){return f[S].toString(2)}function v(S){return y[S]}function _(S){return y.indexOf(S)}function w(S){for(var M=0,B=0;B<S.length;B++)M+=_(S[B]);return M=M%43,M}return Ja.CODE39=g,Ja}var Pn={},tc={},nc={},ht={},Vy;function xo(){if(Vy)return ht;Vy=1,Object.defineProperty(ht,"__esModule",{value:!0});var i;function t(y,f,m){return f in y?Object.defineProperty(y,f,{value:m,enumerable:!0,configurable:!0,writable:!0}):y[f]=m,y}var r=ht.SET_A=0,s=ht.SET_B=1,l=ht.SET_C=2;ht.SHIFT=98;var c=ht.START_A=103,d=ht.START_B=104,g=ht.START_C=105;return ht.MODULO=103,ht.STOP=106,ht.FNC1=207,ht.SET_BY_CODE=(i={},t(i,c,r),t(i,d,s),t(i,g,l),i),ht.SWAP={101:r,100:s,99:l},ht.A_START_CHAR="Ð",ht.B_START_CHAR="Ñ",ht.C_START_CHAR="Ò",ht.A_CHARS="[\0-_È-Ï]",ht.B_CHARS="[ -È-Ï]",ht.C_CHARS="(Ï*[0-9]{2}Ï*)",ht.BARS=[11011001100,11001101100,11001100110,10010011e3,10010001100,10001001100,10011001e3,10011000100,10001100100,11001001e3,11001000100,11000100100,10110011100,10011011100,10011001110,10111001100,10011101100,10011100110,11001110010,11001011100,11001001110,11011100100,11001110100,11101101110,11101001100,11100101100,11100100110,11101100100,11100110100,11100110010,11011011e3,11011000110,11000110110,10100011e3,10001011e3,10001000110,10110001e3,10001101e3,10001100010,11010001e3,11000101e3,11000100010,10110111e3,10110001110,10001101110,10111011e3,10111000110,10001110110,11101110110,11010001110,11000101110,11011101e3,11011100010,11011101110,11101011e3,11101000110,11100010110,11101101e3,11101100010,11100011010,11101111010,11001000010,11110001010,1010011e4,10100001100,1001011e4,10010000110,10000101100,10000100110,1011001e4,10110000100,1001101e4,10011000010,10000110100,10000110010,11000010010,1100101e4,11110111010,11000010100,10001111010,10100111100,10010111100,10010011110,10111100100,10011110100,10011110010,11110100100,11110010100,11110010010,11011011110,11011110110,11110110110,10101111e3,10100011110,10001011110,10111101e3,10111100010,11110101e3,11110100010,10111011110,10111101110,11101011110,11110101110,11010000100,1101001e4,11010011100,1100011101011],ht}var Yy;function pu(){if(Yy)return nc;Yy=1,Object.defineProperty(nc,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=yn(),r=l(t),s=xo();function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function g(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var y=(function(f){g(m,f);function m(b,v){c(this,m);var _=d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,b.substring(1),v));return _.bytes=b.split("").map(function(w){return w.charCodeAt(0)}),_}return i(m,[{key:"valid",value:function(){return/^[\x00-\x7F\xC8-\xD3]+$/.test(this.data)}},{key:"encode",value:function(){var v=this.bytes,_=v.shift()-105,w=s.SET_BY_CODE[_];if(w===void 0)throw new RangeError("The encoding does not start with a start character.");this.shouldEncodeAsEan128()===!0&&v.unshift(s.FNC1);var S=m.next(v,1,w);return{text:this.text===this.data?this.text.replace(/[^\x20-\x7E]/g,""):this.text,data:m.getBar(_)+S.result+m.getBar((S.checksum+_)%s.MODULO)+m.getBar(s.STOP)}}},{key:"shouldEncodeAsEan128",value:function(){var v=this.options.ean128||!1;return typeof v=="string"&&(v=v.toLowerCase()==="true"),v}}],[{key:"getBar",value:function(v){return s.BARS[v]?s.BARS[v].toString():""}},{key:"correctIndex",value:function(v,_){if(_===s.SET_A){var w=v.shift();return w<32?w+64:w-32}else return _===s.SET_B?v.shift()-32:(v.shift()-48)*10+v.shift()-48}},{key:"next",value:function(v,_,w){if(!v.length)return{result:"",checksum:0};var S=void 0,M=void 0;if(v[0]>=200){M=v.shift()-105;var B=s.SWAP[M];B!==void 0?S=m.next(v,_+1,B):((w===s.SET_A||w===s.SET_B)&&M===s.SHIFT&&(v[0]=w===s.SET_A?v[0]>95?v[0]-96:v[0]:v[0]<32?v[0]+96:v[0]),S=m.next(v,_+1,w))}else M=m.correctIndex(v,w),S=m.next(v,_+1,w);var U=m.getBar(M),re=M*_;return{result:U+S.result,checksum:re+S.checksum}}}]),m})(r.default);return nc.default=y,nc}var rc={},Ky;function uj(){if(Ky)return rc;Ky=1,Object.defineProperty(rc,"__esModule",{value:!0});var i=xo(),t=function(g){return g.match(new RegExp("^"+i.A_CHARS+"*"))[0].length},r=function(g){return g.match(new RegExp("^"+i.B_CHARS+"*"))[0].length},s=function(g){return g.match(new RegExp("^"+i.C_CHARS+"*"))[0]};function l(d,g){var y=g?i.A_CHARS:i.B_CHARS,f=d.match(new RegExp("^("+y+"+?)(([0-9]{2}){2,})([^0-9]|$)"));if(f)return f[1]+"Ì"+c(d.substring(f[1].length));var m=d.match(new RegExp("^"+y+"+"))[0];return m.length===d.length?d:m+String.fromCharCode(g?205:206)+l(d.substring(m.length),!g)}function c(d){var g=s(d),y=g.length;if(y===d.length)return d;d=d.substring(y);var f=t(d)>=r(d);return g+String.fromCharCode(f?206:205)+l(d,f)}return rc.default=function(d){var g=void 0,y=s(d).length;if(y>=2)g=i.C_START_CHAR+c(d);else{var f=t(d)>r(d);g=(f?i.A_START_CHAR:i.B_START_CHAR)+l(d,f)}return g.replace(/[\xCD\xCE]([^])[\xCD\xCE]/,function(m,b){return"Ë"+b})},rc}var Xy;function fj(){if(Xy)return tc;Xy=1,Object.defineProperty(tc,"__esModule",{value:!0});var i=pu(),t=l(i),r=uj(),s=l(r);function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function g(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var y=(function(f){g(m,f);function m(b,v){if(c(this,m),/^[\x00-\x7F\xC8-\xD3]+$/.test(b))var _=d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,(0,s.default)(b),v));else var _=d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,b,v));return d(_)}return m})(t.default);return tc.default=y,tc}var ic={},Jy;function hj(){if(Jy)return ic;Jy=1,Object.defineProperty(ic,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=pu(),r=l(t),s=xo();function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function g(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var y=(function(f){g(m,f);function m(b,v){return c(this,m),d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,s.A_START_CHAR+b,v))}return i(m,[{key:"valid",value:function(){return new RegExp("^"+s.A_CHARS+"+$").test(this.data)}}]),m})(r.default);return ic.default=y,ic}var sc={},Qy;function dj(){if(Qy)return sc;Qy=1,Object.defineProperty(sc,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=pu(),r=l(t),s=xo();function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function g(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var y=(function(f){g(m,f);function m(b,v){return c(this,m),d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,s.B_START_CHAR+b,v))}return i(m,[{key:"valid",value:function(){return new RegExp("^"+s.B_CHARS+"+$").test(this.data)}}]),m})(r.default);return sc.default=y,sc}var ac={},Zy;function mj(){if(Zy)return ac;Zy=1,Object.defineProperty(ac,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=pu(),r=l(t),s=xo();function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function g(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var y=(function(f){g(m,f);function m(b,v){return c(this,m),d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,s.C_START_CHAR+b,v))}return i(m,[{key:"valid",value:function(){return new RegExp("^"+s.C_CHARS+"+$").test(this.data)}}]),m})(r.default);return ac.default=y,ac}var Wy;function pj(){if(Wy)return Pn;Wy=1,Object.defineProperty(Pn,"__esModule",{value:!0}),Pn.CODE128C=Pn.CODE128B=Pn.CODE128A=Pn.CODE128=void 0;var i=fj(),t=y(i),r=hj(),s=y(r),l=dj(),c=y(l),d=mj(),g=y(d);function y(f){return f&&f.__esModule?f:{default:f}}return Pn.CODE128=t.default,Pn.CODE128A=s.default,Pn.CODE128B=c.default,Pn.CODE128C=g.default,Pn}var zt={},oc={},_r={},e1;function _o(){return e1||(e1=1,Object.defineProperty(_r,"__esModule",{value:!0}),_r.SIDE_BIN="101",_r.MIDDLE_BIN="01010",_r.BINARIES={L:["0001101","0011001","0010011","0111101","0100011","0110001","0101111","0111011","0110111","0001011"],G:["0100111","0110011","0011011","0100001","0011101","0111001","0000101","0010001","0001001","0010111"],R:["1110010","1100110","1101100","1000010","1011100","1001110","1010000","1000100","1001000","1110100"],O:["0001101","0011001","0010011","0111101","0100011","0110001","0101111","0111011","0110111","0001011"],E:["0100111","0110011","0011011","0100001","0011101","0111001","0000101","0010001","0001001","0010111"]},_r.EAN2_STRUCTURE=["LL","LG","GL","GG"],_r.EAN5_STRUCTURE=["GGLLL","GLGLL","GLLGL","GLLLG","LGGLL","LLGGL","LLLGG","LGLGL","LGLLG","LLGLG"],_r.EAN13_STRUCTURE=["LLLLLL","LLGLGG","LLGGLG","LLGGGL","LGLLGG","LGGLLG","LGGGLL","LGLGLG","LGLGGL","LGGLGL"]),_r}var lc={},cc={},t1;function wo(){if(t1)return cc;t1=1,Object.defineProperty(cc,"__esModule",{value:!0});var i=_o(),t=function(s,l,c){var d=s.split("").map(function(y,f){return i.BINARIES[l[f]]}).map(function(y,f){return y?y[s[f]]:""});if(c){var g=s.length-1;d=d.map(function(y,f){return f<g?y+c:y})}return d.join("")};return cc.default=t,cc}var n1;function Av(){if(n1)return lc;n1=1,Object.defineProperty(lc,"__esModule",{value:!0});var i=(function(){function b(v,_){for(var w=0;w<_.length;w++){var S=_[w];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(v,S.key,S)}}return function(v,_,w){return _&&b(v.prototype,_),w&&b(v,w),v}})(),t=_o(),r=wo(),s=d(r),l=yn(),c=d(l);function d(b){return b&&b.__esModule?b:{default:b}}function g(b,v){if(!(b instanceof v))throw new TypeError("Cannot call a class as a function")}function y(b,v){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:b}function f(b,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);b.prototype=Object.create(v&&v.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(b,v):b.__proto__=v)}var m=(function(b){f(v,b);function v(_,w){g(this,v);var S=y(this,(v.__proto__||Object.getPrototypeOf(v)).call(this,_,w));return S.fontSize=!w.flat&&w.fontSize>w.width*10?w.width*10:w.fontSize,S.guardHeight=w.height+S.fontSize/2+w.textMargin,S}return i(v,[{key:"encode",value:function(){return this.options.flat?this.encodeFlat():this.encodeGuarded()}},{key:"leftText",value:function(w,S){return this.text.substr(w,S)}},{key:"leftEncode",value:function(w,S){return(0,s.default)(w,S)}},{key:"rightText",value:function(w,S){return this.text.substr(w,S)}},{key:"rightEncode",value:function(w,S){return(0,s.default)(w,S)}},{key:"encodeGuarded",value:function(){var w={fontSize:this.fontSize},S={height:this.guardHeight};return[{data:t.SIDE_BIN,options:S},{data:this.leftEncode(),text:this.leftText(),options:w},{data:t.MIDDLE_BIN,options:S},{data:this.rightEncode(),text:this.rightText(),options:w},{data:t.SIDE_BIN,options:S}]}},{key:"encodeFlat",value:function(){var w=[t.SIDE_BIN,this.leftEncode(),t.MIDDLE_BIN,this.rightEncode(),t.SIDE_BIN];return{data:w.join(""),text:this.text}}}]),v})(c.default);return lc.default=m,lc}var r1;function gj(){if(r1)return oc;r1=1,Object.defineProperty(oc,"__esModule",{value:!0});var i=(function(){function b(v,_){for(var w=0;w<_.length;w++){var S=_[w];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(v,S.key,S)}}return function(v,_,w){return _&&b(v.prototype,_),w&&b(v,w),v}})(),t=function b(v,_,w){v===null&&(v=Function.prototype);var S=Object.getOwnPropertyDescriptor(v,_);if(S===void 0){var M=Object.getPrototypeOf(v);return M===null?void 0:b(M,_,w)}else{if("value"in S)return S.value;var B=S.get;return B===void 0?void 0:B.call(w)}},r=_o(),s=Av(),l=c(s);function c(b){return b&&b.__esModule?b:{default:b}}function d(b,v){if(!(b instanceof v))throw new TypeError("Cannot call a class as a function")}function g(b,v){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:b}function y(b,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);b.prototype=Object.create(v&&v.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(b,v):b.__proto__=v)}var f=function(v){var _=v.substr(0,12).split("").map(function(w){return+w}).reduce(function(w,S,M){return M%2?w+S*3:w+S},0);return(10-_%10)%10},m=(function(b){y(v,b);function v(_,w){d(this,v),_.search(/^[0-9]{12}$/)!==-1&&(_+=f(_));var S=g(this,(v.__proto__||Object.getPrototypeOf(v)).call(this,_,w));return S.lastChar=w.lastChar,S}return i(v,[{key:"valid",value:function(){return this.data.search(/^[0-9]{13}$/)!==-1&&+this.data[12]===f(this.data)}},{key:"leftText",value:function(){return t(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"leftText",this).call(this,1,6)}},{key:"leftEncode",value:function(){var w=this.data.substr(1,6),S=r.EAN13_STRUCTURE[this.data[0]];return t(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"leftEncode",this).call(this,w,S)}},{key:"rightText",value:function(){return t(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"rightText",this).call(this,7,6)}},{key:"rightEncode",value:function(){var w=this.data.substr(7,6);return t(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"rightEncode",this).call(this,w,"RRRRRR")}},{key:"encodeGuarded",value:function(){var w=t(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"encodeGuarded",this).call(this);return this.options.displayValue&&(w.unshift({data:"000000000000",text:this.text.substr(0,1),options:{textAlign:"left",fontSize:this.fontSize}}),this.options.lastChar&&(w.push({data:"00"}),w.push({data:"00000",text:this.options.lastChar,options:{fontSize:this.fontSize}}))),w}}]),v})(l.default);return oc.default=m,oc}var uc={},i1;function yj(){if(i1)return uc;i1=1,Object.defineProperty(uc,"__esModule",{value:!0});var i=(function(){function m(b,v){for(var _=0;_<v.length;_++){var w=v[_];w.enumerable=w.enumerable||!1,w.configurable=!0,"value"in w&&(w.writable=!0),Object.defineProperty(b,w.key,w)}}return function(b,v,_){return v&&m(b.prototype,v),_&&m(b,_),b}})(),t=function m(b,v,_){b===null&&(b=Function.prototype);var w=Object.getOwnPropertyDescriptor(b,v);if(w===void 0){var S=Object.getPrototypeOf(b);return S===null?void 0:m(S,v,_)}else{if("value"in w)return w.value;var M=w.get;return M===void 0?void 0:M.call(_)}},r=Av(),s=l(r);function l(m){return m&&m.__esModule?m:{default:m}}function c(m,b){if(!(m instanceof b))throw new TypeError("Cannot call a class as a function")}function d(m,b){if(!m)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:m}function g(m,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);m.prototype=Object.create(b&&b.prototype,{constructor:{value:m,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(m,b):m.__proto__=b)}var y=function(b){var v=b.substr(0,7).split("").map(function(_){return+_}).reduce(function(_,w,S){return S%2?_+w:_+w*3},0);return(10-v%10)%10},f=(function(m){g(b,m);function b(v,_){return c(this,b),v.search(/^[0-9]{7}$/)!==-1&&(v+=y(v)),d(this,(b.__proto__||Object.getPrototypeOf(b)).call(this,v,_))}return i(b,[{key:"valid",value:function(){return this.data.search(/^[0-9]{8}$/)!==-1&&+this.data[7]===y(this.data)}},{key:"leftText",value:function(){return t(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"leftText",this).call(this,0,4)}},{key:"leftEncode",value:function(){var _=this.data.substr(0,4);return t(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"leftEncode",this).call(this,_,"LLLL")}},{key:"rightText",value:function(){return t(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"rightText",this).call(this,4,4)}},{key:"rightEncode",value:function(){var _=this.data.substr(4,4);return t(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"rightEncode",this).call(this,_,"RRRR")}}]),b})(s.default);return uc.default=f,uc}var fc={},s1;function bj(){if(s1)return fc;s1=1,Object.defineProperty(fc,"__esModule",{value:!0});var i=(function(){function v(_,w){for(var S=0;S<w.length;S++){var M=w[S];M.enumerable=M.enumerable||!1,M.configurable=!0,"value"in M&&(M.writable=!0),Object.defineProperty(_,M.key,M)}}return function(_,w,S){return w&&v(_.prototype,w),S&&v(_,S),_}})(),t=_o(),r=wo(),s=d(r),l=yn(),c=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function g(v,_){if(!(v instanceof _))throw new TypeError("Cannot call a class as a function")}function y(v,_){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return _&&(typeof _=="object"||typeof _=="function")?_:v}function f(v,_){if(typeof _!="function"&&_!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof _);v.prototype=Object.create(_&&_.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),_&&(Object.setPrototypeOf?Object.setPrototypeOf(v,_):v.__proto__=_)}var m=function(_){var w=_.split("").map(function(S){return+S}).reduce(function(S,M,B){return B%2?S+M*9:S+M*3},0);return w%10},b=(function(v){f(_,v);function _(w,S){return g(this,_),y(this,(_.__proto__||Object.getPrototypeOf(_)).call(this,w,S))}return i(_,[{key:"valid",value:function(){return this.data.search(/^[0-9]{5}$/)!==-1}},{key:"encode",value:function(){var S=t.EAN5_STRUCTURE[m(this.data)];return{data:"1011"+(0,s.default)(this.data,S,"01"),text:this.text}}}]),_})(c.default);return fc.default=b,fc}var hc={},a1;function vj(){if(a1)return hc;a1=1,Object.defineProperty(hc,"__esModule",{value:!0});var i=(function(){function b(v,_){for(var w=0;w<_.length;w++){var S=_[w];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(v,S.key,S)}}return function(v,_,w){return _&&b(v.prototype,_),w&&b(v,w),v}})(),t=_o(),r=wo(),s=d(r),l=yn(),c=d(l);function d(b){return b&&b.__esModule?b:{default:b}}function g(b,v){if(!(b instanceof v))throw new TypeError("Cannot call a class as a function")}function y(b,v){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:b}function f(b,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);b.prototype=Object.create(v&&v.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(b,v):b.__proto__=v)}var m=(function(b){f(v,b);function v(_,w){return g(this,v),y(this,(v.__proto__||Object.getPrototypeOf(v)).call(this,_,w))}return i(v,[{key:"valid",value:function(){return this.data.search(/^[0-9]{2}$/)!==-1}},{key:"encode",value:function(){var w=t.EAN2_STRUCTURE[parseInt(this.data)%4];return{data:"1011"+(0,s.default)(this.data,w,"01"),text:this.text}}}]),v})(c.default);return hc.default=m,hc}var Qa={},o1;function jv(){if(o1)return Qa;o1=1,Object.defineProperty(Qa,"__esModule",{value:!0});var i=(function(){function b(v,_){for(var w=0;w<_.length;w++){var S=_[w];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(v,S.key,S)}}return function(v,_,w){return _&&b(v.prototype,_),w&&b(v,w),v}})();Qa.checksum=m;var t=wo(),r=c(t),s=yn(),l=c(s);function c(b){return b&&b.__esModule?b:{default:b}}function d(b,v){if(!(b instanceof v))throw new TypeError("Cannot call a class as a function")}function g(b,v){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:b}function y(b,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);b.prototype=Object.create(v&&v.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(b,v):b.__proto__=v)}var f=(function(b){y(v,b);function v(_,w){d(this,v),_.search(/^[0-9]{11}$/)!==-1&&(_+=m(_));var S=g(this,(v.__proto__||Object.getPrototypeOf(v)).call(this,_,w));return S.displayValue=w.displayValue,w.fontSize>w.width*10?S.fontSize=w.width*10:S.fontSize=w.fontSize,S.guardHeight=w.height+S.fontSize/2+w.textMargin,S}return i(v,[{key:"valid",value:function(){return this.data.search(/^[0-9]{12}$/)!==-1&&this.data[11]==m(this.data)}},{key:"encode",value:function(){return this.options.flat?this.flatEncoding():this.guardedEncoding()}},{key:"flatEncoding",value:function(){var w="";return w+="101",w+=(0,r.default)(this.data.substr(0,6),"LLLLLL"),w+="01010",w+=(0,r.default)(this.data.substr(6,6),"RRRRRR"),w+="101",{data:w,text:this.text}}},{key:"guardedEncoding",value:function(){var w=[];return this.displayValue&&w.push({data:"00000000",text:this.text.substr(0,1),options:{textAlign:"left",fontSize:this.fontSize}}),w.push({data:"101"+(0,r.default)(this.data[0],"L"),options:{height:this.guardHeight}}),w.push({data:(0,r.default)(this.data.substr(1,5),"LLLLL"),text:this.text.substr(1,5),options:{fontSize:this.fontSize}}),w.push({data:"01010",options:{height:this.guardHeight}}),w.push({data:(0,r.default)(this.data.substr(6,5),"RRRRR"),text:this.text.substr(6,5),options:{fontSize:this.fontSize}}),w.push({data:(0,r.default)(this.data[11],"R")+"101",options:{height:this.guardHeight}}),this.displayValue&&w.push({data:"00000000",text:this.text.substr(11,1),options:{textAlign:"right",fontSize:this.fontSize}}),w}}]),v})(l.default);function m(b){var v=0,_;for(_=1;_<11;_+=2)v+=parseInt(b[_]);for(_=0;_<11;_+=2)v+=parseInt(b[_])*3;return(10-v%10)%10}return Qa.default=f,Qa}var dc={},l1;function xj(){if(l1)return dc;l1=1,Object.defineProperty(dc,"__esModule",{value:!0});var i=(function(){function w(S,M){for(var B=0;B<M.length;B++){var U=M[B];U.enumerable=U.enumerable||!1,U.configurable=!0,"value"in U&&(U.writable=!0),Object.defineProperty(S,U.key,U)}}return function(S,M,B){return M&&w(S.prototype,M),B&&w(S,B),S}})(),t=wo(),r=d(t),s=yn(),l=d(s),c=jv();function d(w){return w&&w.__esModule?w:{default:w}}function g(w,S){if(!(w instanceof S))throw new TypeError("Cannot call a class as a function")}function y(w,S){if(!w)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return S&&(typeof S=="object"||typeof S=="function")?S:w}function f(w,S){if(typeof S!="function"&&S!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof S);w.prototype=Object.create(S&&S.prototype,{constructor:{value:w,enumerable:!1,writable:!0,configurable:!0}}),S&&(Object.setPrototypeOf?Object.setPrototypeOf(w,S):w.__proto__=S)}var m=["XX00000XXX","XX10000XXX","XX20000XXX","XXX00000XX","XXXX00000X","XXXXX00005","XXXXX00006","XXXXX00007","XXXXX00008","XXXXX00009"],b=[["EEEOOO","OOOEEE"],["EEOEOO","OOEOEE"],["EEOOEO","OOEEOE"],["EEOOOE","OOEEEO"],["EOEEOO","OEOOEE"],["EOOEEO","OEEOOE"],["EOOOEE","OEEEOO"],["EOEOEO","OEOEOE"],["EOEOOE","OEOEEO"],["EOOEOE","OEEOEO"]],v=(function(w){f(S,w);function S(M,B){g(this,S);var U=y(this,(S.__proto__||Object.getPrototypeOf(S)).call(this,M,B));if(U.isValid=!1,M.search(/^[0-9]{6}$/)!==-1)U.middleDigits=M,U.upcA=_(M,"0"),U.text=B.text||""+U.upcA[0]+M+U.upcA[U.upcA.length-1],U.isValid=!0;else if(M.search(/^[01][0-9]{7}$/)!==-1)if(U.middleDigits=M.substring(1,M.length-1),U.upcA=_(U.middleDigits,M[0]),U.upcA[U.upcA.length-1]===M[M.length-1])U.isValid=!0;else return y(U);else return y(U);return U.displayValue=B.displayValue,B.fontSize>B.width*10?U.fontSize=B.width*10:U.fontSize=B.fontSize,U.guardHeight=B.height+U.fontSize/2+B.textMargin,U}return i(S,[{key:"valid",value:function(){return this.isValid}},{key:"encode",value:function(){return this.options.flat?this.flatEncoding():this.guardedEncoding()}},{key:"flatEncoding",value:function(){var B="";return B+="101",B+=this.encodeMiddleDigits(),B+="010101",{data:B,text:this.text}}},{key:"guardedEncoding",value:function(){var B=[];return this.displayValue&&B.push({data:"00000000",text:this.text[0],options:{textAlign:"left",fontSize:this.fontSize}}),B.push({data:"101",options:{height:this.guardHeight}}),B.push({data:this.encodeMiddleDigits(),text:this.text.substring(1,7),options:{fontSize:this.fontSize}}),B.push({data:"010101",options:{height:this.guardHeight}}),this.displayValue&&B.push({data:"00000000",text:this.text[7],options:{textAlign:"right",fontSize:this.fontSize}}),B}},{key:"encodeMiddleDigits",value:function(){var B=this.upcA[0],U=this.upcA[this.upcA.length-1],re=b[parseInt(U)][parseInt(B)];return(0,r.default)(this.middleDigits,re)}}]),S})(l.default);function _(w,S){for(var M=parseInt(w[w.length-1]),B=m[M],U="",re=0,ce=0;ce<B.length;ce++){var C=B[ce];C==="X"?U+=w[re++]:U+=C}return U=""+S+U,""+U+(0,c.checksum)(U)}return dc.default=v,dc}var c1;function _j(){if(c1)return zt;c1=1,Object.defineProperty(zt,"__esModule",{value:!0}),zt.UPCE=zt.UPC=zt.EAN2=zt.EAN5=zt.EAN8=zt.EAN13=void 0;var i=gj(),t=v(i),r=yj(),s=v(r),l=bj(),c=v(l),d=vj(),g=v(d),y=jv(),f=v(y),m=xj(),b=v(m);function v(_){return _&&_.__esModule?_:{default:_}}return zt.EAN13=t.default,zt.EAN8=s.default,zt.EAN5=c.default,zt.EAN2=g.default,zt.UPC=f.default,zt.UPCE=b.default,zt}var Li={},mc={},Rs={},u1;function wj(){return u1||(u1=1,Object.defineProperty(Rs,"__esModule",{value:!0}),Rs.START_BIN="1010",Rs.END_BIN="11101",Rs.BINARIES=["00110","10001","01001","11000","00101","10100","01100","00011","10010","01010"]),Rs}var f1;function Nv(){if(f1)return mc;f1=1,Object.defineProperty(mc,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=wj(),r=yn(),s=l(r);function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function g(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var y=(function(f){g(m,f);function m(){return c(this,m),d(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return i(m,[{key:"valid",value:function(){return this.data.search(/^([0-9]{2})+$/)!==-1}},{key:"encode",value:function(){var v=this,_=this.data.match(/.{2}/g).map(function(w){return v.encodePair(w)}).join("");return{data:t.START_BIN+_+t.END_BIN,text:this.text}}},{key:"encodePair",value:function(v){var _=t.BINARIES[v[1]];return t.BINARIES[v[0]].split("").map(function(w,S){return(w==="1"?"111":"1")+(_[S]==="1"?"000":"0")}).join("")}}]),m})(s.default);return mc.default=y,mc}var pc={},h1;function Sj(){if(h1)return pc;h1=1,Object.defineProperty(pc,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=Nv(),r=s(t);function s(f){return f&&f.__esModule?f:{default:f}}function l(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function c(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function d(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var g=function(m){var b=m.substr(0,13).split("").map(function(v){return parseInt(v,10)}).reduce(function(v,_,w){return v+_*(3-w%2*2)},0);return Math.ceil(b/10)*10-b},y=(function(f){d(m,f);function m(b,v){return l(this,m),b.search(/^[0-9]{13}$/)!==-1&&(b+=g(b)),c(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,b,v))}return i(m,[{key:"valid",value:function(){return this.data.search(/^[0-9]{14}$/)!==-1&&+this.data[13]===g(this.data)}}]),m})(r.default);return pc.default=y,pc}var d1;function Ej(){if(d1)return Li;d1=1,Object.defineProperty(Li,"__esModule",{value:!0}),Li.ITF14=Li.ITF=void 0;var i=Nv(),t=l(i),r=Sj(),s=l(r);function l(c){return c&&c.__esModule?c:{default:c}}return Li.ITF=t.default,Li.ITF14=s.default,Li}var ln={},gc={},m1;function So(){if(m1)return gc;m1=1,Object.defineProperty(gc,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=yn(),r=s(t);function s(f){return f&&f.__esModule?f:{default:f}}function l(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function c(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function d(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var g=(function(f){d(m,f);function m(b,v){return l(this,m),c(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,b,v))}return i(m,[{key:"encode",value:function(){for(var v="110",_=0;_<this.data.length;_++){var w=parseInt(this.data[_]),S=w.toString(2);S=y(S,4-S.length);for(var M=0;M<S.length;M++)v+=S[M]=="0"?"100":"110"}return v+="1001",{data:v,text:this.text}}},{key:"valid",value:function(){return this.data.search(/^[0-9]+$/)!==-1}}]),m})(r.default);function y(f,m){for(var b=0;b<m;b++)f="0"+f;return f}return gc.default=g,gc}var yc={},Za={},p1;function gu(){if(p1)return Za;p1=1,Object.defineProperty(Za,"__esModule",{value:!0}),Za.mod10=i,Za.mod11=t;function i(r){for(var s=0,l=0;l<r.length;l++){var c=parseInt(r[l]);(l+r.length)%2===0?s+=c:s+=c*2%10+Math.floor(c*2/10)}return(10-s%10)%10}function t(r){for(var s=0,l=[2,3,4,5,6,7],c=0;c<r.length;c++){var d=parseInt(r[r.length-1-c]);s+=l[c%l.length]*d}return(11-s%11)%11}return Za}var g1;function Oj(){if(g1)return yc;g1=1,Object.defineProperty(yc,"__esModule",{value:!0});var i=So(),t=s(i),r=gu();function s(y){return y&&y.__esModule?y:{default:y}}function l(y,f){if(!(y instanceof f))throw new TypeError("Cannot call a class as a function")}function c(y,f){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:y}function d(y,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);y.prototype=Object.create(f&&f.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(y,f):y.__proto__=f)}var g=(function(y){d(f,y);function f(m,b){return l(this,f),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m+(0,r.mod10)(m),b))}return f})(t.default);return yc.default=g,yc}var bc={},y1;function Aj(){if(y1)return bc;y1=1,Object.defineProperty(bc,"__esModule",{value:!0});var i=So(),t=s(i),r=gu();function s(y){return y&&y.__esModule?y:{default:y}}function l(y,f){if(!(y instanceof f))throw new TypeError("Cannot call a class as a function")}function c(y,f){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:y}function d(y,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);y.prototype=Object.create(f&&f.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(y,f):y.__proto__=f)}var g=(function(y){d(f,y);function f(m,b){return l(this,f),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m+(0,r.mod11)(m),b))}return f})(t.default);return bc.default=g,bc}var vc={},b1;function jj(){if(b1)return vc;b1=1,Object.defineProperty(vc,"__esModule",{value:!0});var i=So(),t=s(i),r=gu();function s(y){return y&&y.__esModule?y:{default:y}}function l(y,f){if(!(y instanceof f))throw new TypeError("Cannot call a class as a function")}function c(y,f){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:y}function d(y,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);y.prototype=Object.create(f&&f.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(y,f):y.__proto__=f)}var g=(function(y){d(f,y);function f(m,b){return l(this,f),m+=(0,r.mod10)(m),m+=(0,r.mod10)(m),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m,b))}return f})(t.default);return vc.default=g,vc}var xc={},v1;function Nj(){if(v1)return xc;v1=1,Object.defineProperty(xc,"__esModule",{value:!0});var i=So(),t=s(i),r=gu();function s(y){return y&&y.__esModule?y:{default:y}}function l(y,f){if(!(y instanceof f))throw new TypeError("Cannot call a class as a function")}function c(y,f){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:y}function d(y,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);y.prototype=Object.create(f&&f.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(y,f):y.__proto__=f)}var g=(function(y){d(f,y);function f(m,b){return l(this,f),m+=(0,r.mod11)(m),m+=(0,r.mod10)(m),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m,b))}return f})(t.default);return xc.default=g,xc}var x1;function Tj(){if(x1)return ln;x1=1,Object.defineProperty(ln,"__esModule",{value:!0}),ln.MSI1110=ln.MSI1010=ln.MSI11=ln.MSI10=ln.MSI=void 0;var i=So(),t=m(i),r=Oj(),s=m(r),l=Aj(),c=m(l),d=jj(),g=m(d),y=Nj(),f=m(y);function m(b){return b&&b.__esModule?b:{default:b}}return ln.MSI=t.default,ln.MSI10=s.default,ln.MSI11=c.default,ln.MSI1010=g.default,ln.MSI1110=f.default,ln}var Wa={},_1;function kj(){if(_1)return Wa;_1=1,Object.defineProperty(Wa,"__esModule",{value:!0}),Wa.pharmacode=void 0;var i=(function(){function y(f,m){for(var b=0;b<m.length;b++){var v=m[b];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(f,v.key,v)}}return function(f,m,b){return m&&y(f.prototype,m),b&&y(f,b),f}})(),t=yn(),r=s(t);function s(y){return y&&y.__esModule?y:{default:y}}function l(y,f){if(!(y instanceof f))throw new TypeError("Cannot call a class as a function")}function c(y,f){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:y}function d(y,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);y.prototype=Object.create(f&&f.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(y,f):y.__proto__=f)}var g=(function(y){d(f,y);function f(m,b){l(this,f);var v=c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m,b));return v.number=parseInt(m,10),v}return i(f,[{key:"encode",value:function(){for(var b=this.number,v="";!isNaN(b)&&b!=0;)b%2===0?(v="11100"+v,b=(b-2)/2):(v="100"+v,b=(b-1)/2);return v=v.slice(0,-2),{data:v,text:this.text}}},{key:"valid",value:function(){return this.number>=3&&this.number<=131070}}]),f})(r.default);return Wa.pharmacode=g,Wa}var eo={},w1;function Cj(){if(w1)return eo;w1=1,Object.defineProperty(eo,"__esModule",{value:!0}),eo.codabar=void 0;var i=(function(){function y(f,m){for(var b=0;b<m.length;b++){var v=m[b];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(f,v.key,v)}}return function(f,m,b){return m&&y(f.prototype,m),b&&y(f,b),f}})(),t=yn(),r=s(t);function s(y){return y&&y.__esModule?y:{default:y}}function l(y,f){if(!(y instanceof f))throw new TypeError("Cannot call a class as a function")}function c(y,f){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:y}function d(y,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);y.prototype=Object.create(f&&f.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(y,f):y.__proto__=f)}var g=(function(y){d(f,y);function f(m,b){l(this,f),m.search(/^[0-9\-\$\:\.\+\/]+$/)===0&&(m="A"+m+"A");var v=c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m.toUpperCase(),b));return v.text=v.options.text||v.text.replace(/[A-D]/g,""),v}return i(f,[{key:"valid",value:function(){return this.data.search(/^[A-D][0-9\-\$\:\.\+\/]+[A-D]$/)!==-1}},{key:"encode",value:function(){for(var b=[],v=this.getEncodings(),_=0;_<this.data.length;_++)b.push(v[this.data.charAt(_)]),_!==this.data.length-1&&b.push("0");return{text:this.text,data:b.join("")}}},{key:"getEncodings",value:function(){return{0:"101010011",1:"101011001",2:"101001011",3:"110010101",4:"101101001",5:"110101001",6:"100101011",7:"100101101",8:"100110101",9:"110100101","-":"101001101",$:"101100101",":":"1101011011","/":"1101101011",".":"1101101101","+":"1011011011",A:"1011001001",B:"1001001011",C:"1010010011",D:"1010011001"}}}]),f})(r.default);return eo.codabar=g,eo}var Pi={},_c={},Ds={},S1;function Mj(){return S1||(S1=1,Object.defineProperty(Ds,"__esModule",{value:!0}),Ds.SYMBOLS=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","-","."," ","$","/","+","%","($)","(%)","(/)","(+)","ÿ"],Ds.BINARIES=["100010100","101001000","101000100","101000010","100101000","100100100","100100010","101010000","100010010","100001010","110101000","110100100","110100010","110010100","110010010","110001010","101101000","101100100","101100010","100110100","100011010","101011000","101001100","101000110","100101100","100010110","110110100","110110010","110101100","110100110","110010110","110011010","101101100","101100110","100110110","100111010","100101110","111010100","111010010","111001010","101101110","101110110","110101110","100100110","111011010","111010110","100110010","101011110"],Ds.MULTI_SYMBOLS={"\0":["(%)","U"],"":["($)","A"],"":["($)","B"],"":["($)","C"],"":["($)","D"],"":["($)","E"],"":["($)","F"],"\x07":["($)","G"],"\b":["($)","H"]," ":["($)","I"],"\n":["($)","J"],"\v":["($)","K"],"\f":["($)","L"],"\r":["($)","M"],"":["($)","N"],"":["($)","O"],"":["($)","P"],"":["($)","Q"],"":["($)","R"],"":["($)","S"],"":["($)","T"],"":["($)","U"],"":["($)","V"],"":["($)","W"],"":["($)","X"],"":["($)","Y"],"":["($)","Z"],"\x1B":["(%)","A"],"":["(%)","B"],"":["(%)","C"],"":["(%)","D"],"":["(%)","E"],"!":["(/)","A"],'"':["(/)","B"],"#":["(/)","C"],"&":["(/)","F"],"'":["(/)","G"],"(":["(/)","H"],")":["(/)","I"],"*":["(/)","J"],",":["(/)","L"],":":["(/)","Z"],";":["(%)","F"],"<":["(%)","G"],"=":["(%)","H"],">":["(%)","I"],"?":["(%)","J"],"@":["(%)","V"],"[":["(%)","K"],"\\":["(%)","L"],"]":["(%)","M"],"^":["(%)","N"],_:["(%)","O"],"`":["(%)","W"],a:["(+)","A"],b:["(+)","B"],c:["(+)","C"],d:["(+)","D"],e:["(+)","E"],f:["(+)","F"],g:["(+)","G"],h:["(+)","H"],i:["(+)","I"],j:["(+)","J"],k:["(+)","K"],l:["(+)","L"],m:["(+)","M"],n:["(+)","N"],o:["(+)","O"],p:["(+)","P"],q:["(+)","Q"],r:["(+)","R"],s:["(+)","S"],t:["(+)","T"],u:["(+)","U"],v:["(+)","V"],w:["(+)","W"],x:["(+)","X"],y:["(+)","Y"],z:["(+)","Z"],"{":["(%)","P"],"|":["(%)","Q"],"}":["(%)","R"],"~":["(%)","S"],"":["(%)","T"]}),Ds}var E1;function Tv(){if(E1)return _c;E1=1,Object.defineProperty(_c,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=Mj(),r=yn(),s=l(r);function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function g(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var y=(function(f){g(m,f);function m(b,v){return c(this,m),d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,b,v))}return i(m,[{key:"valid",value:function(){return/^[0-9A-Z\-. $/+%]+$/.test(this.data)}},{key:"encode",value:function(){var v=this.data.split("").flatMap(function(M){return t.MULTI_SYMBOLS[M]||M}),_=v.map(function(M){return m.getEncoding(M)}).join(""),w=m.checksum(v,20),S=m.checksum(v.concat(w),15);return{text:this.text,data:m.getEncoding("ÿ")+_+m.getEncoding(w)+m.getEncoding(S)+m.getEncoding("ÿ")+"1"}}}],[{key:"getEncoding",value:function(v){return t.BINARIES[m.symbolValue(v)]}},{key:"getSymbol",value:function(v){return t.SYMBOLS[v]}},{key:"symbolValue",value:function(v){return t.SYMBOLS.indexOf(v)}},{key:"checksum",value:function(v,_){var w=v.slice().reverse().reduce(function(S,M,B){var U=B%_+1;return S+m.symbolValue(M)*U},0);return m.getSymbol(w%47)}}]),m})(s.default);return _c.default=y,_c}var wc={},O1;function Rj(){if(O1)return wc;O1=1,Object.defineProperty(wc,"__esModule",{value:!0});var i=(function(){function y(f,m){for(var b=0;b<m.length;b++){var v=m[b];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(f,v.key,v)}}return function(f,m,b){return m&&y(f.prototype,m),b&&y(f,b),f}})(),t=Tv(),r=s(t);function s(y){return y&&y.__esModule?y:{default:y}}function l(y,f){if(!(y instanceof f))throw new TypeError("Cannot call a class as a function")}function c(y,f){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:y}function d(y,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);y.prototype=Object.create(f&&f.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(y,f):y.__proto__=f)}var g=(function(y){d(f,y);function f(m,b){return l(this,f),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m,b))}return i(f,[{key:"valid",value:function(){return/^[\x00-\x7f]+$/.test(this.data)}}]),f})(r.default);return wc.default=g,wc}var A1;function Dj(){if(A1)return Pi;A1=1,Object.defineProperty(Pi,"__esModule",{value:!0}),Pi.CODE93FullASCII=Pi.CODE93=void 0;var i=Tv(),t=l(i),r=Rj(),s=l(r);function l(c){return c&&c.__esModule?c:{default:c}}return Pi.CODE93=t.default,Pi.CODE93FullASCII=s.default,Pi}var to={},j1;function qj(){if(j1)return to;j1=1,Object.defineProperty(to,"__esModule",{value:!0}),to.GenericBarcode=void 0;var i=(function(){function y(f,m){for(var b=0;b<m.length;b++){var v=m[b];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(f,v.key,v)}}return function(f,m,b){return m&&y(f.prototype,m),b&&y(f,b),f}})(),t=yn(),r=s(t);function s(y){return y&&y.__esModule?y:{default:y}}function l(y,f){if(!(y instanceof f))throw new TypeError("Cannot call a class as a function")}function c(y,f){if(!y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:y}function d(y,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);y.prototype=Object.create(f&&f.prototype,{constructor:{value:y,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(y,f):y.__proto__=f)}var g=(function(y){d(f,y);function f(m,b){return l(this,f),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m,b))}return i(f,[{key:"encode",value:function(){return{data:"10101010101010101010101010101010101010101",text:this.text}}},{key:"valid",value:function(){return!0}}]),f})(r.default);return to.GenericBarcode=g,to}var N1;function Bj(){if(N1)return Wl;N1=1,Object.defineProperty(Wl,"__esModule",{value:!0});var i=cj(),t=pj(),r=_j(),s=Ej(),l=Tj(),c=kj(),d=Cj(),g=Dj(),y=qj();return Wl.default={CODE39:i.CODE39,CODE128:t.CODE128,CODE128A:t.CODE128A,CODE128B:t.CODE128B,CODE128C:t.CODE128C,EAN13:r.EAN13,EAN8:r.EAN8,EAN5:r.EAN5,EAN2:r.EAN2,UPC:r.UPC,UPCE:r.UPCE,ITF14:s.ITF14,ITF:s.ITF,MSI:l.MSI,MSI10:l.MSI10,MSI11:l.MSI11,MSI1010:l.MSI1010,MSI1110:l.MSI1110,pharmacode:c.pharmacode,codabar:d.codabar,CODE93:g.CODE93,CODE93FullASCII:g.CODE93FullASCII,GenericBarcode:y.GenericBarcode},Wl}var Sc={},T1;function yu(){if(T1)return Sc;T1=1,Object.defineProperty(Sc,"__esModule",{value:!0});var i=Object.assign||function(t){for(var r=1;r<arguments.length;r++){var s=arguments[r];for(var l in s)Object.prototype.hasOwnProperty.call(s,l)&&(t[l]=s[l])}return t};return Sc.default=function(t,r){return i({},t,r)},Sc}var Ec={},k1;function Lj(){if(k1)return Ec;k1=1,Object.defineProperty(Ec,"__esModule",{value:!0}),Ec.default=i;function i(t){var r=[];function s(l){if(Array.isArray(l))for(var c=0;c<l.length;c++)s(l[c]);else l.text=l.text||"",l.data=l.data||"",r.push(l)}return s(t),r}return Ec}var Oc={},C1;function Pj(){if(C1)return Oc;C1=1,Object.defineProperty(Oc,"__esModule",{value:!0}),Oc.default=i;function i(t){return t.marginTop=t.marginTop||t.margin,t.marginBottom=t.marginBottom||t.margin,t.marginRight=t.marginRight||t.margin,t.marginLeft=t.marginLeft||t.margin,t}return Oc}var Ac={},jc={},Nc={},M1;function kv(){if(M1)return Nc;M1=1,Object.defineProperty(Nc,"__esModule",{value:!0}),Nc.default=i;function i(t){var r=["width","height","textMargin","fontSize","margin","marginTop","marginBottom","marginLeft","marginRight"];for(var s in r)r.hasOwnProperty(s)&&(s=r[s],typeof t[s]=="string"&&(t[s]=parseInt(t[s],10)));return typeof t.displayValue=="string"&&(t.displayValue=t.displayValue!="false"),t}return Nc}var Tc={},R1;function Cv(){if(R1)return Tc;R1=1,Object.defineProperty(Tc,"__esModule",{value:!0});var i={width:2,height:100,format:"auto",displayValue:!0,fontOptions:"",font:"monospace",text:void 0,textAlign:"center",textPosition:"bottom",textMargin:2,fontSize:20,background:"#ffffff",lineColor:"#000000",margin:10,marginTop:void 0,marginBottom:void 0,marginLeft:void 0,marginRight:void 0,valid:function(){}};return Tc.default=i,Tc}var D1;function Uj(){if(D1)return jc;D1=1,Object.defineProperty(jc,"__esModule",{value:!0});var i=kv(),t=l(i),r=Cv(),s=l(r);function l(d){return d&&d.__esModule?d:{default:d}}function c(d){var g={};for(var y in s.default)s.default.hasOwnProperty(y)&&(d.hasAttribute("jsbarcode-"+y.toLowerCase())&&(g[y]=d.getAttribute("jsbarcode-"+y.toLowerCase())),d.hasAttribute("data-"+y.toLowerCase())&&(g[y]=d.getAttribute("data-"+y.toLowerCase())));return g.value=d.getAttribute("jsbarcode-value")||d.getAttribute("data-value"),g=(0,t.default)(g),g}return jc.default=c,jc}var kc={},Cc={},cn={},q1;function Mv(){if(q1)return cn;q1=1,Object.defineProperty(cn,"__esModule",{value:!0}),cn.getTotalWidthOfEncodings=cn.calculateEncodingAttributes=cn.getBarcodePadding=cn.getEncodingHeight=cn.getMaximumHeightOfEncodings=void 0;var i=yu(),t=r(i);function r(f){return f&&f.__esModule?f:{default:f}}function s(f,m){return m.height+(m.displayValue&&f.text.length>0?m.fontSize+m.textMargin:0)+m.marginTop+m.marginBottom}function l(f,m,b){if(b.displayValue&&m<f){if(b.textAlign=="center")return Math.floor((f-m)/2);if(b.textAlign=="left")return 0;if(b.textAlign=="right")return Math.floor(f-m)}return 0}function c(f,m,b){for(var v=0;v<f.length;v++){var _=f[v],w=(0,t.default)(m,_.options),S;w.displayValue?S=y(_.text,w,b):S=0;var M=_.data.length*w.width;_.width=Math.ceil(Math.max(S,M)),_.height=s(_,w),_.barcodePadding=l(S,M,w)}}function d(f){for(var m=0,b=0;b<f.length;b++)m+=f[b].width;return m}function g(f){for(var m=0,b=0;b<f.length;b++)f[b].height>m&&(m=f[b].height);return m}function y(f,m,b){var v;if(b)v=b;else if(typeof document<"u")v=document.createElement("canvas").getContext("2d");else return 0;v.font=m.fontOptions+" "+m.fontSize+"px "+m.font;var _=v.measureText(f);if(!_)return 0;var w=_.width;return w}return cn.getMaximumHeightOfEncodings=g,cn.getEncodingHeight=s,cn.getBarcodePadding=l,cn.calculateEncodingAttributes=c,cn.getTotalWidthOfEncodings=d,cn}var B1;function zj(){if(B1)return Cc;B1=1,Object.defineProperty(Cc,"__esModule",{value:!0});var i=(function(){function g(y,f){for(var m=0;m<f.length;m++){var b=f[m];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(y,b.key,b)}}return function(y,f,m){return f&&g(y.prototype,f),m&&g(y,m),y}})(),t=yu(),r=l(t),s=Mv();function l(g){return g&&g.__esModule?g:{default:g}}function c(g,y){if(!(g instanceof y))throw new TypeError("Cannot call a class as a function")}var d=(function(){function g(y,f,m){c(this,g),this.canvas=y,this.encodings=f,this.options=m}return i(g,[{key:"render",value:function(){if(!this.canvas.getContext)throw new Error("The browser does not support canvas.");this.prepareCanvas();for(var f=0;f<this.encodings.length;f++){var m=(0,r.default)(this.options,this.encodings[f].options);this.drawCanvasBarcode(m,this.encodings[f]),this.drawCanvasText(m,this.encodings[f]),this.moveCanvasDrawing(this.encodings[f])}this.restoreCanvas()}},{key:"prepareCanvas",value:function(){var f=this.canvas.getContext("2d");f.save(),(0,s.calculateEncodingAttributes)(this.encodings,this.options,f);var m=(0,s.getTotalWidthOfEncodings)(this.encodings),b=(0,s.getMaximumHeightOfEncodings)(this.encodings);this.canvas.width=m+this.options.marginLeft+this.options.marginRight,this.canvas.height=b,f.clearRect(0,0,this.canvas.width,this.canvas.height),this.options.background&&(f.fillStyle=this.options.background,f.fillRect(0,0,this.canvas.width,this.canvas.height)),f.translate(this.options.marginLeft,0)}},{key:"drawCanvasBarcode",value:function(f,m){var b=this.canvas.getContext("2d"),v=m.data,_;f.textPosition=="top"?_=f.marginTop+f.fontSize+f.textMargin:_=f.marginTop,b.fillStyle=f.lineColor;for(var w=0;w<v.length;w++){var S=w*f.width+m.barcodePadding;v[w]==="1"?b.fillRect(S,_,f.width,f.height):v[w]&&b.fillRect(S,_,f.width,f.height*v[w])}}},{key:"drawCanvasText",value:function(f,m){var b=this.canvas.getContext("2d"),v=f.fontOptions+" "+f.fontSize+"px "+f.font;if(f.displayValue){var _,w;f.textPosition=="top"?w=f.marginTop+f.fontSize-f.textMargin:w=f.height+f.textMargin+f.marginTop+f.fontSize,b.font=v,f.textAlign=="left"||m.barcodePadding>0?(_=0,b.textAlign="left"):f.textAlign=="right"?(_=m.width-1,b.textAlign="right"):(_=m.width/2,b.textAlign="center"),b.fillText(m.text,_,w)}}},{key:"moveCanvasDrawing",value:function(f){var m=this.canvas.getContext("2d");m.translate(f.width,0)}},{key:"restoreCanvas",value:function(){var f=this.canvas.getContext("2d");f.restore()}}]),g})();return Cc.default=d,Cc}var Mc={},L1;function Ij(){if(L1)return Mc;L1=1,Object.defineProperty(Mc,"__esModule",{value:!0});var i=(function(){function y(f,m){for(var b=0;b<m.length;b++){var v=m[b];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(f,v.key,v)}}return function(f,m,b){return m&&y(f.prototype,m),b&&y(f,b),f}})(),t=yu(),r=l(t),s=Mv();function l(y){return y&&y.__esModule?y:{default:y}}function c(y,f){if(!(y instanceof f))throw new TypeError("Cannot call a class as a function")}var d="http://www.w3.org/2000/svg",g=(function(){function y(f,m,b){c(this,y),this.svg=f,this.encodings=m,this.options=b,this.document=b.xmlDocument||document}return i(y,[{key:"render",value:function(){var m=this.options.marginLeft;this.prepareSVG();for(var b=0;b<this.encodings.length;b++){var v=this.encodings[b],_=(0,r.default)(this.options,v.options),w=this.createGroup(m,_.marginTop,this.svg);this.setGroupOptions(w,_),this.drawSvgBarcode(w,_,v),this.drawSVGText(w,_,v),m+=v.width}}},{key:"prepareSVG",value:function(){for(;this.svg.firstChild;)this.svg.removeChild(this.svg.firstChild);(0,s.calculateEncodingAttributes)(this.encodings,this.options);var m=(0,s.getTotalWidthOfEncodings)(this.encodings),b=(0,s.getMaximumHeightOfEncodings)(this.encodings),v=m+this.options.marginLeft+this.options.marginRight;this.setSvgAttributes(v,b),this.options.background&&this.drawRect(0,0,v,b,this.svg).setAttribute("fill",this.options.background)}},{key:"drawSvgBarcode",value:function(m,b,v){var _=v.data,w;b.textPosition=="top"?w=b.fontSize+b.textMargin:w=0;for(var S=0,M=0,B=0;B<_.length;B++)M=B*b.width+v.barcodePadding,_[B]==="1"?S++:S>0&&(this.drawRect(M-b.width*S,w,b.width*S,b.height,m),S=0);S>0&&this.drawRect(M-b.width*(S-1),w,b.width*S,b.height,m)}},{key:"drawSVGText",value:function(m,b,v){var _=this.document.createElementNS(d,"text");if(b.displayValue){var w,S;_.setAttribute("font-family",b.font),_.setAttribute("font-size",b.fontSize),b.fontOptions.includes("bold")&&_.setAttribute("font-weight","bold"),b.fontOptions.includes("italic")&&_.setAttribute("font-style","italic"),b.textPosition=="top"?S=b.fontSize-b.textMargin:S=b.height+b.textMargin+b.fontSize,b.textAlign=="left"||v.barcodePadding>0?(w=0,_.setAttribute("text-anchor","start")):b.textAlign=="right"?(w=v.width-1,_.setAttribute("text-anchor","end")):(w=v.width/2,_.setAttribute("text-anchor","middle")),_.setAttribute("x",w),_.setAttribute("y",S),_.appendChild(this.document.createTextNode(v.text)),m.appendChild(_)}}},{key:"setSvgAttributes",value:function(m,b){var v=this.svg;v.setAttribute("width",m+"px"),v.setAttribute("height",b+"px"),v.setAttribute("x","0px"),v.setAttribute("y","0px"),v.setAttribute("viewBox","0 0 "+m+" "+b),v.setAttribute("xmlns",d),v.setAttribute("version","1.1")}},{key:"createGroup",value:function(m,b,v){var _=this.document.createElementNS(d,"g");return _.setAttribute("transform","translate("+m+", "+b+")"),v.appendChild(_),_}},{key:"setGroupOptions",value:function(m,b){m.setAttribute("fill",b.lineColor)}},{key:"drawRect",value:function(m,b,v,_,w){var S=this.document.createElementNS(d,"rect");return S.setAttribute("x",m),S.setAttribute("y",b),S.setAttribute("width",v),S.setAttribute("height",_),w.appendChild(S),S}}]),y})();return Mc.default=g,Mc}var Rc={},P1;function $j(){if(P1)return Rc;P1=1,Object.defineProperty(Rc,"__esModule",{value:!0});var i=(function(){function s(l,c){for(var d=0;d<c.length;d++){var g=c[d];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(l,g.key,g)}}return function(l,c,d){return c&&s(l.prototype,c),d&&s(l,d),l}})();function t(s,l){if(!(s instanceof l))throw new TypeError("Cannot call a class as a function")}var r=(function(){function s(l,c,d){t(this,s),this.object=l,this.encodings=c,this.options=d}return i(s,[{key:"render",value:function(){this.object.encodings=this.encodings}}]),s})();return Rc.default=r,Rc}var U1;function Hj(){if(U1)return kc;U1=1,Object.defineProperty(kc,"__esModule",{value:!0});var i=zj(),t=d(i),r=Ij(),s=d(r),l=$j(),c=d(l);function d(g){return g&&g.__esModule?g:{default:g}}return kc.default={CanvasRenderer:t.default,SVGRenderer:s.default,ObjectRenderer:c.default},kc}var qs={},z1;function Rv(){if(z1)return qs;z1=1,Object.defineProperty(qs,"__esModule",{value:!0});function i(d,g){if(!(d instanceof g))throw new TypeError("Cannot call a class as a function")}function t(d,g){if(!d)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return g&&(typeof g=="object"||typeof g=="function")?g:d}function r(d,g){if(typeof g!="function"&&g!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof g);d.prototype=Object.create(g&&g.prototype,{constructor:{value:d,enumerable:!1,writable:!0,configurable:!0}}),g&&(Object.setPrototypeOf?Object.setPrototypeOf(d,g):d.__proto__=g)}var s=(function(d){r(g,d);function g(y,f){i(this,g);var m=t(this,(g.__proto__||Object.getPrototypeOf(g)).call(this));return m.name="InvalidInputException",m.symbology=y,m.input=f,m.message='"'+m.input+'" is not a valid input for '+m.symbology,m}return g})(Error),l=(function(d){r(g,d);function g(){i(this,g);var y=t(this,(g.__proto__||Object.getPrototypeOf(g)).call(this));return y.name="InvalidElementException",y.message="Not supported type to render on",y}return g})(Error),c=(function(d){r(g,d);function g(){i(this,g);var y=t(this,(g.__proto__||Object.getPrototypeOf(g)).call(this));return y.name="NoElementException",y.message="No element to render on.",y}return g})(Error);return qs.InvalidInputException=s,qs.InvalidElementException=l,qs.NoElementException=c,qs}var I1;function Gj(){if(I1)return Ac;I1=1,Object.defineProperty(Ac,"__esModule",{value:!0});var i=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(m){return typeof m}:function(m){return m&&typeof Symbol=="function"&&m.constructor===Symbol&&m!==Symbol.prototype?"symbol":typeof m},t=Uj(),r=d(t),s=Hj(),l=d(s),c=Rv();function d(m){return m&&m.__esModule?m:{default:m}}function g(m){if(typeof m=="string")return y(m);if(Array.isArray(m)){for(var b=[],v=0;v<m.length;v++)b.push(g(m[v]));return b}else{if(typeof HTMLCanvasElement<"u"&&m instanceof HTMLImageElement)return f(m);if(m&&m.nodeName&&m.nodeName.toLowerCase()==="svg"||typeof SVGElement<"u"&&m instanceof SVGElement)return{element:m,options:(0,r.default)(m),renderer:l.default.SVGRenderer};if(typeof HTMLCanvasElement<"u"&&m instanceof HTMLCanvasElement)return{element:m,options:(0,r.default)(m),renderer:l.default.CanvasRenderer};if(m&&m.getContext)return{element:m,renderer:l.default.CanvasRenderer};if(m&&(typeof m>"u"?"undefined":i(m))==="object"&&!m.nodeName)return{element:m,renderer:l.default.ObjectRenderer};throw new c.InvalidElementException}}function y(m){var b=document.querySelectorAll(m);if(b.length!==0){for(var v=[],_=0;_<b.length;_++)v.push(g(b[_]));return v}}function f(m){var b=document.createElement("canvas");return{element:b,options:(0,r.default)(m),renderer:l.default.CanvasRenderer,afterRender:function(){m.setAttribute("src",b.toDataURL())}}}return Ac.default=g,Ac}var Dc={},$1;function Fj(){if($1)return Dc;$1=1,Object.defineProperty(Dc,"__esModule",{value:!0});var i=(function(){function s(l,c){for(var d=0;d<c.length;d++){var g=c[d];g.enumerable=g.enumerable||!1,g.configurable=!0,"value"in g&&(g.writable=!0),Object.defineProperty(l,g.key,g)}}return function(l,c,d){return c&&s(l.prototype,c),d&&s(l,d),l}})();function t(s,l){if(!(s instanceof l))throw new TypeError("Cannot call a class as a function")}var r=(function(){function s(l){t(this,s),this.api=l}return i(s,[{key:"handleCatch",value:function(c){if(c.name==="InvalidInputException")if(this.api._options.valid!==this.api._defaults.valid)this.api._options.valid(!1);else throw c.message;else throw c;this.api.render=function(){}}},{key:"wrapBarcodeCall",value:function(c){try{var d=c.apply(void 0,arguments);return this.api._options.valid(!0),d}catch(g){return this.handleCatch(g),this.api}}}]),s})();return Dc.default=r,Dc}var Vh,H1;function Vj(){if(H1)return Vh;H1=1;var i=Bj(),t=B(i),r=yu(),s=B(r),l=Lj(),c=B(l),d=Pj(),g=B(d),y=Gj(),f=B(y),m=kv(),b=B(m),v=Fj(),_=B(v),w=Rv(),S=Cv(),M=B(S);function B(L){return L&&L.__esModule?L:{default:L}}var U=function(){},re=function(G,W,J){var he=new U;if(typeof G>"u")throw Error("No element to render on was provided.");return he._renderProperties=(0,f.default)(G),he._encodings=[],he._options=M.default,he._errorHandler=new _.default(he),typeof W<"u"&&(J=J||{},J.format||(J.format=ie()),he.options(J)[J.format](W,J).render()),he};re.getModule=function(L){return t.default[L]};for(var ce in t.default)t.default.hasOwnProperty(ce)&&C(t.default,ce);function C(L,G){U.prototype[G]=U.prototype[G.toUpperCase()]=U.prototype[G.toLowerCase()]=function(W,J){var he=this;return he._errorHandler.wrapBarcodeCall(function(){J.text=typeof J.text>"u"?void 0:""+J.text;var xe=(0,s.default)(he._options,J);xe=(0,b.default)(xe);var Ne=L[G],Y=P(W,Ne,xe);return he._encodings.push(Y),he})}}function P(L,G,W){L=""+L;var J=new G(L,W);if(!J.valid())throw new w.InvalidInputException(J.constructor.name,L);var he=J.encode();he=(0,c.default)(he);for(var xe=0;xe<he.length;xe++)he[xe].options=(0,s.default)(W,he[xe].options);return he}function ie(){return t.default.CODE128?"CODE128":Object.keys(t.default)[0]}U.prototype.options=function(L){return this._options=(0,s.default)(this._options,L),this},U.prototype.blank=function(L){var G=new Array(L+1).join("0");return this._encodings.push({data:G}),this},U.prototype.init=function(){if(this._renderProperties){Array.isArray(this._renderProperties)||(this._renderProperties=[this._renderProperties]);var L;for(var G in this._renderProperties){L=this._renderProperties[G];var W=(0,s.default)(this._options,L.options);W.format=="auto"&&(W.format=ie()),this._errorHandler.wrapBarcodeCall(function(){var J=W.value,he=t.default[W.format.toUpperCase()],xe=P(J,he,W);X(L,xe,W)})}}},U.prototype.render=function(){if(!this._renderProperties)throw new w.NoElementException;if(Array.isArray(this._renderProperties))for(var L=0;L<this._renderProperties.length;L++)X(this._renderProperties[L],this._encodings,this._options);else X(this._renderProperties,this._encodings,this._options);return this},U.prototype._defaults=M.default;function X(L,G,W){G=(0,c.default)(G);for(var J=0;J<G.length;J++)G[J].options=(0,s.default)(W,G[J].options),(0,g.default)(G[J].options);(0,g.default)(W);var he=L.renderer,xe=new he(L.element,G,W);xe.render(),L.afterRender&&L.afterRender()}return typeof window<"u"&&(window.JsBarcode=re),typeof jQuery<"u"&&(jQuery.fn.JsBarcode=function(L,G){var W=[];return jQuery(this).each(function(){W.push(this)}),re(W,L,G)}),Vh=re,Vh}var Yj=Vj();const Kj=iw(Yj),Xj={[ze.EXECUTED]:"Executed",[ze.MATCHED_LIST]:"Matched list",[ze.CONFIRM_REQUIRED]:"Awaiting confirmation",[ze.NO_MATCH_FALLBACK]:"No match",[ze.UNCONFIGURED]:"Not configured",[ze.INVALID_CODE]:"Invalid code",[ze.FORBIDDEN]:"Not permitted",[ze.CONFLICT]:"Conflict",[ze.IDENTITY_PRIMED]:"Identity primed",[ze.IDENTITY_UNKNOWN]:"Badge not recognized",[ze.NOT_PRIMED]:"Badge required",[ze.CHOICES]:"Choices presented"},Dv={[ze.EXECUTED]:"text-status-success",[ze.MATCHED_LIST]:"text-status-success",[ze.CONFIRM_REQUIRED]:"text-status-warning",[ze.NO_MATCH_FALLBACK]:"text-text-secondary",[ze.UNCONFIGURED]:"text-status-warning",[ze.INVALID_CODE]:"text-status-error",[ze.FORBIDDEN]:"text-status-error",[ze.CONFLICT]:"text-status-warning",[ze.IDENTITY_PRIMED]:"text-status-success",[ze.IDENTITY_UNKNOWN]:"text-status-warning",[ze.NOT_PRIMED]:"text-status-warning",[ze.CHOICES]:"text-status-success"};function qv(i){return i.outcome===ze.IDENTITY_PRIMED&&i.actor?`Hi ${i.actor.displayName}`:`${Xj[i.outcome]}${i.rule?` — ${i.rule.name}`:""}`}function su(i){var t,r,s;return i.outcome===ze.NO_MATCH_FALLBACK?((t=i.fallback)==null?void 0:t.markdown)??null:i.outcome===ze.IDENTITY_UNKNOWN?((r=i.fallback)==null?void 0:r.markdown)??null:i.outcome===ze.NOT_PRIMED?((s=i.notPrimed)==null?void 0:s.markdown)??null:null}function ii(i){return i.replace(/`([^`]+)`/g,'<code class="px-1 py-0.5 bg-surface-sunken rounded text-xs font-mono">$1</code>').replace(/\*\*\*(.+?)\*\*\*/g,"<strong><em>$1</em></strong>").replace(/\*\*(.+?)\*\*/g,"<strong>$1</strong>").replace(/\*(.+?)\*/g,"<em>$1</em>").replace(/\[([^\]]+)\]\(([^)]+)\)/g,'<a href="$2" class="text-accent-primary hover:underline" target="_blank" rel="noopener noreferrer">$1</a>')}function Bv({content:i,compact:t}){const r=[],s=/^```(\w*)\n([\s\S]*?)^```$/gm;let l=0,c;for(;(c=s.exec(i))!==null;)c.index>l&&r.push({type:"text",text:i.slice(l,c.index)}),r.push({type:"code",lang:c[1],code:c[2].replace(/\n$/,"")}),l=c.index+c[0].length;l<i.length&&r.push({type:"text",text:i.slice(l)});const d=t?{text:"text-xs",heading:"text-xs",list:"text-xs",code:"text-2xs"}:{text:"text-sm",heading:"text-sm",list:"text-sm",code:"text-xs"},g=[];for(const y of r){if(y.type==="code"){const f=y.code.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">");g.push(`<pre class="my-2 p-2.5 bg-surface-sunken rounded-md overflow-x-auto"><code class="${d.code} font-mono text-text-secondary leading-relaxed">${f}</code></pre>`);continue}g.push(...Jj(y.text,d))}return p.jsx("div",{className:"prose-sm",dangerouslySetInnerHTML:{__html:g.join(`
|
|
55
|
-
`)}})}function
|
|
56
|
-
`),s=[];let l=!1,c=!1,d=[];for(const g of r){const y=g.trim();if(y.startsWith("|")&&y.endsWith("|")){const f=y.slice(1,-1).split("|").map(m=>m.trim());if(f.every(m=>/^[-:]+$/.test(m)))continue;c||(c=!0,d=[]),d.push(f);continue}if(c){c=!1;const[f,...m]=d;s.push('<div class="overflow-x-auto my-2"><table class="text-xs w-full"><thead><tr>');for(const b of f)s.push(`<th class="text-left py-1 px-2 border-b border-border text-text-secondary font-medium">${ii(b)}</th>`);s.push("</tr></thead><tbody>");for(const b of m){s.push("<tr>");for(const v of b)s.push(`<td class="py-1 px-2 border-b border-border/50">${ii(v)}</td>`);s.push("</tr>")}s.push("</tbody></table></div>"),d=[]}if(!y){l&&(s.push("</ul>"),l=!1);continue}if(y.startsWith("### ")){l&&(s.push("</ul>"),l=!1),s.push(`<h4 class="${t.heading} font-semibold text-text-primary mt-3 mb-1">${ii(y.slice(4))}</h4>`);continue}if(y.startsWith("## ")){l&&(s.push("</ul>"),l=!1),s.push(`<h3 class="${t.heading} font-semibold text-text-primary mt-3 mb-1">${ii(y.slice(3))}</h3>`);continue}if(/^[-*_]{3,}$/.test(y)){l&&(s.push("</ul>"),l=!1),s.push('<hr class="border-border my-3" />');continue}if(/^[-*] /.test(y)){l||(s.push('<ul class="space-y-1 my-1">'),l=!0),s.push(`<li class="${t.list} text-text-secondary flex gap-2"><span class="text-text-tertiary shrink-0">-</span><span>${ii(y.slice(2))}</span></li>`);continue}l&&(s.push("</ul>"),l=!1),s.push(`<p class="${t.text} text-text-secondary my-1">${ii(y)}</p>`)}if(c&&d.length){const[g,...y]=d;s.push('<div class="overflow-x-auto my-2"><table class="text-xs w-full"><thead><tr>');for(const f of g)s.push(`<th class="text-left py-1 px-2 border-b border-border text-text-secondary font-medium">${ii(f)}</th>`);s.push("</tr></thead><tbody>");for(const f of y){s.push("<tr>");for(const m of f)s.push(`<td class="py-1 px-2 border-b border-border/50">${ii(m)}</td>`);s.push("</tr>")}s.push("</tbody></table></div>")}return l&&s.push("</ul>"),s}function Qj(i){return i.replace(/[\u2010-\u2015\u2212]/g,"-").replace(/[\u2018\u2019]/g,"'").replace(/[\u201C\u201D]/g,'"').replace(/\u00A0/g," ").replace(/[\u200B-\u200D\uFEFF]/g,"").replace(/[\x00-\x1F\x7F]/g,"").trim()}function Zj(i){const t=new Set;for(const r of i){const s=r.codePointAt(0);(s>127||s<32)&&t.add(`"${s<32?"\\x"+s.toString(16).padStart(2,"0"):r}" U+${s.toString(16).toUpperCase().padStart(4,"0")}`)}return[...t]}function Wj({value:i}){const t=j.useRef(null),[r,s]=j.useState(!1);return j.useEffect(()=>{if(!(!t.current||!i))try{Kj(t.current,i,{format:"CODE128",width:2,height:88,margin:12,displayValue:!0,fontSize:13,background:"#ffffff",lineColor:"#000000"}),s(!1)}catch{s(!0)}},[i]),i?p.jsxs("div",{children:[p.jsx("span",{className:"block text-xs uppercase tracking-wide text-text-tertiary mb-1",children:"Barcode"}),r?p.jsxs("p",{className:"text-xs text-status-error",children:["This value has characters Code 128 cannot carry:"," ",p.jsx("span",{className:"font-mono",children:Zj(i).join(", ")||"unknown"})]}):p.jsx("div",{className:"bg-white rounded p-1 inline-block max-w-full overflow-hidden",children:p.jsx("svg",{ref:t,className:"max-w-full"})})]}):null}function eN({onClose:i}){const{submitCode:t,lastResult:r,busy:s,wedgeConfig:l,updateWedgeConfig:c,diagnostics:d,diagnosticsOn:g,setDiagnosticsOn:y}=Ov(),[f,m]=j.useState(""),[b,v]=j.useState(!1),_=S=>{S.preventDefault();const M=f.trim();M&&(m(""),t(M))},w=(r==null?void 0:r.response)??null;return p.jsxs("div",{className:"flex flex-col h-full",children:[p.jsxs("div",{className:"flex items-center justify-between px-4 py-3 border-b border-surface-border",children:[p.jsxs("div",{className:"flex items-center gap-2 text-sm font-medium text-text-primary",children:[p.jsx(ou,{className:"w-4 h-4"}),"Scan"]}),p.jsx("button",{type:"button",onClick:i,className:"text-text-tertiary hover:text-text-primary",title:"Close",children:p.jsx(Gt,{className:"w-4 h-4"})})]}),p.jsxs("div",{className:"flex-1 overflow-y-auto px-4 py-4 space-y-6",children:[p.jsxs("form",{onSubmit:_,className:"space-y-2",children:[p.jsx("label",{className:"block text-xs uppercase tracking-wide text-text-tertiary",children:"Enter a code"}),p.jsxs("div",{className:"flex gap-2",children:[p.jsx("input",{value:f,onChange:S=>m(Qj(S.target.value)),placeholder:"10:1:SN-12345",className:"flex-1 px-2 py-1.5 text-sm bg-surface-raised border border-surface-border rounded text-text-primary","data-scan-manual-entry":!0}),p.jsx("button",{type:"submit",disabled:s||!f.trim(),className:"px-3 py-1.5 text-sm rounded bg-accent text-text-inverse disabled:opacity-50",children:"Go"})]}),p.jsx("p",{className:"text-xs text-text-tertiary",children:"Scanning with a connected scanner works from any page — this entry exists for testing and for codes you can read but not scan. Typing here also draws the code below; point the scanner at the screen to fire it for real."})]}),p.jsx(Wj,{value:f.trim()}),r&&p.jsxs("div",{className:"space-y-2",children:[p.jsx("div",{className:"text-xs uppercase tracking-wide text-text-tertiary",children:"Last scan"}),p.jsx("div",{className:"text-sm font-mono text-text-primary",children:r.code}),w?p.jsxs(p.Fragment,{children:[p.jsx("div",{className:`text-sm font-medium ${Dv[w.outcome]}`,children:qv(w)}),w.error&&p.jsx("div",{className:"text-xs text-text-tertiary",children:w.error}),su(w)&&p.jsx("div",{className:"text-sm border-t border-surface-border pt-2",children:p.jsx(Bv,{content:su(w),compact:!0})})]}):p.jsx("div",{className:"text-sm text-status-error",children:r.error})]}),p.jsxs("div",{className:"space-y-2",children:[p.jsxs("button",{type:"button",onClick:()=>v(S=>!S),className:"text-xs uppercase tracking-wide text-text-tertiary hover:text-text-primary",children:["Capture settings ",b?"▾":"▸"]}),b&&p.jsxs("div",{className:"space-y-3",children:[p.jsxs("label",{className:"block text-sm text-text-primary",children:[p.jsx("span",{className:"block text-xs text-text-tertiary mb-1",children:"Key gap limit (ms) — a longer pause between keys starts a new capture; raise it for scanners that pace slowly"}),p.jsx("input",{type:"number",min:100,max:2e3,step:50,value:l.maxKeyGapMs,onChange:S=>c({maxKeyGapMs:Number(S.target.value)}),className:"w-24 px-2 py-1 text-sm bg-surface-raised border border-surface-border rounded"})]}),p.jsxs("label",{className:"flex items-center gap-2 text-sm text-text-primary",children:[p.jsx("input",{type:"checkbox",checked:g,onChange:S=>y(S.target.checked)}),p.jsx("span",{children:"Diagnostics — trace every keydown the capture sees (also logged to the console)"})]}),g&&p.jsxs("div",{className:"border border-surface-border rounded",children:[p.jsx("div",{className:"px-2 py-1.5 text-2xs uppercase tracking-wide text-text-tertiary border-b border-surface-border",children:"Keydown trace — scan now, newest last"}),p.jsxs("div",{className:"max-h-64 overflow-y-auto font-mono text-2xs leading-5 px-2 py-1",children:[d.length===0&&p.jsx("div",{className:"text-text-tertiary",children:"Waiting for keys…"}),d.map(S=>p.jsxs("div",{className:"whitespace-nowrap overflow-hidden text-ellipsis",title:`buffer: ${S.buffer}`,children:[p.jsxs("span",{className:"text-text-tertiary",children:[String(S.deltaMs).padStart(4),"ms "]}),p.jsx("span",{className:"text",children:JSON.stringify(S.key)}),S.code&&p.jsxs("span",{className:"text-text-tertiary",children:[" (",S.code,")"]}),p.jsxs("span",{className:"text-text-tertiary",children:[" — ",S.note]})]},S.seq))]}),p.jsxs("div",{className:"px-2 py-1.5 text-2xs text-text-tertiary border-t border-surface-border",children:["Read it like this: a scan should end with an"," ",p.jsx("span",{className:"font-mono",children:'"Enter"'})," row saying"," ",p.jsx("span",{className:"font-mono",children:"capture → …"}),'. An Enter row saying "no code tail" means the buffer split (raise the gap limit, or a key arrived as something other than one character). No Enter row at all means the scanner sends no suffix — program its Enter/CR suffix. Keys named'," ",p.jsx("span",{className:"font-mono",children:'"Unidentified"'})," mean the decode arrives outside the keydown path."]})]})]})]})]})]})}const Lv="lt:bookmarks",qc="scan";function tN(){try{const i=localStorage.getItem(Lv);if(!i)return[];const t=JSON.parse(i);return Array.isArray(t)?t:[]}catch{return[]}}function G1(i){try{localStorage.setItem(Lv,JSON.stringify(i))}catch{}}function nN({onToggleEventFeed:i,onToggleDocs:t,onToggleNav:r}){var de,Oe;const s=go(),{user:l,logout:c}=Ft(),{viewAs:d,realIsBuilder:g}=Qb(),{available:y,mine:f}=xO();Zb();const{connected:m}=n2(),{data:b}=Wn(),{setPanel:v,closePanel:_,open:w,ownerKey:S}=Kd(),M=Sv(),B=gn(),U=()=>{w&&S===qc?_(qc):v(p.jsx(eN,{onClose:()=>_(qc)}),{width:360,key:qc})},[re,ce]=j.useState(!1),[C,P]=j.useState(!1),[ie,X]=j.useState(yv),[L,G]=j.useState(tN),W=j.useRef(null),J=(de=b==null?void 0:b.branding)==null?void 0:de.appName,he=(Oe=b==null?void 0:b.branding)==null?void 0:Oe.themes,xe=j.useMemo(()=>(FA(he??[]),VA()),[he]),Ne=oe=>{YA(oe),X(oe)},Y=()=>{const oe=window.prompt("Bookmark label:");if(!(oe!=null&&oe.trim()))return;const je=B.pathname+B.search,Se=[...L,{label:oe.trim(),url:je}].sort((Te,We)=>Te.label.localeCompare(We.label));G(Se),G1(Se),ce(!1)},ae=oe=>{const je=L.filter(Se=>!(Se.label===oe.label&&Se.url===oe.url));G(je),G1(je)};return j.useEffect(()=>{if(!re)return;const oe=je=>{W.current&&!W.current.contains(je.target)&&ce(!1)};return document.addEventListener("mousedown",oe),()=>document.removeEventListener("mousedown",oe)},[re]),p.jsxs(p.Fragment,{children:[p.jsxs("header",{className:`h-14 shrink-0 border-b border-surface-border bg-surface-raised flex items-center justify-between pl-2 pr-5 relative ${re?"z-[100]":"z-30"}`,children:[p.jsxs("div",{className:"flex items-center gap-1 min-w-0",children:[r&&p.jsx("button",{onClick:r,className:"lg:hidden p-2 text-text-secondary hover:text-text-primary transition-colors","aria-label":"Open navigation",children:p.jsx(dw,{className:"w-5 h-5",strokeWidth:1.5})}),p.jsxs(Ii,{to:"/","aria-label":"Home",className:"shrink-0",onClick:oe=>{(oe.ctrlKey||oe.metaKey)&&(oe.preventDefault(),P(!0))},children:[p.jsx(nu,{appName:J,className:"hidden lg:flex"}),p.jsx(nu,{appName:J,variant:"comet",className:"flex lg:hidden"})]}),p.jsx("div",{className:"hidden lg:block w-px h-4 bg-surface-border mx-1"}),p.jsx("button",{onClick:()=>s(-1),className:"p-2 text-accent/60 hover:text-accent transition-colors","aria-label":"Go back",children:p.jsx(sb,{className:"w-5 h-5",strokeWidth:2})}),p.jsx("button",{onClick:()=>s(1),className:"p-2 text-accent/60 hover:text-accent transition-colors","aria-label":"Go forward",children:p.jsx(Xh,{className:"w-5 h-5",strokeWidth:2})})]}),p.jsxs("div",{className:"flex items-center gap-5",children:[p.jsxs(Ii,{to:"/escalations/available",className:`flex items-center gap-1.5 text-xs transition-colors ${y>0?"text-status-queued":"text-text-quaternary hover:text-text-secondary"}`,title:"All escalations",children:[p.jsx(Jh,{className:"w-4 h-4",strokeWidth:1.5}),p.jsx("span",{className:"hidden lg:inline",children:"all"}),y>0&&p.jsx("sup",{className:"tabular-nums font-medium text-[0.5em]",children:y})]}),p.jsxs(Ii,{to:"/escalations/queue",className:`flex items-center gap-1.5 text-xs transition-colors ${f>0?"text-status-claimed":"text-text-quaternary hover:text-text-secondary"}`,title:"My escalation queue",children:[p.jsx(Jh,{className:"w-4 h-4",strokeWidth:1.5}),p.jsx("span",{className:"hidden lg:inline",children:"mine"}),f>0&&p.jsx("sup",{className:"tabular-nums font-medium text-[0.5em]",children:f})]}),p.jsx("div",{className:"hidden lg:block w-px h-4 bg-surface-border"}),M&&p.jsxs("button",{type:"button",onClick:U,className:"flex items-center gap-1.5 text-xs text-text-quaternary hover:text-text-secondary transition-colors",title:"Scan a code",children:[p.jsx(ou,{className:"w-4 h-4",strokeWidth:1.5}),p.jsx("span",{className:"hidden lg:inline",children:"scan"})]}),p.jsxs("button",{type:"button",onClick:()=>{m?i==null||i():window.location.reload()},className:`hidden lg:flex items-center gap-1.5 text-xs transition-colors ${m?"text-status-success hover:text-status-success/80":"text-text-quaternary hover:text-text-secondary"}`,title:m?"Live events — click to toggle feed":"Events disconnected — click to reconnect",children:[p.jsx(ab,{className:"w-4 h-4",strokeWidth:1.5}),"events"]}),g&&p.jsx(p.Fragment,{children:p.jsxs("button",{onClick:t,className:"hidden lg:flex items-center gap-1.5 text-xs text-text-quaternary hover:text-text-secondary transition-colors",title:"Documentation",children:[p.jsx(ob,{className:"w-4 h-4",strokeWidth:1.5}),"docs"]})}),d&&p.jsx(p.Fragment,{children:p.jsxs("span",{className:"hidden lg:flex items-center gap-1 pl-2 pr-1 py-0.5 rounded-full bg-accent/10 border border-accent/25 text-2xs text-accent select-none",children:[p.jsxs("span",{className:"capitalize font-medium tracking-wide",children:[d," View"]}),p.jsx("button",{onClick:xd,title:"Restore your real view",className:"ml-0.5 rounded-full p-0.5 hover:bg-accent/20 transition-colors",children:p.jsx(Gt,{className:"w-2.5 h-2.5"})})]})}),p.jsx("div",{className:"hidden lg:block w-px h-4 bg-surface-border"}),l&&p.jsxs("div",{className:"relative",ref:W,children:[p.jsxs("button",{onClick:()=>ce(oe=>!oe),className:"btn-ghost flex items-center gap-1",children:[p.jsxs("span",{className:"relative",children:[p.jsx(mw,{className:"w-4 h-4 text-accent/75",strokeWidth:1.5}),d&&p.jsx("span",{className:"lg:hidden absolute -top-0.5 -right-0.5 w-2 h-2 rounded-full bg-accent"})]}),p.jsx("span",{className:"hidden lg:inline whitespace-nowrap",children:l.displayName||l.username||l.userId}),p.jsx("svg",{className:"hidden lg:block w-3 h-3",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M19 9l-7 7-7-7"})})]}),re&&p.jsxs("div",{className:"absolute right-0 top-full mt-1 w-52 bg-surface-raised border border-surface-border rounded-md shadow-lg py-1 z-[100]",children:[p.jsx(Ii,{to:"/credentials",onClick:()=>ce(!1),className:"block px-3 py-2 text-xs text-text-secondary hover:bg-surface-hover",children:"Credentials"}),p.jsx("button",{onClick:()=>{ce(!1),m?i==null||i():window.location.reload()},className:"lg:hidden block w-full text-left px-3 py-2 text-xs text-text-secondary hover:bg-surface-hover",children:m?"Events":"Reconnect events"}),g&&p.jsx("button",{onClick:()=>{ce(!1),t==null||t()},className:"lg:hidden block w-full text-left px-3 py-2 text-xs text-text-secondary hover:bg-surface-hover",children:"Docs"}),d&&p.jsxs("button",{onClick:()=>{ce(!1),xd()},className:"lg:hidden block w-full text-left px-3 py-2 text-xs text-accent hover:bg-surface-hover capitalize",children:["Exit ",d," view"]}),p.jsxs("div",{className:"px-3 py-2 border-t border-surface-border/60",children:[p.jsx("p",{className:"text-2xs font-medium uppercase tracking-widest text-text-tertiary mb-1.5",children:"Theme"}),p.jsx("div",{className:"flex items-center gap-2 flex-wrap",children:xe.map(oe=>p.jsx("button",{type:"button",onClick:()=>Ne(oe.id),title:oe.label,"aria-label":`${oe.label} theme`,className:`w-4 h-4 rounded-full transition-transform hover:scale-110 ${ie===oe.id?"ring-2 ring-offset-1 ring-surface-border":""}`,style:{backgroundColor:oe.swatch}},oe.id))})]}),p.jsx("button",{onClick:()=>{ce(!1),c()},className:"block w-full text-left px-3 py-2 text-xs text-text-secondary hover:bg-surface-hover",children:"Sign Out"}),p.jsxs("div",{className:"border-t border-surface-border/60 pt-1",children:[L.map(oe=>p.jsxs("div",{className:"flex items-center group px-3 py-1.5 hover:bg-surface-hover",children:[p.jsx(Ii,{to:oe.url,onClick:()=>ce(!1),title:oe.url,className:"flex-1 min-w-0 text-xs text-text-secondary hover:text-text-primary truncate",children:oe.label}),p.jsx("button",{type:"button",onClick:()=>ae(oe),title:`Remove "${oe.label}"`,className:"opacity-0 group-hover:opacity-100 transition-opacity ml-1 p-0.5 shrink-0 text-text-quaternary hover:text-status-error",children:p.jsx(Gt,{className:"w-3 h-3"})})]},`${oe.label}::${oe.url}`)),p.jsx("hr",{className:"border-surface-border/60 mx-3 my-0.5"}),p.jsxs("button",{type:"button",onClick:Y,className:"flex items-center gap-1.5 w-full px-3 py-2 text-xs text-text-secondary hover:bg-surface-hover",children:[p.jsx(pw,{className:"w-3.5 h-3.5 shrink-0",strokeWidth:1.5}),"Add Bookmark"]})]})]})]})]})]}),C&&p.jsx(GA,{onClose:()=>P(!1)})]})}function Qd({open:i,children:t}){const[r,s]=j.useState(i);return j.useEffect(()=>{i&&s(!0)},[i]),p.jsx("div",{className:`grid transition-[grid-template-rows] duration-300 ease-out ${i?"grid-rows-[1fr]":"grid-rows-[0fr]"}`,onTransitionEnd:()=>{i||s(!1)},children:p.jsx("div",{className:"overflow-hidden",children:r?t:null})})}function Sd(i){return({isActive:t})=>{const r="flex items-center rounded-md transition-colors duration-150",s="bg-surface-hover text-text-primary font-medium",l="text-text-secondary hover:text-text-primary hover:bg-surface-hover";return i?`${r} justify-center w-10 h-10 mx-auto ${t?s:l}`:`${r} gap-3 px-4 py-2 text-sm ${t?s:l}`}}function rN(){return({isActive:i})=>`flex items-center gap-3 pl-11 pr-4 py-1.5 text-xs rounded-md transition-colors duration-150 ${i?"text-text-primary font-medium":"text-text-secondary hover:text-text-primary"}`}function iN({group:i,collapsed:t}){const{pathname:r}=gn(),s=i.matchPaths.some(g=>r.startsWith(g)),[l,c]=j.useState(s),d=l||s;return t?p.jsx(p.Fragment,{children:i.items.map(g=>p.jsx(Hs,{to:g.to,className:Sd(!0),title:g.label,children:g.icon&&p.jsx(g.icon,{className:"w-5 h-5 shrink-0 text-accent/75",strokeWidth:1.5})},g.to))}):p.jsxs("div",{children:[p.jsxs("button",{onClick:()=>c(g=>!g),className:"w-full flex items-center justify-between px-4 py-2 text-sm rounded-md transition-colors duration-150 text-text-secondary hover:text-text-primary hover:bg-surface-hover",children:[p.jsxs("span",{className:"flex items-center gap-3",children:[i.icon&&p.jsx(i.icon,{className:"w-5 h-5 shrink-0 text-accent/75",strokeWidth:1.5}),p.jsx("span",{children:i.label})]}),p.jsx("svg",{className:`w-3.5 h-3.5 text-text-tertiary transition-transform duration-150 ${d?"rotate-90":""}`,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9 5l7 7-7 7"})})]}),p.jsx(Qd,{open:d,children:i.items.map(g=>p.jsxs(Hs,{to:g.to,end:g.end,className:rN(),children:[g.icon&&p.jsx(g.icon,{className:"w-4 h-4 shrink-0 text-accent/75",strokeWidth:1.5}),p.jsx("span",{children:g.label})]},g.to))})]})}function sN(i){return i.kind==="group"}function aN({entry:i,collapsed:t}){const{pathname:r,search:s}=gn(),l=i.to.includes("?"),c=i.icon&&p.jsx(i.icon,{className:`w-5 h-5 shrink-0 text-accent/75 ${i.iconClassName??""}`,strokeWidth:1.5,...i.solid?{fill:"currentColor"}:{}});if(l){const[d,g]=i.to.split("?"),y=r===d&&s===`?${g}`,f=Sd(t)({isActive:y});return p.jsxs(Hs,{to:i.to,className:f,title:t?i.label:void 0,children:[c,!t&&p.jsx("span",{children:i.label})]})}return p.jsxs(Hs,{to:i.to,end:i.end,className:Sd(t),title:t?i.label:void 0,children:[c,!t&&p.jsx("span",{children:i.label})]})}function ui({heading:i,entries:t}){const{collapsed:r}=Vd();return p.jsxs("div",{className:"space-y-1",children:[r?p.jsx("div",{className:"h-px bg-surface-border mx-3 my-2",title:i}):p.jsx("p",{className:"px-4 pt-5 pb-2 text-xs font-semibold uppercase tracking-wider text-text-tertiary",children:i}),t.map(s=>sN(s)?p.jsx(iN,{group:s,collapsed:r},s.label):p.jsx(aN,{entry:s,collapsed:r},s.to))]})}function oN({aiEnabled:i=!1,isBuilder:t=!1,isOps:r=!1,viewAs:s=null,canSeePaceBoard:l=!1}){const c={to:"/operations",label:"Pace Board",icon:gw};if(!t&&(!r||s==="engineer"||s==="operator"))return l?p.jsx(ui,{heading:"Monitor",entries:[c]}):null;if(!t)return p.jsx(ui,{heading:"Monitor",entries:l?[c]:[]});const d=[...l?[c]:[],{to:"/topics",label:"Event Topics",icon:ab},{to:"/agents",label:i?"Agents":"Automations",icon:yw},{to:"/capabilities",label:"Capabilities",icon:bw}];return p.jsx(ui,{heading:"Monitor",entries:d})}function lN(){return dt({queryKey:["me","preferences"],queryFn:()=>_e("/me/preferences"),staleTime:6e4})}function cN(){const i=rt();return mt({mutationFn:t=>_e("/me/preferences",{method:"PATCH",body:JSON.stringify(t)}),onSuccess:t=>{i.setQueryData(["me","preferences"],t)}})}function uN(i){return i.replace(/([a-z0-9])([A-Z])/g,"$1 $2").replace(/([A-Z]+)([A-Z][a-z])/g,"$1 $2").split(/[-_\s]+/).filter(Boolean).map(t=>t.charAt(0).toUpperCase()+t.slice(1)).join(" ")}function fN(i){var t;return((t=i.title)==null?void 0:t.trim())||uN(i.role)}function hN(i,t){const r=(i==null?void 0:i.pinnedViews)??[],s=new Set((i==null?void 0:i.hiddenRolePins)??[]),l=new Set(r.map(g=>g.label)),c=[...r],d=new Set;for(const{role:g,pins:y}of t)for(const f of y)l.has(f.label)||s.has(f.label)||d.has(f.label)||(d.add(f.label),c.push({...f,id:`role:${g}:${f.label}`,fromRole:g}));return c}function dN(i){let t;try{t=new URL(i,"http://local")}catch{return null}if(t.pathname!=="/escalations/available"&&t.pathname!=="/escalations")return null;const r=t.searchParams,s=ij(r),l=r.get("status")||void 0,c=t.pathname==="/escalations/available"&&(l===void 0||l==="available");return{available:c,params:{...s,role:r.get("role")||void 0,type:r.get("type")||void 0,priority:r.get("priority")?parseInt(r.get("priority"),10):void 0,status:c||l==="all"?void 0:l,search:r.get("search")||void 0}}}function mN(){return`pin-${Date.now().toString(36)}-${Math.random().toString(36).slice(2,8)}`}function pN(){var C;const{collapsed:i}=Vd(),{user:t}=Ft(),r=lN(),s=cN(),l=j.useMemo(()=>new Set(((t==null?void 0:t.roles)??[]).map(P=>P.role)),[t]),{data:c}=ev({enabled:l.size>0}),d=rt();Dd(Gd(),()=>{d.invalidateQueries({queryKey:["escalations"]})});const g=(C=r.data)==null?void 0:C.preferences,y=j.useMemo(()=>((c==null?void 0:c.roles)??[]).filter(P=>l.has(P.role)&&Array.isArray(P.default_pins)&&P.default_pins.length>0).map(P=>({role:P.role,pins:P.default_pins})),[c,l]),f=j.useMemo(()=>hN(g,y),[g,y]),m=j.useMemo(()=>new Map(((c==null?void 0:c.roles)??[]).map(P=>[P.role,fN(P)])),[c]),b=j.useMemo(()=>f.filter(P=>!P.fromRole),[f]),v=j.useMemo(()=>y.map(({role:P})=>({role:P,title:m.get(P)??P,pins:f.filter(ie=>ie.fromRole===P)})).filter(P=>P.pins.length>0),[y,m,f]),_=(g==null?void 0:g.pinnedViews)??[],w=j.useRef(null),S=P=>s.mutate({pinnedViews:P}),M=P=>S(_.filter(ie=>ie.id!==P)),B=P=>S([..._,{id:mN(),label:P.label,url:P.url,badge:P.badge}]),U=P=>s.mutate({hiddenRolePins:[...(g==null?void 0:g.hiddenRolePins)??[],P]}),re=(P,ie)=>{if(P===ie)return;const X=[..._],[L]=X.splice(P,1);X.splice(ie,0,L),S(X)};if(f.length===0)return null;const ce="px-4 pt-5 pb-2 text-xs font-semibold uppercase tracking-wider text-text-tertiary truncate";return p.jsxs("div",{className:"space-y-1",children:[i&&p.jsx("div",{className:"h-px bg-surface-border mx-3 my-2",title:"Pinned"}),!i&&b.length>0&&p.jsx("p",{className:ce,children:"Pinned"}),b.map(P=>{const ie=_.findIndex(X=>X.id===P.id);return p.jsx(F1,{pin:P,collapsed:i,draggable:ie!==-1,onDragStart:()=>{w.current=ie},onDropOn:()=>{w.current!==null&&ie!==-1&&re(w.current,ie),w.current=null},onRemove:()=>M(P.id)},P.id)}),v.map(P=>p.jsxs("div",{children:[!i&&p.jsx("p",{className:ce,title:`${P.title} — pins from the ${P.role} role`,"data-testid":"pin-group-label",children:P.title}),P.pins.map(ie=>p.jsx(F1,{pin:ie,collapsed:i,draggable:!1,onDragStart:()=>{},onDropOn:()=>{},onPromote:()=>B(ie),onHide:()=>U(ie.label)},ie.id))]},P.role))]})}function F1({pin:i,collapsed:t,draggable:r,onDragStart:s,onDropOn:l,onRemove:c,onPromote:d,onHide:g}){const{pathname:y,search:f}=gn(),[m,b=""]=i.url.split("?"),v=y===m&&f===(b?`?${b}`:""),_="group flex items-center rounded-md transition-colors duration-150",w=v?"bg-surface-hover text-text-primary font-medium":"text-text-secondary hover:text-text-primary hover:bg-surface-hover";return t?p.jsx(Hs,{to:i.url,className:`${_} ${w} justify-center w-10 h-10 mx-auto`,title:i.label,children:p.jsx(Pg,{className:"w-5 h-5 shrink-0 text-accent/75",strokeWidth:1.5})}):p.jsxs("div",{className:`${_} ${w} relative`,draggable:r,onDragStart:s,onDragOver:S=>S.preventDefault(),onDrop:l,children:[p.jsxs(Hs,{to:i.url,title:i.label,className:"flex items-center gap-2.5 pl-4 pr-3 py-1.5 text-[0.7875rem] flex-1 min-w-0",children:[p.jsx(Pg,{className:"w-4 h-4 shrink-0 text-accent/75",strokeWidth:1.5,...i.fromRole?{}:{fill:"currentColor",fillOpacity:.15}}),p.jsx("span",{className:"truncate flex-1 min-w-0",children:i.label}),i.badge&&p.jsx(gN,{url:i.url})]}),p.jsxs("span",{className:"absolute right-1 top-1/2 -translate-y-1/2 flex items-center gap-0.5 rounded px-0.5 bg-surface-hover opacity-0 pointer-events-none group-hover:opacity-100 group-hover:pointer-events-auto transition-opacity",children:[d&&p.jsx("button",{onClick:d,title:"Make mine — copy into my pins",className:"p-1 text-text-quaternary hover:text-accent transition-colors",children:p.jsx(lb,{className:"w-3 h-3"})}),g&&p.jsx("button",{onClick:g,title:"Hide this role pin",className:"p-1 text-text-quaternary hover:text-status-error transition-colors",children:p.jsx(vw,{className:"w-3 h-3"})}),c&&p.jsx("button",{onClick:c,title:`Remove "${i.label}"`,className:"p-1 text-text-quaternary hover:text-status-error transition-colors",children:p.jsx(Gt,{className:"w-3 h-3"})})]})]})}function gN({url:i}){var d;const t=j.useMemo(()=>dN(i),[i]),r={limit:1,staleTime:15e3},s=iv({...(t==null?void 0:t.params)??{},...r,enabled:!!t&&t.available}),l=rv({...(t==null?void 0:t.params)??{},...r,enabled:!!t&&!t.available});if(!t)return null;const c=t.available?s:l;return c.isError||((d=c.data)==null?void 0:d.total)===void 0?null:p.jsx("span",{className:"shrink-0 text-right text-2xs leading-none tabular-nums text-accent/80 relative -top-[0.35em]",title:`${c.data.total} matching now`,children:c.data.total})}function yN(){var c;const{data:i}=Wn(),t=(c=i==null?void 0:i.features)==null?void 0:c.graphWorkflows,r=t===!0||t!==!1&&Xb(),s=[{to:"/workflows/registry",label:"Registry",icon:Ug},{to:"/workflows/durable/invoke",label:"Invoke",icon:zg},{to:"/workflows/executions",label:"Executions",icon:Ig}],l=r?[{kind:"group",label:"Procedural",icon:xw,matchPaths:["/workflows/registry","/workflows/durable/invoke","/workflows/executions","/workflows/durable/executions","/workflows/start","/workflows/workers","/workflows/tasks"],items:s},{kind:"group",label:"Graph",icon:Ed,matchPaths:["/mcp/workflows","/mcp/executions"],items:[{to:"/mcp/workflows",label:"Configure",icon:Ug,end:!0},{to:"/mcp/workflows/invoke",label:"Invoke",icon:zg},{to:"/mcp/executions",label:"Executions",icon:Ig}]}]:s;return p.jsx(ui,{heading:"Orchestrate",entries:l})}const bN=[{to:"/mcp/queries",label:"Designer",icon:_w},{to:"/mcp/servers",label:"Servers & Tools",icon:ww}];function vN(){return p.jsx(ui,{heading:"Design",entries:bN})}const xN=[{to:"/files",label:"Files",icon:Sw},{to:"/knowledge",label:"Knowledge",icon:Ew}];function _N(){return p.jsx(ui,{heading:"Storage",entries:xN})}function wN({isBuilder:i=!1,isOps:t=!1}){var d;const{data:r}=Wn(),s=((d=r==null?void 0:r.features)==null?void 0:d.dbMaintenance)!==!1,l=[{to:"/admin/users",label:"Accounts",icon:Ow},...i||t?[{to:"/admin/roles",label:"Roles",icon:Jh},{to:"/admin/personas",label:"Personas",icon:Aw},{to:"/admin/scan-codes",label:"Scan Codes",icon:ou}]:[]],c=[{to:"/admin/controlplane",label:"Routers",icon:jw},{to:"/admin/streams",label:"Messages",icon:Nw},...s?[{to:"/admin/maintenance",label:"DB Maintenance",icon:Tw}]:[]];return p.jsxs(p.Fragment,{children:[p.jsx(ui,{heading:"Identity & Access",entries:l}),i&&p.jsx(ui,{heading:"Infrastructure",entries:c})]})}function Pv({aiEnabled:i,isBuilder:t,isOps:r,viewAs:s,canSeePaceBoard:l}){return p.jsxs(p.Fragment,{children:[p.jsx(oN,{aiEnabled:i,isBuilder:t,isOps:r,viewAs:s,canSeePaceBoard:l}),p.jsx(pN,{}),t&&p.jsx(yN,{}),t&&i&&p.jsx(vN,{}),t&&p.jsx(_N,{}),(t||r)&&p.jsx(wN,{isBuilder:t,isOps:r})]})}function SN({open:i,onClose:t,...r}){const s=gn();return j.useEffect(()=>{t()},[s.pathname]),p.jsxs("div",{className:`lg:hidden fixed inset-y-0 left-0 z-40 flex ${i?"":"pointer-events-none"}`,children:[p.jsx("div",{className:`fixed inset-0 bg-black/20 transition-opacity duration-200 ${i?"opacity-100":"opacity-0"}`,onClick:t,"aria-hidden":!0}),p.jsxs("div",{className:`relative w-72 max-w-[85vw] h-full bg-surface-raised border-r border-surface-border shadow-xl flex flex-col transition-transform duration-200 ease-out ${i?"translate-x-0":"-translate-x-full"}`,children:[p.jsx("div",{className:"flex items-center justify-end px-3 pt-3 shrink-0",children:p.jsx("button",{onClick:t,className:"p-1.5 rounded text-text-tertiary hover:text-text-primary hover:bg-surface-hover transition-colors","aria-label":"Close navigation",children:p.jsx(Gt,{className:"w-4 h-4"})})}),p.jsx("nav",{className:"flex-1 px-3 pb-4 space-y-2 overflow-y-auto overflow-x-hidden",children:p.jsx(yO,{children:p.jsx(Pv,{...r})})})]})]})}const Uv="lt_event_feed_patterns";function EN(i,t){if(i.startsWith("/topics/")){const d=decodeURIComponent(i.replace("/topics/",""));if(d&&!d.includes("/"))return`lt.events.${d}`}const r=i.match(/^\/escalations\/detail\/(.+)/);if(r)return`lt.events.system.escalation.*.${r[1]}.>`;if(i.startsWith("/escalations")){const d=new URLSearchParams(t).get("role");return d?`lt.events.system.escalation.${Wb(d)}.>`:"lt.events.system.escalation.>"}const s=i.match(/^\/workflows\/(?:durable\/)?executions\/(.+)/);if(s)return`lt.events.system.workflow.${s[1]}.>`;if(i.startsWith("/workflows"))return"lt.events.system.workflow.>";const l=i.match(/^\/agents\/([^/]+)$/);if(l&&l[1]!=="new")return`lt.events.system.agent.${l[1]}.>`;if(i.startsWith("/agents"))return"lt.events.system.agent.>";if(i.startsWith("/knowledge"))return"lt.events.system.knowledge.>";if(i.startsWith("/files"))return"lt.events.system.file.>";if(i==="/")return"lt.events.system.>";const c=i.match(/^\/mcp\/executions\/(.+)/);return c?`lt.events.system.*.${c[1]}.>`:(i.startsWith("/mcp"),"lt.events.system.>")}function ON(){try{const i=localStorage.getItem(Uv);return i?JSON.parse(i):[]}catch{return[]}}function Yh(i){try{localStorage.setItem(Uv,JSON.stringify(i))}catch{}}function AN(){const{pathname:i,search:t}=gn(),[r,s]=j.useState(ON),l=j.useMemo(()=>EN(i,t),[i,t]),c=j.useMemo(()=>{const f=new Set([l,...r]);return Array.from(f)},[l,r]),d=j.useCallback(f=>{const m=f.startsWith("lt.events.")?f:`lt.events.${f}`;s(b=>{if(b.includes(m))return b;const v=[...b,m];return Yh(v),v})},[]),g=j.useCallback(f=>{s(m=>{const b=m.filter(v=>v!==f);return Yh(b),b})},[]),y=j.useCallback(()=>{s([]),Yh([])},[]);return{patterns:c,pagePattern:l,userPatterns:r,addPattern:d,removePattern:g,clearUserPatterns:y}}function jN({children:i,className:t=""}){return p.jsx("p",{className:`text-2xs font-semibold uppercase tracking-widest text-text-tertiary ${t}`,children:i})}const Kh=280,V1="cubic-bezier(0.4, 0, 0.2, 1)",Bc=40;function NN(i){if(!i)return"scale(0.92)";const t=window.innerWidth,r=window.innerHeight,s=t-Bc*2,l=r-Bc*2,c=i.width/s,d=i.height/l,g=i.left+i.width/2-(Bc+s/2),y=i.top+i.height/2-(Bc+l/2);return`translate(${g}px, ${y}px) scale(${c}, ${d})`}function zv({open:i,onClose:t,sourceRef:r,children:s}){const[l,c]=j.useState(null),d=j.useRef(null),g=j.useRef(!1);j.useEffect(()=>{var v,_;i&&!g.current?(d.current=((v=r==null?void 0:r.current)==null?void 0:v.getBoundingClientRect())??null,c("entering")):!i&&g.current&&l==="open"&&(d.current=((_=r==null?void 0:r.current)==null?void 0:_.getBoundingClientRect())??null,c("exiting")),g.current=i},[i,r,l]),j.useEffect(()=>{if(l!=="entering")return;const v=requestAnimationFrame(()=>{requestAnimationFrame(()=>c("open"))});return()=>cancelAnimationFrame(v)},[l]),j.useEffect(()=>{if(l)return document.body.style.overflow="hidden",()=>{document.body.style.overflow=""}},[l]),j.useEffect(()=>{if(!l)return;const v=_=>{_.key==="Escape"&&t()};return document.addEventListener("keydown",v),()=>document.removeEventListener("keydown",v)},[l,t]);const y=j.useCallback(v=>{v.propertyName==="transform"&&l==="exiting"&&c(null)},[l]);if(j.useEffect(()=>{if(l!=="exiting")return;const v=setTimeout(()=>c(null),Kh+50);return()=>clearTimeout(v)},[l]),!l)return null;const f=l==="entering"||l==="exiting",m=f?NN(d.current):"none",b=f?0:1;return ib.createPortal(p.jsx("div",{className:"fixed inset-0 z-50 overflow-auto p-10",style:{transformOrigin:"center center",transition:`transform ${Kh}ms ${V1}, opacity ${Kh}ms ${V1}`,transform:m,opacity:b,backgroundColor:"rgb(var(--lt-surface))"},onTransitionEnd:y,children:s}),document.body)}function TN({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4 6h16M4 12h8M4 18h12"})})}function kN({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M8 7l-5 5 5 5M16 7l5 5-5 5"})})}function CN({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3"})})}function MN({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M5 13l4 4L19 7"})})}function RN({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9 9V4.5M9 9H4.5M9 9L3.5 3.5M9 15v4.5M9 15H4.5M9 15l-5.5 5.5M15 9h4.5M15 9V4.5M15 9l5.5-5.5M15 15h4.5M15 15v4.5m0-4.5l5.5 5.5"})})}function DN({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4 8V4m0 0h4M4 4l5 5m11-1V4m0 0h-4m4 0l-5 5M4 16v4m0 0h4m-4 0l5-5m11 5v-4m0 4h-4m4 0l-5-5"})})}function qN(i){const t=i.trim().split(`
|
|
57
|
-
`);if(t.length<2)return i;const r=
|
|
53
|
+
${y.stack}`),d.reject(f)):d.resolve(m))}});return g.requestSubject=t,this.protocol.publish(t,r,{reply:c,headers:s.headers}),d}else{const c=new wb(this.protocol.muxSubscriptions,t,s,l);this.protocol.request(c);try{this.publish(t,r,{reply:`${this.protocol.muxSubscriptions.baseInbox}${c.token}`,headers:s.headers})}catch(y){c.cancel(y)}const d=Promise.race([c.timer,c.deferred]);return d.catch(()=>{c.cancel()}),d}}flush(){return this.isClosed()?Promise.reject(me.errorForCode(le.ConnectionClosed)):this.protocol.flush()}drain(){return this.isClosed()?Promise.reject(me.errorForCode(le.ConnectionClosed)):this.isDraining()?Promise.reject(me.errorForCode(le.ConnectionDraining)):(this.draining=!0,this.protocol.drain())}isClosed(){return this.protocol.isClosed()}isDraining(){return this.draining}getServer(){const t=this.protocol.getServer();return t?t.listen:""}status(){const t=new kt;return t.iterClosed.then(()=>{const r=this.listeners.indexOf(t);this.listeners.splice(r,1)}),this.listeners.push(t),t}get info(){return this.protocol.isClosed()?void 0:this.protocol.info}async context(){return(await this.request("$SYS.REQ.USER.INFO")).json((r,s)=>r==="time"?new Date(Date.parse(s)):s)}stats(){return{inBytes:this.protocol.inBytes,outBytes:this.protocol.outBytes,inMsgs:this.protocol.inMsgs,outMsgs:this.protocol.outMsgs}}async jetstreamManager(t={}){const r=new DE(this,t);if(t.checkAPI!==!1)try{await r.getAccountInfo()}catch(s){const l=s;throw l.code===le.NoResponders&&(l.code=le.JetStreamNotEnabled),l}return r}jetstream(t={}){return new Md(this,t)}getServerVersion(){const t=this.info;return t?$i(t.version):void 0}async rtt(){if(!this.protocol._closed&&!this.protocol.connected)throw me.errorForCode(le.Disconnect);const t=Date.now();return await this.flush(),Date.now()-t}get features(){return this.protocol.features}get services(){return this._services||(this._services=new PE(this)),this._services}reconnect(){return this.isClosed()?Promise.reject(me.errorForCode(le.ConnectionClosed)):this.isDraining()?Promise.reject(me.errorForCode(le.ConnectionDraining)):this.protocol.reconnect()}}class PE{constructor(t){A(this,"nc");this.nc=t}add(t){try{return new bo(this.nc,t).start()}catch(r){return Promise.reject(r)}}client(t,r){return new gE(this.nc,t,r)}}class UE{constructor(t,r,s){A(this,"bucket");A(this,"sm");A(this,"prefixLen");this.bucket=t,this.prefixLen=r,this.sm=s}get key(){return this.sm.subject.substring(this.prefixLen)}get value(){return this.sm.data}get delta(){return 0}get created(){return this.sm.time}get revision(){return this.sm.seq}get operation(){return this.sm.header.get(tu)||"PUT"}get length(){const t=this.sm.header.get(Ht.MessageSizeHdr)||"";return t!==""?parseInt(t,10):this.sm.data.length}json(){return this.sm.json()}string(){return this.sm.string()}}class zE{constructor(t,r,s){A(this,"bucket");A(this,"key");A(this,"sm");this.bucket=t,this.key=r,this.sm=s}get value(){return this.sm.data}get created(){return new Date(jd(this.sm.info.timestampNanos))}get revision(){return this.sm.seq}get operation(){var t;return((t=this.sm.headers)==null?void 0:t.get(tu))||"PUT"}get delta(){return this.sm.info.pending}get length(){var r;const t=((r=this.sm.headers)==null?void 0:r.get(Ht.MessageSizeHdr))||"";return t!==""?parseInt(t,10):this.sm.data.length}json(){return this.sm.json()}string(){return this.sm.string()}}class Mb extends NS{constructor(r,s,l){super(r.nc,s,l);A(this,"js");A(this,"monitor");this.js=r,this.monitor=null,this.sub.closed.then(()=>{this.monitor&&this.monitor.cancel()})}set info(r){this.sub.info=r}get info(){return this.sub.info}_resetOrderedConsumer(r){if(this.info===null||this.sub.isClosed())return;const s=Sr(this.js.nc.options.inboxPrefix);this.js.nc._resub(this.sub,s);const c=this.info;c.config.name=fi.next(),c.ordered_consumer_sequence.delivery_seq=0,c.flow_control.heartbeat_count=0,c.flow_control.fc_count=0,c.flow_control.consumer_restarts++,c.deliver=s,c.config.deliver_subject=s,c.config.deliver_policy=bt.StartSequence,c.config.opt_start_seq=r;const d={};d.stream_name=this.info.stream,d.config=c.config;const y=`${c.api.prefix}.CONSUMER.CREATE.${c.stream}`;this.js._request(y,d,{retries:-1}).then(g=>{const f=g,m=this.sub.info;m.last=f,this.info.config=f.config,this.info.name=f.name}).catch(g=>{const f=new me(`unable to recreate ordered consumer ${c.stream} at seq ${r}`,le.RequestError,g);this.sub.callback(f,{})})}_maybeSetupHbMonitoring(){var s,l;const r=((l=(s=this.info)==null?void 0:s.config)==null?void 0:l.idle_heartbeat)||0;r&&this._setupHbMonitoring(jd(r))}_setupHbMonitoring(r,s=0){const l={cancelAfter:0,maxOut:2};s&&(l.cancelAfter=s);const c=this.sub,d=y=>{var m,b,v,_;const g=cS(409,`${kn.IdleHeartbeatMissed}: ${y}`,this.sub.subject);if(!((m=this.info)==null?void 0:m.ordered))this.sub.callback(null,g);else{if(!this.js.nc.protocol.connected)return!1;const w=((v=(b=this.info)==null?void 0:b.ordered_consumer_sequence)==null?void 0:v.stream_seq)||0;return this._resetOrderedConsumer(w+1),(_=this.monitor)==null||_.restart(),!1}return!c.noIterator};this.monitor=new Nd(r,d,l)}_checkHbOrderConsumer(r){const s=r.headers.get(Ht.ConsumerStalledHdr);s!==""&&this.js.nc.publish(s);const l=parseInt(r.headers.get(Ht.LastConsumerSeqHdr),10),c=this.info.ordered_consumer_sequence;return this.info.flow_control.heartbeat_count++,l!==c.delivery_seq&&this._resetOrderedConsumer(c.stream_seq+1),!1}_checkOrderedConsumer(r){const s=this.info.ordered_consumer_sequence,l=r.info.streamSequence,c=r.info.deliverySequence;return c!=s.delivery_seq+1?(this._resetOrderedConsumer(s.stream_seq+1),!1):(s.delivery_seq=c,s.stream_seq=l,!0)}async destroy(){this.isClosed()||await this.drain();const r=this.sub.info,s=r.config.durable_name||r.name,l=`${r.api.prefix}.CONSUMER.DELETE.${r.stream}.${s}`;await r.api._request(l)}async consumerInfo(){const r=this.sub.info,s=r.config.durable_name||r.name,l=`${r.api.prefix}.CONSUMER.INFO.${r.stream}.${s}`,c=await r.api._request(l);return r.last=c,c}}class IE extends Mb{constructor(t,r,s){super(t,r,s)}pull(t={batch:1}){const{stream:r,config:s,name:l}=this.sub.info,c=s.durable_name??l,d={};if(d.batch=t.batch||1,d.no_wait=t.no_wait||!1,(t.max_bytes??0)>0){const f=this.js.nc.features.get(Ie.JS_PULL_MAX_BYTES);if(!f.ok)throw new Error(`max_bytes is only supported on servers ${f.min} or better`);d.max_bytes=t.max_bytes}let y=0;t.expires&&t.expires>0&&(y=t.expires,d.expires=at(y));let g=0;if(t.idle_heartbeat&&t.idle_heartbeat>0&&(g=t.idle_heartbeat,d.idle_heartbeat=at(g)),g&&y===0)throw new Error("idle_heartbeat requires expires");if(g>y)throw new Error("expires must be greater than idle_heartbeat");if(this.info){this.monitor&&this.monitor.cancel(),y&&g&&(this.monitor?this.monitor._change(g,y):this._setupHbMonitoring(g,y));const f=this.info.api,m=`${f.prefix}.CONSUMER.MSG.NEXT.${r}.${c}`,b=this.sub.subject;f.nc.publish(m,f.jc.encode(d),{reply:b})}}}function $E(i,t){return i?GE(t):HE(t)}function HE(i){return(t,r)=>t?[t,null]:(t=zs(r),t?[t,null]:[null,mo(r,i)])}function GE(i){return(t,r)=>{if(t)return[t,null];const s=zs(r);return s!==null?[Rb(s),null]:[null,mo(r,i)]}}function Rb(i){if(i!==null)switch(i.code){case le.JetStream404NoMessages:case le.JetStream408RequestTimeout:return null;case le.JetStream409:return uS(i)?i:null;default:return i}return null}function FE(i){i&&i.ack()}function VE(i){const t=i.split(".");if(t.length===9&&t.splice(2,0,"_",""),t.length<11||t[0]!=="$JS"||t[1]!=="ACK")throw new Error("not js message");const r={};return r.domain=t[2]==="_"?"":t[2],r.account_hash=t[3],r.stream=t[4],r.consumer=t[5],r.deliveryCount=parseInt(t[6],10),r.redeliveryCount=r.deliveryCount,r.redelivered=r.deliveryCount>1,r.streamSequence=parseInt(t[7],10),r.deliverySequence=parseInt(t[8],10),r.timestampNanos=parseInt(t[9],10),r.pending=parseInt(t[10],10),r}class YE{constructor(t,r){A(this,"msg");A(this,"di");A(this,"didAck");A(this,"timeout");this.msg=t,this.didAck=!1,this.timeout=r}get subject(){return this.msg.subject}get sid(){return this.msg.sid}get data(){return this.msg.data}get headers(){return this.msg.headers}get info(){return this.di||(this.di=VE(this.reply)),this.di}get redelivered(){return this.info.deliveryCount>1}get reply(){return this.msg.reply||""}get seq(){return this.info.streamSequence}doAck(t){this.didAck||(this.didAck=!this.isWIP(t),this.msg.respond(t))}isWIP(t){return t.length===4&&t[0]===Va[0]&&t[1]===Va[1]&&t[2]===Va[2]&&t[3]===Va[3]}async ackAck(t){var s;t=t||{},t.timeout=t.timeout||this.timeout;const r=ot();if(this.didAck)r.resolve(!1);else if(this.didAck=!0,this.msg.reply){const c=this.msg.publisher,d=!((s=c.options)!=null&&s.noAsyncTraces),y=new wb(c.muxSubscriptions,this.msg.reply,{timeout:t.timeout},d);c.request(y);try{c.publish(this.msg.reply,vg,{reply:`${c.muxSubscriptions.baseInbox}${y.token}`})}catch(g){y.cancel(g)}try{await Promise.race([y.timer,y.deferred]),r.resolve(!0)}catch(g){y.cancel(g),r.reject(g)}}else r.resolve(!1);return r}ack(){this.doAck(vg)}nak(t){let r=jE;t&&(r=Wh().encode(`-NAK ${JSON.stringify({delay:at(t)})}`)),this.doAck(r)}working(){this.doAck(Va)}next(t,r={batch:1}){const s={};s.batch=r.batch||1,s.no_wait=r.no_wait||!1,r.expires&&r.expires>0&&(s.expires=at(r.expires));const l=Hn().encode(s),c=Vs.concat(TE,kE,l),d=t?{reply:t}:void 0;this.msg.respond(c,d)}term(t=""){let r=NE;(t==null?void 0:t.length)>0&&(r=Wh().encode(`+TERM ${t}`)),this.doAck(r)}json(){return this.msg.json()}string(){return this.msg.string()}}const KE="1.30.3",XE="nats.ws";class JE{constructor(){A(this,"version");A(this,"lang");A(this,"closeError");A(this,"connected");A(this,"done");A(this,"socket");A(this,"options");A(this,"socketClosed");A(this,"encrypted");A(this,"peeked");A(this,"yields");A(this,"signal");A(this,"closedNotification");this.version=KE,this.lang=XE,this.connected=!1,this.done=!1,this.socketClosed=!1,this.encrypted=!1,this.peeked=!1,this.yields=[],this.signal=ot(),this.closedNotification=ot()}async connect(t,r){const s=ot();if(r.tls)return s.reject(new me("tls",le.InvalidOption)),s;this.options=r;const l=t.src;if(r.wsFactory){const{socket:c,encrypted:d}=await r.wsFactory(t.src,r);this.socket=c,this.encrypted=d}else this.encrypted=l.indexOf("wss://")===0,this.socket=new WebSocket(l);return this.socket.binaryType="arraybuffer",this.socket.onopen=()=>{this.isDiscarded()},this.socket.onmessage=c=>{if(this.isDiscarded())return;if(this.yields.push(new Uint8Array(c.data)),this.peeked){this.signal.resolve();return}const d=Vs.concat(...this.yields),y=qS(d);if(y!==""){const g=cE.exec(y);if(!g){r.debug&&console.error("!!!",Fl(d)),s.reject(new Error("unexpected response from server"));return}try{const f=JSON.parse(g[1]);oE(f,this.options),this.peeked=!0,this.connected=!0,this.signal.resolve(),s.resolve()}catch(f){s.reject(f);return}}},this.socket.onclose=c=>{if(this.isDiscarded())return;this.socketClosed=!0;let d;this.done||(c.wasClean||(d=new Error(c.reason)),this._closed(d))},this.socket.onerror=c=>{if(this.isDiscarded())return;const d=c,y=new me(d.message,le.Unknown,new Error(d.error));s.reject(y)},s}disconnect(){this._closed(void 0,!0)}async _closed(t,r=!0){if(!this.isDiscarded()&&this.connected&&!this.done){if(this.closeError=t,!t)for(;!this.socketClosed&&this.socket.bufferedAmount>0;)await Ys(100);this.done=!0;try{this.socket.close(t?1002:1e3,t?t.message:void 0)}catch{}r&&this.closedNotification.resolve(t)}}get isClosed(){return this.done}[Symbol.asyncIterator](){return this.iterate()}async*iterate(){for(;;){if(this.isDiscarded())return;this.yields.length===0&&await this.signal;const t=this.yields;this.yields=[];for(let r=0;r<t.length;r++)this.options.debug&&console.info(`> ${Fl(t[r])}`),yield t[r];if(this.done)break;this.yields.length===0&&(t.length=0,this.yields=t,this.signal=ot())}}isEncrypted(){return this.connected&&this.encrypted}send(t){if(!this.isDiscarded())try{this.socket.send(t.buffer),this.options.debug&&console.info(`< ${Fl(t)}`);return}catch(r){this.options.debug&&console.error(`!!! ${Fl(t)}: ${r}`)}}close(t){return this._closed(t,!1)}closed(){return this.closedNotification}isDiscarded(){return this.done?(this.discard(),!0):!1}discard(){var t;this.done=!0;try{(t=this.socket)==null||t.close()}catch{}}}function QE(i,t){/^(.*:\/\/)(.*)/.test(i)||(typeof t=="boolean"?i=`${t===!0?"https":"http"}://${i}`:i=`https://${i}`);let s=new URL(i);const l=s.protocol.toLowerCase();l==="ws:"&&(t=!1),l==="wss:"&&(t=!0),l!=="https:"&&l!=="http"&&(i=i.replace(/^(.*:\/\/)(.*)/gm,"$2"),s=new URL(`http://${i}`));let c,d;const y=s.hostname,g=s.pathname,f=s.search||"";switch(l){case"http:":case"ws:":case"nats:":d=s.port||"80",c="ws:";break;case"https:":case"wss:":case"tls:":d=s.port||"443",c="wss:";break;default:d=s.port||t===!0?"443":"80",c=t===!0?"wss:":"ws:";break}return`${c}//${y}:${d}${g}${f}`}function ZE(i={}){return kS({defaultPort:443,urlParseFn:QE,factory:()=>new JE}),Rd.connect(i)}const WE=null,e2=null,Db="lt.events";function qb(i,t){const r=i.split("."),s=t.split(".");for(let l=0;l<s.length;l++){const c=s[l];if(c===">")return!0;if(l>=r.length||c!=="*"&&c!==r[l])return!1}return r.length===s.length}const Ks=j.createContext({connected:!1,subscribe:()=>()=>{}});function t2(){const{connected:i}=j.useContext(Ks);return{connected:i}}function n2(i,t){const{subscribe:r}=j.useContext(Ks),s=j.useRef(t);s.current=t,j.useEffect(()=>r(i,c=>s.current(c)),[r,i])}function Dd(i,t){const{subscribe:r}=j.useContext(Ks),s=j.useRef(t);s.current=t;const l=i.join(","),c=j.useMemo(()=>l.split(",").filter(Boolean),[l]);j.useEffect(()=>{const d=g=>s.current(g),y=c.map(g=>r(g,d));return()=>y.forEach(g=>g())},[r,c])}const r2=j.createContext({connected:!1,subscribe:()=>()=>{}}),i2=Wh();function s2({children:i,url:t,token:r}){const s=j.useRef(null),[l,c]=j.useState(!1),d=j.useRef(null),y=j.useRef(new Map),g=j.useRef(new Map),f=j.useCallback((_,w)=>{(async()=>{for await(const S of w)try{if(!qb(S.subject,_))continue;const M=JSON.parse(i2.decode(S.data)),B=y.current.get(_);if(!B)continue;for(const U of B)try{U(M)}catch{}}catch{}})()},[]),m=j.useCallback(_=>{var S;const w=s.current;if(!(!w||(S=w.isClosed)!=null&&S.call(w)||g.current.has(_)))try{const M=w.subscribe(_);g.current.set(_,M),f(_,M)}catch{}},[f]),b=j.useCallback((_,w)=>{const S=y.current;return S.has(_)||S.set(_,new Set),S.get(_).add(w),m(_),()=>{const M=S.get(_);if(M&&(M.delete(w),M.size===0)){S.delete(_);const B=g.current.get(_);if(B){g.current.delete(_);try{B.unsubscribe()}catch{}}}}},[m]),v=j.useCallback(async()=>{try{if(s.current)return;const _=t||WE;if(!_){console.error("[lt-nats] no NATS WebSocket URL configured — set NATS_WS_URL on the server");return}const w=await ZE({servers:_,token:r||e2||void 0,reconnect:!0,maxReconnectAttempts:-1,reconnectTimeWait:2e3});s.current=w,c(!0);for(const S of y.current.keys())m(S);(async()=>{for await(const S of w.status())S.type==="disconnect"||S.type==="error"?c(!1):S.type==="reconnect"&&c(!0)})()}catch{c(!1),d.current=setTimeout(v,3e3)}},[m]);return j.useEffect(()=>(v(),()=>{d.current&&clearTimeout(d.current);for(const _ of g.current.values())try{_.unsubscribe()}catch{}g.current.clear(),s.current&&(s.current.close().catch(()=>{}),s.current=null),c(!1)}),[v]),p.jsx(r2.Provider,{value:{connected:l,subscribe:b},children:p.jsx(Ks.Provider,{value:{connected:l,subscribe:b},children:i})})}const Zn=Object.create(null);Zn.open="0";Zn.close="1";Zn.ping="2";Zn.pong="3";Zn.message="4";Zn.upgrade="5";Zn.noop="6";const Hc=Object.create(null);Object.keys(Zn).forEach(i=>{Hc[Zn[i]]=i});const dd={type:"error",data:"parser error"},Bb=typeof Blob=="function"||typeof Blob<"u"&&Object.prototype.toString.call(Blob)==="[object BlobConstructor]",Lb=typeof ArrayBuffer=="function",Pb=i=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(i):i&&i.buffer instanceof ArrayBuffer,qd=({type:i,data:t},r,s)=>Bb&&t instanceof Blob?r?s(t):_g(t,s):Lb&&(t instanceof ArrayBuffer||Pb(t))?r?s(t):_g(new Blob([t]),s):s(Zn[i]+(t||"")),_g=(i,t)=>{const r=new FileReader;return r.onload=function(){const s=r.result.split(",")[1];t("b"+(s||""))},r.readAsDataURL(i)};function wg(i){return i instanceof Uint8Array?i:i instanceof ArrayBuffer?new Uint8Array(i):new Uint8Array(i.buffer,i.byteOffset,i.byteLength)}let Ih;function a2(i,t){if(Bb&&i.data instanceof Blob)return i.data.arrayBuffer().then(wg).then(t);if(Lb&&(i.data instanceof ArrayBuffer||Pb(i.data)))return t(wg(i.data));qd(i,!1,r=>{Ih||(Ih=new TextEncoder),t(Ih.encode(r))})}const Sg="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",io=typeof Uint8Array>"u"?[]:new Uint8Array(256);for(let i=0;i<Sg.length;i++)io[Sg.charCodeAt(i)]=i;const o2=i=>{let t=i.length*.75,r=i.length,s,l=0,c,d,y,g;i[i.length-1]==="="&&(t--,i[i.length-2]==="="&&t--);const f=new ArrayBuffer(t),m=new Uint8Array(f);for(s=0;s<r;s+=4)c=io[i.charCodeAt(s)],d=io[i.charCodeAt(s+1)],y=io[i.charCodeAt(s+2)],g=io[i.charCodeAt(s+3)],m[l++]=c<<2|d>>4,m[l++]=(d&15)<<4|y>>2,m[l++]=(y&3)<<6|g&63;return f},l2=typeof ArrayBuffer=="function",Bd=(i,t)=>{if(typeof i!="string")return{type:"message",data:Ub(i,t)};const r=i.charAt(0);return r==="b"?{type:"message",data:c2(i.substring(1),t)}:Hc[r]?i.length>1?{type:Hc[r],data:i.substring(1)}:{type:Hc[r]}:dd},c2=(i,t)=>{if(l2){const r=o2(i);return Ub(r,t)}else return{base64:!0,data:i}},Ub=(i,t)=>{switch(t){case"blob":return i instanceof Blob?i:new Blob([i]);case"arraybuffer":default:return i instanceof ArrayBuffer?i:i.buffer}},zb="",u2=(i,t)=>{const r=i.length,s=new Array(r);let l=0;i.forEach((c,d)=>{qd(c,!1,y=>{s[d]=y,++l===r&&t(s.join(zb))})})},f2=(i,t)=>{const r=i.split(zb),s=[];for(let l=0;l<r.length;l++){const c=Bd(r[l],t);if(s.push(c),c.type==="error")break}return s};function h2(){return new TransformStream({transform(i,t){a2(i,r=>{const s=r.length;let l;if(s<126)l=new Uint8Array(1),new DataView(l.buffer).setUint8(0,s);else if(s<65536){l=new Uint8Array(3);const c=new DataView(l.buffer);c.setUint8(0,126),c.setUint16(1,s)}else{l=new Uint8Array(9);const c=new DataView(l.buffer);c.setUint8(0,127),c.setBigUint64(1,BigInt(s))}i.data&&typeof i.data!="string"&&(l[0]|=128),t.enqueue(l),t.enqueue(r)})}})}let $h;function Xl(i){return i.reduce((t,r)=>t+r.length,0)}function Jl(i,t){if(i[0].length===t)return i.shift();const r=new Uint8Array(t);let s=0;for(let l=0;l<t;l++)r[l]=i[0][s++],s===i[0].length&&(i.shift(),s=0);return i.length&&s<i[0].length&&(i[0]=i[0].slice(s)),r}function d2(i,t){$h||($h=new TextDecoder);const r=[];let s=0,l=-1,c=!1;return new TransformStream({transform(d,y){for(r.push(d);;){if(s===0){if(Xl(r)<1)break;const g=Jl(r,1);c=(g[0]&128)===128,l=g[0]&127,l<126?s=3:l===126?s=1:s=2}else if(s===1){if(Xl(r)<2)break;const g=Jl(r,2);l=new DataView(g.buffer,g.byteOffset,g.length).getUint16(0),s=3}else if(s===2){if(Xl(r)<8)break;const g=Jl(r,8),f=new DataView(g.buffer,g.byteOffset,g.length),m=f.getUint32(0);if(m>Math.pow(2,21)-1){y.enqueue(dd);break}l=m*Math.pow(2,32)+f.getUint32(4),s=3}else{if(Xl(r)<l)break;const g=Jl(r,l);y.enqueue(Bd(c?g:$h.decode(g),t)),s=0}if(l===0||l>i){y.enqueue(dd);break}}}})}const Ib=4;function St(i){if(i)return m2(i)}function m2(i){for(var t in St.prototype)i[t]=St.prototype[t];return i}St.prototype.on=St.prototype.addEventListener=function(i,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+i]=this._callbacks["$"+i]||[]).push(t),this};St.prototype.once=function(i,t){function r(){this.off(i,r),t.apply(this,arguments)}return r.fn=t,this.on(i,r),this};St.prototype.off=St.prototype.removeListener=St.prototype.removeAllListeners=St.prototype.removeEventListener=function(i,t){if(this._callbacks=this._callbacks||{},arguments.length==0)return this._callbacks={},this;var r=this._callbacks["$"+i];if(!r)return this;if(arguments.length==1)return delete this._callbacks["$"+i],this;for(var s,l=0;l<r.length;l++)if(s=r[l],s===t||s.fn===t){r.splice(l,1);break}return r.length===0&&delete this._callbacks["$"+i],this};St.prototype.emit=function(i){this._callbacks=this._callbacks||{};for(var t=new Array(arguments.length-1),r=this._callbacks["$"+i],s=1;s<arguments.length;s++)t[s-1]=arguments[s];if(r){r=r.slice(0);for(var s=0,l=r.length;s<l;++s)r[s].apply(this,t)}return this};St.prototype.emitReserved=St.prototype.emit;St.prototype.listeners=function(i){return this._callbacks=this._callbacks||{},this._callbacks["$"+i]||[]};St.prototype.hasListeners=function(i){return!!this.listeners(i).length};const du=typeof Promise=="function"&&typeof Promise.resolve=="function"?t=>Promise.resolve().then(t):(t,r)=>r(t,0),Cn=typeof self<"u"?self:typeof window<"u"?window:Function("return this")(),p2="arraybuffer";function $b(i,...t){return t.reduce((r,s)=>(i.hasOwnProperty(s)&&(r[s]=i[s]),r),{})}const y2=Cn.setTimeout,g2=Cn.clearTimeout;function mu(i,t){t.useNativeTimers?(i.setTimeoutFn=y2.bind(Cn),i.clearTimeoutFn=g2.bind(Cn)):(i.setTimeoutFn=Cn.setTimeout.bind(Cn),i.clearTimeoutFn=Cn.clearTimeout.bind(Cn))}const b2=1.33;function v2(i){return typeof i=="string"?x2(i):Math.ceil((i.byteLength||i.size)*b2)}function x2(i){let t=0,r=0;for(let s=0,l=i.length;s<l;s++)t=i.charCodeAt(s),t<128?r+=1:t<2048?r+=2:t<55296||t>=57344?r+=3:(s++,r+=4);return r}function Hb(){return Date.now().toString(36).substring(3)+Math.random().toString(36).substring(2,5)}function _2(i){let t="";for(let r in i)i.hasOwnProperty(r)&&(t.length&&(t+="&"),t+=encodeURIComponent(r)+"="+encodeURIComponent(i[r]));return t}function w2(i){let t={},r=i.split("&");for(let s=0,l=r.length;s<l;s++){let c=r[s].split("=");t[decodeURIComponent(c[0])]=decodeURIComponent(c[1])}return t}class S2 extends Error{constructor(t,r,s){super(t),this.description=r,this.context=s,this.type="TransportError"}}class Ld extends St{constructor(t){super(),this.writable=!1,mu(this,t),this.opts=t,this.query=t.query,this.socket=t.socket,this.supportsBinary=!t.forceBase64}onError(t,r,s){return super.emitReserved("error",new S2(t,r,s)),this}open(){return this.readyState="opening",this.doOpen(),this}close(){return(this.readyState==="opening"||this.readyState==="open")&&(this.doClose(),this.onClose()),this}send(t){this.readyState==="open"&&this.write(t)}onOpen(){this.readyState="open",this.writable=!0,super.emitReserved("open")}onData(t){const r=Bd(t,this.socket.binaryType);this.onPacket(r)}onPacket(t){super.emitReserved("packet",t)}onClose(t){this.readyState="closed",super.emitReserved("close",t)}pause(t){}createUri(t,r={}){return t+"://"+this._hostname()+this._port()+this.opts.path+this._query(r)}_hostname(){const t=this.opts.hostname;return t.indexOf(":")===-1?t:"["+t+"]"}_port(){return this.opts.port&&(this.opts.secure&&Number(this.opts.port)!==443||!this.opts.secure&&Number(this.opts.port)!==80)?":"+this.opts.port:""}_query(t){const r=_2(t);return r.length?"?"+r:""}}class E2 extends Ld{constructor(){super(...arguments),this._polling=!1}get name(){return"polling"}doOpen(){this._poll()}pause(t){this.readyState="pausing";const r=()=>{this.readyState="paused",t()};if(this._polling||!this.writable){let s=0;this._polling&&(s++,this.once("pollComplete",function(){--s||r()})),this.writable||(s++,this.once("drain",function(){--s||r()}))}else r()}_poll(){this._polling=!0,this.doPoll(),this.emitReserved("poll")}onData(t){const r=s=>{if(this.readyState==="opening"&&s.type==="open"&&this.onOpen(),s.type==="close")return this.onClose({description:"transport closed by the server"}),!1;this.onPacket(s)};f2(t,this.socket.binaryType).forEach(r),this.readyState!=="closed"&&(this._polling=!1,this.emitReserved("pollComplete"),this.readyState==="open"&&this._poll())}doClose(){const t=()=>{this.write([{type:"close"}])};this.readyState==="open"?t():this.once("open",t)}write(t){this.writable=!1,u2(t,r=>{this.doWrite(r,()=>{this.writable=!0,this.emitReserved("drain")})})}uri(){const t=this.opts.secure?"https":"http",r=this.query||{};return this.opts.timestampRequests!==!1&&(r[this.opts.timestampParam]=Hb()),!this.supportsBinary&&!r.sid&&(r.b64=1),this.createUri(t,r)}}let Gb=!1;try{Gb=typeof XMLHttpRequest<"u"&&"withCredentials"in new XMLHttpRequest}catch{}const O2=Gb;function A2(){}class j2 extends E2{constructor(t){if(super(t),typeof location<"u"){const r=location.protocol==="https:";let s=location.port;s||(s=r?"443":"80"),this.xd=typeof location<"u"&&t.hostname!==location.hostname||s!==t.port}}doWrite(t,r){const s=this.request({method:"POST",data:t});s.on("success",r),s.on("error",(l,c)=>{this.onError("xhr post error",l,c)})}doPoll(){const t=this.request();t.on("data",this.onData.bind(this)),t.on("error",(r,s)=>{this.onError("xhr poll error",r,s)}),this.pollXhr=t}}class Qn extends St{constructor(t,r,s){super(),this.createRequest=t,mu(this,s),this._opts=s,this._method=s.method||"GET",this._uri=r,this._data=s.data!==void 0?s.data:null,this._create()}_create(){var t;const r=$b(this._opts,"agent","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","autoUnref");r.xdomain=!!this._opts.xd;const s=this._xhr=this.createRequest(r);try{s.open(this._method,this._uri,!0);try{if(this._opts.extraHeaders){s.setDisableHeaderCheck&&s.setDisableHeaderCheck(!0);for(let l in this._opts.extraHeaders)this._opts.extraHeaders.hasOwnProperty(l)&&s.setRequestHeader(l,this._opts.extraHeaders[l])}}catch{}if(this._method==="POST")try{s.setRequestHeader("Content-type","text/plain;charset=UTF-8")}catch{}try{s.setRequestHeader("Accept","*/*")}catch{}(t=this._opts.cookieJar)===null||t===void 0||t.addCookies(s),"withCredentials"in s&&(s.withCredentials=this._opts.withCredentials),this._opts.requestTimeout&&(s.timeout=this._opts.requestTimeout),s.onreadystatechange=()=>{var l;s.readyState===3&&((l=this._opts.cookieJar)===null||l===void 0||l.parseCookies(s.getResponseHeader("set-cookie"))),s.readyState===4&&(s.status===200||s.status===1223?this._onLoad():this.setTimeoutFn(()=>{this._onError(typeof s.status=="number"?s.status:0)},0))},s.send(this._data)}catch(l){this.setTimeoutFn(()=>{this._onError(l)},0);return}typeof document<"u"&&(this._index=Qn.requestsCount++,Qn.requests[this._index]=this)}_onError(t){this.emitReserved("error",t,this._xhr),this._cleanup(!0)}_cleanup(t){if(!(typeof this._xhr>"u"||this._xhr===null)){if(this._xhr.onreadystatechange=A2,t)try{this._xhr.abort()}catch{}typeof document<"u"&&delete Qn.requests[this._index],this._xhr=null}}_onLoad(){const t=this._xhr.responseText;t!==null&&(this.emitReserved("data",t),this.emitReserved("success"),this._cleanup())}abort(){this._cleanup()}}Qn.requestsCount=0;Qn.requests={};if(typeof document<"u"){if(typeof attachEvent=="function")attachEvent("onunload",Eg);else if(typeof addEventListener=="function"){const i="onpagehide"in Cn?"pagehide":"unload";addEventListener(i,Eg,!1)}}function Eg(){for(let i in Qn.requests)Qn.requests.hasOwnProperty(i)&&Qn.requests[i].abort()}const T2=(function(){const i=Fb({xdomain:!1});return i&&i.responseType!==null})();class N2 extends j2{constructor(t){super(t);const r=t&&t.forceBase64;this.supportsBinary=T2&&!r}request(t={}){return Object.assign(t,{xd:this.xd},this.opts),new Qn(Fb,this.uri(),t)}}function Fb(i){const t=i.xdomain;try{if(typeof XMLHttpRequest<"u"&&(!t||O2))return new XMLHttpRequest}catch{}if(!t)try{return new Cn[["Active"].concat("Object").join("X")]("Microsoft.XMLHTTP")}catch{}}const Vb=typeof navigator<"u"&&typeof navigator.product=="string"&&navigator.product.toLowerCase()==="reactnative";class k2 extends Ld{get name(){return"websocket"}doOpen(){const t=this.uri(),r=this.opts.protocols,s=Vb?{}:$b(this.opts,"agent","perMessageDeflate","pfx","key","passphrase","cert","ca","ciphers","rejectUnauthorized","localAddress","protocolVersion","origin","maxPayload","family","checkServerIdentity");this.opts.extraHeaders&&(s.headers=this.opts.extraHeaders);try{this.ws=this.createSocket(t,r,s)}catch(l){return this.emitReserved("error",l)}this.ws.binaryType=this.socket.binaryType,this.addEventListeners()}addEventListeners(){this.ws.onopen=()=>{this.opts.autoUnref&&this.ws._socket.unref(),this.onOpen()},this.ws.onclose=t=>this.onClose({description:"websocket connection closed",context:t}),this.ws.onmessage=t=>this.onData(t.data),this.ws.onerror=t=>this.onError("websocket error",t)}write(t){this.writable=!1;for(let r=0;r<t.length;r++){const s=t[r],l=r===t.length-1;qd(s,this.supportsBinary,c=>{try{this.doWrite(s,c)}catch{}l&&du(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){typeof this.ws<"u"&&(this.ws.onerror=()=>{},this.ws.close(),this.ws=null)}uri(){const t=this.opts.secure?"wss":"ws",r=this.query||{};return this.opts.timestampRequests&&(r[this.opts.timestampParam]=Hb()),this.supportsBinary||(r.b64=1),this.createUri(t,r)}}const Hh=Cn.WebSocket||Cn.MozWebSocket;class C2 extends k2{createSocket(t,r,s){return Vb?new Hh(t,r,s):r?new Hh(t,r):new Hh(t)}doWrite(t,r){this.ws.send(r)}}class M2 extends Ld{get name(){return"webtransport"}doOpen(){try{this._transport=new WebTransport(this.createUri("https"),this.opts.transportOptions[this.name])}catch(t){return this.emitReserved("error",t)}this._transport.closed.then(()=>{this.onClose()}).catch(t=>{this.onError("webtransport error",t)}),this._transport.ready.then(()=>{this._transport.createBidirectionalStream().then(t=>{const r=d2(Number.MAX_SAFE_INTEGER,this.socket.binaryType),s=t.readable.pipeThrough(r).getReader(),l=h2();l.readable.pipeTo(t.writable),this._writer=l.writable.getWriter();const c=()=>{s.read().then(({done:y,value:g})=>{y||(this.onPacket(g),c())}).catch(y=>{})};c();const d={type:"open"};this.query.sid&&(d.data=`{"sid":"${this.query.sid}"}`),this._writer.write(d).then(()=>this.onOpen())})})}write(t){this.writable=!1;for(let r=0;r<t.length;r++){const s=t[r],l=r===t.length-1;this._writer.write(s).then(()=>{l&&du(()=>{this.writable=!0,this.emitReserved("drain")},this.setTimeoutFn)})}}doClose(){var t;(t=this._transport)===null||t===void 0||t.close()}}const R2={websocket:C2,webtransport:M2,polling:N2},D2=/^(?:(?![^:@\/?#]+:[^:@\/]*@)(http|https|ws|wss):\/\/)?((?:(([^:@\/?#]*)(?::([^:@\/?#]*))?)?@)?((?:[a-f0-9]{0,4}:){2,7}[a-f0-9]{0,4}|[^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/,q2=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];function md(i){if(i.length>8e3)throw"URI too long";const t=i,r=i.indexOf("["),s=i.indexOf("]");r!=-1&&s!=-1&&(i=i.substring(0,r)+i.substring(r,s).replace(/:/g,";")+i.substring(s,i.length));let l=D2.exec(i||""),c={},d=14;for(;d--;)c[q2[d]]=l[d]||"";return r!=-1&&s!=-1&&(c.source=t,c.host=c.host.substring(1,c.host.length-1).replace(/;/g,":"),c.authority=c.authority.replace("[","").replace("]","").replace(/;/g,":"),c.ipv6uri=!0),c.pathNames=B2(c,c.path),c.queryKey=L2(c,c.query),c}function B2(i,t){const r=/\/{2,9}/g,s=t.replace(r,"/").split("/");return(t.slice(0,1)=="/"||t.length===0)&&s.splice(0,1),t.slice(-1)=="/"&&s.splice(s.length-1,1),s}function L2(i,t){const r={};return t.replace(/(?:^|&)([^&=]*)=?([^&]*)/g,function(s,l,c){l&&(r[l]=c)}),r}const pd=typeof addEventListener=="function"&&typeof removeEventListener=="function",Gc=[];pd&&addEventListener("offline",()=>{Gc.forEach(i=>i())},!1);class ci extends St{constructor(t,r){if(super(),this.binaryType=p2,this.writeBuffer=[],this._prevBufferLen=0,this._pingInterval=-1,this._pingTimeout=-1,this._maxPayload=-1,this._pingTimeoutTime=1/0,t&&typeof t=="object"&&(r=t,t=null),t){const s=md(t);r.hostname=s.host,r.secure=s.protocol==="https"||s.protocol==="wss",r.port=s.port,s.query&&(r.query=s.query)}else r.host&&(r.hostname=md(r.host).host);mu(this,r),this.secure=r.secure!=null?r.secure:typeof location<"u"&&location.protocol==="https:",r.hostname&&!r.port&&(r.port=this.secure?"443":"80"),this.hostname=r.hostname||(typeof location<"u"?location.hostname:"localhost"),this.port=r.port||(typeof location<"u"&&location.port?location.port:this.secure?"443":"80"),this.transports=[],this._transportsByName={},r.transports.forEach(s=>{const l=s.prototype.name;this.transports.push(l),this._transportsByName[l]=s}),this.opts=Object.assign({path:"/engine.io",agent:!1,withCredentials:!1,upgrade:!0,timestampParam:"t",rememberUpgrade:!1,addTrailingSlash:!0,rejectUnauthorized:!0,perMessageDeflate:{threshold:1024},transportOptions:{},closeOnBeforeunload:!1},r),this.opts.path=this.opts.path.replace(/\/$/,"")+(this.opts.addTrailingSlash?"/":""),typeof this.opts.query=="string"&&(this.opts.query=w2(this.opts.query)),pd&&(this.opts.closeOnBeforeunload&&(this._beforeunloadEventListener=()=>{this.transport&&(this.transport.removeAllListeners(),this.transport.close())},addEventListener("beforeunload",this._beforeunloadEventListener,!1)),this.hostname!=="localhost"&&(this._offlineEventListener=()=>{this._onClose("transport close",{description:"network connection lost"})},Gc.push(this._offlineEventListener))),this.opts.withCredentials&&(this._cookieJar=void 0),this._open()}createTransport(t){const r=Object.assign({},this.opts.query);r.EIO=Ib,r.transport=t,this.id&&(r.sid=this.id);const s=Object.assign({},this.opts,{query:r,socket:this,hostname:this.hostname,secure:this.secure,port:this.port},this.opts.transportOptions[t]);return new this._transportsByName[t](s)}_open(){if(this.transports.length===0){this.setTimeoutFn(()=>{this.emitReserved("error","No transports available")},0);return}const t=this.opts.rememberUpgrade&&ci.priorWebsocketSuccess&&this.transports.indexOf("websocket")!==-1?"websocket":this.transports[0];this.readyState="opening";const r=this.createTransport(t);r.open(),this.setTransport(r)}setTransport(t){this.transport&&this.transport.removeAllListeners(),this.transport=t,t.on("drain",this._onDrain.bind(this)).on("packet",this._onPacket.bind(this)).on("error",this._onError.bind(this)).on("close",r=>this._onClose("transport close",r))}onOpen(){this.readyState="open",ci.priorWebsocketSuccess=this.transport.name==="websocket",this.emitReserved("open"),this.flush()}_onPacket(t){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing")switch(this.emitReserved("packet",t),this.emitReserved("heartbeat"),t.type){case"open":this.onHandshake(JSON.parse(t.data));break;case"ping":this._sendPacket("pong"),this.emitReserved("ping"),this.emitReserved("pong"),this._resetPingTimeout();break;case"error":const r=new Error("server error");r.code=t.data,this._onError(r);break;case"message":this.emitReserved("data",t.data),this.emitReserved("message",t.data);break}}onHandshake(t){this.emitReserved("handshake",t),this.id=t.sid,this.transport.query.sid=t.sid,this._pingInterval=t.pingInterval,this._pingTimeout=t.pingTimeout,this._maxPayload=t.maxPayload,this.onOpen(),this.readyState!=="closed"&&this._resetPingTimeout()}_resetPingTimeout(){this.clearTimeoutFn(this._pingTimeoutTimer);const t=this._pingInterval+this._pingTimeout;this._pingTimeoutTime=Date.now()+t,this._pingTimeoutTimer=this.setTimeoutFn(()=>{this._onClose("ping timeout")},t),this.opts.autoUnref&&this._pingTimeoutTimer.unref()}_onDrain(){this.writeBuffer.splice(0,this._prevBufferLen),this._prevBufferLen=0,this.writeBuffer.length===0?this.emitReserved("drain"):this.flush()}flush(){if(this.readyState!=="closed"&&this.transport.writable&&!this.upgrading&&this.writeBuffer.length){const t=this._getWritablePackets();this.transport.send(t),this._prevBufferLen=t.length,this.emitReserved("flush")}}_getWritablePackets(){if(!(this._maxPayload&&this.transport.name==="polling"&&this.writeBuffer.length>1))return this.writeBuffer;let r=1;for(let s=0;s<this.writeBuffer.length;s++){const l=this.writeBuffer[s].data;if(l&&(r+=v2(l)),s>0&&r>this._maxPayload)return this.writeBuffer.slice(0,s);r+=2}return this.writeBuffer}_hasPingExpired(){if(!this._pingTimeoutTime)return!0;const t=Date.now()>this._pingTimeoutTime;return t&&(this._pingTimeoutTime=0,du(()=>{this._onClose("ping timeout")},this.setTimeoutFn)),t}write(t,r,s){return this._sendPacket("message",t,r,s),this}send(t,r,s){return this._sendPacket("message",t,r,s),this}_sendPacket(t,r,s,l){if(typeof r=="function"&&(l=r,r=void 0),typeof s=="function"&&(l=s,s=null),this.readyState==="closing"||this.readyState==="closed")return;s=s||{},s.compress=s.compress!==!1;const c={type:t,data:r,options:s};this.emitReserved("packetCreate",c),this.writeBuffer.push(c),l&&this.once("flush",l),this.flush()}close(){const t=()=>{this._onClose("forced close"),this.transport.close()},r=()=>{this.off("upgrade",r),this.off("upgradeError",r),t()},s=()=>{this.once("upgrade",r),this.once("upgradeError",r)};return(this.readyState==="opening"||this.readyState==="open")&&(this.readyState="closing",this.writeBuffer.length?this.once("drain",()=>{this.upgrading?s():t()}):this.upgrading?s():t()),this}_onError(t){if(ci.priorWebsocketSuccess=!1,this.opts.tryAllTransports&&this.transports.length>1&&this.readyState==="opening")return this.transports.shift(),this._open();this.emitReserved("error",t),this._onClose("transport error",t)}_onClose(t,r){if(this.readyState==="opening"||this.readyState==="open"||this.readyState==="closing"){if(this.clearTimeoutFn(this._pingTimeoutTimer),this.transport.removeAllListeners("close"),this.transport.close(),this.transport.removeAllListeners(),pd&&(this._beforeunloadEventListener&&removeEventListener("beforeunload",this._beforeunloadEventListener,!1),this._offlineEventListener)){const s=Gc.indexOf(this._offlineEventListener);s!==-1&&Gc.splice(s,1)}this.readyState="closed",this.id=null,this.emitReserved("close",t,r),this.writeBuffer=[],this._prevBufferLen=0}}}ci.protocol=Ib;class P2 extends ci{constructor(){super(...arguments),this._upgrades=[]}onOpen(){if(super.onOpen(),this.readyState==="open"&&this.opts.upgrade)for(let t=0;t<this._upgrades.length;t++)this._probe(this._upgrades[t])}_probe(t){let r=this.createTransport(t),s=!1;ci.priorWebsocketSuccess=!1;const l=()=>{s||(r.send([{type:"ping",data:"probe"}]),r.once("packet",b=>{if(!s)if(b.type==="pong"&&b.data==="probe"){if(this.upgrading=!0,this.emitReserved("upgrading",r),!r)return;ci.priorWebsocketSuccess=r.name==="websocket",this.transport.pause(()=>{s||this.readyState!=="closed"&&(m(),this.setTransport(r),r.send([{type:"upgrade"}]),this.emitReserved("upgrade",r),r=null,this.upgrading=!1,this.flush())})}else{const v=new Error("probe error");v.transport=r.name,this.emitReserved("upgradeError",v)}}))};function c(){s||(s=!0,m(),r.close(),r=null)}const d=b=>{const v=new Error("probe error: "+b);v.transport=r.name,c(),this.emitReserved("upgradeError",v)};function y(){d("transport closed")}function g(){d("socket closed")}function f(b){r&&b.name!==r.name&&c()}const m=()=>{r.removeListener("open",l),r.removeListener("error",d),r.removeListener("close",y),this.off("close",g),this.off("upgrading",f)};r.once("open",l),r.once("error",d),r.once("close",y),this.once("close",g),this.once("upgrading",f),this._upgrades.indexOf("webtransport")!==-1&&t!=="webtransport"?this.setTimeoutFn(()=>{s||r.open()},200):r.open()}onHandshake(t){this._upgrades=this._filterUpgrades(t.upgrades),super.onHandshake(t)}_filterUpgrades(t){const r=[];for(let s=0;s<t.length;s++)~this.transports.indexOf(t[s])&&r.push(t[s]);return r}}let U2=class extends P2{constructor(t,r={}){const s=typeof t=="object"?t:r;(!s.transports||s.transports&&typeof s.transports[0]=="string")&&(s.transports=(s.transports||["polling","websocket","webtransport"]).map(l=>R2[l]).filter(l=>!!l)),super(t,s)}};function z2(i,t="",r){let s=i;r=r||typeof location<"u"&&location,i==null&&(i=r.protocol+"//"+r.host),typeof i=="string"&&(i.charAt(0)==="/"&&(i.charAt(1)==="/"?i=r.protocol+i:i=r.host+i),/^(https?|wss?):\/\//.test(i)||(typeof r<"u"?i=r.protocol+"//"+i:i="https://"+i),s=md(i)),s.port||(/^(http|ws)$/.test(s.protocol)?s.port="80":/^(http|ws)s$/.test(s.protocol)&&(s.port="443")),s.path=s.path||"/";const c=s.host.indexOf(":")!==-1?"["+s.host+"]":s.host;return s.id=s.protocol+"://"+c+":"+s.port+t,s.href=s.protocol+"://"+c+(r&&r.port===s.port?"":":"+s.port),s}const I2=typeof ArrayBuffer=="function",$2=i=>typeof ArrayBuffer.isView=="function"?ArrayBuffer.isView(i):i.buffer instanceof ArrayBuffer,Yb=Object.prototype.toString,H2=typeof Blob=="function"||typeof Blob<"u"&&Yb.call(Blob)==="[object BlobConstructor]",G2=typeof File=="function"||typeof File<"u"&&Yb.call(File)==="[object FileConstructor]";function Pd(i){return I2&&(i instanceof ArrayBuffer||$2(i))||H2&&i instanceof Blob||G2&&i instanceof File}function Fc(i,t){if(!i||typeof i!="object")return!1;if(Array.isArray(i)){for(let r=0,s=i.length;r<s;r++)if(Fc(i[r]))return!0;return!1}if(Pd(i))return!0;if(i.toJSON&&typeof i.toJSON=="function"&&arguments.length===1)return Fc(i.toJSON(),!0);for(const r in i)if(Object.prototype.hasOwnProperty.call(i,r)&&Fc(i[r]))return!0;return!1}function F2(i){const t=[],r=i.data,s=i;return s.data=yd(r,t),s.attachments=t.length,{packet:s,buffers:t}}function yd(i,t){if(!i)return i;if(Pd(i)){const r={_placeholder:!0,num:t.length};return t.push(i),r}else if(Array.isArray(i)){const r=new Array(i.length);for(let s=0;s<i.length;s++)r[s]=yd(i[s],t);return r}else if(typeof i=="object"&&!(i instanceof Date)){const r={};for(const s in i)Object.prototype.hasOwnProperty.call(i,s)&&(r[s]=yd(i[s],t));return r}return i}function V2(i,t){return i.data=gd(i.data,t),delete i.attachments,i}function gd(i,t){if(!i)return i;if(i&&i._placeholder===!0){if(typeof i.num=="number"&&i.num>=0&&i.num<t.length)return t[i.num];throw new Error("illegal attachments")}else if(Array.isArray(i))for(let r=0;r<i.length;r++)i[r]=gd(i[r],t);else if(typeof i=="object")for(const r in i)Object.prototype.hasOwnProperty.call(i,r)&&(i[r]=gd(i[r],t));return i}const Y2=["connect","connect_error","disconnect","disconnecting","newListener","removeListener"];var Ue;(function(i){i[i.CONNECT=0]="CONNECT",i[i.DISCONNECT=1]="DISCONNECT",i[i.EVENT=2]="EVENT",i[i.ACK=3]="ACK",i[i.CONNECT_ERROR=4]="CONNECT_ERROR",i[i.BINARY_EVENT=5]="BINARY_EVENT",i[i.BINARY_ACK=6]="BINARY_ACK"})(Ue||(Ue={}));class K2{constructor(t){this.replacer=t}encode(t){return(t.type===Ue.EVENT||t.type===Ue.ACK)&&Fc(t)?this.encodeAsBinary({type:t.type===Ue.EVENT?Ue.BINARY_EVENT:Ue.BINARY_ACK,nsp:t.nsp,data:t.data,id:t.id}):[this.encodeAsString(t)]}encodeAsString(t){let r=""+t.type;return(t.type===Ue.BINARY_EVENT||t.type===Ue.BINARY_ACK)&&(r+=t.attachments+"-"),t.nsp&&t.nsp!=="/"&&(r+=t.nsp+","),t.id!=null&&(r+=t.id),t.data!=null&&(r+=JSON.stringify(t.data,this.replacer)),r}encodeAsBinary(t){const r=F2(t),s=this.encodeAsString(r.packet),l=r.buffers;return l.unshift(s),l}}class Ud extends St{constructor(t){super(),this.opts=Object.assign({reviver:void 0,maxAttachments:10},typeof t=="function"?{reviver:t}:t)}add(t){let r;if(typeof t=="string"){if(this.reconstructor)throw new Error("got plaintext data when reconstructing a packet");r=this.decodeString(t);const s=r.type===Ue.BINARY_EVENT;s||r.type===Ue.BINARY_ACK?(r.type=s?Ue.EVENT:Ue.ACK,this.reconstructor=new X2(r),r.attachments===0&&super.emitReserved("decoded",r)):super.emitReserved("decoded",r)}else if(Pd(t)||t.base64)if(this.reconstructor)r=this.reconstructor.takeBinaryData(t),r&&(this.reconstructor=null,super.emitReserved("decoded",r));else throw new Error("got binary data when not reconstructing a packet");else throw new Error("Unknown type: "+t)}decodeString(t){let r=0;const s={type:Number(t.charAt(0))};if(Ue[s.type]===void 0)throw new Error("unknown packet type "+s.type);if(s.type===Ue.BINARY_EVENT||s.type===Ue.BINARY_ACK){const c=r+1;for(;t.charAt(++r)!=="-"&&r!=t.length;);const d=t.substring(c,r);if(d!=Number(d)||t.charAt(r)!=="-")throw new Error("Illegal attachments");const y=Number(d);if(!J2(y)||y<0)throw new Error("Illegal attachments");if(y>this.opts.maxAttachments)throw new Error("too many attachments");s.attachments=y}if(t.charAt(r+1)==="/"){const c=r+1;for(;++r&&!(t.charAt(r)===","||r===t.length););s.nsp=t.substring(c,r)}else s.nsp="/";const l=t.charAt(r+1);if(l!==""&&Number(l)==l){const c=r+1;for(;++r;){const d=t.charAt(r);if(d==null||Number(d)!=d){--r;break}if(r===t.length)break}s.id=Number(t.substring(c,r+1))}if(t.charAt(++r)){const c=this.tryParse(t.substr(r));if(Ud.isPayloadValid(s.type,c))s.data=c;else throw new Error("invalid payload")}return s}tryParse(t){try{return JSON.parse(t,this.opts.reviver)}catch{return!1}}static isPayloadValid(t,r){switch(t){case Ue.CONNECT:return Og(r);case Ue.DISCONNECT:return r===void 0;case Ue.CONNECT_ERROR:return typeof r=="string"||Og(r);case Ue.EVENT:case Ue.BINARY_EVENT:return Array.isArray(r)&&(typeof r[0]=="number"||typeof r[0]=="string"&&Y2.indexOf(r[0])===-1);case Ue.ACK:case Ue.BINARY_ACK:return Array.isArray(r)}}destroy(){this.reconstructor&&(this.reconstructor.finishedReconstruction(),this.reconstructor=null)}}class X2{constructor(t){this.packet=t,this.buffers=[],this.reconPack=t}takeBinaryData(t){if(this.buffers.push(t),this.buffers.length===this.reconPack.attachments){const r=V2(this.reconPack,this.buffers);return this.finishedReconstruction(),r}return null}finishedReconstruction(){this.reconPack=null,this.buffers=[]}}const J2=Number.isInteger||function(i){return typeof i=="number"&&isFinite(i)&&Math.floor(i)===i};function Og(i){return Object.prototype.toString.call(i)==="[object Object]"}const Q2=Object.freeze(Object.defineProperty({__proto__:null,Decoder:Ud,Encoder:K2,get PacketType(){return Ue}},Symbol.toStringTag,{value:"Module"}));function zn(i,t,r){return i.on(t,r),function(){i.off(t,r)}}const Z2=Object.freeze({connect:1,connect_error:1,disconnect:1,disconnecting:1,newListener:1,removeListener:1});class Kb extends St{constructor(t,r,s){super(),this.connected=!1,this.recovered=!1,this.receiveBuffer=[],this.sendBuffer=[],this._queue=[],this._queueSeq=0,this.ids=0,this.acks={},this.flags={},this.io=t,this.nsp=r,s&&s.auth&&(this.auth=s.auth),this._opts=Object.assign({},s),this.io._autoConnect&&this.open()}get disconnected(){return!this.connected}subEvents(){if(this.subs)return;const t=this.io;this.subs=[zn(t,"open",this.onopen.bind(this)),zn(t,"packet",this.onpacket.bind(this)),zn(t,"error",this.onerror.bind(this)),zn(t,"close",this.onclose.bind(this))]}get active(){return!!this.subs}connect(){return this.connected?this:(this.subEvents(),this.io._reconnecting||this.io.open(),this.io._readyState==="open"&&this.onopen(),this)}open(){return this.connect()}send(...t){return t.unshift("message"),this.emit.apply(this,t),this}emit(t,...r){var s,l,c;if(Z2.hasOwnProperty(t))throw new Error('"'+t.toString()+'" is a reserved event name');if(r.unshift(t),this._opts.retries&&!this.flags.fromQueue&&!this.flags.volatile)return this._addToQueue(r),this;const d={type:Ue.EVENT,data:r};if(d.options={},d.options.compress=this.flags.compress!==!1,typeof r[r.length-1]=="function"){const m=this.ids++,b=r.pop();this._registerAckCallback(m,b),d.id=m}const y=(l=(s=this.io.engine)===null||s===void 0?void 0:s.transport)===null||l===void 0?void 0:l.writable,g=this.connected&&!(!((c=this.io.engine)===null||c===void 0)&&c._hasPingExpired());return this.flags.volatile&&!y||(g?(this.notifyOutgoingListeners(d),this.packet(d)):this.sendBuffer.push(d)),this.flags={},this}_registerAckCallback(t,r){var s;const l=(s=this.flags.timeout)!==null&&s!==void 0?s:this._opts.ackTimeout;if(l===void 0){this.acks[t]=r;return}const c=this.io.setTimeoutFn(()=>{delete this.acks[t];for(let y=0;y<this.sendBuffer.length;y++)this.sendBuffer[y].id===t&&this.sendBuffer.splice(y,1);r.call(this,new Error("operation has timed out"))},l),d=(...y)=>{this.io.clearTimeoutFn(c),r.apply(this,y)};d.withError=!0,this.acks[t]=d}emitWithAck(t,...r){return new Promise((s,l)=>{const c=(d,y)=>d?l(d):s(y);c.withError=!0,r.push(c),this.emit(t,...r)})}_addToQueue(t){let r;typeof t[t.length-1]=="function"&&(r=t.pop());const s={id:this._queueSeq++,tryCount:0,pending:!1,args:t,flags:Object.assign({fromQueue:!0},this.flags)};t.push((l,...c)=>(this._queue[0],l!==null?s.tryCount>this._opts.retries&&(this._queue.shift(),r&&r(l)):(this._queue.shift(),r&&r(null,...c)),s.pending=!1,this._drainQueue())),this._queue.push(s),this._drainQueue()}_drainQueue(t=!1){if(!this.connected||this._queue.length===0)return;const r=this._queue[0];r.pending&&!t||(r.pending=!0,r.tryCount++,this.flags=r.flags,this.emit.apply(this,r.args))}packet(t){t.nsp=this.nsp,this.io._packet(t)}onopen(){typeof this.auth=="function"?this.auth(t=>{this._sendConnectPacket(t)}):this._sendConnectPacket(this.auth)}_sendConnectPacket(t){this.packet({type:Ue.CONNECT,data:this._pid?Object.assign({pid:this._pid,offset:this._lastOffset},t):t})}onerror(t){this.connected||this.emitReserved("connect_error",t)}onclose(t,r){this.connected=!1,delete this.id,this.emitReserved("disconnect",t,r),this._clearAcks()}_clearAcks(){Object.keys(this.acks).forEach(t=>{if(!this.sendBuffer.some(s=>String(s.id)===t)){const s=this.acks[t];delete this.acks[t],s.withError&&s.call(this,new Error("socket has been disconnected"))}})}onpacket(t){if(t.nsp===this.nsp)switch(t.type){case Ue.CONNECT:t.data&&t.data.sid?this.onconnect(t.data.sid,t.data.pid):this.emitReserved("connect_error",new Error("It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible (more information here: https://socket.io/docs/v3/migrating-from-2-x-to-3-0/)"));break;case Ue.EVENT:case Ue.BINARY_EVENT:this.onevent(t);break;case Ue.ACK:case Ue.BINARY_ACK:this.onack(t);break;case Ue.DISCONNECT:this.ondisconnect();break;case Ue.CONNECT_ERROR:this.destroy();const s=new Error(t.data.message);s.data=t.data.data,this.emitReserved("connect_error",s);break}}onevent(t){const r=t.data||[];t.id!=null&&r.push(this.ack(t.id)),this.connected?this.emitEvent(r):this.receiveBuffer.push(Object.freeze(r))}emitEvent(t){if(this._anyListeners&&this._anyListeners.length){const r=this._anyListeners.slice();for(const s of r)s.apply(this,t)}super.emit.apply(this,t),this._pid&&t.length&&typeof t[t.length-1]=="string"&&(this._lastOffset=t[t.length-1])}ack(t){const r=this;let s=!1;return function(...l){s||(s=!0,r.packet({type:Ue.ACK,id:t,data:l}))}}onack(t){const r=this.acks[t.id];typeof r=="function"&&(delete this.acks[t.id],r.withError&&t.data.unshift(null),r.apply(this,t.data))}onconnect(t,r){this.id=t,this.recovered=r&&this._pid===r,this._pid=r,this.connected=!0,this.emitBuffered(),this._drainQueue(!0),this.emitReserved("connect")}emitBuffered(){this.receiveBuffer.forEach(t=>this.emitEvent(t)),this.receiveBuffer=[],this.sendBuffer.forEach(t=>{this.notifyOutgoingListeners(t),this.packet(t)}),this.sendBuffer=[]}ondisconnect(){this.destroy(),this.onclose("io server disconnect")}destroy(){this.subs&&(this.subs.forEach(t=>t()),this.subs=void 0),this.io._destroy(this)}disconnect(){return this.connected&&this.packet({type:Ue.DISCONNECT}),this.destroy(),this.connected&&this.onclose("io client disconnect"),this}close(){return this.disconnect()}compress(t){return this.flags.compress=t,this}get volatile(){return this.flags.volatile=!0,this}timeout(t){return this.flags.timeout=t,this}onAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.push(t),this}prependAny(t){return this._anyListeners=this._anyListeners||[],this._anyListeners.unshift(t),this}offAny(t){if(!this._anyListeners)return this;if(t){const r=this._anyListeners;for(let s=0;s<r.length;s++)if(t===r[s])return r.splice(s,1),this}else this._anyListeners=[];return this}listenersAny(){return this._anyListeners||[]}onAnyOutgoing(t){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.push(t),this}prependAnyOutgoing(t){return this._anyOutgoingListeners=this._anyOutgoingListeners||[],this._anyOutgoingListeners.unshift(t),this}offAnyOutgoing(t){if(!this._anyOutgoingListeners)return this;if(t){const r=this._anyOutgoingListeners;for(let s=0;s<r.length;s++)if(t===r[s])return r.splice(s,1),this}else this._anyOutgoingListeners=[];return this}listenersAnyOutgoing(){return this._anyOutgoingListeners||[]}notifyOutgoingListeners(t){if(this._anyOutgoingListeners&&this._anyOutgoingListeners.length){const r=this._anyOutgoingListeners.slice();for(const s of r)s.apply(this,t.data)}}}function Xs(i){i=i||{},this.ms=i.min||100,this.max=i.max||1e4,this.factor=i.factor||2,this.jitter=i.jitter>0&&i.jitter<=1?i.jitter:0,this.attempts=0}Xs.prototype.duration=function(){var i=this.ms*Math.pow(this.factor,this.attempts++);if(this.jitter){var t=Math.random(),r=Math.floor(t*this.jitter*i);i=(Math.floor(t*10)&1)==0?i-r:i+r}return Math.min(i,this.max)|0};Xs.prototype.reset=function(){this.attempts=0};Xs.prototype.setMin=function(i){this.ms=i};Xs.prototype.setMax=function(i){this.max=i};Xs.prototype.setJitter=function(i){this.jitter=i};class bd extends St{constructor(t,r){var s;super(),this.nsps={},this.subs=[],t&&typeof t=="object"&&(r=t,t=void 0),r=r||{},r.path=r.path||"/socket.io",this.opts=r,mu(this,r),this.reconnection(r.reconnection!==!1),this.reconnectionAttempts(r.reconnectionAttempts||1/0),this.reconnectionDelay(r.reconnectionDelay||1e3),this.reconnectionDelayMax(r.reconnectionDelayMax||5e3),this.randomizationFactor((s=r.randomizationFactor)!==null&&s!==void 0?s:.5),this.backoff=new Xs({min:this.reconnectionDelay(),max:this.reconnectionDelayMax(),jitter:this.randomizationFactor()}),this.timeout(r.timeout==null?2e4:r.timeout),this._readyState="closed",this.uri=t;const l=r.parser||Q2;this.encoder=new l.Encoder,this.decoder=new l.Decoder,this._autoConnect=r.autoConnect!==!1,this._autoConnect&&this.open()}reconnection(t){return arguments.length?(this._reconnection=!!t,t||(this.skipReconnect=!0),this):this._reconnection}reconnectionAttempts(t){return t===void 0?this._reconnectionAttempts:(this._reconnectionAttempts=t,this)}reconnectionDelay(t){var r;return t===void 0?this._reconnectionDelay:(this._reconnectionDelay=t,(r=this.backoff)===null||r===void 0||r.setMin(t),this)}randomizationFactor(t){var r;return t===void 0?this._randomizationFactor:(this._randomizationFactor=t,(r=this.backoff)===null||r===void 0||r.setJitter(t),this)}reconnectionDelayMax(t){var r;return t===void 0?this._reconnectionDelayMax:(this._reconnectionDelayMax=t,(r=this.backoff)===null||r===void 0||r.setMax(t),this)}timeout(t){return arguments.length?(this._timeout=t,this):this._timeout}maybeReconnectOnOpen(){!this._reconnecting&&this._reconnection&&this.backoff.attempts===0&&this.reconnect()}open(t){if(~this._readyState.indexOf("open"))return this;this.engine=new U2(this.uri,this.opts);const r=this.engine,s=this;this._readyState="opening",this.skipReconnect=!1;const l=zn(r,"open",function(){s.onopen(),t&&t()}),c=y=>{this.cleanup(),this._readyState="closed",this.emitReserved("error",y),t?t(y):this.maybeReconnectOnOpen()},d=zn(r,"error",c);if(this._timeout!==!1){const y=this._timeout,g=this.setTimeoutFn(()=>{l(),c(new Error("timeout")),r.close()},y);this.opts.autoUnref&&g.unref(),this.subs.push(()=>{this.clearTimeoutFn(g)})}return this.subs.push(l),this.subs.push(d),this}connect(t){return this.open(t)}onopen(){this.cleanup(),this._readyState="open",this.emitReserved("open");const t=this.engine;this.subs.push(zn(t,"ping",this.onping.bind(this)),zn(t,"data",this.ondata.bind(this)),zn(t,"error",this.onerror.bind(this)),zn(t,"close",this.onclose.bind(this)),zn(this.decoder,"decoded",this.ondecoded.bind(this)))}onping(){this.emitReserved("ping")}ondata(t){try{this.decoder.add(t)}catch(r){this.onclose("parse error",r)}}ondecoded(t){du(()=>{this.emitReserved("packet",t)},this.setTimeoutFn)}onerror(t){this.emitReserved("error",t)}socket(t,r){let s=this.nsps[t];return s?this._autoConnect&&!s.active&&s.connect():(s=new Kb(this,t,r),this.nsps[t]=s),s}_destroy(t){const r=Object.keys(this.nsps);for(const s of r)if(this.nsps[s].active)return;this._close()}_packet(t){const r=this.encoder.encode(t);for(let s=0;s<r.length;s++)this.engine.write(r[s],t.options)}cleanup(){this.subs.forEach(t=>t()),this.subs.length=0,this.decoder.destroy()}_close(){this.skipReconnect=!0,this._reconnecting=!1,this.onclose("forced close")}disconnect(){return this._close()}onclose(t,r){var s;this.cleanup(),(s=this.engine)===null||s===void 0||s.close(),this.backoff.reset(),this._readyState="closed",this.emitReserved("close",t,r),this._reconnection&&!this.skipReconnect&&this.reconnect()}reconnect(){if(this._reconnecting||this.skipReconnect)return this;const t=this;if(this.backoff.attempts>=this._reconnectionAttempts)this.backoff.reset(),this.emitReserved("reconnect_failed"),this._reconnecting=!1;else{const r=this.backoff.duration();this._reconnecting=!0;const s=this.setTimeoutFn(()=>{t.skipReconnect||(this.emitReserved("reconnect_attempt",t.backoff.attempts),!t.skipReconnect&&t.open(l=>{l?(t._reconnecting=!1,t.reconnect(),this.emitReserved("reconnect_error",l)):t.onreconnect()}))},r);this.opts.autoUnref&&s.unref(),this.subs.push(()=>{this.clearTimeoutFn(s)})}}onreconnect(){const t=this.backoff.attempts;this._reconnecting=!1,this.backoff.reset(),this.emitReserved("reconnect",t)}}const Ya={};function Vc(i,t){typeof i=="object"&&(t=i,i=void 0),t=t||{};const r=z2(i,t.path||"/socket.io"),s=r.source,l=r.id,c=r.path,d=Ya[l]&&c in Ya[l].nsps,y=t.forceNew||t["force new connection"]||t.multiplex===!1||d;let g;return y?g=new bd(s,t):(Ya[l]||(Ya[l]=new bd(s,t)),g=Ya[l]),r.query&&!t.query&&(t.query=r.queryKey),g.socket(r.path,t)}Object.assign(Vc,{Manager:bd,Socket:Kb,io:Vc,connect:Vc});const W2=j.createContext({connected:!1,subscribe:()=>()=>{}});function eO({children:i}){const t=j.useRef(null),[r,s]=j.useState(!1),l=j.useRef(new Map),c=j.useCallback((y,g)=>{var m;const f=l.current;return f.has(y)||(f.set(y,new Set),(m=t.current)==null||m.emit("lt.subscribe",y)),f.get(y).add(g),()=>{var v;const b=f.get(y);b&&(b.delete(g),b.size===0&&(f.delete(y),(v=t.current)==null||v.emit("lt.unsubscribe",y)))}},[]),d=j.useCallback((y,g)=>{for(const[f,m]of l.current)if(qb(y,f))for(const b of m)try{b(g)}catch{}},[]);return j.useEffect(()=>{const y=pb(),g=Vc({path:`${Nt}/socket.io`,transports:["polling","websocket"],upgrade:!0,reconnection:!0,reconnectionAttempts:1/0,reconnectionDelay:2e3,...y?{auth:{token:y}}:{}});return t.current=g,console.log("[lt-socketio] connecting..."),g.on("connect",()=>{console.log("[lt-socketio] connected, id:",g.id),s(!0);for(const f of l.current.keys())g.emit("lt.subscribe",f)}),g.on("disconnect",f=>{console.log("[lt-socketio] disconnected:",f),s(!1)}),g.on("connect_error",f=>{console.warn("[lt-socketio] connect error:",f.message),s(!1)}),g.onAny((f,m)=>{if(f.startsWith("lt."))try{const b=typeof m=="string"?JSON.parse(m):m;d(f,b)}catch{}}),()=>{g.removeAllListeners(),g.disconnect(),t.current=null,s(!1)}},[d]),p.jsx(W2.Provider,{value:{connected:r,subscribe:c},children:p.jsx(Ks.Provider,{value:{connected:r,subscribe:c},children:i})})}function tO({children:i}){const[t,r]=j.useState(null),[s,l]=j.useState({url:null,token:null});return j.useEffect(()=>{let c=!1;async function d(){var y;try{console.log("[lt-transport] detecting event transport...");const g=await fetch(`${Nt}/api/settings`);if(!g.ok){console.warn("[lt-transport] settings fetch failed, falling back to socketio"),c||r("socketio");return}const f=await g.json(),m=(y=f==null?void 0:f.events)==null?void 0:y.transport;if(console.log("[lt-transport] server reports:",m),!c){if(m==="nats"){let b=f.events.natsWsUrl??null,v=null;const _=pb();if(_)try{const w=await fetch(`${Nt}/api/nats-credentials`,{headers:{Authorization:`Bearer ${_}`}});if(w.ok){const S=await w.json();b=S.natsWsUrl??b,v=S.natsToken??null}}catch{console.warn("[lt-transport] failed to fetch NATS credentials")}l({url:b,token:v})}r(m==="nats"?"nats":"socketio")}}catch(g){console.warn("[lt-transport] settings fetch error, falling back to socketio",g),c||r("socketio")}}return d(),()=>{c=!0}},[]),t==="nats"?p.jsx(s2,{url:s.url,token:s.token,children:i}):t==="socketio"?p.jsx(eO,{children:i}):p.jsx(p.Fragment,{children:i})}const zd="lt_view_as",Id="lt_ai_override",vd="lt_graph_enabled",$d="lt_scan_override";function Xb(){try{const i=localStorage.getItem(Id);if(i==="true")return!0;if(i==="false")return!1}catch{}return null}function nO(i){try{localStorage.setItem(Id,String(i))}catch{}}function rO(){try{localStorage.removeItem(Id)}catch{}}function Hd(){try{const i=localStorage.getItem(zd);if(i==="admin"||i==="engineer"||i==="operator")return i}catch{}return null}function iO(i){try{localStorage.setItem(zd,i)}catch{}window.location.reload()}function xd(){try{localStorage.removeItem(zd)}catch{}window.location.reload()}function Jb(){try{return localStorage.getItem(vd)==="true"}catch{return!1}}function sO(i){try{i?localStorage.setItem(vd,"true"):localStorage.removeItem(vd)}catch{}}function Qb(){try{const i=localStorage.getItem($d);if(i==="true")return!0;if(i==="false")return!1}catch{}return null}function aO(i){try{localStorage.setItem($d,String(i))}catch{}}function oO(){try{localStorage.removeItem($d)}catch{}}function Zb(){const{isSuperAdmin:i,hasRoleType:t,hasRole:r}=Ft(),s=Hd(),l=i||r("engineer"),c=t("admin"),d=i||t("admin");return{isBuilder:s?!1:l,isOps:s?s==="admin"||s==="engineer":c,canBulk:s?s==="admin":d,viewAs:s,realIsBuilder:l}}function Wb(){var f;const{isSuperAdmin:i,hasRoleType:t,hasRole:r}=Ft(),{data:s}=Wn(),l=((f=s==null?void 0:s.features)==null?void 0:f.publicPaceBoard)!==!1,c=i?"superadmin":t("admin")?"admin":r("engineer")?"engineer":"operator",d=Hd(),y=d==="admin"||d==="engineer"||d==="operator"?d:null,g=y??c;return{tier:g,realTier:c,viewAs:y,canSeePaceBoard:l||g==="superadmin"||g==="admin",canSeeWorkflows:g==="superadmin"||g==="engineer",showTaskQueueCards:g==="operator"&&!l}}function ev(i){return(i??"").replace(/[^A-Za-z0-9_-]+/g,"-").replace(/^-+|-+$/g,"")||"none"}function _d(i={}){const t=i.role?ev(i.role):"*",r=i.id??"*",s=i.verb??">";return`${Db}.system.escalation.${t}.${r}.${s}`}function Ag(i){return i.verbs.map(t=>_d({role:i.role,verb:t}))}function Gd(i){const{user:t,isSuperAdmin:r,hasRoleType:s}=Ft(),l=r||s("admin"),c=((t==null?void 0:t.roles)??[]).map(y=>y.role).sort().join(","),d=(i??[]).join(",");return j.useMemo(()=>{const y=d?d.split(","):null;return l||!c?y?Ag({verbs:y}):[_d({})]:c.split(",").flatMap(g=>y?Ag({role:g,verbs:y}):[_d({role:g})])},[l,c,d])}const wd="/escalations/detail/";function lO(i){return i.startsWith(wd)&&i.slice(wd.length).split("/")[0]||void 0}function cO(){const{user:i}=Ft(),t=yo(),r=yn(),s=j.useRef(r.pathname);s.current=r.pathname;const l=j.useRef(i==null?void 0:i.userId);l.current=i==null?void 0:i.userId;const c=j.useCallback(d=>{var b,v,_;if((d==null?void 0:d.assignedAtCreation)!==!0)return;const y=(d==null?void 0:d.escalationId)??((b=d==null?void 0:d.data)==null?void 0:b.id),g=(v=d==null?void 0:d.data)==null?void 0:v.assigned_to,f=(_=d==null?void 0:d.data)==null?void 0:_.parent_id;if(!y||g!==l.current||!f||f!==lO(s.current))return;const m=`${wd}${y}`;s.current!==m&&t(m)},[t]);Dd(Gd(["claimed"]),c)}function uO(){return lt({queryKey:["roles"],queryFn:()=>_e("/roles")})}function tv(i){return lt({queryKey:["roles","details"],queryFn:()=>_e("/roles/details"),enabled:(i==null?void 0:i.enabled)??!0})}function Ok(i,t,r=!0){return lt({queryKey:["roles",i,"schema",t??"latest"],queryFn:()=>_e(`/roles/${encodeURIComponent(i)}/schema${t!=null?`?version=${t}`:""}`),enabled:r&&!!i})}function Ak(i){return lt({queryKey:["roles",i,"schema-versions"],queryFn:()=>_e(`/roles/${encodeURIComponent(i)}/schema/versions`),enabled:!!i})}function jk(i,t,r=!0){return lt({queryKey:["roles",i,"list-schema",t??"latest"],queryFn:()=>_e(`/roles/${encodeURIComponent(i)}/list-schema${t!=null?`?version=${t}`:""}`),enabled:r&&!!i})}function Tk(i){return lt({queryKey:["roles",i,"list-schema-versions"],queryFn:()=>_e(`/roles/${encodeURIComponent(i)}/list-schema/versions`),enabled:!!i})}function Nk(){const i=rt();return mt({mutationFn:t=>_e("/roles",{method:"POST",body:JSON.stringify({role:t})}),onSuccess:()=>{i.invalidateQueries({queryKey:["roles"]})}})}function kk(){const i=rt();return mt({mutationFn:({role:t,...r})=>_e(`/roles/${encodeURIComponent(t)}`,{method:"PATCH",body:JSON.stringify(r)}),onMutate:async({role:t,...r})=>{await i.cancelQueries({queryKey:["roles","details"]});const s=i.getQueryData(["roles","details"]);return s&&i.setQueryData(["roles","details"],{roles:s.roles.map(l=>l.role===t?{...l,...r}:l)}),{previous:s}},onError:(t,r,s)=>{s!=null&&s.previous&&i.setQueryData(["roles","details"],s.previous)},onSuccess:()=>{i.invalidateQueries({queryKey:["roles"]})}})}function Ck(){const i=rt();return mt({mutationFn:t=>_e(`/roles/${encodeURIComponent(t)}`,{method:"DELETE"}),onSuccess:()=>{i.invalidateQueries({queryKey:["roles"]})}})}function fO(){const{user:i}=Ft(),{data:t}=tv();return j.useMemo(()=>{var c,d;const r=(i==null?void 0:i.roles)??[],s=r.length===1?r[0]:null;if(!s||s.type!=="member")return{kiosk:!1,role:null,homePath:null};const l=(c=t==null?void 0:t.roles)==null?void 0:c.find(y=>y.role===s.role);return((d=l==null?void 0:l.properties)==null?void 0:d.kiosk)!==!0?{kiosk:!1,role:null,homePath:null}:{kiosk:!0,role:s.role,homePath:`/escalations/available?role=${encodeURIComponent(s.role)}&status=available`}},[i,t])}const hO=["/escalations","/scan","/login"];function dO(i){return hO.some(t=>i===t||i.startsWith(`${t}/`)||i.startsWith(`${t}?`))}const Fd=j.createContext(null),Gh="lt_sidebar_collapsed",nv="(max-width: 1023px)";function mO(){try{return window.matchMedia(nv).matches}catch{return!1}}function pO({children:i}){const[t,r]=j.useState(()=>{if(mO())return!0;try{return localStorage.getItem(Gh)==="true"}catch{return!1}});j.useEffect(()=>{let l;try{l=window.matchMedia(nv)}catch{return}const c=d=>{if(d.matches)r(!0);else try{r(localStorage.getItem(Gh)==="true")}catch{r(!1)}};return l.addEventListener("change",c),()=>l.removeEventListener("change",c)},[]);const s=j.useCallback(()=>{r(l=>{const c=!l;try{localStorage.setItem(Gh,String(c))}catch{}return c})},[]);return p.jsx(Fd.Provider,{value:{collapsed:t,toggle:s},children:i})}function yO({children:i}){return p.jsx(Fd.Provider,{value:{collapsed:!1,toggle:()=>{}},children:i})}function Vd(){const i=j.useContext(Fd);if(!i)throw new Error("useSidebar must be used within SidebarProvider");return i}const jg=380,Yd=j.createContext(null);function gO({children:i}){const[t,r]=j.useState({node:null,width:jg,open:!1,ownerKey:null}),s=yn(),l=j.useRef(s.pathname),c=j.useCallback((y,g)=>{r({node:y,width:(g==null?void 0:g.width)??jg,open:!0,ownerKey:(g==null?void 0:g.key)??null})},[]),d=j.useCallback(y=>{r(g=>typeof y=="string"&&g.ownerKey!==y?g:{...g,open:!1})},[]);return j.useEffect(()=>{s.pathname!==l.current&&(l.current=s.pathname,r(y=>y.open||y.node?{...y,node:null,open:!1,ownerKey:null}:y))},[s.pathname]),p.jsx(Yd.Provider,{value:{...t,setPanel:c,closePanel:d},children:i})}function Kd(){const i=j.useContext(Yd);if(!i)throw new Error("useShellPanel must be used within ShellPanelProvider");return i}function Mk(){return j.useContext(Yd)}function bO({open:i,width:t=380,children:r,className:s=""}){const[l,c]=j.useState(i);return j.useEffect(()=>{i&&c(!0)},[i]),p.jsx("div",{className:`shrink-0 overflow-hidden transition-[width] duration-300 ease-out ${s}`,style:{width:i?t:0,maxWidth:"50%"},onTransitionEnd:d=>{!i&&d.propertyName==="width"&&c(!1)},children:p.jsx("div",{style:{width:t},className:"h-full",children:l?r:null})})}function Rk({label:i,children:t}){return p.jsxs("div",{children:[p.jsx("dt",{className:"text-2xs font-medium text-text-secondary uppercase tracking-wide",children:i}),p.jsx("dd",{className:"text-xs text-text-primary mt-0.5",children:t})]})}function Dk({views:i,activeId:t,onViewChange:r,onClose:s,headerActions:l,stickyClassName:c,labelInline:d}){const y=i.find(g=>g.id===t)??i[0];return y?p.jsx("div",{className:"h-full bg-surface-hover",children:p.jsxs("div",{className:`flex flex-col ${c??"sticky top-0 z-10 max-h-[calc(100vh-3.5rem)]"}`,children:[p.jsxs("div",{className:`flex items-center justify-between pl-4 pr-3 shrink-0 ${d?"pt-10 pb-2":"pt-3"}`,children:[p.jsxs("div",{className:"flex items-center gap-2 min-w-0",children:[p.jsx("div",{className:"flex items-center gap-1 shrink-0",role:"radiogroup","aria-label":"Panel view",children:i.map(g=>{const f=g.icon,m=g.id===y.id;return p.jsx("button",{role:"radio","aria-checked":m,onClick:()=>r(g.id),title:g.label,className:`p-1.5 rounded-md transition-colors ${m?"bg-accent/10 text-accent":"text-accent/60 hover:text-accent hover:bg-surface-hover"}`,children:p.jsx(f,{className:"w-3.5 h-3.5"})},g.id)})}),d&&p.jsx("span",{className:"text-2xs font-semibold uppercase tracking-widest text-text-secondary truncate",children:y.label})]}),p.jsxs("div",{className:"flex items-center gap-1 shrink-0",children:[l,s&&p.jsx("button",{onClick:s,title:"Close panel",className:"p-1 rounded text-accent/60 hover:text-accent hover:bg-surface-hover transition-colors",children:p.jsx(Gt,{className:"w-3.5 h-3.5"})})]})]}),!d&&p.jsx("p",{className:"px-5 pt-2 pb-1 text-2xs font-semibold uppercase tracking-widest text-text-secondary shrink-0",children:y.label}),p.jsx("div",{className:`flex-1 overflow-y-auto px-5 ${d?"pt-4 pb-8":"pb-5 pt-1"}`,children:y.content})]})}):null}function rv(i,t){var r,s,l,c,d;t.facets&&Object.keys(t.facets).length&&i.set("facets",JSON.stringify(t.facets)),(r=t.block)!=null&&r.length&&i.set("block",JSON.stringify(t.block)),(s=t.range)!=null&&s.length&&i.set("range",JSON.stringify(t.range)),(l=t.exists)!=null&&l.length&&i.set("exists",JSON.stringify(t.exists)),(c=t.roles)!=null&&c.length&&i.set("roles",JSON.stringify(t.roles)),(d=t.orderBy)!=null&&d.length&&i.set("orderBy",JSON.stringify(t.orderBy)),t.available!==void 0&&i.set("available",String(t.available)),t.jeopardy===!0&&i.set("jeopardy","1"),t.include&&i.set("include",t.include)}function qk(i,t){const r=i??"24h";return lt({queryKey:["stationMetrics",r],queryFn:()=>_e(`/escalations/station-metrics?period=${r}`),staleTime:5e3,enabled:(t==null?void 0:t.enabled)??!0})}function Bk(i){const t=i?`?period=${i}`:"";return lt({queryKey:["escalationStats",i],queryFn:()=>_e(`/escalations/stats${t}`)})}function Lk(){return lt({queryKey:["escalationTypes"],queryFn:()=>_e("/escalations/types")})}function Pk(i=!0){return lt({queryKey:["escalationFacetKeys"],queryFn:()=>_e("/escalations/facet-keys"),enabled:i,staleTime:6e4})}function iv(i){const{enabled:t=!0,staleTime:r,...s}=i,l=new URLSearchParams;return s.status&&l.set("status",s.status),s.role&&l.set("role",s.role),s.type&&l.set("type",s.type),s.subtype&&l.set("subtype",s.subtype),s.assigned_to&&l.set("assigned_to",s.assigned_to),s.parent_id&&l.set("parent_id",s.parent_id),s.claimed&&l.set("claimed","true"),s.priority&&l.set("priority",String(s.priority)),s.limit&&l.set("limit",String(s.limit)),s.offset!==void 0&&l.set("offset",String(s.offset)),s.sort_by&&l.set("sort_by",s.sort_by),s.order&&l.set("order",s.order),s.search&&l.set("search",s.search),rv(l,s),lt({queryKey:["escalations",s],queryFn:()=>_e(`/escalations?${l}`),enabled:t,...r!==void 0?{staleTime:r}:{}})}function sv(i){const{enabled:t=!0,staleTime:r,...s}=i,l=new URLSearchParams;return s.role&&l.set("role",s.role),s.type&&l.set("type",s.type),s.subtype&&l.set("subtype",s.subtype),s.priority&&l.set("priority",String(s.priority)),s.limit&&l.set("limit",String(s.limit)),s.offset!==void 0&&l.set("offset",String(s.offset)),s.sort_by&&l.set("sort_by",s.sort_by),s.order&&l.set("order",s.order),s.search&&l.set("search",s.search),rv(l,s),lt({queryKey:["escalations","available",s],queryFn:()=>_e(`/escalations/available?${l}`),enabled:t,...r!==void 0?{staleTime:r}:{}})}function Uk(i){return lt({queryKey:["escalations","by-workflow",i],queryFn:()=>_e(`/escalations/by-workflow/${i}`),enabled:!!i})}function zk(i){return lt({queryKey:["escalations",i],queryFn:()=>_e(`/escalations/${i}`),enabled:!!i})}function Ik(i,t){return lt({queryKey:["escalations",i,"lookups"],queryFn:()=>_e(`/escalations/${i}/lookups`),enabled:!!i&&t,staleTime:1/0})}function $k(){const i=rt();return mt({mutationFn:({id:t,durationMinutes:r})=>_e(`/escalations/${t}/claim`,{method:"POST",body:JSON.stringify({durationMinutes:r})}),onSuccess:()=>{i.resetQueries({queryKey:["escalations"]}),i.resetQueries({queryKey:["escalationStats"]})}})}function Hk(){const i=rt();return mt({mutationFn:t=>_e(`/escalations/${t}/release`,{method:"POST"}),onSuccess:()=>{i.resetQueries({queryKey:["escalations"]}),i.resetQueries({queryKey:["escalationStats"]})}})}function Gk(){const i=rt();return mt({mutationFn:({id:t,resolverPayload:r})=>_e(`/escalations/${t}/resolve`,{method:"POST",body:JSON.stringify({resolverPayload:r})}),onSuccess:()=>{i.resetQueries({queryKey:["escalations"]}),i.resetQueries({queryKey:["escalationStats"]}),i.resetQueries({queryKey:["tasks"]}),i.resetQueries({queryKey:["jobs"]})}})}function Fk(){const i=rt();return mt({mutationFn:({id:t,targetRole:r})=>_e(`/escalations/${t}/escalate`,{method:"PATCH",body:JSON.stringify({targetRole:r})}),onSuccess:()=>{i.resetQueries({queryKey:["escalations"]}),i.resetQueries({queryKey:["escalationStats"]})}})}function Vk(){const i=rt();return mt({mutationFn:({ids:t,priority:r})=>_e("/escalations/priority",{method:"PATCH",body:JSON.stringify({ids:t,priority:r})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function Yk(){const i=rt();return mt({mutationFn:({ids:t,durationMinutes:r})=>_e("/escalations/bulk-claim",{method:"POST",body:JSON.stringify({ids:t,durationMinutes:r})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function Kk(){const i=rt();return mt({mutationFn:({ids:t,targetUserId:r,durationMinutes:s,reassign:l})=>_e("/escalations/bulk-assign",{method:"POST",body:JSON.stringify({ids:t,targetUserId:r,durationMinutes:s,...l?{reassign:!0}:{}})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function Xk(){const i=rt();return mt({mutationFn:({ids:t})=>_e("/escalations/bulk-unassign",{method:"POST",body:JSON.stringify({ids:t})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function Jk(){const i=rt();return mt({mutationFn:({ids:t,hint:r})=>_e("/escalations/bulk-triage",{method:"POST",body:JSON.stringify({ids:t,...r?{hint:r}:{}})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function Qk(){const i=rt();return mt({mutationFn:t=>_e(`/escalations/${t}/cancel`,{method:"POST"}),onSuccess:()=>{i.resetQueries({queryKey:["escalations"]}),i.resetQueries({queryKey:["escalationStats"]})}})}function Zk(){const i=rt();return mt({mutationFn:({ids:t})=>_e("/escalations/bulk-cancel",{method:"POST",body:JSON.stringify({ids:t})}),onSuccess:()=>{i.invalidateQueries({queryKey:["escalations"],refetchType:"all"}),i.invalidateQueries({queryKey:["escalationStats"],refetchType:"all"})}})}function vO(){const{user:i}=Ft(),t=i==null?void 0:i.userId,r=rt(),s=j.useRef(null),l=j.useCallback(()=>{s.current||(s.current=setTimeout(()=>{s.current=null,r.invalidateQueries({queryKey:["escalations"]})},15e3))},[r]);Dd(Gd(),l);const{data:c}=sv({limit:1}),{data:d}=iv({assigned_to:t,status:"pending",limit:1});return{available:(c==null?void 0:c.total)??0,mine:(d==null?void 0:d.total)??0}}function nu({size:i="sm",hideLabel:t=!1,className:r="",appName:s="LongTail",variant:l="full"}){const c=i==="lg";if(l==="comet")return p.jsx("div",{className:`relative overflow-visible ${r}`,style:{width:"2.5rem",height:"2.5rem",flexShrink:0},children:p.jsx("span",{role:"img","aria-label":s,className:"logo-mark absolute pointer-events-none select-none",style:{"--logo-url":`url(${Nt}/logo512.png)`,width:"82px",height:"82px",top:"-12px",left:"-80px",transform:"rotate(232deg)",zIndex:-1,opacity:.55}})});if(l==="mark")return p.jsx("div",{className:`flex items-center ${r}`,children:p.jsx("span",{role:"img","aria-label":s,className:"logo-mark shrink-0 w-7 h-7",style:{"--logo-url":`url(${Nt}/logo512.png)`}})});const d=c?"w-[16rem] h-[16rem] -rotate-[120deg] opacity-55 -ml-10":"w-[12.5rem] h-[12.5rem] -rotate-[120deg] opacity-55 -ml-8",y=c?"text-[44px] font-normal text-text-primary tracking-[0.15em] -ml-[12.5rem]":"text-[36px] font-normal text-text-primary tracking-[0.15em] -ml-[9.75rem]";return p.jsxs("div",{className:`flex items-center ${r}`,style:{height:"50px"},children:[p.jsx("span",{role:"img","aria-label":s,className:`logo-mark shrink-0 z-0 ${d}`,style:{"--logo-url":`url(${Nt}/logo512.png)`}}),p.jsx("span",{className:`z-[1] transition-opacity duration-300 ${y} ${t?"opacity-0":""}`,children:s})]})}const xO="system.surfaces.dashboard",_O=`${Db}.${xO}`;function av(i=!0){return lt({queryKey:["announcements"],queryFn:()=>_e("/announcements"),enabled:i,staleTime:3e4})}function wO(){const i=rt();return mt({mutationFn:t=>_e("/announcements",{method:"POST",body:JSON.stringify(t)}),onSuccess:()=>{i.invalidateQueries({queryKey:["announcements"]})}})}function SO(){const i=rt();return mt({mutationFn:t=>_e(`/announcements/${encodeURIComponent(t)}`,{method:"DELETE"}),onSuccess:()=>{i.invalidateQueries({queryKey:["announcements"]})}})}const ov=6048e5,EO=864e5,Tg=6e4,Ng=525600,kg=43200,Cg=1440,Mg=Symbol.for("constructDateFrom");function Or(i,t){return typeof i=="function"?i(t):i&&typeof i=="object"&&Mg in i?i[Mg](t):i instanceof Date?new i.constructor(t):new Date(t)}function pn(i,t){return Or(t||i,i)}let OO={};function vo(){return OO}function po(i,t){var y,g,f,m;const r=vo(),s=(t==null?void 0:t.weekStartsOn)??((g=(y=t==null?void 0:t.locale)==null?void 0:y.options)==null?void 0:g.weekStartsOn)??r.weekStartsOn??((m=(f=r.locale)==null?void 0:f.options)==null?void 0:m.weekStartsOn)??0,l=pn(i,t==null?void 0:t.in),c=l.getDay(),d=(c<s?7:0)+c-s;return l.setDate(l.getDate()-d),l.setHours(0,0,0,0),l}function ru(i,t){return po(i,{...t,weekStartsOn:1})}function lv(i,t){const r=pn(i,t==null?void 0:t.in),s=r.getFullYear(),l=Or(r,0);l.setFullYear(s+1,0,4),l.setHours(0,0,0,0);const c=ru(l),d=Or(r,0);d.setFullYear(s,0,4),d.setHours(0,0,0,0);const y=ru(d);return r.getTime()>=c.getTime()?s+1:r.getTime()>=y.getTime()?s:s-1}function iu(i){const t=pn(i),r=new Date(Date.UTC(t.getFullYear(),t.getMonth(),t.getDate(),t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()));return r.setUTCFullYear(t.getFullYear()),+i-+r}function cv(i,...t){const r=Or.bind(null,i||t.find(s=>typeof s=="object"));return t.map(r)}function Rg(i,t){const r=pn(i,t==null?void 0:t.in);return r.setHours(0,0,0,0),r}function AO(i,t,r){const[s,l]=cv(r==null?void 0:r.in,i,t),c=Rg(s),d=Rg(l),y=+c-iu(c),g=+d-iu(d);return Math.round((y-g)/EO)}function jO(i,t){const r=lv(i,t),s=Or(i,0);return s.setFullYear(r,0,4),s.setHours(0,0,0,0),ru(s)}function TO(i,t){const r=+pn(i)-+pn(t);return r<0?-1:r>0?1:r}function NO(i){return Or(i,Date.now())}function kO(i){return i instanceof Date||typeof i=="object"&&Object.prototype.toString.call(i)==="[object Date]"}function CO(i){return!(!kO(i)&&typeof i!="number"||isNaN(+pn(i)))}function MO(i){return t=>{const s=(i?Math[i]:Math.trunc)(t);return s===0?0:s}}function RO(i,t){const r=pn(i,t==null?void 0:t.in);return r.setFullYear(r.getFullYear(),0,1),r.setHours(0,0,0,0),r}const DO={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}},qO=(i,t,r)=>{let s;const l=DO[i];return typeof l=="string"?s=l:t===1?s=l.one:s=l.other.replace("{{count}}",t.toString()),r!=null&&r.addSuffix?r.comparison&&r.comparison>0?"in "+s:s+" ago":s};function Fh(i){return(t={})=>{const r=t.width?String(t.width):i.defaultWidth;return i.formats[r]||i.formats[i.defaultWidth]}}const BO={full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},LO={full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},PO={full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},UO={date:Fh({formats:BO,defaultWidth:"full"}),time:Fh({formats:LO,defaultWidth:"full"}),dateTime:Fh({formats:PO,defaultWidth:"full"})},zO={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"},IO=(i,t,r,s)=>zO[i];function Ka(i){return(t,r)=>{const s=r!=null&&r.context?String(r.context):"standalone";let l;if(s==="formatting"&&i.formattingValues){const d=i.defaultFormattingWidth||i.defaultWidth,y=r!=null&&r.width?String(r.width):d;l=i.formattingValues[y]||i.formattingValues[d]}else{const d=i.defaultWidth,y=r!=null&&r.width?String(r.width):i.defaultWidth;l=i.values[y]||i.values[d]}const c=i.argumentCallback?i.argumentCallback(t):t;return l[c]}}const $O={narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},HO={narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},GO={narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},FO={narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},VO={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},YO={narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},KO=(i,t)=>{const r=Number(i),s=r%100;if(s>20||s<10)switch(s%10){case 1:return r+"st";case 2:return r+"nd";case 3:return r+"rd"}return r+"th"},XO={ordinalNumber:KO,era:Ka({values:$O,defaultWidth:"wide"}),quarter:Ka({values:HO,defaultWidth:"wide",argumentCallback:i=>i-1}),month:Ka({values:GO,defaultWidth:"wide"}),day:Ka({values:FO,defaultWidth:"wide"}),dayPeriod:Ka({values:VO,defaultWidth:"wide",formattingValues:YO,defaultFormattingWidth:"wide"})};function Xa(i){return(t,r={})=>{const s=r.width,l=s&&i.matchPatterns[s]||i.matchPatterns[i.defaultMatchWidth],c=t.match(l);if(!c)return null;const d=c[0],y=s&&i.parsePatterns[s]||i.parsePatterns[i.defaultParseWidth],g=Array.isArray(y)?QO(y,b=>b.test(d)):JO(y,b=>b.test(d));let f;f=i.valueCallback?i.valueCallback(g):g,f=r.valueCallback?r.valueCallback(f):f;const m=t.slice(d.length);return{value:f,rest:m}}}function JO(i,t){for(const r in i)if(Object.prototype.hasOwnProperty.call(i,r)&&t(i[r]))return r}function QO(i,t){for(let r=0;r<i.length;r++)if(t(i[r]))return r}function ZO(i){return(t,r={})=>{const s=t.match(i.matchPattern);if(!s)return null;const l=s[0],c=t.match(i.parsePattern);if(!c)return null;let d=i.valueCallback?i.valueCallback(c[0]):c[0];d=r.valueCallback?r.valueCallback(d):d;const y=t.slice(l.length);return{value:d,rest:y}}}const WO=/^(\d+)(th|st|nd|rd)?/i,eA=/\d+/i,tA={narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},nA={any:[/^b/i,/^(a|c)/i]},rA={narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},iA={any:[/1/i,/2/i,/3/i,/4/i]},sA={narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},aA={narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},oA={narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},lA={narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},cA={narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},uA={any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},fA={ordinalNumber:ZO({matchPattern:WO,parsePattern:eA,valueCallback:i=>parseInt(i,10)}),era:Xa({matchPatterns:tA,defaultMatchWidth:"wide",parsePatterns:nA,defaultParseWidth:"any"}),quarter:Xa({matchPatterns:rA,defaultMatchWidth:"wide",parsePatterns:iA,defaultParseWidth:"any",valueCallback:i=>i+1}),month:Xa({matchPatterns:sA,defaultMatchWidth:"wide",parsePatterns:aA,defaultParseWidth:"any"}),day:Xa({matchPatterns:oA,defaultMatchWidth:"wide",parsePatterns:lA,defaultParseWidth:"any"}),dayPeriod:Xa({matchPatterns:cA,defaultMatchWidth:"any",parsePatterns:uA,defaultParseWidth:"any"})},uv={code:"en-US",formatDistance:qO,formatLong:UO,formatRelative:IO,localize:XO,match:fA,options:{weekStartsOn:0,firstWeekContainsDate:1}};function hA(i,t){const r=pn(i,t==null?void 0:t.in);return AO(r,RO(r))+1}function dA(i,t){const r=pn(i,t==null?void 0:t.in),s=+ru(r)-+jO(r);return Math.round(s/ov)+1}function fv(i,t){var m,b,v,_;const r=pn(i,t==null?void 0:t.in),s=r.getFullYear(),l=vo(),c=(t==null?void 0:t.firstWeekContainsDate)??((b=(m=t==null?void 0:t.locale)==null?void 0:m.options)==null?void 0:b.firstWeekContainsDate)??l.firstWeekContainsDate??((_=(v=l.locale)==null?void 0:v.options)==null?void 0:_.firstWeekContainsDate)??1,d=Or((t==null?void 0:t.in)||i,0);d.setFullYear(s+1,0,c),d.setHours(0,0,0,0);const y=po(d,t),g=Or((t==null?void 0:t.in)||i,0);g.setFullYear(s,0,c),g.setHours(0,0,0,0);const f=po(g,t);return+r>=+y?s+1:+r>=+f?s:s-1}function mA(i,t){var y,g,f,m;const r=vo(),s=(t==null?void 0:t.firstWeekContainsDate)??((g=(y=t==null?void 0:t.locale)==null?void 0:y.options)==null?void 0:g.firstWeekContainsDate)??r.firstWeekContainsDate??((m=(f=r.locale)==null?void 0:f.options)==null?void 0:m.firstWeekContainsDate)??1,l=fv(i,t),c=Or((t==null?void 0:t.in)||i,0);return c.setFullYear(l,0,s),c.setHours(0,0,0,0),po(c,t)}function pA(i,t){const r=pn(i,t==null?void 0:t.in),s=+po(r,t)-+mA(r,t);return Math.round(s/ov)+1}function Ye(i,t){const r=i<0?"-":"",s=Math.abs(i).toString().padStart(t,"0");return r+s}const ri={y(i,t){const r=i.getFullYear(),s=r>0?r:1-r;return Ye(t==="yy"?s%100:s,t.length)},M(i,t){const r=i.getMonth();return t==="M"?String(r+1):Ye(r+1,2)},d(i,t){return Ye(i.getDate(),t.length)},a(i,t){const r=i.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return r.toUpperCase();case"aaa":return r;case"aaaaa":return r[0];case"aaaa":default:return r==="am"?"a.m.":"p.m."}},h(i,t){return Ye(i.getHours()%12||12,t.length)},H(i,t){return Ye(i.getHours(),t.length)},m(i,t){return Ye(i.getMinutes(),t.length)},s(i,t){return Ye(i.getSeconds(),t.length)},S(i,t){const r=t.length,s=i.getMilliseconds(),l=Math.trunc(s*Math.pow(10,r-3));return Ye(l,t.length)}},Cs={midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},Dg={G:function(i,t,r){const s=i.getFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return r.era(s,{width:"abbreviated"});case"GGGGG":return r.era(s,{width:"narrow"});case"GGGG":default:return r.era(s,{width:"wide"})}},y:function(i,t,r){if(t==="yo"){const s=i.getFullYear(),l=s>0?s:1-s;return r.ordinalNumber(l,{unit:"year"})}return ri.y(i,t)},Y:function(i,t,r,s){const l=fv(i,s),c=l>0?l:1-l;if(t==="YY"){const d=c%100;return Ye(d,2)}return t==="Yo"?r.ordinalNumber(c,{unit:"year"}):Ye(c,t.length)},R:function(i,t){const r=lv(i);return Ye(r,t.length)},u:function(i,t){const r=i.getFullYear();return Ye(r,t.length)},Q:function(i,t,r){const s=Math.ceil((i.getMonth()+1)/3);switch(t){case"Q":return String(s);case"QQ":return Ye(s,2);case"Qo":return r.ordinalNumber(s,{unit:"quarter"});case"QQQ":return r.quarter(s,{width:"abbreviated",context:"formatting"});case"QQQQQ":return r.quarter(s,{width:"narrow",context:"formatting"});case"QQQQ":default:return r.quarter(s,{width:"wide",context:"formatting"})}},q:function(i,t,r){const s=Math.ceil((i.getMonth()+1)/3);switch(t){case"q":return String(s);case"qq":return Ye(s,2);case"qo":return r.ordinalNumber(s,{unit:"quarter"});case"qqq":return r.quarter(s,{width:"abbreviated",context:"standalone"});case"qqqqq":return r.quarter(s,{width:"narrow",context:"standalone"});case"qqqq":default:return r.quarter(s,{width:"wide",context:"standalone"})}},M:function(i,t,r){const s=i.getMonth();switch(t){case"M":case"MM":return ri.M(i,t);case"Mo":return r.ordinalNumber(s+1,{unit:"month"});case"MMM":return r.month(s,{width:"abbreviated",context:"formatting"});case"MMMMM":return r.month(s,{width:"narrow",context:"formatting"});case"MMMM":default:return r.month(s,{width:"wide",context:"formatting"})}},L:function(i,t,r){const s=i.getMonth();switch(t){case"L":return String(s+1);case"LL":return Ye(s+1,2);case"Lo":return r.ordinalNumber(s+1,{unit:"month"});case"LLL":return r.month(s,{width:"abbreviated",context:"standalone"});case"LLLLL":return r.month(s,{width:"narrow",context:"standalone"});case"LLLL":default:return r.month(s,{width:"wide",context:"standalone"})}},w:function(i,t,r,s){const l=pA(i,s);return t==="wo"?r.ordinalNumber(l,{unit:"week"}):Ye(l,t.length)},I:function(i,t,r){const s=dA(i);return t==="Io"?r.ordinalNumber(s,{unit:"week"}):Ye(s,t.length)},d:function(i,t,r){return t==="do"?r.ordinalNumber(i.getDate(),{unit:"date"}):ri.d(i,t)},D:function(i,t,r){const s=hA(i);return t==="Do"?r.ordinalNumber(s,{unit:"dayOfYear"}):Ye(s,t.length)},E:function(i,t,r){const s=i.getDay();switch(t){case"E":case"EE":case"EEE":return r.day(s,{width:"abbreviated",context:"formatting"});case"EEEEE":return r.day(s,{width:"narrow",context:"formatting"});case"EEEEEE":return r.day(s,{width:"short",context:"formatting"});case"EEEE":default:return r.day(s,{width:"wide",context:"formatting"})}},e:function(i,t,r,s){const l=i.getDay(),c=(l-s.weekStartsOn+8)%7||7;switch(t){case"e":return String(c);case"ee":return Ye(c,2);case"eo":return r.ordinalNumber(c,{unit:"day"});case"eee":return r.day(l,{width:"abbreviated",context:"formatting"});case"eeeee":return r.day(l,{width:"narrow",context:"formatting"});case"eeeeee":return r.day(l,{width:"short",context:"formatting"});case"eeee":default:return r.day(l,{width:"wide",context:"formatting"})}},c:function(i,t,r,s){const l=i.getDay(),c=(l-s.weekStartsOn+8)%7||7;switch(t){case"c":return String(c);case"cc":return Ye(c,t.length);case"co":return r.ordinalNumber(c,{unit:"day"});case"ccc":return r.day(l,{width:"abbreviated",context:"standalone"});case"ccccc":return r.day(l,{width:"narrow",context:"standalone"});case"cccccc":return r.day(l,{width:"short",context:"standalone"});case"cccc":default:return r.day(l,{width:"wide",context:"standalone"})}},i:function(i,t,r){const s=i.getDay(),l=s===0?7:s;switch(t){case"i":return String(l);case"ii":return Ye(l,t.length);case"io":return r.ordinalNumber(l,{unit:"day"});case"iii":return r.day(s,{width:"abbreviated",context:"formatting"});case"iiiii":return r.day(s,{width:"narrow",context:"formatting"});case"iiiiii":return r.day(s,{width:"short",context:"formatting"});case"iiii":default:return r.day(s,{width:"wide",context:"formatting"})}},a:function(i,t,r){const l=i.getHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return r.dayPeriod(l,{width:"abbreviated",context:"formatting"});case"aaa":return r.dayPeriod(l,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return r.dayPeriod(l,{width:"narrow",context:"formatting"});case"aaaa":default:return r.dayPeriod(l,{width:"wide",context:"formatting"})}},b:function(i,t,r){const s=i.getHours();let l;switch(s===12?l=Cs.noon:s===0?l=Cs.midnight:l=s/12>=1?"pm":"am",t){case"b":case"bb":return r.dayPeriod(l,{width:"abbreviated",context:"formatting"});case"bbb":return r.dayPeriod(l,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return r.dayPeriod(l,{width:"narrow",context:"formatting"});case"bbbb":default:return r.dayPeriod(l,{width:"wide",context:"formatting"})}},B:function(i,t,r){const s=i.getHours();let l;switch(s>=17?l=Cs.evening:s>=12?l=Cs.afternoon:s>=4?l=Cs.morning:l=Cs.night,t){case"B":case"BB":case"BBB":return r.dayPeriod(l,{width:"abbreviated",context:"formatting"});case"BBBBB":return r.dayPeriod(l,{width:"narrow",context:"formatting"});case"BBBB":default:return r.dayPeriod(l,{width:"wide",context:"formatting"})}},h:function(i,t,r){if(t==="ho"){let s=i.getHours()%12;return s===0&&(s=12),r.ordinalNumber(s,{unit:"hour"})}return ri.h(i,t)},H:function(i,t,r){return t==="Ho"?r.ordinalNumber(i.getHours(),{unit:"hour"}):ri.H(i,t)},K:function(i,t,r){const s=i.getHours()%12;return t==="Ko"?r.ordinalNumber(s,{unit:"hour"}):Ye(s,t.length)},k:function(i,t,r){let s=i.getHours();return s===0&&(s=24),t==="ko"?r.ordinalNumber(s,{unit:"hour"}):Ye(s,t.length)},m:function(i,t,r){return t==="mo"?r.ordinalNumber(i.getMinutes(),{unit:"minute"}):ri.m(i,t)},s:function(i,t,r){return t==="so"?r.ordinalNumber(i.getSeconds(),{unit:"second"}):ri.s(i,t)},S:function(i,t){return ri.S(i,t)},X:function(i,t,r){const s=i.getTimezoneOffset();if(s===0)return"Z";switch(t){case"X":return Bg(s);case"XXXX":case"XX":return Ui(s);case"XXXXX":case"XXX":default:return Ui(s,":")}},x:function(i,t,r){const s=i.getTimezoneOffset();switch(t){case"x":return Bg(s);case"xxxx":case"xx":return Ui(s);case"xxxxx":case"xxx":default:return Ui(s,":")}},O:function(i,t,r){const s=i.getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+qg(s,":");case"OOOO":default:return"GMT"+Ui(s,":")}},z:function(i,t,r){const s=i.getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+qg(s,":");case"zzzz":default:return"GMT"+Ui(s,":")}},t:function(i,t,r){const s=Math.trunc(+i/1e3);return Ye(s,t.length)},T:function(i,t,r){return Ye(+i,t.length)}};function qg(i,t=""){const r=i>0?"-":"+",s=Math.abs(i),l=Math.trunc(s/60),c=s%60;return c===0?r+String(l):r+String(l)+t+Ye(c,2)}function Bg(i,t){return i%60===0?(i>0?"-":"+")+Ye(Math.abs(i)/60,2):Ui(i,t)}function Ui(i,t=""){const r=i>0?"-":"+",s=Math.abs(i),l=Ye(Math.trunc(s/60),2),c=Ye(s%60,2);return r+l+t+c}const Lg=(i,t)=>{switch(i){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});case"PPPP":default:return t.date({width:"full"})}},hv=(i,t)=>{switch(i){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});case"pppp":default:return t.time({width:"full"})}},yA=(i,t)=>{const r=i.match(/(P+)(p+)?/)||[],s=r[1],l=r[2];if(!l)return Lg(i,t);let c;switch(s){case"P":c=t.dateTime({width:"short"});break;case"PP":c=t.dateTime({width:"medium"});break;case"PPP":c=t.dateTime({width:"long"});break;case"PPPP":default:c=t.dateTime({width:"full"});break}return c.replace("{{date}}",Lg(s,t)).replace("{{time}}",hv(l,t))},gA={p:hv,P:yA},bA=/^D+$/,vA=/^Y+$/,xA=["D","DD","YY","YYYY"];function _A(i){return bA.test(i)}function wA(i){return vA.test(i)}function SA(i,t,r){const s=EA(i,t,r);if(console.warn(s),xA.includes(i))throw new RangeError(s)}function EA(i,t,r){const s=i[0]==="Y"?"years":"days of the month";return`Use \`${i.toLowerCase()}\` instead of \`${i}\` (in \`${t}\`) for formatting ${s} to the input \`${r}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}const OA=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,AA=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,jA=/^'([^]*?)'?$/,TA=/''/g,NA=/[a-zA-Z]/;function Xd(i,t,r){var m,b,v,_;const s=vo(),l=s.locale??uv,c=s.firstWeekContainsDate??((b=(m=s.locale)==null?void 0:m.options)==null?void 0:b.firstWeekContainsDate)??1,d=s.weekStartsOn??((_=(v=s.locale)==null?void 0:v.options)==null?void 0:_.weekStartsOn)??0,y=pn(i,r==null?void 0:r.in);if(!CO(y))throw new RangeError("Invalid time value");let g=t.match(AA).map(w=>{const S=w[0];if(S==="p"||S==="P"){const M=gA[S];return M(w,l.formatLong)}return w}).join("").match(OA).map(w=>{if(w==="''")return{isToken:!1,value:"'"};const S=w[0];if(S==="'")return{isToken:!1,value:kA(w)};if(Dg[S])return{isToken:!0,value:w};if(S.match(NA))throw new RangeError("Format string contains an unescaped latin alphabet character `"+S+"`");return{isToken:!1,value:w}});l.localize.preprocessor&&(g=l.localize.preprocessor(y,g));const f={firstWeekContainsDate:c,weekStartsOn:d,locale:l};return g.map(w=>{if(!w.isToken)return w.value;const S=w.value;(wA(S)||_A(S))&&SA(S,t,String(i));const M=Dg[S[0]];return M(y,S,l.localize,f)}).join("")}function kA(i){const t=i.match(jA);return t?t[1].replace(TA,"'"):i}function CA(i,t,r){const s=vo(),l=(r==null?void 0:r.locale)??s.locale??uv,c=TO(i,t);if(isNaN(c))throw new RangeError("Invalid time value");const d=Object.assign({},r,{addSuffix:r==null?void 0:r.addSuffix,comparison:c}),[y,g]=cv(r==null?void 0:r.in,...c>0?[t,i]:[i,t]),f=MO((r==null?void 0:r.roundingMethod)??"round"),m=g.getTime()-y.getTime(),b=m/Tg,v=iu(g)-iu(y),_=(m-v)/Tg,w=r==null?void 0:r.unit;let S;if(w?S=w:b<1?S="second":b<60?S="minute":b<Cg?S="hour":_<kg?S="day":_<Ng?S="month":S="year",S==="second"){const M=f(m/1e3);return l.formatDistance("xSeconds",M,d)}else if(S==="minute"){const M=f(b);return l.formatDistance("xMinutes",M,d)}else if(S==="hour"){const M=f(b/60);return l.formatDistance("xHours",M,d)}else if(S==="day"){const M=f(_/Cg);return l.formatDistance("xDays",M,d)}else if(S==="month"){const M=f(_/kg);return M===12&&w!=="month"?l.formatDistance("xYears",1,d):l.formatDistance("xMonths",M,d)}else{const M=f(_/Ng);return l.formatDistance("xYears",M,d)}}function MA(i,t){return CA(i,NO(i),t)}function Wk(i){return i.toLocaleString()}function e3(i){return i>=1e9?`${(i/1e9).toFixed(1).replace(/\.0$/,"")}B`:i>=1e6?`${(i/1e6).toFixed(1).replace(/\.0$/,"")}M`:i>=1e4?`${(i/1e3).toFixed(1).replace(/\.0$/,"")}K`:i.toLocaleString()}function RA(i){const t=new Date(i);return t.getTime()>Date.now()?"just now":MA(t,{addSuffix:!0})}function t3(i){const t=Date.now()-new Date(i).getTime();if(t<0)return"now";const r=Math.floor(t/1e3);if(r<60)return`${r}s`;const s=Math.floor(r/60);if(s<60)return`${s}m`;const l=Math.floor(s/60);if(l<24)return`${l}h`;const c=Math.floor(l/24);return c<7?`${c}d`:c<30?`${Math.floor(c/7)}w`:c<365?`${Math.floor(c/30)}mo`:`${Math.floor(c/365)}y`}function n3(i){return i<=0?"Expired":Jd(i)}function DA(i){return i==null?"--":Jd(i)}function r3(i){return i?Xd(new Date(i),"MMM d, yyyy h:mm a"):"--"}function Jd(i){if(i<1e3)return`${Math.round(i)}ms`;if(i<6e4){const d=i/1e3;return Number.isInteger(d)?`${d}s`:`${d.toFixed(1)}s`}const t=Math.floor(i/1e3),r=Math.floor(t/86400),s=Math.floor(t%86400/3600),l=Math.floor(t%3600/60),c=t%60;return r>0?s>0?`${r}d ${s}h`:`${r}d`:s>0?l>0?`${s}h ${l}m`:`${s}h`:c>0?`${l}m ${c}s`:`${l}m`}function i3(i,t){const r=new Date(i).getTime(),s=t?new Date(t).getTime():Date.now();return Jd(s-r)}function dv({options:i,children:t,className:r=""}){const[s,l]=j.useState(!1),[c,d]=j.useState(null),[y,g]=j.useState(null),f=j.useRef(null),m=j.useRef(void 0),b=j.useRef(void 0),v=220,_=j.useCallback(()=>{if(!f.current)return;const B=f.current.getBoundingClientRect(),U=window.innerWidth-v-8,re=Math.max(8,Math.min(B.left,U));g({top:B.bottom+4,left:re})},[]),w=j.useCallback(async(B,U)=>{try{await navigator.clipboard.writeText(B),d(U),clearTimeout(m.current),m.current=setTimeout(()=>d(null),1200)}catch{}},[]),S=j.useCallback(()=>{clearTimeout(b.current),_(),l(!0)},[_]),M=j.useCallback(()=>{b.current=setTimeout(()=>l(!1),150)},[]);return j.useEffect(()=>()=>{clearTimeout(m.current),clearTimeout(b.current)},[]),p.jsxs("span",{ref:f,className:`inline-flex items-center cursor-default ${r}`,onMouseEnter:S,onMouseLeave:M,children:[t,s&&y&&ib.createPortal(p.jsx("span",{className:"fixed z-[9999] bg-surface-raised border border-surface-border rounded shadow-lg py-1 min-w-[180px]",style:{top:y.top,left:y.left},onMouseEnter:S,onMouseLeave:M,children:i.map(B=>p.jsxs("button",{onClick:U=>{U.stopPropagation(),w(B.value,B.label)},className:"flex items-center justify-between w-full px-2.5 py-1 text-left hover:bg-surface-hover transition-colors",children:[p.jsx("span",{className:"text-2xs font-medium uppercase tracking-wider text-text-tertiary w-10 shrink-0",children:B.label}),p.jsx("span",{className:"text-2xs font-mono text-text-secondary truncate ml-2",children:c===B.label?"✓":B.value})]},B.label))}),document.body)]})}function qA(i,t){const r=new Date(i);switch(t){case"relative":return RA(i);case"datetime":return Xd(r,"MMM d, yyyy h:mm a");case"time":return r.toLocaleTimeString([],{hour:"2-digit",minute:"2-digit",second:"2-digit"})}}function BA(i){const t=new Date(i);return[{label:"ms",value:String(t.getTime())},{label:"utc",value:t.toISOString()},{label:"local",value:Xd(t,"MMM d, yyyy h:mm:ss a")}]}function mv({date:i,format:t="relative",className:r=""}){const[,s]=j.useState(0);j.useEffect(()=>{if(t!=="relative")return;const c=setInterval(()=>s(d=>d+1),3e4);return()=>clearInterval(c)},[t]);const l=j.useMemo(()=>BA(i),[i]);return p.jsx(dv,{options:l,children:p.jsx("time",{dateTime:i,className:`text-xs text-text-tertiary ${r}`,children:qA(i,t)})})}function LA({values:i,options:t,onChange:r,addLabel:s,emptyText:l,ariaLabel:c}){const d=t.filter(y=>!i.includes(y));return p.jsxs("div",{className:"flex flex-wrap items-center gap-1.5",children:[i.map(y=>p.jsxs("button",{type:"button",onClick:()=>r(i.filter(g=>g!==y)),className:"inline-flex items-center gap-1 text-2xs font-mono text-text-primary border border-surface-border px-1.5 py-0.5 hover:text-status-error hover:border-status-error/50 transition-colors",title:`Remove ${y}`,children:[y,p.jsx(Gt,{className:"w-3 h-3",strokeWidth:1.5})]},y)),i.length===0&&l&&p.jsx("span",{className:"text-2xs text-text-tertiary italic",children:l}),d.length>0&&p.jsxs("select",{value:"",onChange:y=>y.target.value&&r([...i,y.target.value]),className:"select font-mono","aria-label":c??s,children:[p.jsx("option",{value:"",children:s}),d.map(y=>p.jsx("option",{value:y,children:y},y))]})]})}const PA=[{minutes:1,label:"1 minute"},{minutes:15,label:"15 minutes"},{minutes:30,label:"30 minutes"},{minutes:60,label:"1 hour"},{minutes:240,label:"4 hours"},{minutes:1440,label:"24 hours"},{minutes:4320,label:"3 days"},{minutes:10080,label:"7 days"}];function UA(){const{data:i}=av(),{data:t}=uO(),r=wO(),s=SO(),[l,c]=j.useState(""),[d,y]=j.useState(""),[g,f]=j.useState(1440),[m,b]=j.useState([]),v=(i==null?void 0:i.announcements)??[],_=()=>{d.trim()&&r.mutate({body:d.trim(),...l.trim()?{title:l.trim()}:{},...m.length?{roles:m}:{},expiresAt:new Date(Date.now()+g*6e4).toISOString()},{onSuccess:()=>{c(""),y(""),b([])}})};return p.jsxs("div",{children:[p.jsx("p",{className:"text-2xs font-medium uppercase tracking-widest text-text-tertiary mb-4",children:"Alerts"}),p.jsxs("div",{className:"space-y-3",children:[p.jsxs("label",{className:"block",children:[p.jsx("span",{className:"block text-2xs text-text-tertiary mb-1",children:"Title"}),p.jsx("input",{type:"text",value:l,onChange:w=>c(w.target.value),placeholder:"Optional headline",className:"input text-xs w-full"})]}),p.jsxs("label",{className:"block",children:[p.jsx("span",{className:"block text-2xs text-text-tertiary mb-1",children:"Summary"}),p.jsx("textarea",{value:d,onChange:w=>y(w.target.value),placeholder:"What everyone should know (markdown supported)",rows:3,className:"input text-xs w-full resize-y"})]}),p.jsxs("label",{className:"block",children:[p.jsx("span",{className:"block text-2xs text-text-tertiary mb-1",children:"Visible for"}),p.jsx("select",{value:g,onChange:w=>f(Number(w.target.value)),className:"select text-xs w-full",children:PA.map(w=>p.jsx("option",{value:w.minutes,children:w.label},w.minutes))})]}),p.jsxs("div",{className:"block",children:[p.jsx("span",{className:"block text-2xs text-text-tertiary mb-1",children:"Visible to"}),p.jsx(LA,{values:m,options:(t==null?void 0:t.roles)??[],onChange:b,addLabel:"Add a role…",emptyText:"Everyone",ariaLabel:"Add a role"})]}),r.error&&p.jsx("p",{className:"text-xs text-status-error",children:r.error.message}),p.jsx("button",{onClick:_,disabled:!d.trim()||r.isPending,className:"btn-primary text-xs w-full disabled:opacity-50",children:r.isPending?"Publishing…":"Publish alert"})]}),v.length>0&&p.jsxs("div",{className:"mt-6",children:[p.jsx("p",{className:"text-2xs text-text-tertiary mb-2",children:"Active now — stacked as banner rows, newest first"}),p.jsx("div",{className:"space-y-1",children:v.map(w=>p.jsxs("div",{className:"flex items-start gap-2 py-1.5 border-b border-surface-border/40 last:border-b-0",children:[p.jsxs("span",{className:"min-w-0 flex-1",children:[p.jsx("span",{className:"block text-xs text-text-primary truncate",children:w.title??w.body.split(`
|
|
54
|
+
`)[0]}),p.jsxs("span",{className:"block text-2xs text-text-tertiary",children:["expires ",p.jsx(mv,{date:w.expires_at,format:"relative"})]})]}),p.jsx("button",{onClick:()=>s.mutate(w.id),disabled:s.isPending,className:"icon-link shrink-0 mt-0.5",title:"Remove for everyone","aria-label":`Remove ${w.title??"announcement"}`,children:p.jsx(Gt,{className:"w-3.5 h-3.5",strokeWidth:1.5})})]},w.id))})]})]})}const zA=[{id:null,label:"Your view",description:"Full access based on your account role",minTier:"operator"},{id:"admin",label:"Admin",description:"Pace Board + identity management",minTier:"superadmin"},{id:"engineer",label:"Engineer",description:"Work queue + identity management",minTier:"admin"},{id:"operator",label:"Operator",description:"Escalation queue only",minTier:"engineer"}],IA=["operator","engineer","admin","superadmin"];function Pg(i){return IA.indexOf(i)}function $A(i,t){return Pg(i)>=Pg(t)}function HA({onClose:i}){var de,Oe,oe,je,Se,Ne,We;const{isSuperAdmin:t,hasRoleType:r,hasRole:s}=Ft(),{data:l}=Wn(),c=Hd(),d=!!((de=l==null?void 0:l.ai)!=null&&de.enabled),y=Xb(),g=y!==null?y:d,[f,m]=j.useState(g),b=(Oe=l==null?void 0:l.features)==null?void 0:Oe.graphWorkflows,v=b==null,[_,w]=j.useState(b===!0||v&&Jb()),S=!!((oe=l==null?void 0:l.features)!=null&&oe.scanCodes),M=Qb(),[B,U]=j.useState(M!==null?M:S),re=t?"superadmin":r("admin")?"admin":s("engineer")?"engineer":"operator",ce=((je=l==null?void 0:l.branding)==null?void 0:je.appName)??"LongTail",C=(Se=l==null?void 0:l.environment)==null?void 0:Se.longTailVersion,P=(Ne=l==null?void 0:l.environment)==null?void 0:Ne.hotmeshVersion,ie=(We=l==null?void 0:l.environment)==null?void 0:We.nodeEnv;j.useEffect(()=>{const Ae=ct=>{ct.key==="Escape"&&i()};return document.addEventListener("keydown",Ae),()=>document.removeEventListener("keydown",Ae)},[i]);const X=zA.filter(Ae=>$A(re,Ae.minTier)),L=X.length>1,G=re!=="operator",W=[...L?[{id:"viewas",label:"View As",icon:fw}]:[],{id:"features",label:"Features",icon:hw},...G?[{id:"alerts",label:"Alerts",icon:dw}]:[]],[J,he]=j.useState(W[0].id),xe=Ae=>{Ae===null?xd():iO(Ae)},Te=()=>{const Ae=!f;m(Ae),Ae===d?rO():nO(Ae),window.location.reload()},Y=()=>{const Ae=!_;w(Ae),sO(Ae),window.location.reload()},ae=()=>{const Ae=!B;U(Ae),Ae===S?oO():aO(Ae),window.location.reload()};return p.jsx("div",{className:"fixed inset-0 z-[100] bg-surface-sunken/75 backdrop-blur-sm flex items-center justify-center",onClick:i,children:p.jsxs("div",{className:"relative w-[440px] max-h-[85vh] overflow-y-auto bg-surface-raised px-12 py-10",onClick:Ae=>Ae.stopPropagation(),children:[p.jsx("button",{onClick:i,className:"absolute top-4 right-4 text-text-quaternary hover:text-text-secondary transition-colors p-1","aria-label":"Close",children:p.jsx(Gt,{className:"w-4 h-4",strokeWidth:1.5})}),p.jsxs("div",{className:"flex flex-col items-center gap-3 pb-8",children:[p.jsx("span",{className:"logo-mark block w-20 h-20 opacity-50",style:{"--logo-url":`url(${Nt}/logo512.png)`}}),p.jsxs("div",{className:"text-center",children:[p.jsx("p",{className:"text-2xl font-light text-text-primary tracking-[0.12em]",children:ce}),C&&p.jsxs("p",{className:"mt-1 text-2xs text-text-tertiary",children:["v",C,P&&p.jsxs(p.Fragment,{children:[" · HotMesh v",P]}),ie&&ie!=="production"&&p.jsx("span",{className:"ml-1 text-status-warning",children:ie})]})]})]}),p.jsx("hr",{className:"border-surface-border/50 mb-6"}),W.length>1&&p.jsx("div",{className:"flex items-center justify-center gap-2 mb-8",role:"tablist",children:W.map(Ae=>{const ct=J===Ae.id;return p.jsxs("button",{role:"tab","aria-selected":ct,onClick:()=>he(Ae.id),title:Ae.label,className:`flex flex-col items-center gap-1.5 px-5 py-2.5 rounded-lg transition-colors ${ct?"bg-accent/10 text-accent":"text-text-tertiary hover:text-text-secondary hover:bg-surface-hover"}`,children:[p.jsx(Ae.icon,{className:"w-5 h-5",strokeWidth:1.5,...ct?{fill:"currentColor",fillOpacity:.15}:{}}),p.jsx("span",{className:"text-2xs font-medium",children:Ae.label})]},Ae.id)})}),J==="viewas"&&L&&p.jsxs("div",{className:"space-y-1",children:[p.jsx("p",{className:"text-2xs font-medium uppercase tracking-widest text-text-tertiary mb-4",children:"View As"}),X.map(Ae=>{const ct=c===Ae.id,At=Ae.id===null?`Your view · ${re}`:Ae.label;return p.jsxs("button",{onClick:()=>xe(Ae.id),className:"w-full text-left flex items-start gap-3 py-2.5 px-1 group",children:[p.jsx("span",{className:`mt-0.5 w-4 h-4 rounded-full border shrink-0 flex items-center justify-center transition-colors ${ct?"border-accent bg-accent":"border-surface-border group-hover:border-accent/60"}`,children:ct&&p.jsx("span",{className:"w-1.5 h-1.5 rounded-full bg-text-inverse"})}),p.jsxs("span",{children:[p.jsx("span",{className:`block text-sm font-medium transition-colors ${ct?"text-accent":"text-text-primary group-hover:text-accent"}`,children:At}),p.jsx("span",{className:"block text-xs text-text-secondary mt-0.5",children:Ae.description})]})]},String(Ae.id))})]}),J==="features"&&p.jsxs("div",{children:[p.jsx("p",{className:"text-2xs font-medium uppercase tracking-widest text-text-tertiary mb-4",children:"Features"}),p.jsxs("button",{onClick:Te,className:"w-full text-left flex items-center justify-between py-2.5 px-1 group",children:[p.jsxs("span",{children:[p.jsx("span",{className:"block text-sm font-medium text-text-primary group-hover:text-accent transition-colors",children:"AI features"}),p.jsx("span",{className:"block text-xs text-text-secondary mt-0.5",children:f?"Enabled — AI assist, agent labels, bulk AI actions":"Hidden — automation labels, no AI surfaces"})]}),p.jsx("span",{className:`shrink-0 ml-4 w-9 h-5 rounded-full transition-colors flex items-center px-0.5 ${f?"bg-accent":"bg-surface-border"}`,children:p.jsx("span",{className:`w-4 h-4 rounded-full bg-text-inverse shadow-sm transition-transform ${f?"translate-x-4":"translate-x-0"}`})})]}),v&&p.jsxs("button",{onClick:Y,className:"w-full text-left flex items-center justify-between py-2.5 px-1 group",children:[p.jsxs("span",{children:[p.jsx("span",{className:"block text-sm font-medium text-text-primary group-hover:text-accent transition-colors",children:"Graph workflows"}),p.jsx("span",{className:"block text-xs text-text-secondary mt-0.5",children:_?"Visible — Graph section shown in Orchestrate sidebar":"Hidden — use Procedural workflows instead"})]}),p.jsx("span",{className:`shrink-0 ml-4 w-9 h-5 rounded-full transition-colors flex items-center px-0.5 ${_?"bg-accent":"bg-surface-border"}`,children:p.jsx("span",{className:`w-4 h-4 rounded-full bg-text-inverse shadow-sm transition-transform ${_?"translate-x-4":"translate-x-0"}`})})]}),p.jsxs("button",{onClick:ae,className:"w-full text-left flex items-center justify-between py-2.5 px-1 group",children:[p.jsxs("span",{children:[p.jsx("span",{className:"block text-sm font-medium text-text-primary group-hover:text-accent transition-colors",children:"Scan input"}),p.jsx("span",{className:"block text-xs text-text-secondary mt-0.5",children:B?"Enabled — header scan affordance, panel, and keyboard-wedge capture":"Hidden — the deployment opts in with features.scanCodes"})]}),p.jsx("span",{className:`shrink-0 ml-4 w-9 h-5 rounded-full transition-colors flex items-center px-0.5 ${B?"bg-accent":"bg-surface-border"}`,children:p.jsx("span",{className:`w-4 h-4 rounded-full bg-text-inverse shadow-sm transition-transform ${B?"translate-x-4":"translate-x-0"}`})})]})]}),J==="alerts"&&G&&p.jsx(UA,{}),p.jsx("hr",{className:"border-surface-border/50 mt-8"}),p.jsx("p",{className:"mt-4 text-2xs text-text-quaternary text-center",children:"Esc or click outside to close"})]})})}const pv=[{id:"violet",label:"Violet",swatch:"#7B3BE0"},{id:"red",label:"Brick",swatch:"#DC382D"},{id:"green",label:"Emerald",swatch:"#059669"},{id:"blue",label:"Electric",swatch:"#2563EB"},{id:"rose",label:"Raspberry",swatch:"#D6246E"},{id:"orange",label:"Harvest",swatch:"#E85D04"}],Ug="blue",yv="lt.theme";let gv=[];function GA(i){const t=new Set(pv.map(s=>s.id)),r=new Set;gv=i.filter(s=>!(s!=null&&s.id)||t.has(s.id)||r.has(s.id)?!1:(r.add(s.id),!0))}function FA(){return[...pv,...gv]}function bv(){try{return localStorage.getItem(yv)||Ug}catch{return Ug}}function vv(i){document.documentElement.dataset.theme=i}function VA(i){try{localStorage.setItem(yv,i)}catch{}vv(i)}const xv=j.createContext(null);function YA(){const i=j.useContext(xv);if(!i)throw new Error("useActingIdentity must be used within ActingIdentityProvider");return i}function KA({children:i}){const[t,r]=j.useState(null),s=j.useRef(t);s.current=t,j.useEffect(()=>{if(!(t!=null&&t.expiresAt))return;const g=new Date(t.expiresAt).getTime()-Date.now();if(g<=0){r(null);return}const f=setTimeout(()=>r(null),g);return()=>clearTimeout(f)},[t]);const l=j.useCallback(g=>{var m;if(!g.actingToken||!g.actor)return null;const f=((m=s.current)==null?void 0:m.actingToken)??null;return r({actingToken:g.actingToken,actorId:g.actor.id,displayName:g.actor.displayName,expiresAt:g.expiresAt??null}),f},[]),c=j.useCallback(()=>r(null),[]);j.useEffect(()=>(Ky(()=>{var g;return((g=s.current)==null?void 0:g.actingToken)??null}),Xy(c),()=>{Ky(null),Xy(null)}),[c]);const d=j.useCallback(()=>{var f;const g=(f=s.current)==null?void 0:f.expiresAt;return g?Math.max(0,Math.floor((new Date(g).getTime()-Date.now())/1e3)):0},[]),y=j.useMemo(()=>({identity:t,prime:l,clear:c,remainingSeconds:d}),[t,l,c,d]);return p.jsx(xv.Provider,{value:y,children:i})}const Yc={maxKeyGapMs:500,terminators:["Enter","Tab"],minLength:6,autoFireQuietMs:300,autoFireMaxAvgKeyMs:50},_v="lt_scan_wedge_config";function wv(){try{const i=localStorage.getItem(_v);return i?{...Yc,...JSON.parse(i)}:Yc}catch{return Yc}}function XA(i){const t={...wv(),...i};return localStorage.setItem(_v,JSON.stringify(t)),t}const JA=[/[1-9][0-9]:[0-9]:[a-zA-Z0-9._-]+$/,/[1-9][0-9]{7,}$/];function zg(i){let t=null;for(const r of JA){const s=i.match(r);s&&(!t||s[0].length>t.length)&&(t=s[0])}return t}const QA=new Set(["Shift","CapsLock"]),Ql={suppress:!1,emit:null};function ZA(i=Yc){let t={buffer:"",times:[],lastKeyMs:0};function r(){t={buffer:"",times:[],lastKeyMs:0}}function s(d){const{key:y,timeMs:g,hasModifier:f,isRepeat:m}=d;if(QA.has(y))return Ql;if(i.terminators.includes(y)){const S=zg(t.buffer);return r(),S&&S.length>=i.minLength?{suppress:!0,emit:S,consumedLength:S.length}:Ql}if(f||m||y.length!==1)return r(),Ql;const b=g-t.lastKeyMs,v=t.lastKeyMs>0&&b<=i.maxKeyGapMs,_=(v?t.buffer+y:y).slice(-128),w=(v?[...t.times,g]:[g]).slice(-128);return t={buffer:_,times:w,lastKeyMs:g},Ql}function l(){return{buffer:t.buffer}}function c(){const d=zg(t.buffer);if(!d||d.length<i.minLength)return null;const y=t.times.slice(-d.length);return y.length<2||(y[y.length-1]-y[0])/(y.length-1)>i.autoFireMaxAvgKeyMs?null:{code:d,consumedLength:d.length}}return{step:s,reset:r,snapshot:l,pendingAutoFire:c}}function WA(){const i=document.activeElement;return i instanceof HTMLInputElement?["text","search","tel","url","email","password","number"].includes(i.type)?i:null:i instanceof HTMLTextAreaElement?i:null}function ej(i,t,r){var c;const s=i instanceof HTMLInputElement?HTMLInputElement.prototype:HTMLTextAreaElement.prototype,l=(c=Object.getOwnPropertyDescriptor(s,"value"))==null?void 0:c.set;l?l.call(i,t):i.value=t;try{i.setSelectionRange(r,r)}catch{}i.dispatchEvent(new Event("input",{bubbles:!0}))}function Ig(i){if(i<=0)return;const t=WA();if(!t)return;const r=t.selectionStart??t.value.length,s=Math.max(0,r-i);ej(t,t.value.slice(0,s)+t.value.slice(r),s)}function tj({active:i,wedgeConfig:t,diagnosticsOn:r,onScan:s,onDiag:l}){const c=j.useRef({diagnosticsOn:r,onScan:s,onDiag:l});c.current={diagnosticsOn:r,onScan:s,onDiag:l};const d=j.useRef(0),y=j.useRef(0);j.useEffect(()=>{if(!i)return;const g=ZA(t);let f=null;const m=()=>{f&&(clearTimeout(f),f=null)},b=(w,S,M)=>{S&&Ig(S),c.current.diagnosticsOn&&(console.debug("[scan]",M),c.current.onDiag({seq:++d.current,key:"(quiet)",code:"",deltaMs:0,buffer:"",note:M})),c.current.onScan(w)},v=()=>{m(),g.pendingAutoFire()&&(f=setTimeout(()=>{f=null;const w=g.pendingAutoFire();w&&(g.reset(),b(w.code,w.consumedLength,`capture → ${w.code} (quiet period — no suffix)`))},t.autoFireQuietMs))},_=w=>{const S=g.snapshot().buffer,{suppress:M,emit:B,consumedLength:U}=g.step({key:w.key,timeMs:w.timeStamp,hasModifier:w.ctrlKey||w.metaKey||w.altKey,isRepeat:w.repeat});if(M&&(w.preventDefault(),w.stopPropagation()),c.current.diagnosticsOn){const re=g.snapshot().buffer,ce=t.terminators.includes(w.key),C=B?`capture → ${B}`:ce?`terminator — no code tail in "${S.slice(-24)}"`:re===S?S?"neutral (chord key)":"ignored":re===""?"reset (edit/chord/non-printable)":re.length<=1&&S.length>1?"gap — new episode":"accumulate",P=y.current?Math.round(w.timeStamp-y.current):0,ie={seq:++d.current,key:w.key,code:w.code!==w.key?w.code:"",deltaMs:P,buffer:re.slice(-24),note:C};console.debug("[scan]",ie.key,ie.code,`${ie.deltaMs}ms`,ie.note),c.current.onDiag(ie)}y.current=w.timeStamp,B?(m(),U&&Ig(U),c.current.onScan(B)):v()};return window.addEventListener("keydown",_,{capture:!0}),()=>{m(),window.removeEventListener("keydown",_,{capture:!0})}},[i,t])}const ze={EXECUTED:"executed",MATCHED_LIST:"matched_list",CONFIRM_REQUIRED:"confirm_required",NO_MATCH_FALLBACK:"no_match_fallback",UNCONFIGURED:"unconfigured",INVALID_CODE:"invalid_code",FORBIDDEN:"forbidden",CONFLICT:"conflict",IDENTITY_PRIMED:"identity_primed",IDENTITY_UNKNOWN:"identity_unknown",NOT_PRIMED:"not_primed",CHOICES:"choices"},Zl={SHOW_DETAIL:"show-detail",SHOW_LIST:"show-list",CLAIM:"claim",CLAIM_SHOW_DETAIL:"claim-show-detail",RELEASE:"release",RESOLVE:"resolve",ESCALATE:"escalate",CANCEL:"cancel",PRESENT:"present"},s3={ACTION:"action",IDENTITY:"identity"};function nj(i,t){return _e("/scan-codes/execute",{method:"POST",body:JSON.stringify({code:i,...t!=null&&t.actingToken?{actingToken:t.actingToken}:{},...t!=null&&t.previousActingToken?{previousActingToken:t.previousActingToken}:{}})})}function a3(i){return _e("/scan-codes/execute-choice",{method:"POST",body:JSON.stringify(i)})}function o3(){return lt({queryKey:["scan-schemes"],queryFn:()=>_e("/scan-codes/schemes")})}function l3(i){return lt({queryKey:["scan-schemes",i],queryFn:()=>_e(`/scan-codes/schemes/${i}`),enabled:i!=null})}function c3(){const i=rt();return mt({mutationFn:t=>_e(`/scan-codes/schemes/${t.version}`,{method:"PUT",body:JSON.stringify(t)}),onSuccess:()=>i.invalidateQueries({queryKey:["scan-schemes"]})})}function u3(){const i=rt();return mt({mutationFn:t=>_e(`/scan-codes/schemes/${t}`,{method:"DELETE"}),onSuccess:()=>i.invalidateQueries({queryKey:["scan-schemes"]})})}function f3(){const i=rt();return mt({mutationFn:t=>_e(`/scan-codes/schemes/${t.scheme_version}/actions/${t.category}`,{method:"PUT",body:JSON.stringify(t)}),onSuccess:(t,r)=>i.invalidateQueries({queryKey:["scan-schemes",r.scheme_version]})})}function h3(){const i=rt();return mt({mutationFn:t=>_e(`/scan-codes/schemes/${t.scheme_version}/actions/${t.category}`,{method:"DELETE"}),onSuccess:(t,r)=>i.invalidateQueries({queryKey:["scan-schemes",r.scheme_version]})})}const $g={KEYBOARD_WEDGE:"keyboard-wedge",MANUAL:"manual"},Ms=i=>{if(i)try{return JSON.parse(i)}catch{return}},zi=i=>i==null||Array.isArray(i)&&i.length===0||typeof i=="object"&&!Array.isArray(i)&&Object.keys(i).length===0;function rj(i){const t={},r=Ms(i.get("facets"));zi(r)||(t.facets=r);const s=Ms(i.get("block"));zi(s)||(t.block=s);const l=Ms(i.get("range"));zi(l)||(t.range=l);const c=Ms(i.get("exists"));zi(c)||(t.exists=c);const d=Ms(i.get("roles"));zi(d)||(t.roles=d);const y=Ms(i.get("orderBy"));zi(y)||(t.orderBy=y),i.get("available")!=null&&(t.available=i.get("available")==="true");const g=i.get("jeopardy");return(g==="1"||g==="true")&&(t.jeopardy=!0),t}function d3(i,t){const r=(s,l)=>zi(l)?i.delete(s):i.set(s,JSON.stringify(l));r("facets",t.facets),r("block",t.block),r("range",t.range),r("exists",t.exists),r("roles",t.roles),r("orderBy",t.orderBy),t.available==null?i.delete("available"):i.set("available",String(t.available)),t.jeopardy===!0?i.set("jeopardy","1"):i.delete("jeopardy")}const Hg=`&status=all&view=table&orderBy=${encodeURIComponent(JSON.stringify([{field:"created_at",direction:"desc"}]))}`;function Sv(i,t){const r={};for(const[l,c]of Object.entries(i))r[l]=typeof c=="object"&&c!==null?JSON.stringify(c):c;const s=encodeURIComponent(JSON.stringify(r));return t?`/escalations/available?role=${encodeURIComponent(t)}&facets=${s}${Hg}`:`/escalations/available?facets=${s}${Hg}`}function m3(i,t,r){return Sv({[i]:t},r)}function p3(i){var t,r,s;return Object.keys(i.facets??{}).length+(((t=i.block)==null?void 0:t.length)??0)+(((r=i.range)==null?void 0:r.length)??0)+(((s=i.exists)==null?void 0:s.length)??0)+(i.available!=null?1:0)+(i.jeopardy===!0?1:0)}function Ev(){var r;const{data:i}=Wn(),t=Qb();return t!==null?t:!!((r=i==null?void 0:i.features)!=null&&r.scanCodes)}const Ov=j.createContext(null);function Av(){const i=j.useContext(Ov);if(!i)throw new Error("useScanInput must be used within ScanInputProvider");return i}const ij="scanPendingAction",sj="scanChoices",aj="/scan/station";function oj({children:i}){const{user:t}=Ft(),r=Ev(),s=yo(),{identity:l,prime:c}=YA(),[d,y]=j.useState(null),[g,f]=j.useState(!1),[m,b]=j.useState(()=>wv()),[v,_]=j.useState([]),[w,S]=j.useState(!1),M=j.useCallback(L=>{var W;const{outcome:G}=L;if(G===ze.CONFIRM_REQUIRED&&L.pendingAction)return s(`/escalations/detail/${L.pendingAction.escalationId}`,{state:{[ij]:L.pendingAction}}),!0;if(G===ze.EXECUTED&&L.escalation){const J=[Zl.SHOW_DETAIL,Zl.CLAIM_SHOW_DETAIL,Zl.CLAIM,Zl.ESCALATE];return L.verb&&J.includes(L.verb)?(s(`/escalations/detail/${L.escalation.id}`),!0):!1}if(G===ze.MATCHED_LIST&&L.listQuery){const{targetFacet:J,target:he,roles:xe}=L.listQuery;return s(Sv({[J]:he},(xe==null?void 0:xe[0])??null)),!0}return G===ze.CHOICES&&L.choices?(s(aj,{state:{[sj]:L}}),!0):G===ze.NO_MATCH_FALLBACK&&((W=L.fallback)!=null&&W.route)?(s(L.fallback.route),!0):!1},[s]),B=j.useRef(null);B.current=(l==null?void 0:l.actingToken)??null;const U=j.useRef(null),re=j.useRef(null),ce=j.useCallback(L=>{re.current=L},[]),C=j.useCallback(async(L,G=$g.MANUAL)=>{var J;if((J=re.current)!=null&&J.call(re,L))return;f(!0);const W=Date.now();try{const he=await nj(L,{actingToken:B.current??void 0,previousActingToken:U.current??void 0});he.outcome===ze.IDENTITY_PRIMED&&(U.current=c(he));const xe=M(he);y({code:L,source:G,at:W,response:he,error:null,navigated:xe})}catch(he){y({code:L,source:G,at:W,response:null,error:he.message,navigated:!1})}finally{f(!1)}},[M,c]),P=j.useRef(C);P.current=C,tj({active:!!t&&r,wedgeConfig:m,diagnosticsOn:w,onScan:L=>void P.current(L,$g.KEYBOARD_WEDGE),onDiag:L=>_(G=>[...G.slice(-29),L])});const ie=j.useCallback(L=>{b(XA(L))},[]),X=j.useMemo(()=>({submitCode:C,setCodeInterceptor:ce,lastResult:d,busy:g,wedgeConfig:m,updateWedgeConfig:ie,diagnostics:v,diagnosticsOn:w,setDiagnosticsOn:S}),[C,ce,d,g,m,ie,v,w]);return p.jsx(Ov.Provider,{value:X,children:i})}var Wl={},Ja={},ec={},Gg;function gn(){if(Gg)return ec;Gg=1,Object.defineProperty(ec,"__esModule",{value:!0});function i(r,s){if(!(r instanceof s))throw new TypeError("Cannot call a class as a function")}var t=function r(s,l){i(this,r),this.data=s,this.text=l.text||s,this.options=l};return ec.default=t,ec}var Fg;function lj(){if(Fg)return Ja;Fg=1,Object.defineProperty(Ja,"__esModule",{value:!0}),Ja.CODE39=void 0;var i=(function(){function S(M,B){for(var U=0;U<B.length;U++){var re=B[U];re.enumerable=re.enumerable||!1,re.configurable=!0,"value"in re&&(re.writable=!0),Object.defineProperty(M,re.key,re)}}return function(M,B,U){return B&&S(M.prototype,B),U&&S(M,U),M}})(),t=gn(),r=s(t);function s(S){return S&&S.__esModule?S:{default:S}}function l(S,M){if(!(S instanceof M))throw new TypeError("Cannot call a class as a function")}function c(S,M){if(!S)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return M&&(typeof M=="object"||typeof M=="function")?M:S}function d(S,M){if(typeof M!="function"&&M!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof M);S.prototype=Object.create(M&&M.prototype,{constructor:{value:S,enumerable:!1,writable:!0,configurable:!0}}),M&&(Object.setPrototypeOf?Object.setPrototypeOf(S,M):S.__proto__=M)}var y=(function(S){d(M,S);function M(B,U){return l(this,M),B=B.toUpperCase(),U.mod43&&(B+=v(w(B))),c(this,(M.__proto__||Object.getPrototypeOf(M)).call(this,B,U))}return i(M,[{key:"encode",value:function(){for(var U=m("*"),re=0;re<this.data.length;re++)U+=m(this.data[re])+"0";return U+=m("*"),{data:U,text:this.text}}},{key:"valid",value:function(){return this.data.search(/^[0-9A-Z\-\.\ \$\/\+\%]+$/)!==-1}}]),M})(r.default),g=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","-","."," ","$","/","+","%","*"],f=[20957,29783,23639,30485,20951,29813,23669,20855,29789,23645,29975,23831,30533,22295,30149,24005,21623,29981,23837,22301,30023,23879,30545,22343,30161,24017,21959,30065,23921,22385,29015,18263,29141,17879,29045,18293,17783,29021,18269,17477,17489,17681,20753,35770];function m(S){return b(_(S))}function b(S){return f[S].toString(2)}function v(S){return g[S]}function _(S){return g.indexOf(S)}function w(S){for(var M=0,B=0;B<S.length;B++)M+=_(S[B]);return M=M%43,M}return Ja.CODE39=y,Ja}var Pn={},tc={},nc={},dt={},Vg;function xo(){if(Vg)return dt;Vg=1,Object.defineProperty(dt,"__esModule",{value:!0});var i;function t(g,f,m){return f in g?Object.defineProperty(g,f,{value:m,enumerable:!0,configurable:!0,writable:!0}):g[f]=m,g}var r=dt.SET_A=0,s=dt.SET_B=1,l=dt.SET_C=2;dt.SHIFT=98;var c=dt.START_A=103,d=dt.START_B=104,y=dt.START_C=105;return dt.MODULO=103,dt.STOP=106,dt.FNC1=207,dt.SET_BY_CODE=(i={},t(i,c,r),t(i,d,s),t(i,y,l),i),dt.SWAP={101:r,100:s,99:l},dt.A_START_CHAR="Ð",dt.B_START_CHAR="Ñ",dt.C_START_CHAR="Ò",dt.A_CHARS="[\0-_È-Ï]",dt.B_CHARS="[ -È-Ï]",dt.C_CHARS="(Ï*[0-9]{2}Ï*)",dt.BARS=[11011001100,11001101100,11001100110,10010011e3,10010001100,10001001100,10011001e3,10011000100,10001100100,11001001e3,11001000100,11000100100,10110011100,10011011100,10011001110,10111001100,10011101100,10011100110,11001110010,11001011100,11001001110,11011100100,11001110100,11101101110,11101001100,11100101100,11100100110,11101100100,11100110100,11100110010,11011011e3,11011000110,11000110110,10100011e3,10001011e3,10001000110,10110001e3,10001101e3,10001100010,11010001e3,11000101e3,11000100010,10110111e3,10110001110,10001101110,10111011e3,10111000110,10001110110,11101110110,11010001110,11000101110,11011101e3,11011100010,11011101110,11101011e3,11101000110,11100010110,11101101e3,11101100010,11100011010,11101111010,11001000010,11110001010,1010011e4,10100001100,1001011e4,10010000110,10000101100,10000100110,1011001e4,10110000100,1001101e4,10011000010,10000110100,10000110010,11000010010,1100101e4,11110111010,11000010100,10001111010,10100111100,10010111100,10010011110,10111100100,10011110100,10011110010,11110100100,11110010100,11110010010,11011011110,11011110110,11110110110,10101111e3,10100011110,10001011110,10111101e3,10111100010,11110101e3,11110100010,10111011110,10111101110,11101011110,11110101110,11010000100,1101001e4,11010011100,1100011101011],dt}var Yg;function pu(){if(Yg)return nc;Yg=1,Object.defineProperty(nc,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=gn(),r=l(t),s=xo();function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function y(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var g=(function(f){y(m,f);function m(b,v){c(this,m);var _=d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,b.substring(1),v));return _.bytes=b.split("").map(function(w){return w.charCodeAt(0)}),_}return i(m,[{key:"valid",value:function(){return/^[\x00-\x7F\xC8-\xD3]+$/.test(this.data)}},{key:"encode",value:function(){var v=this.bytes,_=v.shift()-105,w=s.SET_BY_CODE[_];if(w===void 0)throw new RangeError("The encoding does not start with a start character.");this.shouldEncodeAsEan128()===!0&&v.unshift(s.FNC1);var S=m.next(v,1,w);return{text:this.text===this.data?this.text.replace(/[^\x20-\x7E]/g,""):this.text,data:m.getBar(_)+S.result+m.getBar((S.checksum+_)%s.MODULO)+m.getBar(s.STOP)}}},{key:"shouldEncodeAsEan128",value:function(){var v=this.options.ean128||!1;return typeof v=="string"&&(v=v.toLowerCase()==="true"),v}}],[{key:"getBar",value:function(v){return s.BARS[v]?s.BARS[v].toString():""}},{key:"correctIndex",value:function(v,_){if(_===s.SET_A){var w=v.shift();return w<32?w+64:w-32}else return _===s.SET_B?v.shift()-32:(v.shift()-48)*10+v.shift()-48}},{key:"next",value:function(v,_,w){if(!v.length)return{result:"",checksum:0};var S=void 0,M=void 0;if(v[0]>=200){M=v.shift()-105;var B=s.SWAP[M];B!==void 0?S=m.next(v,_+1,B):((w===s.SET_A||w===s.SET_B)&&M===s.SHIFT&&(v[0]=w===s.SET_A?v[0]>95?v[0]-96:v[0]:v[0]<32?v[0]+96:v[0]),S=m.next(v,_+1,w))}else M=m.correctIndex(v,w),S=m.next(v,_+1,w);var U=m.getBar(M),re=M*_;return{result:U+S.result,checksum:re+S.checksum}}}]),m})(r.default);return nc.default=g,nc}var rc={},Kg;function cj(){if(Kg)return rc;Kg=1,Object.defineProperty(rc,"__esModule",{value:!0});var i=xo(),t=function(y){return y.match(new RegExp("^"+i.A_CHARS+"*"))[0].length},r=function(y){return y.match(new RegExp("^"+i.B_CHARS+"*"))[0].length},s=function(y){return y.match(new RegExp("^"+i.C_CHARS+"*"))[0]};function l(d,y){var g=y?i.A_CHARS:i.B_CHARS,f=d.match(new RegExp("^("+g+"+?)(([0-9]{2}){2,})([^0-9]|$)"));if(f)return f[1]+"Ì"+c(d.substring(f[1].length));var m=d.match(new RegExp("^"+g+"+"))[0];return m.length===d.length?d:m+String.fromCharCode(y?205:206)+l(d.substring(m.length),!y)}function c(d){var y=s(d),g=y.length;if(g===d.length)return d;d=d.substring(g);var f=t(d)>=r(d);return y+String.fromCharCode(f?206:205)+l(d,f)}return rc.default=function(d){var y=void 0,g=s(d).length;if(g>=2)y=i.C_START_CHAR+c(d);else{var f=t(d)>r(d);y=(f?i.A_START_CHAR:i.B_START_CHAR)+l(d,f)}return y.replace(/[\xCD\xCE]([^])[\xCD\xCE]/,function(m,b){return"Ë"+b})},rc}var Xg;function uj(){if(Xg)return tc;Xg=1,Object.defineProperty(tc,"__esModule",{value:!0});var i=pu(),t=l(i),r=cj(),s=l(r);function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function y(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var g=(function(f){y(m,f);function m(b,v){if(c(this,m),/^[\x00-\x7F\xC8-\xD3]+$/.test(b))var _=d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,(0,s.default)(b),v));else var _=d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,b,v));return d(_)}return m})(t.default);return tc.default=g,tc}var ic={},Jg;function fj(){if(Jg)return ic;Jg=1,Object.defineProperty(ic,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=pu(),r=l(t),s=xo();function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function y(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var g=(function(f){y(m,f);function m(b,v){return c(this,m),d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,s.A_START_CHAR+b,v))}return i(m,[{key:"valid",value:function(){return new RegExp("^"+s.A_CHARS+"+$").test(this.data)}}]),m})(r.default);return ic.default=g,ic}var sc={},Qg;function hj(){if(Qg)return sc;Qg=1,Object.defineProperty(sc,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=pu(),r=l(t),s=xo();function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function y(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var g=(function(f){y(m,f);function m(b,v){return c(this,m),d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,s.B_START_CHAR+b,v))}return i(m,[{key:"valid",value:function(){return new RegExp("^"+s.B_CHARS+"+$").test(this.data)}}]),m})(r.default);return sc.default=g,sc}var ac={},Zg;function dj(){if(Zg)return ac;Zg=1,Object.defineProperty(ac,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=pu(),r=l(t),s=xo();function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function y(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var g=(function(f){y(m,f);function m(b,v){return c(this,m),d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,s.C_START_CHAR+b,v))}return i(m,[{key:"valid",value:function(){return new RegExp("^"+s.C_CHARS+"+$").test(this.data)}}]),m})(r.default);return ac.default=g,ac}var Wg;function mj(){if(Wg)return Pn;Wg=1,Object.defineProperty(Pn,"__esModule",{value:!0}),Pn.CODE128C=Pn.CODE128B=Pn.CODE128A=Pn.CODE128=void 0;var i=uj(),t=g(i),r=fj(),s=g(r),l=hj(),c=g(l),d=dj(),y=g(d);function g(f){return f&&f.__esModule?f:{default:f}}return Pn.CODE128=t.default,Pn.CODE128A=s.default,Pn.CODE128B=c.default,Pn.CODE128C=y.default,Pn}var zt={},oc={},_r={},e1;function _o(){return e1||(e1=1,Object.defineProperty(_r,"__esModule",{value:!0}),_r.SIDE_BIN="101",_r.MIDDLE_BIN="01010",_r.BINARIES={L:["0001101","0011001","0010011","0111101","0100011","0110001","0101111","0111011","0110111","0001011"],G:["0100111","0110011","0011011","0100001","0011101","0111001","0000101","0010001","0001001","0010111"],R:["1110010","1100110","1101100","1000010","1011100","1001110","1010000","1000100","1001000","1110100"],O:["0001101","0011001","0010011","0111101","0100011","0110001","0101111","0111011","0110111","0001011"],E:["0100111","0110011","0011011","0100001","0011101","0111001","0000101","0010001","0001001","0010111"]},_r.EAN2_STRUCTURE=["LL","LG","GL","GG"],_r.EAN5_STRUCTURE=["GGLLL","GLGLL","GLLGL","GLLLG","LGGLL","LLGGL","LLLGG","LGLGL","LGLLG","LLGLG"],_r.EAN13_STRUCTURE=["LLLLLL","LLGLGG","LLGGLG","LLGGGL","LGLLGG","LGGLLG","LGGGLL","LGLGLG","LGLGGL","LGGLGL"]),_r}var lc={},cc={},t1;function wo(){if(t1)return cc;t1=1,Object.defineProperty(cc,"__esModule",{value:!0});var i=_o(),t=function(s,l,c){var d=s.split("").map(function(g,f){return i.BINARIES[l[f]]}).map(function(g,f){return g?g[s[f]]:""});if(c){var y=s.length-1;d=d.map(function(g,f){return f<y?g+c:g})}return d.join("")};return cc.default=t,cc}var n1;function jv(){if(n1)return lc;n1=1,Object.defineProperty(lc,"__esModule",{value:!0});var i=(function(){function b(v,_){for(var w=0;w<_.length;w++){var S=_[w];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(v,S.key,S)}}return function(v,_,w){return _&&b(v.prototype,_),w&&b(v,w),v}})(),t=_o(),r=wo(),s=d(r),l=gn(),c=d(l);function d(b){return b&&b.__esModule?b:{default:b}}function y(b,v){if(!(b instanceof v))throw new TypeError("Cannot call a class as a function")}function g(b,v){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:b}function f(b,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);b.prototype=Object.create(v&&v.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(b,v):b.__proto__=v)}var m=(function(b){f(v,b);function v(_,w){y(this,v);var S=g(this,(v.__proto__||Object.getPrototypeOf(v)).call(this,_,w));return S.fontSize=!w.flat&&w.fontSize>w.width*10?w.width*10:w.fontSize,S.guardHeight=w.height+S.fontSize/2+w.textMargin,S}return i(v,[{key:"encode",value:function(){return this.options.flat?this.encodeFlat():this.encodeGuarded()}},{key:"leftText",value:function(w,S){return this.text.substr(w,S)}},{key:"leftEncode",value:function(w,S){return(0,s.default)(w,S)}},{key:"rightText",value:function(w,S){return this.text.substr(w,S)}},{key:"rightEncode",value:function(w,S){return(0,s.default)(w,S)}},{key:"encodeGuarded",value:function(){var w={fontSize:this.fontSize},S={height:this.guardHeight};return[{data:t.SIDE_BIN,options:S},{data:this.leftEncode(),text:this.leftText(),options:w},{data:t.MIDDLE_BIN,options:S},{data:this.rightEncode(),text:this.rightText(),options:w},{data:t.SIDE_BIN,options:S}]}},{key:"encodeFlat",value:function(){var w=[t.SIDE_BIN,this.leftEncode(),t.MIDDLE_BIN,this.rightEncode(),t.SIDE_BIN];return{data:w.join(""),text:this.text}}}]),v})(c.default);return lc.default=m,lc}var r1;function pj(){if(r1)return oc;r1=1,Object.defineProperty(oc,"__esModule",{value:!0});var i=(function(){function b(v,_){for(var w=0;w<_.length;w++){var S=_[w];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(v,S.key,S)}}return function(v,_,w){return _&&b(v.prototype,_),w&&b(v,w),v}})(),t=function b(v,_,w){v===null&&(v=Function.prototype);var S=Object.getOwnPropertyDescriptor(v,_);if(S===void 0){var M=Object.getPrototypeOf(v);return M===null?void 0:b(M,_,w)}else{if("value"in S)return S.value;var B=S.get;return B===void 0?void 0:B.call(w)}},r=_o(),s=jv(),l=c(s);function c(b){return b&&b.__esModule?b:{default:b}}function d(b,v){if(!(b instanceof v))throw new TypeError("Cannot call a class as a function")}function y(b,v){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:b}function g(b,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);b.prototype=Object.create(v&&v.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(b,v):b.__proto__=v)}var f=function(v){var _=v.substr(0,12).split("").map(function(w){return+w}).reduce(function(w,S,M){return M%2?w+S*3:w+S},0);return(10-_%10)%10},m=(function(b){g(v,b);function v(_,w){d(this,v),_.search(/^[0-9]{12}$/)!==-1&&(_+=f(_));var S=y(this,(v.__proto__||Object.getPrototypeOf(v)).call(this,_,w));return S.lastChar=w.lastChar,S}return i(v,[{key:"valid",value:function(){return this.data.search(/^[0-9]{13}$/)!==-1&&+this.data[12]===f(this.data)}},{key:"leftText",value:function(){return t(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"leftText",this).call(this,1,6)}},{key:"leftEncode",value:function(){var w=this.data.substr(1,6),S=r.EAN13_STRUCTURE[this.data[0]];return t(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"leftEncode",this).call(this,w,S)}},{key:"rightText",value:function(){return t(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"rightText",this).call(this,7,6)}},{key:"rightEncode",value:function(){var w=this.data.substr(7,6);return t(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"rightEncode",this).call(this,w,"RRRRRR")}},{key:"encodeGuarded",value:function(){var w=t(v.prototype.__proto__||Object.getPrototypeOf(v.prototype),"encodeGuarded",this).call(this);return this.options.displayValue&&(w.unshift({data:"000000000000",text:this.text.substr(0,1),options:{textAlign:"left",fontSize:this.fontSize}}),this.options.lastChar&&(w.push({data:"00"}),w.push({data:"00000",text:this.options.lastChar,options:{fontSize:this.fontSize}}))),w}}]),v})(l.default);return oc.default=m,oc}var uc={},i1;function yj(){if(i1)return uc;i1=1,Object.defineProperty(uc,"__esModule",{value:!0});var i=(function(){function m(b,v){for(var _=0;_<v.length;_++){var w=v[_];w.enumerable=w.enumerable||!1,w.configurable=!0,"value"in w&&(w.writable=!0),Object.defineProperty(b,w.key,w)}}return function(b,v,_){return v&&m(b.prototype,v),_&&m(b,_),b}})(),t=function m(b,v,_){b===null&&(b=Function.prototype);var w=Object.getOwnPropertyDescriptor(b,v);if(w===void 0){var S=Object.getPrototypeOf(b);return S===null?void 0:m(S,v,_)}else{if("value"in w)return w.value;var M=w.get;return M===void 0?void 0:M.call(_)}},r=jv(),s=l(r);function l(m){return m&&m.__esModule?m:{default:m}}function c(m,b){if(!(m instanceof b))throw new TypeError("Cannot call a class as a function")}function d(m,b){if(!m)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return b&&(typeof b=="object"||typeof b=="function")?b:m}function y(m,b){if(typeof b!="function"&&b!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof b);m.prototype=Object.create(b&&b.prototype,{constructor:{value:m,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(m,b):m.__proto__=b)}var g=function(b){var v=b.substr(0,7).split("").map(function(_){return+_}).reduce(function(_,w,S){return S%2?_+w:_+w*3},0);return(10-v%10)%10},f=(function(m){y(b,m);function b(v,_){return c(this,b),v.search(/^[0-9]{7}$/)!==-1&&(v+=g(v)),d(this,(b.__proto__||Object.getPrototypeOf(b)).call(this,v,_))}return i(b,[{key:"valid",value:function(){return this.data.search(/^[0-9]{8}$/)!==-1&&+this.data[7]===g(this.data)}},{key:"leftText",value:function(){return t(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"leftText",this).call(this,0,4)}},{key:"leftEncode",value:function(){var _=this.data.substr(0,4);return t(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"leftEncode",this).call(this,_,"LLLL")}},{key:"rightText",value:function(){return t(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"rightText",this).call(this,4,4)}},{key:"rightEncode",value:function(){var _=this.data.substr(4,4);return t(b.prototype.__proto__||Object.getPrototypeOf(b.prototype),"rightEncode",this).call(this,_,"RRRR")}}]),b})(s.default);return uc.default=f,uc}var fc={},s1;function gj(){if(s1)return fc;s1=1,Object.defineProperty(fc,"__esModule",{value:!0});var i=(function(){function v(_,w){for(var S=0;S<w.length;S++){var M=w[S];M.enumerable=M.enumerable||!1,M.configurable=!0,"value"in M&&(M.writable=!0),Object.defineProperty(_,M.key,M)}}return function(_,w,S){return w&&v(_.prototype,w),S&&v(_,S),_}})(),t=_o(),r=wo(),s=d(r),l=gn(),c=d(l);function d(v){return v&&v.__esModule?v:{default:v}}function y(v,_){if(!(v instanceof _))throw new TypeError("Cannot call a class as a function")}function g(v,_){if(!v)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return _&&(typeof _=="object"||typeof _=="function")?_:v}function f(v,_){if(typeof _!="function"&&_!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof _);v.prototype=Object.create(_&&_.prototype,{constructor:{value:v,enumerable:!1,writable:!0,configurable:!0}}),_&&(Object.setPrototypeOf?Object.setPrototypeOf(v,_):v.__proto__=_)}var m=function(_){var w=_.split("").map(function(S){return+S}).reduce(function(S,M,B){return B%2?S+M*9:S+M*3},0);return w%10},b=(function(v){f(_,v);function _(w,S){return y(this,_),g(this,(_.__proto__||Object.getPrototypeOf(_)).call(this,w,S))}return i(_,[{key:"valid",value:function(){return this.data.search(/^[0-9]{5}$/)!==-1}},{key:"encode",value:function(){var S=t.EAN5_STRUCTURE[m(this.data)];return{data:"1011"+(0,s.default)(this.data,S,"01"),text:this.text}}}]),_})(c.default);return fc.default=b,fc}var hc={},a1;function bj(){if(a1)return hc;a1=1,Object.defineProperty(hc,"__esModule",{value:!0});var i=(function(){function b(v,_){for(var w=0;w<_.length;w++){var S=_[w];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(v,S.key,S)}}return function(v,_,w){return _&&b(v.prototype,_),w&&b(v,w),v}})(),t=_o(),r=wo(),s=d(r),l=gn(),c=d(l);function d(b){return b&&b.__esModule?b:{default:b}}function y(b,v){if(!(b instanceof v))throw new TypeError("Cannot call a class as a function")}function g(b,v){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:b}function f(b,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);b.prototype=Object.create(v&&v.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(b,v):b.__proto__=v)}var m=(function(b){f(v,b);function v(_,w){return y(this,v),g(this,(v.__proto__||Object.getPrototypeOf(v)).call(this,_,w))}return i(v,[{key:"valid",value:function(){return this.data.search(/^[0-9]{2}$/)!==-1}},{key:"encode",value:function(){var w=t.EAN2_STRUCTURE[parseInt(this.data)%4];return{data:"1011"+(0,s.default)(this.data,w,"01"),text:this.text}}}]),v})(c.default);return hc.default=m,hc}var Qa={},o1;function Tv(){if(o1)return Qa;o1=1,Object.defineProperty(Qa,"__esModule",{value:!0});var i=(function(){function b(v,_){for(var w=0;w<_.length;w++){var S=_[w];S.enumerable=S.enumerable||!1,S.configurable=!0,"value"in S&&(S.writable=!0),Object.defineProperty(v,S.key,S)}}return function(v,_,w){return _&&b(v.prototype,_),w&&b(v,w),v}})();Qa.checksum=m;var t=wo(),r=c(t),s=gn(),l=c(s);function c(b){return b&&b.__esModule?b:{default:b}}function d(b,v){if(!(b instanceof v))throw new TypeError("Cannot call a class as a function")}function y(b,v){if(!b)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return v&&(typeof v=="object"||typeof v=="function")?v:b}function g(b,v){if(typeof v!="function"&&v!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof v);b.prototype=Object.create(v&&v.prototype,{constructor:{value:b,enumerable:!1,writable:!0,configurable:!0}}),v&&(Object.setPrototypeOf?Object.setPrototypeOf(b,v):b.__proto__=v)}var f=(function(b){g(v,b);function v(_,w){d(this,v),_.search(/^[0-9]{11}$/)!==-1&&(_+=m(_));var S=y(this,(v.__proto__||Object.getPrototypeOf(v)).call(this,_,w));return S.displayValue=w.displayValue,w.fontSize>w.width*10?S.fontSize=w.width*10:S.fontSize=w.fontSize,S.guardHeight=w.height+S.fontSize/2+w.textMargin,S}return i(v,[{key:"valid",value:function(){return this.data.search(/^[0-9]{12}$/)!==-1&&this.data[11]==m(this.data)}},{key:"encode",value:function(){return this.options.flat?this.flatEncoding():this.guardedEncoding()}},{key:"flatEncoding",value:function(){var w="";return w+="101",w+=(0,r.default)(this.data.substr(0,6),"LLLLLL"),w+="01010",w+=(0,r.default)(this.data.substr(6,6),"RRRRRR"),w+="101",{data:w,text:this.text}}},{key:"guardedEncoding",value:function(){var w=[];return this.displayValue&&w.push({data:"00000000",text:this.text.substr(0,1),options:{textAlign:"left",fontSize:this.fontSize}}),w.push({data:"101"+(0,r.default)(this.data[0],"L"),options:{height:this.guardHeight}}),w.push({data:(0,r.default)(this.data.substr(1,5),"LLLLL"),text:this.text.substr(1,5),options:{fontSize:this.fontSize}}),w.push({data:"01010",options:{height:this.guardHeight}}),w.push({data:(0,r.default)(this.data.substr(6,5),"RRRRR"),text:this.text.substr(6,5),options:{fontSize:this.fontSize}}),w.push({data:(0,r.default)(this.data[11],"R")+"101",options:{height:this.guardHeight}}),this.displayValue&&w.push({data:"00000000",text:this.text.substr(11,1),options:{textAlign:"right",fontSize:this.fontSize}}),w}}]),v})(l.default);function m(b){var v=0,_;for(_=1;_<11;_+=2)v+=parseInt(b[_]);for(_=0;_<11;_+=2)v+=parseInt(b[_])*3;return(10-v%10)%10}return Qa.default=f,Qa}var dc={},l1;function vj(){if(l1)return dc;l1=1,Object.defineProperty(dc,"__esModule",{value:!0});var i=(function(){function w(S,M){for(var B=0;B<M.length;B++){var U=M[B];U.enumerable=U.enumerable||!1,U.configurable=!0,"value"in U&&(U.writable=!0),Object.defineProperty(S,U.key,U)}}return function(S,M,B){return M&&w(S.prototype,M),B&&w(S,B),S}})(),t=wo(),r=d(t),s=gn(),l=d(s),c=Tv();function d(w){return w&&w.__esModule?w:{default:w}}function y(w,S){if(!(w instanceof S))throw new TypeError("Cannot call a class as a function")}function g(w,S){if(!w)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return S&&(typeof S=="object"||typeof S=="function")?S:w}function f(w,S){if(typeof S!="function"&&S!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof S);w.prototype=Object.create(S&&S.prototype,{constructor:{value:w,enumerable:!1,writable:!0,configurable:!0}}),S&&(Object.setPrototypeOf?Object.setPrototypeOf(w,S):w.__proto__=S)}var m=["XX00000XXX","XX10000XXX","XX20000XXX","XXX00000XX","XXXX00000X","XXXXX00005","XXXXX00006","XXXXX00007","XXXXX00008","XXXXX00009"],b=[["EEEOOO","OOOEEE"],["EEOEOO","OOEOEE"],["EEOOEO","OOEEOE"],["EEOOOE","OOEEEO"],["EOEEOO","OEOOEE"],["EOOEEO","OEEOOE"],["EOOOEE","OEEEOO"],["EOEOEO","OEOEOE"],["EOEOOE","OEOEEO"],["EOOEOE","OEEOEO"]],v=(function(w){f(S,w);function S(M,B){y(this,S);var U=g(this,(S.__proto__||Object.getPrototypeOf(S)).call(this,M,B));if(U.isValid=!1,M.search(/^[0-9]{6}$/)!==-1)U.middleDigits=M,U.upcA=_(M,"0"),U.text=B.text||""+U.upcA[0]+M+U.upcA[U.upcA.length-1],U.isValid=!0;else if(M.search(/^[01][0-9]{7}$/)!==-1)if(U.middleDigits=M.substring(1,M.length-1),U.upcA=_(U.middleDigits,M[0]),U.upcA[U.upcA.length-1]===M[M.length-1])U.isValid=!0;else return g(U);else return g(U);return U.displayValue=B.displayValue,B.fontSize>B.width*10?U.fontSize=B.width*10:U.fontSize=B.fontSize,U.guardHeight=B.height+U.fontSize/2+B.textMargin,U}return i(S,[{key:"valid",value:function(){return this.isValid}},{key:"encode",value:function(){return this.options.flat?this.flatEncoding():this.guardedEncoding()}},{key:"flatEncoding",value:function(){var B="";return B+="101",B+=this.encodeMiddleDigits(),B+="010101",{data:B,text:this.text}}},{key:"guardedEncoding",value:function(){var B=[];return this.displayValue&&B.push({data:"00000000",text:this.text[0],options:{textAlign:"left",fontSize:this.fontSize}}),B.push({data:"101",options:{height:this.guardHeight}}),B.push({data:this.encodeMiddleDigits(),text:this.text.substring(1,7),options:{fontSize:this.fontSize}}),B.push({data:"010101",options:{height:this.guardHeight}}),this.displayValue&&B.push({data:"00000000",text:this.text[7],options:{textAlign:"right",fontSize:this.fontSize}}),B}},{key:"encodeMiddleDigits",value:function(){var B=this.upcA[0],U=this.upcA[this.upcA.length-1],re=b[parseInt(U)][parseInt(B)];return(0,r.default)(this.middleDigits,re)}}]),S})(l.default);function _(w,S){for(var M=parseInt(w[w.length-1]),B=m[M],U="",re=0,ce=0;ce<B.length;ce++){var C=B[ce];C==="X"?U+=w[re++]:U+=C}return U=""+S+U,""+U+(0,c.checksum)(U)}return dc.default=v,dc}var c1;function xj(){if(c1)return zt;c1=1,Object.defineProperty(zt,"__esModule",{value:!0}),zt.UPCE=zt.UPC=zt.EAN2=zt.EAN5=zt.EAN8=zt.EAN13=void 0;var i=pj(),t=v(i),r=yj(),s=v(r),l=gj(),c=v(l),d=bj(),y=v(d),g=Tv(),f=v(g),m=vj(),b=v(m);function v(_){return _&&_.__esModule?_:{default:_}}return zt.EAN13=t.default,zt.EAN8=s.default,zt.EAN5=c.default,zt.EAN2=y.default,zt.UPC=f.default,zt.UPCE=b.default,zt}var Li={},mc={},Rs={},u1;function _j(){return u1||(u1=1,Object.defineProperty(Rs,"__esModule",{value:!0}),Rs.START_BIN="1010",Rs.END_BIN="11101",Rs.BINARIES=["00110","10001","01001","11000","00101","10100","01100","00011","10010","01010"]),Rs}var f1;function Nv(){if(f1)return mc;f1=1,Object.defineProperty(mc,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=_j(),r=gn(),s=l(r);function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function y(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var g=(function(f){y(m,f);function m(){return c(this,m),d(this,(m.__proto__||Object.getPrototypeOf(m)).apply(this,arguments))}return i(m,[{key:"valid",value:function(){return this.data.search(/^([0-9]{2})+$/)!==-1}},{key:"encode",value:function(){var v=this,_=this.data.match(/.{2}/g).map(function(w){return v.encodePair(w)}).join("");return{data:t.START_BIN+_+t.END_BIN,text:this.text}}},{key:"encodePair",value:function(v){var _=t.BINARIES[v[1]];return t.BINARIES[v[0]].split("").map(function(w,S){return(w==="1"?"111":"1")+(_[S]==="1"?"000":"0")}).join("")}}]),m})(s.default);return mc.default=g,mc}var pc={},h1;function wj(){if(h1)return pc;h1=1,Object.defineProperty(pc,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=Nv(),r=s(t);function s(f){return f&&f.__esModule?f:{default:f}}function l(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function c(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function d(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var y=function(m){var b=m.substr(0,13).split("").map(function(v){return parseInt(v,10)}).reduce(function(v,_,w){return v+_*(3-w%2*2)},0);return Math.ceil(b/10)*10-b},g=(function(f){d(m,f);function m(b,v){return l(this,m),b.search(/^[0-9]{13}$/)!==-1&&(b+=y(b)),c(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,b,v))}return i(m,[{key:"valid",value:function(){return this.data.search(/^[0-9]{14}$/)!==-1&&+this.data[13]===y(this.data)}}]),m})(r.default);return pc.default=g,pc}var d1;function Sj(){if(d1)return Li;d1=1,Object.defineProperty(Li,"__esModule",{value:!0}),Li.ITF14=Li.ITF=void 0;var i=Nv(),t=l(i),r=wj(),s=l(r);function l(c){return c&&c.__esModule?c:{default:c}}return Li.ITF=t.default,Li.ITF14=s.default,Li}var ln={},yc={},m1;function So(){if(m1)return yc;m1=1,Object.defineProperty(yc,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=gn(),r=s(t);function s(f){return f&&f.__esModule?f:{default:f}}function l(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function c(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function d(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var y=(function(f){d(m,f);function m(b,v){return l(this,m),c(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,b,v))}return i(m,[{key:"encode",value:function(){for(var v="110",_=0;_<this.data.length;_++){var w=parseInt(this.data[_]),S=w.toString(2);S=g(S,4-S.length);for(var M=0;M<S.length;M++)v+=S[M]=="0"?"100":"110"}return v+="1001",{data:v,text:this.text}}},{key:"valid",value:function(){return this.data.search(/^[0-9]+$/)!==-1}}]),m})(r.default);function g(f,m){for(var b=0;b<m;b++)f="0"+f;return f}return yc.default=y,yc}var gc={},Za={},p1;function yu(){if(p1)return Za;p1=1,Object.defineProperty(Za,"__esModule",{value:!0}),Za.mod10=i,Za.mod11=t;function i(r){for(var s=0,l=0;l<r.length;l++){var c=parseInt(r[l]);(l+r.length)%2===0?s+=c:s+=c*2%10+Math.floor(c*2/10)}return(10-s%10)%10}function t(r){for(var s=0,l=[2,3,4,5,6,7],c=0;c<r.length;c++){var d=parseInt(r[r.length-1-c]);s+=l[c%l.length]*d}return(11-s%11)%11}return Za}var y1;function Ej(){if(y1)return gc;y1=1,Object.defineProperty(gc,"__esModule",{value:!0});var i=So(),t=s(i),r=yu();function s(g){return g&&g.__esModule?g:{default:g}}function l(g,f){if(!(g instanceof f))throw new TypeError("Cannot call a class as a function")}function c(g,f){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:g}function d(g,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);g.prototype=Object.create(f&&f.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(g,f):g.__proto__=f)}var y=(function(g){d(f,g);function f(m,b){return l(this,f),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m+(0,r.mod10)(m),b))}return f})(t.default);return gc.default=y,gc}var bc={},g1;function Oj(){if(g1)return bc;g1=1,Object.defineProperty(bc,"__esModule",{value:!0});var i=So(),t=s(i),r=yu();function s(g){return g&&g.__esModule?g:{default:g}}function l(g,f){if(!(g instanceof f))throw new TypeError("Cannot call a class as a function")}function c(g,f){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:g}function d(g,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);g.prototype=Object.create(f&&f.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(g,f):g.__proto__=f)}var y=(function(g){d(f,g);function f(m,b){return l(this,f),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m+(0,r.mod11)(m),b))}return f})(t.default);return bc.default=y,bc}var vc={},b1;function Aj(){if(b1)return vc;b1=1,Object.defineProperty(vc,"__esModule",{value:!0});var i=So(),t=s(i),r=yu();function s(g){return g&&g.__esModule?g:{default:g}}function l(g,f){if(!(g instanceof f))throw new TypeError("Cannot call a class as a function")}function c(g,f){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:g}function d(g,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);g.prototype=Object.create(f&&f.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(g,f):g.__proto__=f)}var y=(function(g){d(f,g);function f(m,b){return l(this,f),m+=(0,r.mod10)(m),m+=(0,r.mod10)(m),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m,b))}return f})(t.default);return vc.default=y,vc}var xc={},v1;function jj(){if(v1)return xc;v1=1,Object.defineProperty(xc,"__esModule",{value:!0});var i=So(),t=s(i),r=yu();function s(g){return g&&g.__esModule?g:{default:g}}function l(g,f){if(!(g instanceof f))throw new TypeError("Cannot call a class as a function")}function c(g,f){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:g}function d(g,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);g.prototype=Object.create(f&&f.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(g,f):g.__proto__=f)}var y=(function(g){d(f,g);function f(m,b){return l(this,f),m+=(0,r.mod11)(m),m+=(0,r.mod10)(m),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m,b))}return f})(t.default);return xc.default=y,xc}var x1;function Tj(){if(x1)return ln;x1=1,Object.defineProperty(ln,"__esModule",{value:!0}),ln.MSI1110=ln.MSI1010=ln.MSI11=ln.MSI10=ln.MSI=void 0;var i=So(),t=m(i),r=Ej(),s=m(r),l=Oj(),c=m(l),d=Aj(),y=m(d),g=jj(),f=m(g);function m(b){return b&&b.__esModule?b:{default:b}}return ln.MSI=t.default,ln.MSI10=s.default,ln.MSI11=c.default,ln.MSI1010=y.default,ln.MSI1110=f.default,ln}var Wa={},_1;function Nj(){if(_1)return Wa;_1=1,Object.defineProperty(Wa,"__esModule",{value:!0}),Wa.pharmacode=void 0;var i=(function(){function g(f,m){for(var b=0;b<m.length;b++){var v=m[b];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(f,v.key,v)}}return function(f,m,b){return m&&g(f.prototype,m),b&&g(f,b),f}})(),t=gn(),r=s(t);function s(g){return g&&g.__esModule?g:{default:g}}function l(g,f){if(!(g instanceof f))throw new TypeError("Cannot call a class as a function")}function c(g,f){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:g}function d(g,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);g.prototype=Object.create(f&&f.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(g,f):g.__proto__=f)}var y=(function(g){d(f,g);function f(m,b){l(this,f);var v=c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m,b));return v.number=parseInt(m,10),v}return i(f,[{key:"encode",value:function(){for(var b=this.number,v="";!isNaN(b)&&b!=0;)b%2===0?(v="11100"+v,b=(b-2)/2):(v="100"+v,b=(b-1)/2);return v=v.slice(0,-2),{data:v,text:this.text}}},{key:"valid",value:function(){return this.number>=3&&this.number<=131070}}]),f})(r.default);return Wa.pharmacode=y,Wa}var eo={},w1;function kj(){if(w1)return eo;w1=1,Object.defineProperty(eo,"__esModule",{value:!0}),eo.codabar=void 0;var i=(function(){function g(f,m){for(var b=0;b<m.length;b++){var v=m[b];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(f,v.key,v)}}return function(f,m,b){return m&&g(f.prototype,m),b&&g(f,b),f}})(),t=gn(),r=s(t);function s(g){return g&&g.__esModule?g:{default:g}}function l(g,f){if(!(g instanceof f))throw new TypeError("Cannot call a class as a function")}function c(g,f){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:g}function d(g,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);g.prototype=Object.create(f&&f.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(g,f):g.__proto__=f)}var y=(function(g){d(f,g);function f(m,b){l(this,f),m.search(/^[0-9\-\$\:\.\+\/]+$/)===0&&(m="A"+m+"A");var v=c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m.toUpperCase(),b));return v.text=v.options.text||v.text.replace(/[A-D]/g,""),v}return i(f,[{key:"valid",value:function(){return this.data.search(/^[A-D][0-9\-\$\:\.\+\/]+[A-D]$/)!==-1}},{key:"encode",value:function(){for(var b=[],v=this.getEncodings(),_=0;_<this.data.length;_++)b.push(v[this.data.charAt(_)]),_!==this.data.length-1&&b.push("0");return{text:this.text,data:b.join("")}}},{key:"getEncodings",value:function(){return{0:"101010011",1:"101011001",2:"101001011",3:"110010101",4:"101101001",5:"110101001",6:"100101011",7:"100101101",8:"100110101",9:"110100101","-":"101001101",$:"101100101",":":"1101011011","/":"1101101011",".":"1101101101","+":"1011011011",A:"1011001001",B:"1001001011",C:"1010010011",D:"1010011001"}}}]),f})(r.default);return eo.codabar=y,eo}var Pi={},_c={},Ds={},S1;function Cj(){return S1||(S1=1,Object.defineProperty(Ds,"__esModule",{value:!0}),Ds.SYMBOLS=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","-","."," ","$","/","+","%","($)","(%)","(/)","(+)","ÿ"],Ds.BINARIES=["100010100","101001000","101000100","101000010","100101000","100100100","100100010","101010000","100010010","100001010","110101000","110100100","110100010","110010100","110010010","110001010","101101000","101100100","101100010","100110100","100011010","101011000","101001100","101000110","100101100","100010110","110110100","110110010","110101100","110100110","110010110","110011010","101101100","101100110","100110110","100111010","100101110","111010100","111010010","111001010","101101110","101110110","110101110","100100110","111011010","111010110","100110010","101011110"],Ds.MULTI_SYMBOLS={"\0":["(%)","U"],"":["($)","A"],"":["($)","B"],"":["($)","C"],"":["($)","D"],"":["($)","E"],"":["($)","F"],"\x07":["($)","G"],"\b":["($)","H"]," ":["($)","I"],"\n":["($)","J"],"\v":["($)","K"],"\f":["($)","L"],"\r":["($)","M"],"":["($)","N"],"":["($)","O"],"":["($)","P"],"":["($)","Q"],"":["($)","R"],"":["($)","S"],"":["($)","T"],"":["($)","U"],"":["($)","V"],"":["($)","W"],"":["($)","X"],"":["($)","Y"],"":["($)","Z"],"\x1B":["(%)","A"],"":["(%)","B"],"":["(%)","C"],"":["(%)","D"],"":["(%)","E"],"!":["(/)","A"],'"':["(/)","B"],"#":["(/)","C"],"&":["(/)","F"],"'":["(/)","G"],"(":["(/)","H"],")":["(/)","I"],"*":["(/)","J"],",":["(/)","L"],":":["(/)","Z"],";":["(%)","F"],"<":["(%)","G"],"=":["(%)","H"],">":["(%)","I"],"?":["(%)","J"],"@":["(%)","V"],"[":["(%)","K"],"\\":["(%)","L"],"]":["(%)","M"],"^":["(%)","N"],_:["(%)","O"],"`":["(%)","W"],a:["(+)","A"],b:["(+)","B"],c:["(+)","C"],d:["(+)","D"],e:["(+)","E"],f:["(+)","F"],g:["(+)","G"],h:["(+)","H"],i:["(+)","I"],j:["(+)","J"],k:["(+)","K"],l:["(+)","L"],m:["(+)","M"],n:["(+)","N"],o:["(+)","O"],p:["(+)","P"],q:["(+)","Q"],r:["(+)","R"],s:["(+)","S"],t:["(+)","T"],u:["(+)","U"],v:["(+)","V"],w:["(+)","W"],x:["(+)","X"],y:["(+)","Y"],z:["(+)","Z"],"{":["(%)","P"],"|":["(%)","Q"],"}":["(%)","R"],"~":["(%)","S"],"":["(%)","T"]}),Ds}var E1;function kv(){if(E1)return _c;E1=1,Object.defineProperty(_c,"__esModule",{value:!0});var i=(function(){function f(m,b){for(var v=0;v<b.length;v++){var _=b[v];_.enumerable=_.enumerable||!1,_.configurable=!0,"value"in _&&(_.writable=!0),Object.defineProperty(m,_.key,_)}}return function(m,b,v){return b&&f(m.prototype,b),v&&f(m,v),m}})(),t=Cj(),r=gn(),s=l(r);function l(f){return f&&f.__esModule?f:{default:f}}function c(f,m){if(!(f instanceof m))throw new TypeError("Cannot call a class as a function")}function d(f,m){if(!f)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return m&&(typeof m=="object"||typeof m=="function")?m:f}function y(f,m){if(typeof m!="function"&&m!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof m);f.prototype=Object.create(m&&m.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}),m&&(Object.setPrototypeOf?Object.setPrototypeOf(f,m):f.__proto__=m)}var g=(function(f){y(m,f);function m(b,v){return c(this,m),d(this,(m.__proto__||Object.getPrototypeOf(m)).call(this,b,v))}return i(m,[{key:"valid",value:function(){return/^[0-9A-Z\-. $/+%]+$/.test(this.data)}},{key:"encode",value:function(){var v=this.data.split("").flatMap(function(M){return t.MULTI_SYMBOLS[M]||M}),_=v.map(function(M){return m.getEncoding(M)}).join(""),w=m.checksum(v,20),S=m.checksum(v.concat(w),15);return{text:this.text,data:m.getEncoding("ÿ")+_+m.getEncoding(w)+m.getEncoding(S)+m.getEncoding("ÿ")+"1"}}}],[{key:"getEncoding",value:function(v){return t.BINARIES[m.symbolValue(v)]}},{key:"getSymbol",value:function(v){return t.SYMBOLS[v]}},{key:"symbolValue",value:function(v){return t.SYMBOLS.indexOf(v)}},{key:"checksum",value:function(v,_){var w=v.slice().reverse().reduce(function(S,M,B){var U=B%_+1;return S+m.symbolValue(M)*U},0);return m.getSymbol(w%47)}}]),m})(s.default);return _c.default=g,_c}var wc={},O1;function Mj(){if(O1)return wc;O1=1,Object.defineProperty(wc,"__esModule",{value:!0});var i=(function(){function g(f,m){for(var b=0;b<m.length;b++){var v=m[b];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(f,v.key,v)}}return function(f,m,b){return m&&g(f.prototype,m),b&&g(f,b),f}})(),t=kv(),r=s(t);function s(g){return g&&g.__esModule?g:{default:g}}function l(g,f){if(!(g instanceof f))throw new TypeError("Cannot call a class as a function")}function c(g,f){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:g}function d(g,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);g.prototype=Object.create(f&&f.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(g,f):g.__proto__=f)}var y=(function(g){d(f,g);function f(m,b){return l(this,f),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m,b))}return i(f,[{key:"valid",value:function(){return/^[\x00-\x7f]+$/.test(this.data)}}]),f})(r.default);return wc.default=y,wc}var A1;function Rj(){if(A1)return Pi;A1=1,Object.defineProperty(Pi,"__esModule",{value:!0}),Pi.CODE93FullASCII=Pi.CODE93=void 0;var i=kv(),t=l(i),r=Mj(),s=l(r);function l(c){return c&&c.__esModule?c:{default:c}}return Pi.CODE93=t.default,Pi.CODE93FullASCII=s.default,Pi}var to={},j1;function Dj(){if(j1)return to;j1=1,Object.defineProperty(to,"__esModule",{value:!0}),to.GenericBarcode=void 0;var i=(function(){function g(f,m){for(var b=0;b<m.length;b++){var v=m[b];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(f,v.key,v)}}return function(f,m,b){return m&&g(f.prototype,m),b&&g(f,b),f}})(),t=gn(),r=s(t);function s(g){return g&&g.__esModule?g:{default:g}}function l(g,f){if(!(g instanceof f))throw new TypeError("Cannot call a class as a function")}function c(g,f){if(!g)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return f&&(typeof f=="object"||typeof f=="function")?f:g}function d(g,f){if(typeof f!="function"&&f!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof f);g.prototype=Object.create(f&&f.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}),f&&(Object.setPrototypeOf?Object.setPrototypeOf(g,f):g.__proto__=f)}var y=(function(g){d(f,g);function f(m,b){return l(this,f),c(this,(f.__proto__||Object.getPrototypeOf(f)).call(this,m,b))}return i(f,[{key:"encode",value:function(){return{data:"10101010101010101010101010101010101010101",text:this.text}}},{key:"valid",value:function(){return!0}}]),f})(r.default);return to.GenericBarcode=y,to}var T1;function qj(){if(T1)return Wl;T1=1,Object.defineProperty(Wl,"__esModule",{value:!0});var i=lj(),t=mj(),r=xj(),s=Sj(),l=Tj(),c=Nj(),d=kj(),y=Rj(),g=Dj();return Wl.default={CODE39:i.CODE39,CODE128:t.CODE128,CODE128A:t.CODE128A,CODE128B:t.CODE128B,CODE128C:t.CODE128C,EAN13:r.EAN13,EAN8:r.EAN8,EAN5:r.EAN5,EAN2:r.EAN2,UPC:r.UPC,UPCE:r.UPCE,ITF14:s.ITF14,ITF:s.ITF,MSI:l.MSI,MSI10:l.MSI10,MSI11:l.MSI11,MSI1010:l.MSI1010,MSI1110:l.MSI1110,pharmacode:c.pharmacode,codabar:d.codabar,CODE93:y.CODE93,CODE93FullASCII:y.CODE93FullASCII,GenericBarcode:g.GenericBarcode},Wl}var Sc={},N1;function gu(){if(N1)return Sc;N1=1,Object.defineProperty(Sc,"__esModule",{value:!0});var i=Object.assign||function(t){for(var r=1;r<arguments.length;r++){var s=arguments[r];for(var l in s)Object.prototype.hasOwnProperty.call(s,l)&&(t[l]=s[l])}return t};return Sc.default=function(t,r){return i({},t,r)},Sc}var Ec={},k1;function Bj(){if(k1)return Ec;k1=1,Object.defineProperty(Ec,"__esModule",{value:!0}),Ec.default=i;function i(t){var r=[];function s(l){if(Array.isArray(l))for(var c=0;c<l.length;c++)s(l[c]);else l.text=l.text||"",l.data=l.data||"",r.push(l)}return s(t),r}return Ec}var Oc={},C1;function Lj(){if(C1)return Oc;C1=1,Object.defineProperty(Oc,"__esModule",{value:!0}),Oc.default=i;function i(t){return t.marginTop=t.marginTop||t.margin,t.marginBottom=t.marginBottom||t.margin,t.marginRight=t.marginRight||t.margin,t.marginLeft=t.marginLeft||t.margin,t}return Oc}var Ac={},jc={},Tc={},M1;function Cv(){if(M1)return Tc;M1=1,Object.defineProperty(Tc,"__esModule",{value:!0}),Tc.default=i;function i(t){var r=["width","height","textMargin","fontSize","margin","marginTop","marginBottom","marginLeft","marginRight"];for(var s in r)r.hasOwnProperty(s)&&(s=r[s],typeof t[s]=="string"&&(t[s]=parseInt(t[s],10)));return typeof t.displayValue=="string"&&(t.displayValue=t.displayValue!="false"),t}return Tc}var Nc={},R1;function Mv(){if(R1)return Nc;R1=1,Object.defineProperty(Nc,"__esModule",{value:!0});var i={width:2,height:100,format:"auto",displayValue:!0,fontOptions:"",font:"monospace",text:void 0,textAlign:"center",textPosition:"bottom",textMargin:2,fontSize:20,background:"#ffffff",lineColor:"#000000",margin:10,marginTop:void 0,marginBottom:void 0,marginLeft:void 0,marginRight:void 0,valid:function(){}};return Nc.default=i,Nc}var D1;function Pj(){if(D1)return jc;D1=1,Object.defineProperty(jc,"__esModule",{value:!0});var i=Cv(),t=l(i),r=Mv(),s=l(r);function l(d){return d&&d.__esModule?d:{default:d}}function c(d){var y={};for(var g in s.default)s.default.hasOwnProperty(g)&&(d.hasAttribute("jsbarcode-"+g.toLowerCase())&&(y[g]=d.getAttribute("jsbarcode-"+g.toLowerCase())),d.hasAttribute("data-"+g.toLowerCase())&&(y[g]=d.getAttribute("data-"+g.toLowerCase())));return y.value=d.getAttribute("jsbarcode-value")||d.getAttribute("data-value"),y=(0,t.default)(y),y}return jc.default=c,jc}var kc={},Cc={},cn={},q1;function Rv(){if(q1)return cn;q1=1,Object.defineProperty(cn,"__esModule",{value:!0}),cn.getTotalWidthOfEncodings=cn.calculateEncodingAttributes=cn.getBarcodePadding=cn.getEncodingHeight=cn.getMaximumHeightOfEncodings=void 0;var i=gu(),t=r(i);function r(f){return f&&f.__esModule?f:{default:f}}function s(f,m){return m.height+(m.displayValue&&f.text.length>0?m.fontSize+m.textMargin:0)+m.marginTop+m.marginBottom}function l(f,m,b){if(b.displayValue&&m<f){if(b.textAlign=="center")return Math.floor((f-m)/2);if(b.textAlign=="left")return 0;if(b.textAlign=="right")return Math.floor(f-m)}return 0}function c(f,m,b){for(var v=0;v<f.length;v++){var _=f[v],w=(0,t.default)(m,_.options),S;w.displayValue?S=g(_.text,w,b):S=0;var M=_.data.length*w.width;_.width=Math.ceil(Math.max(S,M)),_.height=s(_,w),_.barcodePadding=l(S,M,w)}}function d(f){for(var m=0,b=0;b<f.length;b++)m+=f[b].width;return m}function y(f){for(var m=0,b=0;b<f.length;b++)f[b].height>m&&(m=f[b].height);return m}function g(f,m,b){var v;if(b)v=b;else if(typeof document<"u")v=document.createElement("canvas").getContext("2d");else return 0;v.font=m.fontOptions+" "+m.fontSize+"px "+m.font;var _=v.measureText(f);if(!_)return 0;var w=_.width;return w}return cn.getMaximumHeightOfEncodings=y,cn.getEncodingHeight=s,cn.getBarcodePadding=l,cn.calculateEncodingAttributes=c,cn.getTotalWidthOfEncodings=d,cn}var B1;function Uj(){if(B1)return Cc;B1=1,Object.defineProperty(Cc,"__esModule",{value:!0});var i=(function(){function y(g,f){for(var m=0;m<f.length;m++){var b=f[m];b.enumerable=b.enumerable||!1,b.configurable=!0,"value"in b&&(b.writable=!0),Object.defineProperty(g,b.key,b)}}return function(g,f,m){return f&&y(g.prototype,f),m&&y(g,m),g}})(),t=gu(),r=l(t),s=Rv();function l(y){return y&&y.__esModule?y:{default:y}}function c(y,g){if(!(y instanceof g))throw new TypeError("Cannot call a class as a function")}var d=(function(){function y(g,f,m){c(this,y),this.canvas=g,this.encodings=f,this.options=m}return i(y,[{key:"render",value:function(){if(!this.canvas.getContext)throw new Error("The browser does not support canvas.");this.prepareCanvas();for(var f=0;f<this.encodings.length;f++){var m=(0,r.default)(this.options,this.encodings[f].options);this.drawCanvasBarcode(m,this.encodings[f]),this.drawCanvasText(m,this.encodings[f]),this.moveCanvasDrawing(this.encodings[f])}this.restoreCanvas()}},{key:"prepareCanvas",value:function(){var f=this.canvas.getContext("2d");f.save(),(0,s.calculateEncodingAttributes)(this.encodings,this.options,f);var m=(0,s.getTotalWidthOfEncodings)(this.encodings),b=(0,s.getMaximumHeightOfEncodings)(this.encodings);this.canvas.width=m+this.options.marginLeft+this.options.marginRight,this.canvas.height=b,f.clearRect(0,0,this.canvas.width,this.canvas.height),this.options.background&&(f.fillStyle=this.options.background,f.fillRect(0,0,this.canvas.width,this.canvas.height)),f.translate(this.options.marginLeft,0)}},{key:"drawCanvasBarcode",value:function(f,m){var b=this.canvas.getContext("2d"),v=m.data,_;f.textPosition=="top"?_=f.marginTop+f.fontSize+f.textMargin:_=f.marginTop,b.fillStyle=f.lineColor;for(var w=0;w<v.length;w++){var S=w*f.width+m.barcodePadding;v[w]==="1"?b.fillRect(S,_,f.width,f.height):v[w]&&b.fillRect(S,_,f.width,f.height*v[w])}}},{key:"drawCanvasText",value:function(f,m){var b=this.canvas.getContext("2d"),v=f.fontOptions+" "+f.fontSize+"px "+f.font;if(f.displayValue){var _,w;f.textPosition=="top"?w=f.marginTop+f.fontSize-f.textMargin:w=f.height+f.textMargin+f.marginTop+f.fontSize,b.font=v,f.textAlign=="left"||m.barcodePadding>0?(_=0,b.textAlign="left"):f.textAlign=="right"?(_=m.width-1,b.textAlign="right"):(_=m.width/2,b.textAlign="center"),b.fillText(m.text,_,w)}}},{key:"moveCanvasDrawing",value:function(f){var m=this.canvas.getContext("2d");m.translate(f.width,0)}},{key:"restoreCanvas",value:function(){var f=this.canvas.getContext("2d");f.restore()}}]),y})();return Cc.default=d,Cc}var Mc={},L1;function zj(){if(L1)return Mc;L1=1,Object.defineProperty(Mc,"__esModule",{value:!0});var i=(function(){function g(f,m){for(var b=0;b<m.length;b++){var v=m[b];v.enumerable=v.enumerable||!1,v.configurable=!0,"value"in v&&(v.writable=!0),Object.defineProperty(f,v.key,v)}}return function(f,m,b){return m&&g(f.prototype,m),b&&g(f,b),f}})(),t=gu(),r=l(t),s=Rv();function l(g){return g&&g.__esModule?g:{default:g}}function c(g,f){if(!(g instanceof f))throw new TypeError("Cannot call a class as a function")}var d="http://www.w3.org/2000/svg",y=(function(){function g(f,m,b){c(this,g),this.svg=f,this.encodings=m,this.options=b,this.document=b.xmlDocument||document}return i(g,[{key:"render",value:function(){var m=this.options.marginLeft;this.prepareSVG();for(var b=0;b<this.encodings.length;b++){var v=this.encodings[b],_=(0,r.default)(this.options,v.options),w=this.createGroup(m,_.marginTop,this.svg);this.setGroupOptions(w,_),this.drawSvgBarcode(w,_,v),this.drawSVGText(w,_,v),m+=v.width}}},{key:"prepareSVG",value:function(){for(;this.svg.firstChild;)this.svg.removeChild(this.svg.firstChild);(0,s.calculateEncodingAttributes)(this.encodings,this.options);var m=(0,s.getTotalWidthOfEncodings)(this.encodings),b=(0,s.getMaximumHeightOfEncodings)(this.encodings),v=m+this.options.marginLeft+this.options.marginRight;this.setSvgAttributes(v,b),this.options.background&&this.drawRect(0,0,v,b,this.svg).setAttribute("fill",this.options.background)}},{key:"drawSvgBarcode",value:function(m,b,v){var _=v.data,w;b.textPosition=="top"?w=b.fontSize+b.textMargin:w=0;for(var S=0,M=0,B=0;B<_.length;B++)M=B*b.width+v.barcodePadding,_[B]==="1"?S++:S>0&&(this.drawRect(M-b.width*S,w,b.width*S,b.height,m),S=0);S>0&&this.drawRect(M-b.width*(S-1),w,b.width*S,b.height,m)}},{key:"drawSVGText",value:function(m,b,v){var _=this.document.createElementNS(d,"text");if(b.displayValue){var w,S;_.setAttribute("font-family",b.font),_.setAttribute("font-size",b.fontSize),b.fontOptions.includes("bold")&&_.setAttribute("font-weight","bold"),b.fontOptions.includes("italic")&&_.setAttribute("font-style","italic"),b.textPosition=="top"?S=b.fontSize-b.textMargin:S=b.height+b.textMargin+b.fontSize,b.textAlign=="left"||v.barcodePadding>0?(w=0,_.setAttribute("text-anchor","start")):b.textAlign=="right"?(w=v.width-1,_.setAttribute("text-anchor","end")):(w=v.width/2,_.setAttribute("text-anchor","middle")),_.setAttribute("x",w),_.setAttribute("y",S),_.appendChild(this.document.createTextNode(v.text)),m.appendChild(_)}}},{key:"setSvgAttributes",value:function(m,b){var v=this.svg;v.setAttribute("width",m+"px"),v.setAttribute("height",b+"px"),v.setAttribute("x","0px"),v.setAttribute("y","0px"),v.setAttribute("viewBox","0 0 "+m+" "+b),v.setAttribute("xmlns",d),v.setAttribute("version","1.1")}},{key:"createGroup",value:function(m,b,v){var _=this.document.createElementNS(d,"g");return _.setAttribute("transform","translate("+m+", "+b+")"),v.appendChild(_),_}},{key:"setGroupOptions",value:function(m,b){m.setAttribute("fill",b.lineColor)}},{key:"drawRect",value:function(m,b,v,_,w){var S=this.document.createElementNS(d,"rect");return S.setAttribute("x",m),S.setAttribute("y",b),S.setAttribute("width",v),S.setAttribute("height",_),w.appendChild(S),S}}]),g})();return Mc.default=y,Mc}var Rc={},P1;function Ij(){if(P1)return Rc;P1=1,Object.defineProperty(Rc,"__esModule",{value:!0});var i=(function(){function s(l,c){for(var d=0;d<c.length;d++){var y=c[d];y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty(l,y.key,y)}}return function(l,c,d){return c&&s(l.prototype,c),d&&s(l,d),l}})();function t(s,l){if(!(s instanceof l))throw new TypeError("Cannot call a class as a function")}var r=(function(){function s(l,c,d){t(this,s),this.object=l,this.encodings=c,this.options=d}return i(s,[{key:"render",value:function(){this.object.encodings=this.encodings}}]),s})();return Rc.default=r,Rc}var U1;function $j(){if(U1)return kc;U1=1,Object.defineProperty(kc,"__esModule",{value:!0});var i=Uj(),t=d(i),r=zj(),s=d(r),l=Ij(),c=d(l);function d(y){return y&&y.__esModule?y:{default:y}}return kc.default={CanvasRenderer:t.default,SVGRenderer:s.default,ObjectRenderer:c.default},kc}var qs={},z1;function Dv(){if(z1)return qs;z1=1,Object.defineProperty(qs,"__esModule",{value:!0});function i(d,y){if(!(d instanceof y))throw new TypeError("Cannot call a class as a function")}function t(d,y){if(!d)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return y&&(typeof y=="object"||typeof y=="function")?y:d}function r(d,y){if(typeof y!="function"&&y!==null)throw new TypeError("Super expression must either be null or a function, not "+typeof y);d.prototype=Object.create(y&&y.prototype,{constructor:{value:d,enumerable:!1,writable:!0,configurable:!0}}),y&&(Object.setPrototypeOf?Object.setPrototypeOf(d,y):d.__proto__=y)}var s=(function(d){r(y,d);function y(g,f){i(this,y);var m=t(this,(y.__proto__||Object.getPrototypeOf(y)).call(this));return m.name="InvalidInputException",m.symbology=g,m.input=f,m.message='"'+m.input+'" is not a valid input for '+m.symbology,m}return y})(Error),l=(function(d){r(y,d);function y(){i(this,y);var g=t(this,(y.__proto__||Object.getPrototypeOf(y)).call(this));return g.name="InvalidElementException",g.message="Not supported type to render on",g}return y})(Error),c=(function(d){r(y,d);function y(){i(this,y);var g=t(this,(y.__proto__||Object.getPrototypeOf(y)).call(this));return g.name="NoElementException",g.message="No element to render on.",g}return y})(Error);return qs.InvalidInputException=s,qs.InvalidElementException=l,qs.NoElementException=c,qs}var I1;function Hj(){if(I1)return Ac;I1=1,Object.defineProperty(Ac,"__esModule",{value:!0});var i=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(m){return typeof m}:function(m){return m&&typeof Symbol=="function"&&m.constructor===Symbol&&m!==Symbol.prototype?"symbol":typeof m},t=Pj(),r=d(t),s=$j(),l=d(s),c=Dv();function d(m){return m&&m.__esModule?m:{default:m}}function y(m){if(typeof m=="string")return g(m);if(Array.isArray(m)){for(var b=[],v=0;v<m.length;v++)b.push(y(m[v]));return b}else{if(typeof HTMLCanvasElement<"u"&&m instanceof HTMLImageElement)return f(m);if(m&&m.nodeName&&m.nodeName.toLowerCase()==="svg"||typeof SVGElement<"u"&&m instanceof SVGElement)return{element:m,options:(0,r.default)(m),renderer:l.default.SVGRenderer};if(typeof HTMLCanvasElement<"u"&&m instanceof HTMLCanvasElement)return{element:m,options:(0,r.default)(m),renderer:l.default.CanvasRenderer};if(m&&m.getContext)return{element:m,renderer:l.default.CanvasRenderer};if(m&&(typeof m>"u"?"undefined":i(m))==="object"&&!m.nodeName)return{element:m,renderer:l.default.ObjectRenderer};throw new c.InvalidElementException}}function g(m){var b=document.querySelectorAll(m);if(b.length!==0){for(var v=[],_=0;_<b.length;_++)v.push(y(b[_]));return v}}function f(m){var b=document.createElement("canvas");return{element:b,options:(0,r.default)(m),renderer:l.default.CanvasRenderer,afterRender:function(){m.setAttribute("src",b.toDataURL())}}}return Ac.default=y,Ac}var Dc={},$1;function Gj(){if($1)return Dc;$1=1,Object.defineProperty(Dc,"__esModule",{value:!0});var i=(function(){function s(l,c){for(var d=0;d<c.length;d++){var y=c[d];y.enumerable=y.enumerable||!1,y.configurable=!0,"value"in y&&(y.writable=!0),Object.defineProperty(l,y.key,y)}}return function(l,c,d){return c&&s(l.prototype,c),d&&s(l,d),l}})();function t(s,l){if(!(s instanceof l))throw new TypeError("Cannot call a class as a function")}var r=(function(){function s(l){t(this,s),this.api=l}return i(s,[{key:"handleCatch",value:function(c){if(c.name==="InvalidInputException")if(this.api._options.valid!==this.api._defaults.valid)this.api._options.valid(!1);else throw c.message;else throw c;this.api.render=function(){}}},{key:"wrapBarcodeCall",value:function(c){try{var d=c.apply(void 0,arguments);return this.api._options.valid(!0),d}catch(y){return this.handleCatch(y),this.api}}}]),s})();return Dc.default=r,Dc}var Vh,H1;function Fj(){if(H1)return Vh;H1=1;var i=qj(),t=B(i),r=gu(),s=B(r),l=Bj(),c=B(l),d=Lj(),y=B(d),g=Hj(),f=B(g),m=Cv(),b=B(m),v=Gj(),_=B(v),w=Dv(),S=Mv(),M=B(S);function B(L){return L&&L.__esModule?L:{default:L}}var U=function(){},re=function(G,W,J){var he=new U;if(typeof G>"u")throw Error("No element to render on was provided.");return he._renderProperties=(0,f.default)(G),he._encodings=[],he._options=M.default,he._errorHandler=new _.default(he),typeof W<"u"&&(J=J||{},J.format||(J.format=ie()),he.options(J)[J.format](W,J).render()),he};re.getModule=function(L){return t.default[L]};for(var ce in t.default)t.default.hasOwnProperty(ce)&&C(t.default,ce);function C(L,G){U.prototype[G]=U.prototype[G.toUpperCase()]=U.prototype[G.toLowerCase()]=function(W,J){var he=this;return he._errorHandler.wrapBarcodeCall(function(){J.text=typeof J.text>"u"?void 0:""+J.text;var xe=(0,s.default)(he._options,J);xe=(0,b.default)(xe);var Te=L[G],Y=P(W,Te,xe);return he._encodings.push(Y),he})}}function P(L,G,W){L=""+L;var J=new G(L,W);if(!J.valid())throw new w.InvalidInputException(J.constructor.name,L);var he=J.encode();he=(0,c.default)(he);for(var xe=0;xe<he.length;xe++)he[xe].options=(0,s.default)(W,he[xe].options);return he}function ie(){return t.default.CODE128?"CODE128":Object.keys(t.default)[0]}U.prototype.options=function(L){return this._options=(0,s.default)(this._options,L),this},U.prototype.blank=function(L){var G=new Array(L+1).join("0");return this._encodings.push({data:G}),this},U.prototype.init=function(){if(this._renderProperties){Array.isArray(this._renderProperties)||(this._renderProperties=[this._renderProperties]);var L;for(var G in this._renderProperties){L=this._renderProperties[G];var W=(0,s.default)(this._options,L.options);W.format=="auto"&&(W.format=ie()),this._errorHandler.wrapBarcodeCall(function(){var J=W.value,he=t.default[W.format.toUpperCase()],xe=P(J,he,W);X(L,xe,W)})}}},U.prototype.render=function(){if(!this._renderProperties)throw new w.NoElementException;if(Array.isArray(this._renderProperties))for(var L=0;L<this._renderProperties.length;L++)X(this._renderProperties[L],this._encodings,this._options);else X(this._renderProperties,this._encodings,this._options);return this},U.prototype._defaults=M.default;function X(L,G,W){G=(0,c.default)(G);for(var J=0;J<G.length;J++)G[J].options=(0,s.default)(W,G[J].options),(0,y.default)(G[J].options);(0,y.default)(W);var he=L.renderer,xe=new he(L.element,G,W);xe.render(),L.afterRender&&L.afterRender()}return typeof window<"u"&&(window.JsBarcode=re),typeof jQuery<"u"&&(jQuery.fn.JsBarcode=function(L,G){var W=[];return jQuery(this).each(function(){W.push(this)}),re(W,L,G)}),Vh=re,Vh}var Vj=Fj();const Yj=sw(Vj),Kj={[ze.EXECUTED]:"Executed",[ze.MATCHED_LIST]:"Matched list",[ze.CONFIRM_REQUIRED]:"Awaiting confirmation",[ze.NO_MATCH_FALLBACK]:"No match",[ze.UNCONFIGURED]:"Not configured",[ze.INVALID_CODE]:"Invalid code",[ze.FORBIDDEN]:"Not permitted",[ze.CONFLICT]:"Conflict",[ze.IDENTITY_PRIMED]:"Identity primed",[ze.IDENTITY_UNKNOWN]:"Badge not recognized",[ze.NOT_PRIMED]:"Badge required",[ze.CHOICES]:"Choices presented"},qv={[ze.EXECUTED]:"text-status-success",[ze.MATCHED_LIST]:"text-status-success",[ze.CONFIRM_REQUIRED]:"text-status-warning",[ze.NO_MATCH_FALLBACK]:"text-text-secondary",[ze.UNCONFIGURED]:"text-status-warning",[ze.INVALID_CODE]:"text-status-error",[ze.FORBIDDEN]:"text-status-error",[ze.CONFLICT]:"text-status-warning",[ze.IDENTITY_PRIMED]:"text-status-success",[ze.IDENTITY_UNKNOWN]:"text-status-warning",[ze.NOT_PRIMED]:"text-status-warning",[ze.CHOICES]:"text-status-success"};function Bv(i){return i.outcome===ze.IDENTITY_PRIMED&&i.actor?`Hi ${i.actor.displayName}`:`${Kj[i.outcome]}${i.rule?` — ${i.rule.name}`:""}`}function su(i){var t,r,s;return i.outcome===ze.NO_MATCH_FALLBACK?((t=i.fallback)==null?void 0:t.markdown)??null:i.outcome===ze.IDENTITY_UNKNOWN?((r=i.fallback)==null?void 0:r.markdown)??null:i.outcome===ze.NOT_PRIMED?((s=i.notPrimed)==null?void 0:s.markdown)??null:null}function ii(i){return i.replace(/`([^`]+)`/g,'<code class="px-1 py-0.5 bg-surface-sunken rounded text-xs font-mono">$1</code>').replace(/\*\*\*(.+?)\*\*\*/g,"<strong><em>$1</em></strong>").replace(/\*\*(.+?)\*\*/g,"<strong>$1</strong>").replace(/\*(.+?)\*/g,"<em>$1</em>").replace(/\[([^\]]+)\]\(([^)]+)\)/g,'<a href="$2" class="text-accent-primary hover:underline" target="_blank" rel="noopener noreferrer">$1</a>')}function Lv({content:i,compact:t}){const r=[],s=/^```(\w*)\n([\s\S]*?)^```$/gm;let l=0,c;for(;(c=s.exec(i))!==null;)c.index>l&&r.push({type:"text",text:i.slice(l,c.index)}),r.push({type:"code",lang:c[1],code:c[2].replace(/\n$/,"")}),l=c.index+c[0].length;l<i.length&&r.push({type:"text",text:i.slice(l)});const d=t?{text:"text-xs",heading:"text-xs",list:"text-xs",code:"text-2xs"}:{text:"text-sm",heading:"text-sm",list:"text-sm",code:"text-xs"},y=[];for(const g of r){if(g.type==="code"){const f=g.code.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">");y.push(`<pre class="my-2 p-2.5 bg-surface-sunken rounded-md overflow-x-auto"><code class="${d.code} font-mono text-text-secondary leading-relaxed">${f}</code></pre>`);continue}y.push(...Xj(g.text,d))}return p.jsx("div",{className:"prose-sm",dangerouslySetInnerHTML:{__html:y.join(`
|
|
55
|
+
`)}})}function Xj(i,t){const r=i.split(`
|
|
56
|
+
`),s=[];let l=!1,c=!1,d=[];for(const y of r){const g=y.trim();if(g.startsWith("|")&&g.endsWith("|")){const f=g.slice(1,-1).split("|").map(m=>m.trim());if(f.every(m=>/^[-:]+$/.test(m)))continue;c||(c=!0,d=[]),d.push(f);continue}if(c){c=!1;const[f,...m]=d;s.push('<div class="overflow-x-auto my-2"><table class="text-xs w-full"><thead><tr>');for(const b of f)s.push(`<th class="text-left py-1 px-2 border-b border-border text-text-secondary font-medium">${ii(b)}</th>`);s.push("</tr></thead><tbody>");for(const b of m){s.push("<tr>");for(const v of b)s.push(`<td class="py-1 px-2 border-b border-border/50">${ii(v)}</td>`);s.push("</tr>")}s.push("</tbody></table></div>"),d=[]}if(!g){l&&(s.push("</ul>"),l=!1);continue}if(g.startsWith("### ")){l&&(s.push("</ul>"),l=!1),s.push(`<h4 class="${t.heading} font-semibold text-text-primary mt-3 mb-1">${ii(g.slice(4))}</h4>`);continue}if(g.startsWith("## ")){l&&(s.push("</ul>"),l=!1),s.push(`<h3 class="${t.heading} font-semibold text-text-primary mt-3 mb-1">${ii(g.slice(3))}</h3>`);continue}if(/^[-*_]{3,}$/.test(g)){l&&(s.push("</ul>"),l=!1),s.push('<hr class="border-border my-3" />');continue}if(/^[-*] /.test(g)){l||(s.push('<ul class="space-y-1 my-1">'),l=!0),s.push(`<li class="${t.list} text-text-secondary flex gap-2"><span class="text-text-tertiary shrink-0">-</span><span>${ii(g.slice(2))}</span></li>`);continue}l&&(s.push("</ul>"),l=!1),s.push(`<p class="${t.text} text-text-secondary my-1">${ii(g)}</p>`)}if(c&&d.length){const[y,...g]=d;s.push('<div class="overflow-x-auto my-2"><table class="text-xs w-full"><thead><tr>');for(const f of y)s.push(`<th class="text-left py-1 px-2 border-b border-border text-text-secondary font-medium">${ii(f)}</th>`);s.push("</tr></thead><tbody>");for(const f of g){s.push("<tr>");for(const m of f)s.push(`<td class="py-1 px-2 border-b border-border/50">${ii(m)}</td>`);s.push("</tr>")}s.push("</tbody></table></div>")}return l&&s.push("</ul>"),s}function Jj(i){return i.replace(/[\u2010-\u2015\u2212]/g,"-").replace(/[\u2018\u2019]/g,"'").replace(/[\u201C\u201D]/g,'"').replace(/\u00A0/g," ").replace(/[\u200B-\u200D\uFEFF]/g,"").replace(/[\x00-\x1F\x7F]/g,"").trim()}function Qj(i){const t=new Set;for(const r of i){const s=r.codePointAt(0);(s>127||s<32)&&t.add(`"${s<32?"\\x"+s.toString(16).padStart(2,"0"):r}" U+${s.toString(16).toUpperCase().padStart(4,"0")}`)}return[...t]}function Zj({value:i}){const t=j.useRef(null),[r,s]=j.useState(!1);return j.useEffect(()=>{if(!(!t.current||!i))try{Yj(t.current,i,{format:"CODE128",width:2,height:88,margin:12,displayValue:!0,fontSize:13,background:"#ffffff",lineColor:"#000000"}),s(!1)}catch{s(!0)}},[i]),i?p.jsxs("div",{children:[p.jsx("span",{className:"block text-xs uppercase tracking-wide text-text-tertiary mb-1",children:"Barcode"}),r?p.jsxs("p",{className:"text-xs text-status-error",children:["This value has characters Code 128 cannot carry:"," ",p.jsx("span",{className:"font-mono",children:Qj(i).join(", ")||"unknown"})]}):p.jsx("div",{className:"bg-white rounded p-1 inline-block max-w-full overflow-hidden",children:p.jsx("svg",{ref:t,className:"max-w-full"})})]}):null}function Wj({onClose:i}){const{submitCode:t,lastResult:r,busy:s,wedgeConfig:l,updateWedgeConfig:c,diagnostics:d,diagnosticsOn:y,setDiagnosticsOn:g}=Av(),[f,m]=j.useState(""),[b,v]=j.useState(!1),_=S=>{S.preventDefault();const M=f.trim();M&&(m(""),t(M))},w=(r==null?void 0:r.response)??null;return p.jsxs("div",{className:"flex flex-col h-full",children:[p.jsxs("div",{className:"flex items-center justify-between px-4 py-3 border-b border-surface-border",children:[p.jsxs("div",{className:"flex items-center gap-2 text-sm font-medium text-text-primary",children:[p.jsx(ou,{className:"w-4 h-4"}),"Scan"]}),p.jsx("button",{type:"button",onClick:i,className:"text-text-tertiary hover:text-text-primary",title:"Close",children:p.jsx(Gt,{className:"w-4 h-4"})})]}),p.jsxs("div",{className:"flex-1 overflow-y-auto px-4 py-4 space-y-6",children:[p.jsxs("form",{onSubmit:_,className:"space-y-2",children:[p.jsx("label",{className:"block text-xs uppercase tracking-wide text-text-tertiary",children:"Enter a code"}),p.jsxs("div",{className:"flex gap-2",children:[p.jsx("input",{value:f,onChange:S=>m(Jj(S.target.value)),placeholder:"10:1:SN-12345",className:"flex-1 px-2 py-1.5 text-sm bg-surface-raised border border-surface-border rounded text-text-primary","data-scan-manual-entry":!0}),p.jsx("button",{type:"submit",disabled:s||!f.trim(),className:"px-3 py-1.5 text-sm rounded bg-accent text-text-inverse disabled:opacity-50",children:"Go"})]}),p.jsx("p",{className:"text-xs text-text-tertiary",children:"Scanning with a connected scanner works from any page — this entry exists for testing and for codes you can read but not scan. Typing here also draws the code below; point the scanner at the screen to fire it for real."})]}),p.jsx(Zj,{value:f.trim()}),r&&p.jsxs("div",{className:"space-y-2",children:[p.jsx("div",{className:"text-xs uppercase tracking-wide text-text-tertiary",children:"Last scan"}),p.jsx("div",{className:"text-sm font-mono text-text-primary",children:r.code}),w?p.jsxs(p.Fragment,{children:[p.jsx("div",{className:`text-sm font-medium ${qv[w.outcome]}`,children:Bv(w)}),w.error&&p.jsx("div",{className:"text-xs text-text-tertiary",children:w.error}),su(w)&&p.jsx("div",{className:"text-sm border-t border-surface-border pt-2",children:p.jsx(Lv,{content:su(w),compact:!0})})]}):p.jsx("div",{className:"text-sm text-status-error",children:r.error})]}),p.jsxs("div",{className:"space-y-2",children:[p.jsxs("button",{type:"button",onClick:()=>v(S=>!S),className:"text-xs uppercase tracking-wide text-text-tertiary hover:text-text-primary",children:["Capture settings ",b?"▾":"▸"]}),b&&p.jsxs("div",{className:"space-y-3",children:[p.jsxs("label",{className:"block text-sm text-text-primary",children:[p.jsx("span",{className:"block text-xs text-text-tertiary mb-1",children:"Key gap limit (ms) — a longer pause between keys starts a new capture; raise it for scanners that pace slowly"}),p.jsx("input",{type:"number",min:100,max:2e3,step:50,value:l.maxKeyGapMs,onChange:S=>c({maxKeyGapMs:Number(S.target.value)}),className:"w-24 px-2 py-1 text-sm bg-surface-raised border border-surface-border rounded"})]}),p.jsxs("label",{className:"flex items-center gap-2 text-sm text-text-primary",children:[p.jsx("input",{type:"checkbox",checked:y,onChange:S=>g(S.target.checked)}),p.jsx("span",{children:"Diagnostics — trace every keydown the capture sees (also logged to the console)"})]}),y&&p.jsxs("div",{className:"border border-surface-border rounded",children:[p.jsx("div",{className:"px-2 py-1.5 text-2xs uppercase tracking-wide text-text-tertiary border-b border-surface-border",children:"Keydown trace — scan now, newest last"}),p.jsxs("div",{className:"max-h-64 overflow-y-auto font-mono text-2xs leading-5 px-2 py-1",children:[d.length===0&&p.jsx("div",{className:"text-text-tertiary",children:"Waiting for keys…"}),d.map(S=>p.jsxs("div",{className:"whitespace-nowrap overflow-hidden text-ellipsis",title:`buffer: ${S.buffer}`,children:[p.jsxs("span",{className:"text-text-tertiary",children:[String(S.deltaMs).padStart(4),"ms "]}),p.jsx("span",{className:"text",children:JSON.stringify(S.key)}),S.code&&p.jsxs("span",{className:"text-text-tertiary",children:[" (",S.code,")"]}),p.jsxs("span",{className:"text-text-tertiary",children:[" — ",S.note]})]},S.seq))]}),p.jsxs("div",{className:"px-2 py-1.5 text-2xs text-text-tertiary border-t border-surface-border",children:["Read it like this: a scan should end with an"," ",p.jsx("span",{className:"font-mono",children:'"Enter"'})," row saying"," ",p.jsx("span",{className:"font-mono",children:"capture → …"}),'. An Enter row saying "no code tail" means the buffer split (raise the gap limit, or a key arrived as something other than one character). No Enter row at all means the scanner sends no suffix — program its Enter/CR suffix. Keys named'," ",p.jsx("span",{className:"font-mono",children:'"Unidentified"'})," mean the decode arrives outside the keydown path."]})]})]})]})]})]})}const Pv="lt:bookmarks",qc="scan";function eT(){try{const i=localStorage.getItem(Pv);if(!i)return[];const t=JSON.parse(i);return Array.isArray(t)?t:[]}catch{return[]}}function G1(i){try{localStorage.setItem(Pv,JSON.stringify(i))}catch{}}function tT({onToggleEventFeed:i,onToggleDocs:t,onToggleNav:r}){var de,Oe;const s=yo(),{user:l,logout:c}=Ft(),{viewAs:d,realIsBuilder:y}=Zb(),{available:g,mine:f}=vO();Wb();const{connected:m}=t2(),{data:b}=Wn(),{setPanel:v,closePanel:_,open:w,ownerKey:S}=Kd(),M=Ev(),B=yn(),U=()=>{w&&S===qc?_(qc):v(p.jsx(Wj,{onClose:()=>_(qc)}),{width:360,key:qc})},[re,ce]=j.useState(!1),[C,P]=j.useState(!1),[ie,X]=j.useState(bv),[L,G]=j.useState(eT),W=j.useRef(null),J=(de=b==null?void 0:b.branding)==null?void 0:de.appName,he=(Oe=b==null?void 0:b.branding)==null?void 0:Oe.themes,xe=j.useMemo(()=>(GA(he??[]),FA()),[he]),Te=oe=>{VA(oe),X(oe)},Y=()=>{const oe=window.prompt("Bookmark label:");if(!(oe!=null&&oe.trim()))return;const je=B.pathname+B.search,Se=[...L,{label:oe.trim(),url:je}].sort((Ne,We)=>Ne.label.localeCompare(We.label));G(Se),G1(Se),ce(!1)},ae=oe=>{const je=L.filter(Se=>!(Se.label===oe.label&&Se.url===oe.url));G(je),G1(je)};return j.useEffect(()=>{if(!re)return;const oe=je=>{W.current&&!W.current.contains(je.target)&&ce(!1)};return document.addEventListener("mousedown",oe),()=>document.removeEventListener("mousedown",oe)},[re]),p.jsxs(p.Fragment,{children:[p.jsxs("header",{className:`h-14 shrink-0 border-b border-surface-border bg-surface-raised flex items-center justify-between pl-2 pr-5 relative ${re?"z-[100]":"z-30"}`,children:[p.jsxs("div",{className:"flex items-center gap-1 min-w-0",children:[r&&p.jsx("button",{onClick:r,className:"lg:hidden p-2 text-text-secondary hover:text-text-primary transition-colors","aria-label":"Open navigation",children:p.jsx(mw,{className:"w-5 h-5",strokeWidth:1.5})}),p.jsxs(Ii,{to:"/","aria-label":"Home",className:"shrink-0",onClick:oe=>{(oe.ctrlKey||oe.metaKey)&&(oe.preventDefault(),P(!0))},children:[p.jsx(nu,{appName:J,className:"hidden lg:flex"}),p.jsx(nu,{appName:J,variant:"comet",className:"flex lg:hidden"})]}),p.jsx("div",{className:"hidden lg:block w-px h-4 bg-surface-border mx-1"}),p.jsx("button",{onClick:()=>s(-1),className:"p-2 text-accent/60 hover:text-accent transition-colors","aria-label":"Go back",children:p.jsx(sb,{className:"w-5 h-5",strokeWidth:2})}),p.jsx("button",{onClick:()=>s(1),className:"p-2 text-accent/60 hover:text-accent transition-colors","aria-label":"Go forward",children:p.jsx(Xh,{className:"w-5 h-5",strokeWidth:2})})]}),p.jsxs("div",{className:"flex items-center gap-5",children:[p.jsxs(Ii,{to:"/escalations/available",className:`flex items-center gap-1.5 text-xs transition-colors ${g>0?"text-status-queued":"text-text-quaternary hover:text-text-secondary"}`,title:"All escalations",children:[p.jsx(Jh,{className:"w-4 h-4",strokeWidth:1.5}),p.jsx("span",{className:"hidden lg:inline",children:"all"}),g>0&&p.jsx("sup",{className:"tabular-nums font-medium text-[0.5em]",children:g})]}),p.jsxs(Ii,{to:"/escalations/queue",className:`flex items-center gap-1.5 text-xs transition-colors ${f>0?"text-status-claimed":"text-text-quaternary hover:text-text-secondary"}`,title:"My escalation queue",children:[p.jsx(Jh,{className:"w-4 h-4",strokeWidth:1.5}),p.jsx("span",{className:"hidden lg:inline",children:"mine"}),f>0&&p.jsx("sup",{className:"tabular-nums font-medium text-[0.5em]",children:f})]}),p.jsx("div",{className:"hidden lg:block w-px h-4 bg-surface-border"}),M&&p.jsxs("button",{type:"button",onClick:U,className:"flex items-center gap-1.5 text-xs text-text-quaternary hover:text-text-secondary transition-colors",title:"Scan a code",children:[p.jsx(ou,{className:"w-4 h-4",strokeWidth:1.5}),p.jsx("span",{className:"hidden lg:inline",children:"scan"})]}),p.jsxs("button",{type:"button",onClick:()=>{m?i==null||i():window.location.reload()},className:`hidden lg:flex items-center gap-1.5 text-xs transition-colors ${m?"text-status-success hover:text-status-success/80":"text-text-quaternary hover:text-text-secondary"}`,title:m?"Live events — click to toggle feed":"Events disconnected — click to reconnect",children:[p.jsx(ab,{className:"w-4 h-4",strokeWidth:1.5}),"events"]}),y&&p.jsx(p.Fragment,{children:p.jsxs("button",{onClick:t,className:"hidden lg:flex items-center gap-1.5 text-xs text-text-quaternary hover:text-text-secondary transition-colors",title:"Documentation",children:[p.jsx(ob,{className:"w-4 h-4",strokeWidth:1.5}),"docs"]})}),d&&p.jsx(p.Fragment,{children:p.jsxs("span",{className:"hidden lg:flex items-center gap-1 pl-2 pr-1 py-0.5 rounded-full bg-accent/10 border border-accent/25 text-2xs text-accent select-none",children:[p.jsxs("span",{className:"capitalize font-medium tracking-wide",children:[d," View"]}),p.jsx("button",{onClick:xd,title:"Restore your real view",className:"ml-0.5 rounded-full p-0.5 hover:bg-accent/20 transition-colors",children:p.jsx(Gt,{className:"w-2.5 h-2.5"})})]})}),p.jsx("div",{className:"hidden lg:block w-px h-4 bg-surface-border"}),l&&p.jsxs("div",{className:"relative",ref:W,children:[p.jsxs("button",{onClick:()=>ce(oe=>!oe),className:"btn-ghost flex items-center gap-1",children:[p.jsxs("span",{className:"relative",children:[p.jsx(pw,{className:"w-4 h-4 text-accent/75",strokeWidth:1.5}),d&&p.jsx("span",{className:"lg:hidden absolute -top-0.5 -right-0.5 w-2 h-2 rounded-full bg-accent"})]}),p.jsx("span",{className:"hidden lg:inline whitespace-nowrap",children:l.displayName||l.username||l.userId}),p.jsx("svg",{className:"hidden lg:block w-3 h-3",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M19 9l-7 7-7-7"})})]}),re&&p.jsxs("div",{className:"absolute right-0 top-full mt-1 w-52 bg-surface-raised border border-surface-border rounded-md shadow-lg py-1 z-[100]",children:[p.jsx(Ii,{to:"/credentials",onClick:()=>ce(!1),className:"block px-3 py-2 text-xs text-text-secondary hover:bg-surface-hover",children:"Credentials"}),p.jsx("button",{onClick:()=>{ce(!1),m?i==null||i():window.location.reload()},className:"lg:hidden block w-full text-left px-3 py-2 text-xs text-text-secondary hover:bg-surface-hover",children:m?"Events":"Reconnect events"}),y&&p.jsx("button",{onClick:()=>{ce(!1),t==null||t()},className:"lg:hidden block w-full text-left px-3 py-2 text-xs text-text-secondary hover:bg-surface-hover",children:"Docs"}),d&&p.jsxs("button",{onClick:()=>{ce(!1),xd()},className:"lg:hidden block w-full text-left px-3 py-2 text-xs text-accent hover:bg-surface-hover capitalize",children:["Exit ",d," view"]}),p.jsxs("div",{className:"px-3 py-2 border-t border-surface-border/60",children:[p.jsx("p",{className:"text-2xs font-medium uppercase tracking-widest text-text-tertiary mb-1.5",children:"Theme"}),p.jsx("div",{className:"flex items-center gap-2 flex-wrap",children:xe.map(oe=>p.jsx("button",{type:"button",onClick:()=>Te(oe.id),title:oe.label,"aria-label":`${oe.label} theme`,className:`w-4 h-4 rounded-full transition-transform hover:scale-110 ${ie===oe.id?"ring-2 ring-offset-1 ring-surface-border":""}`,style:{backgroundColor:oe.swatch}},oe.id))})]}),p.jsx("button",{onClick:()=>{ce(!1),c()},className:"block w-full text-left px-3 py-2 text-xs text-text-secondary hover:bg-surface-hover",children:"Sign Out"}),p.jsxs("div",{className:"border-t border-surface-border/60 pt-1",children:[L.map(oe=>p.jsxs("div",{className:"flex items-center group px-3 py-1.5 hover:bg-surface-hover",children:[p.jsx(Ii,{to:oe.url,onClick:()=>ce(!1),title:oe.url,className:"flex-1 min-w-0 text-xs text-text-secondary hover:text-text-primary truncate",children:oe.label}),p.jsx("button",{type:"button",onClick:()=>ae(oe),title:`Remove "${oe.label}"`,className:"opacity-0 group-hover:opacity-100 transition-opacity ml-1 p-0.5 shrink-0 text-text-quaternary hover:text-status-error",children:p.jsx(Gt,{className:"w-3 h-3"})})]},`${oe.label}::${oe.url}`)),p.jsx("hr",{className:"border-surface-border/60 mx-3 my-0.5"}),p.jsxs("button",{type:"button",onClick:Y,className:"flex items-center gap-1.5 w-full px-3 py-2 text-xs text-text-secondary hover:bg-surface-hover",children:[p.jsx(yw,{className:"w-3.5 h-3.5 shrink-0",strokeWidth:1.5}),"Add Bookmark"]})]})]})]})]})]}),C&&p.jsx(HA,{onClose:()=>P(!1)})]})}function Qd({open:i,children:t}){const[r,s]=j.useState(i);return j.useEffect(()=>{i&&s(!0)},[i]),p.jsx("div",{className:`grid transition-[grid-template-rows] duration-300 ease-out ${i?"grid-rows-[1fr]":"grid-rows-[0fr]"}`,onTransitionEnd:()=>{i||s(!1)},children:p.jsx("div",{className:"overflow-hidden",children:r?t:null})})}function Sd(i){return({isActive:t})=>{const r="flex items-center rounded-md transition-colors duration-150",s="bg-surface-hover text-text-primary font-medium",l="text-text-secondary hover:text-text-primary hover:bg-surface-hover";return i?`${r} justify-center w-10 h-10 mx-auto ${t?s:l}`:`${r} gap-3 px-4 py-2 text-sm ${t?s:l}`}}function nT(){return({isActive:i})=>`flex items-center gap-3 pl-11 pr-4 py-1.5 text-xs rounded-md transition-colors duration-150 ${i?"text-text-primary font-medium":"text-text-secondary hover:text-text-primary"}`}function rT({group:i,collapsed:t}){const{pathname:r}=yn(),s=i.matchPaths.some(y=>r.startsWith(y)),[l,c]=j.useState(s),d=l||s;return t?p.jsx(p.Fragment,{children:i.items.map(y=>p.jsx(Hs,{to:y.to,className:Sd(!0),title:y.label,children:y.icon&&p.jsx(y.icon,{className:"w-5 h-5 shrink-0 text-accent/75",strokeWidth:1.5})},y.to))}):p.jsxs("div",{children:[p.jsxs("button",{onClick:()=>c(y=>!y),className:"w-full flex items-center justify-between px-4 py-2 text-sm rounded-md transition-colors duration-150 text-text-secondary hover:text-text-primary hover:bg-surface-hover",children:[p.jsxs("span",{className:"flex items-center gap-3",children:[i.icon&&p.jsx(i.icon,{className:"w-5 h-5 shrink-0 text-accent/75",strokeWidth:1.5}),p.jsx("span",{children:i.label})]}),p.jsx("svg",{className:`w-3.5 h-3.5 text-text-tertiary transition-transform duration-150 ${d?"rotate-90":""}`,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9 5l7 7-7 7"})})]}),p.jsx(Qd,{open:d,children:i.items.map(y=>p.jsxs(Hs,{to:y.to,end:y.end,className:nT(),children:[y.icon&&p.jsx(y.icon,{className:"w-4 h-4 shrink-0 text-accent/75",strokeWidth:1.5}),p.jsx("span",{children:y.label})]},y.to))})]})}function iT(i){return i.kind==="group"}function sT({entry:i,collapsed:t}){const{pathname:r,search:s}=yn(),l=i.to.includes("?"),c=i.icon&&p.jsx(i.icon,{className:`w-5 h-5 shrink-0 text-accent/75 ${i.iconClassName??""}`,strokeWidth:1.5,...i.solid?{fill:"currentColor"}:{}});if(l){const[d,y]=i.to.split("?"),g=r===d&&s===`?${y}`,f=Sd(t)({isActive:g});return p.jsxs(Hs,{to:i.to,className:f,title:t?i.label:void 0,children:[c,!t&&p.jsx("span",{children:i.label})]})}return p.jsxs(Hs,{to:i.to,end:i.end,className:Sd(t),title:t?i.label:void 0,children:[c,!t&&p.jsx("span",{children:i.label})]})}function ui({heading:i,entries:t}){const{collapsed:r}=Vd();return p.jsxs("div",{className:"space-y-1",children:[r?p.jsx("div",{className:"h-px bg-surface-border mx-3 my-2",title:i}):p.jsx("p",{className:"px-4 pt-5 pb-2 text-xs font-semibold uppercase tracking-wider text-text-tertiary",children:i}),t.map(s=>iT(s)?p.jsx(rT,{group:s,collapsed:r},s.label):p.jsx(sT,{entry:s,collapsed:r},s.to))]})}function aT({aiEnabled:i=!1,isBuilder:t=!1,isOps:r=!1,viewAs:s=null,canSeePaceBoard:l=!1}){const c={to:"/operations",label:"Pace Board",icon:gw};if(!t&&(!r||s==="engineer"||s==="operator"))return l?p.jsx(ui,{heading:"Monitor",entries:[c]}):null;if(!t)return p.jsx(ui,{heading:"Monitor",entries:l?[c]:[]});const d=[...l?[c]:[],{to:"/topics",label:"Event Topics",icon:ab},{to:"/agents",label:i?"Agents":"Automations",icon:bw},{to:"/capabilities",label:"Capabilities",icon:vw}];return p.jsx(ui,{heading:"Monitor",entries:d})}function oT(){return lt({queryKey:["me","preferences"],queryFn:()=>_e("/me/preferences"),staleTime:6e4})}function lT(){const i=rt();return mt({mutationFn:t=>_e("/me/preferences",{method:"PATCH",body:JSON.stringify(t)}),onSuccess:t=>{i.setQueryData(["me","preferences"],t)}})}function cT(i){return i.replace(/([a-z0-9])([A-Z])/g,"$1 $2").replace(/([A-Z]+)([A-Z][a-z])/g,"$1 $2").split(/[-_\s]+/).filter(Boolean).map(t=>t.charAt(0).toUpperCase()+t.slice(1)).join(" ")}function uT(i){var t;return((t=i.title)==null?void 0:t.trim())||cT(i.role)}function fT(i,t){const r=(i==null?void 0:i.pinnedViews)??[],s=new Set((i==null?void 0:i.hiddenRolePins)??[]),l=new Set(r.map(y=>y.label)),c=[...r],d=new Set;for(const{role:y,pins:g}of t)for(const f of g)l.has(f.label)||s.has(f.label)||d.has(f.label)||(d.add(f.label),c.push({...f,id:`role:${y}:${f.label}`,fromRole:y}));return c}function hT(i){let t;try{t=new URL(i,"http://local")}catch{return null}if(t.pathname!=="/escalations/available"&&t.pathname!=="/escalations")return null;const r=t.searchParams,s=rj(r),l=r.get("status")||void 0,c=t.pathname==="/escalations/available"&&(l===void 0||l==="available");return{available:c,params:{...s,role:r.get("role")||void 0,type:r.get("type")||void 0,priority:r.get("priority")?parseInt(r.get("priority"),10):void 0,status:c||l==="all"?void 0:l,search:r.get("search")||void 0}}}function dT(){return`pin-${Date.now().toString(36)}-${Math.random().toString(36).slice(2,8)}`}function mT(){var C;const{collapsed:i}=Vd(),{user:t}=Ft(),r=oT(),s=lT(),l=j.useMemo(()=>new Set(((t==null?void 0:t.roles)??[]).map(P=>P.role)),[t]),{data:c}=tv({enabled:l.size>0}),d=rt();Dd(Gd(),()=>{d.invalidateQueries({queryKey:["escalations"]})});const y=(C=r.data)==null?void 0:C.preferences,g=j.useMemo(()=>((c==null?void 0:c.roles)??[]).filter(P=>l.has(P.role)&&Array.isArray(P.default_pins)&&P.default_pins.length>0).map(P=>({role:P.role,pins:P.default_pins})),[c,l]),f=j.useMemo(()=>fT(y,g),[y,g]),m=j.useMemo(()=>new Map(((c==null?void 0:c.roles)??[]).map(P=>[P.role,uT(P)])),[c]),b=j.useMemo(()=>f.filter(P=>!P.fromRole),[f]),v=j.useMemo(()=>g.map(({role:P})=>({role:P,title:m.get(P)??P,pins:f.filter(ie=>ie.fromRole===P)})).filter(P=>P.pins.length>0),[g,m,f]),_=(y==null?void 0:y.pinnedViews)??[],w=j.useRef(null),S=P=>s.mutate({pinnedViews:P}),M=P=>S(_.filter(ie=>ie.id!==P)),B=P=>S([..._,{id:dT(),label:P.label,url:P.url,badge:P.badge}]),U=P=>s.mutate({hiddenRolePins:[...(y==null?void 0:y.hiddenRolePins)??[],P]}),re=(P,ie)=>{if(P===ie)return;const X=[..._],[L]=X.splice(P,1);X.splice(ie,0,L),S(X)};if(f.length===0)return null;const ce="px-4 pt-5 pb-2 text-xs font-semibold uppercase tracking-wider text-text-tertiary truncate";return p.jsxs("div",{className:"space-y-1",children:[i&&p.jsx("div",{className:"h-px bg-surface-border mx-3 my-2",title:"Pinned"}),!i&&b.length>0&&p.jsx("p",{className:ce,children:"Pinned"}),b.map(P=>{const ie=_.findIndex(X=>X.id===P.id);return p.jsx(F1,{pin:P,collapsed:i,draggable:ie!==-1,onDragStart:()=>{w.current=ie},onDropOn:()=>{w.current!==null&&ie!==-1&&re(w.current,ie),w.current=null},onRemove:()=>M(P.id)},P.id)}),v.map(P=>p.jsxs("div",{children:[!i&&p.jsx("p",{className:ce,title:`${P.title} — pins from the ${P.role} role`,"data-testid":"pin-group-label",children:P.title}),P.pins.map(ie=>p.jsx(F1,{pin:ie,collapsed:i,draggable:!1,onDragStart:()=>{},onDropOn:()=>{},onPromote:()=>B(ie),onHide:()=>U(ie.label)},ie.id))]},P.role))]})}function F1({pin:i,collapsed:t,draggable:r,onDragStart:s,onDropOn:l,onRemove:c,onPromote:d,onHide:y}){const{pathname:g,search:f}=yn(),[m,b=""]=i.url.split("?"),v=g===m&&f===(b?`?${b}`:""),_="group flex items-center rounded-md transition-colors duration-150",w=v?"bg-surface-hover text-text-primary font-medium":"text-text-secondary hover:text-text-primary hover:bg-surface-hover";return t?p.jsx(Hs,{to:i.url,className:`${_} ${w} justify-center w-10 h-10 mx-auto`,title:i.label,children:p.jsx(Py,{className:"w-5 h-5 shrink-0 text-accent/75",strokeWidth:1.5})}):p.jsxs("div",{className:`${_} ${w} relative`,draggable:r,onDragStart:s,onDragOver:S=>S.preventDefault(),onDrop:l,children:[p.jsxs(Hs,{to:i.url,title:i.label,className:"flex items-center gap-2.5 pl-4 pr-3 py-1.5 text-[0.7875rem] flex-1 min-w-0",children:[p.jsx(Py,{className:"w-4 h-4 shrink-0 text-accent/75",strokeWidth:1.5,...i.fromRole?{}:{fill:"currentColor",fillOpacity:.15}}),p.jsx("span",{className:"truncate flex-1 min-w-0",children:i.label}),i.badge&&p.jsx(pT,{url:i.url})]}),p.jsxs("span",{className:"absolute right-1 top-1/2 -translate-y-1/2 flex items-center gap-0.5 rounded px-0.5 bg-surface-hover opacity-0 pointer-events-none group-hover:opacity-100 group-hover:pointer-events-auto transition-opacity",children:[d&&p.jsx("button",{onClick:d,title:"Make mine — copy into my pins",className:"p-1 text-text-quaternary hover:text-accent transition-colors",children:p.jsx(lb,{className:"w-3 h-3"})}),y&&p.jsx("button",{onClick:y,title:"Hide this role pin",className:"p-1 text-text-quaternary hover:text-status-error transition-colors",children:p.jsx(xw,{className:"w-3 h-3"})}),c&&p.jsx("button",{onClick:c,title:`Remove "${i.label}"`,className:"p-1 text-text-quaternary hover:text-status-error transition-colors",children:p.jsx(Gt,{className:"w-3 h-3"})})]})]})}function pT({url:i}){var d;const t=j.useMemo(()=>hT(i),[i]),r={limit:1,staleTime:15e3},s=sv({...(t==null?void 0:t.params)??{},...r,enabled:!!t&&t.available}),l=iv({...(t==null?void 0:t.params)??{},...r,enabled:!!t&&!t.available});if(!t)return null;const c=t.available?s:l;return c.isError||((d=c.data)==null?void 0:d.total)===void 0?null:p.jsx("span",{className:"shrink-0 text-right text-2xs leading-none tabular-nums text-accent/80 relative -top-[0.35em]",title:`${c.data.total} matching now`,children:c.data.total})}function yT(){var c;const{data:i}=Wn(),t=(c=i==null?void 0:i.features)==null?void 0:c.graphWorkflows,r=t===!0||t!==!1&&Jb(),s=[{to:"/workflows/registry",label:"Registry",icon:Uy},{to:"/workflows/durable/invoke",label:"Invoke",icon:zy},{to:"/workflows/executions",label:"Executions",icon:Iy}],l=r?[{kind:"group",label:"Procedural",icon:_w,matchPaths:["/workflows/registry","/workflows/durable/invoke","/workflows/executions","/workflows/durable/executions","/workflows/start","/workflows/workers","/workflows/tasks"],items:s},{kind:"group",label:"Graph",icon:Ed,matchPaths:["/mcp/workflows","/mcp/executions"],items:[{to:"/mcp/workflows",label:"Configure",icon:Uy,end:!0},{to:"/mcp/workflows/invoke",label:"Invoke",icon:zy},{to:"/mcp/executions",label:"Executions",icon:Iy}]}]:s;return p.jsx(ui,{heading:"Orchestrate",entries:l})}const gT=[{to:"/mcp/queries",label:"Designer",icon:ww},{to:"/mcp/servers",label:"Servers & Tools",icon:Sw}];function bT(){return p.jsx(ui,{heading:"Design",entries:gT})}const vT=[{to:"/files",label:"Files",icon:Ew},{to:"/knowledge",label:"Knowledge Base",icon:cb}];function xT(){return p.jsx(ui,{heading:"Storage",entries:vT})}function _T({isBuilder:i=!1,isOps:t=!1}){var d;const{data:r}=Wn(),s=((d=r==null?void 0:r.features)==null?void 0:d.dbMaintenance)!==!1,l=[{to:"/admin/users",label:"Accounts",icon:Ow},...i||t?[{to:"/admin/roles",label:"Roles",icon:Jh},{to:"/admin/personas",label:"Personas",icon:Aw},{to:"/admin/scan-codes",label:"Scan Codes",icon:ou}]:[]],c=[{to:"/admin/controlplane",label:"Routers",icon:jw},{to:"/admin/streams",label:"Messages",icon:cb},...s?[{to:"/admin/maintenance",label:"DB Maintenance",icon:Tw}]:[]];return p.jsxs(p.Fragment,{children:[p.jsx(ui,{heading:"Identity & Access",entries:l}),i&&p.jsx(ui,{heading:"Infrastructure",entries:c})]})}function Uv({aiEnabled:i,isBuilder:t,isOps:r,viewAs:s,canSeePaceBoard:l}){return p.jsxs(p.Fragment,{children:[p.jsx(aT,{aiEnabled:i,isBuilder:t,isOps:r,viewAs:s,canSeePaceBoard:l}),p.jsx(mT,{}),t&&p.jsx(yT,{}),t&&i&&p.jsx(bT,{}),t&&p.jsx(xT,{}),(t||r)&&p.jsx(_T,{isBuilder:t,isOps:r})]})}function wT({open:i,onClose:t,...r}){const s=yn();return j.useEffect(()=>{t()},[s.pathname]),p.jsxs("div",{className:`lg:hidden fixed inset-y-0 left-0 z-40 flex ${i?"":"pointer-events-none"}`,children:[p.jsx("div",{className:`fixed inset-0 bg-black/20 transition-opacity duration-200 ${i?"opacity-100":"opacity-0"}`,onClick:t,"aria-hidden":!0}),p.jsxs("div",{className:`relative w-72 max-w-[85vw] h-full bg-surface-raised border-r border-surface-border shadow-xl flex flex-col transition-transform duration-200 ease-out ${i?"translate-x-0":"-translate-x-full"}`,children:[p.jsx("div",{className:"flex items-center justify-end px-3 pt-3 shrink-0",children:p.jsx("button",{onClick:t,className:"p-1.5 rounded text-text-tertiary hover:text-text-primary hover:bg-surface-hover transition-colors","aria-label":"Close navigation",children:p.jsx(Gt,{className:"w-4 h-4"})})}),p.jsx("nav",{className:"flex-1 px-3 pb-4 space-y-2 overflow-y-auto overflow-x-hidden",children:p.jsx(yO,{children:p.jsx(Uv,{...r})})})]})]})}const zv="lt_event_feed_patterns";function ST(i,t){if(i.startsWith("/topics/")){const d=decodeURIComponent(i.replace("/topics/",""));if(d&&!d.includes("/"))return`lt.events.${d}`}const r=i.match(/^\/escalations\/detail\/(.+)/);if(r)return`lt.events.system.escalation.*.${r[1]}.>`;if(i.startsWith("/escalations")){const d=new URLSearchParams(t).get("role");return d?`lt.events.system.escalation.${ev(d)}.>`:"lt.events.system.escalation.>"}const s=i.match(/^\/workflows\/(?:durable\/)?executions\/(.+)/);if(s)return`lt.events.system.workflow.${s[1]}.>`;if(i.startsWith("/workflows"))return"lt.events.system.workflow.>";const l=i.match(/^\/agents\/([^/]+)$/);if(l&&l[1]!=="new")return`lt.events.system.agent.${l[1]}.>`;if(i.startsWith("/agents"))return"lt.events.system.agent.>";if(i.startsWith("/knowledge"))return"lt.events.system.knowledge.>";if(i.startsWith("/files"))return"lt.events.system.file.>";if(i==="/")return"lt.events.system.>";const c=i.match(/^\/mcp\/executions\/(.+)/);return c?`lt.events.system.*.${c[1]}.>`:(i.startsWith("/mcp"),"lt.events.system.>")}function ET(){try{const i=localStorage.getItem(zv);return i?JSON.parse(i):[]}catch{return[]}}function Yh(i){try{localStorage.setItem(zv,JSON.stringify(i))}catch{}}function OT(){const{pathname:i,search:t}=yn(),[r,s]=j.useState(ET),l=j.useMemo(()=>ST(i,t),[i,t]),c=j.useMemo(()=>{const f=new Set([l,...r]);return Array.from(f)},[l,r]),d=j.useCallback(f=>{const m=f.startsWith("lt.events.")?f:`lt.events.${f}`;s(b=>{if(b.includes(m))return b;const v=[...b,m];return Yh(v),v})},[]),y=j.useCallback(f=>{s(m=>{const b=m.filter(v=>v!==f);return Yh(b),b})},[]),g=j.useCallback(()=>{s([]),Yh([])},[]);return{patterns:c,pagePattern:l,userPatterns:r,addPattern:d,removePattern:y,clearUserPatterns:g}}function AT({children:i,className:t=""}){return p.jsx("p",{className:`text-2xs font-semibold uppercase tracking-widest text-text-tertiary ${t}`,children:i})}const Kh=280,V1="cubic-bezier(0.4, 0, 0.2, 1)",Bc=40;function jT(i){if(!i)return"scale(0.92)";const t=window.innerWidth,r=window.innerHeight,s=t-Bc*2,l=r-Bc*2,c=i.width/s,d=i.height/l,y=i.left+i.width/2-(Bc+s/2),g=i.top+i.height/2-(Bc+l/2);return`translate(${y}px, ${g}px) scale(${c}, ${d})`}function Iv({open:i,onClose:t,sourceRef:r,children:s}){const[l,c]=j.useState(null),d=j.useRef(null),y=j.useRef(!1);j.useEffect(()=>{var v,_;i&&!y.current?(d.current=((v=r==null?void 0:r.current)==null?void 0:v.getBoundingClientRect())??null,c("entering")):!i&&y.current&&l==="open"&&(d.current=((_=r==null?void 0:r.current)==null?void 0:_.getBoundingClientRect())??null,c("exiting")),y.current=i},[i,r,l]),j.useEffect(()=>{if(l!=="entering")return;const v=requestAnimationFrame(()=>{requestAnimationFrame(()=>c("open"))});return()=>cancelAnimationFrame(v)},[l]),j.useEffect(()=>{if(l)return document.body.style.overflow="hidden",()=>{document.body.style.overflow=""}},[l]),j.useEffect(()=>{if(!l)return;const v=_=>{_.key==="Escape"&&t()};return document.addEventListener("keydown",v),()=>document.removeEventListener("keydown",v)},[l,t]);const g=j.useCallback(v=>{v.propertyName==="transform"&&l==="exiting"&&c(null)},[l]);if(j.useEffect(()=>{if(l!=="exiting")return;const v=setTimeout(()=>c(null),Kh+50);return()=>clearTimeout(v)},[l]),!l)return null;const f=l==="entering"||l==="exiting",m=f?jT(d.current):"none",b=f?0:1;return ib.createPortal(p.jsx("div",{className:"fixed inset-0 z-50 overflow-auto p-10",style:{transformOrigin:"center center",transition:`transform ${Kh}ms ${V1}, opacity ${Kh}ms ${V1}`,transform:m,opacity:b,backgroundColor:"rgb(var(--lt-surface))"},onTransitionEnd:g,children:s}),document.body)}function TT({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4 6h16M4 12h8M4 18h12"})})}function NT({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M8 7l-5 5 5 5M16 7l5 5-5 5"})})}function kT({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M8 5H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2v-1M8 5a2 2 0 002 2h2a2 2 0 002-2M8 5a2 2 0 012-2h2a2 2 0 012 2m0 0h2a2 2 0 012 2v3"})})}function CT({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M5 13l4 4L19 7"})})}function MT({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9 9V4.5M9 9H4.5M9 9L3.5 3.5M9 15v4.5M9 15H4.5M9 15l-5.5 5.5M15 9h4.5M15 9V4.5M15 9l5.5-5.5M15 15h4.5M15 15v4.5m0-4.5l5.5 5.5"})})}function RT({className:i}){return p.jsx("svg",{className:i,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4 8V4m0 0h4M4 4l5 5m11-1V4m0 0h-4m4 0l-5 5M4 16v4m0 0h4m-4 0l5-5m11 5v-4m0 4h-4m4 0l-5-5"})})}function DT(i){const t=i.trim().split(`
|
|
57
|
+
`);if(t.length<2)return i;const r=y=>y.split("|").map(g=>g.trim()).filter(Boolean),s=r(t[0]),l=t.slice(2),c=s.map(y=>`<th class="px-3 py-1.5 text-left text-2xs font-semibold uppercase tracking-wider text-text-tertiary">${y}</th>`).join(""),d=l.map(y=>`<tr class="border-t border-surface-border">${r(y).map(m=>`<td class="px-3 py-1.5 text-xs text-text-secondary">${m}</td>`).join("")}</tr>`).join("");return`<table class="w-full my-3 text-xs"><thead><tr class="border-b border-surface-border">${c}</tr></thead><tbody>${d}</tbody></table>`}function Lc(i){return i.toLowerCase().replace(/<[^>]+>/g,"").replace(/[^\w\s-]/g,"").replace(/\s+/g,"-").trim()}function qT(i){const t=[];let r=i.replace(/```(\w*)\n([\s\S]*?)```/g,(g,f,m)=>{const b=t.length;return t.push(`<pre class="bg-surface-sunken rounded p-3 my-2 overflow-x-auto text-2xs leading-relaxed"><code>${m}</code></pre>`),`\0CODE${b}\0`});const s=/^(\|.+\|)\n(\|[-| :]+\|)\n((?:\|.+\|\n?)+)/gm;r=r.replace(s,(g,f,m,b)=>DT(`${f}
|
|
58
58
|
${m}
|
|
59
|
-
${b.trimEnd()}`)),r=r.replace(/`([^`]+)`/g,'<code class="bg-surface-sunken px-1 py-0.5 rounded text-2xs">$1</code>'),r=r.replace(/^#### (.+)$/gm,(y,f)=>`<h4 id="${Lc(f)}" class="text-xs font-semibold text-text-primary mt-4 mb-1">${f}</h4>`).replace(/^### (.+)$/gm,(y,f)=>`<h3 id="${Lc(f)}" class="text-sm font-semibold text-text-primary mt-5 mb-1.5">${f}</h3>`).replace(/^## (.+)$/gm,(y,f)=>`<h2 id="${Lc(f)}" class="text-base font-semibold text-text-primary mt-6 mb-2 pb-1 border-b border-surface-border">${f}</h2>`).replace(/^# (.+)$/gm,(y,f)=>`<h1 id="${Lc(f)}" class="text-lg font-bold text-text-primary mb-3">${f}</h1>`),r=r.replace(/\*\*(.+?)\*\*/g,"<strong>$1</strong>").replace(/\*(.+?)\*/g,"<em>$1</em>").replace(/\[([^\]]+)\]\(#([^)]+)\)/g,'<a data-anchor="$2" class="text-accent hover:underline cursor-pointer">$1</a>').replace(/\[([^\]]+)\]\(([^)]*\.md(?:#[^)]*)?)\)/g,'<a data-doc-link="$2" class="text-accent hover:underline cursor-pointer">$1</a>').replace(/\[([^\]]+)\]\(([^)]+)\)/g,'<a href="$2" class="text-accent hover:underline">$1</a>').replace(/^ - (.+)$/gm,'<li class="ml-8 list-disc text-xs -my-1" style="line-height:1.1">$1</li>').replace(/^ - (.+)$/gm,'<li class="ml-8 list-disc text-xs -my-1" style="line-height:1.1">$1</li>').replace(/^- (.+)$/gm,'<li class="ml-4 list-disc text-xs -my-1" style="line-height:1.1">$1</li>').replace(/^\d+\. (.+)$/gm,'<li class="ml-4 list-decimal text-xs -my-1" style="line-height:1.1">$1</li>').replace(/^---+$/gm,'<hr class="border-surface-border my-4" />').replace(/(?:^> (.+)$\n?)+/gm,y=>{const f=y.replace(/^> /gm,"").trim(),m=/⚠️|warning|caution/i.test(f),b=/note:|ℹ️|info/i.test(f);return`<div class="${m?"bg-status-warning/5":b?"bg-accent/5":"bg-surface-sunken/50"} ${m?"border-status-warning":b?"border-accent":"border-text-tertiary"} border-l-2 rounded-r-md px-3 py-2 my-3 text-xs text-text-secondary leading-relaxed">${f}</div>`}).replace(/\n\n/g,"\0PARA\0").replace(/\n/g,"<br/>");const l=y=>y.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),c=y=>new RegExp(`(${l(y)}[\\s\\S]*?<\\/li>(?:<br\\/>)?)+`,"g");r=r.replace(c('<li class="ml-8 list-disc'),y=>`<ul class="mb-3">${y}</ul>`),r=r.replace(c('<li class="ml-4 list-disc'),y=>`<ul class="mb-3">${y}</ul>`),r=r.replace(c('<li class="ml-4 list-decimal'),y=>`<ol class="list-decimal mb-3">${y}</ol>`),r=r.replace(/\x00CODE(\d+)\x00/g,(y,f)=>t[parseInt(f,10)]);const d="text-xs leading-relaxed text-text-secondary mb-2",g=/<\/(h[1-4]|pre|table|ul|ol|hr|div)>/;return r=r.split("\0PARA\0").map(y=>{const f=y.trim();if(!f)return"";const m=[];let b=f,v;for(;(v=g.exec(b))!==null;){const _=v.index+v[0].length;m.push(b.slice(0,_)),b=b.slice(_).replace(/^<br\/>/,"").trim(),g.lastIndex=0}return b&&m.push(b),m.map(_=>{const w=_.trim();return w?/^\s*<(h[1-4]|pre|table|ul|ol|hr|div)/.test(w)?w:`<p class="${d}">${w}</p>`:""}).join("")}).join(""),r}const LN=/(\*\*|^#{1,4}\s|^- |^\d+\.\s|```|^\|.*\|$|\[.+\]\(.+\))/m;function PN(i){return LN.test(i)}function bu({content:i,className:t,onClick:r}){const s=j.useMemo(()=>BN(i),[i]);return p.jsx("div",{className:t,onClick:r,dangerouslySetInnerHTML:{__html:s}})}function au({data:i,depth:t=0,generation:r}){const l=r!==void 0&&r>0&&r%2===1?!1:t>0,[c,d]=j.useState(l),[g,y]=j.useState(r);if(r!==void 0&&r!==g&&(y(r),d(r%2===0&&t>0)),i==null)return p.jsx("span",{className:"text-text-tertiary italic",children:"null"});if(typeof i=="string")return p.jsxs("span",{className:"text-text-primary",children:['"',i,'"']});if(typeof i=="number"||typeof i=="boolean")return p.jsx("span",{className:"text-text-primary font-medium",children:String(i)});if(Array.isArray(i))return i.length===0?p.jsx("span",{className:"text-text-tertiary",children:"[]"}):c?p.jsxs("button",{onClick:()=>d(!1),className:"text-text-secondary hover:text-text-primary",children:["[",i.length," items]"]}):p.jsxs("span",{children:[p.jsx("button",{onClick:()=>d(!0),className:"text-text-tertiary hover:text-text-primary",children:"["}),p.jsx("div",{className:"pl-4 border-l border-surface-border ml-1",children:i.map((f,m)=>p.jsxs("div",{children:[p.jsx(au,{data:f,depth:t+1,generation:r}),m<i.length-1&&p.jsx("span",{className:"text-text-tertiary",children:","})]},m))}),p.jsx("span",{className:"text-text-tertiary",children:"]"})]});if(typeof i=="object"){const f=Object.entries(i);return f.length===0?p.jsx("span",{className:"text-text-tertiary",children:"{}"}):c?p.jsxs("button",{onClick:()=>d(!1),className:"text-text-secondary hover:text-text-primary",children:["{","...","}"]}):p.jsxs("span",{children:[p.jsx("button",{onClick:()=>d(!0),className:"text-text-tertiary hover:text-text-primary",children:"{"}),p.jsx("div",{className:"pl-4 border-l border-surface-border ml-1",children:f.map(([m,b],v)=>p.jsxs("div",{children:[p.jsx("span",{className:"text-text-secondary",children:m}),p.jsx("span",{className:"text-text-tertiary",children:": "}),p.jsx(au,{data:b,depth:t+1,generation:r}),v<f.length-1&&p.jsx("span",{className:"text-text-tertiary",children:","})]},m))}),p.jsx("span",{className:"text-text-tertiary",children:"}"})]})}return p.jsx("span",{children:String(i)})}function co({data:i,depth:t=0}){if(i==null)return p.jsx("span",{className:"text-text-tertiary italic",children:"null"});if(typeof i=="string")return i.length>40&&PN(i)?p.jsx(bu,{content:i}):p.jsx("span",{className:"text-text-primary",children:i});if(typeof i=="number"||typeof i=="boolean")return p.jsx("span",{className:"text-text-primary font-medium",children:String(i)});if(Array.isArray(i))return i.length===0?p.jsx("span",{className:"text-text-tertiary italic",children:"empty list"}):p.jsx("div",{className:"space-y-2",children:i.map((r,s)=>p.jsxs("div",{className:"flex items-baseline gap-2",children:[p.jsxs("span",{className:"text-text-tertiary text-2xs shrink-0",children:[s+1,"."]}),p.jsx("div",{className:"flex-1",children:p.jsx(co,{data:r,depth:t+1})})]},s))});if(typeof i=="object"){const r=Object.entries(i);return r.length===0?p.jsx("span",{className:"text-text-tertiary italic",children:"empty"}):p.jsx("div",{className:t>0?"pl-4 border-l border-surface-border space-y-3":"space-y-3",children:r.map(([s,l])=>{const c=l===null||typeof l!="object";return p.jsxs("div",{children:[p.jsx("p",{className:"text-2xs font-semibold uppercase tracking-widest text-text-tertiary mb-0.5",children:s.replace(/[_-]/g," ")}),c?p.jsx("p",{className:"text-sm text-text-primary",children:p.jsx(co,{data:l,depth:t+1})}):p.jsx(co,{data:l,depth:t+1})]},s)})})}return p.jsx("span",{children:String(i)})}function Y1({mode:i,setMode:t,isCollapsed:r,onToggleCollapse:s,onCopy:l,copied:c,onFullscreen:d,onClose:g,large:y}){const f=y?"w-5 h-5":"w-3.5 h-3.5",m=`${y?"p-2":"p-1.5"} rounded text-accent/60 hover:text-accent hover:bg-surface-raised transition-colors duration-150`;return p.jsxs("div",{className:"flex items-center gap-0.5 bg-surface-sunken/80 rounded-md backdrop-blur-sm",children:[i==="json"&&p.jsx("button",{onClick:s,className:m,title:r?"Expand all":"Collapse all",children:r?p.jsx(DN,{className:f}):p.jsx(RN,{className:f})}),p.jsx("button",{onClick:()=>t(i==="json"?"tree":"json"),className:m,title:i==="json"?"Outline view":"JSON view",children:i==="json"?p.jsx(TN,{className:f}):p.jsx(kN,{className:f})}),p.jsx("button",{onClick:l,className:m,title:"Copy to clipboard",children:c?p.jsx(MN,{className:`${f} text-status-success`}):p.jsx(CN,{className:f})}),d&&p.jsx("button",{onClick:d,className:m,title:"Fullscreen",children:p.jsx(cb,{className:f})}),g&&p.jsx("button",{onClick:g,className:m,title:"Close (Esc)",children:p.jsx(ub,{className:f})})]})}function UN({data:i,label:t,variant:r,defaultCollapsed:s=!1,defaultMode:l}){const c=j.useRef(null),[d,g]=j.useState(l??"json"),[y,f]=j.useState(!1),[m,b]=j.useState(!1),[v,_]=j.useState(s?0:1),[w,S]=j.useState(1),M=v%2===0,B=w%2===0,U=j.useCallback(()=>_(G=>G+1),[]),re=j.useCallback(()=>S(G=>G+1),[]);let ce=i;if(typeof i=="string")try{ce=JSON.parse(i)}catch{}const C=async()=>{const G=typeof i=="string"?i:JSON.stringify(ce,null,2);await navigator.clipboard.writeText(G),f(!0),setTimeout(()=>f(!1),2e3)},P=j.useCallback(()=>{S(1),b(!0)},[]),ie=r==="panel",X=ie?"border border-accent-muted/40 rounded-lg p-3 bg-surface-hover/30":"",L=ie?"font-mono text-xs leading-relaxed bg-surface-raised rounded-md p-4 overflow-x-auto break-all":"font-mono text-xs leading-relaxed bg-surface-sunken border border-surface-border rounded-md p-4 overflow-x-auto break-all";return p.jsxs("div",{className:X,children:[t&&p.jsx(jN,{children:t}),p.jsxs("div",{ref:c,className:"relative",children:[p.jsx("div",{className:"absolute top-2 right-2 z-[5]",children:p.jsx(Y1,{mode:d,setMode:g,isCollapsed:M,onToggleCollapse:U,onCopy:C,copied:y,onFullscreen:P})}),p.jsx("div",{className:L,children:d==="json"?p.jsx(au,{data:ce,generation:v}):p.jsx(co,{data:ce})})]}),p.jsxs(zv,{open:m,onClose:()=>b(!1),sourceRef:c,children:[p.jsx("div",{className:"sticky top-0 float-right z-10",children:p.jsx(Y1,{mode:d,setMode:g,isCollapsed:B,onToggleCollapse:re,onCopy:C,copied:y,onClose:()=>b(!1),large:!0})}),p.jsx("div",{className:"font-mono text-sm leading-relaxed",children:d==="json"?p.jsx(au,{data:ce,generation:w}):p.jsx(co,{data:ce})})]})]})}const zN=100,K1=500;let IN=0;const Iv={"escalation.created":"text-status-active","escalation.claimed":"text-status-warning","escalation.released":"text-text-tertiary","escalation.resolved":"text-status-success","task.created":"text-accent","task.completed":"text-status-success","task.failed":"text-status-error","task.escalated":"text-status-warning","workflow.started":"text-accent","workflow.completed":"text-status-success","workflow.failed":"text-status-error","activity.started":"text-status-active","activity.completed":"text-status-success","activity.failed":"text-status-error","knowledge.stored":"text-accent","knowledge.deleted":"text-text-tertiary","agent.started":"text-accent","agent.completed":"text-status-success","agent.failed":"text-status-error","agent.status_changed":"text-status-active",milestone:"text-accent"};function $v(i){const t=i.split(".");return t[0]==="system"&&t.length>=3?`${t[1]}.${t[t.length-1]}`:i}function X1({event:i,forceExpanded:t=!1}){var v,_;const[r,s]=j.useState(t),l=Iv[$v(i.type)]||"text-text-tertiary";j.useEffect(()=>{s(t)},[t]);const c=t,d=c?"text-xs":"text-2xs",g=c?"text-xs":"text-2xs",y=c?"text-xs":"text-2xs",f=c?"w-3.5 h-3.5":"w-2.5 h-2.5",m=c?"py-2 px-4":"py-1 px-3",b=c?"pb-4 px-4":"pb-2 px-3";return p.jsxs("div",{className:"border-b border-surface-border/30 last:border-b-0",children:[p.jsxs("button",{onClick:()=>s(!r),className:`flex items-center gap-2 ${m} w-full text-left hover:bg-surface-hover/50 transition-colors`,children:[p.jsx("span",{className:`${d} font-mono text-text-tertiary whitespace-nowrap tabular-nums shrink-0`,children:new Date(i.timestamp).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit",second:"2-digit"})}),p.jsx("span",{className:`${g} font-medium px-1 py-0.5 rounded ${l} bg-surface-sunken whitespace-nowrap shrink-0`,children:i.type}),p.jsxs("span",{className:`${y} text-text-tertiary font-mono flex-1 min-w-0 truncate`,children:[(v=i.data)!=null&&v.workflowId?String(i.data.workflowId):"",(_=i.data)!=null&&_.escalationId?` esc:${String(i.data.escalationId).slice(0,12)}`:""]}),p.jsx("svg",{className:`${f} text-text-tertiary shrink-0 transition-transform duration-150 ${r?"rotate-180":""}`,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M19 9l-7 7-7-7"})})]}),p.jsx(Qd,{open:r,children:p.jsx("div",{className:b,children:p.jsx(UN,{data:i.data})})})]})}function $N({open:i,onToggle:t,configOpen:r,onToggleConfig:s}){const[l,c]=j.useState([]),[d,g]=j.useState(!1),[y,f]=j.useState(""),m=j.useRef(null),b=j.useRef(new Map),{subscribe:v}=j.useContext(Ks),{patterns:_,pagePattern:w,userPatterns:S,addPattern:M,removePattern:B}=AN(),U=j.useCallback(C=>{const P=String(C.type||"unknown");if(P.startsWith("mesh."))return;const ie=`${P}:${C.timestamp||""}:${C.escalationId||C.workflowId||C.taskId||""}`,X=Date.now(),L=b.current.get(ie);if(!(L&&X-L<K1)){if(b.current.set(ie,X),b.current.size>200)for(const[G,W]of b.current)X-W>K1*2&&b.current.delete(G);c(G=>[{id:++IN,type:P,timestamp:C.timestamp||new Date().toISOString(),data:C},...G].slice(0,zN))}},[]),re=j.useRef(U);re.current=U;const ce=i||d||r;return j.useEffect(()=>{if(!ce)return;const C=_.map(P=>v(P,ie=>re.current(ie)));return()=>C.forEach(P=>P())},[v,_.join(","),ce]),j.useEffect(()=>{i&&m.current&&(m.current.scrollTop=0)},[l.length,i]),p.jsxs("div",{className:"shrink-0 border-t border-surface-border bg-surface-raised",children:[p.jsxs("button",{onClick:t,className:"flex items-center gap-2 w-full px-4 py-1.5 text-left hover:bg-surface-hover transition-colors",children:[i?p.jsx(fb,{className:"w-3 h-3 text-text-tertiary"}):p.jsx(hb,{className:"w-3 h-3 text-text-tertiary"}),p.jsx("span",{className:"text-2xs font-semibold uppercase tracking-widest text-text-tertiary",children:"Event Stream"}),l.length>0&&p.jsxs("span",{className:"text-2xs text-text-tertiary",children:[l.length," events"]}),l.length>0&&!i&&p.jsx("span",{className:`text-2xs font-medium px-1 py-0.5 rounded ${Iv[$v(l[0].type)]||"text-text-tertiary"} bg-surface-sunken`,children:l[0].type}),p.jsxs("span",{className:"ml-auto flex items-center gap-1",children:[p.jsx("span",{className:`p-0.5 cursor-pointer ${r?"text-accent":"text-text-tertiary hover:text-text-primary"}`,title:"Subscription config",onClick:C=>{C.stopPropagation(),s()},children:p.jsx(kw,{className:"w-3 h-3"})}),l.length>0&&p.jsxs(p.Fragment,{children:[p.jsx("span",{className:"text-text-tertiary hover:text-text-primary p-0.5 cursor-pointer",title:"Fullscreen",onClick:C=>{C.stopPropagation(),g(!0)},children:p.jsx(cb,{className:"w-3 h-3"})}),p.jsx("span",{className:"text-text-tertiary hover:text-text-primary p-0.5 cursor-pointer",title:"Clear events",onClick:C=>{C.stopPropagation(),c([])},children:p.jsx(Cw,{className:"w-3 h-3"})})]})]})]}),r&&p.jsxs("div",{className:"px-4 py-2 border-t border-surface-border/50 bg-surface-sunken/30",children:[p.jsxs("div",{className:"flex flex-wrap items-center gap-1.5 mb-1.5",children:[p.jsx("span",{className:"text-2xs text-text-quaternary uppercase tracking-wider shrink-0",children:"Subscribed:"}),p.jsx("span",{className:"text-2xs font-mono text-accent px-1.5 py-0.5 bg-accent/10 rounded",children:w.replace("lt.events.","")}),S.map(C=>p.jsxs("span",{className:"inline-flex items-center gap-1 text-2xs font-mono text-text-secondary px-1.5 py-0.5 bg-surface-sunken rounded",children:[C.replace("lt.events.",""),p.jsx("button",{onClick:()=>B(C),className:"text-text-quaternary hover:text-status-error",children:p.jsx(Gt,{className:"w-2 h-2"})})]},C))]}),p.jsxs("div",{className:"flex items-center gap-2",children:[p.jsx("input",{type:"text",value:y,onChange:C=>f(C.target.value),onKeyDown:C=>{C.key==="Enter"&&y.trim()&&(M(y.trim()),f(""))},placeholder:"task.> or file.stored",className:"input text-2xs font-mono flex-1 py-1"}),p.jsxs("button",{onClick:()=>{y.trim()&&(M(y.trim()),f(""))},className:"text-2xs text-accent hover:text-accent-hover flex items-center gap-0.5",children:[p.jsx(lb,{className:"w-2.5 h-2.5"})," Add"]})]})]}),p.jsx(Qd,{open:i,children:p.jsx("div",{ref:m,className:"h-48 overflow-y-auto",children:l.length===0?p.jsx("p",{className:"text-2xs text-text-tertiary py-4 text-center",children:"Waiting for events..."}):l.map(C=>p.jsx(X1,{event:C},C.id))})}),p.jsxs(zv,{open:d,onClose:()=>g(!1),sourceRef:m,children:[p.jsx("div",{className:"sticky top-0 float-right z-10",children:p.jsx("button",{onClick:()=>g(!1),className:"p-2 rounded text-text-tertiary hover:text-text-primary hover:bg-surface-raised transition-colors duration-150 bg-surface-sunken/80 backdrop-blur-sm",title:"Close (Esc)",children:p.jsx(ub,{className:"w-5 h-5"})})}),l.length===0?p.jsx("p",{className:"text-sm text-text-tertiary py-8",children:"No events captured"}):l.map(C=>p.jsx(X1,{event:C,forceExpanded:!0},C.id))]})]})}function HN(){return dt({queryKey:["docs"],queryFn:()=>_e("/docs"),staleTime:5*6e4})}function GN(i){return dt({queryKey:["docs",i],queryFn:()=>_e(`/docs/read?path=${encodeURIComponent(i)}`),enabled:!!i,staleTime:5*6e4})}function FN(){const[i,t]=j.useState([]),[r,s]=j.useState([]),[l,c]=j.useState(null),d=j.useRef(l),g=j.useRef(i),y=j.useRef(r);d.current=l,g.current=i,y.current=r;const f=j.useCallback((w,S)=>{var B;const M=d.current;if(M){const U=((B=S==null?void 0:S.current)==null?void 0:B.scrollTop)??0;t([...g.current,{...M,scrollTop:U}])}s([]),c({path:w,scrollTop:0})},[]),m=j.useCallback(w=>{var U;const S=g.current;if(S.length===0)return;const M=S[S.length-1],B=d.current;if(B){const re=((U=w==null?void 0:w.current)==null?void 0:U.scrollTop)??0;s([...y.current,{...B,scrollTop:re}])}t(S.slice(0,-1)),c(M),requestAnimationFrame(()=>{w!=null&&w.current&&(w.current.scrollTop=M.scrollTop)})},[]),b=j.useCallback(w=>{var U;const S=y.current;if(S.length===0)return;const M=S[S.length-1],B=d.current;if(B){const re=((U=w==null?void 0:w.current)==null?void 0:U.scrollTop)??0;t([...g.current,{...B,scrollTop:re}])}s(S.slice(0,-1)),c(M),requestAnimationFrame(()=>{w!=null&&w.current&&(w.current.scrollTop=M.scrollTop)})},[]),v=j.useCallback(w=>{var B,U;const S=d.current;if(!S)return;const M=((B=w==null?void 0:w.current)==null?void 0:B.scrollTop)??0;t([...g.current,{...S,scrollTop:M}]),s([]),c({...S,scrollTop:((U=w==null?void 0:w.current)==null?void 0:U.scrollTop)??0})},[]),_=j.useCallback(()=>{t([]),s([]),c(null)},[]);return{current:l,backStack:i,forwardStack:r,navigate:f,goBack:m,goForward:b,pushScrollPosition:v,reset:_}}function VN(i,t){const[r,s]=i.split("#");let l=r;if(l.startsWith("./")||l.startsWith("../")){const d=((t?t.replace(/[^/]+$/,""):"")+l).split("/"),g=[];for(const y of d)y===".."?g.pop():y&&y!=="."&&g.push(y);l=g.join("/")}return{path:l,anchor:s}}function YN(i){if(!i.startsWith("#docs"))return null;const t=i.slice(1).split(":"),r=t[1]||"README.md",s=t[2]||void 0;return{path:r,anchor:s}}function KN(i){return!i||i==="README.md"?"#docs":`#docs:${i}`}function XN({content:i,currentPath:t,onNavigate:r,onAnchorClick:s}){const l=c=>{var f;const d=c.target,g=d.closest("[data-anchor]");if(g){c.preventDefault(),s();const m=g.dataset.anchor,b=(f=g.closest(".docs-content"))==null?void 0:f.querySelector(`#${CSS.escape(m)}`);b==null||b.scrollIntoView({behavior:"smooth",block:"start"});return}const y=d.closest("[data-doc-link]");if(y){c.preventDefault();const{path:m,anchor:b}=VN(y.dataset.docLink,t);r(m,b);return}};return p.jsx(bu,{content:i,className:"docs-content",onClick:l})}function JN(i){const t=[],r=new Map;for(const s of i){const l=s.path.split("/");if(l.length===1){t.push(s);continue}let c=r;for(let d=0;d<l.length-1;d++){const g=l[d];c.has(g)||c.set(g,{label:g,children:[],subdirs:new Map});const y=c.get(g);d===l.length-2?y.children.push(s):c=y.subdirs}}return{topLevel:t,dirs:r}}function QN({docs:i,selected:t,onSelect:r}){const{topLevel:s,dirs:l}=JN(i),c=g=>`block w-full text-left px-3 py-1 text-xs rounded truncate transition-colors ${t===g?"bg-accent/10 text-accent":"text-text-secondary hover:bg-surface-hover"}`;function d(g,y){return p.jsxs("details",{open:!0,children:[p.jsxs("summary",{className:"flex items-center gap-1.5 px-3 py-1 text-2xs font-semibold uppercase tracking-widest text-text-tertiary cursor-pointer",children:[p.jsx(Mw,{className:"w-3 h-3",strokeWidth:1.5}),g.label]}),p.jsxs("div",{className:"pl-2 space-y-0.5",children:[[...g.subdirs.values()].map(f=>d(f)),g.children.map(f=>p.jsx("button",{className:c(f.path),onClick:()=>r(f.path),children:f.title},f.path))]})]},g.label)}return p.jsxs("div",{className:"space-y-0.5",children:[s.map(g=>p.jsx("button",{className:c(g.path),onClick:()=>r(g.path),children:g.title},g.path)),[...l.values()].map(g=>d(g))]})}function ZN({open:i,onClose:t}){var ie,X,L;const[r,s]=j.useState(!1),{data:l}=HN(),c=FN(),{data:d,isLoading:g}=GN(((ie=c.current)==null?void 0:ie.path)??null),y=j.useRef(null),[f,m]=j.useState(null);j.useEffect(()=>{f&&(d!=null&&d.content)&&y.current&&requestAnimationFrame(()=>{var W;const G=(W=y.current)==null?void 0:W.querySelector(`#${CSS.escape(f)}`);G==null||G.scrollIntoView({behavior:"smooth",block:"start"}),m(null)})},[f,d]);const b=j.useCallback(()=>{var J;const G=YN(window.location.hash),W=(G==null?void 0:G.path)??"README.md";((J=c.current)==null?void 0:J.path)!==W&&c.navigate(W,y),G!=null&&G.anchor&&m(G.anchor)},[c]),v=j.useRef(!0);j.useEffect(()=>{if(!i||!c.current)return;if(v.current){v.current=!1;return}const G=KN(c.current.path);window.location.hash!==G&&window.history.replaceState(null,"",window.location.pathname+window.location.search+G)},[i,(X=c.current)==null?void 0:X.path]),j.useEffect(()=>{if(!i)return;const G=()=>{window.location.hash.startsWith("#docs")&&b()};return window.addEventListener("hashchange",G),()=>window.removeEventListener("hashchange",G)},[i,b]);const _=j.useCallback((G,W)=>{W&&m(W),c.navigate(G,y)},[c]),w=j.useCallback(G=>{c.navigate(G,y)},[c]),S=j.useCallback(()=>{c.goBack(y)},[c]),M=j.useCallback(()=>{c.goForward(y)},[c]),B=j.useCallback(()=>{c.pushScrollPosition(y)},[c]);if(j.useEffect(()=>{if(i){v.current=!0,b();const G=requestAnimationFrame(()=>s(!0));return()=>cancelAnimationFrame(G)}},[i]),!(i||r))return null;const re=()=>{s(!1),setTimeout(()=>{t(),c.reset()},200)},ce=((L=c.current)==null?void 0:L.path)??null,C=c.backStack.length>0,P=c.forwardStack.length>0;return p.jsxs("div",{className:"fixed inset-y-0 right-0 z-50 flex",children:[p.jsx("div",{className:`fixed inset-0 bg-black/20 transition-opacity duration-200 ${r&&i?"opacity-100":"opacity-0"}`,onClick:re}),p.jsxs("div",{className:`relative ml-auto w-[40vw] min-w-[800px] max-w-[90vw] h-full bg-surface-raised border-l border-surface-border flex flex-col shadow-xl transition-transform duration-200 ease-out ${r&&i?"translate-x-0":"translate-x-full"}`,children:[p.jsxs("div",{className:"flex items-center justify-between px-4 py-3 border-b border-surface-border shrink-0",children:[p.jsxs("div",{className:"flex items-center gap-1",children:[p.jsx("button",{onClick:S,disabled:!C,className:`p-0.5 transition-colors ${C?"text-text-tertiary hover:text-text-primary":"text-surface-border cursor-default"}`,title:"Back",children:p.jsx(sb,{className:"w-4 h-4"})}),p.jsx("button",{onClick:M,disabled:!P,className:`p-0.5 transition-colors ${P?"text-text-tertiary hover:text-text-primary":"text-surface-border cursor-default"}`,title:"Forward",children:p.jsx(Xh,{className:"w-4 h-4"})}),p.jsx(ob,{className:"w-4 h-4 text-accent ml-1",strokeWidth:1.5}),p.jsx("span",{className:"text-sm font-medium text-text-primary",children:"Documentation"})]}),p.jsx("button",{onClick:re,className:"p-1 text-text-tertiary hover:text-text-primary",children:p.jsx(Gt,{className:"w-4 h-4"})})]}),p.jsxs("div",{className:"flex flex-1 overflow-hidden",children:[p.jsx("div",{className:"w-48 shrink-0 border-r border-surface-border overflow-y-auto py-2",children:l!=null&&l.docs?p.jsx(QN,{docs:l.docs,selected:ce,onSelect:w}):p.jsx("div",{className:"px-3 py-2 text-xs text-text-tertiary",children:"Loading..."})}),p.jsx("div",{ref:y,className:"flex-1 overflow-y-auto px-6 py-4",children:ce?g?p.jsxs("div",{className:"animate-pulse space-y-2",children:[p.jsx("div",{className:"h-6 bg-surface-sunken rounded w-48"}),p.jsx("div",{className:"h-4 bg-surface-sunken rounded w-full"}),p.jsx("div",{className:"h-4 bg-surface-sunken rounded w-3/4"})]}):d!=null&&d.content?p.jsx(XN,{content:d.content,currentPath:ce,onNavigate:_,onAnchorClick:B}):p.jsx("p",{className:"text-xs text-text-tertiary",children:"Document not found."}):p.jsxs("div",{className:"flex flex-col items-center justify-center h-full text-text-tertiary",children:[p.jsx(Xh,{className:"w-5 h-5 mb-2"}),p.jsx("p",{className:"text-xs",children:"Select a document"})]})})]})]})]})}function WN(i){if(i.includes("/escalations"))return["escalation","human-queue"]}const J1=2e3;function eT(i){const r=i.filter(l=>!l.pending).slice(-8);return r.length===0?"":`[Prior conversation]
|
|
59
|
+
${b.trimEnd()}`)),r=r.replace(/`([^`]+)`/g,'<code class="bg-surface-sunken px-1 py-0.5 rounded text-2xs">$1</code>'),r=r.replace(/^#### (.+)$/gm,(g,f)=>`<h4 id="${Lc(f)}" class="text-xs font-semibold text-text-primary mt-4 mb-1">${f}</h4>`).replace(/^### (.+)$/gm,(g,f)=>`<h3 id="${Lc(f)}" class="text-sm font-semibold text-text-primary mt-5 mb-1.5">${f}</h3>`).replace(/^## (.+)$/gm,(g,f)=>`<h2 id="${Lc(f)}" class="text-base font-semibold text-text-primary mt-6 mb-2 pb-1 border-b border-surface-border">${f}</h2>`).replace(/^# (.+)$/gm,(g,f)=>`<h1 id="${Lc(f)}" class="text-lg font-bold text-text-primary mb-3">${f}</h1>`),r=r.replace(/\*\*(.+?)\*\*/g,"<strong>$1</strong>").replace(/\*(.+?)\*/g,"<em>$1</em>").replace(/\[([^\]]+)\]\(#([^)]+)\)/g,'<a data-anchor="$2" class="text-accent hover:underline cursor-pointer">$1</a>').replace(/\[([^\]]+)\]\(([^)]*\.md(?:#[^)]*)?)\)/g,'<a data-doc-link="$2" class="text-accent hover:underline cursor-pointer">$1</a>').replace(/\[([^\]]+)\]\(([^)]+)\)/g,'<a href="$2" class="text-accent hover:underline">$1</a>').replace(/^ - (.+)$/gm,'<li class="ml-8 list-disc text-xs -my-1" style="line-height:1.1">$1</li>').replace(/^ - (.+)$/gm,'<li class="ml-8 list-disc text-xs -my-1" style="line-height:1.1">$1</li>').replace(/^- (.+)$/gm,'<li class="ml-4 list-disc text-xs -my-1" style="line-height:1.1">$1</li>').replace(/^\d+\. (.+)$/gm,'<li class="ml-4 list-decimal text-xs -my-1" style="line-height:1.1">$1</li>').replace(/^---+$/gm,'<hr class="border-surface-border my-4" />').replace(/(?:^> (.+)$\n?)+/gm,g=>{const f=g.replace(/^> /gm,"").trim(),m=/⚠️|warning|caution/i.test(f),b=/note:|ℹ️|info/i.test(f);return`<div class="${m?"bg-status-warning/5":b?"bg-accent/5":"bg-surface-sunken/50"} ${m?"border-status-warning":b?"border-accent":"border-text-tertiary"} border-l-2 rounded-r-md px-3 py-2 my-3 text-xs text-text-secondary leading-relaxed">${f}</div>`}).replace(/\n\n/g,"\0PARA\0").replace(/\n/g,"<br/>");const l=g=>g.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),c=g=>new RegExp(`(${l(g)}[\\s\\S]*?<\\/li>(?:<br\\/>)?)+`,"g");r=r.replace(c('<li class="ml-8 list-disc'),g=>`<ul class="mb-3">${g}</ul>`),r=r.replace(c('<li class="ml-4 list-disc'),g=>`<ul class="mb-3">${g}</ul>`),r=r.replace(c('<li class="ml-4 list-decimal'),g=>`<ol class="list-decimal mb-3">${g}</ol>`),r=r.replace(/\x00CODE(\d+)\x00/g,(g,f)=>t[parseInt(f,10)]);const d="text-xs leading-relaxed text-text-secondary mb-2",y=/<\/(h[1-4]|pre|table|ul|ol|hr|div)>/;return r=r.split("\0PARA\0").map(g=>{const f=g.trim();if(!f)return"";const m=[];let b=f,v;for(;(v=y.exec(b))!==null;){const _=v.index+v[0].length;m.push(b.slice(0,_)),b=b.slice(_).replace(/^<br\/>/,"").trim(),y.lastIndex=0}return b&&m.push(b),m.map(_=>{const w=_.trim();return w?/^\s*<(h[1-4]|pre|table|ul|ol|hr|div)/.test(w)?w:`<p class="${d}">${w}</p>`:""}).join("")}).join(""),r}const BT=/(\*\*|^#{1,4}\s|^- |^\d+\.\s|```|^\|.*\|$|\[.+\]\(.+\))/m;function LT(i){return BT.test(i)}function bu({content:i,className:t,onClick:r}){const s=j.useMemo(()=>qT(i),[i]);return p.jsx("div",{className:t,onClick:r,dangerouslySetInnerHTML:{__html:s}})}function au({data:i,depth:t=0,generation:r}){const l=r!==void 0&&r>0&&r%2===1?!1:t>0,[c,d]=j.useState(l),[y,g]=j.useState(r);if(r!==void 0&&r!==y&&(g(r),d(r%2===0&&t>0)),i==null)return p.jsx("span",{className:"text-text-tertiary italic",children:"null"});if(typeof i=="string")return p.jsxs("span",{className:"text-text-primary",children:['"',i,'"']});if(typeof i=="number"||typeof i=="boolean")return p.jsx("span",{className:"text-text-primary font-medium",children:String(i)});if(Array.isArray(i))return i.length===0?p.jsx("span",{className:"text-text-tertiary",children:"[]"}):c?p.jsxs("button",{onClick:()=>d(!1),className:"text-text-secondary hover:text-text-primary",children:["[",i.length," items]"]}):p.jsxs("span",{children:[p.jsx("button",{onClick:()=>d(!0),className:"text-text-tertiary hover:text-text-primary",children:"["}),p.jsx("div",{className:"pl-4 border-l border-surface-border ml-1",children:i.map((f,m)=>p.jsxs("div",{children:[p.jsx(au,{data:f,depth:t+1,generation:r}),m<i.length-1&&p.jsx("span",{className:"text-text-tertiary",children:","})]},m))}),p.jsx("span",{className:"text-text-tertiary",children:"]"})]});if(typeof i=="object"){const f=Object.entries(i);return f.length===0?p.jsx("span",{className:"text-text-tertiary",children:"{}"}):c?p.jsxs("button",{onClick:()=>d(!1),className:"text-text-secondary hover:text-text-primary",children:["{","...","}"]}):p.jsxs("span",{children:[p.jsx("button",{onClick:()=>d(!0),className:"text-text-tertiary hover:text-text-primary",children:"{"}),p.jsx("div",{className:"pl-4 border-l border-surface-border ml-1",children:f.map(([m,b],v)=>p.jsxs("div",{children:[p.jsx("span",{className:"text-text-secondary",children:m}),p.jsx("span",{className:"text-text-tertiary",children:": "}),p.jsx(au,{data:b,depth:t+1,generation:r}),v<f.length-1&&p.jsx("span",{className:"text-text-tertiary",children:","})]},m))}),p.jsx("span",{className:"text-text-tertiary",children:"}"})]})}return p.jsx("span",{children:String(i)})}function co({data:i,depth:t=0}){if(i==null)return p.jsx("span",{className:"text-text-tertiary italic",children:"null"});if(typeof i=="string")return i.length>40&<(i)?p.jsx(bu,{content:i}):p.jsx("span",{className:"text-text-primary",children:i});if(typeof i=="number"||typeof i=="boolean")return p.jsx("span",{className:"text-text-primary font-medium",children:String(i)});if(Array.isArray(i))return i.length===0?p.jsx("span",{className:"text-text-tertiary italic",children:"empty list"}):p.jsx("div",{className:"space-y-2",children:i.map((r,s)=>p.jsxs("div",{className:"flex items-baseline gap-2",children:[p.jsxs("span",{className:"text-text-tertiary text-2xs shrink-0",children:[s+1,"."]}),p.jsx("div",{className:"flex-1",children:p.jsx(co,{data:r,depth:t+1})})]},s))});if(typeof i=="object"){const r=Object.entries(i);return r.length===0?p.jsx("span",{className:"text-text-tertiary italic",children:"empty"}):p.jsx("div",{className:t>0?"pl-4 border-l border-surface-border space-y-3":"space-y-3",children:r.map(([s,l])=>{const c=l===null||typeof l!="object";return p.jsxs("div",{children:[p.jsx("p",{className:"text-2xs font-semibold uppercase tracking-widest text-text-tertiary mb-0.5",children:s.replace(/[_-]/g," ")}),c?p.jsx("p",{className:"text-sm text-text-primary",children:p.jsx(co,{data:l,depth:t+1})}):p.jsx(co,{data:l,depth:t+1})]},s)})})}return p.jsx("span",{children:String(i)})}function Y1({mode:i,setMode:t,isCollapsed:r,onToggleCollapse:s,onCopy:l,copied:c,onFullscreen:d,onClose:y,large:g}){const f=g?"w-5 h-5":"w-3.5 h-3.5",m=`${g?"p-2":"p-1.5"} rounded text-accent/60 hover:text-accent hover:bg-surface-raised transition-colors duration-150`;return p.jsxs("div",{className:"flex items-center gap-0.5 bg-surface-sunken/80 rounded-md backdrop-blur-sm",children:[i==="json"&&p.jsx("button",{onClick:s,className:m,title:r?"Expand all":"Collapse all",children:r?p.jsx(RT,{className:f}):p.jsx(MT,{className:f})}),p.jsx("button",{onClick:()=>t(i==="json"?"tree":"json"),className:m,title:i==="json"?"Outline view":"JSON view",children:i==="json"?p.jsx(TT,{className:f}):p.jsx(NT,{className:f})}),p.jsx("button",{onClick:l,className:m,title:"Copy to clipboard",children:c?p.jsx(CT,{className:`${f} text-status-success`}):p.jsx(kT,{className:f})}),d&&p.jsx("button",{onClick:d,className:m,title:"Fullscreen",children:p.jsx(ub,{className:f})}),y&&p.jsx("button",{onClick:y,className:m,title:"Close (Esc)",children:p.jsx(fb,{className:f})})]})}function PT({data:i,label:t,variant:r,defaultCollapsed:s=!1,defaultMode:l}){const c=j.useRef(null),[d,y]=j.useState(l??"json"),[g,f]=j.useState(!1),[m,b]=j.useState(!1),[v,_]=j.useState(s?0:1),[w,S]=j.useState(1),M=v%2===0,B=w%2===0,U=j.useCallback(()=>_(G=>G+1),[]),re=j.useCallback(()=>S(G=>G+1),[]);let ce=i;if(typeof i=="string")try{ce=JSON.parse(i)}catch{}const C=async()=>{const G=typeof i=="string"?i:JSON.stringify(ce,null,2);await navigator.clipboard.writeText(G),f(!0),setTimeout(()=>f(!1),2e3)},P=j.useCallback(()=>{S(1),b(!0)},[]),ie=r==="panel",X=ie?"border border-accent-muted/40 rounded-lg p-3 bg-surface-hover/30":"",L=ie?"font-mono text-xs leading-relaxed bg-surface-raised rounded-md p-4 overflow-x-auto break-all":"font-mono text-xs leading-relaxed bg-surface-sunken border border-surface-border rounded-md p-4 overflow-x-auto break-all";return p.jsxs("div",{className:X,children:[t&&p.jsx(AT,{children:t}),p.jsxs("div",{ref:c,className:"relative",children:[p.jsx("div",{className:"absolute top-2 right-2 z-[5]",children:p.jsx(Y1,{mode:d,setMode:y,isCollapsed:M,onToggleCollapse:U,onCopy:C,copied:g,onFullscreen:P})}),p.jsx("div",{className:L,children:d==="json"?p.jsx(au,{data:ce,generation:v}):p.jsx(co,{data:ce})})]}),p.jsxs(Iv,{open:m,onClose:()=>b(!1),sourceRef:c,children:[p.jsx("div",{className:"sticky top-0 float-right z-10",children:p.jsx(Y1,{mode:d,setMode:y,isCollapsed:B,onToggleCollapse:re,onCopy:C,copied:g,onClose:()=>b(!1),large:!0})}),p.jsx("div",{className:"font-mono text-sm leading-relaxed",children:d==="json"?p.jsx(au,{data:ce,generation:w}):p.jsx(co,{data:ce})})]})]})}const UT=100,K1=500;let zT=0;const $v={"escalation.created":"text-status-active","escalation.claimed":"text-status-warning","escalation.released":"text-text-tertiary","escalation.resolved":"text-status-success","task.created":"text-accent","task.completed":"text-status-success","task.failed":"text-status-error","task.escalated":"text-status-warning","workflow.started":"text-accent","workflow.completed":"text-status-success","workflow.failed":"text-status-error","activity.started":"text-status-active","activity.completed":"text-status-success","activity.failed":"text-status-error","knowledge.stored":"text-accent","knowledge.deleted":"text-text-tertiary","agent.started":"text-accent","agent.completed":"text-status-success","agent.failed":"text-status-error","agent.status_changed":"text-status-active",milestone:"text-accent"};function Hv(i){const t=i.split(".");return t[0]==="system"&&t.length>=3?`${t[1]}.${t[t.length-1]}`:i}function X1({event:i,forceExpanded:t=!1}){var v,_;const[r,s]=j.useState(t),l=$v[Hv(i.type)]||"text-text-tertiary";j.useEffect(()=>{s(t)},[t]);const c=t,d=c?"text-xs":"text-2xs",y=c?"text-xs":"text-2xs",g=c?"text-xs":"text-2xs",f=c?"w-3.5 h-3.5":"w-2.5 h-2.5",m=c?"py-2 px-4":"py-1 px-3",b=c?"pb-4 px-4":"pb-2 px-3";return p.jsxs("div",{className:"border-b border-surface-border/30 last:border-b-0",children:[p.jsxs("button",{onClick:()=>s(!r),className:`flex items-center gap-2 ${m} w-full text-left hover:bg-surface-hover/50 transition-colors`,children:[p.jsx("span",{className:`${d} font-mono text-text-tertiary whitespace-nowrap tabular-nums shrink-0`,children:new Date(i.timestamp).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit",second:"2-digit"})}),p.jsx("span",{className:`${y} font-medium px-1 py-0.5 rounded ${l} bg-surface-sunken whitespace-nowrap shrink-0`,children:i.type}),p.jsxs("span",{className:`${g} text-text-tertiary font-mono flex-1 min-w-0 truncate`,children:[(v=i.data)!=null&&v.workflowId?String(i.data.workflowId):"",(_=i.data)!=null&&_.escalationId?` esc:${String(i.data.escalationId).slice(0,12)}`:""]}),p.jsx("svg",{className:`${f} text-text-tertiary shrink-0 transition-transform duration-150 ${r?"rotate-180":""}`,fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:p.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M19 9l-7 7-7-7"})})]}),p.jsx(Qd,{open:r,children:p.jsx("div",{className:b,children:p.jsx(PT,{data:i.data})})})]})}function IT({open:i,onToggle:t,configOpen:r,onToggleConfig:s}){const[l,c]=j.useState([]),[d,y]=j.useState(!1),[g,f]=j.useState(""),m=j.useRef(null),b=j.useRef(new Map),{subscribe:v}=j.useContext(Ks),{patterns:_,pagePattern:w,userPatterns:S,addPattern:M,removePattern:B}=OT(),U=j.useCallback(C=>{const P=String(C.type||"unknown");if(P.startsWith("mesh."))return;const ie=`${P}:${C.timestamp||""}:${C.escalationId||C.workflowId||C.taskId||""}`,X=Date.now(),L=b.current.get(ie);if(!(L&&X-L<K1)){if(b.current.set(ie,X),b.current.size>200)for(const[G,W]of b.current)X-W>K1*2&&b.current.delete(G);c(G=>[{id:++zT,type:P,timestamp:C.timestamp||new Date().toISOString(),data:C},...G].slice(0,UT))}},[]),re=j.useRef(U);re.current=U;const ce=i||d||r;return j.useEffect(()=>{if(!ce)return;const C=_.map(P=>v(P,ie=>re.current(ie)));return()=>C.forEach(P=>P())},[v,_.join(","),ce]),j.useEffect(()=>{i&&m.current&&(m.current.scrollTop=0)},[l.length,i]),p.jsxs("div",{className:"shrink-0 border-t border-surface-border bg-surface-raised",children:[p.jsxs("button",{onClick:t,className:"flex items-center gap-2 w-full px-4 py-1.5 text-left hover:bg-surface-hover transition-colors",children:[i?p.jsx(hb,{className:"w-3 h-3 text-text-tertiary"}):p.jsx(db,{className:"w-3 h-3 text-text-tertiary"}),p.jsx("span",{className:"text-2xs font-semibold uppercase tracking-widest text-text-tertiary",children:"Event Stream"}),l.length>0&&p.jsxs("span",{className:"text-2xs text-text-tertiary",children:[l.length," events"]}),l.length>0&&!i&&p.jsx("span",{className:`text-2xs font-medium px-1 py-0.5 rounded ${$v[Hv(l[0].type)]||"text-text-tertiary"} bg-surface-sunken`,children:l[0].type}),p.jsxs("span",{className:"ml-auto flex items-center gap-1",children:[p.jsx("span",{className:`p-0.5 cursor-pointer ${r?"text-accent":"text-text-tertiary hover:text-text-primary"}`,title:"Subscription config",onClick:C=>{C.stopPropagation(),s()},children:p.jsx(Nw,{className:"w-3 h-3"})}),l.length>0&&p.jsxs(p.Fragment,{children:[p.jsx("span",{className:"text-text-tertiary hover:text-text-primary p-0.5 cursor-pointer",title:"Fullscreen",onClick:C=>{C.stopPropagation(),y(!0)},children:p.jsx(ub,{className:"w-3 h-3"})}),p.jsx("span",{className:"text-text-tertiary hover:text-text-primary p-0.5 cursor-pointer",title:"Clear events",onClick:C=>{C.stopPropagation(),c([])},children:p.jsx(kw,{className:"w-3 h-3"})})]})]})]}),r&&p.jsxs("div",{className:"px-4 py-2 border-t border-surface-border/50 bg-surface-sunken/30",children:[p.jsxs("div",{className:"flex flex-wrap items-center gap-1.5 mb-1.5",children:[p.jsx("span",{className:"text-2xs text-text-quaternary uppercase tracking-wider shrink-0",children:"Subscribed:"}),p.jsx("span",{className:"text-2xs font-mono text-accent px-1.5 py-0.5 bg-accent/10 rounded",children:w.replace("lt.events.","")}),S.map(C=>p.jsxs("span",{className:"inline-flex items-center gap-1 text-2xs font-mono text-text-secondary px-1.5 py-0.5 bg-surface-sunken rounded",children:[C.replace("lt.events.",""),p.jsx("button",{onClick:()=>B(C),className:"text-text-quaternary hover:text-status-error",children:p.jsx(Gt,{className:"w-2 h-2"})})]},C))]}),p.jsxs("div",{className:"flex items-center gap-2",children:[p.jsx("input",{type:"text",value:g,onChange:C=>f(C.target.value),onKeyDown:C=>{C.key==="Enter"&&g.trim()&&(M(g.trim()),f(""))},placeholder:"task.> or file.stored",className:"input text-2xs font-mono flex-1 py-1"}),p.jsxs("button",{onClick:()=>{g.trim()&&(M(g.trim()),f(""))},className:"text-2xs text-accent hover:text-accent-hover flex items-center gap-0.5",children:[p.jsx(lb,{className:"w-2.5 h-2.5"})," Add"]})]})]}),p.jsx(Qd,{open:i,children:p.jsx("div",{ref:m,className:"h-48 overflow-y-auto",children:l.length===0?p.jsx("p",{className:"text-2xs text-text-tertiary py-4 text-center",children:"Waiting for events..."}):l.map(C=>p.jsx(X1,{event:C},C.id))})}),p.jsxs(Iv,{open:d,onClose:()=>y(!1),sourceRef:m,children:[p.jsx("div",{className:"sticky top-0 float-right z-10",children:p.jsx("button",{onClick:()=>y(!1),className:"p-2 rounded text-text-tertiary hover:text-text-primary hover:bg-surface-raised transition-colors duration-150 bg-surface-sunken/80 backdrop-blur-sm",title:"Close (Esc)",children:p.jsx(fb,{className:"w-5 h-5"})})}),l.length===0?p.jsx("p",{className:"text-sm text-text-tertiary py-8",children:"No events captured"}):l.map(C=>p.jsx(X1,{event:C,forceExpanded:!0},C.id))]})]})}function $T(){return lt({queryKey:["docs"],queryFn:()=>_e("/docs"),staleTime:5*6e4})}function HT(i){return lt({queryKey:["docs",i],queryFn:()=>_e(`/docs/read?path=${encodeURIComponent(i)}`),enabled:!!i,staleTime:5*6e4})}function GT(){const[i,t]=j.useState([]),[r,s]=j.useState([]),[l,c]=j.useState(null),d=j.useRef(l),y=j.useRef(i),g=j.useRef(r);d.current=l,y.current=i,g.current=r;const f=j.useCallback((w,S)=>{var B;const M=d.current;if(M){const U=((B=S==null?void 0:S.current)==null?void 0:B.scrollTop)??0;t([...y.current,{...M,scrollTop:U}])}s([]),c({path:w,scrollTop:0})},[]),m=j.useCallback(w=>{var U;const S=y.current;if(S.length===0)return;const M=S[S.length-1],B=d.current;if(B){const re=((U=w==null?void 0:w.current)==null?void 0:U.scrollTop)??0;s([...g.current,{...B,scrollTop:re}])}t(S.slice(0,-1)),c(M),requestAnimationFrame(()=>{w!=null&&w.current&&(w.current.scrollTop=M.scrollTop)})},[]),b=j.useCallback(w=>{var U;const S=g.current;if(S.length===0)return;const M=S[S.length-1],B=d.current;if(B){const re=((U=w==null?void 0:w.current)==null?void 0:U.scrollTop)??0;t([...y.current,{...B,scrollTop:re}])}s(S.slice(0,-1)),c(M),requestAnimationFrame(()=>{w!=null&&w.current&&(w.current.scrollTop=M.scrollTop)})},[]),v=j.useCallback(w=>{var B,U;const S=d.current;if(!S)return;const M=((B=w==null?void 0:w.current)==null?void 0:B.scrollTop)??0;t([...y.current,{...S,scrollTop:M}]),s([]),c({...S,scrollTop:((U=w==null?void 0:w.current)==null?void 0:U.scrollTop)??0})},[]),_=j.useCallback(()=>{t([]),s([]),c(null)},[]);return{current:l,backStack:i,forwardStack:r,navigate:f,goBack:m,goForward:b,pushScrollPosition:v,reset:_}}function FT(i,t){const[r,s]=i.split("#");let l=r;if(l.startsWith("./")||l.startsWith("../")){const d=((t?t.replace(/[^/]+$/,""):"")+l).split("/"),y=[];for(const g of d)g===".."?y.pop():g&&g!=="."&&y.push(g);l=y.join("/")}return{path:l,anchor:s}}function VT(i){if(!i.startsWith("#docs"))return null;const t=i.slice(1).split(":"),r=t[1]||"README.md",s=t[2]||void 0;return{path:r,anchor:s}}function YT(i){return!i||i==="README.md"?"#docs":`#docs:${i}`}function KT({content:i,currentPath:t,onNavigate:r,onAnchorClick:s}){const l=c=>{var f;const d=c.target,y=d.closest("[data-anchor]");if(y){c.preventDefault(),s();const m=y.dataset.anchor,b=(f=y.closest(".docs-content"))==null?void 0:f.querySelector(`#${CSS.escape(m)}`);b==null||b.scrollIntoView({behavior:"smooth",block:"start"});return}const g=d.closest("[data-doc-link]");if(g){c.preventDefault();const{path:m,anchor:b}=FT(g.dataset.docLink,t);r(m,b);return}};return p.jsx(bu,{content:i,className:"docs-content",onClick:l})}function XT(i){const t=[],r=new Map;for(const s of i){const l=s.path.split("/");if(l.length===1){t.push(s);continue}let c=r;for(let d=0;d<l.length-1;d++){const y=l[d];c.has(y)||c.set(y,{label:y,children:[],subdirs:new Map});const g=c.get(y);d===l.length-2?g.children.push(s):c=g.subdirs}}return{topLevel:t,dirs:r}}function JT({docs:i,selected:t,onSelect:r}){const{topLevel:s,dirs:l}=XT(i),c=y=>`block w-full text-left px-3 py-1 text-xs rounded truncate transition-colors ${t===y?"bg-accent/10 text-accent":"text-text-secondary hover:bg-surface-hover"}`;function d(y,g){return p.jsxs("details",{open:!0,children:[p.jsxs("summary",{className:"flex items-center gap-1.5 px-3 py-1 text-2xs font-semibold uppercase tracking-widest text-text-tertiary cursor-pointer",children:[p.jsx(Cw,{className:"w-3 h-3",strokeWidth:1.5}),y.label]}),p.jsxs("div",{className:"pl-2 space-y-0.5",children:[[...y.subdirs.values()].map(f=>d(f)),y.children.map(f=>p.jsx("button",{className:c(f.path),onClick:()=>r(f.path),children:f.title},f.path))]})]},y.label)}return p.jsxs("div",{className:"space-y-0.5",children:[s.map(y=>p.jsx("button",{className:c(y.path),onClick:()=>r(y.path),children:y.title},y.path)),[...l.values()].map(y=>d(y))]})}function QT({open:i,onClose:t}){var ie,X,L;const[r,s]=j.useState(!1),{data:l}=$T(),c=GT(),{data:d,isLoading:y}=HT(((ie=c.current)==null?void 0:ie.path)??null),g=j.useRef(null),[f,m]=j.useState(null);j.useEffect(()=>{f&&(d!=null&&d.content)&&g.current&&requestAnimationFrame(()=>{var W;const G=(W=g.current)==null?void 0:W.querySelector(`#${CSS.escape(f)}`);G==null||G.scrollIntoView({behavior:"smooth",block:"start"}),m(null)})},[f,d]);const b=j.useCallback(()=>{var J;const G=VT(window.location.hash),W=(G==null?void 0:G.path)??"README.md";((J=c.current)==null?void 0:J.path)!==W&&c.navigate(W,g),G!=null&&G.anchor&&m(G.anchor)},[c]),v=j.useRef(!0);j.useEffect(()=>{if(!i||!c.current)return;if(v.current){v.current=!1;return}const G=YT(c.current.path);window.location.hash!==G&&window.history.replaceState(null,"",window.location.pathname+window.location.search+G)},[i,(X=c.current)==null?void 0:X.path]),j.useEffect(()=>{if(!i)return;const G=()=>{window.location.hash.startsWith("#docs")&&b()};return window.addEventListener("hashchange",G),()=>window.removeEventListener("hashchange",G)},[i,b]);const _=j.useCallback((G,W)=>{W&&m(W),c.navigate(G,g)},[c]),w=j.useCallback(G=>{c.navigate(G,g)},[c]),S=j.useCallback(()=>{c.goBack(g)},[c]),M=j.useCallback(()=>{c.goForward(g)},[c]),B=j.useCallback(()=>{c.pushScrollPosition(g)},[c]);if(j.useEffect(()=>{if(i){v.current=!0,b();const G=requestAnimationFrame(()=>s(!0));return()=>cancelAnimationFrame(G)}},[i]),!(i||r))return null;const re=()=>{s(!1),setTimeout(()=>{t(),c.reset()},200)},ce=((L=c.current)==null?void 0:L.path)??null,C=c.backStack.length>0,P=c.forwardStack.length>0;return p.jsxs("div",{className:"fixed inset-y-0 right-0 z-50 flex",children:[p.jsx("div",{className:`fixed inset-0 bg-black/20 transition-opacity duration-200 ${r&&i?"opacity-100":"opacity-0"}`,onClick:re}),p.jsxs("div",{className:`relative ml-auto w-[40vw] min-w-[800px] max-w-[90vw] h-full bg-surface-raised border-l border-surface-border flex flex-col shadow-xl transition-transform duration-200 ease-out ${r&&i?"translate-x-0":"translate-x-full"}`,children:[p.jsxs("div",{className:"flex items-center justify-between px-4 py-3 border-b border-surface-border shrink-0",children:[p.jsxs("div",{className:"flex items-center gap-1",children:[p.jsx("button",{onClick:S,disabled:!C,className:`p-0.5 transition-colors ${C?"text-text-tertiary hover:text-text-primary":"text-surface-border cursor-default"}`,title:"Back",children:p.jsx(sb,{className:"w-4 h-4"})}),p.jsx("button",{onClick:M,disabled:!P,className:`p-0.5 transition-colors ${P?"text-text-tertiary hover:text-text-primary":"text-surface-border cursor-default"}`,title:"Forward",children:p.jsx(Xh,{className:"w-4 h-4"})}),p.jsx(ob,{className:"w-4 h-4 text-accent ml-1",strokeWidth:1.5}),p.jsx("span",{className:"text-sm font-medium text-text-primary",children:"Documentation"})]}),p.jsx("button",{onClick:re,className:"p-1 text-text-tertiary hover:text-text-primary",children:p.jsx(Gt,{className:"w-4 h-4"})})]}),p.jsxs("div",{className:"flex flex-1 overflow-hidden",children:[p.jsx("div",{className:"w-48 shrink-0 border-r border-surface-border overflow-y-auto py-2",children:l!=null&&l.docs?p.jsx(JT,{docs:l.docs,selected:ce,onSelect:w}):p.jsx("div",{className:"px-3 py-2 text-xs text-text-tertiary",children:"Loading..."})}),p.jsx("div",{ref:g,className:"flex-1 overflow-y-auto px-6 py-4",children:ce?y?p.jsxs("div",{className:"animate-pulse space-y-2",children:[p.jsx("div",{className:"h-6 bg-surface-sunken rounded w-48"}),p.jsx("div",{className:"h-4 bg-surface-sunken rounded w-full"}),p.jsx("div",{className:"h-4 bg-surface-sunken rounded w-3/4"})]}):d!=null&&d.content?p.jsx(KT,{content:d.content,currentPath:ce,onNavigate:_,onAnchorClick:B}):p.jsx("p",{className:"text-xs text-text-tertiary",children:"Document not found."}):p.jsxs("div",{className:"flex flex-col items-center justify-center h-full text-text-tertiary",children:[p.jsx(Xh,{className:"w-5 h-5 mb-2"}),p.jsx("p",{className:"text-xs",children:"Select a document"})]})})]})]})]})}function ZT(i){if(i.includes("/escalations"))return["escalation","human-queue"]}const J1=2e3;function WT(i){const r=i.filter(l=>!l.pending).slice(-8);return r.length===0?"":`[Prior conversation]
|
|
60
60
|
${r.map(l=>`${l.role==="user"?"User":"Assistant"}: ${l.content}`).join(`
|
|
61
61
|
`)}
|
|
62
62
|
[End prior conversation]
|
|
63
63
|
|
|
64
|
-
`}function
|
|
65
|
-
... (truncated)`});const ie=`${eT(l.concat(re))}${B}`;try{const G=(await _e("/insight/mcp-query",{method:"POST",body:JSON.stringify({prompt:ie,tags:C.suggestedTags,context:C,wait:!1,direct:!0})})).workflow_id;g(G),c(W=>W.map(J=>J.id===ce.id?{...J,workflowId:G}:J)),m.current&&clearInterval(m.current),m.current=setInterval(async()=>{var W;try{const J=await _e(`/workflows/${G}/result`),he=(W=J==null?void 0:J.result)==null?void 0:W.data;if(he){m.current&&clearInterval(m.current),m.current=null,g(null);const xe=tT(he);let Ne;try{Ne=(await _e(`/workflow-states/${G}/execution`)).duration_ms}catch{}c(Y=>Y.map(ae=>ae.id===ce.id?{...ae,content:xe,timestamp:new Date().toISOString(),pending:!1,durationMs:Ne}:ae))}}catch{}},3e3)}catch{c(L=>L.map(G=>G.id===ce.id?{...G,content:"Failed to submit query. Please try again.",pending:!1}:G))}},[l,b]),M=j.useCallback(async B=>{const U=l.find(C=>C.id===B);if(!(U!=null&&U.workflowId)||U.compilationStatus==="compiling"||U.compilationStatus==="done")return;const re=l.indexOf(U),ce=l.slice(0,re).reverse().find(C=>C.role==="user");if(ce){c(C=>C.map(P=>P.id===B?{...P,compilationStatus:"compiling"}:P));try{const C=await _e("/insight/mcp-query/describe",{method:"POST",body:JSON.stringify({prompt:ce.content,summary:U.content})}),P=await _e("/yaml-workflows",{method:"POST",body:JSON.stringify({workflow_id:U.workflowId,task_queue:"long-tail-system",workflow_name:"mcpQuery",name:C.tool_name,description:C.description,tags:C.tags,app_id:""})});await _e(`/yaml-workflows/${P.id}/deploy`,{method:"POST"}),c(ie=>ie.map(X=>X.id===B?{...X,compilationStatus:"done"}:X))}catch(C){const P=C instanceof Error?C.message:"Compilation failed";c(ie=>ie.map(X=>X.id===B?{...X,compilationStatus:"error",compilationError:P}:X))}}},[l]);return p.jsx(Hv.Provider,{value:{helpOpen:r,setHelpOpen:s,toggleHelp:v,messages:l,sendMessage:S,pageContext:b,setPageContext:_,activeWorkflowId:d,clearMessages:w,compileMessage:M},children:i})}function Gv(){const i=j.useContext(Hv);if(!i)throw new Error("useHelpAssistant must be used within HelpAssistantProvider");return i}function rT(){const{helpOpen:i,toggleHelp:t}=Gv();return p.jsx("button",{onClick:t,className:"fixed right-3 z-[45] flex items-center justify-center w-10 h-10 rounded-full bg-surface-raised shadow-lg hover:scale-110 transition-transform duration-150 border border-accent/30",style:{bottom:"44px"},"aria-label":i?"Close help":"Ask for help",children:i?p.jsx(Gt,{className:"w-5 h-5 text-text-tertiary",strokeWidth:1.5}):p.jsx("span",{role:"img","aria-label":"Help",className:"logo-mark w-8 h-8 -rotate-[120deg]",style:{"--logo-url":`url(${Tt}/logo512.png)`}})})}function iT({ms:i,className:t=""}){const r=qA(i),s=j.useMemo(()=>i==null?[]:[{label:"ms",value:String(i)},{label:"sec",value:`${(i/1e3).toFixed(3)}s`},{label:"text",value:r}],[i,r]);return i==null?p.jsx("span",{className:`text-xs text-text-tertiary ${t}`,children:"--"}):p.jsx(hv,{options:s,children:p.jsx("span",{className:`text-xs text-text-tertiary ${t}`,children:r})})}const sT=["sm","md","lg","full"],Q1={sm:"w-[28rem] max-h-[40vh]",md:"w-[36rem] max-h-[60vh]",lg:"w-[48rem] max-h-[80vh]",full:"inset-4 w-auto max-h-none"},Z1={sm:"Small",md:"Medium",lg:"Large",full:"Fullscreen"};function aT({which:i}){const t="stroke-current";switch(i){case"sm":return p.jsx("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",children:p.jsx("rect",{x:"5",y:"5",width:"7",height:"7",rx:"1.5",className:t,strokeWidth:"1.5"})});case"md":return p.jsx("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",children:p.jsx("rect",{x:"3",y:"3",width:"9",height:"9",rx:"1.5",className:t,strokeWidth:"1.5"})});case"lg":return p.jsx("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",children:p.jsx("rect",{x:"1.5",y:"1.5",width:"11",height:"11",rx:"1.5",className:t,strokeWidth:"1.5"})});case"full":return p.jsx("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",children:p.jsx("rect",{x:"0.75",y:"0.75",width:"12.5",height:"12.5",rx:"1.5",className:t,strokeWidth:"1.5"})})}}function oT({msg:i}){const[t,r]=j.useState(0);j.useEffect(()=>{const d=new Date(i.timestamp).getTime(),g=()=>r(Math.floor((Date.now()-d)/1e3));g();const y=setInterval(g,1e3);return()=>clearInterval(y)},[i.timestamp]);const s=Math.floor(t/60),l=t%60,c=s>0?`${s}m ${l}s`:`${l}s`;return p.jsxs("span",{className:"inline-flex flex-col gap-1.5",children:[p.jsxs("span",{className:"inline-flex items-center gap-1",children:[p.jsx("span",{className:"text-text-tertiary",children:"Thinking"}),p.jsx("span",{className:"inline-block w-1 h-1 rounded-full bg-text-tertiary animate-pulse"}),p.jsx("span",{className:"inline-block w-1 h-1 rounded-full bg-text-tertiary animate-pulse [animation-delay:150ms]"}),p.jsx("span",{className:"inline-block w-1 h-1 rounded-full bg-text-tertiary animate-pulse [animation-delay:300ms]"}),p.jsx("span",{className:"text-text-muted ml-1 tabular-nums",children:c})]}),i.workflowId&&p.jsxs(Ii,{to:`/workflows/executions/${i.workflowId}`,className:"inline-flex items-center gap-1 text-2xs text-accent/70 hover:text-accent transition-colors",children:[p.jsx(Ed,{className:"w-2.5 h-2.5",strokeWidth:1.5}),"watch execution"]})]})}function lT({msg:i,compileMessage:t}){const r=i.role==="assistant";return p.jsxs("div",{className:`flex items-center gap-1.5 ${r?"justify-start":"justify-end"}`,children:[p.jsx(dv,{date:i.timestamp,format:"time",className:"!text-2xs text-text-muted/50"}),i.durationMs!=null&&p.jsxs(p.Fragment,{children:[p.jsx("span",{className:"text-text-muted/30 text-2xs",children:"·"}),p.jsx(iT,{ms:i.durationMs,className:"!text-2xs text-text-muted/50"})]}),i.workflowId&&p.jsx(Ii,{to:`/workflows/executions/${i.workflowId}`,className:"text-text-muted/40 hover:text-accent transition-colors",title:"View workflow execution",children:p.jsx(Ed,{className:"w-2.5 h-2.5",strokeWidth:1.5})}),r&&i.workflowId&&!i.pending&&p.jsx("button",{onClick:()=>t(i.id),disabled:i.compilationStatus==="compiling"||i.compilationStatus==="done",className:"transition-colors",title:i.compilationStatus==="done"?"Compiled — future queries will match this pipeline":i.compilationStatus==="error"?i.compilationError??"Compilation failed":i.compilationStatus==="compiling"?"Compiling...":"Compile to fast pipeline",children:p.jsx(Rw,{className:`w-2.5 h-2.5 ${i.compilationStatus==="done"?"text-status-success":i.compilationStatus==="error"?"text-status-error":i.compilationStatus==="compiling"?"text-accent/40 animate-pulse":"text-text-muted/40 hover:text-accent"}`,strokeWidth:1.5})})]})}function cT(){const{helpOpen:i,setHelpOpen:t,messages:r,sendMessage:s,pageContext:l,activeWorkflowId:c,clearMessages:d,compileMessage:g}=Gv(),[y,f]=j.useState(""),[m,b]=j.useState("md"),[v,_]=j.useState(!0),w=j.useRef(null),S=j.useRef(null);if(j.useEffect(()=>{w.current&&(w.current.scrollTop=w.current.scrollHeight)},[r]),j.useEffect(()=>{i&&S.current&&S.current.focus()},[i]),j.useEffect(()=>{if(!i)return;const C=P=>{P.key==="Escape"&&(m==="full"?b("lg"):m==="lg"?b("md"):m==="md"?b("sm"):t(!1))};return document.addEventListener("keydown",C),()=>document.removeEventListener("keydown",C)},[i,m,t]),!i)return null;const M=()=>{const C=y.trim();!C||c||(s(C),f(""),S.current&&(S.current.style.height="auto"))},B=C=>{C.key==="Enter"&&!C.shiftKey&&(C.preventDefault(),M())},U=m==="full",re=l.page.replace(/-/g," "),ce=U?{}:{bottom:"108px"};return p.jsxs("div",{className:`fixed z-[45] flex flex-col border border-surface-border rounded-lg overflow-hidden transition-all duration-300 ${U?Q1.full:`right-6 ${Q1[m]}`} ${v?"bg-surface-raised shadow-xl":"bg-surface-raised/[0.03] shadow-lg shadow-black/5"}`,style:ce,onMouseEnter:()=>_(!0),onMouseLeave:()=>_(!1),children:[p.jsxs("div",{className:`flex items-center justify-between px-4 py-2.5 border-b border-surface-border shrink-0 transition-all duration-300 ${v?"opacity-100":"opacity-50 grayscale brightness-150"}`,children:[p.jsxs("div",{className:"min-w-0 flex-1",children:[p.jsx("p",{className:"text-xs font-medium text-text-primary truncate",children:"Help Assistant"}),p.jsx("p",{className:"text-2xs text-text-tertiary truncate",children:re})]}),p.jsxs("div",{className:"flex items-center gap-1 ml-2",children:[p.jsx("div",{className:"flex items-center gap-0.5 border border-surface-border rounded p-0.5",role:"radiogroup","aria-label":"Panel size",children:sT.map(C=>p.jsx("button",{onClick:()=>b(C),className:`p-1 rounded transition-colors ${C===m?"bg-accent/15 text-accent":"text-text-muted hover:text-text-secondary hover:bg-surface-hover"}`,role:"radio","aria-checked":C===m,"aria-label":Z1[C],title:Z1[C],children:p.jsx(aT,{which:C})},C))}),r.length>0&&p.jsx("button",{onClick:d,className:"p-1 text-text-tertiary hover:text-text-secondary transition-colors","aria-label":"Clear conversation",title:"Clear conversation",children:p.jsx(Dw,{className:"w-3.5 h-3.5",strokeWidth:1.5})}),p.jsx("button",{onClick:()=>t(!1),className:"p-1 text-text-tertiary hover:text-text-primary transition-colors","aria-label":"Close",title:"Close",children:p.jsx(Gt,{className:"w-3.5 h-3.5",strokeWidth:1.5})})]})]}),p.jsxs("div",{ref:w,className:`flex-1 overflow-y-auto px-4 py-3 space-y-3 min-h-[120px] transition-all duration-300 ${v?"opacity-100":"opacity-50 grayscale brightness-150"}`,children:[r.length===0&&p.jsx("p",{className:"text-xs text-text-tertiary text-center py-6",children:"Ask anything about what you're viewing."}),r.map(C=>p.jsxs("div",{className:`text-xs leading-relaxed ${C.role==="user"?"text-right":"text-left"}`,children:[p.jsx("div",{className:`inline-block max-w-[85%] px-3 py-2 rounded-md whitespace-pre-wrap ${C.role==="user"?"bg-accent/10 text-text-primary":"bg-surface-sunken text-text-secondary"}`,children:C.pending?p.jsx(oT,{msg:C}):C.role==="assistant"?p.jsx(bu,{content:C.content}):C.content}),!C.pending&&p.jsx("div",{className:"mt-0.5",children:p.jsx(lT,{msg:C,compileMessage:g})})]},C.id))]}),p.jsxs("div",{className:`border-t border-surface-border px-3 py-2.5 flex gap-2 shrink-0 transition-all duration-300 ${v?"opacity-100":"opacity-50 grayscale brightness-150"}`,children:[p.jsx("textarea",{ref:S,value:y,onChange:C=>{f(C.target.value);const P=C.target;P.style.height="auto",P.style.height=`${Math.min(P.scrollHeight,120)}px`},onKeyDown:B,placeholder:"Ask a question...",rows:2,className:"flex-1 resize-none bg-surface text-xs text-text-primary placeholder:text-text-tertiary rounded px-2.5 py-1.5 border border-surface-border focus:outline-none focus:border-accent",style:{minHeight:"2.5rem"},disabled:!!c}),p.jsx("button",{onClick:M,disabled:!y.trim()||!!c,className:"px-2.5 py-1.5 text-accent hover:text-accent-hover disabled:text-text-muted transition-colors self-end","aria-label":"Send",children:p.jsx(qw,{className:"w-4 h-4",strokeWidth:1.5})})]})]})}const uT=6e3,fT="scan";function hT(){const{lastResult:i}=Ov(),{open:t,ownerKey:r}=Kd(),[s,l]=j.useState(null);if(j.useEffect(()=>{if(!i)return;const d=setTimeout(()=>l(i.at),uT);return()=>clearTimeout(d)},[i]),!i||i.navigated||s===i.at||t&&r===fT)return null;const{response:c}=i;return p.jsx("div",{role:"status",className:"fixed bottom-14 right-4 z-[60] w-80 max-w-[calc(100vw-2rem)] bg-surface-raised border border-surface-border shadow-lg rounded-md animate-page-in",children:p.jsxs("div",{className:"flex items-start gap-2.5 px-3.5 py-3",children:[p.jsx(ou,{className:"w-4 h-4 mt-0.5 text-accent-muted shrink-0",strokeWidth:1.5}),p.jsxs("div",{className:"flex-1 min-w-0",children:[p.jsx("div",{className:"text-sm font-mono text-text-secondary truncate",children:i.code}),c?p.jsxs(p.Fragment,{children:[p.jsx("div",{className:`text-sm font-medium ${Dv[c.outcome]}`,children:qv(c)}),c.error&&p.jsx("div",{className:"text-xs text-text-tertiary mt-0.5",children:c.error}),su(c)&&p.jsx("div",{className:"text-xs text-text-secondary mt-1.5",children:p.jsx(Bv,{content:su(c),compact:!0})})]}):p.jsx("div",{className:"text-sm text-status-error",children:i.error})]}),p.jsx("button",{type:"button",onClick:()=>l(i.at),className:"text-text-tertiary hover:text-text-primary shrink-0",title:"Dismiss",children:p.jsx(Gt,{className:"w-3.5 h-3.5"})})]})})}const Fv="lt-announcement-dismissed:";function dT(i){return i.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}function mT(i){try{return localStorage.getItem(`${Fv}${i}`)==="1"}catch{return!1}}function pT(){const{isAuthenticated:i,userRoleNames:t}=Ft(),{data:r}=sv(i),s=rt(),[l,c]=j.useState(null),[d,g]=j.useState(0);r2(wO,()=>{s.invalidateQueries({queryKey:["announcements"]})});const y=Date.now(),f=((r==null?void 0:r.announcements)??[]).filter(b=>!mT(b.id)&&new Date(b.expires_at).getTime()>y&&(b.roles.length===0||b.roles.some(v=>t.includes(v))));if(j.useEffect(()=>{const b=((r==null?void 0:r.announcements)??[]).map(_=>new Date(_.expires_at).getTime()-Date.now()).filter(_=>_>0);if(b.length===0)return;const v=setTimeout(()=>g(_=>_+1),Math.min(...b)+250);return()=>clearTimeout(v)},[r,d]),f.length===0)return null;const m=b=>{try{localStorage.setItem(`${Fv}${b}`,"1")}catch{}g(v=>v+1)};return p.jsx("div",{"data-testid":"announcement-banner",className:"relative z-40",children:f.map(b=>{const v=l===b.id,_=b.title??b.body.split(`
|
|
66
|
-
`)[0];return p.jsxs("div",{className:"border-b border-accent/25 bg-accent/10",children:[p.jsxs("div",{className:"flex items-center gap-2 px-4 py-1.5",children:[p.jsx("span",{className:"text-2xs font-semibold uppercase tracking-widest text-accent",children:"Notice"}),p.jsxs("button",{type:"button",onClick:()=>c(v?null:b.id),className:"flex items-center gap-1.5 text-xs text-text-primary hover:text-accent transition-colors min-w-0",children:[p.jsx("span",{className:"truncate",children:_}),v?p.jsx(hb,{className:"w-3 h-3 shrink-0",strokeWidth:1.5}):p.jsx(fb,{className:"w-3 h-3 shrink-0",strokeWidth:1.5})]}),p.jsx("div",{className:"flex-1"}),p.jsx("button",{type:"button",onClick:()=>m(b.id),className:"icon-link",title:"Dismiss","aria-label":`Dismiss ${_}`,children:p.jsx(Gt,{className:"w-3.5 h-3.5",strokeWidth:1.5})})]}),v&&p.jsx("div",{className:"px-4 pb-3 text-sm text-text-secondary max-w-measure",children:p.jsx(bu,{content:dT(b.body)})})]},b.id)})})}function gT(){var C;const{isBuilder:i,isOps:t,viewAs:r}=Qb(),{canSeePaceBoard:s}=Zb();uO();const{data:l}=Wn(),c=Kb(),d=c!==null?c:!!((C=l==null?void 0:l.ai)!=null&&C.enabled),{collapsed:g,toggle:y}=Vd(),[f,m]=j.useState(!1),[b,v]=j.useState(!1),[_,w]=j.useState(!1),[S,M]=j.useState(()=>window.location.hash.startsWith("#docs")),B=gn(),U=j.useRef(null),{kiosk:re,homePath:ce}=hO();return j.useEffect(()=>{const P=U.current;P&&(P.classList.remove("animate-page-in"),P.offsetWidth,P.classList.add("animate-page-in"))},[B.pathname]),j.useEffect(()=>{const P=()=>{window.location.hash.startsWith("#docs")&&M(!0)};return window.addEventListener("hashchange",P),()=>window.removeEventListener("hashchange",P)},[]),re&&ce&&!mO(B.pathname)?p.jsx(In,{to:ce,replace:!0}):p.jsxs("div",{className:"h-screen bg-surface flex flex-col",children:[p.jsx(nN,{onToggleEventFeed:()=>m(P=>!P),onToggleDocs:()=>M(P=>!P),onToggleNav:re?void 0:()=>v(P=>!P)}),p.jsx(pT,{}),p.jsxs("div",{className:"flex flex-1 overflow-hidden",children:[!re&&p.jsxs("aside",{className:`${g?"w-16":"w-60"} shrink-0 bg-surface-raised border-r border-surface-border hidden lg:flex flex-col transition-[width] duration-200 ease-out overflow-hidden relative z-20`,children:[p.jsx("nav",{className:"flex-1 px-3 pt-[36px] pb-4 space-y-2 overflow-y-auto overflow-x-hidden",children:p.jsx(Pv,{aiEnabled:d,isBuilder:i,isOps:t,viewAs:r,canSeePaceBoard:s})}),p.jsx("button",{onClick:y,className:`shrink-0 py-3 text-text-tertiary hover:text-text-secondary transition-colors duration-150 ${g?"flex justify-center":"flex items-center px-7"}`,"aria-label":g?"Expand sidebar":"Collapse sidebar",children:g?p.jsx(Bw,{className:"w-4 h-4 text-accent-muted",strokeWidth:1.5}):p.jsx(Lw,{className:"w-4 h-4 text-accent-muted",strokeWidth:1.5})}),!g&&(l==null?void 0:l.environment)&&p.jsxs("div",{className:"shrink-0 px-5 pb-3 text-2xs leading-tight text-text-tertiary whitespace-nowrap overflow-hidden text-ellipsis",title:`long-tail v${l.environment.longTailVersion} · HotMesh v${l.environment.hotmeshVersion} · Node ${l.environment.nodeVersion} · ${l.environment.nodeEnv}`,children:["long-tail v",l.environment.longTailVersion,p.jsx("span",{className:"mx-1 text-surface-border",children:"·"}),"HotMesh v",l.environment.hotmeshVersion]})]}),p.jsx("main",{className:"flex-1 min-w-0 overflow-y-auto",children:p.jsx("div",{ref:U,className:"w-full px-page-x py-8 pb-16 animate-page-in h-full flex flex-col @container",children:p.jsx(Ls,{})})}),p.jsx(yT,{})]}),!re&&p.jsx(SN,{open:b,onClose:()=>v(!1),aiEnabled:d,isBuilder:i,isOps:t,viewAs:r,canSeePaceBoard:s}),p.jsx($N,{open:f,onToggle:()=>m(P=>!P),configOpen:_,onToggleConfig:()=>w(P=>!P)}),p.jsx(ZN,{open:S,onClose:()=>{M(!1),history.replaceState(null,"",window.location.pathname+window.location.search)}}),d&&p.jsx(rT,{}),d&&p.jsx(cT,{}),p.jsx(hT,{})]})}function yT(){const{node:i,width:t,open:r}=Kd();return p.jsx(vO,{open:r,width:t,className:"border-l border-surface-border bg-surface-raised",children:i})}function bT(){const{isAuthenticated:i}=Ft(),t=gn();return i?p.jsx(gO,{children:p.jsx(bO,{children:p.jsx(nT,{children:p.jsx(XA,{children:p.jsx(lj,{children:p.jsx(gT,{})})})})})}):p.jsx(In,{to:"/login",state:{from:t.pathname},replace:!0})}function Vv({provider:i,className:t="w-5 h-5"}){switch(i){case"google":return p.jsxs("svg",{className:t,viewBox:"0 0 24 24",fill:"currentColor",children:[p.jsx("path",{d:"M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 0 1-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z",fill:"#4285F4"}),p.jsx("path",{d:"M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z",fill:"#34A853"}),p.jsx("path",{d:"M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z",fill:"#FBBC05"}),p.jsx("path",{d:"M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z",fill:"#EA4335"})]});case"github":return p.jsx("svg",{className:t,viewBox:"0 0 24 24",fill:"currentColor",children:p.jsx("path",{d:"M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0 1 12 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0 0 22 12.017C22 6.484 17.522 2 12 2z"})});case"microsoft":return p.jsxs("svg",{className:t,viewBox:"0 0 24 24",fill:"currentColor",children:[p.jsx("path",{d:"M3 3h8.5v8.5H3z",fill:"#F25022"}),p.jsx("path",{d:"M12.5 3H21v8.5h-8.5z",fill:"#7FBA00"}),p.jsx("path",{d:"M3 12.5h8.5V21H3z",fill:"#00A4EF"}),p.jsx("path",{d:"M12.5 12.5H21V21h-8.5z",fill:"#FFB900"})]});case"anthropic":return p.jsx("svg",{className:t,viewBox:"0 0 24 24",fill:"currentColor",children:p.jsx("path",{d:"M13.827 3.52h3.603L24 20.48h-3.603l-6.57-16.96zm-7.258 0h3.767L16.906 20.48h-3.674l-1.343-3.461H6.396l-1.34 3.461H1.5l5.07-16.96zm2.327 5.14l-2.065 5.326h4.108l-2.043-5.326z"})});default:return p.jsxs("svg",{className:t,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:[p.jsx("circle",{cx:"12",cy:"12",r:"10"}),p.jsx("path",{d:"M12 8v4l3 3"})]})}}async function vT(){return _e("/auth/oauth/providers")}async function xT(i,t){const r=t?`?label=${encodeURIComponent(t)}`:"";return _e(`/auth/oauth/connections/${i}${r}`,{method:"DELETE"})}function gk(){return dt({queryKey:["oauth-connections"],queryFn:()=>_e("/auth/oauth/connections")})}function yk(){const i=rt();return mt({mutationFn:({provider:t,label:r})=>xT(t,r),onSuccess:()=>{i.invalidateQueries({queryKey:["oauth-connections"]})}})}function _T(){var ie;const{login:i,isAuthenticated:t}=Ft(),r=go(),s=gn(),l=new URLSearchParams(s.search),c=l.get("token"),d=l.get("error"),g=((ie=s.state)==null?void 0:ie.from)??l.get("returnTo")??"/",y=j.useRef(!1);c&&!y.current&&(y.current=!0,i(c,void 0,{displayName:l.get("displayName"),username:l.get("username")}));const[f,m]=j.useState(""),[b,v]=j.useState(""),[_,w]=j.useState(d||""),[S,M]=j.useState(!1),[B,U]=j.useState(!!c),[re,ce]=j.useState([]),C=j.useRef(!1);if(j.useEffect(()=>{c||C.current||(C.current=!0,(async()=>{var X,L,G,W;try{const J=await fetch(`${Tt}/api/settings`);if(!J.ok)return;const he=await J.json();if(!((X=he.auth)!=null&&X.sso))return;const xe=await fetch(`${Tt}/api/auth/sso`,{method:"POST"});if(!xe.ok){w("Host authentication required — please log in to your organization first");return}const Ne=await xe.json();Ne.token&&((L=he.auth)!=null&&L.ssoLogoutUrl&&sessionStorage.setItem("lt_sso_logout_url",he.auth.ssoLogoutUrl),U(!0),i(Ne.token,void 0,{displayName:(G=Ne.user)==null?void 0:G.display_name,username:(W=Ne.user)==null?void 0:W.external_id}))}catch{}})())},[]),j.useEffect(()=>{c||vT().then(ce).catch(()=>{})},[]),j.useEffect(()=>{if(!B)return;const X=setTimeout(()=>r(g,{replace:!0}),1500);return()=>clearTimeout(X)},[B]),t&&!B)return p.jsx(In,{to:g,replace:!0});const P=async X=>{var L,G;if(X.preventDefault(),w(""),!f.trim()||!b){w("Username and password are required");return}M(!0);try{const W=await fetch(`${Tt}/api/auth/login`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:f.trim(),password:b})}),J=await W.json();if(!W.ok){w(J.error||"Login failed");return}U(!0),i(J.token,{username:f.trim(),password:b},{displayName:(L=J.user)==null?void 0:L.display_name,username:(G=J.user)==null?void 0:G.external_id})}catch{w("Unable to connect to server")}finally{M(!1)}};return p.jsx("div",{className:"min-h-screen bg-surface flex items-center justify-center overflow-hidden",children:p.jsxs("div",{className:"w-full max-w-md p-10",children:[p.jsx("div",{className:`mb-10 transition-all duration-[1500ms] ease-in ${B?"translate-x-[120vw] -translate-y-[60vh] scale-[3] opacity-0":""}`,children:p.jsx(nu,{size:"lg",hideLabel:B})}),p.jsxs("form",{onSubmit:P,className:`space-y-5 transition-opacity duration-300 ${B?"opacity-0":""}`,children:[p.jsxs("div",{children:[p.jsx("label",{htmlFor:"username",className:"block text-sm font-medium text-text-secondary mb-2",children:"Username"}),p.jsx("input",{id:"username",type:"text",value:f,onChange:X=>m(X.target.value),className:"input",placeholder:"Enter your username",autoFocus:!B,autoComplete:"username"})]}),p.jsxs("div",{children:[p.jsx("label",{htmlFor:"password",className:"block text-sm font-medium text-text-secondary mb-2",children:"Password"}),p.jsx("input",{id:"password",type:"password",value:b,onChange:X=>v(X.target.value),className:"input",placeholder:"Enter your password",autoComplete:"current-password"})]}),_&&p.jsx("p",{className:"text-sm text-status-error",children:_}),p.jsx("button",{type:"submit",className:"btn-primary w-full",disabled:S||B,children:S?"Signing in...":"Sign In"}),re.length>0&&p.jsxs(p.Fragment,{children:[p.jsxs("div",{className:"flex items-center gap-3 mt-6",children:[p.jsx("div",{className:"flex-1 h-px bg-border"}),p.jsx("span",{className:"text-xs text-text-tertiary",children:"or continue with"}),p.jsx("div",{className:"flex-1 h-px bg-border"})]}),p.jsx("div",{className:"space-y-2",children:re.filter(X=>X.provider!=="anthropic").map(X=>p.jsxs("a",{href:`${Tt}/api/auth/oauth/${X.provider}?returnTo=${encodeURIComponent(g)}`,className:"btn-secondary w-full flex items-center justify-center gap-2",children:[p.jsx(Vv,{provider:X.provider}),"Sign in with ",X.name]},X.provider))})]})]})]})})}function W1(){const{isAuthenticated:i}=Ft(),t=go(),r=gn(),s=new URLSearchParams(r.search),l=s.get("state")||"";j.useEffect(()=>{i||t(`/login?returnTo=${encodeURIComponent(r.pathname+r.search)}`)},[i]);const[c,d]=j.useState(""),[g,y]=j.useState(s.get("label")||"default"),[f,m]=j.useState(""),[b,v]=j.useState(!1),_=c.trim().startsWith("sk-ant-oat"),w=c.trim().startsWith("sk-ant-api"),S=M=>{M.preventDefault();const B=c.trim();if(!B){m("A token or API key is required");return}if(!B.startsWith("sk-ant-")){m('Invalid format. Must start with "sk-ant-oat" (OAuth token) or "sk-ant-api" (API key)');return}v(!0),m("");const U=`${Tt}/api/auth/oauth/anthropic/callback?code=${encodeURIComponent(B)}&state=${encodeURIComponent(l)}`;window.location.href=U};return p.jsx("div",{className:"min-h-screen bg-surface flex items-center justify-center",children:p.jsxs("div",{className:"w-full max-w-md p-10",children:[p.jsx("div",{className:"mb-10",children:p.jsx(nu,{size:"lg"})}),p.jsxs("div",{className:"flex items-center gap-2 mb-6",children:[p.jsx(Vv,{provider:"anthropic",className:"w-6 h-6"}),p.jsx("h2",{className:"heading-3",children:"Connect Anthropic"})]}),p.jsx("p",{className:"text-sm text-text-secondary mb-4",children:"Connect your Anthropic account so Claude Code tasks run under your credentials. Your token is encrypted at rest."}),p.jsxs("form",{onSubmit:S,className:"space-y-5",children:[p.jsxs("div",{children:[p.jsx("label",{htmlFor:"token",className:"block text-sm font-medium text-text-secondary mb-2",children:"OAuth Token or API Key"}),p.jsx("input",{id:"token",type:"password",value:c,onChange:M=>d(M.target.value),className:"input",placeholder:"sk-ant-oat01-... or sk-ant-api03-...",autoFocus:!0,autoComplete:"off"}),_&&p.jsx("p",{className:"text-xs text-status-success mt-1",children:"OAuth token detected — uses your Claude subscription (flat rate)"}),w&&p.jsx("p",{className:"text-xs text-status-warning mt-1",children:"API key detected — billed per-token from your Anthropic API account"})]}),p.jsxs("div",{children:[p.jsx("label",{htmlFor:"label",className:"block text-sm font-medium text-text-secondary mb-2",children:"Label"}),p.jsx("input",{id:"label",type:"text",value:g,onChange:M=>y(M.target.value.replace(/\s+/g,"-").toLowerCase()),className:"input",placeholder:"default",autoComplete:"off"}),p.jsx("p",{className:"text-xs text-text-tertiary mt-1",children:'A name for this credential. Use different labels to store multiple credentials (e.g., "subscription", "api-batch").'})]}),f&&p.jsx("p",{className:"text-sm text-status-error",children:f}),p.jsx("button",{type:"submit",className:"btn-primary w-full",disabled:b,children:b?"Validating...":"Connect"}),p.jsx("a",{href:"/",className:"block text-center text-sm text-text-tertiary hover:text-text-secondary",children:"Cancel"})]}),p.jsxs("div",{className:"mt-6 space-y-3 text-xs text-text-tertiary",children:[p.jsxs("div",{children:[p.jsx("span",{className:"font-medium text-text-secondary",children:"Recommended:"})," ","Run"," ",p.jsx("code",{className:"px-1 py-0.5 bg-surface-sunken rounded text-2xs",children:"claude setup-token"})," ","in your terminal to generate an OAuth token that uses your subscription."]}),p.jsxs("div",{children:[p.jsx("span",{className:"font-medium text-text-secondary",children:"Alternative:"})," ","Use an API key from"," ",p.jsx("a",{href:"https://console.anthropic.com/settings/keys",target:"_blank",rel:"noopener noreferrer",className:"text-accent-secondary hover:underline",children:"console.anthropic.com"})," ","(billed per-token)."]})]})]})})}function Pc({roleTypes:i,roleNames:t,redirectTo:r="/"}){const{isSuperAdmin:s,hasRole:l,hasRoleType:c}=Ft();return s?p.jsx(Ls,{}):i&&i.some(d=>c(d))?p.jsx(Ls,{}):t&&t.some(d=>l(d))?p.jsx(Ls,{}):p.jsx(In,{to:r,replace:!0})}function wT({redirectTo:i="/"}){var s;const{data:t,isLoading:r}=Wn();return r||!t?null:(s=t.ai)!=null&&s.enabled?p.jsx(Ls,{}):p.jsx(In,{to:i,replace:!0})}function ST({flag:i,redirectTo:t="/"}){var l;const{data:r,isLoading:s}=Wn();return s||!r?null:((l=r.features)==null?void 0:l[i])===!1?p.jsx(In,{to:t,replace:!0}):p.jsx(Ls,{})}const ET=j.lazy(()=>we(()=>import("./ProcessesListPage-Ch2tSICc.js"),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17]),import.meta.url).then(i=>({default:i.ProcessesListPage}))),OT=j.lazy(()=>we(()=>import("./ProcessDetailPage-DS_t9DcR.js"),__vite__mapDeps([18,1,2,4,19,14,20,17,11,6,21,22,23]),import.meta.url).then(i=>({default:i.ProcessDetailPage}))),AT=j.lazy(()=>we(()=>import("./McpOverview-C2atR_B6.js"),__vite__mapDeps([24,1,25,26,27,28,15,14,29,6]),import.meta.url).then(i=>({default:i.McpOverview}))),jT=j.lazy(()=>we(()=>import("./McpRunsPage-BwsgvGtg.js"),__vite__mapDeps([30,1,26,27,5,6,31,28,8,9,10,17,14,32,15,13,12,16,33]),import.meta.url).then(i=>({default:i.McpRunsPage}))),NT=j.lazy(()=>we(()=>import("./McpRunDetailPage-Bo9vXQBA.js"),__vite__mapDeps([34,1,26,15,14,35,36,13,37,20,6,38,16,39]),import.meta.url).then(i=>({default:i.McpRunDetailPage}))),TT=j.lazy(()=>we(()=>import("./McpQueryPage-CM_Fgl9G.js"),__vite__mapDeps([40,1,15,14,9,10,13,12,16,8,11,32,17,33,5,6,4,41]),import.meta.url).then(i=>({default:i.McpQueryPage}))),kT=j.lazy(()=>we(()=>import("./McpQueryDetailPage-BUxPspjB.js"),__vite__mapDeps([42,1,15,14,20,41,6,27,4,43,44,26,3,2,45,46,47,48,49,50,39,51,37,38]),import.meta.url).then(i=>({default:i.McpQueryDetailPage}))),CT=j.lazy(()=>we(()=>import("./EscalationsOverview-CDJ5wRlq.js"),__vite__mapDeps([52,1,4,15,14,29,6]),import.meta.url).then(i=>({default:i.EscalationsOverview}))),MT=j.lazy(()=>we(()=>import("./AvailableEscalationsPage-C9VKPhD6.js"),__vite__mapDeps([53,1,54,4,14,55,56,6,23,57,7,58,59,13,60,21,17,61,9,10,20,12,5,8,33,16]),import.meta.url).then(i=>({default:i.AvailableEscalationsPage}))),RT=j.lazy(()=>we(()=>import("./OperatorDashboard-CKjrYYFi.js"),__vite__mapDeps([62,1,4,5,6,7,8,54,9,10,12,33,58,14,59,13,60,21,17,61,20,56,16]),import.meta.url).then(i=>({default:i.OperatorDashboard}))),DT=j.lazy(()=>we(()=>import("./index-Ds5rGe-i.js"),__vite__mapDeps([63,1,55,56,6,23,57,7,15,14,16,61,9,10,20,12,3,4,21,39,22,64]),import.meta.url).then(i=>({default:i.EscalationDetailPage}))),qT=j.lazy(()=>we(()=>import("./WorkflowsOverview-DACADuUE.js"),__vite__mapDeps([65,1,3,4,15,14,29,6]),import.meta.url).then(i=>({default:i.WorkflowsOverview}))),BT=j.lazy(()=>we(()=>import("./index-B6Grf1WQ.js"),__vite__mapDeps([66,1,3,15,14,13,17,67,48,49,6]),import.meta.url).then(i=>({default:i.StartWorkflowPage}))),LT=j.lazy(()=>we(()=>import("./index-B6Grf1WQ.js"),__vite__mapDeps([66,1,3,15,14,13,17,67,48,49,6]),import.meta.url).then(i=>({default:i.DurableInvokePage}))),PT=j.lazy(()=>we(()=>import("./WorkflowsDashboard-DkyGkxW1.js"),__vite__mapDeps([68,1,32,3,31,28,6,4,5,8,9,10,17,14,15,13,12,16,33]),import.meta.url).then(i=>({default:()=>i.WorkflowsDashboard({tier:"durable"})}))),UT=j.lazy(()=>we(()=>import("./WorkflowsDashboard-DkyGkxW1.js"),__vite__mapDeps([68,1,32,3,31,28,6,4,5,8,9,10,17,14,15,13,12,16,33]),import.meta.url).then(i=>({default:()=>i.WorkflowsDashboard({tier:"all"})}))),zT=j.lazy(()=>we(()=>import("./YamlWorkflowsPage-CqoSFz5B.js"),__vite__mapDeps([69,1,27,5,6,15,14,13,10,50,67,20]),import.meta.url).then(i=>({default:i.YamlWorkflowsPage}))),IT=j.lazy(()=>we(()=>import("./GraphInvokePage-DSlyTmyq.js"),__vite__mapDeps([70,1,27,15,14,45,47,48,49,46,6,50,67]),import.meta.url).then(i=>({default:i.GraphInvokePage}))),$T=j.lazy(()=>we(()=>import("./YamlWorkflowDetailPage-DSAjzido.js"),__vite__mapDeps([71,1,27,20,67,14,6]),import.meta.url).then(i=>({default:i.YamlWorkflowDetailPage}))),HT=j.lazy(()=>we(()=>import("./TasksListPage-jc4Xk7kI.js"),__vite__mapDeps([72,1,2,3,5,6,9,10,20,60,51,12,13,14,15,17]),import.meta.url).then(i=>({default:i.TasksListPage}))),GT=j.lazy(()=>we(()=>import("./TaskDetailPage-U19sJHAI.js"),__vite__mapDeps([73,1,2,20,60,15,14,6]),import.meta.url).then(i=>({default:i.TaskDetailPage}))),eb=j.lazy(()=>we(()=>import("./WorkflowExecutionPage-CldfHwky.js"),__vite__mapDeps([74,1,3,4,36,13,14,37,20,6,38,2,15,35,16,39]),import.meta.url).then(i=>({default:i.WorkflowExecutionPage}))),FT=j.lazy(()=>we(()=>import("./AdminDashboard-BS3wd7Zg.js"),__vite__mapDeps([75,1,2,4,25,19,14,6]),import.meta.url).then(i=>({default:i.AdminDashboard}))),VT=j.lazy(()=>we(()=>import("./index-DAUV3eJ-.js"),__vite__mapDeps([76,1,3,9,10,13,14,33,5,6,15,77,17]),import.meta.url).then(i=>({default:i.WorkersPage}))),YT=j.lazy(()=>we(()=>import("./index-C_y0lQ_o.js"),__vite__mapDeps([78,1,3,13,14,79,56,6,21,17,15,48,49,67]),import.meta.url).then(i=>({default:i.WorkflowConfigsPage}))),tb=j.lazy(()=>we(()=>import("./index-C_y0lQ_o.js"),__vite__mapDeps([78,1,3,13,14,79,56,6,21,17,15,48,49,67]),import.meta.url).then(i=>({default:i.WorkflowConfigDetailPage}))),KT=j.lazy(()=>we(()=>import("./index-Uk6N1qiH.js"),__vite__mapDeps([80,1,25,10,79,56,6,15,14,13,12,5,81,47,48,49,50,46,33,20]),import.meta.url).then(i=>({default:i.McpServersPage}))),nb=j.lazy(()=>we(()=>import("./index-Bxd2sXqz.js"),__vite__mapDeps([82,1,25,15,14,43,6]),import.meta.url).then(i=>({default:i.McpServerDetailPage}))),XT=j.lazy(()=>we(()=>import("./index-DyTb77Jb.js"),__vite__mapDeps([83,1,23,5,6,9,10,12,13,14,79,56,33,15,21,49,51,84,85,35]),import.meta.url).then(i=>({default:i.UsersPage}))),JT=j.lazy(()=>we(()=>import("./RolesPage-CK6FjD5P.js"),__vite__mapDeps([86,1,13,14,15,21,56,6]),import.meta.url).then(i=>({default:i.RolesPage}))),QT=j.lazy(()=>we(()=>import("./RoleDetailPage-DVbtnTvn.js"),__vite__mapDeps([87,1,23,88,79,56,6,14]),import.meta.url).then(i=>({default:i.RoleDetailPage}))),ZT=j.lazy(()=>we(()=>import("./PersonasPage-62hANmNf.js"),__vite__mapDeps([89,1,84,13,14,15,21,56,6,23,7]),import.meta.url).then(i=>({default:i.PersonasPage}))),WT=j.lazy(()=>we(()=>import("./PersonaDetailPage-BsIPtBxZ.js"),__vite__mapDeps([90,1,84,21,14,85,88,79,56,6]),import.meta.url).then(i=>({default:i.PersonaDetailPage}))),e3=j.lazy(()=>we(()=>import("./EscalationSchemaPage-83n5JyAh.js"),__vite__mapDeps([91,1,14,6]),import.meta.url).then(i=>({default:i.EscalationSchemaPage}))),t3=j.lazy(()=>we(()=>import("./EscalationListSchemaPage-BPr7Ou8c.js"),__vite__mapDeps([92,1,14,6]),import.meta.url).then(i=>({default:i.EscalationListSchemaPage}))),n3=j.lazy(()=>we(()=>import("./ScanCodesPage-CDqLJuCq.js"),__vite__mapDeps([93,1,15,14,6]),import.meta.url).then(i=>({default:i.ScanCodesPage}))),r3=j.lazy(()=>we(()=>import("./ScanSchemeDetailPage-DO6qtJdM.js"),__vite__mapDeps([94,1,79,56,6,15,14]),import.meta.url).then(i=>({default:i.ScanSchemeDetailPage}))),i3=j.lazy(()=>we(()=>import("./ScanStationPage-ID3xMhds.js"),__vite__mapDeps([95,1,14,56,6,64]),import.meta.url).then(i=>({default:i.ScanStationPage}))),s3=j.lazy(()=>we(()=>import("./index-COKZW8Xx.js"),__vite__mapDeps([96,1,15,14,56,6,57]),import.meta.url).then(i=>({default:i.MaintenancePage}))),a3=j.lazy(()=>we(()=>import("./OperationsPage-BftWAJ9m.js").then(i=>i.O),__vite__mapDeps([97,1,4,59,14,6,15]),import.meta.url).then(i=>({default:i.OperationsPage}))),o3=j.lazy(()=>we(()=>import("./index-Bf3hVGXZ.js"),__vite__mapDeps([98,1,19,14,13,5,6,31,28,56,44,77,9,10,33]),import.meta.url).then(i=>({default:i.ControlPlanePage}))),l3=j.lazy(()=>we(()=>import("./index-X3_AxcUk.js"),__vite__mapDeps([99,1,38,14,5,6,31,28,8,9,10,12,13,15,16]),import.meta.url).then(i=>({default:i.StreamMessagesPage}))),c3=j.lazy(()=>we(()=>import("./CredentialsPage-CAmDMnzV.js"),__vite__mapDeps([100,1,15,14,51,79,56,6]),import.meta.url).then(i=>({default:i.CredentialsPage}))),u3=j.lazy(()=>we(()=>import("./index-DVtIMrTb.js"),__vite__mapDeps([101,1,6,15,14,13,16,8,10,102,51]),import.meta.url).then(i=>({default:i.FilesPage}))),f3=j.lazy(()=>we(()=>import("./index-nUmEwQrg.js"),__vite__mapDeps([103,1,15,14,13,16,12,10,102,51,104,43,6]),import.meta.url).then(i=>({default:i.KnowledgePage}))),h3=j.lazy(()=>we(()=>import("./HomePage-DXzDBkQV.js"),__vite__mapDeps([105,1,3,26,28,4,21,14,17,16,97,59,6,15,54]),import.meta.url).then(i=>({default:i.HomePage}))),d3=j.lazy(()=>we(()=>import("./AgentsPage-vtxdvdrQ.js"),__vite__mapDeps([106,1,107,4,5,6,8,9,10,12,13,14,15,16]),import.meta.url).then(i=>({default:i.AgentsPage}))),m3=j.lazy(()=>we(()=>import("./AgentDetailPage-B6uvDnMF.js"),__vite__mapDeps([108,1,107,109,14,4,17,6]),import.meta.url).then(i=>({default:i.AgentDetailPage}))),rb=j.lazy(()=>we(()=>import("./AgentConfigPage-4C9aU0dj.js"),__vite__mapDeps([110,1,107,109,14,15,104,47,48,49,3,27,111,112,17,6]),import.meta.url).then(i=>({default:i.AgentConfigPage}))),p3=j.lazy(()=>we(()=>import("./CapabilitiesPage-Bkbq_GO6.js"),__vite__mapDeps([113,1,111,81,25,47,48,49,14,50,6,46,15,13]),import.meta.url).then(i=>({default:i.CapabilitiesPage}))),g3=j.lazy(()=>we(()=>import("./TopicsPage-BT9LV3yH.js"),__vite__mapDeps([114,1,112,15,14,13,6]),import.meta.url).then(i=>({default:i.TopicsPage}))),y3=j.lazy(()=>we(()=>import("./TopicDetailPage-D8GcDu_0.js"),__vite__mapDeps([115,1,112,16,14,6]),import.meta.url).then(i=>({default:i.TopicDetailPage})));function b3(){return p.jsxs("div",{className:"animate-pulse space-y-4",children:[p.jsx("div",{className:"h-8 bg-surface-sunken rounded w-48"}),p.jsx("div",{className:"h-40 bg-surface-sunken rounded"})]})}function be({children:i}){return p.jsx(j.Suspense,{fallback:p.jsx(b3,{}),children:p.jsx("div",{className:"animate-page-enter flex flex-col flex-1 min-h-0",children:i})})}const Yv=new sw({defaultOptions:{queries:{staleTime:1e4,retry:(i,t)=>t instanceof Error&&t.message==="Session expired"?!1:i<1}}});window.addEventListener("auth:unauthorized",()=>{Yv.clear(),sessionStorage.removeItem("lt_token"),sessionStorage.removeItem("lt_credentials"),sessionStorage.removeItem("lt_user_info");const i=window.__LT_BASE__||"",t=`${i}/login`;if(window.location.pathname!==t){const r=window.location.pathname+window.location.search,s=i&&r.startsWith(i)?r.slice(i.length)||"/":r;window.location.href=`${t}?returnTo=${encodeURIComponent(s)}`}});const v3=lw([{path:"/login",element:p.jsx(_T,{})},{path:"/connect/anthropic",element:p.jsx(W1,{})},{path:"/connect/:provider",element:p.jsx(W1,{})},{path:"/",element:p.jsx(bT,{}),children:[{index:!0,element:p.jsx(be,{children:p.jsx(h3,{})})},{path:"processes/all",element:p.jsx(be,{children:p.jsx(ET,{})})},{path:"processes/detail/:originId",element:p.jsx(be,{children:p.jsx(OT,{})})},{path:"credentials",element:p.jsx(be,{children:p.jsx(c3,{})})},{path:"connections",element:p.jsx(In,{to:"/credentials",replace:!0})},{path:"escalations",element:p.jsx(be,{children:p.jsx(CT,{})})},{path:"escalations/available",element:p.jsx(be,{children:p.jsx(MT,{})})},{path:"escalations/queue",element:p.jsx(be,{children:p.jsx(RT,{})})},{path:"escalations/detail/:id",element:p.jsx(be,{children:p.jsx(DT,{})})},{path:"scan/station",element:p.jsx(be,{children:p.jsx(i3,{})})},{path:"capabilities",element:p.jsx(be,{children:p.jsx(p3,{})})},{path:"agents",element:p.jsx(be,{children:p.jsx(d3,{})})},{path:"agents/new",element:p.jsx(be,{children:p.jsx(rb,{})})},{path:"agents/:id",element:p.jsx(be,{children:p.jsx(m3,{})})},{path:"agents/:id/edit",element:p.jsx(be,{children:p.jsx(rb,{})})},{path:"topics",element:p.jsx(be,{children:p.jsx(g3,{})})},{path:"topics/:topic",element:p.jsx(be,{children:p.jsx(y3,{})})},{element:p.jsx(Pc,{roleTypes:["superadmin"],roleNames:["engineer"]}),children:[{path:"workflows",element:p.jsx(be,{children:p.jsx(qT,{})})},{path:"workflows/executions",element:p.jsx(be,{children:p.jsx(UT,{})})},{path:"workflows/durable/executions",element:p.jsx(be,{children:p.jsx(PT,{})})},{path:"workflows/durable/executions/:workflowId",element:p.jsx(be,{children:p.jsx(eb,{})})},{path:"workflows/tasks",element:p.jsx(be,{children:p.jsx(HT,{})})},{path:"workflows/tasks/detail/:id",element:p.jsx(be,{children:p.jsx(GT,{})})},{path:"workflows/executions/:workflowId",element:p.jsx(be,{children:p.jsx(eb,{})})},{path:"workflows/start",element:p.jsx(be,{children:p.jsx(BT,{})})},{path:"workflows/durable/invoke",element:p.jsx(be,{children:p.jsx(LT,{})})},{path:"workflows/cron",element:p.jsx(In,{to:"/workflows/start?mode=schedule",replace:!0})},{path:"workflows/workers",element:p.jsx(be,{children:p.jsx(VT,{})})},{path:"workflows/registry",element:p.jsx(be,{children:p.jsx(YT,{})})},{path:"workflows/registry/new",element:p.jsx(be,{children:p.jsx(tb,{})})},{path:"workflows/registry/:workflowType",element:p.jsx(be,{children:p.jsx(tb,{})})}]},{element:p.jsx(Pc,{roleTypes:["superadmin"],roleNames:["engineer"]}),children:[{path:"mcp/workflows",element:p.jsx(be,{children:p.jsx(zT,{})})},{path:"mcp/workflows/invoke",element:p.jsx(be,{children:p.jsx(IT,{})})},{path:"mcp/workflows/:id",element:p.jsx(be,{children:p.jsx($T,{})})},{path:"mcp/executions",element:p.jsx(be,{children:p.jsx(jT,{})})},{path:"mcp/executions/:jobId",element:p.jsx(be,{children:p.jsx(NT,{})})},{path:"files",element:p.jsx(be,{children:p.jsx(u3,{})})},{path:"knowledge",element:p.jsx(be,{children:p.jsx(f3,{})})},{element:p.jsx(wT,{}),children:[{path:"mcp",element:p.jsx(be,{children:p.jsx(AT,{})})},{path:"mcp/queries",element:p.jsx(be,{children:p.jsx(TT,{})})},{path:"mcp/queries/:workflowId",element:p.jsx(be,{children:p.jsx(kT,{})})},{path:"mcp/tools",element:p.jsx(In,{to:"/mcp/servers",replace:!0})},{path:"mcp/servers",element:p.jsx(be,{children:p.jsx(KT,{})})},{path:"mcp/servers/new",element:p.jsx(be,{children:p.jsx(nb,{})})},{path:"mcp/servers/:serverId",element:p.jsx(be,{children:p.jsx(nb,{})})}]}]},{path:"operations",element:p.jsx(be,{children:p.jsx(a3,{})})},{element:p.jsx(Pc,{roleTypes:["admin","superadmin"],roleNames:["engineer"]}),children:[{path:"admin",element:p.jsx(be,{children:p.jsx(FT,{})})},{path:"admin/users",element:p.jsx(be,{children:p.jsx(XT,{})})},{path:"admin/escalation-chains",element:p.jsx(In,{to:"/admin/roles",replace:!0})},{path:"admin/roles",element:p.jsx(be,{children:p.jsx(JT,{})})},{path:"admin/roles/:role",element:p.jsx(be,{children:p.jsx(QT,{})})},{path:"admin/roles/:role/schema",element:p.jsx(be,{children:p.jsx(e3,{})})},{path:"admin/roles/:role/list-schema",element:p.jsx(be,{children:p.jsx(t3,{})})},{path:"admin/scan-codes",element:p.jsx(be,{children:p.jsx(n3,{})})},{path:"admin/scan-codes/:version",element:p.jsx(be,{children:p.jsx(r3,{})})},{path:"admin/personas",element:p.jsx(be,{children:p.jsx(ZT,{})})},{path:"admin/personas/:key",element:p.jsx(be,{children:p.jsx(WT,{})})}]},{element:p.jsx(Pc,{roleTypes:["superadmin"],roleNames:["engineer"]}),children:[{path:"admin/bots",element:p.jsx(In,{to:"/admin/users?tab=service-accounts",replace:!0})},{element:p.jsx(ST,{flag:"dbMaintenance"}),children:[{path:"admin/maintenance",element:p.jsx(be,{children:p.jsx(s3,{})})}]},{path:"admin/controlplane",element:p.jsx(be,{children:p.jsx(o3,{})})},{path:"admin/streams",element:p.jsx(be,{children:p.jsx(l3,{})})}]}]}],{basename:window.__LT_BASE__||"/"});function x3(){return p.jsx(aw,{client:Yv,children:p.jsx(Zw,{children:p.jsx(nO,{children:p.jsx(cw,{router:v3})})})})}bv(yv());const Zd=document.createElement("link");Zd.rel="stylesheet";Zd.href=`${Tt}/api/settings/custom.css`;document.head.appendChild(Zd);$w.createRoot(document.getElementById("root")).render(p.jsx(j.StrictMode,{children:p.jsx(x3,{})}));export{bu as $,K3 as A,X3 as B,Qd as C,iT as D,J3 as E,zv as F,Z3 as G,fO as H,ev as I,UN as J,P3 as K,Ft as L,fN as M,Rb as N,N3 as O,D3 as P,A3 as Q,iv as R,jN as S,rv as T,Jd as U,H3 as V,uN as W,tk as X,R3 as Y,sj as Z,Zl as _,ik as a,Bv as a0,I3 as a1,KA as a2,Sv as a3,F3 as a4,Q3 as a5,Yg as a6,wv as a7,Xd as a8,hv as a9,B3 as aA,gk as aB,yk as aC,Vv as aD,Gd as aE,Zb as aF,ek as aG,nk as aa,k3 as ab,M3 as ac,C3 as ad,j3 as ae,_d as af,Ay as ag,Dd as ah,W3 as ai,Tt as aj,mb as ak,rk as al,T3 as am,ok as an,sk as ao,ck as ap,PA as aq,fk as ar,hk as as,lk as at,uk as au,Ov as av,DA as aw,aj as ax,ak as ay,ze as az,dv as b,vO as c,q3 as d,r2 as e,qA as f,_e as g,z3 as h,$3 as i,G3 as j,L3 as k,Kb as l,mk as m,U3 as n,pk as o,ij as p,Kd as q,lN as r,cN as s,mN as t,Wn as u,Qb as v,dk as w,hO as x,V3 as y,Y3 as z};
|
|
67
|
-
//# sourceMappingURL=index-
|
|
64
|
+
`}function eN(i){const t=i.summary,r=i.title;if(t){const s=t.search(/\n\s*\{[\s\S]*"title"\s*:/);return s>0?t.slice(0,s).trim():t}return r||(typeof i=="string"?i:"Query completed.")}const Gv=j.createContext(null);function tN({children:i}){const t=yn(),[r,s]=j.useState(!1),[l,c]=j.useState([]),[d,y]=j.useState(null),[g,f]=j.useState({}),m=j.useRef(null),b={page:t.pathname.split("/").filter(Boolean).join("-")||"home",route:t.pathname,params:{},...g,suggestedTags:g.suggestedTags??ZT(t.pathname)};j.useEffect(()=>()=>{m.current&&clearInterval(m.current)},[]);const v=j.useCallback(()=>s(B=>!B),[]),_=j.useCallback(B=>{f(B)},[]),w=j.useCallback(()=>{c([]),y(null)},[]),S=j.useCallback(async B=>{var X;const U=new Date().toISOString(),re={id:`user-${Date.now()}`,role:"user",content:B,timestamp:U},ce={id:`pending-${Date.now()}`,role:"assistant",content:"",timestamp:U,pending:!0};c(L=>[...L,re,ce]);const C={...b};(X=C.entities)!=null&&X.yamlContent&&C.entities.yamlContent.length>J1&&(C.entities={...C.entities,yamlContent:C.entities.yamlContent.slice(0,J1)+`
|
|
65
|
+
... (truncated)`});const ie=`${WT(l.concat(re))}${B}`;try{const G=(await _e("/insight/mcp-query",{method:"POST",body:JSON.stringify({prompt:ie,tags:C.suggestedTags,context:C,wait:!1,direct:!0})})).workflow_id;y(G),c(W=>W.map(J=>J.id===ce.id?{...J,workflowId:G}:J)),m.current&&clearInterval(m.current),m.current=setInterval(async()=>{var W;try{const J=await _e(`/workflows/${G}/result`),he=(W=J==null?void 0:J.result)==null?void 0:W.data;if(he){m.current&&clearInterval(m.current),m.current=null,y(null);const xe=eN(he);let Te;try{Te=(await _e(`/workflow-states/${G}/execution`)).duration_ms}catch{}c(Y=>Y.map(ae=>ae.id===ce.id?{...ae,content:xe,timestamp:new Date().toISOString(),pending:!1,durationMs:Te}:ae))}}catch{}},3e3)}catch{c(L=>L.map(G=>G.id===ce.id?{...G,content:"Failed to submit query. Please try again.",pending:!1}:G))}},[l,b]),M=j.useCallback(async B=>{const U=l.find(C=>C.id===B);if(!(U!=null&&U.workflowId)||U.compilationStatus==="compiling"||U.compilationStatus==="done")return;const re=l.indexOf(U),ce=l.slice(0,re).reverse().find(C=>C.role==="user");if(ce){c(C=>C.map(P=>P.id===B?{...P,compilationStatus:"compiling"}:P));try{const C=await _e("/insight/mcp-query/describe",{method:"POST",body:JSON.stringify({prompt:ce.content,summary:U.content})}),P=await _e("/yaml-workflows",{method:"POST",body:JSON.stringify({workflow_id:U.workflowId,task_queue:"long-tail-system",workflow_name:"mcpQuery",name:C.tool_name,description:C.description,tags:C.tags,app_id:""})});await _e(`/yaml-workflows/${P.id}/deploy`,{method:"POST"}),c(ie=>ie.map(X=>X.id===B?{...X,compilationStatus:"done"}:X))}catch(C){const P=C instanceof Error?C.message:"Compilation failed";c(ie=>ie.map(X=>X.id===B?{...X,compilationStatus:"error",compilationError:P}:X))}}},[l]);return p.jsx(Gv.Provider,{value:{helpOpen:r,setHelpOpen:s,toggleHelp:v,messages:l,sendMessage:S,pageContext:b,setPageContext:_,activeWorkflowId:d,clearMessages:w,compileMessage:M},children:i})}function Fv(){const i=j.useContext(Gv);if(!i)throw new Error("useHelpAssistant must be used within HelpAssistantProvider");return i}function nN(){const{helpOpen:i,toggleHelp:t}=Fv();return p.jsx("button",{onClick:t,className:"fixed right-3 z-[45] flex items-center justify-center w-10 h-10 rounded-full bg-surface-raised shadow-lg hover:scale-110 transition-transform duration-150 border border-accent/30",style:{bottom:"44px"},"aria-label":i?"Close help":"Ask for help",children:i?p.jsx(Gt,{className:"w-5 h-5 text-text-tertiary",strokeWidth:1.5}):p.jsx("span",{role:"img","aria-label":"Help",className:"logo-mark w-8 h-8 -rotate-[120deg]",style:{"--logo-url":`url(${Nt}/logo512.png)`}})})}function rN({ms:i,className:t=""}){const r=DA(i),s=j.useMemo(()=>i==null?[]:[{label:"ms",value:String(i)},{label:"sec",value:`${(i/1e3).toFixed(3)}s`},{label:"text",value:r}],[i,r]);return i==null?p.jsx("span",{className:`text-xs text-text-tertiary ${t}`,children:"--"}):p.jsx(dv,{options:s,children:p.jsx("span",{className:`text-xs text-text-tertiary ${t}`,children:r})})}const iN=["sm","md","lg","full"],Q1={sm:"w-[28rem] max-h-[40vh]",md:"w-[36rem] max-h-[60vh]",lg:"w-[48rem] max-h-[80vh]",full:"inset-4 w-auto max-h-none"},Z1={sm:"Small",md:"Medium",lg:"Large",full:"Fullscreen"};function sN({which:i}){const t="stroke-current";switch(i){case"sm":return p.jsx("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",children:p.jsx("rect",{x:"5",y:"5",width:"7",height:"7",rx:"1.5",className:t,strokeWidth:"1.5"})});case"md":return p.jsx("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",children:p.jsx("rect",{x:"3",y:"3",width:"9",height:"9",rx:"1.5",className:t,strokeWidth:"1.5"})});case"lg":return p.jsx("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",children:p.jsx("rect",{x:"1.5",y:"1.5",width:"11",height:"11",rx:"1.5",className:t,strokeWidth:"1.5"})});case"full":return p.jsx("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",children:p.jsx("rect",{x:"0.75",y:"0.75",width:"12.5",height:"12.5",rx:"1.5",className:t,strokeWidth:"1.5"})})}}function aN({msg:i}){const[t,r]=j.useState(0);j.useEffect(()=>{const d=new Date(i.timestamp).getTime(),y=()=>r(Math.floor((Date.now()-d)/1e3));y();const g=setInterval(y,1e3);return()=>clearInterval(g)},[i.timestamp]);const s=Math.floor(t/60),l=t%60,c=s>0?`${s}m ${l}s`:`${l}s`;return p.jsxs("span",{className:"inline-flex flex-col gap-1.5",children:[p.jsxs("span",{className:"inline-flex items-center gap-1",children:[p.jsx("span",{className:"text-text-tertiary",children:"Thinking"}),p.jsx("span",{className:"inline-block w-1 h-1 rounded-full bg-text-tertiary animate-pulse"}),p.jsx("span",{className:"inline-block w-1 h-1 rounded-full bg-text-tertiary animate-pulse [animation-delay:150ms]"}),p.jsx("span",{className:"inline-block w-1 h-1 rounded-full bg-text-tertiary animate-pulse [animation-delay:300ms]"}),p.jsx("span",{className:"text-text-muted ml-1 tabular-nums",children:c})]}),i.workflowId&&p.jsxs(Ii,{to:`/workflows/executions/${i.workflowId}`,className:"inline-flex items-center gap-1 text-2xs text-accent/70 hover:text-accent transition-colors",children:[p.jsx(Ed,{className:"w-2.5 h-2.5",strokeWidth:1.5}),"watch execution"]})]})}function oN({msg:i,compileMessage:t}){const r=i.role==="assistant";return p.jsxs("div",{className:`flex items-center gap-1.5 ${r?"justify-start":"justify-end"}`,children:[p.jsx(mv,{date:i.timestamp,format:"time",className:"!text-2xs text-text-muted/50"}),i.durationMs!=null&&p.jsxs(p.Fragment,{children:[p.jsx("span",{className:"text-text-muted/30 text-2xs",children:"·"}),p.jsx(rN,{ms:i.durationMs,className:"!text-2xs text-text-muted/50"})]}),i.workflowId&&p.jsx(Ii,{to:`/workflows/executions/${i.workflowId}`,className:"text-text-muted/40 hover:text-accent transition-colors",title:"View workflow execution",children:p.jsx(Ed,{className:"w-2.5 h-2.5",strokeWidth:1.5})}),r&&i.workflowId&&!i.pending&&p.jsx("button",{onClick:()=>t(i.id),disabled:i.compilationStatus==="compiling"||i.compilationStatus==="done",className:"transition-colors",title:i.compilationStatus==="done"?"Compiled — future queries will match this pipeline":i.compilationStatus==="error"?i.compilationError??"Compilation failed":i.compilationStatus==="compiling"?"Compiling...":"Compile to fast pipeline",children:p.jsx(Mw,{className:`w-2.5 h-2.5 ${i.compilationStatus==="done"?"text-status-success":i.compilationStatus==="error"?"text-status-error":i.compilationStatus==="compiling"?"text-accent/40 animate-pulse":"text-text-muted/40 hover:text-accent"}`,strokeWidth:1.5})})]})}function lN(){const{helpOpen:i,setHelpOpen:t,messages:r,sendMessage:s,pageContext:l,activeWorkflowId:c,clearMessages:d,compileMessage:y}=Fv(),[g,f]=j.useState(""),[m,b]=j.useState("md"),[v,_]=j.useState(!0),w=j.useRef(null),S=j.useRef(null);if(j.useEffect(()=>{w.current&&(w.current.scrollTop=w.current.scrollHeight)},[r]),j.useEffect(()=>{i&&S.current&&S.current.focus()},[i]),j.useEffect(()=>{if(!i)return;const C=P=>{P.key==="Escape"&&(m==="full"?b("lg"):m==="lg"?b("md"):m==="md"?b("sm"):t(!1))};return document.addEventListener("keydown",C),()=>document.removeEventListener("keydown",C)},[i,m,t]),!i)return null;const M=()=>{const C=g.trim();!C||c||(s(C),f(""),S.current&&(S.current.style.height="auto"))},B=C=>{C.key==="Enter"&&!C.shiftKey&&(C.preventDefault(),M())},U=m==="full",re=l.page.replace(/-/g," "),ce=U?{}:{bottom:"108px"};return p.jsxs("div",{className:`fixed z-[45] flex flex-col border border-surface-border rounded-lg overflow-hidden transition-all duration-300 ${U?Q1.full:`right-6 ${Q1[m]}`} ${v?"bg-surface-raised shadow-xl":"bg-surface-raised/[0.03] shadow-lg shadow-black/5"}`,style:ce,onMouseEnter:()=>_(!0),onMouseLeave:()=>_(!1),children:[p.jsxs("div",{className:`flex items-center justify-between px-4 py-2.5 border-b border-surface-border shrink-0 transition-all duration-300 ${v?"opacity-100":"opacity-50 grayscale brightness-150"}`,children:[p.jsxs("div",{className:"min-w-0 flex-1",children:[p.jsx("p",{className:"text-xs font-medium text-text-primary truncate",children:"Help Assistant"}),p.jsx("p",{className:"text-2xs text-text-tertiary truncate",children:re})]}),p.jsxs("div",{className:"flex items-center gap-1 ml-2",children:[p.jsx("div",{className:"flex items-center gap-0.5 border border-surface-border rounded p-0.5",role:"radiogroup","aria-label":"Panel size",children:iN.map(C=>p.jsx("button",{onClick:()=>b(C),className:`p-1 rounded transition-colors ${C===m?"bg-accent/15 text-accent":"text-text-muted hover:text-text-secondary hover:bg-surface-hover"}`,role:"radio","aria-checked":C===m,"aria-label":Z1[C],title:Z1[C],children:p.jsx(sN,{which:C})},C))}),r.length>0&&p.jsx("button",{onClick:d,className:"p-1 text-text-tertiary hover:text-text-secondary transition-colors","aria-label":"Clear conversation",title:"Clear conversation",children:p.jsx(Rw,{className:"w-3.5 h-3.5",strokeWidth:1.5})}),p.jsx("button",{onClick:()=>t(!1),className:"p-1 text-text-tertiary hover:text-text-primary transition-colors","aria-label":"Close",title:"Close",children:p.jsx(Gt,{className:"w-3.5 h-3.5",strokeWidth:1.5})})]})]}),p.jsxs("div",{ref:w,className:`flex-1 overflow-y-auto px-4 py-3 space-y-3 min-h-[120px] transition-all duration-300 ${v?"opacity-100":"opacity-50 grayscale brightness-150"}`,children:[r.length===0&&p.jsx("p",{className:"text-xs text-text-tertiary text-center py-6",children:"Ask anything about what you're viewing."}),r.map(C=>p.jsxs("div",{className:`text-xs leading-relaxed ${C.role==="user"?"text-right":"text-left"}`,children:[p.jsx("div",{className:`inline-block max-w-[85%] px-3 py-2 rounded-md whitespace-pre-wrap ${C.role==="user"?"bg-accent/10 text-text-primary":"bg-surface-sunken text-text-secondary"}`,children:C.pending?p.jsx(aN,{msg:C}):C.role==="assistant"?p.jsx(bu,{content:C.content}):C.content}),!C.pending&&p.jsx("div",{className:"mt-0.5",children:p.jsx(oN,{msg:C,compileMessage:y})})]},C.id))]}),p.jsxs("div",{className:`border-t border-surface-border px-3 py-2.5 flex gap-2 shrink-0 transition-all duration-300 ${v?"opacity-100":"opacity-50 grayscale brightness-150"}`,children:[p.jsx("textarea",{ref:S,value:g,onChange:C=>{f(C.target.value);const P=C.target;P.style.height="auto",P.style.height=`${Math.min(P.scrollHeight,120)}px`},onKeyDown:B,placeholder:"Ask a question...",rows:2,className:"flex-1 resize-none bg-surface text-xs text-text-primary placeholder:text-text-tertiary rounded px-2.5 py-1.5 border border-surface-border focus:outline-none focus:border-accent",style:{minHeight:"2.5rem"},disabled:!!c}),p.jsx("button",{onClick:M,disabled:!g.trim()||!!c,className:"px-2.5 py-1.5 text-accent hover:text-accent-hover disabled:text-text-muted transition-colors self-end","aria-label":"Send",children:p.jsx(Dw,{className:"w-4 h-4",strokeWidth:1.5})})]})]})}const cN=6e3,uN="scan";function fN(){const{lastResult:i}=Av(),{open:t,ownerKey:r}=Kd(),[s,l]=j.useState(null);if(j.useEffect(()=>{if(!i)return;const d=setTimeout(()=>l(i.at),cN);return()=>clearTimeout(d)},[i]),!i||i.navigated||s===i.at||t&&r===uN)return null;const{response:c}=i;return p.jsx("div",{role:"status",className:"fixed bottom-14 right-4 z-[60] w-80 max-w-[calc(100vw-2rem)] bg-surface-raised border border-surface-border shadow-lg rounded-md animate-page-in",children:p.jsxs("div",{className:"flex items-start gap-2.5 px-3.5 py-3",children:[p.jsx(ou,{className:"w-4 h-4 mt-0.5 text-accent-muted shrink-0",strokeWidth:1.5}),p.jsxs("div",{className:"flex-1 min-w-0",children:[p.jsx("div",{className:"text-sm font-mono text-text-secondary truncate",children:i.code}),c?p.jsxs(p.Fragment,{children:[p.jsx("div",{className:`text-sm font-medium ${qv[c.outcome]}`,children:Bv(c)}),c.error&&p.jsx("div",{className:"text-xs text-text-tertiary mt-0.5",children:c.error}),su(c)&&p.jsx("div",{className:"text-xs text-text-secondary mt-1.5",children:p.jsx(Lv,{content:su(c),compact:!0})})]}):p.jsx("div",{className:"text-sm text-status-error",children:i.error})]}),p.jsx("button",{type:"button",onClick:()=>l(i.at),className:"text-text-tertiary hover:text-text-primary shrink-0",title:"Dismiss",children:p.jsx(Gt,{className:"w-3.5 h-3.5"})})]})})}const Vv="lt-announcement-dismissed:";function hN(i){return i.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">")}function dN(i){try{return localStorage.getItem(`${Vv}${i}`)==="1"}catch{return!1}}function mN(){const{isAuthenticated:i,userRoleNames:t}=Ft(),{data:r}=av(i),s=rt(),[l,c]=j.useState(null),[d,y]=j.useState(0);n2(_O,()=>{s.invalidateQueries({queryKey:["announcements"]})});const g=Date.now(),f=((r==null?void 0:r.announcements)??[]).filter(b=>!dN(b.id)&&new Date(b.expires_at).getTime()>g&&(b.roles.length===0||b.roles.some(v=>t.includes(v))));if(j.useEffect(()=>{const b=((r==null?void 0:r.announcements)??[]).map(_=>new Date(_.expires_at).getTime()-Date.now()).filter(_=>_>0);if(b.length===0)return;const v=setTimeout(()=>y(_=>_+1),Math.min(...b)+250);return()=>clearTimeout(v)},[r,d]),f.length===0)return null;const m=b=>{try{localStorage.setItem(`${Vv}${b}`,"1")}catch{}y(v=>v+1)};return p.jsx("div",{"data-testid":"announcement-banner",className:"relative z-40",children:f.map(b=>{const v=l===b.id,_=b.title??b.body.split(`
|
|
66
|
+
`)[0];return p.jsxs("div",{className:"border-b border-accent/25 bg-accent/10",children:[p.jsxs("div",{className:"flex items-center gap-2 px-4 py-1.5",children:[p.jsx("span",{className:"text-2xs font-semibold uppercase tracking-widest text-accent",children:"Notice"}),p.jsxs("button",{type:"button",onClick:()=>c(v?null:b.id),className:"flex items-center gap-1.5 text-xs text-text-primary hover:text-accent transition-colors min-w-0",children:[p.jsx("span",{className:"truncate",children:_}),v?p.jsx(db,{className:"w-3 h-3 shrink-0",strokeWidth:1.5}):p.jsx(hb,{className:"w-3 h-3 shrink-0",strokeWidth:1.5})]}),p.jsx("div",{className:"flex-1"}),p.jsx("button",{type:"button",onClick:()=>m(b.id),className:"icon-link",title:"Dismiss","aria-label":`Dismiss ${_}`,children:p.jsx(Gt,{className:"w-3.5 h-3.5",strokeWidth:1.5})})]}),v&&p.jsx("div",{className:"px-4 pb-3 text-sm text-text-secondary max-w-measure",children:p.jsx(bu,{content:hN(b.body)})})]},b.id)})})}function pN(){var C;const{isBuilder:i,isOps:t,viewAs:r}=Zb(),{canSeePaceBoard:s}=Wb();cO();const{data:l}=Wn(),c=Xb(),d=c!==null?c:!!((C=l==null?void 0:l.ai)!=null&&C.enabled),{collapsed:y,toggle:g}=Vd(),[f,m]=j.useState(!1),[b,v]=j.useState(!1),[_,w]=j.useState(!1),[S,M]=j.useState(()=>window.location.hash.startsWith("#docs")),B=yn(),U=j.useRef(null),{kiosk:re,homePath:ce}=fO();return j.useEffect(()=>{const P=U.current;P&&(P.classList.remove("animate-page-in"),P.offsetWidth,P.classList.add("animate-page-in"))},[B.pathname]),j.useEffect(()=>{const P=()=>{window.location.hash.startsWith("#docs")&&M(!0)};return window.addEventListener("hashchange",P),()=>window.removeEventListener("hashchange",P)},[]),re&&ce&&!dO(B.pathname)?p.jsx(In,{to:ce,replace:!0}):p.jsxs("div",{className:"h-screen bg-surface flex flex-col",children:[p.jsx(tT,{onToggleEventFeed:()=>m(P=>!P),onToggleDocs:()=>M(P=>!P),onToggleNav:re?void 0:()=>v(P=>!P)}),p.jsx(mN,{}),p.jsxs("div",{className:"flex flex-1 overflow-hidden",children:[!re&&p.jsxs("aside",{className:`${y?"w-16":"w-60"} shrink-0 bg-surface-raised border-r border-surface-border hidden lg:flex flex-col transition-[width] duration-200 ease-out overflow-hidden relative z-20`,children:[p.jsx("nav",{className:"flex-1 px-3 pt-[36px] pb-4 space-y-2 overflow-y-auto overflow-x-hidden",children:p.jsx(Uv,{aiEnabled:d,isBuilder:i,isOps:t,viewAs:r,canSeePaceBoard:s})}),p.jsx("button",{onClick:g,className:`shrink-0 py-3 text-text-tertiary hover:text-text-secondary transition-colors duration-150 ${y?"flex justify-center":"flex items-center px-7"}`,"aria-label":y?"Expand sidebar":"Collapse sidebar",children:y?p.jsx(qw,{className:"w-4 h-4 text-accent-muted",strokeWidth:1.5}):p.jsx(Bw,{className:"w-4 h-4 text-accent-muted",strokeWidth:1.5})}),!y&&(l==null?void 0:l.environment)&&p.jsxs("div",{className:"shrink-0 px-5 pb-3 text-2xs leading-tight text-text-tertiary whitespace-nowrap overflow-hidden text-ellipsis",title:`long-tail v${l.environment.longTailVersion} · HotMesh v${l.environment.hotmeshVersion} · Node ${l.environment.nodeVersion} · ${l.environment.nodeEnv}`,children:["long-tail v",l.environment.longTailVersion,p.jsx("span",{className:"mx-1 text-surface-border",children:"·"}),"HotMesh v",l.environment.hotmeshVersion]})]}),p.jsx("main",{className:"flex-1 min-w-0 overflow-y-auto",children:p.jsx("div",{ref:U,className:"w-full px-page-x py-8 pb-16 animate-page-in h-full flex flex-col @container",children:p.jsx(Ls,{})})}),p.jsx(yN,{})]}),!re&&p.jsx(wT,{open:b,onClose:()=>v(!1),aiEnabled:d,isBuilder:i,isOps:t,viewAs:r,canSeePaceBoard:s}),p.jsx(IT,{open:f,onToggle:()=>m(P=>!P),configOpen:_,onToggleConfig:()=>w(P=>!P)}),p.jsx(QT,{open:S,onClose:()=>{M(!1),history.replaceState(null,"",window.location.pathname+window.location.search)}}),d&&p.jsx(nN,{}),d&&p.jsx(lN,{}),p.jsx(fN,{})]})}function yN(){const{node:i,width:t,open:r}=Kd();return p.jsx(bO,{open:r,width:t,className:"border-l border-surface-border bg-surface-raised",children:i})}function gN(){const{isAuthenticated:i}=Ft(),t=yn();return i?p.jsx(pO,{children:p.jsx(gO,{children:p.jsx(tN,{children:p.jsx(KA,{children:p.jsx(oj,{children:p.jsx(pN,{})})})})})}):p.jsx(In,{to:"/login",state:{from:t.pathname},replace:!0})}function Yv({provider:i,className:t="w-5 h-5"}){switch(i){case"google":return p.jsxs("svg",{className:t,viewBox:"0 0 24 24",fill:"currentColor",children:[p.jsx("path",{d:"M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 0 1-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z",fill:"#4285F4"}),p.jsx("path",{d:"M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z",fill:"#34A853"}),p.jsx("path",{d:"M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z",fill:"#FBBC05"}),p.jsx("path",{d:"M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z",fill:"#EA4335"})]});case"github":return p.jsx("svg",{className:t,viewBox:"0 0 24 24",fill:"currentColor",children:p.jsx("path",{d:"M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0 1 12 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0 0 22 12.017C22 6.484 17.522 2 12 2z"})});case"microsoft":return p.jsxs("svg",{className:t,viewBox:"0 0 24 24",fill:"currentColor",children:[p.jsx("path",{d:"M3 3h8.5v8.5H3z",fill:"#F25022"}),p.jsx("path",{d:"M12.5 3H21v8.5h-8.5z",fill:"#7FBA00"}),p.jsx("path",{d:"M3 12.5h8.5V21H3z",fill:"#00A4EF"}),p.jsx("path",{d:"M12.5 12.5H21V21h-8.5z",fill:"#FFB900"})]});case"anthropic":return p.jsx("svg",{className:t,viewBox:"0 0 24 24",fill:"currentColor",children:p.jsx("path",{d:"M13.827 3.52h3.603L24 20.48h-3.603l-6.57-16.96zm-7.258 0h3.767L16.906 20.48h-3.674l-1.343-3.461H6.396l-1.34 3.461H1.5l5.07-16.96zm2.327 5.14l-2.065 5.326h4.108l-2.043-5.326z"})});default:return p.jsxs("svg",{className:t,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:[p.jsx("circle",{cx:"12",cy:"12",r:"10"}),p.jsx("path",{d:"M12 8v4l3 3"})]})}}async function bN(){return _e("/auth/oauth/providers")}async function vN(i,t){const r=t?`?label=${encodeURIComponent(t)}`:"";return _e(`/auth/oauth/connections/${i}${r}`,{method:"DELETE"})}function y3(){return lt({queryKey:["oauth-connections"],queryFn:()=>_e("/auth/oauth/connections")})}function g3(){const i=rt();return mt({mutationFn:({provider:t,label:r})=>vN(t,r),onSuccess:()=>{i.invalidateQueries({queryKey:["oauth-connections"]})}})}function xN(){var ie;const{login:i,isAuthenticated:t}=Ft(),r=yo(),s=yn(),l=new URLSearchParams(s.search),c=l.get("token"),d=l.get("error"),y=((ie=s.state)==null?void 0:ie.from)??l.get("returnTo")??"/",g=j.useRef(!1);c&&!g.current&&(g.current=!0,i(c,void 0,{displayName:l.get("displayName"),username:l.get("username")}));const[f,m]=j.useState(""),[b,v]=j.useState(""),[_,w]=j.useState(d||""),[S,M]=j.useState(!1),[B,U]=j.useState(!!c),[re,ce]=j.useState([]),C=j.useRef(!1);if(j.useEffect(()=>{c||C.current||(C.current=!0,(async()=>{var X,L,G,W;try{const J=await fetch(`${Nt}/api/settings`);if(!J.ok)return;const he=await J.json();if(!((X=he.auth)!=null&&X.sso))return;const xe=await fetch(`${Nt}/api/auth/sso`,{method:"POST"});if(!xe.ok){w("Host authentication required — please log in to your organization first");return}const Te=await xe.json();Te.token&&((L=he.auth)!=null&&L.ssoLogoutUrl&&sessionStorage.setItem("lt_sso_logout_url",he.auth.ssoLogoutUrl),U(!0),i(Te.token,void 0,{displayName:(G=Te.user)==null?void 0:G.display_name,username:(W=Te.user)==null?void 0:W.external_id}))}catch{}})())},[]),j.useEffect(()=>{c||bN().then(ce).catch(()=>{})},[]),j.useEffect(()=>{if(!B)return;const X=setTimeout(()=>r(y,{replace:!0}),1500);return()=>clearTimeout(X)},[B]),t&&!B)return p.jsx(In,{to:y,replace:!0});const P=async X=>{var L,G;if(X.preventDefault(),w(""),!f.trim()||!b){w("Username and password are required");return}M(!0);try{const W=await fetch(`${Nt}/api/auth/login`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:f.trim(),password:b})}),J=await W.json();if(!W.ok){w(J.error||"Login failed");return}U(!0),i(J.token,{username:f.trim(),password:b},{displayName:(L=J.user)==null?void 0:L.display_name,username:(G=J.user)==null?void 0:G.external_id})}catch{w("Unable to connect to server")}finally{M(!1)}};return p.jsx("div",{className:"min-h-screen bg-surface flex items-center justify-center overflow-hidden",children:p.jsxs("div",{className:"w-full max-w-md p-10",children:[p.jsx("div",{className:`mb-10 transition-all duration-[1500ms] ease-in ${B?"translate-x-[120vw] -translate-y-[60vh] scale-[3] opacity-0":""}`,children:p.jsx(nu,{size:"lg",hideLabel:B})}),p.jsxs("form",{onSubmit:P,className:`space-y-5 transition-opacity duration-300 ${B?"opacity-0":""}`,children:[p.jsxs("div",{children:[p.jsx("label",{htmlFor:"username",className:"block text-sm font-medium text-text-secondary mb-2",children:"Username"}),p.jsx("input",{id:"username",type:"text",value:f,onChange:X=>m(X.target.value),className:"input",placeholder:"Enter your username",autoFocus:!B,autoComplete:"username"})]}),p.jsxs("div",{children:[p.jsx("label",{htmlFor:"password",className:"block text-sm font-medium text-text-secondary mb-2",children:"Password"}),p.jsx("input",{id:"password",type:"password",value:b,onChange:X=>v(X.target.value),className:"input",placeholder:"Enter your password",autoComplete:"current-password"})]}),_&&p.jsx("p",{className:"text-sm text-status-error",children:_}),p.jsx("button",{type:"submit",className:"btn-primary w-full",disabled:S||B,children:S?"Signing in...":"Sign In"}),re.length>0&&p.jsxs(p.Fragment,{children:[p.jsxs("div",{className:"flex items-center gap-3 mt-6",children:[p.jsx("div",{className:"flex-1 h-px bg-border"}),p.jsx("span",{className:"text-xs text-text-tertiary",children:"or continue with"}),p.jsx("div",{className:"flex-1 h-px bg-border"})]}),p.jsx("div",{className:"space-y-2",children:re.filter(X=>X.provider!=="anthropic").map(X=>p.jsxs("a",{href:`${Nt}/api/auth/oauth/${X.provider}?returnTo=${encodeURIComponent(y)}`,className:"btn-secondary w-full flex items-center justify-center gap-2",children:[p.jsx(Yv,{provider:X.provider}),"Sign in with ",X.name]},X.provider))})]})]})]})})}function W1(){const{isAuthenticated:i}=Ft(),t=yo(),r=yn(),s=new URLSearchParams(r.search),l=s.get("state")||"";j.useEffect(()=>{i||t(`/login?returnTo=${encodeURIComponent(r.pathname+r.search)}`)},[i]);const[c,d]=j.useState(""),[y,g]=j.useState(s.get("label")||"default"),[f,m]=j.useState(""),[b,v]=j.useState(!1),_=c.trim().startsWith("sk-ant-oat"),w=c.trim().startsWith("sk-ant-api"),S=M=>{M.preventDefault();const B=c.trim();if(!B){m("A token or API key is required");return}if(!B.startsWith("sk-ant-")){m('Invalid format. Must start with "sk-ant-oat" (OAuth token) or "sk-ant-api" (API key)');return}v(!0),m("");const U=`${Nt}/api/auth/oauth/anthropic/callback?code=${encodeURIComponent(B)}&state=${encodeURIComponent(l)}`;window.location.href=U};return p.jsx("div",{className:"min-h-screen bg-surface flex items-center justify-center",children:p.jsxs("div",{className:"w-full max-w-md p-10",children:[p.jsx("div",{className:"mb-10",children:p.jsx(nu,{size:"lg"})}),p.jsxs("div",{className:"flex items-center gap-2 mb-6",children:[p.jsx(Yv,{provider:"anthropic",className:"w-6 h-6"}),p.jsx("h2",{className:"heading-3",children:"Connect Anthropic"})]}),p.jsx("p",{className:"text-sm text-text-secondary mb-4",children:"Connect your Anthropic account so Claude Code tasks run under your credentials. Your token is encrypted at rest."}),p.jsxs("form",{onSubmit:S,className:"space-y-5",children:[p.jsxs("div",{children:[p.jsx("label",{htmlFor:"token",className:"block text-sm font-medium text-text-secondary mb-2",children:"OAuth Token or API Key"}),p.jsx("input",{id:"token",type:"password",value:c,onChange:M=>d(M.target.value),className:"input",placeholder:"sk-ant-oat01-... or sk-ant-api03-...",autoFocus:!0,autoComplete:"off"}),_&&p.jsx("p",{className:"text-xs text-status-success mt-1",children:"OAuth token detected — uses your Claude subscription (flat rate)"}),w&&p.jsx("p",{className:"text-xs text-status-warning mt-1",children:"API key detected — billed per-token from your Anthropic API account"})]}),p.jsxs("div",{children:[p.jsx("label",{htmlFor:"label",className:"block text-sm font-medium text-text-secondary mb-2",children:"Label"}),p.jsx("input",{id:"label",type:"text",value:y,onChange:M=>g(M.target.value.replace(/\s+/g,"-").toLowerCase()),className:"input",placeholder:"default",autoComplete:"off"}),p.jsx("p",{className:"text-xs text-text-tertiary mt-1",children:'A name for this credential. Use different labels to store multiple credentials (e.g., "subscription", "api-batch").'})]}),f&&p.jsx("p",{className:"text-sm text-status-error",children:f}),p.jsx("button",{type:"submit",className:"btn-primary w-full",disabled:b,children:b?"Validating...":"Connect"}),p.jsx("a",{href:"/",className:"block text-center text-sm text-text-tertiary hover:text-text-secondary",children:"Cancel"})]}),p.jsxs("div",{className:"mt-6 space-y-3 text-xs text-text-tertiary",children:[p.jsxs("div",{children:[p.jsx("span",{className:"font-medium text-text-secondary",children:"Recommended:"})," ","Run"," ",p.jsx("code",{className:"px-1 py-0.5 bg-surface-sunken rounded text-2xs",children:"claude setup-token"})," ","in your terminal to generate an OAuth token that uses your subscription."]}),p.jsxs("div",{children:[p.jsx("span",{className:"font-medium text-text-secondary",children:"Alternative:"})," ","Use an API key from"," ",p.jsx("a",{href:"https://console.anthropic.com/settings/keys",target:"_blank",rel:"noopener noreferrer",className:"text-accent-secondary hover:underline",children:"console.anthropic.com"})," ","(billed per-token)."]})]})]})})}function Pc({roleTypes:i,roleNames:t,redirectTo:r="/"}){const{isSuperAdmin:s,hasRole:l,hasRoleType:c}=Ft();return s?p.jsx(Ls,{}):i&&i.some(d=>c(d))?p.jsx(Ls,{}):t&&t.some(d=>l(d))?p.jsx(Ls,{}):p.jsx(In,{to:r,replace:!0})}function _N({redirectTo:i="/"}){var s;const{data:t,isLoading:r}=Wn();return r||!t?null:(s=t.ai)!=null&&s.enabled?p.jsx(Ls,{}):p.jsx(In,{to:i,replace:!0})}function wN({flag:i,redirectTo:t="/"}){var l;const{data:r,isLoading:s}=Wn();return s||!r?null:((l=r.features)==null?void 0:l[i])===!1?p.jsx(In,{to:t,replace:!0}):p.jsx(Ls,{})}const SN=j.lazy(()=>we(()=>import("./ProcessesListPage-DpXm-KtK.js"),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17]),import.meta.url).then(i=>({default:i.ProcessesListPage}))),EN=j.lazy(()=>we(()=>import("./ProcessDetailPage-D88ocvmT.js"),__vite__mapDeps([18,1,2,4,19,14,20,17,11,6,21,22,23]),import.meta.url).then(i=>({default:i.ProcessDetailPage}))),ON=j.lazy(()=>we(()=>import("./McpOverview-jlukVWQ7.js"),__vite__mapDeps([24,1,25,26,27,28,15,14,29,6]),import.meta.url).then(i=>({default:i.McpOverview}))),AN=j.lazy(()=>we(()=>import("./McpRunsPage-BTucgt64.js"),__vite__mapDeps([30,1,26,27,5,6,31,28,8,9,10,17,14,32,15,13,12,16,33]),import.meta.url).then(i=>({default:i.McpRunsPage}))),jN=j.lazy(()=>we(()=>import("./McpRunDetailPage-kUnq2QSO.js"),__vite__mapDeps([34,1,26,15,14,35,36,13,37,20,6,38,16,39]),import.meta.url).then(i=>({default:i.McpRunDetailPage}))),TN=j.lazy(()=>we(()=>import("./McpQueryPage-BH2Pon4M.js"),__vite__mapDeps([40,1,15,14,9,10,13,12,16,8,11,32,17,33,5,6,4,41]),import.meta.url).then(i=>({default:i.McpQueryPage}))),NN=j.lazy(()=>we(()=>import("./McpQueryDetailPage-BWKbvJSd.js"),__vite__mapDeps([42,1,15,14,20,41,6,27,4,43,44,26,3,2,45,46,47,48,49,50,39,51,37,38]),import.meta.url).then(i=>({default:i.McpQueryDetailPage}))),kN=j.lazy(()=>we(()=>import("./EscalationsOverview-gHWPjUpZ.js"),__vite__mapDeps([52,1,4,15,14,29,6]),import.meta.url).then(i=>({default:i.EscalationsOverview}))),CN=j.lazy(()=>we(()=>import("./AvailableEscalationsPage-C5f2rqHa.js"),__vite__mapDeps([53,1,54,4,14,55,56,6,23,57,7,58,59,13,60,21,17,61,9,10,20,12,5,33]),import.meta.url).then(i=>({default:i.AvailableEscalationsPage}))),MN=j.lazy(()=>we(()=>import("./OperatorDashboard-wHyeLWzX.js"),__vite__mapDeps([62,1,4,5,6,7,8,54,9,10,12,33,58,14,59,13,60,21,17,61,20,56,16]),import.meta.url).then(i=>({default:i.OperatorDashboard}))),RN=j.lazy(()=>we(()=>import("./index-CK_ohh6Q.js"),__vite__mapDeps([63,1,55,56,6,23,57,7,15,14,16,61,9,10,20,12,3,4,21,39,22,64]),import.meta.url).then(i=>({default:i.EscalationDetailPage}))),DN=j.lazy(()=>we(()=>import("./WorkflowsOverview-Zh_EidMp.js"),__vite__mapDeps([65,1,3,4,15,14,29,6]),import.meta.url).then(i=>({default:i.WorkflowsOverview}))),qN=j.lazy(()=>we(()=>import("./index-Xi3LO4Ye.js"),__vite__mapDeps([66,1,3,15,14,13,17,67,48,49,6]),import.meta.url).then(i=>({default:i.StartWorkflowPage}))),BN=j.lazy(()=>we(()=>import("./index-Xi3LO4Ye.js"),__vite__mapDeps([66,1,3,15,14,13,17,67,48,49,6]),import.meta.url).then(i=>({default:i.DurableInvokePage}))),LN=j.lazy(()=>we(()=>import("./WorkflowsDashboard-CkAoYT86.js"),__vite__mapDeps([68,1,32,3,31,28,6,4,5,8,9,10,17,14,15,13,12,16,33]),import.meta.url).then(i=>({default:()=>i.WorkflowsDashboard({tier:"durable"})}))),PN=j.lazy(()=>we(()=>import("./WorkflowsDashboard-CkAoYT86.js"),__vite__mapDeps([68,1,32,3,31,28,6,4,5,8,9,10,17,14,15,13,12,16,33]),import.meta.url).then(i=>({default:()=>i.WorkflowsDashboard({tier:"all"})}))),UN=j.lazy(()=>we(()=>import("./YamlWorkflowsPage-DK1z6iFt.js"),__vite__mapDeps([69,1,27,5,6,15,14,13,10,50,67,20]),import.meta.url).then(i=>({default:i.YamlWorkflowsPage}))),zN=j.lazy(()=>we(()=>import("./GraphInvokePage-B-Oo5s-W.js"),__vite__mapDeps([70,1,27,15,14,45,47,48,49,46,6,50,67]),import.meta.url).then(i=>({default:i.GraphInvokePage}))),IN=j.lazy(()=>we(()=>import("./YamlWorkflowDetailPage-BKJbFT8C.js"),__vite__mapDeps([71,1,27,20,67,14,6]),import.meta.url).then(i=>({default:i.YamlWorkflowDetailPage}))),$N=j.lazy(()=>we(()=>import("./TasksListPage-C4CYqZf8.js"),__vite__mapDeps([72,1,2,3,5,6,9,10,20,60,51,12,13,14,15,17]),import.meta.url).then(i=>({default:i.TasksListPage}))),HN=j.lazy(()=>we(()=>import("./TaskDetailPage-BOJ8pwh3.js"),__vite__mapDeps([73,1,2,20,60,15,14,6]),import.meta.url).then(i=>({default:i.TaskDetailPage}))),eb=j.lazy(()=>we(()=>import("./WorkflowExecutionPage-8Q2438Ry.js"),__vite__mapDeps([74,1,3,4,36,13,14,37,20,6,38,2,15,35,16,39]),import.meta.url).then(i=>({default:i.WorkflowExecutionPage}))),GN=j.lazy(()=>we(()=>import("./AdminDashboard-BVgjY4zN.js"),__vite__mapDeps([75,1,2,4,25,19,14,6]),import.meta.url).then(i=>({default:i.AdminDashboard}))),FN=j.lazy(()=>we(()=>import("./index-CLQ0HBHR.js"),__vite__mapDeps([76,1,3,9,10,13,14,33,5,6,15,77,17]),import.meta.url).then(i=>({default:i.WorkersPage}))),VN=j.lazy(()=>we(()=>import("./index-D2OU2MJb.js"),__vite__mapDeps([78,1,3,13,14,79,56,6,21,17,15,48,49,67]),import.meta.url).then(i=>({default:i.WorkflowConfigsPage}))),tb=j.lazy(()=>we(()=>import("./index-D2OU2MJb.js"),__vite__mapDeps([78,1,3,13,14,79,56,6,21,17,15,48,49,67]),import.meta.url).then(i=>({default:i.WorkflowConfigDetailPage}))),YN=j.lazy(()=>we(()=>import("./index-t1JXcmBG.js"),__vite__mapDeps([80,1,25,10,79,56,6,15,14,13,12,5,81,47,48,49,50,46,33,20]),import.meta.url).then(i=>({default:i.McpServersPage}))),nb=j.lazy(()=>we(()=>import("./index-YMd3ZiPd.js"),__vite__mapDeps([82,1,25,15,14,43,6]),import.meta.url).then(i=>({default:i.McpServerDetailPage}))),KN=j.lazy(()=>we(()=>import("./index-tCDjx1kF.js"),__vite__mapDeps([83,1,23,5,6,9,10,12,13,14,79,56,33,15,21,49,51,84,85,35]),import.meta.url).then(i=>({default:i.UsersPage}))),XN=j.lazy(()=>we(()=>import("./RolesPage-CZSvJlsz.js"),__vite__mapDeps([86,1,13,14,15,21,56,6]),import.meta.url).then(i=>({default:i.RolesPage}))),JN=j.lazy(()=>we(()=>import("./RoleDetailPage-DE2Rj2QE.js"),__vite__mapDeps([87,1,23,88,79,56,6,14]),import.meta.url).then(i=>({default:i.RoleDetailPage}))),QN=j.lazy(()=>we(()=>import("./PersonasPage-DlmdJ3Dm.js"),__vite__mapDeps([89,1,84,13,14,15,21,56,6,23,7]),import.meta.url).then(i=>({default:i.PersonasPage}))),ZN=j.lazy(()=>we(()=>import("./PersonaDetailPage-BXlTqLDK.js"),__vite__mapDeps([90,1,84,21,14,85,88,79,56,6]),import.meta.url).then(i=>({default:i.PersonaDetailPage}))),WN=j.lazy(()=>we(()=>import("./EscalationSchemaPage-Sjk05eHP.js"),__vite__mapDeps([91,1,14,6]),import.meta.url).then(i=>({default:i.EscalationSchemaPage}))),ek=j.lazy(()=>we(()=>import("./EscalationListSchemaPage-YTgexl4f.js"),__vite__mapDeps([92,1,14,6]),import.meta.url).then(i=>({default:i.EscalationListSchemaPage}))),tk=j.lazy(()=>we(()=>import("./ScanCodesPage-DSlpA9kK.js"),__vite__mapDeps([93,1,15,14,6]),import.meta.url).then(i=>({default:i.ScanCodesPage}))),nk=j.lazy(()=>we(()=>import("./ScanSchemeDetailPage-BK4hisGD.js"),__vite__mapDeps([94,1,79,56,6,15,14]),import.meta.url).then(i=>({default:i.ScanSchemeDetailPage}))),rk=j.lazy(()=>we(()=>import("./ScanStationPage-D3QjajFD.js"),__vite__mapDeps([95,1,14,56,6,64]),import.meta.url).then(i=>({default:i.ScanStationPage}))),ik=j.lazy(()=>we(()=>import("./index-Cg0vCZng.js"),__vite__mapDeps([96,1,15,14,56,6,57]),import.meta.url).then(i=>({default:i.MaintenancePage}))),sk=j.lazy(()=>we(()=>import("./OperationsPage-Cp8WL-ld.js").then(i=>i.O),__vite__mapDeps([97,1,4,59,14,6,15]),import.meta.url).then(i=>({default:i.OperationsPage}))),ak=j.lazy(()=>we(()=>import("./index-IkgBE7e_.js"),__vite__mapDeps([98,1,19,14,13,5,6,31,28,56,44,77,9,10,33]),import.meta.url).then(i=>({default:i.ControlPlanePage}))),ok=j.lazy(()=>we(()=>import("./index-ClY0ihQ5.js"),__vite__mapDeps([99,1,38,14,5,6,31,28,8,9,10,12,13,15,16]),import.meta.url).then(i=>({default:i.StreamMessagesPage}))),lk=j.lazy(()=>we(()=>import("./CredentialsPage-BHZ5SKIu.js"),__vite__mapDeps([100,1,15,14,51,79,56,6]),import.meta.url).then(i=>({default:i.CredentialsPage}))),ck=j.lazy(()=>we(()=>import("./index-CEIp6WWg.js"),__vite__mapDeps([101,1,6,15,14,13,16,8,10,102,51]),import.meta.url).then(i=>({default:i.FilesPage}))),uk=j.lazy(()=>we(()=>import("./index-BJDAXUzO.js"),__vite__mapDeps([103,1,15,14,13,16,12,10,102,51,104,43,6]),import.meta.url).then(i=>({default:i.KnowledgePage}))),fk=j.lazy(()=>we(()=>import("./HomePage-BrcjKOaJ.js"),__vite__mapDeps([105,1,3,26,28,4,21,14,17,16,97,59,6,15,54]),import.meta.url).then(i=>({default:i.HomePage}))),hk=j.lazy(()=>we(()=>import("./AgentsPage-C7PnPXz_.js"),__vite__mapDeps([106,1,107,4,5,6,8,9,10,12,13,14,15,16]),import.meta.url).then(i=>({default:i.AgentsPage}))),dk=j.lazy(()=>we(()=>import("./AgentDetailPage-IJfgCOIF.js"),__vite__mapDeps([108,1,107,109,14,4,17,6]),import.meta.url).then(i=>({default:i.AgentDetailPage}))),rb=j.lazy(()=>we(()=>import("./AgentConfigPage-ChL59YL5.js"),__vite__mapDeps([110,1,107,109,14,15,104,47,48,49,3,27,111,112,17,6]),import.meta.url).then(i=>({default:i.AgentConfigPage}))),mk=j.lazy(()=>we(()=>import("./CapabilitiesPage-D7USh3F0.js"),__vite__mapDeps([113,1,111,81,25,47,48,49,14,50,6,46,15,13]),import.meta.url).then(i=>({default:i.CapabilitiesPage}))),pk=j.lazy(()=>we(()=>import("./TopicsPage-Glhqz_Nv.js"),__vite__mapDeps([114,1,112,15,14,13,6]),import.meta.url).then(i=>({default:i.TopicsPage}))),yk=j.lazy(()=>we(()=>import("./TopicDetailPage-DhianNey.js"),__vite__mapDeps([115,1,112,16,14,6]),import.meta.url).then(i=>({default:i.TopicDetailPage})));function gk(){return p.jsxs("div",{className:"animate-pulse space-y-4",children:[p.jsx("div",{className:"h-8 bg-surface-sunken rounded w-48"}),p.jsx("div",{className:"h-40 bg-surface-sunken rounded"})]})}function be({children:i}){return p.jsx(j.Suspense,{fallback:p.jsx(gk,{}),children:p.jsx("div",{className:"animate-page-enter flex flex-col flex-1 min-h-0",children:i})})}const Kv=new aw({defaultOptions:{queries:{staleTime:1e4,retry:(i,t)=>t instanceof Error&&t.message==="Session expired"?!1:i<1}}});window.addEventListener("auth:unauthorized",()=>{Kv.clear(),sessionStorage.removeItem("lt_token"),sessionStorage.removeItem("lt_credentials"),sessionStorage.removeItem("lt_user_info");const i=window.__LT_BASE__||"",t=`${i}/login`;if(window.location.pathname!==t){const r=window.location.pathname+window.location.search,s=i&&r.startsWith(i)?r.slice(i.length)||"/":r;window.location.href=`${t}?returnTo=${encodeURIComponent(s)}`}});const bk=cw([{path:"/login",element:p.jsx(xN,{})},{path:"/connect/anthropic",element:p.jsx(W1,{})},{path:"/connect/:provider",element:p.jsx(W1,{})},{path:"/",element:p.jsx(gN,{}),children:[{index:!0,element:p.jsx(be,{children:p.jsx(fk,{})})},{path:"processes/all",element:p.jsx(be,{children:p.jsx(SN,{})})},{path:"processes/detail/:originId",element:p.jsx(be,{children:p.jsx(EN,{})})},{path:"credentials",element:p.jsx(be,{children:p.jsx(lk,{})})},{path:"connections",element:p.jsx(In,{to:"/credentials",replace:!0})},{path:"escalations",element:p.jsx(be,{children:p.jsx(kN,{})})},{path:"escalations/available",element:p.jsx(be,{children:p.jsx(CN,{})})},{path:"escalations/queue",element:p.jsx(be,{children:p.jsx(MN,{})})},{path:"escalations/detail/:id",element:p.jsx(be,{children:p.jsx(RN,{})})},{path:"scan/station",element:p.jsx(be,{children:p.jsx(rk,{})})},{path:"capabilities",element:p.jsx(be,{children:p.jsx(mk,{})})},{path:"agents",element:p.jsx(be,{children:p.jsx(hk,{})})},{path:"agents/new",element:p.jsx(be,{children:p.jsx(rb,{})})},{path:"agents/:id",element:p.jsx(be,{children:p.jsx(dk,{})})},{path:"agents/:id/edit",element:p.jsx(be,{children:p.jsx(rb,{})})},{path:"topics",element:p.jsx(be,{children:p.jsx(pk,{})})},{path:"topics/:topic",element:p.jsx(be,{children:p.jsx(yk,{})})},{element:p.jsx(Pc,{roleTypes:["superadmin"],roleNames:["engineer"]}),children:[{path:"workflows",element:p.jsx(be,{children:p.jsx(DN,{})})},{path:"workflows/executions",element:p.jsx(be,{children:p.jsx(PN,{})})},{path:"workflows/durable/executions",element:p.jsx(be,{children:p.jsx(LN,{})})},{path:"workflows/durable/executions/:workflowId",element:p.jsx(be,{children:p.jsx(eb,{})})},{path:"workflows/tasks",element:p.jsx(be,{children:p.jsx($N,{})})},{path:"workflows/tasks/detail/:id",element:p.jsx(be,{children:p.jsx(HN,{})})},{path:"workflows/executions/:workflowId",element:p.jsx(be,{children:p.jsx(eb,{})})},{path:"workflows/start",element:p.jsx(be,{children:p.jsx(qN,{})})},{path:"workflows/durable/invoke",element:p.jsx(be,{children:p.jsx(BN,{})})},{path:"workflows/cron",element:p.jsx(In,{to:"/workflows/start?mode=schedule",replace:!0})},{path:"workflows/workers",element:p.jsx(be,{children:p.jsx(FN,{})})},{path:"workflows/registry",element:p.jsx(be,{children:p.jsx(VN,{})})},{path:"workflows/registry/new",element:p.jsx(be,{children:p.jsx(tb,{})})},{path:"workflows/registry/:workflowType",element:p.jsx(be,{children:p.jsx(tb,{})})}]},{element:p.jsx(Pc,{roleTypes:["superadmin"],roleNames:["engineer"]}),children:[{path:"mcp/workflows",element:p.jsx(be,{children:p.jsx(UN,{})})},{path:"mcp/workflows/invoke",element:p.jsx(be,{children:p.jsx(zN,{})})},{path:"mcp/workflows/:id",element:p.jsx(be,{children:p.jsx(IN,{})})},{path:"mcp/executions",element:p.jsx(be,{children:p.jsx(AN,{})})},{path:"mcp/executions/:jobId",element:p.jsx(be,{children:p.jsx(jN,{})})},{path:"files",element:p.jsx(be,{children:p.jsx(ck,{})})},{path:"knowledge",element:p.jsx(be,{children:p.jsx(uk,{})})},{element:p.jsx(_N,{}),children:[{path:"mcp",element:p.jsx(be,{children:p.jsx(ON,{})})},{path:"mcp/queries",element:p.jsx(be,{children:p.jsx(TN,{})})},{path:"mcp/queries/:workflowId",element:p.jsx(be,{children:p.jsx(NN,{})})},{path:"mcp/tools",element:p.jsx(In,{to:"/mcp/servers",replace:!0})},{path:"mcp/servers",element:p.jsx(be,{children:p.jsx(YN,{})})},{path:"mcp/servers/new",element:p.jsx(be,{children:p.jsx(nb,{})})},{path:"mcp/servers/:serverId",element:p.jsx(be,{children:p.jsx(nb,{})})}]}]},{path:"operations",element:p.jsx(be,{children:p.jsx(sk,{})})},{element:p.jsx(Pc,{roleTypes:["admin","superadmin"],roleNames:["engineer"]}),children:[{path:"admin",element:p.jsx(be,{children:p.jsx(GN,{})})},{path:"admin/users",element:p.jsx(be,{children:p.jsx(KN,{})})},{path:"admin/escalation-chains",element:p.jsx(In,{to:"/admin/roles",replace:!0})},{path:"admin/roles",element:p.jsx(be,{children:p.jsx(XN,{})})},{path:"admin/roles/:role",element:p.jsx(be,{children:p.jsx(JN,{})})},{path:"admin/roles/:role/schema",element:p.jsx(be,{children:p.jsx(WN,{})})},{path:"admin/roles/:role/list-schema",element:p.jsx(be,{children:p.jsx(ek,{})})},{path:"admin/scan-codes",element:p.jsx(be,{children:p.jsx(tk,{})})},{path:"admin/scan-codes/:version",element:p.jsx(be,{children:p.jsx(nk,{})})},{path:"admin/personas",element:p.jsx(be,{children:p.jsx(QN,{})})},{path:"admin/personas/:key",element:p.jsx(be,{children:p.jsx(ZN,{})})}]},{element:p.jsx(Pc,{roleTypes:["superadmin"],roleNames:["engineer"]}),children:[{path:"admin/bots",element:p.jsx(In,{to:"/admin/users?tab=service-accounts",replace:!0})},{element:p.jsx(wN,{flag:"dbMaintenance"}),children:[{path:"admin/maintenance",element:p.jsx(be,{children:p.jsx(ik,{})})}]},{path:"admin/controlplane",element:p.jsx(be,{children:p.jsx(ak,{})})},{path:"admin/streams",element:p.jsx(be,{children:p.jsx(ok,{})})}]}]}],{basename:window.__LT_BASE__||"/"});function vk(){return p.jsx(ow,{client:Kv,children:p.jsx(Qw,{children:p.jsx(tO,{children:p.jsx(uw,{router:bk})})})})}vv(bv());const Zd=document.createElement("link");Zd.rel="stylesheet";Zd.href=`${Nt}/api/settings/custom.css`;document.head.appendChild(Zd);Iw.createRoot(document.getElementById("root")).render(p.jsx(j.StrictMode,{children:p.jsx(vk,{})}));export{bu as $,Kk as A,Xk as B,Qd as C,rN as D,Jk as E,Iv as F,Zk as G,uO as H,tv as I,PT as J,Lk as K,Ft as L,uT as M,Db as N,jk as O,Rk as P,Ok as Q,sv as R,AT as S,iv as T,Jd as U,Hk as V,cT as W,t3 as X,Mk as Y,ij as Z,Zl as _,i3 as a,Lv as a0,zk as a1,YA as a2,Ev as a3,Ik as a4,Fk as a5,Qk as a6,Yy as a7,Sv as a8,Xd as a9,ze as aA,qk as aB,y3 as aC,g3 as aD,Yv as aE,Gd as aF,Wb as aG,e3 as aH,dv as aa,n3 as ab,Nk as ac,Ck as ad,kk as ae,Ak as af,_d as ag,Ag as ah,Dd as ai,Wk as aj,Nt as ak,pb as al,r3 as am,Tk as an,o3 as ao,s3 as ap,c3 as aq,LA as ar,f3 as as,h3 as at,l3 as au,u3 as av,Av as aw,RA as ax,sj as ay,a3 as az,mv as b,bO as c,Dk as d,n2 as e,DA as f,_e as g,Uk as h,$k as i,Gk as j,Bk as k,Xb as l,m3 as m,Pk as n,p3 as o,rj as p,Kd as q,oT as r,lT as s,dT as t,Wn as u,Zb as v,d3 as w,fO as x,Vk as y,Yk as z};
|
|
67
|
+
//# sourceMappingURL=index-CgXVDPW-.js.map
|