From 8b09742566c8fbc743c4d435842997d06e3e9855 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Wed, 12 Aug 2026 15:30:22 +0200 Subject: [PATCH 1/3] fix(history): record what an edit changed, not what it ended up as MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The request timeline said "HR adjusted to 2 – 6 March (5 days)", which is the resulting state — readable, and useless for the question anybody opens the history to ask. The request itself already shows what it says now. What the timeline is for is what somebody changed and by how much, and a day count means nothing without the number it replaced. Edits now report the difference, field by field: "Working days 3 → 5 (+2)", "Dates 2–4 Mar → 2–6 Mar", "Reason “Wedding” → …", replacement added or removed. Both edit paths snapshot the request before mutating it, since afterwards the old values are gone. A save that changes nothing writes no detail rather than a sentence implying it did. Creation gained a real detail line too — type, dates, day count and the employee's reason. That reason previously went only into the server log, on the grounds that the Details tab shows it; but the Details tab shows the *current* reason, so once HR corrected the request nothing could say what the leave had been booked for. Co-Authored-By: Claude Opus 5 (1M context) --- SPECIFICATION.md | 32 ++++++++- lib/Service/RequestService.php | 125 ++++++++++++++++++++++++++++++--- 2 files changed, 145 insertions(+), 12 deletions(-) diff --git a/SPECIFICATION.md b/SPECIFICATION.md index 234ca7b..a0b23ac 100644 --- a/SPECIFICATION.md +++ b/SPECIFICATION.md @@ -240,13 +240,39 @@ happened and when. One row is written for every meaningful transition. | `request_id` | bigint FK, indexed | The request this event belongs to. | | `actor_uid` | string(64) | Who performed the action; the literal `system` for automated events (e.g. escalation). | | `event_type` | string(32) | Machine key: `request_created`, `request_updated`, `request_edited_superseding`, `request_hr_edited`, `withdrawal_requested`, `request_cancelled`, `withdrawal_approved`, `request_approved`, `request_rejected`, `withdrawal_rejected`, `request_escalated`, `comment_added`. | -| `detail` | text, nullable | Human-readable extra (decision comment, new date range, comment body, "auto-approved", …). | +| `detail` | text, nullable | Human-readable extra. For an edit this is the **difference**, not the result: `Working days 3 → 5 (+2); Reason “Wedding” → “Wedding (extended)”`. Recording only the resulting state cannot answer what anybody opens the history to ask — what changed and by how much — and a day count means nothing without the number it replaced. On creation it carries the type, dates, day count and the employee's reason, since the request itself only ever shows its *current* state. | | `created_at` | datetime | | Events are written by the same `audit()` path that emits the server-log entry (§11), so history, server log and activity stay in sync from a single call site. History writes are best-effort — a failure never blocks the workflow. +### 3.7b `absence_entitlement_events` (entitlement history) + +The same idea for entitlements, which had no timeline at all: §3.7 is keyed on +`request_id`, and an entitlement belongs to no request, so an adjustment left only a +server-log line and an activity entry reading "Leave balance of X was adjusted" — +with neither the amount nor the reason. Worse, the note HR is *required* to give +when adjusting was stored on the entitlement row, displayed nowhere, and overwritten +by the next adjustment. + +| Column | Type | Notes | +|--------|------|-------| +| `id` | bigint, PK | | +| `entitlement_id` | bigint, indexed | The entitlement this change belongs to. | +| `employee_uid` | string(64), indexed | Denormalised from the entitlement so the GDPR purge (§17) and per-person views need no join to a row that is about to be deleted. | +| `actor_uid` | string(64) | Who made the change. | +| `field` | string(32) | `base_days`, `carry_over_days` or `manual_adjustment`. | +| `old_value` / `new_value` | float | The figure before and after; the delta is derived. | +| `note` | text, nullable | The reason given, attached to every figure that save touched. | +| `created_at` | datetime | | + +**One row per changed figure, not per save,** so "+2 days for the wedding" reads on +its own. A save that moves nothing writes nothing. Surfaced in the entitlement +editor in HR → Balances, and carried into the activity entry so it says what +changed rather than only that something did. Best-effort, like §3.7: an unwritable +history must not cost HR the adjustment they just made. + ### 3.8 Attachments (optional, phase 2) For doctor's notes: allow attaching a file reference stored in the user's Files. @@ -745,6 +771,10 @@ the SPA). All list endpoints paginate and accept filters. - `GET /api/employees/{uid}/balance` — manager (reports) / HR only. - `GET /api/entitlements` / `PUT /api/entitlements/{id}` — HR manage. - `POST /api/entitlements/bulk` — HR bulk set. +- `GET /api/entitlements/{id}/history` — HR only: who changed which figure on an + entitlement, from what to what, and the note they gave. One row per figure per + save, so a single adjustment reads on its own rather than having to be diffed + out of a blob. **Coverage & calendar** - `GET /api/coverage?from&to&scope=team|company` — overlaps + conflict count (§8). diff --git a/lib/Service/RequestService.php b/lib/Service/RequestService.php index 083a578..a049781 100644 --- a/lib/Service/RequestService.php +++ b/lib/Service/RequestService.php @@ -361,17 +361,115 @@ public function create(string $actorUid, array $data): LeaveRequest { } private function createdDetail(LeaveRequest $request, LeaveType $type, bool $onBehalf): ?string { - if (!$type->getEmployeeRequestable()) { - return 'Recorded by HR'; - } - if ($onBehalf) { - return 'Recorded by HR on behalf'; - } - return match ($request->getStatus()) { - LeaveRequest::STATUS_APPROVED => 'Automatically approved', - LeaveRequest::STATUS_ESCALATED => 'No line manager — routed to HR', + // Lead with what was actually asked for. The history is the one place the + // original ask survives: the request itself only ever shows its *current* + // state, so once HR corrects the dates or the reason, nothing else can say + // what the leave was booked for in the first place. + $parts = [$type->getLabel() . ', ' . $this->describeRange($request) . ' (' . $this->days($request->getWorkingDays()) . ')']; + $reason = trim((string)$request->getReason()); + if ($reason !== '') { + $parts[] = 'Reason: ' . $this->quote($reason); + } + $how = match (true) { + !$type->getEmployeeRequestable() => 'Recorded by HR', + $onBehalf => 'Recorded by HR on behalf', + $request->getStatus() === LeaveRequest::STATUS_APPROVED => 'Automatically approved', + $request->getStatus() === LeaveRequest::STATUS_ESCALATED => 'No line manager — routed to HR', default => null, }; + if ($how !== null) { + $parts[] = $how; + } + return implode(' · ', $parts); + } + + /** + * The fields an edit may change, captured before it does. + * + * @return array + */ + private function snapshot(LeaveRequest $request): array { + return [ + 'typeId' => $request->getTypeId(), + 'startDate' => $request->getStartDate(), + 'endDate' => $request->getEndDate(), + 'workingDays' => $request->getWorkingDays(), + 'reason' => (string)$request->getReason(), + 'replacementUid' => (string)$request->getReplacementUid(), + ]; + } + + /** + * What actually changed, field by field, as a sentence for the history timeline. + * + * Recording the resulting state instead — "adjusted to 2 – 6 March (5 days)" — + * is what the timeline used to do, and it cannot answer the question anybody + * opens the history to ask: not what the request says now (the request itself + * says that), but what somebody changed and by how much. A day count especially + * means nothing without the number it replaced. + * + * @param array $before from {@see snapshot()} + * @return ?string null when nothing observable changed + */ + private function describeChanges(array $before, LeaveRequest $after): ?string { + $parts = []; + if ($before['typeId'] !== $after->getTypeId()) { + $parts[] = 'Type ' . $this->typeLabel((int)$before['typeId']) . ' → ' . $this->typeLabel($after->getTypeId()); + } + if ($before['startDate'] !== $after->getStartDate() || $before['endDate'] !== $after->getEndDate()) { + $parts[] = 'Dates ' . $this->range((string)$before['startDate'], (string)$before['endDate']) + . ' → ' . $this->describeRange($after); + } + $wasDays = (float)$before['workingDays']; + $nowDays = $after->getWorkingDays(); + if (abs($wasDays - $nowDays) > 0.001) { + $delta = $nowDays - $wasDays; + $parts[] = 'Working days ' . $this->days($wasDays) . ' → ' . $this->days($nowDays) + . ' (' . ($delta > 0 ? '+' : '−') . $this->days(abs($delta)) . ')'; + } + $wasReason = trim((string)$before['reason']); + $nowReason = trim((string)$after->getReason()); + if ($wasReason !== $nowReason) { + $parts[] = $nowReason === '' + ? 'Reason cleared' + : ($wasReason === '' ? 'Reason: ' . $this->quote($nowReason) + : 'Reason ' . $this->quote($wasReason) . ' → ' . $this->quote($nowReason)); + } + $wasRep = (string)$before['replacementUid']; + $nowRep = (string)$after->getReplacementUid(); + if ($wasRep !== $nowRep) { + $parts[] = $nowRep === '' + ? 'Replacement removed (' . $this->displayName($wasRep) . ')' + : ($wasRep === '' ? 'Replacement: ' . $this->displayName($nowRep) + : 'Replacement ' . $this->displayName($wasRep) . ' → ' . $this->displayName($nowRep)); + } + return $parts === [] ? null : implode('; ', $parts); + } + + private function describeRange(LeaveRequest $request): string { + return $this->range($request->getStartDate(), $request->getEndDate()); + } + + private function range(string $start, string $end): string { + return $start === $end ? $start : $start . ' – ' . $end; + } + + /** A day count without a trailing `.0`, so "5 days" rather than "5.0 days". */ + private function days(float $value): string { + $formatted = rtrim(rtrim(number_format($value, 1, '.', ''), '0'), '.'); + return $formatted . ($formatted === '1' ? ' day' : ' days'); + } + + private function quote(string $text): string { + return '“' . $text . '”'; + } + + private function typeLabel(int $typeId): string { + try { + return $this->leaveTypeMapper->find($typeId)->getLabel(); + } catch (DoesNotExistException) { + return 'type #' . $typeId; + } } // ---------------------------------------------------------------- edit ---- @@ -414,6 +512,9 @@ private function editInPlace(string $actorUid, LeaveRequest $request, array $dat $replacementUid = $this->resolveReplacement($request->getEmployeeUid(), $type, $data['replacementUid'] ?? $request->getReplacementUid()); + // Captured before the entity is mutated below — afterwards the old values are gone. + $before = $this->snapshot($request); + $request = $this->withEmployeeLock($request->getEmployeeUid(), fn (): LeaveRequest => $this->atomic(function () use ( $request, $type, $start, $end, $replacementUid, $data, ): LeaveRequest { @@ -440,7 +541,7 @@ private function editInPlace(string $actorUid, LeaveRequest $request, array $dat } elseif ($request->getManagerUid() !== null) { $this->notifications->notifyNewRequest($request, $request->getManagerUid()); } - $this->audit('request_updated', $request, ['actor' => $actorUid, 'detail' => 'Changed to ' . $request->getStartDate() . ' – ' . $request->getEndDate()]); + $this->audit('request_updated', $request, ['actor' => $actorUid, 'detail' => $this->describeChanges($before, $request)]); return $request; } @@ -499,6 +600,8 @@ private function createSuperseding(string $actorUid, LeaveRequest $original, arr private function hrEdit(string $actorUid, LeaveRequest $request, array $data): LeaveRequest { $wasApproved = $request->getStatus() === LeaveRequest::STATUS_APPROVED; + // Before the setters below overwrite them; the history reports the difference. + $before = $this->snapshot($request); if (isset($data['typeId'])) { $request->setTypeId($this->resolveType((int)$data['typeId'])->getId()); } @@ -544,7 +647,7 @@ private function hrEdit(string $actorUid, LeaveRequest $request, array $data): L $this->applyCalendar($request); } $this->activity->publish(ActivityPublisher::SUBJECT_CREATED, $this->activityParams($request), [$request->getEmployeeUid()], $request); - $this->audit('request_hr_edited', $request, ['actor' => $actorUid, 'detail' => 'HR adjusted to ' . $request->getStartDate() . ' – ' . $request->getEndDate() . ' (' . (string)$request->getWorkingDays() . ' days)']); + $this->audit('request_hr_edited', $request, ['actor' => $actorUid, 'detail' => $this->describeChanges($before, $request)]); return $request; } From 16d53604e3a63fac7c4df8a85269ff30a45884a1 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Wed, 12 Aug 2026 15:30:22 +0200 Subject: [PATCH 2/3] feat(entitlements): keep a history of who changed an allowance, and why MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Entitlement changes had nowhere to be recorded. The request timeline is keyed on request_id and an entitlement belongs to no request, so an adjustment left a line in nextcloud.log that nobody reads and an activity entry reading "Leave balance of X was adjusted" — with neither the amount nor the reason. The note HR is *required* to write when adjusting was the sharpest part: stored on the entitlement row, displayed in no view at all, and overwritten by the next adjustment. A mandatory field nobody could ever read. Adds absence_entitlement_events: one row per figure a save actually moved, carrying who, which figure, from what to what, and the note. One row per figure rather than per save, so "+2 days for the wedding" is a fact that reads on its own instead of something to be diffed out of a blob. A save that moves nothing records nothing. Surfaced where the question gets asked — the entitlement editor in HR → Balances, next to the figure it explains — and over GET /api/entitlements/{id}/history. The activity entry now says what changed rather than only that something did. Writes are best-effort, like the request timeline: an unwritable history must not cost HR the adjustment they just made. The events name the employee and describe their allowance, so UserDeletedListener purges them with the rest (§17). Co-Authored-By: Claude Opus 5 (1M context) --- appinfo/routes.php | 1 + lib/Activity/Provider.php | 24 ++++- lib/Controller/EntitlementController.php | 16 +++ lib/Db/EntitlementEvent.php | 72 ++++++++++++++ lib/Db/EntitlementEventMapper.php | 68 +++++++++++++ lib/Listener/UserDeletedListener.php | 5 +- .../Version1004Date20260812120000.php | 62 ++++++++++++ lib/Service/EntitlementService.php | 98 ++++++++++++++++++- tests/Unit/Service/EntitlementServiceTest.php | 44 +++++++++ 9 files changed, 387 insertions(+), 3 deletions(-) create mode 100644 lib/Db/EntitlementEvent.php create mode 100644 lib/Db/EntitlementEventMapper.php create mode 100644 lib/Migration/Version1004Date20260812120000.php diff --git a/appinfo/routes.php b/appinfo/routes.php index f6bd2b7..7718728 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -31,6 +31,7 @@ ['name' => 'entitlement#create', 'url' => '/api/entitlements', 'verb' => 'POST'], ['name' => 'entitlement#update', 'url' => '/api/entitlements/{id}', 'verb' => 'PUT'], ['name' => 'entitlement#bulk', 'url' => '/api/entitlements/bulk', 'verb' => 'POST'], + ['name' => 'entitlement#history', 'url' => '/api/entitlements/{id}/history', 'verb' => 'GET'], // Coverage & calendar ['name' => 'coverage#index', 'url' => '/api/coverage', 'verb' => 'GET'], diff --git a/lib/Activity/Provider.php b/lib/Activity/Provider.php index 454c05c..54187d8 100644 --- a/lib/Activity/Provider.php +++ b/lib/Activity/Provider.php @@ -42,7 +42,7 @@ public function parse($language, IEvent $event, ?IEvent $previousEvent = null): ActivityPublisher::SUBJECT_CANCELLED => $l->t('Leave for %1$s (%2$s) was cancelled', [$employee, $range]), ActivityPublisher::SUBJECT_ESCALATED => $l->t('Leave for %1$s (%2$s) was escalated to HR', [$employee, $range]), ActivityPublisher::SUBJECT_WITHDRAWAL => $l->t('%1$s requested to withdraw leave for %2$s', [$employee, $range]), - ActivityPublisher::SUBJECT_BALANCE_ADJUSTED => $l->t('Leave balance of %s was adjusted', [$employee]), + ActivityPublisher::SUBJECT_BALANCE_ADJUSTED => $this->balanceAdjusted($l, $employee, $params), default => throw new UnknownActivityException('Unknown subject'), }; @@ -54,6 +54,28 @@ public function parse($language, IEvent $event, ?IEvent $previousEvent = null): return $event; } + /** + * "Leave balance of X was adjusted" told nobody anything: not by how much, not + * which figure, and not why — while HR is *required* to give a reason. The + * numbers are carried on the event, so say them. + * + * Older entries carry neither key and still have to render, so both are + * optional and the bare sentence remains the fallback. + * + * @param array $params + */ + private function balanceAdjusted(\OCP\IL10N $l, string $employee, array $params): string { + $summary = trim((string)($params['summary'] ?? '')); + $note = trim((string)($params['note'] ?? '')); + if ($summary === '') { + return $l->t('Leave balance of %s was adjusted', [$employee]); + } + if ($note === '') { + return $l->t('Leave balance of %1$s was adjusted: %2$s', [$employee, $summary]); + } + return $l->t('Leave balance of %1$s was adjusted: %2$s (%3$s)', [$employee, $summary, $note]); + } + private function displayName(string $uid): string { if ($uid === '') { return ''; diff --git a/lib/Controller/EntitlementController.php b/lib/Controller/EntitlementController.php index 571c9de..75f9e2a 100644 --- a/lib/Controller/EntitlementController.php +++ b/lib/Controller/EntitlementController.php @@ -67,6 +67,22 @@ public function update(int $id, ?float $baseDays = null, ?float $carryOverDays = }); } + /** + * Who changed this entitlement, which figure, from what to what, and why (§6.1). + * HR only, like every other entitlement endpoint. + */ + #[NoAdminRequired] + #[UserRateLimit(limit: 60, period: 60)] + public function history(int $id): DataResponse { + return $this->handle(function () use ($id) { + $this->permission->assertHr((string)$this->userId); + return array_map( + static fn ($event) => $event->jsonSerialize(), + $this->service->historyFor($id), + ); + }); + } + #[NoAdminRequired] #[UserRateLimit(limit: 10, period: 60)] public function bulk(int $year, int $typeId, float $baseDays, ?string $group = null): DataResponse { diff --git a/lib/Db/EntitlementEvent.php b/lib/Db/EntitlementEvent.php new file mode 100644 index 0000000..7f7495e --- /dev/null +++ b/lib/Db/EntitlementEvent.php @@ -0,0 +1,72 @@ +addType('entitlementId', 'integer'); + $this->addType('oldValue', 'float'); + $this->addType('newValue', 'float'); + $this->addType('createdAt', 'datetime'); + } + + #[\Override] + public function jsonSerialize(): array { + return [ + 'id' => $this->id, + 'entitlementId' => $this->entitlementId, + 'employeeUid' => $this->employeeUid, + 'actorUid' => $this->actorUid, + 'field' => $this->field, + 'oldValue' => $this->oldValue, + 'newValue' => $this->newValue, + // The client renders "+2" rather than re-deriving it from the two values, + // so the sign it shows and the one the audit log records cannot drift. + 'delta' => round($this->newValue - $this->oldValue, 1), + 'note' => $this->note, + 'createdAt' => $this->createdAt?->format(\DateTimeInterface::ATOM), + ]; + } +} diff --git a/lib/Db/EntitlementEventMapper.php b/lib/Db/EntitlementEventMapper.php new file mode 100644 index 0000000..488199f --- /dev/null +++ b/lib/Db/EntitlementEventMapper.php @@ -0,0 +1,68 @@ + + */ +class EntitlementEventMapper extends QBMapper { + public function __construct(IDBConnection $db) { + parent::__construct($db, 'absence_entitlement_events', EntitlementEvent::class); + } + + /** + * The full chronological history for one entitlement, oldest first. + * + * The id tiebreaker matters here: several figures can change in one save and + * therefore share a timestamp to the second, and without it the order they are + * shown in could differ between loads. + * + * @return EntitlementEvent[] + */ + public function findForEntitlement(int $entitlementId): array { + $qb = $this->db->getQueryBuilder(); + $qb->select('*') + ->from($this->getTableName()) + ->where($qb->expr()->eq('entitlement_id', $qb->createNamedParameter($entitlementId, IQueryBuilder::PARAM_INT))) + ->orderBy('created_at', 'ASC') + ->addOrderBy('id', 'ASC'); + return $this->findEntities($qb); + } + + /** + * Every recorded change for one employee, newest first — the whole story of + * their allowance across years and leave types. + * + * @return EntitlementEvent[] + */ + public function findForEmployee(string $employeeUid, ?int $limit = null): array { + $qb = $this->db->getQueryBuilder(); + $qb->select('*') + ->from($this->getTableName()) + ->where($qb->expr()->eq('employee_uid', $qb->createNamedParameter($employeeUid))) + ->orderBy('created_at', 'DESC') + ->addOrderBy('id', 'DESC'); + if ($limit !== null) { + $qb->setMaxResults($limit); + } + return $this->findEntities($qb); + } + + /** Used by the GDPR purge when an account is deleted (§17). */ + public function deleteForEmployee(string $employeeUid): void { + $qb = $this->db->getQueryBuilder(); + $qb->delete($this->getTableName()) + ->where($qb->expr()->eq('employee_uid', $qb->createNamedParameter($employeeUid))); + $qb->executeStatement(); + } +} diff --git a/lib/Listener/UserDeletedListener.php b/lib/Listener/UserDeletedListener.php index 82f8192..4ca5866 100644 --- a/lib/Listener/UserDeletedListener.php +++ b/lib/Listener/UserDeletedListener.php @@ -64,9 +64,12 @@ public function handle(Event $event): void { } $this->deleteWhereEquals('absence_comments', 'author_uid', $uid); - // Remove the user's requests and entitlements. + // Remove the user's requests and entitlements, and the record of who changed + // those entitlements — it names the employee and is about their allowance, so + // it goes with them (§17). $this->deleteWhereEquals('absence_requests', 'employee_uid', $uid); $this->deleteWhereEquals('absence_entitlements', 'employee_uid', $uid); + $this->deleteWhereEquals('absence_entitlement_events', 'employee_uid', $uid); // Detach the user as a manager or replacement from any remaining requests. foreach (['manager_uid', 'replacement_uid'] as $column) { diff --git a/lib/Migration/Version1004Date20260812120000.php b/lib/Migration/Version1004Date20260812120000.php new file mode 100644 index 0000000..848ac1e --- /dev/null +++ b/lib/Migration/Version1004Date20260812120000.php @@ -0,0 +1,62 @@ +hasTable('absence_entitlement_events')) { + return null; + } + + $table = $schema->createTable('absence_entitlement_events'); + $table->addColumn('id', Types::BIGINT, ['autoincrement' => true, 'notnull' => true]); + $table->addColumn('entitlement_id', Types::BIGINT, ['notnull' => true]); + // Denormalised from the entitlement so the GDPR purge and any per-person + // view can work without joining a row that is about to be deleted. + $table->addColumn('employee_uid', Types::STRING, ['notnull' => true, 'length' => 64]); + $table->addColumn('actor_uid', Types::STRING, ['notnull' => true, 'length' => 64]); + // 'base_days' | 'carry_over_days' | 'manual_adjustment' + $table->addColumn('field', Types::STRING, ['notnull' => true, 'length' => 32]); + $table->addColumn('old_value', Types::FLOAT, ['notnull' => true, 'default' => 0]); + $table->addColumn('new_value', Types::FLOAT, ['notnull' => true, 'default' => 0]); + $table->addColumn('note', Types::TEXT, ['notnull' => false]); + $table->addColumn('created_at', Types::DATETIME, ['notnull' => true]); + + $table->setPrimaryKey(['id']); + $table->addIndex(['entitlement_id'], 'absence_entev_ent'); + $table->addIndex(['employee_uid'], 'absence_entev_emp'); + + return $schema; + } +} diff --git a/lib/Service/EntitlementService.php b/lib/Service/EntitlementService.php index db9693c..315e34b 100644 --- a/lib/Service/EntitlementService.php +++ b/lib/Service/EntitlementService.php @@ -9,6 +9,8 @@ namespace OCA\Absence\Service; use OCA\Absence\Db\Entitlement; +use OCA\Absence\Db\EntitlementEvent; +use OCA\Absence\Db\EntitlementEventMapper; use OCA\Absence\Db\EntitlementMapper; use OCA\Absence\Db\LeaveTypeMapper; use OCA\Absence\Exception\NotFoundException; @@ -22,6 +24,7 @@ class EntitlementService { public function __construct( private EntitlementMapper $entitlementMapper, + private EntitlementEventMapper $eventMapper, private LeaveTypeMapper $leaveTypeMapper, private BalanceService $balanceService, private ConfigService $config, @@ -50,6 +53,14 @@ public function update(string $actorUid, int $id, array $data): Entitlement { } catch (DoesNotExistException) { throw new NotFoundException('Entitlement not found'); } + // Read before any setter runs: these are what the history reports moving from. + $before = [ + EntitlementEvent::FIELD_BASE_DAYS => $ent->getBaseDays(), + EntitlementEvent::FIELD_CARRY_OVER_DAYS => $ent->getCarryOverDays(), + EntitlementEvent::FIELD_MANUAL_ADJUSTMENT => $ent->getManualAdjustment(), + ]; + $note = trim((string)($data['adjustmentNote'] ?? '')); + if (array_key_exists('baseDays', $data)) { $ent->setBaseDays((float)$data['baseDays']); } @@ -58,7 +69,7 @@ public function update(string $actorUid, int $id, array $data): Entitlement { } if (array_key_exists('manualAdjustment', $data)) { $adjustment = (float)$data['manualAdjustment']; - if ($adjustment !== $ent->getManualAdjustment() && trim((string)($data['adjustmentNote'] ?? '')) === '') { + if ($adjustment !== $ent->getManualAdjustment() && $note === '') { throw new ValidationException('A note is required when adjusting an entitlement.'); } $ent->setManualAdjustment($adjustment); @@ -67,9 +78,15 @@ public function update(string $actorUid, int $id, array $data): Entitlement { $ent->setUpdatedAt($this->clock->now()); $ent = $this->entitlementMapper->update($ent); + $changes = $this->recordChanges($actorUid, $ent, $before, $note); + $this->activity->publish(ActivityPublisher::SUBJECT_BALANCE_ADJUSTED, [ 'employee' => $ent->getEmployeeUid(), 'year' => $ent->getYear(), + // Carried so the activity entry can say what happened rather than only + // that something did. Empty when a save changed no figure. + 'summary' => $this->summarise($changes), + 'note' => $note, ], [$ent->getEmployeeUid(), $actorUid]); $this->logger->info('Absence action: entitlement_updated', [ 'app' => 'absence', @@ -226,6 +243,85 @@ public function expireCarryOver(int $year): int { return $affected; } + /** + * The chronological history of an entitlement, oldest first (§6.1). + * + * @return EntitlementEvent[] + */ + public function historyFor(int $entitlementId): array { + return $this->eventMapper->findForEntitlement($entitlementId); + } + + /** + * Record one event per figure this save actually moved. + * + * One row per figure, not per save: "+2 days for the wedding" is then a fact + * that reads on its own, instead of something a reader has to diff out of a + * blob. The note is attached to every figure the save touched, because it is + * the reason the whole save happened. + * + * Best-effort, like the request timeline: an unwritable history must not cost + * HR the adjustment they just made. + * + * @param array $before figure => value before the save + * @return EntitlementEvent[] the events actually written + */ + private function recordChanges(string $actorUid, Entitlement $ent, array $before, string $note): array { + $after = [ + EntitlementEvent::FIELD_BASE_DAYS => $ent->getBaseDays(), + EntitlementEvent::FIELD_CARRY_OVER_DAYS => $ent->getCarryOverDays(), + EntitlementEvent::FIELD_MANUAL_ADJUSTMENT => $ent->getManualAdjustment(), + ]; + $written = []; + foreach ($after as $field => $newValue) { + $oldValue = $before[$field]; + // Float equality is the wrong test for days entered as decimals. + if (abs($newValue - $oldValue) < 0.001) { + continue; + } + try { + $event = new EntitlementEvent(); + $event->setEntitlementId((int)$ent->getId()); + $event->setEmployeeUid($ent->getEmployeeUid()); + $event->setActorUid($actorUid); + $event->setField($field); + $event->setOldValue($oldValue); + $event->setNewValue($newValue); + $event->setNote($note !== '' ? $note : null); + $event->setCreatedAt($this->clock->now()); + $written[] = $this->eventMapper->insert($event); + } catch (\Throwable $e) { + $this->logger->warning('Absence: could not record entitlement history', ['exception' => $e]); + } + } + return $written; + } + + /** + * The changes as one short line, for the activity feed and the log. + * + * @param EntitlementEvent[] $changes + */ + private function summarise(array $changes): string { + $labels = [ + EntitlementEvent::FIELD_BASE_DAYS => 'base', + EntitlementEvent::FIELD_CARRY_OVER_DAYS => 'carry-over', + EntitlementEvent::FIELD_MANUAL_ADJUSTMENT => 'adjustment', + ]; + $parts = []; + foreach ($changes as $change) { + $delta = $change->getNewValue() - $change->getOldValue(); + $parts[] = ($labels[$change->getField()] ?? $change->getField()) + . ' ' . ($delta > 0 ? '+' : '−') . $this->days(abs($delta)); + } + return implode(', ', $parts); + } + + /** A day count without a trailing `.0`. */ + private function days(float $value): string { + return rtrim(rtrim(number_format($value, 1, '.', ''), '0'), '.'); + } + /** * An entitlement is only meaningful for a type that counts against the balance, * and only for a type that exists. diff --git a/tests/Unit/Service/EntitlementServiceTest.php b/tests/Unit/Service/EntitlementServiceTest.php index 255a320..4ad1040 100644 --- a/tests/Unit/Service/EntitlementServiceTest.php +++ b/tests/Unit/Service/EntitlementServiceTest.php @@ -9,6 +9,8 @@ namespace OCA\Absence\Tests\Unit\Service; use OCA\Absence\Db\Entitlement; +use OCA\Absence\Db\EntitlementEvent; +use OCA\Absence\Db\EntitlementEventMapper; use OCA\Absence\Db\EntitlementMapper; use OCA\Absence\Db\LeaveTypeMapper; use OCA\Absence\Exception\ValidationException; @@ -29,6 +31,7 @@ class EntitlementServiceTest extends TestCase { use ClockMockTrait; private EntitlementMapper&MockObject $entitlementMapper; + private EntitlementEventMapper&MockObject $eventMapper; private LeaveTypeMapper&MockObject $leaveTypeMapper; private BalanceService&MockObject $balanceService; private ConfigService&MockObject $config; @@ -40,8 +43,11 @@ protected function setUp(): void { $this->leaveTypeMapper = $this->createMock(LeaveTypeMapper::class); $this->balanceService = $this->createMock(BalanceService::class); $this->config = $this->createMock(ConfigService::class); + $this->eventMapper = $this->createMock(EntitlementEventMapper::class); + $this->eventMapper->method('insert')->willReturnArgument(0); $this->service = new EntitlementService( $this->entitlementMapper, + $this->eventMapper, $this->leaveTypeMapper, $this->balanceService, $this->config, @@ -134,6 +140,44 @@ public function testRolloverWithCappedPolicyCapsCarryOver(): void { $this->assertSame(10.0, $updated->getCarryOverDays()); } + /** + * The complaint this history exists for: HR is required to write a reason when + * adjusting, and it used to be stored on the row and shown to nobody. + */ + public function testAdjustingRecordsTheChangeWithItsNote(): void { + $ent = $this->priorEntitlement(28.0); + $ent->setManualAdjustment(0.0); + $this->entitlementMapper->method('find')->with(1)->willReturn($ent); + $this->entitlementMapper->method('update')->willReturnArgument(0); + + $recorded = []; + $this->eventMapper->method('insert')->willReturnCallback(static function (EntitlementEvent $e) use (&$recorded) { + $recorded[] = $e; + return $e; + }); + + $this->service->update('hr', 1, ['manualAdjustment' => 2.0, 'adjustmentNote' => 'Wedding']); + + self::assertCount(1, $recorded, 'only the figure that moved is recorded'); + self::assertSame(EntitlementEvent::FIELD_MANUAL_ADJUSTMENT, $recorded[0]->getField()); + self::assertSame(0.0, $recorded[0]->getOldValue()); + self::assertSame(2.0, $recorded[0]->getNewValue()); + self::assertSame('Wedding', $recorded[0]->getNote()); + self::assertSame('hr', $recorded[0]->getActorUid()); + self::assertSame('bob', $recorded[0]->getEmployeeUid()); + } + + public function testSavingWithoutChangingAnythingRecordsNothing(): void { + $ent = $this->priorEntitlement(28.0); + $this->entitlementMapper->method('find')->with(1)->willReturn($ent); + $this->entitlementMapper->method('update')->willReturnArgument(0); + + // Re-saving the same figures is not a change and must not litter the history. + $this->eventMapper->expects(self::never())->method('insert'); + + $this->service->update('hr', 1, ['baseDays' => 28.0]); + } + /** * Covers assertCountingType(), which setForEmployee() shares — an HR form left open * while somebody else removed the type used to answer with a 500, because From 87e1b98876852d837d196c94b972209f06399616 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Wed, 12 Aug 2026 15:30:22 +0200 Subject: [PATCH 3/3] chore(assets): recompile Co-Authored-By: Claude Opus 5 (1M context) --- ...oxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs} | 14 +- ...witch-DVdt5Hkq-0woWiQP2.chunk.mjs.license} | 0 ...dioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs.map} | 2 +- js/absence-main.mjs | 16 +-- js/absence-main.mjs.map | 2 +- js/absence-personal-settings.mjs | 2 +- ...D4e.chunk.mjs => index-YEWpjbJf.chunk.mjs} | 4 +- ...cense => index-YEWpjbJf.chunk.mjs.license} | 0 ...k.mjs.map => index-YEWpjbJf.chunk.mjs.map} | 2 +- src/api.js | 2 + src/views/hr/HrBalances.vue | 127 ++++++++++++++++++ 11 files changed, 150 insertions(+), 21 deletions(-) rename js/{NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs => NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs} (98%) rename js/{NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs.license => NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs.license} (100%) rename js/{NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs.map => NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs.map} (99%) rename js/{index-CAVYKD4e.chunk.mjs => index-YEWpjbJf.chunk.mjs} (99%) rename js/{index-CAVYKD4e.chunk.mjs.license => index-YEWpjbJf.chunk.mjs.license} (100%) rename js/{index-CAVYKD4e.chunk.mjs.map => index-YEWpjbJf.chunk.mjs.map} (99%) diff --git a/js/NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs b/js/NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs similarity index 98% rename from js/NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs rename to js/NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs index a1943dc..e4c5ce4 100644 --- a/js/NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs +++ b/js/NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs @@ -3,23 +3,23 @@ * SPDX-License-Identifier: AGPL-3.0-or-later */body{--vs-search-input-color: var(--color-main-text);--vs-search-input-bg: var(--color-main-background);--vs-search-input-placeholder-color: var(--color-text-maxcontrast);--vs-font-size: var(--default-font-size);--vs-line-height: var(--default-line-height);--vs-state-disabled-bg: var(--color-background-hover);--vs-state-disabled-color: var(--color-text-maxcontrast);--vs-state-disabled-controls-color: var(--color-text-maxcontrast);--vs-state-disabled-cursor: not-allowed;--vs-disabled-bg: var(--color-background-hover);--vs-disabled-color: var(--color-text-maxcontrast);--vs-disabled-cursor: not-allowed;--vs-border-color: var(--color-border-maxcontrast);--vs-border-width: var(--border-width-input, 2px) !important;--vs-border-style: solid;--vs-border-radius: var(--border-radius-element);--vs-controls-color: var(--color-main-text);--vs-selected-bg: var(--color-background-hover);--vs-selected-color: var(--color-main-text);--vs-selected-border-color: var(--vs-border-color);--vs-selected-border-style: var(--vs-border-style);--vs-selected-border-width: var(--vs-border-width);--vs-dropdown-bg: var(--color-main-background);--vs-dropdown-color: var(--color-main-text);--vs-dropdown-z-index: 9999;--vs-dropdown-box-shadow: 0px 2px 2px 0px var(--color-box-shadow);--vs-dropdown-option-padding: 8px 20px;--vs-dropdown-option--active-bg: var(--color-background-hover);--vs-dropdown-option--active-color: var(--color-main-text);--vs-dropdown-option--kb-focus-box-shadow: inset 0px 0px 0px 2px var(--vs-border-color);--vs-dropdown-option--deselect-bg: var(--color-error);--vs-dropdown-option--deselect-color: #fff;--vs-transition-duration: 0ms;--vs-actions-padding: 0 8px 0 4px}.v-select.select{min-height:calc(var(--default-clickable-area) - 2 * var(--border-width-input));min-width:260px;margin:0 0 var(--default-grid-baseline)}.v-select.select.vs--open{--vs-border-width: var(--border-width-input-focused, 2px)}.v-select.select .select__label{display:block;margin-bottom:2px}.v-select.select .vs__selected{height:calc(var(--default-clickable-area) - 2 * var(--vs-border-width) - var(--default-grid-baseline));margin:calc(var(--default-grid-baseline) / 2);padding-block:0;padding-inline:12px 8px;border-radius:16px!important;background:var(--color-primary-element-light);border:none}.v-select.select.vs--open .vs__selected:first-of-type{margin-inline-start:calc(var(--default-grid-baseline) / 2 - (var(--border-width-input-focused, 2px) - var(--border-width-input, 2px)))!important}.v-select.select .vs__search{text-overflow:ellipsis;color:var(--color-main-text);min-height:unset!important;height:calc(var(--default-clickable-area) - 2 * var(--vs-border-width))!important}.v-select.select .vs__search::placeholder{color:var(--color-text-maxcontrast)}.v-select.select .vs__search,.v-select.select .vs__search:focus{margin:0}.v-select.select .vs__dropdown-toggle{position:relative;max-height:100px;padding:var(--border-width-input);overflow-y:auto}.v-select.select .vs__actions{position:sticky;top:0}.v-select.select .vs__clear{margin-inline-end:2px}.v-select.select.vs--open .vs__dropdown-toggle{border-color:var(--color-main-text);border-bottom-color:transparent;border-bottom-left-radius:0;border-bottom-right-radius:0;border-style:solid;border-width:var(--border-width-input-focused);outline:2px solid var(--color-main-background);padding:0}.v-select.select:not(.vs--disabled,.vs--open) .vs__dropdown-toggle:active,.v-select.select:not(.vs--disabled,.vs--open) .vs__dropdown-toggle:focus-within{outline:2px solid var(--color-main-background);border-color:var(--color-main-text)}.v-select.select.vs--disabled .vs__search,.v-select.select.vs--disabled .vs__selected{color:var(--color-text-maxcontrast)}.v-select.select.vs--disabled .vs__clear,.v-select.select.vs--disabled .vs__deselect{display:none}.v-select.select--no-wrap .vs__selected-options{flex-wrap:nowrap;overflow:auto;min-width:unset}.v-select.select--no-wrap .vs__selected-options .vs__selected{min-width:unset}.v-select.select--drop-up.vs--open .vs__dropdown-toggle{border-radius:0 0 var(--vs-border-radius) var(--vs-border-radius);border-top-color:transparent;border-bottom-color:var(--color-main-text)}.v-select.select .vs__selected-options{min-height:calc(var(--default-clickable-area) - 2 * var(--vs-border-width))}.v-select.select .vs__selected-options .vs__selected~.vs__search[readonly]{position:absolute}.v-select.select .vs__selected-options{padding:0 5px}.v-select.select.vs--single.vs--loading .vs__selected,.v-select.select.vs--single.vs--open .vs__selected{max-width:100%;opacity:1;color:var(--color-text-maxcontrast)}.v-select.select.vs--single .vs__selected-options{flex-wrap:nowrap}.v-select.select.vs--single .vs__selected{background:unset!important}.vs__dropdown-toggle{--input-border-box-shadow-light: 0 -1px var(--vs-border-color), 0 0 0 1px color-mix(in srgb, var(--vs-border-color), 65% transparent);--input-border-box-shadow-dark: 0 1px var(--vs-border-color), 0 0 0 1px color-mix(in srgb, var(--vs-border-color), 65% transparent);--input-border-box-shadow: var(--input-border-box-shadow-light);border:none;border-radius:var(--border-radius-element);box-shadow:var(--input-border-box-shadow)}.vs__dropdown-toggle:hover:not([disabled]){box-shadow:0 0 0 1px var(--vs-border-color)}@media(prefers-color-scheme:dark){.vs__dropdown-toggle .vs__dropdown-toggle{--input-border-box-shadow: var(--input-border-box-shadow-dark)}}[data-theme-dark] .vs__dropdown-toggle{--input-border-box-shadow: var(--input-border-box-shadow-dark)}[data-theme-light] .vs__dropdown-toggle{--input-border-box-shadow: var(--input-border-box-shadow-light)}.select--legacy .vs__dropdown-toggle{box-shadow:0 0 0 1px var(--vs-border-color)}.select--legacy .vs__dropdown-toggle:hover:not([disabled]){box-shadow:0 0 0 2px var(--vs-border-color)}.vs__dropdown-menu{border-width:var(--border-width-input-focused)!important;border-color:var(--color-main-text)!important;outline:none!important;box-shadow:-2px 0 0 var(--color-main-background),0 2px 0 var(--color-main-background),2px 0 0 var(--color-main-background),!important;padding:4px!important}.vs__dropdown-menu--floating{width:max-content;position:absolute;top:0;inset-inline-start:0}.vs__dropdown-menu--floating-placement-top{border-radius:var(--vs-border-radius) var(--vs-border-radius) 0 0!important;border-top-style:var(--vs-border-style)!important;border-bottom-style:none!important;box-shadow:0 -2px 0 var(--color-main-background),-2px 0 0 var(--color-main-background),2px 0 0 var(--color-main-background),!important}.vs__dropdown-menu .vs__dropdown-option{border-radius:6px!important}.vs__dropdown-menu .vs__no-options{color:var(--color-text-maxcontrast)!important}:root{--vs-colors--lightest:rgba(60,60,60,.26);--vs-colors--light:rgba(60,60,60,.5);--vs-colors--dark:#333;--vs-colors--darkest:rgba(0,0,0,.15);--vs-search-input-color:inherit;--vs-search-input-bg:#fff;--vs-search-input-placeholder-color:inherit;--vs-font-size:1rem;--vs-line-height:1.4;--vs-state-disabled-bg:#f8f8f8;--vs-state-disabled-color:var(--vs-colors--light);--vs-state-disabled-controls-color:var(--vs-colors--light);--vs-state-disabled-cursor:not-allowed;--vs-border-color:var(--vs-colors--lightest);--vs-border-width:1px;--vs-border-style:solid;--vs-border-radius:4px;--vs-actions-padding:4px 6px 0 3px;--vs-controls-color:var(--vs-colors--light);--vs-controls-size:1;--vs-controls--deselect-text-shadow:0 1px 0 #fff;--vs-selected-bg:#f0f0f0;--vs-selected-color:var(--vs-colors--dark);--vs-selected-border-color:var(--vs-border-color);--vs-selected-border-style:var(--vs-border-style);--vs-selected-border-width:var(--vs-border-width);--vs-dropdown-bg:#fff;--vs-dropdown-color:inherit;--vs-dropdown-z-index:1000;--vs-dropdown-min-width:160px;--vs-dropdown-max-height:350px;--vs-dropdown-box-shadow:0px 3px 6px 0px var(--vs-colors--darkest);--vs-dropdown-option-bg:#000;--vs-dropdown-option-color:var(--vs-dropdown-color);--vs-dropdown-option-padding:3px 20px;--vs-dropdown-option--active-bg:#136cfb;--vs-dropdown-option--active-color:#fff;--vs-dropdown-option--kb-focus-box-shadow:inset 0px 0px 0px 2px #949494;--vs-dropdown-option--deselect-bg:#fb5858;--vs-dropdown-option--deselect-color:#fff;--vs-transition-timing-function:cubic-bezier(1,-.115,.975,.855);--vs-transition-duration:.15s}.v-select{font-family:inherit;position:relative}.v-select,.v-select *{box-sizing:border-box}:root{--vs-transition-timing-function:cubic-bezier(1,.5,.8,1);--vs-transition-duration:.15s}@keyframes vSelectSpinner{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.vs__fade-enter-active,.vs__fade-leave-active{pointer-events:none;transition:opacity var(--vs-transition-duration) var(--vs-transition-timing-function)}.vs__fade-enter,.vs__fade-leave-to{opacity:0}:root{--vs-disabled-bg:var(--vs-state-disabled-bg);--vs-disabled-color:var(--vs-state-disabled-color);--vs-disabled-cursor:var(--vs-state-disabled-cursor)}.vs--disabled{.vs__clear,.vs__dropdown-toggle,.vs__open-indicator,.vs__open-indicator-button,.vs__search,.vs__selected{background-color:var(--vs-disabled-bg);cursor:var(--vs-disabled-cursor)}}.v-select[dir=rtl]{.vs__actions{padding:0 3px 0 6px}.vs__clear{margin-left:6px;margin-right:0}.vs__deselect{margin-left:0;margin-right:2px}.vs__dropdown-menu{text-align:right}}.vs__dropdown-toggle{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:var(--vs-search-input-bg);border:var(--vs-border-width) var(--vs-border-style) var(--vs-border-color);border-radius:var(--vs-border-radius);display:flex;padding:0 0 4px;white-space:normal}.vs__selected-options{display:flex;flex-basis:100%;flex-grow:1;flex-wrap:wrap;min-width:0;padding:0 2px;position:relative}.vs__actions{align-items:center;display:flex;padding:var(--vs-actions-padding)}.vs--searchable .vs__dropdown-toggle{cursor:text}.vs--unsearchable .vs__dropdown-toggle{cursor:pointer}.vs--open .vs__dropdown-toggle{border-bottom-color:transparent;border-bottom-left-radius:0;border-bottom-right-radius:0}.vs__open-indicator-button{background-color:transparent;border:0;cursor:pointer;padding:0}.vs__open-indicator{fill:var(--vs-controls-color);transform:scale(var(--vs-controls-size));transition:transform var(--vs-transition-duration) var(--vs-transition-timing-function);transition-timing-function:var(--vs-transition-timing-function)}.vs--open .vs__open-indicator{transform:rotate(180deg) scale(var(--vs-controls-size))}.vs--loading .vs__open-indicator{opacity:0}.vs__clear{background-color:transparent;border:0;cursor:pointer;fill:var(--vs-controls-color);margin-right:8px;padding:0}.vs__dropdown-menu{background:var(--vs-dropdown-bg);border:var(--vs-border-width) var(--vs-border-style) var(--vs-border-color);border-radius:0 0 var(--vs-border-radius) var(--vs-border-radius);border-top-style:none;box-shadow:var(--vs-dropdown-box-shadow);box-sizing:border-box;color:var(--vs-dropdown-color);display:block;left:0;list-style:none;margin:0;max-height:var(--vs-dropdown-max-height);min-width:var(--vs-dropdown-min-width);overflow-y:auto;padding:5px 0;position:absolute;text-align:left;top:calc(100% - var(--vs-border-width));width:100%;z-index:var(--vs-dropdown-z-index)}.vs__no-options{text-align:center}.vs__dropdown-option{clear:both;color:var(--vs-dropdown-option-color);cursor:pointer;display:block;line-height:1.42857143;padding:var(--vs-dropdown-option-padding);white-space:nowrap}.vs__dropdown-option--highlight{background:var(--vs-dropdown-option--active-bg);color:var(--vs-dropdown-option--active-color)}.vs__dropdown-option--kb-focus{box-shadow:var(--vs-dropdown-option--kb-focus-box-shadow)}.vs__dropdown-option--deselect{background:var(--vs-dropdown-option--deselect-bg);color:var(--vs-dropdown-option--deselect-color)}.vs__dropdown-option--disabled{background:var(--vs-state-disabled-bg);color:var(--vs-state-disabled-color);cursor:var(--vs-state-disabled-cursor)}.vs__selected{align-items:center;background-color:var(--vs-selected-bg);border:var(--vs-selected-border-width) var(--vs-selected-border-style) var(--vs-selected-border-color);border-radius:var(--vs-border-radius);color:var(--vs-selected-color);display:flex;line-height:var(--vs-line-height);margin:4px 2px 0;min-width:0;padding:0 .25em;z-index:0}.vs__deselect{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:0;cursor:pointer;display:inline-flex;fill:var(--vs-controls-color);margin-left:4px;padding:0;text-shadow:var(--vs-controls--deselect-text-shadow)}.vs--single{.vs__selected{background-color:transparent;border-color:transparent}&.vs--loading .vs__selected,&.vs--open .vs__selected{max-width:100%;opacity:.4;position:absolute}&.vs--searching .vs__selected{display:none}}.vs__search::-webkit-search-cancel-button{display:none}.vs__search::-ms-clear,.vs__search::-webkit-search-decoration,.vs__search::-webkit-search-results-button,.vs__search::-webkit-search-results-decoration{display:none}.vs__search,.vs__search:focus{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:1px solid transparent;border-left:none;box-shadow:none;color:var(--vs-search-input-color);flex-grow:1;font-size:var(--vs-font-size);line-height:var(--vs-line-height);margin:4px 0 0;max-width:100%;outline:none;padding:0 7px;width:0;z-index:1}.vs__search::-moz-placeholder{color:var(--vs-search-input-placeholder-color)}.vs__search::placeholder{color:var(--vs-search-input-placeholder-color)}.vs--unsearchable{.vs__search{opacity:1}&:not(.vs--disabled) .vs__search{cursor:pointer}}.vs--single.vs--searching:not(.vs--open):not(.vs--loading){.vs__search{opacity:.2}}.vs__spinner{align-self:center;animation:vSelectSpinner 1.1s linear infinite;border:.9em solid hsla(0,0%,39.2%,.1);border-left-color:#3c3c3c73;font-size:5px;opacity:0;overflow:hidden;text-indent:-9999em;transform:translateZ(0) scale(var(--vs-controls--spinner-size,var(--vs-controls-size)));transition:opacity .1s}.vs__spinner,.vs__spinner:after{border-radius:50%;height:5em;transform:scale(var(--vs-controls--spinner-size,var(--vs-controls-size)));width:5em}.vs--loading .vs__spinner{opacity:1}.material-design-icon[data-v-a612f185]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.name-parts[data-v-a612f185]{display:flex;max-width:100%;cursor:inherit}.name-parts__first[data-v-a612f185]{overflow:hidden;text-overflow:ellipsis}.name-parts__first[data-v-a612f185],.name-parts__last[data-v-a612f185]{white-space:pre;cursor:inherit}.name-parts__first strong[data-v-a612f185],.name-parts__last strong[data-v-a612f185]{font-weight:700}.material-design-icon[data-v-5ca1e30f]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.checkbox-content[data-v-5ca1e30f]{display:flex;align-items:center;flex-direction:row;gap:var(--default-grid-baseline);-webkit-user-select:none;user-select:none;min-height:var(--default-clickable-area);border-radius:var(--checkbox-radio-switch--border-radius);padding:var(--default-grid-baseline) calc((var(--default-clickable-area) - var(--icon-height)) / 2);width:100%;max-width:fit-content}.checkbox-content__wrapper[data-v-5ca1e30f]{flex:1 0 0;max-width:100%}.checkbox-content__text[data-v-5ca1e30f]:empty{display:none}.checkbox-content-checkbox:not(.checkbox-content--button-variant) .checkbox-content__icon[data-v-5ca1e30f],.checkbox-content-radio:not(.checkbox-content--button-variant) .checkbox-content__icon[data-v-5ca1e30f],.checkbox-content-switch:not(.checkbox-content--button-variant) .checkbox-content__icon[data-v-5ca1e30f]{margin-block:calc((var(--default-clickable-area) - 2 * var(--default-grid-baseline) - var(--icon-height)) / 2) auto;line-height:0}.checkbox-content-checkbox:not(.checkbox-content--button-variant) .checkbox-content__icon--has-description[data-v-5ca1e30f],.checkbox-content-radio:not(.checkbox-content--button-variant) .checkbox-content__icon--has-description[data-v-5ca1e30f],.checkbox-content-switch:not(.checkbox-content--button-variant) .checkbox-content__icon--has-description[data-v-5ca1e30f]{display:flex;align-items:center;margin-block-end:0;align-self:start}.checkbox-content__icon[data-v-5ca1e30f]>*{width:var(--icon-size);height:var(--icon-height);color:var(--color-primary-element)}.checkbox-content__description[data-v-5ca1e30f]{display:block;color:var(--color-text-maxcontrast);font-weight:var(--font-weight-default, normal)}.checkbox-content--button-variant .checkbox-content__icon[data-v-5ca1e30f]:not(.checkbox-content__icon--checked)>*{color:var(--color-primary-element)}.checkbox-content--button-variant .checkbox-content__icon--checked[data-v-5ca1e30f]>*{color:var(--color-primary-element-text)}.checkbox-content--has-text[data-v-5ca1e30f]{padding-inline-end:calc((var(--default-clickable-area) - 16px) / 2)}.checkbox-content[data-v-5ca1e30f],.checkbox-content[data-v-5ca1e30f] *{cursor:pointer;flex-shrink:0}.material-design-icon[data-v-c34c63a4]{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}.checkbox-radio-switch[data-v-c34c63a4]{--icon-size: var(--v5ac25550);--icon-height: var(--d98ce684);--checkbox-radio-switch--border-radius: var(--border-radius-element);--checkbox-radio-switch--border-radius-outer: calc(var(--checkbox-radio-switch--border-radius) + 2px);display:flex;align-items:center;color:var(--color-main-text);background-color:transparent;font-size:var(--default-font-size);font-weight:var(--font-weight-element, normal);line-height:var(--default-line-height);padding:0;position:relative}.checkbox-radio-switch__input[data-v-c34c63a4]{position:absolute;z-index:-1;opacity:0!important;width:var(--icon-size);height:var(--icon-size)}.checkbox-radio-switch__input:focus-visible+.checkbox-radio-switch__content[data-v-c34c63a4],.checkbox-radio-switch__input[data-v-c34c63a4]:focus-visible{outline:2px solid var(--color-main-text);border-color:var(--color-main-background);outline-offset:-2px}.checkbox-radio-switch--disabled .checkbox-radio-switch__content[data-v-c34c63a4]{opacity:.5}.checkbox-radio-switch--disabled .checkbox-radio-switch__content[data-v-c34c63a4] .checkbox-radio-switch__icon>*{color:var(--color-main-text)}.checkbox-radio-switch--disabled .checkbox-radio-switch__content.checkbox-content[data-v-c34c63a4],.checkbox-radio-switch--disabled .checkbox-radio-switch__content.checkbox-content[data-v-c34c63a4] *:not(a){cursor:default!important}.checkbox-radio-switch:not(.checkbox-radio-switch--disabled,.checkbox-radio-switch--checked):focus-within .checkbox-radio-switch__content[data-v-c34c63a4],.checkbox-radio-switch:not(.checkbox-radio-switch--disabled,.checkbox-radio-switch--checked) .checkbox-radio-switch__content[data-v-c34c63a4]:hover{background-color:var(--color-background-hover)}.checkbox-radio-switch--checked:not(.checkbox-radio-switch--disabled):focus-within .checkbox-radio-switch__content[data-v-c34c63a4],.checkbox-radio-switch--checked:not(.checkbox-radio-switch--disabled) .checkbox-radio-switch__content[data-v-c34c63a4]:hover{background-color:var(--color-primary-element-hover)}.checkbox-radio-switch--checked:not(.checkbox-radio-switch--button-variant):not(.checkbox-radio-switch--disabled):focus-within .checkbox-radio-switch__content[data-v-c34c63a4],.checkbox-radio-switch--checked:not(.checkbox-radio-switch--button-variant):not(.checkbox-radio-switch--disabled) .checkbox-radio-switch__content[data-v-c34c63a4]:hover{background-color:var(--color-primary-element-light-hover)}.checkbox-radio-switch-switch[data-v-c34c63a4]:not(.checkbox-radio-switch--checked) .checkbox-radio-switch__icon>*{color:var(--color-text-maxcontrast)}.checkbox-radio-switch-switch.checkbox-radio-switch--disabled.checkbox-radio-switch--checked[data-v-c34c63a4] .checkbox-radio-switch__icon>*{color:var(--color-primary-element-light)}.checkbox-radio-switch--button-variant.checkbox-radio-switch[data-v-c34c63a4]{background-color:var(--color-main-background);border:2px solid var(--color-border-maxcontrast);overflow:hidden}.checkbox-radio-switch--button-variant.checkbox-radio-switch--checked[data-v-c34c63a4]{font-weight:var(--font-weight-element, bold)}.checkbox-radio-switch--button-variant.checkbox-radio-switch--checked .checkbox-radio-switch__content[data-v-c34c63a4]{background-color:var(--color-primary-element);color:var(--color-primary-element-text)}.checkbox-radio-switch--button-variant[data-v-c34c63a4] .checkbox-radio-switch__text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.checkbox-radio-switch--button-variant[data-v-c34c63a4]:not(.checkbox-radio-switch--checked) .checkbox-radio-switch__icon>*{color:var(--color-main-text)}.checkbox-radio-switch--button-variant[data-v-c34c63a4] .checkbox-radio-switch__icon:empty{display:none}.checkbox-radio-switch--button-variant[data-v-c34c63a4]:not(.checkbox-radio-switch--button-variant-v-grouped):not(.checkbox-radio-switch--button-variant-h-grouped),.checkbox-radio-switch--button-variant .checkbox-radio-switch__content[data-v-c34c63a4]{border-radius:var(--checkbox-radio-switch--border-radius)}.checkbox-radio-switch--button-variant-v-grouped .checkbox-radio-switch__content[data-v-c34c63a4]{flex-basis:100%;max-width:unset}.checkbox-radio-switch--button-variant-v-grouped[data-v-c34c63a4]:first-of-type{border-start-start-radius:var(--checkbox-radio-switch--border-radius-outer);border-start-end-radius:var(--checkbox-radio-switch--border-radius-outer)}.checkbox-radio-switch--button-variant-v-grouped[data-v-c34c63a4]:last-of-type{border-end-start-radius:var(--checkbox-radio-switch--border-radius-outer);border-end-end-radius:var(--checkbox-radio-switch--border-radius-outer)}.checkbox-radio-switch--button-variant-v-grouped[data-v-c34c63a4]:not(:last-of-type){border-bottom:0!important}.checkbox-radio-switch--button-variant-v-grouped:not(:last-of-type) .checkbox-radio-switch__content[data-v-c34c63a4]{margin-bottom:2px}.checkbox-radio-switch--button-variant-v-grouped[data-v-c34c63a4]:not(:first-of-type){border-top:0!important}.checkbox-radio-switch--button-variant-h-grouped[data-v-c34c63a4]:first-of-type{border-start-start-radius:var(--checkbox-radio-switch--border-radius-outer);border-end-start-radius:var(--checkbox-radio-switch--border-radius-outer)}.checkbox-radio-switch--button-variant-h-grouped[data-v-c34c63a4]:last-of-type{border-start-end-radius:var(--checkbox-radio-switch--border-radius-outer);border-end-end-radius:var(--checkbox-radio-switch--border-radius-outer)}.checkbox-radio-switch--button-variant-h-grouped[data-v-c34c63a4]:not(:last-of-type){border-inline-end:0!important}.checkbox-radio-switch--button-variant-h-grouped:not(:last-of-type) .checkbox-radio-switch__content[data-v-c34c63a4]{margin-inline-end:2px}.checkbox-radio-switch--button-variant-h-grouped[data-v-c34c63a4]:not(:first-of-type){border-inline-start:0!important}.checkbox-radio-switch--button-variant-h-grouped[data-v-c34c63a4] .checkbox-radio-switch__text{text-align:center;display:flex;align-items:center}.checkbox-radio-switch--button-variant-h-grouped .checkbox-radio-switch__content[data-v-c34c63a4]{flex-direction:column;justify-content:center;width:100%;margin:0;gap:0}._material-design-icon_63AMQ{display:flex;align-self:center;justify-self:center;align-items:center;justify-content:center}._iconToggleSwitch_IKWaj{color:var(--v6bd152af);transition:color var(--animation-quick) ease}._iconToggleSwitch_IKWaj svg{height:auto!important}._iconToggleSwitch_IKWaj circle{cx:var(--v16fd8ca9);transition:cx var(--animation-quick) ease}`)),document.head.appendChild(e)}}catch(o){console.error("vite-plugin-css-injected-by-js",o)}})(); const Dy=(e,t,u)=>{const s=Object.assign({ocsVersion:2},{}).ocsVersion===1?1:2;return zc()+"/ocs/v"+s+".php"+ua(e,t)},ua=(e,t,u)=>{const s=Object.assign({escape:!0},{}),n=function(i,o){return o=o||{},i.replace(/{([^{}]*)}/g,function(a,r){const m=o[r];return s.escape?encodeURIComponent(typeof m=="string"||typeof m=="number"?m.toString():a):typeof m=="string"||typeof m=="number"?m.toString():a})};return e.charAt(0)!=="/"&&(e="/"+e),n(e,t||{})},id=(e,t,u)=>{const s=Object.assign({noRewrite:!1},{}),n=od();return window?.OC?.config?.modRewriteWorking===!0&&!s.noRewrite?n+ua(e,t):n+"/index.php"+ua(e,t)},zc=()=>window.location.protocol+"//"+window.location.host+od();function od(){let e=window._oc_webroot;if(typeof e>"u"){e=location.pathname;const t=e.indexOf("/index.php/");if(t!==-1)e=e.slice(0,t);else{const u=e.indexOf("/",1);e=e.slice(0,u>0?u:void 0)}}return e}function Lr(e,t){(t==null||t>e.length)&&(t=e.length);for(var u=0,s=Array(t);u2?u-2:0),n=2;n1?t-1:0),s=1;s"u"?null:at(BigInt.prototype.toString),Vr=typeof Symbol>"u"?null:at(Symbol.prototype.toString),ct=at(Object.prototype.hasOwnProperty),wn=at(Object.prototype.toString),mt=at(RegExp.prototype.test),rs=Kc(TypeError);function at(e){return function(t){t instanceof RegExp&&(t.lastIndex=0);for(var u=arguments.length,s=new Array(u>1?u-1:0),n=1;n2&&arguments[2]!==void 0?arguments[2]:Tn;if(jr&&jr(e,null),!Xu(t))return e;let s=t.length;for(;s--;){let n=t[s];if(typeof n=="string"){const i=u(n);i!==n&&(Mc(t)||(t[s]=i),n=i)}e[n]=!0}return e}function Yc(e){for(let t=0;t/g),ug=yt(/\${[\w\W]*/g),sg=yt(/^data-[\-\w.\u00B7-\uFFFF]+$/),ng=yt(/^aria-[\-\w]+$/),Kr=yt(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),ig=yt(/^(?:\w+script|data):/i),og=yt(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),ag=yt(/^html$/i),rg=yt(/^[a-z][.\w]*(-[.\w]+)+$/i),Yr=yt(/<[/\w!]/g),Zr=yt(/<[/\w]/g),lg=yt(/<\/no(script|embed|frames)/i),dg=yt(/\/>/i),jt={element:1,attribute:2,text:3,cdataSection:4,entityReference:5,entityNode:6,processingInstruction:7,comment:8,document:9,documentType:10,documentFragment:11,notation:12},mg=function(){return typeof window>"u"?null:window},cg=function(e,t){if(typeof e!="object"||typeof e.createPolicy!="function")return null;let u=null;const s="data-tt-policy-suffix";t&&t.hasAttribute(s)&&(u=t.getAttribute(s));const n="dompurify"+(u?"#"+u:"");try{return e.createPolicy(n,{createHTML(i){return i},createScriptURL(i){return i}})}catch{return console.warn("TrustedTypes policy "+n+" could not be created."),null}},Xr=function(){return{afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}},Vu=function(e,t,u,s){return ct(e,t)&&Xu(e[t])?we(s.base?St(s.base):{},e[t],s.transform):u};function ld(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:mg();const t=v=>ld(v);if(t.version="3.4.12",t.removed=[],!e||!e.document||e.document.nodeType!==jt.document||!e.Element)return t.isSupported=!1,t;let u=e.document;const s=u,n=s.currentScript;e.DocumentFragment;const i=e.HTMLTemplateElement,o=e.Node,a=e.Element,r=e.NodeFilter;e.NamedNodeMap===void 0&&(e.NamedNodeMap||e.MozNamedAttrMap),e.HTMLFormElement;const l=e.DOMParser,g=e.trustedTypes,p=a.prototype,h=ru(p,"cloneNode"),y=ru(p,"remove"),E=ru(p,"nextSibling"),F=ru(p,"childNodes"),B=ru(p,"parentNode"),A=ru(p,"shadowRoot"),O=ru(p,"attributes"),S=o&&o.prototype?ru(o.prototype,"nodeType"):null,q=o&&o.prototype?ru(o.prototype,"nodeName"):null;if(typeof i=="function"){const v=u.createElement("template");v.content&&v.content.ownerDocument&&(u=v.content.ownerDocument)}let I,Y="",ne,G=!1,M=0;const ie=function(){if(M>0)throw rs('A configured TRUSTED_TYPES_POLICY callback (createHTML or createScriptURL) must not call DOMPurify.sanitize, as that causes infinite recursion. Do not pass a policy whose callbacks wrap DOMPurify as TRUSTED_TYPES_POLICY; see the "DOMPurify and Trusted Types" section of the README.')},w=function(v){ie(),M++;try{return I.createHTML(v)}finally{M--}},T=function(v){ie(),M++;try{return I.createScriptURL(v)}finally{M--}},V=function(){return G||(ne=cg(g,n),G=!0),ne},ue=u,Z=ue.implementation,ee=ue.createNodeIterator,se=ue.createDocumentFragment,ce=ue.getElementsByTagName,de=s.importNode;let oe=Xr();t.isSupported=typeof ad=="function"&&typeof B=="function"&&Z&&Z.createHTMLDocument!==void 0;const xe=eg,qe=tg,Ne=ug,Le=sg,he=ng,We=ig,Tt=og,nu=rg;let Vt=Kr,C=null;const b=we({},[...Wr,...Co,...Bo,...yo,...Hr]);let _=null;const $=we({},[...Gr,...xo,...qr,...Fi]);let z=Object.seal(Zs(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),N=null,W=null;const U=Object.seal(Zs(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}}));let H=!0,j=!0,re=!1,J=!0,ae=!1,le=!0,fe=!1,Ae=!1,_e=null,De=null,Ye=!1,d=!1,c=!1,f=!1,x=!0,k=!1;const P="user-content-";let K=!0,Oe=!1,Ke={},ye=null;const je=we({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","selectedcontent","style","svg","template","thead","title","video","xmp"]);let Ze=null;const br=we({},["audio","video","img","source","image","track"]);let ao=null;const wr=we({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),yi="http://www.w3.org/1998/Math/MathML",xi="http://www.w3.org/2000/svg",iu="http://www.w3.org/1999/xhtml";let Ms=iu,ro=!1,lo=null;const Ec=we({},[yi,xi,iu],Eo),Dr=Et(["mi","mo","mn","ms","mtext"]);let mo=we({},Dr);const Fr=Et(["annotation-xml"]);let co=we({},Fr);const Cc=we({},["title","style","font","a","script"]);let xn=null;const Bc=["application/xhtml+xml","text/html"],yc="text/html";let Xe=null,$s=null;const xc=u.createElement("form"),kr=function(v){return v instanceof RegExp||v instanceof Function},go=function(){let v=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if($s&&$s===v)return;(!v||typeof v!="object")&&(v={}),v=St(v),xn=Bc.indexOf(v.PARSER_MEDIA_TYPE)===-1?yc:v.PARSER_MEDIA_TYPE,Xe=xn==="application/xhtml+xml"?Eo:Tn,C=Vu(v,"ALLOWED_TAGS",b,{transform:Xe}),_=Vu(v,"ALLOWED_ATTR",$,{transform:Xe}),lo=Vu(v,"ALLOWED_NAMESPACES",Ec,{transform:Eo}),ao=Vu(v,"ADD_URI_SAFE_ATTR",wr,{transform:Xe,base:wr}),Ze=Vu(v,"ADD_DATA_URI_TAGS",br,{transform:Xe,base:br}),ye=Vu(v,"FORBID_CONTENTS",je,{transform:Xe}),N=Vu(v,"FORBID_TAGS",St({}),{transform:Xe}),W=Vu(v,"FORBID_ATTR",St({}),{transform:Xe}),Ke=ct(v,"USE_PROFILES")?v.USE_PROFILES&&typeof v.USE_PROFILES=="object"?St(v.USE_PROFILES):v.USE_PROFILES:!1,H=v.ALLOW_ARIA_ATTR!==!1,j=v.ALLOW_DATA_ATTR!==!1,re=v.ALLOW_UNKNOWN_PROTOCOLS||!1,J=v.ALLOW_SELF_CLOSE_IN_ATTR!==!1,ae=v.SAFE_FOR_TEMPLATES||!1,le=v.SAFE_FOR_XML!==!1,fe=v.WHOLE_DOCUMENT||!1,d=v.RETURN_DOM||!1,c=v.RETURN_DOM_FRAGMENT||!1,f=v.RETURN_TRUSTED_TYPE||!1,Ye=v.FORCE_BODY||!1,x=v.SANITIZE_DOM!==!1,k=v.SANITIZE_NAMED_PROPS||!1,K=v.KEEP_CONTENT!==!1,Oe=v.IN_PLACE||!1,Vt=Xc(v.ALLOWED_URI_REGEXP)?v.ALLOWED_URI_REGEXP:Kr,Ms=typeof v.NAMESPACE=="string"?v.NAMESPACE:iu,mo=ct(v,"MATHML_TEXT_INTEGRATION_POINTS")&&v.MATHML_TEXT_INTEGRATION_POINTS&&typeof v.MATHML_TEXT_INTEGRATION_POINTS=="object"?St(v.MATHML_TEXT_INTEGRATION_POINTS):we({},Dr),co=ct(v,"HTML_INTEGRATION_POINTS")&&v.HTML_INTEGRATION_POINTS&&typeof v.HTML_INTEGRATION_POINTS=="object"?St(v.HTML_INTEGRATION_POINTS):we({},Fr);const R=ct(v,"CUSTOM_ELEMENT_HANDLING")&&v.CUSTOM_ELEMENT_HANDLING&&typeof v.CUSTOM_ELEMENT_HANDLING=="object"?St(v.CUSTOM_ELEMENT_HANDLING):Zs(null);if(z=Zs(null),ct(R,"tagNameCheck")&&kr(R.tagNameCheck)&&(z.tagNameCheck=R.tagNameCheck),ct(R,"attributeNameCheck")&&kr(R.attributeNameCheck)&&(z.attributeNameCheck=R.attributeNameCheck),ct(R,"allowCustomizedBuiltInElements")&&typeof R.allowCustomizedBuiltInElements=="boolean"&&(z.allowCustomizedBuiltInElements=R.allowCustomizedBuiltInElements),yt(z),ae&&(j=!1),c&&(d=!0),Ke&&(C=we({},Hr),_=Zs(null),Ke.html===!0&&(we(C,Wr),we(_,Gr)),Ke.svg===!0&&(we(C,Co),we(_,xo),we(_,Fi)),Ke.svgFilters===!0&&(we(C,Bo),we(_,xo),we(_,Fi)),Ke.mathMl===!0&&(we(C,yo),we(_,qr),we(_,Fi))),U.tagCheck=null,U.attributeCheck=null,ct(v,"ADD_TAGS")&&(typeof v.ADD_TAGS=="function"?U.tagCheck=v.ADD_TAGS:Xu(v.ADD_TAGS)&&(C===b&&(C=St(C)),we(C,v.ADD_TAGS,Xe))),ct(v,"ADD_ATTR")&&(typeof v.ADD_ATTR=="function"?U.attributeCheck=v.ADD_ATTR:Xu(v.ADD_ATTR)&&(_===$&&(_=St(_)),we(_,v.ADD_ATTR,Xe))),ct(v,"ADD_URI_SAFE_ATTR")&&Xu(v.ADD_URI_SAFE_ATTR)&&we(ao,v.ADD_URI_SAFE_ATTR,Xe),ct(v,"FORBID_CONTENTS")&&Xu(v.FORBID_CONTENTS)&&(ye===je&&(ye=St(ye)),we(ye,v.FORBID_CONTENTS,Xe)),ct(v,"ADD_FORBID_CONTENTS")&&Xu(v.ADD_FORBID_CONTENTS)&&(ye===je&&(ye=St(ye)),we(ye,v.ADD_FORBID_CONTENTS,Xe)),K&&(C["#text"]=!0),fe&&we(C,["html","head","body"]),C.table&&(we(C,["tbody"]),delete N.tbody),v.TRUSTED_TYPES_POLICY){if(typeof v.TRUSTED_TYPES_POLICY.createHTML!="function")throw rs('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof v.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw rs('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');const L=I;I=v.TRUSTED_TYPES_POLICY;try{Y=w("")}catch(Q){throw I=L,Q}}else v.TRUSTED_TYPES_POLICY===null?(I=void 0,Y=""):(I===void 0&&(I=V()),I&&typeof Y=="string"&&(Y=w("")));Et&&Et(v),$s=v},Sr=we({},[...Co,...Bo,...Jc]),Nr=we({},[...yo,...Qc]),Ac=function(v,R,L){return R.namespaceURI===iu?v==="svg":R.namespaceURI===yi?v==="svg"&&(L==="annotation-xml"||mo[L]):!!Sr[v]},bc=function(v,R,L){return R.namespaceURI===iu?v==="math":R.namespaceURI===xi?v==="math"&&co[L]:!!Nr[v]},wc=function(v,R,L){return R.namespaceURI===xi&&!co[L]||R.namespaceURI===yi&&!mo[L]?!1:!Nr[v]&&(Cc[v]||!Sr[v])},Dc=function(v){let R=B(v);(!R||!R.tagName)&&(R={namespaceURI:Ms,tagName:"template"});const L=Tn(v.tagName),Q=Tn(R.tagName);return lo[v.namespaceURI]?v.namespaceURI===xi?Ac(L,R,Q):v.namespaceURI===yi?bc(L,R,Q):v.namespaceURI===iu?wc(L,R,Q):!!(xn==="application/xhtml+xml"&&lo[v.namespaceURI]):!1},os=function(v){Ws(t.removed,{element:v});try{B(v).removeChild(v)}catch{if(y(v),!B(v))throw rs("a node selected for removal could not be detached from its tree and cannot be safely returned; refusing to sanitize in place")}},Ai=function(v){fo(v);const R=F(v);if(R){const Q=[];Vs(R,Ee=>{Ws(Q,Ee)}),Vs(Q,Ee=>{try{y(Ee)}catch{}})}const L=O(v);if(L)for(let Q=L.length-1;Q>=0;--Q){const Ee=L[Q],Ce=Ee&&Ee.name;if(typeof Ce=="string")try{v.removeAttribute(Ce)}catch{}}},as=function(v,R){try{Ws(t.removed,{attribute:R.getAttributeNode(v),from:R})}catch{Ws(t.removed,{attribute:null,from:R})}if(R.removeAttribute(v),v==="is")if(d||c)try{os(R)}catch{}else try{R.setAttribute(v,"")}catch{}},Fc=function(v){const R=O(v);if(R)for(let L=R.length-1;L>=0;--L){const Q=R[L],Ee=Q&&Q.name;if(!(typeof Ee!="string"||_[Xe(Ee)]))try{v.removeAttribute(Ee)}catch{}}},fo=function(v){const R=[v];for(;R.length>0;){const L=R.pop();(S?S(L):L.nodeType)===jt.element&&Fc(L);const Q=F(L);if(Q)for(let Ee=Q.length-1;Ee>=0;--Ee)R.push(Q[Ee])}},kc=function(v){if(!le)return;const R=[v];for(;R.length>0;){const L=R.pop(),Q=S?S(L):L.nodeType;if(Q===jt.processingInstruction||Q===jt.comment&&mt(Zr,L.data)){try{y(L)}catch{}continue}if(Q===jt.element){const Ce=L,Ie=Xe(q?q(L):L.nodeName);try{Ce.hasAttribute&&Ce.hasAttribute("patchsrc")&&Ce.removeAttribute("patchsrc"),Ce.hasAttribute&&Ce.hasAttribute("for")&&Ie!=="label"&&Ie!=="output"&&Ce.removeAttribute("for")}catch{}}const Ee=F(L);if(Ee)for(let Ce=Ee.length-1;Ce>=0;--Ce)R.push(Ee[Ce])}},_r=function(v){let R=null,L=null;if(Ye)v=""+v;else{const Ce=Mr(v,/^[\r\n\t ]+/);L=Ce&&Ce[0]}xn==="application/xhtml+xml"&&Ms===iu&&(v=''+v+"");const Q=I?w(v):v;if(Ms===iu)try{R=new l().parseFromString(Q,xn)}catch{}if(!R||!R.documentElement){R=Z.createDocument(Ms,"template",null);try{R.documentElement.innerHTML=ro?Y:Q}catch{}}const Ee=R.body||R.documentElement;return v&&L&&Ee.insertBefore(u.createTextNode(L),Ee.childNodes[0]||null),Ms===iu?ce.call(R,fe?"html":"body")[0]:fe?R.documentElement:Ee},Or=function(v){return ee.call(v.ownerDocument||v,v,r.SHOW_ELEMENT|r.SHOW_COMMENT|r.SHOW_TEXT|r.SHOW_PROCESSING_INSTRUCTION|r.SHOW_CDATA_SECTION,null)},bi=function(v){return v=bn(v,xe," "),v=bn(v,qe," "),v=bn(v,Ne," "),v},po=function(v){var R;v.normalize();const L=ee.call(v.ownerDocument||v,v,r.SHOW_TEXT|r.SHOW_COMMENT|r.SHOW_CDATA_SECTION|r.SHOW_PROCESSING_INSTRUCTION,null);let Q=L.nextNode();for(;Q;)Q.data=bi(Q.data),Q=L.nextNode();const Ee=(R=v.querySelectorAll)===null||R===void 0?void 0:R.call(v,"template");Ee&&Vs(Ee,Ce=>{Us(Ce.content)&&po(Ce.content)})},wi=function(v){const R=q?q(v):null;return typeof R!="string"||Xe(R)!=="form"?!1:typeof v.nodeName!="string"||typeof v.textContent!="string"||typeof v.removeChild!="function"||v.attributes!==O(v)||typeof v.removeAttribute!="function"||typeof v.setAttribute!="function"||typeof v.namespaceURI!="string"||typeof v.insertBefore!="function"||typeof v.hasChildNodes!="function"||v.nodeType!==S(v)||v.childNodes!==F(v)},Us=function(v){if(!S||typeof v!="object"||v===null)return!1;try{return S(v)===jt.documentFragment}catch{return!1}},An=function(v){if(!S||typeof v!="object"||v===null)return!1;try{return typeof S(v)=="number"}catch{return!1}};function ou(v,R,L){v.length!==0&&Vs(v,Q=>{Q.call(t,R,L,$s)})}const Sc=function(v,R){return!!(le&&v.hasChildNodes()&&!An(v.firstElementChild)&&mt(Yr,v.textContent)&&mt(Yr,v.innerHTML)||le&&v.namespaceURI===iu&&R==="style"&&An(v.firstElementChild)||v.nodeType===jt.processingInstruction||le&&v.nodeType===jt.comment&&mt(Zr,v.data))},Nc=function(v,R){if(!N[R]&&Pr(R)&&(z.tagNameCheck instanceof RegExp&&mt(z.tagNameCheck,R)||z.tagNameCheck instanceof Function&&z.tagNameCheck(R)))return!1;if(K&&!ye[R]){const L=B(v),Q=F(v);if(Q&&L){const Ee=Q.length;for(let Ce=Ee-1;Ce>=0;--Ce){const Ie=Oe?Q[Ce]:h(Q[Ce],!0);L.insertBefore(Ie,E(v))}}}return os(v),!0},Tr=function(v,R){if(ou(oe.beforeSanitizeElements,v,null),v!==R&&B(v)===null)return!0;if(wi(v))return os(v),!0;const L=Xe(q?q(v):v.nodeName);if(ou(oe.uponSanitizeElement,v,{tagName:L,allowedTags:C}),v!==R&&B(v)===null)return!0;if(Sc(v,L))return os(v),!0;if(N[L]||!(U.tagCheck instanceof Function&&U.tagCheck(L))&&!C[L]){const Q=Nc(v,L);return Q===!1&&ou(oe.afterSanitizeElements,v,null),Q}if((S?S(v):v.nodeType)===jt.element&&!Dc(v)||(L==="noscript"||L==="noembed"||L==="noframes")&&mt(lg,v.innerHTML))return os(v),!0;if(ae&&v.nodeType===jt.text){const Q=bi(v.textContent);v.textContent!==Q&&(Ws(t.removed,{element:v.cloneNode()}),v.textContent=Q)}return ou(oe.afterSanitizeElements,v,null),!1},zr=function(v,R,L){if(W[R]||le&&R==="patchsrc"||le&&R==="for"&&v!=="label"&&v!=="output"||x&&(R==="id"||R==="name")&&(L in u||L in xc))return!1;const Q=_[R]||U.attributeCheck instanceof Function&&U.attributeCheck(R,v);if(!(j&&mt(Le,R))&&!(H&&mt(he,R))){if(Q){if(!ao[R]&&!mt(Vt,bn(L,Tt,""))&&!((R==="src"||R==="xlink:href"||R==="href")&&v!=="script"&&$r(L,"data:")===0&&Ze[v])&&!(re&&!mt(We,bn(L,Tt,"")))&&L)return!1}else if(!(Pr(v)&&(z.tagNameCheck instanceof RegExp&&mt(z.tagNameCheck,v)||z.tagNameCheck instanceof Function&&z.tagNameCheck(v))&&(z.attributeNameCheck instanceof RegExp&&mt(z.attributeNameCheck,R)||z.attributeNameCheck instanceof Function&&z.attributeNameCheck(R,v))||R==="is"&&z.allowCustomizedBuiltInElements&&(z.tagNameCheck instanceof RegExp&&mt(z.tagNameCheck,L)||z.tagNameCheck instanceof Function&&z.tagNameCheck(L))))return!1}return!0},_c=we({},["annotation-xml","color-profile","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","missing-glyph"]),Pr=function(v){return!_c[Tn(v)]&&mt(nu,v)},Oc=function(v,R,L,Q){if(I&&typeof g=="object"&&typeof g.getAttributeType=="function"&&!L)switch(g.getAttributeType(v,R)){case"TrustedHTML":return w(Q);case"TrustedScriptURL":return T(Q)}return Q},Tc=function(v,R,L,Q){try{L?v.setAttributeNS(L,R,Q):v.setAttribute(R,Q),wi(v)?os(v):Ir(t.removed)}catch{as(R,v)}},Rr=function(v){ou(oe.beforeSanitizeAttributes,v,null);const R=v.attributes;if(!R||wi(v))return;const L={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:_,forceKeepAttr:void 0};let Q=R.length;const Ee=Xe(v.nodeName);for(;Q--;){const Ce=R[Q],Ie=Ce.name,Uu=Ce.namespaceURI,vo=Ce.value,Lt=Xe(Ie),Zt=vo;let Je=Ie==="value"?Zt:Hc(Zt);if(L.attrName=Lt,L.attrValue=Je,L.keepAttr=!0,L.forceKeepAttr=void 0,ou(oe.uponSanitizeAttribute,v,L),Je=L.attrValue,k&&(Lt==="id"||Lt==="name")&&$r(Je,P)!==0&&(as(Ie,v),Je=P+Je),le&&mt(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i,Je)){as(Ie,v);continue}if(Lt==="attributename"&&Mr(Je,"href")){as(Ie,v);continue}if(!L.forceKeepAttr){if(!L.keepAttr){as(Ie,v);continue}if(!J&&mt(dg,Je)){as(Ie,v);continue}if(ae&&(Je=bi(Je)),!zr(Ee,Lt,Je)){as(Ie,v);continue}Je=Oc(Ee,Lt,Uu,Je),Je!==Zt&&Tc(v,Ie,Uu,Je)}}ou(oe.afterSanitizeAttributes,v,null)},Di=function(v){let R=null;const L=Or(v);for(ou(oe.beforeSanitizeShadowDOM,v,null);R=L.nextNode();)if(ou(oe.uponSanitizeShadowNode,R,null),Tr(R,v),Rr(R),Us(R.content)&&Di(R.content),(S?S(R):R.nodeType)===jt.element){const Q=A(R);Us(Q)&&(ho(Q),Di(Q))}ou(oe.afterSanitizeShadowDOM,v,null)},ho=function(v){const R=[{node:v,shadow:null}];for(;R.length>0;){const L=R.pop();if(L.shadow){Di(L.shadow);continue}const Q=L.node,Ee=(S?S(Q):Q.nodeType)===jt.element,Ce=F(Q);if(Ce)for(let Ie=Ce.length-1;Ie>=0;--Ie)R.push({node:Ce[Ie],shadow:null});if(Ee){const Ie=q?q(Q):null;if(typeof Ie=="string"&&Xe(Ie)==="template"){const Uu=Q.content;Us(Uu)&&R.push({node:Uu,shadow:null})}}if(Ee){const Ie=A(Q);Us(Ie)&&R.push({node:null,shadow:Ie},{node:Ie,shadow:null})}}};return t.sanitize=function(v){let R=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},L=null,Q=null,Ee=null,Ce=null;if(ro=!v,ro&&(v=""),typeof v!="string"&&!An(v)&&(v=Zc(v),typeof v!="string"))throw rs("dirty is not a string, aborting");if(!t.isSupported)return v;Ae?(C=_e,_=De):go(R),(oe.uponSanitizeElement.length>0||oe.uponSanitizeAttribute.length>0)&&(C=St(C)),oe.uponSanitizeAttribute.length>0&&(_=St(_)),t.removed=[];const Ie=Oe&&typeof v!="string"&&An(v);if(Ie){kc(v);const Zt=q?q(v):v.nodeName;if(typeof Zt=="string"){const Je=Xe(Zt);if(!C[Je]||N[Je])throw Ai(v),rs("root node is forbidden and cannot be sanitized in-place")}if(wi(v))throw Ai(v),rs("root node is clobbered and cannot be sanitized in-place");try{ho(v)}catch(Je){throw Ai(v),Je}}else if(An(v))L=_r(""),Q=L.ownerDocument.importNode(v,!0),Q.nodeType===jt.element&&Q.nodeName==="BODY"||Q.nodeName==="HTML"?L=Q:L.appendChild(Q),ho(Q);else{if(!d&&!ae&&!fe&&v.indexOf("<")===-1)return I&&f?w(v):v;if(L=_r(v),!L)return d?null:f?Y:""}L&&Ye&&os(L.firstChild);const Uu=Ie?v:L,vo=Or(Uu);try{for(;Ee=vo.nextNode();)Tr(Ee,Uu),Rr(Ee),Us(Ee.content)&&Di(Ee.content)}catch(Zt){throw Ie&&(Ai(v),Vs(t.removed,Je=>{Je.element&&fo(Je.element)})),Zt}if(Ie)return Vs(t.removed,Zt=>{Zt.element&&fo(Zt.element)}),ae&&po(v),v;if(d){if(ae&&po(L),c)for(Ce=se.call(L.ownerDocument);L.firstChild;)Ce.appendChild(L.firstChild);else Ce=L;return(_.shadowroot||_.shadowrootmode)&&(Ce=de.call(s,Ce,!0)),Ce}let Lt=fe?L.outerHTML:L.innerHTML;return fe&&C["!doctype"]&&L.ownerDocument&&L.ownerDocument.doctype&&L.ownerDocument.doctype.name&&mt(ag,L.ownerDocument.doctype.name)&&(Lt=" -`+Lt),ae&&(Lt=bi(Lt)),I&&f?w(Lt):Lt},t.setConfig=function(){let v=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};go(v),Ae=!0,_e=C,De=_},t.clearConfig=function(){$s=null,Ae=!1,_e=null,De=null,I=ne,Y=""},t.isValidAttribute=function(v,R,L){$s||go({});const Q=Xe(v),Ee=Xe(R);return zr(Q,Ee,L)},t.addHook=function(v,R){typeof R=="function"&&ct(oe,v)&&Ws(oe[v],R)},t.removeHook=function(v,R){if(ct(oe,v)){if(R!==void 0){const L=Vc(oe[v],R);return L===-1?void 0:Wc(oe[v],L,1)[0]}return Ir(oe[v])}},t.removeHooks=function(v){ct(oe,v)&&(oe[v]=[])},t.removeAllHooks=function(){oe=Xr()},t}var dd=ld();function O0(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function Fy(e){if(Object.prototype.hasOwnProperty.call(e,"__esModule"))return e;var t=e.default;if(typeof t=="function"){var u=function s(){var n=!1;try{n=this instanceof s}catch{}return n?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};u.prototype=t.prototype}else u={};return Object.defineProperty(u,"__esModule",{value:!0}),Object.keys(e).forEach(function(s){var n=Object.getOwnPropertyDescriptor(e,s);Object.defineProperty(u,s,n.get?n:{enumerable:!0,get:function(){return e[s]}})}),u}var Ao,Jr;function gg(){if(Jr)return Ao;Jr=1;var e=/["'&<>]/;Ao=t;function t(u){var s=""+u,n=e.exec(s);if(!n)return s;var i,o="",a=0,r=0;for(a=n.index;at)}}globalThis._oc_l10n_registry_translations??={},globalThis._oc_l10n_registry_plural_functions??={};function Ii(e,t,u,s,n){const i=typeof u=="object"?u:void 0,o=typeof s=="number"?s:typeof u=="number"?u:void 0,a={escape:!0,sanitize:!0,...typeof n=="object"?n:typeof s=="object"?s:{}},r=y=>y,m=(a.sanitize?dd.sanitize:r)||r,l=a.escape?Qr:r,g=y=>typeof y=="string"||typeof y=="number",p=(y,E,F)=>y.replace(/%n/g,""+F).replace(/{([^{}]*)}/g,(B,A)=>{if(E===void 0||!(A in E))return l(B);const O=E[A];return g(O)?l(`${O}`):typeof O=="object"&&g(O.value)?(O.escape!==!1?Qr:r)(`${O.value}`):l(B)});let h=(n?.bundle??md(e)).translations[t]||t;return h=Array.isArray(h)?h[0]:h,m(typeof i=="object"||o!==void 0?p(h,i,o):h)}function vg(e,t,u,s,n,i){const o="_"+t+"_::_"+u+"_",a=i?.bundle??md(e),r=a.translations[o];if(typeof r<"u"){const m=r;if(Array.isArray(m)){const l=a.pluralFunction(s);return Ii(e,m[l],n,s,i)}}return s===1?Ii(e,t,n,s,i):Ii(e,u,n,s,i)}function Eg(e,t=T0()){switch(t==="pt-BR"&&(t="xbr"),t.length>3&&(t=t.substring(0,t.lastIndexOf("-"))),t){case"az":case"bo":case"dz":case"id":case"ja":case"jv":case"ka":case"km":case"kn":case"ko":case"ms":case"th":case"tr":case"vi":case"zh":return 0;case"af":case"bn":case"bg":case"ca":case"da":case"de":case"el":case"en":case"eo":case"es":case"et":case"eu":case"fa":case"fi":case"fo":case"fur":case"fy":case"gl":case"gu":case"ha":case"he":case"hu":case"is":case"it":case"ku":case"lb":case"ml":case"mn":case"mr":case"nah":case"nb":case"ne":case"nl":case"nn":case"no":case"oc":case"om":case"or":case"pa":case"pap":case"ps":case"pt":case"so":case"sq":case"sv":case"sw":case"ta":case"te":case"tk":case"ur":case"zu":return e===1?0:1;case"am":case"bh":case"fil":case"fr":case"gun":case"hi":case"hy":case"ln":case"mg":case"nso":case"xbr":case"ti":case"wa":return e===0||e===1?0:1;case"be":case"bs":case"hr":case"ru":case"sh":case"sr":case"uk":return e%10===1&&e%100!==11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2;case"cs":case"sk":return e===1?0:e>=2&&e<=4?1:2;case"ga":return e===1?0:e===2?1:2;case"lt":return e%10===1&&e%100!==11?0:e%10>=2&&(e%100<10||e%100>=20)?1:2;case"sl":return e%100===1?0:e%100===2?1:e%100===3||e%100===4?2:3;case"mk":return e%10===1?0:1;case"mt":return e===1?0:e===0||e%100>1&&e%100<11?1:e%100>10&&e%100<20?2:3;case"lv":return e===0?0:e%10===1&&e%100!==11?1:2;case"pl":return e===1?0:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?1:2;case"cy":return e===1?0:e===2?1:e===8||e===11?2:3;case"ro":return e===1?0:e===0||e%100>0&&e%100<20?1:2;case"ar":return e===0?0:e===1?1:e===2?2:e%100>=3&&e%100<=10?3:e%100>=11&&e%100<=99?4:5;default:return 0}}const Kn=globalThis||void 0||self;function La(e){const t=Object.create(null);for(const u of e.split(","))t[u]=1;return u=>u in t}const Se={},sn=[],Kt=()=>{},cd=()=>!1,z0=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),P0=e=>e.startsWith("onUpdate:"),st=Object.assign,ja=(e,t)=>{const u=e.indexOf(t);u>-1&&e.splice(u,1)},Cg=Object.prototype.hasOwnProperty,Me=(e,t)=>Cg.call(e,t),ge=Array.isArray,nn=e=>ci(e)==="[object Map]",gd=e=>ci(e)==="[object Set]",el=e=>ci(e)==="[object Date]",pe=e=>typeof e=="function",Ge=e=>typeof e=="string",Ut=e=>typeof e=="symbol",Re=e=>e!==null&&typeof e=="object",fd=e=>(Re(e)||pe(e))&&pe(e.then)&&pe(e.catch),pd=Object.prototype.toString,ci=e=>pd.call(e),Bg=e=>ci(e).slice(8,-1),hd=e=>ci(e)==="[object Object]",R0=e=>Ge(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Ln=La(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),L0=e=>{const t=Object.create(null);return(u=>t[u]||(t[u]=e(u)))},yg=/-\w/g,Dt=L0(e=>e.replace(yg,t=>t.slice(1).toUpperCase())),xg=/\B([A-Z])/g,Iu=L0(e=>e.replace(xg,"-$1").toLowerCase()),j0=L0(e=>e.charAt(0).toUpperCase()+e.slice(1)),Mi=L0(e=>e?`on${j0(e)}`:""),pt=(e,t)=>!Object.is(e,t),$i=(e,...t)=>{for(let u=0;u{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:s,value:u})},Ia=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Ag=e=>{const t=Ge(e)?Number(e):NaN;return isNaN(t)?e:t};let tl;const Ji=()=>tl||(tl=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof Kn<"u"?Kn:{});function ws(e){if(ge(e)){const t={};for(let u=0;u{if(u){const s=u.split(wg);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function Bt(e){let t="";if(Ge(e))t=e;else if(ge(e))for(let u=0;u!!(e&&e.__v_isRef===!0),dt=e=>Ge(e)?e:e==null?"":ge(e)||Re(e)&&(e.toString===pd||!pe(e.toString))?Cd(e)?dt(e.value):JSON.stringify(e,Bd,2):String(e),Bd=(e,t)=>Cd(t)?Bd(e,t.value):nn(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((u,[s,n],i)=>(u[bo(s,i)+" =>"]=n,u),{})}:gd(t)?{[`Set(${t.size})`]:[...t.values()].map(u=>bo(u))}:Ut(t)?bo(t):Re(t)&&!ge(t)&&!hd(t)?String(t):t,bo=(e,t="")=>{var u;return Ut(e)?`Symbol(${(u=e.description)!=null?u:t})`:e};function _g(e){return e==null?"initial":typeof e=="string"?e===""?" ":e:String(e)}let lt;class yd{constructor(t=!1){this.detached=t,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this._warnOnRun=!0,this.__v_skip=!0,!t&<&&(lt.active?(this.parent=lt,this.index=(lt.scopes||(lt.scopes=[])).push(this)-1):(this._active=!1,this._warnOnRun=!1))}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,u;if(this.scopes){const s=this.scopes.slice();for(t=0,u=s.length;t0&&--this._on===0){if(lt===this)lt=this.prevScope;else{let t=lt;for(;t;){if(t.prevScope===this){t.prevScope=this.prevScope;break}t=t.prevScope}}this.prevScope=void 0}}stop(t){if(this._active){this._active=!1;let u,s;for(u=0,s=this.effects.length;u0)return;if(In){let t=In;for(In=void 0;t;){const u=t.next;t.next=void 0,t.flags&=-9,t=u}}let e;for(;jn;){let t=jn;for(jn=void 0;t;){const u=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(s){e||(e=s)}t=u}}if(e)throw e}function wd(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function Dd(e){let t,u=e.depsTail,s=u;for(;s;){const n=s.prevDep;s.version===-1?(s===u&&(u=n),Wa(s),zg(s)):t=s,s.dep.activeLink=s.prevActiveLink,s.prevActiveLink=void 0,s=n}e.deps=t,e.depsTail=u}function ia(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Fd(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Fd(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===Yn)||(e.globalVersion=Yn,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!ia(e))))return;e.flags|=2;const t=e.dep,u=He,s=Jt;He=e,Jt=!0;try{wd(e);const n=e.fn(e._value);(t.version===0||pt(n,e._value))&&(e.flags|=128,e._value=n,t.version++)}catch(n){throw t.version++,n}finally{He=u,Jt=s,Dd(e),e.flags&=-3}}function Wa(e,t=!1){const{dep:u,prevSub:s,nextSub:n}=e;if(s&&(s.nextSub=n,e.prevSub=void 0),n&&(n.prevSub=s,e.nextSub=void 0),u.subs===e&&(u.subs=s,!s&&u.computed)){u.computed.flags&=-5;for(let i=u.computed.deps;i;i=i.nextDep)Wa(i,!0)}!t&&!--u.sc&&u.map&&u.map.delete(u.key)}function zg(e){const{prevDep:t,nextDep:u}=e;t&&(t.nextDep=u,e.prevDep=void 0),u&&(u.prevDep=t,e.nextDep=void 0)}let Jt=!0;const kd=[];function Pu(){kd.push(Jt),Jt=!1}function Ru(){const e=kd.pop();Jt=e===void 0?!0:e}function ul(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const u=He;He=void 0;try{t()}finally{He=u}}}let Yn=0;class Pg{constructor(t,u){this.sub=t,this.dep=u,this.version=u.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class I0{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0,this.__v_skip=!0}track(t){if(!He||!Jt||He===this.computed)return;let u=this.activeLink;if(u===void 0||u.sub!==He)u=this.activeLink=new Pg(He,this),He.deps?(u.prevDep=He.depsTail,He.depsTail.nextDep=u,He.depsTail=u):He.deps=He.depsTail=u,Sd(u);else if(u.version===-1&&(u.version=this.version,u.nextDep)){const s=u.nextDep;s.prevDep=u.prevDep,u.prevDep&&(u.prevDep.nextDep=s),u.prevDep=He.depsTail,u.nextDep=void 0,He.depsTail.nextDep=u,He.depsTail=u,He.deps===u&&(He.deps=s)}return u}trigger(t){this.version++,Yn++,this.notify(t)}notify(t){Ua();try{for(let u=this.subs;u;u=u.prevSub)u.sub.notify()&&u.sub.dep.notify()}finally{Va()}}}function Sd(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let s=t.deps;s;s=s.nextDep)Sd(s)}const u=e.dep.subs;u!==e&&(e.prevSub=u,u&&(u.nextSub=e)),e.dep.subs=e}}const Qi=new WeakMap,Ds=Symbol(""),oa=Symbol(""),Zn=Symbol("");function bt(e,t,u){if(Jt&&He){let s=Qi.get(e);s||Qi.set(e,s=new Map);let n=s.get(u);n||(s.set(u,n=new I0),n.map=s,n.key=u),n.track()}}function Du(e,t,u,s,n,i){const o=Qi.get(e);if(!o){Yn++;return}const a=r=>{r&&r.trigger()};if(Ua(),t==="clear")o.forEach(a);else{const r=ge(e),m=r&&R0(u);if(r&&u==="length"){const l=Number(s);o.forEach((g,p)=>{(p==="length"||p===Zn||!Ut(p)&&p>=l)&&a(g)})}else switch((u!==void 0||o.has(void 0))&&a(o.get(u)),m&&a(o.get(Zn)),t){case"add":r?m&&a(o.get("length")):(a(o.get(Ds)),nn(e)&&a(o.get(oa)));break;case"delete":r||(a(o.get(Ds)),nn(e)&&a(o.get(oa)));break;case"set":nn(e)&&a(o.get(Ds));break}}Va()}function Rg(e,t){const u=Qi.get(e);return u&&u.get(t)}function Hs(e){const t=ke(e);return t===e?t:(bt(t,"iterate",Zn),$t(e)?t:t.map(eu))}function M0(e){return bt(e=ke(e),"iterate",Zn),e}function gu(e,t){return Lu(e)?Qn(Fs(e)?eu(t):t):eu(t)}const Lg={__proto__:null,[Symbol.iterator](){return Do(this,Symbol.iterator,e=>gu(this,e))},concat(...e){return Hs(this).concat(...e.map(t=>ge(t)?Hs(t):t))},entries(){return Do(this,"entries",e=>(e[1]=gu(this,e[1]),e))},every(e,t){return xu(this,"every",e,t,void 0,arguments)},filter(e,t){return xu(this,"filter",e,t,u=>u.map(s=>gu(this,s)),arguments)},find(e,t){return xu(this,"find",e,t,u=>gu(this,u),arguments)},findIndex(e,t){return xu(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return xu(this,"findLast",e,t,u=>gu(this,u),arguments)},findLastIndex(e,t){return xu(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return xu(this,"forEach",e,t,void 0,arguments)},includes(...e){return Fo(this,"includes",e)},indexOf(...e){return Fo(this,"indexOf",e)},join(e){return Hs(this).join(e)},lastIndexOf(...e){return Fo(this,"lastIndexOf",e)},map(e,t){return xu(this,"map",e,t,void 0,arguments)},pop(){return Dn(this,"pop")},push(...e){return Dn(this,"push",e)},reduce(e,...t){return sl(this,"reduce",e,t)},reduceRight(e,...t){return sl(this,"reduceRight",e,t)},shift(){return Dn(this,"shift")},some(e,t){return xu(this,"some",e,t,void 0,arguments)},splice(...e){return Dn(this,"splice",e)},toReversed(){return Hs(this).toReversed()},toSorted(e){return Hs(this).toSorted(e)},toSpliced(...e){return Hs(this).toSpliced(...e)},unshift(...e){return Dn(this,"unshift",e)},values(){return Do(this,"values",e=>gu(this,e))}};function Do(e,t,u){const s=M0(e),n=s[t]();return s!==e&&!$t(e)&&(n._next=n.next,n.next=()=>{const i=n._next();return i.done||(i.value=u(i.value)),i}),n}const jg=Array.prototype;function xu(e,t,u,s,n,i){const o=M0(e),a=o!==e&&!$t(e),r=o[t];if(r!==jg[t]){const g=r.apply(e,i);return a?eu(g):g}let m=u;o!==e&&(a?m=function(g,p){return u.call(this,gu(e,g),p,e)}:u.length>2&&(m=function(g,p){return u.call(this,g,p,e)}));const l=r.call(o,m,s);return a&&n?n(l):l}function sl(e,t,u,s){const n=M0(e),i=n!==e&&!$t(e);let o=u,a=!1;n!==e&&(i?(a=s.length===0,o=function(m,l,g){return a&&(a=!1,m=gu(e,m)),u.call(this,m,gu(e,l),g,e)}):u.length>3&&(o=function(m,l,g){return u.call(this,m,l,g,e)}));const r=n[t](o,...s);return a?gu(e,r):r}function Fo(e,t,u){const s=ke(e);bt(s,"iterate",Zn);const n=s[t](...u);return(n===-1||n===!1)&&V0(u[0])?(u[0]=ke(u[0]),s[t](...u)):n}function Dn(e,t,u=[]){Pu(),Ua();const s=ke(e)[t].apply(e,u);return Va(),Ru(),s}const Ig=La("__proto__,__v_isRef,__isVue"),Nd=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Ut));function Mg(e){Ut(e)||(e=String(e));const t=ke(this);return bt(t,"has",e),t.hasOwnProperty(e)}class _d{constructor(t=!1,u=!1){this._isReadonly=t,this._isShallow=u}get(t,u,s){if(u==="__v_skip")return t.__v_skip;const n=this._isReadonly,i=this._isShallow;if(u==="__v_isReactive")return!n;if(u==="__v_isReadonly")return n;if(u==="__v_isShallow")return i;if(u==="__v_raw")return s===(n?i?Ld:Rd:i?Pd:zd).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const o=ge(t);if(!n){let r;if(o&&(r=Lg[u]))return r;if(u==="hasOwnProperty")return Mg}const a=Reflect.get(t,u,ot(t)?t:s);if((Ut(u)?Nd.has(u):Ig(u))||(n||bt(t,"get",u),i))return a;if(ot(a)){const r=o&&R0(u)?a:a.value;return n&&Re(r)?Jn(r):r}return Re(a)?n?Jn(a):Xn(a):a}}class Od extends _d{constructor(t=!1){super(!1,t)}set(t,u,s,n){let i=t[u];const o=ge(t)&&R0(u);if(!this._isShallow){const m=Lu(i);if(!$t(s)&&!Lu(s)&&(i=ke(i),s=ke(s)),!o&&ot(i)&&!ot(s))return m||(i.value=s),!0}const a=o?Number(u)e,ki=e=>Reflect.getPrototypeOf(e);function Hg(e,t,u){return function(...s){const n=this.__v_raw,i=ke(n),o=nn(i),a=e==="entries"||e===Symbol.iterator&&o,r=e==="keys"&&o,m=n[e](...s),l=u?aa:t?Qn:eu;return!t&&bt(i,"iterate",r?oa:Ds),st(Object.create(m),{next(){const{value:g,done:p}=m.next();return p?{value:g,done:p}:{value:a?[l(g[0]),l(g[1])]:l(g),done:p}}})}}function Si(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function Gg(e,t){const u={get(s){const n=this.__v_raw,i=ke(n),o=ke(s);e||(pt(s,o)&&bt(i,"get",s),bt(i,"get",o));const{has:a}=ki(i),r=t?aa:e?Qn:eu;if(a.call(i,s))return r(n.get(s));if(a.call(i,o))return r(n.get(o));n!==i&&n.get(s)},get size(){const s=this.__v_raw;return!e&&bt(ke(s),"iterate",Ds),s.size},has(s){const n=this.__v_raw,i=ke(n),o=ke(s);return e||(pt(s,o)&&bt(i,"has",s),bt(i,"has",o)),s===o?n.has(s):n.has(s)||n.has(o)},forEach(s,n){const i=this,o=i.__v_raw,a=ke(o),r=t?aa:e?Qn:eu;return!e&&bt(a,"iterate",Ds),o.forEach((m,l)=>s.call(n,r(m),r(l),i))}};return st(u,e?{add:Si("add"),set:Si("set"),delete:Si("delete"),clear:Si("clear")}:{add(s){const n=ke(this),i=ki(n),o=ke(s),a=!t&&!$t(s)&&!Lu(s)?o:s;return i.has.call(n,a)||pt(s,a)&&i.has.call(n,s)||pt(o,a)&&i.has.call(n,o)||(n.add(a),Du(n,"add",a,a)),this},set(s,n){!t&&!$t(n)&&!Lu(n)&&(n=ke(n));const i=ke(this),{has:o,get:a}=ki(i);let r=o.call(i,s);r||(s=ke(s),r=o.call(i,s));const m=a.call(i,s);return i.set(s,n),r?pt(n,m)&&Du(i,"set",s,n):Du(i,"add",s,n),this},delete(s){const n=ke(this),{has:i,get:o}=ki(n);let a=i.call(n,s);a||(s=ke(s),a=i.call(n,s)),o&&o.call(n,s);const r=n.delete(s);return a&&Du(n,"delete",s,void 0),r},clear(){const s=ke(this),n=s.size!==0,i=s.clear();return n&&Du(s,"clear",void 0,void 0),i}}),["keys","values","entries",Symbol.iterator].forEach(s=>{u[s]=Hg(s,e,t)}),u}function $0(e,t){const u=Gg(e,t);return(s,n,i)=>n==="__v_isReactive"?!e:n==="__v_isReadonly"?e:n==="__v_raw"?s:Reflect.get(Me(u,n)&&n in s?u:s,n,i)}const qg={get:$0(!1,!1)},Kg={get:$0(!1,!0)},Yg={get:$0(!0,!1)},Zg={get:$0(!0,!0)},zd=new WeakMap,Pd=new WeakMap,Rd=new WeakMap,Ld=new WeakMap;function Xg(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Xn(e){return Lu(e)?e:U0(e,!1,$g,qg,zd)}function Jg(e){return U0(e,!1,Vg,Kg,Pd)}function Jn(e){return U0(e,!0,Ug,Yg,Rd)}function Qg(e){return U0(e,!0,Wg,Zg,Ld)}function U0(e,t,u,s,n){if(!Re(e)||e.__v_raw&&!(t&&e.__v_isReactive)||e.__v_skip||!Object.isExtensible(e))return e;const i=n.get(e);if(i)return i;const o=Xg(Bg(e));if(o===0)return e;const a=new Proxy(e,o===2?s:u);return n.set(e,a),a}function Fs(e){return Lu(e)?Fs(e.__v_raw):!!(e&&e.__v_isReactive)}function Lu(e){return!!(e&&e.__v_isReadonly)}function $t(e){return!!(e&&e.__v_isShallow)}function V0(e){return e?!!e.__v_raw:!1}function ke(e){const t=e&&e.__v_raw;return t?ke(t):e}function ef(e){return!Me(e,"__v_skip")&&Object.isExtensible(e)&&vd(e,"__v_skip",!0),e}const eu=e=>Re(e)?Xn(e):e,Qn=e=>Re(e)?Jn(e):e;function ot(e){return e?e.__v_isRef===!0:!1}function cn(e){return jd(e,!1)}function ks(e){return jd(e,!0)}function jd(e,t){return ot(e)?e:new tf(e,t)}class tf{constructor(t,u){this.dep=new I0,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=u?t:ke(t),this._value=u?t:eu(t),this.__v_isShallow=u}get value(){return this.dep.track(),this._value}set value(t){const u=this._rawValue,s=this.__v_isShallow||$t(t)||Lu(t);t=s?t:ke(t),pt(t,u)&&(this._rawValue=t,this._value=s?t:eu(t),this.dep.trigger())}}function Fe(e){return ot(e)?e.value:e}function zt(e){return pe(e)?e():Fe(e)}const uf={get:(e,t,u)=>t==="__v_raw"?e:Fe(Reflect.get(e,t,u)),set:(e,t,u,s)=>{const n=e[t];return ot(n)&&!ot(u)?(n.value=u,!0):Reflect.set(e,t,u,s)}};function Id(e){return Fs(e)?e:new Proxy(e,uf)}class sf{constructor(t){this.__v_isRef=!0,this._value=void 0;const u=this.dep=new I0,{get:s,set:n}=t(u.track.bind(u),u.trigger.bind(u));this._get=s,this._set=n}get value(){return this._value=this._get()}set value(t){this._set(t)}}function nf(e){return new sf(e)}class of{constructor(t,u,s){this._object=t,this._defaultValue=s,this.__v_isRef=!0,this._value=void 0,this._key=Ut(u)?u:String(u),this._raw=ke(t);let n=!0,i=t;if(!ge(t)||Ut(this._key)||!R0(this._key))do n=!V0(i)||$t(i);while(n&&(i=i.__v_raw));this._shallow=n}get value(){let t=this._object[this._key];return this._shallow&&(t=Fe(t)),this._value=t===void 0?this._defaultValue:t}set value(t){if(this._shallow&&ot(this._raw[this._key])){const u=this._object[this._key];if(ot(u)){u.value=t;return}}this._object[this._key]=t}get dep(){return Rg(this._raw,this._key)}}class af{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0,this._value=void 0}get value(){return this._value=this._getter()}}function rf(e,t,u){return ot(e)?e:pe(e)?new af(e):Re(e)&&arguments.length>1?lf(e,t,u):cn(e)}function lf(e,t,u){return new of(e,t,u)}class df{constructor(t,u,s){this.fn=t,this.setter=u,this._value=void 0,this.dep=new I0(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Yn-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!u,this.isSSR=s}notify(){if(this.flags|=16,!(this.flags&8)&&He!==this)return bd(this,!0),!0}get value(){const t=this.dep.track();return Fd(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function mf(e,t,u=!1){let s,n;return pe(e)?s=e:(s=e.get,n=e.set),new df(s,n,u)}const Ni={},e0=new WeakMap;let ps;function cf(e,t=!1,u=ps){if(u){let s=e0.get(u);s||e0.set(u,s=[]),s.push(e)}}function gf(e,t,u=Se){const{immediate:s,deep:n,once:i,scheduler:o,augmentJob:a,call:r}=u,m=S=>n?S:$t(S)||n===!1||n===0?Fu(S,1):Fu(S);let l,g,p,h,y=!1,E=!1;if(ot(e)?(g=()=>e.value,y=$t(e)):Fs(e)?(g=()=>m(e),y=!0):ge(e)?(E=!0,y=e.some(S=>Fs(S)||$t(S)),g=()=>e.map(S=>{if(ot(S))return S.value;if(Fs(S))return m(S);if(pe(S))return r?r(S,2):S()})):pe(e)?t?g=r?()=>r(e,2):e:g=()=>{if(p){Pu();try{p()}finally{Ru()}}const S=ps;ps=l;try{return r?r(e,3,[h]):e(h)}finally{ps=S}}:g=Kt,t&&n){const S=g,q=n===!0?1/0:n;g=()=>Fu(S(),q)}const F=$a(),B=()=>{l.stop(),F&&F.active&&ja(F.effects,l)};if(i&&t){const S=t;t=(...q)=>{const I=S(...q);return B(),I}}let A=E?new Array(e.length).fill(Ni):Ni;const O=S=>{if(!(!(l.flags&1)||!l.dirty&&!S))if(t){const q=l.run();if(S||n||y||(E?q.some((I,Y)=>pt(I,A[Y])):pt(q,A))){p&&p();const I=ps;ps=l;try{const Y=[q,A===Ni?void 0:E&&A[0]===Ni?[]:A,h];A=q,r?r(t,3,Y):t(...Y)}finally{ps=I}}}else l.run()};return a&&a(O),l=new xd(g),l.scheduler=o?()=>o(O,!1):O,h=S=>cf(S,!1,l),p=l.onStop=()=>{const S=e0.get(l);if(S){if(r)r(S,4);else for(const q of S)q();e0.delete(l)}},t?s?O(!0):A=l.run():o?o(O.bind(null,!0),!0):l.run(),B.pause=l.pause.bind(l),B.resume=l.resume.bind(l),B.stop=B,B}function Fu(e,t=1/0,u){if(t<=0||!Re(e)||e.__v_skip||(u=u||new Map,(u.get(e)||0)>=t))return e;if(u.set(e,t),t--,ot(e))Fu(e.value,t,u);else if(ge(e))for(let s=0;s{Fu(s,t,u)});else if(hd(e)){for(const s in e)Fu(e[s],t,u);for(const s of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,s)&&Fu(e[s],t,u)}return e}function gi(e,t,u,s){try{return s?e(...s):e()}catch(n){W0(n,t,u)}}function Yt(e,t,u,s){if(pe(e)){const n=gi(e,t,u,s);return n&&fd(n)&&n.catch(i=>{W0(i,t,u)}),n}if(ge(e)){const n=[];for(let i=0;i>>1,n=Ot[s],i=ei(n);i=ei(u)?Ot.push(e):Ot.splice(pf(t),0,e),e.flags|=1,$d()}}function $d(){t0||(t0=Md.then(Wd))}function Ud(e){ge(e)?on.push(...e):Yu&&e.id===-1?Yu.splice(Xs+1,0,e):e.flags&1||(on.push(e),e.flags|=1),$d()}function nl(e,t,u=du+1){for(;uei(u)-ei(s));if(on.length=0,Yu){Yu.push(...t);return}for(Yu=t,Xs=0;Xse.id==null?e.flags&2?-1:1/0:e.id;function Wd(e){try{for(du=0;duPe;function Pe(e,t=Ct,u){if(!t||e._n)return e;const s=(...n)=>{s._d&&a0(-1);const i=u0(t),o=Ou.length;let a;try{a=e(...n)}finally{for(let r=Ou.length;r>o;r--)Qa();u0(i),s._d&&a0(1)}return a};return s._n=!0,s._c=!0,s._d=!0,s}function ys(e,t){if(Ct===null)return e;const u=Z0(Ct),s=e.dirs||(e.dirs=[]);for(let n=0;n1)return u&&pe(t)?t.call(s&&s.proxy):t}}function Hd(){return!!(uu()||Ss)}const Bf=Symbol.for("v-scx"),yf=()=>Nu(Bf);function Gd(e,t){return G0(e,null,t)}function xf(e,t){return G0(e,null,{flush:"sync"})}function _u(e,t,u){return G0(e,t,u)}function G0(e,t,u=Se){const{immediate:s,deep:n,flush:i,once:o}=u,a=st({},u),r=t&&s||!t&&i!=="post";let m;if(ni){if(i==="sync"){const h=yf();m=h.__watcherHandles||(h.__watcherHandles=[])}else if(!r){const h=()=>{};return h.stop=Kt,h.resume=Kt,h.pause=Kt,h}}const l=wt;a.call=(h,y,E)=>Yt(h,l,y,E);let g=!1;i==="post"?a.scheduler=h=>{Nt(h,l&&l.suspense)}:i!=="sync"&&(g=!0,a.scheduler=(h,y)=>{y?h():Ga(h)}),a.augmentJob=h=>{t&&(h.flags|=4),g&&(h.flags|=2,l&&(h.id=l.uid,h.i=l))};const p=gf(e,t,a);return ni&&(m?m.push(p):r&&p()),p}function Af(e,t,u){const s=this.proxy,n=Ge(e)?e.includes(".")?qd(s,e):()=>s[e]:e.bind(s,s);let i;pe(t)?i=t:(i=t.handler,u=t);const o=pi(this),a=G0(n,i.bind(s),u);return o(),a}function qd(e,t){const u=t.split(".");return()=>{let s=e;for(let n=0;ne.__isTeleport,hs=e=>e&&(e.disabled||e.disabled===""),bf=e=>e&&(e.defer||e.defer===""),il=e=>typeof SVGElement<"u"&&e instanceof SVGElement,ol=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,ra=(e,t)=>{const u=e&&e.to;return Ge(u)?t?t(u):null:u},wf={name:"Teleport",__isTeleport:!0,process(e,t,u,s,n,i,o,a,r,m){const{mc:l,pc:g,pbc:p,o:{insert:h,querySelector:y,createText:E,createComment:F,parentNode:B}}=m,A=hs(t.props);let{dynamicChildren:O}=t;const S=(Y,ne,G)=>{Y.shapeFlag&16&&l(Y.children,ne,G,n,i,o,a,r)},q=(Y=t)=>{const ne=hs(Y.props),G=Y.target=ra(Y.props,y),M=la(G,Y,E,h);G&&(o!=="svg"&&il(G)?o="svg":o!=="mathml"&&ol(G)&&(o="mathml"),n&&n.isCE&&(n.ce._teleportTargets||(n.ce._teleportTargets=new Set)).add(G),ne||(S(Y,G,M),zn(Y,!1)))},I=Y=>{const ne=()=>{if(Hu.get(Y)===ne){if(Hu.delete(Y),hs(Y.props)){const G=B(Y.el)||u;S(Y,G,Y.anchor),zn(Y,!0)}q(Y)}};Hu.set(Y,ne),Nt(ne,i)};if(e==null){const Y=t.el=E(""),ne=t.anchor=E("");if(h(Y,u,s),h(ne,u,s),bf(t.props)||i&&i.pendingBranch){I(t);return}A&&(S(t,u,ne),zn(t,!0)),q()}else{t.el=e.el;const Y=t.anchor=e.anchor,ne=Hu.get(e);if(ne){ne.flags|=8,Hu.delete(e),I(t);return}t.targetStart=e.targetStart;const G=t.target=e.target,M=t.targetAnchor=e.targetAnchor,ie=hs(e.props),w=ie?u:G,T=ie?Y:M;if(o==="svg"||il(G)?o="svg":(o==="mathml"||ol(G))&&(o="mathml"),O?(p(e.dynamicChildren,O,w,n,i,o,a),Ja(e,t,!0)):r||g(e,t,w,T,n,i,o,a,!1),A)ie?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):_i(t,u,Y,m,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const V=ra(t.props,y);V&&(t.target=V,_i(t,V,null,m,0))}else ie&&_i(t,G,M,m,1);zn(t,A)}},remove(e,t,u,{um:s,o:{remove:n}},i){const{shapeFlag:o,children:a,anchor:r,targetStart:m,targetAnchor:l,target:g,props:p}=e,h=hs(p),y=i||!h,E=Hu.get(e);if(E&&(E.flags|=8,Hu.delete(e)),g&&(n(m),n(l)),i&&n(r),!E&&(h||g)&&o&16)for(let F=0;F{e.isMounted=!0}),im(()=>{e.isUnmounting=!0}),e}const Wt=[Function,Array],Xd={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Wt,onEnter:Wt,onAfterEnter:Wt,onEnterCancelled:Wt,onBeforeLeave:Wt,onLeave:Wt,onAfterLeave:Wt,onLeaveCancelled:Wt,onBeforeAppear:Wt,onAppear:Wt,onAfterAppear:Wt,onAppearCancelled:Wt},Jd=e=>{const t=e.subTree;return t.component?Jd(t.component):t},kf={name:"BaseTransition",props:Xd,setup(e,{slots:t}){const u=uu(),s=Zd();return()=>{const n=t.default&&qa(t.default(),!0),i=n&&n.length?Qd(n):u.subTree?Ve():void 0;if(!i)return;const o=ke(e),{mode:a}=o;if(s.isLeaving)return ko(i);const r=al(i);if(!r)return ko(i);let m=ti(r,o,s,u,g=>m=g);r.type!==ht&&zs(r,m);let l=u.subTree&&al(u.subTree);if(l&&l.type!==ht&&!vs(l,r)&&Jd(u).type!==ht){let g=ti(l,o,s,u);if(zs(l,g),a==="out-in"&&r.type!==ht)return s.isLeaving=!0,g.afterLeave=()=>{s.isLeaving=!1,u.job.flags&8||u.update(),delete g.afterLeave,l=void 0},ko(i);a==="in-out"&&r.type!==ht?g.delayLeave=(p,h,y)=>{const E=em(s,l);E[String(l.key)]=l,p[Gt]=()=>{h(),p[Gt]=void 0,delete m.delayedLeave,l=void 0},m.delayedLeave=()=>{y(),delete m.delayedLeave,l=void 0}}:l=void 0}else l&&(l=void 0);return i}}};function Qd(e){let t=e[0];if(e.length>1){for(const u of e)if(u.type!==ht){t=u;break}}return t}const Sf=kf;function em(e,t){const{leavingVNodes:u}=e;let s=u.get(t.type);return s||(s=Object.create(null),u.set(t.type,s)),s}function ti(e,t,u,s,n){const{appear:i,mode:o,persisted:a=!1,onBeforeEnter:r,onEnter:m,onAfterEnter:l,onEnterCancelled:g,onBeforeLeave:p,onLeave:h,onAfterLeave:y,onLeaveCancelled:E,onBeforeAppear:F,onAppear:B,onAfterAppear:A,onAppearCancelled:O}=t,S=String(e.key),q=em(u,e),I=(G,M)=>{G&&Yt(G,s,9,M)},Y=(G,M)=>{const ie=M[1];I(G,M),ge(G)?G.every(w=>w.length<=1)&&ie():G.length<=1&&ie()},ne={mode:o,persisted:a,beforeEnter(G){let M=r;if(!u.isMounted)if(i)M=F||r;else return;G[Gt]&&G[Gt](!0);const ie=q[S];ie&&vs(e,ie)&&ie.el[Gt]&&ie.el[Gt](),I(M,[G])},enter(G){if(q[S]===e)return;let M=m,ie=l,w=g;if(!u.isMounted)if(i)M=B||m,ie=A||l,w=O||g;else return;let T=!1;G[Fn]=ue=>{T||(T=!0,ue?I(w,[G]):I(ie,[G]),ne.delayedLeave&&ne.delayedLeave(),G[Fn]=void 0)};const V=G[Fn].bind(null,!1);M?Y(M,[G,V]):V()},leave(G,M){const ie=String(e.key);if(G[Fn]&&G[Fn](!0),u.isUnmounting)return M();I(p,[G]);let w=!1;G[Gt]=V=>{w||(w=!0,M(),V?I(E,[G]):I(y,[G]),G[Gt]=void 0,q[ie]===e&&delete q[ie])};const T=G[Gt].bind(null,!1);q[ie]=e,h?Y(h,[G,T]):T()},clone(G){const M=ti(G,t,u,s,n);return n&&n(M),M}};return ne}function ko(e){if(q0(e))return e=us(e),e.children=null,e}function al(e){if(!q0(e))return Yd(e.type)&&e.children?Qd(e.children):e;if(e.component)return e.component.subTree;const{shapeFlag:t,children:u}=e;if(u){if(t&16)return u[0];if(t&32&&pe(u.default))return u.default()}}function zs(e,t){e.shapeFlag&6&&e.component?(e.transition=t,zs(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function qa(e,t=!1,u){let s=[],n=0;for(let i=0;i1)for(let i=0;iu.value,set:n=>u.value=n})}return u}function rl(e,t){let u;return!!((u=Object.getOwnPropertyDescriptor(e,t))&&!u.configurable)}const s0=new WeakMap;function Mn(e,t,u,s,n=!1){if(ge(e)){e.forEach((E,F)=>Mn(E,t&&(ge(t)?t[F]:t),u,s,n));return}if(an(s)&&!n){s.shapeFlag&512&&s.type.__asyncResolved&&s.component.subTree.component&&Mn(e,t,u,s.component.subTree);return}const i=s.shapeFlag&4?Z0(s.component):s.el,o=n?null:i,{i:a,r}=e,m=t&&t.r,l=a.refs===Se?a.refs={}:a.refs,g=a.setupState,p=ke(g),h=g===Se?cd:E=>rl(l,E)?!1:Me(p,E),y=(E,F)=>!(F&&rl(l,F));if(m!=null&&m!==r){if(ll(t),Ge(m))l[m]=null,h(m)&&(g[m]=null);else if(ot(m)){const E=t;y(m,E.k)&&(m.value=null),E.k&&(l[E.k]=null)}}if(pe(r))gi(r,a,12,[o,l]);else{const E=Ge(r),F=ot(r);if(E||F){const B=()=>{if(e.f){const A=E?h(r)?g[r]:l[r]:y()||!e.k?r.value:l[e.k];if(n)ge(A)&&ja(A,i);else if(ge(A))A.includes(i)||A.push(i);else if(E)l[r]=[i],h(r)&&(g[r]=l[r]);else{const O=[i];y(r,e.k)&&(r.value=O),e.k&&(l[e.k]=O)}}else E?(l[r]=o,h(r)&&(g[r]=o)):F&&(y(r,e.k)&&(r.value=o),e.k&&(l[e.k]=o))};if(o){const A=()=>{B(),s0.delete(e)};A.id=-1,s0.set(e,A),Nt(A,u)}else ll(e),B()}}}function ll(e){const t=s0.get(e);t&&(t.flags|=8,s0.delete(e))}Ji().requestIdleCallback,Ji().cancelIdleCallback;const an=e=>!!e.type.__asyncLoader,q0=e=>e.type.__isKeepAlive;function _f(e,t){um(e,"a",t)}function Of(e,t){um(e,"da",t)}function um(e,t,u=wt){const s=e.__wdc||(e.__wdc=()=>{let n=u;for(;n;){if(n.isDeactivated)return;n=n.parent}return e()});if(K0(t,s,u),u){let n=u.parent;for(;n&&n.parent;)q0(n.parent.vnode)&&Tf(s,t,u,n),n=n.parent}}function Tf(e,t,u,s){const n=K0(t,e,s,!0);gn(()=>{ja(s[t],n)},u)}function K0(e,t,u=wt,s=!1){if(u){const n=u[e]||(u[e]=[]),i=t.__weh||(t.__weh=(...o)=>{Pu();const a=pi(u),r=Yt(t,u,e,o);return a(),Ru(),r});return s?n.unshift(i):n.push(i),i}}const Mu=e=>(t,u=wt)=>{(!ni||e==="sp")&&K0(e,(...s)=>t(...s),u)},zf=Mu("bm"),En=Mu("m"),sm=Mu("bu"),nm=Mu("u"),im=Mu("bum"),gn=Mu("um"),Pf=Mu("sp"),Rf=Mu("rtg"),Lf=Mu("rtc");function jf(e,t=wt){K0("ec",e,t)}const Ka="components",If="directives";function It(e,t){return Ya(Ka,e,!0,t)||e}const om=Symbol.for("v-ndc");function rn(e){return Ge(e)?Ya(Ka,e,!1)||e:e||om}function Mf(e){return Ya(If,e)}function Ya(e,t,u=!0,s=!1){const n=Ct||wt;if(n){const i=n.type;if(e===Ka){const a=yp(i,!1);if(a&&(a===t||a===Dt(t)||a===j0(Dt(t))))return i}const o=dl(n[e]||i[e],t)||dl(n.appContext[e],t);return!o&&s?i:o}}function dl(e,t){return e&&(e[t]||e[Dt(t)]||e[j0(Dt(t))])}function da(e,t,u,s){let n;const i=u,o=ge(e);if(o||Ge(e)){const a=o&&Fs(e);let r=!1,m=!1;a&&(r=!$t(e),m=Lu(e),e=M0(e)),n=new Array(e.length);for(let l=0,g=e.length;lt(a,r,void 0,i));else{const a=Object.keys(e);n=new Array(a.length);for(let r=0,m=a.length;r{const i=s.fn(...n);return i&&(i.key=s.key),i}:s.fn)}return e}function ze(e,t,u={},s,n,i){if(Ct.ce||Ct.parent&&an(Ct.parent)&&Ct.parent.ce){const m=u,l=Object.keys(m).length>0;return t!=="default"&&(m.name=t),X(),et(it,null,[Be("slot",m,s&&s())],l?-2:64)}let o=e[t];o&&o._c&&(o._d=!1);const a=Ou.length;X();let r;try{const m=o&&rm(o(u)),l=u.key||i||m&&m.key;r=et(it,{key:(l&&!Ut(l)?l:`_${t}`)+(!m&&s?"_fb":"")},m||(s?s():[]),m&&e._===1?64:-2)}catch(m){for(let l=Ou.length;l>a;l--)Qa();throw m}finally{o&&o._c&&(o._d=!0)}return!n&&r.scopeId&&(r.slotScopeIds=[r.scopeId+"-s"]),r}function rm(e){return e.some(t=>si(t)?!(t.type===ht||t.type===it&&!rm(t.children)):!0)?e:null}function n0(e,t){const u={};for(const s in e)u[t&&/[A-Z]/.test(s)?`on:${s}`:Mi(s)]=e[s];return u}const ma=e=>e?Sm(e)?Z0(e):ma(e.parent):null,$n=st(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>ma(e.parent),$root:e=>ma(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>mm(e),$forceUpdate:e=>e.f||(e.f=()=>{Ga(e.update)}),$nextTick:e=>e.n||(e.n=Ha.bind(e.proxy)),$watch:e=>Af.bind(e)}),So=(e,t)=>e!==Se&&!e.__isScriptSetup&&Me(e,t),$f={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:u,setupState:s,data:n,props:i,accessCache:o,type:a,appContext:r}=e;if(t[0]!=="$"){const p=o[t];if(p!==void 0)switch(p){case 1:return s[t];case 2:return n[t];case 4:return u[t];case 3:return i[t]}else{if(So(s,t))return o[t]=1,s[t];if(n!==Se&&Me(n,t))return o[t]=2,n[t];if(Me(i,t))return o[t]=3,i[t];if(u!==Se&&Me(u,t))return o[t]=4,u[t];ca&&(o[t]=0)}}const m=$n[t];let l,g;if(m)return t==="$attrs"&&bt(e.attrs,"get",""),m(e);if((l=a.__cssModules)&&(l=l[t]))return l;if(u!==Se&&Me(u,t))return o[t]=4,u[t];if(g=r.config.globalProperties,Me(g,t))return g[t]},set({_:e},t,u){const{data:s,setupState:n,ctx:i}=e;return So(n,t)?(n[t]=u,!0):s!==Se&&Me(s,t)?(s[t]=u,!0):Me(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(i[t]=u,!0)},has({_:{data:e,setupState:t,accessCache:u,ctx:s,appContext:n,props:i,type:o}},a){let r;return!!(u[a]||e!==Se&&a[0]!=="$"&&Me(e,a)||So(t,a)||Me(i,a)||Me(s,a)||Me($n,a)||Me(n.config.globalProperties,a)||(r=o.__cssModules)&&r[a])},defineProperty(e,t,u){return u.get!=null?e._.accessCache[t]=0:Me(u,"value")&&this.set(e,t,u.value,null),Reflect.defineProperty(e,t,u)}};function Uf(){return lm().slots}function Sy(){return lm().attrs}function lm(e){const t=uu();return t.setupContext||(t.setupContext=_m(t))}function i0(e){return ge(e)?e.reduce((t,u)=>(t[u]=null,t),{}):e}function ml(e,t){return!e||!t?e||t:ge(e)&&ge(t)?e.concat(t):st({},i0(e),i0(t))}let ca=!0;function Vf(e){const t=mm(e),u=e.proxy,s=e.ctx;ca=!1,t.beforeCreate&&cl(t.beforeCreate,e,"bc");const{data:n,computed:i,methods:o,watch:a,provide:r,inject:m,created:l,beforeMount:g,mounted:p,beforeUpdate:h,updated:y,activated:E,deactivated:F,beforeDestroy:B,beforeUnmount:A,destroyed:O,unmounted:S,render:q,renderTracked:I,renderTriggered:Y,errorCaptured:ne,serverPrefetch:G,expose:M,inheritAttrs:ie,components:w,directives:T,filters:V}=t;if(m&&Wf(m,s,null),o)for(const Z in o){const ee=o[Z];pe(ee)&&(s[Z]=ee.bind(u))}if(n){const Z=n.call(u,u);Re(Z)&&(e.data=Xn(Z))}if(ca=!0,i)for(const Z in i){const ee=i[Z],se=pe(ee)?ee.bind(u,u):pe(ee.get)?ee.get.bind(u,u):Kt,ce=!pe(ee)&&pe(ee.set)?ee.set.bind(u):Kt,de=Ue({get:se,set:ce});Object.defineProperty(s,Z,{enumerable:!0,configurable:!0,get:()=>de.value,set:oe=>de.value=oe})}if(a)for(const Z in a)dm(a[Z],s,u,Z);if(r){const Z=pe(r)?r.call(u):r;Reflect.ownKeys(Z).forEach(ee=>{Cf(ee,Z[ee])})}l&&cl(l,e,"c");function ue(Z,ee){ge(ee)?ee.forEach(se=>Z(se.bind(u))):ee&&Z(ee.bind(u))}if(ue(zf,g),ue(En,p),ue(sm,h),ue(nm,y),ue(_f,E),ue(Of,F),ue(jf,ne),ue(Lf,I),ue(Rf,Y),ue(im,A),ue(gn,S),ue(Pf,G),ge(M))if(M.length){const Z=e.exposed||(e.exposed={});M.forEach(ee=>{Object.defineProperty(Z,ee,{get:()=>u[ee],set:se=>u[ee]=se,enumerable:!0})})}else e.exposed||(e.exposed={});q&&e.render===Kt&&(e.render=q),ie!=null&&(e.inheritAttrs=ie),w&&(e.components=w),T&&(e.directives=T),G&&tm(e)}function Wf(e,t,u=Kt){ge(e)&&(e=ga(e));for(const s in e){const n=e[s];let i;Re(n)?"default"in n?i=Nu(n.from||s,n.default,!0):i=Nu(n.from||s):i=Nu(n),ot(i)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>i.value,set:o=>i.value=o}):t[s]=i}}function cl(e,t,u){Yt(ge(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,u)}function dm(e,t,u,s){let n=s.includes(".")?qd(u,s):()=>u[s];if(Ge(e)){const i=t[e];pe(i)&&_u(n,i)}else if(pe(e))_u(n,e.bind(u));else if(Re(e))if(ge(e))e.forEach(i=>dm(i,t,u,s));else{const i=pe(e.handler)?e.handler.bind(u):t[e.handler];pe(i)&&_u(n,i,e)}}function mm(e){const t=e.type,{mixins:u,extends:s}=t,{mixins:n,optionsCache:i,config:{optionMergeStrategies:o}}=e.appContext,a=i.get(t);let r;return a?r=a:!n.length&&!u&&!s?r=t:(r={},n.length&&n.forEach(m=>o0(r,m,o,!0)),o0(r,t,o)),Re(t)&&i.set(t,r),r}function o0(e,t,u,s=!1){const{mixins:n,extends:i}=t;i&&o0(e,i,u,!0),n&&n.forEach(o=>o0(e,o,u,!0));for(const o in t)if(!(s&&o==="expose")){const a=Hf[o]||u&&u[o];e[o]=a?a(e[o],t[o]):t[o]}return e}const Hf={data:gl,props:fl,emits:fl,methods:Pn,computed:Pn,beforeCreate:kt,created:kt,beforeMount:kt,mounted:kt,beforeUpdate:kt,updated:kt,beforeDestroy:kt,beforeUnmount:kt,destroyed:kt,unmounted:kt,activated:kt,deactivated:kt,errorCaptured:kt,serverPrefetch:kt,components:Pn,directives:Pn,watch:qf,provide:gl,inject:Gf};function gl(e,t){return t?e?function(){return st(pe(e)?e.call(this,this):e,pe(t)?t.call(this,this):t)}:t:e}function Gf(e,t){return Pn(ga(e),ga(t))}function ga(e){if(ge(e)){const t={};for(let u=0;u{let l,g=Se,p;return xf(()=>{const h=e[n];pt(l,h)&&(l=h,m())}),{get(){return r(),u.get?u.get(l):l},set(h){const y=u.set?u.set(h):h;if(!pt(y,l)&&!(g!==Se&&pt(h,g)))return;const E=s.vnode.props,F=!!(E&&(t in E||n in E||i in E)&&(`onUpdate:${t}`in E||`onUpdate:${n}`in E||`onUpdate:${i}`in E));F||(l=h,m()),s.emit(`update:${t}`,y),pt(h,g)&&(pt(h,y)&&!pt(y,p)||F&&g!==Se&&!pt(y,l))&&m(),g=h,p=y}}});return a[Symbol.iterator]=()=>{let r=0;return{next(){return r<2?{value:r++?o||Se:a,done:!1}:{done:!0}}}},a}const gm=(e,t)=>t==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${Dt(t)}Modifiers`]||e[`${Iu(t)}Modifiers`];function Xf(e,t,...u){if(e.isUnmounted)return;const s=e.vnode.props||Se;let n=u;const i=t.startsWith("update:"),o=i&&gm(s,t.slice(7));o&&(o.trim&&(n=u.map(l=>Ge(l)?l.trim():l)),o.number&&(n=u.map(Ia)));let a,r=s[a=Mi(t)]||s[a=Mi(Dt(t))];!r&&i&&(r=s[a=Mi(Iu(t))]),r&&Yt(r,e,6,n);const m=s[a+"Once"];if(m){if(!e.emitted)e.emitted={};else if(e.emitted[a])return;e.emitted[a]=!0,Yt(m,e,6,n)}}const Jf=new WeakMap;function fm(e,t,u=!1){const s=u?Jf:t.emitsCache,n=s.get(e);if(n!==void 0)return n;const i=e.emits;let o={},a=!1;if(!pe(e)){const r=m=>{const l=fm(m,t,!0);l&&(a=!0,st(o,l))};!u&&t.mixins.length&&t.mixins.forEach(r),e.extends&&r(e.extends),e.mixins&&e.mixins.forEach(r)}return!i&&!a?(Re(e)&&s.set(e,null),null):(ge(i)?i.forEach(r=>o[r]=null):st(o,i),Re(e)&&s.set(e,o),o)}function Y0(e,t){return!e||!z0(t)?!1:(t=t.slice(2),t=t==="Once"?t:t.replace(/Once$/,""),Me(e,t[0].toLowerCase()+t.slice(1))||Me(e,Iu(t))||Me(e,t))}function pl(e){const{type:t,vnode:u,proxy:s,withProxy:n,propsOptions:[i],slots:o,attrs:a,emit:r,render:m,renderCache:l,props:g,data:p,setupState:h,ctx:y,inheritAttrs:E}=e,F=u0(e);let B,A;try{if(u.shapeFlag&4){const S=n||s,q=S;B=fu(m.call(q,S,l,g,h,p,y)),A=a}else{const S=t;B=fu(S.length>1?S(g,{attrs:a,slots:o,emit:r}):S(g,null)),A=t.props?a:Qf(a)}}catch(S){Ou.length=0,W0(S,e,1),B=Be(ht)}let O=B;if(A&&E!==!1){const S=Object.keys(A),{shapeFlag:q}=O;S.length&&q&7&&(i&&S.some(P0)&&(A=ep(A,i)),O=us(O,A,!1,!0))}return u.dirs&&(O=us(O,null,!1,!0),O.dirs=O.dirs?O.dirs.concat(u.dirs):u.dirs),u.transition&&zs(O,u.transition),B=O,u0(F),B}const Qf=e=>{let t;for(const u in e)(u==="class"||u==="style"||z0(u))&&((t||(t={}))[u]=e[u]);return t},ep=(e,t)=>{const u={};for(const s in e)(!P0(s)||!(s.slice(9)in t))&&(u[s]=e[s]);return u};function tp(e,t,u){const{props:s,children:n,component:i}=e,{props:o,children:a,patchFlag:r}=t,m=i.emitsOptions;if(t.dirs||t.transition)return!0;if(u&&r>=0){if(r&1024)return!0;if(r&16)return s?hl(s,o,m):!!o;if(r&8){const l=t.dynamicProps;for(let g=0;gObject.create(hm),Em=e=>Object.getPrototypeOf(e)===hm;function sp(e,t,u,s=!1){const n={},i=vm();e.propsDefaults=Object.create(null),Cm(e,t,n,i);for(const o in e.propsOptions[0])o in n||(n[o]=void 0);u?e.props=s?n:Jg(n):e.type.props?e.props=n:e.props=i,e.attrs=i}function np(e,t,u,s){const{props:n,attrs:i,vnode:{patchFlag:o}}=e,a=ke(n),[r]=e.propsOptions;let m=!1;if((s||o>0)&&!(o&16)){if(o&8){const l=e.vnode.dynamicProps;for(let g=0;g{r=!0;const[p,h]=Bm(g,t,!0);st(o,p),h&&a.push(...h)};!u&&t.mixins.length&&t.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}if(!i&&!r)return Re(e)&&s.set(e,sn),sn;if(ge(i))for(let l=0;le==="_"||e==="_ctx"||e==="$stable",Xa=e=>ge(e)?e.map(fu):[fu(e)],op=(e,t,u)=>{if(t._n)return t;const s=Pe((...n)=>Xa(t(...n)),u);return s._c=!1,s},ym=(e,t,u)=>{const s=e._ctx;for(const n in e){if(Za(n))continue;const i=e[n];if(pe(i))t[n]=op(n,i,s);else if(i!=null){const o=Xa(i);t[n]=()=>o}}},xm=(e,t)=>{const u=Xa(t);e.slots.default=()=>u},Am=(e,t,u)=>{for(const s in t)(u||!Za(s))&&(e[s]=t[s])},ap=(e,t,u)=>{const s=e.slots=vm();if(e.vnode.shapeFlag&32){const n=t._;n?(Am(s,t,u),u&&vd(s,"_",n,!0)):ym(t,s)}else t&&xm(e,t)},rp=(e,t,u)=>{const{vnode:s,slots:n}=e;let i=!0,o=Se;if(s.shapeFlag&32){const a=t._;a?u&&a===1?i=!1:Am(n,t,u):(i=!t.$stable,ym(t,n)),o=t}else t&&(xm(e,t),o={default:1});if(i)for(const a in n)!Za(a)&&o[a]==null&&delete n[a]},Nt=gp;function lp(e){return dp(e)}function dp(e,t){const u=Ji();u.__VUE__=!0;const{insert:s,remove:n,patchProp:i,createElement:o,createText:a,createComment:r,setText:m,setElementText:l,parentNode:g,nextSibling:p,setScopeId:h=Kt,insertStaticContent:y}=e,E=(C,b,_,$=null,z=null,N=null,W=void 0,U=null,H=!!b.dynamicChildren)=>{if(C===b)return;C&&!vs(C,b)&&($=We(C),xe(C,z,N,!0),C=null),b.patchFlag===-2&&(H=!1,b.dynamicChildren=null);const{type:j,ref:re,shapeFlag:J}=b;switch(j){case fi:F(C,b,_,$);break;case ht:B(C,b,_,$);break;case Un:C==null&&A(b,_,$,W);break;case it:w(C,b,_,$,z,N,W,U,H);break;default:J&1?q(C,b,_,$,z,N,W,U,H):J&6?T(C,b,_,$,z,N,W,U,H):(J&64||J&128)&&j.process(C,b,_,$,z,N,W,U,H,Vt)}re!=null&&z?Mn(re,C&&C.ref,N,b||C,!b):re==null&&C&&C.ref!=null&&Mn(C.ref,null,N,C,!0)},F=(C,b,_,$)=>{if(C==null)s(b.el=a(b.children),_,$);else{const z=b.el=C.el;b.children!==C.children&&m(z,b.children)}},B=(C,b,_,$)=>{C==null?s(b.el=r(b.children||""),_,$):b.el=C.el},A=(C,b,_,$)=>{[C.el,C.anchor]=y(C.children,b,_,$,C.el,C.anchor)},O=({el:C,anchor:b},_,$)=>{let z;for(;C&&C!==b;)z=p(C),s(C,_,$),C=z;s(b,_,$)},S=({el:C,anchor:b})=>{let _;for(;C&&C!==b;)_=p(C),n(C),C=_;n(b)},q=(C,b,_,$,z,N,W,U,H)=>{if(b.type==="svg"?W="svg":b.type==="math"&&(W="mathml"),C==null)I(b,_,$,z,N,W,U,H);else{const j=C.el&&C.el._isVueCE?C.el:null;try{j&&j._beginPatch(),G(C,b,z,N,W,U,H)}finally{j&&j._endPatch()}}},I=(C,b,_,$,z,N,W,U)=>{let H,j;const{props:re,shapeFlag:J,transition:ae,dirs:le}=C;if(H=C.el=o(C.type,N,re&&re.is,re),J&8?l(H,C.children):J&16&&ne(C.children,H,null,$,z,No(C,N),W,U),le&&ls(C,null,$,"created"),Y(H,C,C.scopeId,W,$),re){for(const Ae in re)Ae!=="value"&&!Ln(Ae)&&i(H,Ae,null,re[Ae],N,$);"value"in re&&i(H,"value",null,re.value,N),(j=re.onVnodeBeforeMount)&&au(j,$,C)}le&&ls(C,null,$,"beforeMount");const fe=mp(z,ae);fe&&ae.beforeEnter(H),s(H,b,_),((j=re&&re.onVnodeMounted)||fe||le)&&Nt(()=>{j&&au(j,$,C),fe&&ae.enter(H),le&&ls(C,null,$,"mounted")},z)},Y=(C,b,_,$,z)=>{if(_&&h(C,_),$)for(let N=0;N<$.length;N++)h(C,$[N]);if(z){let N=z.subTree;if(b===N||Dm(N.type)&&(N.ssContent===b||N.ssFallback===b)){const W=z.vnode;Y(C,W,W.scopeId,W.slotScopeIds,z.parent)}}},ne=(C,b,_,$,z,N,W,U,H=0)=>{for(let j=H;j{const U=b.el=C.el;let{patchFlag:H,dynamicChildren:j,dirs:re}=b;H|=C.patchFlag&16;const J=C.props||Se,ae=b.props||Se;let le;if(_&&ds(_,!1),(le=ae.onVnodeBeforeUpdate)&&au(le,_,b,C),re&&ls(b,C,_,"beforeUpdate"),_&&ds(_,!0),j&&(!C.dynamicChildren||C.dynamicChildren.length!==j.length)&&(H=0,W=!1,j=null),(J.innerHTML&&ae.innerHTML==null||J.textContent&&ae.textContent==null)&&l(U,""),j?M(C.dynamicChildren,j,U,_,$,No(b,z),N):W||se(C,b,U,null,_,$,No(b,z),N,!1),H>0){if(H&16)ie(U,J,ae,_,z);else if(H&2&&J.class!==ae.class&&i(U,"class",null,ae.class,z),H&4&&i(U,"style",J.style,ae.style,z),H&8){const fe=b.dynamicProps;for(let Ae=0;Ae{le&&au(le,_,b,C),re&&ls(b,C,_,"updated")},$)},M=(C,b,_,$,z,N,W)=>{for(let U=0;U{if(b!==_){if(b!==Se)for(const N in b)!Ln(N)&&!(N in _)&&i(C,N,b[N],null,z,$);for(const N in _){if(Ln(N))continue;const W=_[N],U=b[N];W!==U&&N!=="value"&&i(C,N,U,W,z,$)}"value"in _&&i(C,"value",b.value,_.value,z)}},w=(C,b,_,$,z,N,W,U,H)=>{const j=b.el=C?C.el:a(""),re=b.anchor=C?C.anchor:a("");let{patchFlag:J,dynamicChildren:ae,slotScopeIds:le}=b;le&&(U=U?U.concat(le):le),C==null?(s(j,_,$),s(re,_,$),ne(b.children||[],_,re,z,N,W,U,H)):J>0&&J&64&&ae&&C.dynamicChildren&&C.dynamicChildren.length===ae.length?(M(C.dynamicChildren,ae,_,z,N,W,U),(b.key!=null||z&&b===z.subTree)&&Ja(C,b,!0)):se(C,b,_,re,z,N,W,U,H)},T=(C,b,_,$,z,N,W,U,H)=>{b.slotScopeIds=U,C==null?b.shapeFlag&512?z.ctx.activate(b,_,$,W,H):V(b,_,$,z,N,W,H):ue(C,b,H)},V=(C,b,_,$,z,N,W)=>{const U=C.component=vp(C,$,z);if(q0(C)&&(U.ctx.renderer=Vt),Ep(U,!1,W),U.asyncDep){if(z&&z.registerDep(U,Z,W),!C.el){const H=U.subTree=Be(ht);B(null,H,b,_),C.placeholder=H.el}}else Z(U,C,b,_,z,N,W)},ue=(C,b,_)=>{const $=b.component=C.component;if(tp(C,b,_))if($.asyncDep&&!$.asyncResolved){ee($,b,_);return}else $.next=b,$.update();else b.el=C.el,$.vnode=b},Z=(C,b,_,$,z,N,W)=>{const U=()=>{if(C.isMounted){let{next:J,bu:ae,u:le,parent:fe,vnode:Ae}=C;{const c=bm(C);if(c){J&&(J.el=Ae.el,ee(C,J,W)),c.asyncDep.then(()=>{Nt(()=>{C.isUnmounted||j()},z)});return}}let _e=J,De;ds(C,!1),J?(J.el=Ae.el,ee(C,J,W)):J=Ae,ae&&$i(ae),(De=J.props&&J.props.onVnodeBeforeUpdate)&&au(De,fe,J,Ae),ds(C,!0);const Ye=pl(C),d=C.subTree;C.subTree=Ye,E(d,Ye,g(d.el),We(d),C,z,N),J.el=Ye.el,_e===null&&up(C,Ye.el),le&&Nt(le,z),(De=J.props&&J.props.onVnodeUpdated)&&Nt(()=>au(De,fe,J,Ae),z)}else{let J;const{el:ae,props:le}=b,{bm:fe,m:Ae,parent:_e,root:De,type:Ye}=C,d=an(b);ds(C,!1),fe&&$i(fe),!d&&(J=le&&le.onVnodeBeforeMount)&&au(J,_e,b),ds(C,!0);{De.ce&&De.ce._hasShadowRoot()&&De.ce._injectChildStyle(Ye,C.parent?C.parent.type:void 0);const c=C.subTree=pl(C);E(null,c,_,$,C,z,N),b.el=c.el}if(Ae&&Nt(Ae,z),!d&&(J=le&&le.onVnodeMounted)){const c=b;Nt(()=>au(J,_e,c),z)}(b.shapeFlag&256||_e&&an(_e.vnode)&&_e.vnode.shapeFlag&256)&&C.a&&Nt(C.a,z),C.isMounted=!0,b=_=$=null}};C.scope.on();const H=C.effect=new xd(U);C.scope.off();const j=C.update=H.run.bind(H),re=C.job=H.runIfDirty.bind(H);re.i=C,re.id=C.uid,H.scheduler=()=>Ga(re),ds(C,!0),j()},ee=(C,b,_)=>{b.component=C;const $=C.vnode.props;C.vnode=b,C.next=null,np(C,b.props,$,_),rp(C,b.children,_),Pu(),nl(C),Ru()},se=(C,b,_,$,z,N,W,U,H=!1)=>{const j=C&&C.children,re=C?C.shapeFlag:0,J=b.children,{patchFlag:ae,shapeFlag:le}=b;if(ae>0){if(ae&128){de(j,J,_,$,z,N,W,U,H);return}else if(ae&256){ce(j,J,_,$,z,N,W,U,H);return}}le&8?(re&16&&he(j,z,N),J!==j&&l(_,J)):re&16?le&16?de(j,J,_,$,z,N,W,U,H):he(j,z,N,!0):(re&8&&l(_,""),le&16&&ne(J,_,$,z,N,W,U,H))},ce=(C,b,_,$,z,N,W,U,H)=>{C=C||sn,b=b||sn;const j=C.length,re=b.length,J=Math.min(j,re);let ae;for(ae=0;aere?he(C,z,N,!0,!1,J):ne(b,_,$,z,N,W,U,H,J)},de=(C,b,_,$,z,N,W,U,H)=>{let j=0;const re=b.length;let J=C.length-1,ae=re-1;for(;j<=J&&j<=ae;){const le=C[j],fe=b[j]=H?wu(b[j]):fu(b[j]);if(vs(le,fe))E(le,fe,_,null,z,N,W,U,H);else break;j++}for(;j<=J&&j<=ae;){const le=C[J],fe=b[ae]=H?wu(b[ae]):fu(b[ae]);if(vs(le,fe))E(le,fe,_,null,z,N,W,U,H);else break;J--,ae--}if(j>J){if(j<=ae){const le=ae+1,fe=leae)for(;j<=J;)xe(C[j],z,N,!0),j++;else{const le=j,fe=j,Ae=new Map;for(j=fe;j<=ae;j++){const k=b[j]=H?wu(b[j]):fu(b[j]);k.key!=null&&Ae.set(k.key,j)}let _e,De=0;const Ye=ae-fe+1;let d=!1,c=0;const f=new Array(Ye);for(j=0;j=Ye){xe(k,z,N,!0);continue}let P;if(k.key!=null)P=Ae.get(k.key);else for(_e=fe;_e<=ae;_e++)if(f[_e-fe]===0&&vs(k,b[_e])){P=_e;break}P===void 0?xe(k,z,N,!0):(f[P-fe]=j+1,P>=c?c=P:d=!0,E(k,b[P],_,null,z,N,W,U,H),De++)}const x=d?cp(f):sn;for(_e=x.length-1,j=Ye-1;j>=0;j--){const k=fe+j,P=b[k],K=b[k+1],Oe=k+1{const{el:N,type:W,transition:U,children:H,shapeFlag:j}=C;if(j&6){oe(C.component.subTree,b,_,$);return}if(j&128){C.suspense.move(b,_,$);return}if(j&64){W.move(C,b,_,Vt);return}if(W===it){s(N,b,_);for(let re=0;reU.enter(N),z));else{const{leave:re,delayLeave:J,afterLeave:ae}=U,le=()=>{C.ctx.isUnmounted?n(N):s(N,b,_)},fe=()=>{const Ae=N._isLeaving||!!N[Gt];N._isLeaving&&N[Gt](!0),U.persisted&&!Ae?le():re(N,()=>{le(),ae&&ae()})};J?J(N,le,fe):fe()}else s(N,b,_)},xe=(C,b,_,$=!1,z=!1)=>{const{type:N,props:W,ref:U,children:H,dynamicChildren:j,shapeFlag:re,patchFlag:J,dirs:ae,cacheIndex:le,memo:fe}=C;if(J===-2&&(z=!1),U!=null&&(Pu(),Mn(U,null,_,C,!0),Ru()),le!=null&&(b.renderCache[le]=void 0),re&256){b.ctx.deactivate(C);return}const Ae=re&1&&ae,_e=!an(C);let De;if(_e&&(De=W&&W.onVnodeBeforeUnmount)&&au(De,b,C),re&6)Le(C.component,_,$);else{if(re&128){C.suspense.unmount(_,$);return}Ae&&ls(C,null,b,"beforeUnmount"),re&64?C.type.remove(C,b,_,Vt,$):j&&!j.hasOnce&&(N!==it||J>0&&J&64)?he(j,b,_,!1,!0):(N===it&&J&384||!z&&re&16)&&he(H,b,_),$&&qe(C)}const Ye=fe!=null&&le==null;(_e&&(De=W&&W.onVnodeUnmounted)||Ae||Ye)&&Nt(()=>{De&&au(De,b,C),Ae&&ls(C,null,b,"unmounted"),Ye&&(C.el=null)},_)},qe=C=>{const{type:b,el:_,anchor:$,transition:z}=C;if(b===it){Ne(_,$);return}if(b===Un){S(C);return}const N=()=>{n(_),z&&!z.persisted&&z.afterLeave&&z.afterLeave()};if(C.shapeFlag&1&&z&&!z.persisted){const{leave:W,delayLeave:U}=z,H=()=>W(_,N);U?U(C.el,N,H):H()}else N()},Ne=(C,b)=>{let _;for(;C!==b;)_=p(C),n(C),C=_;n(b)},Le=(C,b,_)=>{const{bum:$,scope:z,job:N,subTree:W,um:U,m:H,a:j}=C;El(H),El(j),$&&$i($),z.stop(),N&&(N.flags|=8,xe(W,C,b,_)),U&&Nt(U,b),Nt(()=>{C.isUnmounted=!0},b)},he=(C,b,_,$=!1,z=!1,N=0)=>{for(let W=N;W{if(C.shapeFlag&6)return We(C.component.subTree);if(C.shapeFlag&128)return C.suspense.next();const b=p(C.anchor||C.el),_=b&&b[Kd];return _?p(_):b};let Tt=!1;const nu=(C,b,_)=>{let $;C==null?b._vnode&&(xe(b._vnode,null,null,!0),$=b._vnode.component):E(b._vnode||null,C,b,null,null,null,_),b._vnode=C,Tt||(Tt=!0,nl($),Vd(),Tt=!1)},Vt={p:E,um:xe,m:oe,r:qe,mt:V,mc:ne,pc:se,pbc:M,n:We,o:e};return{render:nu,hydrate:void 0,createApp:Yf(nu)}}function No({type:e,props:t},u){return u==="svg"&&e==="foreignObject"||u==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:u}function ds({effect:e,job:t},u){u?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function mp(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Ja(e,t,u=!1){const s=e.children,n=t.children;if(ge(s)&&ge(n))for(let i=0;i>1,e[u[a]]0&&(t[s]=u[i-1]),u[i]=s)}}for(i=u.length,o=u[i-1];i-- >0;)u[i]=o,o=t[o];return u}function bm(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:bm(t)}function El(e){if(e)for(let t=0;te.__isSuspense;function gp(e,t){t&&t.pendingBranch?ge(e)?t.effects.push(...e):t.effects.push(e):Ud(e)}const it=Symbol.for("v-fgt"),fi=Symbol.for("v-txt"),ht=Symbol.for("v-cmt"),Un=Symbol.for("v-stc"),Ou=[];let Mt=null;function X(e=!1){Ou.push(Mt=e?null:[])}function Qa(){Ou.pop(),Mt=Ou[Ou.length-1]||null}let ui=1;function a0(e,t=!1){ui+=e,e<0&&Mt&&t&&(Mt.hasOnce=!0)}function Fm(e){return e.dynamicChildren=ui>0?Mt||sn:null,Qa(),ui>0&&Mt&&Mt.push(e),e}function me(e,t,u,s,n,i){return Fm(ve(e,t,u,s,n,i,!0))}function et(e,t,u,s,n){return Fm(Be(e,t,u,s,n,!0))}function si(e){return e?e.__v_isVNode===!0:!1}function vs(e,t){return e.type===t.type&&e.key===t.key}const km=({key:e})=>e??null,Ui=({ref:e,ref_key:t,ref_for:u})=>(typeof e=="number"&&(e=""+e),e!=null?Ge(e)||ot(e)||pe(e)?{i:Ct,r:e,k:t,f:!!u}:e:null);function ve(e,t=null,u=null,s=0,n=null,i=e===it?0:1,o=!1,a=!1){const r={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&km(t),ref:t&&Ui(t),scopeId:H0,slotScopeIds:null,children:u,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:s,dynamicProps:n,dynamicChildren:null,appContext:null,ctx:Ct};return a?(r0(r,u),i&128&&e.normalize(r)):u&&(r.shapeFlag|=Ge(u)?8:16),ui>0&&!o&&Mt&&(r.patchFlag>0||i&6)&&r.patchFlag!==32&&Mt.push(r),r}const Be=fp;function fp(e,t=null,u=null,s=0,n=null,i=!1){if((!e||e===om)&&(e=ht),si(e)){const a=us(e,t,!0);return u&&r0(a,u),ui>0&&!i&&Mt&&(a.shapeFlag&6?Mt[Mt.indexOf(e)]=a:Mt.push(a)),a.patchFlag=-2,a}if(xp(e)&&(e=e.__vccOpts),t){t=At(t);let{class:a,style:r}=t;a&&!Ge(a)&&(t.class=Bt(a)),Re(r)&&(V0(r)&&!ge(r)&&(r=st({},r)),t.style=ws(r))}const o=Ge(e)?1:Dm(e)?128:Yd(e)?64:Re(e)?4:pe(e)?2:0;return ve(e,t,u,s,n,o,i,!0)}function At(e){return e?V0(e)||Em(e)?st({},e):e:null}function us(e,t,u=!1,s=!1){const{props:n,ref:i,patchFlag:o,children:a,transition:r}=e,m=t?ut(n||{},t):n,l={__v_isVNode:!0,__v_skip:!0,type:e.type,props:m,key:m&&km(m),ref:t&&t.ref?u&&i?ge(i)?i.concat(Ui(t)):[i,Ui(t)]:Ui(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:a,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==it?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:r,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&us(e.ssContent),ssFallback:e.ssFallback&&us(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return r&&s&&zs(l,r.clone(l)),l}function Ns(e=" ",t=0){return Be(fi,null,e,t)}function Ny(e,t){const u=Be(Un,null,e);return u.staticCount=t,u}function Ve(e="",t=!1){return t?(X(),et(ht,null,e)):Be(ht,null,e)}function fu(e){return e==null||typeof e=="boolean"?Be(ht):ge(e)?Be(it,null,e.slice()):si(e)?wu(e):Be(fi,null,String(e))}function wu(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:us(e)}function r0(e,t){let u=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(ge(t))u=16;else if(typeof t=="object")if(s&65){const n=t.default;n&&(n._c&&(n._d=!1),r0(e,n()),n._c&&(n._d=!0));return}else{u=32;const n=t._;!n&&!Em(t)?t._ctx=Ct:n===3&&Ct&&(Ct.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else if(pe(t)){if(s&65){r0(e,{default:t});return}t={default:t,_ctx:Ct},u=32}else t=String(t),s&64?(u=16,t=[Ns(t)]):u=8;e.children=t,e.shapeFlag|=u}function ut(...e){const t={};for(let u=0;uwt||Ct;let l0,pa;{const e=Ji(),t=(u,s)=>{let n;return(n=e[u])||(n=e[u]=[]),n.push(s),i=>{n.length>1?n.forEach(o=>o(i)):n[0](i)}};l0=t("__VUE_INSTANCE_SETTERS__",u=>wt=u),pa=t("__VUE_SSR_SETTERS__",u=>ni=u)}const pi=e=>{const t=wt;return l0(e),e.scope.on(),()=>{e.scope.off(),l0(t)}},Cl=()=>{wt&&wt.scope.off(),l0(null)};function Sm(e){return e.vnode.shapeFlag&4}let ni=!1;function Ep(e,t=!1,u=!1){t&&pa(t);const{props:s,children:n}=e.vnode,i=Sm(e);sp(e,s,i,t),ap(e,n,u||t);const o=i?Cp(e,t):void 0;return t&&pa(!1),o}function Cp(e,t){const u=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,$f);const{setup:s}=u;if(s){Pu();const n=e.setupContext=s.length>1?_m(e):null,i=pi(e),o=gi(s,e,0,[e.props,n]),a=fd(o);if(Ru(),i(),(a||e.sp)&&!an(e)&&tm(e),a){if(o.then(Cl,Cl),t)return o.then(r=>{Bl(e,r)}).catch(r=>{W0(r,e,0)});e.asyncDep=o}else Bl(e,o)}else Nm(e)}function Bl(e,t,u){pe(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Re(t)&&(e.setupState=Id(t)),Nm(e)}function Nm(e,t,u){const s=e.type;e.render||(e.render=s.render||Kt);{const n=pi(e);Pu();try{Vf(e)}finally{Ru(),n()}}}const Bp={get(e,t){return bt(e,"get",""),e[t]}};function _m(e){const t=u=>{e.exposed=u||{}};return{attrs:new Proxy(e.attrs,Bp),slots:e.slots,emit:e.emit,expose:t}}function Z0(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(Id(ef(e.exposed)),{get(t,u){if(u in t)return t[u];if(u in $n)return $n[u](e)},has(t,u){return u in t||u in $n}})):e.proxy}function yp(e,t=!0){return pe(e)?e.displayName||e.name:e.name||t&&e.__name}function xp(e){return pe(e)&&"__vccOpts"in e}const Ue=(e,t)=>mf(e,t,ni);function gt(e,t,u){try{a0(-1);const s=arguments.length;return s===2?Re(t)&&!ge(t)?si(t)?Be(e,null,[t]):Be(e,t):Be(e,null,t):(s>3?u=Array.prototype.slice.call(arguments,2):s===3&&si(u)&&(u=[u]),Be(e,t,u))}finally{a0(1)}}const Ap="3.5.40",yl=Kt;let ha;const xl=typeof window<"u"&&window.trustedTypes;if(xl)try{ha=xl.createPolicy("vue",{createHTML:e=>e})}catch{}const Om=ha?e=>ha.createHTML(e):e=>e,bp="http://www.w3.org/2000/svg",wp="http://www.w3.org/1998/Math/MathML",bu=typeof document<"u"?document:null,Al=bu&&bu.createElement("template"),Dp={insert:(e,t,u)=>{t.insertBefore(e,u||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,u,s)=>{const n=t==="svg"?bu.createElementNS(bp,e):t==="mathml"?bu.createElementNS(wp,e):u?bu.createElement(e,{is:u}):bu.createElement(e);return e==="select"&&s&&s.multiple!=null&&n.setAttribute("multiple",s.multiple),n},createText:e=>bu.createTextNode(e),createComment:e=>bu.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>bu.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,u,s,n,i){const o=u?u.previousSibling:t.lastChild;if(n&&(n===i||n.nextSibling))for(;t.insertBefore(n.cloneNode(!0),u),!(n===i||!(n=n.nextSibling)););else{Al.innerHTML=Om(s==="svg"?`${e}`:s==="mathml"?`${e}`:e);const a=Al.content;if(s==="svg"||s==="mathml"){const r=a.firstChild;for(;r.firstChild;)a.appendChild(r.firstChild);a.removeChild(r)}t.insertBefore(a,u)}return[o?o.nextSibling:t.firstChild,u?u.previousSibling:t.lastChild]}},Wu="transition",kn="animation",fn=Symbol("_vtc"),Tm={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},zm=st({},Xd,Tm),Fp=e=>(e.displayName="Transition",e.props=zm,e),Js=Fp((e,{slots:t})=>gt(Sf,Pm(e),t)),ms=(e,t=[])=>{ge(e)?e.forEach(u=>u(...t)):e&&e(...t)},bl=e=>e?ge(e)?e.some(t=>t.length>1):e.length>1:!1;function Pm(e){const t={};for(const w in e)w in Tm||(t[w]=e[w]);if(e.css===!1)return t;const{name:u="v",type:s,duration:n,enterFromClass:i=`${u}-enter-from`,enterActiveClass:o=`${u}-enter-active`,enterToClass:a=`${u}-enter-to`,appearFromClass:r=i,appearActiveClass:m=o,appearToClass:l=a,leaveFromClass:g=`${u}-leave-from`,leaveActiveClass:p=`${u}-leave-active`,leaveToClass:h=`${u}-leave-to`}=e,y=kp(n),E=y&&y[0],F=y&&y[1],{onBeforeEnter:B,onEnter:A,onEnterCancelled:O,onLeave:S,onLeaveCancelled:q,onBeforeAppear:I=B,onAppear:Y=A,onAppearCancelled:ne=O}=t,G=(w,T,V,ue)=>{w._enterCancelled=ue,Gu(w,T?l:a),Gu(w,T?m:o),V&&V()},M=(w,T)=>{w._isLeaving=!1,Gu(w,g),Gu(w,h),Gu(w,p),T&&T()},ie=w=>(T,V)=>{const ue=w?Y:A,Z=()=>G(T,w,V);ms(ue,[T,Z]),wl(()=>{Gu(T,w?r:i),lu(T,w?l:a),bl(ue)||Dl(T,s,E,Z)})};return st(t,{onBeforeEnter(w){ms(B,[w]),lu(w,i),lu(w,o)},onBeforeAppear(w){ms(I,[w]),lu(w,r),lu(w,m)},onEnter:ie(!1),onAppear:ie(!0),onLeave(w,T){w._isLeaving=!0;const V=()=>M(w,T);lu(w,g),w._enterCancelled?(lu(w,p),va(w)):(va(w),lu(w,p)),wl(()=>{w._isLeaving&&(Gu(w,g),lu(w,h),bl(S)||Dl(w,s,F,V))}),ms(S,[w,V])},onEnterCancelled(w){G(w,!1,void 0,!0),ms(O,[w])},onAppearCancelled(w){G(w,!0,void 0,!0),ms(ne,[w])},onLeaveCancelled(w){M(w),ms(q,[w])}})}function kp(e){if(e==null)return null;if(Re(e))return[_o(e.enter),_o(e.leave)];{const t=_o(e);return[t,t]}}function _o(e){return Ag(e)}function lu(e,t){t.split(/\s+/).forEach(u=>u&&e.classList.add(u)),(e[fn]||(e[fn]=new Set)).add(t)}function Gu(e,t){t.split(/\s+/).forEach(s=>s&&e.classList.remove(s));const u=e[fn];u&&(u.delete(t),u.size||(e[fn]=void 0))}function wl(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Sp=0;function Dl(e,t,u,s){const n=e._endId=++Sp,i=()=>{n===e._endId&&s()};if(u!=null)return setTimeout(i,u);const{type:o,timeout:a,propCount:r}=Rm(e,t);if(!o)return s();const m=o+"end";let l=0;const g=()=>{e.removeEventListener(m,p),i()},p=h=>{h.target===e&&++l>=r&&g()};setTimeout(()=>{l(u[y]||"").split(", "),n=s(`${Wu}Delay`),i=s(`${Wu}Duration`),o=Fl(n,i),a=s(`${kn}Delay`),r=s(`${kn}Duration`),m=Fl(a,r);let l=null,g=0,p=0;t===Wu?o>0&&(l=Wu,g=o,p=i.length):t===kn?m>0&&(l=kn,g=m,p=r.length):(g=Math.max(o,m),l=g>0?o>m?Wu:kn:null,p=l?l===Wu?i.length:r.length:0);const h=l===Wu&&/\b(?:transform|all)(?:,|$)/.test(s(`${Wu}Property`).toString());return{type:l,timeout:g,propCount:p,hasTransform:h}}function Fl(e,t){for(;e.lengthkl(u)+kl(e[s])))}function kl(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function va(e){return(e?e.ownerDocument:document).body.offsetHeight}function Np(e,t,u){const s=e[fn];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):u?e.setAttribute("class",t):e.className=t}const d0=Symbol("_vod"),er=Symbol("_vsh"),tn={name:"show",beforeMount(e,{value:t},{transition:u}){e[d0]=e.style.display==="none"?"":e.style.display,u&&t?u.beforeEnter(e):Sn(e,t)},mounted(e,{value:t},{transition:u}){u&&t&&u.enter(e)},updated(e,{value:t,oldValue:u},{transition:s}){!t!=!u&&(s?t?(s.beforeEnter(e),Sn(e,!0),s.enter(e)):s.leave(e,()=>{Sn(e,!1)}):Sn(e,t))},beforeUnmount(e,{value:t}){Sn(e,t)}};function Sn(e,t){e.style.display=t?e[d0]:"none",e[er]=!t}const Lm=Symbol("");function X0(e){const t=uu();if(!t)return;const u=t.ut=(n=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach(i=>m0(i,n))},s=()=>{const n=e(t.proxy);t.ce?m0(t.ce,n):Ea(t.subTree,n),u(n)};sm(()=>{Ud(s)}),En(()=>{_u(s,Kt,{flush:"post"});const n=new MutationObserver(s);n.observe(t.subTree.el.parentNode,{childList:!0}),gn(()=>n.disconnect())})}function Ea(e,t){if(e.shapeFlag&128){const u=e.suspense;e=u.activeBranch,u.pendingBranch&&!u.isHydrating&&u.effects.push(()=>{Ea(u.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)m0(e.el,t);else if(e.type===it)e.children.forEach(u=>Ea(u,t));else if(e.type===Un){let{el:u,anchor:s}=e;for(;u&&(m0(u,t),u!==s);)u=u.nextSibling}}function m0(e,t){if(e.nodeType===1){const u=e.style;let s="";for(const n in t){const i=_g(t[n]);u.setProperty(`--${n}`,i),s+=`--${n}: ${i};`}u[Lm]=s}}const _p=/(?:^|;)\s*display\s*:/;function Op(e,t,u){const s=e.style,n=Ge(u);let i=!1;if(u&&!n){if(t)if(Ge(t))for(const o of t.split(";")){const a=o.slice(0,o.indexOf(":")).trim();u[a]==null&&Rn(s,a,"")}else for(const o in t)u[o]==null&&Rn(s,o,"");for(const o in u){o==="display"&&(i=!0);const a=u[o];a!=null?zp(e,o,!Ge(t)&&t?t[o]:void 0,a)||Rn(s,o,a):Rn(s,o,"")}}else if(n){if(t!==u){const o=s[Lm];o&&(u+=";"+o),s.cssText=u,i=_p.test(u)}}else t&&e.removeAttribute("style");d0 in e&&(e[d0]=i?s.display:"",e[er]&&(s.display="none"))}const Sl=/\s*!important$/;function Rn(e,t,u){if(ge(u))u.forEach(s=>Rn(e,t,s));else if(u==null&&(u=""),t.startsWith("--"))e.setProperty(t,u);else{const s=Tp(e,t);Sl.test(u)?e.setProperty(Iu(s),u.replace(Sl,""),"important"):e[s]=u}}const Nl=["Webkit","Moz","ms"],Oo={};function Tp(e,t){const u=Oo[t];if(u)return u;let s=Dt(t);if(s!=="filter"&&s in e)return Oo[t]=s;s=j0(s);for(let n=0;nTo||(Mp.then(()=>To=0),To=Date.now());function Up(e,t){const u=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=u.attached)return;const n=u.value;if(ge(n)){const i=s.stopImmediatePropagation;s.stopImmediatePropagation=()=>{i.call(s),s._stopped=!0};const o=n.slice(),a=[s];for(let r=0;re.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Vp=(e,t,u,s,n,i)=>{const o=n==="svg";t==="class"?Np(e,s,o):t==="style"?Op(e,u,s):z0(t)?P0(t)||Rp(e,t,u,s,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Wp(e,t,s,o))?(Tl(e,t,s),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Ol(e,t,s,o,i,t!=="value")):e._isVueCE&&(Hp(e,t)||e._def.__asyncLoader&&(/[A-Z]/.test(t)||!Ge(s)))?Tl(e,Dt(t),s,i,t):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),Ol(e,t,s,o))};function Wp(e,t,u,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&Pl(t)&&pe(u));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="autocorrect"||t==="sandbox"&&e.tagName==="IFRAME"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const n=e.tagName;if(n==="IMG"||n==="VIDEO"||n==="CANVAS"||n==="SOURCE")return!1}return Pl(t)&&Ge(u)?!1:t in e}function Hp(e,t){const u=e._def.props;if(!u)return!1;const s=Dt(t);return Array.isArray(u)?u.some(n=>Dt(n)===s):Object.keys(u).some(n=>Dt(n)===s)}const jm=new WeakMap,Im=new WeakMap,c0=Symbol("_moveCb"),Rl=Symbol("_enterCb"),Gp=e=>(delete e.props.mode,e),qp=Gp({name:"TransitionGroup",props:st({},zm,{tag:String,moveClass:String}),setup(e,{slots:t}){const u=uu(),s=Zd();let n,i;return nm(()=>{if(!n.length)return;const o=e.moveClass||`${e.name||"v"}-move`;if(!Xp(n[0].el,u.vnode.el,o)){n=[];return}n.forEach(Kp),n.forEach(Yp);const a=n.filter(Zp);va(u.vnode.el),a.forEach(r=>{const m=r.el,l=m.style;lu(m,o),l.transform=l.webkitTransform=l.transitionDuration="";const g=m[c0]=p=>{p&&p.target!==m||(!p||p.propertyName.endsWith("transform"))&&(m.removeEventListener("transitionend",g),m[c0]=null,Gu(m,o))};m.addEventListener("transitionend",g)}),n=[]}),()=>{const o=ke(e),a=Pm(o);let r=o.tag||it;if(n=[],i)for(let m=0;m{a.split(/\s+/).forEach(r=>r&&s.classList.remove(r))}),u.split(/\s+/).forEach(a=>a&&s.classList.add(a)),s.style.display="none";const i=t.nodeType===1?t:t.parentNode;i.appendChild(s);const{hasTransform:o}=Rm(s);return i.removeChild(s),o}const Ll=e=>{const t=e.props["onUpdate:modelValue"]||!1;return ge(t)?u=>$i(t,u):t};function Jp(e){e.target.composing=!0}function jl(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const zo=Symbol("_assign");function Il(e,t,u){return t&&(e=e.trim()),u&&(e=Ia(e)),e}const Oy={created(e,{modifiers:{lazy:t,trim:u,number:s}},n){e[zo]=Ll(n);const i=s||n.props&&n.props.type==="number";Qs(e,t?"change":"input",o=>{o.target.composing||e[zo](Il(e.value,u,i))}),(u||i)&&Qs(e,"change",()=>{e.value=Il(e.value,u,i)}),t||(Qs(e,"compositionstart",Jp),Qs(e,"compositionend",jl),Qs(e,"change",jl))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,oldValue:u,modifiers:{lazy:s,trim:n,number:i}},o){if(e[zo]=Ll(o),e.composing)return;const a=(i||e.type==="number")&&!/^0\d/.test(e.value)?Ia(e.value):e.value,r=t??"";if(a===r)return;const m=e.getRootNode();(m instanceof Document||m instanceof ShadowRoot)&&m.activeElement===e&&e.type!=="range"&&(s&&t===u||n&&e.value.trim()===r)||(e.value=r)}},Qp=["ctrl","shift","alt","meta"],eh={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>Qp.some(u=>e[`${u}Key`]&&!t.includes(u))},Vi=(e,t)=>{if(!e)return e;const u=e._withMods||(e._withMods={}),s=t.join(".");return u[s]||(u[s]=((n,...i)=>{for(let o=0;o{const u=e._withKeys||(e._withKeys={}),s=t.join(".");return u[s]||(u[s]=(n=>{if(!("key"in n))return;const i=Iu(n.key);if(t.some(o=>o===i||th[o]===i))return e(n)}))},uh=st({patchProp:Vp},Dp);let Ml;function sh(){return Ml||(Ml=lp(uh))}const Ty=((...e)=>{const t=sh().createApp(...e),{mount:u}=t;return t.mount=s=>{const n=ih(s);if(!n)return;const i=t._component;!pe(i)&&!i.render&&!i.template&&(i.template=n.innerHTML),n.nodeType===1&&(n.textContent="");const o=u(n,!1,nh(n));return n instanceof Element&&(n.removeAttribute("v-cloak"),n.setAttribute("data-v-app","")),o},t});function nh(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function ih(e){return Ge(e)?document.querySelector(e):e}class g0{static GLOBAL_SCOPE_VOLATILE="nextcloud_vol";static GLOBAL_SCOPE_PERSISTENT="nextcloud_per";scope;wrapped;constructor(t,u,s){this.scope=`${s?g0.GLOBAL_SCOPE_PERSISTENT:g0.GLOBAL_SCOPE_VOLATILE}_${btoa(t)}_`,this.wrapped=u}scopeKey(t){return`${this.scope}${t}`}setItem(t,u){this.wrapped.setItem(this.scopeKey(t),u)}getItem(t){return this.wrapped.getItem(this.scopeKey(t))}removeItem(t){this.wrapped.removeItem(this.scopeKey(t))}clear(){Object.keys(this.wrapped).filter(t=>t.startsWith(this.scope)).map(this.wrapped.removeItem.bind(this.wrapped))}}class oh{appId;persisted=!1;clearedOnLogout=!1;constructor(t){this.appId=t}persist(t=!0){return this.persisted=t,this}clearOnLogout(t=!0){return this.clearedOnLogout=t,this}build(){return new g0(this.appId,this.persisted?window.localStorage:window.sessionStorage,!this.clearedOnLogout)}}function ah(e){return new oh(e)}function zy(e,t,u){const s=`#initial-state-${e}-${t}`;if(window._nc_initial_state?.has(s))return window._nc_initial_state.get(s);window._nc_initial_state||(window._nc_initial_state=new Map);const n=document.querySelector(s);if(n===null){if(u!==void 0)return u;throw new Error(`Could not find initial state ${t} of ${e}`)}try{const i=JSON.parse(atob(n.value));return window._nc_initial_state.set(s,i),i}catch(i){if(console.error("[@nextcloud/initial-state] Could not parse initial state",{key:t,app:e,error:i}),u!==void 0)return u;throw new Error(`Could not parse initial state ${t} of ${e}`,{cause:i})}}function rh(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Um={exports:{}},tt=Um.exports={},mu,cu;function Ca(){throw new Error("setTimeout has not been defined")}function Ba(){throw new Error("clearTimeout has not been defined")}(function(){try{typeof setTimeout=="function"?mu=setTimeout:mu=Ca}catch{mu=Ca}try{typeof clearTimeout=="function"?cu=clearTimeout:cu=Ba}catch{cu=Ba}})();function Vm(e){if(mu===setTimeout)return setTimeout(e,0);if((mu===Ca||!mu)&&setTimeout)return mu=setTimeout,setTimeout(e,0);try{return mu(e,0)}catch{try{return mu.call(null,e,0)}catch{return mu.call(this,e,0)}}}function lh(e){if(cu===clearTimeout)return clearTimeout(e);if((cu===Ba||!cu)&&clearTimeout)return cu=clearTimeout,clearTimeout(e);try{return cu(e)}catch{try{return cu.call(null,e)}catch{return cu.call(this,e)}}}var Su=[],ln=!1,xs,Wi=-1;function dh(){!ln||!xs||(ln=!1,xs.length?Su=xs.concat(Su):Wi=-1,Su.length&&Wm())}function Wm(){if(!ln){var e=Vm(dh);ln=!0;for(var t=Su.length;t;){for(xs=Su,Su=[];++Wi1)for(var u=1;uconsole.error("SEMVER",...t):()=>{},Po}var Ro,Ul;function qm(){if(Ul)return Ro;Ul=1;const e="2.0.0",t=256,u=Number.MAX_SAFE_INTEGER||9007199254740991,s=16,n=t-6;return Ro={MAX_LENGTH:t,MAX_SAFE_COMPONENT_LENGTH:s,MAX_SAFE_BUILD_LENGTH:n,MAX_SAFE_INTEGER:u,RELEASE_TYPES:["major","premajor","minor","preminor","patch","prepatch","prerelease"],SEMVER_SPEC_VERSION:e,FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2},Ro}var Lo={exports:{}},Vl;function ch(){return Vl||(Vl=1,(function(e,t){const{MAX_SAFE_COMPONENT_LENGTH:u,MAX_SAFE_BUILD_LENGTH:s,MAX_LENGTH:n}=qm(),i=Gm();t=e.exports={};const o=t.re=[],a=t.safeRe=[],r=t.src=[],m=t.safeSrc=[],l=t.t={};let g=0;const p="[a-zA-Z0-9-]",h=[["\\s",1],["\\d",n],[p,s]],y=F=>{for(const[B,A]of h)F=F.split(`${B}*`).join(`${B}{0,${A}}`).split(`${B}+`).join(`${B}{1,${A}}`);return F},E=(F,B,A)=>{const O=y(B),S=g++;i(F,S,B),l[F]=S,r[S]=B,m[S]=O,o[S]=new RegExp(B,A?"g":void 0),a[S]=new RegExp(O,A?"g":void 0)};E("NUMERICIDENTIFIER","0|[1-9]\\d*"),E("NUMERICIDENTIFIERLOOSE","\\d+"),E("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${p}*`),E("MAINVERSION",`(${r[l.NUMERICIDENTIFIER]})\\.(${r[l.NUMERICIDENTIFIER]})\\.(${r[l.NUMERICIDENTIFIER]})`),E("MAINVERSIONLOOSE",`(${r[l.NUMERICIDENTIFIERLOOSE]})\\.(${r[l.NUMERICIDENTIFIERLOOSE]})\\.(${r[l.NUMERICIDENTIFIERLOOSE]})`),E("PRERELEASEIDENTIFIER",`(?:${r[l.NONNUMERICIDENTIFIER]}|${r[l.NUMERICIDENTIFIER]})`),E("PRERELEASEIDENTIFIERLOOSE",`(?:${r[l.NONNUMERICIDENTIFIER]}|${r[l.NUMERICIDENTIFIERLOOSE]})`),E("PRERELEASE",`(?:-(${r[l.PRERELEASEIDENTIFIER]}(?:\\.${r[l.PRERELEASEIDENTIFIER]})*))`),E("PRERELEASELOOSE",`(?:-?(${r[l.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${r[l.PRERELEASEIDENTIFIERLOOSE]})*))`),E("BUILDIDENTIFIER",`${p}+`),E("BUILD",`(?:\\+(${r[l.BUILDIDENTIFIER]}(?:\\.${r[l.BUILDIDENTIFIER]})*))`),E("FULLPLAIN",`v?${r[l.MAINVERSION]}${r[l.PRERELEASE]}?${r[l.BUILD]}?`),E("FULL",`^${r[l.FULLPLAIN]}$`),E("LOOSEPLAIN",`[v=\\s]*${r[l.MAINVERSIONLOOSE]}${r[l.PRERELEASELOOSE]}?${r[l.BUILD]}?`),E("LOOSE",`^${r[l.LOOSEPLAIN]}$`),E("GTLT","((?:<|>)?=?)"),E("XRANGEIDENTIFIERLOOSE",`${r[l.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`),E("XRANGEIDENTIFIER",`${r[l.NUMERICIDENTIFIER]}|x|X|\\*`),E("XRANGEPLAIN",`[v=\\s]*(${r[l.XRANGEIDENTIFIER]})(?:\\.(${r[l.XRANGEIDENTIFIER]})(?:\\.(${r[l.XRANGEIDENTIFIER]})(?:${r[l.PRERELEASE]})?${r[l.BUILD]}?)?)?`),E("XRANGEPLAINLOOSE",`[v=\\s]*(${r[l.XRANGEIDENTIFIERLOOSE]})(?:\\.(${r[l.XRANGEIDENTIFIERLOOSE]})(?:\\.(${r[l.XRANGEIDENTIFIERLOOSE]})(?:${r[l.PRERELEASELOOSE]})?${r[l.BUILD]}?)?)?`),E("XRANGE",`^${r[l.GTLT]}\\s*${r[l.XRANGEPLAIN]}$`),E("XRANGELOOSE",`^${r[l.GTLT]}\\s*${r[l.XRANGEPLAINLOOSE]}$`),E("COERCEPLAIN",`(^|[^\\d])(\\d{1,${u}})(?:\\.(\\d{1,${u}}))?(?:\\.(\\d{1,${u}}))?`),E("COERCE",`${r[l.COERCEPLAIN]}(?:$|[^\\d])`),E("COERCEFULL",r[l.COERCEPLAIN]+`(?:${r[l.PRERELEASE]})?(?:${r[l.BUILD]})?(?:$|[^\\d])`),E("COERCERTL",r[l.COERCE],!0),E("COERCERTLFULL",r[l.COERCEFULL],!0),E("LONETILDE","(?:~>?)"),E("TILDETRIM",`(\\s*)${r[l.LONETILDE]}\\s+`,!0),t.tildeTrimReplace="$1~",E("TILDE",`^${r[l.LONETILDE]}${r[l.XRANGEPLAIN]}$`),E("TILDELOOSE",`^${r[l.LONETILDE]}${r[l.XRANGEPLAINLOOSE]}$`),E("LONECARET","(?:\\^)"),E("CARETTRIM",`(\\s*)${r[l.LONECARET]}\\s+`,!0),t.caretTrimReplace="$1^",E("CARET",`^${r[l.LONECARET]}${r[l.XRANGEPLAIN]}$`),E("CARETLOOSE",`^${r[l.LONECARET]}${r[l.XRANGEPLAINLOOSE]}$`),E("COMPARATORLOOSE",`^${r[l.GTLT]}\\s*(${r[l.LOOSEPLAIN]})$|^$`),E("COMPARATOR",`^${r[l.GTLT]}\\s*(${r[l.FULLPLAIN]})$|^$`),E("COMPARATORTRIM",`(\\s*)${r[l.GTLT]}\\s*(${r[l.LOOSEPLAIN]}|${r[l.XRANGEPLAIN]})`,!0),t.comparatorTrimReplace="$1$2$3",E("HYPHENRANGE",`^\\s*(${r[l.XRANGEPLAIN]})\\s+-\\s+(${r[l.XRANGEPLAIN]})\\s*$`),E("HYPHENRANGELOOSE",`^\\s*(${r[l.XRANGEPLAINLOOSE]})\\s+-\\s+(${r[l.XRANGEPLAINLOOSE]})\\s*$`),E("STAR","(<|>)?=?\\s*\\*"),E("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),E("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")})(Lo,Lo.exports)),Lo.exports}var jo,Wl;function gh(){if(Wl)return jo;Wl=1;const e=Object.freeze({loose:!0}),t=Object.freeze({});return jo=u=>u?typeof u!="object"?e:u:t,jo}var Io,Hl;function fh(){if(Hl)return Io;Hl=1;const e=/^[0-9]+$/,t=(u,s)=>{if(typeof u=="number"&&typeof s=="number")return u===s?0:ut(s,u)},Io}var Mo,Gl;function Km(){if(Gl)return Mo;Gl=1;const e=Gm(),{MAX_LENGTH:t,MAX_SAFE_INTEGER:u}=qm(),{safeRe:s,t:n}=ch(),i=gh(),{compareIdentifiers:o}=fh(),a=(m,l)=>{const g=l.split(".");if(g.length>m.length)return!1;for(let p=0;pt)throw new TypeError(`version is longer than ${t} characters`);e("SemVer",l,g),this.options=g,this.loose=!!g.loose,this.includePrerelease=!!g.includePrerelease;const p=l.trim().match(g.loose?s[n.LOOSE]:s[n.FULL]);if(!p)throw new TypeError(`Invalid Version: ${l}`);if(this.raw=l,this.major=+p[1],this.minor=+p[2],this.patch=+p[3],this.major>u||this.major<0)throw new TypeError("Invalid major version");if(this.minor>u||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>u||this.patch<0)throw new TypeError("Invalid patch version");p[4]?this.prerelease=p[4].split(".").map(h=>{if(/^[0-9]+$/.test(h)){const y=+h;if(y>=0&&yl.major?1:this.minorl.minor?1:this.patchl.patch?1:0}comparePre(l){if(l instanceof r||(l=new r(l,this.options)),this.prerelease.length&&!l.prerelease.length)return-1;if(!this.prerelease.length&&l.prerelease.length)return 1;if(!this.prerelease.length&&!l.prerelease.length)return 0;let g=0;do{const p=this.prerelease[g],h=l.prerelease[g];if(e("prerelease compare",g,p,h),p===void 0&&h===void 0)return 0;if(h===void 0)return 1;if(p===void 0)return-1;if(p!==h)return o(p,h)}while(++g)}compareBuild(l){l instanceof r||(l=new r(l,this.options));let g=0;do{const p=this.build[g],h=l.build[g];if(e("build compare",g,p,h),p===void 0&&h===void 0)return 0;if(h===void 0)return 1;if(p===void 0)return-1;if(p!==h)return o(p,h)}while(++g)}inc(l,g,p){if(l.startsWith("pre")){if(!g&&p===!1)throw new Error("invalid increment argument: identifier is empty");if(g){const h=`-${g}`.match(this.options.loose?s[n.PRERELEASELOOSE]:s[n.PRERELEASE]);if(!h||h[1]!==g)throw new Error(`invalid identifier: ${g}`)}}switch(l){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",g,p);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",g,p);break;case"prepatch":this.prerelease.length=0,this.inc("patch",g,p),this.inc("pre",g,p);break;case"prerelease":this.prerelease.length===0&&this.inc("patch",g,p),this.inc("pre",g,p);break;case"release":if(this.prerelease.length===0)throw new Error(`version ${this.raw} is not a prerelease`);this.prerelease.length=0;break;case"major":(this.minor!==0||this.patch!==0||this.prerelease.length===0)&&this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":(this.patch!==0||this.prerelease.length===0)&&this.minor++,this.patch=0,this.prerelease=[];break;case"patch":this.prerelease.length===0&&this.patch++,this.prerelease=[];break;case"pre":{const h=Number(p)?1:0;if(this.prerelease.length===0)this.prerelease=[h];else{let y=this.prerelease.length;for(;--y>=0;)typeof this.prerelease[y]=="number"&&(this.prerelease[y]++,y=-2);if(y===-1){if(g===this.prerelease.join(".")&&p===!1)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(h)}}if(g){let y=[g,h];if(p===!1&&(y=[g]),a(this.prerelease,g)){const E=this.prerelease[g.split(".").length];isNaN(E)&&(this.prerelease=y)}else this.prerelease=y}break}default:throw new Error(`invalid increment argument: ${l}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}}return Mo=r,Mo}var $o,ql;function ph(){if(ql)return $o;ql=1;const e=Km();return $o=(t,u)=>new e(t,u).major,$o}var hh=ph();const Kl=O0(hh);var Uo,Yl;function vh(){if(Yl)return Uo;Yl=1;const e=Km();return Uo=(t,u,s=!1)=>{if(t instanceof e)return t;try{return new e(t,u)}catch(n){if(!s)return null;throw n}},Uo}var Vo,Zl;function Eh(){if(Zl)return Vo;Zl=1;const e=vh();return Vo=(t,u)=>{const s=e(t,u);return s?s.version:null},Vo}var Ch=Eh();const Bh=O0(Ch);class yh{bus;constructor(t){typeof t.getVersion!="function"||!Bh(t.getVersion())?console.warn("Proxying an event bus with an unknown or invalid version"):Kl(t.getVersion())!==Kl(this.getVersion())&&console.warn("Proxying an event bus of version "+t.getVersion()+" with "+this.getVersion()),this.bus=t}getVersion(){return"3.3.3"}subscribe(t,u){this.bus.subscribe(t,u)}unsubscribe(t,u){this.bus.unsubscribe(t,u)}emit(t,...u){this.bus.emit(t,...u)}}class xh{handlers=new Map;getVersion(){return"3.3.3"}subscribe(t,u){this.handlers.set(t,(this.handlers.get(t)||[]).concat(u))}unsubscribe(t,u){this.handlers.set(t,(this.handlers.get(t)||[]).filter(s=>s!==u))}emit(t,...u){(this.handlers.get(t)||[]).forEach(s=>{try{s(u[0])}catch(n){console.error("could not invoke event listener",n)}})}}let Nn=null;function tr(){return Nn!==null?Nn:typeof window>"u"?new Proxy({},{get:()=>()=>console.error("Window not available, EventBus can not be established!")}):(window.OC?._eventBus&&typeof window._nc_event_bus>"u"&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),typeof window?._nc_event_bus<"u"?Nn=new yh(window._nc_event_bus):Nn=window._nc_event_bus=new xh,Nn)}function Ym(e,t){tr().subscribe(e,t)}function Ah(e,t){tr().unsubscribe(e,t)}function bh(e,...t){tr().emit(e,...t)}function f0(e,t){return $a()?(Tg(e,t),!0):!1}const Wo=new WeakMap,wh=(...e)=>{var t;const u=e[0],s=(t=uu())===null||t===void 0?void 0:t.proxy,n=s??$a();if(n==null&&!Hd())throw new Error("injectLocal must be called in setup");return n&&Wo.has(n)&&u in Wo.get(n)?Wo.get(n)[u]:Nu(...e)},p0=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const Dh=e=>e!=null,Fh=Object.prototype.toString,kh=e=>Fh.call(e)==="[object Object]",Oi=()=>{};function Xl(e){return e.endsWith("rem")?Number.parseFloat(e)*16:Number.parseFloat(e)}function Hi(e){return Array.isArray(e)?e:[e]}function Py(e){if(!p0)return e;let t=0,u,s;const n=()=>{t-=1,s&&t<=0&&(s.stop(),u=void 0,s=void 0)};return((...i)=>(t+=1,s||(s=Og(!0),u=s.run(()=>e(...i))),f0(n),u))}function Sh(e,t=1e3,u={}){const{immediate:s=!0,immediateCallback:n=!1}=u;let i=null;const o=ks(!1);function a(){i&&(clearInterval(i),i=null)}function r(){o.value=!1,a()}function m(){const l=zt(t);l<=0||(o.value=!0,n&&e(),a(),o.value&&(i=setInterval(e,l)))}return s&&p0&&m(),(ot(t)||typeof t=="function")&&f0(_u(t,()=>{o.value&&p0&&m()})),f0(r),{isActive:Qg(o),pause:r,resume:m}}function Nh(e,t,u){return _u(e,t,{...u,immediate:!0})}const hi=p0?window:void 0;function un(e){var t;const u=zt(e);return(t=u?.$el)!==null&&t!==void 0?t:u}function Ju(...e){const t=(s,n,i,o)=>(s.addEventListener(n,i,o),()=>s.removeEventListener(n,i,o)),u=Ue(()=>{const s=Hi(zt(e[0])).filter(n=>n!=null);return s.every(n=>typeof n!="string")?s:void 0});return Nh(()=>{var s,n;return[(s=(n=u.value)===null||n===void 0?void 0:n.map(i=>un(i)))!==null&&s!==void 0?s:[hi].filter(i=>i!=null),Hi(zt(u.value?e[1]:e[0])),Hi(Fe(u.value?e[2]:e[1])),zt(u.value?e[3]:e[2])]},([s,n,i,o],a,r)=>{if(!s?.length||!n?.length||!i?.length)return;const m=kh(o)?{...o}:o,l=s.flatMap(g=>n.flatMap(p=>i.map(h=>t(g,p,h,m))));r(()=>{l.forEach(g=>g())})},{flush:"post"})}function Ry(e,t,u={}){const{window:s=hi,ignore:n=[],capture:i=!0,detectIframe:o=!1,controls:a=!1}=u;if(!s)return a?{stop:Oi,cancel:Oi,trigger:Oi}:Oi;let r=!0;const m=F=>zt(n).some(B=>{if(typeof B=="string")return Array.from(s.document.querySelectorAll(B)).some(A=>A===F.target||F.composedPath().includes(A));{const A=un(B);return A&&(F.target===A||F.composedPath().includes(A))}});function l(F){const B=zt(F);return B&&B.$.subTree.shapeFlag===16}function g(F,B){const A=zt(F),O=A.$.subTree&&A.$.subTree.children;return O==null||!Array.isArray(O)?!1:O.some(S=>S.el===B.target||B.composedPath().includes(S.el))}const p=F=>{const B=un(e);if(F.target!=null&&!(!(B instanceof Element)&&l(e)&&g(e,F))&&!(!B||B===F.target||F.composedPath().includes(B))){if("detail"in F&&F.detail===0&&(r=!m(F)),!r){r=!0;return}t(F)}};let h=!1;const y=[Ju(s,"click",F=>{h||(h=!0,setTimeout(()=>{h=!1},0),p(F))},{passive:!0,capture:i}),Ju(s,"pointerdown",F=>{const B=un(e);r=!m(F)&&!!(B&&!F.composedPath().includes(B))},{passive:!0}),o&&Ju(s,"blur",F=>{setTimeout(()=>{const B=un(e);let A=s.document.activeElement;for(;A?.shadowRoot;)A=A.shadowRoot.activeElement;A?.tagName==="IFRAME"&&!B?.contains(s.document.activeElement)&&t(F)},0)},{passive:!0})].filter(Boolean),E=()=>y.forEach(F=>F());return a?{stop:E,cancel:()=>{r=!1},trigger:F=>{r=!0,p(F),r=!1}}:E}function _h(){const e=ks(!1),t=uu();return t&&En(()=>{e.value=!0},t),e}function Zm(e){const t=_h();return Ue(()=>(t.value,!!e()))}function Ly(e,t,u={}){const{window:s=hi,...n}=u;let i;const o=Zm(()=>s&&"MutationObserver"in s),a=()=>{i&&(i.disconnect(),i=void 0)},r=_u(Ue(()=>{const g=Hi(zt(e)).map(un).filter(Dh);return new Set(g)}),g=>{a(),o.value&&g.size&&(i=new MutationObserver(t),g.forEach(p=>i.observe(p,n)))},{immediate:!0,flush:"post"}),m=()=>i?.takeRecords(),l=()=>{r(),a()};return f0(l),{isSupported:o,stop:l,takeRecords:m}}function Oh(e){return typeof e=="function"?e:typeof e=="string"?t=>t.key===e:Array.isArray(e)?t=>e.includes(t.key):()=>!0}function Jl(...e){let t,u,s={};e.length===3?(t=e[0],u=e[1],s=e[2]):e.length===2?typeof e[1]=="object"?(t=!0,u=e[0],s=e[1]):(t=e[0],u=e[1]):(t=!0,u=e[0]);const{target:n=hi,eventName:i="keydown",passive:o=!1,dedupe:a=!1}=s,r=Oh(t);return Ju(n,i,m=>{m.repeat&&zt(a)||r(m)&&u(m)},o)}const Th=Symbol("vueuse-ssr-width");function zh(){const e=Hd()?wh(Th,null):null;return typeof e=="number"?e:void 0}function Ph(e,t={}){const{window:u=hi,ssrWidth:s=zh()}=t,n=Zm(()=>u&&"matchMedia"in u&&typeof u.matchMedia=="function"),i=ks(typeof s=="number"),o=ks(),a=ks(!1),r=m=>{a.value=m.matches};return Gd(()=>{if(i.value){i.value=!n.value,a.value=zt(e).split(",").some(m=>{const l=m.includes("not all"),g=m.match(/\(\s*min-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/),p=m.match(/\(\s*max-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/);let h=!!(g||p);return g&&h&&(h=s>=Xl(g[1])),p&&h&&(h=s<=Xl(p[1])),l?!h:h});return}n.value&&(o.value=u.matchMedia(zt(e)),a.value=o.value.matches)}),Ju(o,"change",r,{passive:!0}),Ue(()=>a.value)}function jy(e){return Ph("(prefers-color-scheme: dark)",e)}function Rh(e,t={}){const{threshold:u=50,onSwipe:s,onSwipeEnd:n,onSwipeStart:i,passive:o=!0}=t,a=Xn({x:0,y:0}),r=Xn({x:0,y:0}),m=Ue(()=>a.x-r.x),l=Ue(()=>a.y-r.y),{max:g,abs:p}=Math,h=Ue(()=>g(p(m.value),p(l.value))>=u),y=ks(!1),E=Ue(()=>h.value?p(m.value)>p(l.value)?m.value>0?"left":"right":l.value>0?"up":"down":"none"),F=I=>[I.touches[0].clientX,I.touches[0].clientY],B=(I,Y)=>{a.x=I,a.y=Y},A=(I,Y)=>{r.x=I,r.y=Y},O={passive:o,capture:!o},S=I=>{y.value&&n?.(I,E.value),y.value=!1},q=[Ju(e,"touchstart",I=>{if(I.touches.length!==1)return;const[Y,ne]=F(I);B(Y,ne),A(Y,ne),i?.(I)},O),Ju(e,"touchmove",I=>{if(I.touches.length!==1)return;const[Y,ne]=F(I);A(Y,ne),O.capture&&!O.passive&&Math.abs(m.value)>Math.abs(l.value)&&I.preventDefault(),!y.value&&h.value&&(y.value=!0),y.value&&s?.(I)},O),Ju(e,["touchend","touchcancel"],S,O)];return{isSwiping:y,direction:E,coordsStart:a,coordsEnd:r,lengthX:m,lengthY:l,stop:()=>q.forEach(I=>I())}}var Lh="M13 14H11V9H13M13 18H11V16H13M1 21H23L12 2L1 21Z",Iy="M11,15H13V17H11V15M11,7H13V13H11V7M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20Z",jh="M23,12L20.56,9.22L20.9,5.54L17.29,4.72L15.4,1.54L12,3L8.6,1.54L6.71,4.72L3.1,5.53L3.44,9.21L1,12L3.44,14.78L3.1,18.47L6.71,19.29L8.6,22.47L12,21L15.4,22.46L17.29,19.28L20.9,18.46L20.56,14.78L23,12M13,17H11V15H13V17M13,13H11V7H13V13Z",My="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z",$y="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",Ih="M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",Mh="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",$h="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",Ql="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z",Uh="M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",Uy="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",Vy="M21,15.61L19.59,17L14.58,12L19.59,7L21,8.39L17.44,12L21,15.61M3,6H16V8H3V6M3,13V11H13V13H3M3,18V16H16V18H3Z",Vh="M14,19H18V5H14M6,19H10V5H6V19Z",Wh="M8,5.14V19.14L19,12.14L8,5.14Z",Wy="M12.5,8C9.85,8 7.45,9 5.6,10.6L2,7V16H11L7.38,12.38C8.77,11.22 10.54,10.5 12.5,10.5C16.04,10.5 19.05,12.81 20.1,16L22.47,15.22C21.08,11.03 17.15,8 12.5,8Z";const ur=1024,Xm=ur/2,h0=e=>document.documentElement.clientWidth{Jm.value=h0(ur),Qm.value=h0(Xm)},{passive:!0});function Hy(){return Jn(Jm)}function Gy(){return Jn(Qm)}class Hh{bundle;constructor(t){this.bundle={pluralFunction:t,translations:{}}}addTranslations(t){const u=Object.values(t.translations[""]??{}).map(({msgid:s,msgid_plural:n,msgstr:i})=>n!==void 0?[`_${s}_::_${n}_`,i]:[s,i[0]]);this.bundle.translations={...this.bundle.translations,...Object.fromEntries(u)}}gettext(t,u={}){return Ii("",t,u,void 0,{bundle:this.bundle})}ngettext(t,u,s,n={}){return vg("",t,u,s,n,{bundle:this.bundle})}}class Gh{debug=!1;language="en";translations={};setLanguage(t){return this.language=t,this}detectLocale(){return this.detectLanguage()}detectLanguage(){return this.setLanguage(T0().replace("-","_"))}addTranslation(t,u){return this.translations[t]=u,this}enableDebugMode(){return this.debug=!0,this}build(){this.debug&&console.debug(`Creating gettext instance for language ${this.language}`);const t=new Hh(u=>Eg(u,this.language));return this.language in this.translations&&t.addTranslations(this.translations[this.language]),t}}function e3(){return new Gh}const sr=e3().detectLanguage().build(),qh=(...e)=>sr.ngettext(...e),ft=(...e)=>sr.gettext(...e);function pn(...e){for(const t of e)if(!t.registered){for(const{l:u,t:s}of t){if(u!==T0()||!s)continue;const n=Object.fromEntries(Object.entries(s).map(([i,o])=>[i,{msgid:i,msgid_plural:o.p,msgstr:o.v}]));sr.addTranslations({translations:{"":n}})}t.registered=!0}}const Kh=[{l:"ar",t:{"a few seconds ago":{v:["منذ عدة ثوانٍ"]},"sec. ago":{v:["ثانية مضت"]},"seconds ago":{v:["ثوانٍ مضت"]}}},{l:"ast",t:{"a few seconds ago":{v:["hai unos segundos"]},"sec. ago":{v:["hai segs"]},"seconds ago":{v:["hai segundos"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"a few seconds ago":{v:["před několika sekundami"]},"sec. ago":{v:["sek. před"]},"seconds ago":{v:["sekund předtím"]}}},{l:"cs-CZ",t:{"a few seconds ago":{v:["před několika sekundami"]},"sec. ago":{v:["sek. před"]},"seconds ago":{v:["sekund předtím"]}}},{l:"da",t:{"a few seconds ago":{v:["et par sekunder siden"]},"sec. ago":{v:["sek. siden"]},"seconds ago":{v:["sekunder siden"]}}},{l:"de",t:{"a few seconds ago":{v:["vor ein paar Sekunden"]},"sec. ago":{v:["Sek. zuvor"]},"seconds ago":{v:["Sekunden zuvor"]}}},{l:"de-DE",t:{"a few seconds ago":{v:["vor ein paar Sekunden"]},"sec. ago":{v:["Sek. zuvor"]},"seconds ago":{v:["Sekunden zuvor"]}}},{l:"el",t:{"a few seconds ago":{v:["πριν λίγα δευτερόλεπτα"]},"sec. ago":{v:["δευτ. πριν"]},"seconds ago":{v:["δευτερόλεπτα πριν"]}}},{l:"en-GB",t:{"a few seconds ago":{v:["a few seconds ago"]},"sec. ago":{v:["sec. ago"]},"seconds ago":{v:["seconds ago"]}}},{l:"eo",t:{}},{l:"es",t:{"a few seconds ago":{v:["hace unos pocos segundos"]},"sec. ago":{v:["hace segundos"]},"seconds ago":{v:["segundos atrás"]}}},{l:"es-AR",t:{"a few seconds ago":{v:["hace unos segundos"]},"sec. ago":{v:["seg. atrás"]},"seconds ago":{v:["segundos atrás"]}}},{l:"es-EC",t:{"a few seconds ago":{v:["hace unos segundos"]},"sec. ago":{v:["hace segundos"]},"seconds ago":{v:["Segundos atrás"]}}},{l:"es-MX",t:{"a few seconds ago":{v:["hace unos segundos"]},"sec. ago":{v:["seg. atrás"]},"seconds ago":{v:["segundos atrás"]}}},{l:"et-EE",t:{"a few seconds ago":{v:["mõni sekund tagasi"]},"sec. ago":{v:["sek. tagasi"]},"seconds ago":{v:["sekundit tagasi"]}}},{l:"eu",t:{"a few seconds ago":{v:["duela segundo batzuk"]},"sec. ago":{v:["duela seg."]},"seconds ago":{v:["duela segundo"]}}},{l:"fa",t:{"a few seconds ago":{v:["چند ثانیه پیش"]},"sec. ago":{v:["چند ثانیه پیش"]},"seconds ago":{v:["چند ثانیه پیش"]}}},{l:"fi",t:{"a few seconds ago":{v:["muutamia sekunteja sitten"]},"sec. ago":{v:["sek. sitten"]},"seconds ago":{v:["sekunteja sitten"]}}},{l:"fr",t:{"a few seconds ago":{v:["il y a quelques instants"]},"sec. ago":{v:["il y a qq. sec."]},"seconds ago":{v:["il y a quelques secondes"]}}},{l:"ga",t:{"a few seconds ago":{v:["cúpla soicind ó shin"]},"sec. ago":{v:["soic. ó shin"]},"seconds ago":{v:["soicind ó shin"]}}},{l:"gl",t:{"a few seconds ago":{v:["hai uns segundos"]},"sec. ago":{v:["segs. atrás"]},"seconds ago":{v:["segundos atrás"]}}},{l:"he",t:{"a few seconds ago":{v:["לפני מספר שניות"]},"sec. ago":{v:["לפני מספר שניות"]},"seconds ago":{v:["לפני מס׳ שניות"]}}},{l:"hr",t:{"a few seconds ago":{v:["prije nekoliko sekundi"]},"sec. ago":{v:["prije nek. sek."]},"seconds ago":{v:["prije nek. sek."]}}},{l:"hu",t:{"a few seconds ago":{v:["néhány másodperce"]},"sec. ago":{v:["másodperce"]},"seconds ago":{v:["másodperce"]}}},{l:"id",t:{"a few seconds ago":{v:["beberapa detik yang lalu"]},"sec. ago":{v:["dtk. yang lalu"]},"seconds ago":{v:["beberapa detik lalu"]}}},{l:"is",t:{"a few seconds ago":{v:["fyrir örfáum sekúndum síðan"]},"sec. ago":{v:["sek. síðan"]},"seconds ago":{v:["sekúndum síðan"]}}},{l:"it",t:{"a few seconds ago":{v:["pochi secondi fa"]},"sec. ago":{v:["sec. fa"]},"seconds ago":{v:["secondi fa"]}}},{l:"ja",t:{"a few seconds ago":{v:["数秒前"]},"sec. ago":{v:["秒前"]},"seconds ago":{v:["数秒前"]}}},{l:"ja-JP",t:{"a few seconds ago":{v:["数秒前"]},"sec. ago":{v:["秒前"]},"seconds ago":{v:["数秒前"]}}},{l:"ko",t:{"a few seconds ago":{v:["방금 전"]},"sec. ago":{v:["몇 초 전"]},"seconds ago":{v:["초 전"]}}},{l:"lo",t:{"a few seconds ago":{v:["ສອງສາມວິນາທີກ່ອນ"]},"sec. ago":{v:["ວິ. ກ່ອນ"]},"seconds ago":{v:["ວິນາທີກ່ອນ"]}}},{l:"lt-LT",t:{"a few seconds ago":{v:["prieš keletą sekundžių"]},"sec. ago":{v:["prieš sek."]},"seconds ago":{v:["prieš sekundes"]}}},{l:"lv",t:{}},{l:"mk",t:{"a few seconds ago":{v:["пред неколку секунди"]},"sec. ago":{v:["секунда"]},"seconds ago":{v:["секунди"]}}},{l:"mn",t:{"a few seconds ago":{v:["хэдхэн секундын өмнө"]},"sec. ago":{v:["сек. өмнө"]},"seconds ago":{v:["секундын өмнө"]}}},{l:"my",t:{}},{l:"nb",t:{"a few seconds ago":{v:["noen få sekunder siden"]},"sec. ago":{v:["sek. siden"]},"seconds ago":{v:["sekunder siden"]}}},{l:"nl",t:{"a few seconds ago":{v:["enkele seconden geleden"]},"sec. ago":{v:["sec. geleden"]},"seconds ago":{v:["seconden geleden"]}}},{l:"oc",t:{}},{l:"pl",t:{"a few seconds ago":{v:["kilka sekund temu"]},"sec. ago":{v:["sek. temu"]},"seconds ago":{v:["sekund temu"]}}},{l:"pt-BR",t:{"a few seconds ago":{v:["há alguns segundos"]},"sec. ago":{v:["seg. atrás"]},"seconds ago":{v:["segundos atrás"]}}},{l:"pt-PT",t:{"a few seconds ago":{v:["há alguns segundos"]},"sec. ago":{v:["seg. atrás"]},"seconds ago":{v:["segundos atrás"]}}},{l:"ro",t:{"a few seconds ago":{v:["acum câteva secunde"]},"sec. ago":{v:["sec. în urmă"]},"seconds ago":{v:["secunde în urmă"]}}},{l:"ru",t:{"a few seconds ago":{v:["несколько секунд назад"]},"sec. ago":{v:["сек. назад"]},"seconds ago":{v:["секунд назад"]}}},{l:"sk",t:{"a few seconds ago":{v:["pred chvíľou"]},"sec. ago":{v:["pred pár sekundami"]},"seconds ago":{v:["pred sekundami"]}}},{l:"sl",t:{}},{l:"sr",t:{"a few seconds ago":{v:["пре неколико секунди"]},"sec. ago":{v:["сек. раније"]},"seconds ago":{v:["секунди раније"]}}},{l:"sv",t:{"a few seconds ago":{v:["några sekunder sedan"]},"sec. ago":{v:["sek. sedan"]},"seconds ago":{v:["sekunder sedan"]}}},{l:"tr",t:{"a few seconds ago":{v:["birkaç saniye önce"]},"sec. ago":{v:["sn. önce"]},"seconds ago":{v:["saniye önce"]}}},{l:"uk",t:{"a few seconds ago":{v:["декілька секунд тому"]},"sec. ago":{v:["с тому"]},"seconds ago":{v:["с тому"]}}},{l:"uz",t:{"a few seconds ago":{v:["bir necha soniya oldin"]},"sec. ago":{v:["sek. oldin"]},"seconds ago":{v:["soniyalar oldin"]}}},{l:"zh-CN",t:{"a few seconds ago":{v:["几秒前"]},"sec. ago":{v:["几秒前"]},"seconds ago":{v:["几秒前"]}}},{l:"zh-HK",t:{"a few seconds ago":{v:["幾秒前"]},"sec. ago":{v:["秒前"]},"seconds ago":{v:["秒前"]}}},{l:"zh-TW",t:{"a few seconds ago":{v:["幾秒前"]},"sec. ago":{v:["秒前"]},"seconds ago":{v:["秒前"]}}}],qy=[{l:"ar",t:{Acapulco:{v:["بازلائي مطفي"]},"Blue Violet":{v:["بنفسجي مشعشع"]},"Boston Blue":{v:["سماوي مطفي"]},Deluge:{v:["بنفسجي مطفي"]},Feldspar:{v:["وردي صخري"]},Gold:{v:["ذهبي"]},Mariner:{v:["أزرق بحري"]},"Nextcloud blue":{v:["أزرق نكست كلاود"]},Olivine:{v:["زيتي"]},Purple:{v:["بنفسجي"]},"Rosy brown":{v:["بُنِّي زهري"]},Whiskey:{v:["نبيذي"]}}},{l:"ast",t:{Acapulco:{v:["Acapulcu"]},"Blue Violet":{v:["Viola azulao"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Oru"]},Mariner:{v:["Marineru"]},"Nextcloud blue":{v:["Nextcloud azul"]},Olivine:{v:["Olivina"]},Purple:{v:["Moráu"]},"Rosy brown":{v:["Marrón arrosao"]},Whiskey:{v:["Whiskey"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{Acapulco:{v:["Akapulko"]},Black:{v:["Černá"]},"Blue Violet":{v:["Modrofialová"]},"Boston Blue":{v:["Bostonská modrá"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Živicová"]},Gold:{v:["Zlatá"]},Mariner:{v:["Námořnická"]},"Nextcloud blue":{v:["Nextcloud modrá"]},Olivine:{v:["Olivínová"]},Purple:{v:["Fialová"]},"Rosy brown":{v:["Růžovohnědá"]},Whiskey:{v:["Whisky"]},White:{v:["Bílá"]}}},{l:"cs-CZ",t:{Acapulco:{v:["Akapulko"]},"Blue Violet":{v:["Modrofialová"]},"Boston Blue":{v:["Bostonská modrá"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Živicová"]},Gold:{v:["Zlatá"]},Mariner:{v:["Námořnická"]},"Nextcloud blue":{v:["Nextcloud modrá"]},Olivine:{v:["Olivínová"]},Purple:{v:["Fialová"]},"Rosy brown":{v:["Růžovohnědá"]},Whiskey:{v:["Whisky"]}}},{l:"da",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Sort"]},"Blue Violet":{v:["Blue Violet"]},"Boston Blue":{v:["Boston Blue"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Guld"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Nextcloud blue"]},Olivine:{v:["Olivine"]},Purple:{v:["Lilla"]},"Rosy brown":{v:["Rosy brown"]},Whiskey:{v:["Whiskey"]},White:{v:["Hvid"]}}},{l:"de",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Schwarz"]},"Blue Violet":{v:["Blau Violett"]},"Boston Blue":{v:["Boston-Blau"]},Deluge:{v:["Sintflut"]},Feldspar:{v:["Feldspat"]},Gold:{v:["Gold"]},Mariner:{v:["Seemann"]},"Nextcloud blue":{v:["Nextcloud Blau"]},Olivine:{v:["Olivin"]},Purple:{v:["Lila"]},"Rosy brown":{v:["Rosiges Braun"]},Whiskey:{v:["Whiskey"]},White:{v:["Weiß"]}}},{l:"de-DE",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Schwarz"]},"Blue Violet":{v:["Blau Violett"]},"Boston Blue":{v:["Boston-Blau"]},Deluge:{v:["Sintflut"]},Feldspar:{v:["Feldspat"]},Gold:{v:["Gold"]},Mariner:{v:["Seemann"]},"Nextcloud blue":{v:["Nextcloud Blau"]},Olivine:{v:["Olivin"]},Purple:{v:["Lila"]},"Rosy brown":{v:["Rosiges Braun"]},Whiskey:{v:["Whiskey"]},White:{v:["Weiß"]}}},{l:"el",t:{Acapulco:{v:["Ακαπούλκο"]},Black:{v:["Μαύρο"]},"Blue Violet":{v:["Μπλε Βιολέτ"]},"Boston Blue":{v:["Μπλε Βοστώνης"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Χρυσό"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Μπλε Nextcloud"]},Olivine:{v:["Olivine"]},Purple:{v:["Μωβ"]},"Rosy brown":{v:["Ροζ καφέ"]},Whiskey:{v:["Ουίσκι"]},White:{v:["Λευκό"]}}},{l:"en-GB",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Black"]},"Blue Violet":{v:["Blue Violet"]},"Boston Blue":{v:["Boston Blue"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Gold"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Nextcloud blue"]},Olivine:{v:["Olivine"]},Purple:{v:["Purple"]},"Rosy brown":{v:["Rosy brown"]},Whiskey:{v:["Whiskey"]},White:{v:["White"]}}},{l:"eo",t:{}},{l:"es",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Violeta Azul"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Diluvio"]},Feldspar:{v:["Feldespato"]},Gold:{v:["Oro"]},Mariner:{v:["Marinero"]},"Nextcloud blue":{v:["Azul Nextcloud"]},Olivine:{v:["Olivino"]},Purple:{v:["Púrpura"]},"Rosy brown":{v:["Marrón rosáceo"]},Whiskey:{v:["Whiskey"]}}},{l:"es-AR",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Violeta Azul"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Diluvio"]},Feldspar:{v:["Feldespato"]},Gold:{v:["Oro"]},Mariner:{v:["Marinero"]},"Nextcloud blue":{v:["Azul Nextcloud"]},Olivine:{v:["Olivino"]},Purple:{v:["Púrpura"]},"Rosy brown":{v:["Marrón rosáceo"]},Whiskey:{v:["Whiskey"]}}},{l:"es-EC",t:{}},{l:"es-MX",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Violeta Azul"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Diluvio"]},Feldspar:{v:["Feldespato"]},Gold:{v:["Oro"]},Mariner:{v:["Marinero"]},"Nextcloud blue":{v:["Azul Nextcloud"]},Olivine:{v:["Olivino"]},Purple:{v:["Púrpura"]},"Rosy brown":{v:["Marrón rosáceo"]},Whiskey:{v:["Whiskey"]}}},{l:"et-EE",t:{Acapulco:{v:["Acapulco meresinine"]},Black:{v:["Must"]},"Blue Violet":{v:["Sinakasvioletne"]},"Boston Blue":{v:["Bostoni rohekassinine"]},Deluge:{v:["Tulvavee lilla"]},Feldspar:{v:["Põlevkivipruun"]},Gold:{v:["Kuldne"]},Mariner:{v:["Meresinine"]},"Nextcloud blue":{v:["Nextcloudi sinine"]},Olivine:{v:["Oliiviroheline"]},Purple:{v:["Purpurpunane"]},"Rosy brown":{v:["Roosikarva pruun"]},Whiskey:{v:["Viskikarva kollakaspruun"]},White:{v:["Valge"]}}},{l:"eu",t:{}},{l:"fa",t:{Acapulco:{v:["آکاپولکو"]},"Blue Violet":{v:["بنفش آبی"]},"Boston Blue":{v:["آبی بوستونی"]},Deluge:{v:["سیل"]},Feldspar:{v:["فلدسپات"]},Gold:{v:["طلا"]},Mariner:{v:["مارینر"]},"Nextcloud blue":{v:["نکس کلود آبی"]},Olivine:{v:["الیوین"]},Purple:{v:["بنفش"]},"Rosy brown":{v:["قهوه‌ای رز"]},Whiskey:{v:["ویسکی"]}}},{l:"fi",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Sinivioletti"]},"Boston Blue":{v:["Bostoninsininen"]},Deluge:{v:["Tulva"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Kulta"]},Mariner:{v:["Merenkulkija"]},"Nextcloud blue":{v:["Nextcloudin sininen"]},Olivine:{v:["Oliviini"]},Purple:{v:["Purppura"]},"Rosy brown":{v:["Ruusunruskea"]},Whiskey:{v:["Viski"]}}},{l:"fr",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Noir"]},"Blue Violet":{v:["Bleu violet"]},"Boston Blue":{v:["Bleu de Boston"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Doré"]},Mariner:{v:["Marin"]},"Nextcloud blue":{v:["Bleu Nextcloud"]},Olivine:{v:["Olivine"]},Purple:{v:["Violet"]},"Rosy brown":{v:["Brun rosé"]},Whiskey:{v:["Whiskey"]},White:{v:["Blanc"]}}},{l:"ga",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Dubh"]},"Blue Violet":{v:["Gorm Violet"]},"Boston Blue":{v:["Bostún Gorm"]},Deluge:{v:["Díle"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Óir"]},Mariner:{v:["Mairnéalach"]},"Nextcloud blue":{v:["Nextcloud gorm"]},Olivine:{v:["Olaivín"]},Purple:{v:["Corcra"]},"Rosy brown":{v:["Rosach donn"]},Whiskey:{v:["Fuisce"]},White:{v:["Bán"]}}},{l:"gl",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Negro"]},"Blue Violet":{v:["Azul violeta"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Dioivo"]},Feldspar:{v:["Feldespato"]},Gold:{v:["Ouro"]},Mariner:{v:["Marino"]},"Nextcloud blue":{v:["Azul Nextcloud"]},Olivine:{v:["Olivina"]},Purple:{v:["Púrpura"]},"Rosy brown":{v:["Pardo rosado"]},Whiskey:{v:["Whisky"]},White:{v:["Branco"]}}},{l:"he",t:{}},{l:"hr",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Crna"]},"Blue Violet":{v:["Plavoljubičasta"]},"Boston Blue":{v:["Bostonsko plava"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Zlatna"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Nextcloud plava"]},Olivine:{v:["Olivine"]},Purple:{v:["Ljubičasta"]},"Rosy brown":{v:["Ružičastosmeđa"]},Whiskey:{v:["Whiskey"]},White:{v:["Bijela"]}}},{l:"hu",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Fekete"]},"Blue Violet":{v:["Kék ibolya"]},"Boston Blue":{v:["Boston kék"]},Deluge:{v:["Özönvíz"]},Feldspar:{v:["Földpát"]},Gold:{v:["Arany"]},Mariner:{v:["Tengerész"]},"Nextcloud blue":{v:["Nextcloud kék"]},Olivine:{v:["Olivin"]},Purple:{v:["Lila"]},"Rosy brown":{v:["Rózsás barna"]},Whiskey:{v:["Whiskey"]},White:{v:["Fehér"]}}},{l:"id",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Hitam"]},"Blue Violet":{v:["Ungu kebiruan"]},"Boston Blue":{v:["Biru Boston"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Emas"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Biru Nextcloud"]},Olivine:{v:["Olivine"]},Purple:{v:["Ungu"]},"Rosy brown":{v:["Cokelat kemerahan"]},Whiskey:{v:["Whiskey"]},White:{v:["Putih"]}}},{l:"is",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Bláklukka"]},"Boston Blue":{v:["Bostonblátt"]},Deluge:{v:["Fjólublátt"]},Feldspar:{v:["Feldspat"]},Gold:{v:["Gull"]},Mariner:{v:["Sjóarablátt"]},"Nextcloud blue":{v:["Nextcloud blátt"]},Olivine:{v:["Ólivín"]},Purple:{v:["Purpurablátt"]},"Rosy brown":{v:["Rósabrúnt"]},Whiskey:{v:["Viský"]}}},{l:"it",t:{Gold:{v:["Oro"]},"Nextcloud blue":{v:["Nextcloud blue"]},Purple:{v:["Viola"]}}},{l:"ja",t:{Acapulco:{v:["アカプルコ"]},Black:{v:["黒"]},"Blue Violet":{v:["ブルーバイオレット"]},"Boston Blue":{v:["ボストンブルー"]},Deluge:{v:["豪雨"]},Feldspar:{v:["長石"]},Gold:{v:["黄金"]},Mariner:{v:["船乗り"]},"Nextcloud blue":{v:["ネクストクラウド・ブルー"]},Olivine:{v:["カンラン石"]},Purple:{v:["紫色"]},"Rosy brown":{v:["バラ色"]},Whiskey:{v:["ウイスキー"]},White:{v:["白"]}}},{l:"ja-JP",t:{Acapulco:{v:["アカプルコ"]},"Blue Violet":{v:["ブルーバイオレット"]},"Boston Blue":{v:["ボストンブルー"]},Deluge:{v:["豪雨"]},Feldspar:{v:["長石"]},Gold:{v:["黄金"]},Mariner:{v:["船乗り"]},"Nextcloud blue":{v:["ネクストクラウド・ブルー"]},Olivine:{v:["カンラン石"]},Purple:{v:["紫色"]},"Rosy brown":{v:["バラ色"]},Whiskey:{v:["ウイスキー"]}}},{l:"ko",t:{Acapulco:{v:["아카풀코"]},Black:{v:["검정"]},"Blue Violet":{v:["푸른 보라"]},"Boston Blue":{v:["보스턴 블루"]},Deluge:{v:["폭우"]},Feldspar:{v:["장석"]},Gold:{v:["금"]},Mariner:{v:["뱃사람"]},"Nextcloud blue":{v:["Nextcloud 파랑"]},Olivine:{v:["감람석"]},Purple:{v:["보라"]},"Rosy brown":{v:["로지 브라운"]},Whiskey:{v:["위스키"]},White:{v:["하양"]}}},{l:"lo",t:{Acapulco:{v:["Acapulco"]},Black:{v:["ສີດຳ"]},"Blue Violet":{v:["Blue Violet"]},"Boston Blue":{v:["Boston Blue"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["ສີຄຳ"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["ສີຟ້າ Nextcloud"]},Olivine:{v:["Olivine"]},Purple:{v:["ສີມ່ວງ"]},"Rosy brown":{v:["Rosy brown"]},Whiskey:{v:["Whiskey"]},White:{v:["ສີຂາວ"]}}},{l:"lt-LT",t:{Acapulco:{v:['"Acapulco"']},Black:{v:["Juoda"]},"Blue Violet":{v:["Mėlyna-violetinė"]},"Boston Blue":{v:['"Boston Blue"']},Deluge:{v:['"Deluge"']},Feldspar:{v:['"Feldspar"']},Gold:{v:["Auksas"]},Mariner:{v:['"Mariner"']},"Nextcloud blue":{v:['"Nextcloud" mėlyna']},Olivine:{v:['"Olivine"']},Purple:{v:["Violetinė"]},"Rosy brown":{v:["Rožiniai rudas"]},Whiskey:{v:['"Whiskey"']},White:{v:["Balta"]}}},{l:"lv",t:{}},{l:"mk",t:{Acapulco:{v:["Акапулко"]},Black:{v:["Црно"]},"Blue Violet":{v:["Сино Виолетова"]},"Boston Blue":{v:["Бостон Сина"]},Deluge:{v:["Делуџ"]},Feldspar:{v:["Фелдспар"]},Gold:{v:["Златна"]},Mariner:{v:["Маринер"]},"Nextcloud blue":{v:["Nextcloud сина"]},Olivine:{v:["Оливин"]},Purple:{v:["Виолетова"]},"Rosy brown":{v:["Розево-кафеава"]},Whiskey:{v:["Виски"]},White:{v:["Бела"]}}},{l:"mn",t:{Acapulco:{v:["Акапулько"]},Black:{v:["Хар"]},"Blue Violet":{v:["Цэнхэр ягаан"]},"Boston Blue":{v:["Бостон цэнхэр"]},Deluge:{v:["Делюж"]},Feldspar:{v:["Фельдспар"]},Gold:{v:["Алтан"]},Mariner:{v:["Маринер"]},"Nextcloud blue":{v:["Nextcloud цэнхэр"]},Olivine:{v:["Оливин"]},Purple:{v:["Нил ягаан"]},"Rosy brown":{v:["Ягаан бор"]},Whiskey:{v:["Виски"]},White:{v:["Цагаан"]}}},{l:"my",t:{}},{l:"nb",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Blå fiolett"]},"Boston Blue":{v:["Boston blå"]},Deluge:{v:["Syndflod"]},Feldspar:{v:["Feltspat"]},Gold:{v:["Gull"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Nextcloud-blå"]},Olivine:{v:["Olivin"]},Purple:{v:["Lilla"]},"Rosy brown":{v:["Rosenrød brun"]},Whiskey:{v:["Whiskey"]}}},{l:"nl",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Zwart"]},"Blue Violet":{v:["Blauw Paars"]},"Boston Blue":{v:["Boston Blauw"]},Deluge:{v:["Overlopen"]},Feldspar:{v:["Veldspaat"]},Gold:{v:["Goud"]},Mariner:{v:["Marineblauw"]},"Nextcloud blue":{v:["Nextcloud blauw"]},Olivine:{v:["Olivijn"]},Purple:{v:["Paars"]},"Rosy brown":{v:["Rozig bruin"]},Whiskey:{v:["Whiskey"]},White:{v:["Wit"]}}},{l:"oc",t:{}},{l:"pl",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Niebieski fiolet"]},"Boston Blue":{v:["Błękit Bostonu"]},Deluge:{v:["Potop"]},Feldspar:{v:["Skaleń"]},Gold:{v:["Złote"]},Mariner:{v:["Marynarz"]},"Nextcloud blue":{v:["Niebieskie Nextcloud"]},Olivine:{v:["Oliwin"]},Purple:{v:["Fioletowy"]},"Rosy brown":{v:["Różowy brąz"]},Whiskey:{v:["Whisky"]}}},{l:"pt-BR",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Preto"]},"Blue Violet":{v:["Violeta Azul"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspato"]},Gold:{v:["Ouro"]},Mariner:{v:["Marinheiro"]},"Nextcloud blue":{v:["Azul Nextcloud"]},Olivine:{v:["Olivina"]},Purple:{v:["Roxo"]},"Rosy brown":{v:["Castanho rosado"]},Whiskey:{v:["Uísque"]},White:{v:["Branco"]}}},{l:"pt-PT",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Azul violeta"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Ouro"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Nextcloud azul"]},Olivine:{v:["Olivine"]},Purple:{v:["Púrpura"]},"Rosy brown":{v:["Castanho rosado"]},Whiskey:{v:["Whiskey"]}}},{l:"ro",t:{Gold:{v:["Aur"]},"Nextcloud blue":{v:["Nextcloud albastru"]},Purple:{v:["Purpuriu"]}}},{l:"ru",t:{Acapulco:{v:["Акапулько"]},Black:{v:["Черный"]},"Blue Violet":{v:["Синий фиолет"]},"Boston Blue":{v:["Синий Бостон"]},Deluge:{v:["Перламутрово-фиолетовый"]},Feldspar:{v:["Античная латунь"]},Gold:{v:["Золотой"]},Mariner:{v:["Морской"]},"Nextcloud blue":{v:["Nextcloud голубой"]},Olivine:{v:[" Оливковый"]},Purple:{v:["Фиолетовый"]},"Rosy brown":{v:["Розово-коричневый"]},Whiskey:{v:["Виски"]},White:{v:["Белый"]}}},{l:"sk",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Modro fialová"]},"Boston Blue":{v:["Bostonská modrá"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Živec"]},Gold:{v:["Zlatá"]},Mariner:{v:["Námorník"]},"Nextcloud blue":{v:["Nextcloud modrá"]},Olivine:{v:["Olivová"]},Purple:{v:["Fialová"]},"Rosy brown":{v:["Ružovo hnedá"]},Whiskey:{v:["Whisky"]}}},{l:"sl",t:{}},{l:"sr",t:{Acapulco:{v:["Акапулко"]},Black:{v:["Црно"]},"Blue Violet":{v:["Плаво љубичаста"]},"Boston Blue":{v:["Бостон плава"]},Deluge:{v:["Поплава"]},Feldspar:{v:["Фелдспар"]},Gold:{v:["Злато"]},Mariner:{v:["Морнар"]},"Nextcloud blue":{v:["Nextcloud плава"]},Olivine:{v:["Маслинаста"]},Purple:{v:["Пурпурна"]},"Rosy brown":{v:["Роси браон"]},Whiskey:{v:["Виски"]},White:{v:["Бело"]}}},{l:"sv",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Svart"]},"Blue Violet":{v:["Blåviolett"]},"Boston Blue":{v:["Bostonblå"]},Deluge:{v:["Skyfallsblå"]},Feldspar:{v:["Fältspat"]},Gold:{v:["Guld"]},Mariner:{v:["Marinblå"]},"Nextcloud blue":{v:["Nextcloud-blå"]},Olivine:{v:["Olivin"]},Purple:{v:["Lila"]},"Rosy brown":{v:["Rosabrun"]},Whiskey:{v:["Whisky"]},White:{v:["Vit"]}}},{l:"tr",t:{Acapulco:{v:["Akapulko"]},Black:{v:["Siyah"]},"Blue Violet":{v:["Mavi mor"]},"Boston Blue":{v:["Boston mavisi"]},Deluge:{v:["Sel"]},Feldspar:{v:["Feldispat"]},Gold:{v:["Altın"]},Mariner:{v:["Denizci"]},"Nextcloud blue":{v:["Nextcloud mavi"]},Olivine:{v:["Zeytinlik"]},Purple:{v:["Mor"]},"Rosy brown":{v:["Kırmızımsı kahverengi"]},Whiskey:{v:["Viski"]},White:{v:["Beyaz"]}}},{l:"uk",t:{Acapulco:{v:["Акапулько"]},"Blue Violet":{v:["Блакитна фіалка"]},"Boston Blue":{v:["Бостонський синій"]},Deluge:{v:["Злива"]},Feldspar:{v:["Польові шпати"]},Gold:{v:["Золотий"]},Mariner:{v:["Морський"]},"Nextcloud blue":{v:["Блакитний Nextcloud"]},Olivine:{v:["Олива"]},Purple:{v:["Фіолетовий"]},"Rosy brown":{v:["Темно-рожевий"]},Whiskey:{v:["Кола"]}}},{l:"uz",t:{Acapulco:{v:["Akapulko"]},Black:{v:["Qora"]},"Blue Violet":{v:["Moviy binafsha"]},"Boston Blue":{v:["Boston ko'k"]},Deluge:{v:["To'fon"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Oltin"]},Mariner:{v:["Dengizchi"]},"Nextcloud blue":{v:["Ko'k Nextcloud "]},Olivine:{v:["Olivine"]},Purple:{v:["Binafsha"]},"Rosy brown":{v:["Qizil jigarrang"]},Whiskey:{v:["Whiskey"]},White:{v:["Oq"]}}},{l:"zh-CN",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["瓦罗兰特蓝"]},"Boston Blue":{v:["波士顿蓝"]},Deluge:{v:["洪水色"]},Feldspar:{v:["长石"]},Gold:{v:["金色"]},Mariner:{v:["水手"]},"Nextcloud blue":{v:["Nextcloud 蓝"]},Olivine:{v:["橄榄石色"]},Purple:{v:["紫色"]},"Rosy brown":{v:["玫瑰棕色"]},Whiskey:{v:["威士忌"]}}},{l:"zh-HK",t:{Acapulco:{v:["阿卡普爾科"]},Black:{v:["黑色"]},"Blue Violet":{v:["藍紫色"]},"Boston Blue":{v:["波士頓藍"]},Deluge:{v:["大洪水"]},Feldspar:{v:["長石"]},Gold:{v:["Gold"]},Mariner:{v:["海軍藍"]},"Nextcloud blue":{v:["Nextcloud 藍色"]},Olivine:{v:["橄欖石色"]},Purple:{v:["紫色"]},"Rosy brown":{v:["玫瑰棕色"]},Whiskey:{v:["威士忌"]},White:{v:["白色"]}}},{l:"zh-TW",t:{Acapulco:{v:["Acapulco"]},Black:{v:["黑色"]},"Blue Violet":{v:["藍紫色"]},"Boston Blue":{v:["波士頓藍"]},Deluge:{v:["Deluge"]},Feldspar:{v:["長石"]},Gold:{v:["金色"]},Mariner:{v:["海軍藍"]},"Nextcloud blue":{v:["Nextcloud 藍色"]},Olivine:{v:["橄欖石色"]},Purple:{v:["紫色"]},"Rosy brown":{v:["玫瑰棕色"]},Whiskey:{v:["威士忌"]},White:{v:["白色"]}}}],Yh=[{l:"ar",t:{Actions:{v:["إجراءات"]}}},{l:"ast",t:{Actions:{v:["Aiciones"]}}},{l:"br",t:{Actions:{v:["Oberioù"]}}},{l:"ca",t:{Actions:{v:["Accions"]}}},{l:"cs",t:{Actions:{v:["Akce"]}}},{l:"cs-CZ",t:{Actions:{v:["Akce"]}}},{l:"da",t:{Actions:{v:["Handlinger"]}}},{l:"de",t:{Actions:{v:["Aktionen"]}}},{l:"de-DE",t:{Actions:{v:["Aktionen"]}}},{l:"el",t:{Actions:{v:["Ενέργειες"]}}},{l:"en-GB",t:{Actions:{v:["Actions"]}}},{l:"eo",t:{Actions:{v:["Agoj"]}}},{l:"es",t:{Actions:{v:["Acciones"]}}},{l:"es-AR",t:{Actions:{v:["Acciones"]}}},{l:"es-EC",t:{Actions:{v:["Acciones"]}}},{l:"es-MX",t:{Actions:{v:["Acciones"]}}},{l:"et-EE",t:{Actions:{v:["Tegevus"]}}},{l:"eu",t:{Actions:{v:["Ekintzak"]}}},{l:"fa",t:{Actions:{v:["کنش‌ها"]}}},{l:"fi",t:{Actions:{v:["Toiminnot"]}}},{l:"fr",t:{Actions:{v:["Actions"]}}},{l:"ga",t:{Actions:{v:["Gníomhartha"]}}},{l:"gl",t:{Actions:{v:["Accións"]}}},{l:"he",t:{Actions:{v:["פעולות"]}}},{l:"hr",t:{Actions:{v:["Radnje"]}}},{l:"hu",t:{Actions:{v:["Műveletek"]}}},{l:"id",t:{Actions:{v:["Tindakan"]}}},{l:"is",t:{Actions:{v:["Aðgerðir"]}}},{l:"it",t:{Actions:{v:["Azioni"]}}},{l:"ja",t:{Actions:{v:["操作"]}}},{l:"ja-JP",t:{Actions:{v:["操作"]}}},{l:"ko",t:{Actions:{v:["동작"]}}},{l:"lo",t:{Actions:{v:["ການກະທຳ"]}}},{l:"lt-LT",t:{Actions:{v:["Veiksmai"]}}},{l:"lv",t:{}},{l:"mk",t:{Actions:{v:["Акции"]}}},{l:"mn",t:{Actions:{v:["Үйлдлүүд"]}}},{l:"my",t:{Actions:{v:["လုပ်ဆောင်ချက်များ"]}}},{l:"nb",t:{Actions:{v:["Handlinger"]}}},{l:"nl",t:{Actions:{v:["Acties"]}}},{l:"oc",t:{Actions:{v:["Accions"]}}},{l:"pl",t:{Actions:{v:["Działania"]}}},{l:"pt-BR",t:{Actions:{v:["Ações"]}}},{l:"pt-PT",t:{Actions:{v:["Ações"]}}},{l:"ro",t:{Actions:{v:["Acțiuni"]}}},{l:"ru",t:{Actions:{v:["Действия "]}}},{l:"sk",t:{Actions:{v:["Akcie"]}}},{l:"sl",t:{Actions:{v:["Dejanja"]}}},{l:"sr",t:{Actions:{v:["Радње"]}}},{l:"sv",t:{Actions:{v:["Åtgärder"]}}},{l:"tr",t:{Actions:{v:["İşlemler"]}}},{l:"uk",t:{Actions:{v:["Дії"]}}},{l:"uz",t:{Actions:{v:["Harakatlar"]}}},{l:"zh-CN",t:{Actions:{v:["行为"]}}},{l:"zh-HK",t:{Actions:{v:["動作"]}}},{l:"zh-TW",t:{Actions:{v:["動作"]}}}],Ky=[{l:"ar",t:{"Avatar of {displayName}":{v:["صورة الملف الشخصي الرمزية لــ {displayName} "]},"Avatar of {displayName}, {status}":{v:["صورة الملف الشخصي الرمزية لــ {displayName}، {status}"]}}},{l:"ast",t:{"Avatar of {displayName}":{v:["Avatar de: {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de: {displayName}, {status}"]}}},{l:"br",t:{}},{l:"ca",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"cs",t:{"Avatar of {displayName}":{v:["Zástupný obrázek uživatele {displayName}"]},"Avatar of {displayName}, {status}":{v:["Zástupný obrázek uživatele {displayName}, {status}"]}}},{l:"cs-CZ",t:{"Avatar of {displayName}":{v:["Zástupný obrázek uživatele {displayName}"]},"Avatar of {displayName}, {status}":{v:["Zástupný obrázek uživatele {displayName}, {status}"]}}},{l:"da",t:{"Avatar of {displayName}":{v:["Avatar af {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar af {displayName}, {status}"]}}},{l:"de",t:{"Avatar of {displayName}":{v:["Avatar von {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar von {displayName}, {status}"]}}},{l:"de-DE",t:{"Avatar of {displayName}":{v:["Avatar von {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar von {displayName}, {status}"]}}},{l:"el",t:{"Avatar of {displayName}":{v:["Άβαταρ του {displayName}"]},"Avatar of {displayName}, {status}":{v:["Άβαταρ του {displayName}, {status}"]}}},{l:"en-GB",t:{"Avatar of {displayName}":{v:["Avatar of {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar of {displayName}, {status}"]}}},{l:"eo",t:{}},{l:"es",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"es-AR",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"es-EC",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"es-MX",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"et-EE",t:{"Avatar of {displayName}":{v:["Tunnuspilt: {displayName}"]},"Avatar of {displayName}, {status}":{v:["Tunnuspilt: {displayName}, {status}"]}}},{l:"eu",t:{"Avatar of {displayName}":{v:["{displayName}-(e)n irudia"]},"Avatar of {displayName}, {status}":{v:["{displayName} -(e)n irudia, {status}"]}}},{l:"fa",t:{"Avatar of {displayName}":{v:["آواتار {displayName}"]},"Avatar of {displayName}, {status}":{v:["آواتار {displayName} ، {status}"]}}},{l:"fi",t:{"Avatar of {displayName}":{v:["{displayName}n avatar"]},"Avatar of {displayName}, {status}":{v:["{displayName}n avatar, {status}"]}}},{l:"fr",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"ga",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"gl",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"he",t:{"Avatar of {displayName}":{v:["תמונה ייצוגית של {displayName}"]},"Avatar of {displayName}, {status}":{v:["תמונה ייצוגית של {displayName}, {status}"]}}},{l:"hr",t:{"Avatar of {displayName}":{v:["Avatar od {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar od {displayName}, {status}"]}}},{l:"hu",t:{"Avatar of {displayName}":{v:["{displayName} profilképe"]},"Avatar of {displayName}, {status}":{v:["{displayName} profilképe, {status}"]}}},{l:"id",t:{"Avatar of {displayName}":{v:["Avatar {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar {displayName}, {status}"]}}},{l:"is",t:{"Avatar of {displayName}":{v:["Auðkennismynd fyrir {displayName}"]},"Avatar of {displayName}, {status}":{v:["Auðkennismynd fyrir {displayName}, {status}"]}}},{l:"it",t:{"Avatar of {displayName}":{v:["Avatar di {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar di {displayName}, {status}"]}}},{l:"ja",t:{"Avatar of {displayName}":{v:["{displayName} のアバター"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status} のアバター"]}}},{l:"ja-JP",t:{"Avatar of {displayName}":{v:["{displayName} のアバター"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status} のアバター"]}}},{l:"ko",t:{"Avatar of {displayName}":{v:["{displayName}님의 아바타"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status}님의 아바타"]}}},{l:"lo",t:{"Avatar of {displayName}":{v:["ຮູບແທນຕົວຂອງ {displayName}"]},"Avatar of {displayName}, {status}":{v:["ຮູບແທນຕົວຂອງ {displayName}, {status}"]}}},{l:"lt-LT",t:{"Avatar of {displayName}":{v:["{displayName} avataras"]},"Avatar of {displayName}, {status}":{v:["{displayName} avataras, {status}"]}}},{l:"lv",t:{}},{l:"mk",t:{"Avatar of {displayName}":{v:["Аватар на {displayName}"]},"Avatar of {displayName}, {status}":{v:["Аватар на {displayName}, {status}"]}}},{l:"mn",t:{"Avatar of {displayName}":{v:["{displayName}-ийн аватар"]},"Avatar of {displayName}, {status}":{v:["{displayName}-ийн аватар, {status}"]}}},{l:"my",t:{"Avatar of {displayName}":{v:["{displayName} ၏ ကိုယ်ပွား"]}}},{l:"nb",t:{"Avatar of {displayName}":{v:["Avataren til {displayName}"]},"Avatar of {displayName}, {status}":{v:["{displayName}'s avatar, {status}"]}}},{l:"nl",t:{"Avatar of {displayName}":{v:["Avatar van {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar van {displayName}, {status}"]}}},{l:"oc",t:{}},{l:"pl",t:{"Avatar of {displayName}":{v:["Awatar {displayName}"]},"Avatar of {displayName}, {status}":{v:["Awatar {displayName}, {status}"]}}},{l:"pt-BR",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"pt-PT",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"ro",t:{"Avatar of {displayName}":{v:["Avatarul lui {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatarul lui {displayName}, {status}"]}}},{l:"ru",t:{"Avatar of {displayName}":{v:["Аватар {displayName}"]},"Avatar of {displayName}, {status}":{v:["Фотография {displayName}, {status}"]}}},{l:"sk",t:{"Avatar of {displayName}":{v:["Avatar {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar {displayName}, {status}"]}}},{l:"sl",t:{"Avatar of {displayName}":{v:["Podoba {displayName}"]},"Avatar of {displayName}, {status}":{v:["Prikazna slika {displayName}, {status}"]}}},{l:"sr",t:{"Avatar of {displayName}":{v:["Аватар за {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar za {displayName}, {status}"]}}},{l:"sv",t:{"Avatar of {displayName}":{v:["{displayName}s avatar"]},"Avatar of {displayName}, {status}":{v:["{displayName}s avatar, {status}"]}}},{l:"tr",t:{"Avatar of {displayName}":{v:["{displayName} avatarı"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status} avatarı"]}}},{l:"uk",t:{"Avatar of {displayName}":{v:["Аватар {displayName}"]},"Avatar of {displayName}, {status}":{v:["Аватар {displayName}, {status}"]}}},{l:"uz",t:{"Avatar of {displayName}":{v:[" {displayName}Avatari"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status} Avatari"]}}},{l:"zh-CN",t:{"Avatar of {displayName}":{v:["{displayName}的头像"]},"Avatar of {displayName}, {status}":{v:["{displayName}的头像,{status}"]}}},{l:"zh-HK",t:{"Avatar of {displayName}":{v:["{displayName} 的頭像"]},"Avatar of {displayName}, {status}":{v:["{displayName} 的頭像,{status}"]}}},{l:"zh-TW",t:{"Avatar of {displayName}":{v:["{displayName} 的大頭照"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status} 的大頭照"]}}}],Yy=[{l:"ar",t:{away:{v:["غير موجود"]},busy:{v:["مشغول"]},"do not disturb":{v:["يُرجى عدم الإزعاج"]},invisible:{v:["غير مرئي"]},offline:{v:["غير متصل"]},online:{v:["متصل"]}}},{l:"ast",t:{away:{v:["ausente"]},busy:{v:["ocupáu"]},"do not disturb":{v:["nun molestar"]},invisible:{v:["invisible"]},offline:{v:["desconectáu"]},online:{v:["en llinia"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{away:{v:["pryč"]},busy:{v:["zaneprádněn(a)"]},"do not disturb":{v:["nerušit"]},invisible:{v:["neviditelné"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"cs-CZ",t:{away:{v:["pryč"]},busy:{v:["zaneprádněn(a)"]},"do not disturb":{v:["nerušit"]},invisible:{v:["neviditelné"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"da",t:{away:{v:["væk"]},busy:{v:["optaget"]},"do not disturb":{v:["forstyr ikke"]},invisible:{v:["usynlig"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"de",t:{away:{v:["Abwesend"]},busy:{v:["Beschäftigt"]},"do not disturb":{v:["Bitte nicht stören"]},invisible:{v:["Unsichtbar"]},offline:{v:["Offline"]},online:{v:["Online"]}}},{l:"de-DE",t:{away:{v:["Abwesend"]},busy:{v:["Beschäftigt"]},"do not disturb":{v:["Bitte nicht stören"]},invisible:{v:["Unsichtbar"]},offline:{v:["Offline"]},online:{v:["Online"]}}},{l:"el",t:{away:{v:["μακριά"]},busy:{v:["απασχολημένος"]},"do not disturb":{v:["μην ενοχλείτε"]},invisible:{v:["αόρατο"]},offline:{v:["εκτός σύνδεσης"]},online:{v:["συνδεδεμένος"]}}},{l:"en-GB",t:{away:{v:["away"]},busy:{v:["busy"]},"do not disturb":{v:["do not disturb"]},invisible:{v:["invisible"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"eo",t:{}},{l:"es",t:{away:{v:["ausente"]},busy:{v:["ocupado"]},"do not disturb":{v:["no molestar"]},invisible:{v:["invisible"]},offline:{v:["fuera de línea"]},online:{v:["en línea"]}}},{l:"es-AR",t:{away:{v:["ausente"]},busy:{v:["ocupado"]},"do not disturb":{v:["no molestar"]},invisible:{v:["invisible"]},offline:{v:["desconectado"]},online:{v:["en línea"]}}},{l:"es-EC",t:{}},{l:"es-MX",t:{away:{v:["ausente"]},busy:{v:["ocupado"]},"do not disturb":{v:["no molestar"]},invisible:{v:["invisible"]},offline:{v:["fuera de línea"]},online:{v:["en línea"]}}},{l:"et-EE",t:{away:{v:["eemal"]},busy:{v:["hõivatud"]},"do not disturb":{v:["ära sega"]},invisible:{v:["nähtamatu"]},offline:{v:["pole võrgus"]},online:{v:["võrgus"]}}},{l:"eu",t:{}},{l:"fa",t:{away:{v:["دور از دستگاه"]},busy:{v:["مشغول"]},"do not disturb":{v:["مزاحم نشوید"]},invisible:{v:["مخفی"]},offline:{v:["برون‌خط"]},online:{v:["برخط"]}}},{l:"fi",t:{away:{v:["poissa"]},busy:{v:["varattu"]},"do not disturb":{v:["älä häiritse"]},invisible:{v:["näkymätön"]},offline:{v:["ei linjalla"]},online:{v:["linjalla"]}}},{l:"fr",t:{away:{v:["absent"]},busy:{v:["occupé"]},"do not disturb":{v:["ne pas déranger"]},invisible:{v:["invisible"]},offline:{v:["hors ligne"]},online:{v:["en ligne"]}}},{l:"ga",t:{away:{v:["ar shiúl"]},busy:{v:["gnóthach"]},"do not disturb":{v:["ná cur as"]},invisible:{v:["dofheicthe"]},offline:{v:["as líne"]},online:{v:["ar líne"]}}},{l:"gl",t:{away:{v:["ausente"]},busy:{v:["ocupado"]},"do not disturb":{v:["non molestar"]},invisible:{v:["invisíbel"]},offline:{v:["desconectado"]},online:{v:["conectado"]}}},{l:"he",t:{}},{l:"hr",t:{away:{v:["odsutan"]},busy:{v:["zauzet"]},"do not disturb":{v:["ne smetaj"]},invisible:{v:["nevidljiv"]},offline:{v:["izvan mreže"]},online:{v:["na mreži"]}}},{l:"hu",t:{away:{v:["távol"]},busy:{v:["foglalt"]},"do not disturb":{v:["ne zavarjanak"]},invisible:{v:["láthatatlan"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"id",t:{away:{v:["tidak tersedia"]},busy:{v:["sibuk"]},"do not disturb":{v:["jangan ganggu"]},invisible:{v:["tidak terlihat"]},offline:{v:["luring"]},online:{v:["daring"]}}},{l:"is",t:{away:{v:["í burtu"]},busy:{v:["upptekin/n"]},"do not disturb":{v:["ekki ónáða"]},invisible:{v:["ósýnilegt"]},offline:{v:["ónettengt"]},online:{v:["nettengt"]}}},{l:"it",t:{away:{v:["via"]},"do not disturb":{v:["non disturbare"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"ja",t:{away:{v:["離れる"]},busy:{v:["ビジー"]},"do not disturb":{v:["邪魔をしないでください"]},invisible:{v:["不可視"]},offline:{v:["オフライン"]},online:{v:["オンライン"]}}},{l:"ja-JP",t:{away:{v:["離れる"]},busy:{v:["ビジー"]},"do not disturb":{v:["邪魔をしないでください"]},invisible:{v:["不可視"]},offline:{v:["オフライン"]},online:{v:["オンライン"]}}},{l:"ko",t:{away:{v:["자리 비움"]},busy:{v:["바쁨"]},"do not disturb":{v:["방해 금지"]},invisible:{v:["보이지 않음"]},offline:{v:["오프라인"]},online:{v:["온라인"]}}},{l:"lo",t:{away:{v:["ບໍ່ຢູ່"]},busy:{v:["ບໍ່ວ່າງ"]},"do not disturb":{v:["ຫ້າມລົບກວນ"]},invisible:{v:["ບໍ່ສະແດງ"]},offline:{v:["ອອບໄລນ໌"]},online:{v:["ອອນໄລນ໌"]}}},{l:"lt-LT",t:{away:{v:["pasišalinęs"]},busy:{v:["užsiėmęs"]},"do not disturb":{v:["netrukdyti"]},invisible:{v:["nematomas"]},offline:{v:["neprisijungęs"]},online:{v:["prisijungęs"]}}},{l:"lv",t:{}},{l:"mk",t:{away:{v:["оддалечен"]},busy:{v:["зафатен"]},"do not disturb":{v:["не вознемирувај"]},invisible:{v:["невидливо"]},offline:{v:["офлајн"]},online:{v:["онлајн"]}}},{l:"mn",t:{away:{v:["хол байна"]},busy:{v:["завгүй"]},"do not disturb":{v:["бүү саад бол"]},invisible:{v:["үл харагдах"]},offline:{v:["офлайн"]},online:{v:["онлайн"]}}},{l:"my",t:{}},{l:"nb",t:{away:{v:["borte"]},busy:{v:["opptatt"]},"do not disturb":{v:["ikke forstyrr"]},invisible:{v:["usynlig"]},offline:{v:["frakoblet"]},online:{v:["tilkoblet"]}}},{l:"nl",t:{away:{v:["weg"]},busy:{v:["bezig"]},"do not disturb":{v:["niet storen"]},invisible:{v:["Onzichtbaar"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"oc",t:{}},{l:"pl",t:{away:{v:["stąd"]},busy:{v:["zajęty"]},"do not disturb":{v:["nie przeszkadzać"]},invisible:{v:["niewidzialny"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"pt-BR",t:{away:{v:["ausente"]},busy:{v:["ocupado"]},"do not disturb":{v:["não perturbe"]},invisible:{v:["invisível"]},offline:{v:["off-line"]},online:{v:["on-line"]}}},{l:"pt-PT",t:{away:{v:["longe"]},busy:{v:["ocupado"]},"do not disturb":{v:["não incomodar"]},invisible:{v:["invisível"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"ro",t:{away:{v:["plecat"]},"do not disturb":{v:["nu deranjați"]},offline:{v:["deconectat"]},online:{v:["online"]}}},{l:"ru",t:{away:{v:["отсутствие"]},busy:{v:["занятый"]},"do not disturb":{v:["не беспокоить"]},invisible:{v:["невидимый"]},offline:{v:["офлайн"]},online:{v:["онлайн"]}}},{l:"sk",t:{away:{v:["neprítomný"]},busy:{v:["zaneprázdnený"]},"do not disturb":{v:["nerušiť"]},invisible:{v:["neviditeľný"]},offline:{v:["Odpojený - offline"]},online:{v:["Pripojený - online"]}}},{l:"sl",t:{}},{l:"sr",t:{away:{v:["одсутан"]},busy:{v:["заузет"]},"do not disturb":{v:["не узнемиравај"]},invisible:{v:["невидљиво"]},offline:{v:["ван мреже"]},online:{v:["на мрежи"]}}},{l:"sv",t:{away:{v:["borta"]},busy:{v:["upptagen"]},"do not disturb":{v:["stör ej"]},invisible:{v:["osynlig"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"tr",t:{away:{v:["Uzakta"]},busy:{v:["Meşgul"]},"do not disturb":{v:["Rahatsız etmeyin"]},invisible:{v:["görünmez"]},offline:{v:["Çevrim dışı"]},online:{v:["Çevrim içi"]}}},{l:"uk",t:{away:{v:["відсутній"]},busy:{v:["зайнято"]},"do not disturb":{v:["не турбувати"]},invisible:{v:["Невидимий"]},offline:{v:["не в мережі"]},online:{v:["в мережі"]}}},{l:"uz",t:{away:{v:["uzoqda"]},busy:{v:["band"]},"do not disturb":{v:["bezovta qilmang"]},invisible:{v:["ko'rinmas"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"zh-CN",t:{away:{v:["离开"]},busy:{v:["繁忙"]},"do not disturb":{v:["请勿打扰"]},invisible:{v:["隐藏的"]},offline:{v:["离线"]},online:{v:["在线"]}}},{l:"zh-HK",t:{away:{v:["離開"]},busy:{v:["忙碌"]},"do not disturb":{v:["請勿打擾"]},invisible:{v:["隐藏的"]},offline:{v:["離線"]},online:{v:["在線"]}}},{l:"zh-TW",t:{away:{v:["離開"]},busy:{v:["忙碌"]},"do not disturb":{v:["請勿打擾"]},invisible:{v:["不可見"]},offline:{v:["離線"]},online:{v:["線上"]}}}],Zy=[{l:"ar",t:{"Cancel changes":{v:["إلغاء التغييرات"]},"Confirm changes":{v:["تأكيد التغييرات"]}}},{l:"ast",t:{"Cancel changes":{v:["Encaboxar los cambeos"]},"Confirm changes":{v:["Confirmar los cambeos"]}}},{l:"br",t:{}},{l:"ca",t:{"Cancel changes":{v:["Cancel·la els canvis"]},"Confirm changes":{v:["Confirmeu els canvis"]}}},{l:"cs",t:{"Cancel changes":{v:["Zrušit změny"]},"Confirm changes":{v:["Potvrdit změny"]}}},{l:"cs-CZ",t:{"Cancel changes":{v:["Zrušit změny"]},"Confirm changes":{v:["Potvrdit změny"]}}},{l:"da",t:{"Cancel changes":{v:["Annuller ændringer"]},"Confirm changes":{v:["Bekræft ændringer"]}}},{l:"de",t:{"Cancel changes":{v:["Änderungen verwerfen"]},"Confirm changes":{v:["Änderungen bestätigen"]}}},{l:"de-DE",t:{"Cancel changes":{v:["Änderungen verwerfen"]},"Confirm changes":{v:["Änderungen bestätigen"]}}},{l:"el",t:{"Cancel changes":{v:["Ακύρωση αλλαγών"]},"Confirm changes":{v:["Επιβεβαίωση αλλαγών"]}}},{l:"en-GB",t:{"Cancel changes":{v:["Cancel changes"]},"Confirm changes":{v:["Confirm changes"]}}},{l:"eo",t:{}},{l:"es",t:{"Cancel changes":{v:["Cancelar cambios"]},"Confirm changes":{v:["Confirmar cambios"]}}},{l:"es-AR",t:{"Cancel changes":{v:["Cancelar cambios"]},"Confirm changes":{v:["Confirmar cambios"]}}},{l:"es-EC",t:{"Cancel changes":{v:["Cancelar cambios"]},"Confirm changes":{v:["Confirmar cambios"]}}},{l:"es-MX",t:{"Cancel changes":{v:["Cancelar cambios"]},"Confirm changes":{v:["Confirmar cambios"]}}},{l:"et-EE",t:{"Cancel changes":{v:["Tühista muudatused"]},"Confirm changes":{v:["Kinnita muudatused"]}}},{l:"eu",t:{"Cancel changes":{v:["Ezeztatu aldaketak"]},"Confirm changes":{v:["Baieztatu aldaketak"]}}},{l:"fa",t:{"Cancel changes":{v:["لغو تغییرات"]},"Confirm changes":{v:["تایید تغییرات"]}}},{l:"fi",t:{"Cancel changes":{v:["Peruuta muutokset"]},"Confirm changes":{v:["Vahvista muutokset"]}}},{l:"fr",t:{"Cancel changes":{v:["Annuler les modifications"]},"Confirm changes":{v:["Confirmer les modifications"]}}},{l:"ga",t:{"Cancel changes":{v:["Cealaigh athruithe"]},"Confirm changes":{v:["Deimhnigh na hathruithe"]}}},{l:"gl",t:{"Cancel changes":{v:["Cancelar os cambios"]},"Confirm changes":{v:["Confirma os cambios"]}}},{l:"he",t:{"Cancel changes":{v:["ביטול שינויים"]},"Confirm changes":{v:["אישור השינויים"]}}},{l:"hr",t:{"Cancel changes":{v:["Otkaži promjene"]},"Confirm changes":{v:["Potvrdi promjene"]}}},{l:"hu",t:{"Cancel changes":{v:["Változtatások elvetése"]},"Confirm changes":{v:["Változtatások megerősítése"]}}},{l:"id",t:{"Cancel changes":{v:["Batalkan perubahan"]},"Confirm changes":{v:["Konfirmasikan perubahan"]}}},{l:"is",t:{"Cancel changes":{v:["Hætta við breytingar"]},"Confirm changes":{v:["Staðfesta breytingar"]}}},{l:"it",t:{"Cancel changes":{v:["Annulla modifiche"]},"Confirm changes":{v:["Conferma modifiche"]}}},{l:"ja",t:{"Cancel changes":{v:["変更をキャンセル"]},"Confirm changes":{v:["変更を承認"]}}},{l:"ja-JP",t:{"Cancel changes":{v:["変更をキャンセル"]},"Confirm changes":{v:["変更を承認"]}}},{l:"ko",t:{"Cancel changes":{v:["변경 취소"]},"Confirm changes":{v:["변경 사항 확인"]}}},{l:"lo",t:{"Cancel changes":{v:["ຍົກເລີກການປ່ຽນແປງ"]},"Confirm changes":{v:["ຢືນຢັນການປ່ຽນແປງ"]}}},{l:"lt-LT",t:{"Cancel changes":{v:["Atsisakyti pakeitimų"]},"Confirm changes":{v:["Patvirtinti pakeitimus"]}}},{l:"lv",t:{}},{l:"mk",t:{"Cancel changes":{v:["Откажи ги промените"]},"Confirm changes":{v:["Потврди ги промените"]}}},{l:"mn",t:{"Cancel changes":{v:["Өөрчлөлтийг цуцлах"]},"Confirm changes":{v:["Өөрчлөлтийг баталгаажуулах"]}}},{l:"my",t:{"Cancel changes":{v:["ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်"]},"Confirm changes":{v:["ပြောင်းလဲမှုများ အတည်ပြုရန်"]}}},{l:"nb",t:{"Cancel changes":{v:["Avbryt endringer"]},"Confirm changes":{v:["Bekreft endringer"]}}},{l:"nl",t:{"Cancel changes":{v:["Wijzigingen annuleren"]},"Confirm changes":{v:["Wijzigingen bevestigen"]}}},{l:"oc",t:{}},{l:"pl",t:{"Cancel changes":{v:["Anuluj zmiany"]},"Confirm changes":{v:["Potwierdź zmiany"]}}},{l:"pt-BR",t:{"Cancel changes":{v:["Cancelar alterações"]},"Confirm changes":{v:["Confirmar alterações"]}}},{l:"pt-PT",t:{"Cancel changes":{v:["Cancelar alterações"]},"Confirm changes":{v:["Confirmar alterações"]}}},{l:"ro",t:{"Cancel changes":{v:["Anulează modificările"]},"Confirm changes":{v:["Confirmați modificările"]}}},{l:"ru",t:{"Cancel changes":{v:["Отменить изменения"]},"Confirm changes":{v:["Подтвердить изменения"]}}},{l:"sk",t:{"Cancel changes":{v:["Zrušiť zmeny"]},"Confirm changes":{v:["Potvrdiť zmeny"]}}},{l:"sl",t:{"Cancel changes":{v:["Prekliči spremembe"]},"Confirm changes":{v:["Potrdi spremembe"]}}},{l:"sr",t:{"Cancel changes":{v:["Откажи измене"]},"Confirm changes":{v:["Потврдите измене"]}}},{l:"sv",t:{"Cancel changes":{v:["Avbryt ändringar"]},"Confirm changes":{v:["Bekräfta ändringar"]}}},{l:"tr",t:{"Cancel changes":{v:["Değişiklikleri iptal et"]},"Confirm changes":{v:["Değişiklikleri onayla"]}}},{l:"uk",t:{"Cancel changes":{v:["Скасувати зміни"]},"Confirm changes":{v:["Підтвердити зміни"]}}},{l:"uz",t:{"Cancel changes":{v:["O'zgarishlarni bekor qilish"]},"Confirm changes":{v:["O'zgarishlarni tasdiqlang"]}}},{l:"zh-CN",t:{"Cancel changes":{v:["取消更改"]},"Confirm changes":{v:["确认更改"]}}},{l:"zh-HK",t:{"Cancel changes":{v:["取消更改"]},"Confirm changes":{v:["確認更改"]}}},{l:"zh-TW",t:{"Cancel changes":{v:["取消變更"]},"Confirm changes":{v:["確認變更"]}}}],Xy=[{l:"ar",t:{"Change name":{v:["تغيير الاسم"]},"Close sidebar":{v:["قفل الشريط الجانبي"]},Favorite:{v:["المفضلة"]},"Open sidebar":{v:["إفتَح الشريط الجانبي"]}}},{l:"ast",t:{"Change name":{v:["Camudar el nome"]},"Close sidebar":{v:["Zarrar la barra llateral"]},Favorite:{v:["Favoritu"]},"Open sidebar":{v:["Abrir la barra llateral"]}}},{l:"br",t:{}},{l:"ca",t:{"Close sidebar":{v:["Tancar la barra lateral"]},Favorite:{v:["Preferit"]}}},{l:"cs",t:{"Change name":{v:["Změnit název"]},"Close sidebar":{v:["Zavřít postranní panel"]},Favorite:{v:["Oblíbené"]},"Open sidebar":{v:["Otevřít postranní panel"]}}},{l:"cs-CZ",t:{"Change name":{v:["Změnit název"]},"Close sidebar":{v:["Zavřít postranní panel"]},Favorite:{v:["Oblíbené"]}}},{l:"da",t:{"Change name":{v:["Ændre navn"]},"Close sidebar":{v:["Luk sidepanel"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Åbn sidepanel"]}}},{l:"de",t:{"Change name":{v:["Namen ändern"]},"Close sidebar":{v:["Seitenleiste schließen"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Seitenleiste öffnen"]}}},{l:"de-DE",t:{"Change name":{v:["Namen ändern"]},"Close sidebar":{v:["Seitenleiste schließen"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Seitenleiste öffnen"]}}},{l:"el",t:{"Change name":{v:["Αλλαγή ονόματος"]},"Close sidebar":{v:["Κλείσιμο πλευρικής μπάρας"]},Favorite:{v:["Αγαπημένα"]},"Open sidebar":{v:["Άνοιγμα πλευρικής μπάρας"]}}},{l:"en-GB",t:{"Change name":{v:["Change name"]},"Close sidebar":{v:["Close sidebar"]},Favorite:{v:["Favourite"]},"Open sidebar":{v:["Open sidebar"]}}},{l:"eo",t:{}},{l:"es",t:{"Change name":{v:["Cambiar nombre"]},"Close sidebar":{v:["Cerrar barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir barra lateral"]}}},{l:"es-AR",t:{"Change name":{v:["Cambiar nombre"]},"Close sidebar":{v:["Cerrar barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir barra lateral"]}}},{l:"es-EC",t:{"Change name":{v:["Cambiar nombre"]},"Close sidebar":{v:["Cerrar barra lateral"]},Favorite:{v:["Favorito"]}}},{l:"es-MX",t:{"Change name":{v:["Cambiar nombre"]},"Close sidebar":{v:["Cerrar barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir barra lateral"]}}},{l:"et-EE",t:{"Change name":{v:["Muuda nime"]},"Close sidebar":{v:["Sulge külgriba"]},Favorite:{v:["Lemmik"]},"Open sidebar":{v:["Ava külgriba"]}}},{l:"eu",t:{"Change name":{v:["Aldatu izena"]},"Close sidebar":{v:["Itxi albo-barra"]},Favorite:{v:["Gogokoa"]}}},{l:"fa",t:{"Change name":{v:["تغییر نام"]},"Close sidebar":{v:["بستن نوار کناری"]},Favorite:{v:["مورد علاقه"]},"Open sidebar":{v:["باز کردن نوار کنار"]}}},{l:"fi",t:{"Change name":{v:["Vaihda nimi"]},"Close sidebar":{v:["Sulje sivupalkki"]},Favorite:{v:["Suosikki"]},"Open sidebar":{v:["Avaa sivupalkki"]}}},{l:"fr",t:{"Change name":{v:["Modifier le nom"]},"Close sidebar":{v:["Fermer la barre latérale"]},Favorite:{v:["Favori"]},"Open sidebar":{v:["Ouvrir la barre latérale"]}}},{l:"ga",t:{"Change name":{v:["Athrú ainm"]},"Close sidebar":{v:["Dún barra taoibh"]},Favorite:{v:["is fearr leat"]},"Open sidebar":{v:["Oscail barra taoibh"]}}},{l:"gl",t:{"Change name":{v:["Cambiar o nome"]},"Close sidebar":{v:["Pechar a barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir a barra lateral"]}}},{l:"he",t:{"Change name":{v:["החלפת שם"]},"Close sidebar":{v:["סגירת סרגל הצד"]},Favorite:{v:["למועדפים"]}}},{l:"hr",t:{"Change name":{v:["Promjeni naziv"]},"Close sidebar":{v:["Zatvori bočnu traku"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Otvori bočnu traku"]}}},{l:"hu",t:{"Change name":{v:["Név módosítása"]},"Close sidebar":{v:["Oldalsáv bezárása"]},Favorite:{v:["Kedvenc"]},"Open sidebar":{v:["Oldalsáv megnyitása"]}}},{l:"id",t:{"Change name":{v:["Ubah nama"]},"Close sidebar":{v:["Tutup bilah sisi"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Buka bilah sisi"]}}},{l:"is",t:{"Change name":{v:["Breyta nafni"]},"Close sidebar":{v:["Loka hliðarstiku"]},Favorite:{v:["Eftirlæti"]},"Open sidebar":{v:["Opna hliðarspjald"]}}},{l:"it",t:{"Change name":{v:["Cambia nome"]},"Close sidebar":{v:["Chiudi la barra laterale"]},Favorite:{v:["Preferito"]}}},{l:"ja",t:{"Change name":{v:["名前の変更"]},"Close sidebar":{v:["サイドバーを閉じる"]},Favorite:{v:["お気に入り"]},"Open sidebar":{v:["サイドバーを開く"]}}},{l:"ja-JP",t:{"Change name":{v:["名前の変更"]},"Close sidebar":{v:["サイドバーを閉じる"]},Favorite:{v:["お気に入り"]},"Open sidebar":{v:["サイドバーを開く"]}}},{l:"ko",t:{"Change name":{v:["이름 변경"]},"Close sidebar":{v:["사이드바 닫기"]},Favorite:{v:["즐겨찾기"]},"Open sidebar":{v:["사이드바 열기"]}}},{l:"lo",t:{"Change name":{v:["ປ່ຽນຊື່"]},"Close sidebar":{v:["ປິດແຖບດ້ານຂ້າງ"]},Favorite:{v:["ລາຍການທີ່ມັກ"]},"Open sidebar":{v:["ເປີດແຖບດ້ານຂ້າງ"]}}},{l:"lt-LT",t:{"Change name":{v:["Pakeisti vardą"]},"Close sidebar":{v:["Užverti šoninę juostą"]},Favorite:{v:["Mėgstamiausias"]},"Open sidebar":{v:["Atverti šoninę juostą"]}}},{l:"lv",t:{}},{l:"mk",t:{"Change name":{v:["Промени име"]},"Close sidebar":{v:["Затвори странична лента"]},Favorite:{v:["Фаворити"]},"Open sidebar":{v:["Отвори странична лента"]}}},{l:"mn",t:{"Change name":{v:["Нэр солих"]},"Close sidebar":{v:["Хажуугийн самбарыг хаах"]},Favorite:{v:["Дуртай"]},"Open sidebar":{v:["Хажуугийн самбарыг нээх"]}}},{l:"my",t:{}},{l:"nb",t:{"Change name":{v:["Endre navn"]},"Close sidebar":{v:["Lukk sidepanel"]},Favorite:{v:["Favoritt"]},"Open sidebar":{v:["Åpne sidefelt"]}}},{l:"nl",t:{"Change name":{v:["Naam wijzigen"]},"Close sidebar":{v:["Zijbalk sluiten"]},Favorite:{v:["Favoriet"]},"Open sidebar":{v:["Zijbalk openen"]}}},{l:"oc",t:{}},{l:"pl",t:{"Change name":{v:["Zmień nazwę"]},"Close sidebar":{v:["Zamknij pasek boczny"]},Favorite:{v:["Ulubiony"]},"Open sidebar":{v:["Otwórz pasek boczny"]}}},{l:"pt-BR",t:{"Change name":{v:["Mudar nome"]},"Close sidebar":{v:["Fechar barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir barra lateral"]}}},{l:"pt-PT",t:{"Change name":{v:["Alterar nome"]},"Close sidebar":{v:["Fechar barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir barra lateral"]}}},{l:"ro",t:{"Change name":{v:["Modifică numele"]},"Close sidebar":{v:["Închide bara laterală"]},Favorite:{v:["Favorit"]}}},{l:"ru",t:{"Change name":{v:["Изменить имя"]},"Close sidebar":{v:["Закрыть сайдбар"]},Favorite:{v:["Избранное"]},"Open sidebar":{v:["Открыть боковую панель"]}}},{l:"sk",t:{"Change name":{v:["Zmeniť názov"]},"Close sidebar":{v:["Zavrieť bočný panel"]},Favorite:{v:["Obľúbené"]},"Open sidebar":{v:["Otvoriť bočný panel"]}}},{l:"sl",t:{"Close sidebar":{v:["Zapri stransko vrstico"]},Favorite:{v:["Priljubljeno"]}}},{l:"sr",t:{"Change name":{v:["Измени назив"]},"Close sidebar":{v:["Затвори бочну траку"]},Favorite:{v:["Омиљени"]},"Open sidebar":{v:["Отвори бочну траку"]}}},{l:"sv",t:{"Change name":{v:["Ändra namn"]},"Close sidebar":{v:["Stäng sidofältet"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Öppna sidofältet"]}}},{l:"tr",t:{"Change name":{v:["Adı değiştir"]},"Close sidebar":{v:["Yan çubuğu kapat"]},Favorite:{v:["Sık kullanılanlara ekle"]},"Open sidebar":{v:["Yan çubuğu aç"]}}},{l:"uk",t:{"Change name":{v:["Змінити назву"]},"Close sidebar":{v:["Закрити бічну панель"]},Favorite:{v:["Із зірочкою"]},"Open sidebar":{v:["Бокове меню"]}}},{l:"uz",t:{"Change name":{v:["Ismni o'zgartirish"]},"Close sidebar":{v:["Yon panelni yoping"]},Favorite:{v:["Tanlangan"]},"Open sidebar":{v:["Yon panelni oching"]}}},{l:"zh-CN",t:{"Change name":{v:["修改名称"]},"Close sidebar":{v:["关闭侧边栏"]},Favorite:{v:["喜爱"]},"Open sidebar":{v:["打开侧边栏"]}}},{l:"zh-HK",t:{"Change name":{v:["更改名稱"]},"Close sidebar":{v:["關閉側邊欄"]},Favorite:{v:["喜愛"]},"Open sidebar":{v:["打開側邊欄"]}}},{l:"zh-TW",t:{"Change name":{v:["變更名稱"]},"Close sidebar":{v:["關閉側邊欄"]},Favorite:{v:["最愛"]},"Open sidebar":{v:["開啟側邊欄"]}}}],Zh=[{l:"ar",t:{"Clear selected":{v:["محو المحدّد"]},"Deselect {option}":{v:["إلغاء تحديد {option}"]},"No results":{v:["ليس هناك أية نتيجة"]},Options:{v:["خيارات"]}}},{l:"ast",t:{"Clear selected":{v:["Borrar lo seleicionao"]},"Deselect {option}":{v:["Deseleicionar «{option}»"]},"No results":{v:["Nun hai nengún resultáu"]},Options:{v:["Opciones"]}}},{l:"br",t:{"No results":{v:["Disoc'h ebet"]}}},{l:"ca",t:{"No results":{v:["Sense resultats"]}}},{l:"cs",t:{"Clear selected":{v:["Vyčistit vybrané"]},"Deselect {option}":{v:["Zrušit výběr {option}"]},"No results":{v:["Nic nenalezeno"]},Options:{v:["Možnosti"]}}},{l:"cs-CZ",t:{"Clear selected":{v:["Vyčistit vybrané"]},"Deselect {option}":{v:["Zrušit výběr {option}"]},"No results":{v:["Nic nenalezeno"]},Options:{v:["Možnosti"]}}},{l:"da",t:{"Clear selected":{v:["Ryd valgt"]},"Deselect {option}":{v:["Fravælg {option}"]},"No results":{v:["Ingen resultater"]},Options:{v:["Indstillinger"]}}},{l:"de",t:{"Clear selected":{v:["Auswahl leeren"]},"Deselect {option}":{v:["{option} abwählen"]},"No results":{v:["Keine Ergebnisse"]},Options:{v:["Optionen"]}}},{l:"de-DE",t:{"Clear selected":{v:["Auswahl leeren"]},"Deselect {option}":{v:["{option} abwählen"]},"No results":{v:["Keine Ergebnisse"]},Options:{v:["Optionen"]}}},{l:"el",t:{"Clear selected":{v:["Εκκαθάριση επιλογής"]},"Deselect {option}":{v:["Αποεπιλογή {option}"]},"No results":{v:["Κανένα αποτέλεσμα"]},Options:{v:["Επιλογές"]}}},{l:"en-GB",t:{"Clear selected":{v:["Clear selected"]},"Deselect {option}":{v:["Deselect {option}"]},"No results":{v:["No results"]},Options:{v:["Options"]}}},{l:"eo",t:{"No results":{v:["La rezulto forestas"]}}},{l:"es",t:{"Clear selected":{v:["Limpiar selección"]},"Deselect {option}":{v:["Deseleccionar {option}"]},"No results":{v:[" Ningún resultado"]},Options:{v:["Opciones"]}}},{l:"es-AR",t:{"Clear selected":{v:["Limpiar selección"]},"Deselect {option}":{v:["Deseleccionar {option}"]},"No results":{v:["Sin resultados"]},Options:{v:["Opciones"]}}},{l:"es-EC",t:{"No results":{v:["Sin resultados"]}}},{l:"es-MX",t:{"Clear selected":{v:["Limpiar selección"]},"Deselect {option}":{v:["Deseleccionar {option}"]},"No results":{v:["Sin resultados"]},Options:{v:["Opciones"]}}},{l:"et-EE",t:{"Clear selected":{v:["Tühjenda valik"]},"Deselect {option}":{v:["Eemalda {option} valik"]},"No results":{v:["Tulemusi pole"]},Options:{v:["Valikud"]}}},{l:"eu",t:{"No results":{v:["Emaitzarik ez"]}}},{l:"fa",t:{"Clear selected":{v:["پاک کردن مورد انتخاب شده"]},"Deselect {option}":{v:["لغو انتخاب {option}"]},"No results":{v:["بدون هیچ نتیجه‌ای"]},Options:{v:["گزینه‌ها"]}}},{l:"fi",t:{"Clear selected":{v:["Tyhjennä valitut"]},"Deselect {option}":{v:["Poista valinta {option}"]},"No results":{v:["Ei tuloksia"]},Options:{v:["Valinnat"]}}},{l:"fr",t:{"Clear selected":{v:["Vider la sélection"]},"Deselect {option}":{v:["Désélectionner {option}"]},"No results":{v:["Aucun résultat"]},Options:{v:["Options"]}}},{l:"ga",t:{"Clear selected":{v:["Glan roghnaithe"]},"Deselect {option}":{v:["Díroghnaigh {option}"]},"No results":{v:["Gan torthaí"]},Options:{v:["Roghanna"]}}},{l:"gl",t:{"Clear selected":{v:["Limpar o seleccionado"]},"Deselect {option}":{v:["Desmarcar {option}"]},"No results":{v:["Sen resultados"]},Options:{v:["Opcións"]}}},{l:"he",t:{"No results":{v:["אין תוצאות"]}}},{l:"hr",t:{"Clear selected":{v:["Očisti odabir"]},"Deselect {option}":{v:["Odznači {option}"]},"No results":{v:["Nema rezultata"]},Options:{v:["Mogućnosti"]}}},{l:"hu",t:{"Clear selected":{v:["Kijelölés törlése"]},"Deselect {option}":{v:["{option} kijelölésének megszüntetése"]},"No results":{v:["Nincs találat"]},Options:{v:["Beállítások"]}}},{l:"id",t:{"Clear selected":{v:["Hapus terpilih"]},"Deselect {option}":{v:["Batalkan pemilihan {option}"]},"No results":{v:["Tidak ada hasil"]},Options:{v:["Opsi"]}}},{l:"is",t:{"Clear selected":{v:["Hreinsa valið"]},"Deselect {option}":{v:["Afvelja {option}"]},"No results":{v:["Engar niðurstöður"]},Options:{v:["Valkostir"]}}},{l:"it",t:{"Clear selected":{v:["Cancella selezionati"]},"Deselect {option}":{v:["Deselezionare {option}"]},"No results":{v:["Nessun risultato"]}}},{l:"ja",t:{"Clear selected":{v:["選択を解除"]},"Deselect {option}":{v:["{option} の選択を解除"]},"No results":{v:["結果無し"]},Options:{v:["オプション"]}}},{l:"ja-JP",t:{"Clear selected":{v:["選択を解除"]},"Deselect {option}":{v:["{option} の選択を解除"]},"No results":{v:["結果無し"]},Options:{v:["オプション"]}}},{l:"ko",t:{"Clear selected":{v:["선택 항목 지우기"]},"Deselect {option}":{v:["{option} 선택 해제"]},"No results":{v:["결과 없음"]},Options:{v:["옵션"]}}},{l:"lo",t:{"Clear selected":{v:["ລຶບສິ່ງທີ່ເລືອກ"]},"Deselect {option}":{v:["ຍົກເລີກການເລືອກ {option}"]},"No results":{v:["ບໍ່ມີຜົນລັບ"]},Options:{v:["ຕົວເລືອກ"]}}},{l:"lt-LT",t:{"Clear selected":{v:["Išvalyti pasirinkimą"]},"Deselect {option}":{v:["Panaikinkite {option} pasirinkimą"]},"No results":{v:["Nėra rezultatų"]},Options:{v:["Parinktys"]}}},{l:"lv",t:{"No results":{v:["Nav rezultātu"]}}},{l:"mk",t:{"Clear selected":{v:["Исчисти означени"]},"Deselect {option}":{v:["Откажи избор на {option}"]},"No results":{v:["Нема резултати"]},Options:{v:["Опции"]}}},{l:"mn",t:{"Clear selected":{v:["Сонголтыг цэвэрлэх"]},"Deselect {option}":{v:["{option}-г сонголтоос хасах"]},"No results":{v:["Үр дүн алга"]},Options:{v:["Тохиргоо"]}}},{l:"my",t:{"No results":{v:["ရလဒ်မရှိပါ"]}}},{l:"nb",t:{"Clear selected":{v:["Tøm merket"]},"Deselect {option}":{v:["Opphev valg {option}"]},"No results":{v:["Ingen resultater"]},Options:{v:["Alternativer"]}}},{l:"nl",t:{"Clear selected":{v:["Selectie wissen"]},"Deselect {option}":{v:["Selectie {option} opheffen"]},"No results":{v:["Geen resultaten"]},Options:{v:["Opties"]}}},{l:"oc",t:{"No results":{v:["Cap de resultat"]}}},{l:"pl",t:{"Clear selected":{v:["Wyczyść wybrane"]},"Deselect {option}":{v:["Odznacz {option}"]},"No results":{v:["Brak wyników"]},Options:{v:["Opcje"]}}},{l:"pt-BR",t:{"Clear selected":{v:["Limpar selecionado"]},"Deselect {option}":{v:["Desselecionar {option}"]},"No results":{v:["Sem resultados"]},Options:{v:["Opções"]}}},{l:"pt-PT",t:{"Clear selected":{v:["Limpeza selecionada"]},"Deselect {option}":{v:["Desmarcar {option}"]},"No results":{v:["Sem resultados"]},Options:{v:["Opções"]}}},{l:"ro",t:{"Clear selected":{v:["Șterge selecția"]},"Deselect {option}":{v:["Deselctează {option}"]},"No results":{v:["Nu există rezultate"]}}},{l:"ru",t:{"Clear selected":{v:["Очистить выбранный"]},"Deselect {option}":{v:["Отменить выбор {option}"]},"No results":{v:["Результаты отсуствуют"]},Options:{v:["Варианты"]}}},{l:"sk",t:{"Clear selected":{v:["Vymazať vybraté"]},"Deselect {option}":{v:["Zrušiť výber {option}"]},"No results":{v:["Žiadne výsledky"]},Options:{v:["možnosti"]}}},{l:"sl",t:{"No results":{v:["Ni zadetkov"]}}},{l:"sr",t:{"Clear selected":{v:["Обриши изабрано"]},"Deselect {option}":{v:["Уклони избор {option}"]},"No results":{v:["Нема резултата"]},Options:{v:["Опције"]}}},{l:"sv",t:{"Clear selected":{v:["Rensa val"]},"Deselect {option}":{v:["Avmarkera {option}"]},"No results":{v:["Inga resultat"]},Options:{v:["Alternativ"]}}},{l:"tr",t:{"Clear selected":{v:["Seçilmişleri temizle"]},"Deselect {option}":{v:["{option} bırak"]},"No results":{v:["Herhangi bir sonuç bulunamadı"]},Options:{v:["Seçenekler"]}}},{l:"uk",t:{"Clear selected":{v:["Очистити вибране"]},"Deselect {option}":{v:["Зняти вибір {option}"]},"No results":{v:["Відсутні результати"]},Options:{v:["Параметри"]}}},{l:"uz",t:{"Clear selected":{v:["Tanlanganni tozalash"]},"Deselect {option}":{v:["{option}tanlovni bekor qiling"]},"No results":{v:["Natija yoʻq"]},Options:{v:["Variantlar"]}}},{l:"zh-CN",t:{"Clear selected":{v:["清除所选"]},"Deselect {option}":{v:["取消选择 {option}"]},"No results":{v:["无结果"]},Options:{v:["选项"]}}},{l:"zh-HK",t:{"Clear selected":{v:["清除所選項目"]},"Deselect {option}":{v:["取消選擇 {option}"]},"No results":{v:["無結果"]},Options:{v:["選項"]}}},{l:"zh-TW",t:{"Clear selected":{v:["清除選定項目"]},"Deselect {option}":{v:["取消選取 {option}"]},"No results":{v:["無結果"]},Options:{v:["選項"]}}}],Jy=[{l:"ar",t:{"Clear text":{v:["محو النص"]},"Save changes":{v:["حفظ التغييرات"]}}},{l:"ast",t:{"Clear text":{v:["Borrar el testu"]},"Save changes":{v:["Guardar los cambeos"]}}},{l:"br",t:{}},{l:"ca",t:{"Clear text":{v:["Netejar text"]}}},{l:"cs",t:{"Clear text":{v:["Čitelný text"]},"Save changes":{v:["Uložit změny"]}}},{l:"cs-CZ",t:{"Clear text":{v:["Čitelný text"]},"Save changes":{v:["Uložit změny"]}}},{l:"da",t:{"Clear text":{v:["Ryd tekst"]},"Save changes":{v:["Gem ændringer"]}}},{l:"de",t:{"Clear text":{v:["Klartext"]},"Save changes":{v:["Änderungen speichern"]}}},{l:"de-DE",t:{"Clear text":{v:["Klartext"]},"Save changes":{v:["Änderungen speichern"]}}},{l:"el",t:{"Clear text":{v:["Εκκαθάριση κειμένου"]},"Save changes":{v:["Αποθήκευση αλλαγών"]}}},{l:"en-GB",t:{"Clear text":{v:["Clear text"]},"Save changes":{v:["Save changes"]}}},{l:"eo",t:{}},{l:"es",t:{"Clear text":{v:["Limpiar texto"]},"Save changes":{v:["Guardar cambios"]}}},{l:"es-AR",t:{"Clear text":{v:["Limpiar texto"]},"Save changes":{v:["Guardar cambios"]}}},{l:"es-EC",t:{"Clear text":{v:["Limpiar texto"]}}},{l:"es-MX",t:{"Clear text":{v:["Limpiar texto"]},"Save changes":{v:["Guardar cambios"]}}},{l:"et-EE",t:{"Clear text":{v:["Kustuta tekst"]},"Save changes":{v:["Salvesta muudatused"]}}},{l:"eu",t:{"Clear text":{v:["Garbitu testua"]}}},{l:"fa",t:{"Clear text":{v:["پاک کردن متن"]},"Save changes":{v:["ذخیرهٔ تغییرات"]}}},{l:"fi",t:{"Clear text":{v:["Tyhjennä teksti"]},"Save changes":{v:["Tallenna muutokset"]}}},{l:"fr",t:{"Clear text":{v:["Effacer le texte"]},"Save changes":{v:["Sauvegarder les changements"]}}},{l:"ga",t:{"Clear text":{v:["Glan téacs"]},"Save changes":{v:["Sabháil na hathruithe"]}}},{l:"gl",t:{"Clear text":{v:["Limpar o texto"]},"Save changes":{v:["Gardar os cambios"]}}},{l:"he",t:{"Clear text":{v:["פינוי טקסט"]}}},{l:"hr",t:{"Clear text":{v:["Očisti tekst"]},"Save changes":{v:["Spremi promjene"]}}},{l:"hu",t:{"Clear text":{v:["Szöveg törlése"]},"Save changes":{v:["Változtatások mentése"]}}},{l:"id",t:{"Clear text":{v:["Bersihkan teks"]},"Save changes":{v:["Simpan perubahan"]}}},{l:"is",t:{"Clear text":{v:["Hreinsa texta"]},"Save changes":{v:["Vista breytingar"]}}},{l:"it",t:{"Clear text":{v:["Cancella il testo"]},"Save changes":{v:["Salva le modifiche"]}}},{l:"ja",t:{"Clear text":{v:["テキストをクリア"]},"Save changes":{v:["変更を保存"]}}},{l:"ja-JP",t:{"Clear text":{v:["テキストをクリア"]},"Save changes":{v:["変更を保存"]}}},{l:"ko",t:{"Clear text":{v:["텍스트 지우기"]},"Save changes":{v:["변경 사항 저장"]}}},{l:"lo",t:{"Clear text":{v:["ລຶບຂໍ້ຄວາມ"]},"Save changes":{v:["ບັນທຶກການປ່ຽນແປງ"]}}},{l:"lt-LT",t:{"Clear text":{v:["Išvalyti tekstą"]},"Save changes":{v:["Įrašyti pakeitimus"]}}},{l:"lv",t:{}},{l:"mk",t:{"Clear text":{v:["Исчисти текст"]},"Save changes":{v:["Зачувај промени"]}}},{l:"mn",t:{"Clear text":{v:["Текстийг цэвэрлэх"]},"Save changes":{v:["Өөрчлөлтийг хадгалах"]}}},{l:"my",t:{}},{l:"nb",t:{"Clear text":{v:["Fjern tekst"]},"Save changes":{v:["Lagre endringer"]}}},{l:"nl",t:{"Clear text":{v:["Tekst wissen"]},"Save changes":{v:["Wijzigingen opslaan"]}}},{l:"oc",t:{}},{l:"pl",t:{"Clear text":{v:["Wyczyść tekst"]},"Save changes":{v:["Zapisz zmiany"]}}},{l:"pt-BR",t:{"Clear text":{v:["Limpar texto"]},"Save changes":{v:["Salvar alterações"]}}},{l:"pt-PT",t:{"Clear text":{v:["Limpar texto"]},"Save changes":{v:["Gravar alterações"]}}},{l:"ro",t:{"Clear text":{v:["Șterge textul"]},"Save changes":{v:["Salvează modificările"]}}},{l:"ru",t:{"Clear text":{v:["Очистить текст"]},"Save changes":{v:["Сохранить изменения"]}}},{l:"sk",t:{"Clear text":{v:["Vamazať text"]},"Save changes":{v:["Uložiť zmeny"]}}},{l:"sl",t:{"Clear text":{v:["Počisti besedilo"]}}},{l:"sr",t:{"Clear text":{v:["Обриши текст"]},"Save changes":{v:["Сачувај измене"]}}},{l:"sv",t:{"Clear text":{v:["Ta bort text"]},"Save changes":{v:["Spara ändringar"]}}},{l:"tr",t:{"Clear text":{v:["Metni temizle"]},"Save changes":{v:["Değişiklikleri kaydet"]}}},{l:"uk",t:{"Clear text":{v:["Очистити текст"]},"Save changes":{v:["Зберегти зміни"]}}},{l:"uz",t:{"Clear text":{v:["Matnni tozalash"]},"Save changes":{v:["O'zgarishlarni saqlang"]}}},{l:"zh-CN",t:{"Clear text":{v:["清除文本"]},"Save changes":{v:["保存修改"]}}},{l:"zh-HK",t:{"Clear text":{v:["清除文本"]},"Save changes":{v:["保存更改"]}}},{l:"zh-TW",t:{"Clear text":{v:["清除文字"]},"Save changes":{v:["儲存變更"]}}}],Xh=[{l:"ar",t:{Close:{v:["إغلاق"]}}},{l:"ast",t:{Close:{v:["Zarrar"]}}},{l:"br",t:{Close:{v:["Serriñ"]}}},{l:"ca",t:{Close:{v:["Tanca"]}}},{l:"cs",t:{Close:{v:["Zavřít"]}}},{l:"cs-CZ",t:{Close:{v:["Zavřít"]}}},{l:"da",t:{Close:{v:["Luk"]}}},{l:"de",t:{Close:{v:["Schließen"]}}},{l:"de-DE",t:{Close:{v:["Schließen"]}}},{l:"el",t:{Close:{v:["Κλείσιμο"]}}},{l:"en-GB",t:{Close:{v:["Close"]}}},{l:"eo",t:{Close:{v:["Fermu"]}}},{l:"es",t:{Close:{v:["Cerrar"]}}},{l:"es-AR",t:{Close:{v:["Cerrar"]}}},{l:"es-EC",t:{Close:{v:["Cerrar"]}}},{l:"es-MX",t:{Close:{v:["Cerrar"]}}},{l:"et-EE",t:{Close:{v:["Sulge"]}}},{l:"eu",t:{Close:{v:["Itxi"]}}},{l:"fa",t:{Close:{v:["بستن"]}}},{l:"fi",t:{Close:{v:["Sulje"]}}},{l:"fr",t:{Close:{v:["Fermer"]}}},{l:"ga",t:{Close:{v:["Dún"]}}},{l:"gl",t:{Close:{v:["Pechar"]}}},{l:"he",t:{Close:{v:["סגירה"]}}},{l:"hr",t:{Close:{v:["Zatvori"]}}},{l:"hu",t:{Close:{v:["Bezárás"]}}},{l:"id",t:{Close:{v:["Tutup"]}}},{l:"is",t:{Close:{v:["Loka"]}}},{l:"it",t:{Close:{v:["Chiudi"]}}},{l:"ja",t:{Close:{v:["閉じる"]}}},{l:"ja-JP",t:{Close:{v:["閉じる"]}}},{l:"ko",t:{Close:{v:["닫기"]}}},{l:"lo",t:{Close:{v:["ປິດ"]}}},{l:"lt-LT",t:{Close:{v:["Užverti"]}}},{l:"lv",t:{Close:{v:["Aizvērt"]}}},{l:"mk",t:{Close:{v:["Затвори"]}}},{l:"mn",t:{Close:{v:["Хаах"]}}},{l:"my",t:{Close:{v:["ပိတ်ရန်"]}}},{l:"nb",t:{Close:{v:["Lukk"]}}},{l:"nl",t:{Close:{v:["Sluiten"]}}},{l:"oc",t:{Close:{v:["Tampar"]}}},{l:"pl",t:{Close:{v:["Zamknij"]}}},{l:"pt-BR",t:{Close:{v:["Fechar"]}}},{l:"pt-PT",t:{Close:{v:["Fechar"]}}},{l:"ro",t:{Close:{v:["Închideți"]}}},{l:"ru",t:{Close:{v:["Закрыть"]}}},{l:"sk",t:{Close:{v:["Zavrieť"]}}},{l:"sl",t:{Close:{v:["Zapri"]}}},{l:"sr",t:{Close:{v:["Затвори"]}}},{l:"sv",t:{Close:{v:["Stäng"]}}},{l:"tr",t:{Close:{v:["Kapat"]}}},{l:"uk",t:{Close:{v:["Закрити"]}}},{l:"uz",t:{Close:{v:["Yopish"]}}},{l:"zh-CN",t:{Close:{v:["关闭"]}}},{l:"zh-HK",t:{Close:{v:["關閉"]}}},{l:"zh-TW",t:{Close:{v:["關閉"]}}}],Qy=[{l:"ar",t:{"Close navigation":{v:["إغلاق التصفح"]},"Open navigation":{v:["فتح التنقُّل"]}}},{l:"ast",t:{"Close navigation":{v:["Zarrar la navegación"]},"Open navigation":{v:["Abrir la navegación"]}}},{l:"br",t:{}},{l:"ca",t:{"Close navigation":{v:["Tanca la navegació"]},"Open navigation":{v:["Obre la navegació"]}}},{l:"cs",t:{"Close navigation":{v:["Zavřít navigaci"]},"Open navigation":{v:["Otevřít navigaci"]}}},{l:"cs-CZ",t:{"Close navigation":{v:["Zavřít navigaci"]},"Open navigation":{v:["Otevřít navigaci"]}}},{l:"da",t:{"Close navigation":{v:["Luk navigation"]},"Open navigation":{v:["Åben navigation"]}}},{l:"de",t:{"Close navigation":{v:["Navigation schließen"]},"Open navigation":{v:["Navigation öffnen"]}}},{l:"de-DE",t:{"Close navigation":{v:["Navigation schließen"]},"Open navigation":{v:["Navigation öffnen"]}}},{l:"el",t:{"Close navigation":{v:["Κλείσιμο πλοήγησης"]},"Open navigation":{v:["Άνοιγμα πλοήγησης"]}}},{l:"en-GB",t:{"Close navigation":{v:["Close navigation"]},"Open navigation":{v:["Open navigation"]}}},{l:"eo",t:{}},{l:"es",t:{"Close navigation":{v:["Cerrar navegación"]},"Open navigation":{v:["Abrir navegación"]}}},{l:"es-AR",t:{"Close navigation":{v:["Cerrar navegación"]},"Open navigation":{v:["Abrir navegación"]}}},{l:"es-EC",t:{"Close navigation":{v:["Cerrar navegación"]},"Open navigation":{v:["Abrir navegación"]}}},{l:"es-MX",t:{"Close navigation":{v:["Cerrar navegación"]},"Open navigation":{v:["Abrir navegación"]}}},{l:"et-EE",t:{"Close navigation":{v:["Sulge navigatsioon"]},"Open navigation":{v:["Ava liikumisvaade"]}}},{l:"eu",t:{"Close navigation":{v:["Itxi nabigazioa"]},"Open navigation":{v:["Ireki nabigazioa"]}}},{l:"fa",t:{"Close navigation":{v:["بستن بخش ناوبری"]},"Open navigation":{v:["باز کردن بخش ناوبری"]}}},{l:"fi",t:{"Close navigation":{v:["Sulje navigaatio"]}}},{l:"fr",t:{"Close navigation":{v:["Fermer la navigation"]},"Open navigation":{v:["Ouvrir la navigation"]}}},{l:"ga",t:{"Close navigation":{v:["Dún nascleanúint"]},"Open navigation":{v:["Oscail nascleanúint"]}}},{l:"gl",t:{"Close navigation":{v:["Pechar a navegación"]},"Open navigation":{v:["Abrir a navegación"]}}},{l:"he",t:{"Close navigation":{v:["סגירת הניווט"]},"Open navigation":{v:["פתיחת ניווט"]}}},{l:"hr",t:{"Close navigation":{v:["Zatvori navigaciju"]},"Open navigation":{v:["Otvori navigaciju"]}}},{l:"hu",t:{"Close navigation":{v:["Navigáció bezárása"]},"Open navigation":{v:["Navigáció megnyitása"]}}},{l:"id",t:{"Close navigation":{v:["Tutup navigasi"]},"Open navigation":{v:["Buka navigasi"]}}},{l:"is",t:{"Close navigation":{v:["Loka leiðsagnarsleða"]}}},{l:"it",t:{"Close navigation":{v:["Chiudi la navigazione"]},"Open navigation":{v:["Apri la navigazione"]}}},{l:"ja",t:{"Close navigation":{v:["ナビゲーションを閉じる"]},"Open navigation":{v:["ナビゲーションを開く"]}}},{l:"ja-JP",t:{"Close navigation":{v:["ナビゲーションを閉じる"]},"Open navigation":{v:["ナビゲーションを開く"]}}},{l:"ko",t:{"Close navigation":{v:["탐색 닫기"]},"Open navigation":{v:["탐색 열기"]}}},{l:"lo",t:{"Close navigation":{v:["ປິດການນຳທາງ"]},"Open navigation":{v:["ເປີດການນຳທາງ"]}}},{l:"lt-LT",t:{"Close navigation":{v:["Užverti naršymą"]},"Open navigation":{v:["Atverti naršymą"]}}},{l:"lv",t:{}},{l:"mk",t:{"Close navigation":{v:["Затвори навигација"]},"Open navigation":{v:["Отвори навигација"]}}},{l:"mn",t:{"Close navigation":{v:["Навигацийг хаах"]},"Open navigation":{v:["Навигацийг нээх"]}}},{l:"my",t:{}},{l:"nb",t:{"Close navigation":{v:["Lukk navigasjon"]},"Open navigation":{v:["Åpne navigasjon"]}}},{l:"nl",t:{"Close navigation":{v:["Navigatie sluiten"]},"Open navigation":{v:["Navigatie openen"]}}},{l:"oc",t:{}},{l:"pl",t:{"Close navigation":{v:["Zamknij nawigację"]}}},{l:"pt-BR",t:{"Close navigation":{v:["Fechar navegação"]},"Open navigation":{v:["Abrir navegação"]}}},{l:"pt-PT",t:{"Close navigation":{v:["Fechar navegação"]},"Open navigation":{v:["Abrir navegação"]}}},{l:"ro",t:{"Close navigation":{v:["Închideți navigarea"]},"Open navigation":{v:["Deschideți navigația"]}}},{l:"ru",t:{"Close navigation":{v:["Закрыть навигацию"]},"Open navigation":{v:["Открыть навигацию"]}}},{l:"sk",t:{"Close navigation":{v:["Zavrieť navigáciu"]}}},{l:"sl",t:{"Close navigation":{v:["Zapri krmarjenje"]},"Open navigation":{v:["Odpri krmarjenje"]}}},{l:"sr",t:{"Close navigation":{v:["Затвори навигацију"]},"Open navigation":{v:["Отвори навигацију"]}}},{l:"sv",t:{"Close navigation":{v:["Stäng navigering"]},"Open navigation":{v:["Öppna navigering"]}}},{l:"tr",t:{"Close navigation":{v:["Gezinmeyi kapat"]},"Open navigation":{v:["Gezinmeyi aç"]}}},{l:"uk",t:{"Close navigation":{v:["Закрити навігацію"]},"Open navigation":{v:["Перейти до навігації"]}}},{l:"uz",t:{"Close navigation":{v:["Navigatsiyani yopish"]},"Open navigation":{v:["Navigatsiyani oching"]}}},{l:"zh-CN",t:{"Close navigation":{v:["关闭导航"]}}},{l:"zh-HK",t:{"Close navigation":{v:["關閉導航"]},"Open navigation":{v:["開啟導航"]}}},{l:"zh-TW",t:{"Close navigation":{v:["關閉導航"]},"Open navigation":{v:["開啟導航"]}}}],e2=[{l:"ar",t:{"Collapse menu":{v:["طي القائمة"]},"Open menu":{v:["إفتَح القائمة"]}}},{l:"ast",t:{"Collapse menu":{v:["Recoyer el menú"]},"Open menu":{v:["Abrir le menú"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"Collapse menu":{v:["Sbalit nabídku"]},"Open menu":{v:["Otevřít nabídku"]}}},{l:"cs-CZ",t:{"Collapse menu":{v:["Sbalit nabídku"]},"Open menu":{v:["Otevřít nabídku"]}}},{l:"da",t:{"Collapse menu":{v:["Skjul menuen"]},"Open menu":{v:["Åben menu"]}}},{l:"de",t:{"Collapse menu":{v:["Menü einklappen"]},"Open menu":{v:["Menü öffnen"]}}},{l:"de-DE",t:{"Collapse menu":{v:["Menü einklappen"]},"Open menu":{v:["Menü öffnen"]}}},{l:"el",t:{"Collapse menu":{v:["Σύμπτυξη μενού"]},"Open menu":{v:["Άνοιγμα μενού"]}}},{l:"en-GB",t:{"Collapse menu":{v:["Collapse menu"]},"Open menu":{v:["Open menu"]}}},{l:"eo",t:{}},{l:"es",t:{"Collapse menu":{v:["Ocultar menú"]},"Open menu":{v:["Abrir menú"]}}},{l:"es-AR",t:{"Collapse menu":{v:["Ocultar menú"]},"Open menu":{v:["Abrir menú"]}}},{l:"es-EC",t:{"Collapse menu":{v:["Ocultar menú"]},"Open menu":{v:["Abrir menú"]}}},{l:"es-MX",t:{"Collapse menu":{v:["Ocultar menú"]},"Open menu":{v:["Abrir menú"]}}},{l:"et-EE",t:{"Collapse menu":{v:["Ahenda menüü"]},"Open menu":{v:["Ava menüü"]}}},{l:"eu",t:{"Collapse menu":{v:["Tolestu menua"]},"Open menu":{v:["Ireki menua"]}}},{l:"fa",t:{"Collapse menu":{v:["بستن فهرست"]},"Open menu":{v:["باز کردن فهرست"]}}},{l:"fi",t:{"Collapse menu":{v:["Supista valikko"]},"Open menu":{v:["Avaa valikko"]}}},{l:"fr",t:{"Collapse menu":{v:["Réduire le menu"]},"Open menu":{v:["Ouvrir le menu"]}}},{l:"ga",t:{"Collapse menu":{v:["Roghchlár Laghdaigh"]},"Open menu":{v:["Roghchlár a oscailt"]}}},{l:"gl",t:{"Collapse menu":{v:["Contraer o menú"]},"Open menu":{v:["Abrir o menú"]}}},{l:"he",t:{"Collapse menu":{v:["צמצום התפריט"]},"Open menu":{v:["פתיחת תפריט"]}}},{l:"hr",t:{"Collapse menu":{v:["Sakrij izbornik"]},"Open menu":{v:["Otvori izbornik"]}}},{l:"hu",t:{"Collapse menu":{v:["Menü összecsukása"]},"Open menu":{v:["Menü megnyitása"]}}},{l:"id",t:{"Collapse menu":{v:["Ciutkan menu"]},"Open menu":{v:["Buka menu"]}}},{l:"is",t:{"Collapse menu":{v:["Fella valmynd saman"]},"Open menu":{v:["Opna valmynd"]}}},{l:"it",t:{"Collapse menu":{v:["Chiudi Menu"]},"Open menu":{v:["Apri il menu"]}}},{l:"ja",t:{"Collapse menu":{v:["メニューの折りたたみ"]},"Open menu":{v:["メニューを開く"]}}},{l:"ja-JP",t:{"Collapse menu":{v:["メニューの折りたたみ"]},"Open menu":{v:["メニューを開く"]}}},{l:"ko",t:{"Collapse menu":{v:["메뉴 접기"]},"Open menu":{v:["메뉴 열기"]}}},{l:"lo",t:{"Collapse menu":{v:["ຫຍໍ້ເມນູ"]},"Open menu":{v:["ເປີດເມນູ"]}}},{l:"lt-LT",t:{"Collapse menu":{v:["Suskleisti meniu"]},"Open menu":{v:["Atverti meniu"]}}},{l:"lv",t:{}},{l:"mk",t:{"Collapse menu":{v:["Скриј мени"]},"Open menu":{v:["Отвори мени"]}}},{l:"mn",t:{"Collapse menu":{v:["Цэсийг хураах"]},"Open menu":{v:["Цэсийг нээх"]}}},{l:"my",t:{}},{l:"nb",t:{"Collapse menu":{v:["Skjul meny"]},"Open menu":{v:["Åpne meny"]}}},{l:"nl",t:{"Collapse menu":{v:["Menu inklappen"]},"Open menu":{v:["Menu openen"]}}},{l:"oc",t:{}},{l:"pl",t:{"Collapse menu":{v:["Zwiń menu"]},"Open menu":{v:["Otwórz menu"]}}},{l:"pt-BR",t:{"Collapse menu":{v:["Recolher menu"]},"Open menu":{v:["Abrir menu"]}}},{l:"pt-PT",t:{"Collapse menu":{v:["Ocultar menu"]},"Open menu":{v:["Abrir menu"]}}},{l:"ro",t:{"Collapse menu":{v:["Restrânge meniul"]},"Open menu":{v:["Deschide meniul"]}}},{l:"ru",t:{"Collapse menu":{v:["Свернуть меню"]},"Open menu":{v:["Открыть меню"]}}},{l:"sk",t:{"Collapse menu":{v:["Zbaliť menu"]},"Open menu":{v:["Otvoriť menu"]}}},{l:"sl",t:{}},{l:"sr",t:{"Collapse menu":{v:["Сажми мени"]},"Open menu":{v:["Отвори мени"]}}},{l:"sv",t:{"Collapse menu":{v:["Dölj menyn"]},"Open menu":{v:["Öppna menyn"]}}},{l:"tr",t:{"Collapse menu":{v:["Menüyü daralt"]},"Open menu":{v:["Menüyü aç"]}}},{l:"uk",t:{"Collapse menu":{v:["Згорнути меню"]},"Open menu":{v:["Відкрити меню"]}}},{l:"uz",t:{"Collapse menu":{v:["Menyuni yig‘ish"]},"Open menu":{v:["Menyuni oching"]}}},{l:"zh-CN",t:{"Collapse menu":{v:["收起菜单"]},"Open menu":{v:["打开菜单"]}}},{l:"zh-HK",t:{"Collapse menu":{v:["折疊選單"]},"Open menu":{v:["開啟選單"]}}},{l:"zh-TW",t:{"Collapse menu":{v:["折疊選單"]},"Open menu":{v:["開啟選單"]}}}],t2=[{l:"ar",t:{"Edit item":{v:["تعديل عنصر"]}}},{l:"ast",t:{"Edit item":{v:["Editar l'elementu"]}}},{l:"br",t:{}},{l:"ca",t:{"Edit item":{v:["Edita l'element"]}}},{l:"cs",t:{"Edit item":{v:["Upravit položku"]}}},{l:"cs-CZ",t:{"Edit item":{v:["Upravit položku"]}}},{l:"da",t:{"Edit item":{v:["Rediger emne"]}}},{l:"de",t:{"Edit item":{v:["Element bearbeiten"]}}},{l:"de-DE",t:{"Edit item":{v:["Element bearbeiten"]}}},{l:"el",t:{"Edit item":{v:["Επεξεργασία αντικειμένου"]}}},{l:"en-GB",t:{"Edit item":{v:["Edit item"]}}},{l:"eo",t:{}},{l:"es",t:{"Edit item":{v:["Editar elemento"]}}},{l:"es-AR",t:{"Edit item":{v:["Editar elemento"]}}},{l:"es-EC",t:{"Edit item":{v:["Editar elemento"]}}},{l:"es-MX",t:{"Edit item":{v:["Editar elemento"]}}},{l:"et-EE",t:{"Edit item":{v:["Muuda objekti"]}}},{l:"eu",t:{"Edit item":{v:["Editatu elementua"]}}},{l:"fa",t:{"Edit item":{v:["ویرایش مورد"]}}},{l:"fi",t:{"Edit item":{v:["Muokkaa kohdetta"]}}},{l:"fr",t:{"Edit item":{v:["Éditer l'élément"]}}},{l:"ga",t:{"Edit item":{v:["Cuir mír in eagar"]}}},{l:"gl",t:{"Edit item":{v:["Editar o elemento"]}}},{l:"he",t:{"Edit item":{v:["עריכת פריט"]}}},{l:"hr",t:{"Edit item":{v:["Uredi stavku"]}}},{l:"hu",t:{"Edit item":{v:["Elem szerkesztése"]}}},{l:"id",t:{"Edit item":{v:["Edit item"]}}},{l:"is",t:{"Edit item":{v:["Breyta atriði"]}}},{l:"it",t:{"Edit item":{v:["Modifica l'elemento"]}}},{l:"ja",t:{"Edit item":{v:["編集"]}}},{l:"ja-JP",t:{"Edit item":{v:["編集"]}}},{l:"ko",t:{"Edit item":{v:["항목 수정"]}}},{l:"lo",t:{"Edit item":{v:["ແກ້ໄຂລາຍການ"]}}},{l:"lt-LT",t:{"Edit item":{v:["Taisyti elementą"]}}},{l:"lv",t:{}},{l:"mk",t:{"Edit item":{v:["Уреди"]}}},{l:"mn",t:{"Edit item":{v:["Зүйлийг засварлах"]}}},{l:"my",t:{}},{l:"nb",t:{"Edit item":{v:["Rediger"]}}},{l:"nl",t:{"Edit item":{v:["Item bewerken"]}}},{l:"oc",t:{}},{l:"pl",t:{"Edit item":{v:["Edytuj element"]}}},{l:"pt-BR",t:{"Edit item":{v:["Editar item"]}}},{l:"pt-PT",t:{"Edit item":{v:["Editar item"]}}},{l:"ro",t:{"Edit item":{v:["Editați elementul"]}}},{l:"ru",t:{"Edit item":{v:["Изменить элемент"]}}},{l:"sk",t:{"Edit item":{v:["Upraviť položku"]}}},{l:"sl",t:{"Edit item":{v:["Uredi predmet"]}}},{l:"sr",t:{"Edit item":{v:["Уреди ставку"]}}},{l:"sv",t:{"Edit item":{v:["Redigera objekt"]}}},{l:"tr",t:{"Edit item":{v:["Ögeyi düzenle"]}}},{l:"uk",t:{"Edit item":{v:["Редагувати елемент"]}}},{l:"uz",t:{"Edit item":{v:["Elementni tahrirlash"]}}},{l:"zh-CN",t:{"Edit item":{v:["编辑项目"]}}},{l:"zh-HK",t:{"Edit item":{v:["編輯項目"]}}},{l:"zh-TW",t:{"Edit item":{v:["編輯項目"]}}}],u2=[{l:"ar",t:{}},{l:"ast",t:{}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"External documentation":{v:["Externí dokumentace"]}}},{l:"cs-CZ",t:{}},{l:"da",t:{"External documentation":{v:["Ekstern dokumentation"]}}},{l:"de",t:{"External documentation":{v:["Externe Dokumentation"]}}},{l:"de-DE",t:{"External documentation":{v:["Externe Dokumentation"]}}},{l:"el",t:{"External documentation":{v:["Εξωτερική τεκμηρίωση"]}}},{l:"en-GB",t:{"External documentation":{v:["External documentation"]}}},{l:"eo",t:{}},{l:"es",t:{}},{l:"es-AR",t:{}},{l:"es-EC",t:{}},{l:"es-MX",t:{}},{l:"et-EE",t:{"External documentation":{v:["Dokumentatsioon välises allikas"]}}},{l:"eu",t:{}},{l:"fa",t:{}},{l:"fi",t:{}},{l:"fr",t:{"External documentation":{v:["Documentation externe"]}}},{l:"ga",t:{"External documentation":{v:["Doiciméadú seachtrach"]}}},{l:"gl",t:{"External documentation":{v:["Documentación externa"]}}},{l:"he",t:{}},{l:"hr",t:{"External documentation":{v:["Vanjska dokumentacija"]}}},{l:"hu",t:{"External documentation":{v:["Külső dokumentáció"]}}},{l:"id",t:{"External documentation":{v:["Dokumentasi eksternal"]}}},{l:"is",t:{}},{l:"it",t:{}},{l:"ja",t:{"External documentation":{v:["外部ドキュメント"]}}},{l:"ja-JP",t:{}},{l:"ko",t:{"External documentation":{v:["외부 문서"]}}},{l:"lo",t:{"External documentation":{v:["ເອກະສານພາຍນອກ"]}}},{l:"lt-LT",t:{"External documentation":{v:["Išorinė dokumentacija"]}}},{l:"lv",t:{}},{l:"mk",t:{"External documentation":{v:["Надворешна документација"]}}},{l:"mn",t:{"External documentation":{v:["Гадаад баримт бичиг"]}}},{l:"my",t:{}},{l:"nb",t:{}},{l:"nl",t:{"External documentation":{v:["Externe documentatie"]}}},{l:"oc",t:{}},{l:"pl",t:{}},{l:"pt-BR",t:{"External documentation":{v:["Documentação externa"]}}},{l:"pt-PT",t:{}},{l:"ro",t:{}},{l:"ru",t:{"External documentation":{v:["Внешняя документация"]}}},{l:"sk",t:{}},{l:"sl",t:{}},{l:"sr",t:{"External documentation":{v:["Спољна документација"]}}},{l:"sv",t:{"External documentation":{v:["Extern dokumentation"]}}},{l:"tr",t:{"External documentation":{v:["Dış belgeler"]}}},{l:"uk",t:{"External documentation":{v:["Зовнішня документація"]}}},{l:"uz",t:{"External documentation":{v:["Tashqi hujjatlar"]}}},{l:"zh-CN",t:{}},{l:"zh-HK",t:{"External documentation":{v:["外部文件"]}}},{l:"zh-TW",t:{"External documentation":{v:["外部文件"]}}}],s2=[{l:"ar",t:{"Go back to the list":{v:["عودة إلى القائمة"]}}},{l:"ast",t:{"Go back to the list":{v:["Volver a la llista"]}}},{l:"br",t:{}},{l:"ca",t:{"Go back to the list":{v:["Torna a la llista"]}}},{l:"cs",t:{"Go back to the list":{v:["Jít zpět na seznam"]}}},{l:"cs-CZ",t:{"Go back to the list":{v:["Jít zpět na seznam"]}}},{l:"da",t:{"Go back to the list":{v:["Tilbage til listen"]}}},{l:"de",t:{"Go back to the list":{v:["Zurück zur Liste"]}}},{l:"de-DE",t:{"Go back to the list":{v:["Zurück zur Liste"]}}},{l:"el",t:{"Go back to the list":{v:["Επιστροφή στην αρχική λίστα"]}}},{l:"en-GB",t:{"Go back to the list":{v:["Go back to the list"]}}},{l:"eo",t:{}},{l:"es",t:{"Go back to the list":{v:["Volver a la lista"]}}},{l:"es-AR",t:{"Go back to the list":{v:["Volver a la lista"]}}},{l:"es-EC",t:{"Go back to the list":{v:["Volver a la lista"]}}},{l:"es-MX",t:{"Go back to the list":{v:["Regresar a la lista"]}}},{l:"et-EE",t:{"Go back to the list":{v:["Tagasi nimekirja juurde"]}}},{l:"eu",t:{"Go back to the list":{v:["Bueltatu zerrendara"]}}},{l:"fa",t:{"Go back to the list":{v:["برگشت به لیست"]}}},{l:"fi",t:{"Go back to the list":{v:["Takaisin listaan"]}}},{l:"fr",t:{"Go back to the list":{v:["Retourner à la liste"]}}},{l:"ga",t:{"Go back to the list":{v:["Téigh ar ais go dtí an liosta"]}}},{l:"gl",t:{"Go back to the list":{v:["Volver á lista"]}}},{l:"he",t:{"Go back to the list":{v:["חזרה לרשימה"]}}},{l:"hr",t:{"Go back to the list":{v:["Vrati se na popis"]}}},{l:"hu",t:{"Go back to the list":{v:["Ugrás vissza a listához"]}}},{l:"id",t:{"Go back to the list":{v:["Kembali ke daftar"]}}},{l:"is",t:{"Go back to the list":{v:["Fara til baka í listann"]}}},{l:"it",t:{"Go back to the list":{v:["Torna all'elenco"]}}},{l:"ja",t:{"Go back to the list":{v:["リストに戻る"]}}},{l:"ja-JP",t:{"Go back to the list":{v:["リストに戻る"]}}},{l:"ko",t:{"Go back to the list":{v:["목록으로 돌아가기"]}}},{l:"lo",t:{"Go back to the list":{v:["ກັບໄປທີ່ລາຍການ"]}}},{l:"lt-LT",t:{"Go back to the list":{v:["Grįžti į sąrašą"]}}},{l:"lv",t:{}},{l:"mk",t:{"Go back to the list":{v:["Врати се на листата"]}}},{l:"mn",t:{"Go back to the list":{v:["Жагсаалт руу буцах"]}}},{l:"my",t:{}},{l:"nb",t:{"Go back to the list":{v:["Gå tilbake til listen"]}}},{l:"nl",t:{"Go back to the list":{v:["Ga terug naar de lijst"]}}},{l:"oc",t:{}},{l:"pl",t:{"Go back to the list":{v:["Powrót do listy"]}}},{l:"pt-BR",t:{"Go back to the list":{v:["Voltar para a lista"]}}},{l:"pt-PT",t:{"Go back to the list":{v:["Voltar para a lista"]}}},{l:"ro",t:{"Go back to the list":{v:["Întoarceți-vă la listă"]}}},{l:"ru",t:{"Go back to the list":{v:["Вернуться к списку"]}}},{l:"sk",t:{"Go back to the list":{v:["Späť na zoznam"]}}},{l:"sl",t:{"Go back to the list":{v:["Vrni se na seznam"]}}},{l:"sr",t:{"Go back to the list":{v:["Назад на листу"]}}},{l:"sv",t:{"Go back to the list":{v:["Gå tillbaka till listan"]}}},{l:"tr",t:{"Go back to the list":{v:["Listeye dön"]}}},{l:"uk",t:{"Go back to the list":{v:["Повернутися до списку"]}}},{l:"uz",t:{"Go back to the list":{v:["Ro'yxatga qayting"]}}},{l:"zh-CN",t:{"Go back to the list":{v:["返回至列表"]}}},{l:"zh-HK",t:{"Go back to the list":{v:["返回清單"]}}},{l:"zh-TW",t:{"Go back to the list":{v:["回到清單"]}}}],n2=[{l:"ar",t:{"Keyboard navigation help":{v:["مساعدة في التنقل باستعمال لوحة المفاتيح"]},"Skip to app navigation":{v:["تجاوَز إلى التنقل في التطبيق"]},"Skip to main content":{v:["تجاوَز إلى المحتوى الرئيسي"]}}},{l:"ast",t:{"Keyboard navigation help":{v:["Ayuda de la navegación pente'l tecláu"]},"Skip to app navigation":{v:["Dir a la navegación d'aplicaciones"]},"Skip to main content":{v:["Dir al conteníu principal"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"Keyboard navigation help":{v:["Nápověda pro pohyb pomocí klávesnice"]},"Skip to app navigation":{v:["Přeskočit na navigaci aplikace"]},"Skip to main content":{v:["Přeskočit na hlavní obsah"]}}},{l:"cs-CZ",t:{"Keyboard navigation help":{v:["Nápověda pro pohyb pomocí klávesnice"]},"Skip to app navigation":{v:["Přeskočit na navigaci aplikace"]},"Skip to main content":{v:["Přeskočit na hlavní obsah"]}}},{l:"da",t:{"Keyboard navigation help":{v:["Hjælp til tastaturnavigation"]},"Skip to app navigation":{v:["Spring til app navigation"]},"Skip to main content":{v:["Spring til hovedindhold"]}}},{l:"de",t:{"Keyboard navigation help":{v:["Tastatur-Navigationshilfe"]},"Skip to app navigation":{v:["Zur App-Navigation springen"]},"Skip to main content":{v:["Zum Hauptinhalt springen"]}}},{l:"de-DE",t:{"Keyboard navigation help":{v:["Tastatur-Navigationshilfe"]},"Skip to app navigation":{v:["Zur App-Navigation springen"]},"Skip to main content":{v:["Zum Hauptinhalt springen"]}}},{l:"el",t:{"Keyboard navigation help":{v:["Βοήθεια πλοήγησης με πληκτρολόγιο"]},"Skip to app navigation":{v:["Μετάβαση στην πλοήγηση της εφαρμογής"]},"Skip to main content":{v:["Μετάβαση στο κύριο περιεχόμενο"]}}},{l:"en-GB",t:{"Keyboard navigation help":{v:["Keyboard navigation help"]},"Skip to app navigation":{v:["Skip to app navigation"]},"Skip to main content":{v:["Skip to main content"]}}},{l:"eo",t:{}},{l:"es",t:{"Keyboard navigation help":{v:["Ayuda de navegación del teclado"]},"Skip to app navigation":{v:["Saltar a la navegación de apps"]},"Skip to main content":{v:["Saltar al contenido principal"]}}},{l:"es-AR",t:{"Keyboard navigation help":{v:["Ayuda de navegación del teclado"]},"Skip to app navigation":{v:["Saltar a la navegación de app"]},"Skip to main content":{v:["Saltar al contenido principal"]}}},{l:"es-EC",t:{}},{l:"es-MX",t:{"Keyboard navigation help":{v:["Ayuda de navegación del teclado"]},"Skip to app navigation":{v:["Saltar a la navegación de app"]},"Skip to main content":{v:["Saltar al contenido principal"]}}},{l:"et-EE",t:{"Keyboard navigation help":{v:["Klahvistiku kasutuse abiteave"]},"Skip to app navigation":{v:["Suundu rakenduses liikumise valikute juurde"]},"Skip to main content":{v:["Suundu põhisisu juurde"]}}},{l:"eu",t:{}},{l:"fa",t:{"Keyboard navigation help":{v:["راهنمای ناوبری صفحه کلید"]},"Skip to app navigation":{v:["رفتن به پیمایش برنامه"]},"Skip to main content":{v:["رفتن به محتوای اصلی"]}}},{l:"fi",t:{"Keyboard navigation help":{v:["Näppäimistönavigoinnin ohje"]},"Skip to app navigation":{v:["Siirry sovelluksen navigaatioon"]},"Skip to main content":{v:["Siirry pääsisältöön"]}}},{l:"fr",t:{"Keyboard navigation help":{v:["Aide à la navigation du clavier"]},"Skip to app navigation":{v:["Passer à l'app navigation"]},"Skip to main content":{v:["Passer au contenu principal"]}}},{l:"ga",t:{"Keyboard navigation help":{v:["Cabhair le nascleanúint méarchláir"]},"Skip to app navigation":{v:["Téigh ar aghaidh chuig nascleanúint aip"]},"Skip to main content":{v:["Téigh ar aghaidh chuig an bpríomhábhar"]}}},{l:"gl",t:{"Keyboard navigation help":{v:["Axuda á navegación co teclado"]},"Skip to app navigation":{v:["Ir á navegación da aplicación"]},"Skip to main content":{v:["Ir ao contido principal"]}}},{l:"he",t:{}},{l:"hr",t:{"Keyboard navigation help":{v:["Pomoć za navigaciju tipkovnicom"]},"Skip to app navigation":{v:["Preskoči na navigaciju aplikacije"]},"Skip to main content":{v:["Preskoči na glavni sadržaj"]}}},{l:"hu",t:{"Keyboard navigation help":{v:["Billentyűzetes navigáció súgója"]},"Skip to app navigation":{v:["Ugrás az alkalmazásnavigációhoz"]},"Skip to main content":{v:["Ugrás a fő tartalomhoz"]}}},{l:"id",t:{"Keyboard navigation help":{v:["Bantuan navigasi keyboard"]},"Skip to app navigation":{v:["Lewati ke navigasi aplikasi"]},"Skip to main content":{v:["Lewati ke konten utama"]}}},{l:"is",t:{"Keyboard navigation help":{v:["Aðstoð við rötun á lyklaborði"]},"Skip to app navigation":{v:["Sleppa og fara í flakk innan forrits"]},"Skip to main content":{v:["Sleppa og fara í meginefni"]}}},{l:"it",t:{}},{l:"ja",t:{"Keyboard navigation help":{v:["キーボード・ナビゲーション・ヘルプ"]},"Skip to app navigation":{v:["アプリのナビゲーションへ移動"]},"Skip to main content":{v:["メインコンテンツへ移動"]}}},{l:"ja-JP",t:{"Keyboard navigation help":{v:["キーボード・ナビゲーション・ヘルプ"]},"Skip to app navigation":{v:["アプリのナビゲーションへ移動"]},"Skip to main content":{v:["メインコンテンツへ移動"]}}},{l:"ko",t:{"Keyboard navigation help":{v:["키보드 탐색 도움말"]},"Skip to app navigation":{v:["앱 탐색으로 건너뛰기"]},"Skip to main content":{v:["본 내용으로 건너뛰기"]}}},{l:"lo",t:{"Keyboard navigation help":{v:["ການຊ່ວຍເຫຼືອການນຳທາງດ້ວຍຄີບອດ"]},"Skip to app navigation":{v:["ຂ້າມໄປທີ່ການນຳທາງຂອງແອັບ"]},"Skip to main content":{v:["ຂ້າມໄປທີ່ເນື້ອຫາຫຼັກ"]}}},{l:"lt-LT",t:{"Keyboard navigation help":{v:["Klaviatūros navigacijos pagalba"]},"Skip to app navigation":{v:["Pereiti prie programėlės naršymo"]},"Skip to main content":{v:["Pereiti prie pagrindinio turinio"]}}},{l:"lv",t:{}},{l:"mk",t:{"Keyboard navigation help":{v:["Навигација со тастатура"]},"Skip to app navigation":{v:["Прескокни на навигација на апликацијата"]},"Skip to main content":{v:["Прескокни на главна содржина"]}}},{l:"mn",t:{"Keyboard navigation help":{v:["Гарын навигацийн тусламж"]},"Skip to app navigation":{v:["Аппын навигаци руу алгасах"]},"Skip to main content":{v:["Үндсэн агуулга руу алгасах"]}}},{l:"my",t:{}},{l:"nb",t:{"Keyboard navigation help":{v:["Hjelp for tastaturnavigering"]},"Skip to app navigation":{v:["Hopp til appnavigering"]},"Skip to main content":{v:["Hopp til hovedinnhold"]}}},{l:"nl",t:{"Keyboard navigation help":{v:["Hulp voor toetsenbordnavigatie"]},"Skip to app navigation":{v:["Doorgaan naar app-navigatie"]},"Skip to main content":{v:["Naar hoofdinhoud gaan"]}}},{l:"oc",t:{}},{l:"pl",t:{"Keyboard navigation help":{v:["Pomoc w nawigacji za pomocą klawiatury"]},"Skip to app navigation":{v:["Przewiń do nawigacji"]},"Skip to main content":{v:["Przewiń do głównych treści"]}}},{l:"pt-BR",t:{"Keyboard navigation help":{v:["Ajuda para navegação pelo teclado"]},"Skip to app navigation":{v:["Ir para navegação de aplicativo"]},"Skip to main content":{v:["Ir para conteúdo principal"]}}},{l:"pt-PT",t:{"Keyboard navigation help":{v:["Ajuda à navegação no teclado"]},"Skip to app navigation":{v:["Saltar para navegação da app"]},"Skip to main content":{v:["Saltar para conteúdo principal"]}}},{l:"ro",t:{}},{l:"ru",t:{"Keyboard navigation help":{v:["Справка по навигации с помощью клавиатуры"]},"Skip to app navigation":{v:["Перейти к навигации по приложению"]},"Skip to main content":{v:["Перейти к основному содержанию"]}}},{l:"sk",t:{"Keyboard navigation help":{v:["Pomoc pri navigácii pomocou klávesnice"]},"Skip to app navigation":{v:["Preskočiť na navigáciu v aplikácii"]},"Skip to main content":{v:["Preskočiť na hlavný obsah"]}}},{l:"sl",t:{}},{l:"sr",t:{"Keyboard navigation help":{v:["Помоћ за навигацију тастатуром"]},"Skip to app navigation":{v:["Прескочи на навигацију апликацијом"]},"Skip to main content":{v:["Прескочи на главни садржај"]}}},{l:"sv",t:{"Keyboard navigation help":{v:["Hjälp med tangentbordsnavigering"]},"Skip to app navigation":{v:["Hoppa till appnavigering"]},"Skip to main content":{v:["Hoppa till huvudinnehåll"]}}},{l:"tr",t:{"Keyboard navigation help":{v:["Klavye ile gezinme yardımı"]},"Skip to app navigation":{v:["Uygulama gezinmesine git"]},"Skip to main content":{v:["Ana içeriğe git"]}}},{l:"uk",t:{"Keyboard navigation help":{v:["Допомога з навігацією клавішами"]},"Skip to app navigation":{v:["Пропустити навігацію по застосунках"]},"Skip to main content":{v:["Перейти одразу до головного вмісту"]}}},{l:"uz",t:{"Keyboard navigation help":{v:["Klaviatura navigatsiyasi yordami"]},"Skip to app navigation":{v:["Ilova navigatsiyasiga oʻtish"]},"Skip to main content":{v:["Asosiy tarkibga o'tish"]}}},{l:"zh-CN",t:{"Keyboard navigation help":{v:["键盘导航栏帮助"]},"Skip to app navigation":{v:["跳转至应用程序导航页"]},"Skip to main content":{v:["跳转至主要内容"]}}},{l:"zh-HK",t:{"Keyboard navigation help":{v:["鍵盤導航幫助"]},"Skip to app navigation":{v:["跳至應用程式導航"]},"Skip to main content":{v:["跳至主要內容"]}}},{l:"zh-TW",t:{"Keyboard navigation help":{v:["鍵盤導航說明"]},"Skip to app navigation":{v:["略過應用程式導覽"]},"Skip to main content":{v:["跳至主要內容"]}}}],Jh=[{l:"ar",t:{"Loading …":{v:["التحميل جارٍ ..."]}}},{l:"ast",t:{}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"Loading …":{v:["Načítání …"]}}},{l:"cs-CZ",t:{}},{l:"da",t:{"Loading …":{v:["Indlæser ..."]}}},{l:"de",t:{"Loading …":{v:["Wird geladen …"]}}},{l:"de-DE",t:{"Loading …":{v:["Wird geladen …"]}}},{l:"el",t:{"Loading …":{v:["Φόρτωση  …"]}}},{l:"en-GB",t:{"Loading …":{v:["Loading …"]}}},{l:"eo",t:{}},{l:"es",t:{}},{l:"es-AR",t:{}},{l:"es-EC",t:{}},{l:"es-MX",t:{}},{l:"et-EE",t:{"Loading …":{v:["Laadin…"]}}},{l:"eu",t:{}},{l:"fa",t:{"Loading …":{v:["در حال بارگذاری ..."]}}},{l:"fi",t:{"Loading …":{v:["Ladataan ..."]}}},{l:"fr",t:{"Loading …":{v:["Chargement..."]}}},{l:"ga",t:{"Loading …":{v:["Ag lódáil …"]}}},{l:"gl",t:{"Loading …":{v:["Cargando…"]}}},{l:"he",t:{}},{l:"hr",t:{"Loading …":{v:["Učitavanje …"]}}},{l:"hu",t:{"Loading …":{v:["Betöltés…"]}}},{l:"id",t:{"Loading …":{v:["Memuat …"]}}},{l:"is",t:{"Loading …":{v:["Hleð inn …"]}}},{l:"it",t:{}},{l:"ja",t:{"Loading …":{v:["読み込み中 …"]}}},{l:"ja-JP",t:{}},{l:"ko",t:{"Loading …":{v:["로딩 중 ..."]}}},{l:"lo",t:{"Loading …":{v:["ກຳລັງໂຫຼດ…"]}}},{l:"lt-LT",t:{"Loading …":{v:["Įkeliama …"]}}},{l:"lv",t:{}},{l:"mk",t:{"Loading …":{v:["Вчитување …"]}}},{l:"mn",t:{"Loading …":{v:["Ачаалж байна …"]}}},{l:"my",t:{}},{l:"nb",t:{"Loading …":{v:["Laster inn..."]}}},{l:"nl",t:{"Loading …":{v:["Laden …"]}}},{l:"oc",t:{}},{l:"pl",t:{"Loading …":{v:["Wczytywanie…"]}}},{l:"pt-BR",t:{"Loading …":{v:["Carregando …"]}}},{l:"pt-PT",t:{"Loading …":{v:["A carregar..."]}}},{l:"ro",t:{}},{l:"ru",t:{"Loading …":{v:["Загрузка …"]}}},{l:"sk",t:{"Loading …":{v:["Nahrávam ..."]}}},{l:"sl",t:{}},{l:"sr",t:{"Loading …":{v:["Учитава се…"]}}},{l:"sv",t:{"Loading …":{v:["Laddar …"]}}},{l:"tr",t:{"Loading …":{v:["Yükleniyor…"]}}},{l:"uk",t:{"Loading …":{v:["Завантаження …"]}}},{l:"uz",t:{"Loading …":{v:["Yuklanmoqda..."]}}},{l:"zh-CN",t:{"Loading …":{v:["加载中..."]}}},{l:"zh-HK",t:{"Loading …":{v:["加載中 …"]}}},{l:"zh-TW",t:{"Loading …":{v:["載入中......"]}}}],Qh=[{l:"ar",t:{Next:{v:["التالي"]},"Pause slideshow":{v:["تجميد عرض الشرائح"]},Previous:{v:["السابق"]},"Start slideshow":{v:["إبدإ العرض"]}}},{l:"ast",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Posar la presentación de diapositives"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Aniciar la presentación de diapositives"]}}},{l:"br",t:{Next:{v:["Da heul"]},"Pause slideshow":{v:["Arsav an diaporama"]},Previous:{v:["A-raok"]},"Start slideshow":{v:["Kregiñ an diaporama"]}}},{l:"ca",t:{Next:{v:["Següent"]},"Pause slideshow":{v:["Atura la presentació"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Inicia la presentació"]}}},{l:"cs",t:{Next:{v:["Následující"]},"Pause slideshow":{v:["Pozastavit prezentaci"]},Previous:{v:["Předchozí"]},"Start slideshow":{v:["Spustit prezentaci"]}}},{l:"cs-CZ",t:{Next:{v:["Následující"]},"Pause slideshow":{v:["Pozastavit prezentaci"]},Previous:{v:["Předchozí"]},"Start slideshow":{v:["Spustit prezentaci"]}}},{l:"da",t:{Next:{v:["Videre"]},"Pause slideshow":{v:["Suspender fremvisning"]},Previous:{v:["Forrige"]},"Start slideshow":{v:["Start fremvisning"]}}},{l:"de",t:{Next:{v:["Weiter"]},"Pause slideshow":{v:["Diashow pausieren"]},Previous:{v:["Vorherige"]},"Start slideshow":{v:["Diashow starten"]}}},{l:"de-DE",t:{Next:{v:["Weiter"]},"Pause slideshow":{v:["Diashow pausieren"]},Previous:{v:["Vorherige"]},"Start slideshow":{v:["Diashow starten"]}}},{l:"el",t:{Next:{v:["Επόμενο"]},"Pause slideshow":{v:["Παύση προβολής διαφανειών"]},Previous:{v:["Προηγούμενο"]},"Start slideshow":{v:["Έναρξη προβολής διαφανειών"]}}},{l:"en-GB",t:{Next:{v:["Next"]},"Pause slideshow":{v:["Pause slideshow"]},Previous:{v:["Previous"]},"Start slideshow":{v:["Start slideshow"]}}},{l:"eo",t:{Next:{v:["Sekva"]},"Pause slideshow":{v:["Payzi bildprezenton"]},Previous:{v:["Antaŭa"]},"Start slideshow":{v:["Komenci bildprezenton"]}}},{l:"es",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar la presentación "]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar la presentación"]}}},{l:"es-AR",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar la presentación "]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar la presentación"]}}},{l:"es-EC",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar presentación de diapositivas"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar presentación de diapositivas"]}}},{l:"es-MX",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar presentación de diapositivas"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar presentación de diapositivas"]}}},{l:"et-EE",t:{Next:{v:["Edasi"]},"Pause slideshow":{v:["Slaidiesitluse paus"]},Previous:{v:["Eelmine"]},"Start slideshow":{v:["Alusta slaidiesitust"]}}},{l:"eu",t:{Next:{v:["Hurrengoa"]},"Pause slideshow":{v:["Pausatu diaporama"]},Previous:{v:["Aurrekoa"]},"Start slideshow":{v:["Hasi diaporama"]}}},{l:"fa",t:{Next:{v:["بعدی"]},"Pause slideshow":{v:["توقف نمایش اسلاید"]},Previous:{v:["قبلی"]},"Start slideshow":{v:["شروع نمایش اسلاید"]}}},{l:"fi",t:{Next:{v:["Seuraava"]},"Pause slideshow":{v:["Keskeytä diaesitys"]},Previous:{v:["Edellinen"]},"Start slideshow":{v:["Aloita diaesitys"]}}},{l:"fr",t:{Next:{v:["Suivant"]},"Pause slideshow":{v:["Mettre le diaporama en pause"]},Previous:{v:["Précédent"]},"Start slideshow":{v:["Démarrer le diaporama"]}}},{l:"ga",t:{Next:{v:["Ar aghaidh"]},"Pause slideshow":{v:["Cuir taispeántas sleamhnán ar sos"]},Previous:{v:["Roimhe Seo"]},"Start slideshow":{v:["Tosaigh taispeántas sleamhnán"]}}},{l:"gl",t:{Next:{v:["Seguinte"]},"Pause slideshow":{v:["Pausar o diaporama"]},Previous:{v:["Anterir"]},"Start slideshow":{v:["Iniciar o diaporama"]}}},{l:"he",t:{Next:{v:["הבא"]},"Pause slideshow":{v:["השהיית מצגת"]},Previous:{v:["הקודם"]},"Start slideshow":{v:["התחלת המצגת"]}}},{l:"hr",t:{Next:{v:["Sljedeće"]},"Pause slideshow":{v:["Pauziraj dijaprojekciju"]},Previous:{v:["Prethodno"]},"Start slideshow":{v:["Pokreni dijaprojekciju"]}}},{l:"hu",t:{Next:{v:["Következő"]},"Pause slideshow":{v:["Diavetítés szüneteltetése"]},Previous:{v:["Előző"]},"Start slideshow":{v:["Diavetítés indítása"]}}},{l:"id",t:{Next:{v:["Selanjutnya"]},"Pause slideshow":{v:["Jeda tayangan slide"]},Previous:{v:["Sebelumnya"]},"Start slideshow":{v:["Mulai salindia"]}}},{l:"is",t:{Next:{v:["Næsta"]},"Pause slideshow":{v:["Gera hlé á skyggnusýningu"]},Previous:{v:["Fyrri"]},"Start slideshow":{v:["Byrja skyggnusýningu"]}}},{l:"it",t:{Next:{v:["Successivo"]},"Pause slideshow":{v:["Presentazione in pausa"]},Previous:{v:["Precedente"]},"Start slideshow":{v:["Avvia presentazione"]}}},{l:"ja",t:{Next:{v:["次"]},"Pause slideshow":{v:["スライドショーを一時停止"]},Previous:{v:["前"]},"Start slideshow":{v:["スライドショーを開始"]}}},{l:"ja-JP",t:{Next:{v:["次"]},"Pause slideshow":{v:["スライドショーを一時停止"]},Previous:{v:["前"]},"Start slideshow":{v:["スライドショーを開始"]}}},{l:"ko",t:{Next:{v:["다음"]},"Pause slideshow":{v:["슬라이드쇼 일시정지"]},Previous:{v:["이전"]},"Start slideshow":{v:["슬라이드쇼 시작"]}}},{l:"lo",t:{Next:{v:["ຕໍ່ໄປ"]},"Pause slideshow":{v:["ຢຸດສະໄລ້ໂຊຊົ່ວຄາວ"]},Previous:{v:["ກ່ອນໜ້າ"]},"Start slideshow":{v:["ເລີ່ມສະໄລ້ໂຊ"]}}},{l:"lt-LT",t:{Next:{v:["Kitas"]},"Pause slideshow":{v:["Pristabdyti skaidrių rodymą"]},Previous:{v:["Ankstesnis"]},"Start slideshow":{v:["Pradėti skaidrių rodymą"]}}},{l:"lv",t:{Next:{v:["Nākamais"]},"Pause slideshow":{v:["Pauzēt slaidrādi"]},Previous:{v:["Iepriekšējais"]},"Start slideshow":{v:["Sākt slaidrādi"]}}},{l:"mk",t:{Next:{v:["Следно"]},"Pause slideshow":{v:["Пузирај слајдшоу"]},Previous:{v:["Предходно"]},"Start slideshow":{v:["Стартувај слајдшоу"]}}},{l:"mn",t:{Next:{v:["Дараах"]},"Pause slideshow":{v:["Слайд шоуг түр зогсоох"]},Previous:{v:["Өмнөх"]},"Start slideshow":{v:["Слайд шоуг эхлүүлэх"]}}},{l:"my",t:{Next:{v:["နောက်သို့ဆက်ရန်"]},"Pause slideshow":{v:["စလိုက်ရှိုး ခေတ္တရပ်ရန်"]},Previous:{v:["ယခင်"]},"Start slideshow":{v:["စလိုက်ရှိုးအား စတင်ရန်"]}}},{l:"nb",t:{Next:{v:["Neste"]},"Pause slideshow":{v:["Pause lysbildefremvisning"]},Previous:{v:["Forrige"]},"Start slideshow":{v:["Start lysbildefremvisning"]}}},{l:"nl",t:{Next:{v:["Volgende"]},"Pause slideshow":{v:["Diavoorstelling pauzeren"]},Previous:{v:["Vorige"]},"Start slideshow":{v:["Diavoorstelling starten"]}}},{l:"oc",t:{Next:{v:["Seguent"]},"Pause slideshow":{v:["Metre en pausa lo diaporama"]},Previous:{v:["Precedent"]},"Start slideshow":{v:["Lançar lo diaporama"]}}},{l:"pl",t:{Next:{v:["Następny"]},"Pause slideshow":{v:["Wstrzymaj pokaz slajdów"]},Previous:{v:["Poprzedni"]},"Start slideshow":{v:["Rozpocznij pokaz slajdów"]}}},{l:"pt-BR",t:{Next:{v:["Próximo"]},"Pause slideshow":{v:["Pausar apresentação de slides"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar apresentação de slides"]}}},{l:"pt-PT",t:{Next:{v:["Seguinte"]},"Pause slideshow":{v:["Pausar diaporama"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar diaporama"]}}},{l:"ro",t:{Next:{v:["Următorul"]},"Pause slideshow":{v:["Pauză prezentare de diapozitive"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Începeți prezentarea de diapozitive"]}}},{l:"ru",t:{Next:{v:["Следующее"]},"Pause slideshow":{v:["Приостановить показ слйдов"]},Previous:{v:["Предыдущее"]},"Start slideshow":{v:["Начать показ слайдов"]}}},{l:"sk",t:{Next:{v:["Ďalej"]},"Pause slideshow":{v:["Pozastaviť prezentáciu"]},Previous:{v:["Predchádzajúce"]},"Start slideshow":{v:["Začať prezentáciu"]}}},{l:"sl",t:{Next:{v:["Naslednji"]},"Pause slideshow":{v:["Ustavi predstavitev"]},Previous:{v:["Predhodni"]},"Start slideshow":{v:["Začni predstavitev"]}}},{l:"sr",t:{Next:{v:["Следеће"]},"Pause slideshow":{v:["Паузирај слајд шоу"]},Previous:{v:["Претходно"]},"Start slideshow":{v:["Покрени слајд шоу"]}}},{l:"sv",t:{Next:{v:["Nästa"]},"Pause slideshow":{v:["Pausa bildspelet"]},Previous:{v:["Föregående"]},"Start slideshow":{v:["Starta bildspelet"]}}},{l:"tr",t:{Next:{v:["Sonraki"]},"Pause slideshow":{v:["Slayt sunumunu duraklat"]},Previous:{v:["Önceki"]},"Start slideshow":{v:["Slayt sunumunu başlat"]}}},{l:"uk",t:{Next:{v:["Вперед"]},"Pause slideshow":{v:["Пауза у показі слайдів"]},Previous:{v:["Назад"]},"Start slideshow":{v:["Почати показ слайдів"]}}},{l:"uz",t:{Next:{v:["Keyingi"]},"Pause slideshow":{v:["Slayd-shouni to'xtatib turish"]},Previous:{v:["Oldingi"]},"Start slideshow":{v:["Slayd-shouni boshlash"]}}},{l:"zh-CN",t:{Next:{v:["下一个"]},"Pause slideshow":{v:["暂停幻灯片"]},Previous:{v:["上一个"]},"Start slideshow":{v:["开始幻灯片"]}}},{l:"zh-HK",t:{Next:{v:["下一個"]},"Pause slideshow":{v:["暫停幻燈片"]},Previous:{v:["上一個"]},"Start slideshow":{v:["開始幻燈片"]}}},{l:"zh-TW",t:{Next:{v:["下一個"]},"Pause slideshow":{v:["暫停幻燈片"]},Previous:{v:["上一個"]},"Start slideshow":{v:["開始幻燈片"]}}}],i2=[{l:"ar",t:{}},{l:"ast",t:{}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"Please choose a date":{v:["Zvolte datum"]}}},{l:"cs-CZ",t:{}},{l:"da",t:{"Please choose a date":{v:["Vælg en dato"]}}},{l:"de",t:{"Please choose a date":{v:["Bitte ein Datum wählen"]}}},{l:"de-DE",t:{"Please choose a date":{v:["Bitte ein Datum wählen"]}}},{l:"el",t:{"Please choose a date":{v:["Παρακαλώ επιλέξτε μια ημερομηνία"]}}},{l:"en-GB",t:{"Please choose a date":{v:["Please choose a date"]}}},{l:"eo",t:{}},{l:"es",t:{}},{l:"es-AR",t:{}},{l:"es-EC",t:{}},{l:"es-MX",t:{}},{l:"et-EE",t:{"Please choose a date":{v:["Palun vali kuupäev"]}}},{l:"eu",t:{}},{l:"fa",t:{}},{l:"fi",t:{}},{l:"fr",t:{"Please choose a date":{v:["Veuillez choisir une date"]}}},{l:"ga",t:{"Please choose a date":{v:["Roghnaigh dáta le do thoil"]}}},{l:"gl",t:{"Please choose a date":{v:["Escolla unha data"]}}},{l:"he",t:{}},{l:"hr",t:{"Please choose a date":{v:["Molimo odaberite datum"]}}},{l:"hu",t:{"Please choose a date":{v:["Válasszon egy dátumot"]}}},{l:"id",t:{"Please choose a date":{v:["Silakan pilih tanggal"]}}},{l:"is",t:{}},{l:"it",t:{}},{l:"ja",t:{"Please choose a date":{v:["日付を選択してください"]}}},{l:"ja-JP",t:{}},{l:"ko",t:{"Please choose a date":{v:["날짜를 선택해주세요"]}}},{l:"lo",t:{"Please choose a date":{v:["ກະລຸນາເລືອກວັນທີ"]}}},{l:"lt-LT",t:{"Please choose a date":{v:["Pasirinkite datą"]}}},{l:"lv",t:{}},{l:"mk",t:{"Please choose a date":{v:["Избери датум"]}}},{l:"mn",t:{"Please choose a date":{v:["Огноо сонгоно уу"]}}},{l:"my",t:{}},{l:"nb",t:{}},{l:"nl",t:{"Please choose a date":{v:["Kies een datum"]}}},{l:"oc",t:{}},{l:"pl",t:{}},{l:"pt-BR",t:{"Please choose a date":{v:["Por favor, escolha uma data"]}}},{l:"pt-PT",t:{"Please choose a date":{v:["Por favor, escolha uma data"]}}},{l:"ro",t:{}},{l:"ru",t:{"Please choose a date":{v:["Выберите дату"]}}},{l:"sk",t:{}},{l:"sl",t:{}},{l:"sr",t:{"Please choose a date":{v:["Молимо вас да изаберете датум"]}}},{l:"sv",t:{"Please choose a date":{v:["Välj ett datum"]}}},{l:"tr",t:{"Please choose a date":{v:["Lütfen bir tarih seçin"]}}},{l:"uk",t:{"Please choose a date":{v:["Виберіть дату"]}}},{l:"uz",t:{"Please choose a date":{v:["Iltimos, sanani tanlang"]}}},{l:"zh-CN",t:{}},{l:"zh-HK",t:{"Please choose a date":{v:["請選擇日期"]}}},{l:"zh-TW",t:{"Please choose a date":{v:["請選擇日期"]}}}],o2=[{l:"ar",t:{"Undo changes":{v:["تراجَع عن التغييرات"]}}},{l:"ast",t:{"Undo changes":{v:["Desfacer los cambeos"]}}},{l:"br",t:{}},{l:"ca",t:{"Undo changes":{v:["Desfés els canvis"]}}},{l:"cs",t:{"Undo changes":{v:["Vzít změny zpět"]}}},{l:"cs-CZ",t:{"Undo changes":{v:["Vzít změny zpět"]}}},{l:"da",t:{"Undo changes":{v:["Fortryd ændringer"]}}},{l:"de",t:{"Undo changes":{v:["Änderungen rückgängig machen"]}}},{l:"de-DE",t:{"Undo changes":{v:["Änderungen rückgängig machen"]}}},{l:"el",t:{"Undo changes":{v:["Αναίρεση Αλλαγών"]}}},{l:"en-GB",t:{"Undo changes":{v:["Undo changes"]}}},{l:"eo",t:{}},{l:"es",t:{"Undo changes":{v:["Deshacer cambios"]}}},{l:"es-AR",t:{"Undo changes":{v:["Deshacer cambios"]}}},{l:"es-EC",t:{"Undo changes":{v:["Deshacer cambios"]}}},{l:"es-MX",t:{"Undo changes":{v:["Deshacer cambios"]}}},{l:"et-EE",t:{"Undo changes":{v:["Pööra muudatused tagasi"]}}},{l:"eu",t:{"Undo changes":{v:["Aldaketak desegin"]}}},{l:"fa",t:{"Undo changes":{v:["لغو تغییرات"]}}},{l:"fi",t:{"Undo changes":{v:["Kumoa muutokset"]}}},{l:"fr",t:{"Undo changes":{v:["Annuler les changements"]}}},{l:"ga",t:{"Undo changes":{v:["Cealaigh athruithe"]}}},{l:"gl",t:{"Undo changes":{v:["Desfacer os cambios"]}}},{l:"he",t:{"Undo changes":{v:["ביטול שינויים"]}}},{l:"hr",t:{"Undo changes":{v:["Poništi promjene"]}}},{l:"hu",t:{"Undo changes":{v:["Változtatások visszavonása"]}}},{l:"id",t:{"Undo changes":{v:["Urungkan perubahan"]}}},{l:"is",t:{"Undo changes":{v:["Afturkalla breytingar"]}}},{l:"it",t:{"Undo changes":{v:["Cancella i cambiamenti"]}}},{l:"ja",t:{"Undo changes":{v:["変更を取り消し"]}}},{l:"ja-JP",t:{"Undo changes":{v:["変更を取り消し"]}}},{l:"ko",t:{"Undo changes":{v:["변경 되돌리기"]}}},{l:"lo",t:{"Undo changes":{v:["ຍ້ອນຄືນການປ່ຽນແປງ"]}}},{l:"lt-LT",t:{"Undo changes":{v:["Atšaukti pakeitimus"]}}},{l:"lv",t:{}},{l:"mk",t:{"Undo changes":{v:["Врати ги промените"]}}},{l:"mn",t:{"Undo changes":{v:["Өөрчлөлтийг буцаах"]}}},{l:"my",t:{}},{l:"nb",t:{"Undo changes":{v:["Tilbakestill endringer"]}}},{l:"nl",t:{"Undo changes":{v:["Wijzigingen ongedaan maken"]}}},{l:"oc",t:{}},{l:"pl",t:{"Undo changes":{v:["Cofnij zmiany"]}}},{l:"pt-BR",t:{"Undo changes":{v:["Desfazer modificações"]}}},{l:"pt-PT",t:{"Undo changes":{v:["Anular alterações"]}}},{l:"ro",t:{"Undo changes":{v:["Anularea modificărilor"]}}},{l:"ru",t:{"Undo changes":{v:["Отменить изменения"]}}},{l:"sk",t:{"Undo changes":{v:["Vrátiť zmeny"]}}},{l:"sl",t:{"Undo changes":{v:["Razveljavi spremembe"]}}},{l:"sr",t:{"Undo changes":{v:["Поништи измене"]}}},{l:"sv",t:{"Undo changes":{v:["Ångra ändringar"]}}},{l:"tr",t:{"Undo changes":{v:["Değişiklikleri geri al"]}}},{l:"uk",t:{"Undo changes":{v:["Скасувати зміни"]}}},{l:"uz",t:{"Undo changes":{v:["O'zgarishlarni bekor qilish"]}}},{l:"zh-CN",t:{"Undo changes":{v:["撤销更改"]}}},{l:"zh-HK",t:{"Undo changes":{v:["取消更改"]}}},{l:"zh-TW",t:{"Undo changes":{v:["還原變更"]}}}],a2=[{l:"ar",t:{"User status: {status}":{v:["حالة المستخدِم: {status}"]}}},{l:"ast",t:{"User status: {status}":{v:["Estáu del usuariu: {status}"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"User status: {status}":{v:["Stav uživatele: {status}"]}}},{l:"cs-CZ",t:{"User status: {status}":{v:["Stav uživatele: {status}"]}}},{l:"da",t:{"User status: {status}":{v:["Brugerstatus: {status}"]}}},{l:"de",t:{"User status: {status}":{v:["Benutzerstatus: {status}"]}}},{l:"de-DE",t:{"User status: {status}":{v:["Benutzerstatus: {status}"]}}},{l:"el",t:{"User status: {status}":{v:["Κατάσταση χρήστη: {status}"]}}},{l:"en-GB",t:{"User status: {status}":{v:["User status: {status}"]}}},{l:"eo",t:{}},{l:"es",t:{"User status: {status}":{v:["Estatus del usuario: {status}"]}}},{l:"es-AR",t:{"User status: {status}":{v:["Estado del usuario: {status}"]}}},{l:"es-EC",t:{}},{l:"es-MX",t:{"User status: {status}":{v:["Estado del usuario: {status}"]}}},{l:"et-EE",t:{"User status: {status}":{v:["Kasutaja olek: {status}"]}}},{l:"eu",t:{}},{l:"fa",t:{"User status: {status}":{v:["وضعیت کاربر: {status}"]}}},{l:"fi",t:{"User status: {status}":{v:["Käyttäjän tila: {status}"]}}},{l:"fr",t:{"User status: {status}":{v:["Statut de l'utilisateur : {status}"]}}},{l:"ga",t:{"User status: {status}":{v:["Stádas úsáideora: {status}"]}}},{l:"gl",t:{"User status: {status}":{v:["Estado do usuario: {status}"]}}},{l:"he",t:{}},{l:"hr",t:{"User status: {status}":{v:["Status korisnika: {status}"]}}},{l:"hu",t:{"User status: {status}":{v:["Felhasználó állapota: {status}"]}}},{l:"id",t:{"User status: {status}":{v:["Status pengguna: {status}"]}}},{l:"is",t:{"User status: {status}":{v:["Staða notanda: {status}"]}}},{l:"it",t:{"User status: {status}":{v:["Stato dell'utente: {status}"]}}},{l:"ja",t:{"User status: {status}":{v:["ユーザのステータス: {status}"]}}},{l:"ja-JP",t:{"User status: {status}":{v:["ユーザのステータス: {status}"]}}},{l:"ko",t:{"User status: {status}":{v:["사용자 상태: {status}"]}}},{l:"lo",t:{"User status: {status}":{v:["ສະຖານະຜູ້ໃຊ້: {status}"]}}},{l:"lt-LT",t:{"User status: {status}":{v:["Naudotojo būsena: {status}"]}}},{l:"lv",t:{}},{l:"mk",t:{"User status: {status}":{v:["Статус: {status}"]}}},{l:"mn",t:{"User status: {status}":{v:["Хэрэглэгчийн төлөв: {status}"]}}},{l:"my",t:{}},{l:"nb",t:{"User status: {status}":{v:["Brukerstatus: {status}"]}}},{l:"nl",t:{"User status: {status}":{v:["Gebruikersstatus: {status}"]}}},{l:"oc",t:{}},{l:"pl",t:{"User status: {status}":{v:["Status użytkownika: {status}"]}}},{l:"pt-BR",t:{"User status: {status}":{v:["Status do usuário: {status}"]}}},{l:"pt-PT",t:{"User status: {status}":{v:["Estado do utilizador: {status}"]}}},{l:"ro",t:{"User status: {status}":{v:["Status utilizator: {status}"]}}},{l:"ru",t:{"User status: {status}":{v:["Статус пользователя: {status}"]}}},{l:"sk",t:{"User status: {status}":{v:["Stav užívateľa: {status}"]}}},{l:"sl",t:{}},{l:"sr",t:{"User status: {status}":{v:["Статус корисника: {status}"]}}},{l:"sv",t:{"User status: {status}":{v:["Användarstatus: {status}"]}}},{l:"tr",t:{"User status: {status}":{v:["Kullanıcı durumu: {status}"]}}},{l:"uk",t:{"User status: {status}":{v:["Статус користувача: {status}"]}}},{l:"uz",t:{"User status: {status}":{v:["Foydalanuvchi holati: {status}"]}}},{l:"zh-CN",t:{"User status: {status}":{v:["用户状态:{status}"]}}},{l:"zh-HK",t:{"User status: {status}":{v:["用戶狀態:{status}"]}}},{l:"zh-TW",t:{"User status: {status}":{v:["使用者狀態:{status}"]}}}];function ev(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function r2(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&ev(e.default)}const tv=Object.assign;function l2(e,t){const u={};for(const s in t){const n=t[s];u[s]=uv(n)?n.map(e):e(n)}return u}const d2=()=>{},uv=Array.isArray;function m2(e,t){const u={};for(const s in e)u[s]=s in t?t[s]:e[s];return u}const t3=Symbol("");function c2(e,t){return tv(new Error,{type:e,[t3]:!0},t)}function g2(e,t){return e instanceof Error&&t3 in e&&(t==null||!!(e.type&t))}const f2=Symbol(""),p2=Symbol(""),sv=Symbol(""),h2=Symbol(""),v2=Symbol("");var u3={},Gi={};Gi.byteLength=ov,Gi.toByteArray=rv,Gi.fromByteArray=mv;for(var pu=[],Ht=[],nv=typeof Uint8Array<"u"?Uint8Array:Array,Ho="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Gs=0,iv=Ho.length;Gs0)throw new Error("Invalid string. Length must be a multiple of 4");var u=e.indexOf("=");u===-1&&(u=t);var s=u===t?0:4-u%4;return[u,s]}function ov(e){var t=s3(e),u=t[0],s=t[1];return(u+s)*3/4-s}function av(e,t,u){return(t+u)*3/4-u}function rv(e){var t,u=s3(e),s=u[0],n=u[1],i=new nv(av(e,s,n)),o=0,a=n>0?s-4:s,r;for(r=0;r>16&255,i[o++]=t>>8&255,i[o++]=t&255;return n===2&&(t=Ht[e.charCodeAt(r)]<<2|Ht[e.charCodeAt(r+1)]>>4,i[o++]=t&255),n===1&&(t=Ht[e.charCodeAt(r)]<<10|Ht[e.charCodeAt(r+1)]<<4|Ht[e.charCodeAt(r+2)]>>2,i[o++]=t>>8&255,i[o++]=t&255),i}function lv(e){return pu[e>>18&63]+pu[e>>12&63]+pu[e>>6&63]+pu[e&63]}function dv(e,t,u){for(var s,n=[],i=t;ia?a:o+i));return s===1?(t=e[u-1],n.push(pu[t>>2]+pu[t<<4&63]+"==")):s===2&&(t=(e[u-2]<<8)+e[u-1],n.push(pu[t>>10]+pu[t>>4&63]+pu[t<<2&63]+"=")),n.join("")}var xa={};xa.read=function(e,t,u,s,n){var i,o,a=n*8-s-1,r=(1<>1,l=-7,g=u?n-1:0,p=u?-1:1,h=e[t+g];for(g+=p,i=h&(1<<-l)-1,h>>=-l,l+=a;l>0;i=i*256+e[t+g],g+=p,l-=8);for(o=i&(1<<-l)-1,i>>=-l,l+=s;l>0;o=o*256+e[t+g],g+=p,l-=8);if(i===0)i=1-m;else{if(i===r)return o?NaN:(h?-1:1)*(1/0);o=o+Math.pow(2,s),i=i-m}return(h?-1:1)*o*Math.pow(2,i-s)},xa.write=function(e,t,u,s,n,i){var o,a,r,m=i*8-n-1,l=(1<>1,p=n===23?Math.pow(2,-24)-Math.pow(2,-77):0,h=s?0:i-1,y=s?1:-1,E=t<0||t===0&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(a=isNaN(t)?1:0,o=l):(o=Math.floor(Math.log(t)/Math.LN2),t*(r=Math.pow(2,-o))<1&&(o--,r*=2),o+g>=1?t+=p/r:t+=p*Math.pow(2,1-g),t*r>=2&&(o++,r/=2),o+g>=l?(a=0,o=l):o+g>=1?(a=(t*r-1)*Math.pow(2,n),o=o+g):(a=t*Math.pow(2,g-1)*Math.pow(2,n),o=0));n>=8;e[u+h]=a&255,h+=y,a/=256,n-=8);for(o=o<0;e[u+h]=o&255,h+=y,o/=256,m-=8);e[u+h-y]|=E*128};(function(e){const t=Gi,u=xa,s=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;e.Buffer=l,e.SlowBuffer=q,e.INSPECT_MAX_BYTES=50;const n=2147483647;e.kMaxLength=n;const{Uint8Array:i,ArrayBuffer:o,SharedArrayBuffer:a}=globalThis;l.TYPED_ARRAY_SUPPORT=r(),!l.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function r(){try{const d=new i(1),c={foo:function(){return 42}};return Object.setPrototypeOf(c,i.prototype),Object.setPrototypeOf(d,c),d.foo()===42}catch{return!1}}Object.defineProperty(l.prototype,"parent",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.buffer}}),Object.defineProperty(l.prototype,"offset",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.byteOffset}});function m(d){if(d>n)throw new RangeError('The value "'+d+'" is invalid for option "size"');const c=new i(d);return Object.setPrototypeOf(c,l.prototype),c}function l(d,c,f){if(typeof d=="number"){if(typeof c=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return y(d)}return g(d,c,f)}l.poolSize=8192;function g(d,c,f){if(typeof d=="string")return E(d,c);if(o.isView(d))return B(d);if(d==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof d);if(fe(d,o)||d&&fe(d.buffer,o)||typeof a<"u"&&(fe(d,a)||d&&fe(d.buffer,a)))return A(d,c,f);if(typeof d=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');const x=d.valueOf&&d.valueOf();if(x!=null&&x!==d)return l.from(x,c,f);const k=O(d);if(k)return k;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof d[Symbol.toPrimitive]=="function")return l.from(d[Symbol.toPrimitive]("string"),c,f);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof d)}l.from=function(d,c,f){return g(d,c,f)},Object.setPrototypeOf(l.prototype,i.prototype),Object.setPrototypeOf(l,i);function p(d){if(typeof d!="number")throw new TypeError('"size" argument must be of type number');if(d<0)throw new RangeError('The value "'+d+'" is invalid for option "size"')}function h(d,c,f){return p(d),d<=0?m(d):c!==void 0?typeof f=="string"?m(d).fill(c,f):m(d).fill(c):m(d)}l.alloc=function(d,c,f){return h(d,c,f)};function y(d){return p(d),m(d<0?0:S(d)|0)}l.allocUnsafe=function(d){return y(d)},l.allocUnsafeSlow=function(d){return y(d)};function E(d,c){if((typeof c!="string"||c==="")&&(c="utf8"),!l.isEncoding(c))throw new TypeError("Unknown encoding: "+c);const f=I(d,c)|0;let x=m(f);const k=x.write(d,c);return k!==f&&(x=x.slice(0,k)),x}function F(d){const c=d.length<0?0:S(d.length)|0,f=m(c);for(let x=0;x=n)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+n.toString(16)+" bytes");return d|0}function q(d){return+d!=d&&(d=0),l.alloc(+d)}l.isBuffer=function(d){return d!=null&&d._isBuffer===!0&&d!==l.prototype},l.compare=function(d,c){if(fe(d,i)&&(d=l.from(d,d.offset,d.byteLength)),fe(c,i)&&(c=l.from(c,c.offset,c.byteLength)),!l.isBuffer(d)||!l.isBuffer(c))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(d===c)return 0;let f=d.length,x=c.length;for(let k=0,P=Math.min(f,x);kx.length?(l.isBuffer(P)||(P=l.from(P)),P.copy(x,k)):i.prototype.set.call(x,P,k);else if(l.isBuffer(P))P.copy(x,k);else throw new TypeError('"list" argument must be an Array of Buffers');k+=P.length}return x};function I(d,c){if(l.isBuffer(d))return d.length;if(o.isView(d)||fe(d,o))return d.byteLength;if(typeof d!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof d);const f=d.length,x=arguments.length>2&&arguments[2]===!0;if(!x&&f===0)return 0;let k=!1;for(;;)switch(c){case"ascii":case"latin1":case"binary":return f;case"utf8":case"utf-8":return j(d).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return f*2;case"hex":return f>>>1;case"base64":return ae(d).length;default:if(k)return x?-1:j(d).length;c=(""+c).toLowerCase(),k=!0}}l.byteLength=I;function Y(d,c,f){let x=!1;if((c===void 0||c<0)&&(c=0),c>this.length||((f===void 0||f>this.length)&&(f=this.length),f<=0)||(f>>>=0,c>>>=0,f<=c))return"";for(d||(d="utf8");;)switch(d){case"hex":return xe(this,c,f);case"utf8":case"utf-8":return ee(this,c,f);case"ascii":return de(this,c,f);case"latin1":case"binary":return oe(this,c,f);case"base64":return Z(this,c,f);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return qe(this,c,f);default:if(x)throw new TypeError("Unknown encoding: "+d);d=(d+"").toLowerCase(),x=!0}}l.prototype._isBuffer=!0;function ne(d,c,f){const x=d[c];d[c]=d[f],d[f]=x}l.prototype.swap16=function(){const d=this.length;if(d%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let c=0;cc&&(d+=" ... "),""},s&&(l.prototype[s]=l.prototype.inspect),l.prototype.compare=function(d,c,f,x,k){if(fe(d,i)&&(d=l.from(d,d.offset,d.byteLength)),!l.isBuffer(d))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof d);if(c===void 0&&(c=0),f===void 0&&(f=d?d.length:0),x===void 0&&(x=0),k===void 0&&(k=this.length),c<0||f>d.length||x<0||k>this.length)throw new RangeError("out of range index");if(x>=k&&c>=f)return 0;if(x>=k)return-1;if(c>=f)return 1;if(c>>>=0,f>>>=0,x>>>=0,k>>>=0,this===d)return 0;let P=k-x,K=f-c;const Oe=Math.min(P,K),Ke=this.slice(x,k),ye=d.slice(c,f);for(let je=0;je2147483647?f=2147483647:f<-2147483648&&(f=-2147483648),f=+f,Ae(f)&&(f=k?0:d.length-1),f<0&&(f=d.length+f),f>=d.length){if(k)return-1;f=d.length-1}else if(f<0)if(k)f=0;else return-1;if(typeof c=="string"&&(c=l.from(c,x)),l.isBuffer(c))return c.length===0?-1:M(d,c,f,x,k);if(typeof c=="number")return c=c&255,typeof i.prototype.indexOf=="function"?k?i.prototype.indexOf.call(d,c,f):i.prototype.lastIndexOf.call(d,c,f):M(d,[c],f,x,k);throw new TypeError("val must be string, number or Buffer")}function M(d,c,f,x,k){let P=1,K=d.length,Oe=c.length;if(x!==void 0&&(x=String(x).toLowerCase(),x==="ucs2"||x==="ucs-2"||x==="utf16le"||x==="utf-16le")){if(d.length<2||c.length<2)return-1;P=2,K/=2,Oe/=2,f/=2}function Ke(je,Ze){return P===1?je[Ze]:je.readUInt16BE(Ze*P)}let ye;if(k){let je=-1;for(ye=f;yeK&&(f=K-Oe),ye=f;ye>=0;ye--){let je=!0;for(let Ze=0;Zek&&(x=k)):x=k;const P=c.length;x>P/2&&(x=P/2);let K;for(K=0;K>>0,isFinite(f)?(f=f>>>0,x===void 0&&(x="utf8")):(x=f,f=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");const k=this.length-c;if((f===void 0||f>k)&&(f=k),d.length>0&&(f<0||c<0)||c>this.length)throw new RangeError("Attempt to write outside buffer bounds");x||(x="utf8");let P=!1;for(;;)switch(x){case"hex":return ie(this,d,c,f);case"utf8":case"utf-8":return w(this,d,c,f);case"ascii":case"latin1":case"binary":return T(this,d,c,f);case"base64":return V(this,d,c,f);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ue(this,d,c,f);default:if(P)throw new TypeError("Unknown encoding: "+x);x=(""+x).toLowerCase(),P=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function Z(d,c,f){return c===0&&f===d.length?t.fromByteArray(d):t.fromByteArray(d.slice(c,f))}function ee(d,c,f){f=Math.min(d.length,f);const x=[];let k=c;for(;k239?4:P>223?3:P>191?2:1;if(k+Oe<=f){let Ke,ye,je,Ze;switch(Oe){case 1:P<128&&(K=P);break;case 2:Ke=d[k+1],(Ke&192)===128&&(Ze=(P&31)<<6|Ke&63,Ze>127&&(K=Ze));break;case 3:Ke=d[k+1],ye=d[k+2],(Ke&192)===128&&(ye&192)===128&&(Ze=(P&15)<<12|(Ke&63)<<6|ye&63,Ze>2047&&(Ze<55296||Ze>57343)&&(K=Ze));break;case 4:Ke=d[k+1],ye=d[k+2],je=d[k+3],(Ke&192)===128&&(ye&192)===128&&(je&192)===128&&(Ze=(P&15)<<18|(Ke&63)<<12|(ye&63)<<6|je&63,Ze>65535&&Ze<1114112&&(K=Ze))}}K===null?(K=65533,Oe=1):K>65535&&(K-=65536,x.push(K>>>10&1023|55296),K=56320|K&1023),x.push(K),k+=Oe}return ce(x)}const se=4096;function ce(d){const c=d.length;if(c<=se)return String.fromCharCode.apply(String,d);let f="",x=0;for(;xx)&&(f=x);let k="";for(let P=c;Pf&&(d=f),c<0?(c+=f,c<0&&(c=0)):c>f&&(c=f),cf)throw new RangeError("Trying to access beyond buffer length")}l.prototype.readUintLE=l.prototype.readUIntLE=function(d,c,f){d=d>>>0,c=c>>>0,f||Ne(d,c,this.length);let x=this[d],k=1,P=0;for(;++P>>0,c=c>>>0,f||Ne(d,c,this.length);let x=this[d+--c],k=1;for(;c>0&&(k*=256);)x+=this[d+--c]*k;return x},l.prototype.readUint8=l.prototype.readUInt8=function(d,c){return d=d>>>0,c||Ne(d,1,this.length),this[d]},l.prototype.readUint16LE=l.prototype.readUInt16LE=function(d,c){return d=d>>>0,c||Ne(d,2,this.length),this[d]|this[d+1]<<8},l.prototype.readUint16BE=l.prototype.readUInt16BE=function(d,c){return d=d>>>0,c||Ne(d,2,this.length),this[d]<<8|this[d+1]},l.prototype.readUint32LE=l.prototype.readUInt32LE=function(d,c){return d=d>>>0,c||Ne(d,4,this.length),(this[d]|this[d+1]<<8|this[d+2]<<16)+this[d+3]*16777216},l.prototype.readUint32BE=l.prototype.readUInt32BE=function(d,c){return d=d>>>0,c||Ne(d,4,this.length),this[d]*16777216+(this[d+1]<<16|this[d+2]<<8|this[d+3])},l.prototype.readBigUInt64LE=De(function(d){d=d>>>0,N(d,"offset");const c=this[d],f=this[d+7];(c===void 0||f===void 0)&&W(d,this.length-8);const x=c+this[++d]*2**8+this[++d]*2**16+this[++d]*2**24,k=this[++d]+this[++d]*2**8+this[++d]*2**16+f*2**24;return BigInt(x)+(BigInt(k)<>>0,N(d,"offset");const c=this[d],f=this[d+7];(c===void 0||f===void 0)&&W(d,this.length-8);const x=c*2**24+this[++d]*2**16+this[++d]*2**8+this[++d],k=this[++d]*2**24+this[++d]*2**16+this[++d]*2**8+f;return(BigInt(x)<>>0,c=c>>>0,f||Ne(d,c,this.length);let x=this[d],k=1,P=0;for(;++P=k&&(x-=Math.pow(2,8*c)),x},l.prototype.readIntBE=function(d,c,f){d=d>>>0,c=c>>>0,f||Ne(d,c,this.length);let x=c,k=1,P=this[d+--x];for(;x>0&&(k*=256);)P+=this[d+--x]*k;return k*=128,P>=k&&(P-=Math.pow(2,8*c)),P},l.prototype.readInt8=function(d,c){return d=d>>>0,c||Ne(d,1,this.length),this[d]&128?(255-this[d]+1)*-1:this[d]},l.prototype.readInt16LE=function(d,c){d=d>>>0,c||Ne(d,2,this.length);const f=this[d]|this[d+1]<<8;return f&32768?f|4294901760:f},l.prototype.readInt16BE=function(d,c){d=d>>>0,c||Ne(d,2,this.length);const f=this[d+1]|this[d]<<8;return f&32768?f|4294901760:f},l.prototype.readInt32LE=function(d,c){return d=d>>>0,c||Ne(d,4,this.length),this[d]|this[d+1]<<8|this[d+2]<<16|this[d+3]<<24},l.prototype.readInt32BE=function(d,c){return d=d>>>0,c||Ne(d,4,this.length),this[d]<<24|this[d+1]<<16|this[d+2]<<8|this[d+3]},l.prototype.readBigInt64LE=De(function(d){d=d>>>0,N(d,"offset");const c=this[d],f=this[d+7];(c===void 0||f===void 0)&&W(d,this.length-8);const x=this[d+4]+this[d+5]*2**8+this[d+6]*2**16+(f<<24);return(BigInt(x)<>>0,N(d,"offset");const c=this[d],f=this[d+7];(c===void 0||f===void 0)&&W(d,this.length-8);const x=(c<<24)+this[++d]*2**16+this[++d]*2**8+this[++d];return(BigInt(x)<>>0,c||Ne(d,4,this.length),u.read(this,d,!0,23,4)},l.prototype.readFloatBE=function(d,c){return d=d>>>0,c||Ne(d,4,this.length),u.read(this,d,!1,23,4)},l.prototype.readDoubleLE=function(d,c){return d=d>>>0,c||Ne(d,8,this.length),u.read(this,d,!0,52,8)},l.prototype.readDoubleBE=function(d,c){return d=d>>>0,c||Ne(d,8,this.length),u.read(this,d,!1,52,8)};function Le(d,c,f,x,k,P){if(!l.isBuffer(d))throw new TypeError('"buffer" argument must be a Buffer instance');if(c>k||cd.length)throw new RangeError("Index out of range")}l.prototype.writeUintLE=l.prototype.writeUIntLE=function(d,c,f,x){if(d=+d,c=c>>>0,f=f>>>0,!x){const K=Math.pow(2,8*f)-1;Le(this,d,c,f,K,0)}let k=1,P=0;for(this[c]=d&255;++P>>0,f=f>>>0,!x){const K=Math.pow(2,8*f)-1;Le(this,d,c,f,K,0)}let k=f-1,P=1;for(this[c+k]=d&255;--k>=0&&(P*=256);)this[c+k]=d/P&255;return c+f},l.prototype.writeUint8=l.prototype.writeUInt8=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,1,255,0),this[c]=d&255,c+1},l.prototype.writeUint16LE=l.prototype.writeUInt16LE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,2,65535,0),this[c]=d&255,this[c+1]=d>>>8,c+2},l.prototype.writeUint16BE=l.prototype.writeUInt16BE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,2,65535,0),this[c]=d>>>8,this[c+1]=d&255,c+2},l.prototype.writeUint32LE=l.prototype.writeUInt32LE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,4,4294967295,0),this[c+3]=d>>>24,this[c+2]=d>>>16,this[c+1]=d>>>8,this[c]=d&255,c+4},l.prototype.writeUint32BE=l.prototype.writeUInt32BE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,4,4294967295,0),this[c]=d>>>24,this[c+1]=d>>>16,this[c+2]=d>>>8,this[c+3]=d&255,c+4};function he(d,c,f,x,k){z(c,x,k,d,f,7);let P=Number(c&BigInt(4294967295));d[f++]=P,P=P>>8,d[f++]=P,P=P>>8,d[f++]=P,P=P>>8,d[f++]=P;let K=Number(c>>BigInt(32)&BigInt(4294967295));return d[f++]=K,K=K>>8,d[f++]=K,K=K>>8,d[f++]=K,K=K>>8,d[f++]=K,f}function We(d,c,f,x,k){z(c,x,k,d,f,7);let P=Number(c&BigInt(4294967295));d[f+7]=P,P=P>>8,d[f+6]=P,P=P>>8,d[f+5]=P,P=P>>8,d[f+4]=P;let K=Number(c>>BigInt(32)&BigInt(4294967295));return d[f+3]=K,K=K>>8,d[f+2]=K,K=K>>8,d[f+1]=K,K=K>>8,d[f]=K,f+8}l.prototype.writeBigUInt64LE=De(function(d,c=0){return he(this,d,c,BigInt(0),BigInt("0xffffffffffffffff"))}),l.prototype.writeBigUInt64BE=De(function(d,c=0){return We(this,d,c,BigInt(0),BigInt("0xffffffffffffffff"))}),l.prototype.writeIntLE=function(d,c,f,x){if(d=+d,c=c>>>0,!x){const Oe=Math.pow(2,8*f-1);Le(this,d,c,f,Oe-1,-Oe)}let k=0,P=1,K=0;for(this[c]=d&255;++k>0)-K&255;return c+f},l.prototype.writeIntBE=function(d,c,f,x){if(d=+d,c=c>>>0,!x){const Oe=Math.pow(2,8*f-1);Le(this,d,c,f,Oe-1,-Oe)}let k=f-1,P=1,K=0;for(this[c+k]=d&255;--k>=0&&(P*=256);)d<0&&K===0&&this[c+k+1]!==0&&(K=1),this[c+k]=(d/P>>0)-K&255;return c+f},l.prototype.writeInt8=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,1,127,-128),d<0&&(d=255+d+1),this[c]=d&255,c+1},l.prototype.writeInt16LE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,2,32767,-32768),this[c]=d&255,this[c+1]=d>>>8,c+2},l.prototype.writeInt16BE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,2,32767,-32768),this[c]=d>>>8,this[c+1]=d&255,c+2},l.prototype.writeInt32LE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,4,2147483647,-2147483648),this[c]=d&255,this[c+1]=d>>>8,this[c+2]=d>>>16,this[c+3]=d>>>24,c+4},l.prototype.writeInt32BE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,4,2147483647,-2147483648),d<0&&(d=4294967295+d+1),this[c]=d>>>24,this[c+1]=d>>>16,this[c+2]=d>>>8,this[c+3]=d&255,c+4},l.prototype.writeBigInt64LE=De(function(d,c=0){return he(this,d,c,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),l.prototype.writeBigInt64BE=De(function(d,c=0){return We(this,d,c,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function Tt(d,c,f,x,k,P){if(f+x>d.length)throw new RangeError("Index out of range");if(f<0)throw new RangeError("Index out of range")}function nu(d,c,f,x,k){return c=+c,f=f>>>0,k||Tt(d,c,f,4),u.write(d,c,f,x,23,4),f+4}l.prototype.writeFloatLE=function(d,c,f){return nu(this,d,c,!0,f)},l.prototype.writeFloatBE=function(d,c,f){return nu(this,d,c,!1,f)};function Vt(d,c,f,x,k){return c=+c,f=f>>>0,k||Tt(d,c,f,8),u.write(d,c,f,x,52,8),f+8}l.prototype.writeDoubleLE=function(d,c,f){return Vt(this,d,c,!0,f)},l.prototype.writeDoubleBE=function(d,c,f){return Vt(this,d,c,!1,f)},l.prototype.copy=function(d,c,f,x){if(!l.isBuffer(d))throw new TypeError("argument should be a Buffer");if(f||(f=0),!x&&x!==0&&(x=this.length),c>=d.length&&(c=d.length),c||(c=0),x>0&&x=this.length)throw new RangeError("Index out of range");if(x<0)throw new RangeError("sourceEnd out of bounds");x>this.length&&(x=this.length),d.length-c>>0,f=f===void 0?this.length:f>>>0,d||(d=0);let k;if(typeof d=="number")for(k=c;k2**32?k=_(String(f)):typeof f=="bigint"&&(k=String(f),(f>BigInt(2)**BigInt(32)||f<-(BigInt(2)**BigInt(32)))&&(k=_(k)),k+="n"),x+=` It must be ${c}. Received ${k}`,x},RangeError);function _(d){let c="",f=d.length;const x=d[0]==="-"?1:0;for(;f>=x+4;f-=3)c=`_${d.slice(f-3,f)}${c}`;return`${d.slice(0,f)}${c}`}function $(d,c,f){N(c,"offset"),(d[c]===void 0||d[c+f]===void 0)&&W(c,d.length-(f+1))}function z(d,c,f,x,k,P){if(d>f||d= 0${K} and < 2${K} ** ${(P+1)*8}${K}`:Oe=`>= -(2${K} ** ${(P+1)*8-1}${K}) and < 2 ** ${(P+1)*8-1}${K}`,new C.ERR_OUT_OF_RANGE("value",Oe,d)}$(x,k,P)}function N(d,c){if(typeof d!="number")throw new C.ERR_INVALID_ARG_TYPE(c,"number",d)}function W(d,c,f){throw Math.floor(d)!==d?(N(d,f),new C.ERR_OUT_OF_RANGE("offset","an integer",d)):c<0?new C.ERR_BUFFER_OUT_OF_BOUNDS:new C.ERR_OUT_OF_RANGE("offset",`>= 0 and <= ${c}`,d)}const U=/[^+/0-9A-Za-z-_]/g;function H(d){if(d=d.split("=")[0],d=d.trim().replace(U,""),d.length<2)return"";for(;d.length%4!==0;)d=d+"=";return d}function j(d,c){c=c||1/0;let f;const x=d.length;let k=null;const P=[];for(let K=0;K55295&&f<57344){if(!k){if(f>56319){(c-=3)>-1&&P.push(239,191,189);continue}else if(K+1===x){(c-=3)>-1&&P.push(239,191,189);continue}k=f;continue}if(f<56320){(c-=3)>-1&&P.push(239,191,189),k=f;continue}f=(k-55296<<10|f-56320)+65536}else k&&(c-=3)>-1&&P.push(239,191,189);if(k=null,f<128){if((c-=1)<0)break;P.push(f)}else if(f<2048){if((c-=2)<0)break;P.push(f>>6|192,f&63|128)}else if(f<65536){if((c-=3)<0)break;P.push(f>>12|224,f>>6&63|128,f&63|128)}else if(f<1114112){if((c-=4)<0)break;P.push(f>>18|240,f>>12&63|128,f>>6&63|128,f&63|128)}else throw new Error("Invalid code point")}return P}function re(d){const c=[];for(let f=0;f>8,k=f%256,P.push(k),P.push(x);return P}function ae(d){return t.toByteArray(H(d))}function le(d,c,f,x){let k;for(k=0;k=c.length||k>=d.length);++k)c[k+f]=d[k];return k}function fe(d,c){return d instanceof c||d!=null&&d.constructor!=null&&d.constructor.name!=null&&d.constructor.name===c.name}function Ae(d){return d!==d}const _e=(function(){const d="0123456789abcdef",c=new Array(256);for(let f=0;f<16;++f){const x=f*16;for(let k=0;k<16;++k)c[x+k]=d[f]+d[k]}return c})();function De(d){return typeof BigInt>"u"?Ye:d}function Ye(){throw new Error("BigInt not supported")}})(u3);const e4=u3.Buffer,[cv]=window.OC?.config?.version?.split(".")??[],n3=Number.parseInt(cv??"34"),nr=n3<32,gv=n3<34,fv=Symbol.for("NcFormBox:context");function pv(){return Nu(fv,{isInFormBox:!1,formBoxItemClass:void 0})}const rt=(e,t)=>{const u=e.__vccOpts||e;for(const[s,n]of t)u[s]=n;return u},hv={class:"button-vue__wrapper"},vv={class:"button-vue__icon"},Ev={class:"button-vue__text"},Cv=tu({__name:"NcButton",props:{alignment:{default:"center"},ariaLabel:{default:void 0},disabled:{type:Boolean},download:{type:[String,Boolean],default:void 0},href:{default:void 0},pressed:{type:Boolean,default:void 0},size:{default:"normal"},target:{default:"_self"},text:{default:void 0},to:{default:void 0},type:{default:"button"},variant:{default:"secondary"},wide:{type:Boolean}},emits:["click","update:pressed"],setup(e,{emit:t}){const u=e,s=t,{formBoxItemClass:n}=pv(),i=Nu(sv,null)!==null,o=Ue(()=>i&&u.to?"RouterLink":u.href?"a":"button"),a=Ue(()=>o.value==="button"&&typeof u.pressed=="boolean"),r=Ue(()=>u.pressed?"primary":u.pressed===!1&&u.variant==="primary"?"secondary":u.variant),m=Ue(()=>r.value.startsWith("tertiary")),l=Ue(()=>u.alignment.split("-")[0]),g=Ue(()=>u.alignment.includes("-")),p=Nu("NcPopover:trigger:attrs",()=>({}),!1),h=Ue(()=>p()),y=Ue(()=>{if(o.value==="RouterLink")return{to:u.to,activeClass:"active"};if(o.value==="a")return{href:u.href||"#",target:u.target,rel:"nofollow noreferrer noopener",download:u.download||void 0};if(o.value==="button")return{...h.value,"aria-pressed":u.pressed,type:u.type,disabled:u.disabled}});function E(F){a.value&&s("update:pressed",!u.pressed),s("click",F)}return(F,B)=>(X(),et(rn(o.value),ut({class:["button-vue",[`button-vue--size-${e.size}`,{[`button-vue--${r.value}`]:r.value,"button-vue--tertiary":m.value,"button-vue--wide":e.wide,[`button-vue--${l.value}`]:l.value!=="center","button-vue--reverse":g.value,"button-vue--legacy":Fe(nr),"button-vue--legacy34":Fe(gv)},Fe(n)]],"aria-label":e.ariaLabel},y.value,{onClick:E}),{default:Pe(()=>[ve("span",hv,[ve("span",vv,[ze(F.$slots,"icon",{},void 0,!0)]),ve("span",Ev,[ze(F.$slots,"default",{},()=>[Ns(dt(e.text),1)],!0)])])]),_:3},16,["class","aria-label"]))}}),As=rt(Cv,[["__scopeId","data-v-00a99684"]]),Bv=["aria-hidden","aria-label"],yv={key:0,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},xv=["d"],Av=["innerHTML"],bv=tu({__name:"NcIconSvgWrapper",props:{directional:{type:Boolean},inline:{type:Boolean},svg:{default:""},name:{default:void 0},path:{default:""},size:{default:20}},setup(e){X0(n=>({fb515064:u.value}));const t=e,u=Ue(()=>typeof t.size=="number"?`${t.size}px`:t.size),s=Ue(()=>{if(!t.svg||t.path)return;const n=dd.sanitize(t.svg),i=new DOMParser().parseFromString(n,"image/svg+xml");return i.querySelector("parsererror")?"":(i.documentElement.id&&i.documentElement.removeAttribute("id"),i.documentElement.outerHTML)});return(n,i)=>(X(),me("span",{"aria-hidden":e.name?void 0:"true","aria-label":e.name||void 0,class:Bt(["icon-vue",{"icon-vue--directional":e.directional,"icon-vue--inline":e.inline}]),role:"img"},[s.value?(X(),me("span",{key:1,innerHTML:s.value},null,8,Av)):(X(),me("svg",yv,[ve("path",{d:e.path},null,8,xv)]))],10,Bv))}}),Es=rt(bv,[["__scopeId","data-v-aaedb1c3"]]);kv();function wv(){return globalThis._nc_auth_requestToken?globalThis._nc_auth_requestToken:globalThis.document?document.head.dataset.requesttoken??null:null}function i3(e){if(!e||typeof e!="string")throw new Error("Invalid CSRF token given",{cause:{token:e}});globalThis._nc_auth_requestToken!==e&&(globalThis._nc_auth_requestToken=e,globalThis.document&&(document.head.dataset.requesttoken=e),bh("csrf-token-update",{token:e,_internal:!0}))}async function Dv(){const e=id("/csrftoken"),t=await fetch(e);if(!t.ok)throw new Error("Could not fetch CSRF token from API",{cause:t});try{const{token:u}=await t.json();return i3(u),u}catch(u){throw new Error("Could not parse CSRF token from API response",{cause:u})}}function Fv(e){const t=async({token:u})=>{try{e(u)}catch(s){console.error("Error updating CSRF token observer",s)}};return Ym("csrf-token-update",t),()=>Ah("csrf-token-update",t)}function kv(){Ym("csrf-token-update",({token:e,_internal:t})=>{t||i3(e)})}ah("public").persist().build();let qs;function t4(e,t){return e?e.getAttribute(t):null}function Sv(){if(qs!==void 0)return qs;const e=document?.getElementsByTagName("head")[0];if(!e)return null;const t=t4(e,"data-user");return t===null?(qs=null,qs):(qs={uid:t,displayName:t4(e,"data-user-displayname"),isAdmin:!!window._oc_isadmin},qs)}var nt=(e=>(e[e.Debug=0]="Debug",e[e.Info=1]="Info",e[e.Warn=2]="Warn",e[e.Error=3]="Error",e[e.Fatal=4]="Fatal",e))(nt||{});class Nv{context;constructor(t){this.context=t||{}}formatMessage(t,u,s){let n="["+nt[u].toUpperCase()+"] ";return s&&s.app&&(n+=s.app+": "),typeof t=="string"?n+t:(n+=`Unexpected ${t.name}`,t.message&&(n+=` "${t.message}"`),u===nt.Debug&&t.stack&&(n+=` +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function jc(e,t){return Pc(e)||Rc(e,t)||Ic(e,t)||Lc()}function Ic(e,t){if(e){if(typeof e=="string")return Lr(e,t);var u={}.toString.call(e).slice(8,-1);return u==="Object"&&e.constructor&&(u=e.constructor.name),u==="Map"||u==="Set"?Array.from(e):u==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(u)?Lr(e,t):void 0}}const ad=Object.entries,jr=Object.setPrototypeOf,Mc=Object.isFrozen,$c=Object.getPrototypeOf,Uc=Object.getOwnPropertyDescriptor;let Et=Object.freeze,yt=Object.seal,Zs=Object.create,rd=typeof Reflect<"u"&&Reflect,sa=rd.apply,na=rd.construct;Et||(Et=function(e){return e}),yt||(yt=function(e){return e}),sa||(sa=function(e,t){for(var u=arguments.length,s=new Array(u>2?u-2:0),n=2;n1?t-1:0),s=1;s"u"?null:at(BigInt.prototype.toString),Vr=typeof Symbol>"u"?null:at(Symbol.prototype.toString),ct=at(Object.prototype.hasOwnProperty),wn=at(Object.prototype.toString),mt=at(RegExp.prototype.test),rs=Kc(TypeError);function at(e){return function(t){t instanceof RegExp&&(t.lastIndex=0);for(var u=arguments.length,s=new Array(u>1?u-1:0),n=1;n2&&arguments[2]!==void 0?arguments[2]:Tn;if(jr&&jr(e,null),!Xu(t))return e;let s=t.length;for(;s--;){let n=t[s];if(typeof n=="string"){const i=u(n);i!==n&&(Mc(t)||(t[s]=i),n=i)}e[n]=!0}return e}function Yc(e){for(let t=0;t/g),ug=yt(/\${[\w\W]*/g),sg=yt(/^data-[\-\w.\u00B7-\uFFFF]+$/),ng=yt(/^aria-[\-\w]+$/),Kr=yt(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),ig=yt(/^(?:\w+script|data):/i),og=yt(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),ag=yt(/^html$/i),rg=yt(/^[a-z][.\w]*(-[.\w]+)+$/i),Yr=yt(/<[/\w!]/g),Zr=yt(/<[/\w]/g),lg=yt(/<\/no(script|embed|frames)/i),dg=yt(/\/>/i),jt={element:1,attribute:2,text:3,cdataSection:4,entityReference:5,entityNode:6,processingInstruction:7,comment:8,document:9,documentType:10,documentFragment:11,notation:12},mg=function(){return typeof window>"u"?null:window},cg=function(e,t){if(typeof e!="object"||typeof e.createPolicy!="function")return null;let u=null;const s="data-tt-policy-suffix";t&&t.hasAttribute(s)&&(u=t.getAttribute(s));const n="dompurify"+(u?"#"+u:"");try{return e.createPolicy(n,{createHTML(i){return i},createScriptURL(i){return i}})}catch{return console.warn("TrustedTypes policy "+n+" could not be created."),null}},Xr=function(){return{afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}},Vu=function(e,t,u,s){return ct(e,t)&&Xu(e[t])?we(s.base?St(s.base):{},e[t],s.transform):u};function ld(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:mg();const t=v=>ld(v);if(t.version="3.4.12",t.removed=[],!e||!e.document||e.document.nodeType!==jt.document||!e.Element)return t.isSupported=!1,t;let u=e.document;const s=u,n=s.currentScript;e.DocumentFragment;const i=e.HTMLTemplateElement,o=e.Node,a=e.Element,r=e.NodeFilter;e.NamedNodeMap===void 0&&(e.NamedNodeMap||e.MozNamedAttrMap),e.HTMLFormElement;const l=e.DOMParser,g=e.trustedTypes,p=a.prototype,h=ru(p,"cloneNode"),y=ru(p,"remove"),E=ru(p,"nextSibling"),F=ru(p,"childNodes"),B=ru(p,"parentNode"),A=ru(p,"shadowRoot"),O=ru(p,"attributes"),S=o&&o.prototype?ru(o.prototype,"nodeType"):null,q=o&&o.prototype?ru(o.prototype,"nodeName"):null;if(typeof i=="function"){const v=u.createElement("template");v.content&&v.content.ownerDocument&&(u=v.content.ownerDocument)}let I,Y="",ne,G=!1,M=0;const ie=function(){if(M>0)throw rs('A configured TRUSTED_TYPES_POLICY callback (createHTML or createScriptURL) must not call DOMPurify.sanitize, as that causes infinite recursion. Do not pass a policy whose callbacks wrap DOMPurify as TRUSTED_TYPES_POLICY; see the "DOMPurify and Trusted Types" section of the README.')},w=function(v){ie(),M++;try{return I.createHTML(v)}finally{M--}},T=function(v){ie(),M++;try{return I.createScriptURL(v)}finally{M--}},V=function(){return G||(ne=cg(g,n),G=!0),ne},ue=u,Z=ue.implementation,ee=ue.createNodeIterator,se=ue.createDocumentFragment,ce=ue.getElementsByTagName,de=s.importNode;let oe=Xr();t.isSupported=typeof ad=="function"&&typeof B=="function"&&Z&&Z.createHTMLDocument!==void 0;const xe=eg,qe=tg,_e=ug,Le=sg,he=ng,We=ig,Tt=og,nu=rg;let Vt=Kr,C=null;const b=we({},[...Wr,...Co,...Bo,...yo,...Hr]);let _=null;const $=we({},[...Gr,...xo,...qr,...Fi]);let z=Object.seal(Zs(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),N=null,W=null;const U=Object.seal(Zs(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}}));let H=!0,j=!0,re=!1,J=!0,ae=!1,le=!0,fe=!1,Ae=!1,Oe=null,De=null,Ye=!1,d=!1,c=!1,f=!1,x=!0,k=!1;const P="user-content-";let K=!0,Te=!1,Ke={},ye=null;const je=we({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","selectedcontent","style","svg","template","thead","title","video","xmp"]);let Ze=null;const br=we({},["audio","video","img","source","image","track"]);let ao=null;const wr=we({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),yi="http://www.w3.org/1998/Math/MathML",xi="http://www.w3.org/2000/svg",iu="http://www.w3.org/1999/xhtml";let Ms=iu,ro=!1,lo=null;const Ec=we({},[yi,xi,iu],Eo),Dr=Et(["mi","mo","mn","ms","mtext"]);let mo=we({},Dr);const Fr=Et(["annotation-xml"]);let co=we({},Fr);const Cc=we({},["title","style","font","a","script"]);let xn=null;const Bc=["application/xhtml+xml","text/html"],yc="text/html";let Xe=null,$s=null;const xc=u.createElement("form"),kr=function(v){return v instanceof RegExp||v instanceof Function},go=function(){let v=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};if($s&&$s===v)return;(!v||typeof v!="object")&&(v={}),v=St(v),xn=Bc.indexOf(v.PARSER_MEDIA_TYPE)===-1?yc:v.PARSER_MEDIA_TYPE,Xe=xn==="application/xhtml+xml"?Eo:Tn,C=Vu(v,"ALLOWED_TAGS",b,{transform:Xe}),_=Vu(v,"ALLOWED_ATTR",$,{transform:Xe}),lo=Vu(v,"ALLOWED_NAMESPACES",Ec,{transform:Eo}),ao=Vu(v,"ADD_URI_SAFE_ATTR",wr,{transform:Xe,base:wr}),Ze=Vu(v,"ADD_DATA_URI_TAGS",br,{transform:Xe,base:br}),ye=Vu(v,"FORBID_CONTENTS",je,{transform:Xe}),N=Vu(v,"FORBID_TAGS",St({}),{transform:Xe}),W=Vu(v,"FORBID_ATTR",St({}),{transform:Xe}),Ke=ct(v,"USE_PROFILES")?v.USE_PROFILES&&typeof v.USE_PROFILES=="object"?St(v.USE_PROFILES):v.USE_PROFILES:!1,H=v.ALLOW_ARIA_ATTR!==!1,j=v.ALLOW_DATA_ATTR!==!1,re=v.ALLOW_UNKNOWN_PROTOCOLS||!1,J=v.ALLOW_SELF_CLOSE_IN_ATTR!==!1,ae=v.SAFE_FOR_TEMPLATES||!1,le=v.SAFE_FOR_XML!==!1,fe=v.WHOLE_DOCUMENT||!1,d=v.RETURN_DOM||!1,c=v.RETURN_DOM_FRAGMENT||!1,f=v.RETURN_TRUSTED_TYPE||!1,Ye=v.FORCE_BODY||!1,x=v.SANITIZE_DOM!==!1,k=v.SANITIZE_NAMED_PROPS||!1,K=v.KEEP_CONTENT!==!1,Te=v.IN_PLACE||!1,Vt=Xc(v.ALLOWED_URI_REGEXP)?v.ALLOWED_URI_REGEXP:Kr,Ms=typeof v.NAMESPACE=="string"?v.NAMESPACE:iu,mo=ct(v,"MATHML_TEXT_INTEGRATION_POINTS")&&v.MATHML_TEXT_INTEGRATION_POINTS&&typeof v.MATHML_TEXT_INTEGRATION_POINTS=="object"?St(v.MATHML_TEXT_INTEGRATION_POINTS):we({},Dr),co=ct(v,"HTML_INTEGRATION_POINTS")&&v.HTML_INTEGRATION_POINTS&&typeof v.HTML_INTEGRATION_POINTS=="object"?St(v.HTML_INTEGRATION_POINTS):we({},Fr);const R=ct(v,"CUSTOM_ELEMENT_HANDLING")&&v.CUSTOM_ELEMENT_HANDLING&&typeof v.CUSTOM_ELEMENT_HANDLING=="object"?St(v.CUSTOM_ELEMENT_HANDLING):Zs(null);if(z=Zs(null),ct(R,"tagNameCheck")&&kr(R.tagNameCheck)&&(z.tagNameCheck=R.tagNameCheck),ct(R,"attributeNameCheck")&&kr(R.attributeNameCheck)&&(z.attributeNameCheck=R.attributeNameCheck),ct(R,"allowCustomizedBuiltInElements")&&typeof R.allowCustomizedBuiltInElements=="boolean"&&(z.allowCustomizedBuiltInElements=R.allowCustomizedBuiltInElements),yt(z),ae&&(j=!1),c&&(d=!0),Ke&&(C=we({},Hr),_=Zs(null),Ke.html===!0&&(we(C,Wr),we(_,Gr)),Ke.svg===!0&&(we(C,Co),we(_,xo),we(_,Fi)),Ke.svgFilters===!0&&(we(C,Bo),we(_,xo),we(_,Fi)),Ke.mathMl===!0&&(we(C,yo),we(_,qr),we(_,Fi))),U.tagCheck=null,U.attributeCheck=null,ct(v,"ADD_TAGS")&&(typeof v.ADD_TAGS=="function"?U.tagCheck=v.ADD_TAGS:Xu(v.ADD_TAGS)&&(C===b&&(C=St(C)),we(C,v.ADD_TAGS,Xe))),ct(v,"ADD_ATTR")&&(typeof v.ADD_ATTR=="function"?U.attributeCheck=v.ADD_ATTR:Xu(v.ADD_ATTR)&&(_===$&&(_=St(_)),we(_,v.ADD_ATTR,Xe))),ct(v,"ADD_URI_SAFE_ATTR")&&Xu(v.ADD_URI_SAFE_ATTR)&&we(ao,v.ADD_URI_SAFE_ATTR,Xe),ct(v,"FORBID_CONTENTS")&&Xu(v.FORBID_CONTENTS)&&(ye===je&&(ye=St(ye)),we(ye,v.FORBID_CONTENTS,Xe)),ct(v,"ADD_FORBID_CONTENTS")&&Xu(v.ADD_FORBID_CONTENTS)&&(ye===je&&(ye=St(ye)),we(ye,v.ADD_FORBID_CONTENTS,Xe)),K&&(C["#text"]=!0),fe&&we(C,["html","head","body"]),C.table&&(we(C,["tbody"]),delete N.tbody),v.TRUSTED_TYPES_POLICY){if(typeof v.TRUSTED_TYPES_POLICY.createHTML!="function")throw rs('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if(typeof v.TRUSTED_TYPES_POLICY.createScriptURL!="function")throw rs('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');const L=I;I=v.TRUSTED_TYPES_POLICY;try{Y=w("")}catch(Q){throw I=L,Q}}else v.TRUSTED_TYPES_POLICY===null?(I=void 0,Y=""):(I===void 0&&(I=V()),I&&typeof Y=="string"&&(Y=w("")));Et&&Et(v),$s=v},Sr=we({},[...Co,...Bo,...Jc]),Nr=we({},[...yo,...Qc]),Ac=function(v,R,L){return R.namespaceURI===iu?v==="svg":R.namespaceURI===yi?v==="svg"&&(L==="annotation-xml"||mo[L]):!!Sr[v]},bc=function(v,R,L){return R.namespaceURI===iu?v==="math":R.namespaceURI===xi?v==="math"&&co[L]:!!Nr[v]},wc=function(v,R,L){return R.namespaceURI===xi&&!co[L]||R.namespaceURI===yi&&!mo[L]?!1:!Nr[v]&&(Cc[v]||!Sr[v])},Dc=function(v){let R=B(v);(!R||!R.tagName)&&(R={namespaceURI:Ms,tagName:"template"});const L=Tn(v.tagName),Q=Tn(R.tagName);return lo[v.namespaceURI]?v.namespaceURI===xi?Ac(L,R,Q):v.namespaceURI===yi?bc(L,R,Q):v.namespaceURI===iu?wc(L,R,Q):!!(xn==="application/xhtml+xml"&&lo[v.namespaceURI]):!1},os=function(v){Ws(t.removed,{element:v});try{B(v).removeChild(v)}catch{if(y(v),!B(v))throw rs("a node selected for removal could not be detached from its tree and cannot be safely returned; refusing to sanitize in place")}},Ai=function(v){fo(v);const R=F(v);if(R){const Q=[];Vs(R,Ee=>{Ws(Q,Ee)}),Vs(Q,Ee=>{try{y(Ee)}catch{}})}const L=O(v);if(L)for(let Q=L.length-1;Q>=0;--Q){const Ee=L[Q],Ce=Ee&&Ee.name;if(typeof Ce=="string")try{v.removeAttribute(Ce)}catch{}}},as=function(v,R){try{Ws(t.removed,{attribute:R.getAttributeNode(v),from:R})}catch{Ws(t.removed,{attribute:null,from:R})}if(R.removeAttribute(v),v==="is")if(d||c)try{os(R)}catch{}else try{R.setAttribute(v,"")}catch{}},Fc=function(v){const R=O(v);if(R)for(let L=R.length-1;L>=0;--L){const Q=R[L],Ee=Q&&Q.name;if(!(typeof Ee!="string"||_[Xe(Ee)]))try{v.removeAttribute(Ee)}catch{}}},fo=function(v){const R=[v];for(;R.length>0;){const L=R.pop();(S?S(L):L.nodeType)===jt.element&&Fc(L);const Q=F(L);if(Q)for(let Ee=Q.length-1;Ee>=0;--Ee)R.push(Q[Ee])}},kc=function(v){if(!le)return;const R=[v];for(;R.length>0;){const L=R.pop(),Q=S?S(L):L.nodeType;if(Q===jt.processingInstruction||Q===jt.comment&&mt(Zr,L.data)){try{y(L)}catch{}continue}if(Q===jt.element){const Ce=L,Ie=Xe(q?q(L):L.nodeName);try{Ce.hasAttribute&&Ce.hasAttribute("patchsrc")&&Ce.removeAttribute("patchsrc"),Ce.hasAttribute&&Ce.hasAttribute("for")&&Ie!=="label"&&Ie!=="output"&&Ce.removeAttribute("for")}catch{}}const Ee=F(L);if(Ee)for(let Ce=Ee.length-1;Ce>=0;--Ce)R.push(Ee[Ce])}},_r=function(v){let R=null,L=null;if(Ye)v=""+v;else{const Ce=Mr(v,/^[\r\n\t ]+/);L=Ce&&Ce[0]}xn==="application/xhtml+xml"&&Ms===iu&&(v=''+v+"");const Q=I?w(v):v;if(Ms===iu)try{R=new l().parseFromString(Q,xn)}catch{}if(!R||!R.documentElement){R=Z.createDocument(Ms,"template",null);try{R.documentElement.innerHTML=ro?Y:Q}catch{}}const Ee=R.body||R.documentElement;return v&&L&&Ee.insertBefore(u.createTextNode(L),Ee.childNodes[0]||null),Ms===iu?ce.call(R,fe?"html":"body")[0]:fe?R.documentElement:Ee},Or=function(v){return ee.call(v.ownerDocument||v,v,r.SHOW_ELEMENT|r.SHOW_COMMENT|r.SHOW_TEXT|r.SHOW_PROCESSING_INSTRUCTION|r.SHOW_CDATA_SECTION,null)},bi=function(v){return v=bn(v,xe," "),v=bn(v,qe," "),v=bn(v,_e," "),v},po=function(v){var R;v.normalize();const L=ee.call(v.ownerDocument||v,v,r.SHOW_TEXT|r.SHOW_COMMENT|r.SHOW_CDATA_SECTION|r.SHOW_PROCESSING_INSTRUCTION,null);let Q=L.nextNode();for(;Q;)Q.data=bi(Q.data),Q=L.nextNode();const Ee=(R=v.querySelectorAll)===null||R===void 0?void 0:R.call(v,"template");Ee&&Vs(Ee,Ce=>{Us(Ce.content)&&po(Ce.content)})},wi=function(v){const R=q?q(v):null;return typeof R!="string"||Xe(R)!=="form"?!1:typeof v.nodeName!="string"||typeof v.textContent!="string"||typeof v.removeChild!="function"||v.attributes!==O(v)||typeof v.removeAttribute!="function"||typeof v.setAttribute!="function"||typeof v.namespaceURI!="string"||typeof v.insertBefore!="function"||typeof v.hasChildNodes!="function"||v.nodeType!==S(v)||v.childNodes!==F(v)},Us=function(v){if(!S||typeof v!="object"||v===null)return!1;try{return S(v)===jt.documentFragment}catch{return!1}},An=function(v){if(!S||typeof v!="object"||v===null)return!1;try{return typeof S(v)=="number"}catch{return!1}};function ou(v,R,L){v.length!==0&&Vs(v,Q=>{Q.call(t,R,L,$s)})}const Sc=function(v,R){return!!(le&&v.hasChildNodes()&&!An(v.firstElementChild)&&mt(Yr,v.textContent)&&mt(Yr,v.innerHTML)||le&&v.namespaceURI===iu&&R==="style"&&An(v.firstElementChild)||v.nodeType===jt.processingInstruction||le&&v.nodeType===jt.comment&&mt(Zr,v.data))},Nc=function(v,R){if(!N[R]&&Pr(R)&&(z.tagNameCheck instanceof RegExp&&mt(z.tagNameCheck,R)||z.tagNameCheck instanceof Function&&z.tagNameCheck(R)))return!1;if(K&&!ye[R]){const L=B(v),Q=F(v);if(Q&&L){const Ee=Q.length;for(let Ce=Ee-1;Ce>=0;--Ce){const Ie=Te?Q[Ce]:h(Q[Ce],!0);L.insertBefore(Ie,E(v))}}}return os(v),!0},Tr=function(v,R){if(ou(oe.beforeSanitizeElements,v,null),v!==R&&B(v)===null)return!0;if(wi(v))return os(v),!0;const L=Xe(q?q(v):v.nodeName);if(ou(oe.uponSanitizeElement,v,{tagName:L,allowedTags:C}),v!==R&&B(v)===null)return!0;if(Sc(v,L))return os(v),!0;if(N[L]||!(U.tagCheck instanceof Function&&U.tagCheck(L))&&!C[L]){const Q=Nc(v,L);return Q===!1&&ou(oe.afterSanitizeElements,v,null),Q}if((S?S(v):v.nodeType)===jt.element&&!Dc(v)||(L==="noscript"||L==="noembed"||L==="noframes")&&mt(lg,v.innerHTML))return os(v),!0;if(ae&&v.nodeType===jt.text){const Q=bi(v.textContent);v.textContent!==Q&&(Ws(t.removed,{element:v.cloneNode()}),v.textContent=Q)}return ou(oe.afterSanitizeElements,v,null),!1},zr=function(v,R,L){if(W[R]||le&&R==="patchsrc"||le&&R==="for"&&v!=="label"&&v!=="output"||x&&(R==="id"||R==="name")&&(L in u||L in xc))return!1;const Q=_[R]||U.attributeCheck instanceof Function&&U.attributeCheck(R,v);if(!(j&&mt(Le,R))&&!(H&&mt(he,R))){if(Q){if(!ao[R]&&!mt(Vt,bn(L,Tt,""))&&!((R==="src"||R==="xlink:href"||R==="href")&&v!=="script"&&$r(L,"data:")===0&&Ze[v])&&!(re&&!mt(We,bn(L,Tt,"")))&&L)return!1}else if(!(Pr(v)&&(z.tagNameCheck instanceof RegExp&&mt(z.tagNameCheck,v)||z.tagNameCheck instanceof Function&&z.tagNameCheck(v))&&(z.attributeNameCheck instanceof RegExp&&mt(z.attributeNameCheck,R)||z.attributeNameCheck instanceof Function&&z.attributeNameCheck(R,v))||R==="is"&&z.allowCustomizedBuiltInElements&&(z.tagNameCheck instanceof RegExp&&mt(z.tagNameCheck,L)||z.tagNameCheck instanceof Function&&z.tagNameCheck(L))))return!1}return!0},_c=we({},["annotation-xml","color-profile","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","missing-glyph"]),Pr=function(v){return!_c[Tn(v)]&&mt(nu,v)},Oc=function(v,R,L,Q){if(I&&typeof g=="object"&&typeof g.getAttributeType=="function"&&!L)switch(g.getAttributeType(v,R)){case"TrustedHTML":return w(Q);case"TrustedScriptURL":return T(Q)}return Q},Tc=function(v,R,L,Q){try{L?v.setAttributeNS(L,R,Q):v.setAttribute(R,Q),wi(v)?os(v):Ir(t.removed)}catch{as(R,v)}},Rr=function(v){ou(oe.beforeSanitizeAttributes,v,null);const R=v.attributes;if(!R||wi(v))return;const L={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:_,forceKeepAttr:void 0};let Q=R.length;const Ee=Xe(v.nodeName);for(;Q--;){const Ce=R[Q],Ie=Ce.name,Uu=Ce.namespaceURI,vo=Ce.value,Lt=Xe(Ie),Zt=vo;let Je=Ie==="value"?Zt:Hc(Zt);if(L.attrName=Lt,L.attrValue=Je,L.keepAttr=!0,L.forceKeepAttr=void 0,ou(oe.uponSanitizeAttribute,v,L),Je=L.attrValue,k&&(Lt==="id"||Lt==="name")&&$r(Je,P)!==0&&(as(Ie,v),Je=P+Je),le&&mt(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i,Je)){as(Ie,v);continue}if(Lt==="attributename"&&Mr(Je,"href")){as(Ie,v);continue}if(!L.forceKeepAttr){if(!L.keepAttr){as(Ie,v);continue}if(!J&&mt(dg,Je)){as(Ie,v);continue}if(ae&&(Je=bi(Je)),!zr(Ee,Lt,Je)){as(Ie,v);continue}Je=Oc(Ee,Lt,Uu,Je),Je!==Zt&&Tc(v,Ie,Uu,Je)}}ou(oe.afterSanitizeAttributes,v,null)},Di=function(v){let R=null;const L=Or(v);for(ou(oe.beforeSanitizeShadowDOM,v,null);R=L.nextNode();)if(ou(oe.uponSanitizeShadowNode,R,null),Tr(R,v),Rr(R),Us(R.content)&&Di(R.content),(S?S(R):R.nodeType)===jt.element){const Q=A(R);Us(Q)&&(ho(Q),Di(Q))}ou(oe.afterSanitizeShadowDOM,v,null)},ho=function(v){const R=[{node:v,shadow:null}];for(;R.length>0;){const L=R.pop();if(L.shadow){Di(L.shadow);continue}const Q=L.node,Ee=(S?S(Q):Q.nodeType)===jt.element,Ce=F(Q);if(Ce)for(let Ie=Ce.length-1;Ie>=0;--Ie)R.push({node:Ce[Ie],shadow:null});if(Ee){const Ie=q?q(Q):null;if(typeof Ie=="string"&&Xe(Ie)==="template"){const Uu=Q.content;Us(Uu)&&R.push({node:Uu,shadow:null})}}if(Ee){const Ie=A(Q);Us(Ie)&&R.push({node:null,shadow:Ie},{node:Ie,shadow:null})}}};return t.sanitize=function(v){let R=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},L=null,Q=null,Ee=null,Ce=null;if(ro=!v,ro&&(v=""),typeof v!="string"&&!An(v)&&(v=Zc(v),typeof v!="string"))throw rs("dirty is not a string, aborting");if(!t.isSupported)return v;Ae?(C=Oe,_=De):go(R),(oe.uponSanitizeElement.length>0||oe.uponSanitizeAttribute.length>0)&&(C=St(C)),oe.uponSanitizeAttribute.length>0&&(_=St(_)),t.removed=[];const Ie=Te&&typeof v!="string"&&An(v);if(Ie){kc(v);const Zt=q?q(v):v.nodeName;if(typeof Zt=="string"){const Je=Xe(Zt);if(!C[Je]||N[Je])throw Ai(v),rs("root node is forbidden and cannot be sanitized in-place")}if(wi(v))throw Ai(v),rs("root node is clobbered and cannot be sanitized in-place");try{ho(v)}catch(Je){throw Ai(v),Je}}else if(An(v))L=_r(""),Q=L.ownerDocument.importNode(v,!0),Q.nodeType===jt.element&&Q.nodeName==="BODY"||Q.nodeName==="HTML"?L=Q:L.appendChild(Q),ho(Q);else{if(!d&&!ae&&!fe&&v.indexOf("<")===-1)return I&&f?w(v):v;if(L=_r(v),!L)return d?null:f?Y:""}L&&Ye&&os(L.firstChild);const Uu=Ie?v:L,vo=Or(Uu);try{for(;Ee=vo.nextNode();)Tr(Ee,Uu),Rr(Ee),Us(Ee.content)&&Di(Ee.content)}catch(Zt){throw Ie&&(Ai(v),Vs(t.removed,Je=>{Je.element&&fo(Je.element)})),Zt}if(Ie)return Vs(t.removed,Zt=>{Zt.element&&fo(Zt.element)}),ae&&po(v),v;if(d){if(ae&&po(L),c)for(Ce=se.call(L.ownerDocument);L.firstChild;)Ce.appendChild(L.firstChild);else Ce=L;return(_.shadowroot||_.shadowrootmode)&&(Ce=de.call(s,Ce,!0)),Ce}let Lt=fe?L.outerHTML:L.innerHTML;return fe&&C["!doctype"]&&L.ownerDocument&&L.ownerDocument.doctype&&L.ownerDocument.doctype.name&&mt(ag,L.ownerDocument.doctype.name)&&(Lt=" +`+Lt),ae&&(Lt=bi(Lt)),I&&f?w(Lt):Lt},t.setConfig=function(){let v=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{};go(v),Ae=!0,Oe=C,De=_},t.clearConfig=function(){$s=null,Ae=!1,Oe=null,De=null,I=ne,Y=""},t.isValidAttribute=function(v,R,L){$s||go({});const Q=Xe(v),Ee=Xe(R);return zr(Q,Ee,L)},t.addHook=function(v,R){typeof R=="function"&&ct(oe,v)&&Ws(oe[v],R)},t.removeHook=function(v,R){if(ct(oe,v)){if(R!==void 0){const L=Vc(oe[v],R);return L===-1?void 0:Wc(oe[v],L,1)[0]}return Ir(oe[v])}},t.removeHooks=function(v){ct(oe,v)&&(oe[v]=[])},t.removeAllHooks=function(){oe=Xr()},t}var dd=ld();function O0(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function Fy(e){if(Object.prototype.hasOwnProperty.call(e,"__esModule"))return e;var t=e.default;if(typeof t=="function"){var u=function s(){var n=!1;try{n=this instanceof s}catch{}return n?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};u.prototype=t.prototype}else u={};return Object.defineProperty(u,"__esModule",{value:!0}),Object.keys(e).forEach(function(s){var n=Object.getOwnPropertyDescriptor(e,s);Object.defineProperty(u,s,n.get?n:{enumerable:!0,get:function(){return e[s]}})}),u}var Ao,Jr;function gg(){if(Jr)return Ao;Jr=1;var e=/["'&<>]/;Ao=t;function t(u){var s=""+u,n=e.exec(s);if(!n)return s;var i,o="",a=0,r=0;for(a=n.index;at)}}globalThis._oc_l10n_registry_translations??={},globalThis._oc_l10n_registry_plural_functions??={};function Ii(e,t,u,s,n){const i=typeof u=="object"?u:void 0,o=typeof s=="number"?s:typeof u=="number"?u:void 0,a={escape:!0,sanitize:!0,...typeof n=="object"?n:typeof s=="object"?s:{}},r=y=>y,m=(a.sanitize?dd.sanitize:r)||r,l=a.escape?Qr:r,g=y=>typeof y=="string"||typeof y=="number",p=(y,E,F)=>y.replace(/%n/g,""+F).replace(/{([^{}]*)}/g,(B,A)=>{if(E===void 0||!(A in E))return l(B);const O=E[A];return g(O)?l(`${O}`):typeof O=="object"&&g(O.value)?(O.escape!==!1?Qr:r)(`${O.value}`):l(B)});let h=(n?.bundle??md(e)).translations[t]||t;return h=Array.isArray(h)?h[0]:h,m(typeof i=="object"||o!==void 0?p(h,i,o):h)}function vg(e,t,u,s,n,i){const o="_"+t+"_::_"+u+"_",a=i?.bundle??md(e),r=a.translations[o];if(typeof r<"u"){const m=r;if(Array.isArray(m)){const l=a.pluralFunction(s);return Ii(e,m[l],n,s,i)}}return s===1?Ii(e,t,n,s,i):Ii(e,u,n,s,i)}function Eg(e,t=T0()){switch(t==="pt-BR"&&(t="xbr"),t.length>3&&(t=t.substring(0,t.lastIndexOf("-"))),t){case"az":case"bo":case"dz":case"id":case"ja":case"jv":case"ka":case"km":case"kn":case"ko":case"ms":case"th":case"tr":case"vi":case"zh":return 0;case"af":case"bn":case"bg":case"ca":case"da":case"de":case"el":case"en":case"eo":case"es":case"et":case"eu":case"fa":case"fi":case"fo":case"fur":case"fy":case"gl":case"gu":case"ha":case"he":case"hu":case"is":case"it":case"ku":case"lb":case"ml":case"mn":case"mr":case"nah":case"nb":case"ne":case"nl":case"nn":case"no":case"oc":case"om":case"or":case"pa":case"pap":case"ps":case"pt":case"so":case"sq":case"sv":case"sw":case"ta":case"te":case"tk":case"ur":case"zu":return e===1?0:1;case"am":case"bh":case"fil":case"fr":case"gun":case"hi":case"hy":case"ln":case"mg":case"nso":case"xbr":case"ti":case"wa":return e===0||e===1?0:1;case"be":case"bs":case"hr":case"ru":case"sh":case"sr":case"uk":return e%10===1&&e%100!==11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2;case"cs":case"sk":return e===1?0:e>=2&&e<=4?1:2;case"ga":return e===1?0:e===2?1:2;case"lt":return e%10===1&&e%100!==11?0:e%10>=2&&(e%100<10||e%100>=20)?1:2;case"sl":return e%100===1?0:e%100===2?1:e%100===3||e%100===4?2:3;case"mk":return e%10===1?0:1;case"mt":return e===1?0:e===0||e%100>1&&e%100<11?1:e%100>10&&e%100<20?2:3;case"lv":return e===0?0:e%10===1&&e%100!==11?1:2;case"pl":return e===1?0:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?1:2;case"cy":return e===1?0:e===2?1:e===8||e===11?2:3;case"ro":return e===1?0:e===0||e%100>0&&e%100<20?1:2;case"ar":return e===0?0:e===1?1:e===2?2:e%100>=3&&e%100<=10?3:e%100>=11&&e%100<=99?4:5;default:return 0}}const Kn=globalThis||void 0||self;function La(e){const t=Object.create(null);for(const u of e.split(","))t[u]=1;return u=>u in t}const Ne={},sn=[],Kt=()=>{},cd=()=>!1,z0=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),P0=e=>e.startsWith("onUpdate:"),st=Object.assign,ja=(e,t)=>{const u=e.indexOf(t);u>-1&&e.splice(u,1)},Cg=Object.prototype.hasOwnProperty,$e=(e,t)=>Cg.call(e,t),ge=Array.isArray,nn=e=>ci(e)==="[object Map]",gd=e=>ci(e)==="[object Set]",el=e=>ci(e)==="[object Date]",pe=e=>typeof e=="function",Ge=e=>typeof e=="string",Ut=e=>typeof e=="symbol",Re=e=>e!==null&&typeof e=="object",fd=e=>(Re(e)||pe(e))&&pe(e.then)&&pe(e.catch),pd=Object.prototype.toString,ci=e=>pd.call(e),Bg=e=>ci(e).slice(8,-1),hd=e=>ci(e)==="[object Object]",R0=e=>Ge(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Ln=La(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),L0=e=>{const t=Object.create(null);return(u=>t[u]||(t[u]=e(u)))},yg=/-\w/g,Dt=L0(e=>e.replace(yg,t=>t.slice(1).toUpperCase())),xg=/\B([A-Z])/g,Iu=L0(e=>e.replace(xg,"-$1").toLowerCase()),j0=L0(e=>e.charAt(0).toUpperCase()+e.slice(1)),Mi=L0(e=>e?`on${j0(e)}`:""),pt=(e,t)=>!Object.is(e,t),$i=(e,...t)=>{for(let u=0;u{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:s,value:u})},Ia=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Ag=e=>{const t=Ge(e)?Number(e):NaN;return isNaN(t)?e:t};let tl;const Ji=()=>tl||(tl=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof Kn<"u"?Kn:{});function ws(e){if(ge(e)){const t={};for(let u=0;u{if(u){const s=u.split(wg);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function Bt(e){let t="";if(Ge(e))t=e;else if(ge(e))for(let u=0;u!!(e&&e.__v_isRef===!0),dt=e=>Ge(e)?e:e==null?"":ge(e)||Re(e)&&(e.toString===pd||!pe(e.toString))?Cd(e)?dt(e.value):JSON.stringify(e,Bd,2):String(e),Bd=(e,t)=>Cd(t)?Bd(e,t.value):nn(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((u,[s,n],i)=>(u[bo(s,i)+" =>"]=n,u),{})}:gd(t)?{[`Set(${t.size})`]:[...t.values()].map(u=>bo(u))}:Ut(t)?bo(t):Re(t)&&!ge(t)&&!hd(t)?String(t):t,bo=(e,t="")=>{var u;return Ut(e)?`Symbol(${(u=e.description)!=null?u:t})`:e};function _g(e){return e==null?"initial":typeof e=="string"?e===""?" ":e:String(e)}let lt;class yd{constructor(t=!1){this.detached=t,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this._warnOnRun=!0,this.__v_skip=!0,!t&<&&(lt.active?(this.parent=lt,this.index=(lt.scopes||(lt.scopes=[])).push(this)-1):(this._active=!1,this._warnOnRun=!1))}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,u;if(this.scopes){const s=this.scopes.slice();for(t=0,u=s.length;t0&&--this._on===0){if(lt===this)lt=this.prevScope;else{let t=lt;for(;t;){if(t.prevScope===this){t.prevScope=this.prevScope;break}t=t.prevScope}}this.prevScope=void 0}}stop(t){if(this._active){this._active=!1;let u,s;for(u=0,s=this.effects.length;u0)return;if(In){let t=In;for(In=void 0;t;){const u=t.next;t.next=void 0,t.flags&=-9,t=u}}let e;for(;jn;){let t=jn;for(jn=void 0;t;){const u=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(s){e||(e=s)}t=u}}if(e)throw e}function wd(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function Dd(e){let t,u=e.depsTail,s=u;for(;s;){const n=s.prevDep;s.version===-1?(s===u&&(u=n),Wa(s),zg(s)):t=s,s.dep.activeLink=s.prevActiveLink,s.prevActiveLink=void 0,s=n}e.deps=t,e.depsTail=u}function ia(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Fd(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Fd(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===Yn)||(e.globalVersion=Yn,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!ia(e))))return;e.flags|=2;const t=e.dep,u=He,s=Jt;He=e,Jt=!0;try{wd(e);const n=e.fn(e._value);(t.version===0||pt(n,e._value))&&(e.flags|=128,e._value=n,t.version++)}catch(n){throw t.version++,n}finally{He=u,Jt=s,Dd(e),e.flags&=-3}}function Wa(e,t=!1){const{dep:u,prevSub:s,nextSub:n}=e;if(s&&(s.nextSub=n,e.prevSub=void 0),n&&(n.prevSub=s,e.nextSub=void 0),u.subs===e&&(u.subs=s,!s&&u.computed)){u.computed.flags&=-5;for(let i=u.computed.deps;i;i=i.nextDep)Wa(i,!0)}!t&&!--u.sc&&u.map&&u.map.delete(u.key)}function zg(e){const{prevDep:t,nextDep:u}=e;t&&(t.nextDep=u,e.prevDep=void 0),u&&(u.prevDep=t,e.nextDep=void 0)}let Jt=!0;const kd=[];function Pu(){kd.push(Jt),Jt=!1}function Ru(){const e=kd.pop();Jt=e===void 0?!0:e}function ul(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const u=He;He=void 0;try{t()}finally{He=u}}}let Yn=0;class Pg{constructor(t,u){this.sub=t,this.dep=u,this.version=u.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class I0{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0,this.__v_skip=!0}track(t){if(!He||!Jt||He===this.computed)return;let u=this.activeLink;if(u===void 0||u.sub!==He)u=this.activeLink=new Pg(He,this),He.deps?(u.prevDep=He.depsTail,He.depsTail.nextDep=u,He.depsTail=u):He.deps=He.depsTail=u,Sd(u);else if(u.version===-1&&(u.version=this.version,u.nextDep)){const s=u.nextDep;s.prevDep=u.prevDep,u.prevDep&&(u.prevDep.nextDep=s),u.prevDep=He.depsTail,u.nextDep=void 0,He.depsTail.nextDep=u,He.depsTail=u,He.deps===u&&(He.deps=s)}return u}trigger(t){this.version++,Yn++,this.notify(t)}notify(t){Ua();try{for(let u=this.subs;u;u=u.prevSub)u.sub.notify()&&u.sub.dep.notify()}finally{Va()}}}function Sd(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let s=t.deps;s;s=s.nextDep)Sd(s)}const u=e.dep.subs;u!==e&&(e.prevSub=u,u&&(u.nextSub=e)),e.dep.subs=e}}const Qi=new WeakMap,Ds=Symbol(""),oa=Symbol(""),Zn=Symbol("");function bt(e,t,u){if(Jt&&He){let s=Qi.get(e);s||Qi.set(e,s=new Map);let n=s.get(u);n||(s.set(u,n=new I0),n.map=s,n.key=u),n.track()}}function Du(e,t,u,s,n,i){const o=Qi.get(e);if(!o){Yn++;return}const a=r=>{r&&r.trigger()};if(Ua(),t==="clear")o.forEach(a);else{const r=ge(e),m=r&&R0(u);if(r&&u==="length"){const l=Number(s);o.forEach((g,p)=>{(p==="length"||p===Zn||!Ut(p)&&p>=l)&&a(g)})}else switch((u!==void 0||o.has(void 0))&&a(o.get(u)),m&&a(o.get(Zn)),t){case"add":r?m&&a(o.get("length")):(a(o.get(Ds)),nn(e)&&a(o.get(oa)));break;case"delete":r||(a(o.get(Ds)),nn(e)&&a(o.get(oa)));break;case"set":nn(e)&&a(o.get(Ds));break}}Va()}function Rg(e,t){const u=Qi.get(e);return u&&u.get(t)}function Hs(e){const t=Se(e);return t===e?t:(bt(t,"iterate",Zn),$t(e)?t:t.map(eu))}function M0(e){return bt(e=Se(e),"iterate",Zn),e}function gu(e,t){return Lu(e)?Qn(Fs(e)?eu(t):t):eu(t)}const Lg={__proto__:null,[Symbol.iterator](){return Do(this,Symbol.iterator,e=>gu(this,e))},concat(...e){return Hs(this).concat(...e.map(t=>ge(t)?Hs(t):t))},entries(){return Do(this,"entries",e=>(e[1]=gu(this,e[1]),e))},every(e,t){return xu(this,"every",e,t,void 0,arguments)},filter(e,t){return xu(this,"filter",e,t,u=>u.map(s=>gu(this,s)),arguments)},find(e,t){return xu(this,"find",e,t,u=>gu(this,u),arguments)},findIndex(e,t){return xu(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return xu(this,"findLast",e,t,u=>gu(this,u),arguments)},findLastIndex(e,t){return xu(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return xu(this,"forEach",e,t,void 0,arguments)},includes(...e){return Fo(this,"includes",e)},indexOf(...e){return Fo(this,"indexOf",e)},join(e){return Hs(this).join(e)},lastIndexOf(...e){return Fo(this,"lastIndexOf",e)},map(e,t){return xu(this,"map",e,t,void 0,arguments)},pop(){return Dn(this,"pop")},push(...e){return Dn(this,"push",e)},reduce(e,...t){return sl(this,"reduce",e,t)},reduceRight(e,...t){return sl(this,"reduceRight",e,t)},shift(){return Dn(this,"shift")},some(e,t){return xu(this,"some",e,t,void 0,arguments)},splice(...e){return Dn(this,"splice",e)},toReversed(){return Hs(this).toReversed()},toSorted(e){return Hs(this).toSorted(e)},toSpliced(...e){return Hs(this).toSpliced(...e)},unshift(...e){return Dn(this,"unshift",e)},values(){return Do(this,"values",e=>gu(this,e))}};function Do(e,t,u){const s=M0(e),n=s[t]();return s!==e&&!$t(e)&&(n._next=n.next,n.next=()=>{const i=n._next();return i.done||(i.value=u(i.value)),i}),n}const jg=Array.prototype;function xu(e,t,u,s,n,i){const o=M0(e),a=o!==e&&!$t(e),r=o[t];if(r!==jg[t]){const g=r.apply(e,i);return a?eu(g):g}let m=u;o!==e&&(a?m=function(g,p){return u.call(this,gu(e,g),p,e)}:u.length>2&&(m=function(g,p){return u.call(this,g,p,e)}));const l=r.call(o,m,s);return a&&n?n(l):l}function sl(e,t,u,s){const n=M0(e),i=n!==e&&!$t(e);let o=u,a=!1;n!==e&&(i?(a=s.length===0,o=function(m,l,g){return a&&(a=!1,m=gu(e,m)),u.call(this,m,gu(e,l),g,e)}):u.length>3&&(o=function(m,l,g){return u.call(this,m,l,g,e)}));const r=n[t](o,...s);return a?gu(e,r):r}function Fo(e,t,u){const s=Se(e);bt(s,"iterate",Zn);const n=s[t](...u);return(n===-1||n===!1)&&V0(u[0])?(u[0]=Se(u[0]),s[t](...u)):n}function Dn(e,t,u=[]){Pu(),Ua();const s=Se(e)[t].apply(e,u);return Va(),Ru(),s}const Ig=La("__proto__,__v_isRef,__isVue"),Nd=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Ut));function Mg(e){Ut(e)||(e=String(e));const t=Se(this);return bt(t,"has",e),t.hasOwnProperty(e)}class _d{constructor(t=!1,u=!1){this._isReadonly=t,this._isShallow=u}get(t,u,s){if(u==="__v_skip")return t.__v_skip;const n=this._isReadonly,i=this._isShallow;if(u==="__v_isReactive")return!n;if(u==="__v_isReadonly")return n;if(u==="__v_isShallow")return i;if(u==="__v_raw")return s===(n?i?Ld:Rd:i?Pd:zd).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const o=ge(t);if(!n){let r;if(o&&(r=Lg[u]))return r;if(u==="hasOwnProperty")return Mg}const a=Reflect.get(t,u,ot(t)?t:s);if((Ut(u)?Nd.has(u):Ig(u))||(n||bt(t,"get",u),i))return a;if(ot(a)){const r=o&&R0(u)?a:a.value;return n&&Re(r)?Jn(r):r}return Re(a)?n?Jn(a):Xn(a):a}}class Od extends _d{constructor(t=!1){super(!1,t)}set(t,u,s,n){let i=t[u];const o=ge(t)&&R0(u);if(!this._isShallow){const m=Lu(i);if(!$t(s)&&!Lu(s)&&(i=Se(i),s=Se(s)),!o&&ot(i)&&!ot(s))return m||(i.value=s),!0}const a=o?Number(u)e,ki=e=>Reflect.getPrototypeOf(e);function Hg(e,t,u){return function(...s){const n=this.__v_raw,i=Se(n),o=nn(i),a=e==="entries"||e===Symbol.iterator&&o,r=e==="keys"&&o,m=n[e](...s),l=u?aa:t?Qn:eu;return!t&&bt(i,"iterate",r?oa:Ds),st(Object.create(m),{next(){const{value:g,done:p}=m.next();return p?{value:g,done:p}:{value:a?[l(g[0]),l(g[1])]:l(g),done:p}}})}}function Si(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function Gg(e,t){const u={get(s){const n=this.__v_raw,i=Se(n),o=Se(s);e||(pt(s,o)&&bt(i,"get",s),bt(i,"get",o));const{has:a}=ki(i),r=t?aa:e?Qn:eu;if(a.call(i,s))return r(n.get(s));if(a.call(i,o))return r(n.get(o));n!==i&&n.get(s)},get size(){const s=this.__v_raw;return!e&&bt(Se(s),"iterate",Ds),s.size},has(s){const n=this.__v_raw,i=Se(n),o=Se(s);return e||(pt(s,o)&&bt(i,"has",s),bt(i,"has",o)),s===o?n.has(s):n.has(s)||n.has(o)},forEach(s,n){const i=this,o=i.__v_raw,a=Se(o),r=t?aa:e?Qn:eu;return!e&&bt(a,"iterate",Ds),o.forEach((m,l)=>s.call(n,r(m),r(l),i))}};return st(u,e?{add:Si("add"),set:Si("set"),delete:Si("delete"),clear:Si("clear")}:{add(s){const n=Se(this),i=ki(n),o=Se(s),a=!t&&!$t(s)&&!Lu(s)?o:s;return i.has.call(n,a)||pt(s,a)&&i.has.call(n,s)||pt(o,a)&&i.has.call(n,o)||(n.add(a),Du(n,"add",a,a)),this},set(s,n){!t&&!$t(n)&&!Lu(n)&&(n=Se(n));const i=Se(this),{has:o,get:a}=ki(i);let r=o.call(i,s);r||(s=Se(s),r=o.call(i,s));const m=a.call(i,s);return i.set(s,n),r?pt(n,m)&&Du(i,"set",s,n):Du(i,"add",s,n),this},delete(s){const n=Se(this),{has:i,get:o}=ki(n);let a=i.call(n,s);a||(s=Se(s),a=i.call(n,s)),o&&o.call(n,s);const r=n.delete(s);return a&&Du(n,"delete",s,void 0),r},clear(){const s=Se(this),n=s.size!==0,i=s.clear();return n&&Du(s,"clear",void 0,void 0),i}}),["keys","values","entries",Symbol.iterator].forEach(s=>{u[s]=Hg(s,e,t)}),u}function $0(e,t){const u=Gg(e,t);return(s,n,i)=>n==="__v_isReactive"?!e:n==="__v_isReadonly"?e:n==="__v_raw"?s:Reflect.get($e(u,n)&&n in s?u:s,n,i)}const qg={get:$0(!1,!1)},Kg={get:$0(!1,!0)},Yg={get:$0(!0,!1)},Zg={get:$0(!0,!0)},zd=new WeakMap,Pd=new WeakMap,Rd=new WeakMap,Ld=new WeakMap;function Xg(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Xn(e){return Lu(e)?e:U0(e,!1,$g,qg,zd)}function Jg(e){return U0(e,!1,Vg,Kg,Pd)}function Jn(e){return U0(e,!0,Ug,Yg,Rd)}function Qg(e){return U0(e,!0,Wg,Zg,Ld)}function U0(e,t,u,s,n){if(!Re(e)||e.__v_raw&&!(t&&e.__v_isReactive)||e.__v_skip||!Object.isExtensible(e))return e;const i=n.get(e);if(i)return i;const o=Xg(Bg(e));if(o===0)return e;const a=new Proxy(e,o===2?s:u);return n.set(e,a),a}function Fs(e){return Lu(e)?Fs(e.__v_raw):!!(e&&e.__v_isReactive)}function Lu(e){return!!(e&&e.__v_isReadonly)}function $t(e){return!!(e&&e.__v_isShallow)}function V0(e){return e?!!e.__v_raw:!1}function Se(e){const t=e&&e.__v_raw;return t?Se(t):e}function ef(e){return!$e(e,"__v_skip")&&Object.isExtensible(e)&&vd(e,"__v_skip",!0),e}const eu=e=>Re(e)?Xn(e):e,Qn=e=>Re(e)?Jn(e):e;function ot(e){return e?e.__v_isRef===!0:!1}function cn(e){return jd(e,!1)}function ks(e){return jd(e,!0)}function jd(e,t){return ot(e)?e:new tf(e,t)}class tf{constructor(t,u){this.dep=new I0,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=u?t:Se(t),this._value=u?t:eu(t),this.__v_isShallow=u}get value(){return this.dep.track(),this._value}set value(t){const u=this._rawValue,s=this.__v_isShallow||$t(t)||Lu(t);t=s?t:Se(t),pt(t,u)&&(this._rawValue=t,this._value=s?t:eu(t),this.dep.trigger())}}function ke(e){return ot(e)?e.value:e}function zt(e){return pe(e)?e():ke(e)}const uf={get:(e,t,u)=>t==="__v_raw"?e:ke(Reflect.get(e,t,u)),set:(e,t,u,s)=>{const n=e[t];return ot(n)&&!ot(u)?(n.value=u,!0):Reflect.set(e,t,u,s)}};function Id(e){return Fs(e)?e:new Proxy(e,uf)}class sf{constructor(t){this.__v_isRef=!0,this._value=void 0;const u=this.dep=new I0,{get:s,set:n}=t(u.track.bind(u),u.trigger.bind(u));this._get=s,this._set=n}get value(){return this._value=this._get()}set value(t){this._set(t)}}function nf(e){return new sf(e)}class of{constructor(t,u,s){this._object=t,this._defaultValue=s,this.__v_isRef=!0,this._value=void 0,this._key=Ut(u)?u:String(u),this._raw=Se(t);let n=!0,i=t;if(!ge(t)||Ut(this._key)||!R0(this._key))do n=!V0(i)||$t(i);while(n&&(i=i.__v_raw));this._shallow=n}get value(){let t=this._object[this._key];return this._shallow&&(t=ke(t)),this._value=t===void 0?this._defaultValue:t}set value(t){if(this._shallow&&ot(this._raw[this._key])){const u=this._object[this._key];if(ot(u)){u.value=t;return}}this._object[this._key]=t}get dep(){return Rg(this._raw,this._key)}}class af{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0,this._value=void 0}get value(){return this._value=this._getter()}}function rf(e,t,u){return ot(e)?e:pe(e)?new af(e):Re(e)&&arguments.length>1?lf(e,t,u):cn(e)}function lf(e,t,u){return new of(e,t,u)}class df{constructor(t,u,s){this.fn=t,this.setter=u,this._value=void 0,this.dep=new I0(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Yn-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!u,this.isSSR=s}notify(){if(this.flags|=16,!(this.flags&8)&&He!==this)return bd(this,!0),!0}get value(){const t=this.dep.track();return Fd(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function mf(e,t,u=!1){let s,n;return pe(e)?s=e:(s=e.get,n=e.set),new df(s,n,u)}const Ni={},e0=new WeakMap;let ps;function cf(e,t=!1,u=ps){if(u){let s=e0.get(u);s||e0.set(u,s=[]),s.push(e)}}function gf(e,t,u=Ne){const{immediate:s,deep:n,once:i,scheduler:o,augmentJob:a,call:r}=u,m=S=>n?S:$t(S)||n===!1||n===0?Fu(S,1):Fu(S);let l,g,p,h,y=!1,E=!1;if(ot(e)?(g=()=>e.value,y=$t(e)):Fs(e)?(g=()=>m(e),y=!0):ge(e)?(E=!0,y=e.some(S=>Fs(S)||$t(S)),g=()=>e.map(S=>{if(ot(S))return S.value;if(Fs(S))return m(S);if(pe(S))return r?r(S,2):S()})):pe(e)?t?g=r?()=>r(e,2):e:g=()=>{if(p){Pu();try{p()}finally{Ru()}}const S=ps;ps=l;try{return r?r(e,3,[h]):e(h)}finally{ps=S}}:g=Kt,t&&n){const S=g,q=n===!0?1/0:n;g=()=>Fu(S(),q)}const F=$a(),B=()=>{l.stop(),F&&F.active&&ja(F.effects,l)};if(i&&t){const S=t;t=(...q)=>{const I=S(...q);return B(),I}}let A=E?new Array(e.length).fill(Ni):Ni;const O=S=>{if(!(!(l.flags&1)||!l.dirty&&!S))if(t){const q=l.run();if(S||n||y||(E?q.some((I,Y)=>pt(I,A[Y])):pt(q,A))){p&&p();const I=ps;ps=l;try{const Y=[q,A===Ni?void 0:E&&A[0]===Ni?[]:A,h];A=q,r?r(t,3,Y):t(...Y)}finally{ps=I}}}else l.run()};return a&&a(O),l=new xd(g),l.scheduler=o?()=>o(O,!1):O,h=S=>cf(S,!1,l),p=l.onStop=()=>{const S=e0.get(l);if(S){if(r)r(S,4);else for(const q of S)q();e0.delete(l)}},t?s?O(!0):A=l.run():o?o(O.bind(null,!0),!0):l.run(),B.pause=l.pause.bind(l),B.resume=l.resume.bind(l),B.stop=B,B}function Fu(e,t=1/0,u){if(t<=0||!Re(e)||e.__v_skip||(u=u||new Map,(u.get(e)||0)>=t))return e;if(u.set(e,t),t--,ot(e))Fu(e.value,t,u);else if(ge(e))for(let s=0;s{Fu(s,t,u)});else if(hd(e)){for(const s in e)Fu(e[s],t,u);for(const s of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,s)&&Fu(e[s],t,u)}return e}function gi(e,t,u,s){try{return s?e(...s):e()}catch(n){W0(n,t,u)}}function Yt(e,t,u,s){if(pe(e)){const n=gi(e,t,u,s);return n&&fd(n)&&n.catch(i=>{W0(i,t,u)}),n}if(ge(e)){const n=[];for(let i=0;i>>1,n=Ot[s],i=ei(n);i=ei(u)?Ot.push(e):Ot.splice(pf(t),0,e),e.flags|=1,$d()}}function $d(){t0||(t0=Md.then(Wd))}function Ud(e){ge(e)?on.push(...e):Yu&&e.id===-1?Yu.splice(Xs+1,0,e):e.flags&1||(on.push(e),e.flags|=1),$d()}function nl(e,t,u=du+1){for(;uei(u)-ei(s));if(on.length=0,Yu){Yu.push(...t);return}for(Yu=t,Xs=0;Xse.id==null?e.flags&2?-1:1/0:e.id;function Wd(e){try{for(du=0;duPe;function Pe(e,t=Ct,u){if(!t||e._n)return e;const s=(...n)=>{s._d&&a0(-1);const i=u0(t),o=Ou.length;let a;try{a=e(...n)}finally{for(let r=Ou.length;r>o;r--)Qa();u0(i),s._d&&a0(1)}return a};return s._n=!0,s._c=!0,s._d=!0,s}function ys(e,t){if(Ct===null)return e;const u=Z0(Ct),s=e.dirs||(e.dirs=[]);for(let n=0;n1)return u&&pe(t)?t.call(s&&s.proxy):t}}function Hd(){return!!(uu()||Ss)}const Bf=Symbol.for("v-scx"),yf=()=>Nu(Bf);function Gd(e,t){return G0(e,null,t)}function xf(e,t){return G0(e,null,{flush:"sync"})}function _u(e,t,u){return G0(e,t,u)}function G0(e,t,u=Ne){const{immediate:s,deep:n,flush:i,once:o}=u,a=st({},u),r=t&&s||!t&&i!=="post";let m;if(ni){if(i==="sync"){const h=yf();m=h.__watcherHandles||(h.__watcherHandles=[])}else if(!r){const h=()=>{};return h.stop=Kt,h.resume=Kt,h.pause=Kt,h}}const l=wt;a.call=(h,y,E)=>Yt(h,l,y,E);let g=!1;i==="post"?a.scheduler=h=>{Nt(h,l&&l.suspense)}:i!=="sync"&&(g=!0,a.scheduler=(h,y)=>{y?h():Ga(h)}),a.augmentJob=h=>{t&&(h.flags|=4),g&&(h.flags|=2,l&&(h.id=l.uid,h.i=l))};const p=gf(e,t,a);return ni&&(m?m.push(p):r&&p()),p}function Af(e,t,u){const s=this.proxy,n=Ge(e)?e.includes(".")?qd(s,e):()=>s[e]:e.bind(s,s);let i;pe(t)?i=t:(i=t.handler,u=t);const o=pi(this),a=G0(n,i.bind(s),u);return o(),a}function qd(e,t){const u=t.split(".");return()=>{let s=e;for(let n=0;ne.__isTeleport,hs=e=>e&&(e.disabled||e.disabled===""),bf=e=>e&&(e.defer||e.defer===""),il=e=>typeof SVGElement<"u"&&e instanceof SVGElement,ol=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,ra=(e,t)=>{const u=e&&e.to;return Ge(u)?t?t(u):null:u},wf={name:"Teleport",__isTeleport:!0,process(e,t,u,s,n,i,o,a,r,m){const{mc:l,pc:g,pbc:p,o:{insert:h,querySelector:y,createText:E,createComment:F,parentNode:B}}=m,A=hs(t.props);let{dynamicChildren:O}=t;const S=(Y,ne,G)=>{Y.shapeFlag&16&&l(Y.children,ne,G,n,i,o,a,r)},q=(Y=t)=>{const ne=hs(Y.props),G=Y.target=ra(Y.props,y),M=la(G,Y,E,h);G&&(o!=="svg"&&il(G)?o="svg":o!=="mathml"&&ol(G)&&(o="mathml"),n&&n.isCE&&(n.ce._teleportTargets||(n.ce._teleportTargets=new Set)).add(G),ne||(S(Y,G,M),zn(Y,!1)))},I=Y=>{const ne=()=>{if(Hu.get(Y)===ne){if(Hu.delete(Y),hs(Y.props)){const G=B(Y.el)||u;S(Y,G,Y.anchor),zn(Y,!0)}q(Y)}};Hu.set(Y,ne),Nt(ne,i)};if(e==null){const Y=t.el=E(""),ne=t.anchor=E("");if(h(Y,u,s),h(ne,u,s),bf(t.props)||i&&i.pendingBranch){I(t);return}A&&(S(t,u,ne),zn(t,!0)),q()}else{t.el=e.el;const Y=t.anchor=e.anchor,ne=Hu.get(e);if(ne){ne.flags|=8,Hu.delete(e),I(t);return}t.targetStart=e.targetStart;const G=t.target=e.target,M=t.targetAnchor=e.targetAnchor,ie=hs(e.props),w=ie?u:G,T=ie?Y:M;if(o==="svg"||il(G)?o="svg":(o==="mathml"||ol(G))&&(o="mathml"),O?(p(e.dynamicChildren,O,w,n,i,o,a),Ja(e,t,!0)):r||g(e,t,w,T,n,i,o,a,!1),A)ie?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):_i(t,u,Y,m,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const V=ra(t.props,y);V&&(t.target=V,_i(t,V,null,m,0))}else ie&&_i(t,G,M,m,1);zn(t,A)}},remove(e,t,u,{um:s,o:{remove:n}},i){const{shapeFlag:o,children:a,anchor:r,targetStart:m,targetAnchor:l,target:g,props:p}=e,h=hs(p),y=i||!h,E=Hu.get(e);if(E&&(E.flags|=8,Hu.delete(e)),g&&(n(m),n(l)),i&&n(r),!E&&(h||g)&&o&16)for(let F=0;F{e.isMounted=!0}),im(()=>{e.isUnmounting=!0}),e}const Wt=[Function,Array],Xd={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Wt,onEnter:Wt,onAfterEnter:Wt,onEnterCancelled:Wt,onBeforeLeave:Wt,onLeave:Wt,onAfterLeave:Wt,onLeaveCancelled:Wt,onBeforeAppear:Wt,onAppear:Wt,onAfterAppear:Wt,onAppearCancelled:Wt},Jd=e=>{const t=e.subTree;return t.component?Jd(t.component):t},kf={name:"BaseTransition",props:Xd,setup(e,{slots:t}){const u=uu(),s=Zd();return()=>{const n=t.default&&qa(t.default(),!0),i=n&&n.length?Qd(n):u.subTree?Ve():void 0;if(!i)return;const o=Se(e),{mode:a}=o;if(s.isLeaving)return ko(i);const r=al(i);if(!r)return ko(i);let m=ti(r,o,s,u,g=>m=g);r.type!==ht&&zs(r,m);let l=u.subTree&&al(u.subTree);if(l&&l.type!==ht&&!vs(l,r)&&Jd(u).type!==ht){let g=ti(l,o,s,u);if(zs(l,g),a==="out-in"&&r.type!==ht)return s.isLeaving=!0,g.afterLeave=()=>{s.isLeaving=!1,u.job.flags&8||u.update(),delete g.afterLeave,l=void 0},ko(i);a==="in-out"&&r.type!==ht?g.delayLeave=(p,h,y)=>{const E=em(s,l);E[String(l.key)]=l,p[Gt]=()=>{h(),p[Gt]=void 0,delete m.delayedLeave,l=void 0},m.delayedLeave=()=>{y(),delete m.delayedLeave,l=void 0}}:l=void 0}else l&&(l=void 0);return i}}};function Qd(e){let t=e[0];if(e.length>1){for(const u of e)if(u.type!==ht){t=u;break}}return t}const Sf=kf;function em(e,t){const{leavingVNodes:u}=e;let s=u.get(t.type);return s||(s=Object.create(null),u.set(t.type,s)),s}function ti(e,t,u,s,n){const{appear:i,mode:o,persisted:a=!1,onBeforeEnter:r,onEnter:m,onAfterEnter:l,onEnterCancelled:g,onBeforeLeave:p,onLeave:h,onAfterLeave:y,onLeaveCancelled:E,onBeforeAppear:F,onAppear:B,onAfterAppear:A,onAppearCancelled:O}=t,S=String(e.key),q=em(u,e),I=(G,M)=>{G&&Yt(G,s,9,M)},Y=(G,M)=>{const ie=M[1];I(G,M),ge(G)?G.every(w=>w.length<=1)&&ie():G.length<=1&&ie()},ne={mode:o,persisted:a,beforeEnter(G){let M=r;if(!u.isMounted)if(i)M=F||r;else return;G[Gt]&&G[Gt](!0);const ie=q[S];ie&&vs(e,ie)&&ie.el[Gt]&&ie.el[Gt](),I(M,[G])},enter(G){if(q[S]===e)return;let M=m,ie=l,w=g;if(!u.isMounted)if(i)M=B||m,ie=A||l,w=O||g;else return;let T=!1;G[Fn]=ue=>{T||(T=!0,ue?I(w,[G]):I(ie,[G]),ne.delayedLeave&&ne.delayedLeave(),G[Fn]=void 0)};const V=G[Fn].bind(null,!1);M?Y(M,[G,V]):V()},leave(G,M){const ie=String(e.key);if(G[Fn]&&G[Fn](!0),u.isUnmounting)return M();I(p,[G]);let w=!1;G[Gt]=V=>{w||(w=!0,M(),V?I(E,[G]):I(y,[G]),G[Gt]=void 0,q[ie]===e&&delete q[ie])};const T=G[Gt].bind(null,!1);q[ie]=e,h?Y(h,[G,T]):T()},clone(G){const M=ti(G,t,u,s,n);return n&&n(M),M}};return ne}function ko(e){if(q0(e))return e=us(e),e.children=null,e}function al(e){if(!q0(e))return Yd(e.type)&&e.children?Qd(e.children):e;if(e.component)return e.component.subTree;const{shapeFlag:t,children:u}=e;if(u){if(t&16)return u[0];if(t&32&&pe(u.default))return u.default()}}function zs(e,t){e.shapeFlag&6&&e.component?(e.transition=t,zs(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function qa(e,t=!1,u){let s=[],n=0;for(let i=0;i1)for(let i=0;iu.value,set:n=>u.value=n})}return u}function rl(e,t){let u;return!!((u=Object.getOwnPropertyDescriptor(e,t))&&!u.configurable)}const s0=new WeakMap;function Mn(e,t,u,s,n=!1){if(ge(e)){e.forEach((E,F)=>Mn(E,t&&(ge(t)?t[F]:t),u,s,n));return}if(an(s)&&!n){s.shapeFlag&512&&s.type.__asyncResolved&&s.component.subTree.component&&Mn(e,t,u,s.component.subTree);return}const i=s.shapeFlag&4?Z0(s.component):s.el,o=n?null:i,{i:a,r}=e,m=t&&t.r,l=a.refs===Ne?a.refs={}:a.refs,g=a.setupState,p=Se(g),h=g===Ne?cd:E=>rl(l,E)?!1:$e(p,E),y=(E,F)=>!(F&&rl(l,F));if(m!=null&&m!==r){if(ll(t),Ge(m))l[m]=null,h(m)&&(g[m]=null);else if(ot(m)){const E=t;y(m,E.k)&&(m.value=null),E.k&&(l[E.k]=null)}}if(pe(r))gi(r,a,12,[o,l]);else{const E=Ge(r),F=ot(r);if(E||F){const B=()=>{if(e.f){const A=E?h(r)?g[r]:l[r]:y()||!e.k?r.value:l[e.k];if(n)ge(A)&&ja(A,i);else if(ge(A))A.includes(i)||A.push(i);else if(E)l[r]=[i],h(r)&&(g[r]=l[r]);else{const O=[i];y(r,e.k)&&(r.value=O),e.k&&(l[e.k]=O)}}else E?(l[r]=o,h(r)&&(g[r]=o)):F&&(y(r,e.k)&&(r.value=o),e.k&&(l[e.k]=o))};if(o){const A=()=>{B(),s0.delete(e)};A.id=-1,s0.set(e,A),Nt(A,u)}else ll(e),B()}}}function ll(e){const t=s0.get(e);t&&(t.flags|=8,s0.delete(e))}Ji().requestIdleCallback,Ji().cancelIdleCallback;const an=e=>!!e.type.__asyncLoader,q0=e=>e.type.__isKeepAlive;function _f(e,t){um(e,"a",t)}function Of(e,t){um(e,"da",t)}function um(e,t,u=wt){const s=e.__wdc||(e.__wdc=()=>{let n=u;for(;n;){if(n.isDeactivated)return;n=n.parent}return e()});if(K0(t,s,u),u){let n=u.parent;for(;n&&n.parent;)q0(n.parent.vnode)&&Tf(s,t,u,n),n=n.parent}}function Tf(e,t,u,s){const n=K0(t,e,s,!0);gn(()=>{ja(s[t],n)},u)}function K0(e,t,u=wt,s=!1){if(u){const n=u[e]||(u[e]=[]),i=t.__weh||(t.__weh=(...o)=>{Pu();const a=pi(u),r=Yt(t,u,e,o);return a(),Ru(),r});return s?n.unshift(i):n.push(i),i}}const Mu=e=>(t,u=wt)=>{(!ni||e==="sp")&&K0(e,(...s)=>t(...s),u)},zf=Mu("bm"),En=Mu("m"),sm=Mu("bu"),nm=Mu("u"),im=Mu("bum"),gn=Mu("um"),Pf=Mu("sp"),Rf=Mu("rtg"),Lf=Mu("rtc");function jf(e,t=wt){K0("ec",e,t)}const Ka="components",If="directives";function It(e,t){return Ya(Ka,e,!0,t)||e}const om=Symbol.for("v-ndc");function rn(e){return Ge(e)?Ya(Ka,e,!1)||e:e||om}function Mf(e){return Ya(If,e)}function Ya(e,t,u=!0,s=!1){const n=Ct||wt;if(n){const i=n.type;if(e===Ka){const a=yp(i,!1);if(a&&(a===t||a===Dt(t)||a===j0(Dt(t))))return i}const o=dl(n[e]||i[e],t)||dl(n.appContext[e],t);return!o&&s?i:o}}function dl(e,t){return e&&(e[t]||e[Dt(t)]||e[j0(Dt(t))])}function da(e,t,u,s){let n;const i=u,o=ge(e);if(o||Ge(e)){const a=o&&Fs(e);let r=!1,m=!1;a&&(r=!$t(e),m=Lu(e),e=M0(e)),n=new Array(e.length);for(let l=0,g=e.length;lt(a,r,void 0,i));else{const a=Object.keys(e);n=new Array(a.length);for(let r=0,m=a.length;r{const i=s.fn(...n);return i&&(i.key=s.key),i}:s.fn)}return e}function ze(e,t,u={},s,n,i){if(Ct.ce||Ct.parent&&an(Ct.parent)&&Ct.parent.ce){const m=u,l=Object.keys(m).length>0;return t!=="default"&&(m.name=t),X(),et(it,null,[Be("slot",m,s&&s())],l?-2:64)}let o=e[t];o&&o._c&&(o._d=!1);const a=Ou.length;X();let r;try{const m=o&&rm(o(u)),l=u.key||i||m&&m.key;r=et(it,{key:(l&&!Ut(l)?l:`_${t}`)+(!m&&s?"_fb":"")},m||(s?s():[]),m&&e._===1?64:-2)}catch(m){for(let l=Ou.length;l>a;l--)Qa();throw m}finally{o&&o._c&&(o._d=!0)}return!n&&r.scopeId&&(r.slotScopeIds=[r.scopeId+"-s"]),r}function rm(e){return e.some(t=>si(t)?!(t.type===ht||t.type===it&&!rm(t.children)):!0)?e:null}function n0(e,t){const u={};for(const s in e)u[t&&/[A-Z]/.test(s)?`on:${s}`:Mi(s)]=e[s];return u}const ma=e=>e?Sm(e)?Z0(e):ma(e.parent):null,$n=st(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>ma(e.parent),$root:e=>ma(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>mm(e),$forceUpdate:e=>e.f||(e.f=()=>{Ga(e.update)}),$nextTick:e=>e.n||(e.n=Ha.bind(e.proxy)),$watch:e=>Af.bind(e)}),So=(e,t)=>e!==Ne&&!e.__isScriptSetup&&$e(e,t),$f={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:u,setupState:s,data:n,props:i,accessCache:o,type:a,appContext:r}=e;if(t[0]!=="$"){const p=o[t];if(p!==void 0)switch(p){case 1:return s[t];case 2:return n[t];case 4:return u[t];case 3:return i[t]}else{if(So(s,t))return o[t]=1,s[t];if(n!==Ne&&$e(n,t))return o[t]=2,n[t];if($e(i,t))return o[t]=3,i[t];if(u!==Ne&&$e(u,t))return o[t]=4,u[t];ca&&(o[t]=0)}}const m=$n[t];let l,g;if(m)return t==="$attrs"&&bt(e.attrs,"get",""),m(e);if((l=a.__cssModules)&&(l=l[t]))return l;if(u!==Ne&&$e(u,t))return o[t]=4,u[t];if(g=r.config.globalProperties,$e(g,t))return g[t]},set({_:e},t,u){const{data:s,setupState:n,ctx:i}=e;return So(n,t)?(n[t]=u,!0):s!==Ne&&$e(s,t)?(s[t]=u,!0):$e(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(i[t]=u,!0)},has({_:{data:e,setupState:t,accessCache:u,ctx:s,appContext:n,props:i,type:o}},a){let r;return!!(u[a]||e!==Ne&&a[0]!=="$"&&$e(e,a)||So(t,a)||$e(i,a)||$e(s,a)||$e($n,a)||$e(n.config.globalProperties,a)||(r=o.__cssModules)&&r[a])},defineProperty(e,t,u){return u.get!=null?e._.accessCache[t]=0:$e(u,"value")&&this.set(e,t,u.value,null),Reflect.defineProperty(e,t,u)}};function Uf(){return lm().slots}function Sy(){return lm().attrs}function lm(e){const t=uu();return t.setupContext||(t.setupContext=_m(t))}function i0(e){return ge(e)?e.reduce((t,u)=>(t[u]=null,t),{}):e}function ml(e,t){return!e||!t?e||t:ge(e)&&ge(t)?e.concat(t):st({},i0(e),i0(t))}let ca=!0;function Vf(e){const t=mm(e),u=e.proxy,s=e.ctx;ca=!1,t.beforeCreate&&cl(t.beforeCreate,e,"bc");const{data:n,computed:i,methods:o,watch:a,provide:r,inject:m,created:l,beforeMount:g,mounted:p,beforeUpdate:h,updated:y,activated:E,deactivated:F,beforeDestroy:B,beforeUnmount:A,destroyed:O,unmounted:S,render:q,renderTracked:I,renderTriggered:Y,errorCaptured:ne,serverPrefetch:G,expose:M,inheritAttrs:ie,components:w,directives:T,filters:V}=t;if(m&&Wf(m,s,null),o)for(const Z in o){const ee=o[Z];pe(ee)&&(s[Z]=ee.bind(u))}if(n){const Z=n.call(u,u);Re(Z)&&(e.data=Xn(Z))}if(ca=!0,i)for(const Z in i){const ee=i[Z],se=pe(ee)?ee.bind(u,u):pe(ee.get)?ee.get.bind(u,u):Kt,ce=!pe(ee)&&pe(ee.set)?ee.set.bind(u):Kt,de=Ue({get:se,set:ce});Object.defineProperty(s,Z,{enumerable:!0,configurable:!0,get:()=>de.value,set:oe=>de.value=oe})}if(a)for(const Z in a)dm(a[Z],s,u,Z);if(r){const Z=pe(r)?r.call(u):r;Reflect.ownKeys(Z).forEach(ee=>{Cf(ee,Z[ee])})}l&&cl(l,e,"c");function ue(Z,ee){ge(ee)?ee.forEach(se=>Z(se.bind(u))):ee&&Z(ee.bind(u))}if(ue(zf,g),ue(En,p),ue(sm,h),ue(nm,y),ue(_f,E),ue(Of,F),ue(jf,ne),ue(Lf,I),ue(Rf,Y),ue(im,A),ue(gn,S),ue(Pf,G),ge(M))if(M.length){const Z=e.exposed||(e.exposed={});M.forEach(ee=>{Object.defineProperty(Z,ee,{get:()=>u[ee],set:se=>u[ee]=se,enumerable:!0})})}else e.exposed||(e.exposed={});q&&e.render===Kt&&(e.render=q),ie!=null&&(e.inheritAttrs=ie),w&&(e.components=w),T&&(e.directives=T),G&&tm(e)}function Wf(e,t,u=Kt){ge(e)&&(e=ga(e));for(const s in e){const n=e[s];let i;Re(n)?"default"in n?i=Nu(n.from||s,n.default,!0):i=Nu(n.from||s):i=Nu(n),ot(i)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>i.value,set:o=>i.value=o}):t[s]=i}}function cl(e,t,u){Yt(ge(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,u)}function dm(e,t,u,s){let n=s.includes(".")?qd(u,s):()=>u[s];if(Ge(e)){const i=t[e];pe(i)&&_u(n,i)}else if(pe(e))_u(n,e.bind(u));else if(Re(e))if(ge(e))e.forEach(i=>dm(i,t,u,s));else{const i=pe(e.handler)?e.handler.bind(u):t[e.handler];pe(i)&&_u(n,i,e)}}function mm(e){const t=e.type,{mixins:u,extends:s}=t,{mixins:n,optionsCache:i,config:{optionMergeStrategies:o}}=e.appContext,a=i.get(t);let r;return a?r=a:!n.length&&!u&&!s?r=t:(r={},n.length&&n.forEach(m=>o0(r,m,o,!0)),o0(r,t,o)),Re(t)&&i.set(t,r),r}function o0(e,t,u,s=!1){const{mixins:n,extends:i}=t;i&&o0(e,i,u,!0),n&&n.forEach(o=>o0(e,o,u,!0));for(const o in t)if(!(s&&o==="expose")){const a=Hf[o]||u&&u[o];e[o]=a?a(e[o],t[o]):t[o]}return e}const Hf={data:gl,props:fl,emits:fl,methods:Pn,computed:Pn,beforeCreate:kt,created:kt,beforeMount:kt,mounted:kt,beforeUpdate:kt,updated:kt,beforeDestroy:kt,beforeUnmount:kt,destroyed:kt,unmounted:kt,activated:kt,deactivated:kt,errorCaptured:kt,serverPrefetch:kt,components:Pn,directives:Pn,watch:qf,provide:gl,inject:Gf};function gl(e,t){return t?e?function(){return st(pe(e)?e.call(this,this):e,pe(t)?t.call(this,this):t)}:t:e}function Gf(e,t){return Pn(ga(e),ga(t))}function ga(e){if(ge(e)){const t={};for(let u=0;u{let l,g=Ne,p;return xf(()=>{const h=e[n];pt(l,h)&&(l=h,m())}),{get(){return r(),u.get?u.get(l):l},set(h){const y=u.set?u.set(h):h;if(!pt(y,l)&&!(g!==Ne&&pt(h,g)))return;const E=s.vnode.props,F=!!(E&&(t in E||n in E||i in E)&&(`onUpdate:${t}`in E||`onUpdate:${n}`in E||`onUpdate:${i}`in E));F||(l=h,m()),s.emit(`update:${t}`,y),pt(h,g)&&(pt(h,y)&&!pt(y,p)||F&&g!==Ne&&!pt(y,l))&&m(),g=h,p=y}}});return a[Symbol.iterator]=()=>{let r=0;return{next(){return r<2?{value:r++?o||Ne:a,done:!1}:{done:!0}}}},a}const gm=(e,t)=>t==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${Dt(t)}Modifiers`]||e[`${Iu(t)}Modifiers`];function Xf(e,t,...u){if(e.isUnmounted)return;const s=e.vnode.props||Ne;let n=u;const i=t.startsWith("update:"),o=i&&gm(s,t.slice(7));o&&(o.trim&&(n=u.map(l=>Ge(l)?l.trim():l)),o.number&&(n=u.map(Ia)));let a,r=s[a=Mi(t)]||s[a=Mi(Dt(t))];!r&&i&&(r=s[a=Mi(Iu(t))]),r&&Yt(r,e,6,n);const m=s[a+"Once"];if(m){if(!e.emitted)e.emitted={};else if(e.emitted[a])return;e.emitted[a]=!0,Yt(m,e,6,n)}}const Jf=new WeakMap;function fm(e,t,u=!1){const s=u?Jf:t.emitsCache,n=s.get(e);if(n!==void 0)return n;const i=e.emits;let o={},a=!1;if(!pe(e)){const r=m=>{const l=fm(m,t,!0);l&&(a=!0,st(o,l))};!u&&t.mixins.length&&t.mixins.forEach(r),e.extends&&r(e.extends),e.mixins&&e.mixins.forEach(r)}return!i&&!a?(Re(e)&&s.set(e,null),null):(ge(i)?i.forEach(r=>o[r]=null):st(o,i),Re(e)&&s.set(e,o),o)}function Y0(e,t){return!e||!z0(t)?!1:(t=t.slice(2),t=t==="Once"?t:t.replace(/Once$/,""),$e(e,t[0].toLowerCase()+t.slice(1))||$e(e,Iu(t))||$e(e,t))}function pl(e){const{type:t,vnode:u,proxy:s,withProxy:n,propsOptions:[i],slots:o,attrs:a,emit:r,render:m,renderCache:l,props:g,data:p,setupState:h,ctx:y,inheritAttrs:E}=e,F=u0(e);let B,A;try{if(u.shapeFlag&4){const S=n||s,q=S;B=fu(m.call(q,S,l,g,h,p,y)),A=a}else{const S=t;B=fu(S.length>1?S(g,{attrs:a,slots:o,emit:r}):S(g,null)),A=t.props?a:Qf(a)}}catch(S){Ou.length=0,W0(S,e,1),B=Be(ht)}let O=B;if(A&&E!==!1){const S=Object.keys(A),{shapeFlag:q}=O;S.length&&q&7&&(i&&S.some(P0)&&(A=ep(A,i)),O=us(O,A,!1,!0))}return u.dirs&&(O=us(O,null,!1,!0),O.dirs=O.dirs?O.dirs.concat(u.dirs):u.dirs),u.transition&&zs(O,u.transition),B=O,u0(F),B}const Qf=e=>{let t;for(const u in e)(u==="class"||u==="style"||z0(u))&&((t||(t={}))[u]=e[u]);return t},ep=(e,t)=>{const u={};for(const s in e)(!P0(s)||!(s.slice(9)in t))&&(u[s]=e[s]);return u};function tp(e,t,u){const{props:s,children:n,component:i}=e,{props:o,children:a,patchFlag:r}=t,m=i.emitsOptions;if(t.dirs||t.transition)return!0;if(u&&r>=0){if(r&1024)return!0;if(r&16)return s?hl(s,o,m):!!o;if(r&8){const l=t.dynamicProps;for(let g=0;gObject.create(hm),Em=e=>Object.getPrototypeOf(e)===hm;function sp(e,t,u,s=!1){const n={},i=vm();e.propsDefaults=Object.create(null),Cm(e,t,n,i);for(const o in e.propsOptions[0])o in n||(n[o]=void 0);u?e.props=s?n:Jg(n):e.type.props?e.props=n:e.props=i,e.attrs=i}function np(e,t,u,s){const{props:n,attrs:i,vnode:{patchFlag:o}}=e,a=Se(n),[r]=e.propsOptions;let m=!1;if((s||o>0)&&!(o&16)){if(o&8){const l=e.vnode.dynamicProps;for(let g=0;g{r=!0;const[p,h]=Bm(g,t,!0);st(o,p),h&&a.push(...h)};!u&&t.mixins.length&&t.mixins.forEach(l),e.extends&&l(e.extends),e.mixins&&e.mixins.forEach(l)}if(!i&&!r)return Re(e)&&s.set(e,sn),sn;if(ge(i))for(let l=0;le==="_"||e==="_ctx"||e==="$stable",Xa=e=>ge(e)?e.map(fu):[fu(e)],op=(e,t,u)=>{if(t._n)return t;const s=Pe((...n)=>Xa(t(...n)),u);return s._c=!1,s},ym=(e,t,u)=>{const s=e._ctx;for(const n in e){if(Za(n))continue;const i=e[n];if(pe(i))t[n]=op(n,i,s);else if(i!=null){const o=Xa(i);t[n]=()=>o}}},xm=(e,t)=>{const u=Xa(t);e.slots.default=()=>u},Am=(e,t,u)=>{for(const s in t)(u||!Za(s))&&(e[s]=t[s])},ap=(e,t,u)=>{const s=e.slots=vm();if(e.vnode.shapeFlag&32){const n=t._;n?(Am(s,t,u),u&&vd(s,"_",n,!0)):ym(t,s)}else t&&xm(e,t)},rp=(e,t,u)=>{const{vnode:s,slots:n}=e;let i=!0,o=Ne;if(s.shapeFlag&32){const a=t._;a?u&&a===1?i=!1:Am(n,t,u):(i=!t.$stable,ym(t,n)),o=t}else t&&(xm(e,t),o={default:1});if(i)for(const a in n)!Za(a)&&o[a]==null&&delete n[a]},Nt=gp;function lp(e){return dp(e)}function dp(e,t){const u=Ji();u.__VUE__=!0;const{insert:s,remove:n,patchProp:i,createElement:o,createText:a,createComment:r,setText:m,setElementText:l,parentNode:g,nextSibling:p,setScopeId:h=Kt,insertStaticContent:y}=e,E=(C,b,_,$=null,z=null,N=null,W=void 0,U=null,H=!!b.dynamicChildren)=>{if(C===b)return;C&&!vs(C,b)&&($=We(C),xe(C,z,N,!0),C=null),b.patchFlag===-2&&(H=!1,b.dynamicChildren=null);const{type:j,ref:re,shapeFlag:J}=b;switch(j){case fi:F(C,b,_,$);break;case ht:B(C,b,_,$);break;case Un:C==null&&A(b,_,$,W);break;case it:w(C,b,_,$,z,N,W,U,H);break;default:J&1?q(C,b,_,$,z,N,W,U,H):J&6?T(C,b,_,$,z,N,W,U,H):(J&64||J&128)&&j.process(C,b,_,$,z,N,W,U,H,Vt)}re!=null&&z?Mn(re,C&&C.ref,N,b||C,!b):re==null&&C&&C.ref!=null&&Mn(C.ref,null,N,C,!0)},F=(C,b,_,$)=>{if(C==null)s(b.el=a(b.children),_,$);else{const z=b.el=C.el;b.children!==C.children&&m(z,b.children)}},B=(C,b,_,$)=>{C==null?s(b.el=r(b.children||""),_,$):b.el=C.el},A=(C,b,_,$)=>{[C.el,C.anchor]=y(C.children,b,_,$,C.el,C.anchor)},O=({el:C,anchor:b},_,$)=>{let z;for(;C&&C!==b;)z=p(C),s(C,_,$),C=z;s(b,_,$)},S=({el:C,anchor:b})=>{let _;for(;C&&C!==b;)_=p(C),n(C),C=_;n(b)},q=(C,b,_,$,z,N,W,U,H)=>{if(b.type==="svg"?W="svg":b.type==="math"&&(W="mathml"),C==null)I(b,_,$,z,N,W,U,H);else{const j=C.el&&C.el._isVueCE?C.el:null;try{j&&j._beginPatch(),G(C,b,z,N,W,U,H)}finally{j&&j._endPatch()}}},I=(C,b,_,$,z,N,W,U)=>{let H,j;const{props:re,shapeFlag:J,transition:ae,dirs:le}=C;if(H=C.el=o(C.type,N,re&&re.is,re),J&8?l(H,C.children):J&16&&ne(C.children,H,null,$,z,No(C,N),W,U),le&&ls(C,null,$,"created"),Y(H,C,C.scopeId,W,$),re){for(const Ae in re)Ae!=="value"&&!Ln(Ae)&&i(H,Ae,null,re[Ae],N,$);"value"in re&&i(H,"value",null,re.value,N),(j=re.onVnodeBeforeMount)&&au(j,$,C)}le&&ls(C,null,$,"beforeMount");const fe=mp(z,ae);fe&&ae.beforeEnter(H),s(H,b,_),((j=re&&re.onVnodeMounted)||fe||le)&&Nt(()=>{j&&au(j,$,C),fe&&ae.enter(H),le&&ls(C,null,$,"mounted")},z)},Y=(C,b,_,$,z)=>{if(_&&h(C,_),$)for(let N=0;N<$.length;N++)h(C,$[N]);if(z){let N=z.subTree;if(b===N||Dm(N.type)&&(N.ssContent===b||N.ssFallback===b)){const W=z.vnode;Y(C,W,W.scopeId,W.slotScopeIds,z.parent)}}},ne=(C,b,_,$,z,N,W,U,H=0)=>{for(let j=H;j{const U=b.el=C.el;let{patchFlag:H,dynamicChildren:j,dirs:re}=b;H|=C.patchFlag&16;const J=C.props||Ne,ae=b.props||Ne;let le;if(_&&ds(_,!1),(le=ae.onVnodeBeforeUpdate)&&au(le,_,b,C),re&&ls(b,C,_,"beforeUpdate"),_&&ds(_,!0),j&&(!C.dynamicChildren||C.dynamicChildren.length!==j.length)&&(H=0,W=!1,j=null),(J.innerHTML&&ae.innerHTML==null||J.textContent&&ae.textContent==null)&&l(U,""),j?M(C.dynamicChildren,j,U,_,$,No(b,z),N):W||se(C,b,U,null,_,$,No(b,z),N,!1),H>0){if(H&16)ie(U,J,ae,_,z);else if(H&2&&J.class!==ae.class&&i(U,"class",null,ae.class,z),H&4&&i(U,"style",J.style,ae.style,z),H&8){const fe=b.dynamicProps;for(let Ae=0;Ae{le&&au(le,_,b,C),re&&ls(b,C,_,"updated")},$)},M=(C,b,_,$,z,N,W)=>{for(let U=0;U{if(b!==_){if(b!==Ne)for(const N in b)!Ln(N)&&!(N in _)&&i(C,N,b[N],null,z,$);for(const N in _){if(Ln(N))continue;const W=_[N],U=b[N];W!==U&&N!=="value"&&i(C,N,U,W,z,$)}"value"in _&&i(C,"value",b.value,_.value,z)}},w=(C,b,_,$,z,N,W,U,H)=>{const j=b.el=C?C.el:a(""),re=b.anchor=C?C.anchor:a("");let{patchFlag:J,dynamicChildren:ae,slotScopeIds:le}=b;le&&(U=U?U.concat(le):le),C==null?(s(j,_,$),s(re,_,$),ne(b.children||[],_,re,z,N,W,U,H)):J>0&&J&64&&ae&&C.dynamicChildren&&C.dynamicChildren.length===ae.length?(M(C.dynamicChildren,ae,_,z,N,W,U),(b.key!=null||z&&b===z.subTree)&&Ja(C,b,!0)):se(C,b,_,re,z,N,W,U,H)},T=(C,b,_,$,z,N,W,U,H)=>{b.slotScopeIds=U,C==null?b.shapeFlag&512?z.ctx.activate(b,_,$,W,H):V(b,_,$,z,N,W,H):ue(C,b,H)},V=(C,b,_,$,z,N,W)=>{const U=C.component=vp(C,$,z);if(q0(C)&&(U.ctx.renderer=Vt),Ep(U,!1,W),U.asyncDep){if(z&&z.registerDep(U,Z,W),!C.el){const H=U.subTree=Be(ht);B(null,H,b,_),C.placeholder=H.el}}else Z(U,C,b,_,z,N,W)},ue=(C,b,_)=>{const $=b.component=C.component;if(tp(C,b,_))if($.asyncDep&&!$.asyncResolved){ee($,b,_);return}else $.next=b,$.update();else b.el=C.el,$.vnode=b},Z=(C,b,_,$,z,N,W)=>{const U=()=>{if(C.isMounted){let{next:J,bu:ae,u:le,parent:fe,vnode:Ae}=C;{const c=bm(C);if(c){J&&(J.el=Ae.el,ee(C,J,W)),c.asyncDep.then(()=>{Nt(()=>{C.isUnmounted||j()},z)});return}}let Oe=J,De;ds(C,!1),J?(J.el=Ae.el,ee(C,J,W)):J=Ae,ae&&$i(ae),(De=J.props&&J.props.onVnodeBeforeUpdate)&&au(De,fe,J,Ae),ds(C,!0);const Ye=pl(C),d=C.subTree;C.subTree=Ye,E(d,Ye,g(d.el),We(d),C,z,N),J.el=Ye.el,Oe===null&&up(C,Ye.el),le&&Nt(le,z),(De=J.props&&J.props.onVnodeUpdated)&&Nt(()=>au(De,fe,J,Ae),z)}else{let J;const{el:ae,props:le}=b,{bm:fe,m:Ae,parent:Oe,root:De,type:Ye}=C,d=an(b);ds(C,!1),fe&&$i(fe),!d&&(J=le&&le.onVnodeBeforeMount)&&au(J,Oe,b),ds(C,!0);{De.ce&&De.ce._hasShadowRoot()&&De.ce._injectChildStyle(Ye,C.parent?C.parent.type:void 0);const c=C.subTree=pl(C);E(null,c,_,$,C,z,N),b.el=c.el}if(Ae&&Nt(Ae,z),!d&&(J=le&&le.onVnodeMounted)){const c=b;Nt(()=>au(J,Oe,c),z)}(b.shapeFlag&256||Oe&&an(Oe.vnode)&&Oe.vnode.shapeFlag&256)&&C.a&&Nt(C.a,z),C.isMounted=!0,b=_=$=null}};C.scope.on();const H=C.effect=new xd(U);C.scope.off();const j=C.update=H.run.bind(H),re=C.job=H.runIfDirty.bind(H);re.i=C,re.id=C.uid,H.scheduler=()=>Ga(re),ds(C,!0),j()},ee=(C,b,_)=>{b.component=C;const $=C.vnode.props;C.vnode=b,C.next=null,np(C,b.props,$,_),rp(C,b.children,_),Pu(),nl(C),Ru()},se=(C,b,_,$,z,N,W,U,H=!1)=>{const j=C&&C.children,re=C?C.shapeFlag:0,J=b.children,{patchFlag:ae,shapeFlag:le}=b;if(ae>0){if(ae&128){de(j,J,_,$,z,N,W,U,H);return}else if(ae&256){ce(j,J,_,$,z,N,W,U,H);return}}le&8?(re&16&&he(j,z,N),J!==j&&l(_,J)):re&16?le&16?de(j,J,_,$,z,N,W,U,H):he(j,z,N,!0):(re&8&&l(_,""),le&16&&ne(J,_,$,z,N,W,U,H))},ce=(C,b,_,$,z,N,W,U,H)=>{C=C||sn,b=b||sn;const j=C.length,re=b.length,J=Math.min(j,re);let ae;for(ae=0;aere?he(C,z,N,!0,!1,J):ne(b,_,$,z,N,W,U,H,J)},de=(C,b,_,$,z,N,W,U,H)=>{let j=0;const re=b.length;let J=C.length-1,ae=re-1;for(;j<=J&&j<=ae;){const le=C[j],fe=b[j]=H?wu(b[j]):fu(b[j]);if(vs(le,fe))E(le,fe,_,null,z,N,W,U,H);else break;j++}for(;j<=J&&j<=ae;){const le=C[J],fe=b[ae]=H?wu(b[ae]):fu(b[ae]);if(vs(le,fe))E(le,fe,_,null,z,N,W,U,H);else break;J--,ae--}if(j>J){if(j<=ae){const le=ae+1,fe=leae)for(;j<=J;)xe(C[j],z,N,!0),j++;else{const le=j,fe=j,Ae=new Map;for(j=fe;j<=ae;j++){const k=b[j]=H?wu(b[j]):fu(b[j]);k.key!=null&&Ae.set(k.key,j)}let Oe,De=0;const Ye=ae-fe+1;let d=!1,c=0;const f=new Array(Ye);for(j=0;j=Ye){xe(k,z,N,!0);continue}let P;if(k.key!=null)P=Ae.get(k.key);else for(Oe=fe;Oe<=ae;Oe++)if(f[Oe-fe]===0&&vs(k,b[Oe])){P=Oe;break}P===void 0?xe(k,z,N,!0):(f[P-fe]=j+1,P>=c?c=P:d=!0,E(k,b[P],_,null,z,N,W,U,H),De++)}const x=d?cp(f):sn;for(Oe=x.length-1,j=Ye-1;j>=0;j--){const k=fe+j,P=b[k],K=b[k+1],Te=k+1{const{el:N,type:W,transition:U,children:H,shapeFlag:j}=C;if(j&6){oe(C.component.subTree,b,_,$);return}if(j&128){C.suspense.move(b,_,$);return}if(j&64){W.move(C,b,_,Vt);return}if(W===it){s(N,b,_);for(let re=0;reU.enter(N),z));else{const{leave:re,delayLeave:J,afterLeave:ae}=U,le=()=>{C.ctx.isUnmounted?n(N):s(N,b,_)},fe=()=>{const Ae=N._isLeaving||!!N[Gt];N._isLeaving&&N[Gt](!0),U.persisted&&!Ae?le():re(N,()=>{le(),ae&&ae()})};J?J(N,le,fe):fe()}else s(N,b,_)},xe=(C,b,_,$=!1,z=!1)=>{const{type:N,props:W,ref:U,children:H,dynamicChildren:j,shapeFlag:re,patchFlag:J,dirs:ae,cacheIndex:le,memo:fe}=C;if(J===-2&&(z=!1),U!=null&&(Pu(),Mn(U,null,_,C,!0),Ru()),le!=null&&(b.renderCache[le]=void 0),re&256){b.ctx.deactivate(C);return}const Ae=re&1&&ae,Oe=!an(C);let De;if(Oe&&(De=W&&W.onVnodeBeforeUnmount)&&au(De,b,C),re&6)Le(C.component,_,$);else{if(re&128){C.suspense.unmount(_,$);return}Ae&&ls(C,null,b,"beforeUnmount"),re&64?C.type.remove(C,b,_,Vt,$):j&&!j.hasOnce&&(N!==it||J>0&&J&64)?he(j,b,_,!1,!0):(N===it&&J&384||!z&&re&16)&&he(H,b,_),$&&qe(C)}const Ye=fe!=null&&le==null;(Oe&&(De=W&&W.onVnodeUnmounted)||Ae||Ye)&&Nt(()=>{De&&au(De,b,C),Ae&&ls(C,null,b,"unmounted"),Ye&&(C.el=null)},_)},qe=C=>{const{type:b,el:_,anchor:$,transition:z}=C;if(b===it){_e(_,$);return}if(b===Un){S(C);return}const N=()=>{n(_),z&&!z.persisted&&z.afterLeave&&z.afterLeave()};if(C.shapeFlag&1&&z&&!z.persisted){const{leave:W,delayLeave:U}=z,H=()=>W(_,N);U?U(C.el,N,H):H()}else N()},_e=(C,b)=>{let _;for(;C!==b;)_=p(C),n(C),C=_;n(b)},Le=(C,b,_)=>{const{bum:$,scope:z,job:N,subTree:W,um:U,m:H,a:j}=C;El(H),El(j),$&&$i($),z.stop(),N&&(N.flags|=8,xe(W,C,b,_)),U&&Nt(U,b),Nt(()=>{C.isUnmounted=!0},b)},he=(C,b,_,$=!1,z=!1,N=0)=>{for(let W=N;W{if(C.shapeFlag&6)return We(C.component.subTree);if(C.shapeFlag&128)return C.suspense.next();const b=p(C.anchor||C.el),_=b&&b[Kd];return _?p(_):b};let Tt=!1;const nu=(C,b,_)=>{let $;C==null?b._vnode&&(xe(b._vnode,null,null,!0),$=b._vnode.component):E(b._vnode||null,C,b,null,null,null,_),b._vnode=C,Tt||(Tt=!0,nl($),Vd(),Tt=!1)},Vt={p:E,um:xe,m:oe,r:qe,mt:V,mc:ne,pc:se,pbc:M,n:We,o:e};return{render:nu,hydrate:void 0,createApp:Yf(nu)}}function No({type:e,props:t},u){return u==="svg"&&e==="foreignObject"||u==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:u}function ds({effect:e,job:t},u){u?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function mp(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function Ja(e,t,u=!1){const s=e.children,n=t.children;if(ge(s)&&ge(n))for(let i=0;i>1,e[u[a]]0&&(t[s]=u[i-1]),u[i]=s)}}for(i=u.length,o=u[i-1];i-- >0;)u[i]=o,o=t[o];return u}function bm(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:bm(t)}function El(e){if(e)for(let t=0;te.__isSuspense;function gp(e,t){t&&t.pendingBranch?ge(e)?t.effects.push(...e):t.effects.push(e):Ud(e)}const it=Symbol.for("v-fgt"),fi=Symbol.for("v-txt"),ht=Symbol.for("v-cmt"),Un=Symbol.for("v-stc"),Ou=[];let Mt=null;function X(e=!1){Ou.push(Mt=e?null:[])}function Qa(){Ou.pop(),Mt=Ou[Ou.length-1]||null}let ui=1;function a0(e,t=!1){ui+=e,e<0&&Mt&&t&&(Mt.hasOnce=!0)}function Fm(e){return e.dynamicChildren=ui>0?Mt||sn:null,Qa(),ui>0&&Mt&&Mt.push(e),e}function me(e,t,u,s,n,i){return Fm(ve(e,t,u,s,n,i,!0))}function et(e,t,u,s,n){return Fm(Be(e,t,u,s,n,!0))}function si(e){return e?e.__v_isVNode===!0:!1}function vs(e,t){return e.type===t.type&&e.key===t.key}const km=({key:e})=>e??null,Ui=({ref:e,ref_key:t,ref_for:u})=>(typeof e=="number"&&(e=""+e),e!=null?Ge(e)||ot(e)||pe(e)?{i:Ct,r:e,k:t,f:!!u}:e:null);function ve(e,t=null,u=null,s=0,n=null,i=e===it?0:1,o=!1,a=!1){const r={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&km(t),ref:t&&Ui(t),scopeId:H0,slotScopeIds:null,children:u,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:s,dynamicProps:n,dynamicChildren:null,appContext:null,ctx:Ct};return a?(r0(r,u),i&128&&e.normalize(r)):u&&(r.shapeFlag|=Ge(u)?8:16),ui>0&&!o&&Mt&&(r.patchFlag>0||i&6)&&r.patchFlag!==32&&Mt.push(r),r}const Be=fp;function fp(e,t=null,u=null,s=0,n=null,i=!1){if((!e||e===om)&&(e=ht),si(e)){const a=us(e,t,!0);return u&&r0(a,u),ui>0&&!i&&Mt&&(a.shapeFlag&6?Mt[Mt.indexOf(e)]=a:Mt.push(a)),a.patchFlag=-2,a}if(xp(e)&&(e=e.__vccOpts),t){t=At(t);let{class:a,style:r}=t;a&&!Ge(a)&&(t.class=Bt(a)),Re(r)&&(V0(r)&&!ge(r)&&(r=st({},r)),t.style=ws(r))}const o=Ge(e)?1:Dm(e)?128:Yd(e)?64:Re(e)?4:pe(e)?2:0;return ve(e,t,u,s,n,o,i,!0)}function At(e){return e?V0(e)||Em(e)?st({},e):e:null}function us(e,t,u=!1,s=!1){const{props:n,ref:i,patchFlag:o,children:a,transition:r}=e,m=t?ut(n||{},t):n,l={__v_isVNode:!0,__v_skip:!0,type:e.type,props:m,key:m&&km(m),ref:t&&t.ref?u&&i?ge(i)?i.concat(Ui(t)):[i,Ui(t)]:Ui(t):i,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:a,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==it?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:r,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&us(e.ssContent),ssFallback:e.ssFallback&&us(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return r&&s&&zs(l,r.clone(l)),l}function Ns(e=" ",t=0){return Be(fi,null,e,t)}function Ny(e,t){const u=Be(Un,null,e);return u.staticCount=t,u}function Ve(e="",t=!1){return t?(X(),et(ht,null,e)):Be(ht,null,e)}function fu(e){return e==null||typeof e=="boolean"?Be(ht):ge(e)?Be(it,null,e.slice()):si(e)?wu(e):Be(fi,null,String(e))}function wu(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:us(e)}function r0(e,t){let u=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(ge(t))u=16;else if(typeof t=="object")if(s&65){const n=t.default;n&&(n._c&&(n._d=!1),r0(e,n()),n._c&&(n._d=!0));return}else{u=32;const n=t._;!n&&!Em(t)?t._ctx=Ct:n===3&&Ct&&(Ct.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else if(pe(t)){if(s&65){r0(e,{default:t});return}t={default:t,_ctx:Ct},u=32}else t=String(t),s&64?(u=16,t=[Ns(t)]):u=8;e.children=t,e.shapeFlag|=u}function ut(...e){const t={};for(let u=0;uwt||Ct;let l0,pa;{const e=Ji(),t=(u,s)=>{let n;return(n=e[u])||(n=e[u]=[]),n.push(s),i=>{n.length>1?n.forEach(o=>o(i)):n[0](i)}};l0=t("__VUE_INSTANCE_SETTERS__",u=>wt=u),pa=t("__VUE_SSR_SETTERS__",u=>ni=u)}const pi=e=>{const t=wt;return l0(e),e.scope.on(),()=>{e.scope.off(),l0(t)}},Cl=()=>{wt&&wt.scope.off(),l0(null)};function Sm(e){return e.vnode.shapeFlag&4}let ni=!1;function Ep(e,t=!1,u=!1){t&&pa(t);const{props:s,children:n}=e.vnode,i=Sm(e);sp(e,s,i,t),ap(e,n,u||t);const o=i?Cp(e,t):void 0;return t&&pa(!1),o}function Cp(e,t){const u=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,$f);const{setup:s}=u;if(s){Pu();const n=e.setupContext=s.length>1?_m(e):null,i=pi(e),o=gi(s,e,0,[e.props,n]),a=fd(o);if(Ru(),i(),(a||e.sp)&&!an(e)&&tm(e),a){if(o.then(Cl,Cl),t)return o.then(r=>{Bl(e,r)}).catch(r=>{W0(r,e,0)});e.asyncDep=o}else Bl(e,o)}else Nm(e)}function Bl(e,t,u){pe(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:Re(t)&&(e.setupState=Id(t)),Nm(e)}function Nm(e,t,u){const s=e.type;e.render||(e.render=s.render||Kt);{const n=pi(e);Pu();try{Vf(e)}finally{Ru(),n()}}}const Bp={get(e,t){return bt(e,"get",""),e[t]}};function _m(e){const t=u=>{e.exposed=u||{}};return{attrs:new Proxy(e.attrs,Bp),slots:e.slots,emit:e.emit,expose:t}}function Z0(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(Id(ef(e.exposed)),{get(t,u){if(u in t)return t[u];if(u in $n)return $n[u](e)},has(t,u){return u in t||u in $n}})):e.proxy}function yp(e,t=!0){return pe(e)?e.displayName||e.name:e.name||t&&e.__name}function xp(e){return pe(e)&&"__vccOpts"in e}const Ue=(e,t)=>mf(e,t,ni);function gt(e,t,u){try{a0(-1);const s=arguments.length;return s===2?Re(t)&&!ge(t)?si(t)?Be(e,null,[t]):Be(e,t):Be(e,null,t):(s>3?u=Array.prototype.slice.call(arguments,2):s===3&&si(u)&&(u=[u]),Be(e,t,u))}finally{a0(1)}}const Ap="3.5.40",yl=Kt;let ha;const xl=typeof window<"u"&&window.trustedTypes;if(xl)try{ha=xl.createPolicy("vue",{createHTML:e=>e})}catch{}const Om=ha?e=>ha.createHTML(e):e=>e,bp="http://www.w3.org/2000/svg",wp="http://www.w3.org/1998/Math/MathML",bu=typeof document<"u"?document:null,Al=bu&&bu.createElement("template"),Dp={insert:(e,t,u)=>{t.insertBefore(e,u||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,u,s)=>{const n=t==="svg"?bu.createElementNS(bp,e):t==="mathml"?bu.createElementNS(wp,e):u?bu.createElement(e,{is:u}):bu.createElement(e);return e==="select"&&s&&s.multiple!=null&&n.setAttribute("multiple",s.multiple),n},createText:e=>bu.createTextNode(e),createComment:e=>bu.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>bu.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,u,s,n,i){const o=u?u.previousSibling:t.lastChild;if(n&&(n===i||n.nextSibling))for(;t.insertBefore(n.cloneNode(!0),u),!(n===i||!(n=n.nextSibling)););else{Al.innerHTML=Om(s==="svg"?`${e}`:s==="mathml"?`${e}`:e);const a=Al.content;if(s==="svg"||s==="mathml"){const r=a.firstChild;for(;r.firstChild;)a.appendChild(r.firstChild);a.removeChild(r)}t.insertBefore(a,u)}return[o?o.nextSibling:t.firstChild,u?u.previousSibling:t.lastChild]}},Wu="transition",kn="animation",fn=Symbol("_vtc"),Tm={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},zm=st({},Xd,Tm),Fp=e=>(e.displayName="Transition",e.props=zm,e),Js=Fp((e,{slots:t})=>gt(Sf,Pm(e),t)),ms=(e,t=[])=>{ge(e)?e.forEach(u=>u(...t)):e&&e(...t)},bl=e=>e?ge(e)?e.some(t=>t.length>1):e.length>1:!1;function Pm(e){const t={};for(const w in e)w in Tm||(t[w]=e[w]);if(e.css===!1)return t;const{name:u="v",type:s,duration:n,enterFromClass:i=`${u}-enter-from`,enterActiveClass:o=`${u}-enter-active`,enterToClass:a=`${u}-enter-to`,appearFromClass:r=i,appearActiveClass:m=o,appearToClass:l=a,leaveFromClass:g=`${u}-leave-from`,leaveActiveClass:p=`${u}-leave-active`,leaveToClass:h=`${u}-leave-to`}=e,y=kp(n),E=y&&y[0],F=y&&y[1],{onBeforeEnter:B,onEnter:A,onEnterCancelled:O,onLeave:S,onLeaveCancelled:q,onBeforeAppear:I=B,onAppear:Y=A,onAppearCancelled:ne=O}=t,G=(w,T,V,ue)=>{w._enterCancelled=ue,Gu(w,T?l:a),Gu(w,T?m:o),V&&V()},M=(w,T)=>{w._isLeaving=!1,Gu(w,g),Gu(w,h),Gu(w,p),T&&T()},ie=w=>(T,V)=>{const ue=w?Y:A,Z=()=>G(T,w,V);ms(ue,[T,Z]),wl(()=>{Gu(T,w?r:i),lu(T,w?l:a),bl(ue)||Dl(T,s,E,Z)})};return st(t,{onBeforeEnter(w){ms(B,[w]),lu(w,i),lu(w,o)},onBeforeAppear(w){ms(I,[w]),lu(w,r),lu(w,m)},onEnter:ie(!1),onAppear:ie(!0),onLeave(w,T){w._isLeaving=!0;const V=()=>M(w,T);lu(w,g),w._enterCancelled?(lu(w,p),va(w)):(va(w),lu(w,p)),wl(()=>{w._isLeaving&&(Gu(w,g),lu(w,h),bl(S)||Dl(w,s,F,V))}),ms(S,[w,V])},onEnterCancelled(w){G(w,!1,void 0,!0),ms(O,[w])},onAppearCancelled(w){G(w,!0,void 0,!0),ms(ne,[w])},onLeaveCancelled(w){M(w),ms(q,[w])}})}function kp(e){if(e==null)return null;if(Re(e))return[_o(e.enter),_o(e.leave)];{const t=_o(e);return[t,t]}}function _o(e){return Ag(e)}function lu(e,t){t.split(/\s+/).forEach(u=>u&&e.classList.add(u)),(e[fn]||(e[fn]=new Set)).add(t)}function Gu(e,t){t.split(/\s+/).forEach(s=>s&&e.classList.remove(s));const u=e[fn];u&&(u.delete(t),u.size||(e[fn]=void 0))}function wl(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Sp=0;function Dl(e,t,u,s){const n=e._endId=++Sp,i=()=>{n===e._endId&&s()};if(u!=null)return setTimeout(i,u);const{type:o,timeout:a,propCount:r}=Rm(e,t);if(!o)return s();const m=o+"end";let l=0;const g=()=>{e.removeEventListener(m,p),i()},p=h=>{h.target===e&&++l>=r&&g()};setTimeout(()=>{l(u[y]||"").split(", "),n=s(`${Wu}Delay`),i=s(`${Wu}Duration`),o=Fl(n,i),a=s(`${kn}Delay`),r=s(`${kn}Duration`),m=Fl(a,r);let l=null,g=0,p=0;t===Wu?o>0&&(l=Wu,g=o,p=i.length):t===kn?m>0&&(l=kn,g=m,p=r.length):(g=Math.max(o,m),l=g>0?o>m?Wu:kn:null,p=l?l===Wu?i.length:r.length:0);const h=l===Wu&&/\b(?:transform|all)(?:,|$)/.test(s(`${Wu}Property`).toString());return{type:l,timeout:g,propCount:p,hasTransform:h}}function Fl(e,t){for(;e.lengthkl(u)+kl(e[s])))}function kl(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function va(e){return(e?e.ownerDocument:document).body.offsetHeight}function Np(e,t,u){const s=e[fn];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):u?e.setAttribute("class",t):e.className=t}const d0=Symbol("_vod"),er=Symbol("_vsh"),tn={name:"show",beforeMount(e,{value:t},{transition:u}){e[d0]=e.style.display==="none"?"":e.style.display,u&&t?u.beforeEnter(e):Sn(e,t)},mounted(e,{value:t},{transition:u}){u&&t&&u.enter(e)},updated(e,{value:t,oldValue:u},{transition:s}){!t!=!u&&(s?t?(s.beforeEnter(e),Sn(e,!0),s.enter(e)):s.leave(e,()=>{Sn(e,!1)}):Sn(e,t))},beforeUnmount(e,{value:t}){Sn(e,t)}};function Sn(e,t){e.style.display=t?e[d0]:"none",e[er]=!t}const Lm=Symbol("");function X0(e){const t=uu();if(!t)return;const u=t.ut=(n=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach(i=>m0(i,n))},s=()=>{const n=e(t.proxy);t.ce?m0(t.ce,n):Ea(t.subTree,n),u(n)};sm(()=>{Ud(s)}),En(()=>{_u(s,Kt,{flush:"post"});const n=new MutationObserver(s);n.observe(t.subTree.el.parentNode,{childList:!0}),gn(()=>n.disconnect())})}function Ea(e,t){if(e.shapeFlag&128){const u=e.suspense;e=u.activeBranch,u.pendingBranch&&!u.isHydrating&&u.effects.push(()=>{Ea(u.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)m0(e.el,t);else if(e.type===it)e.children.forEach(u=>Ea(u,t));else if(e.type===Un){let{el:u,anchor:s}=e;for(;u&&(m0(u,t),u!==s);)u=u.nextSibling}}function m0(e,t){if(e.nodeType===1){const u=e.style;let s="";for(const n in t){const i=_g(t[n]);u.setProperty(`--${n}`,i),s+=`--${n}: ${i};`}u[Lm]=s}}const _p=/(?:^|;)\s*display\s*:/;function Op(e,t,u){const s=e.style,n=Ge(u);let i=!1;if(u&&!n){if(t)if(Ge(t))for(const o of t.split(";")){const a=o.slice(0,o.indexOf(":")).trim();u[a]==null&&Rn(s,a,"")}else for(const o in t)u[o]==null&&Rn(s,o,"");for(const o in u){o==="display"&&(i=!0);const a=u[o];a!=null?zp(e,o,!Ge(t)&&t?t[o]:void 0,a)||Rn(s,o,a):Rn(s,o,"")}}else if(n){if(t!==u){const o=s[Lm];o&&(u+=";"+o),s.cssText=u,i=_p.test(u)}}else t&&e.removeAttribute("style");d0 in e&&(e[d0]=i?s.display:"",e[er]&&(s.display="none"))}const Sl=/\s*!important$/;function Rn(e,t,u){if(ge(u))u.forEach(s=>Rn(e,t,s));else if(u==null&&(u=""),t.startsWith("--"))e.setProperty(t,u);else{const s=Tp(e,t);Sl.test(u)?e.setProperty(Iu(s),u.replace(Sl,""),"important"):e[s]=u}}const Nl=["Webkit","Moz","ms"],Oo={};function Tp(e,t){const u=Oo[t];if(u)return u;let s=Dt(t);if(s!=="filter"&&s in e)return Oo[t]=s;s=j0(s);for(let n=0;nTo||(Mp.then(()=>To=0),To=Date.now());function Up(e,t){const u=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=u.attached)return;const n=u.value;if(ge(n)){const i=s.stopImmediatePropagation;s.stopImmediatePropagation=()=>{i.call(s),s._stopped=!0};const o=n.slice(),a=[s];for(let r=0;re.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Vp=(e,t,u,s,n,i)=>{const o=n==="svg";t==="class"?Np(e,s,o):t==="style"?Op(e,u,s):z0(t)?P0(t)||Rp(e,t,u,s,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Wp(e,t,s,o))?(Tl(e,t,s),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&Ol(e,t,s,o,i,t!=="value")):e._isVueCE&&(Hp(e,t)||e._def.__asyncLoader&&(/[A-Z]/.test(t)||!Ge(s)))?Tl(e,Dt(t),s,i,t):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),Ol(e,t,s,o))};function Wp(e,t,u,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&Pl(t)&&pe(u));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="autocorrect"||t==="sandbox"&&e.tagName==="IFRAME"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const n=e.tagName;if(n==="IMG"||n==="VIDEO"||n==="CANVAS"||n==="SOURCE")return!1}return Pl(t)&&Ge(u)?!1:t in e}function Hp(e,t){const u=e._def.props;if(!u)return!1;const s=Dt(t);return Array.isArray(u)?u.some(n=>Dt(n)===s):Object.keys(u).some(n=>Dt(n)===s)}const jm=new WeakMap,Im=new WeakMap,c0=Symbol("_moveCb"),Rl=Symbol("_enterCb"),Gp=e=>(delete e.props.mode,e),qp=Gp({name:"TransitionGroup",props:st({},zm,{tag:String,moveClass:String}),setup(e,{slots:t}){const u=uu(),s=Zd();let n,i;return nm(()=>{if(!n.length)return;const o=e.moveClass||`${e.name||"v"}-move`;if(!Xp(n[0].el,u.vnode.el,o)){n=[];return}n.forEach(Kp),n.forEach(Yp);const a=n.filter(Zp);va(u.vnode.el),a.forEach(r=>{const m=r.el,l=m.style;lu(m,o),l.transform=l.webkitTransform=l.transitionDuration="";const g=m[c0]=p=>{p&&p.target!==m||(!p||p.propertyName.endsWith("transform"))&&(m.removeEventListener("transitionend",g),m[c0]=null,Gu(m,o))};m.addEventListener("transitionend",g)}),n=[]}),()=>{const o=Se(e),a=Pm(o);let r=o.tag||it;if(n=[],i)for(let m=0;m{a.split(/\s+/).forEach(r=>r&&s.classList.remove(r))}),u.split(/\s+/).forEach(a=>a&&s.classList.add(a)),s.style.display="none";const i=t.nodeType===1?t:t.parentNode;i.appendChild(s);const{hasTransform:o}=Rm(s);return i.removeChild(s),o}const Ll=e=>{const t=e.props["onUpdate:modelValue"]||!1;return ge(t)?u=>$i(t,u):t};function Jp(e){e.target.composing=!0}function jl(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const zo=Symbol("_assign");function Il(e,t,u){return t&&(e=e.trim()),u&&(e=Ia(e)),e}const Oy={created(e,{modifiers:{lazy:t,trim:u,number:s}},n){e[zo]=Ll(n);const i=s||n.props&&n.props.type==="number";Qs(e,t?"change":"input",o=>{o.target.composing||e[zo](Il(e.value,u,i))}),(u||i)&&Qs(e,"change",()=>{e.value=Il(e.value,u,i)}),t||(Qs(e,"compositionstart",Jp),Qs(e,"compositionend",jl),Qs(e,"change",jl))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,oldValue:u,modifiers:{lazy:s,trim:n,number:i}},o){if(e[zo]=Ll(o),e.composing)return;const a=(i||e.type==="number")&&!/^0\d/.test(e.value)?Ia(e.value):e.value,r=t??"";if(a===r)return;const m=e.getRootNode();(m instanceof Document||m instanceof ShadowRoot)&&m.activeElement===e&&e.type!=="range"&&(s&&t===u||n&&e.value.trim()===r)||(e.value=r)}},Qp=["ctrl","shift","alt","meta"],eh={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>Qp.some(u=>e[`${u}Key`]&&!t.includes(u))},Vi=(e,t)=>{if(!e)return e;const u=e._withMods||(e._withMods={}),s=t.join(".");return u[s]||(u[s]=((n,...i)=>{for(let o=0;o{const u=e._withKeys||(e._withKeys={}),s=t.join(".");return u[s]||(u[s]=(n=>{if(!("key"in n))return;const i=Iu(n.key);if(t.some(o=>o===i||th[o]===i))return e(n)}))},uh=st({patchProp:Vp},Dp);let Ml;function sh(){return Ml||(Ml=lp(uh))}const Ty=((...e)=>{const t=sh().createApp(...e),{mount:u}=t;return t.mount=s=>{const n=ih(s);if(!n)return;const i=t._component;!pe(i)&&!i.render&&!i.template&&(i.template=n.innerHTML),n.nodeType===1&&(n.textContent="");const o=u(n,!1,nh(n));return n instanceof Element&&(n.removeAttribute("v-cloak"),n.setAttribute("data-v-app","")),o},t});function nh(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function ih(e){return Ge(e)?document.querySelector(e):e}class g0{static GLOBAL_SCOPE_VOLATILE="nextcloud_vol";static GLOBAL_SCOPE_PERSISTENT="nextcloud_per";scope;wrapped;constructor(t,u,s){this.scope=`${s?g0.GLOBAL_SCOPE_PERSISTENT:g0.GLOBAL_SCOPE_VOLATILE}_${btoa(t)}_`,this.wrapped=u}scopeKey(t){return`${this.scope}${t}`}setItem(t,u){this.wrapped.setItem(this.scopeKey(t),u)}getItem(t){return this.wrapped.getItem(this.scopeKey(t))}removeItem(t){this.wrapped.removeItem(this.scopeKey(t))}clear(){Object.keys(this.wrapped).filter(t=>t.startsWith(this.scope)).map(this.wrapped.removeItem.bind(this.wrapped))}}class oh{appId;persisted=!1;clearedOnLogout=!1;constructor(t){this.appId=t}persist(t=!0){return this.persisted=t,this}clearOnLogout(t=!0){return this.clearedOnLogout=t,this}build(){return new g0(this.appId,this.persisted?window.localStorage:window.sessionStorage,!this.clearedOnLogout)}}function ah(e){return new oh(e)}function zy(e,t,u){const s=`#initial-state-${e}-${t}`;if(window._nc_initial_state?.has(s))return window._nc_initial_state.get(s);window._nc_initial_state||(window._nc_initial_state=new Map);const n=document.querySelector(s);if(n===null){if(u!==void 0)return u;throw new Error(`Could not find initial state ${t} of ${e}`)}try{const i=JSON.parse(atob(n.value));return window._nc_initial_state.set(s,i),i}catch(i){if(console.error("[@nextcloud/initial-state] Could not parse initial state",{key:t,app:e,error:i}),u!==void 0)return u;throw new Error(`Could not parse initial state ${t} of ${e}`,{cause:i})}}function rh(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Um={exports:{}},tt=Um.exports={},mu,cu;function Ca(){throw new Error("setTimeout has not been defined")}function Ba(){throw new Error("clearTimeout has not been defined")}(function(){try{typeof setTimeout=="function"?mu=setTimeout:mu=Ca}catch{mu=Ca}try{typeof clearTimeout=="function"?cu=clearTimeout:cu=Ba}catch{cu=Ba}})();function Vm(e){if(mu===setTimeout)return setTimeout(e,0);if((mu===Ca||!mu)&&setTimeout)return mu=setTimeout,setTimeout(e,0);try{return mu(e,0)}catch{try{return mu.call(null,e,0)}catch{return mu.call(this,e,0)}}}function lh(e){if(cu===clearTimeout)return clearTimeout(e);if((cu===Ba||!cu)&&clearTimeout)return cu=clearTimeout,clearTimeout(e);try{return cu(e)}catch{try{return cu.call(null,e)}catch{return cu.call(this,e)}}}var Su=[],ln=!1,xs,Wi=-1;function dh(){!ln||!xs||(ln=!1,xs.length?Su=xs.concat(Su):Wi=-1,Su.length&&Wm())}function Wm(){if(!ln){var e=Vm(dh);ln=!0;for(var t=Su.length;t;){for(xs=Su,Su=[];++Wi1)for(var u=1;uconsole.error("SEMVER",...t):()=>{},Po}var Ro,Ul;function qm(){if(Ul)return Ro;Ul=1;const e="2.0.0",t=256,u=Number.MAX_SAFE_INTEGER||9007199254740991,s=16,n=t-6;return Ro={MAX_LENGTH:t,MAX_SAFE_COMPONENT_LENGTH:s,MAX_SAFE_BUILD_LENGTH:n,MAX_SAFE_INTEGER:u,RELEASE_TYPES:["major","premajor","minor","preminor","patch","prepatch","prerelease"],SEMVER_SPEC_VERSION:e,FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2},Ro}var Lo={exports:{}},Vl;function ch(){return Vl||(Vl=1,(function(e,t){const{MAX_SAFE_COMPONENT_LENGTH:u,MAX_SAFE_BUILD_LENGTH:s,MAX_LENGTH:n}=qm(),i=Gm();t=e.exports={};const o=t.re=[],a=t.safeRe=[],r=t.src=[],m=t.safeSrc=[],l=t.t={};let g=0;const p="[a-zA-Z0-9-]",h=[["\\s",1],["\\d",n],[p,s]],y=F=>{for(const[B,A]of h)F=F.split(`${B}*`).join(`${B}{0,${A}}`).split(`${B}+`).join(`${B}{1,${A}}`);return F},E=(F,B,A)=>{const O=y(B),S=g++;i(F,S,B),l[F]=S,r[S]=B,m[S]=O,o[S]=new RegExp(B,A?"g":void 0),a[S]=new RegExp(O,A?"g":void 0)};E("NUMERICIDENTIFIER","0|[1-9]\\d*"),E("NUMERICIDENTIFIERLOOSE","\\d+"),E("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${p}*`),E("MAINVERSION",`(${r[l.NUMERICIDENTIFIER]})\\.(${r[l.NUMERICIDENTIFIER]})\\.(${r[l.NUMERICIDENTIFIER]})`),E("MAINVERSIONLOOSE",`(${r[l.NUMERICIDENTIFIERLOOSE]})\\.(${r[l.NUMERICIDENTIFIERLOOSE]})\\.(${r[l.NUMERICIDENTIFIERLOOSE]})`),E("PRERELEASEIDENTIFIER",`(?:${r[l.NONNUMERICIDENTIFIER]}|${r[l.NUMERICIDENTIFIER]})`),E("PRERELEASEIDENTIFIERLOOSE",`(?:${r[l.NONNUMERICIDENTIFIER]}|${r[l.NUMERICIDENTIFIERLOOSE]})`),E("PRERELEASE",`(?:-(${r[l.PRERELEASEIDENTIFIER]}(?:\\.${r[l.PRERELEASEIDENTIFIER]})*))`),E("PRERELEASELOOSE",`(?:-?(${r[l.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${r[l.PRERELEASEIDENTIFIERLOOSE]})*))`),E("BUILDIDENTIFIER",`${p}+`),E("BUILD",`(?:\\+(${r[l.BUILDIDENTIFIER]}(?:\\.${r[l.BUILDIDENTIFIER]})*))`),E("FULLPLAIN",`v?${r[l.MAINVERSION]}${r[l.PRERELEASE]}?${r[l.BUILD]}?`),E("FULL",`^${r[l.FULLPLAIN]}$`),E("LOOSEPLAIN",`[v=\\s]*${r[l.MAINVERSIONLOOSE]}${r[l.PRERELEASELOOSE]}?${r[l.BUILD]}?`),E("LOOSE",`^${r[l.LOOSEPLAIN]}$`),E("GTLT","((?:<|>)?=?)"),E("XRANGEIDENTIFIERLOOSE",`${r[l.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`),E("XRANGEIDENTIFIER",`${r[l.NUMERICIDENTIFIER]}|x|X|\\*`),E("XRANGEPLAIN",`[v=\\s]*(${r[l.XRANGEIDENTIFIER]})(?:\\.(${r[l.XRANGEIDENTIFIER]})(?:\\.(${r[l.XRANGEIDENTIFIER]})(?:${r[l.PRERELEASE]})?${r[l.BUILD]}?)?)?`),E("XRANGEPLAINLOOSE",`[v=\\s]*(${r[l.XRANGEIDENTIFIERLOOSE]})(?:\\.(${r[l.XRANGEIDENTIFIERLOOSE]})(?:\\.(${r[l.XRANGEIDENTIFIERLOOSE]})(?:${r[l.PRERELEASELOOSE]})?${r[l.BUILD]}?)?)?`),E("XRANGE",`^${r[l.GTLT]}\\s*${r[l.XRANGEPLAIN]}$`),E("XRANGELOOSE",`^${r[l.GTLT]}\\s*${r[l.XRANGEPLAINLOOSE]}$`),E("COERCEPLAIN",`(^|[^\\d])(\\d{1,${u}})(?:\\.(\\d{1,${u}}))?(?:\\.(\\d{1,${u}}))?`),E("COERCE",`${r[l.COERCEPLAIN]}(?:$|[^\\d])`),E("COERCEFULL",r[l.COERCEPLAIN]+`(?:${r[l.PRERELEASE]})?(?:${r[l.BUILD]})?(?:$|[^\\d])`),E("COERCERTL",r[l.COERCE],!0),E("COERCERTLFULL",r[l.COERCEFULL],!0),E("LONETILDE","(?:~>?)"),E("TILDETRIM",`(\\s*)${r[l.LONETILDE]}\\s+`,!0),t.tildeTrimReplace="$1~",E("TILDE",`^${r[l.LONETILDE]}${r[l.XRANGEPLAIN]}$`),E("TILDELOOSE",`^${r[l.LONETILDE]}${r[l.XRANGEPLAINLOOSE]}$`),E("LONECARET","(?:\\^)"),E("CARETTRIM",`(\\s*)${r[l.LONECARET]}\\s+`,!0),t.caretTrimReplace="$1^",E("CARET",`^${r[l.LONECARET]}${r[l.XRANGEPLAIN]}$`),E("CARETLOOSE",`^${r[l.LONECARET]}${r[l.XRANGEPLAINLOOSE]}$`),E("COMPARATORLOOSE",`^${r[l.GTLT]}\\s*(${r[l.LOOSEPLAIN]})$|^$`),E("COMPARATOR",`^${r[l.GTLT]}\\s*(${r[l.FULLPLAIN]})$|^$`),E("COMPARATORTRIM",`(\\s*)${r[l.GTLT]}\\s*(${r[l.LOOSEPLAIN]}|${r[l.XRANGEPLAIN]})`,!0),t.comparatorTrimReplace="$1$2$3",E("HYPHENRANGE",`^\\s*(${r[l.XRANGEPLAIN]})\\s+-\\s+(${r[l.XRANGEPLAIN]})\\s*$`),E("HYPHENRANGELOOSE",`^\\s*(${r[l.XRANGEPLAINLOOSE]})\\s+-\\s+(${r[l.XRANGEPLAINLOOSE]})\\s*$`),E("STAR","(<|>)?=?\\s*\\*"),E("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),E("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")})(Lo,Lo.exports)),Lo.exports}var jo,Wl;function gh(){if(Wl)return jo;Wl=1;const e=Object.freeze({loose:!0}),t=Object.freeze({});return jo=u=>u?typeof u!="object"?e:u:t,jo}var Io,Hl;function fh(){if(Hl)return Io;Hl=1;const e=/^[0-9]+$/,t=(u,s)=>{if(typeof u=="number"&&typeof s=="number")return u===s?0:ut(s,u)},Io}var Mo,Gl;function Km(){if(Gl)return Mo;Gl=1;const e=Gm(),{MAX_LENGTH:t,MAX_SAFE_INTEGER:u}=qm(),{safeRe:s,t:n}=ch(),i=gh(),{compareIdentifiers:o}=fh(),a=(m,l)=>{const g=l.split(".");if(g.length>m.length)return!1;for(let p=0;pt)throw new TypeError(`version is longer than ${t} characters`);e("SemVer",l,g),this.options=g,this.loose=!!g.loose,this.includePrerelease=!!g.includePrerelease;const p=l.trim().match(g.loose?s[n.LOOSE]:s[n.FULL]);if(!p)throw new TypeError(`Invalid Version: ${l}`);if(this.raw=l,this.major=+p[1],this.minor=+p[2],this.patch=+p[3],this.major>u||this.major<0)throw new TypeError("Invalid major version");if(this.minor>u||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>u||this.patch<0)throw new TypeError("Invalid patch version");p[4]?this.prerelease=p[4].split(".").map(h=>{if(/^[0-9]+$/.test(h)){const y=+h;if(y>=0&&yl.major?1:this.minorl.minor?1:this.patchl.patch?1:0}comparePre(l){if(l instanceof r||(l=new r(l,this.options)),this.prerelease.length&&!l.prerelease.length)return-1;if(!this.prerelease.length&&l.prerelease.length)return 1;if(!this.prerelease.length&&!l.prerelease.length)return 0;let g=0;do{const p=this.prerelease[g],h=l.prerelease[g];if(e("prerelease compare",g,p,h),p===void 0&&h===void 0)return 0;if(h===void 0)return 1;if(p===void 0)return-1;if(p!==h)return o(p,h)}while(++g)}compareBuild(l){l instanceof r||(l=new r(l,this.options));let g=0;do{const p=this.build[g],h=l.build[g];if(e("build compare",g,p,h),p===void 0&&h===void 0)return 0;if(h===void 0)return 1;if(p===void 0)return-1;if(p!==h)return o(p,h)}while(++g)}inc(l,g,p){if(l.startsWith("pre")){if(!g&&p===!1)throw new Error("invalid increment argument: identifier is empty");if(g){const h=`-${g}`.match(this.options.loose?s[n.PRERELEASELOOSE]:s[n.PRERELEASE]);if(!h||h[1]!==g)throw new Error(`invalid identifier: ${g}`)}}switch(l){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",g,p);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",g,p);break;case"prepatch":this.prerelease.length=0,this.inc("patch",g,p),this.inc("pre",g,p);break;case"prerelease":this.prerelease.length===0&&this.inc("patch",g,p),this.inc("pre",g,p);break;case"release":if(this.prerelease.length===0)throw new Error(`version ${this.raw} is not a prerelease`);this.prerelease.length=0;break;case"major":(this.minor!==0||this.patch!==0||this.prerelease.length===0)&&this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":(this.patch!==0||this.prerelease.length===0)&&this.minor++,this.patch=0,this.prerelease=[];break;case"patch":this.prerelease.length===0&&this.patch++,this.prerelease=[];break;case"pre":{const h=Number(p)?1:0;if(this.prerelease.length===0)this.prerelease=[h];else{let y=this.prerelease.length;for(;--y>=0;)typeof this.prerelease[y]=="number"&&(this.prerelease[y]++,y=-2);if(y===-1){if(g===this.prerelease.join(".")&&p===!1)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(h)}}if(g){let y=[g,h];if(p===!1&&(y=[g]),a(this.prerelease,g)){const E=this.prerelease[g.split(".").length];isNaN(E)&&(this.prerelease=y)}else this.prerelease=y}break}default:throw new Error(`invalid increment argument: ${l}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}}return Mo=r,Mo}var $o,ql;function ph(){if(ql)return $o;ql=1;const e=Km();return $o=(t,u)=>new e(t,u).major,$o}var hh=ph();const Kl=O0(hh);var Uo,Yl;function vh(){if(Yl)return Uo;Yl=1;const e=Km();return Uo=(t,u,s=!1)=>{if(t instanceof e)return t;try{return new e(t,u)}catch(n){if(!s)return null;throw n}},Uo}var Vo,Zl;function Eh(){if(Zl)return Vo;Zl=1;const e=vh();return Vo=(t,u)=>{const s=e(t,u);return s?s.version:null},Vo}var Ch=Eh();const Bh=O0(Ch);class yh{bus;constructor(t){typeof t.getVersion!="function"||!Bh(t.getVersion())?console.warn("Proxying an event bus with an unknown or invalid version"):Kl(t.getVersion())!==Kl(this.getVersion())&&console.warn("Proxying an event bus of version "+t.getVersion()+" with "+this.getVersion()),this.bus=t}getVersion(){return"3.3.3"}subscribe(t,u){this.bus.subscribe(t,u)}unsubscribe(t,u){this.bus.unsubscribe(t,u)}emit(t,...u){this.bus.emit(t,...u)}}class xh{handlers=new Map;getVersion(){return"3.3.3"}subscribe(t,u){this.handlers.set(t,(this.handlers.get(t)||[]).concat(u))}unsubscribe(t,u){this.handlers.set(t,(this.handlers.get(t)||[]).filter(s=>s!==u))}emit(t,...u){(this.handlers.get(t)||[]).forEach(s=>{try{s(u[0])}catch(n){console.error("could not invoke event listener",n)}})}}let Nn=null;function tr(){return Nn!==null?Nn:typeof window>"u"?new Proxy({},{get:()=>()=>console.error("Window not available, EventBus can not be established!")}):(window.OC?._eventBus&&typeof window._nc_event_bus>"u"&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),typeof window?._nc_event_bus<"u"?Nn=new yh(window._nc_event_bus):Nn=window._nc_event_bus=new xh,Nn)}function Ym(e,t){tr().subscribe(e,t)}function Ah(e,t){tr().unsubscribe(e,t)}function bh(e,...t){tr().emit(e,...t)}function f0(e,t){return $a()?(Tg(e,t),!0):!1}const Wo=new WeakMap,wh=(...e)=>{var t;const u=e[0],s=(t=uu())===null||t===void 0?void 0:t.proxy,n=s??$a();if(n==null&&!Hd())throw new Error("injectLocal must be called in setup");return n&&Wo.has(n)&&u in Wo.get(n)?Wo.get(n)[u]:Nu(...e)},p0=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const Dh=e=>e!=null,Fh=Object.prototype.toString,kh=e=>Fh.call(e)==="[object Object]",Oi=()=>{};function Xl(e){return e.endsWith("rem")?Number.parseFloat(e)*16:Number.parseFloat(e)}function Hi(e){return Array.isArray(e)?e:[e]}function Py(e){if(!p0)return e;let t=0,u,s;const n=()=>{t-=1,s&&t<=0&&(s.stop(),u=void 0,s=void 0)};return((...i)=>(t+=1,s||(s=Og(!0),u=s.run(()=>e(...i))),f0(n),u))}function Sh(e,t=1e3,u={}){const{immediate:s=!0,immediateCallback:n=!1}=u;let i=null;const o=ks(!1);function a(){i&&(clearInterval(i),i=null)}function r(){o.value=!1,a()}function m(){const l=zt(t);l<=0||(o.value=!0,n&&e(),a(),o.value&&(i=setInterval(e,l)))}return s&&p0&&m(),(ot(t)||typeof t=="function")&&f0(_u(t,()=>{o.value&&p0&&m()})),f0(r),{isActive:Qg(o),pause:r,resume:m}}function Nh(e,t,u){return _u(e,t,{...u,immediate:!0})}const hi=p0?window:void 0;function un(e){var t;const u=zt(e);return(t=u?.$el)!==null&&t!==void 0?t:u}function Ju(...e){const t=(s,n,i,o)=>(s.addEventListener(n,i,o),()=>s.removeEventListener(n,i,o)),u=Ue(()=>{const s=Hi(zt(e[0])).filter(n=>n!=null);return s.every(n=>typeof n!="string")?s:void 0});return Nh(()=>{var s,n;return[(s=(n=u.value)===null||n===void 0?void 0:n.map(i=>un(i)))!==null&&s!==void 0?s:[hi].filter(i=>i!=null),Hi(zt(u.value?e[1]:e[0])),Hi(ke(u.value?e[2]:e[1])),zt(u.value?e[3]:e[2])]},([s,n,i,o],a,r)=>{if(!s?.length||!n?.length||!i?.length)return;const m=kh(o)?{...o}:o,l=s.flatMap(g=>n.flatMap(p=>i.map(h=>t(g,p,h,m))));r(()=>{l.forEach(g=>g())})},{flush:"post"})}function Ry(e,t,u={}){const{window:s=hi,ignore:n=[],capture:i=!0,detectIframe:o=!1,controls:a=!1}=u;if(!s)return a?{stop:Oi,cancel:Oi,trigger:Oi}:Oi;let r=!0;const m=F=>zt(n).some(B=>{if(typeof B=="string")return Array.from(s.document.querySelectorAll(B)).some(A=>A===F.target||F.composedPath().includes(A));{const A=un(B);return A&&(F.target===A||F.composedPath().includes(A))}});function l(F){const B=zt(F);return B&&B.$.subTree.shapeFlag===16}function g(F,B){const A=zt(F),O=A.$.subTree&&A.$.subTree.children;return O==null||!Array.isArray(O)?!1:O.some(S=>S.el===B.target||B.composedPath().includes(S.el))}const p=F=>{const B=un(e);if(F.target!=null&&!(!(B instanceof Element)&&l(e)&&g(e,F))&&!(!B||B===F.target||F.composedPath().includes(B))){if("detail"in F&&F.detail===0&&(r=!m(F)),!r){r=!0;return}t(F)}};let h=!1;const y=[Ju(s,"click",F=>{h||(h=!0,setTimeout(()=>{h=!1},0),p(F))},{passive:!0,capture:i}),Ju(s,"pointerdown",F=>{const B=un(e);r=!m(F)&&!!(B&&!F.composedPath().includes(B))},{passive:!0}),o&&Ju(s,"blur",F=>{setTimeout(()=>{const B=un(e);let A=s.document.activeElement;for(;A?.shadowRoot;)A=A.shadowRoot.activeElement;A?.tagName==="IFRAME"&&!B?.contains(s.document.activeElement)&&t(F)},0)},{passive:!0})].filter(Boolean),E=()=>y.forEach(F=>F());return a?{stop:E,cancel:()=>{r=!1},trigger:F=>{r=!0,p(F),r=!1}}:E}function _h(){const e=ks(!1),t=uu();return t&&En(()=>{e.value=!0},t),e}function Zm(e){const t=_h();return Ue(()=>(t.value,!!e()))}function Ly(e,t,u={}){const{window:s=hi,...n}=u;let i;const o=Zm(()=>s&&"MutationObserver"in s),a=()=>{i&&(i.disconnect(),i=void 0)},r=_u(Ue(()=>{const g=Hi(zt(e)).map(un).filter(Dh);return new Set(g)}),g=>{a(),o.value&&g.size&&(i=new MutationObserver(t),g.forEach(p=>i.observe(p,n)))},{immediate:!0,flush:"post"}),m=()=>i?.takeRecords(),l=()=>{r(),a()};return f0(l),{isSupported:o,stop:l,takeRecords:m}}function Oh(e){return typeof e=="function"?e:typeof e=="string"?t=>t.key===e:Array.isArray(e)?t=>e.includes(t.key):()=>!0}function Jl(...e){let t,u,s={};e.length===3?(t=e[0],u=e[1],s=e[2]):e.length===2?typeof e[1]=="object"?(t=!0,u=e[0],s=e[1]):(t=e[0],u=e[1]):(t=!0,u=e[0]);const{target:n=hi,eventName:i="keydown",passive:o=!1,dedupe:a=!1}=s,r=Oh(t);return Ju(n,i,m=>{m.repeat&&zt(a)||r(m)&&u(m)},o)}const Th=Symbol("vueuse-ssr-width");function zh(){const e=Hd()?wh(Th,null):null;return typeof e=="number"?e:void 0}function Ph(e,t={}){const{window:u=hi,ssrWidth:s=zh()}=t,n=Zm(()=>u&&"matchMedia"in u&&typeof u.matchMedia=="function"),i=ks(typeof s=="number"),o=ks(),a=ks(!1),r=m=>{a.value=m.matches};return Gd(()=>{if(i.value){i.value=!n.value,a.value=zt(e).split(",").some(m=>{const l=m.includes("not all"),g=m.match(/\(\s*min-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/),p=m.match(/\(\s*max-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/);let h=!!(g||p);return g&&h&&(h=s>=Xl(g[1])),p&&h&&(h=s<=Xl(p[1])),l?!h:h});return}n.value&&(o.value=u.matchMedia(zt(e)),a.value=o.value.matches)}),Ju(o,"change",r,{passive:!0}),Ue(()=>a.value)}function jy(e){return Ph("(prefers-color-scheme: dark)",e)}function Rh(e,t={}){const{threshold:u=50,onSwipe:s,onSwipeEnd:n,onSwipeStart:i,passive:o=!0}=t,a=Xn({x:0,y:0}),r=Xn({x:0,y:0}),m=Ue(()=>a.x-r.x),l=Ue(()=>a.y-r.y),{max:g,abs:p}=Math,h=Ue(()=>g(p(m.value),p(l.value))>=u),y=ks(!1),E=Ue(()=>h.value?p(m.value)>p(l.value)?m.value>0?"left":"right":l.value>0?"up":"down":"none"),F=I=>[I.touches[0].clientX,I.touches[0].clientY],B=(I,Y)=>{a.x=I,a.y=Y},A=(I,Y)=>{r.x=I,r.y=Y},O={passive:o,capture:!o},S=I=>{y.value&&n?.(I,E.value),y.value=!1},q=[Ju(e,"touchstart",I=>{if(I.touches.length!==1)return;const[Y,ne]=F(I);B(Y,ne),A(Y,ne),i?.(I)},O),Ju(e,"touchmove",I=>{if(I.touches.length!==1)return;const[Y,ne]=F(I);A(Y,ne),O.capture&&!O.passive&&Math.abs(m.value)>Math.abs(l.value)&&I.preventDefault(),!y.value&&h.value&&(y.value=!0),y.value&&s?.(I)},O),Ju(e,["touchend","touchcancel"],S,O)];return{isSwiping:y,direction:E,coordsStart:a,coordsEnd:r,lengthX:m,lengthY:l,stop:()=>q.forEach(I=>I())}}var Lh="M13 14H11V9H13M13 18H11V16H13M1 21H23L12 2L1 21Z",Iy="M11,15H13V17H11V15M11,7H13V13H11V7M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20Z",jh="M23,12L20.56,9.22L20.9,5.54L17.29,4.72L15.4,1.54L12,3L8.6,1.54L6.71,4.72L3.1,5.53L3.44,9.21L1,12L3.44,14.78L3.1,18.47L6.71,19.29L8.6,22.47L12,21L15.4,22.46L17.29,19.28L20.9,18.46L20.56,14.78L23,12M13,17H11V15H13V17M13,13H11V7H13V13Z",My="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z",$y="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",Ih="M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",Mh="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",$h="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",Ql="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z",Uh="M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",Uy="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",Vy="M21,15.61L19.59,17L14.58,12L19.59,7L21,8.39L17.44,12L21,15.61M3,6H16V8H3V6M3,13V11H13V13H3M3,18V16H16V18H3Z",Vh="M14,19H18V5H14M6,19H10V5H6V19Z",Wh="M8,5.14V19.14L19,12.14L8,5.14Z",Wy="M12.5,8C9.85,8 7.45,9 5.6,10.6L2,7V16H11L7.38,12.38C8.77,11.22 10.54,10.5 12.5,10.5C16.04,10.5 19.05,12.81 20.1,16L22.47,15.22C21.08,11.03 17.15,8 12.5,8Z";const ur=1024,Xm=ur/2,h0=e=>document.documentElement.clientWidth{Jm.value=h0(ur),Qm.value=h0(Xm)},{passive:!0});function Hy(){return Jn(Jm)}function Gy(){return Jn(Qm)}class Hh{bundle;constructor(t){this.bundle={pluralFunction:t,translations:{}}}addTranslations(t){const u=Object.values(t.translations[""]??{}).map(({msgid:s,msgid_plural:n,msgstr:i})=>n!==void 0?[`_${s}_::_${n}_`,i]:[s,i[0]]);this.bundle.translations={...this.bundle.translations,...Object.fromEntries(u)}}gettext(t,u={}){return Ii("",t,u,void 0,{bundle:this.bundle})}ngettext(t,u,s,n={}){return vg("",t,u,s,n,{bundle:this.bundle})}}class Gh{debug=!1;language="en";translations={};setLanguage(t){return this.language=t,this}detectLocale(){return this.detectLanguage()}detectLanguage(){return this.setLanguage(T0().replace("-","_"))}addTranslation(t,u){return this.translations[t]=u,this}enableDebugMode(){return this.debug=!0,this}build(){this.debug&&console.debug(`Creating gettext instance for language ${this.language}`);const t=new Hh(u=>Eg(u,this.language));return this.language in this.translations&&t.addTranslations(this.translations[this.language]),t}}function e3(){return new Gh}const sr=e3().detectLanguage().build(),qh=(...e)=>sr.ngettext(...e),ft=(...e)=>sr.gettext(...e);function pn(...e){for(const t of e)if(!t.registered){for(const{l:u,t:s}of t){if(u!==T0()||!s)continue;const n=Object.fromEntries(Object.entries(s).map(([i,o])=>[i,{msgid:i,msgid_plural:o.p,msgstr:o.v}]));sr.addTranslations({translations:{"":n}})}t.registered=!0}}const Kh=[{l:"ar",t:{"a few seconds ago":{v:["منذ عدة ثوانٍ"]},"sec. ago":{v:["ثانية مضت"]},"seconds ago":{v:["ثوانٍ مضت"]}}},{l:"ast",t:{"a few seconds ago":{v:["hai unos segundos"]},"sec. ago":{v:["hai segs"]},"seconds ago":{v:["hai segundos"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"a few seconds ago":{v:["před několika sekundami"]},"sec. ago":{v:["sek. před"]},"seconds ago":{v:["sekund předtím"]}}},{l:"cs-CZ",t:{"a few seconds ago":{v:["před několika sekundami"]},"sec. ago":{v:["sek. před"]},"seconds ago":{v:["sekund předtím"]}}},{l:"da",t:{"a few seconds ago":{v:["et par sekunder siden"]},"sec. ago":{v:["sek. siden"]},"seconds ago":{v:["sekunder siden"]}}},{l:"de",t:{"a few seconds ago":{v:["vor ein paar Sekunden"]},"sec. ago":{v:["Sek. zuvor"]},"seconds ago":{v:["Sekunden zuvor"]}}},{l:"de-DE",t:{"a few seconds ago":{v:["vor ein paar Sekunden"]},"sec. ago":{v:["Sek. zuvor"]},"seconds ago":{v:["Sekunden zuvor"]}}},{l:"el",t:{"a few seconds ago":{v:["πριν λίγα δευτερόλεπτα"]},"sec. ago":{v:["δευτ. πριν"]},"seconds ago":{v:["δευτερόλεπτα πριν"]}}},{l:"en-GB",t:{"a few seconds ago":{v:["a few seconds ago"]},"sec. ago":{v:["sec. ago"]},"seconds ago":{v:["seconds ago"]}}},{l:"eo",t:{}},{l:"es",t:{"a few seconds ago":{v:["hace unos pocos segundos"]},"sec. ago":{v:["hace segundos"]},"seconds ago":{v:["segundos atrás"]}}},{l:"es-AR",t:{"a few seconds ago":{v:["hace unos segundos"]},"sec. ago":{v:["seg. atrás"]},"seconds ago":{v:["segundos atrás"]}}},{l:"es-EC",t:{"a few seconds ago":{v:["hace unos segundos"]},"sec. ago":{v:["hace segundos"]},"seconds ago":{v:["Segundos atrás"]}}},{l:"es-MX",t:{"a few seconds ago":{v:["hace unos segundos"]},"sec. ago":{v:["seg. atrás"]},"seconds ago":{v:["segundos atrás"]}}},{l:"et-EE",t:{"a few seconds ago":{v:["mõni sekund tagasi"]},"sec. ago":{v:["sek. tagasi"]},"seconds ago":{v:["sekundit tagasi"]}}},{l:"eu",t:{"a few seconds ago":{v:["duela segundo batzuk"]},"sec. ago":{v:["duela seg."]},"seconds ago":{v:["duela segundo"]}}},{l:"fa",t:{"a few seconds ago":{v:["چند ثانیه پیش"]},"sec. ago":{v:["چند ثانیه پیش"]},"seconds ago":{v:["چند ثانیه پیش"]}}},{l:"fi",t:{"a few seconds ago":{v:["muutamia sekunteja sitten"]},"sec. ago":{v:["sek. sitten"]},"seconds ago":{v:["sekunteja sitten"]}}},{l:"fr",t:{"a few seconds ago":{v:["il y a quelques instants"]},"sec. ago":{v:["il y a qq. sec."]},"seconds ago":{v:["il y a quelques secondes"]}}},{l:"ga",t:{"a few seconds ago":{v:["cúpla soicind ó shin"]},"sec. ago":{v:["soic. ó shin"]},"seconds ago":{v:["soicind ó shin"]}}},{l:"gl",t:{"a few seconds ago":{v:["hai uns segundos"]},"sec. ago":{v:["segs. atrás"]},"seconds ago":{v:["segundos atrás"]}}},{l:"he",t:{"a few seconds ago":{v:["לפני מספר שניות"]},"sec. ago":{v:["לפני מספר שניות"]},"seconds ago":{v:["לפני מס׳ שניות"]}}},{l:"hr",t:{"a few seconds ago":{v:["prije nekoliko sekundi"]},"sec. ago":{v:["prije nek. sek."]},"seconds ago":{v:["prije nek. sek."]}}},{l:"hu",t:{"a few seconds ago":{v:["néhány másodperce"]},"sec. ago":{v:["másodperce"]},"seconds ago":{v:["másodperce"]}}},{l:"id",t:{"a few seconds ago":{v:["beberapa detik yang lalu"]},"sec. ago":{v:["dtk. yang lalu"]},"seconds ago":{v:["beberapa detik lalu"]}}},{l:"is",t:{"a few seconds ago":{v:["fyrir örfáum sekúndum síðan"]},"sec. ago":{v:["sek. síðan"]},"seconds ago":{v:["sekúndum síðan"]}}},{l:"it",t:{"a few seconds ago":{v:["pochi secondi fa"]},"sec. ago":{v:["sec. fa"]},"seconds ago":{v:["secondi fa"]}}},{l:"ja",t:{"a few seconds ago":{v:["数秒前"]},"sec. ago":{v:["秒前"]},"seconds ago":{v:["数秒前"]}}},{l:"ja-JP",t:{"a few seconds ago":{v:["数秒前"]},"sec. ago":{v:["秒前"]},"seconds ago":{v:["数秒前"]}}},{l:"ko",t:{"a few seconds ago":{v:["방금 전"]},"sec. ago":{v:["몇 초 전"]},"seconds ago":{v:["초 전"]}}},{l:"lo",t:{"a few seconds ago":{v:["ສອງສາມວິນາທີກ່ອນ"]},"sec. ago":{v:["ວິ. ກ່ອນ"]},"seconds ago":{v:["ວິນາທີກ່ອນ"]}}},{l:"lt-LT",t:{"a few seconds ago":{v:["prieš keletą sekundžių"]},"sec. ago":{v:["prieš sek."]},"seconds ago":{v:["prieš sekundes"]}}},{l:"lv",t:{}},{l:"mk",t:{"a few seconds ago":{v:["пред неколку секунди"]},"sec. ago":{v:["секунда"]},"seconds ago":{v:["секунди"]}}},{l:"mn",t:{"a few seconds ago":{v:["хэдхэн секундын өмнө"]},"sec. ago":{v:["сек. өмнө"]},"seconds ago":{v:["секундын өмнө"]}}},{l:"my",t:{}},{l:"nb",t:{"a few seconds ago":{v:["noen få sekunder siden"]},"sec. ago":{v:["sek. siden"]},"seconds ago":{v:["sekunder siden"]}}},{l:"nl",t:{"a few seconds ago":{v:["enkele seconden geleden"]},"sec. ago":{v:["sec. geleden"]},"seconds ago":{v:["seconden geleden"]}}},{l:"oc",t:{}},{l:"pl",t:{"a few seconds ago":{v:["kilka sekund temu"]},"sec. ago":{v:["sek. temu"]},"seconds ago":{v:["sekund temu"]}}},{l:"pt-BR",t:{"a few seconds ago":{v:["há alguns segundos"]},"sec. ago":{v:["seg. atrás"]},"seconds ago":{v:["segundos atrás"]}}},{l:"pt-PT",t:{"a few seconds ago":{v:["há alguns segundos"]},"sec. ago":{v:["seg. atrás"]},"seconds ago":{v:["segundos atrás"]}}},{l:"ro",t:{"a few seconds ago":{v:["acum câteva secunde"]},"sec. ago":{v:["sec. în urmă"]},"seconds ago":{v:["secunde în urmă"]}}},{l:"ru",t:{"a few seconds ago":{v:["несколько секунд назад"]},"sec. ago":{v:["сек. назад"]},"seconds ago":{v:["секунд назад"]}}},{l:"sk",t:{"a few seconds ago":{v:["pred chvíľou"]},"sec. ago":{v:["pred pár sekundami"]},"seconds ago":{v:["pred sekundami"]}}},{l:"sl",t:{}},{l:"sr",t:{"a few seconds ago":{v:["пре неколико секунди"]},"sec. ago":{v:["сек. раније"]},"seconds ago":{v:["секунди раније"]}}},{l:"sv",t:{"a few seconds ago":{v:["några sekunder sedan"]},"sec. ago":{v:["sek. sedan"]},"seconds ago":{v:["sekunder sedan"]}}},{l:"tr",t:{"a few seconds ago":{v:["birkaç saniye önce"]},"sec. ago":{v:["sn. önce"]},"seconds ago":{v:["saniye önce"]}}},{l:"uk",t:{"a few seconds ago":{v:["декілька секунд тому"]},"sec. ago":{v:["с тому"]},"seconds ago":{v:["с тому"]}}},{l:"uz",t:{"a few seconds ago":{v:["bir necha soniya oldin"]},"sec. ago":{v:["sek. oldin"]},"seconds ago":{v:["soniyalar oldin"]}}},{l:"zh-CN",t:{"a few seconds ago":{v:["几秒前"]},"sec. ago":{v:["几秒前"]},"seconds ago":{v:["几秒前"]}}},{l:"zh-HK",t:{"a few seconds ago":{v:["幾秒前"]},"sec. ago":{v:["秒前"]},"seconds ago":{v:["秒前"]}}},{l:"zh-TW",t:{"a few seconds ago":{v:["幾秒前"]},"sec. ago":{v:["秒前"]},"seconds ago":{v:["秒前"]}}}],qy=[{l:"ar",t:{Acapulco:{v:["بازلائي مطفي"]},"Blue Violet":{v:["بنفسجي مشعشع"]},"Boston Blue":{v:["سماوي مطفي"]},Deluge:{v:["بنفسجي مطفي"]},Feldspar:{v:["وردي صخري"]},Gold:{v:["ذهبي"]},Mariner:{v:["أزرق بحري"]},"Nextcloud blue":{v:["أزرق نكست كلاود"]},Olivine:{v:["زيتي"]},Purple:{v:["بنفسجي"]},"Rosy brown":{v:["بُنِّي زهري"]},Whiskey:{v:["نبيذي"]}}},{l:"ast",t:{Acapulco:{v:["Acapulcu"]},"Blue Violet":{v:["Viola azulao"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Oru"]},Mariner:{v:["Marineru"]},"Nextcloud blue":{v:["Nextcloud azul"]},Olivine:{v:["Olivina"]},Purple:{v:["Moráu"]},"Rosy brown":{v:["Marrón arrosao"]},Whiskey:{v:["Whiskey"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{Acapulco:{v:["Akapulko"]},Black:{v:["Černá"]},"Blue Violet":{v:["Modrofialová"]},"Boston Blue":{v:["Bostonská modrá"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Živicová"]},Gold:{v:["Zlatá"]},Mariner:{v:["Námořnická"]},"Nextcloud blue":{v:["Nextcloud modrá"]},Olivine:{v:["Olivínová"]},Purple:{v:["Fialová"]},"Rosy brown":{v:["Růžovohnědá"]},Whiskey:{v:["Whisky"]},White:{v:["Bílá"]}}},{l:"cs-CZ",t:{Acapulco:{v:["Akapulko"]},"Blue Violet":{v:["Modrofialová"]},"Boston Blue":{v:["Bostonská modrá"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Živicová"]},Gold:{v:["Zlatá"]},Mariner:{v:["Námořnická"]},"Nextcloud blue":{v:["Nextcloud modrá"]},Olivine:{v:["Olivínová"]},Purple:{v:["Fialová"]},"Rosy brown":{v:["Růžovohnědá"]},Whiskey:{v:["Whisky"]}}},{l:"da",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Sort"]},"Blue Violet":{v:["Blue Violet"]},"Boston Blue":{v:["Boston Blue"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Guld"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Nextcloud blue"]},Olivine:{v:["Olivine"]},Purple:{v:["Lilla"]},"Rosy brown":{v:["Rosy brown"]},Whiskey:{v:["Whiskey"]},White:{v:["Hvid"]}}},{l:"de",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Schwarz"]},"Blue Violet":{v:["Blau Violett"]},"Boston Blue":{v:["Boston-Blau"]},Deluge:{v:["Sintflut"]},Feldspar:{v:["Feldspat"]},Gold:{v:["Gold"]},Mariner:{v:["Seemann"]},"Nextcloud blue":{v:["Nextcloud Blau"]},Olivine:{v:["Olivin"]},Purple:{v:["Lila"]},"Rosy brown":{v:["Rosiges Braun"]},Whiskey:{v:["Whiskey"]},White:{v:["Weiß"]}}},{l:"de-DE",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Schwarz"]},"Blue Violet":{v:["Blau Violett"]},"Boston Blue":{v:["Boston-Blau"]},Deluge:{v:["Sintflut"]},Feldspar:{v:["Feldspat"]},Gold:{v:["Gold"]},Mariner:{v:["Seemann"]},"Nextcloud blue":{v:["Nextcloud Blau"]},Olivine:{v:["Olivin"]},Purple:{v:["Lila"]},"Rosy brown":{v:["Rosiges Braun"]},Whiskey:{v:["Whiskey"]},White:{v:["Weiß"]}}},{l:"el",t:{Acapulco:{v:["Ακαπούλκο"]},Black:{v:["Μαύρο"]},"Blue Violet":{v:["Μπλε Βιολέτ"]},"Boston Blue":{v:["Μπλε Βοστώνης"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Χρυσό"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Μπλε Nextcloud"]},Olivine:{v:["Olivine"]},Purple:{v:["Μωβ"]},"Rosy brown":{v:["Ροζ καφέ"]},Whiskey:{v:["Ουίσκι"]},White:{v:["Λευκό"]}}},{l:"en-GB",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Black"]},"Blue Violet":{v:["Blue Violet"]},"Boston Blue":{v:["Boston Blue"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Gold"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Nextcloud blue"]},Olivine:{v:["Olivine"]},Purple:{v:["Purple"]},"Rosy brown":{v:["Rosy brown"]},Whiskey:{v:["Whiskey"]},White:{v:["White"]}}},{l:"eo",t:{}},{l:"es",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Violeta Azul"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Diluvio"]},Feldspar:{v:["Feldespato"]},Gold:{v:["Oro"]},Mariner:{v:["Marinero"]},"Nextcloud blue":{v:["Azul Nextcloud"]},Olivine:{v:["Olivino"]},Purple:{v:["Púrpura"]},"Rosy brown":{v:["Marrón rosáceo"]},Whiskey:{v:["Whiskey"]}}},{l:"es-AR",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Violeta Azul"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Diluvio"]},Feldspar:{v:["Feldespato"]},Gold:{v:["Oro"]},Mariner:{v:["Marinero"]},"Nextcloud blue":{v:["Azul Nextcloud"]},Olivine:{v:["Olivino"]},Purple:{v:["Púrpura"]},"Rosy brown":{v:["Marrón rosáceo"]},Whiskey:{v:["Whiskey"]}}},{l:"es-EC",t:{}},{l:"es-MX",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Violeta Azul"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Diluvio"]},Feldspar:{v:["Feldespato"]},Gold:{v:["Oro"]},Mariner:{v:["Marinero"]},"Nextcloud blue":{v:["Azul Nextcloud"]},Olivine:{v:["Olivino"]},Purple:{v:["Púrpura"]},"Rosy brown":{v:["Marrón rosáceo"]},Whiskey:{v:["Whiskey"]}}},{l:"et-EE",t:{Acapulco:{v:["Acapulco meresinine"]},Black:{v:["Must"]},"Blue Violet":{v:["Sinakasvioletne"]},"Boston Blue":{v:["Bostoni rohekassinine"]},Deluge:{v:["Tulvavee lilla"]},Feldspar:{v:["Põlevkivipruun"]},Gold:{v:["Kuldne"]},Mariner:{v:["Meresinine"]},"Nextcloud blue":{v:["Nextcloudi sinine"]},Olivine:{v:["Oliiviroheline"]},Purple:{v:["Purpurpunane"]},"Rosy brown":{v:["Roosikarva pruun"]},Whiskey:{v:["Viskikarva kollakaspruun"]},White:{v:["Valge"]}}},{l:"eu",t:{}},{l:"fa",t:{Acapulco:{v:["آکاپولکو"]},"Blue Violet":{v:["بنفش آبی"]},"Boston Blue":{v:["آبی بوستونی"]},Deluge:{v:["سیل"]},Feldspar:{v:["فلدسپات"]},Gold:{v:["طلا"]},Mariner:{v:["مارینر"]},"Nextcloud blue":{v:["نکس کلود آبی"]},Olivine:{v:["الیوین"]},Purple:{v:["بنفش"]},"Rosy brown":{v:["قهوه‌ای رز"]},Whiskey:{v:["ویسکی"]}}},{l:"fi",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Sinivioletti"]},"Boston Blue":{v:["Bostoninsininen"]},Deluge:{v:["Tulva"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Kulta"]},Mariner:{v:["Merenkulkija"]},"Nextcloud blue":{v:["Nextcloudin sininen"]},Olivine:{v:["Oliviini"]},Purple:{v:["Purppura"]},"Rosy brown":{v:["Ruusunruskea"]},Whiskey:{v:["Viski"]}}},{l:"fr",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Noir"]},"Blue Violet":{v:["Bleu violet"]},"Boston Blue":{v:["Bleu de Boston"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Doré"]},Mariner:{v:["Marin"]},"Nextcloud blue":{v:["Bleu Nextcloud"]},Olivine:{v:["Olivine"]},Purple:{v:["Violet"]},"Rosy brown":{v:["Brun rosé"]},Whiskey:{v:["Whiskey"]},White:{v:["Blanc"]}}},{l:"ga",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Dubh"]},"Blue Violet":{v:["Gorm Violet"]},"Boston Blue":{v:["Bostún Gorm"]},Deluge:{v:["Díle"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Óir"]},Mariner:{v:["Mairnéalach"]},"Nextcloud blue":{v:["Nextcloud gorm"]},Olivine:{v:["Olaivín"]},Purple:{v:["Corcra"]},"Rosy brown":{v:["Rosach donn"]},Whiskey:{v:["Fuisce"]},White:{v:["Bán"]}}},{l:"gl",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Negro"]},"Blue Violet":{v:["Azul violeta"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Dioivo"]},Feldspar:{v:["Feldespato"]},Gold:{v:["Ouro"]},Mariner:{v:["Marino"]},"Nextcloud blue":{v:["Azul Nextcloud"]},Olivine:{v:["Olivina"]},Purple:{v:["Púrpura"]},"Rosy brown":{v:["Pardo rosado"]},Whiskey:{v:["Whisky"]},White:{v:["Branco"]}}},{l:"he",t:{}},{l:"hr",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Crna"]},"Blue Violet":{v:["Plavoljubičasta"]},"Boston Blue":{v:["Bostonsko plava"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Zlatna"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Nextcloud plava"]},Olivine:{v:["Olivine"]},Purple:{v:["Ljubičasta"]},"Rosy brown":{v:["Ružičastosmeđa"]},Whiskey:{v:["Whiskey"]},White:{v:["Bijela"]}}},{l:"hu",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Fekete"]},"Blue Violet":{v:["Kék ibolya"]},"Boston Blue":{v:["Boston kék"]},Deluge:{v:["Özönvíz"]},Feldspar:{v:["Földpát"]},Gold:{v:["Arany"]},Mariner:{v:["Tengerész"]},"Nextcloud blue":{v:["Nextcloud kék"]},Olivine:{v:["Olivin"]},Purple:{v:["Lila"]},"Rosy brown":{v:["Rózsás barna"]},Whiskey:{v:["Whiskey"]},White:{v:["Fehér"]}}},{l:"id",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Hitam"]},"Blue Violet":{v:["Ungu kebiruan"]},"Boston Blue":{v:["Biru Boston"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Emas"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Biru Nextcloud"]},Olivine:{v:["Olivine"]},Purple:{v:["Ungu"]},"Rosy brown":{v:["Cokelat kemerahan"]},Whiskey:{v:["Whiskey"]},White:{v:["Putih"]}}},{l:"is",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Bláklukka"]},"Boston Blue":{v:["Bostonblátt"]},Deluge:{v:["Fjólublátt"]},Feldspar:{v:["Feldspat"]},Gold:{v:["Gull"]},Mariner:{v:["Sjóarablátt"]},"Nextcloud blue":{v:["Nextcloud blátt"]},Olivine:{v:["Ólivín"]},Purple:{v:["Purpurablátt"]},"Rosy brown":{v:["Rósabrúnt"]},Whiskey:{v:["Viský"]}}},{l:"it",t:{Gold:{v:["Oro"]},"Nextcloud blue":{v:["Nextcloud blue"]},Purple:{v:["Viola"]}}},{l:"ja",t:{Acapulco:{v:["アカプルコ"]},Black:{v:["黒"]},"Blue Violet":{v:["ブルーバイオレット"]},"Boston Blue":{v:["ボストンブルー"]},Deluge:{v:["豪雨"]},Feldspar:{v:["長石"]},Gold:{v:["黄金"]},Mariner:{v:["船乗り"]},"Nextcloud blue":{v:["ネクストクラウド・ブルー"]},Olivine:{v:["カンラン石"]},Purple:{v:["紫色"]},"Rosy brown":{v:["バラ色"]},Whiskey:{v:["ウイスキー"]},White:{v:["白"]}}},{l:"ja-JP",t:{Acapulco:{v:["アカプルコ"]},"Blue Violet":{v:["ブルーバイオレット"]},"Boston Blue":{v:["ボストンブルー"]},Deluge:{v:["豪雨"]},Feldspar:{v:["長石"]},Gold:{v:["黄金"]},Mariner:{v:["船乗り"]},"Nextcloud blue":{v:["ネクストクラウド・ブルー"]},Olivine:{v:["カンラン石"]},Purple:{v:["紫色"]},"Rosy brown":{v:["バラ色"]},Whiskey:{v:["ウイスキー"]}}},{l:"ko",t:{Acapulco:{v:["아카풀코"]},Black:{v:["검정"]},"Blue Violet":{v:["푸른 보라"]},"Boston Blue":{v:["보스턴 블루"]},Deluge:{v:["폭우"]},Feldspar:{v:["장석"]},Gold:{v:["금"]},Mariner:{v:["뱃사람"]},"Nextcloud blue":{v:["Nextcloud 파랑"]},Olivine:{v:["감람석"]},Purple:{v:["보라"]},"Rosy brown":{v:["로지 브라운"]},Whiskey:{v:["위스키"]},White:{v:["하양"]}}},{l:"lo",t:{Acapulco:{v:["Acapulco"]},Black:{v:["ສີດຳ"]},"Blue Violet":{v:["Blue Violet"]},"Boston Blue":{v:["Boston Blue"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["ສີຄຳ"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["ສີຟ້າ Nextcloud"]},Olivine:{v:["Olivine"]},Purple:{v:["ສີມ່ວງ"]},"Rosy brown":{v:["Rosy brown"]},Whiskey:{v:["Whiskey"]},White:{v:["ສີຂາວ"]}}},{l:"lt-LT",t:{Acapulco:{v:['"Acapulco"']},Black:{v:["Juoda"]},"Blue Violet":{v:["Mėlyna-violetinė"]},"Boston Blue":{v:['"Boston Blue"']},Deluge:{v:['"Deluge"']},Feldspar:{v:['"Feldspar"']},Gold:{v:["Auksas"]},Mariner:{v:['"Mariner"']},"Nextcloud blue":{v:['"Nextcloud" mėlyna']},Olivine:{v:['"Olivine"']},Purple:{v:["Violetinė"]},"Rosy brown":{v:["Rožiniai rudas"]},Whiskey:{v:['"Whiskey"']},White:{v:["Balta"]}}},{l:"lv",t:{}},{l:"mk",t:{Acapulco:{v:["Акапулко"]},Black:{v:["Црно"]},"Blue Violet":{v:["Сино Виолетова"]},"Boston Blue":{v:["Бостон Сина"]},Deluge:{v:["Делуџ"]},Feldspar:{v:["Фелдспар"]},Gold:{v:["Златна"]},Mariner:{v:["Маринер"]},"Nextcloud blue":{v:["Nextcloud сина"]},Olivine:{v:["Оливин"]},Purple:{v:["Виолетова"]},"Rosy brown":{v:["Розево-кафеава"]},Whiskey:{v:["Виски"]},White:{v:["Бела"]}}},{l:"mn",t:{Acapulco:{v:["Акапулько"]},Black:{v:["Хар"]},"Blue Violet":{v:["Цэнхэр ягаан"]},"Boston Blue":{v:["Бостон цэнхэр"]},Deluge:{v:["Делюж"]},Feldspar:{v:["Фельдспар"]},Gold:{v:["Алтан"]},Mariner:{v:["Маринер"]},"Nextcloud blue":{v:["Nextcloud цэнхэр"]},Olivine:{v:["Оливин"]},Purple:{v:["Нил ягаан"]},"Rosy brown":{v:["Ягаан бор"]},Whiskey:{v:["Виски"]},White:{v:["Цагаан"]}}},{l:"my",t:{}},{l:"nb",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Blå fiolett"]},"Boston Blue":{v:["Boston blå"]},Deluge:{v:["Syndflod"]},Feldspar:{v:["Feltspat"]},Gold:{v:["Gull"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Nextcloud-blå"]},Olivine:{v:["Olivin"]},Purple:{v:["Lilla"]},"Rosy brown":{v:["Rosenrød brun"]},Whiskey:{v:["Whiskey"]}}},{l:"nl",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Zwart"]},"Blue Violet":{v:["Blauw Paars"]},"Boston Blue":{v:["Boston Blauw"]},Deluge:{v:["Overlopen"]},Feldspar:{v:["Veldspaat"]},Gold:{v:["Goud"]},Mariner:{v:["Marineblauw"]},"Nextcloud blue":{v:["Nextcloud blauw"]},Olivine:{v:["Olivijn"]},Purple:{v:["Paars"]},"Rosy brown":{v:["Rozig bruin"]},Whiskey:{v:["Whiskey"]},White:{v:["Wit"]}}},{l:"oc",t:{}},{l:"pl",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Niebieski fiolet"]},"Boston Blue":{v:["Błękit Bostonu"]},Deluge:{v:["Potop"]},Feldspar:{v:["Skaleń"]},Gold:{v:["Złote"]},Mariner:{v:["Marynarz"]},"Nextcloud blue":{v:["Niebieskie Nextcloud"]},Olivine:{v:["Oliwin"]},Purple:{v:["Fioletowy"]},"Rosy brown":{v:["Różowy brąz"]},Whiskey:{v:["Whisky"]}}},{l:"pt-BR",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Preto"]},"Blue Violet":{v:["Violeta Azul"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspato"]},Gold:{v:["Ouro"]},Mariner:{v:["Marinheiro"]},"Nextcloud blue":{v:["Azul Nextcloud"]},Olivine:{v:["Olivina"]},Purple:{v:["Roxo"]},"Rosy brown":{v:["Castanho rosado"]},Whiskey:{v:["Uísque"]},White:{v:["Branco"]}}},{l:"pt-PT",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Azul violeta"]},"Boston Blue":{v:["Azul Boston"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Ouro"]},Mariner:{v:["Mariner"]},"Nextcloud blue":{v:["Nextcloud azul"]},Olivine:{v:["Olivine"]},Purple:{v:["Púrpura"]},"Rosy brown":{v:["Castanho rosado"]},Whiskey:{v:["Whiskey"]}}},{l:"ro",t:{Gold:{v:["Aur"]},"Nextcloud blue":{v:["Nextcloud albastru"]},Purple:{v:["Purpuriu"]}}},{l:"ru",t:{Acapulco:{v:["Акапулько"]},Black:{v:["Черный"]},"Blue Violet":{v:["Синий фиолет"]},"Boston Blue":{v:["Синий Бостон"]},Deluge:{v:["Перламутрово-фиолетовый"]},Feldspar:{v:["Античная латунь"]},Gold:{v:["Золотой"]},Mariner:{v:["Морской"]},"Nextcloud blue":{v:["Nextcloud голубой"]},Olivine:{v:[" Оливковый"]},Purple:{v:["Фиолетовый"]},"Rosy brown":{v:["Розово-коричневый"]},Whiskey:{v:["Виски"]},White:{v:["Белый"]}}},{l:"sk",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["Modro fialová"]},"Boston Blue":{v:["Bostonská modrá"]},Deluge:{v:["Deluge"]},Feldspar:{v:["Živec"]},Gold:{v:["Zlatá"]},Mariner:{v:["Námorník"]},"Nextcloud blue":{v:["Nextcloud modrá"]},Olivine:{v:["Olivová"]},Purple:{v:["Fialová"]},"Rosy brown":{v:["Ružovo hnedá"]},Whiskey:{v:["Whisky"]}}},{l:"sl",t:{}},{l:"sr",t:{Acapulco:{v:["Акапулко"]},Black:{v:["Црно"]},"Blue Violet":{v:["Плаво љубичаста"]},"Boston Blue":{v:["Бостон плава"]},Deluge:{v:["Поплава"]},Feldspar:{v:["Фелдспар"]},Gold:{v:["Злато"]},Mariner:{v:["Морнар"]},"Nextcloud blue":{v:["Nextcloud плава"]},Olivine:{v:["Маслинаста"]},Purple:{v:["Пурпурна"]},"Rosy brown":{v:["Роси браон"]},Whiskey:{v:["Виски"]},White:{v:["Бело"]}}},{l:"sv",t:{Acapulco:{v:["Acapulco"]},Black:{v:["Svart"]},"Blue Violet":{v:["Blåviolett"]},"Boston Blue":{v:["Bostonblå"]},Deluge:{v:["Skyfallsblå"]},Feldspar:{v:["Fältspat"]},Gold:{v:["Guld"]},Mariner:{v:["Marinblå"]},"Nextcloud blue":{v:["Nextcloud-blå"]},Olivine:{v:["Olivin"]},Purple:{v:["Lila"]},"Rosy brown":{v:["Rosabrun"]},Whiskey:{v:["Whisky"]},White:{v:["Vit"]}}},{l:"tr",t:{Acapulco:{v:["Akapulko"]},Black:{v:["Siyah"]},"Blue Violet":{v:["Mavi mor"]},"Boston Blue":{v:["Boston mavisi"]},Deluge:{v:["Sel"]},Feldspar:{v:["Feldispat"]},Gold:{v:["Altın"]},Mariner:{v:["Denizci"]},"Nextcloud blue":{v:["Nextcloud mavi"]},Olivine:{v:["Zeytinlik"]},Purple:{v:["Mor"]},"Rosy brown":{v:["Kırmızımsı kahverengi"]},Whiskey:{v:["Viski"]},White:{v:["Beyaz"]}}},{l:"uk",t:{Acapulco:{v:["Акапулько"]},"Blue Violet":{v:["Блакитна фіалка"]},"Boston Blue":{v:["Бостонський синій"]},Deluge:{v:["Злива"]},Feldspar:{v:["Польові шпати"]},Gold:{v:["Золотий"]},Mariner:{v:["Морський"]},"Nextcloud blue":{v:["Блакитний Nextcloud"]},Olivine:{v:["Олива"]},Purple:{v:["Фіолетовий"]},"Rosy brown":{v:["Темно-рожевий"]},Whiskey:{v:["Кола"]}}},{l:"uz",t:{Acapulco:{v:["Akapulko"]},Black:{v:["Qora"]},"Blue Violet":{v:["Moviy binafsha"]},"Boston Blue":{v:["Boston ko'k"]},Deluge:{v:["To'fon"]},Feldspar:{v:["Feldspar"]},Gold:{v:["Oltin"]},Mariner:{v:["Dengizchi"]},"Nextcloud blue":{v:["Ko'k Nextcloud "]},Olivine:{v:["Olivine"]},Purple:{v:["Binafsha"]},"Rosy brown":{v:["Qizil jigarrang"]},Whiskey:{v:["Whiskey"]},White:{v:["Oq"]}}},{l:"zh-CN",t:{Acapulco:{v:["Acapulco"]},"Blue Violet":{v:["瓦罗兰特蓝"]},"Boston Blue":{v:["波士顿蓝"]},Deluge:{v:["洪水色"]},Feldspar:{v:["长石"]},Gold:{v:["金色"]},Mariner:{v:["水手"]},"Nextcloud blue":{v:["Nextcloud 蓝"]},Olivine:{v:["橄榄石色"]},Purple:{v:["紫色"]},"Rosy brown":{v:["玫瑰棕色"]},Whiskey:{v:["威士忌"]}}},{l:"zh-HK",t:{Acapulco:{v:["阿卡普爾科"]},Black:{v:["黑色"]},"Blue Violet":{v:["藍紫色"]},"Boston Blue":{v:["波士頓藍"]},Deluge:{v:["大洪水"]},Feldspar:{v:["長石"]},Gold:{v:["Gold"]},Mariner:{v:["海軍藍"]},"Nextcloud blue":{v:["Nextcloud 藍色"]},Olivine:{v:["橄欖石色"]},Purple:{v:["紫色"]},"Rosy brown":{v:["玫瑰棕色"]},Whiskey:{v:["威士忌"]},White:{v:["白色"]}}},{l:"zh-TW",t:{Acapulco:{v:["Acapulco"]},Black:{v:["黑色"]},"Blue Violet":{v:["藍紫色"]},"Boston Blue":{v:["波士頓藍"]},Deluge:{v:["Deluge"]},Feldspar:{v:["長石"]},Gold:{v:["金色"]},Mariner:{v:["海軍藍"]},"Nextcloud blue":{v:["Nextcloud 藍色"]},Olivine:{v:["橄欖石色"]},Purple:{v:["紫色"]},"Rosy brown":{v:["玫瑰棕色"]},Whiskey:{v:["威士忌"]},White:{v:["白色"]}}}],Yh=[{l:"ar",t:{Actions:{v:["إجراءات"]}}},{l:"ast",t:{Actions:{v:["Aiciones"]}}},{l:"br",t:{Actions:{v:["Oberioù"]}}},{l:"ca",t:{Actions:{v:["Accions"]}}},{l:"cs",t:{Actions:{v:["Akce"]}}},{l:"cs-CZ",t:{Actions:{v:["Akce"]}}},{l:"da",t:{Actions:{v:["Handlinger"]}}},{l:"de",t:{Actions:{v:["Aktionen"]}}},{l:"de-DE",t:{Actions:{v:["Aktionen"]}}},{l:"el",t:{Actions:{v:["Ενέργειες"]}}},{l:"en-GB",t:{Actions:{v:["Actions"]}}},{l:"eo",t:{Actions:{v:["Agoj"]}}},{l:"es",t:{Actions:{v:["Acciones"]}}},{l:"es-AR",t:{Actions:{v:["Acciones"]}}},{l:"es-EC",t:{Actions:{v:["Acciones"]}}},{l:"es-MX",t:{Actions:{v:["Acciones"]}}},{l:"et-EE",t:{Actions:{v:["Tegevus"]}}},{l:"eu",t:{Actions:{v:["Ekintzak"]}}},{l:"fa",t:{Actions:{v:["کنش‌ها"]}}},{l:"fi",t:{Actions:{v:["Toiminnot"]}}},{l:"fr",t:{Actions:{v:["Actions"]}}},{l:"ga",t:{Actions:{v:["Gníomhartha"]}}},{l:"gl",t:{Actions:{v:["Accións"]}}},{l:"he",t:{Actions:{v:["פעולות"]}}},{l:"hr",t:{Actions:{v:["Radnje"]}}},{l:"hu",t:{Actions:{v:["Műveletek"]}}},{l:"id",t:{Actions:{v:["Tindakan"]}}},{l:"is",t:{Actions:{v:["Aðgerðir"]}}},{l:"it",t:{Actions:{v:["Azioni"]}}},{l:"ja",t:{Actions:{v:["操作"]}}},{l:"ja-JP",t:{Actions:{v:["操作"]}}},{l:"ko",t:{Actions:{v:["동작"]}}},{l:"lo",t:{Actions:{v:["ການກະທຳ"]}}},{l:"lt-LT",t:{Actions:{v:["Veiksmai"]}}},{l:"lv",t:{}},{l:"mk",t:{Actions:{v:["Акции"]}}},{l:"mn",t:{Actions:{v:["Үйлдлүүд"]}}},{l:"my",t:{Actions:{v:["လုပ်ဆောင်ချက်များ"]}}},{l:"nb",t:{Actions:{v:["Handlinger"]}}},{l:"nl",t:{Actions:{v:["Acties"]}}},{l:"oc",t:{Actions:{v:["Accions"]}}},{l:"pl",t:{Actions:{v:["Działania"]}}},{l:"pt-BR",t:{Actions:{v:["Ações"]}}},{l:"pt-PT",t:{Actions:{v:["Ações"]}}},{l:"ro",t:{Actions:{v:["Acțiuni"]}}},{l:"ru",t:{Actions:{v:["Действия "]}}},{l:"sk",t:{Actions:{v:["Akcie"]}}},{l:"sl",t:{Actions:{v:["Dejanja"]}}},{l:"sr",t:{Actions:{v:["Радње"]}}},{l:"sv",t:{Actions:{v:["Åtgärder"]}}},{l:"tr",t:{Actions:{v:["İşlemler"]}}},{l:"uk",t:{Actions:{v:["Дії"]}}},{l:"uz",t:{Actions:{v:["Harakatlar"]}}},{l:"zh-CN",t:{Actions:{v:["行为"]}}},{l:"zh-HK",t:{Actions:{v:["動作"]}}},{l:"zh-TW",t:{Actions:{v:["動作"]}}}],Ky=[{l:"ar",t:{"Avatar of {displayName}":{v:["صورة الملف الشخصي الرمزية لــ {displayName} "]},"Avatar of {displayName}, {status}":{v:["صورة الملف الشخصي الرمزية لــ {displayName}، {status}"]}}},{l:"ast",t:{"Avatar of {displayName}":{v:["Avatar de: {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de: {displayName}, {status}"]}}},{l:"br",t:{}},{l:"ca",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"cs",t:{"Avatar of {displayName}":{v:["Zástupný obrázek uživatele {displayName}"]},"Avatar of {displayName}, {status}":{v:["Zástupný obrázek uživatele {displayName}, {status}"]}}},{l:"cs-CZ",t:{"Avatar of {displayName}":{v:["Zástupný obrázek uživatele {displayName}"]},"Avatar of {displayName}, {status}":{v:["Zástupný obrázek uživatele {displayName}, {status}"]}}},{l:"da",t:{"Avatar of {displayName}":{v:["Avatar af {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar af {displayName}, {status}"]}}},{l:"de",t:{"Avatar of {displayName}":{v:["Avatar von {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar von {displayName}, {status}"]}}},{l:"de-DE",t:{"Avatar of {displayName}":{v:["Avatar von {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar von {displayName}, {status}"]}}},{l:"el",t:{"Avatar of {displayName}":{v:["Άβαταρ του {displayName}"]},"Avatar of {displayName}, {status}":{v:["Άβαταρ του {displayName}, {status}"]}}},{l:"en-GB",t:{"Avatar of {displayName}":{v:["Avatar of {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar of {displayName}, {status}"]}}},{l:"eo",t:{}},{l:"es",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"es-AR",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"es-EC",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"es-MX",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"et-EE",t:{"Avatar of {displayName}":{v:["Tunnuspilt: {displayName}"]},"Avatar of {displayName}, {status}":{v:["Tunnuspilt: {displayName}, {status}"]}}},{l:"eu",t:{"Avatar of {displayName}":{v:["{displayName}-(e)n irudia"]},"Avatar of {displayName}, {status}":{v:["{displayName} -(e)n irudia, {status}"]}}},{l:"fa",t:{"Avatar of {displayName}":{v:["آواتار {displayName}"]},"Avatar of {displayName}, {status}":{v:["آواتار {displayName} ، {status}"]}}},{l:"fi",t:{"Avatar of {displayName}":{v:["{displayName}n avatar"]},"Avatar of {displayName}, {status}":{v:["{displayName}n avatar, {status}"]}}},{l:"fr",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"ga",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"gl",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"he",t:{"Avatar of {displayName}":{v:["תמונה ייצוגית של {displayName}"]},"Avatar of {displayName}, {status}":{v:["תמונה ייצוגית של {displayName}, {status}"]}}},{l:"hr",t:{"Avatar of {displayName}":{v:["Avatar od {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar od {displayName}, {status}"]}}},{l:"hu",t:{"Avatar of {displayName}":{v:["{displayName} profilképe"]},"Avatar of {displayName}, {status}":{v:["{displayName} profilképe, {status}"]}}},{l:"id",t:{"Avatar of {displayName}":{v:["Avatar {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar {displayName}, {status}"]}}},{l:"is",t:{"Avatar of {displayName}":{v:["Auðkennismynd fyrir {displayName}"]},"Avatar of {displayName}, {status}":{v:["Auðkennismynd fyrir {displayName}, {status}"]}}},{l:"it",t:{"Avatar of {displayName}":{v:["Avatar di {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar di {displayName}, {status}"]}}},{l:"ja",t:{"Avatar of {displayName}":{v:["{displayName} のアバター"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status} のアバター"]}}},{l:"ja-JP",t:{"Avatar of {displayName}":{v:["{displayName} のアバター"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status} のアバター"]}}},{l:"ko",t:{"Avatar of {displayName}":{v:["{displayName}님의 아바타"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status}님의 아바타"]}}},{l:"lo",t:{"Avatar of {displayName}":{v:["ຮູບແທນຕົວຂອງ {displayName}"]},"Avatar of {displayName}, {status}":{v:["ຮູບແທນຕົວຂອງ {displayName}, {status}"]}}},{l:"lt-LT",t:{"Avatar of {displayName}":{v:["{displayName} avataras"]},"Avatar of {displayName}, {status}":{v:["{displayName} avataras, {status}"]}}},{l:"lv",t:{}},{l:"mk",t:{"Avatar of {displayName}":{v:["Аватар на {displayName}"]},"Avatar of {displayName}, {status}":{v:["Аватар на {displayName}, {status}"]}}},{l:"mn",t:{"Avatar of {displayName}":{v:["{displayName}-ийн аватар"]},"Avatar of {displayName}, {status}":{v:["{displayName}-ийн аватар, {status}"]}}},{l:"my",t:{"Avatar of {displayName}":{v:["{displayName} ၏ ကိုယ်ပွား"]}}},{l:"nb",t:{"Avatar of {displayName}":{v:["Avataren til {displayName}"]},"Avatar of {displayName}, {status}":{v:["{displayName}'s avatar, {status}"]}}},{l:"nl",t:{"Avatar of {displayName}":{v:["Avatar van {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar van {displayName}, {status}"]}}},{l:"oc",t:{}},{l:"pl",t:{"Avatar of {displayName}":{v:["Awatar {displayName}"]},"Avatar of {displayName}, {status}":{v:["Awatar {displayName}, {status}"]}}},{l:"pt-BR",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"pt-PT",t:{"Avatar of {displayName}":{v:["Avatar de {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar de {displayName}, {status}"]}}},{l:"ro",t:{"Avatar of {displayName}":{v:["Avatarul lui {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatarul lui {displayName}, {status}"]}}},{l:"ru",t:{"Avatar of {displayName}":{v:["Аватар {displayName}"]},"Avatar of {displayName}, {status}":{v:["Фотография {displayName}, {status}"]}}},{l:"sk",t:{"Avatar of {displayName}":{v:["Avatar {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar {displayName}, {status}"]}}},{l:"sl",t:{"Avatar of {displayName}":{v:["Podoba {displayName}"]},"Avatar of {displayName}, {status}":{v:["Prikazna slika {displayName}, {status}"]}}},{l:"sr",t:{"Avatar of {displayName}":{v:["Аватар за {displayName}"]},"Avatar of {displayName}, {status}":{v:["Avatar za {displayName}, {status}"]}}},{l:"sv",t:{"Avatar of {displayName}":{v:["{displayName}s avatar"]},"Avatar of {displayName}, {status}":{v:["{displayName}s avatar, {status}"]}}},{l:"tr",t:{"Avatar of {displayName}":{v:["{displayName} avatarı"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status} avatarı"]}}},{l:"uk",t:{"Avatar of {displayName}":{v:["Аватар {displayName}"]},"Avatar of {displayName}, {status}":{v:["Аватар {displayName}, {status}"]}}},{l:"uz",t:{"Avatar of {displayName}":{v:[" {displayName}Avatari"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status} Avatari"]}}},{l:"zh-CN",t:{"Avatar of {displayName}":{v:["{displayName}的头像"]},"Avatar of {displayName}, {status}":{v:["{displayName}的头像,{status}"]}}},{l:"zh-HK",t:{"Avatar of {displayName}":{v:["{displayName} 的頭像"]},"Avatar of {displayName}, {status}":{v:["{displayName} 的頭像,{status}"]}}},{l:"zh-TW",t:{"Avatar of {displayName}":{v:["{displayName} 的大頭照"]},"Avatar of {displayName}, {status}":{v:["{displayName}, {status} 的大頭照"]}}}],Yy=[{l:"ar",t:{away:{v:["غير موجود"]},busy:{v:["مشغول"]},"do not disturb":{v:["يُرجى عدم الإزعاج"]},invisible:{v:["غير مرئي"]},offline:{v:["غير متصل"]},online:{v:["متصل"]}}},{l:"ast",t:{away:{v:["ausente"]},busy:{v:["ocupáu"]},"do not disturb":{v:["nun molestar"]},invisible:{v:["invisible"]},offline:{v:["desconectáu"]},online:{v:["en llinia"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{away:{v:["pryč"]},busy:{v:["zaneprádněn(a)"]},"do not disturb":{v:["nerušit"]},invisible:{v:["neviditelné"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"cs-CZ",t:{away:{v:["pryč"]},busy:{v:["zaneprádněn(a)"]},"do not disturb":{v:["nerušit"]},invisible:{v:["neviditelné"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"da",t:{away:{v:["væk"]},busy:{v:["optaget"]},"do not disturb":{v:["forstyr ikke"]},invisible:{v:["usynlig"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"de",t:{away:{v:["Abwesend"]},busy:{v:["Beschäftigt"]},"do not disturb":{v:["Bitte nicht stören"]},invisible:{v:["Unsichtbar"]},offline:{v:["Offline"]},online:{v:["Online"]}}},{l:"de-DE",t:{away:{v:["Abwesend"]},busy:{v:["Beschäftigt"]},"do not disturb":{v:["Bitte nicht stören"]},invisible:{v:["Unsichtbar"]},offline:{v:["Offline"]},online:{v:["Online"]}}},{l:"el",t:{away:{v:["μακριά"]},busy:{v:["απασχολημένος"]},"do not disturb":{v:["μην ενοχλείτε"]},invisible:{v:["αόρατο"]},offline:{v:["εκτός σύνδεσης"]},online:{v:["συνδεδεμένος"]}}},{l:"en-GB",t:{away:{v:["away"]},busy:{v:["busy"]},"do not disturb":{v:["do not disturb"]},invisible:{v:["invisible"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"eo",t:{}},{l:"es",t:{away:{v:["ausente"]},busy:{v:["ocupado"]},"do not disturb":{v:["no molestar"]},invisible:{v:["invisible"]},offline:{v:["fuera de línea"]},online:{v:["en línea"]}}},{l:"es-AR",t:{away:{v:["ausente"]},busy:{v:["ocupado"]},"do not disturb":{v:["no molestar"]},invisible:{v:["invisible"]},offline:{v:["desconectado"]},online:{v:["en línea"]}}},{l:"es-EC",t:{}},{l:"es-MX",t:{away:{v:["ausente"]},busy:{v:["ocupado"]},"do not disturb":{v:["no molestar"]},invisible:{v:["invisible"]},offline:{v:["fuera de línea"]},online:{v:["en línea"]}}},{l:"et-EE",t:{away:{v:["eemal"]},busy:{v:["hõivatud"]},"do not disturb":{v:["ära sega"]},invisible:{v:["nähtamatu"]},offline:{v:["pole võrgus"]},online:{v:["võrgus"]}}},{l:"eu",t:{}},{l:"fa",t:{away:{v:["دور از دستگاه"]},busy:{v:["مشغول"]},"do not disturb":{v:["مزاحم نشوید"]},invisible:{v:["مخفی"]},offline:{v:["برون‌خط"]},online:{v:["برخط"]}}},{l:"fi",t:{away:{v:["poissa"]},busy:{v:["varattu"]},"do not disturb":{v:["älä häiritse"]},invisible:{v:["näkymätön"]},offline:{v:["ei linjalla"]},online:{v:["linjalla"]}}},{l:"fr",t:{away:{v:["absent"]},busy:{v:["occupé"]},"do not disturb":{v:["ne pas déranger"]},invisible:{v:["invisible"]},offline:{v:["hors ligne"]},online:{v:["en ligne"]}}},{l:"ga",t:{away:{v:["ar shiúl"]},busy:{v:["gnóthach"]},"do not disturb":{v:["ná cur as"]},invisible:{v:["dofheicthe"]},offline:{v:["as líne"]},online:{v:["ar líne"]}}},{l:"gl",t:{away:{v:["ausente"]},busy:{v:["ocupado"]},"do not disturb":{v:["non molestar"]},invisible:{v:["invisíbel"]},offline:{v:["desconectado"]},online:{v:["conectado"]}}},{l:"he",t:{}},{l:"hr",t:{away:{v:["odsutan"]},busy:{v:["zauzet"]},"do not disturb":{v:["ne smetaj"]},invisible:{v:["nevidljiv"]},offline:{v:["izvan mreže"]},online:{v:["na mreži"]}}},{l:"hu",t:{away:{v:["távol"]},busy:{v:["foglalt"]},"do not disturb":{v:["ne zavarjanak"]},invisible:{v:["láthatatlan"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"id",t:{away:{v:["tidak tersedia"]},busy:{v:["sibuk"]},"do not disturb":{v:["jangan ganggu"]},invisible:{v:["tidak terlihat"]},offline:{v:["luring"]},online:{v:["daring"]}}},{l:"is",t:{away:{v:["í burtu"]},busy:{v:["upptekin/n"]},"do not disturb":{v:["ekki ónáða"]},invisible:{v:["ósýnilegt"]},offline:{v:["ónettengt"]},online:{v:["nettengt"]}}},{l:"it",t:{away:{v:["via"]},"do not disturb":{v:["non disturbare"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"ja",t:{away:{v:["離れる"]},busy:{v:["ビジー"]},"do not disturb":{v:["邪魔をしないでください"]},invisible:{v:["不可視"]},offline:{v:["オフライン"]},online:{v:["オンライン"]}}},{l:"ja-JP",t:{away:{v:["離れる"]},busy:{v:["ビジー"]},"do not disturb":{v:["邪魔をしないでください"]},invisible:{v:["不可視"]},offline:{v:["オフライン"]},online:{v:["オンライン"]}}},{l:"ko",t:{away:{v:["자리 비움"]},busy:{v:["바쁨"]},"do not disturb":{v:["방해 금지"]},invisible:{v:["보이지 않음"]},offline:{v:["오프라인"]},online:{v:["온라인"]}}},{l:"lo",t:{away:{v:["ບໍ່ຢູ່"]},busy:{v:["ບໍ່ວ່າງ"]},"do not disturb":{v:["ຫ້າມລົບກວນ"]},invisible:{v:["ບໍ່ສະແດງ"]},offline:{v:["ອອບໄລນ໌"]},online:{v:["ອອນໄລນ໌"]}}},{l:"lt-LT",t:{away:{v:["pasišalinęs"]},busy:{v:["užsiėmęs"]},"do not disturb":{v:["netrukdyti"]},invisible:{v:["nematomas"]},offline:{v:["neprisijungęs"]},online:{v:["prisijungęs"]}}},{l:"lv",t:{}},{l:"mk",t:{away:{v:["оддалечен"]},busy:{v:["зафатен"]},"do not disturb":{v:["не вознемирувај"]},invisible:{v:["невидливо"]},offline:{v:["офлајн"]},online:{v:["онлајн"]}}},{l:"mn",t:{away:{v:["хол байна"]},busy:{v:["завгүй"]},"do not disturb":{v:["бүү саад бол"]},invisible:{v:["үл харагдах"]},offline:{v:["офлайн"]},online:{v:["онлайн"]}}},{l:"my",t:{}},{l:"nb",t:{away:{v:["borte"]},busy:{v:["opptatt"]},"do not disturb":{v:["ikke forstyrr"]},invisible:{v:["usynlig"]},offline:{v:["frakoblet"]},online:{v:["tilkoblet"]}}},{l:"nl",t:{away:{v:["weg"]},busy:{v:["bezig"]},"do not disturb":{v:["niet storen"]},invisible:{v:["Onzichtbaar"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"oc",t:{}},{l:"pl",t:{away:{v:["stąd"]},busy:{v:["zajęty"]},"do not disturb":{v:["nie przeszkadzać"]},invisible:{v:["niewidzialny"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"pt-BR",t:{away:{v:["ausente"]},busy:{v:["ocupado"]},"do not disturb":{v:["não perturbe"]},invisible:{v:["invisível"]},offline:{v:["off-line"]},online:{v:["on-line"]}}},{l:"pt-PT",t:{away:{v:["longe"]},busy:{v:["ocupado"]},"do not disturb":{v:["não incomodar"]},invisible:{v:["invisível"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"ro",t:{away:{v:["plecat"]},"do not disturb":{v:["nu deranjați"]},offline:{v:["deconectat"]},online:{v:["online"]}}},{l:"ru",t:{away:{v:["отсутствие"]},busy:{v:["занятый"]},"do not disturb":{v:["не беспокоить"]},invisible:{v:["невидимый"]},offline:{v:["офлайн"]},online:{v:["онлайн"]}}},{l:"sk",t:{away:{v:["neprítomný"]},busy:{v:["zaneprázdnený"]},"do not disturb":{v:["nerušiť"]},invisible:{v:["neviditeľný"]},offline:{v:["Odpojený - offline"]},online:{v:["Pripojený - online"]}}},{l:"sl",t:{}},{l:"sr",t:{away:{v:["одсутан"]},busy:{v:["заузет"]},"do not disturb":{v:["не узнемиравај"]},invisible:{v:["невидљиво"]},offline:{v:["ван мреже"]},online:{v:["на мрежи"]}}},{l:"sv",t:{away:{v:["borta"]},busy:{v:["upptagen"]},"do not disturb":{v:["stör ej"]},invisible:{v:["osynlig"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"tr",t:{away:{v:["Uzakta"]},busy:{v:["Meşgul"]},"do not disturb":{v:["Rahatsız etmeyin"]},invisible:{v:["görünmez"]},offline:{v:["Çevrim dışı"]},online:{v:["Çevrim içi"]}}},{l:"uk",t:{away:{v:["відсутній"]},busy:{v:["зайнято"]},"do not disturb":{v:["не турбувати"]},invisible:{v:["Невидимий"]},offline:{v:["не в мережі"]},online:{v:["в мережі"]}}},{l:"uz",t:{away:{v:["uzoqda"]},busy:{v:["band"]},"do not disturb":{v:["bezovta qilmang"]},invisible:{v:["ko'rinmas"]},offline:{v:["offline"]},online:{v:["online"]}}},{l:"zh-CN",t:{away:{v:["离开"]},busy:{v:["繁忙"]},"do not disturb":{v:["请勿打扰"]},invisible:{v:["隐藏的"]},offline:{v:["离线"]},online:{v:["在线"]}}},{l:"zh-HK",t:{away:{v:["離開"]},busy:{v:["忙碌"]},"do not disturb":{v:["請勿打擾"]},invisible:{v:["隐藏的"]},offline:{v:["離線"]},online:{v:["在線"]}}},{l:"zh-TW",t:{away:{v:["離開"]},busy:{v:["忙碌"]},"do not disturb":{v:["請勿打擾"]},invisible:{v:["不可見"]},offline:{v:["離線"]},online:{v:["線上"]}}}],Zy=[{l:"ar",t:{"Cancel changes":{v:["إلغاء التغييرات"]},"Confirm changes":{v:["تأكيد التغييرات"]}}},{l:"ast",t:{"Cancel changes":{v:["Encaboxar los cambeos"]},"Confirm changes":{v:["Confirmar los cambeos"]}}},{l:"br",t:{}},{l:"ca",t:{"Cancel changes":{v:["Cancel·la els canvis"]},"Confirm changes":{v:["Confirmeu els canvis"]}}},{l:"cs",t:{"Cancel changes":{v:["Zrušit změny"]},"Confirm changes":{v:["Potvrdit změny"]}}},{l:"cs-CZ",t:{"Cancel changes":{v:["Zrušit změny"]},"Confirm changes":{v:["Potvrdit změny"]}}},{l:"da",t:{"Cancel changes":{v:["Annuller ændringer"]},"Confirm changes":{v:["Bekræft ændringer"]}}},{l:"de",t:{"Cancel changes":{v:["Änderungen verwerfen"]},"Confirm changes":{v:["Änderungen bestätigen"]}}},{l:"de-DE",t:{"Cancel changes":{v:["Änderungen verwerfen"]},"Confirm changes":{v:["Änderungen bestätigen"]}}},{l:"el",t:{"Cancel changes":{v:["Ακύρωση αλλαγών"]},"Confirm changes":{v:["Επιβεβαίωση αλλαγών"]}}},{l:"en-GB",t:{"Cancel changes":{v:["Cancel changes"]},"Confirm changes":{v:["Confirm changes"]}}},{l:"eo",t:{}},{l:"es",t:{"Cancel changes":{v:["Cancelar cambios"]},"Confirm changes":{v:["Confirmar cambios"]}}},{l:"es-AR",t:{"Cancel changes":{v:["Cancelar cambios"]},"Confirm changes":{v:["Confirmar cambios"]}}},{l:"es-EC",t:{"Cancel changes":{v:["Cancelar cambios"]},"Confirm changes":{v:["Confirmar cambios"]}}},{l:"es-MX",t:{"Cancel changes":{v:["Cancelar cambios"]},"Confirm changes":{v:["Confirmar cambios"]}}},{l:"et-EE",t:{"Cancel changes":{v:["Tühista muudatused"]},"Confirm changes":{v:["Kinnita muudatused"]}}},{l:"eu",t:{"Cancel changes":{v:["Ezeztatu aldaketak"]},"Confirm changes":{v:["Baieztatu aldaketak"]}}},{l:"fa",t:{"Cancel changes":{v:["لغو تغییرات"]},"Confirm changes":{v:["تایید تغییرات"]}}},{l:"fi",t:{"Cancel changes":{v:["Peruuta muutokset"]},"Confirm changes":{v:["Vahvista muutokset"]}}},{l:"fr",t:{"Cancel changes":{v:["Annuler les modifications"]},"Confirm changes":{v:["Confirmer les modifications"]}}},{l:"ga",t:{"Cancel changes":{v:["Cealaigh athruithe"]},"Confirm changes":{v:["Deimhnigh na hathruithe"]}}},{l:"gl",t:{"Cancel changes":{v:["Cancelar os cambios"]},"Confirm changes":{v:["Confirma os cambios"]}}},{l:"he",t:{"Cancel changes":{v:["ביטול שינויים"]},"Confirm changes":{v:["אישור השינויים"]}}},{l:"hr",t:{"Cancel changes":{v:["Otkaži promjene"]},"Confirm changes":{v:["Potvrdi promjene"]}}},{l:"hu",t:{"Cancel changes":{v:["Változtatások elvetése"]},"Confirm changes":{v:["Változtatások megerősítése"]}}},{l:"id",t:{"Cancel changes":{v:["Batalkan perubahan"]},"Confirm changes":{v:["Konfirmasikan perubahan"]}}},{l:"is",t:{"Cancel changes":{v:["Hætta við breytingar"]},"Confirm changes":{v:["Staðfesta breytingar"]}}},{l:"it",t:{"Cancel changes":{v:["Annulla modifiche"]},"Confirm changes":{v:["Conferma modifiche"]}}},{l:"ja",t:{"Cancel changes":{v:["変更をキャンセル"]},"Confirm changes":{v:["変更を承認"]}}},{l:"ja-JP",t:{"Cancel changes":{v:["変更をキャンセル"]},"Confirm changes":{v:["変更を承認"]}}},{l:"ko",t:{"Cancel changes":{v:["변경 취소"]},"Confirm changes":{v:["변경 사항 확인"]}}},{l:"lo",t:{"Cancel changes":{v:["ຍົກເລີກການປ່ຽນແປງ"]},"Confirm changes":{v:["ຢືນຢັນການປ່ຽນແປງ"]}}},{l:"lt-LT",t:{"Cancel changes":{v:["Atsisakyti pakeitimų"]},"Confirm changes":{v:["Patvirtinti pakeitimus"]}}},{l:"lv",t:{}},{l:"mk",t:{"Cancel changes":{v:["Откажи ги промените"]},"Confirm changes":{v:["Потврди ги промените"]}}},{l:"mn",t:{"Cancel changes":{v:["Өөрчлөлтийг цуцлах"]},"Confirm changes":{v:["Өөрчлөлтийг баталгаажуулах"]}}},{l:"my",t:{"Cancel changes":{v:["ပြောင်းလဲမှုများ ပယ်ဖျက်ရန်"]},"Confirm changes":{v:["ပြောင်းလဲမှုများ အတည်ပြုရန်"]}}},{l:"nb",t:{"Cancel changes":{v:["Avbryt endringer"]},"Confirm changes":{v:["Bekreft endringer"]}}},{l:"nl",t:{"Cancel changes":{v:["Wijzigingen annuleren"]},"Confirm changes":{v:["Wijzigingen bevestigen"]}}},{l:"oc",t:{}},{l:"pl",t:{"Cancel changes":{v:["Anuluj zmiany"]},"Confirm changes":{v:["Potwierdź zmiany"]}}},{l:"pt-BR",t:{"Cancel changes":{v:["Cancelar alterações"]},"Confirm changes":{v:["Confirmar alterações"]}}},{l:"pt-PT",t:{"Cancel changes":{v:["Cancelar alterações"]},"Confirm changes":{v:["Confirmar alterações"]}}},{l:"ro",t:{"Cancel changes":{v:["Anulează modificările"]},"Confirm changes":{v:["Confirmați modificările"]}}},{l:"ru",t:{"Cancel changes":{v:["Отменить изменения"]},"Confirm changes":{v:["Подтвердить изменения"]}}},{l:"sk",t:{"Cancel changes":{v:["Zrušiť zmeny"]},"Confirm changes":{v:["Potvrdiť zmeny"]}}},{l:"sl",t:{"Cancel changes":{v:["Prekliči spremembe"]},"Confirm changes":{v:["Potrdi spremembe"]}}},{l:"sr",t:{"Cancel changes":{v:["Откажи измене"]},"Confirm changes":{v:["Потврдите измене"]}}},{l:"sv",t:{"Cancel changes":{v:["Avbryt ändringar"]},"Confirm changes":{v:["Bekräfta ändringar"]}}},{l:"tr",t:{"Cancel changes":{v:["Değişiklikleri iptal et"]},"Confirm changes":{v:["Değişiklikleri onayla"]}}},{l:"uk",t:{"Cancel changes":{v:["Скасувати зміни"]},"Confirm changes":{v:["Підтвердити зміни"]}}},{l:"uz",t:{"Cancel changes":{v:["O'zgarishlarni bekor qilish"]},"Confirm changes":{v:["O'zgarishlarni tasdiqlang"]}}},{l:"zh-CN",t:{"Cancel changes":{v:["取消更改"]},"Confirm changes":{v:["确认更改"]}}},{l:"zh-HK",t:{"Cancel changes":{v:["取消更改"]},"Confirm changes":{v:["確認更改"]}}},{l:"zh-TW",t:{"Cancel changes":{v:["取消變更"]},"Confirm changes":{v:["確認變更"]}}}],Xy=[{l:"ar",t:{"Change name":{v:["تغيير الاسم"]},"Close sidebar":{v:["قفل الشريط الجانبي"]},Favorite:{v:["المفضلة"]},"Open sidebar":{v:["إفتَح الشريط الجانبي"]}}},{l:"ast",t:{"Change name":{v:["Camudar el nome"]},"Close sidebar":{v:["Zarrar la barra llateral"]},Favorite:{v:["Favoritu"]},"Open sidebar":{v:["Abrir la barra llateral"]}}},{l:"br",t:{}},{l:"ca",t:{"Close sidebar":{v:["Tancar la barra lateral"]},Favorite:{v:["Preferit"]}}},{l:"cs",t:{"Change name":{v:["Změnit název"]},"Close sidebar":{v:["Zavřít postranní panel"]},Favorite:{v:["Oblíbené"]},"Open sidebar":{v:["Otevřít postranní panel"]}}},{l:"cs-CZ",t:{"Change name":{v:["Změnit název"]},"Close sidebar":{v:["Zavřít postranní panel"]},Favorite:{v:["Oblíbené"]}}},{l:"da",t:{"Change name":{v:["Ændre navn"]},"Close sidebar":{v:["Luk sidepanel"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Åbn sidepanel"]}}},{l:"de",t:{"Change name":{v:["Namen ändern"]},"Close sidebar":{v:["Seitenleiste schließen"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Seitenleiste öffnen"]}}},{l:"de-DE",t:{"Change name":{v:["Namen ändern"]},"Close sidebar":{v:["Seitenleiste schließen"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Seitenleiste öffnen"]}}},{l:"el",t:{"Change name":{v:["Αλλαγή ονόματος"]},"Close sidebar":{v:["Κλείσιμο πλευρικής μπάρας"]},Favorite:{v:["Αγαπημένα"]},"Open sidebar":{v:["Άνοιγμα πλευρικής μπάρας"]}}},{l:"en-GB",t:{"Change name":{v:["Change name"]},"Close sidebar":{v:["Close sidebar"]},Favorite:{v:["Favourite"]},"Open sidebar":{v:["Open sidebar"]}}},{l:"eo",t:{}},{l:"es",t:{"Change name":{v:["Cambiar nombre"]},"Close sidebar":{v:["Cerrar barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir barra lateral"]}}},{l:"es-AR",t:{"Change name":{v:["Cambiar nombre"]},"Close sidebar":{v:["Cerrar barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir barra lateral"]}}},{l:"es-EC",t:{"Change name":{v:["Cambiar nombre"]},"Close sidebar":{v:["Cerrar barra lateral"]},Favorite:{v:["Favorito"]}}},{l:"es-MX",t:{"Change name":{v:["Cambiar nombre"]},"Close sidebar":{v:["Cerrar barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir barra lateral"]}}},{l:"et-EE",t:{"Change name":{v:["Muuda nime"]},"Close sidebar":{v:["Sulge külgriba"]},Favorite:{v:["Lemmik"]},"Open sidebar":{v:["Ava külgriba"]}}},{l:"eu",t:{"Change name":{v:["Aldatu izena"]},"Close sidebar":{v:["Itxi albo-barra"]},Favorite:{v:["Gogokoa"]}}},{l:"fa",t:{"Change name":{v:["تغییر نام"]},"Close sidebar":{v:["بستن نوار کناری"]},Favorite:{v:["مورد علاقه"]},"Open sidebar":{v:["باز کردن نوار کنار"]}}},{l:"fi",t:{"Change name":{v:["Vaihda nimi"]},"Close sidebar":{v:["Sulje sivupalkki"]},Favorite:{v:["Suosikki"]},"Open sidebar":{v:["Avaa sivupalkki"]}}},{l:"fr",t:{"Change name":{v:["Modifier le nom"]},"Close sidebar":{v:["Fermer la barre latérale"]},Favorite:{v:["Favori"]},"Open sidebar":{v:["Ouvrir la barre latérale"]}}},{l:"ga",t:{"Change name":{v:["Athrú ainm"]},"Close sidebar":{v:["Dún barra taoibh"]},Favorite:{v:["is fearr leat"]},"Open sidebar":{v:["Oscail barra taoibh"]}}},{l:"gl",t:{"Change name":{v:["Cambiar o nome"]},"Close sidebar":{v:["Pechar a barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir a barra lateral"]}}},{l:"he",t:{"Change name":{v:["החלפת שם"]},"Close sidebar":{v:["סגירת סרגל הצד"]},Favorite:{v:["למועדפים"]}}},{l:"hr",t:{"Change name":{v:["Promjeni naziv"]},"Close sidebar":{v:["Zatvori bočnu traku"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Otvori bočnu traku"]}}},{l:"hu",t:{"Change name":{v:["Név módosítása"]},"Close sidebar":{v:["Oldalsáv bezárása"]},Favorite:{v:["Kedvenc"]},"Open sidebar":{v:["Oldalsáv megnyitása"]}}},{l:"id",t:{"Change name":{v:["Ubah nama"]},"Close sidebar":{v:["Tutup bilah sisi"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Buka bilah sisi"]}}},{l:"is",t:{"Change name":{v:["Breyta nafni"]},"Close sidebar":{v:["Loka hliðarstiku"]},Favorite:{v:["Eftirlæti"]},"Open sidebar":{v:["Opna hliðarspjald"]}}},{l:"it",t:{"Change name":{v:["Cambia nome"]},"Close sidebar":{v:["Chiudi la barra laterale"]},Favorite:{v:["Preferito"]}}},{l:"ja",t:{"Change name":{v:["名前の変更"]},"Close sidebar":{v:["サイドバーを閉じる"]},Favorite:{v:["お気に入り"]},"Open sidebar":{v:["サイドバーを開く"]}}},{l:"ja-JP",t:{"Change name":{v:["名前の変更"]},"Close sidebar":{v:["サイドバーを閉じる"]},Favorite:{v:["お気に入り"]},"Open sidebar":{v:["サイドバーを開く"]}}},{l:"ko",t:{"Change name":{v:["이름 변경"]},"Close sidebar":{v:["사이드바 닫기"]},Favorite:{v:["즐겨찾기"]},"Open sidebar":{v:["사이드바 열기"]}}},{l:"lo",t:{"Change name":{v:["ປ່ຽນຊື່"]},"Close sidebar":{v:["ປິດແຖບດ້ານຂ້າງ"]},Favorite:{v:["ລາຍການທີ່ມັກ"]},"Open sidebar":{v:["ເປີດແຖບດ້ານຂ້າງ"]}}},{l:"lt-LT",t:{"Change name":{v:["Pakeisti vardą"]},"Close sidebar":{v:["Užverti šoninę juostą"]},Favorite:{v:["Mėgstamiausias"]},"Open sidebar":{v:["Atverti šoninę juostą"]}}},{l:"lv",t:{}},{l:"mk",t:{"Change name":{v:["Промени име"]},"Close sidebar":{v:["Затвори странична лента"]},Favorite:{v:["Фаворити"]},"Open sidebar":{v:["Отвори странична лента"]}}},{l:"mn",t:{"Change name":{v:["Нэр солих"]},"Close sidebar":{v:["Хажуугийн самбарыг хаах"]},Favorite:{v:["Дуртай"]},"Open sidebar":{v:["Хажуугийн самбарыг нээх"]}}},{l:"my",t:{}},{l:"nb",t:{"Change name":{v:["Endre navn"]},"Close sidebar":{v:["Lukk sidepanel"]},Favorite:{v:["Favoritt"]},"Open sidebar":{v:["Åpne sidefelt"]}}},{l:"nl",t:{"Change name":{v:["Naam wijzigen"]},"Close sidebar":{v:["Zijbalk sluiten"]},Favorite:{v:["Favoriet"]},"Open sidebar":{v:["Zijbalk openen"]}}},{l:"oc",t:{}},{l:"pl",t:{"Change name":{v:["Zmień nazwę"]},"Close sidebar":{v:["Zamknij pasek boczny"]},Favorite:{v:["Ulubiony"]},"Open sidebar":{v:["Otwórz pasek boczny"]}}},{l:"pt-BR",t:{"Change name":{v:["Mudar nome"]},"Close sidebar":{v:["Fechar barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir barra lateral"]}}},{l:"pt-PT",t:{"Change name":{v:["Alterar nome"]},"Close sidebar":{v:["Fechar barra lateral"]},Favorite:{v:["Favorito"]},"Open sidebar":{v:["Abrir barra lateral"]}}},{l:"ro",t:{"Change name":{v:["Modifică numele"]},"Close sidebar":{v:["Închide bara laterală"]},Favorite:{v:["Favorit"]}}},{l:"ru",t:{"Change name":{v:["Изменить имя"]},"Close sidebar":{v:["Закрыть сайдбар"]},Favorite:{v:["Избранное"]},"Open sidebar":{v:["Открыть боковую панель"]}}},{l:"sk",t:{"Change name":{v:["Zmeniť názov"]},"Close sidebar":{v:["Zavrieť bočný panel"]},Favorite:{v:["Obľúbené"]},"Open sidebar":{v:["Otvoriť bočný panel"]}}},{l:"sl",t:{"Close sidebar":{v:["Zapri stransko vrstico"]},Favorite:{v:["Priljubljeno"]}}},{l:"sr",t:{"Change name":{v:["Измени назив"]},"Close sidebar":{v:["Затвори бочну траку"]},Favorite:{v:["Омиљени"]},"Open sidebar":{v:["Отвори бочну траку"]}}},{l:"sv",t:{"Change name":{v:["Ändra namn"]},"Close sidebar":{v:["Stäng sidofältet"]},Favorite:{v:["Favorit"]},"Open sidebar":{v:["Öppna sidofältet"]}}},{l:"tr",t:{"Change name":{v:["Adı değiştir"]},"Close sidebar":{v:["Yan çubuğu kapat"]},Favorite:{v:["Sık kullanılanlara ekle"]},"Open sidebar":{v:["Yan çubuğu aç"]}}},{l:"uk",t:{"Change name":{v:["Змінити назву"]},"Close sidebar":{v:["Закрити бічну панель"]},Favorite:{v:["Із зірочкою"]},"Open sidebar":{v:["Бокове меню"]}}},{l:"uz",t:{"Change name":{v:["Ismni o'zgartirish"]},"Close sidebar":{v:["Yon panelni yoping"]},Favorite:{v:["Tanlangan"]},"Open sidebar":{v:["Yon panelni oching"]}}},{l:"zh-CN",t:{"Change name":{v:["修改名称"]},"Close sidebar":{v:["关闭侧边栏"]},Favorite:{v:["喜爱"]},"Open sidebar":{v:["打开侧边栏"]}}},{l:"zh-HK",t:{"Change name":{v:["更改名稱"]},"Close sidebar":{v:["關閉側邊欄"]},Favorite:{v:["喜愛"]},"Open sidebar":{v:["打開側邊欄"]}}},{l:"zh-TW",t:{"Change name":{v:["變更名稱"]},"Close sidebar":{v:["關閉側邊欄"]},Favorite:{v:["最愛"]},"Open sidebar":{v:["開啟側邊欄"]}}}],Zh=[{l:"ar",t:{"Clear selected":{v:["محو المحدّد"]},"Deselect {option}":{v:["إلغاء تحديد {option}"]},"No results":{v:["ليس هناك أية نتيجة"]},Options:{v:["خيارات"]}}},{l:"ast",t:{"Clear selected":{v:["Borrar lo seleicionao"]},"Deselect {option}":{v:["Deseleicionar «{option}»"]},"No results":{v:["Nun hai nengún resultáu"]},Options:{v:["Opciones"]}}},{l:"br",t:{"No results":{v:["Disoc'h ebet"]}}},{l:"ca",t:{"No results":{v:["Sense resultats"]}}},{l:"cs",t:{"Clear selected":{v:["Vyčistit vybrané"]},"Deselect {option}":{v:["Zrušit výběr {option}"]},"No results":{v:["Nic nenalezeno"]},Options:{v:["Možnosti"]}}},{l:"cs-CZ",t:{"Clear selected":{v:["Vyčistit vybrané"]},"Deselect {option}":{v:["Zrušit výběr {option}"]},"No results":{v:["Nic nenalezeno"]},Options:{v:["Možnosti"]}}},{l:"da",t:{"Clear selected":{v:["Ryd valgt"]},"Deselect {option}":{v:["Fravælg {option}"]},"No results":{v:["Ingen resultater"]},Options:{v:["Indstillinger"]}}},{l:"de",t:{"Clear selected":{v:["Auswahl leeren"]},"Deselect {option}":{v:["{option} abwählen"]},"No results":{v:["Keine Ergebnisse"]},Options:{v:["Optionen"]}}},{l:"de-DE",t:{"Clear selected":{v:["Auswahl leeren"]},"Deselect {option}":{v:["{option} abwählen"]},"No results":{v:["Keine Ergebnisse"]},Options:{v:["Optionen"]}}},{l:"el",t:{"Clear selected":{v:["Εκκαθάριση επιλογής"]},"Deselect {option}":{v:["Αποεπιλογή {option}"]},"No results":{v:["Κανένα αποτέλεσμα"]},Options:{v:["Επιλογές"]}}},{l:"en-GB",t:{"Clear selected":{v:["Clear selected"]},"Deselect {option}":{v:["Deselect {option}"]},"No results":{v:["No results"]},Options:{v:["Options"]}}},{l:"eo",t:{"No results":{v:["La rezulto forestas"]}}},{l:"es",t:{"Clear selected":{v:["Limpiar selección"]},"Deselect {option}":{v:["Deseleccionar {option}"]},"No results":{v:[" Ningún resultado"]},Options:{v:["Opciones"]}}},{l:"es-AR",t:{"Clear selected":{v:["Limpiar selección"]},"Deselect {option}":{v:["Deseleccionar {option}"]},"No results":{v:["Sin resultados"]},Options:{v:["Opciones"]}}},{l:"es-EC",t:{"No results":{v:["Sin resultados"]}}},{l:"es-MX",t:{"Clear selected":{v:["Limpiar selección"]},"Deselect {option}":{v:["Deseleccionar {option}"]},"No results":{v:["Sin resultados"]},Options:{v:["Opciones"]}}},{l:"et-EE",t:{"Clear selected":{v:["Tühjenda valik"]},"Deselect {option}":{v:["Eemalda {option} valik"]},"No results":{v:["Tulemusi pole"]},Options:{v:["Valikud"]}}},{l:"eu",t:{"No results":{v:["Emaitzarik ez"]}}},{l:"fa",t:{"Clear selected":{v:["پاک کردن مورد انتخاب شده"]},"Deselect {option}":{v:["لغو انتخاب {option}"]},"No results":{v:["بدون هیچ نتیجه‌ای"]},Options:{v:["گزینه‌ها"]}}},{l:"fi",t:{"Clear selected":{v:["Tyhjennä valitut"]},"Deselect {option}":{v:["Poista valinta {option}"]},"No results":{v:["Ei tuloksia"]},Options:{v:["Valinnat"]}}},{l:"fr",t:{"Clear selected":{v:["Vider la sélection"]},"Deselect {option}":{v:["Désélectionner {option}"]},"No results":{v:["Aucun résultat"]},Options:{v:["Options"]}}},{l:"ga",t:{"Clear selected":{v:["Glan roghnaithe"]},"Deselect {option}":{v:["Díroghnaigh {option}"]},"No results":{v:["Gan torthaí"]},Options:{v:["Roghanna"]}}},{l:"gl",t:{"Clear selected":{v:["Limpar o seleccionado"]},"Deselect {option}":{v:["Desmarcar {option}"]},"No results":{v:["Sen resultados"]},Options:{v:["Opcións"]}}},{l:"he",t:{"No results":{v:["אין תוצאות"]}}},{l:"hr",t:{"Clear selected":{v:["Očisti odabir"]},"Deselect {option}":{v:["Odznači {option}"]},"No results":{v:["Nema rezultata"]},Options:{v:["Mogućnosti"]}}},{l:"hu",t:{"Clear selected":{v:["Kijelölés törlése"]},"Deselect {option}":{v:["{option} kijelölésének megszüntetése"]},"No results":{v:["Nincs találat"]},Options:{v:["Beállítások"]}}},{l:"id",t:{"Clear selected":{v:["Hapus terpilih"]},"Deselect {option}":{v:["Batalkan pemilihan {option}"]},"No results":{v:["Tidak ada hasil"]},Options:{v:["Opsi"]}}},{l:"is",t:{"Clear selected":{v:["Hreinsa valið"]},"Deselect {option}":{v:["Afvelja {option}"]},"No results":{v:["Engar niðurstöður"]},Options:{v:["Valkostir"]}}},{l:"it",t:{"Clear selected":{v:["Cancella selezionati"]},"Deselect {option}":{v:["Deselezionare {option}"]},"No results":{v:["Nessun risultato"]}}},{l:"ja",t:{"Clear selected":{v:["選択を解除"]},"Deselect {option}":{v:["{option} の選択を解除"]},"No results":{v:["結果無し"]},Options:{v:["オプション"]}}},{l:"ja-JP",t:{"Clear selected":{v:["選択を解除"]},"Deselect {option}":{v:["{option} の選択を解除"]},"No results":{v:["結果無し"]},Options:{v:["オプション"]}}},{l:"ko",t:{"Clear selected":{v:["선택 항목 지우기"]},"Deselect {option}":{v:["{option} 선택 해제"]},"No results":{v:["결과 없음"]},Options:{v:["옵션"]}}},{l:"lo",t:{"Clear selected":{v:["ລຶບສິ່ງທີ່ເລືອກ"]},"Deselect {option}":{v:["ຍົກເລີກການເລືອກ {option}"]},"No results":{v:["ບໍ່ມີຜົນລັບ"]},Options:{v:["ຕົວເລືອກ"]}}},{l:"lt-LT",t:{"Clear selected":{v:["Išvalyti pasirinkimą"]},"Deselect {option}":{v:["Panaikinkite {option} pasirinkimą"]},"No results":{v:["Nėra rezultatų"]},Options:{v:["Parinktys"]}}},{l:"lv",t:{"No results":{v:["Nav rezultātu"]}}},{l:"mk",t:{"Clear selected":{v:["Исчисти означени"]},"Deselect {option}":{v:["Откажи избор на {option}"]},"No results":{v:["Нема резултати"]},Options:{v:["Опции"]}}},{l:"mn",t:{"Clear selected":{v:["Сонголтыг цэвэрлэх"]},"Deselect {option}":{v:["{option}-г сонголтоос хасах"]},"No results":{v:["Үр дүн алга"]},Options:{v:["Тохиргоо"]}}},{l:"my",t:{"No results":{v:["ရလဒ်မရှိပါ"]}}},{l:"nb",t:{"Clear selected":{v:["Tøm merket"]},"Deselect {option}":{v:["Opphev valg {option}"]},"No results":{v:["Ingen resultater"]},Options:{v:["Alternativer"]}}},{l:"nl",t:{"Clear selected":{v:["Selectie wissen"]},"Deselect {option}":{v:["Selectie {option} opheffen"]},"No results":{v:["Geen resultaten"]},Options:{v:["Opties"]}}},{l:"oc",t:{"No results":{v:["Cap de resultat"]}}},{l:"pl",t:{"Clear selected":{v:["Wyczyść wybrane"]},"Deselect {option}":{v:["Odznacz {option}"]},"No results":{v:["Brak wyników"]},Options:{v:["Opcje"]}}},{l:"pt-BR",t:{"Clear selected":{v:["Limpar selecionado"]},"Deselect {option}":{v:["Desselecionar {option}"]},"No results":{v:["Sem resultados"]},Options:{v:["Opções"]}}},{l:"pt-PT",t:{"Clear selected":{v:["Limpeza selecionada"]},"Deselect {option}":{v:["Desmarcar {option}"]},"No results":{v:["Sem resultados"]},Options:{v:["Opções"]}}},{l:"ro",t:{"Clear selected":{v:["Șterge selecția"]},"Deselect {option}":{v:["Deselctează {option}"]},"No results":{v:["Nu există rezultate"]}}},{l:"ru",t:{"Clear selected":{v:["Очистить выбранный"]},"Deselect {option}":{v:["Отменить выбор {option}"]},"No results":{v:["Результаты отсуствуют"]},Options:{v:["Варианты"]}}},{l:"sk",t:{"Clear selected":{v:["Vymazať vybraté"]},"Deselect {option}":{v:["Zrušiť výber {option}"]},"No results":{v:["Žiadne výsledky"]},Options:{v:["možnosti"]}}},{l:"sl",t:{"No results":{v:["Ni zadetkov"]}}},{l:"sr",t:{"Clear selected":{v:["Обриши изабрано"]},"Deselect {option}":{v:["Уклони избор {option}"]},"No results":{v:["Нема резултата"]},Options:{v:["Опције"]}}},{l:"sv",t:{"Clear selected":{v:["Rensa val"]},"Deselect {option}":{v:["Avmarkera {option}"]},"No results":{v:["Inga resultat"]},Options:{v:["Alternativ"]}}},{l:"tr",t:{"Clear selected":{v:["Seçilmişleri temizle"]},"Deselect {option}":{v:["{option} bırak"]},"No results":{v:["Herhangi bir sonuç bulunamadı"]},Options:{v:["Seçenekler"]}}},{l:"uk",t:{"Clear selected":{v:["Очистити вибране"]},"Deselect {option}":{v:["Зняти вибір {option}"]},"No results":{v:["Відсутні результати"]},Options:{v:["Параметри"]}}},{l:"uz",t:{"Clear selected":{v:["Tanlanganni tozalash"]},"Deselect {option}":{v:["{option}tanlovni bekor qiling"]},"No results":{v:["Natija yoʻq"]},Options:{v:["Variantlar"]}}},{l:"zh-CN",t:{"Clear selected":{v:["清除所选"]},"Deselect {option}":{v:["取消选择 {option}"]},"No results":{v:["无结果"]},Options:{v:["选项"]}}},{l:"zh-HK",t:{"Clear selected":{v:["清除所選項目"]},"Deselect {option}":{v:["取消選擇 {option}"]},"No results":{v:["無結果"]},Options:{v:["選項"]}}},{l:"zh-TW",t:{"Clear selected":{v:["清除選定項目"]},"Deselect {option}":{v:["取消選取 {option}"]},"No results":{v:["無結果"]},Options:{v:["選項"]}}}],Jy=[{l:"ar",t:{"Clear text":{v:["محو النص"]},"Save changes":{v:["حفظ التغييرات"]}}},{l:"ast",t:{"Clear text":{v:["Borrar el testu"]},"Save changes":{v:["Guardar los cambeos"]}}},{l:"br",t:{}},{l:"ca",t:{"Clear text":{v:["Netejar text"]}}},{l:"cs",t:{"Clear text":{v:["Čitelný text"]},"Save changes":{v:["Uložit změny"]}}},{l:"cs-CZ",t:{"Clear text":{v:["Čitelný text"]},"Save changes":{v:["Uložit změny"]}}},{l:"da",t:{"Clear text":{v:["Ryd tekst"]},"Save changes":{v:["Gem ændringer"]}}},{l:"de",t:{"Clear text":{v:["Klartext"]},"Save changes":{v:["Änderungen speichern"]}}},{l:"de-DE",t:{"Clear text":{v:["Klartext"]},"Save changes":{v:["Änderungen speichern"]}}},{l:"el",t:{"Clear text":{v:["Εκκαθάριση κειμένου"]},"Save changes":{v:["Αποθήκευση αλλαγών"]}}},{l:"en-GB",t:{"Clear text":{v:["Clear text"]},"Save changes":{v:["Save changes"]}}},{l:"eo",t:{}},{l:"es",t:{"Clear text":{v:["Limpiar texto"]},"Save changes":{v:["Guardar cambios"]}}},{l:"es-AR",t:{"Clear text":{v:["Limpiar texto"]},"Save changes":{v:["Guardar cambios"]}}},{l:"es-EC",t:{"Clear text":{v:["Limpiar texto"]}}},{l:"es-MX",t:{"Clear text":{v:["Limpiar texto"]},"Save changes":{v:["Guardar cambios"]}}},{l:"et-EE",t:{"Clear text":{v:["Kustuta tekst"]},"Save changes":{v:["Salvesta muudatused"]}}},{l:"eu",t:{"Clear text":{v:["Garbitu testua"]}}},{l:"fa",t:{"Clear text":{v:["پاک کردن متن"]},"Save changes":{v:["ذخیرهٔ تغییرات"]}}},{l:"fi",t:{"Clear text":{v:["Tyhjennä teksti"]},"Save changes":{v:["Tallenna muutokset"]}}},{l:"fr",t:{"Clear text":{v:["Effacer le texte"]},"Save changes":{v:["Sauvegarder les changements"]}}},{l:"ga",t:{"Clear text":{v:["Glan téacs"]},"Save changes":{v:["Sabháil na hathruithe"]}}},{l:"gl",t:{"Clear text":{v:["Limpar o texto"]},"Save changes":{v:["Gardar os cambios"]}}},{l:"he",t:{"Clear text":{v:["פינוי טקסט"]}}},{l:"hr",t:{"Clear text":{v:["Očisti tekst"]},"Save changes":{v:["Spremi promjene"]}}},{l:"hu",t:{"Clear text":{v:["Szöveg törlése"]},"Save changes":{v:["Változtatások mentése"]}}},{l:"id",t:{"Clear text":{v:["Bersihkan teks"]},"Save changes":{v:["Simpan perubahan"]}}},{l:"is",t:{"Clear text":{v:["Hreinsa texta"]},"Save changes":{v:["Vista breytingar"]}}},{l:"it",t:{"Clear text":{v:["Cancella il testo"]},"Save changes":{v:["Salva le modifiche"]}}},{l:"ja",t:{"Clear text":{v:["テキストをクリア"]},"Save changes":{v:["変更を保存"]}}},{l:"ja-JP",t:{"Clear text":{v:["テキストをクリア"]},"Save changes":{v:["変更を保存"]}}},{l:"ko",t:{"Clear text":{v:["텍스트 지우기"]},"Save changes":{v:["변경 사항 저장"]}}},{l:"lo",t:{"Clear text":{v:["ລຶບຂໍ້ຄວາມ"]},"Save changes":{v:["ບັນທຶກການປ່ຽນແປງ"]}}},{l:"lt-LT",t:{"Clear text":{v:["Išvalyti tekstą"]},"Save changes":{v:["Įrašyti pakeitimus"]}}},{l:"lv",t:{}},{l:"mk",t:{"Clear text":{v:["Исчисти текст"]},"Save changes":{v:["Зачувај промени"]}}},{l:"mn",t:{"Clear text":{v:["Текстийг цэвэрлэх"]},"Save changes":{v:["Өөрчлөлтийг хадгалах"]}}},{l:"my",t:{}},{l:"nb",t:{"Clear text":{v:["Fjern tekst"]},"Save changes":{v:["Lagre endringer"]}}},{l:"nl",t:{"Clear text":{v:["Tekst wissen"]},"Save changes":{v:["Wijzigingen opslaan"]}}},{l:"oc",t:{}},{l:"pl",t:{"Clear text":{v:["Wyczyść tekst"]},"Save changes":{v:["Zapisz zmiany"]}}},{l:"pt-BR",t:{"Clear text":{v:["Limpar texto"]},"Save changes":{v:["Salvar alterações"]}}},{l:"pt-PT",t:{"Clear text":{v:["Limpar texto"]},"Save changes":{v:["Gravar alterações"]}}},{l:"ro",t:{"Clear text":{v:["Șterge textul"]},"Save changes":{v:["Salvează modificările"]}}},{l:"ru",t:{"Clear text":{v:["Очистить текст"]},"Save changes":{v:["Сохранить изменения"]}}},{l:"sk",t:{"Clear text":{v:["Vamazať text"]},"Save changes":{v:["Uložiť zmeny"]}}},{l:"sl",t:{"Clear text":{v:["Počisti besedilo"]}}},{l:"sr",t:{"Clear text":{v:["Обриши текст"]},"Save changes":{v:["Сачувај измене"]}}},{l:"sv",t:{"Clear text":{v:["Ta bort text"]},"Save changes":{v:["Spara ändringar"]}}},{l:"tr",t:{"Clear text":{v:["Metni temizle"]},"Save changes":{v:["Değişiklikleri kaydet"]}}},{l:"uk",t:{"Clear text":{v:["Очистити текст"]},"Save changes":{v:["Зберегти зміни"]}}},{l:"uz",t:{"Clear text":{v:["Matnni tozalash"]},"Save changes":{v:["O'zgarishlarni saqlang"]}}},{l:"zh-CN",t:{"Clear text":{v:["清除文本"]},"Save changes":{v:["保存修改"]}}},{l:"zh-HK",t:{"Clear text":{v:["清除文本"]},"Save changes":{v:["保存更改"]}}},{l:"zh-TW",t:{"Clear text":{v:["清除文字"]},"Save changes":{v:["儲存變更"]}}}],Xh=[{l:"ar",t:{Close:{v:["إغلاق"]}}},{l:"ast",t:{Close:{v:["Zarrar"]}}},{l:"br",t:{Close:{v:["Serriñ"]}}},{l:"ca",t:{Close:{v:["Tanca"]}}},{l:"cs",t:{Close:{v:["Zavřít"]}}},{l:"cs-CZ",t:{Close:{v:["Zavřít"]}}},{l:"da",t:{Close:{v:["Luk"]}}},{l:"de",t:{Close:{v:["Schließen"]}}},{l:"de-DE",t:{Close:{v:["Schließen"]}}},{l:"el",t:{Close:{v:["Κλείσιμο"]}}},{l:"en-GB",t:{Close:{v:["Close"]}}},{l:"eo",t:{Close:{v:["Fermu"]}}},{l:"es",t:{Close:{v:["Cerrar"]}}},{l:"es-AR",t:{Close:{v:["Cerrar"]}}},{l:"es-EC",t:{Close:{v:["Cerrar"]}}},{l:"es-MX",t:{Close:{v:["Cerrar"]}}},{l:"et-EE",t:{Close:{v:["Sulge"]}}},{l:"eu",t:{Close:{v:["Itxi"]}}},{l:"fa",t:{Close:{v:["بستن"]}}},{l:"fi",t:{Close:{v:["Sulje"]}}},{l:"fr",t:{Close:{v:["Fermer"]}}},{l:"ga",t:{Close:{v:["Dún"]}}},{l:"gl",t:{Close:{v:["Pechar"]}}},{l:"he",t:{Close:{v:["סגירה"]}}},{l:"hr",t:{Close:{v:["Zatvori"]}}},{l:"hu",t:{Close:{v:["Bezárás"]}}},{l:"id",t:{Close:{v:["Tutup"]}}},{l:"is",t:{Close:{v:["Loka"]}}},{l:"it",t:{Close:{v:["Chiudi"]}}},{l:"ja",t:{Close:{v:["閉じる"]}}},{l:"ja-JP",t:{Close:{v:["閉じる"]}}},{l:"ko",t:{Close:{v:["닫기"]}}},{l:"lo",t:{Close:{v:["ປິດ"]}}},{l:"lt-LT",t:{Close:{v:["Užverti"]}}},{l:"lv",t:{Close:{v:["Aizvērt"]}}},{l:"mk",t:{Close:{v:["Затвори"]}}},{l:"mn",t:{Close:{v:["Хаах"]}}},{l:"my",t:{Close:{v:["ပိတ်ရန်"]}}},{l:"nb",t:{Close:{v:["Lukk"]}}},{l:"nl",t:{Close:{v:["Sluiten"]}}},{l:"oc",t:{Close:{v:["Tampar"]}}},{l:"pl",t:{Close:{v:["Zamknij"]}}},{l:"pt-BR",t:{Close:{v:["Fechar"]}}},{l:"pt-PT",t:{Close:{v:["Fechar"]}}},{l:"ro",t:{Close:{v:["Închideți"]}}},{l:"ru",t:{Close:{v:["Закрыть"]}}},{l:"sk",t:{Close:{v:["Zavrieť"]}}},{l:"sl",t:{Close:{v:["Zapri"]}}},{l:"sr",t:{Close:{v:["Затвори"]}}},{l:"sv",t:{Close:{v:["Stäng"]}}},{l:"tr",t:{Close:{v:["Kapat"]}}},{l:"uk",t:{Close:{v:["Закрити"]}}},{l:"uz",t:{Close:{v:["Yopish"]}}},{l:"zh-CN",t:{Close:{v:["关闭"]}}},{l:"zh-HK",t:{Close:{v:["關閉"]}}},{l:"zh-TW",t:{Close:{v:["關閉"]}}}],Qy=[{l:"ar",t:{"Close navigation":{v:["إغلاق التصفح"]},"Open navigation":{v:["فتح التنقُّل"]}}},{l:"ast",t:{"Close navigation":{v:["Zarrar la navegación"]},"Open navigation":{v:["Abrir la navegación"]}}},{l:"br",t:{}},{l:"ca",t:{"Close navigation":{v:["Tanca la navegació"]},"Open navigation":{v:["Obre la navegació"]}}},{l:"cs",t:{"Close navigation":{v:["Zavřít navigaci"]},"Open navigation":{v:["Otevřít navigaci"]}}},{l:"cs-CZ",t:{"Close navigation":{v:["Zavřít navigaci"]},"Open navigation":{v:["Otevřít navigaci"]}}},{l:"da",t:{"Close navigation":{v:["Luk navigation"]},"Open navigation":{v:["Åben navigation"]}}},{l:"de",t:{"Close navigation":{v:["Navigation schließen"]},"Open navigation":{v:["Navigation öffnen"]}}},{l:"de-DE",t:{"Close navigation":{v:["Navigation schließen"]},"Open navigation":{v:["Navigation öffnen"]}}},{l:"el",t:{"Close navigation":{v:["Κλείσιμο πλοήγησης"]},"Open navigation":{v:["Άνοιγμα πλοήγησης"]}}},{l:"en-GB",t:{"Close navigation":{v:["Close navigation"]},"Open navigation":{v:["Open navigation"]}}},{l:"eo",t:{}},{l:"es",t:{"Close navigation":{v:["Cerrar navegación"]},"Open navigation":{v:["Abrir navegación"]}}},{l:"es-AR",t:{"Close navigation":{v:["Cerrar navegación"]},"Open navigation":{v:["Abrir navegación"]}}},{l:"es-EC",t:{"Close navigation":{v:["Cerrar navegación"]},"Open navigation":{v:["Abrir navegación"]}}},{l:"es-MX",t:{"Close navigation":{v:["Cerrar navegación"]},"Open navigation":{v:["Abrir navegación"]}}},{l:"et-EE",t:{"Close navigation":{v:["Sulge navigatsioon"]},"Open navigation":{v:["Ava liikumisvaade"]}}},{l:"eu",t:{"Close navigation":{v:["Itxi nabigazioa"]},"Open navigation":{v:["Ireki nabigazioa"]}}},{l:"fa",t:{"Close navigation":{v:["بستن بخش ناوبری"]},"Open navigation":{v:["باز کردن بخش ناوبری"]}}},{l:"fi",t:{"Close navigation":{v:["Sulje navigaatio"]}}},{l:"fr",t:{"Close navigation":{v:["Fermer la navigation"]},"Open navigation":{v:["Ouvrir la navigation"]}}},{l:"ga",t:{"Close navigation":{v:["Dún nascleanúint"]},"Open navigation":{v:["Oscail nascleanúint"]}}},{l:"gl",t:{"Close navigation":{v:["Pechar a navegación"]},"Open navigation":{v:["Abrir a navegación"]}}},{l:"he",t:{"Close navigation":{v:["סגירת הניווט"]},"Open navigation":{v:["פתיחת ניווט"]}}},{l:"hr",t:{"Close navigation":{v:["Zatvori navigaciju"]},"Open navigation":{v:["Otvori navigaciju"]}}},{l:"hu",t:{"Close navigation":{v:["Navigáció bezárása"]},"Open navigation":{v:["Navigáció megnyitása"]}}},{l:"id",t:{"Close navigation":{v:["Tutup navigasi"]},"Open navigation":{v:["Buka navigasi"]}}},{l:"is",t:{"Close navigation":{v:["Loka leiðsagnarsleða"]}}},{l:"it",t:{"Close navigation":{v:["Chiudi la navigazione"]},"Open navigation":{v:["Apri la navigazione"]}}},{l:"ja",t:{"Close navigation":{v:["ナビゲーションを閉じる"]},"Open navigation":{v:["ナビゲーションを開く"]}}},{l:"ja-JP",t:{"Close navigation":{v:["ナビゲーションを閉じる"]},"Open navigation":{v:["ナビゲーションを開く"]}}},{l:"ko",t:{"Close navigation":{v:["탐색 닫기"]},"Open navigation":{v:["탐색 열기"]}}},{l:"lo",t:{"Close navigation":{v:["ປິດການນຳທາງ"]},"Open navigation":{v:["ເປີດການນຳທາງ"]}}},{l:"lt-LT",t:{"Close navigation":{v:["Užverti naršymą"]},"Open navigation":{v:["Atverti naršymą"]}}},{l:"lv",t:{}},{l:"mk",t:{"Close navigation":{v:["Затвори навигација"]},"Open navigation":{v:["Отвори навигација"]}}},{l:"mn",t:{"Close navigation":{v:["Навигацийг хаах"]},"Open navigation":{v:["Навигацийг нээх"]}}},{l:"my",t:{}},{l:"nb",t:{"Close navigation":{v:["Lukk navigasjon"]},"Open navigation":{v:["Åpne navigasjon"]}}},{l:"nl",t:{"Close navigation":{v:["Navigatie sluiten"]},"Open navigation":{v:["Navigatie openen"]}}},{l:"oc",t:{}},{l:"pl",t:{"Close navigation":{v:["Zamknij nawigację"]}}},{l:"pt-BR",t:{"Close navigation":{v:["Fechar navegação"]},"Open navigation":{v:["Abrir navegação"]}}},{l:"pt-PT",t:{"Close navigation":{v:["Fechar navegação"]},"Open navigation":{v:["Abrir navegação"]}}},{l:"ro",t:{"Close navigation":{v:["Închideți navigarea"]},"Open navigation":{v:["Deschideți navigația"]}}},{l:"ru",t:{"Close navigation":{v:["Закрыть навигацию"]},"Open navigation":{v:["Открыть навигацию"]}}},{l:"sk",t:{"Close navigation":{v:["Zavrieť navigáciu"]}}},{l:"sl",t:{"Close navigation":{v:["Zapri krmarjenje"]},"Open navigation":{v:["Odpri krmarjenje"]}}},{l:"sr",t:{"Close navigation":{v:["Затвори навигацију"]},"Open navigation":{v:["Отвори навигацију"]}}},{l:"sv",t:{"Close navigation":{v:["Stäng navigering"]},"Open navigation":{v:["Öppna navigering"]}}},{l:"tr",t:{"Close navigation":{v:["Gezinmeyi kapat"]},"Open navigation":{v:["Gezinmeyi aç"]}}},{l:"uk",t:{"Close navigation":{v:["Закрити навігацію"]},"Open navigation":{v:["Перейти до навігації"]}}},{l:"uz",t:{"Close navigation":{v:["Navigatsiyani yopish"]},"Open navigation":{v:["Navigatsiyani oching"]}}},{l:"zh-CN",t:{"Close navigation":{v:["关闭导航"]}}},{l:"zh-HK",t:{"Close navigation":{v:["關閉導航"]},"Open navigation":{v:["開啟導航"]}}},{l:"zh-TW",t:{"Close navigation":{v:["關閉導航"]},"Open navigation":{v:["開啟導航"]}}}],e2=[{l:"ar",t:{"Collapse menu":{v:["طي القائمة"]},"Open menu":{v:["إفتَح القائمة"]}}},{l:"ast",t:{"Collapse menu":{v:["Recoyer el menú"]},"Open menu":{v:["Abrir le menú"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"Collapse menu":{v:["Sbalit nabídku"]},"Open menu":{v:["Otevřít nabídku"]}}},{l:"cs-CZ",t:{"Collapse menu":{v:["Sbalit nabídku"]},"Open menu":{v:["Otevřít nabídku"]}}},{l:"da",t:{"Collapse menu":{v:["Skjul menuen"]},"Open menu":{v:["Åben menu"]}}},{l:"de",t:{"Collapse menu":{v:["Menü einklappen"]},"Open menu":{v:["Menü öffnen"]}}},{l:"de-DE",t:{"Collapse menu":{v:["Menü einklappen"]},"Open menu":{v:["Menü öffnen"]}}},{l:"el",t:{"Collapse menu":{v:["Σύμπτυξη μενού"]},"Open menu":{v:["Άνοιγμα μενού"]}}},{l:"en-GB",t:{"Collapse menu":{v:["Collapse menu"]},"Open menu":{v:["Open menu"]}}},{l:"eo",t:{}},{l:"es",t:{"Collapse menu":{v:["Ocultar menú"]},"Open menu":{v:["Abrir menú"]}}},{l:"es-AR",t:{"Collapse menu":{v:["Ocultar menú"]},"Open menu":{v:["Abrir menú"]}}},{l:"es-EC",t:{"Collapse menu":{v:["Ocultar menú"]},"Open menu":{v:["Abrir menú"]}}},{l:"es-MX",t:{"Collapse menu":{v:["Ocultar menú"]},"Open menu":{v:["Abrir menú"]}}},{l:"et-EE",t:{"Collapse menu":{v:["Ahenda menüü"]},"Open menu":{v:["Ava menüü"]}}},{l:"eu",t:{"Collapse menu":{v:["Tolestu menua"]},"Open menu":{v:["Ireki menua"]}}},{l:"fa",t:{"Collapse menu":{v:["بستن فهرست"]},"Open menu":{v:["باز کردن فهرست"]}}},{l:"fi",t:{"Collapse menu":{v:["Supista valikko"]},"Open menu":{v:["Avaa valikko"]}}},{l:"fr",t:{"Collapse menu":{v:["Réduire le menu"]},"Open menu":{v:["Ouvrir le menu"]}}},{l:"ga",t:{"Collapse menu":{v:["Roghchlár Laghdaigh"]},"Open menu":{v:["Roghchlár a oscailt"]}}},{l:"gl",t:{"Collapse menu":{v:["Contraer o menú"]},"Open menu":{v:["Abrir o menú"]}}},{l:"he",t:{"Collapse menu":{v:["צמצום התפריט"]},"Open menu":{v:["פתיחת תפריט"]}}},{l:"hr",t:{"Collapse menu":{v:["Sakrij izbornik"]},"Open menu":{v:["Otvori izbornik"]}}},{l:"hu",t:{"Collapse menu":{v:["Menü összecsukása"]},"Open menu":{v:["Menü megnyitása"]}}},{l:"id",t:{"Collapse menu":{v:["Ciutkan menu"]},"Open menu":{v:["Buka menu"]}}},{l:"is",t:{"Collapse menu":{v:["Fella valmynd saman"]},"Open menu":{v:["Opna valmynd"]}}},{l:"it",t:{"Collapse menu":{v:["Chiudi Menu"]},"Open menu":{v:["Apri il menu"]}}},{l:"ja",t:{"Collapse menu":{v:["メニューの折りたたみ"]},"Open menu":{v:["メニューを開く"]}}},{l:"ja-JP",t:{"Collapse menu":{v:["メニューの折りたたみ"]},"Open menu":{v:["メニューを開く"]}}},{l:"ko",t:{"Collapse menu":{v:["메뉴 접기"]},"Open menu":{v:["메뉴 열기"]}}},{l:"lo",t:{"Collapse menu":{v:["ຫຍໍ້ເມນູ"]},"Open menu":{v:["ເປີດເມນູ"]}}},{l:"lt-LT",t:{"Collapse menu":{v:["Suskleisti meniu"]},"Open menu":{v:["Atverti meniu"]}}},{l:"lv",t:{}},{l:"mk",t:{"Collapse menu":{v:["Скриј мени"]},"Open menu":{v:["Отвори мени"]}}},{l:"mn",t:{"Collapse menu":{v:["Цэсийг хураах"]},"Open menu":{v:["Цэсийг нээх"]}}},{l:"my",t:{}},{l:"nb",t:{"Collapse menu":{v:["Skjul meny"]},"Open menu":{v:["Åpne meny"]}}},{l:"nl",t:{"Collapse menu":{v:["Menu inklappen"]},"Open menu":{v:["Menu openen"]}}},{l:"oc",t:{}},{l:"pl",t:{"Collapse menu":{v:["Zwiń menu"]},"Open menu":{v:["Otwórz menu"]}}},{l:"pt-BR",t:{"Collapse menu":{v:["Recolher menu"]},"Open menu":{v:["Abrir menu"]}}},{l:"pt-PT",t:{"Collapse menu":{v:["Ocultar menu"]},"Open menu":{v:["Abrir menu"]}}},{l:"ro",t:{"Collapse menu":{v:["Restrânge meniul"]},"Open menu":{v:["Deschide meniul"]}}},{l:"ru",t:{"Collapse menu":{v:["Свернуть меню"]},"Open menu":{v:["Открыть меню"]}}},{l:"sk",t:{"Collapse menu":{v:["Zbaliť menu"]},"Open menu":{v:["Otvoriť menu"]}}},{l:"sl",t:{}},{l:"sr",t:{"Collapse menu":{v:["Сажми мени"]},"Open menu":{v:["Отвори мени"]}}},{l:"sv",t:{"Collapse menu":{v:["Dölj menyn"]},"Open menu":{v:["Öppna menyn"]}}},{l:"tr",t:{"Collapse menu":{v:["Menüyü daralt"]},"Open menu":{v:["Menüyü aç"]}}},{l:"uk",t:{"Collapse menu":{v:["Згорнути меню"]},"Open menu":{v:["Відкрити меню"]}}},{l:"uz",t:{"Collapse menu":{v:["Menyuni yig‘ish"]},"Open menu":{v:["Menyuni oching"]}}},{l:"zh-CN",t:{"Collapse menu":{v:["收起菜单"]},"Open menu":{v:["打开菜单"]}}},{l:"zh-HK",t:{"Collapse menu":{v:["折疊選單"]},"Open menu":{v:["開啟選單"]}}},{l:"zh-TW",t:{"Collapse menu":{v:["折疊選單"]},"Open menu":{v:["開啟選單"]}}}],t2=[{l:"ar",t:{"Edit item":{v:["تعديل عنصر"]}}},{l:"ast",t:{"Edit item":{v:["Editar l'elementu"]}}},{l:"br",t:{}},{l:"ca",t:{"Edit item":{v:["Edita l'element"]}}},{l:"cs",t:{"Edit item":{v:["Upravit položku"]}}},{l:"cs-CZ",t:{"Edit item":{v:["Upravit položku"]}}},{l:"da",t:{"Edit item":{v:["Rediger emne"]}}},{l:"de",t:{"Edit item":{v:["Element bearbeiten"]}}},{l:"de-DE",t:{"Edit item":{v:["Element bearbeiten"]}}},{l:"el",t:{"Edit item":{v:["Επεξεργασία αντικειμένου"]}}},{l:"en-GB",t:{"Edit item":{v:["Edit item"]}}},{l:"eo",t:{}},{l:"es",t:{"Edit item":{v:["Editar elemento"]}}},{l:"es-AR",t:{"Edit item":{v:["Editar elemento"]}}},{l:"es-EC",t:{"Edit item":{v:["Editar elemento"]}}},{l:"es-MX",t:{"Edit item":{v:["Editar elemento"]}}},{l:"et-EE",t:{"Edit item":{v:["Muuda objekti"]}}},{l:"eu",t:{"Edit item":{v:["Editatu elementua"]}}},{l:"fa",t:{"Edit item":{v:["ویرایش مورد"]}}},{l:"fi",t:{"Edit item":{v:["Muokkaa kohdetta"]}}},{l:"fr",t:{"Edit item":{v:["Éditer l'élément"]}}},{l:"ga",t:{"Edit item":{v:["Cuir mír in eagar"]}}},{l:"gl",t:{"Edit item":{v:["Editar o elemento"]}}},{l:"he",t:{"Edit item":{v:["עריכת פריט"]}}},{l:"hr",t:{"Edit item":{v:["Uredi stavku"]}}},{l:"hu",t:{"Edit item":{v:["Elem szerkesztése"]}}},{l:"id",t:{"Edit item":{v:["Edit item"]}}},{l:"is",t:{"Edit item":{v:["Breyta atriði"]}}},{l:"it",t:{"Edit item":{v:["Modifica l'elemento"]}}},{l:"ja",t:{"Edit item":{v:["編集"]}}},{l:"ja-JP",t:{"Edit item":{v:["編集"]}}},{l:"ko",t:{"Edit item":{v:["항목 수정"]}}},{l:"lo",t:{"Edit item":{v:["ແກ້ໄຂລາຍການ"]}}},{l:"lt-LT",t:{"Edit item":{v:["Taisyti elementą"]}}},{l:"lv",t:{}},{l:"mk",t:{"Edit item":{v:["Уреди"]}}},{l:"mn",t:{"Edit item":{v:["Зүйлийг засварлах"]}}},{l:"my",t:{}},{l:"nb",t:{"Edit item":{v:["Rediger"]}}},{l:"nl",t:{"Edit item":{v:["Item bewerken"]}}},{l:"oc",t:{}},{l:"pl",t:{"Edit item":{v:["Edytuj element"]}}},{l:"pt-BR",t:{"Edit item":{v:["Editar item"]}}},{l:"pt-PT",t:{"Edit item":{v:["Editar item"]}}},{l:"ro",t:{"Edit item":{v:["Editați elementul"]}}},{l:"ru",t:{"Edit item":{v:["Изменить элемент"]}}},{l:"sk",t:{"Edit item":{v:["Upraviť položku"]}}},{l:"sl",t:{"Edit item":{v:["Uredi predmet"]}}},{l:"sr",t:{"Edit item":{v:["Уреди ставку"]}}},{l:"sv",t:{"Edit item":{v:["Redigera objekt"]}}},{l:"tr",t:{"Edit item":{v:["Ögeyi düzenle"]}}},{l:"uk",t:{"Edit item":{v:["Редагувати елемент"]}}},{l:"uz",t:{"Edit item":{v:["Elementni tahrirlash"]}}},{l:"zh-CN",t:{"Edit item":{v:["编辑项目"]}}},{l:"zh-HK",t:{"Edit item":{v:["編輯項目"]}}},{l:"zh-TW",t:{"Edit item":{v:["編輯項目"]}}}],u2=[{l:"ar",t:{}},{l:"ast",t:{}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"External documentation":{v:["Externí dokumentace"]}}},{l:"cs-CZ",t:{}},{l:"da",t:{"External documentation":{v:["Ekstern dokumentation"]}}},{l:"de",t:{"External documentation":{v:["Externe Dokumentation"]}}},{l:"de-DE",t:{"External documentation":{v:["Externe Dokumentation"]}}},{l:"el",t:{"External documentation":{v:["Εξωτερική τεκμηρίωση"]}}},{l:"en-GB",t:{"External documentation":{v:["External documentation"]}}},{l:"eo",t:{}},{l:"es",t:{}},{l:"es-AR",t:{}},{l:"es-EC",t:{}},{l:"es-MX",t:{}},{l:"et-EE",t:{"External documentation":{v:["Dokumentatsioon välises allikas"]}}},{l:"eu",t:{}},{l:"fa",t:{}},{l:"fi",t:{}},{l:"fr",t:{"External documentation":{v:["Documentation externe"]}}},{l:"ga",t:{"External documentation":{v:["Doiciméadú seachtrach"]}}},{l:"gl",t:{"External documentation":{v:["Documentación externa"]}}},{l:"he",t:{}},{l:"hr",t:{"External documentation":{v:["Vanjska dokumentacija"]}}},{l:"hu",t:{"External documentation":{v:["Külső dokumentáció"]}}},{l:"id",t:{"External documentation":{v:["Dokumentasi eksternal"]}}},{l:"is",t:{}},{l:"it",t:{}},{l:"ja",t:{"External documentation":{v:["外部ドキュメント"]}}},{l:"ja-JP",t:{}},{l:"ko",t:{"External documentation":{v:["외부 문서"]}}},{l:"lo",t:{"External documentation":{v:["ເອກະສານພາຍນອກ"]}}},{l:"lt-LT",t:{"External documentation":{v:["Išorinė dokumentacija"]}}},{l:"lv",t:{}},{l:"mk",t:{"External documentation":{v:["Надворешна документација"]}}},{l:"mn",t:{"External documentation":{v:["Гадаад баримт бичиг"]}}},{l:"my",t:{}},{l:"nb",t:{}},{l:"nl",t:{"External documentation":{v:["Externe documentatie"]}}},{l:"oc",t:{}},{l:"pl",t:{}},{l:"pt-BR",t:{"External documentation":{v:["Documentação externa"]}}},{l:"pt-PT",t:{}},{l:"ro",t:{}},{l:"ru",t:{"External documentation":{v:["Внешняя документация"]}}},{l:"sk",t:{}},{l:"sl",t:{}},{l:"sr",t:{"External documentation":{v:["Спољна документација"]}}},{l:"sv",t:{"External documentation":{v:["Extern dokumentation"]}}},{l:"tr",t:{"External documentation":{v:["Dış belgeler"]}}},{l:"uk",t:{"External documentation":{v:["Зовнішня документація"]}}},{l:"uz",t:{"External documentation":{v:["Tashqi hujjatlar"]}}},{l:"zh-CN",t:{}},{l:"zh-HK",t:{"External documentation":{v:["外部文件"]}}},{l:"zh-TW",t:{"External documentation":{v:["外部文件"]}}}],s2=[{l:"ar",t:{"Go back to the list":{v:["عودة إلى القائمة"]}}},{l:"ast",t:{"Go back to the list":{v:["Volver a la llista"]}}},{l:"br",t:{}},{l:"ca",t:{"Go back to the list":{v:["Torna a la llista"]}}},{l:"cs",t:{"Go back to the list":{v:["Jít zpět na seznam"]}}},{l:"cs-CZ",t:{"Go back to the list":{v:["Jít zpět na seznam"]}}},{l:"da",t:{"Go back to the list":{v:["Tilbage til listen"]}}},{l:"de",t:{"Go back to the list":{v:["Zurück zur Liste"]}}},{l:"de-DE",t:{"Go back to the list":{v:["Zurück zur Liste"]}}},{l:"el",t:{"Go back to the list":{v:["Επιστροφή στην αρχική λίστα"]}}},{l:"en-GB",t:{"Go back to the list":{v:["Go back to the list"]}}},{l:"eo",t:{}},{l:"es",t:{"Go back to the list":{v:["Volver a la lista"]}}},{l:"es-AR",t:{"Go back to the list":{v:["Volver a la lista"]}}},{l:"es-EC",t:{"Go back to the list":{v:["Volver a la lista"]}}},{l:"es-MX",t:{"Go back to the list":{v:["Regresar a la lista"]}}},{l:"et-EE",t:{"Go back to the list":{v:["Tagasi nimekirja juurde"]}}},{l:"eu",t:{"Go back to the list":{v:["Bueltatu zerrendara"]}}},{l:"fa",t:{"Go back to the list":{v:["برگشت به لیست"]}}},{l:"fi",t:{"Go back to the list":{v:["Takaisin listaan"]}}},{l:"fr",t:{"Go back to the list":{v:["Retourner à la liste"]}}},{l:"ga",t:{"Go back to the list":{v:["Téigh ar ais go dtí an liosta"]}}},{l:"gl",t:{"Go back to the list":{v:["Volver á lista"]}}},{l:"he",t:{"Go back to the list":{v:["חזרה לרשימה"]}}},{l:"hr",t:{"Go back to the list":{v:["Vrati se na popis"]}}},{l:"hu",t:{"Go back to the list":{v:["Ugrás vissza a listához"]}}},{l:"id",t:{"Go back to the list":{v:["Kembali ke daftar"]}}},{l:"is",t:{"Go back to the list":{v:["Fara til baka í listann"]}}},{l:"it",t:{"Go back to the list":{v:["Torna all'elenco"]}}},{l:"ja",t:{"Go back to the list":{v:["リストに戻る"]}}},{l:"ja-JP",t:{"Go back to the list":{v:["リストに戻る"]}}},{l:"ko",t:{"Go back to the list":{v:["목록으로 돌아가기"]}}},{l:"lo",t:{"Go back to the list":{v:["ກັບໄປທີ່ລາຍການ"]}}},{l:"lt-LT",t:{"Go back to the list":{v:["Grįžti į sąrašą"]}}},{l:"lv",t:{}},{l:"mk",t:{"Go back to the list":{v:["Врати се на листата"]}}},{l:"mn",t:{"Go back to the list":{v:["Жагсаалт руу буцах"]}}},{l:"my",t:{}},{l:"nb",t:{"Go back to the list":{v:["Gå tilbake til listen"]}}},{l:"nl",t:{"Go back to the list":{v:["Ga terug naar de lijst"]}}},{l:"oc",t:{}},{l:"pl",t:{"Go back to the list":{v:["Powrót do listy"]}}},{l:"pt-BR",t:{"Go back to the list":{v:["Voltar para a lista"]}}},{l:"pt-PT",t:{"Go back to the list":{v:["Voltar para a lista"]}}},{l:"ro",t:{"Go back to the list":{v:["Întoarceți-vă la listă"]}}},{l:"ru",t:{"Go back to the list":{v:["Вернуться к списку"]}}},{l:"sk",t:{"Go back to the list":{v:["Späť na zoznam"]}}},{l:"sl",t:{"Go back to the list":{v:["Vrni se na seznam"]}}},{l:"sr",t:{"Go back to the list":{v:["Назад на листу"]}}},{l:"sv",t:{"Go back to the list":{v:["Gå tillbaka till listan"]}}},{l:"tr",t:{"Go back to the list":{v:["Listeye dön"]}}},{l:"uk",t:{"Go back to the list":{v:["Повернутися до списку"]}}},{l:"uz",t:{"Go back to the list":{v:["Ro'yxatga qayting"]}}},{l:"zh-CN",t:{"Go back to the list":{v:["返回至列表"]}}},{l:"zh-HK",t:{"Go back to the list":{v:["返回清單"]}}},{l:"zh-TW",t:{"Go back to the list":{v:["回到清單"]}}}],n2=[{l:"ar",t:{"Keyboard navigation help":{v:["مساعدة في التنقل باستعمال لوحة المفاتيح"]},"Skip to app navigation":{v:["تجاوَز إلى التنقل في التطبيق"]},"Skip to main content":{v:["تجاوَز إلى المحتوى الرئيسي"]}}},{l:"ast",t:{"Keyboard navigation help":{v:["Ayuda de la navegación pente'l tecláu"]},"Skip to app navigation":{v:["Dir a la navegación d'aplicaciones"]},"Skip to main content":{v:["Dir al conteníu principal"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"Keyboard navigation help":{v:["Nápověda pro pohyb pomocí klávesnice"]},"Skip to app navigation":{v:["Přeskočit na navigaci aplikace"]},"Skip to main content":{v:["Přeskočit na hlavní obsah"]}}},{l:"cs-CZ",t:{"Keyboard navigation help":{v:["Nápověda pro pohyb pomocí klávesnice"]},"Skip to app navigation":{v:["Přeskočit na navigaci aplikace"]},"Skip to main content":{v:["Přeskočit na hlavní obsah"]}}},{l:"da",t:{"Keyboard navigation help":{v:["Hjælp til tastaturnavigation"]},"Skip to app navigation":{v:["Spring til app navigation"]},"Skip to main content":{v:["Spring til hovedindhold"]}}},{l:"de",t:{"Keyboard navigation help":{v:["Tastatur-Navigationshilfe"]},"Skip to app navigation":{v:["Zur App-Navigation springen"]},"Skip to main content":{v:["Zum Hauptinhalt springen"]}}},{l:"de-DE",t:{"Keyboard navigation help":{v:["Tastatur-Navigationshilfe"]},"Skip to app navigation":{v:["Zur App-Navigation springen"]},"Skip to main content":{v:["Zum Hauptinhalt springen"]}}},{l:"el",t:{"Keyboard navigation help":{v:["Βοήθεια πλοήγησης με πληκτρολόγιο"]},"Skip to app navigation":{v:["Μετάβαση στην πλοήγηση της εφαρμογής"]},"Skip to main content":{v:["Μετάβαση στο κύριο περιεχόμενο"]}}},{l:"en-GB",t:{"Keyboard navigation help":{v:["Keyboard navigation help"]},"Skip to app navigation":{v:["Skip to app navigation"]},"Skip to main content":{v:["Skip to main content"]}}},{l:"eo",t:{}},{l:"es",t:{"Keyboard navigation help":{v:["Ayuda de navegación del teclado"]},"Skip to app navigation":{v:["Saltar a la navegación de apps"]},"Skip to main content":{v:["Saltar al contenido principal"]}}},{l:"es-AR",t:{"Keyboard navigation help":{v:["Ayuda de navegación del teclado"]},"Skip to app navigation":{v:["Saltar a la navegación de app"]},"Skip to main content":{v:["Saltar al contenido principal"]}}},{l:"es-EC",t:{}},{l:"es-MX",t:{"Keyboard navigation help":{v:["Ayuda de navegación del teclado"]},"Skip to app navigation":{v:["Saltar a la navegación de app"]},"Skip to main content":{v:["Saltar al contenido principal"]}}},{l:"et-EE",t:{"Keyboard navigation help":{v:["Klahvistiku kasutuse abiteave"]},"Skip to app navigation":{v:["Suundu rakenduses liikumise valikute juurde"]},"Skip to main content":{v:["Suundu põhisisu juurde"]}}},{l:"eu",t:{}},{l:"fa",t:{"Keyboard navigation help":{v:["راهنمای ناوبری صفحه کلید"]},"Skip to app navigation":{v:["رفتن به پیمایش برنامه"]},"Skip to main content":{v:["رفتن به محتوای اصلی"]}}},{l:"fi",t:{"Keyboard navigation help":{v:["Näppäimistönavigoinnin ohje"]},"Skip to app navigation":{v:["Siirry sovelluksen navigaatioon"]},"Skip to main content":{v:["Siirry pääsisältöön"]}}},{l:"fr",t:{"Keyboard navigation help":{v:["Aide à la navigation du clavier"]},"Skip to app navigation":{v:["Passer à l'app navigation"]},"Skip to main content":{v:["Passer au contenu principal"]}}},{l:"ga",t:{"Keyboard navigation help":{v:["Cabhair le nascleanúint méarchláir"]},"Skip to app navigation":{v:["Téigh ar aghaidh chuig nascleanúint aip"]},"Skip to main content":{v:["Téigh ar aghaidh chuig an bpríomhábhar"]}}},{l:"gl",t:{"Keyboard navigation help":{v:["Axuda á navegación co teclado"]},"Skip to app navigation":{v:["Ir á navegación da aplicación"]},"Skip to main content":{v:["Ir ao contido principal"]}}},{l:"he",t:{}},{l:"hr",t:{"Keyboard navigation help":{v:["Pomoć za navigaciju tipkovnicom"]},"Skip to app navigation":{v:["Preskoči na navigaciju aplikacije"]},"Skip to main content":{v:["Preskoči na glavni sadržaj"]}}},{l:"hu",t:{"Keyboard navigation help":{v:["Billentyűzetes navigáció súgója"]},"Skip to app navigation":{v:["Ugrás az alkalmazásnavigációhoz"]},"Skip to main content":{v:["Ugrás a fő tartalomhoz"]}}},{l:"id",t:{"Keyboard navigation help":{v:["Bantuan navigasi keyboard"]},"Skip to app navigation":{v:["Lewati ke navigasi aplikasi"]},"Skip to main content":{v:["Lewati ke konten utama"]}}},{l:"is",t:{"Keyboard navigation help":{v:["Aðstoð við rötun á lyklaborði"]},"Skip to app navigation":{v:["Sleppa og fara í flakk innan forrits"]},"Skip to main content":{v:["Sleppa og fara í meginefni"]}}},{l:"it",t:{}},{l:"ja",t:{"Keyboard navigation help":{v:["キーボード・ナビゲーション・ヘルプ"]},"Skip to app navigation":{v:["アプリのナビゲーションへ移動"]},"Skip to main content":{v:["メインコンテンツへ移動"]}}},{l:"ja-JP",t:{"Keyboard navigation help":{v:["キーボード・ナビゲーション・ヘルプ"]},"Skip to app navigation":{v:["アプリのナビゲーションへ移動"]},"Skip to main content":{v:["メインコンテンツへ移動"]}}},{l:"ko",t:{"Keyboard navigation help":{v:["키보드 탐색 도움말"]},"Skip to app navigation":{v:["앱 탐색으로 건너뛰기"]},"Skip to main content":{v:["본 내용으로 건너뛰기"]}}},{l:"lo",t:{"Keyboard navigation help":{v:["ການຊ່ວຍເຫຼືອການນຳທາງດ້ວຍຄີບອດ"]},"Skip to app navigation":{v:["ຂ້າມໄປທີ່ການນຳທາງຂອງແອັບ"]},"Skip to main content":{v:["ຂ້າມໄປທີ່ເນື້ອຫາຫຼັກ"]}}},{l:"lt-LT",t:{"Keyboard navigation help":{v:["Klaviatūros navigacijos pagalba"]},"Skip to app navigation":{v:["Pereiti prie programėlės naršymo"]},"Skip to main content":{v:["Pereiti prie pagrindinio turinio"]}}},{l:"lv",t:{}},{l:"mk",t:{"Keyboard navigation help":{v:["Навигација со тастатура"]},"Skip to app navigation":{v:["Прескокни на навигација на апликацијата"]},"Skip to main content":{v:["Прескокни на главна содржина"]}}},{l:"mn",t:{"Keyboard navigation help":{v:["Гарын навигацийн тусламж"]},"Skip to app navigation":{v:["Аппын навигаци руу алгасах"]},"Skip to main content":{v:["Үндсэн агуулга руу алгасах"]}}},{l:"my",t:{}},{l:"nb",t:{"Keyboard navigation help":{v:["Hjelp for tastaturnavigering"]},"Skip to app navigation":{v:["Hopp til appnavigering"]},"Skip to main content":{v:["Hopp til hovedinnhold"]}}},{l:"nl",t:{"Keyboard navigation help":{v:["Hulp voor toetsenbordnavigatie"]},"Skip to app navigation":{v:["Doorgaan naar app-navigatie"]},"Skip to main content":{v:["Naar hoofdinhoud gaan"]}}},{l:"oc",t:{}},{l:"pl",t:{"Keyboard navigation help":{v:["Pomoc w nawigacji za pomocą klawiatury"]},"Skip to app navigation":{v:["Przewiń do nawigacji"]},"Skip to main content":{v:["Przewiń do głównych treści"]}}},{l:"pt-BR",t:{"Keyboard navigation help":{v:["Ajuda para navegação pelo teclado"]},"Skip to app navigation":{v:["Ir para navegação de aplicativo"]},"Skip to main content":{v:["Ir para conteúdo principal"]}}},{l:"pt-PT",t:{"Keyboard navigation help":{v:["Ajuda à navegação no teclado"]},"Skip to app navigation":{v:["Saltar para navegação da app"]},"Skip to main content":{v:["Saltar para conteúdo principal"]}}},{l:"ro",t:{}},{l:"ru",t:{"Keyboard navigation help":{v:["Справка по навигации с помощью клавиатуры"]},"Skip to app navigation":{v:["Перейти к навигации по приложению"]},"Skip to main content":{v:["Перейти к основному содержанию"]}}},{l:"sk",t:{"Keyboard navigation help":{v:["Pomoc pri navigácii pomocou klávesnice"]},"Skip to app navigation":{v:["Preskočiť na navigáciu v aplikácii"]},"Skip to main content":{v:["Preskočiť na hlavný obsah"]}}},{l:"sl",t:{}},{l:"sr",t:{"Keyboard navigation help":{v:["Помоћ за навигацију тастатуром"]},"Skip to app navigation":{v:["Прескочи на навигацију апликацијом"]},"Skip to main content":{v:["Прескочи на главни садржај"]}}},{l:"sv",t:{"Keyboard navigation help":{v:["Hjälp med tangentbordsnavigering"]},"Skip to app navigation":{v:["Hoppa till appnavigering"]},"Skip to main content":{v:["Hoppa till huvudinnehåll"]}}},{l:"tr",t:{"Keyboard navigation help":{v:["Klavye ile gezinme yardımı"]},"Skip to app navigation":{v:["Uygulama gezinmesine git"]},"Skip to main content":{v:["Ana içeriğe git"]}}},{l:"uk",t:{"Keyboard navigation help":{v:["Допомога з навігацією клавішами"]},"Skip to app navigation":{v:["Пропустити навігацію по застосунках"]},"Skip to main content":{v:["Перейти одразу до головного вмісту"]}}},{l:"uz",t:{"Keyboard navigation help":{v:["Klaviatura navigatsiyasi yordami"]},"Skip to app navigation":{v:["Ilova navigatsiyasiga oʻtish"]},"Skip to main content":{v:["Asosiy tarkibga o'tish"]}}},{l:"zh-CN",t:{"Keyboard navigation help":{v:["键盘导航栏帮助"]},"Skip to app navigation":{v:["跳转至应用程序导航页"]},"Skip to main content":{v:["跳转至主要内容"]}}},{l:"zh-HK",t:{"Keyboard navigation help":{v:["鍵盤導航幫助"]},"Skip to app navigation":{v:["跳至應用程式導航"]},"Skip to main content":{v:["跳至主要內容"]}}},{l:"zh-TW",t:{"Keyboard navigation help":{v:["鍵盤導航說明"]},"Skip to app navigation":{v:["略過應用程式導覽"]},"Skip to main content":{v:["跳至主要內容"]}}}],Jh=[{l:"ar",t:{"Loading …":{v:["التحميل جارٍ ..."]}}},{l:"ast",t:{}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"Loading …":{v:["Načítání …"]}}},{l:"cs-CZ",t:{}},{l:"da",t:{"Loading …":{v:["Indlæser ..."]}}},{l:"de",t:{"Loading …":{v:["Wird geladen …"]}}},{l:"de-DE",t:{"Loading …":{v:["Wird geladen …"]}}},{l:"el",t:{"Loading …":{v:["Φόρτωση  …"]}}},{l:"en-GB",t:{"Loading …":{v:["Loading …"]}}},{l:"eo",t:{}},{l:"es",t:{}},{l:"es-AR",t:{}},{l:"es-EC",t:{}},{l:"es-MX",t:{}},{l:"et-EE",t:{"Loading …":{v:["Laadin…"]}}},{l:"eu",t:{}},{l:"fa",t:{"Loading …":{v:["در حال بارگذاری ..."]}}},{l:"fi",t:{"Loading …":{v:["Ladataan ..."]}}},{l:"fr",t:{"Loading …":{v:["Chargement..."]}}},{l:"ga",t:{"Loading …":{v:["Ag lódáil …"]}}},{l:"gl",t:{"Loading …":{v:["Cargando…"]}}},{l:"he",t:{}},{l:"hr",t:{"Loading …":{v:["Učitavanje …"]}}},{l:"hu",t:{"Loading …":{v:["Betöltés…"]}}},{l:"id",t:{"Loading …":{v:["Memuat …"]}}},{l:"is",t:{"Loading …":{v:["Hleð inn …"]}}},{l:"it",t:{}},{l:"ja",t:{"Loading …":{v:["読み込み中 …"]}}},{l:"ja-JP",t:{}},{l:"ko",t:{"Loading …":{v:["로딩 중 ..."]}}},{l:"lo",t:{"Loading …":{v:["ກຳລັງໂຫຼດ…"]}}},{l:"lt-LT",t:{"Loading …":{v:["Įkeliama …"]}}},{l:"lv",t:{}},{l:"mk",t:{"Loading …":{v:["Вчитување …"]}}},{l:"mn",t:{"Loading …":{v:["Ачаалж байна …"]}}},{l:"my",t:{}},{l:"nb",t:{"Loading …":{v:["Laster inn..."]}}},{l:"nl",t:{"Loading …":{v:["Laden …"]}}},{l:"oc",t:{}},{l:"pl",t:{"Loading …":{v:["Wczytywanie…"]}}},{l:"pt-BR",t:{"Loading …":{v:["Carregando …"]}}},{l:"pt-PT",t:{"Loading …":{v:["A carregar..."]}}},{l:"ro",t:{}},{l:"ru",t:{"Loading …":{v:["Загрузка …"]}}},{l:"sk",t:{"Loading …":{v:["Nahrávam ..."]}}},{l:"sl",t:{}},{l:"sr",t:{"Loading …":{v:["Учитава се…"]}}},{l:"sv",t:{"Loading …":{v:["Laddar …"]}}},{l:"tr",t:{"Loading …":{v:["Yükleniyor…"]}}},{l:"uk",t:{"Loading …":{v:["Завантаження …"]}}},{l:"uz",t:{"Loading …":{v:["Yuklanmoqda..."]}}},{l:"zh-CN",t:{"Loading …":{v:["加载中..."]}}},{l:"zh-HK",t:{"Loading …":{v:["加載中 …"]}}},{l:"zh-TW",t:{"Loading …":{v:["載入中......"]}}}],Qh=[{l:"ar",t:{Next:{v:["التالي"]},"Pause slideshow":{v:["تجميد عرض الشرائح"]},Previous:{v:["السابق"]},"Start slideshow":{v:["إبدإ العرض"]}}},{l:"ast",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Posar la presentación de diapositives"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Aniciar la presentación de diapositives"]}}},{l:"br",t:{Next:{v:["Da heul"]},"Pause slideshow":{v:["Arsav an diaporama"]},Previous:{v:["A-raok"]},"Start slideshow":{v:["Kregiñ an diaporama"]}}},{l:"ca",t:{Next:{v:["Següent"]},"Pause slideshow":{v:["Atura la presentació"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Inicia la presentació"]}}},{l:"cs",t:{Next:{v:["Následující"]},"Pause slideshow":{v:["Pozastavit prezentaci"]},Previous:{v:["Předchozí"]},"Start slideshow":{v:["Spustit prezentaci"]}}},{l:"cs-CZ",t:{Next:{v:["Následující"]},"Pause slideshow":{v:["Pozastavit prezentaci"]},Previous:{v:["Předchozí"]},"Start slideshow":{v:["Spustit prezentaci"]}}},{l:"da",t:{Next:{v:["Videre"]},"Pause slideshow":{v:["Suspender fremvisning"]},Previous:{v:["Forrige"]},"Start slideshow":{v:["Start fremvisning"]}}},{l:"de",t:{Next:{v:["Weiter"]},"Pause slideshow":{v:["Diashow pausieren"]},Previous:{v:["Vorherige"]},"Start slideshow":{v:["Diashow starten"]}}},{l:"de-DE",t:{Next:{v:["Weiter"]},"Pause slideshow":{v:["Diashow pausieren"]},Previous:{v:["Vorherige"]},"Start slideshow":{v:["Diashow starten"]}}},{l:"el",t:{Next:{v:["Επόμενο"]},"Pause slideshow":{v:["Παύση προβολής διαφανειών"]},Previous:{v:["Προηγούμενο"]},"Start slideshow":{v:["Έναρξη προβολής διαφανειών"]}}},{l:"en-GB",t:{Next:{v:["Next"]},"Pause slideshow":{v:["Pause slideshow"]},Previous:{v:["Previous"]},"Start slideshow":{v:["Start slideshow"]}}},{l:"eo",t:{Next:{v:["Sekva"]},"Pause slideshow":{v:["Payzi bildprezenton"]},Previous:{v:["Antaŭa"]},"Start slideshow":{v:["Komenci bildprezenton"]}}},{l:"es",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar la presentación "]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar la presentación"]}}},{l:"es-AR",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar la presentación "]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar la presentación"]}}},{l:"es-EC",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar presentación de diapositivas"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar presentación de diapositivas"]}}},{l:"es-MX",t:{Next:{v:["Siguiente"]},"Pause slideshow":{v:["Pausar presentación de diapositivas"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar presentación de diapositivas"]}}},{l:"et-EE",t:{Next:{v:["Edasi"]},"Pause slideshow":{v:["Slaidiesitluse paus"]},Previous:{v:["Eelmine"]},"Start slideshow":{v:["Alusta slaidiesitust"]}}},{l:"eu",t:{Next:{v:["Hurrengoa"]},"Pause slideshow":{v:["Pausatu diaporama"]},Previous:{v:["Aurrekoa"]},"Start slideshow":{v:["Hasi diaporama"]}}},{l:"fa",t:{Next:{v:["بعدی"]},"Pause slideshow":{v:["توقف نمایش اسلاید"]},Previous:{v:["قبلی"]},"Start slideshow":{v:["شروع نمایش اسلاید"]}}},{l:"fi",t:{Next:{v:["Seuraava"]},"Pause slideshow":{v:["Keskeytä diaesitys"]},Previous:{v:["Edellinen"]},"Start slideshow":{v:["Aloita diaesitys"]}}},{l:"fr",t:{Next:{v:["Suivant"]},"Pause slideshow":{v:["Mettre le diaporama en pause"]},Previous:{v:["Précédent"]},"Start slideshow":{v:["Démarrer le diaporama"]}}},{l:"ga",t:{Next:{v:["Ar aghaidh"]},"Pause slideshow":{v:["Cuir taispeántas sleamhnán ar sos"]},Previous:{v:["Roimhe Seo"]},"Start slideshow":{v:["Tosaigh taispeántas sleamhnán"]}}},{l:"gl",t:{Next:{v:["Seguinte"]},"Pause slideshow":{v:["Pausar o diaporama"]},Previous:{v:["Anterir"]},"Start slideshow":{v:["Iniciar o diaporama"]}}},{l:"he",t:{Next:{v:["הבא"]},"Pause slideshow":{v:["השהיית מצגת"]},Previous:{v:["הקודם"]},"Start slideshow":{v:["התחלת המצגת"]}}},{l:"hr",t:{Next:{v:["Sljedeće"]},"Pause slideshow":{v:["Pauziraj dijaprojekciju"]},Previous:{v:["Prethodno"]},"Start slideshow":{v:["Pokreni dijaprojekciju"]}}},{l:"hu",t:{Next:{v:["Következő"]},"Pause slideshow":{v:["Diavetítés szüneteltetése"]},Previous:{v:["Előző"]},"Start slideshow":{v:["Diavetítés indítása"]}}},{l:"id",t:{Next:{v:["Selanjutnya"]},"Pause slideshow":{v:["Jeda tayangan slide"]},Previous:{v:["Sebelumnya"]},"Start slideshow":{v:["Mulai salindia"]}}},{l:"is",t:{Next:{v:["Næsta"]},"Pause slideshow":{v:["Gera hlé á skyggnusýningu"]},Previous:{v:["Fyrri"]},"Start slideshow":{v:["Byrja skyggnusýningu"]}}},{l:"it",t:{Next:{v:["Successivo"]},"Pause slideshow":{v:["Presentazione in pausa"]},Previous:{v:["Precedente"]},"Start slideshow":{v:["Avvia presentazione"]}}},{l:"ja",t:{Next:{v:["次"]},"Pause slideshow":{v:["スライドショーを一時停止"]},Previous:{v:["前"]},"Start slideshow":{v:["スライドショーを開始"]}}},{l:"ja-JP",t:{Next:{v:["次"]},"Pause slideshow":{v:["スライドショーを一時停止"]},Previous:{v:["前"]},"Start slideshow":{v:["スライドショーを開始"]}}},{l:"ko",t:{Next:{v:["다음"]},"Pause slideshow":{v:["슬라이드쇼 일시정지"]},Previous:{v:["이전"]},"Start slideshow":{v:["슬라이드쇼 시작"]}}},{l:"lo",t:{Next:{v:["ຕໍ່ໄປ"]},"Pause slideshow":{v:["ຢຸດສະໄລ້ໂຊຊົ່ວຄາວ"]},Previous:{v:["ກ່ອນໜ້າ"]},"Start slideshow":{v:["ເລີ່ມສະໄລ້ໂຊ"]}}},{l:"lt-LT",t:{Next:{v:["Kitas"]},"Pause slideshow":{v:["Pristabdyti skaidrių rodymą"]},Previous:{v:["Ankstesnis"]},"Start slideshow":{v:["Pradėti skaidrių rodymą"]}}},{l:"lv",t:{Next:{v:["Nākamais"]},"Pause slideshow":{v:["Pauzēt slaidrādi"]},Previous:{v:["Iepriekšējais"]},"Start slideshow":{v:["Sākt slaidrādi"]}}},{l:"mk",t:{Next:{v:["Следно"]},"Pause slideshow":{v:["Пузирај слајдшоу"]},Previous:{v:["Предходно"]},"Start slideshow":{v:["Стартувај слајдшоу"]}}},{l:"mn",t:{Next:{v:["Дараах"]},"Pause slideshow":{v:["Слайд шоуг түр зогсоох"]},Previous:{v:["Өмнөх"]},"Start slideshow":{v:["Слайд шоуг эхлүүлэх"]}}},{l:"my",t:{Next:{v:["နောက်သို့ဆက်ရန်"]},"Pause slideshow":{v:["စလိုက်ရှိုး ခေတ္တရပ်ရန်"]},Previous:{v:["ယခင်"]},"Start slideshow":{v:["စလိုက်ရှိုးအား စတင်ရန်"]}}},{l:"nb",t:{Next:{v:["Neste"]},"Pause slideshow":{v:["Pause lysbildefremvisning"]},Previous:{v:["Forrige"]},"Start slideshow":{v:["Start lysbildefremvisning"]}}},{l:"nl",t:{Next:{v:["Volgende"]},"Pause slideshow":{v:["Diavoorstelling pauzeren"]},Previous:{v:["Vorige"]},"Start slideshow":{v:["Diavoorstelling starten"]}}},{l:"oc",t:{Next:{v:["Seguent"]},"Pause slideshow":{v:["Metre en pausa lo diaporama"]},Previous:{v:["Precedent"]},"Start slideshow":{v:["Lançar lo diaporama"]}}},{l:"pl",t:{Next:{v:["Następny"]},"Pause slideshow":{v:["Wstrzymaj pokaz slajdów"]},Previous:{v:["Poprzedni"]},"Start slideshow":{v:["Rozpocznij pokaz slajdów"]}}},{l:"pt-BR",t:{Next:{v:["Próximo"]},"Pause slideshow":{v:["Pausar apresentação de slides"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar apresentação de slides"]}}},{l:"pt-PT",t:{Next:{v:["Seguinte"]},"Pause slideshow":{v:["Pausar diaporama"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Iniciar diaporama"]}}},{l:"ro",t:{Next:{v:["Următorul"]},"Pause slideshow":{v:["Pauză prezentare de diapozitive"]},Previous:{v:["Anterior"]},"Start slideshow":{v:["Începeți prezentarea de diapozitive"]}}},{l:"ru",t:{Next:{v:["Следующее"]},"Pause slideshow":{v:["Приостановить показ слйдов"]},Previous:{v:["Предыдущее"]},"Start slideshow":{v:["Начать показ слайдов"]}}},{l:"sk",t:{Next:{v:["Ďalej"]},"Pause slideshow":{v:["Pozastaviť prezentáciu"]},Previous:{v:["Predchádzajúce"]},"Start slideshow":{v:["Začať prezentáciu"]}}},{l:"sl",t:{Next:{v:["Naslednji"]},"Pause slideshow":{v:["Ustavi predstavitev"]},Previous:{v:["Predhodni"]},"Start slideshow":{v:["Začni predstavitev"]}}},{l:"sr",t:{Next:{v:["Следеће"]},"Pause slideshow":{v:["Паузирај слајд шоу"]},Previous:{v:["Претходно"]},"Start slideshow":{v:["Покрени слајд шоу"]}}},{l:"sv",t:{Next:{v:["Nästa"]},"Pause slideshow":{v:["Pausa bildspelet"]},Previous:{v:["Föregående"]},"Start slideshow":{v:["Starta bildspelet"]}}},{l:"tr",t:{Next:{v:["Sonraki"]},"Pause slideshow":{v:["Slayt sunumunu duraklat"]},Previous:{v:["Önceki"]},"Start slideshow":{v:["Slayt sunumunu başlat"]}}},{l:"uk",t:{Next:{v:["Вперед"]},"Pause slideshow":{v:["Пауза у показі слайдів"]},Previous:{v:["Назад"]},"Start slideshow":{v:["Почати показ слайдів"]}}},{l:"uz",t:{Next:{v:["Keyingi"]},"Pause slideshow":{v:["Slayd-shouni to'xtatib turish"]},Previous:{v:["Oldingi"]},"Start slideshow":{v:["Slayd-shouni boshlash"]}}},{l:"zh-CN",t:{Next:{v:["下一个"]},"Pause slideshow":{v:["暂停幻灯片"]},Previous:{v:["上一个"]},"Start slideshow":{v:["开始幻灯片"]}}},{l:"zh-HK",t:{Next:{v:["下一個"]},"Pause slideshow":{v:["暫停幻燈片"]},Previous:{v:["上一個"]},"Start slideshow":{v:["開始幻燈片"]}}},{l:"zh-TW",t:{Next:{v:["下一個"]},"Pause slideshow":{v:["暫停幻燈片"]},Previous:{v:["上一個"]},"Start slideshow":{v:["開始幻燈片"]}}}],i2=[{l:"ar",t:{}},{l:"ast",t:{}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"Please choose a date":{v:["Zvolte datum"]}}},{l:"cs-CZ",t:{}},{l:"da",t:{"Please choose a date":{v:["Vælg en dato"]}}},{l:"de",t:{"Please choose a date":{v:["Bitte ein Datum wählen"]}}},{l:"de-DE",t:{"Please choose a date":{v:["Bitte ein Datum wählen"]}}},{l:"el",t:{"Please choose a date":{v:["Παρακαλώ επιλέξτε μια ημερομηνία"]}}},{l:"en-GB",t:{"Please choose a date":{v:["Please choose a date"]}}},{l:"eo",t:{}},{l:"es",t:{}},{l:"es-AR",t:{}},{l:"es-EC",t:{}},{l:"es-MX",t:{}},{l:"et-EE",t:{"Please choose a date":{v:["Palun vali kuupäev"]}}},{l:"eu",t:{}},{l:"fa",t:{}},{l:"fi",t:{}},{l:"fr",t:{"Please choose a date":{v:["Veuillez choisir une date"]}}},{l:"ga",t:{"Please choose a date":{v:["Roghnaigh dáta le do thoil"]}}},{l:"gl",t:{"Please choose a date":{v:["Escolla unha data"]}}},{l:"he",t:{}},{l:"hr",t:{"Please choose a date":{v:["Molimo odaberite datum"]}}},{l:"hu",t:{"Please choose a date":{v:["Válasszon egy dátumot"]}}},{l:"id",t:{"Please choose a date":{v:["Silakan pilih tanggal"]}}},{l:"is",t:{}},{l:"it",t:{}},{l:"ja",t:{"Please choose a date":{v:["日付を選択してください"]}}},{l:"ja-JP",t:{}},{l:"ko",t:{"Please choose a date":{v:["날짜를 선택해주세요"]}}},{l:"lo",t:{"Please choose a date":{v:["ກະລຸນາເລືອກວັນທີ"]}}},{l:"lt-LT",t:{"Please choose a date":{v:["Pasirinkite datą"]}}},{l:"lv",t:{}},{l:"mk",t:{"Please choose a date":{v:["Избери датум"]}}},{l:"mn",t:{"Please choose a date":{v:["Огноо сонгоно уу"]}}},{l:"my",t:{}},{l:"nb",t:{}},{l:"nl",t:{"Please choose a date":{v:["Kies een datum"]}}},{l:"oc",t:{}},{l:"pl",t:{}},{l:"pt-BR",t:{"Please choose a date":{v:["Por favor, escolha uma data"]}}},{l:"pt-PT",t:{"Please choose a date":{v:["Por favor, escolha uma data"]}}},{l:"ro",t:{}},{l:"ru",t:{"Please choose a date":{v:["Выберите дату"]}}},{l:"sk",t:{}},{l:"sl",t:{}},{l:"sr",t:{"Please choose a date":{v:["Молимо вас да изаберете датум"]}}},{l:"sv",t:{"Please choose a date":{v:["Välj ett datum"]}}},{l:"tr",t:{"Please choose a date":{v:["Lütfen bir tarih seçin"]}}},{l:"uk",t:{"Please choose a date":{v:["Виберіть дату"]}}},{l:"uz",t:{"Please choose a date":{v:["Iltimos, sanani tanlang"]}}},{l:"zh-CN",t:{}},{l:"zh-HK",t:{"Please choose a date":{v:["請選擇日期"]}}},{l:"zh-TW",t:{"Please choose a date":{v:["請選擇日期"]}}}],o2=[{l:"ar",t:{"Undo changes":{v:["تراجَع عن التغييرات"]}}},{l:"ast",t:{"Undo changes":{v:["Desfacer los cambeos"]}}},{l:"br",t:{}},{l:"ca",t:{"Undo changes":{v:["Desfés els canvis"]}}},{l:"cs",t:{"Undo changes":{v:["Vzít změny zpět"]}}},{l:"cs-CZ",t:{"Undo changes":{v:["Vzít změny zpět"]}}},{l:"da",t:{"Undo changes":{v:["Fortryd ændringer"]}}},{l:"de",t:{"Undo changes":{v:["Änderungen rückgängig machen"]}}},{l:"de-DE",t:{"Undo changes":{v:["Änderungen rückgängig machen"]}}},{l:"el",t:{"Undo changes":{v:["Αναίρεση Αλλαγών"]}}},{l:"en-GB",t:{"Undo changes":{v:["Undo changes"]}}},{l:"eo",t:{}},{l:"es",t:{"Undo changes":{v:["Deshacer cambios"]}}},{l:"es-AR",t:{"Undo changes":{v:["Deshacer cambios"]}}},{l:"es-EC",t:{"Undo changes":{v:["Deshacer cambios"]}}},{l:"es-MX",t:{"Undo changes":{v:["Deshacer cambios"]}}},{l:"et-EE",t:{"Undo changes":{v:["Pööra muudatused tagasi"]}}},{l:"eu",t:{"Undo changes":{v:["Aldaketak desegin"]}}},{l:"fa",t:{"Undo changes":{v:["لغو تغییرات"]}}},{l:"fi",t:{"Undo changes":{v:["Kumoa muutokset"]}}},{l:"fr",t:{"Undo changes":{v:["Annuler les changements"]}}},{l:"ga",t:{"Undo changes":{v:["Cealaigh athruithe"]}}},{l:"gl",t:{"Undo changes":{v:["Desfacer os cambios"]}}},{l:"he",t:{"Undo changes":{v:["ביטול שינויים"]}}},{l:"hr",t:{"Undo changes":{v:["Poništi promjene"]}}},{l:"hu",t:{"Undo changes":{v:["Változtatások visszavonása"]}}},{l:"id",t:{"Undo changes":{v:["Urungkan perubahan"]}}},{l:"is",t:{"Undo changes":{v:["Afturkalla breytingar"]}}},{l:"it",t:{"Undo changes":{v:["Cancella i cambiamenti"]}}},{l:"ja",t:{"Undo changes":{v:["変更を取り消し"]}}},{l:"ja-JP",t:{"Undo changes":{v:["変更を取り消し"]}}},{l:"ko",t:{"Undo changes":{v:["변경 되돌리기"]}}},{l:"lo",t:{"Undo changes":{v:["ຍ້ອນຄືນການປ່ຽນແປງ"]}}},{l:"lt-LT",t:{"Undo changes":{v:["Atšaukti pakeitimus"]}}},{l:"lv",t:{}},{l:"mk",t:{"Undo changes":{v:["Врати ги промените"]}}},{l:"mn",t:{"Undo changes":{v:["Өөрчлөлтийг буцаах"]}}},{l:"my",t:{}},{l:"nb",t:{"Undo changes":{v:["Tilbakestill endringer"]}}},{l:"nl",t:{"Undo changes":{v:["Wijzigingen ongedaan maken"]}}},{l:"oc",t:{}},{l:"pl",t:{"Undo changes":{v:["Cofnij zmiany"]}}},{l:"pt-BR",t:{"Undo changes":{v:["Desfazer modificações"]}}},{l:"pt-PT",t:{"Undo changes":{v:["Anular alterações"]}}},{l:"ro",t:{"Undo changes":{v:["Anularea modificărilor"]}}},{l:"ru",t:{"Undo changes":{v:["Отменить изменения"]}}},{l:"sk",t:{"Undo changes":{v:["Vrátiť zmeny"]}}},{l:"sl",t:{"Undo changes":{v:["Razveljavi spremembe"]}}},{l:"sr",t:{"Undo changes":{v:["Поништи измене"]}}},{l:"sv",t:{"Undo changes":{v:["Ångra ändringar"]}}},{l:"tr",t:{"Undo changes":{v:["Değişiklikleri geri al"]}}},{l:"uk",t:{"Undo changes":{v:["Скасувати зміни"]}}},{l:"uz",t:{"Undo changes":{v:["O'zgarishlarni bekor qilish"]}}},{l:"zh-CN",t:{"Undo changes":{v:["撤销更改"]}}},{l:"zh-HK",t:{"Undo changes":{v:["取消更改"]}}},{l:"zh-TW",t:{"Undo changes":{v:["還原變更"]}}}],a2=[{l:"ar",t:{"User status: {status}":{v:["حالة المستخدِم: {status}"]}}},{l:"ast",t:{"User status: {status}":{v:["Estáu del usuariu: {status}"]}}},{l:"br",t:{}},{l:"ca",t:{}},{l:"cs",t:{"User status: {status}":{v:["Stav uživatele: {status}"]}}},{l:"cs-CZ",t:{"User status: {status}":{v:["Stav uživatele: {status}"]}}},{l:"da",t:{"User status: {status}":{v:["Brugerstatus: {status}"]}}},{l:"de",t:{"User status: {status}":{v:["Benutzerstatus: {status}"]}}},{l:"de-DE",t:{"User status: {status}":{v:["Benutzerstatus: {status}"]}}},{l:"el",t:{"User status: {status}":{v:["Κατάσταση χρήστη: {status}"]}}},{l:"en-GB",t:{"User status: {status}":{v:["User status: {status}"]}}},{l:"eo",t:{}},{l:"es",t:{"User status: {status}":{v:["Estatus del usuario: {status}"]}}},{l:"es-AR",t:{"User status: {status}":{v:["Estado del usuario: {status}"]}}},{l:"es-EC",t:{}},{l:"es-MX",t:{"User status: {status}":{v:["Estado del usuario: {status}"]}}},{l:"et-EE",t:{"User status: {status}":{v:["Kasutaja olek: {status}"]}}},{l:"eu",t:{}},{l:"fa",t:{"User status: {status}":{v:["وضعیت کاربر: {status}"]}}},{l:"fi",t:{"User status: {status}":{v:["Käyttäjän tila: {status}"]}}},{l:"fr",t:{"User status: {status}":{v:["Statut de l'utilisateur : {status}"]}}},{l:"ga",t:{"User status: {status}":{v:["Stádas úsáideora: {status}"]}}},{l:"gl",t:{"User status: {status}":{v:["Estado do usuario: {status}"]}}},{l:"he",t:{}},{l:"hr",t:{"User status: {status}":{v:["Status korisnika: {status}"]}}},{l:"hu",t:{"User status: {status}":{v:["Felhasználó állapota: {status}"]}}},{l:"id",t:{"User status: {status}":{v:["Status pengguna: {status}"]}}},{l:"is",t:{"User status: {status}":{v:["Staða notanda: {status}"]}}},{l:"it",t:{"User status: {status}":{v:["Stato dell'utente: {status}"]}}},{l:"ja",t:{"User status: {status}":{v:["ユーザのステータス: {status}"]}}},{l:"ja-JP",t:{"User status: {status}":{v:["ユーザのステータス: {status}"]}}},{l:"ko",t:{"User status: {status}":{v:["사용자 상태: {status}"]}}},{l:"lo",t:{"User status: {status}":{v:["ສະຖານະຜູ້ໃຊ້: {status}"]}}},{l:"lt-LT",t:{"User status: {status}":{v:["Naudotojo būsena: {status}"]}}},{l:"lv",t:{}},{l:"mk",t:{"User status: {status}":{v:["Статус: {status}"]}}},{l:"mn",t:{"User status: {status}":{v:["Хэрэглэгчийн төлөв: {status}"]}}},{l:"my",t:{}},{l:"nb",t:{"User status: {status}":{v:["Brukerstatus: {status}"]}}},{l:"nl",t:{"User status: {status}":{v:["Gebruikersstatus: {status}"]}}},{l:"oc",t:{}},{l:"pl",t:{"User status: {status}":{v:["Status użytkownika: {status}"]}}},{l:"pt-BR",t:{"User status: {status}":{v:["Status do usuário: {status}"]}}},{l:"pt-PT",t:{"User status: {status}":{v:["Estado do utilizador: {status}"]}}},{l:"ro",t:{"User status: {status}":{v:["Status utilizator: {status}"]}}},{l:"ru",t:{"User status: {status}":{v:["Статус пользователя: {status}"]}}},{l:"sk",t:{"User status: {status}":{v:["Stav užívateľa: {status}"]}}},{l:"sl",t:{}},{l:"sr",t:{"User status: {status}":{v:["Статус корисника: {status}"]}}},{l:"sv",t:{"User status: {status}":{v:["Användarstatus: {status}"]}}},{l:"tr",t:{"User status: {status}":{v:["Kullanıcı durumu: {status}"]}}},{l:"uk",t:{"User status: {status}":{v:["Статус користувача: {status}"]}}},{l:"uz",t:{"User status: {status}":{v:["Foydalanuvchi holati: {status}"]}}},{l:"zh-CN",t:{"User status: {status}":{v:["用户状态:{status}"]}}},{l:"zh-HK",t:{"User status: {status}":{v:["用戶狀態:{status}"]}}},{l:"zh-TW",t:{"User status: {status}":{v:["使用者狀態:{status}"]}}}];function ev(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function r2(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&ev(e.default)}const tv=Object.assign;function l2(e,t){const u={};for(const s in t){const n=t[s];u[s]=uv(n)?n.map(e):e(n)}return u}const d2=()=>{},uv=Array.isArray;function m2(e,t){const u={};for(const s in e)u[s]=s in t?t[s]:e[s];return u}const t3=Symbol("");function c2(e,t){return tv(new Error,{type:e,[t3]:!0},t)}function g2(e,t){return e instanceof Error&&t3 in e&&(t==null||!!(e.type&t))}const f2=Symbol(""),p2=Symbol(""),sv=Symbol(""),h2=Symbol(""),v2=Symbol("");var u3={},Gi={};Gi.byteLength=ov,Gi.toByteArray=rv,Gi.fromByteArray=mv;for(var pu=[],Ht=[],nv=typeof Uint8Array<"u"?Uint8Array:Array,Ho="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Gs=0,iv=Ho.length;Gs0)throw new Error("Invalid string. Length must be a multiple of 4");var u=e.indexOf("=");u===-1&&(u=t);var s=u===t?0:4-u%4;return[u,s]}function ov(e){var t=s3(e),u=t[0],s=t[1];return(u+s)*3/4-s}function av(e,t,u){return(t+u)*3/4-u}function rv(e){var t,u=s3(e),s=u[0],n=u[1],i=new nv(av(e,s,n)),o=0,a=n>0?s-4:s,r;for(r=0;r>16&255,i[o++]=t>>8&255,i[o++]=t&255;return n===2&&(t=Ht[e.charCodeAt(r)]<<2|Ht[e.charCodeAt(r+1)]>>4,i[o++]=t&255),n===1&&(t=Ht[e.charCodeAt(r)]<<10|Ht[e.charCodeAt(r+1)]<<4|Ht[e.charCodeAt(r+2)]>>2,i[o++]=t>>8&255,i[o++]=t&255),i}function lv(e){return pu[e>>18&63]+pu[e>>12&63]+pu[e>>6&63]+pu[e&63]}function dv(e,t,u){for(var s,n=[],i=t;ia?a:o+i));return s===1?(t=e[u-1],n.push(pu[t>>2]+pu[t<<4&63]+"==")):s===2&&(t=(e[u-2]<<8)+e[u-1],n.push(pu[t>>10]+pu[t>>4&63]+pu[t<<2&63]+"=")),n.join("")}var xa={};xa.read=function(e,t,u,s,n){var i,o,a=n*8-s-1,r=(1<>1,l=-7,g=u?n-1:0,p=u?-1:1,h=e[t+g];for(g+=p,i=h&(1<<-l)-1,h>>=-l,l+=a;l>0;i=i*256+e[t+g],g+=p,l-=8);for(o=i&(1<<-l)-1,i>>=-l,l+=s;l>0;o=o*256+e[t+g],g+=p,l-=8);if(i===0)i=1-m;else{if(i===r)return o?NaN:(h?-1:1)*(1/0);o=o+Math.pow(2,s),i=i-m}return(h?-1:1)*o*Math.pow(2,i-s)},xa.write=function(e,t,u,s,n,i){var o,a,r,m=i*8-n-1,l=(1<>1,p=n===23?Math.pow(2,-24)-Math.pow(2,-77):0,h=s?0:i-1,y=s?1:-1,E=t<0||t===0&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(a=isNaN(t)?1:0,o=l):(o=Math.floor(Math.log(t)/Math.LN2),t*(r=Math.pow(2,-o))<1&&(o--,r*=2),o+g>=1?t+=p/r:t+=p*Math.pow(2,1-g),t*r>=2&&(o++,r/=2),o+g>=l?(a=0,o=l):o+g>=1?(a=(t*r-1)*Math.pow(2,n),o=o+g):(a=t*Math.pow(2,g-1)*Math.pow(2,n),o=0));n>=8;e[u+h]=a&255,h+=y,a/=256,n-=8);for(o=o<0;e[u+h]=o&255,h+=y,o/=256,m-=8);e[u+h-y]|=E*128};(function(e){const t=Gi,u=xa,s=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;e.Buffer=l,e.SlowBuffer=q,e.INSPECT_MAX_BYTES=50;const n=2147483647;e.kMaxLength=n;const{Uint8Array:i,ArrayBuffer:o,SharedArrayBuffer:a}=globalThis;l.TYPED_ARRAY_SUPPORT=r(),!l.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function r(){try{const d=new i(1),c={foo:function(){return 42}};return Object.setPrototypeOf(c,i.prototype),Object.setPrototypeOf(d,c),d.foo()===42}catch{return!1}}Object.defineProperty(l.prototype,"parent",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.buffer}}),Object.defineProperty(l.prototype,"offset",{enumerable:!0,get:function(){if(l.isBuffer(this))return this.byteOffset}});function m(d){if(d>n)throw new RangeError('The value "'+d+'" is invalid for option "size"');const c=new i(d);return Object.setPrototypeOf(c,l.prototype),c}function l(d,c,f){if(typeof d=="number"){if(typeof c=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return y(d)}return g(d,c,f)}l.poolSize=8192;function g(d,c,f){if(typeof d=="string")return E(d,c);if(o.isView(d))return B(d);if(d==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof d);if(fe(d,o)||d&&fe(d.buffer,o)||typeof a<"u"&&(fe(d,a)||d&&fe(d.buffer,a)))return A(d,c,f);if(typeof d=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');const x=d.valueOf&&d.valueOf();if(x!=null&&x!==d)return l.from(x,c,f);const k=O(d);if(k)return k;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof d[Symbol.toPrimitive]=="function")return l.from(d[Symbol.toPrimitive]("string"),c,f);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof d)}l.from=function(d,c,f){return g(d,c,f)},Object.setPrototypeOf(l.prototype,i.prototype),Object.setPrototypeOf(l,i);function p(d){if(typeof d!="number")throw new TypeError('"size" argument must be of type number');if(d<0)throw new RangeError('The value "'+d+'" is invalid for option "size"')}function h(d,c,f){return p(d),d<=0?m(d):c!==void 0?typeof f=="string"?m(d).fill(c,f):m(d).fill(c):m(d)}l.alloc=function(d,c,f){return h(d,c,f)};function y(d){return p(d),m(d<0?0:S(d)|0)}l.allocUnsafe=function(d){return y(d)},l.allocUnsafeSlow=function(d){return y(d)};function E(d,c){if((typeof c!="string"||c==="")&&(c="utf8"),!l.isEncoding(c))throw new TypeError("Unknown encoding: "+c);const f=I(d,c)|0;let x=m(f);const k=x.write(d,c);return k!==f&&(x=x.slice(0,k)),x}function F(d){const c=d.length<0?0:S(d.length)|0,f=m(c);for(let x=0;x=n)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+n.toString(16)+" bytes");return d|0}function q(d){return+d!=d&&(d=0),l.alloc(+d)}l.isBuffer=function(d){return d!=null&&d._isBuffer===!0&&d!==l.prototype},l.compare=function(d,c){if(fe(d,i)&&(d=l.from(d,d.offset,d.byteLength)),fe(c,i)&&(c=l.from(c,c.offset,c.byteLength)),!l.isBuffer(d)||!l.isBuffer(c))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(d===c)return 0;let f=d.length,x=c.length;for(let k=0,P=Math.min(f,x);kx.length?(l.isBuffer(P)||(P=l.from(P)),P.copy(x,k)):i.prototype.set.call(x,P,k);else if(l.isBuffer(P))P.copy(x,k);else throw new TypeError('"list" argument must be an Array of Buffers');k+=P.length}return x};function I(d,c){if(l.isBuffer(d))return d.length;if(o.isView(d)||fe(d,o))return d.byteLength;if(typeof d!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof d);const f=d.length,x=arguments.length>2&&arguments[2]===!0;if(!x&&f===0)return 0;let k=!1;for(;;)switch(c){case"ascii":case"latin1":case"binary":return f;case"utf8":case"utf-8":return j(d).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return f*2;case"hex":return f>>>1;case"base64":return ae(d).length;default:if(k)return x?-1:j(d).length;c=(""+c).toLowerCase(),k=!0}}l.byteLength=I;function Y(d,c,f){let x=!1;if((c===void 0||c<0)&&(c=0),c>this.length||((f===void 0||f>this.length)&&(f=this.length),f<=0)||(f>>>=0,c>>>=0,f<=c))return"";for(d||(d="utf8");;)switch(d){case"hex":return xe(this,c,f);case"utf8":case"utf-8":return ee(this,c,f);case"ascii":return de(this,c,f);case"latin1":case"binary":return oe(this,c,f);case"base64":return Z(this,c,f);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return qe(this,c,f);default:if(x)throw new TypeError("Unknown encoding: "+d);d=(d+"").toLowerCase(),x=!0}}l.prototype._isBuffer=!0;function ne(d,c,f){const x=d[c];d[c]=d[f],d[f]=x}l.prototype.swap16=function(){const d=this.length;if(d%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let c=0;cc&&(d+=" ... "),""},s&&(l.prototype[s]=l.prototype.inspect),l.prototype.compare=function(d,c,f,x,k){if(fe(d,i)&&(d=l.from(d,d.offset,d.byteLength)),!l.isBuffer(d))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof d);if(c===void 0&&(c=0),f===void 0&&(f=d?d.length:0),x===void 0&&(x=0),k===void 0&&(k=this.length),c<0||f>d.length||x<0||k>this.length)throw new RangeError("out of range index");if(x>=k&&c>=f)return 0;if(x>=k)return-1;if(c>=f)return 1;if(c>>>=0,f>>>=0,x>>>=0,k>>>=0,this===d)return 0;let P=k-x,K=f-c;const Te=Math.min(P,K),Ke=this.slice(x,k),ye=d.slice(c,f);for(let je=0;je2147483647?f=2147483647:f<-2147483648&&(f=-2147483648),f=+f,Ae(f)&&(f=k?0:d.length-1),f<0&&(f=d.length+f),f>=d.length){if(k)return-1;f=d.length-1}else if(f<0)if(k)f=0;else return-1;if(typeof c=="string"&&(c=l.from(c,x)),l.isBuffer(c))return c.length===0?-1:M(d,c,f,x,k);if(typeof c=="number")return c=c&255,typeof i.prototype.indexOf=="function"?k?i.prototype.indexOf.call(d,c,f):i.prototype.lastIndexOf.call(d,c,f):M(d,[c],f,x,k);throw new TypeError("val must be string, number or Buffer")}function M(d,c,f,x,k){let P=1,K=d.length,Te=c.length;if(x!==void 0&&(x=String(x).toLowerCase(),x==="ucs2"||x==="ucs-2"||x==="utf16le"||x==="utf-16le")){if(d.length<2||c.length<2)return-1;P=2,K/=2,Te/=2,f/=2}function Ke(je,Ze){return P===1?je[Ze]:je.readUInt16BE(Ze*P)}let ye;if(k){let je=-1;for(ye=f;yeK&&(f=K-Te),ye=f;ye>=0;ye--){let je=!0;for(let Ze=0;Zek&&(x=k)):x=k;const P=c.length;x>P/2&&(x=P/2);let K;for(K=0;K>>0,isFinite(f)?(f=f>>>0,x===void 0&&(x="utf8")):(x=f,f=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");const k=this.length-c;if((f===void 0||f>k)&&(f=k),d.length>0&&(f<0||c<0)||c>this.length)throw new RangeError("Attempt to write outside buffer bounds");x||(x="utf8");let P=!1;for(;;)switch(x){case"hex":return ie(this,d,c,f);case"utf8":case"utf-8":return w(this,d,c,f);case"ascii":case"latin1":case"binary":return T(this,d,c,f);case"base64":return V(this,d,c,f);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ue(this,d,c,f);default:if(P)throw new TypeError("Unknown encoding: "+x);x=(""+x).toLowerCase(),P=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function Z(d,c,f){return c===0&&f===d.length?t.fromByteArray(d):t.fromByteArray(d.slice(c,f))}function ee(d,c,f){f=Math.min(d.length,f);const x=[];let k=c;for(;k239?4:P>223?3:P>191?2:1;if(k+Te<=f){let Ke,ye,je,Ze;switch(Te){case 1:P<128&&(K=P);break;case 2:Ke=d[k+1],(Ke&192)===128&&(Ze=(P&31)<<6|Ke&63,Ze>127&&(K=Ze));break;case 3:Ke=d[k+1],ye=d[k+2],(Ke&192)===128&&(ye&192)===128&&(Ze=(P&15)<<12|(Ke&63)<<6|ye&63,Ze>2047&&(Ze<55296||Ze>57343)&&(K=Ze));break;case 4:Ke=d[k+1],ye=d[k+2],je=d[k+3],(Ke&192)===128&&(ye&192)===128&&(je&192)===128&&(Ze=(P&15)<<18|(Ke&63)<<12|(ye&63)<<6|je&63,Ze>65535&&Ze<1114112&&(K=Ze))}}K===null?(K=65533,Te=1):K>65535&&(K-=65536,x.push(K>>>10&1023|55296),K=56320|K&1023),x.push(K),k+=Te}return ce(x)}const se=4096;function ce(d){const c=d.length;if(c<=se)return String.fromCharCode.apply(String,d);let f="",x=0;for(;xx)&&(f=x);let k="";for(let P=c;Pf&&(d=f),c<0?(c+=f,c<0&&(c=0)):c>f&&(c=f),cf)throw new RangeError("Trying to access beyond buffer length")}l.prototype.readUintLE=l.prototype.readUIntLE=function(d,c,f){d=d>>>0,c=c>>>0,f||_e(d,c,this.length);let x=this[d],k=1,P=0;for(;++P>>0,c=c>>>0,f||_e(d,c,this.length);let x=this[d+--c],k=1;for(;c>0&&(k*=256);)x+=this[d+--c]*k;return x},l.prototype.readUint8=l.prototype.readUInt8=function(d,c){return d=d>>>0,c||_e(d,1,this.length),this[d]},l.prototype.readUint16LE=l.prototype.readUInt16LE=function(d,c){return d=d>>>0,c||_e(d,2,this.length),this[d]|this[d+1]<<8},l.prototype.readUint16BE=l.prototype.readUInt16BE=function(d,c){return d=d>>>0,c||_e(d,2,this.length),this[d]<<8|this[d+1]},l.prototype.readUint32LE=l.prototype.readUInt32LE=function(d,c){return d=d>>>0,c||_e(d,4,this.length),(this[d]|this[d+1]<<8|this[d+2]<<16)+this[d+3]*16777216},l.prototype.readUint32BE=l.prototype.readUInt32BE=function(d,c){return d=d>>>0,c||_e(d,4,this.length),this[d]*16777216+(this[d+1]<<16|this[d+2]<<8|this[d+3])},l.prototype.readBigUInt64LE=De(function(d){d=d>>>0,N(d,"offset");const c=this[d],f=this[d+7];(c===void 0||f===void 0)&&W(d,this.length-8);const x=c+this[++d]*2**8+this[++d]*2**16+this[++d]*2**24,k=this[++d]+this[++d]*2**8+this[++d]*2**16+f*2**24;return BigInt(x)+(BigInt(k)<>>0,N(d,"offset");const c=this[d],f=this[d+7];(c===void 0||f===void 0)&&W(d,this.length-8);const x=c*2**24+this[++d]*2**16+this[++d]*2**8+this[++d],k=this[++d]*2**24+this[++d]*2**16+this[++d]*2**8+f;return(BigInt(x)<>>0,c=c>>>0,f||_e(d,c,this.length);let x=this[d],k=1,P=0;for(;++P=k&&(x-=Math.pow(2,8*c)),x},l.prototype.readIntBE=function(d,c,f){d=d>>>0,c=c>>>0,f||_e(d,c,this.length);let x=c,k=1,P=this[d+--x];for(;x>0&&(k*=256);)P+=this[d+--x]*k;return k*=128,P>=k&&(P-=Math.pow(2,8*c)),P},l.prototype.readInt8=function(d,c){return d=d>>>0,c||_e(d,1,this.length),this[d]&128?(255-this[d]+1)*-1:this[d]},l.prototype.readInt16LE=function(d,c){d=d>>>0,c||_e(d,2,this.length);const f=this[d]|this[d+1]<<8;return f&32768?f|4294901760:f},l.prototype.readInt16BE=function(d,c){d=d>>>0,c||_e(d,2,this.length);const f=this[d+1]|this[d]<<8;return f&32768?f|4294901760:f},l.prototype.readInt32LE=function(d,c){return d=d>>>0,c||_e(d,4,this.length),this[d]|this[d+1]<<8|this[d+2]<<16|this[d+3]<<24},l.prototype.readInt32BE=function(d,c){return d=d>>>0,c||_e(d,4,this.length),this[d]<<24|this[d+1]<<16|this[d+2]<<8|this[d+3]},l.prototype.readBigInt64LE=De(function(d){d=d>>>0,N(d,"offset");const c=this[d],f=this[d+7];(c===void 0||f===void 0)&&W(d,this.length-8);const x=this[d+4]+this[d+5]*2**8+this[d+6]*2**16+(f<<24);return(BigInt(x)<>>0,N(d,"offset");const c=this[d],f=this[d+7];(c===void 0||f===void 0)&&W(d,this.length-8);const x=(c<<24)+this[++d]*2**16+this[++d]*2**8+this[++d];return(BigInt(x)<>>0,c||_e(d,4,this.length),u.read(this,d,!0,23,4)},l.prototype.readFloatBE=function(d,c){return d=d>>>0,c||_e(d,4,this.length),u.read(this,d,!1,23,4)},l.prototype.readDoubleLE=function(d,c){return d=d>>>0,c||_e(d,8,this.length),u.read(this,d,!0,52,8)},l.prototype.readDoubleBE=function(d,c){return d=d>>>0,c||_e(d,8,this.length),u.read(this,d,!1,52,8)};function Le(d,c,f,x,k,P){if(!l.isBuffer(d))throw new TypeError('"buffer" argument must be a Buffer instance');if(c>k||cd.length)throw new RangeError("Index out of range")}l.prototype.writeUintLE=l.prototype.writeUIntLE=function(d,c,f,x){if(d=+d,c=c>>>0,f=f>>>0,!x){const K=Math.pow(2,8*f)-1;Le(this,d,c,f,K,0)}let k=1,P=0;for(this[c]=d&255;++P>>0,f=f>>>0,!x){const K=Math.pow(2,8*f)-1;Le(this,d,c,f,K,0)}let k=f-1,P=1;for(this[c+k]=d&255;--k>=0&&(P*=256);)this[c+k]=d/P&255;return c+f},l.prototype.writeUint8=l.prototype.writeUInt8=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,1,255,0),this[c]=d&255,c+1},l.prototype.writeUint16LE=l.prototype.writeUInt16LE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,2,65535,0),this[c]=d&255,this[c+1]=d>>>8,c+2},l.prototype.writeUint16BE=l.prototype.writeUInt16BE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,2,65535,0),this[c]=d>>>8,this[c+1]=d&255,c+2},l.prototype.writeUint32LE=l.prototype.writeUInt32LE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,4,4294967295,0),this[c+3]=d>>>24,this[c+2]=d>>>16,this[c+1]=d>>>8,this[c]=d&255,c+4},l.prototype.writeUint32BE=l.prototype.writeUInt32BE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,4,4294967295,0),this[c]=d>>>24,this[c+1]=d>>>16,this[c+2]=d>>>8,this[c+3]=d&255,c+4};function he(d,c,f,x,k){z(c,x,k,d,f,7);let P=Number(c&BigInt(4294967295));d[f++]=P,P=P>>8,d[f++]=P,P=P>>8,d[f++]=P,P=P>>8,d[f++]=P;let K=Number(c>>BigInt(32)&BigInt(4294967295));return d[f++]=K,K=K>>8,d[f++]=K,K=K>>8,d[f++]=K,K=K>>8,d[f++]=K,f}function We(d,c,f,x,k){z(c,x,k,d,f,7);let P=Number(c&BigInt(4294967295));d[f+7]=P,P=P>>8,d[f+6]=P,P=P>>8,d[f+5]=P,P=P>>8,d[f+4]=P;let K=Number(c>>BigInt(32)&BigInt(4294967295));return d[f+3]=K,K=K>>8,d[f+2]=K,K=K>>8,d[f+1]=K,K=K>>8,d[f]=K,f+8}l.prototype.writeBigUInt64LE=De(function(d,c=0){return he(this,d,c,BigInt(0),BigInt("0xffffffffffffffff"))}),l.prototype.writeBigUInt64BE=De(function(d,c=0){return We(this,d,c,BigInt(0),BigInt("0xffffffffffffffff"))}),l.prototype.writeIntLE=function(d,c,f,x){if(d=+d,c=c>>>0,!x){const Te=Math.pow(2,8*f-1);Le(this,d,c,f,Te-1,-Te)}let k=0,P=1,K=0;for(this[c]=d&255;++k>0)-K&255;return c+f},l.prototype.writeIntBE=function(d,c,f,x){if(d=+d,c=c>>>0,!x){const Te=Math.pow(2,8*f-1);Le(this,d,c,f,Te-1,-Te)}let k=f-1,P=1,K=0;for(this[c+k]=d&255;--k>=0&&(P*=256);)d<0&&K===0&&this[c+k+1]!==0&&(K=1),this[c+k]=(d/P>>0)-K&255;return c+f},l.prototype.writeInt8=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,1,127,-128),d<0&&(d=255+d+1),this[c]=d&255,c+1},l.prototype.writeInt16LE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,2,32767,-32768),this[c]=d&255,this[c+1]=d>>>8,c+2},l.prototype.writeInt16BE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,2,32767,-32768),this[c]=d>>>8,this[c+1]=d&255,c+2},l.prototype.writeInt32LE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,4,2147483647,-2147483648),this[c]=d&255,this[c+1]=d>>>8,this[c+2]=d>>>16,this[c+3]=d>>>24,c+4},l.prototype.writeInt32BE=function(d,c,f){return d=+d,c=c>>>0,f||Le(this,d,c,4,2147483647,-2147483648),d<0&&(d=4294967295+d+1),this[c]=d>>>24,this[c+1]=d>>>16,this[c+2]=d>>>8,this[c+3]=d&255,c+4},l.prototype.writeBigInt64LE=De(function(d,c=0){return he(this,d,c,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),l.prototype.writeBigInt64BE=De(function(d,c=0){return We(this,d,c,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function Tt(d,c,f,x,k,P){if(f+x>d.length)throw new RangeError("Index out of range");if(f<0)throw new RangeError("Index out of range")}function nu(d,c,f,x,k){return c=+c,f=f>>>0,k||Tt(d,c,f,4),u.write(d,c,f,x,23,4),f+4}l.prototype.writeFloatLE=function(d,c,f){return nu(this,d,c,!0,f)},l.prototype.writeFloatBE=function(d,c,f){return nu(this,d,c,!1,f)};function Vt(d,c,f,x,k){return c=+c,f=f>>>0,k||Tt(d,c,f,8),u.write(d,c,f,x,52,8),f+8}l.prototype.writeDoubleLE=function(d,c,f){return Vt(this,d,c,!0,f)},l.prototype.writeDoubleBE=function(d,c,f){return Vt(this,d,c,!1,f)},l.prototype.copy=function(d,c,f,x){if(!l.isBuffer(d))throw new TypeError("argument should be a Buffer");if(f||(f=0),!x&&x!==0&&(x=this.length),c>=d.length&&(c=d.length),c||(c=0),x>0&&x=this.length)throw new RangeError("Index out of range");if(x<0)throw new RangeError("sourceEnd out of bounds");x>this.length&&(x=this.length),d.length-c>>0,f=f===void 0?this.length:f>>>0,d||(d=0);let k;if(typeof d=="number")for(k=c;k2**32?k=_(String(f)):typeof f=="bigint"&&(k=String(f),(f>BigInt(2)**BigInt(32)||f<-(BigInt(2)**BigInt(32)))&&(k=_(k)),k+="n"),x+=` It must be ${c}. Received ${k}`,x},RangeError);function _(d){let c="",f=d.length;const x=d[0]==="-"?1:0;for(;f>=x+4;f-=3)c=`_${d.slice(f-3,f)}${c}`;return`${d.slice(0,f)}${c}`}function $(d,c,f){N(c,"offset"),(d[c]===void 0||d[c+f]===void 0)&&W(c,d.length-(f+1))}function z(d,c,f,x,k,P){if(d>f||d= 0${K} and < 2${K} ** ${(P+1)*8}${K}`:Te=`>= -(2${K} ** ${(P+1)*8-1}${K}) and < 2 ** ${(P+1)*8-1}${K}`,new C.ERR_OUT_OF_RANGE("value",Te,d)}$(x,k,P)}function N(d,c){if(typeof d!="number")throw new C.ERR_INVALID_ARG_TYPE(c,"number",d)}function W(d,c,f){throw Math.floor(d)!==d?(N(d,f),new C.ERR_OUT_OF_RANGE("offset","an integer",d)):c<0?new C.ERR_BUFFER_OUT_OF_BOUNDS:new C.ERR_OUT_OF_RANGE("offset",`>= 0 and <= ${c}`,d)}const U=/[^+/0-9A-Za-z-_]/g;function H(d){if(d=d.split("=")[0],d=d.trim().replace(U,""),d.length<2)return"";for(;d.length%4!==0;)d=d+"=";return d}function j(d,c){c=c||1/0;let f;const x=d.length;let k=null;const P=[];for(let K=0;K55295&&f<57344){if(!k){if(f>56319){(c-=3)>-1&&P.push(239,191,189);continue}else if(K+1===x){(c-=3)>-1&&P.push(239,191,189);continue}k=f;continue}if(f<56320){(c-=3)>-1&&P.push(239,191,189),k=f;continue}f=(k-55296<<10|f-56320)+65536}else k&&(c-=3)>-1&&P.push(239,191,189);if(k=null,f<128){if((c-=1)<0)break;P.push(f)}else if(f<2048){if((c-=2)<0)break;P.push(f>>6|192,f&63|128)}else if(f<65536){if((c-=3)<0)break;P.push(f>>12|224,f>>6&63|128,f&63|128)}else if(f<1114112){if((c-=4)<0)break;P.push(f>>18|240,f>>12&63|128,f>>6&63|128,f&63|128)}else throw new Error("Invalid code point")}return P}function re(d){const c=[];for(let f=0;f>8,k=f%256,P.push(k),P.push(x);return P}function ae(d){return t.toByteArray(H(d))}function le(d,c,f,x){let k;for(k=0;k=c.length||k>=d.length);++k)c[k+f]=d[k];return k}function fe(d,c){return d instanceof c||d!=null&&d.constructor!=null&&d.constructor.name!=null&&d.constructor.name===c.name}function Ae(d){return d!==d}const Oe=(function(){const d="0123456789abcdef",c=new Array(256);for(let f=0;f<16;++f){const x=f*16;for(let k=0;k<16;++k)c[x+k]=d[f]+d[k]}return c})();function De(d){return typeof BigInt>"u"?Ye:d}function Ye(){throw new Error("BigInt not supported")}})(u3);const e4=u3.Buffer,[cv]=window.OC?.config?.version?.split(".")??[],n3=Number.parseInt(cv??"34"),nr=n3<32,gv=n3<34,fv=Symbol.for("NcFormBox:context");function pv(){return Nu(fv,{isInFormBox:!1,formBoxItemClass:void 0})}const rt=(e,t)=>{const u=e.__vccOpts||e;for(const[s,n]of t)u[s]=n;return u},hv={class:"button-vue__wrapper"},vv={class:"button-vue__icon"},Ev={class:"button-vue__text"},Cv=tu({__name:"NcButton",props:{alignment:{default:"center"},ariaLabel:{default:void 0},disabled:{type:Boolean},download:{type:[String,Boolean],default:void 0},href:{default:void 0},pressed:{type:Boolean,default:void 0},size:{default:"normal"},target:{default:"_self"},text:{default:void 0},to:{default:void 0},type:{default:"button"},variant:{default:"secondary"},wide:{type:Boolean}},emits:["click","update:pressed"],setup(e,{emit:t}){const u=e,s=t,{formBoxItemClass:n}=pv(),i=Nu(sv,null)!==null,o=Ue(()=>i&&u.to?"RouterLink":u.href?"a":"button"),a=Ue(()=>o.value==="button"&&typeof u.pressed=="boolean"),r=Ue(()=>u.pressed?"primary":u.pressed===!1&&u.variant==="primary"?"secondary":u.variant),m=Ue(()=>r.value.startsWith("tertiary")),l=Ue(()=>u.alignment.split("-")[0]),g=Ue(()=>u.alignment.includes("-")),p=Nu("NcPopover:trigger:attrs",()=>({}),!1),h=Ue(()=>p()),y=Ue(()=>{if(o.value==="RouterLink")return{to:u.to,activeClass:"active"};if(o.value==="a")return{href:u.href||"#",target:u.target,rel:"nofollow noreferrer noopener",download:u.download||void 0};if(o.value==="button")return{...h.value,"aria-pressed":u.pressed,type:u.type,disabled:u.disabled}});function E(F){a.value&&s("update:pressed",!u.pressed),s("click",F)}return(F,B)=>(X(),et(rn(o.value),ut({class:["button-vue",[`button-vue--size-${e.size}`,{[`button-vue--${r.value}`]:r.value,"button-vue--tertiary":m.value,"button-vue--wide":e.wide,[`button-vue--${l.value}`]:l.value!=="center","button-vue--reverse":g.value,"button-vue--legacy":ke(nr),"button-vue--legacy34":ke(gv)},ke(n)]],"aria-label":e.ariaLabel},y.value,{onClick:E}),{default:Pe(()=>[ve("span",hv,[ve("span",vv,[ze(F.$slots,"icon",{},void 0,!0)]),ve("span",Ev,[ze(F.$slots,"default",{},()=>[Ns(dt(e.text),1)],!0)])])]),_:3},16,["class","aria-label"]))}}),As=rt(Cv,[["__scopeId","data-v-00a99684"]]),Bv=["aria-hidden","aria-label"],yv={key:0,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg"},xv=["d"],Av=["innerHTML"],bv=tu({__name:"NcIconSvgWrapper",props:{directional:{type:Boolean},inline:{type:Boolean},svg:{default:""},name:{default:void 0},path:{default:""},size:{default:20}},setup(e){X0(n=>({fb515064:u.value}));const t=e,u=Ue(()=>typeof t.size=="number"?`${t.size}px`:t.size),s=Ue(()=>{if(!t.svg||t.path)return;const n=dd.sanitize(t.svg),i=new DOMParser().parseFromString(n,"image/svg+xml");return i.querySelector("parsererror")?"":(i.documentElement.id&&i.documentElement.removeAttribute("id"),i.documentElement.outerHTML)});return(n,i)=>(X(),me("span",{"aria-hidden":e.name?void 0:"true","aria-label":e.name||void 0,class:Bt(["icon-vue",{"icon-vue--directional":e.directional,"icon-vue--inline":e.inline}]),role:"img"},[s.value?(X(),me("span",{key:1,innerHTML:s.value},null,8,Av)):(X(),me("svg",yv,[ve("path",{d:e.path},null,8,xv)]))],10,Bv))}}),Es=rt(bv,[["__scopeId","data-v-aaedb1c3"]]);kv();function wv(){return globalThis._nc_auth_requestToken?globalThis._nc_auth_requestToken:globalThis.document?document.head.dataset.requesttoken??null:null}function i3(e){if(!e||typeof e!="string")throw new Error("Invalid CSRF token given",{cause:{token:e}});globalThis._nc_auth_requestToken!==e&&(globalThis._nc_auth_requestToken=e,globalThis.document&&(document.head.dataset.requesttoken=e),bh("csrf-token-update",{token:e,_internal:!0}))}async function Dv(){const e=id("/csrftoken"),t=await fetch(e);if(!t.ok)throw new Error("Could not fetch CSRF token from API",{cause:t});try{const{token:u}=await t.json();return i3(u),u}catch(u){throw new Error("Could not parse CSRF token from API response",{cause:u})}}function Fv(e){const t=async({token:u})=>{try{e(u)}catch(s){console.error("Error updating CSRF token observer",s)}};return Ym("csrf-token-update",t),()=>Ah("csrf-token-update",t)}function kv(){Ym("csrf-token-update",({token:e,_internal:t})=>{t||i3(e)})}ah("public").persist().build();let qs;function t4(e,t){return e?e.getAttribute(t):null}function Sv(){if(qs!==void 0)return qs;const e=document?.getElementsByTagName("head")[0];if(!e)return null;const t=t4(e,"data-user");return t===null?(qs=null,qs):(qs={uid:t,displayName:t4(e,"data-user-displayname"),isAdmin:!!window._oc_isadmin},qs)}var nt=(e=>(e[e.Debug=0]="Debug",e[e.Info=1]="Info",e[e.Warn=2]="Warn",e[e.Error=3]="Error",e[e.Fatal=4]="Fatal",e))(nt||{});class Nv{context;constructor(t){this.context=t||{}}formatMessage(t,u,s){let n="["+nt[u].toUpperCase()+"] ";return s&&s.app&&(n+=s.app+": "),typeof t=="string"?n+t:(n+=`Unexpected ${t.name}`,t.message&&(n+=` "${t.message}"`),u===nt.Debug&&t.stack&&(n+=` Stack trace: ${t.stack}`),n)}log(t,u,s){if(!(typeof this.context?.level=="number"&&t{document.readyState==="complete"||document.readyState==="interactive"?(t.context.level=window._oc_config?.loglevel??nt.Warn,window._oc_debug&&(t.context.level=nt.Debug),document.removeEventListener("readystatechange",u)):document.addEventListener("readystatechange",u)};return u(),this}build(){return this.context.level===void 0&&this.detectLogLevel(),this.factory(this.context)}}function o3(){return new Ov(_v)}const Tv=o3().detectUser().setApp("@nextcloud/vue").build(),v0=hg();var a3=["input:not([inert]):not([inert] *)","select:not([inert]):not([inert] *)","textarea:not([inert]):not([inert] *)","a[href]:not([inert]):not([inert] *)","area[href]:not([inert]):not([inert] *)","button:not([inert]):not([inert] *)","[tabindex]:not(slot):not([inert]):not([inert] *)","audio[controls]:not([inert]):not([inert] *)","video[controls]:not([inert]):not([inert] *)",'[contenteditable]:not([contenteditable="false"]):not([inert]):not([inert] *)',"details>summary:first-of-type:not([inert]):not([inert] *)","details:not([inert]):not([inert] *)"],E0=a3.join(","),r3=typeof Element>"u",Ps=r3?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,C0=!r3&&Element.prototype.getRootNode?function(e){var t;return e==null||(t=e.getRootNode)===null||t===void 0?void 0:t.call(e)}:function(e){return e?.ownerDocument},B0=function(e,t){var u;t===void 0&&(t=!0);var s=e==null||(u=e.getAttribute)===null||u===void 0?void 0:u.call(e,"inert"),n=s===""||s==="true",i=n||t&&e&&(typeof e.closest=="function"?e.closest("[inert]"):B0(e.parentNode));return i},zv=function(e){var t,u=e==null||(t=e.getAttribute)===null||t===void 0?void 0:t.call(e,"contenteditable");return u===""||u==="true"},l3=function(e,t,u){if(B0(e))return[];var s=Array.prototype.slice.apply(e.querySelectorAll(E0));return t&&Ps.call(e,E0)&&s.unshift(e),s=s.filter(u),s},y0=function(e,t,u){for(var s=[],n=Array.from(e);n.length;){var i=n.shift();if(!B0(i,!1))if(i.tagName==="SLOT"){var o=i.assignedElements(),a=o.length?o:i.children,r=y0(a,!0,u);u.flatten?s.push.apply(s,r):s.push({scopeParent:i,candidates:r})}else{var m=Ps.call(i,E0);m&&u.filter(i)&&(t||!e.includes(i))&&s.push(i);var l=i.shadowRoot||typeof u.getShadowRoot=="function"&&u.getShadowRoot(i),g=!B0(l,!1)&&(!u.shadowRootFilter||u.shadowRootFilter(i));if(l&&g){var p=y0(l===!0?i.children:l.children,!0,u);u.flatten?s.push.apply(s,p):s.push({scopeParent:i,candidates:p})}else n.unshift.apply(n,i.children)}}return s},d3=function(e){return!isNaN(parseInt(e.getAttribute("tabindex"),10))},Cs=function(e){if(!e)throw new Error("No node provided");return e.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||zv(e))&&!d3(e)?0:e.tabIndex},Pv=function(e,t){var u=Cs(e);return u<0&&t&&!d3(e)?0:u},Rv=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},m3=function(e){return e.tagName==="INPUT"},Lv=function(e){return m3(e)&&e.type==="hidden"},jv=function(e){var t=e.tagName==="DETAILS"&&Array.prototype.slice.apply(e.children).some(function(u){return u.tagName==="SUMMARY"});return t},Iv=function(e,t){for(var u=0;usummary:first-of-type"),r=a?e.parentElement:e;if(Ps.call(r,"details:not([open]) *"))return!0;if(!u||u==="full"||u==="full-native"||u==="legacy-full"){if(typeof s=="function"){for(var m=e;e;){var l=e.parentElement,g=C0(e);if(l&&!l.shadowRoot&&s(l)===!0)return u4(e);e.assignedSlot?e=e.assignedSlot:!l&&g!==e.ownerDocument?e=g.host:e=l}e=m}if(Vv(e))return!e.getClientRects().length;if(u!=="legacy-full")return!0}else if(u==="non-zero-area")return u4(e);return!1},Hv=function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if(t.tagName==="FIELDSET"&&t.disabled){for(var u=0;u=0)},c3=function(e){var t=[],u=[];return e.forEach(function(s,n){var i=!!s.scopeParent,o=i?s.scopeParent:s,a=Pv(o,i),r=i?c3(s.candidates):o;a===0?i?t.push.apply(t,r):t.push(o):u.push({documentOrder:n,tabIndex:a,item:s,isScope:i,content:r})}),u.sort(Rv).reduce(function(s,n){return n.isScope?s.push.apply(s,n.content):s.push(n.content),s},[]).concat(t)},qv=function(e,t){t=t||{};var u;return t.getShadowRoot?u=y0([e],t.includeContainer,{filter:Aa.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:Gv}):u=l3(e,t.includeContainer,Aa.bind(null,t)),c3(u)},Kv=function(e,t){t=t||{};var u;return t.getShadowRoot?u=y0([e],t.includeContainer,{filter:x0.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):u=l3(e,t.includeContainer,x0.bind(null,t)),u},Ks=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return Ps.call(e,E0)===!1?!1:Aa(t,e)},Yv=a3.concat("iframe:not([inert]):not([inert] *)").join(","),Go=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return Ps.call(e,Yv)===!1?!1:x0(t,e)};function ba(e,t){(t==null||t>e.length)&&(t=e.length);for(var u=0,s=Array(t);u=e.length?{done:!0}:{done:!1,value:e[s++]}},e:function(r){throw r},f:n}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var i,o=!0,a=!1;return{s:function(){u=u.call(e)},n:function(){var r=u.next();return o=r.done,r},e:function(r){a=!0,i=r},f:function(){try{o||u.return==null||u.return()}finally{if(a)throw i}}}}function Xv(e,t,u){return(t=uE(t))in e?Object.defineProperty(e,t,{value:u,enumerable:!0,configurable:!0,writable:!0}):e[t]=u,e}function Jv(e){if(typeof Symbol<"u"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}function Qv(){throw new TypeError(`Invalid attempt to spread non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function n4(e,t){var u=Object.keys(e);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);t&&(s=s.filter(function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable})),u.push.apply(u,s)}return u}function i4(e){for(var t=1;t0?e[e.length-1]:null},activateTrap:function(e,t){var u=ku.getActiveTrap(e);t!==u&&ku.pauseTrap(e);var s=e.indexOf(t);s===-1||e.splice(s,1),e.push(t)},deactivateTrap:function(e,t){var u=e.indexOf(t);u!==-1&&e.splice(u,1),ku.unpauseTrap(e)},pauseTrap:function(e){var t=ku.getActiveTrap(e);t?._setPausedState(!0)},unpauseTrap:function(e){var t=ku.getActiveTrap(e);t&&!t._isManuallyPaused()&&t._setPausedState(!1)}},sE=function(e){return e.tagName&&e.tagName.toLowerCase()==="input"&&typeof e.select=="function"},nE=function(e){return e?.key==="Escape"||e?.key==="Esc"||e?.keyCode===27},Vn=function(e){return e?.key==="Tab"||e?.keyCode===9},iE=function(e){return Vn(e)&&!e.shiftKey},oE=function(e){return Vn(e)&&e.shiftKey},o4=function(e){return setTimeout(e,0)},_n=function(e){for(var t=arguments.length,u=new Array(t>1?t-1:0),s=1;s1&&arguments[1]!==void 0?arguments[1]:{},V=T.hasFallback,ue=V===void 0?!1:V,Z=T.params,ee=Z===void 0?[]:Z,se=n[w];if(typeof se=="function"&&(se=se.apply(void 0,eE(ee))),se===!0&&(se=void 0),!se){if(se===void 0||se===!1)return se;throw new Error("`".concat(w,"` was specified but was not a node, or did not return a node"))}var ce=se;if(typeof se=="string"){try{ce=u.querySelector(se)}catch(de){throw new Error("`".concat(w,'` appears to be an invalid selector; error="').concat(de.message,'"'))}if(!ce&&!ue)throw new Error("`".concat(w,"` as selector refers to no known node"))}return ce},l=function(w){var T=w.activeElement;return T?T.shadowRoot&&T.shadowRoot.activeElement!==null?l(T.shadowRoot):T:null},g=function(){var w=m("initialFocus",{hasFallback:!0});if(w===!1)return!1;if(w===void 0||w&&!Go(w,n.tabbableOptions)){var T=l(u);if(r(T)>=0)w=T;else{var V=i.tabbableGroups[0],ue=V&&V.firstTabbableNode;w=ue||m("fallbackFocus")}}else w===null&&(w=m("fallbackFocus"));if(!w)throw new Error("Your focus-trap needs to have at least one focusable element");return w},p=function(){if(i.containerGroups=i.containers.map(function(w){var T=qv(w,n.tabbableOptions),V=Kv(w,n.tabbableOptions),ue=T.length>0?T[0]:void 0,Z=T.length>0?T[T.length-1]:void 0,ee=V.find(function(de){return Ks(de)}),se=V.slice().reverse().find(function(de){return Ks(de)}),ce=!!T.find(function(de){return Cs(de)>0});return{container:w,tabbableNodes:T,focusableNodes:V,posTabIndexesFound:ce,firstTabbableNode:ue,lastTabbableNode:Z,firstDomTabbableNode:ee,lastDomTabbableNode:se,nextTabbableNode:function(de){var oe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,xe=T.indexOf(de);return xe<0?oe?V.slice(V.indexOf(de)+1).find(function(qe){return Ks(qe)}):V.slice(0,V.indexOf(de)).reverse().find(function(qe){return Ks(qe)}):T[xe+(oe?1:-1)]}}}),i.tabbableGroups=i.containerGroups.filter(function(w){return w.tabbableNodes.length>0}),i.tabbableGroups.length<=0&&!m("fallbackFocus"))throw new Error("Your focus-trap must have at least one container with at least one tabbable node in it at all times");if(i.containerGroups.find(function(w){return w.posTabIndexesFound})&&i.containerGroups.length>1)throw new Error("At least one node with a positive tabindex was found in one of your focus-trap's multiple containers. Positive tabindexes are only supported in single-container focus-traps.")},h=function(w){if(w!==!1&&w!==l(document)){if(!w||!w.focus){h(g());return}w.focus({preventScroll:!!n.preventScroll}),i.mostRecentlyFocusedNode=w,sE(w)&&w.select()}},y=function(w){var T=m("setReturnFocus",{params:[w]});return T||(T===!1?!1:w)},E=function(w){var T=w.target,V=w.event,ue=w.isBackward,Z=ue===void 0?!1:ue;T=T||Ti(V),p();var ee=null;if(i.tabbableGroups.length>0){var se=r(T,V),ce=se>=0?i.containerGroups[se]:void 0;if(se<0)Z?ee=i.tabbableGroups[i.tabbableGroups.length-1].lastTabbableNode:ee=i.tabbableGroups[0].firstTabbableNode;else if(Z){var de=i.tabbableGroups.findIndex(function(he){var We=he.firstTabbableNode;return T===We});if(de<0&&(ce.container===T||Go(T,n.tabbableOptions)&&!Ks(T,n.tabbableOptions)&&!ce.nextTabbableNode(T,!1))&&(de=se),de>=0){var oe=de===0?i.tabbableGroups.length-1:de-1,xe=i.tabbableGroups[oe];ee=Cs(T)>=0?xe.lastTabbableNode:xe.lastDomTabbableNode}else Vn(V)||(ee=ce.nextTabbableNode(T,!1))}else{var qe=i.tabbableGroups.findIndex(function(he){var We=he.lastTabbableNode;return T===We});if(qe<0&&(ce.container===T||Go(T,n.tabbableOptions)&&!Ks(T,n.tabbableOptions)&&!ce.nextTabbableNode(T))&&(qe=se),qe>=0){var Ne=qe===i.tabbableGroups.length-1?0:qe+1,Le=i.tabbableGroups[Ne];ee=Cs(T)>=0?Le.firstTabbableNode:Le.firstDomTabbableNode}else Vn(V)||(ee=ce.nextTabbableNode(T))}}else ee=m("fallbackFocus");return ee},F=function(w){var T=Ti(w);if(!(r(T,w)>=0)){if(_n(n.clickOutsideDeactivates,w)){o.deactivate({returnFocus:n.returnFocusOnDeactivate});return}_n(n.allowOutsideClick,w)||w.preventDefault()}},B=function(w){var T=Ti(w),V=r(T,w)>=0;if(V||T instanceof Document)V&&(i.mostRecentlyFocusedNode=T);else{w.stopImmediatePropagation();var ue,Z=!0;if(i.mostRecentlyFocusedNode)if(Cs(i.mostRecentlyFocusedNode)>0){var ee=r(i.mostRecentlyFocusedNode),se=i.containerGroups[ee].tabbableNodes;if(se.length>0){var ce=se.findIndex(function(de){return de===i.mostRecentlyFocusedNode});ce>=0&&(n.isKeyForward(i.recentNavEvent)?ce+1=0&&(ue=se[ce-1],Z=!1))}}else i.containerGroups.some(function(de){return de.tabbableNodes.some(function(oe){return Cs(oe)>0})})||(Z=!1);else Z=!1;Z&&(ue=E({target:i.mostRecentlyFocusedNode,isBackward:n.isKeyBackward(i.recentNavEvent)})),h(ue||i.mostRecentlyFocusedNode||g())}i.recentNavEvent=void 0},A=function(w){var T=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;i.recentNavEvent=w;var V=E({event:w,isBackward:T});V&&(Vn(w)&&w.preventDefault(),h(V))},O=function(w){(n.isKeyForward(w)||n.isKeyBackward(w))&&A(w,n.isKeyBackward(w))},S=function(w){nE(w)&&_n(n.escapeDeactivates,w)!==!1&&(w.preventDefault(),o.deactivate())},q=function(w){var T=Ti(w);r(T,w)>=0||_n(n.clickOutsideDeactivates,w)||_n(n.allowOutsideClick,w)||(w.preventDefault(),w.stopImmediatePropagation())},I=function(){if(i.active){ku.activateTrap(s,o);var w;return n.delayInitialFocus?w=new Promise(function(T){i.delayInitialFocusTimer=o4(function(){h(g()),T()})}):h(g()),u.addEventListener("focusin",B,!0),u.addEventListener("mousedown",F,{capture:!0,passive:!1}),u.addEventListener("touchstart",F,{capture:!0,passive:!1}),u.addEventListener("click",q,{capture:!0,passive:!1}),u.addEventListener("keydown",O,{capture:!0,passive:!1}),u.addEventListener("keydown",S),w}},Y=function(w){i.active&&!i.paused&&o._setSubtreeIsolation(!1),i.adjacentElements.clear(),i.alreadySilent.clear();var T=new Set,V=new Set,ue=s4(w),Z;try{for(ue.s();!(Z=ue.n()).done;){var ee=Z.value;T.add(ee);for(var se=typeof ShadowRoot<"u"&&ee.getRootNode()instanceof ShadowRoot,ce=ee;ce;){T.add(ce);var de=ce.parentElement,oe=[];de?oe=de.children:!de&&se&&(oe=ce.getRootNode().children,de=ce.getRootNode().host,se=typeof ShadowRoot<"u"&&de.getRootNode()instanceof ShadowRoot);var xe=s4(oe),qe;try{for(xe.s();!(qe=xe.n()).done;){var Ne=qe.value;V.add(Ne)}}catch(Le){xe.e(Le)}finally{xe.f()}ce=de}}}catch(Le){ue.e(Le)}finally{ue.f()}T.forEach(function(Le){V.delete(Le)}),i.adjacentElements=V},ne=function(){if(i.active)return u.removeEventListener("focusin",B,!0),u.removeEventListener("mousedown",F,!0),u.removeEventListener("touchstart",F,!0),u.removeEventListener("click",q,!0),u.removeEventListener("keydown",O,!0),u.removeEventListener("keydown",S),o},G=function(w){var T=i.mostRecentlyFocusedNode;if(T){var V=w.some(function(Z){var ee=Array.from(Z.removedNodes);return ee.some(function(se){return se===T||typeof se.contains=="function"&&se.contains(T)})});if(V&&i.containers.some(function(Z){return Z?.isConnected})){p();var ue=g();h(ue)}}},M=typeof window<"u"&&"MutationObserver"in window?new MutationObserver(G):void 0,ie=function(){M&&(M.disconnect(),i.active&&!i.paused&&i.containers.map(function(w){M.observe(w,{subtree:!0,childList:!0})}))};return o={get active(){return i.active},get paused(){return i.paused},activate:function(w){if(i.active)return this;var T=a(w,"onActivate"),V=a(w,"onPostActivate"),ue=a(w,"checkCanFocusTrap"),Z=ku.getActiveTrap(s),ee=!1;if(Z&&!Z.paused){var se;(se=Z._setSubtreeIsolation)===null||se===void 0||se.call(Z,!1),ee=!0}try{ue||p(),i.active=!0,i.paused=!1,i.nodeFocusedBeforeActivation=l(u),T?.({trap:o});var ce=function(){ue&&p();var oe=function(){o._setSubtreeIsolation(!0),ie(),V?.({trap:o})},xe=I();xe?xe.then(oe):oe()};if(ue)return ue(i.containers.concat()).then(ce,ce),this;ce()}catch(oe){if(Z===ku.getActiveTrap(s)&&ee){var de;(de=Z._setSubtreeIsolation)===null||de===void 0||de.call(Z,!0)}throw oe}return this},deactivate:function(w){if(!i.active)return this;var T=i4({onDeactivate:n.onDeactivate,onPostDeactivate:n.onPostDeactivate,checkCanReturnFocus:n.checkCanReturnFocus},w);clearTimeout(i.delayInitialFocusTimer),i.delayInitialFocusTimer=void 0,i.paused||o._setSubtreeIsolation(!1),i.alreadySilent.clear(),ne(),i.active=!1,i.paused=!1,ie(),ku.deactivateTrap(s,o);var V=a(T,"onDeactivate"),ue=a(T,"onPostDeactivate"),Z=a(T,"checkCanReturnFocus"),ee=a(T,"delayReturnFocus"),se=a(T,"returnFocus","returnFocusOnDeactivate");V?.({trap:o});var ce=function(){se&&h(y(i.nodeFocusedBeforeActivation)),ue?.({trap:o})},de=function(){ee&&se?o4(ce):ce()};return se&&Z?(Z(y(i.nodeFocusedBeforeActivation)).then(de,de),this):(de(),this)},pause:function(w){return i.active?(i.manuallyPaused=!0,this._setPausedState(!0,w)):this},unpause:function(w){return i.active?(i.manuallyPaused=!1,s[s.length-1]!==this?this:this._setPausedState(!1,w)):this},updateContainerElements:function(w){var T=[].concat(w).filter(Boolean);return i.containers=T.map(function(V){return typeof V=="string"?u.querySelector(V):V}),n.isolateSubtrees&&Y(i.containers),i.active&&(p(),i.paused||o._setSubtreeIsolation(!0)),ie(),this}},Object.defineProperties(o,{_isManuallyPaused:{value:function(){return i.manuallyPaused}},_setPausedState:{value:function(w,T){if(i.paused===w)return this;if(i.paused=w,w){var V=a(T,"onPause"),ue=a(T,"onPostPause");V?.({trap:o}),ne(),o._setSubtreeIsolation(!1),ie(),ue?.({trap:o})}else{var Z=a(T,"onUnpause"),ee=a(T,"onPostUnpause");Z?.({trap:o});var se=function(){p();var ce=function(){o._setSubtreeIsolation(!0),ie(),ee?.({trap:o})},de=I();de?de.then(ce):ce()};se()}return this}},_setSubtreeIsolation:{value:function(w){n.isolateSubtrees&&i.adjacentElements.forEach(function(T){var V;w?n.isolateSubtrees==="aria-hidden"?((T.ariaHidden==="true"||((V=T.getAttribute("aria-hidden"))===null||V===void 0?void 0:V.toLowerCase())==="true")&&i.alreadySilent.add(T),T.setAttribute("aria-hidden","true")):((T.inert||T.hasAttribute("inert"))&&i.alreadySilent.add(T),T.setAttribute("inert",!0)):i.alreadySilent.has(T)||(n.isolateSubtrees==="aria-hidden"?T.removeAttribute("aria-hidden"):T.removeAttribute("inert"))})}}}),o.updateContainerElements(e),o};function ii(){return window._nc_focus_trap??=[],window._nc_focus_trap}function rE(){let e=[];return{pause(){e=[...ii()];for(const t of e)t.pause()},unpause(){if(e.length===ii().length)for(const t of e)t.unpause();e=[]}}}function lE(e,t={}){const u=rE();_u(e,()=>{zt(t.disabled)||(zt(e)?u.pause():u.unpause())}),gn(()=>{u.unpause()})}window._nc_vue_element_id=window._nc_vue_element_id??0;function _s(){return`nc-vue-${window._nc_vue_element_id++}`}const dE=["top","right","bottom","left"],a4=["start","end"],r4=dE.reduce((e,t)=>e.concat(t,t+"-"+a4[0],t+"-"+a4[1]),[]),ss=Math.min,Tu=Math.max,A0=Math.round,zi=Math.floor,zu=e=>({x:e,y:e}),mE={left:"right",right:"left",bottom:"top",top:"bottom"};function p3(e,t,u){return Tu(e,ss(t,u))}function ju(e,t){return typeof e=="function"?e(t):e}function Cu(e){return e.split("-")[0]}function Qt(e){return e.split("-")[1]}function ir(e){return e==="x"?"y":"x"}function or(e){return e==="y"?"height":"width"}function hu(e){const t=e[0];return t==="t"||t==="b"?"y":"x"}function ar(e){return ir(hu(e))}function h3(e,t,u){u===void 0&&(u=!1);const s=Qt(e),n=ar(e),i=or(n);let o=n==="x"?s===(u?"end":"start")?"right":"left":s==="start"?"bottom":"top";return t.reference[i]>t.floating[i]&&(o=w0(o)),[o,w0(o)]}function cE(e){const t=w0(e);return[b0(e),t,b0(t)]}function b0(e){return e.includes("start")?e.replace("start","end"):e.replace("end","start")}const l4=["left","right"],d4=["right","left"],gE=["top","bottom"],fE=["bottom","top"];function pE(e,t,u){switch(e){case"top":case"bottom":return u?t?d4:l4:t?l4:d4;case"left":case"right":return t?gE:fE;default:return[]}}function hE(e,t,u,s){const n=Qt(e);let i=pE(Cu(e),u==="start",s);return n&&(i=i.map(o=>o+"-"+n),t&&(i=i.concat(i.map(b0)))),i}function w0(e){const t=Cu(e);return mE[t]+e.slice(t.length)}function vE(e){var t,u,s,n;return{top:(t=e.top)!=null?t:0,right:(u=e.right)!=null?u:0,bottom:(s=e.bottom)!=null?s:0,left:(n=e.left)!=null?n:0}}function v3(e){return typeof e!="number"?vE(e):{top:e,right:e,bottom:e,left:e}}function Os(e){const{x:t,y:u,width:s,height:n}=e;return{width:s,height:n,top:u,left:t,right:t+s,bottom:u+n,x:t,y:u}}function m4(e,t,u){let{reference:s,floating:n}=e;const i=hu(t),o=ar(t),a=or(o),r=Cu(t),m=i==="y",l=s.x+s.width/2-n.width/2,g=s.y+s.height/2-n.height/2,p=s[a]/2-n[a]/2;let h;switch(r){case"top":h={x:l,y:s.y-n.height};break;case"bottom":h={x:l,y:s.y+s.height};break;case"right":h={x:s.x+s.width,y:g};break;case"left":h={x:s.x-n.width,y:g};break;default:h={x:s.x,y:s.y}}const y=Qt(t);return y&&(h[o]+=p*(y==="end"?1:-1)*(u&&m?-1:1)),h}async function EE(e,t){var u;t===void 0&&(t={});const{x:s,y:n,platform:i,rects:o,elements:a,strategy:r}=e,{boundary:m="clippingAncestors",rootBoundary:l="viewport",elementContext:g="floating",altBoundary:p=!1,padding:h=0}=ju(t,e),y=v3(h),E=a[p?g==="floating"?"reference":"floating":g],F=Os(await i.getClippingRect({element:(u=await(i.isElement==null?void 0:i.isElement(E)))==null||u?E:E.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(a.floating)),boundary:m,rootBoundary:l,strategy:r})),B=g==="floating"?{x:s,y:n,width:o.floating.width,height:o.floating.height}:o.reference,A=await(i.getOffsetParent==null?void 0:i.getOffsetParent(a.floating)),O=await(i.isElement==null?void 0:i.isElement(A))&&await(i.getScale==null?void 0:i.getScale(A))||{x:1,y:1},S=Os(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:a,rect:B,offsetParent:A,strategy:r}):B);return{top:(F.top-S.top+y.top)/O.y,bottom:(S.bottom-F.bottom+y.bottom)/O.y,left:(F.left-S.left+y.left)/O.x,right:(S.right-F.right+y.right)/O.x}}const CE=50,E3=async(e,t,u)=>{const{placement:s="bottom",strategy:n="absolute",middleware:i=[],platform:o}=u,a=o.detectOverflow?o:{...o,detectOverflow:EE},r=await(o.isRTL==null?void 0:o.isRTL(t));let m=await o.getElementRects({reference:e,floating:t,strategy:n}),{x:l,y:g}=m4(m,s,r),p=s,h=0;const y={};for(let E=0;E({name:"arrow",options:e,async fn(t){const{x:u,y:s,placement:n,rects:i,platform:o,elements:a,middlewareData:r}=t,{element:m,padding:l=0}=ju(e,t)||{};if(m==null)return{};const g=v3(l),p={x:u,y:s},h=ar(n),y=or(h),E=await o.getDimensions(m),F=h==="y",B=F?"top":"left",A=F?"bottom":"right",O=F?"clientHeight":"clientWidth",S=i.reference[y]+i.reference[h]-p[h]-i.floating[y],q=p[h]-i.reference[h],I=await(o.getOffsetParent==null?void 0:o.getOffsetParent(m));let Y=I?I[O]:0;(!Y||!await(o.isElement==null?void 0:o.isElement(I)))&&(Y=a.floating[O]||i.floating[y]);const ne=S/2-q/2,G=Y/2-E[y]/2-1,M=ss(g[B],G),ie=ss(g[A],G),w=Y-E[y]-ie,T=Y/2-E[y]/2+ne,V=p3(M,T,w),ue=!r.arrow&&Qt(n)!=null&&T!==V&&i.reference[y]/2-(TQt(s)===e),...u.filter(s=>Qt(s)!==e)]:u.filter(s=>Cu(s)===s)).filter(s=>e?Qt(s)===e||(t?b0(s)!==s:!1):!0)}const xE=function(e){return e===void 0&&(e={}),{name:"autoPlacement",options:e,async fn(t){var u,s,n;const{rects:i,middlewareData:o,placement:a,platform:r,elements:m}=t,{crossAxis:l=!1,alignment:g,allowedPlacements:p=r4,autoAlignment:h=!0,...y}=ju(e,t),E=g!==void 0||p===r4?yE(g||null,h,p):p,F=((u=o.autoPlacement)==null?void 0:u.index)||0,B=E[F];if(B==null)return{};if(a!==B)return{reset:{placement:E[0]}};const A=await r.detectOverflow(t,y),O=h3(B,i,await(r.isRTL==null?void 0:r.isRTL(m.floating))),S=[A[Cu(B)],A[O[0]],A[O[1]]],q=[...((s=o.autoPlacement)==null?void 0:s.overflows)||[],{placement:B,overflows:S}],I=E[F+1];if(I)return{data:{index:F+1,overflows:q},reset:{placement:I}};const Y=q.map(G=>{const M=Qt(G.placement);return[G.placement,M&&l?G.overflows.slice(0,2).reduce((ie,w)=>ie+w,0):G.overflows[0],G.overflows]}).sort((G,M)=>G[1]-M[1]),ne=((n=Y.filter(G=>G[2].slice(0,Qt(G[0])?2:3).every(M=>M<=0))[0])==null?void 0:n[0])||Y[0][0];return ne!==a?{data:{index:F+1,overflows:q},reset:{placement:ne}}:{}}}},C3=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var u,s;const{placement:n,middlewareData:i,rects:o,initialPlacement:a,platform:r,elements:m}=t,{mainAxis:l=!0,crossAxis:g=!0,fallbackPlacements:p,fallbackStrategy:h="bestFit",fallbackAxisSideDirection:y="none",flipAlignment:E=!0,...F}=ju(e,t);if((u=i.arrow)!=null&&u.alignmentOffset)return{};const B=Cu(n),A=hu(a),O=Cu(a)===a,S=await(r.isRTL==null?void 0:r.isRTL(m.floating)),q=p||(O||!E?[w0(a)]:cE(a)),I=y!=="none";!p&&I&&q.push(...hE(a,E,y,S));const Y=[a,...q],ne=await r.detectOverflow(t,F),G=[];let M=((s=i.flip)==null?void 0:s.overflows)||[];if(l&&G.push(ne[B]),g){const V=h3(n,o,S);G.push(ne[V[0]],ne[V[1]])}if(M=[...M,{placement:n,overflows:G}],!G.every(V=>V<=0)){var ie,w;const V=(((ie=i.flip)==null?void 0:ie.index)||0)+1,ue=Y[V];if(ue&&(!(g==="alignment"&&A!==hu(ue))||M.every(ee=>hu(ee.placement)===A?ee.overflows[0]>0:!0)))return{data:{index:V,overflows:M},reset:{placement:ue}};let Z=(w=M.filter(ee=>ee.overflows[0]<=0).sort((ee,se)=>ee.overflows[1]-se.overflows[1])[0])==null?void 0:w.placement;if(!Z)switch(h){case"bestFit":{var T;const ee=(T=M.filter(se=>{if(I){const ce=hu(se.placement);return ce===A||ce==="y"}return!0}).map(se=>[se.placement,se.overflows.filter(ce=>ce>0).reduce((ce,de)=>ce+de,0)]).sort((se,ce)=>se[1]-ce[1])[0])==null?void 0:T[0];ee&&(Z=ee);break}case"initialPlacement":Z=a;break}if(n!==Z)return{reset:{placement:Z}}}return{}}}},B3=new Set(["left","top"]);async function AE(e,t){const{placement:u,platform:s,elements:n}=e,i=await(s.isRTL==null?void 0:s.isRTL(n.floating)),o=Cu(u),a=Qt(u),r=hu(u)==="y",m=B3.has(o)?-1:1,l=i&&r?-1:1,g=ju(t,e);let{mainAxis:p,crossAxis:h,alignmentAxis:y}=typeof g=="number"?{mainAxis:g,crossAxis:0,alignmentAxis:null}:{mainAxis:g.mainAxis||0,crossAxis:g.crossAxis||0,alignmentAxis:g.alignmentAxis};return a&&typeof y=="number"&&(h=a==="end"?y*-1:y),r?{x:h*l,y:p*m}:{x:p*m,y:h*l}}const y3=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var u,s;const{x:n,y:i,placement:o,middlewareData:a}=t,r=await AE(t,e);return o===((u=a.offset)==null?void 0:u.placement)&&(s=a.arrow)!=null&&s.alignmentOffset?{}:{x:n+r.x,y:i+r.y,data:{...r,placement:o}}}}},x3=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:u,y:s,placement:n,platform:i}=t,{mainAxis:o=!0,crossAxis:a=!1,limiter:r={fn:A=>{let{x:O,y:S}=A;return{x:O,y:S}}},...m}=ju(e,t),l={x:u,y:s},g=await i.detectOverflow(t,m),p=hu(n),h=ir(p);let y=l[h],E=l[p];const F=(A,O)=>p3(O+g[A==="y"?"top":"left"],O,O-g[A==="y"?"bottom":"right"]);o&&(y=F(h,y)),a&&(E=F(p,E));const B=r.fn({...t,[h]:y,[p]:E});return{...B,data:{x:B.x-u,y:B.y-s,enabled:{[h]:o,[p]:a}}}}}},bE=function(e){return e===void 0&&(e={}),{options:e,fn(t){var u,s;const{x:n,y:i,placement:o,rects:a,middlewareData:r}=t,{offset:m=0,mainAxis:l=!0,crossAxis:g=!0}=ju(e,t),p={x:n,y:i},h=hu(o),y=ir(h);let E=p[y],F=p[h];const B=ju(m,t),A=typeof B=="number"?{mainAxis:B,crossAxis:0}:{mainAxis:(u=B.mainAxis)!=null?u:0,crossAxis:(s=B.crossAxis)!=null?s:0};if(l){const q=y==="y"?"height":"width",I=a.reference[y]-a.floating[q]+A.mainAxis,Y=a.reference[y]+a.reference[q]-A.mainAxis;EY&&(E=Y)}if(g){var O,S;const q=y==="y"?"width":"height",I=B3.has(Cu(o)),Y=a.reference[h]-a.floating[q]+(I&&((O=r.offset)==null?void 0:O[h])||0)+(I?0:A.crossAxis),ne=a.reference[h]+a.reference[q]+(I?0:((S=r.offset)==null?void 0:S[h])||0)-(I?A.crossAxis:0);Fne&&(F=ne)}return{[y]:E,[h]:F}}}},wE=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){const{placement:u,rects:s,platform:n,elements:i}=t,{apply:o=()=>{},...a}=ju(e,t),r=await n.detectOverflow(t,a),m=Cu(u),l=Qt(u),g=hu(u)==="y",{width:p,height:h}=s.floating;let y,E;m==="top"||m==="bottom"?(y=m,E=l===(await(n.isRTL==null?void 0:n.isRTL(i.floating))?"start":"end")?"left":"right"):(E=m,y=l==="end"?"top":"bottom");const F=h-r.top-r.bottom,B=p-r.left-r.right,A=ss(h-r[y],F),O=ss(p-r[E],B),S=t.middlewareData.shift,q=!S;let I=A,Y=O;S!=null&&S.enabled.x&&(Y=B),S!=null&&S.enabled.y&&(I=F),q&&!l&&(g?Y=p-2*Tu(r.left,r.right):I=h-2*Tu(r.top,r.bottom)),await o({...t,availableWidth:Y,availableHeight:I});const ne=await n.getDimensions(i.floating);return p!==ne.width||h!==ne.height?{reset:{rects:!0}}:{}}}};function qt(e){var t;return((t=e.ownerDocument)==null?void 0:t.defaultView)||window}function vu(e){return qt(e).getComputedStyle(e)}const c4=Math.min,Wn=Math.max,D0=Math.round;function A3(e){const t=vu(e);let u=parseFloat(t.width),s=parseFloat(t.height);const n=e.offsetWidth,i=e.offsetHeight,o=D0(u)!==n||D0(s)!==i;return o&&(u=n,s=i),{width:u,height:s,fallback:o}}function ns(e){return w3(e)?(e.nodeName||"").toLowerCase():""}let Pi;function b3(){if(Pi)return Pi;const e=navigator.userAgentData;return e&&Array.isArray(e.brands)?(Pi=e.brands.map((t=>t.brand+"/"+t.version)).join(" "),Pi):navigator.userAgent}function Eu(e){return e instanceof qt(e).HTMLElement}function Qu(e){return e instanceof qt(e).Element}function w3(e){return e instanceof qt(e).Node}function g4(e){return typeof ShadowRoot>"u"?!1:e instanceof qt(e).ShadowRoot||e instanceof ShadowRoot}function J0(e){const{overflow:t,overflowX:u,overflowY:s,display:n}=vu(e);return/auto|scroll|overlay|hidden|clip/.test(t+s+u)&&!["inline","contents"].includes(n)}function DE(e){return["table","td","th"].includes(ns(e))}function wa(e){const t=/firefox/i.test(b3()),u=vu(e),s=u.backdropFilter||u.WebkitBackdropFilter;return u.transform!=="none"||u.perspective!=="none"||!!s&&s!=="none"||t&&u.willChange==="filter"||t&&!!u.filter&&u.filter!=="none"||["transform","perspective"].some((n=>u.willChange.includes(n)))||["paint","layout","strict","content"].some((n=>{const i=u.contain;return i!=null&&i.includes(n)}))}function D3(){return!/^((?!chrome|android).)*safari/i.test(b3())}function rr(e){return["html","body","#document"].includes(ns(e))}function F3(e){return Qu(e)?e:e.contextElement}const k3={x:1,y:1};function dn(e){const t=F3(e);if(!Eu(t))return k3;const u=t.getBoundingClientRect(),{width:s,height:n,fallback:i}=A3(t);let o=(i?D0(u.width):u.width)/s,a=(i?D0(u.height):u.height)/n;return o&&Number.isFinite(o)||(o=1),a&&Number.isFinite(a)||(a=1),{x:o,y:a}}function oi(e,t,u,s){var n,i;t===void 0&&(t=!1),u===void 0&&(u=!1);const o=e.getBoundingClientRect(),a=F3(e);let r=k3;t&&(s?Qu(s)&&(r=dn(s)):r=dn(e));const m=a?qt(a):window,l=!D3()&&u;let g=(o.left+(l&&((n=m.visualViewport)==null?void 0:n.offsetLeft)||0))/r.x,p=(o.top+(l&&((i=m.visualViewport)==null?void 0:i.offsetTop)||0))/r.y,h=o.width/r.x,y=o.height/r.y;if(a){const E=qt(a),F=s&&Qu(s)?qt(s):s;let B=E.frameElement;for(;B&&s&&F!==E;){const A=dn(B),O=B.getBoundingClientRect(),S=getComputedStyle(B);O.x+=(B.clientLeft+parseFloat(S.paddingLeft))*A.x,O.y+=(B.clientTop+parseFloat(S.paddingTop))*A.y,g*=A.x,p*=A.y,h*=A.x,y*=A.y,g+=O.x,p+=O.y,B=qt(B).frameElement}}return{width:h,height:y,top:p,right:g+h,bottom:p+y,left:g,x:g,y:p}}function es(e){return((w3(e)?e.ownerDocument:e.document)||window.document).documentElement}function Q0(e){return Qu(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function S3(e){return oi(es(e)).left+Q0(e).scrollLeft}function ai(e){if(ns(e)==="html")return e;const t=e.assignedSlot||e.parentNode||g4(e)&&e.host||es(e);return g4(t)?t.host:t}function N3(e){const t=ai(e);return rr(t)?t.ownerDocument.body:Eu(t)&&J0(t)?t:N3(t)}function F0(e,t){var u;t===void 0&&(t=[]);const s=N3(e),n=s===((u=e.ownerDocument)==null?void 0:u.body),i=qt(s);return n?t.concat(i,i.visualViewport||[],J0(s)?s:[]):t.concat(s,F0(s))}function f4(e,t,u){return t==="viewport"?Os((function(s,n){const i=qt(s),o=es(s),a=i.visualViewport;let r=o.clientWidth,m=o.clientHeight,l=0,g=0;if(a){r=a.width,m=a.height;const p=D3();(p||!p&&n==="fixed")&&(l=a.offsetLeft,g=a.offsetTop)}return{width:r,height:m,x:l,y:g}})(e,u)):Qu(t)?Os((function(s,n){const i=oi(s,!0,n==="fixed"),o=i.top+s.clientTop,a=i.left+s.clientLeft,r=Eu(s)?dn(s):{x:1,y:1};return{width:s.clientWidth*r.x,height:s.clientHeight*r.y,x:a*r.x,y:o*r.y}})(t,u)):Os((function(s){const n=es(s),i=Q0(s),o=s.ownerDocument.body,a=Wn(n.scrollWidth,n.clientWidth,o.scrollWidth,o.clientWidth),r=Wn(n.scrollHeight,n.clientHeight,o.scrollHeight,o.clientHeight);let m=-i.scrollLeft+S3(s);const l=-i.scrollTop;return vu(o).direction==="rtl"&&(m+=Wn(n.clientWidth,o.clientWidth)-a),{width:a,height:r,x:m,y:l}})(es(e)))}function p4(e){return Eu(e)&&vu(e).position!=="fixed"?e.offsetParent:null}function h4(e){const t=qt(e);let u=p4(e);for(;u&&DE(u)&&vu(u).position==="static";)u=p4(u);return u&&(ns(u)==="html"||ns(u)==="body"&&vu(u).position==="static"&&!wa(u))?t:u||(function(s){let n=ai(s);for(;Eu(n)&&!rr(n);){if(wa(n))return n;n=ai(n)}return null})(e)||t}function FE(e,t,u){const s=Eu(t),n=es(t),i=oi(e,!0,u==="fixed",t);let o={scrollLeft:0,scrollTop:0};const a={x:0,y:0};if(s||!s&&u!=="fixed")if((ns(t)!=="body"||J0(n))&&(o=Q0(t)),Eu(t)){const r=oi(t,!0);a.x=r.x+t.clientLeft,a.y=r.y+t.clientTop}else n&&(a.x=S3(n));return{x:i.left+o.scrollLeft-a.x,y:i.top+o.scrollTop-a.y,width:i.width,height:i.height}}const kE={getClippingRect:function(e){let{element:t,boundary:u,rootBoundary:s,strategy:n}=e;const i=u==="clippingAncestors"?(function(m,l){const g=l.get(m);if(g)return g;let p=F0(m).filter((F=>Qu(F)&&ns(F)!=="body")),h=null;const y=vu(m).position==="fixed";let E=y?ai(m):m;for(;Qu(E)&&!rr(E);){const F=vu(E),B=wa(E);(y?B||h:B||F.position!=="static"||!h||!["absolute","fixed"].includes(h.position))?h=F:p=p.filter((A=>A!==E)),E=ai(E)}return l.set(m,p),p})(t,this._c):[].concat(u),o=[...i,s],a=o[0],r=o.reduce(((m,l)=>{const g=f4(t,l,n);return m.top=Wn(g.top,m.top),m.right=c4(g.right,m.right),m.bottom=c4(g.bottom,m.bottom),m.left=Wn(g.left,m.left),m}),f4(t,a,n));return{width:r.right-r.left,height:r.bottom-r.top,x:r.left,y:r.top}},convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{rect:t,offsetParent:u,strategy:s}=e;const n=Eu(u),i=es(u);if(u===i)return t;let o={scrollLeft:0,scrollTop:0},a={x:1,y:1};const r={x:0,y:0};if((n||!n&&s!=="fixed")&&((ns(u)!=="body"||J0(i))&&(o=Q0(u)),Eu(u))){const m=oi(u);a=dn(u),r.x=m.x+u.clientLeft,r.y=m.y+u.clientTop}return{width:t.width*a.x,height:t.height*a.y,x:t.x*a.x-o.scrollLeft*a.x+r.x,y:t.y*a.y-o.scrollTop*a.y+r.y}},isElement:Qu,getDimensions:function(e){return Eu(e)?A3(e):e.getBoundingClientRect()},getOffsetParent:h4,getDocumentElement:es,getScale:dn,async getElementRects(e){let{reference:t,floating:u,strategy:s}=e;const n=this.getOffsetParent||h4,i=this.getDimensions;return{reference:FE(t,await n(u),s),floating:{x:0,y:0,...await i(u)}}},getClientRects:e=>Array.from(e.getClientRects()),isRTL:e=>vu(e).direction==="rtl"},SE=(e,t,u)=>{const s=new Map,n={platform:kE,...u},i={...n.platform,_c:s};return E3(e,t,{...n,platform:i})},ts={disabled:!1,distance:5,skidding:0,container:"body",boundary:void 0,instantMove:!1,disposeTimeout:150,popperTriggers:[],strategy:"absolute",preventOverflow:!0,flip:!0,shift:!0,overflowPadding:0,arrowPadding:0,arrowOverflow:!0,autoHideOnMousedown:!1,themes:{tooltip:{placement:"top",triggers:["hover","focus","touch"],hideTriggers:e=>[...e,"click"],delay:{show:200,hide:0},handleResize:!1,html:!1,loadingContent:"..."},dropdown:{placement:"bottom",triggers:["click"],delay:0,handleResize:!0,autoHide:!0},menu:{$extend:"dropdown",triggers:["hover","focus"],popperTriggers:["hover"],delay:{show:0,hide:400}}}};function NE(e,t){let u=ts.themes[e]||{},s;do s=u[t],typeof s>"u"?u.$extend?u=ts.themes[u.$extend]||{}:(u=null,s=ts[t]):u=null;while(u);return s}function _E(e){const t=[e];let u=ts.themes[e]||{};do u.$extend&&!u.$resetCss?(t.push(u.$extend),u=ts.themes[u.$extend]||{}):u=null;while(u);return t.map(s=>`v-popper--theme-${s}`)}function v4(e){const t=[e];let u=ts.themes[e]||{};do u.$extend?(t.push(u.$extend),u=ts.themes[u.$extend]||{}):u=null;while(u);return t}let ri=!1;if(typeof window<"u"){ri=!1;try{const e=Object.defineProperty({},"passive",{get(){ri=!0}});window.addEventListener("test",null,e)}catch{}}let _3=!1;typeof window<"u"&&typeof navigator<"u"&&(_3=/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream);const OE=["auto","top","bottom","left","right"].reduce((e,t)=>e.concat([t,`${t}-start`,`${t}-end`]),[]),E4={hover:"mouseenter",focus:"focus",click:"click",touch:"touchstart",pointer:"pointerdown"},C4={hover:"mouseleave",focus:"blur",click:"click",touch:"touchend",pointer:"pointerup"};function B4(e,t){const u=e.indexOf(t);u!==-1&&e.splice(u,1)}function qo(){return new Promise(e=>requestAnimationFrame(()=>{requestAnimationFrame(e)}))}const Xt=[];let cs=null;const y4={};function x4(e){let t=y4[e];return t||(t=y4[e]=[]),t}let Da=function(){};typeof window<"u"&&(Da=window.Element);function be(e){return function(t){return NE(t.theme,e)}}const Ko="__floating-vue__popper",O3=()=>tu({name:"VPopper",provide(){return{[Ko]:{parentPopper:this}}},inject:{[Ko]:{default:null}},props:{theme:{type:String,required:!0},targetNodes:{type:Function,required:!0},referenceNode:{type:Function,default:null},popperNode:{type:Function,required:!0},shown:{type:Boolean,default:!1},showGroup:{type:String,default:null},ariaId:{default:null},disabled:{type:Boolean,default:be("disabled")},positioningDisabled:{type:Boolean,default:be("positioningDisabled")},placement:{type:String,default:be("placement"),validator:e=>OE.includes(e)},delay:{type:[String,Number,Object],default:be("delay")},distance:{type:[Number,String],default:be("distance")},skidding:{type:[Number,String],default:be("skidding")},triggers:{type:Array,default:be("triggers")},showTriggers:{type:[Array,Function],default:be("showTriggers")},hideTriggers:{type:[Array,Function],default:be("hideTriggers")},popperTriggers:{type:Array,default:be("popperTriggers")},popperShowTriggers:{type:[Array,Function],default:be("popperShowTriggers")},popperHideTriggers:{type:[Array,Function],default:be("popperHideTriggers")},container:{type:[String,Object,Da,Boolean],default:be("container")},boundary:{type:[String,Da],default:be("boundary")},strategy:{type:String,validator:e=>["absolute","fixed"].includes(e),default:be("strategy")},autoHide:{type:[Boolean,Function],default:be("autoHide")},handleResize:{type:Boolean,default:be("handleResize")},instantMove:{type:Boolean,default:be("instantMove")},eagerMount:{type:Boolean,default:be("eagerMount")},popperClass:{type:[String,Array,Object],default:be("popperClass")},computeTransformOrigin:{type:Boolean,default:be("computeTransformOrigin")},autoMinSize:{type:Boolean,default:be("autoMinSize")},autoSize:{type:[Boolean,String],default:be("autoSize")},autoMaxSize:{type:Boolean,default:be("autoMaxSize")},autoBoundaryMaxSize:{type:Boolean,default:be("autoBoundaryMaxSize")},preventOverflow:{type:Boolean,default:be("preventOverflow")},overflowPadding:{type:[Number,String],default:be("overflowPadding")},arrowPadding:{type:[Number,String],default:be("arrowPadding")},arrowOverflow:{type:Boolean,default:be("arrowOverflow")},flip:{type:Boolean,default:be("flip")},shift:{type:Boolean,default:be("shift")},shiftCrossAxis:{type:Boolean,default:be("shiftCrossAxis")},noAutoFocus:{type:Boolean,default:be("noAutoFocus")},disposeTimeout:{type:Number,default:be("disposeTimeout")}},emits:{show:()=>!0,hide:()=>!0,"update:shown":e=>!0,"apply-show":()=>!0,"apply-hide":()=>!0,"close-group":()=>!0,"close-directive":()=>!0,"auto-hide":()=>!0,resize:()=>!0},data(){return{isShown:!1,isMounted:!1,skipTransition:!1,classes:{showFrom:!1,showTo:!1,hideFrom:!1,hideTo:!0},result:{x:0,y:0,placement:"",strategy:this.strategy,arrow:{x:0,y:0,centerOffset:0},transformOrigin:null},randomId:`popper_${[Math.random(),Date.now()].map(e=>e.toString(36).substring(2,10)).join("_")}`,shownChildren:new Set,lastAutoHide:!0,pendingHide:!1,containsGlobalTarget:!1,isDisposed:!0,mouseDownContains:!1}},computed:{popperId(){return this.ariaId!=null?this.ariaId:this.randomId},shouldMountContent(){return this.eagerMount||this.isMounted},slotData(){return{popperId:this.popperId,isShown:this.isShown,shouldMountContent:this.shouldMountContent,skipTransition:this.skipTransition,autoHide:typeof this.autoHide=="function"?this.lastAutoHide:this.autoHide,show:this.show,hide:this.hide,handleResize:this.handleResize,onResize:this.onResize,classes:{...this.classes,popperClass:this.popperClass},result:this.positioningDisabled?null:this.result,attrs:this.$attrs}},parentPopper(){var e;return(e=this[Ko])==null?void 0:e.parentPopper},hasPopperShowTriggerHover(){var e,t;return((e=this.popperTriggers)==null?void 0:e.includes("hover"))||((t=this.popperShowTriggers)==null?void 0:t.includes("hover"))}},watch:{shown:"$_autoShowHide",disabled(e){e?this.dispose():this.init()},async container(){this.isShown&&(this.$_ensureTeleport(),await this.$_computePosition())},triggers:{handler:"$_refreshListeners",deep:!0},positioningDisabled:"$_refreshListeners",...["placement","distance","skidding","boundary","strategy","overflowPadding","arrowPadding","preventOverflow","shift","shiftCrossAxis","flip"].reduce((e,t)=>(e[t]="$_computePosition",e),{})},created(){this.autoMinSize&&console.warn('[floating-vue] `autoMinSize` option is deprecated. Use `autoSize="min"` instead.'),this.autoMaxSize&&console.warn("[floating-vue] `autoMaxSize` option is deprecated. Use `autoBoundaryMaxSize` instead.")},mounted(){this.init(),this.$_detachPopperNode()},activated(){this.$_autoShowHide()},deactivated(){this.hide()},beforeUnmount(){this.dispose()},methods:{show({event:e=null,skipDelay:t=!1,force:u=!1}={}){var s,n;(s=this.parentPopper)!=null&&s.lockedChild&&this.parentPopper.lockedChild!==this||(this.pendingHide=!1,(u||!this.disabled)&&(((n=this.parentPopper)==null?void 0:n.lockedChild)===this&&(this.parentPopper.lockedChild=null),this.$_scheduleShow(e,t),this.$emit("show"),this.$_showFrameLocked=!0,requestAnimationFrame(()=>{this.$_showFrameLocked=!1})),this.$emit("update:shown",!0))},hide({event:e=null,skipDelay:t=!1}={}){var u;if(!this.$_hideInProgress){if(this.shownChildren.size>0){this.pendingHide=!0;return}if(this.hasPopperShowTriggerHover&&this.$_isAimingPopper()){this.parentPopper&&(this.parentPopper.lockedChild=this,clearTimeout(this.parentPopper.lockedChildTimer),this.parentPopper.lockedChildTimer=setTimeout(()=>{this.parentPopper.lockedChild===this&&(this.parentPopper.lockedChild.hide({skipDelay:t}),this.parentPopper.lockedChild=null)},1e3));return}((u=this.parentPopper)==null?void 0:u.lockedChild)===this&&(this.parentPopper.lockedChild=null),this.pendingHide=!1,this.$_scheduleHide(e,t),this.$emit("hide"),this.$emit("update:shown",!1)}},init(){var e;this.isDisposed&&(this.isDisposed=!1,this.isMounted=!1,this.$_events=[],this.$_preventShow=!1,this.$_referenceNode=((e=this.referenceNode)==null?void 0:e.call(this))??this.$el,this.$_targetNodes=this.targetNodes().filter(t=>t.nodeType===t.ELEMENT_NODE),this.$_popperNode=this.popperNode(),this.$_innerNode=this.$_popperNode.querySelector(".v-popper__inner"),this.$_arrowNode=this.$_popperNode.querySelector(".v-popper__arrow-container"),this.$_swapTargetAttrs("title","data-original-title"),this.$_detachPopperNode(),this.triggers.length&&this.$_addEventListeners(),this.shown&&this.show())},dispose(){this.isDisposed||(this.isDisposed=!0,this.$_removeEventListeners(),this.hide({skipDelay:!0}),this.$_detachPopperNode(),this.isMounted=!1,this.isShown=!1,this.$_updateParentShownChildren(!1),this.$_swapTargetAttrs("data-original-title","title"))},async onResize(){this.isShown&&(await this.$_computePosition(),this.$emit("resize"))},async $_computePosition(){if(this.isDisposed||this.positioningDisabled)return;const e={strategy:this.strategy,middleware:[]};(this.distance||this.skidding)&&e.middleware.push(y3({mainAxis:this.distance,crossAxis:this.skidding}));const t=this.placement.startsWith("auto");if(t?e.middleware.push(xE({alignment:this.placement.split("-")[1]??""})):e.placement=this.placement,this.preventOverflow&&(this.shift&&e.middleware.push(x3({padding:this.overflowPadding,boundary:this.boundary,crossAxis:this.shiftCrossAxis})),!t&&this.flip&&e.middleware.push(C3({padding:this.overflowPadding,boundary:this.boundary}))),e.middleware.push(BE({element:this.$_arrowNode,padding:this.arrowPadding})),this.arrowOverflow&&e.middleware.push({name:"arrowOverflow",fn:({placement:s,rects:n,middlewareData:i})=>{let o;const{centerOffset:a}=i.arrow;return s.startsWith("top")||s.startsWith("bottom")?o=Math.abs(a)>n.reference.width/2:o=Math.abs(a)>n.reference.height/2,{data:{overflow:o}}}}),this.autoMinSize||this.autoSize){const s=this.autoSize?this.autoSize:this.autoMinSize?"min":null;e.middleware.push({name:"autoSize",fn:({rects:n,placement:i,middlewareData:o})=>{var a;if((a=o.autoSize)!=null&&a.skip)return{};let r,m;return i.startsWith("top")||i.startsWith("bottom")?r=n.reference.width:m=n.reference.height,this.$_innerNode.style[s==="min"?"minWidth":s==="max"?"maxWidth":"width"]=r!=null?`${r}px`:null,this.$_innerNode.style[s==="min"?"minHeight":s==="max"?"maxHeight":"height"]=m!=null?`${m}px`:null,{data:{skip:!0},reset:{rects:!0}}}})}(this.autoMaxSize||this.autoBoundaryMaxSize)&&(this.$_innerNode.style.maxWidth=null,this.$_innerNode.style.maxHeight=null,e.middleware.push(wE({boundary:this.boundary,padding:this.overflowPadding,apply:({availableWidth:s,availableHeight:n})=>{this.$_innerNode.style.maxWidth=s!=null?`${s}px`:null,this.$_innerNode.style.maxHeight=n!=null?`${n}px`:null}})));const u=await SE(this.$_referenceNode,this.$_popperNode,e);Object.assign(this.result,{x:u.x,y:u.y,placement:u.placement,strategy:u.strategy,arrow:{...u.middlewareData.arrow,...u.middlewareData.arrowOverflow}})},$_scheduleShow(e,t=!1){if(this.$_updateParentShownChildren(!0),this.$_hideInProgress=!1,clearTimeout(this.$_scheduleTimer),cs&&this.instantMove&&cs.instantMove&&cs!==this.parentPopper){cs.$_applyHide(!0),this.$_applyShow(!0);return}t?this.$_applyShow():this.$_scheduleTimer=setTimeout(this.$_applyShow.bind(this),this.$_computeDelay("show"))},$_scheduleHide(e,t=!1){if(this.shownChildren.size>0){this.pendingHide=!0;return}this.$_updateParentShownChildren(!1),this.$_hideInProgress=!0,clearTimeout(this.$_scheduleTimer),this.isShown&&(cs=this),t?this.$_applyHide():this.$_scheduleTimer=setTimeout(this.$_applyHide.bind(this),this.$_computeDelay("hide"))},$_computeDelay(e){const t=this.delay;return parseInt(t&&t[e]||t||0)},async $_applyShow(e=!1){clearTimeout(this.$_disposeTimer),clearTimeout(this.$_scheduleTimer),this.skipTransition=e,!this.isShown&&(this.$_ensureTeleport(),await qo(),await this.$_computePosition(),await this.$_applyShowEffect(),this.positioningDisabled||this.$_registerEventListeners([...F0(this.$_referenceNode),...F0(this.$_popperNode)],"scroll",()=>{this.$_computePosition()}))},async $_applyShowEffect(){if(this.$_hideInProgress)return;if(this.computeTransformOrigin){const t=this.$_referenceNode.getBoundingClientRect(),u=this.$_popperNode.querySelector(".v-popper__wrapper"),s=u.parentNode.getBoundingClientRect(),n=t.x+t.width/2-(s.left+u.offsetLeft),i=t.y+t.height/2-(s.top+u.offsetTop);this.result.transformOrigin=`${n}px ${i}px`}this.isShown=!0,this.$_applyAttrsToTarget({"aria-describedby":this.popperId,"data-popper-shown":""});const e=this.showGroup;if(e){let t;for(let u=0;u0){this.pendingHide=!0,this.$_hideInProgress=!1;return}if(clearTimeout(this.$_scheduleTimer),!this.isShown)return;this.skipTransition=e,B4(Xt,this),Xt.length===0&&document.body.classList.remove("v-popper--some-open");for(const u of v4(this.theme)){const s=x4(u);B4(s,this),s.length===0&&document.body.classList.remove(`v-popper--some-open--${u}`)}cs===this&&(cs=null),this.isShown=!1,this.$_applyAttrsToTarget({"aria-describedby":void 0,"data-popper-shown":void 0}),clearTimeout(this.$_disposeTimer);const t=this.disposeTimeout;t!==null&&(this.$_disposeTimer=setTimeout(()=>{this.$_popperNode&&(this.$_detachPopperNode(),this.isMounted=!1)},t)),this.$_removeEventListeners("scroll"),this.$emit("apply-hide"),this.classes.showFrom=!1,this.classes.showTo=!1,this.classes.hideFrom=!0,this.classes.hideTo=!1,await qo(),this.classes.hideFrom=!1,this.classes.hideTo=!0},$_autoShowHide(){this.shown?this.show():this.hide()},$_ensureTeleport(){if(this.isDisposed)return;let e=this.container;if(typeof e=="string"?e=window.document.querySelector(e):e===!1&&(e=this.$_targetNodes[0].parentNode),!e)throw new Error("No container for popover: "+this.container);e.appendChild(this.$_popperNode),this.isMounted=!0},$_addEventListeners(){const e=u=>{this.isShown&&!this.$_hideInProgress||(u.usedByTooltip=!0,!this.$_preventShow&&this.show({event:u}))};this.$_registerTriggerListeners(this.$_targetNodes,E4,this.triggers,this.showTriggers,e),this.$_registerTriggerListeners([this.$_popperNode],E4,this.popperTriggers,this.popperShowTriggers,e);const t=u=>{u.usedByTooltip||this.hide({event:u})};this.$_registerTriggerListeners(this.$_targetNodes,C4,this.triggers,this.hideTriggers,t),this.$_registerTriggerListeners([this.$_popperNode],C4,this.popperTriggers,this.popperHideTriggers,t)},$_registerEventListeners(e,t,u){this.$_events.push({targetNodes:e,eventType:t,handler:u}),e.forEach(s=>s.addEventListener(t,u,ri?{passive:!0}:void 0))},$_registerTriggerListeners(e,t,u,s,n){let i=u;s!=null&&(i=typeof s=="function"?s(i):s),i.forEach(o=>{const a=t[o];a&&this.$_registerEventListeners(e,a,n)})},$_removeEventListeners(e){const t=[];this.$_events.forEach(u=>{const{targetNodes:s,eventType:n,handler:i}=u;!e||e===n?s.forEach(o=>o.removeEventListener(n,i)):t.push(u)}),this.$_events=t},$_refreshListeners(){this.isDisposed||(this.$_removeEventListeners(),this.$_addEventListeners())},$_handleGlobalClose(e,t=!1){this.$_showFrameLocked||(this.hide({event:e}),e.closePopover?this.$emit("close-directive"):this.$emit("auto-hide"),t&&(this.$_preventShow=!0,setTimeout(()=>{this.$_preventShow=!1},300)))},$_detachPopperNode(){this.$_popperNode.parentNode&&this.$_popperNode.parentNode.removeChild(this.$_popperNode)},$_swapTargetAttrs(e,t){for(const u of this.$_targetNodes){const s=u.getAttribute(e);s&&(u.removeAttribute(e),u.setAttribute(t,s))}},$_applyAttrsToTarget(e){for(const t of this.$_targetNodes)for(const u in e){const s=e[u];s==null?t.removeAttribute(u):t.setAttribute(u,s)}},$_updateParentShownChildren(e){let t=this.parentPopper;for(;t;)e?t.shownChildren.add(this.randomId):(t.shownChildren.delete(this.randomId),t.pendingHide&&t.hide()),t=t.parentPopper},$_isAimingPopper(){const e=this.$_referenceNode.getBoundingClientRect();if(Hn>=e.left&&Hn<=e.right&&Gn>=e.top&&Gn<=e.bottom){const t=this.$_popperNode.getBoundingClientRect(),u=Hn-qu,s=Gn-Ku,n=t.left+t.width/2-qu+(t.top+t.height/2)-Ku+t.width+t.height,i=qu+u*n,o=Ku+s*n;return Ri(qu,Ku,i,o,t.left,t.top,t.left,t.bottom)||Ri(qu,Ku,i,o,t.left,t.top,t.right,t.top)||Ri(qu,Ku,i,o,t.right,t.top,t.right,t.bottom)||Ri(qu,Ku,i,o,t.left,t.bottom,t.right,t.bottom)}return!1}},render(){return this.$slots.default(this.slotData)}});if(typeof document<"u"&&typeof window<"u"){if(_3){const e=ri?{passive:!0,capture:!0}:!0;document.addEventListener("touchstart",t=>A4(t),e),document.addEventListener("touchend",t=>b4(t,!0),e)}else window.addEventListener("mousedown",e=>A4(e),!0),window.addEventListener("click",e=>b4(e,!1),!0);window.addEventListener("resize",PE)}function A4(e,t){for(let u=0;u=0;s--){const n=Xt[s];try{const i=n.containsGlobalTarget=n.mouseDownContains||n.popperNode().contains(e.target);n.pendingHide=!1,requestAnimationFrame(()=>{if(n.pendingHide=!1,!u[n.randomId]&&w4(n,i,e)){if(n.$_handleGlobalClose(e,t),!e.closeAllPopover&&e.closePopover&&i){let a=n.parentPopper;for(;a;)u[a.randomId]=!0,a=a.parentPopper;return}let o=n.parentPopper;for(;o&&w4(o,o.containsGlobalTarget,e);)o.$_handleGlobalClose(e,t),o=o.parentPopper}})}catch{}}}function w4(e,t,u){return u.closeAllPopover||u.closePopover&&t||zE(e,u)&&!t}function zE(e,t){if(typeof e.autoHide=="function"){const u=e.autoHide(t);return e.lastAutoHide=u,u}return e.autoHide}function PE(){for(let e=0;e{qu=Hn,Ku=Gn,Hn=e.clientX,Gn=e.clientY},ri?{passive:!0}:void 0);function Ri(e,t,u,s,n,i,o,a){const r=((o-n)*(t-i)-(a-i)*(e-n))/((a-i)*(u-e)-(o-n)*(s-t)),m=((u-e)*(t-i)-(s-t)*(e-n))/((a-i)*(u-e)-(o-n)*(s-t));return r>=0&&r<=1&&m>=0&&m<=1}const RE={extends:O3()},lr=(e,t)=>{const u=e.__vccOpts||e;for(const[s,n]of t)u[s]=n;return u};function LE(e,t,u,s,n,i){return X(),me("div",{ref:"reference",class:Bt(["v-popper",{"v-popper--shown":e.slotData.isShown}])},[ze(e.$slots,"default",_t(At(e.slotData)))],2)}const jE=lr(RE,[["render",LE]]);function IE(){var e=window.navigator.userAgent,t=e.indexOf("MSIE ");if(t>0)return parseInt(e.substring(t+5,e.indexOf(".",t)),10);var u=e.indexOf("Trident/");if(u>0){var s=e.indexOf("rv:");return parseInt(e.substring(s+3,e.indexOf(".",s)),10)}var n=e.indexOf("Edge/");return n>0?parseInt(e.substring(n+5,e.indexOf(".",n)),10):-1}let qi;function Fa(){Fa.init||(Fa.init=!0,qi=IE()!==-1)}var Ki={name:"ResizeObserver",props:{emitOnMount:{type:Boolean,default:!1},ignoreWidth:{type:Boolean,default:!1},ignoreHeight:{type:Boolean,default:!1}},emits:["notify"],mounted(){Fa(),Ha(()=>{this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitOnMount&&this.emitSize()});const e=document.createElement("object");this._resizeObject=e,e.setAttribute("aria-hidden","true"),e.setAttribute("tabindex",-1),e.onload=this.addResizeHandlers,e.type="text/html",qi&&this.$el.appendChild(e),e.data="about:blank",qi||this.$el.appendChild(e)},beforeUnmount(){this.removeResizeHandlers()},methods:{compareAndNotify(){(!this.ignoreWidth&&this._w!==this.$el.offsetWidth||!this.ignoreHeight&&this._h!==this.$el.offsetHeight)&&(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitSize())},emitSize(){this.$emit("notify",{width:this._w,height:this._h})},addResizeHandlers(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers(){this._resizeObject&&this._resizeObject.onload&&(!qi&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),this.$el.removeChild(this._resizeObject),this._resizeObject.onload=null,this._resizeObject=null)}}};const ME=Ef();hf("data-v-b329ee4c");const $E={class:"resize-observer",tabindex:"-1"};vf();const UE=ME((e,t,u,s,n,i)=>(X(),et("div",$E)));Ki.render=UE,Ki.__scopeId="data-v-b329ee4c",Ki.__file="src/components/ResizeObserver.vue";const T3=(e="theme")=>({computed:{themeClass(){return _E(this[e])}}}),VE=tu({name:"VPopperContent",components:{ResizeObserver:Ki},mixins:[T3()],props:{popperId:String,theme:String,shown:Boolean,mounted:Boolean,skipTransition:Boolean,autoHide:Boolean,handleResize:Boolean,classes:Object,result:Object},emits:["hide","resize"],methods:{toPx(e){return e!=null&&!isNaN(e)?`${e}px`:null}}}),WE=["id","aria-hidden","tabindex","data-popper-placement"],HE={ref:"inner",class:"v-popper__inner"},GE=ve("div",{class:"v-popper__arrow-outer"},null,-1),qE=ve("div",{class:"v-popper__arrow-inner"},null,-1),KE=[GE,qE];function YE(e,t,u,s,n,i){const o=It("ResizeObserver");return X(),me("div",{id:e.popperId,ref:"popover",class:Bt(["v-popper__popper",[e.themeClass,e.classes.popperClass,{"v-popper__popper--shown":e.shown,"v-popper__popper--hidden":!e.shown,"v-popper__popper--show-from":e.classes.showFrom,"v-popper__popper--show-to":e.classes.showTo,"v-popper__popper--hide-from":e.classes.hideFrom,"v-popper__popper--hide-to":e.classes.hideTo,"v-popper__popper--skip-transition":e.skipTransition,"v-popper__popper--arrow-overflow":e.result&&e.result.arrow.overflow,"v-popper__popper--no-positioning":!e.result}]]),style:ws(e.result?{position:e.result.strategy,transform:`translate3d(${Math.round(e.result.x)}px,${Math.round(e.result.y)}px,0)`}:void 0),"aria-hidden":e.shown?"false":"true",tabindex:e.autoHide?0:void 0,"data-popper-placement":e.result?e.result.placement:void 0,onKeyup:t[2]||(t[2]=$m(a=>e.autoHide&&e.$emit("hide"),["esc"]))},[ve("div",{class:"v-popper__backdrop",onClick:t[0]||(t[0]=a=>e.autoHide&&e.$emit("hide"))}),ve("div",{class:"v-popper__wrapper",style:ws(e.result?{transformOrigin:e.result.transformOrigin}:void 0)},[ve("div",HE,[e.mounted?(X(),me(it,{key:0},[ve("div",null,[ze(e.$slots,"default")]),e.handleResize?(X(),et(o,{key:0,onNotify:t[1]||(t[1]=a=>e.$emit("resize",a))})):Ve("",!0)],64)):Ve("",!0)],512),ve("div",{ref:"arrow",class:"v-popper__arrow-container",style:ws(e.result?{left:e.toPx(e.result.arrow.x),top:e.toPx(e.result.arrow.y)}:void 0)},KE,4)],4)],46,WE)}const ZE=lr(VE,[["render",YE]]),XE={methods:{show(...e){return this.$refs.popper.show(...e)},hide(...e){return this.$refs.popper.hide(...e)},dispose(...e){return this.$refs.popper.dispose(...e)},onResize(...e){return this.$refs.popper.onResize(...e)}}};let ka=function(){};typeof window<"u"&&(ka=window.Element);const JE=tu({name:"VPopperWrapper",components:{Popper:jE,PopperContent:ZE},mixins:[XE,T3("finalTheme")],props:{theme:{type:String,default:null},referenceNode:{type:Function,default:null},shown:{type:Boolean,default:!1},showGroup:{type:String,default:null},ariaId:{default:null},disabled:{type:Boolean,default:void 0},positioningDisabled:{type:Boolean,default:void 0},placement:{type:String,default:void 0},delay:{type:[String,Number,Object],default:void 0},distance:{type:[Number,String],default:void 0},skidding:{type:[Number,String],default:void 0},triggers:{type:Array,default:void 0},showTriggers:{type:[Array,Function],default:void 0},hideTriggers:{type:[Array,Function],default:void 0},popperTriggers:{type:Array,default:void 0},popperShowTriggers:{type:[Array,Function],default:void 0},popperHideTriggers:{type:[Array,Function],default:void 0},container:{type:[String,Object,ka,Boolean],default:void 0},boundary:{type:[String,ka],default:void 0},strategy:{type:String,default:void 0},autoHide:{type:[Boolean,Function],default:void 0},handleResize:{type:Boolean,default:void 0},instantMove:{type:Boolean,default:void 0},eagerMount:{type:Boolean,default:void 0},popperClass:{type:[String,Array,Object],default:void 0},computeTransformOrigin:{type:Boolean,default:void 0},autoMinSize:{type:Boolean,default:void 0},autoSize:{type:[Boolean,String],default:void 0},autoMaxSize:{type:Boolean,default:void 0},autoBoundaryMaxSize:{type:Boolean,default:void 0},preventOverflow:{type:Boolean,default:void 0},overflowPadding:{type:[Number,String],default:void 0},arrowPadding:{type:[Number,String],default:void 0},arrowOverflow:{type:Boolean,default:void 0},flip:{type:Boolean,default:void 0},shift:{type:Boolean,default:void 0},shiftCrossAxis:{type:Boolean,default:void 0},noAutoFocus:{type:Boolean,default:void 0},disposeTimeout:{type:Number,default:void 0}},emits:{show:()=>!0,hide:()=>!0,"update:shown":e=>!0,"apply-show":()=>!0,"apply-hide":()=>!0,"close-group":()=>!0,"close-directive":()=>!0,"auto-hide":()=>!0,resize:()=>!0},computed:{finalTheme(){return this.theme??this.$options.vPopperTheme}},methods:{getTargetNodes(){return Array.from(this.$el.children).filter(e=>e!==this.$refs.popperContent.$el)}}});function QE(e,t,u,s,n,i){const o=It("PopperContent"),a=It("Popper");return X(),et(a,ut({ref:"popper"},e.$props,{theme:e.finalTheme,"target-nodes":e.getTargetNodes,"popper-node":()=>e.$refs.popperContent.$el,class:[e.themeClass],onShow:t[0]||(t[0]=()=>e.$emit("show")),onHide:t[1]||(t[1]=()=>e.$emit("hide")),"onUpdate:shown":t[2]||(t[2]=r=>e.$emit("update:shown",r)),onApplyShow:t[3]||(t[3]=()=>e.$emit("apply-show")),onApplyHide:t[4]||(t[4]=()=>e.$emit("apply-hide")),onCloseGroup:t[5]||(t[5]=()=>e.$emit("close-group")),onCloseDirective:t[6]||(t[6]=()=>e.$emit("close-directive")),onAutoHide:t[7]||(t[7]=()=>e.$emit("auto-hide")),onResize:t[8]||(t[8]=()=>e.$emit("resize"))}),{default:Pe(({popperId:r,isShown:m,shouldMountContent:l,skipTransition:g,autoHide:p,show:h,hide:y,handleResize:E,onResize:F,classes:B,result:A})=>[ze(e.$slots,"default",{shown:m,show:h,hide:y}),Be(o,{ref:"popperContent","popper-id":r,theme:e.finalTheme,shown:m,mounted:l,"skip-transition":g,"auto-hide":p,"handle-resize":E,classes:B,result:A,onHide:y,onResize:F},{default:Pe(()=>[ze(e.$slots,"popper",{shown:m,hide:y})]),_:2},1032,["popper-id","theme","shown","mounted","skip-transition","auto-hide","handle-resize","classes","result","onHide","onResize"])]),_:3},16,["theme","target-nodes","popper-node","class"])}const Sa=lr(JE,[["render",QE]]),e1={...Sa,name:"VDropdown",vPopperTheme:"dropdown"};({...Sa},{...Sa}),O3();const D4=ts,t1=e1,u1=tu({name:"NcPopoverTriggerProvider",provide(){return{"NcPopover:trigger:shown":()=>this.shown,"NcPopover:trigger:attrs":()=>this.triggerAttrs}},props:{shown:{type:Boolean,required:!0},popupRole:{type:String,default:void 0}},computed:{triggerAttrs(){return{"aria-haspopup":this.popupRole,"aria-expanded":this.shown.toString()}}},render(){return this.$slots.default?.({attrs:this.triggerAttrs})}}),s1="_ncPopover_zfWgY",n1={"material-design-icon":"_material-design-icon_bkeq-",ncPopover:s1},z3="nc-popover-9";D4.themes[z3]=structuredClone(D4.themes.dropdown);const i1={name:"NcPopover",components:{Dropdown:t1,NcPopoverTriggerProvider:u1},props:{boundary:{type:[String,Object],default:""},closeOnClickOutside:{type:Boolean,default:!0},noCloseOnClickOutside:{type:Boolean,default:!1},container:{type:[Boolean,String],default:"body"},delay:{type:[Number,Object],default:0},noFocusTrap:{type:Boolean,default:!1},placement:{type:String,default:"bottom"},popoverBaseClass:{type:String,default:""},popoverTriggers:{type:[Array,Object],default:null},popupRole:{type:String,default:void 0,validator:e=>["menu","listbox","tree","grid","dialog","true"].includes(e)},setReturnFocus:{default:void 0,type:[Boolean,HTMLElement,SVGElement,String,Function]},shown:{type:Boolean,default:!1},triggers:{type:[Array,Object],default:()=>["click"]}},emits:["afterShow","afterHide","update:shown"],setup(){return{theme:z3}},data(){return{internalShown:this.shown}},computed:{popperTriggers(){if(this.popoverTriggers&&Array.isArray(this.popoverTriggers))return this.popoverTriggers},popperHideTriggers(){if(this.popoverTriggers&&typeof this.popoverTriggers=="object")return this.popoverTriggers.hide},popperShowTriggers(){if(this.popoverTriggers&&typeof this.popoverTriggers=="object")return this.popoverTriggers.show},internalTriggers(){if(this.triggers&&Array.isArray(this.triggers))return this.triggers},hideTriggers(){if(this.triggers&&typeof this.triggers=="object")return this.triggers.hide},showTriggers(){if(this.triggers&&typeof this.triggers=="object")return this.triggers.show},internalPlacement(){return this.placement==="start"?v0?"right":"left":this.placement==="end"?v0?"left":"right":this.placement}},watch:{shown(e){this.internalShown=e},internalShown(e){this.$emit("update:shown",e)}},mounted(){this.checkTriggerA11y()},beforeUnmount(){this.clearFocusTrap(),this.clearEscapeStopPropagation()},methods:{checkTriggerA11y(){window.OC?.debug&&this.getPopoverTriggerContainerElement().querySelector("[aria-expanded]")},removeFloatingVueAriaDescribedBy(){const e=this.getPopoverTriggerContainerElement().querySelectorAll("[data-popper-shown]");for(const t of e)t.removeAttribute("aria-describedby")},getPopoverContentElement(){return this.$refs.popover?.$refs.popperContent?.$el},getPopoverTriggerContainerElement(){return this.$refs.popover?.$refs.popper?.$refs.reference},async useFocusTrap(){if(await this.$nextTick(),this.noFocusTrap)return;const e=this.getPopoverContentElement();e.tabIndex=-1,e&&(this.$focusTrap=f3(e,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:this.setReturnFocus,trapStack:ii(),fallBackFocus:e}),this.$focusTrap.activate())},clearFocusTrap(e={}){try{this.$focusTrap?.deactivate(e),this.$focusTrap=null}catch(t){Tv.warn("[NcPopover] Failed to clear focus trap",{error:t})}},addEscapeStopPropagation(){this.getPopoverContentElement()?.addEventListener("keydown",this.stopKeydownEscapeHandler)},clearEscapeStopPropagation(){this.getPopoverContentElement()?.removeEventListener("keydown",this.stopKeydownEscapeHandler)},stopKeydownEscapeHandler(e){e.type==="keydown"&&e.key==="Escape"&&e.stopPropagation()},async afterShow(){this.getPopoverContentElement().addEventListener("transitionend",()=>{this.$emit("afterShow")},{once:!0,passive:!0}),this.removeFloatingVueAriaDescribedBy(),await this.$nextTick(),await this.useFocusTrap(),this.addEscapeStopPropagation()},afterHide(){this.getPopoverContentElement()?.addEventListener("transitionend",()=>{this.$emit("afterHide")},{once:!0,passive:!0}),this.clearFocusTrap(),this.clearEscapeStopPropagation()}}};function o1(e,t,u,s,n,i){const o=It("NcPopoverTriggerProvider"),a=It("Dropdown");return X(),et(a,{ref:"popover",shown:n.internalShown,"onUpdate:shown":[t[0]||(t[0]=r=>n.internalShown=r),t[1]||(t[1]=r=>n.internalShown=r)],arrowPadding:10,autoHide:!u.noCloseOnClickOutside&&u.closeOnClickOutside,boundary:u.boundary||void 0,container:u.container,delay:u.delay,distance:10,handleResize:"",noAutoFocus:!0,placement:i.internalPlacement,popperClass:[e.$style.ncPopover,u.popoverBaseClass],popperTriggers:i.popperTriggers,popperHideTriggers:i.popperHideTriggers,popperShowTriggers:i.popperShowTriggers,theme:s.theme,triggers:i.internalTriggers,hideTriggers:i.hideTriggers,showTriggers:i.showTriggers,onApplyShow:i.afterShow,onApplyHide:i.afterHide},{popper:Pe(r=>[ze(e.$slots,"default",_t(At(r)))]),default:Pe(()=>[Be(o,{shown:n.internalShown,popupRole:u.popupRole},{default:Pe(r=>[ze(e.$slots,"trigger",_t(At(r)))]),_:3},8,["shown","popupRole"])]),_:3},8,["shown","autoHide","boundary","container","delay","placement","popperClass","popperTriggers","popperHideTriggers","popperShowTriggers","theme","triggers","hideTriggers","showTriggers","onApplyShow","onApplyHide"])}const a1={$style:n1},F4=rt(i1,[["render",o1],["__cssModules",a1]]),r1=Symbol.for("NcActions:isSemanticMenu"),l1=Symbol.for("NcActions:closeMenu"),d1={name:"DotsHorizontalIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},m1=["aria-hidden","aria-label"],c1=["fill","width","height"],g1={d:"M16,12A2,2 0 0,1 18,10A2,2 0 0,1 20,12A2,2 0 0,1 18,14A2,2 0 0,1 16,12M10,12A2,2 0 0,1 12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12M4,12A2,2 0 0,1 6,10A2,2 0 0,1 8,12A2,2 0 0,1 6,14A2,2 0 0,1 4,12Z"},f1={key:0};function p1(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon dots-horizontal-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",g1,[u.title?(X(),me("title",f1,dt(u.title),1)):Ve("",!0)])],8,c1))],16,m1)}const h1=rt(d1,[["render",p1]]);pn(Yh);function P3(e){return Array.isArray(e)&&e.some(t=>{if(t===null)return!1;if(typeof t=="object"){const u=t;if(u.type===ht||u.type===it&&!P3(u.children)||u.type===fi&&!u.children.trim())return!1}return!0})}const v1=".focusable",E1={name:"NcActions",components:{NcButton:As,NcPopover:F4},provide(){return{[r1]:Ue(()=>this.actionsMenuSemanticType==="menu"),[l1]:this.closeMenu}},props:{open:{type:Boolean,default:!1},manualOpen:{type:Boolean,default:!1},forceMenu:{type:Boolean,default:!1},forceName:{type:Boolean,default:!1},menuName:{type:String,default:null},primary:{type:Boolean,default:!1},defaultIcon:{type:String,default:""},ariaLabel:{type:String,default:ft("Actions")},placement:{type:String,default:"bottom"},boundariesElement:{type:Element,default:()=>document.getElementById("content-vue")??document.querySelector("body")},container:{type:[Boolean,String,Object,Element],default:"body"},disabled:{type:Boolean,default:!1},inline:{type:Number,default:0},variant:{type:String,validator(e){return["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].includes(e)},default:null},wide:{type:Boolean,default:!1},size:{type:String,default:"normal",validator(e){return["small","normal","large"].includes(e)}}},emits:["click","blur","focus","close","closed","open","opened","update:open"],setup(){return{randomId:_s()}},data(){return{opened:this.open,focusIndex:0,actionsMenuSemanticType:"unknown"}},computed:{triggerButtonVariant(){return this.variant||(this.primary?"primary":this.menuName?"secondary":"tertiary")},config(){return{menu:{popupRole:"menu",withArrowNavigation:!0,withTabNavigation:!1,withFocusTrap:!1},navigation:{popupRole:void 0,withArrowNavigation:!1,withTabNavigation:!0,withFocusTrap:!1},dialog:{popupRole:"dialog",withArrowNavigation:!1,withTabNavigation:!0,withFocusTrap:!0},tooltip:{popupRole:void 0,withArrowNavigation:!1,withTabNavigation:!1,withFocusTrap:!1},unknown:{popupRole:void 0,role:void 0,withArrowNavigation:!0,withTabNavigation:!1,withFocusTrap:!0}}[this.actionsMenuSemanticType]},withFocusTrap(){return this.config.withFocusTrap}},watch:{open(e){e!==this.opened&&(this.opened=e)},opened(){this.opened?document.body.addEventListener("keydown",this.handleEscapePressed):document.body.removeEventListener("keydown",this.handleEscapePressed)}},created(){lE(()=>this.opened,{disabled:()=>this.config.withFocusTrap}),"ariaHidden"in this.$attrs},methods:{getActionName(e){return e?.type?.name},isValidSingleAction(e){return["NcActionButton","NcActionLink","NcActionRouter"].includes(this.getActionName(e))},isAction(e){return this.getActionName(e)?.startsWith?.("NcAction")},isIconUrl(e){try{return!!new URL(e,e.startsWith("/")?window.location.origin:void 0)}catch{return!1}},toggleMenu(e){e?this.openMenu():this.closeMenu()},openMenu(){this.opened||(this.opened=!0,this.$emit("update:open",!0),this.$emit("open"))},async closeMenu(e=!0){this.opened&&(await this.$nextTick(),this.opened=!1,this.$refs.popover?.clearFocusTrap({returnFocus:e}),this.$emit("update:open",!1),this.$emit("close"),this.focusIndex=0,e&&this.$refs.triggerButton?.$el.focus())},onOpened(){this.$nextTick(()=>{this.focusFirstAction(null),this.$emit("opened")})},onClosed(){this.$emit("closed")},getCurrentActiveMenuItemElement(){return this.$refs.menu.querySelector("li.active")},getFocusableMenuItemElements(){return this.$refs.menu.querySelectorAll(v1)},onKeydown(e){if(e.key==="Tab"){if(this.config.withFocusTrap)return;if(!this.config.withTabNavigation){this.closeMenu(!0);return}e.preventDefault();const t=this.getFocusableMenuItemElements(),u=[...t].indexOf(document.activeElement);if(u===-1)return;const s=e.shiftKey?u-1:u+1;(s<0||s===t.length)&&this.closeMenu(!0),this.focusIndex=s,this.focusAction();return}this.config.withArrowNavigation&&(e.key==="ArrowUp"&&this.focusPreviousAction(e),e.key==="ArrowDown"&&this.focusNextAction(e),e.key==="PageUp"&&this.focusFirstAction(e),e.key==="PageDown"&&this.focusLastAction(e)),this.handleEscapePressed(e)},onTriggerKeydown(e){e.key==="Escape"&&this.actionsMenuSemanticType==="tooltip"&&this.closeMenu()},handleEscapePressed(e){e.key==="Escape"&&(this.closeMenu(),e.preventDefault())},removeCurrentActive(){const e=this.$refs.menu.querySelector("li.active");e&&e.classList.remove("active")},focusAction(){const e=this.getFocusableMenuItemElements()[this.focusIndex];if(e){this.removeCurrentActive();const t=e.closest("li.action");e.focus(),t&&t.classList.add("active")}},focusPreviousAction(e){this.opened&&(this.focusIndex===0?this.focusLastAction(e):(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction(e){if(this.opened){const t=this.getFocusableMenuItemElements().length-1;this.focusIndex===t?this.focusFirstAction(e):(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction(e){if(this.opened){this.preventIfEvent(e);const t=[...this.getFocusableMenuItemElements()].findIndex(u=>u.getAttribute("aria-checked")==="true"&&u.getAttribute("role")==="menuitemradio");this.focusIndex=t>-1?t:0,this.focusAction()}},focusLastAction(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.getFocusableMenuItemElements().length-1,this.focusAction())},preventIfEvent(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus(e){this.$emit("focus",e)},onBlur(e){this.$emit("blur",e),this.actionsMenuSemanticType==="tooltip"&&this.$refs.menu&&this.getFocusableMenuItemElements().length===0&&this.closeMenu(!1)},onClick(e){this.$emit("click",e)}},render(){const e=[],t=(h,y)=>{h.forEach(E=>{if(this.isAction(E)){y.push(E);return}E.type===it&&t(E.children,y)})};if(t(this.$slots.default?.(),e),e.length===0)return;let u=e.filter(this.isValidSingleAction);this.forceMenu&&u.length>0&&this.inline>0&&(u=[]);const s=u.slice(0,this.inline),n=e.filter(h=>!s.includes(h)),i=["NcActionButton","NcActionButtonGroup","NcActionCheckbox","NcActionRadio"],o=["NcActionInput","NcActionTextEditable"],a=["NcActionLink","NcActionRouter"],r=n.some(h=>o.includes(this.getActionName(h))),m=n.some(h=>i.includes(this.getActionName(h))),l=n.some(h=>a.includes(this.getActionName(h)));r?this.actionsMenuSemanticType="dialog":m?this.actionsMenuSemanticType="menu":l?this.actionsMenuSemanticType="navigation":e.filter(h=>this.getActionName(h).startsWith("NcAction")).length===e.length?this.actionsMenuSemanticType="tooltip":this.actionsMenuSemanticType="unknown";const g=h=>{const y=h?.props?.icon,E=h?.children?.icon?.()?.[0]??(this.isIconUrl(y)?gt("img",{class:"action-item__menutoggle__icon",src:y,alt:""}):gt("span",{class:["icon",y]})),F=h?.children?.default?.()?.[0]?.children?.trim(),B=this.forceName?F:"";let A=h?.props?.title;this.forceName||A||(A=F);const O={...h?.props??{}},S=["submit","reset"].includes(O.type)?O.modelValue:"button";return delete O.modelValue,delete O.type,gt(As,ut(O,{class:["action-item action-item--single",{"action-item--wide":this.wide}],"aria-label":h?.props?.["aria-label"]||F,title:A,disabled:this.disabled||h?.props?.disabled,pressed:h?.props?.modelValue,size:this.size,type:S,wide:this.wide,variant:this.variant||(B?"secondary":"tertiary"),onFocus:this.onFocus,onBlur:this.onBlur,"onUpdate:pressed":h?.props?.["onUpdate:modelValue"]??(()=>{})}),{default:()=>B,icon:()=>E})},p=h=>{const y=P3(this.$slots.icon?.())?this.$slots.icon?.():this.defaultIcon?gt("span",{class:["icon",this.defaultIcon]}):gt(h1,{size:20}),E=`${this.randomId}-trigger`;return gt(F4,{ref:"popover",delay:0,shown:this.opened,placement:this.placement,boundary:this.boundariesElement,autoBoundaryMaxSize:!0,container:this.container,...this.manualOpen&&{triggers:[]},noCloseOnClickOutside:this.manualOpen,popoverBaseClass:"action-item__popper",popupRole:this.config.popupRole,setReturnFocus:this.config.withFocusTrap?this.$refs.triggerButton?.$el:void 0,noFocusTrap:!this.config.withFocusTrap,"onUpdate:shown":this.toggleMenu,onAfterShow:this.onOpened,onAfterClose:this.onClosed},{trigger:()=>gt(As,{id:E,class:"action-item__menutoggle",disabled:this.disabled,size:this.size,variant:this.triggerButtonVariant,wide:this.wide,ref:"triggerButton","aria-label":this.menuName?null:this.ariaLabel,"aria-controls":this.opened&&this.config.popupRole?this.randomId:null,onFocus:this.onFocus,onBlur:this.onBlur,onClick:this.onClick,onKeydown:this.onTriggerKeydown},{icon:()=>y,default:()=>this.menuName}),default:()=>gt("div",{class:{open:this.opened},tabindex:"-1",onKeydown:this.onKeydown,ref:"menu"},[gt("ul",{id:this.randomId,tabindex:"-1",ref:"menuList",role:this.config.popupRole,"aria-labelledby":E,"aria-modal":this.actionsMenuSemanticType==="dialog"?"true":void 0},[h])])})};return e.length===1&&u.length===1&&!this.forceMenu?g(e[0]):(this.$nextTick(()=>{this.opened&&this.$refs.menu&&(this.$refs.menu.querySelector("li.active")||[]).length===0&&this.focusFirstAction()}),s.length>0&&this.inline>0?gt("div",{class:["action-items",`action-item--${this.triggerButtonVariant}`]},[...s.map(g),n.length>0?gt("div",{class:["action-item",{"action-item--open":this.opened}]},[p(n)]):null]):gt("div",{class:["action-item action-item--default-popover",`action-item--${this.triggerButtonVariant}`,{"action-item--open":this.opened,"action-item--wide":this.wide}]},[p(e)]))}},C1=rt(E1,[["__scopeId","data-v-23e5cae7"]]),B1={name:"ChevronDownIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},y1=["aria-hidden","aria-label"],x1=["fill","width","height"],A1={d:"M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z"},b1={key:0};function w1(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon chevron-down-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",A1,[u.title?(X(),me("title",b1,dt(u.title),1)):Ve("",!0)])],8,x1))],16,y1)}const D1=rt(B1,[["render",w1]]),F1={name:"CloseIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},k1=["aria-hidden","aria-label"],S1=["fill","width","height"],N1={d:"M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z"},_1={key:0};function O1(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon close-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",N1,[u.title?(X(),me("title",_1,dt(u.title),1)):Ve("",!0)])],8,S1))],16,k1)}const T1=rt(F1,[["render",O1]]),z1=["aria-label"],P1=["width","height"],R1=["fill"],L1=["fill"],j1={key:0},I1=tu({__name:"NcLoadingIcon",props:{appearance:{default:"auto"},name:{default:""},size:{default:20}},setup(e){const t=e,u=Ue(()=>{const s=["#777","#CCC"];return t.appearance==="light"?s:t.appearance==="dark"?s.reverse():["var(--color-loading-light)","var(--color-loading-dark)"]});return(s,n)=>(X(),me("span",{"aria-label":e.name,role:"img",class:"material-design-icon loading-icon"},[(X(),me("svg",{width:e.size,height:e.size,viewBox:"0 0 24 24"},[ve("path",{fill:u.value[0],d:"M12,4V2A10,10 0 1,0 22,12H20A8,8 0 1,1 12,4Z"},null,8,R1),ve("path",{fill:u.value[1],d:"M12,4V2A10,10 0 0,1 22,12H20A8,8 0 0,0 12,4Z"},[e.name?(X(),me("title",j1,dt(e.name),1)):Ve("",!0)],8,L1)],8,P1))],8,z1))}}),R3=rt(I1,[["__scopeId","data-v-cf399190"]]),E2=(e,t)=>{const u=e.__vccOpts||e;for(const[s,n]of t)u[s]=n;return u},M1="modulepreload",$1=function(e,t){return new URL(e,t).href},k4={},dr=function(e,t,u){let s=Promise.resolve();if(t&&t.length>0){let i=function(m){return Promise.all(m.map(l=>Promise.resolve(l).then(g=>({status:"fulfilled",value:g}),g=>({status:"rejected",reason:g}))))};const o=document.getElementsByTagName("link"),a=document.querySelector("meta[property=csp-nonce]"),r=a?.nonce||a?.getAttribute("nonce");s=i(t.map(m=>{if(m=$1(m,u),m in k4)return;k4[m]=!0;const l=m.endsWith(".css"),g=l?'[rel="stylesheet"]':"";if(u)for(let h=o.length-1;h>=0;h--){const y=o[h];if(y.href===m&&(!l||y.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${m}"]${g}`))return;const p=document.createElement("link");if(p.rel=l?"stylesheet":M1,l||(p.as="script"),p.crossOrigin="",p.href=m,r&&p.setAttribute("nonce",r),document.head.appendChild(p),l)return new Promise((h,y)=>{p.addEventListener("load",h),p.addEventListener("error",()=>y(new Error(`Unable to preload CSS for ${m}`)))})}))}function n(i){const o=new Event("vite:preloadError",{cancelable:!0});if(o.payload=i,window.dispatchEvent(o),!o.defaultPrevented)throw i}return s.then(i=>{for(const o of i||[])o.status==="rejected"&&n(o.reason);return e().catch(n)})};var Na={exports:{}},U1=Na.exports,S4;function V1(){return S4||(S4=1,(function(e){(function(t,u){e.exports?e.exports=u():t.Toastify=u()})(U1,function(t){var u=function(o){return new u.lib.init(o)},s="1.12.0";u.defaults={oldestFirst:!0,text:"Toastify is awesome!",node:void 0,duration:3e3,selector:void 0,callback:function(){},destination:void 0,newWindow:!1,close:!1,gravity:"toastify-top",positionLeft:!1,position:"",backgroundColor:"",avatar:"",className:"",stopOnFocus:!0,onClick:function(){},offset:{x:0,y:0},escapeMarkup:!0,ariaLive:"polite",style:{background:""}},u.lib=u.prototype={toastify:s,constructor:u,init:function(o){return o||(o={}),this.options={},this.toastElement=null,this.options.text=o.text||u.defaults.text,this.options.node=o.node||u.defaults.node,this.options.duration=o.duration===0?0:o.duration||u.defaults.duration,this.options.selector=o.selector||u.defaults.selector,this.options.callback=o.callback||u.defaults.callback,this.options.destination=o.destination||u.defaults.destination,this.options.newWindow=o.newWindow||u.defaults.newWindow,this.options.close=o.close||u.defaults.close,this.options.gravity=o.gravity==="bottom"?"toastify-bottom":u.defaults.gravity,this.options.positionLeft=o.positionLeft||u.defaults.positionLeft,this.options.position=o.position||u.defaults.position,this.options.backgroundColor=o.backgroundColor||u.defaults.backgroundColor,this.options.avatar=o.avatar||u.defaults.avatar,this.options.className=o.className||u.defaults.className,this.options.stopOnFocus=o.stopOnFocus===void 0?u.defaults.stopOnFocus:o.stopOnFocus,this.options.onClick=o.onClick||u.defaults.onClick,this.options.offset=o.offset||u.defaults.offset,this.options.escapeMarkup=o.escapeMarkup!==void 0?o.escapeMarkup:u.defaults.escapeMarkup,this.options.ariaLive=o.ariaLive||u.defaults.ariaLive,this.options.style=o.style||u.defaults.style,o.backgroundColor&&(this.options.style.background=o.backgroundColor),this},buildToast:function(){if(!this.options)throw"Toastify is not initialized";var o=document.createElement("div");o.className="toastify on "+this.options.className,this.options.position?o.className+=" toastify-"+this.options.position:this.options.positionLeft===!0?(o.className+=" toastify-left",console.warn("Property `positionLeft` will be depreciated in further versions. Please use `position` instead.")):o.className+=" toastify-right",o.className+=" "+this.options.gravity,this.options.backgroundColor&&console.warn('DEPRECATION NOTICE: "backgroundColor" is being deprecated. Please use the "style.background" property.');for(var a in this.options.style)o.style[a]=this.options.style[a];if(this.options.ariaLive&&o.setAttribute("aria-live",this.options.ariaLive),this.options.node&&this.options.node.nodeType===Node.ELEMENT_NODE)o.appendChild(this.options.node);else if(this.options.escapeMarkup?o.innerText=this.options.text:o.innerHTML=this.options.text,this.options.avatar!==""){var r=document.createElement("img");r.src=this.options.avatar,r.className="toastify-avatar",this.options.position=="left"||this.options.positionLeft===!0?o.appendChild(r):o.insertAdjacentElement("afterbegin",r)}if(this.options.close===!0){var m=document.createElement("button");m.type="button",m.setAttribute("aria-label","Close"),m.className="toast-close",m.innerHTML="✖",m.addEventListener("click",function(F){F.stopPropagation(),this.removeElement(this.toastElement),window.clearTimeout(this.toastElement.timeOutValue)}.bind(this));var l=window.innerWidth>0?window.innerWidth:screen.width;(this.options.position=="left"||this.options.positionLeft===!0)&&l>360?o.insertAdjacentElement("afterbegin",m):o.appendChild(m)}if(this.options.stopOnFocus&&this.options.duration>0){var g=this;o.addEventListener("mouseover",function(F){window.clearTimeout(o.timeOutValue)}),o.addEventListener("mouseleave",function(){o.timeOutValue=window.setTimeout(function(){g.removeElement(o)},g.options.duration)})}if(typeof this.options.destination<"u"&&o.addEventListener("click",function(F){F.stopPropagation(),this.options.newWindow===!0?window.open(this.options.destination,"_blank"):window.location=this.options.destination}.bind(this)),typeof this.options.onClick=="function"&&typeof this.options.destination>"u"&&o.addEventListener("click",function(F){F.stopPropagation(),this.options.onClick()}.bind(this)),typeof this.options.offset=="object"){var p=n("x",this.options),h=n("y",this.options),y=this.options.position=="left"?p:"-"+p,E=this.options.gravity=="toastify-top"?h:"-"+h;o.style.transform="translate("+y+","+E+")"}return o},showToast:function(){this.toastElement=this.buildToast();var o;if(typeof this.options.selector=="string"?o=document.getElementById(this.options.selector):this.options.selector instanceof HTMLElement||typeof ShadowRoot<"u"&&this.options.selector instanceof ShadowRoot?o=this.options.selector:o=document.body,!o)throw"Root element is not defined";var a=u.defaults.oldestFirst?o.firstChild:o.lastChild;return o.insertBefore(this.toastElement,a),u.reposition(),this.options.duration>0&&(this.toastElement.timeOutValue=window.setTimeout(function(){this.removeElement(this.toastElement)}.bind(this),this.options.duration)),this},hideToast:function(){this.toastElement.timeOutValue&&clearTimeout(this.toastElement.timeOutValue),this.removeElement(this.toastElement)},removeElement:function(o){o.className=o.className.replace(" on",""),window.setTimeout(function(){this.options.node&&this.options.node.parentNode&&this.options.node.parentNode.removeChild(this.options.node),o.parentNode&&o.parentNode.removeChild(o),this.options.callback.call(o),u.reposition()}.bind(this),400)}},u.reposition=function(){for(var o={top:15,bottom:15},a={top:15,bottom:15},r={top:15,bottom:15},m=document.getElementsByClassName("toastify"),l,g=0;g0?window.innerWidth:screen.width;y<=360?(m[g].style[l]=r[l]+"px",r[l]+=p+h):i(m[g],"toastify-left")===!0?(m[g].style[l]=o[l]+"px",o[l]+=p+h):(m[g].style[l]=a[l]+"px",a[l]+=p+h)}return this};function n(o,a){return a.offset[o]?isNaN(a.offset[o])?a.offset[o]:a.offset[o]+"px":"0px"}function i(o,a){return!o||typeof a!="string"?!1:!!(o.className&&o.className.trim().split(/\s+/gi).indexOf(a)>-1)}return u.lib.init.prototype=u.lib,u})})(Na)),Na.exports}var W1=V1();const H1=O0(W1);pn(Jh),pn(Kh),ft("a few seconds ago"),ft("seconds ago"),ft("sec. ago");const G1=/mac|ipad|iphone|darwin/i.test(navigator.userAgent),q1=window.OCP?.Accessibility?.disableKeyboardShortcuts?.(),K1=/^[a-zA-Z0-9]$/,Y1=/^[^\x20-\x7F]$/;function Z1(e,t){return!(e.target instanceof HTMLElement)||e.target instanceof HTMLInputElement||e.target instanceof HTMLTextAreaElement||e.target instanceof HTMLSelectElement||e.target.isContentEditable?!0:t.allowInModal?!1:Array.from(document.getElementsByClassName("modal-mask")).filter(u=>u.checkVisibility()).length>0}function N4(e,t){return u=>{if((G1?u.metaKey:u.ctrlKey)===!!t.ctrl){if(u.altKey!==!!t.alt||t.shift!==void 0&&u.shiftKey!==!!t.shift||Z1(u,t))return;t.prevent&&u.preventDefault(),t.stop&&u.stopPropagation(),e(u)}}}function _4(e,t=()=>{},u={}){if(q1)return()=>{};const s=(a,r)=>{if(a.key===r)return!0;if(u.caseSensitive){const m=r===r.toLowerCase(),l=a.key===a.key.toLowerCase();if(m!==l)return!1}return K1.test(r)&&Y1.test(a.key)?a.code.replace(/^(?:Key|Digit|Numpad)/,"")===r.toUpperCase():a.key.toLowerCase()===r.toLowerCase()},n=a=>typeof e=="function"?e(a):typeof e=="string"?s(a,e):Array.isArray(e)?e.some(r=>s(a,r)):!0,i=Jl(n,N4(t,u),{eventName:"keydown",dedupe:!0,passive:!u.prevent}),o=u.push?Jl(n,N4(t,u),{eventName:"keyup",passive:!u.prevent}):()=>{};return()=>{i(),o()}}function X1(e=document.body){const t=window.getComputedStyle(e).getPropertyValue("--background-invert-if-dark");return t!==void 0?t==="invert(100%)":!1}X1();const J1=cn(L3());window.addEventListener("resize",()=>{J1.value=L3()});function L3(){return window.outerHeight===window.screen.height}function O4(e){return!e.parent||"vapor"in e||"vapor"in e.parent||e.parent.subTree!==e.vnode?null:e.parent}function Q1(e){const t=[e];let u=O4(e);for(;u;)t.push(u),u=O4(u);return t}function eC(){const e=uu();if(!e)throw new Error("useScopeId must be called within a setup context");const t=Q1(e).map(u=>u.vnode.scopeId).filter(Boolean);return Object.fromEntries(t.map(u=>[u,""]))}pn(Xh,Qh);const tC=["aria-labelledby","aria-describedby"],uC=["data-theme-light","data-theme-dark"],sC=["id"],nC={class:"icons-menu"},iC=["title"],oC=["id"],aC={class:"modal-container__content"},rC=tu({inheritAttrs:!1,__name:"NcModal",props:ml({name:{default:""},hasPrevious:{type:Boolean},hasNext:{type:Boolean},outTransition:{type:Boolean},enableSlideshow:{type:Boolean},slideshowDelay:{default:5e3},slideshowPaused:{type:Boolean},disableSwipe:{type:Boolean},spreadNavigation:{type:Boolean},size:{default:"normal"},noClose:{type:Boolean},closeOnClickOutside:{type:Boolean},dark:{type:Boolean},lightBackdrop:{type:Boolean},container:{default:"body"},closeButtonOutside:{type:Boolean},additionalTrapElements:{default:()=>[]},inlineActions:{default:0},labelId:{default:""},setReturnFocus:{default:void 0}},{show:{type:Boolean,default:!0},showModifiers:{}}),emits:ml(["next","previous","close","update:show"],["update:show"]),setup(e,{emit:t}){X0(M=>({v046d2bb2:B.value,v71f7c020:y.value}));const u=Zf(e,"show"),s=e,n=t,i=eC(),o=_s(),a=Nf("mask");let r;gn(()=>G()),_u(()=>s.additionalTrapElements,M=>{r&&r.updateContainerElements([a.value,...M])});const{isActive:m,pause:l,resume:g}=Sh(A,rf(()=>s.slideshowDelay),{immediate:!1}),p=cn(0),h=cn(!1);Gd(()=>{h.value&&!s.slideshowPaused?g():m.value&&l()});const y=Ue(()=>`${s.slideshowDelay}ms`),{stop:E}=Rh(a,{onSwipeEnd:S});gn(E),_4("Escape",()=>{ii().at(-1)===r&&I()},{allowInModal:!0}),_4(["ArrowLeft","ArrowRight"],M=>{document.activeElement&&!a.value.contains(document.activeElement)||(M.key==="ArrowLeft"!==v0?O():A())},{allowInModal:!0});const F=Uf(),B=Ue(()=>{let M=0;return s.hasNext&&s.enableSlideshow&&M++,!s.noClose&&s.closeButtonOutside&&M++,F.actions&&M++,M});En(()=>{!s.name&&s.labelId});function A(M){if(!s.hasNext){h.value=!1;return}M&&m.value&&q(),n("next",M)}function O(M){s.hasPrevious&&(M&&m.value&&q(),n("previous",M))}function S(M,ie){if(!s.disableSwipe){if(ie!=="left"&&ie!=="right")return;ie==="left"!==v0?A(M):O(M)}}function q(){l(),g(),p.value++}function I(M){s.noClose||(u.value=!1,setTimeout(()=>{n("close",M)},300))}function Y(M){s.closeOnClickOutside&&I(M)}async function ne(){if(r)return;await Ha();const M={allowOutsideClick:!0,fallbackFocus:a.value,trapStack:ii(),escapeDeactivates:!1,setReturnFocus:s.setReturnFocus};r=f3([a.value,...s.additionalTrapElements],M),r.activate()}function G(){r&&(r?.deactivate(),r=void 0)}return(M,ie)=>(X(),et(Ff,{disabled:e.container===null,to:e.container},[Be(Js,{name:"fade",appear:"",onAfterEnter:ne,onBeforeLeave:G},{default:Pe(()=>[ys(ve("div",ut({...M.$attrs,...Fe(i)},{ref:"mask",class:["modal-mask",{"modal-mask--opaque":e.dark||e.closeButtonOutside||e.hasPrevious||e.hasNext,"modal-mask--light":e.lightBackdrop}],role:"dialog","aria-modal":"true","aria-labelledby":e.labelId||`modal-name-${Fe(o)}`,"aria-describedby":"modal-description-"+Fe(o),tabindex:"-1"}),[Be(Js,{name:"fade-visibility",appear:""},{default:Pe(()=>[ve("div",{class:"modal-header","data-theme-light":e.lightBackdrop,"data-theme-dark":!e.lightBackdrop},[e.name.trim()!==""?(X(),me("h2",{key:0,id:"modal-name-"+Fe(o),class:"modal-header__name"},dt(e.name),9,sC)):Ve("",!0),ve("div",nC,[e.hasNext&&e.enableSlideshow?(X(),me("button",{key:0,class:Bt(["play-pause-icons",{"play-pause-icons--paused":e.slideshowPaused}]),title:Fe(m)?Fe(ft)("Pause slideshow"):Fe(ft)("Start slideshow"),type:"button",onClick:ie[0]||(ie[0]=w=>h.value=!h.value)},[Be(Es,{class:"play-pause-icons__icon",inline:"",name:Fe(m)?Fe(ft)("Pause slideshow"):Fe(ft)("Start slideshow"),path:Fe(m)?Fe(Vh):Fe(Wh)},null,8,["name","path"]),Fe(m)?(X(),me("svg",{key:`${Fe(o)}-animation-${p.value}`,class:"progress-ring",height:"50",width:"50"},[...ie[1]||(ie[1]=[ve("circle",{class:"progress-ring__circle",stroke:"white","stroke-width":"2",fill:"transparent",r:"15",cx:"25",cy:"25"},null,-1)])])):Ve("",!0)],10,iC)):Ve("",!0),Be(C1,{class:"header-actions",inline:e.inlineActions},{default:Pe(()=>[ze(M.$slots,"actions",{},void 0,!0)]),_:3},8,["inline"]),!e.noClose&&e.closeButtonOutside?(X(),et(As,{key:1,"aria-label":Fe(ft)("Close"),class:"header-close",variant:"tertiary",onClick:I},{icon:Pe(()=>[Be(Es,{path:Fe(Ql)},null,8,["path"])]),_:1},8,["aria-label"])):Ve("",!0)])],8,uC)]),_:3}),Be(Js,{name:`modal-${e.outTransition?"out":"in"}`,appear:""},{default:Pe(()=>[ys(ve("div",{class:Bt(["modal-wrapper",[`modal-wrapper--${e.size}`,{"modal-wrapper--spread-navigation":e.spreadNavigation}]]),onMousedown:Vi(Y,["self"])},[Be(Js,{name:"fade-visibility",appear:""},{default:Pe(()=>[ys(Be(As,{"aria-label":Fe(ft)("Previous"),class:"prev",variant:"tertiary-no-background",onClick:O},{icon:Pe(()=>[Be(Es,{directional:"",path:Fe(Mh),size:40},null,8,["path"])]),_:1},8,["aria-label"]),[[tn,e.hasPrevious]])]),_:1}),ve("div",{id:"modal-description-"+Fe(o),class:"modal-container"},[ve("div",aC,[ze(M.$slots,"default",{},void 0,!0)]),!e.noClose&&!e.closeButtonOutside?(X(),et(As,{key:0,"aria-label":Fe(ft)("Close"),class:"modal-container__close",variant:"tertiary",onClick:I},{icon:Pe(()=>[Be(Es,{path:Fe(Ql)},null,8,["path"])]),_:1},8,["aria-label"])):Ve("",!0)],8,oC),Be(Js,{name:"fade-visibility",appear:""},{default:Pe(()=>[ys(Be(As,{"aria-label":Fe(ft)("Next"),class:"next",variant:"tertiary-no-background",onClick:A},{icon:Pe(()=>[Be(Es,{directional:"",path:Fe($h),size:40},null,8,["path"])]),_:1},8,["aria-label"]),[[tn,e.hasNext]])]),_:1})],34),[[tn,u.value]])]),_:3},8,["name"])],16,tC),[[tn,u.value]])]),_:3})],8,["disabled","to"]))}}),C2=rt(rC,[["__scopeId","data-v-3c357e2d"]]),lC=["role"],dC={key:0,class:"notecard__heading"},mC={class:"notecard__text"},cC=tu({__name:"NcNoteCard",props:{heading:{default:void 0},showAlert:{type:Boolean},text:{default:void 0},type:{default:"warning"}},setup(e){const t=e,u=Ue(()=>t.showAlert||t.type==="error"),s=Ue(()=>{switch(t.type){case"error":return jh;case"success":return Ih;case"info":return Uh;default:return Lh}});return(n,i)=>(X(),me("div",{class:Bt(["notecard",{[`notecard--${e.type}`]:e.type,"notecard--legacy":Fe(nr)}]),role:u.value?"alert":"note"},[ze(n.$slots,"icon",{},()=>[Be(Fe(Es),{path:s.value,class:Bt(["notecard__icon",{"notecard__icon--heading":e.heading}]),inline:""},null,8,["path","class"])],!0),ve("div",null,[e.heading?(X(),me("p",dC,dt(e.heading),1)):Ve("",!0),ze(n.$slots,"default",{},()=>[ve("p",mC,dt(e.text),1)],!0)])],10,lC))}}),B2=rt(cC,[["__scopeId","data-v-6be9fa31"]]),j3=e3().detectLanguage();for(const e of[{language:"ar",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" لا يصلح كاسم مجلد.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" غير مسموح به كاسم مجلد']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" غير مسموح به داخل اسم مجلد.']},{msgid:"All files",msgstr:["كل الملفات"]},{msgid:"Choose",msgstr:["إختَر"]},{msgid:"Choose {file}",msgstr:["إختر {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["إختَر %n ملف","إختَر %n ملف","إختَر %n ملف","إختَر %n ملفات","إختَر %n ملف","إختر %n ملف"]},{msgid:"Copy",msgstr:["نسخ"]},{msgid:"Copy to {target}",msgstr:["نسخ إلى {target}"]},{msgid:"Could not create the new folder",msgstr:["تعذّر إنشاء المجلد الجديد"]},{msgid:"Could not load files settings",msgstr:["يتعذّر تحميل إعدادات الملفات"]},{msgid:"Could not load files views",msgstr:["تعذر تحميل عرض الملفات"]},{msgid:"Create directory",msgstr:["إنشاء مجلد"]},{msgid:"Current view selector",msgstr:["محدد العرض الحالي"]},{msgid:"Favorites",msgstr:["المفضلة"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["الملفات والمجلدات التي تحددها كمفضلة ستظهر هنا."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["الملفات و المجلدات التي قمت مؤخراً بتعديلها سوف تظهر هنا."]},{msgid:"Filter file list",msgstr:["تصفية قائمة الملفات"]},{msgid:"Folder name cannot be empty.",msgstr:["اسم المجلد لا يمكن أن يكون فارغاً."]},{msgid:"Home",msgstr:["البداية"]},{msgid:"Modified",msgstr:["التعديل"]},{msgid:"Move",msgstr:["نقل"]},{msgid:"Move to {target}",msgstr:["نقل إلى {target}"]},{msgid:"Name",msgstr:["الاسم"]},{msgid:"New",msgstr:["جديد"]},{msgid:"New folder",msgstr:["مجلد جديد"]},{msgid:"New folder name",msgstr:["اسم المجلد الجديد"]},{msgid:"No files in here",msgstr:["لا توجد ملفات هنا"]},{msgid:"No files matching your filter were found.",msgstr:["لا توجد ملفات تتطابق مع عامل التصفية الذي وضعته"]},{msgid:"No matching files",msgstr:["لا توجد ملفات مطابقة"]},{msgid:"Recent",msgstr:["الحالي"]},{msgid:"Select all entries",msgstr:["حدد جميع الإدخالات"]},{msgid:"Select entry",msgstr:["إختَر المدخل"]},{msgid:"Select the row for {nodename}",msgstr:["إختر سطر الـ {nodename}"]},{msgid:"Size",msgstr:["الحجم"]},{msgid:"Undo",msgstr:["تراجع"]},{msgid:"Upload some content or sync with your devices!",msgstr:["قم برفع بعض المحتوى أو المزامنة مع أجهزتك!"]}]},{language:"ast",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:["«{name}» ye un nome de carpeta inválidu."]},{msgid:'"{name}" is not an allowed folder name',msgstr:["«{name}» ye un nome de carpeta inválidu"]},{msgid:'"/" is not allowed inside a folder name.',msgstr:["Nun se permite'l caráuter «/» dientro'l nome de les carpetes."]},{msgid:"All files",msgstr:["Tolos ficheros"]},{msgid:"Choose",msgstr:["Escoyer"]},{msgid:"Choose {file}",msgstr:["Escoyer «{ficheru}»"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Escoyer %n ficheru","Escoyer %n ficheros"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar en: {target}"]},{msgid:"Could not create the new folder",msgstr:["Nun se pudo crear la carpeta"]},{msgid:"Could not load files settings",msgstr:["Nun se pudo cargar la configuración de los ficheros"]},{msgid:"Could not load files views",msgstr:["Nun se pudieron cargar les vistes de los ficheros"]},{msgid:"Create directory",msgstr:["Crear un direutoriu"]},{msgid:"Current view selector",msgstr:["Selector de la vista actual"]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Equí apaecen los ficheros y les carpetes que metas en Favoritos."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Equí apaecen los fichero y les carpetes que modificares apocayá."]},{msgid:"Filter file list",msgstr:["Peñerar la llista de ficheros"]},{msgid:"Folder name cannot be empty.",msgstr:["El nome de la carpeta nun pue tar baleru."]},{msgid:"Home",msgstr:["Aniciu"]},{msgid:"Modified",msgstr:["Modificóse"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover a {target}"]},{msgid:"Name",msgstr:["Nome"]},{msgid:"New",msgstr:["Nuevu"]},{msgid:"New folder",msgstr:["Carpeta nueva"]},{msgid:"New folder name",msgstr:["Nome de carpeta nuevu"]},{msgid:"No files in here",msgstr:["Equí nun hai nengún ficheru"]},{msgid:"No files matching your filter were found.",msgstr:["Nun s'atopó nengún ficheru que concasare cola peñera."]},{msgid:"No matching files",msgstr:["Nun hai nengún ficheru que concase"]},{msgid:"Recent",msgstr:["De recién"]},{msgid:"Select all entries",msgstr:["Seleicionar toles entraes"]},{msgid:"Select entry",msgstr:["Seleicionar la entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Seleicionar la filera de: {nodename}"]},{msgid:"Size",msgstr:["Tamañu"]},{msgid:"Undo",msgstr:["Desfacer"]},{msgid:"Upload some content or sync with your devices!",msgstr:["¡Xubi dalgún elementu o sincroniza colos tos preseos!"]}]},{language:"ca",translations:[{msgid:'"{char}" is not allowed inside a name.',msgstr:[`No és permès d'usar el caràcter "{char}" en un nom.`]},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" no és un nom permès.']},{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" no és vàlid com a nom de carpeta.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" no és vàlid com a nom de carpeta']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" és un mot reservat i no està permès com a nom.']},{msgid:'"/" is not allowed inside a folder name.',msgstr:[`"/" no està permès en el nom d'una carpeta.`]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n conflicte de fitxers","%n conflictes de fitxers"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n onflicte de fitxers a {dirname}","%n conflictes de fitxers a {dirname}"]},{msgid:"All files",msgstr:["Tots els fitxers"]},{msgid:"Cancel",msgstr:["Cancel·lar"]},{msgid:"Cancel the entire operation",msgstr:["Cancel·lar tota l'operació"]},{msgid:"Choose",msgstr:["Tria"]},{msgid:"Choose {file}",msgstr:["Tria {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Tria %n fitxer","Tria %n fitxers"]},{msgid:"Confirm",msgstr:["Confirma"]},{msgid:"Continue",msgstr:["Continuar"]},{msgid:"Copy",msgstr:["Copia"]},{msgid:"Copy to {target}",msgstr:["Copia a {target}"]},{msgid:"Could not create the new folder",msgstr:["No s'ha pogut crear la carpeta nova"]},{msgid:"Could not load files settings",msgstr:["No es poden carregar fitxers de configuració"]},{msgid:"Could not load files views",msgstr:["No es poden carregar fitxers de vistes"]},{msgid:"Create directory",msgstr:["Crea un directori"]},{msgid:"Current view selector",msgstr:["Selector de visualització actual"]},{msgid:"Enter your name",msgstr:["Escriviu el vostre nom"]},{msgid:"Existing version",msgstr:["Versió existent"]},{msgid:"Failed to set nickname.",msgstr:["No s'ha pogut desar el sobrenom."]},{msgid:"Favorites",msgstr:["Preferits"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Els fitxers i les carpetes que marqueu com a favorits es mostraran aquí."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Els fitxers i les carpetes recentment modificats es mostraran aquí."]},{msgid:"Filter file list",msgstr:["Filtrar llistat de fitxers"]},{msgid:"Folder name cannot be empty.",msgstr:["El nom de la carpeta no pot estar buit."]},{msgid:"Guest identification",msgstr:["Identificació com a convidat"]},{msgid:"Home",msgstr:["Inici"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Si seleccioneu les dues versions, el fitxer entrant tindrà un número afegit al seu nom."]},{msgid:"Invalid name.",msgstr:["Nom no vàlid."]},{msgid:"Last modified date unknown",msgstr:["Data de l'última modificació desconeguda"]},{msgid:"Modified",msgstr:["Data de modificació"]},{msgid:"Move",msgstr:["Desplaça"]},{msgid:"Move to {target}",msgstr:["Desplaça a {target}"]},{msgid:"Name",msgstr:["Nom"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Els noms poden tenir com a màxim 64 caràcters."]},{msgid:"Names must not be empty.",msgstr:["Els noms no poden ser buits."]},{msgid:'Names must not end with "{extension}".',msgstr:[`Els noms no poden acabar amb l'extensió "{extension}".`]},{msgid:"Names must not start with a dot.",msgstr:["Els noms no poden començar amb un punt."]},{msgid:"New",msgstr:["Crea"]},{msgid:"New folder",msgstr:["Carpeta nova"]},{msgid:"New folder name",msgstr:["Nom de la carpeta nova"]},{msgid:"New version",msgstr:["Nova versió"]},{msgid:"No files in here",msgstr:["No hi ha cap fitxer"]},{msgid:"No files matching your filter were found.",msgstr:["No s'ha trobat cap fitxer que coincideixi amb el filtre."]},{msgid:"No matching files",msgstr:["No hi ha cap fitxer que coincideixi"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Si us plau, escriu un nom amb 2 caràcters com a mínim."]},{msgid:"Recent",msgstr:["Recents"]},{msgid:"Select all checkboxes",msgstr:["Selecciona totes les caselles de selecció"]},{msgid:"Select all entries",msgstr:["Selecciona totes les entrades"]},{msgid:"Select all existing files",msgstr:["Selecciona tots els fitxers existents"]},{msgid:"Select all new files",msgstr:["Selecciona tots els fitxers nous"]},{msgid:"Select entry",msgstr:["Selecciona l'entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Selecciona la fila per a {nodename}"]},{msgid:"Size",msgstr:["Mida"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Omet %n fitxer","Omet %n fitxers"]},{msgid:"Skip this file",msgstr:["Omet aquest fitxer"]},{msgid:"Submit name",msgstr:["Entreu el nom"]},{msgid:"Undo",msgstr:["Desfés"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Pugeu contingut o sincronitzeu-lo amb els vostres dispositius!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Quan es selecciona una carpeta entrant, també se sobreescriuran els fitxers que hi entrin en conflicte."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Quan es selecciona una carpeta entrant, el contingut s'escriu a la carpeta existent i es realitza una resolució recursiva de conflictes."]},{msgid:"Which files do you want to keep?",msgstr:["Quins fitxers voleu conservar?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Actualment se us mostra com a {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Actualment no esteu identificat."]},{msgid:"You cannot leave the name empty.",msgstr:["No podeu deixar el nom buit."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Heu de triar com a mínim una solució de conflicte"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Heu de seleccionar com a mínim una versió de cada fitxer per continuar."]}]},{language:"cs_CZ",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["znak „{char}“ není možné použít uvnitř názvu složky."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["„{char}“ není možné použít uvnitř názvu."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["„{extension}“ není možné použít jako název."]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["„{segment}“ je vyhrazeným názvem a není možné ho používat pro názvy složek."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["„{segment}“ je vyhrazeným názvem a není možné ho použít."]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n kolize souboru","%n kolize souborů","%n kolizí souborů","%n kolize souborů"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n kolize souborů v {dirname}","%n kolize souborů v {dirname}","%n kolizí souborů v {dirname}","%n kolize souborů v {dirname}"]},{msgid:"All files",msgstr:["Veškeré soubory"]},{msgid:"Cancel",msgstr:["Storno"]},{msgid:"Cancel the entire operation",msgstr:["Zrušit celou operaci"]},{msgid:"Choose",msgstr:["Zvolit"]},{msgid:"Choose {file}",msgstr:["Zvolit {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Zvolte %n soubor","Zvolte %n soubory","Zvolte %n souborů","Zvolte %n soubory"]},{msgid:"Confirm",msgstr:["Potvrdit"]},{msgid:"Continue",msgstr:["Pokračovat"]},{msgid:"Copy",msgstr:["Zkopírovat"]},{msgid:"Copy to {target}",msgstr:["Zkopírovat do {target}"]},{msgid:"Could not create the new folder",msgstr:["Novou složku se nepodařilo vytvořit"]},{msgid:"Could not load files settings",msgstr:["Nepodařilo se načíst nastavení pro soubory"]},{msgid:"Could not load files views",msgstr:["Nepodařilo se načíst pohledy souborů"]},{msgid:"Create directory",msgstr:["Vytvořit složku"]},{msgid:"Current view selector",msgstr:["Výběr stávajícího zobrazení"]},{msgid:"Enter your name",msgstr:["Zadejte své jméno"]},{msgid:"Existing version",msgstr:["Existující verze"]},{msgid:"Failed to set nickname.",msgstr:["Nepodařilo se nastavit přezdívku."]},{msgid:"Favorites",msgstr:["Oblíbené"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Zde se zobrazí soubory a složky, které označíte jako oblíbené."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Zde se zobrazí soubory a složky, které jste nedávno pozměnili."]},{msgid:"Filter file list",msgstr:["Filtrovat seznam souborů"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["Názvy složek nemohou končit na „{extension}“."]},{msgid:"Guest identification",msgstr:["Identifikace hosta"]},{msgid:"Home",msgstr:["Domů"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Pokud vyberete obě verze, pak k názvu příchozího souboru bude přidáno číslo."]},{msgid:"Invalid folder name.",msgstr:["Neplatný název složky."]},{msgid:"Invalid name.",msgstr:["Neplatný název."]},{msgid:"Last modified date unknown",msgstr:["Datum poslední změny neznámé"]},{msgid:"Modified",msgstr:["Změněno"]},{msgid:"Move",msgstr:["Přesounout"]},{msgid:"Move to {target}",msgstr:["Přesunout do {target}"]},{msgid:"Name",msgstr:["Název"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Je třeba, aby délka jmen nepřesahovala 64 znaků."]},{msgid:"Names must not be empty.",msgstr:["Názvy je třeba vyplnit."]},{msgid:'Names must not end with "{extension}".',msgstr:["Názvy nemohou končit na „{extension}“."]},{msgid:"Names must not start with a dot.",msgstr:["Názvy nemohou začínat tečkou."]},{msgid:"New",msgstr:["Nové"]},{msgid:"New folder",msgstr:["Nová složka"]},{msgid:"New folder name",msgstr:["Název pro novou složku"]},{msgid:"New version",msgstr:["Nová verze"]},{msgid:"No files in here",msgstr:["Nejsou zde žádné soubory"]},{msgid:"No files matching your filter were found.",msgstr:["Nenalezeny žádné soubory odpovídající vašemu filtru"]},{msgid:"No matching files",msgstr:["Žádné odpovídající soubory"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Zadejte jméno dlouhé alespoň 2 znaky."]},{msgid:"Recent",msgstr:["Nedávné"]},{msgid:"Select all checkboxes",msgstr:["Vybrat všechny zaškrtávací kolonky"]},{msgid:"Select all entries",msgstr:["Vybrat všechny položky"]},{msgid:"Select all existing files",msgstr:["Vybrat všechny existující soubory"]},{msgid:"Select all new files",msgstr:["Vybrat všechny nové soubory"]},{msgid:"Select entry",msgstr:["Vybrat položku"]},{msgid:"Select the row for {nodename}",msgstr:["Vybrat řádek pro {nodename}"]},{msgid:"Size",msgstr:["Velikost"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Přeskočit %n soubor","Přeskočit %n soubory","Přeskočit %n souborů","Přeskočit %n soubory"]},{msgid:"Skip this file",msgstr:["Přeskočit tento soubor"]},{msgid:"Submit name",msgstr:["Odeslat jméno"]},{msgid:"Undo",msgstr:["Zpět"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Nahrajte sem nějaký obsah nebo proveďte synchronizaci se svými zařízeními!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Pokud je vybrána příchozí složka, budou v ní také přepsány jakékoli kolidující soubory."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Když je vybrána příchozí složka, jakékoli soubory v ní budou také přepsány."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Pokud je vybrána příchozí složka, je obsah zapsán do existující složky a je provedeno rekurzivní vyřešení kolizí."]},{msgid:"Which files do you want to keep?",msgstr:["Které soubory chcete ponechat?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["V tuto chvíli jste identifikováni jako {nickname}."]},{msgid:"You are currently not identified.",msgstr:["V tuto chvíli nejste identifikovaní."]},{msgid:"You cannot leave the name empty.",msgstr:["Jméno nelze ponechat nevyplněné."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Je třeba zvolit alespoň jedno z řešení kolize"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Aby bylo možné pokračovat, je třeba vybrat alespoň jednu verzi od každého souboru."]}]},{language:"da",translations:[{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" er ikke tilladt i et navn.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" er ikke tilladt i et navn.']},{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" er et ugyldigt mappenavn.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" er ikke et tilladt mappenavn']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" er et reserveret navn og er derfor ikke tilladt.']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" er ikke tilladt i et mappenavn.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n filkonflikt","%n filer konflikter"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n filkonflikt i {dirname}","%n filkonflikter i {dirname}"]},{msgid:"All files",msgstr:["Alle filer"]},{msgid:"Cancel",msgstr:["Fortryd"]},{msgid:"Cancel the entire operation",msgstr:["Annullér hele operationen"]},{msgid:"Choose",msgstr:["Vælg"]},{msgid:"Choose {file}",msgstr:["Vælg {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Vælg %n fil","Vælg %n filer"]},{msgid:"Confirm",msgstr:["Bekræft"]},{msgid:"Continue",msgstr:["Fortsæt"]},{msgid:"Copy",msgstr:["Kopier"]},{msgid:"Copy to {target}",msgstr:["Kopier til {target}"]},{msgid:"Could not create the new folder",msgstr:["Kunne ikke oprette den nye mappe"]},{msgid:"Could not load files settings",msgstr:["Filindstillingerne kunne ikke indlæses"]},{msgid:"Could not load files views",msgstr:["Kunne ikke indlæse filvisninger"]},{msgid:"Create directory",msgstr:["Opret mappe"]},{msgid:"Current view selector",msgstr:["Aktuel visningsvælger"]},{msgid:"Enter your name",msgstr:["Indtast dit navn"]},{msgid:"Existing version",msgstr:["Eksisterende version"]},{msgid:"Failed to set nickname.",msgstr:["Forsøg på at gemme kaldenavn mislykkedes."]},{msgid:"Favorites",msgstr:["Favoritter"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Filer og mapper, du markerer som foretrukne, vises her."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Filer og mapper, du for nylig har ændret, vises her."]},{msgid:"Filter file list",msgstr:["Filtrer fil liste"]},{msgid:"Folder name cannot be empty.",msgstr:["Mappenavnet må ikke være tomt."]},{msgid:"Guest identification",msgstr:["Gæsteidentifikation"]},{msgid:"Home",msgstr:["Hjem"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Hvis du vælger begge versioner, vil den indkommende fil have et nummer tilføjet til sit navn."]},{msgid:"Invalid name.",msgstr:["Ugyldigt navn."]},{msgid:"Last modified date unknown",msgstr:["Senest ændret dato ukendt"]},{msgid:"Modified",msgstr:["Ændret"]},{msgid:"Move",msgstr:["Flyt"]},{msgid:"Move to {target}",msgstr:["Flyt til {target}"]},{msgid:"Name",msgstr:["Navn"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Navne kan højst være 64 tegn lange."]},{msgid:"Names must not be empty.",msgstr:["Navne kan ikke være tomt."]},{msgid:'Names must not end with "{extension}".',msgstr:['Navne må ikke ende på "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Navne skal starte med et punktum."]},{msgid:"New",msgstr:["Ny"]},{msgid:"New folder",msgstr:["Ny mappe"]},{msgid:"New folder name",msgstr:["Ny mappe navn"]},{msgid:"New version",msgstr:["Ny version"]},{msgid:"No files in here",msgstr:["Ingen filer here"]},{msgid:"No files matching your filter were found.",msgstr:["Der blev ikke fundet nogen filer, der matcher dit filter."]},{msgid:"No matching files",msgstr:["Ingen matchende filer"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Indtast et navn med mindst 2 tegn."]},{msgid:"Recent",msgstr:["Seneste"]},{msgid:"Select all checkboxes",msgstr:["Markér alle afkrydsningsfelter"]},{msgid:"Select all entries",msgstr:["Vælg alle poster"]},{msgid:"Select all existing files",msgstr:["Vælg alle eksisterende filer"]},{msgid:"Select all new files",msgstr:["Vælg alle nye filer"]},{msgid:"Select entry",msgstr:["Vælg post"]},{msgid:"Select the row for {nodename}",msgstr:["Vælg rækken for {nodenavn}"]},{msgid:"Size",msgstr:["Størelse"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Spring %n fil over","Spring %n filer over"]},{msgid:"Skip this file",msgstr:["Spring denne fil over"]},{msgid:"Submit name",msgstr:["Indsend navn"]},{msgid:"Undo",msgstr:["Fortryd"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Upload noget indhold eller synkroniser med dine enheder!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Når en indkommende mappe er valgt, vil eventuelle modstridende filer i det også blive overskrevet."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Når en indkommende mappe er valgt, er indholdet skrevet ind i den eksisterende mappe og en rekursiv konfliktløsning udføres."]},{msgid:"Which files do you want to keep?",msgstr:["Hvilke filer vil du have?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Du er i øjeblikket identificeret som {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Du er ikke identificeret."]},{msgid:"You cannot leave the name empty.",msgstr:["Du kan ikke efterlade navnet tomt."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Du skal vælge mindst én konfliktløsning"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du skal vælge mindst én version af hver fil for at fortsætte."]}]},{language:"de",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" ist innerhalb eines Ordnernamens nicht zulässig.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" ist innerhalb eines Namens nicht zulässig.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" ist kein zulässiger Name.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" ist ein reservierter Name und nicht zulässig für Ordnernamen.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" ist ein reservierter Name und nicht zulässig.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n Dateikonflikt","%n Dateikonflikte"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n Dateikonflikt in {dirname}","%n Dateikonflikte in {dirname}"]},{msgid:"All files",msgstr:["Alle Dateien"]},{msgid:"Cancel",msgstr:["Abbrechen"]},{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},{msgid:"Choose",msgstr:["Auswählen"]},{msgid:"Choose {file}",msgstr:["{file} auswählen"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["%n Datei auswählen","%n Dateien auswählen"]},{msgid:"Confirm",msgstr:["Bestätigen"]},{msgid:"Continue",msgstr:["Fortsetzen"]},{msgid:"Copy",msgstr:["Kopieren"]},{msgid:"Copy to {target}",msgstr:["Nach {target} kopieren"]},{msgid:"Could not create the new folder",msgstr:["Der neue Ordner konnte nicht erstellt werden"]},{msgid:"Could not load files settings",msgstr:["Dateieinstellungen konnten nicht geladen werden"]},{msgid:"Could not load files views",msgstr:["Dateiansichten konnten nicht geladen werden"]},{msgid:"Create directory",msgstr:["Verzeichnis erstellen"]},{msgid:"Current view selector",msgstr:["Aktuelle Ansichtsauswahl"]},{msgid:"Enter your name",msgstr:["Gib deinen Namen ein"]},{msgid:"Existing version",msgstr:["Vorhandene Version"]},{msgid:"Failed to set nickname.",msgstr:["Spitzname konnte nicht gespeichert werden."]},{msgid:"Favorites",msgstr:["Favoriten"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Dateien und Ordner, die du als Favorit markierst, werden hier angezeigt."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Dateien und Ordner, die du kürzlich geändert hast, werden hier angezeigt."]},{msgid:"Filter file list",msgstr:["Dateiliste filtern"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Ordnernamen dürfen nicht mit "{extension}" enden.']},{msgid:"Guest identification",msgstr:["Gast-Identifikation"]},{msgid:"Home",msgstr:["Home"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Wenn beide Versionen ausgewählt werden, wird dem Namen der eingehenden Datei eine Nummer hinzugefügt."]},{msgid:"Invalid folder name.",msgstr:["Ungültiger Ordnername."]},{msgid:"Invalid name.",msgstr:["Ungültiger Name."]},{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},{msgid:"Modified",msgstr:["Geändert"]},{msgid:"Move",msgstr:["Verschieben"]},{msgid:"Move to {target}",msgstr:["Nach {target} verschieben"]},{msgid:"Name",msgstr:["Name"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Namen dürfen maximal 64 Zeichen lang sein."]},{msgid:"Names must not be empty.",msgstr:["Namen dürfen nicht leer sein."]},{msgid:'Names must not end with "{extension}".',msgstr:['Namen dürfen nicht mit "{extension}" enden.']},{msgid:"Names must not start with a dot.",msgstr:["Namen dürfen nicht mit einem Punkt beginnen."]},{msgid:"New",msgstr:["Neu"]},{msgid:"New folder",msgstr:["Neuer Ordner"]},{msgid:"New folder name",msgstr:["Neuer Ordnername"]},{msgid:"New version",msgstr:["Neue Version"]},{msgid:"No files in here",msgstr:["Hier sind keine Dateien"]},{msgid:"No files matching your filter were found.",msgstr:["Es wurden keine Dateien gefunden, die deinem Filter entsprechen."]},{msgid:"No matching files",msgstr:["Keine passenden Dateien"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Bitte einen Namen mit mindestens zwei Zeichen eingeben."]},{msgid:"Recent",msgstr:["Neueste"]},{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},{msgid:"Select all entries",msgstr:["Alle Einträge auswählen"]},{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},{msgid:"Select entry",msgstr:["Eintrag auswählen"]},{msgid:"Select the row for {nodename}",msgstr:["Die Zeile für {nodename} auswählen."]},{msgid:"Size",msgstr:["Größe"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["%n Datei überspringen","%n Dateien überspringen"]},{msgid:"Skip this file",msgstr:["Diese Datei überspringen"]},{msgid:"Submit name",msgstr:["Namen senden"]},{msgid:"Undo",msgstr:["Rückgängig machen"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Lade Inhalte hoch oder synchronisiere diese mit deinen Geräten!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden auch alle darin enthaltenen Dateien mit Konflikten überschrieben."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden auch alle darin enthaltenen Dateien überschrieben."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Bei Auswahl eines eingehenden Ordners wird der Inhalt in den vorhandenen Ordner geschrieben und eine rekursive Konfliktlösung durchgeführt."]},{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien sollen behalten werden?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Du bist derzeit als {nickname} identifiziert."]},{msgid:"You are currently not identified.",msgstr:["Du bist momentan nicht identifiziert."]},{msgid:"You cannot leave the name empty.",msgstr:["Du kannst den Namen nicht leer lassen."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Es muss mindestens eine Konfliktlösung gewählt werden"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Es muss mindestens eine Version jeder Datei ausgewählt werden, um fortzufahren."]}]},{language:"de_DE",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" ist innerhalb eines Ordnernamens nicht zulässig.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" ist innerhalb eines Namens nicht zulässig.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" ist kein zulässiger Name.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" ist ein reservierter Name und nicht zulässig für Ordnernamen.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" ist ein reservierter Name und nicht zulässig.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n Dateikonflikt","%n Dateikonflikte"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n Dateikonflikt in {dirname}","%n Dateikonflikte in {dirname}"]},{msgid:"All files",msgstr:["Alle Dateien"]},{msgid:"Cancel",msgstr:["Abbrechen"]},{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},{msgid:"Choose",msgstr:["Auswählen"]},{msgid:"Choose {file}",msgstr:["{file} auswählen"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["%n Datei auswählen","%n Dateien auswählen"]},{msgid:"Confirm",msgstr:["Bestätigen"]},{msgid:"Continue",msgstr:["Fortsetzen"]},{msgid:"Copy",msgstr:["Kopieren"]},{msgid:"Copy to {target}",msgstr:["Nach {target} kopieren"]},{msgid:"Could not create the new folder",msgstr:["Der neue Ordner konnte nicht erstellt werden"]},{msgid:"Could not load files settings",msgstr:["Dateieinstellungen konnten nicht geladen werden"]},{msgid:"Could not load files views",msgstr:["Dateiansichten konnten nicht geladen werden"]},{msgid:"Create directory",msgstr:["Verzeichnis erstellen"]},{msgid:"Current view selector",msgstr:["Aktuelle Ansichtsauswahl"]},{msgid:"Enter your name",msgstr:["Geben Sie Ihren Namen ein"]},{msgid:"Existing version",msgstr:["Vorhandene Version"]},{msgid:"Failed to set nickname.",msgstr:["Spitzname konnte nicht gespeichert werden."]},{msgid:"Favorites",msgstr:["Favoriten"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Dateien und Ordner, die Sie als Favorit markieren, werden hier angezeigt."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Dateien und Ordner, die Sie kürzlich geändert haben, werden hier angezeigt."]},{msgid:"Filter file list",msgstr:["Dateiliste filtern"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Ordnernamen dürfen nicht mit "{extension}" enden.']},{msgid:"Guest identification",msgstr:["Gast-Identifikation"]},{msgid:"Home",msgstr:["Home"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Wenn beide Versionen ausgewählt werden, wird dem Namen der eingehenden Datei eine Nummer hinzugefügt."]},{msgid:"Invalid folder name.",msgstr:["Ungültiger Ordnername."]},{msgid:"Invalid name.",msgstr:["Ungültiger Name."]},{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},{msgid:"Modified",msgstr:["Geändert"]},{msgid:"Move",msgstr:["Verschieben"]},{msgid:"Move to {target}",msgstr:["Nach {target} verschieben"]},{msgid:"Name",msgstr:["Name"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Namen dürfen maximal 64 Zeichen lang sein."]},{msgid:"Names must not be empty.",msgstr:["Namen dürfen nicht leer sein."]},{msgid:'Names must not end with "{extension}".',msgstr:['Namen dürfen nicht mit "{extension}" enden.']},{msgid:"Names must not start with a dot.",msgstr:["Namen dürfen nicht mit einem Punkt beginnen."]},{msgid:"New",msgstr:["Neu"]},{msgid:"New folder",msgstr:["Neuer Ordner"]},{msgid:"New folder name",msgstr:["Neuer Ordnername"]},{msgid:"New version",msgstr:["Neue Version"]},{msgid:"No files in here",msgstr:["Hier sind keine Dateien"]},{msgid:"No files matching your filter were found.",msgstr:["Es wurden keine Dateien gefunden, die Ihrem Filter entsprechen."]},{msgid:"No matching files",msgstr:["Keine passenden Dateien"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Bitte einen Namen mit mindestens zwei Zeichen eingeben."]},{msgid:"Recent",msgstr:["Neueste"]},{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},{msgid:"Select all entries",msgstr:["Alle Einträge auswählen"]},{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},{msgid:"Select entry",msgstr:["Eintrag auswählen"]},{msgid:"Select the row for {nodename}",msgstr:["Die Zeile für {nodename} auswählen."]},{msgid:"Size",msgstr:["Größe"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["%n Datei überspringen","%n Dateien überspringen"]},{msgid:"Skip this file",msgstr:["Diese Datei überspringen"]},{msgid:"Submit name",msgstr:["Namen senden"]},{msgid:"Undo",msgstr:["Rückgängig machen"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Laden Sie Inhalte hoch oder synchronisieren Sie diese mit Ihren Geräten!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden auch alle darin enthaltenen Dateien mit Konflikten überschrieben."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden auch alle darin enthaltenen Dateien überschrieben."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Bei Auswahl eines eingehenden Ordners wird der Inhalt in den vorhandenen Ordner geschrieben und eine rekursive Konfliktlösung durchgeführt."]},{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien sollen behalten werden?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Sie sind derzeit als {nickname} identifiziert."]},{msgid:"You are currently not identified.",msgstr:["Sie sind momentan nicht identifiziert."]},{msgid:"You cannot leave the name empty.",msgstr:["Sie können den Namen nicht leer lassen."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Es muss mindestens eine Konfliktlösung gewählt werden"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Es muss mindestens eine Version jeder Datei ausgewählt werden, um fortzufahren."]}]},{language:"el",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["Το «{char}» δεν επιτρέπεται μέσα σε όνομα φακέλου."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" δεν επιτρέπεται μέσα σε ένα όνομα.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" δεν είναι επιτρεπτό όνομα.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["Το «{segment}» είναι ένα δεσμευμένο όνομα και δεν επιτρέπεται για ονόματα φακέλων."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" είναι ένα δεσμευμένο όνομα και δεν επιτρέπεται.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n σύγκρουση αρχείου","%n σύγκρουση αρχείων"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n σύγκρουση αρχείου στο {dirname}","%n σύγκρουση αρχείων στο {dirname}"]},{msgid:"All files",msgstr:["Όλα τα αρχεία"]},{msgid:"Cancel",msgstr:["Ακύρωση"]},{msgid:"Cancel the entire operation",msgstr:["Ακύρωση όλης της διαδικασίας"]},{msgid:"Choose",msgstr:["Επιλογή"]},{msgid:"Choose {file}",msgstr:["Επιλέξτε {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Επιλέξτε %n αρχείο","Επιλέξτε %n αρχεία"]},{msgid:"Confirm",msgstr:["Επιβεβαίωση"]},{msgid:"Continue",msgstr:["Συνέχεια"]},{msgid:"Copy",msgstr:["Αντιγραφή"]},{msgid:"Copy to {target}",msgstr:["Αντιγραφή στο {target}"]},{msgid:"Could not create the new folder",msgstr:["Αδυναμία δημιουργίας νέου φακέλου"]},{msgid:"Could not load files settings",msgstr:["Αδυναμία φόρτωσης ρυθμίσεων αρχείων"]},{msgid:"Could not load files views",msgstr:["Αδυναμία φόρτωσης προβολών αρχείων"]},{msgid:"Create directory",msgstr:["Δημιουργία καταλόγου"]},{msgid:"Current view selector",msgstr:["Επιλογέας τρέχουσας προβολής"]},{msgid:"Enter your name",msgstr:["Εισάγετε το όνομά σας"]},{msgid:"Existing version",msgstr:["Υφιστάμενη έκδοση"]},{msgid:"Failed to set nickname.",msgstr:["Αποτυχία στην ρύθμιση του ψευδώνυμου."]},{msgid:"Favorites",msgstr:["Αγαπημένα"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Τα αρχεία και οι φάκελοι που επισημάνετε ως αγαπημένα θα εμφανίζονται εδώ."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Τα αρχεία και οι φάκελοι που τροποποιήσατε πρόσφατα θα εμφανίζονται εδώ."]},{msgid:"Filter file list",msgstr:["Φιλτράρισμα λίστας αρχείων"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["Τα ονόματα των φακέλων δεν πρέπει να τελειώνουν με «{extension}»."]},{msgid:"Guest identification",msgstr:["Ταυτοποίηση επισκέπτη"]},{msgid:"Home",msgstr:["Αρχική"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Εάν επιλέξετε και τις δύο εκδόσεις, στο όνομα του εισερχόμενου αρχείου θα προστεθεί ένας αριθμός."]},{msgid:"Invalid folder name.",msgstr:["Μη έγκυρο όνομα φακέλου."]},{msgid:"Invalid name.",msgstr:["Μη έγκυρο όνομα."]},{msgid:"Last modified date unknown",msgstr:["Άγνωστη ημερομηνία τελευταίας τροποποίησης"]},{msgid:"Modified",msgstr:["Τροποποιήθηκε"]},{msgid:"Move",msgstr:["Μετακίνηση"]},{msgid:"Move to {target}",msgstr:["Μετακίνηση στο {target}"]},{msgid:"Name",msgstr:["Όνομα"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Τα ονόματα μπορούν να έχουν μέγιστο μήκος 64 χαρακτήρες."]},{msgid:"Names must not be empty.",msgstr:["Τα ονόματα δεν πρέπει να είναι κενά."]},{msgid:'Names must not end with "{extension}".',msgstr:['Τα ονόματα δεν πρέπει να τελειώνουν με "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Τα ονόματα δεν πρέπει να ξεκινούν με τελεία."]},{msgid:"New",msgstr:["Νέο"]},{msgid:"New folder",msgstr:["Νέος φάκελος"]},{msgid:"New folder name",msgstr:["Όνομα νέου φακέλου"]},{msgid:"New version",msgstr:["Νέα έκδοση"]},{msgid:"No files in here",msgstr:["Δεν υπάρχουν αρχεία εδώ"]},{msgid:"No files matching your filter were found.",msgstr:["Δεν βρέθηκαν αρχεία που να ταιριάζουν με το φίλτρο σας."]},{msgid:"No matching files",msgstr:["Κανένα αρχείο δεν ταιριάζει"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Παρακαλώ εισάγετε ένα όνομα με τουλάχιστον 2 χαρακτήρες."]},{msgid:"Recent",msgstr:["Πρόσφατα"]},{msgid:"Select all checkboxes",msgstr:["Επιλέξτε όλα τα πλαίσια ελέγχου"]},{msgid:"Select all entries",msgstr:["Επιλογή όλων των καταχωρήσεων"]},{msgid:"Select all existing files",msgstr:["Επιλογή όλων των υπάρχοντων αρχείων"]},{msgid:"Select all new files",msgstr:["Επιλογή όλων των νέων αρχείων"]},{msgid:"Select entry",msgstr:["Επιλογή εγγραφής"]},{msgid:"Select the row for {nodename}",msgstr:["Επιλέξτε τη γραμμή για το {nodename}"]},{msgid:"Size",msgstr:["Μέγεθος"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Παράλειψη ενός αρχείου","Παράλειψη %n αρχείων"]},{msgid:"Skip this file",msgstr:["Παράλειψη αυτού το αρχείου"]},{msgid:"Submit name",msgstr:["Υποβολή ονόματος"]},{msgid:"Undo",msgstr:["Αναίρεση"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Ανεβάστε κάποιο περιεχόμενο ή συγχρονίστε με τις συσκευές σας!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Όταν επιλέγεται ένας φάκελος εισερχομένων, όλα τα αρχεία που βρίσκονται σε σύγκρουση μέσα σε αυτόν θα αντικατασταθούν επίσης."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Όταν επιλέγεται ένας φάκελος εισερχομένων, το περιεχόμενο εγγράφεται στον υπάρχοντα φάκελο και εκτελείται μια αναδρομική επίλυση σύγκρουσης."]},{msgid:"Which files do you want to keep?",msgstr:["Ποια αρχεία θέλετε να διατηρήσετε;"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Αυτή τη στιγμή έχετε αναγνωριστεί ως {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Δεν έχετε ταυτοποιηθεί."]},{msgid:"You cannot leave the name empty.",msgstr:["Δεν μπορείτε να αφήσετε το όνομα κενό."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Πρέπει να επιλέξετε τουλάχιστον μία λύση σύγκρουσης"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Πρέπει να επιλέξετε τουλάχιστον μία έκδοση από κάθε αρχείο για να συνεχίσετε."]}]},{language:"en_GB",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" is not allowed inside a folder name.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" is not allowed inside a name.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" is not an allowed name.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" is a reserved name and cannot be used for folder names.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" is a reserved name and not allowed.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n file conflict","%n files conflict"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n file conflict in {dirname}","%n file conflicts in {dirname}"]},{msgid:"All files",msgstr:["All files"]},{msgid:"Cancel",msgstr:["Cancel"]},{msgid:"Cancel the entire operation",msgstr:["Cancel the entire operation"]},{msgid:"Choose",msgstr:["Choose"]},{msgid:"Choose {file}",msgstr:["Choose {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Choose %n file","Choose %n files"]},{msgid:"Confirm",msgstr:["Confirm"]},{msgid:"Continue",msgstr:["Continue"]},{msgid:"Copy",msgstr:["Copy"]},{msgid:"Copy to {target}",msgstr:["Copy to {target}"]},{msgid:"Could not create the new folder",msgstr:["Could not create the new folder"]},{msgid:"Could not load files settings",msgstr:["Could not load files settings"]},{msgid:"Could not load files views",msgstr:["Could not load files views"]},{msgid:"Create directory",msgstr:["Create directory"]},{msgid:"Current view selector",msgstr:["Current view selector"]},{msgid:"Enter your name",msgstr:["Enter your name"]},{msgid:"Existing version",msgstr:["Existing version"]},{msgid:"Failed to set nickname.",msgstr:["Failed to set nickname."]},{msgid:"Favorites",msgstr:["Favourites"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Files and folders you mark as favourite will show up here."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Files and folders you recently modified will show up here."]},{msgid:"Filter file list",msgstr:["Filter file list"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Folder names must not end with "{extension}".']},{msgid:"Guest identification",msgstr:["Guest identification"]},{msgid:"Home",msgstr:["Home"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["If you select both versions, the incoming file will have a number added to its name."]},{msgid:"Invalid folder name.",msgstr:["Invalid folder name."]},{msgid:"Invalid name.",msgstr:["Invalid name."]},{msgid:"Last modified date unknown",msgstr:["Last modified date unknown"]},{msgid:"Modified",msgstr:["Modified"]},{msgid:"Move",msgstr:["Move"]},{msgid:"Move to {target}",msgstr:["Move to {target}"]},{msgid:"Name",msgstr:["Name"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Names may be at most 64 characters long."]},{msgid:"Names must not be empty.",msgstr:["Names must not be empty."]},{msgid:'Names must not end with "{extension}".',msgstr:['Names must not end with "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Names must not start with a dot."]},{msgid:"New",msgstr:["New"]},{msgid:"New folder",msgstr:["New folder"]},{msgid:"New folder name",msgstr:["New folder name"]},{msgid:"New version",msgstr:["New version"]},{msgid:"No files in here",msgstr:["No files in here"]},{msgid:"No files matching your filter were found.",msgstr:["No files matching your filter were found."]},{msgid:"No matching files",msgstr:["No matching files"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Please enter a name with at least 2 characters."]},{msgid:"Recent",msgstr:["Recent"]},{msgid:"Select all checkboxes",msgstr:["Select all checkboxes"]},{msgid:"Select all entries",msgstr:["Select all entries"]},{msgid:"Select all existing files",msgstr:["Select all existing files"]},{msgid:"Select all new files",msgstr:["Select all new files"]},{msgid:"Select entry",msgstr:["Select entry"]},{msgid:"Select the row for {nodename}",msgstr:["Select the row for {nodename}"]},{msgid:"Size",msgstr:["Size"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Skip %n file","Skip %n files"]},{msgid:"Skip this file",msgstr:["Skip this file"]},{msgid:"Submit name",msgstr:["Submit name"]},{msgid:"Undo",msgstr:["Undo"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Upload some content or sync with your devices!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["When an incoming folder is selected, any conflicting files within it will also be overwritten."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["When an incoming folder is selected, any files within it will also be overwritten."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed."]},{msgid:"Which files do you want to keep?",msgstr:["Which files do you want to keep?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["You are currently identified as {nickname}."]},{msgid:"You are currently not identified.",msgstr:["You are currently not identified."]},{msgid:"You cannot leave the name empty.",msgstr:["You cannot leave the name empty."]},{msgid:"You need to choose at least one conflict solution",msgstr:["You need to choose at least one conflict solution"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["You need to select at least one version of each file to continue."]}]},{language:"es",translations:[{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" no está permitido dentro de un nombre.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" no es un nombre permitido.']},{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" es un nombre de carpeta no válido.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" no es un nombre de carpeta permitido']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" es un nombre reservado y no está permitido.']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" no está permitido dentro del nombre de una carpeta.']},{msgid:"All files",msgstr:["Todos los archivos"]},{msgid:"Cancel",msgstr:["Cancelar"]},{msgid:"Choose",msgstr:["Seleccionar"]},{msgid:"Choose {file}",msgstr:["Seleccionar {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Elige %n archivo","Elige %n archivos","Seleccione %n archivos"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar a {target}"]},{msgid:"Could not create the new folder",msgstr:["No se pudo crear la nueva carpeta"]},{msgid:"Could not load files settings",msgstr:["No se pudieron cargar los ajustes de archivos"]},{msgid:"Could not load files views",msgstr:["No se pudieron cargar las vistas de los archivos"]},{msgid:"Create directory",msgstr:["Crear directorio"]},{msgid:"Current view selector",msgstr:["Selector de vista actual"]},{msgid:"Enter your name",msgstr:["Ingrese su nombre"]},{msgid:"Failed to set nickname.",msgstr:["Fallo al establecer apodo."]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Los archivos y carpetas que marque como favoritos aparecerán aquí."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Los archivos y carpetas que modificó recientemente aparecerán aquí."]},{msgid:"Filter file list",msgstr:["Filtrar lista de archivos"]},{msgid:"Folder name cannot be empty.",msgstr:["El nombre de la carpeta no puede estar vacío."]},{msgid:"Guest identification",msgstr:["Identificación de invitado"]},{msgid:"Home",msgstr:["Inicio"]},{msgid:"Invalid name.",msgstr:["Nombre inválido."]},{msgid:"Modified",msgstr:["Modificado"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover a {target}"]},{msgid:"Name",msgstr:["Nombre"]},{msgid:"Names must not be empty.",msgstr:["Los nombres no deben estar vacíos."]},{msgid:'Names must not end with "{extension}".',msgstr:['Los nombres no deben terminar con "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Los nombres no deben iniciar con un punto."]},{msgid:"New",msgstr:["Nuevo"]},{msgid:"New folder",msgstr:[" Nueva carpeta"]},{msgid:"New folder name",msgstr:["Nuevo nombre de carpeta"]},{msgid:"No files in here",msgstr:["No hay archivos aquí"]},{msgid:"No files matching your filter were found.",msgstr:["No se encontraron archivos que coincidiesen con su filtro."]},{msgid:"No matching files",msgstr:["No hay archivos coincidentes"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Por favor, ingrese un nombre con al menos 2 caracteres."]},{msgid:"Recent",msgstr:["Reciente"]},{msgid:"Select all entries",msgstr:["Seleccionar todas las entradas"]},{msgid:"Select entry",msgstr:["Seleccionar entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Seleccione la fila para {nodename}"]},{msgid:"Size",msgstr:["Tamaño"]},{msgid:"Submit name",msgstr:["Enviar nombre"]},{msgid:"Undo",msgstr:["Deshacer"]},{msgid:"Upload some content or sync with your devices!",msgstr:["¡Cargue algún contenido o sincronice con sus dispositivos!"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Ud. se encuentra identificado actualmente como {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Ud. no se encuentra identificado actualmente."]},{msgid:"You cannot leave the name empty.",msgstr:["No puede dejar el nombre vacío."]}]},{language:"es_AR",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" es un nombre de carpeta inválido.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" no es un nombre de carpeta permitido']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" no está permitido en el nombre de una carpeta.']},{msgid:"All files",msgstr:["Todos los archivos"]},{msgid:"Choose",msgstr:["Elegir"]},{msgid:"Choose {file}",msgstr:["Elija {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Elija %n archivo","Elija %n archivos","Elija %n archivos"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar a {target}"]},{msgid:"Could not create the new folder",msgstr:["No se pudo crear la nueva carpeta"]},{msgid:"Could not load files settings",msgstr:["No se pudo cargar la configuración de archivos"]},{msgid:"Could not load files views",msgstr:["No se pudieron cargar las vistas de los archivos"]},{msgid:"Create directory",msgstr:["Crear directorio"]},{msgid:"Current view selector",msgstr:["Selector de vista actual"]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Los archivos y carpetas que marque como favoritos aparecerán aquí."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Los archivos y carpetas que modificó recientemente aparecerán aquí."]},{msgid:"Filter file list",msgstr:["Filtrar lista de archivos"]},{msgid:"Folder name cannot be empty.",msgstr:["El nombre de la carpeta no puede estar vacío."]},{msgid:"Home",msgstr:["Inicio"]},{msgid:"Modified",msgstr:["Modificado"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover a {target}"]},{msgid:"Name",msgstr:["Nombre"]},{msgid:"New",msgstr:["Nuevo"]},{msgid:"New folder",msgstr:["Nueva carpeta"]},{msgid:"New folder name",msgstr:["Nombre de nueva carpeta"]},{msgid:"No files in here",msgstr:["No hay archivos aquí"]},{msgid:"No files matching your filter were found.",msgstr:["No se encontraron archivos que coincidan con su filtro."]},{msgid:"No matching files",msgstr:["No hay archivos coincidentes"]},{msgid:"Recent",msgstr:["Reciente"]},{msgid:"Select all entries",msgstr:["Seleccionar todas las entradas"]},{msgid:"Select entry",msgstr:["Seleccionar entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Seleccione la fila para {nodename}"]},{msgid:"Size",msgstr:["Tamaño"]},{msgid:"Undo",msgstr:["Deshacer"]},{msgid:"Upload some content or sync with your devices!",msgstr:["¡Cargue algún contenido o sincronice con sus dispositivos!"]}]},{language:"es_MX",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" no está permitido dentro de un nombre de carpeta']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" no está permitido dentro de un nombre']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" no es un nombre permitido']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" es un nombre reservado y no está permitido para nombres de carpetas']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" es un nombre reservado y no está permitido']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n conflicto de archivo","%n conflicto de archivos","%n conflicto de archivos"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n conflicto de archivo en {dirname}","%n conflictos de archivo en {dirname}","%n conflictos de archivo en {dirname}"]},{msgid:"All files",msgstr:["Todos los archivos"]},{msgid:"Cancel",msgstr:["Cancelar"]},{msgid:"Cancel the entire operation",msgstr:["Cancelar la operación completa"]},{msgid:"Choose",msgstr:["Seleccionar"]},{msgid:"Choose {file}",msgstr:["Seleccionar {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Seleccionar %n archivo","Seleccionar %n archivos","Seleccionar %n archivos"]},{msgid:"Confirm",msgstr:["Confirmar"]},{msgid:"Continue",msgstr:["Continuar"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar a {target}"]},{msgid:"Could not create the new folder",msgstr:["No se pudo crear la nueva carpeta"]},{msgid:"Could not load files settings",msgstr:["No se pudo cargar la configuración de archivos"]},{msgid:"Could not load files views",msgstr:["No se pudieron cargar las vistas de los archivos"]},{msgid:"Create directory",msgstr:["Crear carpeta"]},{msgid:"Current view selector",msgstr:["Selector de vista actual"]},{msgid:"Enter your name",msgstr:["Ingresa tu nombre"]},{msgid:"Existing version",msgstr:["Versión existente"]},{msgid:"Failed to set nickname.",msgstr:["No se pudo establecer el nickname"]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Los archivos y carpetas que marque como favoritos aparecerán aquí."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Los archivos y carpetas que modificó recientemente aparecerán aquí."]},{msgid:"Filter file list",msgstr:["Filtrar lista de archivos"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Los nombres para carpeta no deben terminar con "{extension}"']},{msgid:"Guest identification",msgstr:["Identificación de invitado"]},{msgid:"Home",msgstr:["Inicio"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Si seleccionas ambas versiones, se le agregará al archivo que se está descargando, un número a su nombre."]},{msgid:"Invalid folder name.",msgstr:["Nombre de carpeta no válido"]},{msgid:"Invalid name.",msgstr:["Nombre no válido"]},{msgid:"Last modified date unknown",msgstr:["Última fecha de modificación desconocida"]},{msgid:"Modified",msgstr:["Modificado"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover a {target}"]},{msgid:"Name",msgstr:["Nombre"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Los nombres pueden tener como máximo 64 caracteres."]},{msgid:"Names must not be empty.",msgstr:["Los nombres no deben estar vacíos."]},{msgid:'Names must not end with "{extension}".',msgstr:['Los nombres no deben terminar con "{extension}"']},{msgid:"Names must not start with a dot.",msgstr:["Los nombres no deben comenzar con un punto."]},{msgid:"New",msgstr:["Nuevo"]},{msgid:"New folder",msgstr:["Nueva carpeta"]},{msgid:"New folder name",msgstr:["Nombre de nueva carpeta"]},{msgid:"New version",msgstr:["Versión nueva"]},{msgid:"No files in here",msgstr:["No hay archivos aquí"]},{msgid:"No files matching your filter were found.",msgstr:["No se encontraron archivos que coincidan con su filtro."]},{msgid:"No matching files",msgstr:["No hay archivos coincidentes"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Por favor ingrese un nombre con al menos 2 caracteres."]},{msgid:"Recent",msgstr:["Reciente"]},{msgid:"Select all checkboxes",msgstr:["Seleccione todas las casillas de verificación"]},{msgid:"Select all entries",msgstr:["Seleccionar todas las entradas"]},{msgid:"Select all existing files",msgstr:["Seleccione todos los archivos que aparecen"]},{msgid:"Select all new files",msgstr:["Seleccione todos los archivos nuevos"]},{msgid:"Select entry",msgstr:["Seleccionar entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Seleccione la fila para {nodename}"]},{msgid:"Size",msgstr:["Tamaño"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Omitir %n archivo","Omitir %n archivos","Omitir %n archivos"]},{msgid:"Skip this file",msgstr:["Omitir este archivo"]},{msgid:"Submit name",msgstr:["Enviar nombre"]},{msgid:"Undo",msgstr:["Deshacer"]},{msgid:"Upload some content or sync with your devices!",msgstr:["¡Suba algún contenido o sincronice con sus dispositivos!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Cuando se selecciona una carpeta en descarga, cualquier archivo conflictivo que contenga también se sobrescribirá."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Cuando se selecciona una carpeta en descarga, el contenido se escribe en la carpeta existente y se realiza una resolución de conflicto recursiva."]},{msgid:"Which files do you want to keep?",msgstr:["¿Qué archivos deseas conservar?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Actualmente estás identificado como {nickname}"]},{msgid:"You are currently not identified.",msgstr:["No estás identificado actualmente."]},{msgid:"You cannot leave the name empty.",msgstr:["No puedes dejar el nombre vacío."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Necesitas elegir al menos una solución al conflicto."]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Necesitas seleccionar al menos una versión de cada archivo para continuar."]}]},{language:"et_EE",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["„{char}“ pole kausta nimes lubatud."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["„{char}“ pole nimes lubatud."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["„{extension}“ pole lubatud nimi."]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["„{segment}“ on reserveeritud nimi ja pole kausta nimes lubatud."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["„{segment}“ on reserveeritud nimi ja pole kasutamiseks lubatud."]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n fail on vastuolus","%n faili on omavahel vastuolus"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n fail on {dirname} kaustas vastuolus","%n faili on omavahel {dirname} kaustas vastuolus"]},{msgid:"All files",msgstr:["Kõik failid"]},{msgid:"Cancel",msgstr:["Katkesta"]},{msgid:"Cancel the entire operation",msgstr:["Katkesta kogu tegevus"]},{msgid:"Choose",msgstr:["Tee valik"]},{msgid:"Choose {file}",msgstr:["Vali {file} fail"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Vali %n fail","Vali %n faili"]},{msgid:"Confirm",msgstr:["Kinnita"]},{msgid:"Continue",msgstr:["Jätka"]},{msgid:"Copy",msgstr:["Kopeeri"]},{msgid:"Copy to {target}",msgstr:["Kopeeri sihtkohta „{target}“"]},{msgid:"Could not create the new folder",msgstr:["Uue kausta loomine ei õnnestunud"]},{msgid:"Could not load files settings",msgstr:["Failide seadistusi ei õnnestunud laadida"]},{msgid:"Could not load files views",msgstr:["Failide vaatamiskordi ei õnnestunud laadida"]},{msgid:"Create directory",msgstr:["Loo kaust"]},{msgid:"Current view selector",msgstr:["Praeguse vaate valija"]},{msgid:"Enter your name",msgstr:["Sisesta oma nimi"]},{msgid:"Existing version",msgstr:["Olemasolev versioon"]},{msgid:"Failed to set nickname.",msgstr:["Hüüdnime sisestamine ei õnnestunud."]},{msgid:"Favorites",msgstr:["Lemmikud"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Failid ja kaustad, mida märgid lemmikuks, kuvatakse siin."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Siin kuvatakse hiljuti muudetud failid ja kaustad."]},{msgid:"Filter file list",msgstr:["Filtreeri faililoendit"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["Kausta nime lõpus ei tohi olla „{extension}“."]},{msgid:"Guest identification",msgstr:["Külalise tuvastamine"]},{msgid:"Home",msgstr:["Avaleht"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Kui valid mõlemad versioonid, siis uue faili nimele lisatakse number."]},{msgid:"Invalid folder name.",msgstr:["Vigane kausta nimi."]},{msgid:"Invalid name.",msgstr:["Vigane nimi."]},{msgid:"Last modified date unknown",msgstr:["Viimase muutmise kuupäev pole teada"]},{msgid:"Modified",msgstr:["Muudetud"]},{msgid:"Move",msgstr:["Teisalda"]},{msgid:"Move to {target}",msgstr:["Teisalda kausta „{target}“"]},{msgid:"Name",msgstr:["Nimi"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Nimed võivad olla vaid kuni 64 tähemärki pikad."]},{msgid:"Names must not be empty.",msgstr:["Nimi ei saa olla tühi."]},{msgid:'Names must not end with "{extension}".',msgstr:["Nime lõpus ei tohi olla „{extension}“."]},{msgid:"Names must not start with a dot.",msgstr:["Nime alguses ei tohi olla punkti."]},{msgid:"New",msgstr:["Uus"]},{msgid:"New folder",msgstr:["Uus kaust"]},{msgid:"New folder name",msgstr:["Uue kausta nimi"]},{msgid:"New version",msgstr:["Uus versioon"]},{msgid:"No files in here",msgstr:["Siin pole faile"]},{msgid:"No files matching your filter were found.",msgstr:["Sinu filtrile vastavaid faile ei leidunud."]},{msgid:"No matching files",msgstr:["Puuduvad sobivad failid"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Palun sisesta vähemalt 2 tähemärki pikk nimi."]},{msgid:"Recent",msgstr:["Hiljutine"]},{msgid:"Select all checkboxes",msgstr:["Vali kõik märkeruudud"]},{msgid:"Select all entries",msgstr:["Vali kõik kirjed"]},{msgid:"Select all existing files",msgstr:["Vali kõik olemasolevad failid"]},{msgid:"Select all new files",msgstr:["Vali kõik uued failid"]},{msgid:"Select entry",msgstr:["Vali kirje"]},{msgid:"Select the row for {nodename}",msgstr:["Vali rida „{nodename}“ jaoks"]},{msgid:"Size",msgstr:["Suurus"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Jäta %n fail vahele","Jäta %n faili vahele"]},{msgid:"Skip this file",msgstr:["Jäta see fail vahele"]},{msgid:"Submit name",msgstr:["Lisa nimi"]},{msgid:"Undo",msgstr:["Tühista"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Lisa mingit sisu või sünkrooni see oma seadmetest!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Kui uute failide kaust on valitud, siis kõik seal leiduvad vastuolus failid saavad üle kirjutatud."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Kui uute (saabuvate) failide kaust on valitud, siis kõik seal leiduvad failid saavad samuti üle kirjutatud."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Kui uute failide kaust on valitud, siis sisu kirjutatakse olemasolevasse kausta ja korraldatakse rekursiivne failikonfliktide lahendamine."]},{msgid:"Which files do you want to keep?",msgstr:["Missugused failid tahaksid alles jätta?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Sa oled hetkel tuvastatav kui {nickname}.."]},{msgid:"You are currently not identified.",msgstr:["Sa oled hetkel tuvastamata."]},{msgid:"You cannot leave the name empty.",msgstr:["Sa ei saa jätta nime tühjaks."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Sa pead valima vähemalt ühe failikonflikti lahenduse."]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Jätkamaks pead valima igast failist vähemalt ühe versiooni."]}]},{language:"fa",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:["{name} نام پوشه معتبر نیست"]},{msgid:'"{name}" is not an allowed folder name',msgstr:["{name} نام پوشه مجاز نیست"]},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" نمی‌تواند در نام پوشه استفاده شود.']},{msgid:"All files",msgstr:["همه فایل‌ها"]},{msgid:"Cancel",msgstr:["لغو"]},{msgid:"Choose",msgstr:["انتخاب"]},{msgid:"Choose {file}",msgstr:["انتخاب {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["انتخاب %n فایل","انتخاب %n فایل"]},{msgid:"Copy",msgstr:["رونوشت"]},{msgid:"Copy to {target}",msgstr:["رونوشت از {target}"]},{msgid:"Could not create the new folder",msgstr:["پوشه جدید ایجاد نشد"]},{msgid:"Could not load files settings",msgstr:["تنظیمات فایل باز نشد"]},{msgid:"Could not load files views",msgstr:["نمای فایل‌ها بارگیری نشد"]},{msgid:"Create directory",msgstr:["ایجاد فهرست"]},{msgid:"Current view selector",msgstr:["انتخابگر نماگر فعلی"]},{msgid:"Enter your name",msgstr:["نام خود را وارد کنید"]},{msgid:"Failed to set nickname.",msgstr:["تنظیم نام مستعار ناموفق بود."]},{msgid:"Favorites",msgstr:["علایق"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["فایل‌ها و پوشه‌هایی که به‌عنوان مورد علاقه علامت‌گذاری می‌کنید در اینجا نشان داده می‌شوند."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["فایل‌ها و پوشه‌هایی که اخیراً تغییر داده‌اید در اینجا نمایش داده می‌شوند."]},{msgid:"Filter file list",msgstr:["فیلتر لیست فایل"]},{msgid:"Folder name cannot be empty.",msgstr:["نام پوشه نمی تواند خالی باشد."]},{msgid:"Guest identification",msgstr:["شناسایی مهمان"]},{msgid:"Home",msgstr:["خانه"]},{msgid:"Modified",msgstr:["اصلاح شده"]},{msgid:"Move",msgstr:["انتقال"]},{msgid:"Move to {target}",msgstr:["انتقال به {target}"]},{msgid:"Name",msgstr:["نام"]},{msgid:"New",msgstr:["جدید"]},{msgid:"New folder",msgstr:["پوشه جدید"]},{msgid:"New folder name",msgstr:["نام پوشه جدید"]},{msgid:"No files in here",msgstr:["فایلی اینجا نیست"]},{msgid:"No files matching your filter were found.",msgstr:["هیچ فایلی مطابق با فیلتر شما یافت نشد."]},{msgid:"No matching files",msgstr:["فایل منطبقی وجود ندارد"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["لطفاً نامی با حداقل ۲ کاراکتر وارد کنید."]},{msgid:"Recent",msgstr:["اخیر"]},{msgid:"Select all entries",msgstr:["انتخاب همه ورودی ها"]},{msgid:"Select entry",msgstr:["انتخاب ورودی"]},{msgid:"Select the row for {nodename}",msgstr:["انتخاب ردیف برای {nodename}"]},{msgid:"Size",msgstr:["اندازه"]},{msgid:"Submit name",msgstr:["ارسال نام"]},{msgid:"Undo",msgstr:["بازگردانی"]},{msgid:"Upload some content or sync with your devices!",msgstr:["مقداری محتوا آپلود کنید یا با دستگاه های خود همگام سازی کنید!"]},{msgid:"You are currently not identified.",msgstr:["شما در حال حاضر شناسایی نشده‌اید."]},{msgid:"You cannot leave the name empty.",msgstr:["نمی‌توانید نام را خالی بگذارید."]}]},{language:"fi_FI",translations:[{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" ei ole sallittu nimessä.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" ei ole sallittu nimi.']},{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" on virheellinen kansion nimi.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" ei ole sallittu kansion nimi']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" on varattu nimi eikä se ole sallittu.']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" ei ole sallittu kansion nimessä.']},{msgid:"All files",msgstr:["Kaikki tiedostot"]},{msgid:"Cancel",msgstr:["Peruuta"]},{msgid:"Choose",msgstr:["Valitse"]},{msgid:"Choose {file}",msgstr:["Valitse {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Valitse %n tiedosto","Valitse %n tiedostoa"]},{msgid:"Copy",msgstr:["Kopioi"]},{msgid:"Copy to {target}",msgstr:["Kopioi sijaintiin {target}"]},{msgid:"Could not create the new folder",msgstr:["Uutta kansiota ei voitu luoda"]},{msgid:"Could not load files settings",msgstr:["Tiedoston asetuksia ei saa ladattua"]},{msgid:"Could not load files views",msgstr:["Tiedoston näkymiä ei saa ladattua"]},{msgid:"Create directory",msgstr:["Luo kansio"]},{msgid:"Current view selector",msgstr:["Nykyisen näkymän valinta"]},{msgid:"Enter your name",msgstr:["Kirjoita nimesi"]},{msgid:"Failed to set nickname.",msgstr:["Kutsumanimen asettaminen epäonnistui."]},{msgid:"Favorites",msgstr:["Suosikit"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Tiedostot ja kansiot, jotka merkitset suosikkeihisi, näkyvät täällä."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Tiedostot ja kansiot, joita muokkasit äskettäin, näkyvät täällä."]},{msgid:"Filter file list",msgstr:["Suodata tiedostolistaa"]},{msgid:"Folder name cannot be empty.",msgstr:["Kansion nimi ei voi olla tyhjä."]},{msgid:"Guest identification",msgstr:["Vieraan tunnistaminen"]},{msgid:"Home",msgstr:["Koti"]},{msgid:"Invalid name.",msgstr:["Virheellinen nimi."]},{msgid:"Modified",msgstr:["Muokattu"]},{msgid:"Move",msgstr:["Siirrä"]},{msgid:"Move to {target}",msgstr:["Siirrä sijaintiin {target}"]},{msgid:"Name",msgstr:["Nimi"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Nimissä voi olla enintään 64 merkkiä."]},{msgid:"Names must not be empty.",msgstr:["Nimet eivät saa olla tyhjiä."]},{msgid:'Names must not end with "{extension}".',msgstr:['Nimet eivät saa päättyä sanaan "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Nimet eivät saa alkaa pisteellä."]},{msgid:"New",msgstr:["Uusi"]},{msgid:"New folder",msgstr:["Uusi kansio"]},{msgid:"New folder name",msgstr:["Uuden kansion nimi"]},{msgid:"No files in here",msgstr:["Täällä ei ole tiedostoja"]},{msgid:"No files matching your filter were found.",msgstr:["Suodatinta vastaavia tiedostoja ei löytynyt."]},{msgid:"No matching files",msgstr:["Ei vastaavia tiedostoja"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Kirjoita vähintään kaksi merkkiä sisältävä nimi."]},{msgid:"Recent",msgstr:["Viimeisimmät"]},{msgid:"Select all entries",msgstr:["Valitse kaikki tietueet"]},{msgid:"Select entry",msgstr:["Valitse tietue"]},{msgid:"Select the row for {nodename}",msgstr:["Valitse rivi {nodename}:lle"]},{msgid:"Size",msgstr:["Koko"]},{msgid:"Submit name",msgstr:["Lähetä nimi"]},{msgid:"Undo",msgstr:["Kumoa"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Lähetä jotain sisältöä tai synkronoi laitteidesi kanssa!"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Sinut tunnetaan tällä hetkellä nimellä {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Sinua ei ole tunnistettu."]},{msgid:"You cannot leave the name empty.",msgstr:["Nimeä ei voi jättää tyhjäksi."]}]},{language:"fr",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:[`"{char}" n'est pas autorisé dans un nom de dossier.`]},{msgid:'"{char}" is not allowed inside a name.',msgstr:[`"{char}" n'est pas autorisé dans un nom.`]},{msgid:'"{extension}" is not an allowed name.',msgstr:[`"{extension}" n'est pas un nom autorisé.`]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:[`"{segment}" est un nom réservé et n'est pas autorisé pour un nom de dossier.`]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:[`"{segment}" est un nom réservé et n'est pas autorisé.`]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n conflit de fichier","%n conflit de fichiers","%n conflit de fichiers"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%nconflit de fichier dans {dirname}","%n conflit de fichiers dans {dirname}","%nconflit de fichiers dans {dirname}"]},{msgid:"All files",msgstr:["Tous les fichiers"]},{msgid:"Cancel",msgstr:["Annuler"]},{msgid:"Cancel the entire operation",msgstr:["Tout annuler "]},{msgid:"Choose",msgstr:["Choisir"]},{msgid:"Choose {file}",msgstr:["Choisir {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Choisir %n fichier","Choisir %n fichiers","Choisir %n fichiers "]},{msgid:"Confirm",msgstr:["Confirmer"]},{msgid:"Continue",msgstr:["Continuer"]},{msgid:"Copy",msgstr:["Copier"]},{msgid:"Copy to {target}",msgstr:["Copier vers {target}"]},{msgid:"Could not create the new folder",msgstr:["Impossible de créer le nouveau dossier"]},{msgid:"Could not load files settings",msgstr:["Les paramètres des fichiers n'ont pas pu être chargés"]},{msgid:"Could not load files views",msgstr:["Impossible de charger les vues des fichiers"]},{msgid:"Create directory",msgstr:["Créer un répertoire"]},{msgid:"Current view selector",msgstr:["Sélecteur d'affichage actuel"]},{msgid:"Enter your name",msgstr:["Entrez votre nom"]},{msgid:"Existing version",msgstr:["Version actuelle "]},{msgid:"Failed to set nickname.",msgstr:["Échec de définition du surnom."]},{msgid:"Favorites",msgstr:["Favoris"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Les fichiers et répertoires marqués en favoris apparaîtront ici."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Les fichiers et répertoires modifiés récemment apparaîtront ici."]},{msgid:"Filter file list",msgstr:["Filtrer la liste des fichiers"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Les noms de dossiers ne doivent pas se terminer par "{extension}".']},{msgid:"Guest identification",msgstr:["Identification d'invité"]},{msgid:"Home",msgstr:["Accueil"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Si vous conservez les deux versions, le fichier reçu sera renommé avec un numéro."]},{msgid:"Invalid folder name.",msgstr:["Nom de dossier invalide."]},{msgid:"Invalid name.",msgstr:["Nom invalide."]},{msgid:"Last modified date unknown",msgstr:["Date de modification inconnue"]},{msgid:"Modified",msgstr:["Modifié"]},{msgid:"Move",msgstr:["Déplacer"]},{msgid:"Move to {target}",msgstr:["Déplacer vers {target}"]},{msgid:"Name",msgstr:["Nom"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Les noms peuvent comporter au maximum 64 caractères."]},{msgid:"Names must not be empty.",msgstr:["Les noms ne peuvent pas être vides."]},{msgid:'Names must not end with "{extension}".',msgstr:['Les noms ne doivent pas se terminer par "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Les noms ne peuvent pas commencer par un point."]},{msgid:"New",msgstr:["Nouveau"]},{msgid:"New folder",msgstr:["Nouveau dossier"]},{msgid:"New folder name",msgstr:["Nom du nouveau dossier"]},{msgid:"New version",msgstr:["Nouvelle version"]},{msgid:"No files in here",msgstr:["Aucun fichier ici"]},{msgid:"No files matching your filter were found.",msgstr:["Aucun fichier trouvé correspondant à votre filtre."]},{msgid:"No matching files",msgstr:["Aucun fichier correspondant"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Veuillez entrer un nom avec au moins 2 caractères."]},{msgid:"Recent",msgstr:["Récents"]},{msgid:"Select all checkboxes",msgstr:["Sélectionner toutes les cases à cocher"]},{msgid:"Select all entries",msgstr:["Tout sélectionner"]},{msgid:"Select all existing files",msgstr:["Sélectionner tous les fichiers existants"]},{msgid:"Select all new files",msgstr:["Sélectionner tous les nouveaux fichiers"]},{msgid:"Select entry",msgstr:["Sélectionner une entrée"]},{msgid:"Select the row for {nodename}",msgstr:["Sélectionner la ligne correspondant à {nodename}"]},{msgid:"Size",msgstr:["Taille"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Ignorer %n fichier","Ignorer %n fichiers ","Ignorer %n fichiers "]},{msgid:"Skip this file",msgstr:["Ignorer ce fichier"]},{msgid:"Submit name",msgstr:["Envoyer le nom"]},{msgid:"Undo",msgstr:["Annuler"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Chargez du contenu ou synchronisez avec vos équipements !"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["En sélectionnant un dossier entrant, les fichiers en conflit qu’il contient seront automatiquement écrasés."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Suite à la sélection d'un dossier en entrée, tout fichier présent dans ce dossier sera alors écrasé. "]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Lorsque vous sélectionnez un dossier entrant, son contenu est ajouté au dossier existant et les conflits sont résolus automatiquement."]},{msgid:"Which files do you want to keep?",msgstr:["Quels fichiers souhaitez-vous conserver ?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Vous êtes actuellement identifié comme {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Vous n'êtes pas identifié actuellement."]},{msgid:"You cannot leave the name empty.",msgstr:["Vous ne pouvez pas laisser le nom vide."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Vous devez choisir au moins une option pour résoudre le conflit"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Sélectionnez au moins une version de chaque fichier pour continuer."]}]},{language:"ga",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:[`Ní cheadaítear "{char}" laistigh d'ainm fillteáin.`]},{msgid:'"{char}" is not allowed inside a name.',msgstr:[`Ní cheadaítear "{char}" laistigh d'ainm.`]},{msgid:'"{extension}" is not an allowed name.',msgstr:['Ní ainm ceadaithe é "{extension}".']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:[`Is ainm curtha in áirithe é "{segment}" agus ní cheadaítear é d'ainmneacha fillteán.`]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['Is ainm curtha in áirithe é "{segment}" agus ní cheadaítear é.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n coimhlint comhaid","%n coimhlint comhad","%n coimhlint comhad","%n coimhlint comhad","%n coimhlint comhad"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n coimhlint comhaid i {dirname}","%n coimhlintí comhaid i {dirname}","%n coimhlintí comhaid i {dirname}","%n coimhlintí comhaid i {dirname}","%n coimhlintí comhaid i {dirname}"]},{msgid:"All files",msgstr:["Gach comhad"]},{msgid:"Cancel",msgstr:["Cealaigh"]},{msgid:"Cancel the entire operation",msgstr:["Cealaigh an oibríocht ar fad"]},{msgid:"Choose",msgstr:["Roghnaigh"]},{msgid:"Choose {file}",msgstr:["Roghnaigh {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Roghnaigh %n comhad","Roghnaigh %n comhaid","Roghnaigh %n comhaid","Roghnaigh %n comhaid","Roghnaigh %n comhaid"]},{msgid:"Confirm",msgstr:["Deimhnigh"]},{msgid:"Continue",msgstr:["Lean ar aghaidh"]},{msgid:"Copy",msgstr:["Cóip"]},{msgid:"Copy to {target}",msgstr:["Cóipeáil chuig {target}"]},{msgid:"Could not create the new folder",msgstr:["Níorbh fhéidir an fillteán nua a chruthú"]},{msgid:"Could not load files settings",msgstr:["Níorbh fhéidir socruithe comhaid a lódáil"]},{msgid:"Could not load files views",msgstr:["Níorbh fhéidir radhairc comhad a lódáil"]},{msgid:"Create directory",msgstr:["Cruthaigh eolaire"]},{msgid:"Current view selector",msgstr:["Roghnóir amhairc reatha"]},{msgid:"Enter your name",msgstr:["Cuir isteach d'ainm"]},{msgid:"Existing version",msgstr:["Leagan atá ann cheana féin"]},{msgid:"Failed to set nickname.",msgstr:["Theip ar leasainm a shocrú."]},{msgid:"Favorites",msgstr:["Ceanáin"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Taispeánfar comhaid agus fillteáin a mharcálann tú mar is fearr leat anseo."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Taispeánfar comhaid agus fillteáin a d'athraigh tú le déanaí anseo."]},{msgid:"Filter file list",msgstr:["Scag liosta comhad"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Ní féidir ainmneacha fillteán a chríochnú le "{extension}".']},{msgid:"Guest identification",msgstr:["Aitheantas aoi"]},{msgid:"Home",msgstr:["Baile"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Má roghnaíonn tú an dá leagan, cuirfear uimhir le hainm an chomhaid atá ag teacht isteach."]},{msgid:"Invalid folder name.",msgstr:["Ainm fillteáin neamhbhailí."]},{msgid:"Invalid name.",msgstr:["Ainm neamhbhailí."]},{msgid:"Last modified date unknown",msgstr:["Dáta an athraithe dheireanaigh anaithnid"]},{msgid:"Modified",msgstr:["Athraithe"]},{msgid:"Move",msgstr:["Bog"]},{msgid:"Move to {target}",msgstr:["Bog go{target}"]},{msgid:"Name",msgstr:["Ainm"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Ní fhéadfaidh ainmneacha a bheith níos mó ná 64 carachtar ar fhad."]},{msgid:"Names must not be empty.",msgstr:["Ní féidir ainmneacha a bheith folamh."]},{msgid:'Names must not end with "{extension}".',msgstr:['Ní féidir ainmneacha a chríochnú le "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Ní mór ainmneacha a bheith ag tosú le ponc."]},{msgid:"New",msgstr:["Nua"]},{msgid:"New folder",msgstr:["Fillteán nua"]},{msgid:"New folder name",msgstr:["Ainm fillteáin nua"]},{msgid:"New version",msgstr:["Leagan nua"]},{msgid:"No files in here",msgstr:["Níl aon chomhaid istigh anseo"]},{msgid:"No files matching your filter were found.",msgstr:["Níor aimsíodh aon chomhad a tháinig le do scagaire."]},{msgid:"No matching files",msgstr:["Gan comhaid meaitseála"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Cuir isteach ainm ina bhfuil 2 charachtar ar a laghad."]},{msgid:"Recent",msgstr:["le déanaí"]},{msgid:"Select all checkboxes",msgstr:["Roghnaigh na boscaí seiceála go léir"]},{msgid:"Select all entries",msgstr:["Roghnaigh gach iontráil"]},{msgid:"Select all existing files",msgstr:["Roghnaigh na comhaid uile atá ann cheana"]},{msgid:"Select all new files",msgstr:["Roghnaigh gach comhad nua"]},{msgid:"Select entry",msgstr:["Roghnaigh iontráil"]},{msgid:"Select the row for {nodename}",msgstr:["Roghnaigh an ró do {nodename}"]},{msgid:"Size",msgstr:["Méid"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Léim %n comhad","Léim %n comhaid","Léim %n comhaid","Léim %n comhaid","Léim %n comhaid"]},{msgid:"Skip this file",msgstr:["Scipeáil an comhad seo"]},{msgid:"Submit name",msgstr:["Cuir isteach ainm"]},{msgid:"Undo",msgstr:["Cealaigh"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Uaslódáil roinnt ábhair nó sioncronaigh le do ghléasanna!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Nuair a roghnaítear fillteán isteach, déanfar aon chomhaid choimhlinteacha ann a athscríobh freisin."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Nuair a roghnaítear fillteán isteach, déanfar aon chomhaid laistigh de a athscríobh freisin."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Nuair a roghnaítear fillteán isteach, scríobhtar an t-ábhar isteach sa fhillteán atá ann cheana féin agus déantar réiteach coinbhleachta athchúrsach."]},{msgid:"Which files do you want to keep?",msgstr:["Cé na comhaid ar mhaith leat a choinneáil?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Is é {nickname} an ainm atá ort faoi láthair."]},{msgid:"You are currently not identified.",msgstr:["Níl aitheantas tugtha duit faoi láthair."]},{msgid:"You cannot leave the name empty.",msgstr:["Ní féidir leat an t-ainm a fhágáil folamh."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Ní mór duit réiteach coinbhleachta amháin ar a laghad a roghnú"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Ní mór duit leagan amháin ar a laghad de gach comhad a roghnú le leanúint ar aghaidh."]}]},{language:"gl",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["«{char}» non está permitido no nome dun cartafol."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["«{char}» non está permitido dentro dun nome."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["«{extension}» non é un nome permitido."]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["«{segment}» é un nome reservado e non está permitido para nomes de cartafoles."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["«{segment}» é un nome reservado e non está permitido."]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n ficheiro en conflito","%n ficheiros en conflito"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n ficheiro en conflito en {dirname}","%n ficheiros en conflito en {dirname}"]},{msgid:"All files",msgstr:["Todos os ficheiros"]},{msgid:"Cancel",msgstr:["Cancelar"]},{msgid:"Cancel the entire operation",msgstr:["Cancelar toda a operación"]},{msgid:"Choose",msgstr:["Escoller"]},{msgid:"Choose {file}",msgstr:["Escoller {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Escoller %n ficheiro","Escoller %n ficheiros"]},{msgid:"Confirm",msgstr:["Confirmar"]},{msgid:"Continue",msgstr:["Continuar"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar en {target}"]},{msgid:"Could not create the new folder",msgstr:["Non foi posíbel crear o novo cartafol"]},{msgid:"Could not load files settings",msgstr:["Non foi posíbel cargar os axustes dos ficheiros"]},{msgid:"Could not load files views",msgstr:["Non foi posíbel cargar as vistas dos ficheiros"]},{msgid:"Create directory",msgstr:["Crear un directorio"]},{msgid:"Current view selector",msgstr:["Selector de vista actual"]},{msgid:"Enter your name",msgstr:["Introduza o seu nome"]},{msgid:"Existing version",msgstr:["Versión existente"]},{msgid:"Failed to set nickname.",msgstr:["Produciuse un fallo ao definir o alcume."]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Os ficheiros e cartafoles que marque como favoritos aparecerán aquí."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Os ficheiros e cartafoles que modificou recentemente aparecerán aquí."]},{msgid:"Filter file list",msgstr:["Filtrar a lista de ficheiros"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["Os nomes de cartafol non deben rematar en «{extension}»."]},{msgid:"Guest identification",msgstr:["Identificación do convidado"]},{msgid:"Home",msgstr:["Inicio"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Se selecciona ambas as versións, o ficheiro entrante terá un número engadido ao seu nome."]},{msgid:"Invalid folder name.",msgstr:["O nome de cartafol non é válido."]},{msgid:"Invalid name.",msgstr:["Nome incorrecto"]},{msgid:"Last modified date unknown",msgstr:["Data da última modificación descoñecida"]},{msgid:"Modified",msgstr:["Modificado"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover cara a {target}"]},{msgid:"Name",msgstr:["Nome"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Os nomes poden ter unha lonxitude máxima de 64 caracteres."]},{msgid:"Names must not be empty.",msgstr:["Os nomes non deben estar baleiros."]},{msgid:'Names must not end with "{extension}".',msgstr:["Os nomes non deben rematar en «{extension}»."]},{msgid:"Names must not start with a dot.",msgstr:["Os nomes non deben comezar cun punto."]},{msgid:"New",msgstr:["Novo"]},{msgid:"New folder",msgstr:["Novo cartafol"]},{msgid:"New folder name",msgstr:["Novo nome do cartafol"]},{msgid:"New version",msgstr:["Nova versión"]},{msgid:"No files in here",msgstr:["Aquí non hai ficheiros"]},{msgid:"No files matching your filter were found.",msgstr:["Non se atopou ningún ficheiro que coincida co filtro."]},{msgid:"No matching files",msgstr:["Non hai ficheiros coincidentes"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Introduza un nome con polo menos 2 caracteres."]},{msgid:"Recent",msgstr:["Recente"]},{msgid:"Select all checkboxes",msgstr:["Seleccionar todas as caixas"]},{msgid:"Select all entries",msgstr:["Seleccionar todas as entradas"]},{msgid:"Select all existing files",msgstr:["Seleccionar todos os ficheiros existentes"]},{msgid:"Select all new files",msgstr:["Seleccionar todos os ficheiros novos"]},{msgid:"Select entry",msgstr:["Seleccionar a entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Seleccionar a fila para {nodename}"]},{msgid:"Size",msgstr:["Tamaño"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Omitir %n ficheiro","Omitir %n ficheiros"]},{msgid:"Skip this file",msgstr:["Omitir este ficheiro"]},{msgid:"Submit name",msgstr:["Enviar o nome"]},{msgid:"Undo",msgstr:["Desfacer"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Enviar algún contido ou sincronizalo cos seus dispositivos!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Cando se selecciona un cartafol entrante, todos os ficheiros conflitivos dentro dela tamén serán sobrescritos."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Cando se selecciona un cartafol entrante, o contido escríbese no cartafol existente e realízase unha resolución recursiva de conflitos."]},{msgid:"Which files do you want to keep?",msgstr:["Que ficheiros quere conservar?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Vde. está identificado actualmente como {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Vde. non está identificado actualmente."]},{msgid:"You cannot leave the name empty.",msgstr:["Vde. non pode deixar o nome baleiro."]},{msgid:"You need to choose at least one conflict solution",msgstr:["É necesario escoller polo menos unha solución de conflito"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["É necesario seleccionar polo menos unha versión de cada ficheiro para continuar."]}]},{language:"hr",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["Znak „{char}” nije dopušten u nazivu mape."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["Znak „{char}” nije dopušten u nazivu."]},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" nije dopušten u nazivu.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" je rezervirana riječ i nije dopušten u nazivu mape.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" je rezervirana riječ i nije dopušten.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["Sukobljava se %n datoteka","Sukobljava se %n datoteke","Sukobljava se %n datoteke"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n sukob datoteka u {dirname}","%n sukoba datoteka u {dirname}","%n sukoba datoteka u {dirname}"]},{msgid:"All files",msgstr:["Sve datoteke"]},{msgid:"Cancel",msgstr:["Odustani"]},{msgid:"Cancel the entire operation",msgstr:["Odustani od cijele operacije"]},{msgid:"Choose",msgstr:["Odaberi"]},{msgid:"Choose {file}",msgstr:["Odaberi {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Odaberi %n datoteku","Odaberi %n datoteka","Odaberi %n datoteke"]},{msgid:"Confirm",msgstr:["Potvrdi"]},{msgid:"Continue",msgstr:["Nastavi"]},{msgid:"Copy",msgstr:["Kopiraj"]},{msgid:"Copy to {target}",msgstr:["Kopiraj u {target}"]},{msgid:"Could not create the new folder",msgstr:["Nije moguće stvoriti novu mapu"]},{msgid:"Could not load files settings",msgstr:["Nije moguće učitati postavke datoteka"]},{msgid:"Could not load files views",msgstr:["Nije moguće učitati prikaze datoteka"]},{msgid:"Create directory",msgstr:["Stvori mapu"]},{msgid:"Current view selector",msgstr:["Odabir trenutačnog prikaza"]},{msgid:"Enter your name",msgstr:["Unesite vaše ime"]},{msgid:"Existing version",msgstr:["Postojeća verzija"]},{msgid:"Failed to set nickname.",msgstr:["Neuspjelo postavljanje nadimka."]},{msgid:"Favorites",msgstr:["Favoriti"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Ovdje se prikazuju datoteke i mape koje ste označili kao favoriti."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Ovdje se prikazuju datoteke i mape koje ste nedavno ažurirali."]},{msgid:"Filter file list",msgstr:["Filtriranje liste datoteka"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Nazivi mapa ne smiju završiti sa "{extension}".']},{msgid:"Guest identification",msgstr:["Identifikacija gosta"]},{msgid:"Home",msgstr:["Naslovna"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Ako odaberete obje verzije, dolaznoj datoteci bit će dodan broj u nazivu."]},{msgid:"Invalid folder name.",msgstr:["Neispavan naziv mape."]},{msgid:"Invalid name.",msgstr:["Neispravan naziv."]},{msgid:"Last modified date unknown",msgstr:["Nepoznat datum zadnjeg ažuriranja"]},{msgid:"Modified",msgstr:["Ažurirano"]},{msgid:"Move",msgstr:["Premjesti"]},{msgid:"Move to {target}",msgstr:["Premjesti u {target}"]},{msgid:"Name",msgstr:["Naziv"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Nazivi mogu imati najviše 64 znaka."]},{msgid:"Names must not be empty.",msgstr:["Nazivi ne smiju biti prazni."]},{msgid:'Names must not end with "{extension}".',msgstr:['Nazivi ne smiju završiti sa "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Nazivi ne smiju započinjati točkom."]},{msgid:"New",msgstr:["Novo"]},{msgid:"New folder",msgstr:["Nova mapa"]},{msgid:"New folder name",msgstr:["Novi naziv mape"]},{msgid:"New version",msgstr:["Nova verzija"]},{msgid:"No files in here",msgstr:["Ovdje nema datoteka"]},{msgid:"No files matching your filter were found.",msgstr:["Nisu pronađene datoteke koje odgovaraju vašem filtru."]},{msgid:"No matching files",msgstr:["Nema odgovarajućih datoteka."]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Unesite naziv s najmanje 2 znaka."]},{msgid:"Recent",msgstr:["Nedavno"]},{msgid:"Select all checkboxes",msgstr:["Označi sve potvrdne okvire"]},{msgid:"Select all entries",msgstr:["Označi sve stavke"]},{msgid:"Select all existing files",msgstr:["Označi sve postojeće datoteke"]},{msgid:"Select all new files",msgstr:["Označi sve nove datoteke"]},{msgid:"Select entry",msgstr:["Označi stavku"]},{msgid:"Select the row for {nodename}",msgstr:["Označi red za{nodename}"]},{msgid:"Size",msgstr:["Veličina"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Preskoči %n datoteku","Preskoči %n datoteke","Preskoči %n datoteke"]},{msgid:"Skip this file",msgstr:["Preskoči ovu datoteku"]},{msgid:"Submit name",msgstr:["Pošalji naziv"]},{msgid:"Undo",msgstr:["Poništi"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Prenesite neki sadržaj ili sinkronizirajte sa svojim uređajima!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Kada je odabrana dolazna mapa, sve datoteke unutar nje koje su u sukobu također će biti prepisane."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Kada je odabrana dolazna mapa, sadržaj se upisuje u postojeću mapu i provodi se rekurzivno rješavanje sukoba."]},{msgid:"Which files do you want to keep?",msgstr:["Koje datoteke želite zadržati?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Trenutno ste identificirani kao {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Trenutno niste identificirani."]},{msgid:"You cannot leave the name empty.",msgstr:["Ne možete ostaviti naziv prazan."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Morate odabrati barem jedno rješenje sukoba"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Morate odabrati barem jednu verziju svake datoteke kako biste nastavili."]}]},{language:"hu_HU",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["A(z) „{char}” nem engedélyezett egy mappanévben."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["A(z) „{char}” nem engedélyezett egy névben."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["A(z) „{extension}” nem engedélyezett név."]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["A(z) „{segment}” foglalt név, és nem engedélyezett a mappanevekben."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["A(z) „{segment}” foglalt név, és nem engedélyezett."]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n ütköző fájl","%n ütköző fájl"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n ütköző fájl ebben: {dirname}","%n ütköző fájl ebben: {dirname}"]},{msgid:"All files",msgstr:["Összes fájl"]},{msgid:"Cancel",msgstr:["Mégse"]},{msgid:"Cancel the entire operation",msgstr:["Egész művelet megszakítása"]},{msgid:"Choose",msgstr:["Kiválasztás"]},{msgid:"Choose {file}",msgstr:["{file} kiválasztása"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["%n fájl kiválasztása","%n fájl kiválasztása"]},{msgid:"Confirm",msgstr:["Megerősítés"]},{msgid:"Continue",msgstr:["Folytatás"]},{msgid:"Copy",msgstr:["Másolás"]},{msgid:"Copy to {target}",msgstr:["Másolás ide: {target}"]},{msgid:"Could not create the new folder",msgstr:["Nem lehet létrehozni az új mappát"]},{msgid:"Could not load files settings",msgstr:["Nem lehet betölteni a fájlok beállításait"]},{msgid:"Could not load files views",msgstr:["Nem lehet betölteni a fájlok nézeteit"]},{msgid:"Create directory",msgstr:["Mappa létrehozása"]},{msgid:"Current view selector",msgstr:["Jelenlegi nézet választója"]},{msgid:"Enter your name",msgstr:["Adja meg a nevét"]},{msgid:"Existing version",msgstr:["Meglévő verzió"]},{msgid:"Failed to set nickname.",msgstr:["Nem sikerült a becenév beállítása."]},{msgid:"Favorites",msgstr:["Kedvencek"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["A kedvencként megjelölt fájlok és mappák itt jelennek meg."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["A nemrég módosított fájlok és mappák itt jelennek meg."]},{msgid:"Filter file list",msgstr:["Fájllista szűrése"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["A mappanevek nem végződhetnek ezzel: „{extension}”."]},{msgid:"Guest identification",msgstr:["Vendégazonosítás"]},{msgid:"Home",msgstr:["Kezdőlap"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Ha mindkét verziót választja, akkor a bejövő fájl nevéhez egy szám lesz hozzáfűzve."]},{msgid:"Invalid folder name.",msgstr:["Érvénytelen mappanév."]},{msgid:"Invalid name.",msgstr:["Érvénytelen név."]},{msgid:"Last modified date unknown",msgstr:["Legutóbbi módosítás ideje ismeretlen"]},{msgid:"Modified",msgstr:["Módosítva"]},{msgid:"Move",msgstr:["Áthelyezés"]},{msgid:"Move to {target}",msgstr:["Áthelyezés ide: {target}"]},{msgid:"Name",msgstr:["Név"]},{msgid:"Names may be at most 64 characters long.",msgstr:["A nevek legfeljebb 64 karakter hosszúak lehetnek."]},{msgid:"Names must not be empty.",msgstr:["A nevek nem lehetnek üresek."]},{msgid:'Names must not end with "{extension}".',msgstr:["A nevek nem végződhetnek ezzel: „{extension}”."]},{msgid:"Names must not start with a dot.",msgstr:["A nevek nem kezdődhetnek ponttal."]},{msgid:"New",msgstr:["Új"]},{msgid:"New folder",msgstr:["Új mappa"]},{msgid:"New folder name",msgstr:["Új mappa neve"]},{msgid:"New version",msgstr:["Új verzió"]},{msgid:"No files in here",msgstr:["Itt nincsenek fájlok"]},{msgid:"No files matching your filter were found.",msgstr:["Nincs a szűrési feltételeknek megfelelő fájl."]},{msgid:"No matching files",msgstr:["Nincs ilyen fájl"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Legalább 2 karakteres nevet adjon meg."]},{msgid:"Recent",msgstr:["Legutóbbi"]},{msgid:"Select all checkboxes",msgstr:["Összes jelölőmező bepipálása"]},{msgid:"Select all entries",msgstr:["Összes bejegyzés kijelölése"]},{msgid:"Select all existing files",msgstr:["Összes meglévő fájl kijelölése"]},{msgid:"Select all new files",msgstr:["Összes új fájl kijelölése"]},{msgid:"Select entry",msgstr:["Bejegyzés kijelölése"]},{msgid:"Select the row for {nodename}",msgstr:["Válasszon sort a következőnek: {nodename}"]},{msgid:"Size",msgstr:["Méret"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["%n fájl kihagyása","%n fájl kihagyása"]},{msgid:"Skip this file",msgstr:["Fájl kihagyása"]},{msgid:"Submit name",msgstr:["Név beküldése"]},{msgid:"Undo",msgstr:["Visszavonás"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Töltsön fel tartalmat, vagy szinkronizáljon az eszközeivel!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Ha egy bejövő mappa van kijelölve, akkor a benne lévő ütköző fájlok is felül lesznek írva."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Amikor egy bejövő mappát kiválaszt, a benne lévő fájlok is felülíródnak."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Ha egy bejövő mappa van kijelölve, akkor a tartalom a meglévő mappába lesz írva, és rekurzív ütközéskezelés lesz végezve."]},{msgid:"Which files do you want to keep?",msgstr:["Mely fájlokat akarja megtartani?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Jelenleg ekként van azonosítva: {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Jelenleg nincs azonosítva."]},{msgid:"You cannot leave the name empty.",msgstr:["A nevet nem hagyhatja üresen."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Legalább egy ütközéskezelési megoldást kell választania"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["A folytatáshoz az összes fájlnak legalább egy verzióját ki kell választania."]}]},{language:"hy",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:["{name} սխալ թղթապանակի անվանում է"]},{msgid:'"{name}" is not an allowed folder name',msgstr:["{name} համարվում է անթույլատրելի թղթապանակի անվանում"]},{msgid:'"/" is not allowed inside a folder name.',msgstr:["/ չի թույլատրվում օգտագործել անվանման մեջ"]},{msgid:"All files",msgstr:["Բոլոր ֆայլերը"]},{msgid:"Choose",msgstr:["Ընտրել"]},{msgid:"Choose {file}",msgstr:["Ընտրել {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Ընտրել %n ֆայլ","Ընտրել %n ֆայլեր"]},{msgid:"Copy",msgstr:["Պատճենել"]},{msgid:"Copy to {target}",msgstr:["Պատճենել {target}"]},{msgid:"Could not create the new folder",msgstr:["Չստացվեց ստեղծել նոր թղթապանակը"]},{msgid:"Could not load files settings",msgstr:["Չստացվեց բեռնել ֆայլի կարգավորումները"]},{msgid:"Could not load files views",msgstr:["Չստացվեց բեռնել ֆայլերի դիտումները"]},{msgid:"Create directory",msgstr:["Ստեղծել դիրեկտորիա"]},{msgid:"Current view selector",msgstr:["Ընթացիկ դիտման ընտրիչ"]},{msgid:"Favorites",msgstr:["Նախընտրելիներ"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Այստեղ կցուցադրվեն այն ֆայլերն ու պանակները, որոնք դուք նշել եք որպես նախընտրելիներ:"]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Այստեղ կցուցադրվեն այն ֆայլերն ու պանակները, որոնք վերջերս փոխել եք:"]},{msgid:"Filter file list",msgstr:["Ֆիլտրել ֆայլերի ցուցակը"]},{msgid:"Folder name cannot be empty.",msgstr:["Թղթապանակի անունը չի կարող դատարկ լինել:"]},{msgid:"Home",msgstr:["Սկիզբ"]},{msgid:"Modified",msgstr:["Փոփոխված"]},{msgid:"Move",msgstr:["Տեղափոխել"]},{msgid:"Move to {target}",msgstr:["Տեղափոխել {target}"]},{msgid:"Name",msgstr:["Անուն"]},{msgid:"New",msgstr:["Նոր"]},{msgid:"New folder",msgstr:["Նոր թղթապանակ"]},{msgid:"New folder name",msgstr:["Նոր թղթապանակի անվանում"]},{msgid:"No files in here",msgstr:["Այստեղ չկան ֆայլեր"]},{msgid:"No files matching your filter were found.",msgstr:["Ձեր ֆիլտրին համապատասխանող ֆայլերը չեն գտնվել:"]},{msgid:"No matching files",msgstr:["Չկան համապատասխան ֆայլեր"]},{msgid:"Recent",msgstr:["Վերջին"]},{msgid:"Select all entries",msgstr:["Ընտրել բոլոր գրառումները"]},{msgid:"Select entry",msgstr:["Ընտրել բոլոր գրառումը"]},{msgid:"Select the row for {nodename}",msgstr:["Ընտրեք տողը {nodename}-ի համար "]},{msgid:"Size",msgstr:["Չափ"]},{msgid:"Undo",msgstr:["Ետարկել"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Ներբեռնեք որոշ բովանդակություն կամ համաժամացրեք այն ձեր սարքերի հետ:"]}]},{language:"id",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" tidak diizinkan di dalam nama folder.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" tidak diizinkan di dalam nama.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" bukan nama yang diizinkan.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" adalah nama yang dicadangkan dan tidak diizinkan untuk nama folder.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" adalah nama yang dicadangkan dan tidak diizinkan.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n konflik file"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n konflik file di {dirname}"]},{msgid:"All files",msgstr:["Semua berkas"]},{msgid:"Cancel",msgstr:["Batal"]},{msgid:"Cancel the entire operation",msgstr:["Batalkan seluruh operasi"]},{msgid:"Choose",msgstr:["Pilih"]},{msgid:"Choose {file}",msgstr:["Pilih {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Pilih %n file"]},{msgid:"Confirm",msgstr:["Konfirmasi"]},{msgid:"Continue",msgstr:["Lanjutkan"]},{msgid:"Copy",msgstr:["Salin"]},{msgid:"Copy to {target}",msgstr:["Salin ke {target}"]},{msgid:"Could not create the new folder",msgstr:["Tidak dapat membuat folder baru"]},{msgid:"Could not load files settings",msgstr:["Tidak dapat memuat pengaturan file"]},{msgid:"Could not load files views",msgstr:["Tidak dapat memuat tampilan file"]},{msgid:"Create directory",msgstr:["Buat direktori"]},{msgid:"Current view selector",msgstr:["Pemilih tampilan saat ini"]},{msgid:"Enter your name",msgstr:["Masukkan nama Anda"]},{msgid:"Existing version",msgstr:["Versi yang ada"]},{msgid:"Failed to set nickname.",msgstr:["Gagal menetapkan nama panggilan."]},{msgid:"Favorites",msgstr:["Favorit"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Berkas dan folder yang Anda tandai sebagai favorit akan muncul di sini."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Berkas dan folder yang Anda ubah baru-baru ini akan muncul di sini."]},{msgid:"Filter file list",msgstr:["Saring daftar berkas"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Nama folder tidak boleh diakhiri dengan "{extension}".']},{msgid:"Guest identification",msgstr:["Identifikasi tamu"]},{msgid:"Home",msgstr:["Beranda"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Jika Anda memilih kedua versi, file yang masuk akan ditambahkan angka pada namanya."]},{msgid:"Invalid folder name.",msgstr:["Nama folder tidak valid."]},{msgid:"Invalid name.",msgstr:["Nama tidak valid."]},{msgid:"Last modified date unknown",msgstr:["Tanggal modifikasi terakhir tidak diketahui"]},{msgid:"Modified",msgstr:["Diubah"]},{msgid:"Move",msgstr:["Pindahkan"]},{msgid:"Move to {target}",msgstr:["Pindahkan ke {target}"]},{msgid:"Name",msgstr:["Nama"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Panjang nama maksimal 64 karakter."]},{msgid:"Names must not be empty.",msgstr:["Nama tidak boleh kosong."]},{msgid:'Names must not end with "{extension}".',msgstr:['Nama tidak boleh diakhiri dengan "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Nama tidak boleh diawali dengan titik."]},{msgid:"New",msgstr:["Baru"]},{msgid:"New folder",msgstr:["Folder baru"]},{msgid:"New folder name",msgstr:["Nama folder baru"]},{msgid:"New version",msgstr:["Versi baru"]},{msgid:"No files in here",msgstr:["Tidak ada berkas di sini"]},{msgid:"No files matching your filter were found.",msgstr:["Tidak ada berkas yang cocok dengan penyaringan Anda."]},{msgid:"No matching files",msgstr:["Tidak ada berkas yang cocok"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Silakan masukkan nama dengan minimal 2 karakter."]},{msgid:"Recent",msgstr:["Terkini"]},{msgid:"Select all checkboxes",msgstr:["Pilih semua kotak centang"]},{msgid:"Select all entries",msgstr:["Pilih semua entri"]},{msgid:"Select all existing files",msgstr:["Pilih semua file yang ada"]},{msgid:"Select all new files",msgstr:["Pilih semua file baru"]},{msgid:"Select entry",msgstr:["Pilih entri"]},{msgid:"Select the row for {nodename}",msgstr:["Pilih baris untuk {nodename}"]},{msgid:"Size",msgstr:["Ukuran"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Lewati %n file"]},{msgid:"Skip this file",msgstr:["Lewati file ini"]},{msgid:"Submit name",msgstr:["Kirim nama"]},{msgid:"Undo",msgstr:["Tidak jadi"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Unggah beberapa konten atau sinkronkan dengan perangkat Anda!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Saat folder yang masuk dipilih, semua file yang konflik di dalamnya juga akan ditimpa."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Saat folder yang masuk dipilih, konten ditulis ke dalam folder yang ada dan penyelesaian konflik rekursif dilakukan."]},{msgid:"Which files do you want to keep?",msgstr:["File mana yang ingin Anda pertahankan?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Saat ini Anda teridentifikasi sebagai {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Saat ini Anda tidak teridentifikasi."]},{msgid:"You cannot leave the name empty.",msgstr:["Anda tidak dapat membiarkan nama kosong."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Anda perlu memilih setidaknya satu solusi konflik"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Anda perlu memilih setidaknya satu versi dari setiap file untuk melanjutkan."]}]},{language:"is",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" er ógilt möppuheiti.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" er ekki leyfilegt möppuheiti']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" er er ekki leyfilegt innan í skráarheiti.']},{msgid:"All files",msgstr:["Allar skrár"]},{msgid:"Choose",msgstr:["Veldu"]},{msgid:"Choose {file}",msgstr:["Veldu {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Veldu %n skrá","Veldu %n skrár"]},{msgid:"Copy",msgstr:["Afrita"]},{msgid:"Copy to {target}",msgstr:["Afrita í {target}"]},{msgid:"Could not create the new folder",msgstr:["Get ekki búið til nýju möppuna"]},{msgid:"Could not load files settings",msgstr:["Tókst ekki að hlaða inn stillingum skráa"]},{msgid:"Could not load files views",msgstr:["Tókst ekki að hlaða inn sýnum skráa"]},{msgid:"Create directory",msgstr:["Búa til möppu"]},{msgid:"Current view selector",msgstr:["Núverandi val sýnar"]},{msgid:"Favorites",msgstr:["Eftirlæti"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Skrár og möppur sem þú merkir sem eftirlæti birtast hér."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Skrár og möppur sem þú breyttir nýlega birtast hér."]},{msgid:"Filter file list",msgstr:["Sía skráalista"]},{msgid:"Folder name cannot be empty.",msgstr:["Möppuheiti má ekki vera tómt."]},{msgid:"Home",msgstr:["Heim"]},{msgid:"Modified",msgstr:["Breytt"]},{msgid:"Move",msgstr:["Færa"]},{msgid:"Move to {target}",msgstr:["Færa í {target}"]},{msgid:"Name",msgstr:["Heiti"]},{msgid:"New",msgstr:["Nýtt"]},{msgid:"New folder",msgstr:["Ný mappa"]},{msgid:"New folder name",msgstr:["Heiti nýrrar möppu"]},{msgid:"No files in here",msgstr:["Engar skrár hér"]},{msgid:"No files matching your filter were found.",msgstr:["Engar skrár fundust sem passa við síuna."]},{msgid:"No matching files",msgstr:["Engar samsvarandi skrár"]},{msgid:"Recent",msgstr:["Nýlegt"]},{msgid:"Select all entries",msgstr:["Velja allar færslur"]},{msgid:"Select entry",msgstr:["Velja færslu"]},{msgid:"Select the row for {nodename}",msgstr:["Veldu röðina fyrir {nodename}"]},{msgid:"Size",msgstr:["Stærð"]},{msgid:"Undo",msgstr:["Afturkalla"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Sendu inn eitthvað efni eða samstilltu við tækin þín!"]}]},{language:"it",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:[`"{char}" non è consentito all'interno di un nome di cartella.`]},{msgid:'"{char}" is not allowed inside a name.',msgstr:[`"{char}" non è consentito all'interno di un nome.`]},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" non è un nome consentito']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" è un nome riservato e non consentito per i nomi delle cartelle.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" è un nome riservato e non consentito.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n file in conflitto","%n file in conflitto","%n file in conflitto"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n file in conflitto in {dirname}","%n file in conflitto in {dirname}","%n file in conflitto in {dirname}"]},{msgid:"All files",msgstr:["Tutti i file"]},{msgid:"Cancel",msgstr:["Annulla"]},{msgid:"Cancel the entire operation",msgstr:["Annulla l'intera operazione"]},{msgid:"Choose",msgstr:["Scegli"]},{msgid:"Choose {file}",msgstr:["Scegli {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Scegli %n file","Scegli %n file","Scegli %n file"]},{msgid:"Confirm",msgstr:["Conferma"]},{msgid:"Continue",msgstr:["Continua"]},{msgid:"Copy",msgstr:["Copia"]},{msgid:"Copy to {target}",msgstr:["Copia in {target}"]},{msgid:"Could not create the new folder",msgstr:["Impossibile creare la nuova cartella"]},{msgid:"Could not load files settings",msgstr:["Impossibile caricare le impostazioni dei file"]},{msgid:"Could not load files views",msgstr:["Impossibile caricare le visualizzazioni dei file"]},{msgid:"Create directory",msgstr:["Crea cartella"]},{msgid:"Current view selector",msgstr:["Selettore della vista attuale"]},{msgid:"Enter your name",msgstr:["Inserisci il tuo nome"]},{msgid:"Existing version",msgstr:["Versione esistente"]},{msgid:"Failed to set nickname.",msgstr:["Impossibile impostare lo pseudonimo."]},{msgid:"Favorites",msgstr:["Preferiti"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["I file e le cartelle contrassegnate come preferite saranno mostrate qui."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["I file e le cartelle che hai modificato di recente saranno mostrate qui."]},{msgid:"Filter file list",msgstr:["Filtra l'elenco dei file"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['I nomi delle cartelle devono finire con "{extension}".']},{msgid:"Guest identification",msgstr:["Identificazione ospiti"]},{msgid:"Home",msgstr:["Home"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Se selezioni entrambe le versioni, al nome del file in arrivo verrà aggiunto un numero."]},{msgid:"Invalid folder name.",msgstr:["Nome cartella non valido."]},{msgid:"Invalid name.",msgstr:["Nome non valido."]},{msgid:"Last modified date unknown",msgstr:["Data di ultima modifica sconosciuta"]},{msgid:"Modified",msgstr:["Modificato"]},{msgid:"Move",msgstr:["Sposta"]},{msgid:"Move to {target}",msgstr:["Sposta in {target}"]},{msgid:"Name",msgstr:["Nome"]},{msgid:"Names may be at most 64 characters long.",msgstr:["I nomi dovrebbero avere una lunghezza massima di 64 caratteri."]},{msgid:"Names must not be empty.",msgstr:["I nomi non devono essere vuoti."]},{msgid:'Names must not end with "{extension}".',msgstr:['I nomi devono finire con "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["I nomi non possono iniziare con un punto."]},{msgid:"New",msgstr:["Nuovo"]},{msgid:"New folder",msgstr:["Nuova cartella"]},{msgid:"New folder name",msgstr:["Nome della nuova cartella"]},{msgid:"New version",msgstr:["Nuova versione"]},{msgid:"No files in here",msgstr:["Nessun file qui"]},{msgid:"No files matching your filter were found.",msgstr:["Nessun file che corrisponde al tuo filtro è stato trovato."]},{msgid:"No matching files",msgstr:["Nessun file corrispondente"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Digita un nome con almeno 2 caratteri."]},{msgid:"Recent",msgstr:["Recente"]},{msgid:"Select all checkboxes",msgstr:["Seleziona tutte le caselle"]},{msgid:"Select all entries",msgstr:["Scegli tutte le voci"]},{msgid:"Select all existing files",msgstr:["Seleziona tutti i file esistenti"]},{msgid:"Select all new files",msgstr:["Seleziona tutti i nuovi file"]},{msgid:"Select entry",msgstr:["Seleziona la voce"]},{msgid:"Select the row for {nodename}",msgstr:["Seleziona la riga per {nodename}"]},{msgid:"Size",msgstr:["Dimensioni"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Salta %n file","Salta %n file","Salta %n file"]},{msgid:"Skip this file",msgstr:["Salta questo file"]},{msgid:"Submit name",msgstr:["Invia nome"]},{msgid:"Undo",msgstr:["Annulla"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Carica qualche contenuto o sincronizza con i tuoi dispositivi!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Quando si seleziona una cartella in arrivo, anche tutti i file in conflitto al suo interno saranno sovrascritti."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Quando si seleziona una cartella in arrivo, anche i documenti all'interno verranno sovrascritti."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Quando si seleziona una cartella in arrivo, il contenuto viene scritto nella cartella esistente e viene eseguita una risoluzione ricorsiva dei conflitti."]},{msgid:"Which files do you want to keep?",msgstr:["Quali file vuoi conservare?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Sei attualmente identificato come {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Attualmente non sei identificato."]},{msgid:"You cannot leave the name empty.",msgstr:["Non puoi lasciare il nome vuoto."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Devi scegliere almeno una soluzione al conflitto"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Per continuare, è necessario selezionare almeno una versione di ciascun file."]}]},{language:"ja_JP",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['フォルダー名に "{char}" を使用することはできません。']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['名前に "{char}" を使用することはできません。']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" は許可された名前ではありません。']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" は予約名のため、使用できません。']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" は予約名のため、使用できません。']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%nファイルが競合しています"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%nディレクトリ{dirname}内のファイル競合"]},{msgid:"All files",msgstr:["すべてのファイル"]},{msgid:"Cancel",msgstr:["キャンセル"]},{msgid:"Cancel the entire operation",msgstr:["すべての操作をキャンセル"]},{msgid:"Choose",msgstr:["選択"]},{msgid:"Choose {file}",msgstr:["{file} を選択"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["%n 個のファイルを選択"]},{msgid:"Confirm",msgstr:["確認"]},{msgid:"Continue",msgstr:["続行"]},{msgid:"Copy",msgstr:["コピー"]},{msgid:"Copy to {target}",msgstr:["{target} にコピー"]},{msgid:"Could not create the new folder",msgstr:["新しいフォルダーを作成できませんでした"]},{msgid:"Could not load files settings",msgstr:["ファイル設定を読み込めませんでした"]},{msgid:"Could not load files views",msgstr:["ファイルビューを読み込めませんでした"]},{msgid:"Create directory",msgstr:["ディレクトリを作成"]},{msgid:"Current view selector",msgstr:["現在のビュー選択"]},{msgid:"Enter your name",msgstr:["名前を入力してください"]},{msgid:"Existing version",msgstr:["現行バージョン"]},{msgid:"Failed to set nickname.",msgstr:["ニックネームの設定に失敗しました。"]},{msgid:"Favorites",msgstr:["お気に入り"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["お気に入りとしてマークしたファイルとフォルダーがここに表示されます。"]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["最近変更したファイルとフォルダーがここに表示されます。"]},{msgid:"Filter file list",msgstr:["ファイルのリストをフィルター"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['フォルダー名の末尾に "{extension}" を使用できません。']},{msgid:"Guest identification",msgstr:["ゲスト識別"]},{msgid:"Home",msgstr:["ホーム"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["両方のバージョンを選択した場合、受信ファイル名には番号が追加されます。"]},{msgid:"Invalid folder name.",msgstr:["フォルダー名が無効です。"]},{msgid:"Invalid name.",msgstr:["無効な名前です。"]},{msgid:"Last modified date unknown",msgstr:["最終更新日不明"]},{msgid:"Modified",msgstr:["変更済み"]},{msgid:"Move",msgstr:["移動"]},{msgid:"Move to {target}",msgstr:["{target} に移動"]},{msgid:"Name",msgstr:["名前"]},{msgid:"Names may be at most 64 characters long.",msgstr:["名前は最大64文字です。"]},{msgid:"Names must not be empty.",msgstr:["名前は空にできません。"]},{msgid:'Names must not end with "{extension}".',msgstr:['名前の末尾に "{extension}" を使用できません。']},{msgid:"Names must not start with a dot.",msgstr:["ドットで始まる名前は使用できません。"]},{msgid:"New",msgstr:["新規作成"]},{msgid:"New folder",msgstr:["新しいフォルダー"]},{msgid:"New folder name",msgstr:["新しいフォルダーの名前"]},{msgid:"New version",msgstr:["新バージョン"]},{msgid:"No files in here",msgstr:["ファイルがありません"]},{msgid:"No files matching your filter were found.",msgstr:["フィルターに一致するファイルは見つかりませんでした。"]},{msgid:"No matching files",msgstr:["一致するファイルはありません"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["名前は2文字以上を入力してください。"]},{msgid:"Recent",msgstr:["最近"]},{msgid:"Select all checkboxes",msgstr:["すべてのチェックボックスを選択"]},{msgid:"Select all entries",msgstr:["すべてのエントリを選択"]},{msgid:"Select all existing files",msgstr:["既存のファイルをすべて選択"]},{msgid:"Select all new files",msgstr:["すべての新規ファイルを選択"]},{msgid:"Select entry",msgstr:["エントリを選択"]},{msgid:"Select the row for {nodename}",msgstr:["{nodename} の行を選択"]},{msgid:"Size",msgstr:["サイズ"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["%n 個のファイルをスキップ"]},{msgid:"Skip this file",msgstr:["このファイルをスキップ"]},{msgid:"Submit name",msgstr:["名前を送信する"]},{msgid:"Undo",msgstr:["元に戻す"]},{msgid:"Upload some content or sync with your devices!",msgstr:["コンテンツをアップロードするか、デバイスと同期してください!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["受信フォルダーを選択すると、そのフォルダー内の競合ファイルも上書きされます。"]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["受信フォルダを選択すると、その中のファイルも上書きされます。"]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["受信フォルダーを選択すると、内容は既存のフォルダーに書き込まれ、再帰的な競合解決が実行されます。"]},{msgid:"Which files do you want to keep?",msgstr:["どのファイルを残しますか?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["現在、{nickname}として識別されています。"]},{msgid:"You are currently not identified.",msgstr:["現在あなたは識別されていません。"]},{msgid:"You cannot leave the name empty.",msgstr:["名前を空にすることはできません。"]},{msgid:"You need to choose at least one conflict solution",msgstr:["少なくとも1つの競合ソリューションを選択する必要があります"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["続行するには、各ファイルのバージョンを少なくとも1つ選択する必要があります。"]}]},{language:"ko",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["문자 '{char}'은(는) 폴더 이름에 사용할 수 없습니다."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["문자 '{char}'은(는) 이름에 사용할 수 없습니다."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["'{extension}'은(는) 사용 불가능한 이름입니다."]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["'{segment}'은(는) 예약된 이름이므로 폴더 이름으로 사용할 수 없습니다."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["'{segment}'은(는) 예약된 이름이므로 사용할 수 없습니다."]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n개의 파일이 충돌함"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["{dirname}에서 %n개의 파일이 충돌함"]},{msgid:"All files",msgstr:["모든 파일"]},{msgid:"Cancel",msgstr:["취소"]},{msgid:"Cancel the entire operation",msgstr:["전체 작업 취소"]},{msgid:"Choose",msgstr:["선택"]},{msgid:"Choose {file}",msgstr:["{file} 선택"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["파일 %n개 선택"]},{msgid:"Confirm",msgstr:["확인"]},{msgid:"Continue",msgstr:["계속"]},{msgid:"Copy",msgstr:["복사"]},{msgid:"Copy to {target}",msgstr:["{target}(으)로 복사"]},{msgid:"Could not create the new folder",msgstr:["새 폴더를 만들 수 없음"]},{msgid:"Could not load files settings",msgstr:["파일 설정을 불러오지 못함"]},{msgid:"Could not load files views",msgstr:["파일 보기를 불러오지 못함"]},{msgid:"Create directory",msgstr:["디렉토리 만들기"]},{msgid:"Current view selector",msgstr:["현재 보기 방식"]},{msgid:"Enter your name",msgstr:["이름을 입력하세요"]},{msgid:"Existing version",msgstr:["기존 버전"]},{msgid:"Failed to set nickname.",msgstr:[`닉네임을 설정하지 못했습니다. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function n4(e,t){var u=Object.keys(e);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);t&&(s=s.filter(function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable})),u.push.apply(u,s)}return u}function i4(e){for(var t=1;t0?e[e.length-1]:null},activateTrap:function(e,t){var u=ku.getActiveTrap(e);t!==u&&ku.pauseTrap(e);var s=e.indexOf(t);s===-1||e.splice(s,1),e.push(t)},deactivateTrap:function(e,t){var u=e.indexOf(t);u!==-1&&e.splice(u,1),ku.unpauseTrap(e)},pauseTrap:function(e){var t=ku.getActiveTrap(e);t?._setPausedState(!0)},unpauseTrap:function(e){var t=ku.getActiveTrap(e);t&&!t._isManuallyPaused()&&t._setPausedState(!1)}},sE=function(e){return e.tagName&&e.tagName.toLowerCase()==="input"&&typeof e.select=="function"},nE=function(e){return e?.key==="Escape"||e?.key==="Esc"||e?.keyCode===27},Vn=function(e){return e?.key==="Tab"||e?.keyCode===9},iE=function(e){return Vn(e)&&!e.shiftKey},oE=function(e){return Vn(e)&&e.shiftKey},o4=function(e){return setTimeout(e,0)},_n=function(e){for(var t=arguments.length,u=new Array(t>1?t-1:0),s=1;s1&&arguments[1]!==void 0?arguments[1]:{},V=T.hasFallback,ue=V===void 0?!1:V,Z=T.params,ee=Z===void 0?[]:Z,se=n[w];if(typeof se=="function"&&(se=se.apply(void 0,eE(ee))),se===!0&&(se=void 0),!se){if(se===void 0||se===!1)return se;throw new Error("`".concat(w,"` was specified but was not a node, or did not return a node"))}var ce=se;if(typeof se=="string"){try{ce=u.querySelector(se)}catch(de){throw new Error("`".concat(w,'` appears to be an invalid selector; error="').concat(de.message,'"'))}if(!ce&&!ue)throw new Error("`".concat(w,"` as selector refers to no known node"))}return ce},l=function(w){var T=w.activeElement;return T?T.shadowRoot&&T.shadowRoot.activeElement!==null?l(T.shadowRoot):T:null},g=function(){var w=m("initialFocus",{hasFallback:!0});if(w===!1)return!1;if(w===void 0||w&&!Go(w,n.tabbableOptions)){var T=l(u);if(r(T)>=0)w=T;else{var V=i.tabbableGroups[0],ue=V&&V.firstTabbableNode;w=ue||m("fallbackFocus")}}else w===null&&(w=m("fallbackFocus"));if(!w)throw new Error("Your focus-trap needs to have at least one focusable element");return w},p=function(){if(i.containerGroups=i.containers.map(function(w){var T=qv(w,n.tabbableOptions),V=Kv(w,n.tabbableOptions),ue=T.length>0?T[0]:void 0,Z=T.length>0?T[T.length-1]:void 0,ee=V.find(function(de){return Ks(de)}),se=V.slice().reverse().find(function(de){return Ks(de)}),ce=!!T.find(function(de){return Cs(de)>0});return{container:w,tabbableNodes:T,focusableNodes:V,posTabIndexesFound:ce,firstTabbableNode:ue,lastTabbableNode:Z,firstDomTabbableNode:ee,lastDomTabbableNode:se,nextTabbableNode:function(de){var oe=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,xe=T.indexOf(de);return xe<0?oe?V.slice(V.indexOf(de)+1).find(function(qe){return Ks(qe)}):V.slice(0,V.indexOf(de)).reverse().find(function(qe){return Ks(qe)}):T[xe+(oe?1:-1)]}}}),i.tabbableGroups=i.containerGroups.filter(function(w){return w.tabbableNodes.length>0}),i.tabbableGroups.length<=0&&!m("fallbackFocus"))throw new Error("Your focus-trap must have at least one container with at least one tabbable node in it at all times");if(i.containerGroups.find(function(w){return w.posTabIndexesFound})&&i.containerGroups.length>1)throw new Error("At least one node with a positive tabindex was found in one of your focus-trap's multiple containers. Positive tabindexes are only supported in single-container focus-traps.")},h=function(w){if(w!==!1&&w!==l(document)){if(!w||!w.focus){h(g());return}w.focus({preventScroll:!!n.preventScroll}),i.mostRecentlyFocusedNode=w,sE(w)&&w.select()}},y=function(w){var T=m("setReturnFocus",{params:[w]});return T||(T===!1?!1:w)},E=function(w){var T=w.target,V=w.event,ue=w.isBackward,Z=ue===void 0?!1:ue;T=T||Ti(V),p();var ee=null;if(i.tabbableGroups.length>0){var se=r(T,V),ce=se>=0?i.containerGroups[se]:void 0;if(se<0)Z?ee=i.tabbableGroups[i.tabbableGroups.length-1].lastTabbableNode:ee=i.tabbableGroups[0].firstTabbableNode;else if(Z){var de=i.tabbableGroups.findIndex(function(he){var We=he.firstTabbableNode;return T===We});if(de<0&&(ce.container===T||Go(T,n.tabbableOptions)&&!Ks(T,n.tabbableOptions)&&!ce.nextTabbableNode(T,!1))&&(de=se),de>=0){var oe=de===0?i.tabbableGroups.length-1:de-1,xe=i.tabbableGroups[oe];ee=Cs(T)>=0?xe.lastTabbableNode:xe.lastDomTabbableNode}else Vn(V)||(ee=ce.nextTabbableNode(T,!1))}else{var qe=i.tabbableGroups.findIndex(function(he){var We=he.lastTabbableNode;return T===We});if(qe<0&&(ce.container===T||Go(T,n.tabbableOptions)&&!Ks(T,n.tabbableOptions)&&!ce.nextTabbableNode(T))&&(qe=se),qe>=0){var _e=qe===i.tabbableGroups.length-1?0:qe+1,Le=i.tabbableGroups[_e];ee=Cs(T)>=0?Le.firstTabbableNode:Le.firstDomTabbableNode}else Vn(V)||(ee=ce.nextTabbableNode(T))}}else ee=m("fallbackFocus");return ee},F=function(w){var T=Ti(w);if(!(r(T,w)>=0)){if(_n(n.clickOutsideDeactivates,w)){o.deactivate({returnFocus:n.returnFocusOnDeactivate});return}_n(n.allowOutsideClick,w)||w.preventDefault()}},B=function(w){var T=Ti(w),V=r(T,w)>=0;if(V||T instanceof Document)V&&(i.mostRecentlyFocusedNode=T);else{w.stopImmediatePropagation();var ue,Z=!0;if(i.mostRecentlyFocusedNode)if(Cs(i.mostRecentlyFocusedNode)>0){var ee=r(i.mostRecentlyFocusedNode),se=i.containerGroups[ee].tabbableNodes;if(se.length>0){var ce=se.findIndex(function(de){return de===i.mostRecentlyFocusedNode});ce>=0&&(n.isKeyForward(i.recentNavEvent)?ce+1=0&&(ue=se[ce-1],Z=!1))}}else i.containerGroups.some(function(de){return de.tabbableNodes.some(function(oe){return Cs(oe)>0})})||(Z=!1);else Z=!1;Z&&(ue=E({target:i.mostRecentlyFocusedNode,isBackward:n.isKeyBackward(i.recentNavEvent)})),h(ue||i.mostRecentlyFocusedNode||g())}i.recentNavEvent=void 0},A=function(w){var T=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!1;i.recentNavEvent=w;var V=E({event:w,isBackward:T});V&&(Vn(w)&&w.preventDefault(),h(V))},O=function(w){(n.isKeyForward(w)||n.isKeyBackward(w))&&A(w,n.isKeyBackward(w))},S=function(w){nE(w)&&_n(n.escapeDeactivates,w)!==!1&&(w.preventDefault(),o.deactivate())},q=function(w){var T=Ti(w);r(T,w)>=0||_n(n.clickOutsideDeactivates,w)||_n(n.allowOutsideClick,w)||(w.preventDefault(),w.stopImmediatePropagation())},I=function(){if(i.active){ku.activateTrap(s,o);var w;return n.delayInitialFocus?w=new Promise(function(T){i.delayInitialFocusTimer=o4(function(){h(g()),T()})}):h(g()),u.addEventListener("focusin",B,!0),u.addEventListener("mousedown",F,{capture:!0,passive:!1}),u.addEventListener("touchstart",F,{capture:!0,passive:!1}),u.addEventListener("click",q,{capture:!0,passive:!1}),u.addEventListener("keydown",O,{capture:!0,passive:!1}),u.addEventListener("keydown",S),w}},Y=function(w){i.active&&!i.paused&&o._setSubtreeIsolation(!1),i.adjacentElements.clear(),i.alreadySilent.clear();var T=new Set,V=new Set,ue=s4(w),Z;try{for(ue.s();!(Z=ue.n()).done;){var ee=Z.value;T.add(ee);for(var se=typeof ShadowRoot<"u"&&ee.getRootNode()instanceof ShadowRoot,ce=ee;ce;){T.add(ce);var de=ce.parentElement,oe=[];de?oe=de.children:!de&&se&&(oe=ce.getRootNode().children,de=ce.getRootNode().host,se=typeof ShadowRoot<"u"&&de.getRootNode()instanceof ShadowRoot);var xe=s4(oe),qe;try{for(xe.s();!(qe=xe.n()).done;){var _e=qe.value;V.add(_e)}}catch(Le){xe.e(Le)}finally{xe.f()}ce=de}}}catch(Le){ue.e(Le)}finally{ue.f()}T.forEach(function(Le){V.delete(Le)}),i.adjacentElements=V},ne=function(){if(i.active)return u.removeEventListener("focusin",B,!0),u.removeEventListener("mousedown",F,!0),u.removeEventListener("touchstart",F,!0),u.removeEventListener("click",q,!0),u.removeEventListener("keydown",O,!0),u.removeEventListener("keydown",S),o},G=function(w){var T=i.mostRecentlyFocusedNode;if(T){var V=w.some(function(Z){var ee=Array.from(Z.removedNodes);return ee.some(function(se){return se===T||typeof se.contains=="function"&&se.contains(T)})});if(V&&i.containers.some(function(Z){return Z?.isConnected})){p();var ue=g();h(ue)}}},M=typeof window<"u"&&"MutationObserver"in window?new MutationObserver(G):void 0,ie=function(){M&&(M.disconnect(),i.active&&!i.paused&&i.containers.map(function(w){M.observe(w,{subtree:!0,childList:!0})}))};return o={get active(){return i.active},get paused(){return i.paused},activate:function(w){if(i.active)return this;var T=a(w,"onActivate"),V=a(w,"onPostActivate"),ue=a(w,"checkCanFocusTrap"),Z=ku.getActiveTrap(s),ee=!1;if(Z&&!Z.paused){var se;(se=Z._setSubtreeIsolation)===null||se===void 0||se.call(Z,!1),ee=!0}try{ue||p(),i.active=!0,i.paused=!1,i.nodeFocusedBeforeActivation=l(u),T?.({trap:o});var ce=function(){ue&&p();var oe=function(){o._setSubtreeIsolation(!0),ie(),V?.({trap:o})},xe=I();xe?xe.then(oe):oe()};if(ue)return ue(i.containers.concat()).then(ce,ce),this;ce()}catch(oe){if(Z===ku.getActiveTrap(s)&&ee){var de;(de=Z._setSubtreeIsolation)===null||de===void 0||de.call(Z,!0)}throw oe}return this},deactivate:function(w){if(!i.active)return this;var T=i4({onDeactivate:n.onDeactivate,onPostDeactivate:n.onPostDeactivate,checkCanReturnFocus:n.checkCanReturnFocus},w);clearTimeout(i.delayInitialFocusTimer),i.delayInitialFocusTimer=void 0,i.paused||o._setSubtreeIsolation(!1),i.alreadySilent.clear(),ne(),i.active=!1,i.paused=!1,ie(),ku.deactivateTrap(s,o);var V=a(T,"onDeactivate"),ue=a(T,"onPostDeactivate"),Z=a(T,"checkCanReturnFocus"),ee=a(T,"delayReturnFocus"),se=a(T,"returnFocus","returnFocusOnDeactivate");V?.({trap:o});var ce=function(){se&&h(y(i.nodeFocusedBeforeActivation)),ue?.({trap:o})},de=function(){ee&&se?o4(ce):ce()};return se&&Z?(Z(y(i.nodeFocusedBeforeActivation)).then(de,de),this):(de(),this)},pause:function(w){return i.active?(i.manuallyPaused=!0,this._setPausedState(!0,w)):this},unpause:function(w){return i.active?(i.manuallyPaused=!1,s[s.length-1]!==this?this:this._setPausedState(!1,w)):this},updateContainerElements:function(w){var T=[].concat(w).filter(Boolean);return i.containers=T.map(function(V){return typeof V=="string"?u.querySelector(V):V}),n.isolateSubtrees&&Y(i.containers),i.active&&(p(),i.paused||o._setSubtreeIsolation(!0)),ie(),this}},Object.defineProperties(o,{_isManuallyPaused:{value:function(){return i.manuallyPaused}},_setPausedState:{value:function(w,T){if(i.paused===w)return this;if(i.paused=w,w){var V=a(T,"onPause"),ue=a(T,"onPostPause");V?.({trap:o}),ne(),o._setSubtreeIsolation(!1),ie(),ue?.({trap:o})}else{var Z=a(T,"onUnpause"),ee=a(T,"onPostUnpause");Z?.({trap:o});var se=function(){p();var ce=function(){o._setSubtreeIsolation(!0),ie(),ee?.({trap:o})},de=I();de?de.then(ce):ce()};se()}return this}},_setSubtreeIsolation:{value:function(w){n.isolateSubtrees&&i.adjacentElements.forEach(function(T){var V;w?n.isolateSubtrees==="aria-hidden"?((T.ariaHidden==="true"||((V=T.getAttribute("aria-hidden"))===null||V===void 0?void 0:V.toLowerCase())==="true")&&i.alreadySilent.add(T),T.setAttribute("aria-hidden","true")):((T.inert||T.hasAttribute("inert"))&&i.alreadySilent.add(T),T.setAttribute("inert",!0)):i.alreadySilent.has(T)||(n.isolateSubtrees==="aria-hidden"?T.removeAttribute("aria-hidden"):T.removeAttribute("inert"))})}}}),o.updateContainerElements(e),o};function ii(){return window._nc_focus_trap??=[],window._nc_focus_trap}function rE(){let e=[];return{pause(){e=[...ii()];for(const t of e)t.pause()},unpause(){if(e.length===ii().length)for(const t of e)t.unpause();e=[]}}}function lE(e,t={}){const u=rE();_u(e,()=>{zt(t.disabled)||(zt(e)?u.pause():u.unpause())}),gn(()=>{u.unpause()})}window._nc_vue_element_id=window._nc_vue_element_id??0;function _s(){return`nc-vue-${window._nc_vue_element_id++}`}const dE=["top","right","bottom","left"],a4=["start","end"],r4=dE.reduce((e,t)=>e.concat(t,t+"-"+a4[0],t+"-"+a4[1]),[]),ss=Math.min,Tu=Math.max,A0=Math.round,zi=Math.floor,zu=e=>({x:e,y:e}),mE={left:"right",right:"left",bottom:"top",top:"bottom"};function p3(e,t,u){return Tu(e,ss(t,u))}function ju(e,t){return typeof e=="function"?e(t):e}function Cu(e){return e.split("-")[0]}function Qt(e){return e.split("-")[1]}function ir(e){return e==="x"?"y":"x"}function or(e){return e==="y"?"height":"width"}function hu(e){const t=e[0];return t==="t"||t==="b"?"y":"x"}function ar(e){return ir(hu(e))}function h3(e,t,u){u===void 0&&(u=!1);const s=Qt(e),n=ar(e),i=or(n);let o=n==="x"?s===(u?"end":"start")?"right":"left":s==="start"?"bottom":"top";return t.reference[i]>t.floating[i]&&(o=w0(o)),[o,w0(o)]}function cE(e){const t=w0(e);return[b0(e),t,b0(t)]}function b0(e){return e.includes("start")?e.replace("start","end"):e.replace("end","start")}const l4=["left","right"],d4=["right","left"],gE=["top","bottom"],fE=["bottom","top"];function pE(e,t,u){switch(e){case"top":case"bottom":return u?t?d4:l4:t?l4:d4;case"left":case"right":return t?gE:fE;default:return[]}}function hE(e,t,u,s){const n=Qt(e);let i=pE(Cu(e),u==="start",s);return n&&(i=i.map(o=>o+"-"+n),t&&(i=i.concat(i.map(b0)))),i}function w0(e){const t=Cu(e);return mE[t]+e.slice(t.length)}function vE(e){var t,u,s,n;return{top:(t=e.top)!=null?t:0,right:(u=e.right)!=null?u:0,bottom:(s=e.bottom)!=null?s:0,left:(n=e.left)!=null?n:0}}function v3(e){return typeof e!="number"?vE(e):{top:e,right:e,bottom:e,left:e}}function Os(e){const{x:t,y:u,width:s,height:n}=e;return{width:s,height:n,top:u,left:t,right:t+s,bottom:u+n,x:t,y:u}}function m4(e,t,u){let{reference:s,floating:n}=e;const i=hu(t),o=ar(t),a=or(o),r=Cu(t),m=i==="y",l=s.x+s.width/2-n.width/2,g=s.y+s.height/2-n.height/2,p=s[a]/2-n[a]/2;let h;switch(r){case"top":h={x:l,y:s.y-n.height};break;case"bottom":h={x:l,y:s.y+s.height};break;case"right":h={x:s.x+s.width,y:g};break;case"left":h={x:s.x-n.width,y:g};break;default:h={x:s.x,y:s.y}}const y=Qt(t);return y&&(h[o]+=p*(y==="end"?1:-1)*(u&&m?-1:1)),h}async function EE(e,t){var u;t===void 0&&(t={});const{x:s,y:n,platform:i,rects:o,elements:a,strategy:r}=e,{boundary:m="clippingAncestors",rootBoundary:l="viewport",elementContext:g="floating",altBoundary:p=!1,padding:h=0}=ju(t,e),y=v3(h),E=a[p?g==="floating"?"reference":"floating":g],F=Os(await i.getClippingRect({element:(u=await(i.isElement==null?void 0:i.isElement(E)))==null||u?E:E.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(a.floating)),boundary:m,rootBoundary:l,strategy:r})),B=g==="floating"?{x:s,y:n,width:o.floating.width,height:o.floating.height}:o.reference,A=await(i.getOffsetParent==null?void 0:i.getOffsetParent(a.floating)),O=await(i.isElement==null?void 0:i.isElement(A))&&await(i.getScale==null?void 0:i.getScale(A))||{x:1,y:1},S=Os(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:a,rect:B,offsetParent:A,strategy:r}):B);return{top:(F.top-S.top+y.top)/O.y,bottom:(S.bottom-F.bottom+y.bottom)/O.y,left:(F.left-S.left+y.left)/O.x,right:(S.right-F.right+y.right)/O.x}}const CE=50,E3=async(e,t,u)=>{const{placement:s="bottom",strategy:n="absolute",middleware:i=[],platform:o}=u,a=o.detectOverflow?o:{...o,detectOverflow:EE},r=await(o.isRTL==null?void 0:o.isRTL(t));let m=await o.getElementRects({reference:e,floating:t,strategy:n}),{x:l,y:g}=m4(m,s,r),p=s,h=0;const y={};for(let E=0;E({name:"arrow",options:e,async fn(t){const{x:u,y:s,placement:n,rects:i,platform:o,elements:a,middlewareData:r}=t,{element:m,padding:l=0}=ju(e,t)||{};if(m==null)return{};const g=v3(l),p={x:u,y:s},h=ar(n),y=or(h),E=await o.getDimensions(m),F=h==="y",B=F?"top":"left",A=F?"bottom":"right",O=F?"clientHeight":"clientWidth",S=i.reference[y]+i.reference[h]-p[h]-i.floating[y],q=p[h]-i.reference[h],I=await(o.getOffsetParent==null?void 0:o.getOffsetParent(m));let Y=I?I[O]:0;(!Y||!await(o.isElement==null?void 0:o.isElement(I)))&&(Y=a.floating[O]||i.floating[y]);const ne=S/2-q/2,G=Y/2-E[y]/2-1,M=ss(g[B],G),ie=ss(g[A],G),w=Y-E[y]-ie,T=Y/2-E[y]/2+ne,V=p3(M,T,w),ue=!r.arrow&&Qt(n)!=null&&T!==V&&i.reference[y]/2-(TQt(s)===e),...u.filter(s=>Qt(s)!==e)]:u.filter(s=>Cu(s)===s)).filter(s=>e?Qt(s)===e||(t?b0(s)!==s:!1):!0)}const xE=function(e){return e===void 0&&(e={}),{name:"autoPlacement",options:e,async fn(t){var u,s,n;const{rects:i,middlewareData:o,placement:a,platform:r,elements:m}=t,{crossAxis:l=!1,alignment:g,allowedPlacements:p=r4,autoAlignment:h=!0,...y}=ju(e,t),E=g!==void 0||p===r4?yE(g||null,h,p):p,F=((u=o.autoPlacement)==null?void 0:u.index)||0,B=E[F];if(B==null)return{};if(a!==B)return{reset:{placement:E[0]}};const A=await r.detectOverflow(t,y),O=h3(B,i,await(r.isRTL==null?void 0:r.isRTL(m.floating))),S=[A[Cu(B)],A[O[0]],A[O[1]]],q=[...((s=o.autoPlacement)==null?void 0:s.overflows)||[],{placement:B,overflows:S}],I=E[F+1];if(I)return{data:{index:F+1,overflows:q},reset:{placement:I}};const Y=q.map(G=>{const M=Qt(G.placement);return[G.placement,M&&l?G.overflows.slice(0,2).reduce((ie,w)=>ie+w,0):G.overflows[0],G.overflows]}).sort((G,M)=>G[1]-M[1]),ne=((n=Y.filter(G=>G[2].slice(0,Qt(G[0])?2:3).every(M=>M<=0))[0])==null?void 0:n[0])||Y[0][0];return ne!==a?{data:{index:F+1,overflows:q},reset:{placement:ne}}:{}}}},C3=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var u,s;const{placement:n,middlewareData:i,rects:o,initialPlacement:a,platform:r,elements:m}=t,{mainAxis:l=!0,crossAxis:g=!0,fallbackPlacements:p,fallbackStrategy:h="bestFit",fallbackAxisSideDirection:y="none",flipAlignment:E=!0,...F}=ju(e,t);if((u=i.arrow)!=null&&u.alignmentOffset)return{};const B=Cu(n),A=hu(a),O=Cu(a)===a,S=await(r.isRTL==null?void 0:r.isRTL(m.floating)),q=p||(O||!E?[w0(a)]:cE(a)),I=y!=="none";!p&&I&&q.push(...hE(a,E,y,S));const Y=[a,...q],ne=await r.detectOverflow(t,F),G=[];let M=((s=i.flip)==null?void 0:s.overflows)||[];if(l&&G.push(ne[B]),g){const V=h3(n,o,S);G.push(ne[V[0]],ne[V[1]])}if(M=[...M,{placement:n,overflows:G}],!G.every(V=>V<=0)){var ie,w;const V=(((ie=i.flip)==null?void 0:ie.index)||0)+1,ue=Y[V];if(ue&&(!(g==="alignment"&&A!==hu(ue))||M.every(ee=>hu(ee.placement)===A?ee.overflows[0]>0:!0)))return{data:{index:V,overflows:M},reset:{placement:ue}};let Z=(w=M.filter(ee=>ee.overflows[0]<=0).sort((ee,se)=>ee.overflows[1]-se.overflows[1])[0])==null?void 0:w.placement;if(!Z)switch(h){case"bestFit":{var T;const ee=(T=M.filter(se=>{if(I){const ce=hu(se.placement);return ce===A||ce==="y"}return!0}).map(se=>[se.placement,se.overflows.filter(ce=>ce>0).reduce((ce,de)=>ce+de,0)]).sort((se,ce)=>se[1]-ce[1])[0])==null?void 0:T[0];ee&&(Z=ee);break}case"initialPlacement":Z=a;break}if(n!==Z)return{reset:{placement:Z}}}return{}}}},B3=new Set(["left","top"]);async function AE(e,t){const{placement:u,platform:s,elements:n}=e,i=await(s.isRTL==null?void 0:s.isRTL(n.floating)),o=Cu(u),a=Qt(u),r=hu(u)==="y",m=B3.has(o)?-1:1,l=i&&r?-1:1,g=ju(t,e);let{mainAxis:p,crossAxis:h,alignmentAxis:y}=typeof g=="number"?{mainAxis:g,crossAxis:0,alignmentAxis:null}:{mainAxis:g.mainAxis||0,crossAxis:g.crossAxis||0,alignmentAxis:g.alignmentAxis};return a&&typeof y=="number"&&(h=a==="end"?y*-1:y),r?{x:h*l,y:p*m}:{x:p*m,y:h*l}}const y3=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var u,s;const{x:n,y:i,placement:o,middlewareData:a}=t,r=await AE(t,e);return o===((u=a.offset)==null?void 0:u.placement)&&(s=a.arrow)!=null&&s.alignmentOffset?{}:{x:n+r.x,y:i+r.y,data:{...r,placement:o}}}}},x3=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:u,y:s,placement:n,platform:i}=t,{mainAxis:o=!0,crossAxis:a=!1,limiter:r={fn:A=>{let{x:O,y:S}=A;return{x:O,y:S}}},...m}=ju(e,t),l={x:u,y:s},g=await i.detectOverflow(t,m),p=hu(n),h=ir(p);let y=l[h],E=l[p];const F=(A,O)=>p3(O+g[A==="y"?"top":"left"],O,O-g[A==="y"?"bottom":"right"]);o&&(y=F(h,y)),a&&(E=F(p,E));const B=r.fn({...t,[h]:y,[p]:E});return{...B,data:{x:B.x-u,y:B.y-s,enabled:{[h]:o,[p]:a}}}}}},bE=function(e){return e===void 0&&(e={}),{options:e,fn(t){var u,s;const{x:n,y:i,placement:o,rects:a,middlewareData:r}=t,{offset:m=0,mainAxis:l=!0,crossAxis:g=!0}=ju(e,t),p={x:n,y:i},h=hu(o),y=ir(h);let E=p[y],F=p[h];const B=ju(m,t),A=typeof B=="number"?{mainAxis:B,crossAxis:0}:{mainAxis:(u=B.mainAxis)!=null?u:0,crossAxis:(s=B.crossAxis)!=null?s:0};if(l){const q=y==="y"?"height":"width",I=a.reference[y]-a.floating[q]+A.mainAxis,Y=a.reference[y]+a.reference[q]-A.mainAxis;EY&&(E=Y)}if(g){var O,S;const q=y==="y"?"width":"height",I=B3.has(Cu(o)),Y=a.reference[h]-a.floating[q]+(I&&((O=r.offset)==null?void 0:O[h])||0)+(I?0:A.crossAxis),ne=a.reference[h]+a.reference[q]+(I?0:((S=r.offset)==null?void 0:S[h])||0)-(I?A.crossAxis:0);Fne&&(F=ne)}return{[y]:E,[h]:F}}}},wE=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){const{placement:u,rects:s,platform:n,elements:i}=t,{apply:o=()=>{},...a}=ju(e,t),r=await n.detectOverflow(t,a),m=Cu(u),l=Qt(u),g=hu(u)==="y",{width:p,height:h}=s.floating;let y,E;m==="top"||m==="bottom"?(y=m,E=l===(await(n.isRTL==null?void 0:n.isRTL(i.floating))?"start":"end")?"left":"right"):(E=m,y=l==="end"?"top":"bottom");const F=h-r.top-r.bottom,B=p-r.left-r.right,A=ss(h-r[y],F),O=ss(p-r[E],B),S=t.middlewareData.shift,q=!S;let I=A,Y=O;S!=null&&S.enabled.x&&(Y=B),S!=null&&S.enabled.y&&(I=F),q&&!l&&(g?Y=p-2*Tu(r.left,r.right):I=h-2*Tu(r.top,r.bottom)),await o({...t,availableWidth:Y,availableHeight:I});const ne=await n.getDimensions(i.floating);return p!==ne.width||h!==ne.height?{reset:{rects:!0}}:{}}}};function qt(e){var t;return((t=e.ownerDocument)==null?void 0:t.defaultView)||window}function vu(e){return qt(e).getComputedStyle(e)}const c4=Math.min,Wn=Math.max,D0=Math.round;function A3(e){const t=vu(e);let u=parseFloat(t.width),s=parseFloat(t.height);const n=e.offsetWidth,i=e.offsetHeight,o=D0(u)!==n||D0(s)!==i;return o&&(u=n,s=i),{width:u,height:s,fallback:o}}function ns(e){return w3(e)?(e.nodeName||"").toLowerCase():""}let Pi;function b3(){if(Pi)return Pi;const e=navigator.userAgentData;return e&&Array.isArray(e.brands)?(Pi=e.brands.map((t=>t.brand+"/"+t.version)).join(" "),Pi):navigator.userAgent}function Eu(e){return e instanceof qt(e).HTMLElement}function Qu(e){return e instanceof qt(e).Element}function w3(e){return e instanceof qt(e).Node}function g4(e){return typeof ShadowRoot>"u"?!1:e instanceof qt(e).ShadowRoot||e instanceof ShadowRoot}function J0(e){const{overflow:t,overflowX:u,overflowY:s,display:n}=vu(e);return/auto|scroll|overlay|hidden|clip/.test(t+s+u)&&!["inline","contents"].includes(n)}function DE(e){return["table","td","th"].includes(ns(e))}function wa(e){const t=/firefox/i.test(b3()),u=vu(e),s=u.backdropFilter||u.WebkitBackdropFilter;return u.transform!=="none"||u.perspective!=="none"||!!s&&s!=="none"||t&&u.willChange==="filter"||t&&!!u.filter&&u.filter!=="none"||["transform","perspective"].some((n=>u.willChange.includes(n)))||["paint","layout","strict","content"].some((n=>{const i=u.contain;return i!=null&&i.includes(n)}))}function D3(){return!/^((?!chrome|android).)*safari/i.test(b3())}function rr(e){return["html","body","#document"].includes(ns(e))}function F3(e){return Qu(e)?e:e.contextElement}const k3={x:1,y:1};function dn(e){const t=F3(e);if(!Eu(t))return k3;const u=t.getBoundingClientRect(),{width:s,height:n,fallback:i}=A3(t);let o=(i?D0(u.width):u.width)/s,a=(i?D0(u.height):u.height)/n;return o&&Number.isFinite(o)||(o=1),a&&Number.isFinite(a)||(a=1),{x:o,y:a}}function oi(e,t,u,s){var n,i;t===void 0&&(t=!1),u===void 0&&(u=!1);const o=e.getBoundingClientRect(),a=F3(e);let r=k3;t&&(s?Qu(s)&&(r=dn(s)):r=dn(e));const m=a?qt(a):window,l=!D3()&&u;let g=(o.left+(l&&((n=m.visualViewport)==null?void 0:n.offsetLeft)||0))/r.x,p=(o.top+(l&&((i=m.visualViewport)==null?void 0:i.offsetTop)||0))/r.y,h=o.width/r.x,y=o.height/r.y;if(a){const E=qt(a),F=s&&Qu(s)?qt(s):s;let B=E.frameElement;for(;B&&s&&F!==E;){const A=dn(B),O=B.getBoundingClientRect(),S=getComputedStyle(B);O.x+=(B.clientLeft+parseFloat(S.paddingLeft))*A.x,O.y+=(B.clientTop+parseFloat(S.paddingTop))*A.y,g*=A.x,p*=A.y,h*=A.x,y*=A.y,g+=O.x,p+=O.y,B=qt(B).frameElement}}return{width:h,height:y,top:p,right:g+h,bottom:p+y,left:g,x:g,y:p}}function es(e){return((w3(e)?e.ownerDocument:e.document)||window.document).documentElement}function Q0(e){return Qu(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function S3(e){return oi(es(e)).left+Q0(e).scrollLeft}function ai(e){if(ns(e)==="html")return e;const t=e.assignedSlot||e.parentNode||g4(e)&&e.host||es(e);return g4(t)?t.host:t}function N3(e){const t=ai(e);return rr(t)?t.ownerDocument.body:Eu(t)&&J0(t)?t:N3(t)}function F0(e,t){var u;t===void 0&&(t=[]);const s=N3(e),n=s===((u=e.ownerDocument)==null?void 0:u.body),i=qt(s);return n?t.concat(i,i.visualViewport||[],J0(s)?s:[]):t.concat(s,F0(s))}function f4(e,t,u){return t==="viewport"?Os((function(s,n){const i=qt(s),o=es(s),a=i.visualViewport;let r=o.clientWidth,m=o.clientHeight,l=0,g=0;if(a){r=a.width,m=a.height;const p=D3();(p||!p&&n==="fixed")&&(l=a.offsetLeft,g=a.offsetTop)}return{width:r,height:m,x:l,y:g}})(e,u)):Qu(t)?Os((function(s,n){const i=oi(s,!0,n==="fixed"),o=i.top+s.clientTop,a=i.left+s.clientLeft,r=Eu(s)?dn(s):{x:1,y:1};return{width:s.clientWidth*r.x,height:s.clientHeight*r.y,x:a*r.x,y:o*r.y}})(t,u)):Os((function(s){const n=es(s),i=Q0(s),o=s.ownerDocument.body,a=Wn(n.scrollWidth,n.clientWidth,o.scrollWidth,o.clientWidth),r=Wn(n.scrollHeight,n.clientHeight,o.scrollHeight,o.clientHeight);let m=-i.scrollLeft+S3(s);const l=-i.scrollTop;return vu(o).direction==="rtl"&&(m+=Wn(n.clientWidth,o.clientWidth)-a),{width:a,height:r,x:m,y:l}})(es(e)))}function p4(e){return Eu(e)&&vu(e).position!=="fixed"?e.offsetParent:null}function h4(e){const t=qt(e);let u=p4(e);for(;u&&DE(u)&&vu(u).position==="static";)u=p4(u);return u&&(ns(u)==="html"||ns(u)==="body"&&vu(u).position==="static"&&!wa(u))?t:u||(function(s){let n=ai(s);for(;Eu(n)&&!rr(n);){if(wa(n))return n;n=ai(n)}return null})(e)||t}function FE(e,t,u){const s=Eu(t),n=es(t),i=oi(e,!0,u==="fixed",t);let o={scrollLeft:0,scrollTop:0};const a={x:0,y:0};if(s||!s&&u!=="fixed")if((ns(t)!=="body"||J0(n))&&(o=Q0(t)),Eu(t)){const r=oi(t,!0);a.x=r.x+t.clientLeft,a.y=r.y+t.clientTop}else n&&(a.x=S3(n));return{x:i.left+o.scrollLeft-a.x,y:i.top+o.scrollTop-a.y,width:i.width,height:i.height}}const kE={getClippingRect:function(e){let{element:t,boundary:u,rootBoundary:s,strategy:n}=e;const i=u==="clippingAncestors"?(function(m,l){const g=l.get(m);if(g)return g;let p=F0(m).filter((F=>Qu(F)&&ns(F)!=="body")),h=null;const y=vu(m).position==="fixed";let E=y?ai(m):m;for(;Qu(E)&&!rr(E);){const F=vu(E),B=wa(E);(y?B||h:B||F.position!=="static"||!h||!["absolute","fixed"].includes(h.position))?h=F:p=p.filter((A=>A!==E)),E=ai(E)}return l.set(m,p),p})(t,this._c):[].concat(u),o=[...i,s],a=o[0],r=o.reduce(((m,l)=>{const g=f4(t,l,n);return m.top=Wn(g.top,m.top),m.right=c4(g.right,m.right),m.bottom=c4(g.bottom,m.bottom),m.left=Wn(g.left,m.left),m}),f4(t,a,n));return{width:r.right-r.left,height:r.bottom-r.top,x:r.left,y:r.top}},convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{rect:t,offsetParent:u,strategy:s}=e;const n=Eu(u),i=es(u);if(u===i)return t;let o={scrollLeft:0,scrollTop:0},a={x:1,y:1};const r={x:0,y:0};if((n||!n&&s!=="fixed")&&((ns(u)!=="body"||J0(i))&&(o=Q0(u)),Eu(u))){const m=oi(u);a=dn(u),r.x=m.x+u.clientLeft,r.y=m.y+u.clientTop}return{width:t.width*a.x,height:t.height*a.y,x:t.x*a.x-o.scrollLeft*a.x+r.x,y:t.y*a.y-o.scrollTop*a.y+r.y}},isElement:Qu,getDimensions:function(e){return Eu(e)?A3(e):e.getBoundingClientRect()},getOffsetParent:h4,getDocumentElement:es,getScale:dn,async getElementRects(e){let{reference:t,floating:u,strategy:s}=e;const n=this.getOffsetParent||h4,i=this.getDimensions;return{reference:FE(t,await n(u),s),floating:{x:0,y:0,...await i(u)}}},getClientRects:e=>Array.from(e.getClientRects()),isRTL:e=>vu(e).direction==="rtl"},SE=(e,t,u)=>{const s=new Map,n={platform:kE,...u},i={...n.platform,_c:s};return E3(e,t,{...n,platform:i})},ts={disabled:!1,distance:5,skidding:0,container:"body",boundary:void 0,instantMove:!1,disposeTimeout:150,popperTriggers:[],strategy:"absolute",preventOverflow:!0,flip:!0,shift:!0,overflowPadding:0,arrowPadding:0,arrowOverflow:!0,autoHideOnMousedown:!1,themes:{tooltip:{placement:"top",triggers:["hover","focus","touch"],hideTriggers:e=>[...e,"click"],delay:{show:200,hide:0},handleResize:!1,html:!1,loadingContent:"..."},dropdown:{placement:"bottom",triggers:["click"],delay:0,handleResize:!0,autoHide:!0},menu:{$extend:"dropdown",triggers:["hover","focus"],popperTriggers:["hover"],delay:{show:0,hide:400}}}};function NE(e,t){let u=ts.themes[e]||{},s;do s=u[t],typeof s>"u"?u.$extend?u=ts.themes[u.$extend]||{}:(u=null,s=ts[t]):u=null;while(u);return s}function _E(e){const t=[e];let u=ts.themes[e]||{};do u.$extend&&!u.$resetCss?(t.push(u.$extend),u=ts.themes[u.$extend]||{}):u=null;while(u);return t.map(s=>`v-popper--theme-${s}`)}function v4(e){const t=[e];let u=ts.themes[e]||{};do u.$extend?(t.push(u.$extend),u=ts.themes[u.$extend]||{}):u=null;while(u);return t}let ri=!1;if(typeof window<"u"){ri=!1;try{const e=Object.defineProperty({},"passive",{get(){ri=!0}});window.addEventListener("test",null,e)}catch{}}let _3=!1;typeof window<"u"&&typeof navigator<"u"&&(_3=/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream);const OE=["auto","top","bottom","left","right"].reduce((e,t)=>e.concat([t,`${t}-start`,`${t}-end`]),[]),E4={hover:"mouseenter",focus:"focus",click:"click",touch:"touchstart",pointer:"pointerdown"},C4={hover:"mouseleave",focus:"blur",click:"click",touch:"touchend",pointer:"pointerup"};function B4(e,t){const u=e.indexOf(t);u!==-1&&e.splice(u,1)}function qo(){return new Promise(e=>requestAnimationFrame(()=>{requestAnimationFrame(e)}))}const Xt=[];let cs=null;const y4={};function x4(e){let t=y4[e];return t||(t=y4[e]=[]),t}let Da=function(){};typeof window<"u"&&(Da=window.Element);function be(e){return function(t){return NE(t.theme,e)}}const Ko="__floating-vue__popper",O3=()=>tu({name:"VPopper",provide(){return{[Ko]:{parentPopper:this}}},inject:{[Ko]:{default:null}},props:{theme:{type:String,required:!0},targetNodes:{type:Function,required:!0},referenceNode:{type:Function,default:null},popperNode:{type:Function,required:!0},shown:{type:Boolean,default:!1},showGroup:{type:String,default:null},ariaId:{default:null},disabled:{type:Boolean,default:be("disabled")},positioningDisabled:{type:Boolean,default:be("positioningDisabled")},placement:{type:String,default:be("placement"),validator:e=>OE.includes(e)},delay:{type:[String,Number,Object],default:be("delay")},distance:{type:[Number,String],default:be("distance")},skidding:{type:[Number,String],default:be("skidding")},triggers:{type:Array,default:be("triggers")},showTriggers:{type:[Array,Function],default:be("showTriggers")},hideTriggers:{type:[Array,Function],default:be("hideTriggers")},popperTriggers:{type:Array,default:be("popperTriggers")},popperShowTriggers:{type:[Array,Function],default:be("popperShowTriggers")},popperHideTriggers:{type:[Array,Function],default:be("popperHideTriggers")},container:{type:[String,Object,Da,Boolean],default:be("container")},boundary:{type:[String,Da],default:be("boundary")},strategy:{type:String,validator:e=>["absolute","fixed"].includes(e),default:be("strategy")},autoHide:{type:[Boolean,Function],default:be("autoHide")},handleResize:{type:Boolean,default:be("handleResize")},instantMove:{type:Boolean,default:be("instantMove")},eagerMount:{type:Boolean,default:be("eagerMount")},popperClass:{type:[String,Array,Object],default:be("popperClass")},computeTransformOrigin:{type:Boolean,default:be("computeTransformOrigin")},autoMinSize:{type:Boolean,default:be("autoMinSize")},autoSize:{type:[Boolean,String],default:be("autoSize")},autoMaxSize:{type:Boolean,default:be("autoMaxSize")},autoBoundaryMaxSize:{type:Boolean,default:be("autoBoundaryMaxSize")},preventOverflow:{type:Boolean,default:be("preventOverflow")},overflowPadding:{type:[Number,String],default:be("overflowPadding")},arrowPadding:{type:[Number,String],default:be("arrowPadding")},arrowOverflow:{type:Boolean,default:be("arrowOverflow")},flip:{type:Boolean,default:be("flip")},shift:{type:Boolean,default:be("shift")},shiftCrossAxis:{type:Boolean,default:be("shiftCrossAxis")},noAutoFocus:{type:Boolean,default:be("noAutoFocus")},disposeTimeout:{type:Number,default:be("disposeTimeout")}},emits:{show:()=>!0,hide:()=>!0,"update:shown":e=>!0,"apply-show":()=>!0,"apply-hide":()=>!0,"close-group":()=>!0,"close-directive":()=>!0,"auto-hide":()=>!0,resize:()=>!0},data(){return{isShown:!1,isMounted:!1,skipTransition:!1,classes:{showFrom:!1,showTo:!1,hideFrom:!1,hideTo:!0},result:{x:0,y:0,placement:"",strategy:this.strategy,arrow:{x:0,y:0,centerOffset:0},transformOrigin:null},randomId:`popper_${[Math.random(),Date.now()].map(e=>e.toString(36).substring(2,10)).join("_")}`,shownChildren:new Set,lastAutoHide:!0,pendingHide:!1,containsGlobalTarget:!1,isDisposed:!0,mouseDownContains:!1}},computed:{popperId(){return this.ariaId!=null?this.ariaId:this.randomId},shouldMountContent(){return this.eagerMount||this.isMounted},slotData(){return{popperId:this.popperId,isShown:this.isShown,shouldMountContent:this.shouldMountContent,skipTransition:this.skipTransition,autoHide:typeof this.autoHide=="function"?this.lastAutoHide:this.autoHide,show:this.show,hide:this.hide,handleResize:this.handleResize,onResize:this.onResize,classes:{...this.classes,popperClass:this.popperClass},result:this.positioningDisabled?null:this.result,attrs:this.$attrs}},parentPopper(){var e;return(e=this[Ko])==null?void 0:e.parentPopper},hasPopperShowTriggerHover(){var e,t;return((e=this.popperTriggers)==null?void 0:e.includes("hover"))||((t=this.popperShowTriggers)==null?void 0:t.includes("hover"))}},watch:{shown:"$_autoShowHide",disabled(e){e?this.dispose():this.init()},async container(){this.isShown&&(this.$_ensureTeleport(),await this.$_computePosition())},triggers:{handler:"$_refreshListeners",deep:!0},positioningDisabled:"$_refreshListeners",...["placement","distance","skidding","boundary","strategy","overflowPadding","arrowPadding","preventOverflow","shift","shiftCrossAxis","flip"].reduce((e,t)=>(e[t]="$_computePosition",e),{})},created(){this.autoMinSize&&console.warn('[floating-vue] `autoMinSize` option is deprecated. Use `autoSize="min"` instead.'),this.autoMaxSize&&console.warn("[floating-vue] `autoMaxSize` option is deprecated. Use `autoBoundaryMaxSize` instead.")},mounted(){this.init(),this.$_detachPopperNode()},activated(){this.$_autoShowHide()},deactivated(){this.hide()},beforeUnmount(){this.dispose()},methods:{show({event:e=null,skipDelay:t=!1,force:u=!1}={}){var s,n;(s=this.parentPopper)!=null&&s.lockedChild&&this.parentPopper.lockedChild!==this||(this.pendingHide=!1,(u||!this.disabled)&&(((n=this.parentPopper)==null?void 0:n.lockedChild)===this&&(this.parentPopper.lockedChild=null),this.$_scheduleShow(e,t),this.$emit("show"),this.$_showFrameLocked=!0,requestAnimationFrame(()=>{this.$_showFrameLocked=!1})),this.$emit("update:shown",!0))},hide({event:e=null,skipDelay:t=!1}={}){var u;if(!this.$_hideInProgress){if(this.shownChildren.size>0){this.pendingHide=!0;return}if(this.hasPopperShowTriggerHover&&this.$_isAimingPopper()){this.parentPopper&&(this.parentPopper.lockedChild=this,clearTimeout(this.parentPopper.lockedChildTimer),this.parentPopper.lockedChildTimer=setTimeout(()=>{this.parentPopper.lockedChild===this&&(this.parentPopper.lockedChild.hide({skipDelay:t}),this.parentPopper.lockedChild=null)},1e3));return}((u=this.parentPopper)==null?void 0:u.lockedChild)===this&&(this.parentPopper.lockedChild=null),this.pendingHide=!1,this.$_scheduleHide(e,t),this.$emit("hide"),this.$emit("update:shown",!1)}},init(){var e;this.isDisposed&&(this.isDisposed=!1,this.isMounted=!1,this.$_events=[],this.$_preventShow=!1,this.$_referenceNode=((e=this.referenceNode)==null?void 0:e.call(this))??this.$el,this.$_targetNodes=this.targetNodes().filter(t=>t.nodeType===t.ELEMENT_NODE),this.$_popperNode=this.popperNode(),this.$_innerNode=this.$_popperNode.querySelector(".v-popper__inner"),this.$_arrowNode=this.$_popperNode.querySelector(".v-popper__arrow-container"),this.$_swapTargetAttrs("title","data-original-title"),this.$_detachPopperNode(),this.triggers.length&&this.$_addEventListeners(),this.shown&&this.show())},dispose(){this.isDisposed||(this.isDisposed=!0,this.$_removeEventListeners(),this.hide({skipDelay:!0}),this.$_detachPopperNode(),this.isMounted=!1,this.isShown=!1,this.$_updateParentShownChildren(!1),this.$_swapTargetAttrs("data-original-title","title"))},async onResize(){this.isShown&&(await this.$_computePosition(),this.$emit("resize"))},async $_computePosition(){if(this.isDisposed||this.positioningDisabled)return;const e={strategy:this.strategy,middleware:[]};(this.distance||this.skidding)&&e.middleware.push(y3({mainAxis:this.distance,crossAxis:this.skidding}));const t=this.placement.startsWith("auto");if(t?e.middleware.push(xE({alignment:this.placement.split("-")[1]??""})):e.placement=this.placement,this.preventOverflow&&(this.shift&&e.middleware.push(x3({padding:this.overflowPadding,boundary:this.boundary,crossAxis:this.shiftCrossAxis})),!t&&this.flip&&e.middleware.push(C3({padding:this.overflowPadding,boundary:this.boundary}))),e.middleware.push(BE({element:this.$_arrowNode,padding:this.arrowPadding})),this.arrowOverflow&&e.middleware.push({name:"arrowOverflow",fn:({placement:s,rects:n,middlewareData:i})=>{let o;const{centerOffset:a}=i.arrow;return s.startsWith("top")||s.startsWith("bottom")?o=Math.abs(a)>n.reference.width/2:o=Math.abs(a)>n.reference.height/2,{data:{overflow:o}}}}),this.autoMinSize||this.autoSize){const s=this.autoSize?this.autoSize:this.autoMinSize?"min":null;e.middleware.push({name:"autoSize",fn:({rects:n,placement:i,middlewareData:o})=>{var a;if((a=o.autoSize)!=null&&a.skip)return{};let r,m;return i.startsWith("top")||i.startsWith("bottom")?r=n.reference.width:m=n.reference.height,this.$_innerNode.style[s==="min"?"minWidth":s==="max"?"maxWidth":"width"]=r!=null?`${r}px`:null,this.$_innerNode.style[s==="min"?"minHeight":s==="max"?"maxHeight":"height"]=m!=null?`${m}px`:null,{data:{skip:!0},reset:{rects:!0}}}})}(this.autoMaxSize||this.autoBoundaryMaxSize)&&(this.$_innerNode.style.maxWidth=null,this.$_innerNode.style.maxHeight=null,e.middleware.push(wE({boundary:this.boundary,padding:this.overflowPadding,apply:({availableWidth:s,availableHeight:n})=>{this.$_innerNode.style.maxWidth=s!=null?`${s}px`:null,this.$_innerNode.style.maxHeight=n!=null?`${n}px`:null}})));const u=await SE(this.$_referenceNode,this.$_popperNode,e);Object.assign(this.result,{x:u.x,y:u.y,placement:u.placement,strategy:u.strategy,arrow:{...u.middlewareData.arrow,...u.middlewareData.arrowOverflow}})},$_scheduleShow(e,t=!1){if(this.$_updateParentShownChildren(!0),this.$_hideInProgress=!1,clearTimeout(this.$_scheduleTimer),cs&&this.instantMove&&cs.instantMove&&cs!==this.parentPopper){cs.$_applyHide(!0),this.$_applyShow(!0);return}t?this.$_applyShow():this.$_scheduleTimer=setTimeout(this.$_applyShow.bind(this),this.$_computeDelay("show"))},$_scheduleHide(e,t=!1){if(this.shownChildren.size>0){this.pendingHide=!0;return}this.$_updateParentShownChildren(!1),this.$_hideInProgress=!0,clearTimeout(this.$_scheduleTimer),this.isShown&&(cs=this),t?this.$_applyHide():this.$_scheduleTimer=setTimeout(this.$_applyHide.bind(this),this.$_computeDelay("hide"))},$_computeDelay(e){const t=this.delay;return parseInt(t&&t[e]||t||0)},async $_applyShow(e=!1){clearTimeout(this.$_disposeTimer),clearTimeout(this.$_scheduleTimer),this.skipTransition=e,!this.isShown&&(this.$_ensureTeleport(),await qo(),await this.$_computePosition(),await this.$_applyShowEffect(),this.positioningDisabled||this.$_registerEventListeners([...F0(this.$_referenceNode),...F0(this.$_popperNode)],"scroll",()=>{this.$_computePosition()}))},async $_applyShowEffect(){if(this.$_hideInProgress)return;if(this.computeTransformOrigin){const t=this.$_referenceNode.getBoundingClientRect(),u=this.$_popperNode.querySelector(".v-popper__wrapper"),s=u.parentNode.getBoundingClientRect(),n=t.x+t.width/2-(s.left+u.offsetLeft),i=t.y+t.height/2-(s.top+u.offsetTop);this.result.transformOrigin=`${n}px ${i}px`}this.isShown=!0,this.$_applyAttrsToTarget({"aria-describedby":this.popperId,"data-popper-shown":""});const e=this.showGroup;if(e){let t;for(let u=0;u0){this.pendingHide=!0,this.$_hideInProgress=!1;return}if(clearTimeout(this.$_scheduleTimer),!this.isShown)return;this.skipTransition=e,B4(Xt,this),Xt.length===0&&document.body.classList.remove("v-popper--some-open");for(const u of v4(this.theme)){const s=x4(u);B4(s,this),s.length===0&&document.body.classList.remove(`v-popper--some-open--${u}`)}cs===this&&(cs=null),this.isShown=!1,this.$_applyAttrsToTarget({"aria-describedby":void 0,"data-popper-shown":void 0}),clearTimeout(this.$_disposeTimer);const t=this.disposeTimeout;t!==null&&(this.$_disposeTimer=setTimeout(()=>{this.$_popperNode&&(this.$_detachPopperNode(),this.isMounted=!1)},t)),this.$_removeEventListeners("scroll"),this.$emit("apply-hide"),this.classes.showFrom=!1,this.classes.showTo=!1,this.classes.hideFrom=!0,this.classes.hideTo=!1,await qo(),this.classes.hideFrom=!1,this.classes.hideTo=!0},$_autoShowHide(){this.shown?this.show():this.hide()},$_ensureTeleport(){if(this.isDisposed)return;let e=this.container;if(typeof e=="string"?e=window.document.querySelector(e):e===!1&&(e=this.$_targetNodes[0].parentNode),!e)throw new Error("No container for popover: "+this.container);e.appendChild(this.$_popperNode),this.isMounted=!0},$_addEventListeners(){const e=u=>{this.isShown&&!this.$_hideInProgress||(u.usedByTooltip=!0,!this.$_preventShow&&this.show({event:u}))};this.$_registerTriggerListeners(this.$_targetNodes,E4,this.triggers,this.showTriggers,e),this.$_registerTriggerListeners([this.$_popperNode],E4,this.popperTriggers,this.popperShowTriggers,e);const t=u=>{u.usedByTooltip||this.hide({event:u})};this.$_registerTriggerListeners(this.$_targetNodes,C4,this.triggers,this.hideTriggers,t),this.$_registerTriggerListeners([this.$_popperNode],C4,this.popperTriggers,this.popperHideTriggers,t)},$_registerEventListeners(e,t,u){this.$_events.push({targetNodes:e,eventType:t,handler:u}),e.forEach(s=>s.addEventListener(t,u,ri?{passive:!0}:void 0))},$_registerTriggerListeners(e,t,u,s,n){let i=u;s!=null&&(i=typeof s=="function"?s(i):s),i.forEach(o=>{const a=t[o];a&&this.$_registerEventListeners(e,a,n)})},$_removeEventListeners(e){const t=[];this.$_events.forEach(u=>{const{targetNodes:s,eventType:n,handler:i}=u;!e||e===n?s.forEach(o=>o.removeEventListener(n,i)):t.push(u)}),this.$_events=t},$_refreshListeners(){this.isDisposed||(this.$_removeEventListeners(),this.$_addEventListeners())},$_handleGlobalClose(e,t=!1){this.$_showFrameLocked||(this.hide({event:e}),e.closePopover?this.$emit("close-directive"):this.$emit("auto-hide"),t&&(this.$_preventShow=!0,setTimeout(()=>{this.$_preventShow=!1},300)))},$_detachPopperNode(){this.$_popperNode.parentNode&&this.$_popperNode.parentNode.removeChild(this.$_popperNode)},$_swapTargetAttrs(e,t){for(const u of this.$_targetNodes){const s=u.getAttribute(e);s&&(u.removeAttribute(e),u.setAttribute(t,s))}},$_applyAttrsToTarget(e){for(const t of this.$_targetNodes)for(const u in e){const s=e[u];s==null?t.removeAttribute(u):t.setAttribute(u,s)}},$_updateParentShownChildren(e){let t=this.parentPopper;for(;t;)e?t.shownChildren.add(this.randomId):(t.shownChildren.delete(this.randomId),t.pendingHide&&t.hide()),t=t.parentPopper},$_isAimingPopper(){const e=this.$_referenceNode.getBoundingClientRect();if(Hn>=e.left&&Hn<=e.right&&Gn>=e.top&&Gn<=e.bottom){const t=this.$_popperNode.getBoundingClientRect(),u=Hn-qu,s=Gn-Ku,n=t.left+t.width/2-qu+(t.top+t.height/2)-Ku+t.width+t.height,i=qu+u*n,o=Ku+s*n;return Ri(qu,Ku,i,o,t.left,t.top,t.left,t.bottom)||Ri(qu,Ku,i,o,t.left,t.top,t.right,t.top)||Ri(qu,Ku,i,o,t.right,t.top,t.right,t.bottom)||Ri(qu,Ku,i,o,t.left,t.bottom,t.right,t.bottom)}return!1}},render(){return this.$slots.default(this.slotData)}});if(typeof document<"u"&&typeof window<"u"){if(_3){const e=ri?{passive:!0,capture:!0}:!0;document.addEventListener("touchstart",t=>A4(t),e),document.addEventListener("touchend",t=>b4(t,!0),e)}else window.addEventListener("mousedown",e=>A4(e),!0),window.addEventListener("click",e=>b4(e,!1),!0);window.addEventListener("resize",PE)}function A4(e,t){for(let u=0;u=0;s--){const n=Xt[s];try{const i=n.containsGlobalTarget=n.mouseDownContains||n.popperNode().contains(e.target);n.pendingHide=!1,requestAnimationFrame(()=>{if(n.pendingHide=!1,!u[n.randomId]&&w4(n,i,e)){if(n.$_handleGlobalClose(e,t),!e.closeAllPopover&&e.closePopover&&i){let a=n.parentPopper;for(;a;)u[a.randomId]=!0,a=a.parentPopper;return}let o=n.parentPopper;for(;o&&w4(o,o.containsGlobalTarget,e);)o.$_handleGlobalClose(e,t),o=o.parentPopper}})}catch{}}}function w4(e,t,u){return u.closeAllPopover||u.closePopover&&t||zE(e,u)&&!t}function zE(e,t){if(typeof e.autoHide=="function"){const u=e.autoHide(t);return e.lastAutoHide=u,u}return e.autoHide}function PE(){for(let e=0;e{qu=Hn,Ku=Gn,Hn=e.clientX,Gn=e.clientY},ri?{passive:!0}:void 0);function Ri(e,t,u,s,n,i,o,a){const r=((o-n)*(t-i)-(a-i)*(e-n))/((a-i)*(u-e)-(o-n)*(s-t)),m=((u-e)*(t-i)-(s-t)*(e-n))/((a-i)*(u-e)-(o-n)*(s-t));return r>=0&&r<=1&&m>=0&&m<=1}const RE={extends:O3()},lr=(e,t)=>{const u=e.__vccOpts||e;for(const[s,n]of t)u[s]=n;return u};function LE(e,t,u,s,n,i){return X(),me("div",{ref:"reference",class:Bt(["v-popper",{"v-popper--shown":e.slotData.isShown}])},[ze(e.$slots,"default",_t(At(e.slotData)))],2)}const jE=lr(RE,[["render",LE]]);function IE(){var e=window.navigator.userAgent,t=e.indexOf("MSIE ");if(t>0)return parseInt(e.substring(t+5,e.indexOf(".",t)),10);var u=e.indexOf("Trident/");if(u>0){var s=e.indexOf("rv:");return parseInt(e.substring(s+3,e.indexOf(".",s)),10)}var n=e.indexOf("Edge/");return n>0?parseInt(e.substring(n+5,e.indexOf(".",n)),10):-1}let qi;function Fa(){Fa.init||(Fa.init=!0,qi=IE()!==-1)}var Ki={name:"ResizeObserver",props:{emitOnMount:{type:Boolean,default:!1},ignoreWidth:{type:Boolean,default:!1},ignoreHeight:{type:Boolean,default:!1}},emits:["notify"],mounted(){Fa(),Ha(()=>{this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitOnMount&&this.emitSize()});const e=document.createElement("object");this._resizeObject=e,e.setAttribute("aria-hidden","true"),e.setAttribute("tabindex",-1),e.onload=this.addResizeHandlers,e.type="text/html",qi&&this.$el.appendChild(e),e.data="about:blank",qi||this.$el.appendChild(e)},beforeUnmount(){this.removeResizeHandlers()},methods:{compareAndNotify(){(!this.ignoreWidth&&this._w!==this.$el.offsetWidth||!this.ignoreHeight&&this._h!==this.$el.offsetHeight)&&(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitSize())},emitSize(){this.$emit("notify",{width:this._w,height:this._h})},addResizeHandlers(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers(){this._resizeObject&&this._resizeObject.onload&&(!qi&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),this.$el.removeChild(this._resizeObject),this._resizeObject.onload=null,this._resizeObject=null)}}};const ME=Ef();hf("data-v-b329ee4c");const $E={class:"resize-observer",tabindex:"-1"};vf();const UE=ME((e,t,u,s,n,i)=>(X(),et("div",$E)));Ki.render=UE,Ki.__scopeId="data-v-b329ee4c",Ki.__file="src/components/ResizeObserver.vue";const T3=(e="theme")=>({computed:{themeClass(){return _E(this[e])}}}),VE=tu({name:"VPopperContent",components:{ResizeObserver:Ki},mixins:[T3()],props:{popperId:String,theme:String,shown:Boolean,mounted:Boolean,skipTransition:Boolean,autoHide:Boolean,handleResize:Boolean,classes:Object,result:Object},emits:["hide","resize"],methods:{toPx(e){return e!=null&&!isNaN(e)?`${e}px`:null}}}),WE=["id","aria-hidden","tabindex","data-popper-placement"],HE={ref:"inner",class:"v-popper__inner"},GE=ve("div",{class:"v-popper__arrow-outer"},null,-1),qE=ve("div",{class:"v-popper__arrow-inner"},null,-1),KE=[GE,qE];function YE(e,t,u,s,n,i){const o=It("ResizeObserver");return X(),me("div",{id:e.popperId,ref:"popover",class:Bt(["v-popper__popper",[e.themeClass,e.classes.popperClass,{"v-popper__popper--shown":e.shown,"v-popper__popper--hidden":!e.shown,"v-popper__popper--show-from":e.classes.showFrom,"v-popper__popper--show-to":e.classes.showTo,"v-popper__popper--hide-from":e.classes.hideFrom,"v-popper__popper--hide-to":e.classes.hideTo,"v-popper__popper--skip-transition":e.skipTransition,"v-popper__popper--arrow-overflow":e.result&&e.result.arrow.overflow,"v-popper__popper--no-positioning":!e.result}]]),style:ws(e.result?{position:e.result.strategy,transform:`translate3d(${Math.round(e.result.x)}px,${Math.round(e.result.y)}px,0)`}:void 0),"aria-hidden":e.shown?"false":"true",tabindex:e.autoHide?0:void 0,"data-popper-placement":e.result?e.result.placement:void 0,onKeyup:t[2]||(t[2]=$m(a=>e.autoHide&&e.$emit("hide"),["esc"]))},[ve("div",{class:"v-popper__backdrop",onClick:t[0]||(t[0]=a=>e.autoHide&&e.$emit("hide"))}),ve("div",{class:"v-popper__wrapper",style:ws(e.result?{transformOrigin:e.result.transformOrigin}:void 0)},[ve("div",HE,[e.mounted?(X(),me(it,{key:0},[ve("div",null,[ze(e.$slots,"default")]),e.handleResize?(X(),et(o,{key:0,onNotify:t[1]||(t[1]=a=>e.$emit("resize",a))})):Ve("",!0)],64)):Ve("",!0)],512),ve("div",{ref:"arrow",class:"v-popper__arrow-container",style:ws(e.result?{left:e.toPx(e.result.arrow.x),top:e.toPx(e.result.arrow.y)}:void 0)},KE,4)],4)],46,WE)}const ZE=lr(VE,[["render",YE]]),XE={methods:{show(...e){return this.$refs.popper.show(...e)},hide(...e){return this.$refs.popper.hide(...e)},dispose(...e){return this.$refs.popper.dispose(...e)},onResize(...e){return this.$refs.popper.onResize(...e)}}};let ka=function(){};typeof window<"u"&&(ka=window.Element);const JE=tu({name:"VPopperWrapper",components:{Popper:jE,PopperContent:ZE},mixins:[XE,T3("finalTheme")],props:{theme:{type:String,default:null},referenceNode:{type:Function,default:null},shown:{type:Boolean,default:!1},showGroup:{type:String,default:null},ariaId:{default:null},disabled:{type:Boolean,default:void 0},positioningDisabled:{type:Boolean,default:void 0},placement:{type:String,default:void 0},delay:{type:[String,Number,Object],default:void 0},distance:{type:[Number,String],default:void 0},skidding:{type:[Number,String],default:void 0},triggers:{type:Array,default:void 0},showTriggers:{type:[Array,Function],default:void 0},hideTriggers:{type:[Array,Function],default:void 0},popperTriggers:{type:Array,default:void 0},popperShowTriggers:{type:[Array,Function],default:void 0},popperHideTriggers:{type:[Array,Function],default:void 0},container:{type:[String,Object,ka,Boolean],default:void 0},boundary:{type:[String,ka],default:void 0},strategy:{type:String,default:void 0},autoHide:{type:[Boolean,Function],default:void 0},handleResize:{type:Boolean,default:void 0},instantMove:{type:Boolean,default:void 0},eagerMount:{type:Boolean,default:void 0},popperClass:{type:[String,Array,Object],default:void 0},computeTransformOrigin:{type:Boolean,default:void 0},autoMinSize:{type:Boolean,default:void 0},autoSize:{type:[Boolean,String],default:void 0},autoMaxSize:{type:Boolean,default:void 0},autoBoundaryMaxSize:{type:Boolean,default:void 0},preventOverflow:{type:Boolean,default:void 0},overflowPadding:{type:[Number,String],default:void 0},arrowPadding:{type:[Number,String],default:void 0},arrowOverflow:{type:Boolean,default:void 0},flip:{type:Boolean,default:void 0},shift:{type:Boolean,default:void 0},shiftCrossAxis:{type:Boolean,default:void 0},noAutoFocus:{type:Boolean,default:void 0},disposeTimeout:{type:Number,default:void 0}},emits:{show:()=>!0,hide:()=>!0,"update:shown":e=>!0,"apply-show":()=>!0,"apply-hide":()=>!0,"close-group":()=>!0,"close-directive":()=>!0,"auto-hide":()=>!0,resize:()=>!0},computed:{finalTheme(){return this.theme??this.$options.vPopperTheme}},methods:{getTargetNodes(){return Array.from(this.$el.children).filter(e=>e!==this.$refs.popperContent.$el)}}});function QE(e,t,u,s,n,i){const o=It("PopperContent"),a=It("Popper");return X(),et(a,ut({ref:"popper"},e.$props,{theme:e.finalTheme,"target-nodes":e.getTargetNodes,"popper-node":()=>e.$refs.popperContent.$el,class:[e.themeClass],onShow:t[0]||(t[0]=()=>e.$emit("show")),onHide:t[1]||(t[1]=()=>e.$emit("hide")),"onUpdate:shown":t[2]||(t[2]=r=>e.$emit("update:shown",r)),onApplyShow:t[3]||(t[3]=()=>e.$emit("apply-show")),onApplyHide:t[4]||(t[4]=()=>e.$emit("apply-hide")),onCloseGroup:t[5]||(t[5]=()=>e.$emit("close-group")),onCloseDirective:t[6]||(t[6]=()=>e.$emit("close-directive")),onAutoHide:t[7]||(t[7]=()=>e.$emit("auto-hide")),onResize:t[8]||(t[8]=()=>e.$emit("resize"))}),{default:Pe(({popperId:r,isShown:m,shouldMountContent:l,skipTransition:g,autoHide:p,show:h,hide:y,handleResize:E,onResize:F,classes:B,result:A})=>[ze(e.$slots,"default",{shown:m,show:h,hide:y}),Be(o,{ref:"popperContent","popper-id":r,theme:e.finalTheme,shown:m,mounted:l,"skip-transition":g,"auto-hide":p,"handle-resize":E,classes:B,result:A,onHide:y,onResize:F},{default:Pe(()=>[ze(e.$slots,"popper",{shown:m,hide:y})]),_:2},1032,["popper-id","theme","shown","mounted","skip-transition","auto-hide","handle-resize","classes","result","onHide","onResize"])]),_:3},16,["theme","target-nodes","popper-node","class"])}const Sa=lr(JE,[["render",QE]]),e1={...Sa,name:"VDropdown",vPopperTheme:"dropdown"};({...Sa},{...Sa}),O3();const D4=ts,t1=e1,u1=tu({name:"NcPopoverTriggerProvider",provide(){return{"NcPopover:trigger:shown":()=>this.shown,"NcPopover:trigger:attrs":()=>this.triggerAttrs}},props:{shown:{type:Boolean,required:!0},popupRole:{type:String,default:void 0}},computed:{triggerAttrs(){return{"aria-haspopup":this.popupRole,"aria-expanded":this.shown.toString()}}},render(){return this.$slots.default?.({attrs:this.triggerAttrs})}}),s1="_ncPopover_zfWgY",n1={"material-design-icon":"_material-design-icon_bkeq-",ncPopover:s1},z3="nc-popover-9";D4.themes[z3]=structuredClone(D4.themes.dropdown);const i1={name:"NcPopover",components:{Dropdown:t1,NcPopoverTriggerProvider:u1},props:{boundary:{type:[String,Object],default:""},closeOnClickOutside:{type:Boolean,default:!0},noCloseOnClickOutside:{type:Boolean,default:!1},container:{type:[Boolean,String],default:"body"},delay:{type:[Number,Object],default:0},noFocusTrap:{type:Boolean,default:!1},placement:{type:String,default:"bottom"},popoverBaseClass:{type:String,default:""},popoverTriggers:{type:[Array,Object],default:null},popupRole:{type:String,default:void 0,validator:e=>["menu","listbox","tree","grid","dialog","true"].includes(e)},setReturnFocus:{default:void 0,type:[Boolean,HTMLElement,SVGElement,String,Function]},shown:{type:Boolean,default:!1},triggers:{type:[Array,Object],default:()=>["click"]}},emits:["afterShow","afterHide","update:shown"],setup(){return{theme:z3}},data(){return{internalShown:this.shown}},computed:{popperTriggers(){if(this.popoverTriggers&&Array.isArray(this.popoverTriggers))return this.popoverTriggers},popperHideTriggers(){if(this.popoverTriggers&&typeof this.popoverTriggers=="object")return this.popoverTriggers.hide},popperShowTriggers(){if(this.popoverTriggers&&typeof this.popoverTriggers=="object")return this.popoverTriggers.show},internalTriggers(){if(this.triggers&&Array.isArray(this.triggers))return this.triggers},hideTriggers(){if(this.triggers&&typeof this.triggers=="object")return this.triggers.hide},showTriggers(){if(this.triggers&&typeof this.triggers=="object")return this.triggers.show},internalPlacement(){return this.placement==="start"?v0?"right":"left":this.placement==="end"?v0?"left":"right":this.placement}},watch:{shown(e){this.internalShown=e},internalShown(e){this.$emit("update:shown",e)}},mounted(){this.checkTriggerA11y()},beforeUnmount(){this.clearFocusTrap(),this.clearEscapeStopPropagation()},methods:{checkTriggerA11y(){window.OC?.debug&&this.getPopoverTriggerContainerElement().querySelector("[aria-expanded]")},removeFloatingVueAriaDescribedBy(){const e=this.getPopoverTriggerContainerElement().querySelectorAll("[data-popper-shown]");for(const t of e)t.removeAttribute("aria-describedby")},getPopoverContentElement(){return this.$refs.popover?.$refs.popperContent?.$el},getPopoverTriggerContainerElement(){return this.$refs.popover?.$refs.popper?.$refs.reference},async useFocusTrap(){if(await this.$nextTick(),this.noFocusTrap)return;const e=this.getPopoverContentElement();e.tabIndex=-1,e&&(this.$focusTrap=f3(e,{escapeDeactivates:!1,allowOutsideClick:!0,setReturnFocus:this.setReturnFocus,trapStack:ii(),fallBackFocus:e}),this.$focusTrap.activate())},clearFocusTrap(e={}){try{this.$focusTrap?.deactivate(e),this.$focusTrap=null}catch(t){Tv.warn("[NcPopover] Failed to clear focus trap",{error:t})}},addEscapeStopPropagation(){this.getPopoverContentElement()?.addEventListener("keydown",this.stopKeydownEscapeHandler)},clearEscapeStopPropagation(){this.getPopoverContentElement()?.removeEventListener("keydown",this.stopKeydownEscapeHandler)},stopKeydownEscapeHandler(e){e.type==="keydown"&&e.key==="Escape"&&e.stopPropagation()},async afterShow(){this.getPopoverContentElement().addEventListener("transitionend",()=>{this.$emit("afterShow")},{once:!0,passive:!0}),this.removeFloatingVueAriaDescribedBy(),await this.$nextTick(),await this.useFocusTrap(),this.addEscapeStopPropagation()},afterHide(){this.getPopoverContentElement()?.addEventListener("transitionend",()=>{this.$emit("afterHide")},{once:!0,passive:!0}),this.clearFocusTrap(),this.clearEscapeStopPropagation()}}};function o1(e,t,u,s,n,i){const o=It("NcPopoverTriggerProvider"),a=It("Dropdown");return X(),et(a,{ref:"popover",shown:n.internalShown,"onUpdate:shown":[t[0]||(t[0]=r=>n.internalShown=r),t[1]||(t[1]=r=>n.internalShown=r)],arrowPadding:10,autoHide:!u.noCloseOnClickOutside&&u.closeOnClickOutside,boundary:u.boundary||void 0,container:u.container,delay:u.delay,distance:10,handleResize:"",noAutoFocus:!0,placement:i.internalPlacement,popperClass:[e.$style.ncPopover,u.popoverBaseClass],popperTriggers:i.popperTriggers,popperHideTriggers:i.popperHideTriggers,popperShowTriggers:i.popperShowTriggers,theme:s.theme,triggers:i.internalTriggers,hideTriggers:i.hideTriggers,showTriggers:i.showTriggers,onApplyShow:i.afterShow,onApplyHide:i.afterHide},{popper:Pe(r=>[ze(e.$slots,"default",_t(At(r)))]),default:Pe(()=>[Be(o,{shown:n.internalShown,popupRole:u.popupRole},{default:Pe(r=>[ze(e.$slots,"trigger",_t(At(r)))]),_:3},8,["shown","popupRole"])]),_:3},8,["shown","autoHide","boundary","container","delay","placement","popperClass","popperTriggers","popperHideTriggers","popperShowTriggers","theme","triggers","hideTriggers","showTriggers","onApplyShow","onApplyHide"])}const a1={$style:n1},F4=rt(i1,[["render",o1],["__cssModules",a1]]),r1=Symbol.for("NcActions:isSemanticMenu"),l1=Symbol.for("NcActions:closeMenu"),d1={name:"DotsHorizontalIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},m1=["aria-hidden","aria-label"],c1=["fill","width","height"],g1={d:"M16,12A2,2 0 0,1 18,10A2,2 0 0,1 20,12A2,2 0 0,1 18,14A2,2 0 0,1 16,12M10,12A2,2 0 0,1 12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12M4,12A2,2 0 0,1 6,10A2,2 0 0,1 8,12A2,2 0 0,1 6,14A2,2 0 0,1 4,12Z"},f1={key:0};function p1(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon dots-horizontal-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",g1,[u.title?(X(),me("title",f1,dt(u.title),1)):Ve("",!0)])],8,c1))],16,m1)}const h1=rt(d1,[["render",p1]]);pn(Yh);function P3(e){return Array.isArray(e)&&e.some(t=>{if(t===null)return!1;if(typeof t=="object"){const u=t;if(u.type===ht||u.type===it&&!P3(u.children)||u.type===fi&&!u.children.trim())return!1}return!0})}const v1=".focusable",E1={name:"NcActions",components:{NcButton:As,NcPopover:F4},provide(){return{[r1]:Ue(()=>this.actionsMenuSemanticType==="menu"),[l1]:this.closeMenu}},props:{open:{type:Boolean,default:!1},manualOpen:{type:Boolean,default:!1},forceMenu:{type:Boolean,default:!1},forceName:{type:Boolean,default:!1},menuName:{type:String,default:null},primary:{type:Boolean,default:!1},defaultIcon:{type:String,default:""},ariaLabel:{type:String,default:ft("Actions")},placement:{type:String,default:"bottom"},boundariesElement:{type:Element,default:()=>document.getElementById("content-vue")??document.querySelector("body")},container:{type:[Boolean,String,Object,Element],default:"body"},disabled:{type:Boolean,default:!1},inline:{type:Number,default:0},variant:{type:String,validator(e){return["primary","secondary","tertiary","tertiary-no-background","tertiary-on-primary","error","warning","success"].includes(e)},default:null},wide:{type:Boolean,default:!1},size:{type:String,default:"normal",validator(e){return["small","normal","large"].includes(e)}}},emits:["click","blur","focus","close","closed","open","opened","update:open"],setup(){return{randomId:_s()}},data(){return{opened:this.open,focusIndex:0,actionsMenuSemanticType:"unknown"}},computed:{triggerButtonVariant(){return this.variant||(this.primary?"primary":this.menuName?"secondary":"tertiary")},config(){return{menu:{popupRole:"menu",withArrowNavigation:!0,withTabNavigation:!1,withFocusTrap:!1},navigation:{popupRole:void 0,withArrowNavigation:!1,withTabNavigation:!0,withFocusTrap:!1},dialog:{popupRole:"dialog",withArrowNavigation:!1,withTabNavigation:!0,withFocusTrap:!0},tooltip:{popupRole:void 0,withArrowNavigation:!1,withTabNavigation:!1,withFocusTrap:!1},unknown:{popupRole:void 0,role:void 0,withArrowNavigation:!0,withTabNavigation:!1,withFocusTrap:!0}}[this.actionsMenuSemanticType]},withFocusTrap(){return this.config.withFocusTrap}},watch:{open(e){e!==this.opened&&(this.opened=e)},opened(){this.opened?document.body.addEventListener("keydown",this.handleEscapePressed):document.body.removeEventListener("keydown",this.handleEscapePressed)}},created(){lE(()=>this.opened,{disabled:()=>this.config.withFocusTrap}),"ariaHidden"in this.$attrs},methods:{getActionName(e){return e?.type?.name},isValidSingleAction(e){return["NcActionButton","NcActionLink","NcActionRouter"].includes(this.getActionName(e))},isAction(e){return this.getActionName(e)?.startsWith?.("NcAction")},isIconUrl(e){try{return!!new URL(e,e.startsWith("/")?window.location.origin:void 0)}catch{return!1}},toggleMenu(e){e?this.openMenu():this.closeMenu()},openMenu(){this.opened||(this.opened=!0,this.$emit("update:open",!0),this.$emit("open"))},async closeMenu(e=!0){this.opened&&(await this.$nextTick(),this.opened=!1,this.$refs.popover?.clearFocusTrap({returnFocus:e}),this.$emit("update:open",!1),this.$emit("close"),this.focusIndex=0,e&&this.$refs.triggerButton?.$el.focus())},onOpened(){this.$nextTick(()=>{this.focusFirstAction(null),this.$emit("opened")})},onClosed(){this.$emit("closed")},getCurrentActiveMenuItemElement(){return this.$refs.menu.querySelector("li.active")},getFocusableMenuItemElements(){return this.$refs.menu.querySelectorAll(v1)},onKeydown(e){if(e.key==="Tab"){if(this.config.withFocusTrap)return;if(!this.config.withTabNavigation){this.closeMenu(!0);return}e.preventDefault();const t=this.getFocusableMenuItemElements(),u=[...t].indexOf(document.activeElement);if(u===-1)return;const s=e.shiftKey?u-1:u+1;(s<0||s===t.length)&&this.closeMenu(!0),this.focusIndex=s,this.focusAction();return}this.config.withArrowNavigation&&(e.key==="ArrowUp"&&this.focusPreviousAction(e),e.key==="ArrowDown"&&this.focusNextAction(e),e.key==="PageUp"&&this.focusFirstAction(e),e.key==="PageDown"&&this.focusLastAction(e)),this.handleEscapePressed(e)},onTriggerKeydown(e){e.key==="Escape"&&this.actionsMenuSemanticType==="tooltip"&&this.closeMenu()},handleEscapePressed(e){e.key==="Escape"&&(this.closeMenu(),e.preventDefault())},removeCurrentActive(){const e=this.$refs.menu.querySelector("li.active");e&&e.classList.remove("active")},focusAction(){const e=this.getFocusableMenuItemElements()[this.focusIndex];if(e){this.removeCurrentActive();const t=e.closest("li.action");e.focus(),t&&t.classList.add("active")}},focusPreviousAction(e){this.opened&&(this.focusIndex===0?this.focusLastAction(e):(this.preventIfEvent(e),this.focusIndex=this.focusIndex-1),this.focusAction())},focusNextAction(e){if(this.opened){const t=this.getFocusableMenuItemElements().length-1;this.focusIndex===t?this.focusFirstAction(e):(this.preventIfEvent(e),this.focusIndex=this.focusIndex+1),this.focusAction()}},focusFirstAction(e){if(this.opened){this.preventIfEvent(e);const t=[...this.getFocusableMenuItemElements()].findIndex(u=>u.getAttribute("aria-checked")==="true"&&u.getAttribute("role")==="menuitemradio");this.focusIndex=t>-1?t:0,this.focusAction()}},focusLastAction(e){this.opened&&(this.preventIfEvent(e),this.focusIndex=this.getFocusableMenuItemElements().length-1,this.focusAction())},preventIfEvent(e){e&&(e.preventDefault(),e.stopPropagation())},onFocus(e){this.$emit("focus",e)},onBlur(e){this.$emit("blur",e),this.actionsMenuSemanticType==="tooltip"&&this.$refs.menu&&this.getFocusableMenuItemElements().length===0&&this.closeMenu(!1)},onClick(e){this.$emit("click",e)}},render(){const e=[],t=(h,y)=>{h.forEach(E=>{if(this.isAction(E)){y.push(E);return}E.type===it&&t(E.children,y)})};if(t(this.$slots.default?.(),e),e.length===0)return;let u=e.filter(this.isValidSingleAction);this.forceMenu&&u.length>0&&this.inline>0&&(u=[]);const s=u.slice(0,this.inline),n=e.filter(h=>!s.includes(h)),i=["NcActionButton","NcActionButtonGroup","NcActionCheckbox","NcActionRadio"],o=["NcActionInput","NcActionTextEditable"],a=["NcActionLink","NcActionRouter"],r=n.some(h=>o.includes(this.getActionName(h))),m=n.some(h=>i.includes(this.getActionName(h))),l=n.some(h=>a.includes(this.getActionName(h)));r?this.actionsMenuSemanticType="dialog":m?this.actionsMenuSemanticType="menu":l?this.actionsMenuSemanticType="navigation":e.filter(h=>this.getActionName(h).startsWith("NcAction")).length===e.length?this.actionsMenuSemanticType="tooltip":this.actionsMenuSemanticType="unknown";const g=h=>{const y=h?.props?.icon,E=h?.children?.icon?.()?.[0]??(this.isIconUrl(y)?gt("img",{class:"action-item__menutoggle__icon",src:y,alt:""}):gt("span",{class:["icon",y]})),F=h?.children?.default?.()?.[0]?.children?.trim(),B=this.forceName?F:"";let A=h?.props?.title;this.forceName||A||(A=F);const O={...h?.props??{}},S=["submit","reset"].includes(O.type)?O.modelValue:"button";return delete O.modelValue,delete O.type,gt(As,ut(O,{class:["action-item action-item--single",{"action-item--wide":this.wide}],"aria-label":h?.props?.["aria-label"]||F,title:A,disabled:this.disabled||h?.props?.disabled,pressed:h?.props?.modelValue,size:this.size,type:S,wide:this.wide,variant:this.variant||(B?"secondary":"tertiary"),onFocus:this.onFocus,onBlur:this.onBlur,"onUpdate:pressed":h?.props?.["onUpdate:modelValue"]??(()=>{})}),{default:()=>B,icon:()=>E})},p=h=>{const y=P3(this.$slots.icon?.())?this.$slots.icon?.():this.defaultIcon?gt("span",{class:["icon",this.defaultIcon]}):gt(h1,{size:20}),E=`${this.randomId}-trigger`;return gt(F4,{ref:"popover",delay:0,shown:this.opened,placement:this.placement,boundary:this.boundariesElement,autoBoundaryMaxSize:!0,container:this.container,...this.manualOpen&&{triggers:[]},noCloseOnClickOutside:this.manualOpen,popoverBaseClass:"action-item__popper",popupRole:this.config.popupRole,setReturnFocus:this.config.withFocusTrap?this.$refs.triggerButton?.$el:void 0,noFocusTrap:!this.config.withFocusTrap,"onUpdate:shown":this.toggleMenu,onAfterShow:this.onOpened,onAfterClose:this.onClosed},{trigger:()=>gt(As,{id:E,class:"action-item__menutoggle",disabled:this.disabled,size:this.size,variant:this.triggerButtonVariant,wide:this.wide,ref:"triggerButton","aria-label":this.menuName?null:this.ariaLabel,"aria-controls":this.opened&&this.config.popupRole?this.randomId:null,onFocus:this.onFocus,onBlur:this.onBlur,onClick:this.onClick,onKeydown:this.onTriggerKeydown},{icon:()=>y,default:()=>this.menuName}),default:()=>gt("div",{class:{open:this.opened},tabindex:"-1",onKeydown:this.onKeydown,ref:"menu"},[gt("ul",{id:this.randomId,tabindex:"-1",ref:"menuList",role:this.config.popupRole,"aria-labelledby":E,"aria-modal":this.actionsMenuSemanticType==="dialog"?"true":void 0},[h])])})};return e.length===1&&u.length===1&&!this.forceMenu?g(e[0]):(this.$nextTick(()=>{this.opened&&this.$refs.menu&&(this.$refs.menu.querySelector("li.active")||[]).length===0&&this.focusFirstAction()}),s.length>0&&this.inline>0?gt("div",{class:["action-items",`action-item--${this.triggerButtonVariant}`]},[...s.map(g),n.length>0?gt("div",{class:["action-item",{"action-item--open":this.opened}]},[p(n)]):null]):gt("div",{class:["action-item action-item--default-popover",`action-item--${this.triggerButtonVariant}`,{"action-item--open":this.opened,"action-item--wide":this.wide}]},[p(e)]))}},C1=rt(E1,[["__scopeId","data-v-23e5cae7"]]),B1={name:"ChevronDownIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},y1=["aria-hidden","aria-label"],x1=["fill","width","height"],A1={d:"M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z"},b1={key:0};function w1(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon chevron-down-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",A1,[u.title?(X(),me("title",b1,dt(u.title),1)):Ve("",!0)])],8,x1))],16,y1)}const D1=rt(B1,[["render",w1]]),F1={name:"CloseIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},k1=["aria-hidden","aria-label"],S1=["fill","width","height"],N1={d:"M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z"},_1={key:0};function O1(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon close-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",N1,[u.title?(X(),me("title",_1,dt(u.title),1)):Ve("",!0)])],8,S1))],16,k1)}const T1=rt(F1,[["render",O1]]),z1=["aria-label"],P1=["width","height"],R1=["fill"],L1=["fill"],j1={key:0},I1=tu({__name:"NcLoadingIcon",props:{appearance:{default:"auto"},name:{default:""},size:{default:20}},setup(e){const t=e,u=Ue(()=>{const s=["#777","#CCC"];return t.appearance==="light"?s:t.appearance==="dark"?s.reverse():["var(--color-loading-light)","var(--color-loading-dark)"]});return(s,n)=>(X(),me("span",{"aria-label":e.name,role:"img",class:"material-design-icon loading-icon"},[(X(),me("svg",{width:e.size,height:e.size,viewBox:"0 0 24 24"},[ve("path",{fill:u.value[0],d:"M12,4V2A10,10 0 1,0 22,12H20A8,8 0 1,1 12,4Z"},null,8,R1),ve("path",{fill:u.value[1],d:"M12,4V2A10,10 0 0,1 22,12H20A8,8 0 0,0 12,4Z"},[e.name?(X(),me("title",j1,dt(e.name),1)):Ve("",!0)],8,L1)],8,P1))],8,z1))}}),R3=rt(I1,[["__scopeId","data-v-cf399190"]]),E2=(e,t)=>{const u=e.__vccOpts||e;for(const[s,n]of t)u[s]=n;return u},M1="modulepreload",$1=function(e,t){return new URL(e,t).href},k4={},dr=function(e,t,u){let s=Promise.resolve();if(t&&t.length>0){let i=function(m){return Promise.all(m.map(l=>Promise.resolve(l).then(g=>({status:"fulfilled",value:g}),g=>({status:"rejected",reason:g}))))};const o=document.getElementsByTagName("link"),a=document.querySelector("meta[property=csp-nonce]"),r=a?.nonce||a?.getAttribute("nonce");s=i(t.map(m=>{if(m=$1(m,u),m in k4)return;k4[m]=!0;const l=m.endsWith(".css"),g=l?'[rel="stylesheet"]':"";if(u)for(let h=o.length-1;h>=0;h--){const y=o[h];if(y.href===m&&(!l||y.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${m}"]${g}`))return;const p=document.createElement("link");if(p.rel=l?"stylesheet":M1,l||(p.as="script"),p.crossOrigin="",p.href=m,r&&p.setAttribute("nonce",r),document.head.appendChild(p),l)return new Promise((h,y)=>{p.addEventListener("load",h),p.addEventListener("error",()=>y(new Error(`Unable to preload CSS for ${m}`)))})}))}function n(i){const o=new Event("vite:preloadError",{cancelable:!0});if(o.payload=i,window.dispatchEvent(o),!o.defaultPrevented)throw i}return s.then(i=>{for(const o of i||[])o.status==="rejected"&&n(o.reason);return e().catch(n)})};var Na={exports:{}},U1=Na.exports,S4;function V1(){return S4||(S4=1,(function(e){(function(t,u){e.exports?e.exports=u():t.Toastify=u()})(U1,function(t){var u=function(o){return new u.lib.init(o)},s="1.12.0";u.defaults={oldestFirst:!0,text:"Toastify is awesome!",node:void 0,duration:3e3,selector:void 0,callback:function(){},destination:void 0,newWindow:!1,close:!1,gravity:"toastify-top",positionLeft:!1,position:"",backgroundColor:"",avatar:"",className:"",stopOnFocus:!0,onClick:function(){},offset:{x:0,y:0},escapeMarkup:!0,ariaLive:"polite",style:{background:""}},u.lib=u.prototype={toastify:s,constructor:u,init:function(o){return o||(o={}),this.options={},this.toastElement=null,this.options.text=o.text||u.defaults.text,this.options.node=o.node||u.defaults.node,this.options.duration=o.duration===0?0:o.duration||u.defaults.duration,this.options.selector=o.selector||u.defaults.selector,this.options.callback=o.callback||u.defaults.callback,this.options.destination=o.destination||u.defaults.destination,this.options.newWindow=o.newWindow||u.defaults.newWindow,this.options.close=o.close||u.defaults.close,this.options.gravity=o.gravity==="bottom"?"toastify-bottom":u.defaults.gravity,this.options.positionLeft=o.positionLeft||u.defaults.positionLeft,this.options.position=o.position||u.defaults.position,this.options.backgroundColor=o.backgroundColor||u.defaults.backgroundColor,this.options.avatar=o.avatar||u.defaults.avatar,this.options.className=o.className||u.defaults.className,this.options.stopOnFocus=o.stopOnFocus===void 0?u.defaults.stopOnFocus:o.stopOnFocus,this.options.onClick=o.onClick||u.defaults.onClick,this.options.offset=o.offset||u.defaults.offset,this.options.escapeMarkup=o.escapeMarkup!==void 0?o.escapeMarkup:u.defaults.escapeMarkup,this.options.ariaLive=o.ariaLive||u.defaults.ariaLive,this.options.style=o.style||u.defaults.style,o.backgroundColor&&(this.options.style.background=o.backgroundColor),this},buildToast:function(){if(!this.options)throw"Toastify is not initialized";var o=document.createElement("div");o.className="toastify on "+this.options.className,this.options.position?o.className+=" toastify-"+this.options.position:this.options.positionLeft===!0?(o.className+=" toastify-left",console.warn("Property `positionLeft` will be depreciated in further versions. Please use `position` instead.")):o.className+=" toastify-right",o.className+=" "+this.options.gravity,this.options.backgroundColor&&console.warn('DEPRECATION NOTICE: "backgroundColor" is being deprecated. Please use the "style.background" property.');for(var a in this.options.style)o.style[a]=this.options.style[a];if(this.options.ariaLive&&o.setAttribute("aria-live",this.options.ariaLive),this.options.node&&this.options.node.nodeType===Node.ELEMENT_NODE)o.appendChild(this.options.node);else if(this.options.escapeMarkup?o.innerText=this.options.text:o.innerHTML=this.options.text,this.options.avatar!==""){var r=document.createElement("img");r.src=this.options.avatar,r.className="toastify-avatar",this.options.position=="left"||this.options.positionLeft===!0?o.appendChild(r):o.insertAdjacentElement("afterbegin",r)}if(this.options.close===!0){var m=document.createElement("button");m.type="button",m.setAttribute("aria-label","Close"),m.className="toast-close",m.innerHTML="✖",m.addEventListener("click",function(F){F.stopPropagation(),this.removeElement(this.toastElement),window.clearTimeout(this.toastElement.timeOutValue)}.bind(this));var l=window.innerWidth>0?window.innerWidth:screen.width;(this.options.position=="left"||this.options.positionLeft===!0)&&l>360?o.insertAdjacentElement("afterbegin",m):o.appendChild(m)}if(this.options.stopOnFocus&&this.options.duration>0){var g=this;o.addEventListener("mouseover",function(F){window.clearTimeout(o.timeOutValue)}),o.addEventListener("mouseleave",function(){o.timeOutValue=window.setTimeout(function(){g.removeElement(o)},g.options.duration)})}if(typeof this.options.destination<"u"&&o.addEventListener("click",function(F){F.stopPropagation(),this.options.newWindow===!0?window.open(this.options.destination,"_blank"):window.location=this.options.destination}.bind(this)),typeof this.options.onClick=="function"&&typeof this.options.destination>"u"&&o.addEventListener("click",function(F){F.stopPropagation(),this.options.onClick()}.bind(this)),typeof this.options.offset=="object"){var p=n("x",this.options),h=n("y",this.options),y=this.options.position=="left"?p:"-"+p,E=this.options.gravity=="toastify-top"?h:"-"+h;o.style.transform="translate("+y+","+E+")"}return o},showToast:function(){this.toastElement=this.buildToast();var o;if(typeof this.options.selector=="string"?o=document.getElementById(this.options.selector):this.options.selector instanceof HTMLElement||typeof ShadowRoot<"u"&&this.options.selector instanceof ShadowRoot?o=this.options.selector:o=document.body,!o)throw"Root element is not defined";var a=u.defaults.oldestFirst?o.firstChild:o.lastChild;return o.insertBefore(this.toastElement,a),u.reposition(),this.options.duration>0&&(this.toastElement.timeOutValue=window.setTimeout(function(){this.removeElement(this.toastElement)}.bind(this),this.options.duration)),this},hideToast:function(){this.toastElement.timeOutValue&&clearTimeout(this.toastElement.timeOutValue),this.removeElement(this.toastElement)},removeElement:function(o){o.className=o.className.replace(" on",""),window.setTimeout(function(){this.options.node&&this.options.node.parentNode&&this.options.node.parentNode.removeChild(this.options.node),o.parentNode&&o.parentNode.removeChild(o),this.options.callback.call(o),u.reposition()}.bind(this),400)}},u.reposition=function(){for(var o={top:15,bottom:15},a={top:15,bottom:15},r={top:15,bottom:15},m=document.getElementsByClassName("toastify"),l,g=0;g0?window.innerWidth:screen.width;y<=360?(m[g].style[l]=r[l]+"px",r[l]+=p+h):i(m[g],"toastify-left")===!0?(m[g].style[l]=o[l]+"px",o[l]+=p+h):(m[g].style[l]=a[l]+"px",a[l]+=p+h)}return this};function n(o,a){return a.offset[o]?isNaN(a.offset[o])?a.offset[o]:a.offset[o]+"px":"0px"}function i(o,a){return!o||typeof a!="string"?!1:!!(o.className&&o.className.trim().split(/\s+/gi).indexOf(a)>-1)}return u.lib.init.prototype=u.lib,u})})(Na)),Na.exports}var W1=V1();const H1=O0(W1);pn(Jh),pn(Kh),ft("a few seconds ago"),ft("seconds ago"),ft("sec. ago");const G1=/mac|ipad|iphone|darwin/i.test(navigator.userAgent),q1=window.OCP?.Accessibility?.disableKeyboardShortcuts?.(),K1=/^[a-zA-Z0-9]$/,Y1=/^[^\x20-\x7F]$/;function Z1(e,t){return!(e.target instanceof HTMLElement)||e.target instanceof HTMLInputElement||e.target instanceof HTMLTextAreaElement||e.target instanceof HTMLSelectElement||e.target.isContentEditable?!0:t.allowInModal?!1:Array.from(document.getElementsByClassName("modal-mask")).filter(u=>u.checkVisibility()).length>0}function N4(e,t){return u=>{if((G1?u.metaKey:u.ctrlKey)===!!t.ctrl){if(u.altKey!==!!t.alt||t.shift!==void 0&&u.shiftKey!==!!t.shift||Z1(u,t))return;t.prevent&&u.preventDefault(),t.stop&&u.stopPropagation(),e(u)}}}function _4(e,t=()=>{},u={}){if(q1)return()=>{};const s=(a,r)=>{if(a.key===r)return!0;if(u.caseSensitive){const m=r===r.toLowerCase(),l=a.key===a.key.toLowerCase();if(m!==l)return!1}return K1.test(r)&&Y1.test(a.key)?a.code.replace(/^(?:Key|Digit|Numpad)/,"")===r.toUpperCase():a.key.toLowerCase()===r.toLowerCase()},n=a=>typeof e=="function"?e(a):typeof e=="string"?s(a,e):Array.isArray(e)?e.some(r=>s(a,r)):!0,i=Jl(n,N4(t,u),{eventName:"keydown",dedupe:!0,passive:!u.prevent}),o=u.push?Jl(n,N4(t,u),{eventName:"keyup",passive:!u.prevent}):()=>{};return()=>{i(),o()}}function X1(e=document.body){const t=window.getComputedStyle(e).getPropertyValue("--background-invert-if-dark");return t!==void 0?t==="invert(100%)":!1}X1();const J1=cn(L3());window.addEventListener("resize",()=>{J1.value=L3()});function L3(){return window.outerHeight===window.screen.height}function O4(e){return!e.parent||"vapor"in e||"vapor"in e.parent||e.parent.subTree!==e.vnode?null:e.parent}function Q1(e){const t=[e];let u=O4(e);for(;u;)t.push(u),u=O4(u);return t}function eC(){const e=uu();if(!e)throw new Error("useScopeId must be called within a setup context");const t=Q1(e).map(u=>u.vnode.scopeId).filter(Boolean);return Object.fromEntries(t.map(u=>[u,""]))}pn(Xh,Qh);const tC=["aria-labelledby","aria-describedby"],uC=["data-theme-light","data-theme-dark"],sC=["id"],nC={class:"icons-menu"},iC=["title"],oC=["id"],aC={class:"modal-container__content"},rC=tu({inheritAttrs:!1,__name:"NcModal",props:ml({name:{default:""},hasPrevious:{type:Boolean},hasNext:{type:Boolean},outTransition:{type:Boolean},enableSlideshow:{type:Boolean},slideshowDelay:{default:5e3},slideshowPaused:{type:Boolean},disableSwipe:{type:Boolean},spreadNavigation:{type:Boolean},size:{default:"normal"},noClose:{type:Boolean},closeOnClickOutside:{type:Boolean},dark:{type:Boolean},lightBackdrop:{type:Boolean},container:{default:"body"},closeButtonOutside:{type:Boolean},additionalTrapElements:{default:()=>[]},inlineActions:{default:0},labelId:{default:""},setReturnFocus:{default:void 0}},{show:{type:Boolean,default:!0},showModifiers:{}}),emits:ml(["next","previous","close","update:show"],["update:show"]),setup(e,{emit:t}){X0(M=>({v046d2bb2:B.value,v71f7c020:y.value}));const u=Zf(e,"show"),s=e,n=t,i=eC(),o=_s(),a=Nf("mask");let r;gn(()=>G()),_u(()=>s.additionalTrapElements,M=>{r&&r.updateContainerElements([a.value,...M])});const{isActive:m,pause:l,resume:g}=Sh(A,rf(()=>s.slideshowDelay),{immediate:!1}),p=cn(0),h=cn(!1);Gd(()=>{h.value&&!s.slideshowPaused?g():m.value&&l()});const y=Ue(()=>`${s.slideshowDelay}ms`),{stop:E}=Rh(a,{onSwipeEnd:S});gn(E),_4("Escape",()=>{ii().at(-1)===r&&I()},{allowInModal:!0}),_4(["ArrowLeft","ArrowRight"],M=>{document.activeElement&&!a.value.contains(document.activeElement)||(M.key==="ArrowLeft"!==v0?O():A())},{allowInModal:!0});const F=Uf(),B=Ue(()=>{let M=0;return s.hasNext&&s.enableSlideshow&&M++,!s.noClose&&s.closeButtonOutside&&M++,F.actions&&M++,M});En(()=>{!s.name&&s.labelId});function A(M){if(!s.hasNext){h.value=!1;return}M&&m.value&&q(),n("next",M)}function O(M){s.hasPrevious&&(M&&m.value&&q(),n("previous",M))}function S(M,ie){if(!s.disableSwipe){if(ie!=="left"&&ie!=="right")return;ie==="left"!==v0?A(M):O(M)}}function q(){l(),g(),p.value++}function I(M){s.noClose||(u.value=!1,setTimeout(()=>{n("close",M)},300))}function Y(M){s.closeOnClickOutside&&I(M)}async function ne(){if(r)return;await Ha();const M={allowOutsideClick:!0,fallbackFocus:a.value,trapStack:ii(),escapeDeactivates:!1,setReturnFocus:s.setReturnFocus};r=f3([a.value,...s.additionalTrapElements],M),r.activate()}function G(){r&&(r?.deactivate(),r=void 0)}return(M,ie)=>(X(),et(Ff,{disabled:e.container===null,to:e.container},[Be(Js,{name:"fade",appear:"",onAfterEnter:ne,onBeforeLeave:G},{default:Pe(()=>[ys(ve("div",ut({...M.$attrs,...ke(i)},{ref:"mask",class:["modal-mask",{"modal-mask--opaque":e.dark||e.closeButtonOutside||e.hasPrevious||e.hasNext,"modal-mask--light":e.lightBackdrop}],role:"dialog","aria-modal":"true","aria-labelledby":e.labelId||`modal-name-${ke(o)}`,"aria-describedby":"modal-description-"+ke(o),tabindex:"-1"}),[Be(Js,{name:"fade-visibility",appear:""},{default:Pe(()=>[ve("div",{class:"modal-header","data-theme-light":e.lightBackdrop,"data-theme-dark":!e.lightBackdrop},[e.name.trim()!==""?(X(),me("h2",{key:0,id:"modal-name-"+ke(o),class:"modal-header__name"},dt(e.name),9,sC)):Ve("",!0),ve("div",nC,[e.hasNext&&e.enableSlideshow?(X(),me("button",{key:0,class:Bt(["play-pause-icons",{"play-pause-icons--paused":e.slideshowPaused}]),title:ke(m)?ke(ft)("Pause slideshow"):ke(ft)("Start slideshow"),type:"button",onClick:ie[0]||(ie[0]=w=>h.value=!h.value)},[Be(Es,{class:"play-pause-icons__icon",inline:"",name:ke(m)?ke(ft)("Pause slideshow"):ke(ft)("Start slideshow"),path:ke(m)?ke(Vh):ke(Wh)},null,8,["name","path"]),ke(m)?(X(),me("svg",{key:`${ke(o)}-animation-${p.value}`,class:"progress-ring",height:"50",width:"50"},[...ie[1]||(ie[1]=[ve("circle",{class:"progress-ring__circle",stroke:"white","stroke-width":"2",fill:"transparent",r:"15",cx:"25",cy:"25"},null,-1)])])):Ve("",!0)],10,iC)):Ve("",!0),Be(C1,{class:"header-actions",inline:e.inlineActions},{default:Pe(()=>[ze(M.$slots,"actions",{},void 0,!0)]),_:3},8,["inline"]),!e.noClose&&e.closeButtonOutside?(X(),et(As,{key:1,"aria-label":ke(ft)("Close"),class:"header-close",variant:"tertiary",onClick:I},{icon:Pe(()=>[Be(Es,{path:ke(Ql)},null,8,["path"])]),_:1},8,["aria-label"])):Ve("",!0)])],8,uC)]),_:3}),Be(Js,{name:`modal-${e.outTransition?"out":"in"}`,appear:""},{default:Pe(()=>[ys(ve("div",{class:Bt(["modal-wrapper",[`modal-wrapper--${e.size}`,{"modal-wrapper--spread-navigation":e.spreadNavigation}]]),onMousedown:Vi(Y,["self"])},[Be(Js,{name:"fade-visibility",appear:""},{default:Pe(()=>[ys(Be(As,{"aria-label":ke(ft)("Previous"),class:"prev",variant:"tertiary-no-background",onClick:O},{icon:Pe(()=>[Be(Es,{directional:"",path:ke(Mh),size:40},null,8,["path"])]),_:1},8,["aria-label"]),[[tn,e.hasPrevious]])]),_:1}),ve("div",{id:"modal-description-"+ke(o),class:"modal-container"},[ve("div",aC,[ze(M.$slots,"default",{},void 0,!0)]),!e.noClose&&!e.closeButtonOutside?(X(),et(As,{key:0,"aria-label":ke(ft)("Close"),class:"modal-container__close",variant:"tertiary",onClick:I},{icon:Pe(()=>[Be(Es,{path:ke(Ql)},null,8,["path"])]),_:1},8,["aria-label"])):Ve("",!0)],8,oC),Be(Js,{name:"fade-visibility",appear:""},{default:Pe(()=>[ys(Be(As,{"aria-label":ke(ft)("Next"),class:"next",variant:"tertiary-no-background",onClick:A},{icon:Pe(()=>[Be(Es,{directional:"",path:ke($h),size:40},null,8,["path"])]),_:1},8,["aria-label"]),[[tn,e.hasNext]])]),_:1})],34),[[tn,u.value]])]),_:3},8,["name"])],16,tC),[[tn,u.value]])]),_:3})],8,["disabled","to"]))}}),C2=rt(rC,[["__scopeId","data-v-3c357e2d"]]),lC=["role"],dC={key:0,class:"notecard__heading"},mC={class:"notecard__text"},cC=tu({__name:"NcNoteCard",props:{heading:{default:void 0},showAlert:{type:Boolean},text:{default:void 0},type:{default:"warning"}},setup(e){const t=e,u=Ue(()=>t.showAlert||t.type==="error"),s=Ue(()=>{switch(t.type){case"error":return jh;case"success":return Ih;case"info":return Uh;default:return Lh}});return(n,i)=>(X(),me("div",{class:Bt(["notecard",{[`notecard--${e.type}`]:e.type,"notecard--legacy":ke(nr)}]),role:u.value?"alert":"note"},[ze(n.$slots,"icon",{},()=>[Be(ke(Es),{path:s.value,class:Bt(["notecard__icon",{"notecard__icon--heading":e.heading}]),inline:""},null,8,["path","class"])],!0),ve("div",null,[e.heading?(X(),me("p",dC,dt(e.heading),1)):Ve("",!0),ze(n.$slots,"default",{},()=>[ve("p",mC,dt(e.text),1)],!0)])],10,lC))}}),B2=rt(cC,[["__scopeId","data-v-6be9fa31"]]),j3=e3().detectLanguage();for(const e of[{language:"ar",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" لا يصلح كاسم مجلد.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" غير مسموح به كاسم مجلد']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" غير مسموح به داخل اسم مجلد.']},{msgid:"All files",msgstr:["كل الملفات"]},{msgid:"Choose",msgstr:["إختَر"]},{msgid:"Choose {file}",msgstr:["إختر {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["إختَر %n ملف","إختَر %n ملف","إختَر %n ملف","إختَر %n ملفات","إختَر %n ملف","إختر %n ملف"]},{msgid:"Copy",msgstr:["نسخ"]},{msgid:"Copy to {target}",msgstr:["نسخ إلى {target}"]},{msgid:"Could not create the new folder",msgstr:["تعذّر إنشاء المجلد الجديد"]},{msgid:"Could not load files settings",msgstr:["يتعذّر تحميل إعدادات الملفات"]},{msgid:"Could not load files views",msgstr:["تعذر تحميل عرض الملفات"]},{msgid:"Create directory",msgstr:["إنشاء مجلد"]},{msgid:"Current view selector",msgstr:["محدد العرض الحالي"]},{msgid:"Favorites",msgstr:["المفضلة"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["الملفات والمجلدات التي تحددها كمفضلة ستظهر هنا."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["الملفات و المجلدات التي قمت مؤخراً بتعديلها سوف تظهر هنا."]},{msgid:"Filter file list",msgstr:["تصفية قائمة الملفات"]},{msgid:"Folder name cannot be empty.",msgstr:["اسم المجلد لا يمكن أن يكون فارغاً."]},{msgid:"Home",msgstr:["البداية"]},{msgid:"Modified",msgstr:["التعديل"]},{msgid:"Move",msgstr:["نقل"]},{msgid:"Move to {target}",msgstr:["نقل إلى {target}"]},{msgid:"Name",msgstr:["الاسم"]},{msgid:"New",msgstr:["جديد"]},{msgid:"New folder",msgstr:["مجلد جديد"]},{msgid:"New folder name",msgstr:["اسم المجلد الجديد"]},{msgid:"No files in here",msgstr:["لا توجد ملفات هنا"]},{msgid:"No files matching your filter were found.",msgstr:["لا توجد ملفات تتطابق مع عامل التصفية الذي وضعته"]},{msgid:"No matching files",msgstr:["لا توجد ملفات مطابقة"]},{msgid:"Recent",msgstr:["الحالي"]},{msgid:"Select all entries",msgstr:["حدد جميع الإدخالات"]},{msgid:"Select entry",msgstr:["إختَر المدخل"]},{msgid:"Select the row for {nodename}",msgstr:["إختر سطر الـ {nodename}"]},{msgid:"Size",msgstr:["الحجم"]},{msgid:"Undo",msgstr:["تراجع"]},{msgid:"Upload some content or sync with your devices!",msgstr:["قم برفع بعض المحتوى أو المزامنة مع أجهزتك!"]}]},{language:"ast",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:["«{name}» ye un nome de carpeta inválidu."]},{msgid:'"{name}" is not an allowed folder name',msgstr:["«{name}» ye un nome de carpeta inválidu"]},{msgid:'"/" is not allowed inside a folder name.',msgstr:["Nun se permite'l caráuter «/» dientro'l nome de les carpetes."]},{msgid:"All files",msgstr:["Tolos ficheros"]},{msgid:"Choose",msgstr:["Escoyer"]},{msgid:"Choose {file}",msgstr:["Escoyer «{ficheru}»"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Escoyer %n ficheru","Escoyer %n ficheros"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar en: {target}"]},{msgid:"Could not create the new folder",msgstr:["Nun se pudo crear la carpeta"]},{msgid:"Could not load files settings",msgstr:["Nun se pudo cargar la configuración de los ficheros"]},{msgid:"Could not load files views",msgstr:["Nun se pudieron cargar les vistes de los ficheros"]},{msgid:"Create directory",msgstr:["Crear un direutoriu"]},{msgid:"Current view selector",msgstr:["Selector de la vista actual"]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Equí apaecen los ficheros y les carpetes que metas en Favoritos."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Equí apaecen los fichero y les carpetes que modificares apocayá."]},{msgid:"Filter file list",msgstr:["Peñerar la llista de ficheros"]},{msgid:"Folder name cannot be empty.",msgstr:["El nome de la carpeta nun pue tar baleru."]},{msgid:"Home",msgstr:["Aniciu"]},{msgid:"Modified",msgstr:["Modificóse"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover a {target}"]},{msgid:"Name",msgstr:["Nome"]},{msgid:"New",msgstr:["Nuevu"]},{msgid:"New folder",msgstr:["Carpeta nueva"]},{msgid:"New folder name",msgstr:["Nome de carpeta nuevu"]},{msgid:"No files in here",msgstr:["Equí nun hai nengún ficheru"]},{msgid:"No files matching your filter were found.",msgstr:["Nun s'atopó nengún ficheru que concasare cola peñera."]},{msgid:"No matching files",msgstr:["Nun hai nengún ficheru que concase"]},{msgid:"Recent",msgstr:["De recién"]},{msgid:"Select all entries",msgstr:["Seleicionar toles entraes"]},{msgid:"Select entry",msgstr:["Seleicionar la entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Seleicionar la filera de: {nodename}"]},{msgid:"Size",msgstr:["Tamañu"]},{msgid:"Undo",msgstr:["Desfacer"]},{msgid:"Upload some content or sync with your devices!",msgstr:["¡Xubi dalgún elementu o sincroniza colos tos preseos!"]}]},{language:"ca",translations:[{msgid:'"{char}" is not allowed inside a name.',msgstr:[`No és permès d'usar el caràcter "{char}" en un nom.`]},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" no és un nom permès.']},{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" no és vàlid com a nom de carpeta.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" no és vàlid com a nom de carpeta']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" és un mot reservat i no està permès com a nom.']},{msgid:'"/" is not allowed inside a folder name.',msgstr:[`"/" no està permès en el nom d'una carpeta.`]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n conflicte de fitxers","%n conflictes de fitxers"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n onflicte de fitxers a {dirname}","%n conflictes de fitxers a {dirname}"]},{msgid:"All files",msgstr:["Tots els fitxers"]},{msgid:"Cancel",msgstr:["Cancel·lar"]},{msgid:"Cancel the entire operation",msgstr:["Cancel·lar tota l'operació"]},{msgid:"Choose",msgstr:["Tria"]},{msgid:"Choose {file}",msgstr:["Tria {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Tria %n fitxer","Tria %n fitxers"]},{msgid:"Confirm",msgstr:["Confirma"]},{msgid:"Continue",msgstr:["Continuar"]},{msgid:"Copy",msgstr:["Copia"]},{msgid:"Copy to {target}",msgstr:["Copia a {target}"]},{msgid:"Could not create the new folder",msgstr:["No s'ha pogut crear la carpeta nova"]},{msgid:"Could not load files settings",msgstr:["No es poden carregar fitxers de configuració"]},{msgid:"Could not load files views",msgstr:["No es poden carregar fitxers de vistes"]},{msgid:"Create directory",msgstr:["Crea un directori"]},{msgid:"Current view selector",msgstr:["Selector de visualització actual"]},{msgid:"Enter your name",msgstr:["Escriviu el vostre nom"]},{msgid:"Existing version",msgstr:["Versió existent"]},{msgid:"Failed to set nickname.",msgstr:["No s'ha pogut desar el sobrenom."]},{msgid:"Favorites",msgstr:["Preferits"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Els fitxers i les carpetes que marqueu com a favorits es mostraran aquí."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Els fitxers i les carpetes recentment modificats es mostraran aquí."]},{msgid:"Filter file list",msgstr:["Filtrar llistat de fitxers"]},{msgid:"Folder name cannot be empty.",msgstr:["El nom de la carpeta no pot estar buit."]},{msgid:"Guest identification",msgstr:["Identificació com a convidat"]},{msgid:"Home",msgstr:["Inici"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Si seleccioneu les dues versions, el fitxer entrant tindrà un número afegit al seu nom."]},{msgid:"Invalid name.",msgstr:["Nom no vàlid."]},{msgid:"Last modified date unknown",msgstr:["Data de l'última modificació desconeguda"]},{msgid:"Modified",msgstr:["Data de modificació"]},{msgid:"Move",msgstr:["Desplaça"]},{msgid:"Move to {target}",msgstr:["Desplaça a {target}"]},{msgid:"Name",msgstr:["Nom"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Els noms poden tenir com a màxim 64 caràcters."]},{msgid:"Names must not be empty.",msgstr:["Els noms no poden ser buits."]},{msgid:'Names must not end with "{extension}".',msgstr:[`Els noms no poden acabar amb l'extensió "{extension}".`]},{msgid:"Names must not start with a dot.",msgstr:["Els noms no poden començar amb un punt."]},{msgid:"New",msgstr:["Crea"]},{msgid:"New folder",msgstr:["Carpeta nova"]},{msgid:"New folder name",msgstr:["Nom de la carpeta nova"]},{msgid:"New version",msgstr:["Nova versió"]},{msgid:"No files in here",msgstr:["No hi ha cap fitxer"]},{msgid:"No files matching your filter were found.",msgstr:["No s'ha trobat cap fitxer que coincideixi amb el filtre."]},{msgid:"No matching files",msgstr:["No hi ha cap fitxer que coincideixi"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Si us plau, escriu un nom amb 2 caràcters com a mínim."]},{msgid:"Recent",msgstr:["Recents"]},{msgid:"Select all checkboxes",msgstr:["Selecciona totes les caselles de selecció"]},{msgid:"Select all entries",msgstr:["Selecciona totes les entrades"]},{msgid:"Select all existing files",msgstr:["Selecciona tots els fitxers existents"]},{msgid:"Select all new files",msgstr:["Selecciona tots els fitxers nous"]},{msgid:"Select entry",msgstr:["Selecciona l'entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Selecciona la fila per a {nodename}"]},{msgid:"Size",msgstr:["Mida"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Omet %n fitxer","Omet %n fitxers"]},{msgid:"Skip this file",msgstr:["Omet aquest fitxer"]},{msgid:"Submit name",msgstr:["Entreu el nom"]},{msgid:"Undo",msgstr:["Desfés"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Pugeu contingut o sincronitzeu-lo amb els vostres dispositius!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Quan es selecciona una carpeta entrant, també se sobreescriuran els fitxers que hi entrin en conflicte."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Quan es selecciona una carpeta entrant, el contingut s'escriu a la carpeta existent i es realitza una resolució recursiva de conflictes."]},{msgid:"Which files do you want to keep?",msgstr:["Quins fitxers voleu conservar?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Actualment se us mostra com a {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Actualment no esteu identificat."]},{msgid:"You cannot leave the name empty.",msgstr:["No podeu deixar el nom buit."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Heu de triar com a mínim una solució de conflicte"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Heu de seleccionar com a mínim una versió de cada fitxer per continuar."]}]},{language:"cs_CZ",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["znak „{char}“ není možné použít uvnitř názvu složky."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["„{char}“ není možné použít uvnitř názvu."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["„{extension}“ není možné použít jako název."]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["„{segment}“ je vyhrazeným názvem a není možné ho používat pro názvy složek."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["„{segment}“ je vyhrazeným názvem a není možné ho použít."]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n kolize souboru","%n kolize souborů","%n kolizí souborů","%n kolize souborů"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n kolize souborů v {dirname}","%n kolize souborů v {dirname}","%n kolizí souborů v {dirname}","%n kolize souborů v {dirname}"]},{msgid:"All files",msgstr:["Veškeré soubory"]},{msgid:"Cancel",msgstr:["Storno"]},{msgid:"Cancel the entire operation",msgstr:["Zrušit celou operaci"]},{msgid:"Choose",msgstr:["Zvolit"]},{msgid:"Choose {file}",msgstr:["Zvolit {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Zvolte %n soubor","Zvolte %n soubory","Zvolte %n souborů","Zvolte %n soubory"]},{msgid:"Confirm",msgstr:["Potvrdit"]},{msgid:"Continue",msgstr:["Pokračovat"]},{msgid:"Copy",msgstr:["Zkopírovat"]},{msgid:"Copy to {target}",msgstr:["Zkopírovat do {target}"]},{msgid:"Could not create the new folder",msgstr:["Novou složku se nepodařilo vytvořit"]},{msgid:"Could not load files settings",msgstr:["Nepodařilo se načíst nastavení pro soubory"]},{msgid:"Could not load files views",msgstr:["Nepodařilo se načíst pohledy souborů"]},{msgid:"Create directory",msgstr:["Vytvořit složku"]},{msgid:"Current view selector",msgstr:["Výběr stávajícího zobrazení"]},{msgid:"Enter your name",msgstr:["Zadejte své jméno"]},{msgid:"Existing version",msgstr:["Existující verze"]},{msgid:"Failed to set nickname.",msgstr:["Nepodařilo se nastavit přezdívku."]},{msgid:"Favorites",msgstr:["Oblíbené"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Zde se zobrazí soubory a složky, které označíte jako oblíbené."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Zde se zobrazí soubory a složky, které jste nedávno pozměnili."]},{msgid:"Filter file list",msgstr:["Filtrovat seznam souborů"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["Názvy složek nemohou končit na „{extension}“."]},{msgid:"Guest identification",msgstr:["Identifikace hosta"]},{msgid:"Home",msgstr:["Domů"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Pokud vyberete obě verze, pak k názvu příchozího souboru bude přidáno číslo."]},{msgid:"Invalid folder name.",msgstr:["Neplatný název složky."]},{msgid:"Invalid name.",msgstr:["Neplatný název."]},{msgid:"Last modified date unknown",msgstr:["Datum poslední změny neznámé"]},{msgid:"Modified",msgstr:["Změněno"]},{msgid:"Move",msgstr:["Přesounout"]},{msgid:"Move to {target}",msgstr:["Přesunout do {target}"]},{msgid:"Name",msgstr:["Název"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Je třeba, aby délka jmen nepřesahovala 64 znaků."]},{msgid:"Names must not be empty.",msgstr:["Názvy je třeba vyplnit."]},{msgid:'Names must not end with "{extension}".',msgstr:["Názvy nemohou končit na „{extension}“."]},{msgid:"Names must not start with a dot.",msgstr:["Názvy nemohou začínat tečkou."]},{msgid:"New",msgstr:["Nové"]},{msgid:"New folder",msgstr:["Nová složka"]},{msgid:"New folder name",msgstr:["Název pro novou složku"]},{msgid:"New version",msgstr:["Nová verze"]},{msgid:"No files in here",msgstr:["Nejsou zde žádné soubory"]},{msgid:"No files matching your filter were found.",msgstr:["Nenalezeny žádné soubory odpovídající vašemu filtru"]},{msgid:"No matching files",msgstr:["Žádné odpovídající soubory"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Zadejte jméno dlouhé alespoň 2 znaky."]},{msgid:"Recent",msgstr:["Nedávné"]},{msgid:"Select all checkboxes",msgstr:["Vybrat všechny zaškrtávací kolonky"]},{msgid:"Select all entries",msgstr:["Vybrat všechny položky"]},{msgid:"Select all existing files",msgstr:["Vybrat všechny existující soubory"]},{msgid:"Select all new files",msgstr:["Vybrat všechny nové soubory"]},{msgid:"Select entry",msgstr:["Vybrat položku"]},{msgid:"Select the row for {nodename}",msgstr:["Vybrat řádek pro {nodename}"]},{msgid:"Size",msgstr:["Velikost"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Přeskočit %n soubor","Přeskočit %n soubory","Přeskočit %n souborů","Přeskočit %n soubory"]},{msgid:"Skip this file",msgstr:["Přeskočit tento soubor"]},{msgid:"Submit name",msgstr:["Odeslat jméno"]},{msgid:"Undo",msgstr:["Zpět"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Nahrajte sem nějaký obsah nebo proveďte synchronizaci se svými zařízeními!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Pokud je vybrána příchozí složka, budou v ní také přepsány jakékoli kolidující soubory."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Když je vybrána příchozí složka, jakékoli soubory v ní budou také přepsány."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Pokud je vybrána příchozí složka, je obsah zapsán do existující složky a je provedeno rekurzivní vyřešení kolizí."]},{msgid:"Which files do you want to keep?",msgstr:["Které soubory chcete ponechat?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["V tuto chvíli jste identifikováni jako {nickname}."]},{msgid:"You are currently not identified.",msgstr:["V tuto chvíli nejste identifikovaní."]},{msgid:"You cannot leave the name empty.",msgstr:["Jméno nelze ponechat nevyplněné."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Je třeba zvolit alespoň jedno z řešení kolize"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Aby bylo možné pokračovat, je třeba vybrat alespoň jednu verzi od každého souboru."]}]},{language:"da",translations:[{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" er ikke tilladt i et navn.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" er ikke tilladt i et navn.']},{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" er et ugyldigt mappenavn.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" er ikke et tilladt mappenavn']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" er et reserveret navn og er derfor ikke tilladt.']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" er ikke tilladt i et mappenavn.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n filkonflikt","%n filer konflikter"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n filkonflikt i {dirname}","%n filkonflikter i {dirname}"]},{msgid:"All files",msgstr:["Alle filer"]},{msgid:"Cancel",msgstr:["Fortryd"]},{msgid:"Cancel the entire operation",msgstr:["Annullér hele operationen"]},{msgid:"Choose",msgstr:["Vælg"]},{msgid:"Choose {file}",msgstr:["Vælg {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Vælg %n fil","Vælg %n filer"]},{msgid:"Confirm",msgstr:["Bekræft"]},{msgid:"Continue",msgstr:["Fortsæt"]},{msgid:"Copy",msgstr:["Kopier"]},{msgid:"Copy to {target}",msgstr:["Kopier til {target}"]},{msgid:"Could not create the new folder",msgstr:["Kunne ikke oprette den nye mappe"]},{msgid:"Could not load files settings",msgstr:["Filindstillingerne kunne ikke indlæses"]},{msgid:"Could not load files views",msgstr:["Kunne ikke indlæse filvisninger"]},{msgid:"Create directory",msgstr:["Opret mappe"]},{msgid:"Current view selector",msgstr:["Aktuel visningsvælger"]},{msgid:"Enter your name",msgstr:["Indtast dit navn"]},{msgid:"Existing version",msgstr:["Eksisterende version"]},{msgid:"Failed to set nickname.",msgstr:["Forsøg på at gemme kaldenavn mislykkedes."]},{msgid:"Favorites",msgstr:["Favoritter"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Filer og mapper, du markerer som foretrukne, vises her."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Filer og mapper, du for nylig har ændret, vises her."]},{msgid:"Filter file list",msgstr:["Filtrer fil liste"]},{msgid:"Folder name cannot be empty.",msgstr:["Mappenavnet må ikke være tomt."]},{msgid:"Guest identification",msgstr:["Gæsteidentifikation"]},{msgid:"Home",msgstr:["Hjem"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Hvis du vælger begge versioner, vil den indkommende fil have et nummer tilføjet til sit navn."]},{msgid:"Invalid name.",msgstr:["Ugyldigt navn."]},{msgid:"Last modified date unknown",msgstr:["Senest ændret dato ukendt"]},{msgid:"Modified",msgstr:["Ændret"]},{msgid:"Move",msgstr:["Flyt"]},{msgid:"Move to {target}",msgstr:["Flyt til {target}"]},{msgid:"Name",msgstr:["Navn"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Navne kan højst være 64 tegn lange."]},{msgid:"Names must not be empty.",msgstr:["Navne kan ikke være tomt."]},{msgid:'Names must not end with "{extension}".',msgstr:['Navne må ikke ende på "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Navne skal starte med et punktum."]},{msgid:"New",msgstr:["Ny"]},{msgid:"New folder",msgstr:["Ny mappe"]},{msgid:"New folder name",msgstr:["Ny mappe navn"]},{msgid:"New version",msgstr:["Ny version"]},{msgid:"No files in here",msgstr:["Ingen filer here"]},{msgid:"No files matching your filter were found.",msgstr:["Der blev ikke fundet nogen filer, der matcher dit filter."]},{msgid:"No matching files",msgstr:["Ingen matchende filer"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Indtast et navn med mindst 2 tegn."]},{msgid:"Recent",msgstr:["Seneste"]},{msgid:"Select all checkboxes",msgstr:["Markér alle afkrydsningsfelter"]},{msgid:"Select all entries",msgstr:["Vælg alle poster"]},{msgid:"Select all existing files",msgstr:["Vælg alle eksisterende filer"]},{msgid:"Select all new files",msgstr:["Vælg alle nye filer"]},{msgid:"Select entry",msgstr:["Vælg post"]},{msgid:"Select the row for {nodename}",msgstr:["Vælg rækken for {nodenavn}"]},{msgid:"Size",msgstr:["Størelse"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Spring %n fil over","Spring %n filer over"]},{msgid:"Skip this file",msgstr:["Spring denne fil over"]},{msgid:"Submit name",msgstr:["Indsend navn"]},{msgid:"Undo",msgstr:["Fortryd"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Upload noget indhold eller synkroniser med dine enheder!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Når en indkommende mappe er valgt, vil eventuelle modstridende filer i det også blive overskrevet."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Når en indkommende mappe er valgt, er indholdet skrevet ind i den eksisterende mappe og en rekursiv konfliktløsning udføres."]},{msgid:"Which files do you want to keep?",msgstr:["Hvilke filer vil du have?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Du er i øjeblikket identificeret som {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Du er ikke identificeret."]},{msgid:"You cannot leave the name empty.",msgstr:["Du kan ikke efterlade navnet tomt."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Du skal vælge mindst én konfliktløsning"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du skal vælge mindst én version af hver fil for at fortsætte."]}]},{language:"de",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" ist innerhalb eines Ordnernamens nicht zulässig.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" ist innerhalb eines Namens nicht zulässig.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" ist kein zulässiger Name.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" ist ein reservierter Name und nicht zulässig für Ordnernamen.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" ist ein reservierter Name und nicht zulässig.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n Dateikonflikt","%n Dateikonflikte"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n Dateikonflikt in {dirname}","%n Dateikonflikte in {dirname}"]},{msgid:"All files",msgstr:["Alle Dateien"]},{msgid:"Cancel",msgstr:["Abbrechen"]},{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},{msgid:"Choose",msgstr:["Auswählen"]},{msgid:"Choose {file}",msgstr:["{file} auswählen"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["%n Datei auswählen","%n Dateien auswählen"]},{msgid:"Confirm",msgstr:["Bestätigen"]},{msgid:"Continue",msgstr:["Fortsetzen"]},{msgid:"Copy",msgstr:["Kopieren"]},{msgid:"Copy to {target}",msgstr:["Nach {target} kopieren"]},{msgid:"Could not create the new folder",msgstr:["Der neue Ordner konnte nicht erstellt werden"]},{msgid:"Could not load files settings",msgstr:["Dateieinstellungen konnten nicht geladen werden"]},{msgid:"Could not load files views",msgstr:["Dateiansichten konnten nicht geladen werden"]},{msgid:"Create directory",msgstr:["Verzeichnis erstellen"]},{msgid:"Current view selector",msgstr:["Aktuelle Ansichtsauswahl"]},{msgid:"Enter your name",msgstr:["Gib deinen Namen ein"]},{msgid:"Existing version",msgstr:["Vorhandene Version"]},{msgid:"Failed to set nickname.",msgstr:["Spitzname konnte nicht gespeichert werden."]},{msgid:"Favorites",msgstr:["Favoriten"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Dateien und Ordner, die du als Favorit markierst, werden hier angezeigt."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Dateien und Ordner, die du kürzlich geändert hast, werden hier angezeigt."]},{msgid:"Filter file list",msgstr:["Dateiliste filtern"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Ordnernamen dürfen nicht mit "{extension}" enden.']},{msgid:"Guest identification",msgstr:["Gast-Identifikation"]},{msgid:"Home",msgstr:["Home"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Wenn beide Versionen ausgewählt werden, wird dem Namen der eingehenden Datei eine Nummer hinzugefügt."]},{msgid:"Invalid folder name.",msgstr:["Ungültiger Ordnername."]},{msgid:"Invalid name.",msgstr:["Ungültiger Name."]},{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},{msgid:"Modified",msgstr:["Geändert"]},{msgid:"Move",msgstr:["Verschieben"]},{msgid:"Move to {target}",msgstr:["Nach {target} verschieben"]},{msgid:"Name",msgstr:["Name"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Namen dürfen maximal 64 Zeichen lang sein."]},{msgid:"Names must not be empty.",msgstr:["Namen dürfen nicht leer sein."]},{msgid:'Names must not end with "{extension}".',msgstr:['Namen dürfen nicht mit "{extension}" enden.']},{msgid:"Names must not start with a dot.",msgstr:["Namen dürfen nicht mit einem Punkt beginnen."]},{msgid:"New",msgstr:["Neu"]},{msgid:"New folder",msgstr:["Neuer Ordner"]},{msgid:"New folder name",msgstr:["Neuer Ordnername"]},{msgid:"New version",msgstr:["Neue Version"]},{msgid:"No files in here",msgstr:["Hier sind keine Dateien"]},{msgid:"No files matching your filter were found.",msgstr:["Es wurden keine Dateien gefunden, die deinem Filter entsprechen."]},{msgid:"No matching files",msgstr:["Keine passenden Dateien"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Bitte einen Namen mit mindestens zwei Zeichen eingeben."]},{msgid:"Recent",msgstr:["Neueste"]},{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},{msgid:"Select all entries",msgstr:["Alle Einträge auswählen"]},{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},{msgid:"Select entry",msgstr:["Eintrag auswählen"]},{msgid:"Select the row for {nodename}",msgstr:["Die Zeile für {nodename} auswählen."]},{msgid:"Size",msgstr:["Größe"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["%n Datei überspringen","%n Dateien überspringen"]},{msgid:"Skip this file",msgstr:["Diese Datei überspringen"]},{msgid:"Submit name",msgstr:["Namen senden"]},{msgid:"Undo",msgstr:["Rückgängig machen"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Lade Inhalte hoch oder synchronisiere diese mit deinen Geräten!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden auch alle darin enthaltenen Dateien mit Konflikten überschrieben."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden auch alle darin enthaltenen Dateien überschrieben."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Bei Auswahl eines eingehenden Ordners wird der Inhalt in den vorhandenen Ordner geschrieben und eine rekursive Konfliktlösung durchgeführt."]},{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien sollen behalten werden?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Du bist derzeit als {nickname} identifiziert."]},{msgid:"You are currently not identified.",msgstr:["Du bist momentan nicht identifiziert."]},{msgid:"You cannot leave the name empty.",msgstr:["Du kannst den Namen nicht leer lassen."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Es muss mindestens eine Konfliktlösung gewählt werden"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Es muss mindestens eine Version jeder Datei ausgewählt werden, um fortzufahren."]}]},{language:"de_DE",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" ist innerhalb eines Ordnernamens nicht zulässig.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" ist innerhalb eines Namens nicht zulässig.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" ist kein zulässiger Name.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" ist ein reservierter Name und nicht zulässig für Ordnernamen.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" ist ein reservierter Name und nicht zulässig.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n Dateikonflikt","%n Dateikonflikte"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n Dateikonflikt in {dirname}","%n Dateikonflikte in {dirname}"]},{msgid:"All files",msgstr:["Alle Dateien"]},{msgid:"Cancel",msgstr:["Abbrechen"]},{msgid:"Cancel the entire operation",msgstr:["Den gesamten Vorgang abbrechen"]},{msgid:"Choose",msgstr:["Auswählen"]},{msgid:"Choose {file}",msgstr:["{file} auswählen"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["%n Datei auswählen","%n Dateien auswählen"]},{msgid:"Confirm",msgstr:["Bestätigen"]},{msgid:"Continue",msgstr:["Fortsetzen"]},{msgid:"Copy",msgstr:["Kopieren"]},{msgid:"Copy to {target}",msgstr:["Nach {target} kopieren"]},{msgid:"Could not create the new folder",msgstr:["Der neue Ordner konnte nicht erstellt werden"]},{msgid:"Could not load files settings",msgstr:["Dateieinstellungen konnten nicht geladen werden"]},{msgid:"Could not load files views",msgstr:["Dateiansichten konnten nicht geladen werden"]},{msgid:"Create directory",msgstr:["Verzeichnis erstellen"]},{msgid:"Current view selector",msgstr:["Aktuelle Ansichtsauswahl"]},{msgid:"Enter your name",msgstr:["Geben Sie Ihren Namen ein"]},{msgid:"Existing version",msgstr:["Vorhandene Version"]},{msgid:"Failed to set nickname.",msgstr:["Spitzname konnte nicht gespeichert werden."]},{msgid:"Favorites",msgstr:["Favoriten"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Dateien und Ordner, die Sie als Favorit markieren, werden hier angezeigt."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Dateien und Ordner, die Sie kürzlich geändert haben, werden hier angezeigt."]},{msgid:"Filter file list",msgstr:["Dateiliste filtern"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Ordnernamen dürfen nicht mit "{extension}" enden.']},{msgid:"Guest identification",msgstr:["Gast-Identifikation"]},{msgid:"Home",msgstr:["Home"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Wenn beide Versionen ausgewählt werden, wird dem Namen der eingehenden Datei eine Nummer hinzugefügt."]},{msgid:"Invalid folder name.",msgstr:["Ungültiger Ordnername."]},{msgid:"Invalid name.",msgstr:["Ungültiger Name."]},{msgid:"Last modified date unknown",msgstr:["Datum der letzten Änderung unbekannt"]},{msgid:"Modified",msgstr:["Geändert"]},{msgid:"Move",msgstr:["Verschieben"]},{msgid:"Move to {target}",msgstr:["Nach {target} verschieben"]},{msgid:"Name",msgstr:["Name"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Namen dürfen maximal 64 Zeichen lang sein."]},{msgid:"Names must not be empty.",msgstr:["Namen dürfen nicht leer sein."]},{msgid:'Names must not end with "{extension}".',msgstr:['Namen dürfen nicht mit "{extension}" enden.']},{msgid:"Names must not start with a dot.",msgstr:["Namen dürfen nicht mit einem Punkt beginnen."]},{msgid:"New",msgstr:["Neu"]},{msgid:"New folder",msgstr:["Neuer Ordner"]},{msgid:"New folder name",msgstr:["Neuer Ordnername"]},{msgid:"New version",msgstr:["Neue Version"]},{msgid:"No files in here",msgstr:["Hier sind keine Dateien"]},{msgid:"No files matching your filter were found.",msgstr:["Es wurden keine Dateien gefunden, die Ihrem Filter entsprechen."]},{msgid:"No matching files",msgstr:["Keine passenden Dateien"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Bitte einen Namen mit mindestens zwei Zeichen eingeben."]},{msgid:"Recent",msgstr:["Neueste"]},{msgid:"Select all checkboxes",msgstr:["Alle Kontrollkästchen aktivieren"]},{msgid:"Select all entries",msgstr:["Alle Einträge auswählen"]},{msgid:"Select all existing files",msgstr:["Alle vorhandenen Dateien auswählen"]},{msgid:"Select all new files",msgstr:["Alle neuen Dateien auswählen"]},{msgid:"Select entry",msgstr:["Eintrag auswählen"]},{msgid:"Select the row for {nodename}",msgstr:["Die Zeile für {nodename} auswählen."]},{msgid:"Size",msgstr:["Größe"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["%n Datei überspringen","%n Dateien überspringen"]},{msgid:"Skip this file",msgstr:["Diese Datei überspringen"]},{msgid:"Submit name",msgstr:["Namen senden"]},{msgid:"Undo",msgstr:["Rückgängig machen"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Laden Sie Inhalte hoch oder synchronisieren Sie diese mit Ihren Geräten!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden auch alle darin enthaltenen Dateien mit Konflikten überschrieben."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Wenn ein eingehender Ordner ausgewählt wird, werden auch alle darin enthaltenen Dateien überschrieben."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Bei Auswahl eines eingehenden Ordners wird der Inhalt in den vorhandenen Ordner geschrieben und eine rekursive Konfliktlösung durchgeführt."]},{msgid:"Which files do you want to keep?",msgstr:["Welche Dateien sollen behalten werden?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Sie sind derzeit als {nickname} identifiziert."]},{msgid:"You are currently not identified.",msgstr:["Sie sind momentan nicht identifiziert."]},{msgid:"You cannot leave the name empty.",msgstr:["Sie können den Namen nicht leer lassen."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Es muss mindestens eine Konfliktlösung gewählt werden"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Es muss mindestens eine Version jeder Datei ausgewählt werden, um fortzufahren."]}]},{language:"el",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["Το «{char}» δεν επιτρέπεται μέσα σε όνομα φακέλου."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" δεν επιτρέπεται μέσα σε ένα όνομα.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" δεν είναι επιτρεπτό όνομα.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["Το «{segment}» είναι ένα δεσμευμένο όνομα και δεν επιτρέπεται για ονόματα φακέλων."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" είναι ένα δεσμευμένο όνομα και δεν επιτρέπεται.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n σύγκρουση αρχείου","%n σύγκρουση αρχείων"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n σύγκρουση αρχείου στο {dirname}","%n σύγκρουση αρχείων στο {dirname}"]},{msgid:"All files",msgstr:["Όλα τα αρχεία"]},{msgid:"Cancel",msgstr:["Ακύρωση"]},{msgid:"Cancel the entire operation",msgstr:["Ακύρωση όλης της διαδικασίας"]},{msgid:"Choose",msgstr:["Επιλογή"]},{msgid:"Choose {file}",msgstr:["Επιλέξτε {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Επιλέξτε %n αρχείο","Επιλέξτε %n αρχεία"]},{msgid:"Confirm",msgstr:["Επιβεβαίωση"]},{msgid:"Continue",msgstr:["Συνέχεια"]},{msgid:"Copy",msgstr:["Αντιγραφή"]},{msgid:"Copy to {target}",msgstr:["Αντιγραφή στο {target}"]},{msgid:"Could not create the new folder",msgstr:["Αδυναμία δημιουργίας νέου φακέλου"]},{msgid:"Could not load files settings",msgstr:["Αδυναμία φόρτωσης ρυθμίσεων αρχείων"]},{msgid:"Could not load files views",msgstr:["Αδυναμία φόρτωσης προβολών αρχείων"]},{msgid:"Create directory",msgstr:["Δημιουργία καταλόγου"]},{msgid:"Current view selector",msgstr:["Επιλογέας τρέχουσας προβολής"]},{msgid:"Enter your name",msgstr:["Εισάγετε το όνομά σας"]},{msgid:"Existing version",msgstr:["Υφιστάμενη έκδοση"]},{msgid:"Failed to set nickname.",msgstr:["Αποτυχία στην ρύθμιση του ψευδώνυμου."]},{msgid:"Favorites",msgstr:["Αγαπημένα"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Τα αρχεία και οι φάκελοι που επισημάνετε ως αγαπημένα θα εμφανίζονται εδώ."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Τα αρχεία και οι φάκελοι που τροποποιήσατε πρόσφατα θα εμφανίζονται εδώ."]},{msgid:"Filter file list",msgstr:["Φιλτράρισμα λίστας αρχείων"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["Τα ονόματα των φακέλων δεν πρέπει να τελειώνουν με «{extension}»."]},{msgid:"Guest identification",msgstr:["Ταυτοποίηση επισκέπτη"]},{msgid:"Home",msgstr:["Αρχική"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Εάν επιλέξετε και τις δύο εκδόσεις, στο όνομα του εισερχόμενου αρχείου θα προστεθεί ένας αριθμός."]},{msgid:"Invalid folder name.",msgstr:["Μη έγκυρο όνομα φακέλου."]},{msgid:"Invalid name.",msgstr:["Μη έγκυρο όνομα."]},{msgid:"Last modified date unknown",msgstr:["Άγνωστη ημερομηνία τελευταίας τροποποίησης"]},{msgid:"Modified",msgstr:["Τροποποιήθηκε"]},{msgid:"Move",msgstr:["Μετακίνηση"]},{msgid:"Move to {target}",msgstr:["Μετακίνηση στο {target}"]},{msgid:"Name",msgstr:["Όνομα"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Τα ονόματα μπορούν να έχουν μέγιστο μήκος 64 χαρακτήρες."]},{msgid:"Names must not be empty.",msgstr:["Τα ονόματα δεν πρέπει να είναι κενά."]},{msgid:'Names must not end with "{extension}".',msgstr:['Τα ονόματα δεν πρέπει να τελειώνουν με "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Τα ονόματα δεν πρέπει να ξεκινούν με τελεία."]},{msgid:"New",msgstr:["Νέο"]},{msgid:"New folder",msgstr:["Νέος φάκελος"]},{msgid:"New folder name",msgstr:["Όνομα νέου φακέλου"]},{msgid:"New version",msgstr:["Νέα έκδοση"]},{msgid:"No files in here",msgstr:["Δεν υπάρχουν αρχεία εδώ"]},{msgid:"No files matching your filter were found.",msgstr:["Δεν βρέθηκαν αρχεία που να ταιριάζουν με το φίλτρο σας."]},{msgid:"No matching files",msgstr:["Κανένα αρχείο δεν ταιριάζει"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Παρακαλώ εισάγετε ένα όνομα με τουλάχιστον 2 χαρακτήρες."]},{msgid:"Recent",msgstr:["Πρόσφατα"]},{msgid:"Select all checkboxes",msgstr:["Επιλέξτε όλα τα πλαίσια ελέγχου"]},{msgid:"Select all entries",msgstr:["Επιλογή όλων των καταχωρήσεων"]},{msgid:"Select all existing files",msgstr:["Επιλογή όλων των υπάρχοντων αρχείων"]},{msgid:"Select all new files",msgstr:["Επιλογή όλων των νέων αρχείων"]},{msgid:"Select entry",msgstr:["Επιλογή εγγραφής"]},{msgid:"Select the row for {nodename}",msgstr:["Επιλέξτε τη γραμμή για το {nodename}"]},{msgid:"Size",msgstr:["Μέγεθος"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Παράλειψη ενός αρχείου","Παράλειψη %n αρχείων"]},{msgid:"Skip this file",msgstr:["Παράλειψη αυτού το αρχείου"]},{msgid:"Submit name",msgstr:["Υποβολή ονόματος"]},{msgid:"Undo",msgstr:["Αναίρεση"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Ανεβάστε κάποιο περιεχόμενο ή συγχρονίστε με τις συσκευές σας!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Όταν επιλέγεται ένας φάκελος εισερχομένων, όλα τα αρχεία που βρίσκονται σε σύγκρουση μέσα σε αυτόν θα αντικατασταθούν επίσης."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Όταν επιλέγεται ένας φάκελος εισερχομένων, το περιεχόμενο εγγράφεται στον υπάρχοντα φάκελο και εκτελείται μια αναδρομική επίλυση σύγκρουσης."]},{msgid:"Which files do you want to keep?",msgstr:["Ποια αρχεία θέλετε να διατηρήσετε;"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Αυτή τη στιγμή έχετε αναγνωριστεί ως {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Δεν έχετε ταυτοποιηθεί."]},{msgid:"You cannot leave the name empty.",msgstr:["Δεν μπορείτε να αφήσετε το όνομα κενό."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Πρέπει να επιλέξετε τουλάχιστον μία λύση σύγκρουσης"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Πρέπει να επιλέξετε τουλάχιστον μία έκδοση από κάθε αρχείο για να συνεχίσετε."]}]},{language:"en_GB",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" is not allowed inside a folder name.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" is not allowed inside a name.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" is not an allowed name.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" is a reserved name and cannot be used for folder names.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" is a reserved name and not allowed.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n file conflict","%n files conflict"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n file conflict in {dirname}","%n file conflicts in {dirname}"]},{msgid:"All files",msgstr:["All files"]},{msgid:"Cancel",msgstr:["Cancel"]},{msgid:"Cancel the entire operation",msgstr:["Cancel the entire operation"]},{msgid:"Choose",msgstr:["Choose"]},{msgid:"Choose {file}",msgstr:["Choose {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Choose %n file","Choose %n files"]},{msgid:"Confirm",msgstr:["Confirm"]},{msgid:"Continue",msgstr:["Continue"]},{msgid:"Copy",msgstr:["Copy"]},{msgid:"Copy to {target}",msgstr:["Copy to {target}"]},{msgid:"Could not create the new folder",msgstr:["Could not create the new folder"]},{msgid:"Could not load files settings",msgstr:["Could not load files settings"]},{msgid:"Could not load files views",msgstr:["Could not load files views"]},{msgid:"Create directory",msgstr:["Create directory"]},{msgid:"Current view selector",msgstr:["Current view selector"]},{msgid:"Enter your name",msgstr:["Enter your name"]},{msgid:"Existing version",msgstr:["Existing version"]},{msgid:"Failed to set nickname.",msgstr:["Failed to set nickname."]},{msgid:"Favorites",msgstr:["Favourites"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Files and folders you mark as favourite will show up here."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Files and folders you recently modified will show up here."]},{msgid:"Filter file list",msgstr:["Filter file list"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Folder names must not end with "{extension}".']},{msgid:"Guest identification",msgstr:["Guest identification"]},{msgid:"Home",msgstr:["Home"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["If you select both versions, the incoming file will have a number added to its name."]},{msgid:"Invalid folder name.",msgstr:["Invalid folder name."]},{msgid:"Invalid name.",msgstr:["Invalid name."]},{msgid:"Last modified date unknown",msgstr:["Last modified date unknown"]},{msgid:"Modified",msgstr:["Modified"]},{msgid:"Move",msgstr:["Move"]},{msgid:"Move to {target}",msgstr:["Move to {target}"]},{msgid:"Name",msgstr:["Name"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Names may be at most 64 characters long."]},{msgid:"Names must not be empty.",msgstr:["Names must not be empty."]},{msgid:'Names must not end with "{extension}".',msgstr:['Names must not end with "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Names must not start with a dot."]},{msgid:"New",msgstr:["New"]},{msgid:"New folder",msgstr:["New folder"]},{msgid:"New folder name",msgstr:["New folder name"]},{msgid:"New version",msgstr:["New version"]},{msgid:"No files in here",msgstr:["No files in here"]},{msgid:"No files matching your filter were found.",msgstr:["No files matching your filter were found."]},{msgid:"No matching files",msgstr:["No matching files"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Please enter a name with at least 2 characters."]},{msgid:"Recent",msgstr:["Recent"]},{msgid:"Select all checkboxes",msgstr:["Select all checkboxes"]},{msgid:"Select all entries",msgstr:["Select all entries"]},{msgid:"Select all existing files",msgstr:["Select all existing files"]},{msgid:"Select all new files",msgstr:["Select all new files"]},{msgid:"Select entry",msgstr:["Select entry"]},{msgid:"Select the row for {nodename}",msgstr:["Select the row for {nodename}"]},{msgid:"Size",msgstr:["Size"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Skip %n file","Skip %n files"]},{msgid:"Skip this file",msgstr:["Skip this file"]},{msgid:"Submit name",msgstr:["Submit name"]},{msgid:"Undo",msgstr:["Undo"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Upload some content or sync with your devices!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["When an incoming folder is selected, any conflicting files within it will also be overwritten."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["When an incoming folder is selected, any files within it will also be overwritten."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed."]},{msgid:"Which files do you want to keep?",msgstr:["Which files do you want to keep?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["You are currently identified as {nickname}."]},{msgid:"You are currently not identified.",msgstr:["You are currently not identified."]},{msgid:"You cannot leave the name empty.",msgstr:["You cannot leave the name empty."]},{msgid:"You need to choose at least one conflict solution",msgstr:["You need to choose at least one conflict solution"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["You need to select at least one version of each file to continue."]}]},{language:"es",translations:[{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" no está permitido dentro de un nombre.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" no es un nombre permitido.']},{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" es un nombre de carpeta no válido.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" no es un nombre de carpeta permitido']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" es un nombre reservado y no está permitido.']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" no está permitido dentro del nombre de una carpeta.']},{msgid:"All files",msgstr:["Todos los archivos"]},{msgid:"Cancel",msgstr:["Cancelar"]},{msgid:"Choose",msgstr:["Seleccionar"]},{msgid:"Choose {file}",msgstr:["Seleccionar {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Elige %n archivo","Elige %n archivos","Seleccione %n archivos"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar a {target}"]},{msgid:"Could not create the new folder",msgstr:["No se pudo crear la nueva carpeta"]},{msgid:"Could not load files settings",msgstr:["No se pudieron cargar los ajustes de archivos"]},{msgid:"Could not load files views",msgstr:["No se pudieron cargar las vistas de los archivos"]},{msgid:"Create directory",msgstr:["Crear directorio"]},{msgid:"Current view selector",msgstr:["Selector de vista actual"]},{msgid:"Enter your name",msgstr:["Ingrese su nombre"]},{msgid:"Failed to set nickname.",msgstr:["Fallo al establecer apodo."]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Los archivos y carpetas que marque como favoritos aparecerán aquí."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Los archivos y carpetas que modificó recientemente aparecerán aquí."]},{msgid:"Filter file list",msgstr:["Filtrar lista de archivos"]},{msgid:"Folder name cannot be empty.",msgstr:["El nombre de la carpeta no puede estar vacío."]},{msgid:"Guest identification",msgstr:["Identificación de invitado"]},{msgid:"Home",msgstr:["Inicio"]},{msgid:"Invalid name.",msgstr:["Nombre inválido."]},{msgid:"Modified",msgstr:["Modificado"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover a {target}"]},{msgid:"Name",msgstr:["Nombre"]},{msgid:"Names must not be empty.",msgstr:["Los nombres no deben estar vacíos."]},{msgid:'Names must not end with "{extension}".',msgstr:['Los nombres no deben terminar con "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Los nombres no deben iniciar con un punto."]},{msgid:"New",msgstr:["Nuevo"]},{msgid:"New folder",msgstr:[" Nueva carpeta"]},{msgid:"New folder name",msgstr:["Nuevo nombre de carpeta"]},{msgid:"No files in here",msgstr:["No hay archivos aquí"]},{msgid:"No files matching your filter were found.",msgstr:["No se encontraron archivos que coincidiesen con su filtro."]},{msgid:"No matching files",msgstr:["No hay archivos coincidentes"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Por favor, ingrese un nombre con al menos 2 caracteres."]},{msgid:"Recent",msgstr:["Reciente"]},{msgid:"Select all entries",msgstr:["Seleccionar todas las entradas"]},{msgid:"Select entry",msgstr:["Seleccionar entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Seleccione la fila para {nodename}"]},{msgid:"Size",msgstr:["Tamaño"]},{msgid:"Submit name",msgstr:["Enviar nombre"]},{msgid:"Undo",msgstr:["Deshacer"]},{msgid:"Upload some content or sync with your devices!",msgstr:["¡Cargue algún contenido o sincronice con sus dispositivos!"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Ud. se encuentra identificado actualmente como {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Ud. no se encuentra identificado actualmente."]},{msgid:"You cannot leave the name empty.",msgstr:["No puede dejar el nombre vacío."]}]},{language:"es_AR",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" es un nombre de carpeta inválido.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" no es un nombre de carpeta permitido']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" no está permitido en el nombre de una carpeta.']},{msgid:"All files",msgstr:["Todos los archivos"]},{msgid:"Choose",msgstr:["Elegir"]},{msgid:"Choose {file}",msgstr:["Elija {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Elija %n archivo","Elija %n archivos","Elija %n archivos"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar a {target}"]},{msgid:"Could not create the new folder",msgstr:["No se pudo crear la nueva carpeta"]},{msgid:"Could not load files settings",msgstr:["No se pudo cargar la configuración de archivos"]},{msgid:"Could not load files views",msgstr:["No se pudieron cargar las vistas de los archivos"]},{msgid:"Create directory",msgstr:["Crear directorio"]},{msgid:"Current view selector",msgstr:["Selector de vista actual"]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Los archivos y carpetas que marque como favoritos aparecerán aquí."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Los archivos y carpetas que modificó recientemente aparecerán aquí."]},{msgid:"Filter file list",msgstr:["Filtrar lista de archivos"]},{msgid:"Folder name cannot be empty.",msgstr:["El nombre de la carpeta no puede estar vacío."]},{msgid:"Home",msgstr:["Inicio"]},{msgid:"Modified",msgstr:["Modificado"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover a {target}"]},{msgid:"Name",msgstr:["Nombre"]},{msgid:"New",msgstr:["Nuevo"]},{msgid:"New folder",msgstr:["Nueva carpeta"]},{msgid:"New folder name",msgstr:["Nombre de nueva carpeta"]},{msgid:"No files in here",msgstr:["No hay archivos aquí"]},{msgid:"No files matching your filter were found.",msgstr:["No se encontraron archivos que coincidan con su filtro."]},{msgid:"No matching files",msgstr:["No hay archivos coincidentes"]},{msgid:"Recent",msgstr:["Reciente"]},{msgid:"Select all entries",msgstr:["Seleccionar todas las entradas"]},{msgid:"Select entry",msgstr:["Seleccionar entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Seleccione la fila para {nodename}"]},{msgid:"Size",msgstr:["Tamaño"]},{msgid:"Undo",msgstr:["Deshacer"]},{msgid:"Upload some content or sync with your devices!",msgstr:["¡Cargue algún contenido o sincronice con sus dispositivos!"]}]},{language:"es_MX",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" no está permitido dentro de un nombre de carpeta']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" no está permitido dentro de un nombre']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" no es un nombre permitido']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" es un nombre reservado y no está permitido para nombres de carpetas']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" es un nombre reservado y no está permitido']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n conflicto de archivo","%n conflicto de archivos","%n conflicto de archivos"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n conflicto de archivo en {dirname}","%n conflictos de archivo en {dirname}","%n conflictos de archivo en {dirname}"]},{msgid:"All files",msgstr:["Todos los archivos"]},{msgid:"Cancel",msgstr:["Cancelar"]},{msgid:"Cancel the entire operation",msgstr:["Cancelar la operación completa"]},{msgid:"Choose",msgstr:["Seleccionar"]},{msgid:"Choose {file}",msgstr:["Seleccionar {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Seleccionar %n archivo","Seleccionar %n archivos","Seleccionar %n archivos"]},{msgid:"Confirm",msgstr:["Confirmar"]},{msgid:"Continue",msgstr:["Continuar"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar a {target}"]},{msgid:"Could not create the new folder",msgstr:["No se pudo crear la nueva carpeta"]},{msgid:"Could not load files settings",msgstr:["No se pudo cargar la configuración de archivos"]},{msgid:"Could not load files views",msgstr:["No se pudieron cargar las vistas de los archivos"]},{msgid:"Create directory",msgstr:["Crear carpeta"]},{msgid:"Current view selector",msgstr:["Selector de vista actual"]},{msgid:"Enter your name",msgstr:["Ingresa tu nombre"]},{msgid:"Existing version",msgstr:["Versión existente"]},{msgid:"Failed to set nickname.",msgstr:["No se pudo establecer el nickname"]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Los archivos y carpetas que marque como favoritos aparecerán aquí."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Los archivos y carpetas que modificó recientemente aparecerán aquí."]},{msgid:"Filter file list",msgstr:["Filtrar lista de archivos"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Los nombres para carpeta no deben terminar con "{extension}"']},{msgid:"Guest identification",msgstr:["Identificación de invitado"]},{msgid:"Home",msgstr:["Inicio"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Si seleccionas ambas versiones, se le agregará al archivo que se está descargando, un número a su nombre."]},{msgid:"Invalid folder name.",msgstr:["Nombre de carpeta no válido"]},{msgid:"Invalid name.",msgstr:["Nombre no válido"]},{msgid:"Last modified date unknown",msgstr:["Última fecha de modificación desconocida"]},{msgid:"Modified",msgstr:["Modificado"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover a {target}"]},{msgid:"Name",msgstr:["Nombre"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Los nombres pueden tener como máximo 64 caracteres."]},{msgid:"Names must not be empty.",msgstr:["Los nombres no deben estar vacíos."]},{msgid:'Names must not end with "{extension}".',msgstr:['Los nombres no deben terminar con "{extension}"']},{msgid:"Names must not start with a dot.",msgstr:["Los nombres no deben comenzar con un punto."]},{msgid:"New",msgstr:["Nuevo"]},{msgid:"New folder",msgstr:["Nueva carpeta"]},{msgid:"New folder name",msgstr:["Nombre de nueva carpeta"]},{msgid:"New version",msgstr:["Versión nueva"]},{msgid:"No files in here",msgstr:["No hay archivos aquí"]},{msgid:"No files matching your filter were found.",msgstr:["No se encontraron archivos que coincidan con su filtro."]},{msgid:"No matching files",msgstr:["No hay archivos coincidentes"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Por favor ingrese un nombre con al menos 2 caracteres."]},{msgid:"Recent",msgstr:["Reciente"]},{msgid:"Select all checkboxes",msgstr:["Seleccione todas las casillas de verificación"]},{msgid:"Select all entries",msgstr:["Seleccionar todas las entradas"]},{msgid:"Select all existing files",msgstr:["Seleccione todos los archivos que aparecen"]},{msgid:"Select all new files",msgstr:["Seleccione todos los archivos nuevos"]},{msgid:"Select entry",msgstr:["Seleccionar entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Seleccione la fila para {nodename}"]},{msgid:"Size",msgstr:["Tamaño"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Omitir %n archivo","Omitir %n archivos","Omitir %n archivos"]},{msgid:"Skip this file",msgstr:["Omitir este archivo"]},{msgid:"Submit name",msgstr:["Enviar nombre"]},{msgid:"Undo",msgstr:["Deshacer"]},{msgid:"Upload some content or sync with your devices!",msgstr:["¡Suba algún contenido o sincronice con sus dispositivos!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Cuando se selecciona una carpeta en descarga, cualquier archivo conflictivo que contenga también se sobrescribirá."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Cuando se selecciona una carpeta en descarga, el contenido se escribe en la carpeta existente y se realiza una resolución de conflicto recursiva."]},{msgid:"Which files do you want to keep?",msgstr:["¿Qué archivos deseas conservar?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Actualmente estás identificado como {nickname}"]},{msgid:"You are currently not identified.",msgstr:["No estás identificado actualmente."]},{msgid:"You cannot leave the name empty.",msgstr:["No puedes dejar el nombre vacío."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Necesitas elegir al menos una solución al conflicto."]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Necesitas seleccionar al menos una versión de cada archivo para continuar."]}]},{language:"et_EE",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["„{char}“ pole kausta nimes lubatud."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["„{char}“ pole nimes lubatud."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["„{extension}“ pole lubatud nimi."]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["„{segment}“ on reserveeritud nimi ja pole kausta nimes lubatud."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["„{segment}“ on reserveeritud nimi ja pole kasutamiseks lubatud."]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n fail on vastuolus","%n faili on omavahel vastuolus"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n fail on {dirname} kaustas vastuolus","%n faili on omavahel {dirname} kaustas vastuolus"]},{msgid:"All files",msgstr:["Kõik failid"]},{msgid:"Cancel",msgstr:["Katkesta"]},{msgid:"Cancel the entire operation",msgstr:["Katkesta kogu tegevus"]},{msgid:"Choose",msgstr:["Tee valik"]},{msgid:"Choose {file}",msgstr:["Vali {file} fail"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Vali %n fail","Vali %n faili"]},{msgid:"Confirm",msgstr:["Kinnita"]},{msgid:"Continue",msgstr:["Jätka"]},{msgid:"Copy",msgstr:["Kopeeri"]},{msgid:"Copy to {target}",msgstr:["Kopeeri sihtkohta „{target}“"]},{msgid:"Could not create the new folder",msgstr:["Uue kausta loomine ei õnnestunud"]},{msgid:"Could not load files settings",msgstr:["Failide seadistusi ei õnnestunud laadida"]},{msgid:"Could not load files views",msgstr:["Failide vaatamiskordi ei õnnestunud laadida"]},{msgid:"Create directory",msgstr:["Loo kaust"]},{msgid:"Current view selector",msgstr:["Praeguse vaate valija"]},{msgid:"Enter your name",msgstr:["Sisesta oma nimi"]},{msgid:"Existing version",msgstr:["Olemasolev versioon"]},{msgid:"Failed to set nickname.",msgstr:["Hüüdnime sisestamine ei õnnestunud."]},{msgid:"Favorites",msgstr:["Lemmikud"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Failid ja kaustad, mida märgid lemmikuks, kuvatakse siin."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Siin kuvatakse hiljuti muudetud failid ja kaustad."]},{msgid:"Filter file list",msgstr:["Filtreeri faililoendit"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["Kausta nime lõpus ei tohi olla „{extension}“."]},{msgid:"Guest identification",msgstr:["Külalise tuvastamine"]},{msgid:"Home",msgstr:["Avaleht"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Kui valid mõlemad versioonid, siis uue faili nimele lisatakse number."]},{msgid:"Invalid folder name.",msgstr:["Vigane kausta nimi."]},{msgid:"Invalid name.",msgstr:["Vigane nimi."]},{msgid:"Last modified date unknown",msgstr:["Viimase muutmise kuupäev pole teada"]},{msgid:"Modified",msgstr:["Muudetud"]},{msgid:"Move",msgstr:["Teisalda"]},{msgid:"Move to {target}",msgstr:["Teisalda kausta „{target}“"]},{msgid:"Name",msgstr:["Nimi"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Nimed võivad olla vaid kuni 64 tähemärki pikad."]},{msgid:"Names must not be empty.",msgstr:["Nimi ei saa olla tühi."]},{msgid:'Names must not end with "{extension}".',msgstr:["Nime lõpus ei tohi olla „{extension}“."]},{msgid:"Names must not start with a dot.",msgstr:["Nime alguses ei tohi olla punkti."]},{msgid:"New",msgstr:["Uus"]},{msgid:"New folder",msgstr:["Uus kaust"]},{msgid:"New folder name",msgstr:["Uue kausta nimi"]},{msgid:"New version",msgstr:["Uus versioon"]},{msgid:"No files in here",msgstr:["Siin pole faile"]},{msgid:"No files matching your filter were found.",msgstr:["Sinu filtrile vastavaid faile ei leidunud."]},{msgid:"No matching files",msgstr:["Puuduvad sobivad failid"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Palun sisesta vähemalt 2 tähemärki pikk nimi."]},{msgid:"Recent",msgstr:["Hiljutine"]},{msgid:"Select all checkboxes",msgstr:["Vali kõik märkeruudud"]},{msgid:"Select all entries",msgstr:["Vali kõik kirjed"]},{msgid:"Select all existing files",msgstr:["Vali kõik olemasolevad failid"]},{msgid:"Select all new files",msgstr:["Vali kõik uued failid"]},{msgid:"Select entry",msgstr:["Vali kirje"]},{msgid:"Select the row for {nodename}",msgstr:["Vali rida „{nodename}“ jaoks"]},{msgid:"Size",msgstr:["Suurus"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Jäta %n fail vahele","Jäta %n faili vahele"]},{msgid:"Skip this file",msgstr:["Jäta see fail vahele"]},{msgid:"Submit name",msgstr:["Lisa nimi"]},{msgid:"Undo",msgstr:["Tühista"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Lisa mingit sisu või sünkrooni see oma seadmetest!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Kui uute failide kaust on valitud, siis kõik seal leiduvad vastuolus failid saavad üle kirjutatud."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Kui uute (saabuvate) failide kaust on valitud, siis kõik seal leiduvad failid saavad samuti üle kirjutatud."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Kui uute failide kaust on valitud, siis sisu kirjutatakse olemasolevasse kausta ja korraldatakse rekursiivne failikonfliktide lahendamine."]},{msgid:"Which files do you want to keep?",msgstr:["Missugused failid tahaksid alles jätta?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Sa oled hetkel tuvastatav kui {nickname}.."]},{msgid:"You are currently not identified.",msgstr:["Sa oled hetkel tuvastamata."]},{msgid:"You cannot leave the name empty.",msgstr:["Sa ei saa jätta nime tühjaks."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Sa pead valima vähemalt ühe failikonflikti lahenduse."]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Jätkamaks pead valima igast failist vähemalt ühe versiooni."]}]},{language:"fa",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:["{name} نام پوشه معتبر نیست"]},{msgid:'"{name}" is not an allowed folder name',msgstr:["{name} نام پوشه مجاز نیست"]},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" نمی‌تواند در نام پوشه استفاده شود.']},{msgid:"All files",msgstr:["همه فایل‌ها"]},{msgid:"Cancel",msgstr:["لغو"]},{msgid:"Choose",msgstr:["انتخاب"]},{msgid:"Choose {file}",msgstr:["انتخاب {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["انتخاب %n فایل","انتخاب %n فایل"]},{msgid:"Copy",msgstr:["رونوشت"]},{msgid:"Copy to {target}",msgstr:["رونوشت از {target}"]},{msgid:"Could not create the new folder",msgstr:["پوشه جدید ایجاد نشد"]},{msgid:"Could not load files settings",msgstr:["تنظیمات فایل باز نشد"]},{msgid:"Could not load files views",msgstr:["نمای فایل‌ها بارگیری نشد"]},{msgid:"Create directory",msgstr:["ایجاد فهرست"]},{msgid:"Current view selector",msgstr:["انتخابگر نماگر فعلی"]},{msgid:"Enter your name",msgstr:["نام خود را وارد کنید"]},{msgid:"Failed to set nickname.",msgstr:["تنظیم نام مستعار ناموفق بود."]},{msgid:"Favorites",msgstr:["علایق"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["فایل‌ها و پوشه‌هایی که به‌عنوان مورد علاقه علامت‌گذاری می‌کنید در اینجا نشان داده می‌شوند."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["فایل‌ها و پوشه‌هایی که اخیراً تغییر داده‌اید در اینجا نمایش داده می‌شوند."]},{msgid:"Filter file list",msgstr:["فیلتر لیست فایل"]},{msgid:"Folder name cannot be empty.",msgstr:["نام پوشه نمی تواند خالی باشد."]},{msgid:"Guest identification",msgstr:["شناسایی مهمان"]},{msgid:"Home",msgstr:["خانه"]},{msgid:"Modified",msgstr:["اصلاح شده"]},{msgid:"Move",msgstr:["انتقال"]},{msgid:"Move to {target}",msgstr:["انتقال به {target}"]},{msgid:"Name",msgstr:["نام"]},{msgid:"New",msgstr:["جدید"]},{msgid:"New folder",msgstr:["پوشه جدید"]},{msgid:"New folder name",msgstr:["نام پوشه جدید"]},{msgid:"No files in here",msgstr:["فایلی اینجا نیست"]},{msgid:"No files matching your filter were found.",msgstr:["هیچ فایلی مطابق با فیلتر شما یافت نشد."]},{msgid:"No matching files",msgstr:["فایل منطبقی وجود ندارد"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["لطفاً نامی با حداقل ۲ کاراکتر وارد کنید."]},{msgid:"Recent",msgstr:["اخیر"]},{msgid:"Select all entries",msgstr:["انتخاب همه ورودی ها"]},{msgid:"Select entry",msgstr:["انتخاب ورودی"]},{msgid:"Select the row for {nodename}",msgstr:["انتخاب ردیف برای {nodename}"]},{msgid:"Size",msgstr:["اندازه"]},{msgid:"Submit name",msgstr:["ارسال نام"]},{msgid:"Undo",msgstr:["بازگردانی"]},{msgid:"Upload some content or sync with your devices!",msgstr:["مقداری محتوا آپلود کنید یا با دستگاه های خود همگام سازی کنید!"]},{msgid:"You are currently not identified.",msgstr:["شما در حال حاضر شناسایی نشده‌اید."]},{msgid:"You cannot leave the name empty.",msgstr:["نمی‌توانید نام را خالی بگذارید."]}]},{language:"fi_FI",translations:[{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" ei ole sallittu nimessä.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" ei ole sallittu nimi.']},{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" on virheellinen kansion nimi.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" ei ole sallittu kansion nimi']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" on varattu nimi eikä se ole sallittu.']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" ei ole sallittu kansion nimessä.']},{msgid:"All files",msgstr:["Kaikki tiedostot"]},{msgid:"Cancel",msgstr:["Peruuta"]},{msgid:"Choose",msgstr:["Valitse"]},{msgid:"Choose {file}",msgstr:["Valitse {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Valitse %n tiedosto","Valitse %n tiedostoa"]},{msgid:"Copy",msgstr:["Kopioi"]},{msgid:"Copy to {target}",msgstr:["Kopioi sijaintiin {target}"]},{msgid:"Could not create the new folder",msgstr:["Uutta kansiota ei voitu luoda"]},{msgid:"Could not load files settings",msgstr:["Tiedoston asetuksia ei saa ladattua"]},{msgid:"Could not load files views",msgstr:["Tiedoston näkymiä ei saa ladattua"]},{msgid:"Create directory",msgstr:["Luo kansio"]},{msgid:"Current view selector",msgstr:["Nykyisen näkymän valinta"]},{msgid:"Enter your name",msgstr:["Kirjoita nimesi"]},{msgid:"Failed to set nickname.",msgstr:["Kutsumanimen asettaminen epäonnistui."]},{msgid:"Favorites",msgstr:["Suosikit"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Tiedostot ja kansiot, jotka merkitset suosikkeihisi, näkyvät täällä."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Tiedostot ja kansiot, joita muokkasit äskettäin, näkyvät täällä."]},{msgid:"Filter file list",msgstr:["Suodata tiedostolistaa"]},{msgid:"Folder name cannot be empty.",msgstr:["Kansion nimi ei voi olla tyhjä."]},{msgid:"Guest identification",msgstr:["Vieraan tunnistaminen"]},{msgid:"Home",msgstr:["Koti"]},{msgid:"Invalid name.",msgstr:["Virheellinen nimi."]},{msgid:"Modified",msgstr:["Muokattu"]},{msgid:"Move",msgstr:["Siirrä"]},{msgid:"Move to {target}",msgstr:["Siirrä sijaintiin {target}"]},{msgid:"Name",msgstr:["Nimi"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Nimissä voi olla enintään 64 merkkiä."]},{msgid:"Names must not be empty.",msgstr:["Nimet eivät saa olla tyhjiä."]},{msgid:'Names must not end with "{extension}".',msgstr:['Nimet eivät saa päättyä sanaan "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Nimet eivät saa alkaa pisteellä."]},{msgid:"New",msgstr:["Uusi"]},{msgid:"New folder",msgstr:["Uusi kansio"]},{msgid:"New folder name",msgstr:["Uuden kansion nimi"]},{msgid:"No files in here",msgstr:["Täällä ei ole tiedostoja"]},{msgid:"No files matching your filter were found.",msgstr:["Suodatinta vastaavia tiedostoja ei löytynyt."]},{msgid:"No matching files",msgstr:["Ei vastaavia tiedostoja"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Kirjoita vähintään kaksi merkkiä sisältävä nimi."]},{msgid:"Recent",msgstr:["Viimeisimmät"]},{msgid:"Select all entries",msgstr:["Valitse kaikki tietueet"]},{msgid:"Select entry",msgstr:["Valitse tietue"]},{msgid:"Select the row for {nodename}",msgstr:["Valitse rivi {nodename}:lle"]},{msgid:"Size",msgstr:["Koko"]},{msgid:"Submit name",msgstr:["Lähetä nimi"]},{msgid:"Undo",msgstr:["Kumoa"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Lähetä jotain sisältöä tai synkronoi laitteidesi kanssa!"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Sinut tunnetaan tällä hetkellä nimellä {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Sinua ei ole tunnistettu."]},{msgid:"You cannot leave the name empty.",msgstr:["Nimeä ei voi jättää tyhjäksi."]}]},{language:"fr",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:[`"{char}" n'est pas autorisé dans un nom de dossier.`]},{msgid:'"{char}" is not allowed inside a name.',msgstr:[`"{char}" n'est pas autorisé dans un nom.`]},{msgid:'"{extension}" is not an allowed name.',msgstr:[`"{extension}" n'est pas un nom autorisé.`]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:[`"{segment}" est un nom réservé et n'est pas autorisé pour un nom de dossier.`]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:[`"{segment}" est un nom réservé et n'est pas autorisé.`]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n conflit de fichier","%n conflit de fichiers","%n conflit de fichiers"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%nconflit de fichier dans {dirname}","%n conflit de fichiers dans {dirname}","%nconflit de fichiers dans {dirname}"]},{msgid:"All files",msgstr:["Tous les fichiers"]},{msgid:"Cancel",msgstr:["Annuler"]},{msgid:"Cancel the entire operation",msgstr:["Tout annuler "]},{msgid:"Choose",msgstr:["Choisir"]},{msgid:"Choose {file}",msgstr:["Choisir {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Choisir %n fichier","Choisir %n fichiers","Choisir %n fichiers "]},{msgid:"Confirm",msgstr:["Confirmer"]},{msgid:"Continue",msgstr:["Continuer"]},{msgid:"Copy",msgstr:["Copier"]},{msgid:"Copy to {target}",msgstr:["Copier vers {target}"]},{msgid:"Could not create the new folder",msgstr:["Impossible de créer le nouveau dossier"]},{msgid:"Could not load files settings",msgstr:["Les paramètres des fichiers n'ont pas pu être chargés"]},{msgid:"Could not load files views",msgstr:["Impossible de charger les vues des fichiers"]},{msgid:"Create directory",msgstr:["Créer un répertoire"]},{msgid:"Current view selector",msgstr:["Sélecteur d'affichage actuel"]},{msgid:"Enter your name",msgstr:["Entrez votre nom"]},{msgid:"Existing version",msgstr:["Version actuelle "]},{msgid:"Failed to set nickname.",msgstr:["Échec de définition du surnom."]},{msgid:"Favorites",msgstr:["Favoris"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Les fichiers et répertoires marqués en favoris apparaîtront ici."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Les fichiers et répertoires modifiés récemment apparaîtront ici."]},{msgid:"Filter file list",msgstr:["Filtrer la liste des fichiers"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Les noms de dossiers ne doivent pas se terminer par "{extension}".']},{msgid:"Guest identification",msgstr:["Identification d'invité"]},{msgid:"Home",msgstr:["Accueil"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Si vous conservez les deux versions, le fichier reçu sera renommé avec un numéro."]},{msgid:"Invalid folder name.",msgstr:["Nom de dossier invalide."]},{msgid:"Invalid name.",msgstr:["Nom invalide."]},{msgid:"Last modified date unknown",msgstr:["Date de modification inconnue"]},{msgid:"Modified",msgstr:["Modifié"]},{msgid:"Move",msgstr:["Déplacer"]},{msgid:"Move to {target}",msgstr:["Déplacer vers {target}"]},{msgid:"Name",msgstr:["Nom"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Les noms peuvent comporter au maximum 64 caractères."]},{msgid:"Names must not be empty.",msgstr:["Les noms ne peuvent pas être vides."]},{msgid:'Names must not end with "{extension}".',msgstr:['Les noms ne doivent pas se terminer par "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Les noms ne peuvent pas commencer par un point."]},{msgid:"New",msgstr:["Nouveau"]},{msgid:"New folder",msgstr:["Nouveau dossier"]},{msgid:"New folder name",msgstr:["Nom du nouveau dossier"]},{msgid:"New version",msgstr:["Nouvelle version"]},{msgid:"No files in here",msgstr:["Aucun fichier ici"]},{msgid:"No files matching your filter were found.",msgstr:["Aucun fichier trouvé correspondant à votre filtre."]},{msgid:"No matching files",msgstr:["Aucun fichier correspondant"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Veuillez entrer un nom avec au moins 2 caractères."]},{msgid:"Recent",msgstr:["Récents"]},{msgid:"Select all checkboxes",msgstr:["Sélectionner toutes les cases à cocher"]},{msgid:"Select all entries",msgstr:["Tout sélectionner"]},{msgid:"Select all existing files",msgstr:["Sélectionner tous les fichiers existants"]},{msgid:"Select all new files",msgstr:["Sélectionner tous les nouveaux fichiers"]},{msgid:"Select entry",msgstr:["Sélectionner une entrée"]},{msgid:"Select the row for {nodename}",msgstr:["Sélectionner la ligne correspondant à {nodename}"]},{msgid:"Size",msgstr:["Taille"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Ignorer %n fichier","Ignorer %n fichiers ","Ignorer %n fichiers "]},{msgid:"Skip this file",msgstr:["Ignorer ce fichier"]},{msgid:"Submit name",msgstr:["Envoyer le nom"]},{msgid:"Undo",msgstr:["Annuler"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Chargez du contenu ou synchronisez avec vos équipements !"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["En sélectionnant un dossier entrant, les fichiers en conflit qu’il contient seront automatiquement écrasés."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Suite à la sélection d'un dossier en entrée, tout fichier présent dans ce dossier sera alors écrasé. "]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Lorsque vous sélectionnez un dossier entrant, son contenu est ajouté au dossier existant et les conflits sont résolus automatiquement."]},{msgid:"Which files do you want to keep?",msgstr:["Quels fichiers souhaitez-vous conserver ?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Vous êtes actuellement identifié comme {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Vous n'êtes pas identifié actuellement."]},{msgid:"You cannot leave the name empty.",msgstr:["Vous ne pouvez pas laisser le nom vide."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Vous devez choisir au moins une option pour résoudre le conflit"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Sélectionnez au moins une version de chaque fichier pour continuer."]}]},{language:"ga",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:[`Ní cheadaítear "{char}" laistigh d'ainm fillteáin.`]},{msgid:'"{char}" is not allowed inside a name.',msgstr:[`Ní cheadaítear "{char}" laistigh d'ainm.`]},{msgid:'"{extension}" is not an allowed name.',msgstr:['Ní ainm ceadaithe é "{extension}".']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:[`Is ainm curtha in áirithe é "{segment}" agus ní cheadaítear é d'ainmneacha fillteán.`]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['Is ainm curtha in áirithe é "{segment}" agus ní cheadaítear é.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n coimhlint comhaid","%n coimhlint comhad","%n coimhlint comhad","%n coimhlint comhad","%n coimhlint comhad"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n coimhlint comhaid i {dirname}","%n coimhlintí comhaid i {dirname}","%n coimhlintí comhaid i {dirname}","%n coimhlintí comhaid i {dirname}","%n coimhlintí comhaid i {dirname}"]},{msgid:"All files",msgstr:["Gach comhad"]},{msgid:"Cancel",msgstr:["Cealaigh"]},{msgid:"Cancel the entire operation",msgstr:["Cealaigh an oibríocht ar fad"]},{msgid:"Choose",msgstr:["Roghnaigh"]},{msgid:"Choose {file}",msgstr:["Roghnaigh {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Roghnaigh %n comhad","Roghnaigh %n comhaid","Roghnaigh %n comhaid","Roghnaigh %n comhaid","Roghnaigh %n comhaid"]},{msgid:"Confirm",msgstr:["Deimhnigh"]},{msgid:"Continue",msgstr:["Lean ar aghaidh"]},{msgid:"Copy",msgstr:["Cóip"]},{msgid:"Copy to {target}",msgstr:["Cóipeáil chuig {target}"]},{msgid:"Could not create the new folder",msgstr:["Níorbh fhéidir an fillteán nua a chruthú"]},{msgid:"Could not load files settings",msgstr:["Níorbh fhéidir socruithe comhaid a lódáil"]},{msgid:"Could not load files views",msgstr:["Níorbh fhéidir radhairc comhad a lódáil"]},{msgid:"Create directory",msgstr:["Cruthaigh eolaire"]},{msgid:"Current view selector",msgstr:["Roghnóir amhairc reatha"]},{msgid:"Enter your name",msgstr:["Cuir isteach d'ainm"]},{msgid:"Existing version",msgstr:["Leagan atá ann cheana féin"]},{msgid:"Failed to set nickname.",msgstr:["Theip ar leasainm a shocrú."]},{msgid:"Favorites",msgstr:["Ceanáin"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Taispeánfar comhaid agus fillteáin a mharcálann tú mar is fearr leat anseo."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Taispeánfar comhaid agus fillteáin a d'athraigh tú le déanaí anseo."]},{msgid:"Filter file list",msgstr:["Scag liosta comhad"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Ní féidir ainmneacha fillteán a chríochnú le "{extension}".']},{msgid:"Guest identification",msgstr:["Aitheantas aoi"]},{msgid:"Home",msgstr:["Baile"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Má roghnaíonn tú an dá leagan, cuirfear uimhir le hainm an chomhaid atá ag teacht isteach."]},{msgid:"Invalid folder name.",msgstr:["Ainm fillteáin neamhbhailí."]},{msgid:"Invalid name.",msgstr:["Ainm neamhbhailí."]},{msgid:"Last modified date unknown",msgstr:["Dáta an athraithe dheireanaigh anaithnid"]},{msgid:"Modified",msgstr:["Athraithe"]},{msgid:"Move",msgstr:["Bog"]},{msgid:"Move to {target}",msgstr:["Bog go{target}"]},{msgid:"Name",msgstr:["Ainm"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Ní fhéadfaidh ainmneacha a bheith níos mó ná 64 carachtar ar fhad."]},{msgid:"Names must not be empty.",msgstr:["Ní féidir ainmneacha a bheith folamh."]},{msgid:'Names must not end with "{extension}".',msgstr:['Ní féidir ainmneacha a chríochnú le "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Ní mór ainmneacha a bheith ag tosú le ponc."]},{msgid:"New",msgstr:["Nua"]},{msgid:"New folder",msgstr:["Fillteán nua"]},{msgid:"New folder name",msgstr:["Ainm fillteáin nua"]},{msgid:"New version",msgstr:["Leagan nua"]},{msgid:"No files in here",msgstr:["Níl aon chomhaid istigh anseo"]},{msgid:"No files matching your filter were found.",msgstr:["Níor aimsíodh aon chomhad a tháinig le do scagaire."]},{msgid:"No matching files",msgstr:["Gan comhaid meaitseála"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Cuir isteach ainm ina bhfuil 2 charachtar ar a laghad."]},{msgid:"Recent",msgstr:["le déanaí"]},{msgid:"Select all checkboxes",msgstr:["Roghnaigh na boscaí seiceála go léir"]},{msgid:"Select all entries",msgstr:["Roghnaigh gach iontráil"]},{msgid:"Select all existing files",msgstr:["Roghnaigh na comhaid uile atá ann cheana"]},{msgid:"Select all new files",msgstr:["Roghnaigh gach comhad nua"]},{msgid:"Select entry",msgstr:["Roghnaigh iontráil"]},{msgid:"Select the row for {nodename}",msgstr:["Roghnaigh an ró do {nodename}"]},{msgid:"Size",msgstr:["Méid"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Léim %n comhad","Léim %n comhaid","Léim %n comhaid","Léim %n comhaid","Léim %n comhaid"]},{msgid:"Skip this file",msgstr:["Scipeáil an comhad seo"]},{msgid:"Submit name",msgstr:["Cuir isteach ainm"]},{msgid:"Undo",msgstr:["Cealaigh"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Uaslódáil roinnt ábhair nó sioncronaigh le do ghléasanna!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Nuair a roghnaítear fillteán isteach, déanfar aon chomhaid choimhlinteacha ann a athscríobh freisin."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Nuair a roghnaítear fillteán isteach, déanfar aon chomhaid laistigh de a athscríobh freisin."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Nuair a roghnaítear fillteán isteach, scríobhtar an t-ábhar isteach sa fhillteán atá ann cheana féin agus déantar réiteach coinbhleachta athchúrsach."]},{msgid:"Which files do you want to keep?",msgstr:["Cé na comhaid ar mhaith leat a choinneáil?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Is é {nickname} an ainm atá ort faoi láthair."]},{msgid:"You are currently not identified.",msgstr:["Níl aitheantas tugtha duit faoi láthair."]},{msgid:"You cannot leave the name empty.",msgstr:["Ní féidir leat an t-ainm a fhágáil folamh."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Ní mór duit réiteach coinbhleachta amháin ar a laghad a roghnú"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Ní mór duit leagan amháin ar a laghad de gach comhad a roghnú le leanúint ar aghaidh."]}]},{language:"gl",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["«{char}» non está permitido no nome dun cartafol."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["«{char}» non está permitido dentro dun nome."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["«{extension}» non é un nome permitido."]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["«{segment}» é un nome reservado e non está permitido para nomes de cartafoles."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["«{segment}» é un nome reservado e non está permitido."]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n ficheiro en conflito","%n ficheiros en conflito"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n ficheiro en conflito en {dirname}","%n ficheiros en conflito en {dirname}"]},{msgid:"All files",msgstr:["Todos os ficheiros"]},{msgid:"Cancel",msgstr:["Cancelar"]},{msgid:"Cancel the entire operation",msgstr:["Cancelar toda a operación"]},{msgid:"Choose",msgstr:["Escoller"]},{msgid:"Choose {file}",msgstr:["Escoller {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Escoller %n ficheiro","Escoller %n ficheiros"]},{msgid:"Confirm",msgstr:["Confirmar"]},{msgid:"Continue",msgstr:["Continuar"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar en {target}"]},{msgid:"Could not create the new folder",msgstr:["Non foi posíbel crear o novo cartafol"]},{msgid:"Could not load files settings",msgstr:["Non foi posíbel cargar os axustes dos ficheiros"]},{msgid:"Could not load files views",msgstr:["Non foi posíbel cargar as vistas dos ficheiros"]},{msgid:"Create directory",msgstr:["Crear un directorio"]},{msgid:"Current view selector",msgstr:["Selector de vista actual"]},{msgid:"Enter your name",msgstr:["Introduza o seu nome"]},{msgid:"Existing version",msgstr:["Versión existente"]},{msgid:"Failed to set nickname.",msgstr:["Produciuse un fallo ao definir o alcume."]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Os ficheiros e cartafoles que marque como favoritos aparecerán aquí."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Os ficheiros e cartafoles que modificou recentemente aparecerán aquí."]},{msgid:"Filter file list",msgstr:["Filtrar a lista de ficheiros"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["Os nomes de cartafol non deben rematar en «{extension}»."]},{msgid:"Guest identification",msgstr:["Identificación do convidado"]},{msgid:"Home",msgstr:["Inicio"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Se selecciona ambas as versións, o ficheiro entrante terá un número engadido ao seu nome."]},{msgid:"Invalid folder name.",msgstr:["O nome de cartafol non é válido."]},{msgid:"Invalid name.",msgstr:["Nome incorrecto"]},{msgid:"Last modified date unknown",msgstr:["Data da última modificación descoñecida"]},{msgid:"Modified",msgstr:["Modificado"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover cara a {target}"]},{msgid:"Name",msgstr:["Nome"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Os nomes poden ter unha lonxitude máxima de 64 caracteres."]},{msgid:"Names must not be empty.",msgstr:["Os nomes non deben estar baleiros."]},{msgid:'Names must not end with "{extension}".',msgstr:["Os nomes non deben rematar en «{extension}»."]},{msgid:"Names must not start with a dot.",msgstr:["Os nomes non deben comezar cun punto."]},{msgid:"New",msgstr:["Novo"]},{msgid:"New folder",msgstr:["Novo cartafol"]},{msgid:"New folder name",msgstr:["Novo nome do cartafol"]},{msgid:"New version",msgstr:["Nova versión"]},{msgid:"No files in here",msgstr:["Aquí non hai ficheiros"]},{msgid:"No files matching your filter were found.",msgstr:["Non se atopou ningún ficheiro que coincida co filtro."]},{msgid:"No matching files",msgstr:["Non hai ficheiros coincidentes"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Introduza un nome con polo menos 2 caracteres."]},{msgid:"Recent",msgstr:["Recente"]},{msgid:"Select all checkboxes",msgstr:["Seleccionar todas as caixas"]},{msgid:"Select all entries",msgstr:["Seleccionar todas as entradas"]},{msgid:"Select all existing files",msgstr:["Seleccionar todos os ficheiros existentes"]},{msgid:"Select all new files",msgstr:["Seleccionar todos os ficheiros novos"]},{msgid:"Select entry",msgstr:["Seleccionar a entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Seleccionar a fila para {nodename}"]},{msgid:"Size",msgstr:["Tamaño"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Omitir %n ficheiro","Omitir %n ficheiros"]},{msgid:"Skip this file",msgstr:["Omitir este ficheiro"]},{msgid:"Submit name",msgstr:["Enviar o nome"]},{msgid:"Undo",msgstr:["Desfacer"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Enviar algún contido ou sincronizalo cos seus dispositivos!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Cando se selecciona un cartafol entrante, todos os ficheiros conflitivos dentro dela tamén serán sobrescritos."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Cando se selecciona un cartafol entrante, o contido escríbese no cartafol existente e realízase unha resolución recursiva de conflitos."]},{msgid:"Which files do you want to keep?",msgstr:["Que ficheiros quere conservar?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Vde. está identificado actualmente como {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Vde. non está identificado actualmente."]},{msgid:"You cannot leave the name empty.",msgstr:["Vde. non pode deixar o nome baleiro."]},{msgid:"You need to choose at least one conflict solution",msgstr:["É necesario escoller polo menos unha solución de conflito"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["É necesario seleccionar polo menos unha versión de cada ficheiro para continuar."]}]},{language:"hr",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["Znak „{char}” nije dopušten u nazivu mape."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["Znak „{char}” nije dopušten u nazivu."]},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" nije dopušten u nazivu.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" je rezervirana riječ i nije dopušten u nazivu mape.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" je rezervirana riječ i nije dopušten.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["Sukobljava se %n datoteka","Sukobljava se %n datoteke","Sukobljava se %n datoteke"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n sukob datoteka u {dirname}","%n sukoba datoteka u {dirname}","%n sukoba datoteka u {dirname}"]},{msgid:"All files",msgstr:["Sve datoteke"]},{msgid:"Cancel",msgstr:["Odustani"]},{msgid:"Cancel the entire operation",msgstr:["Odustani od cijele operacije"]},{msgid:"Choose",msgstr:["Odaberi"]},{msgid:"Choose {file}",msgstr:["Odaberi {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Odaberi %n datoteku","Odaberi %n datoteka","Odaberi %n datoteke"]},{msgid:"Confirm",msgstr:["Potvrdi"]},{msgid:"Continue",msgstr:["Nastavi"]},{msgid:"Copy",msgstr:["Kopiraj"]},{msgid:"Copy to {target}",msgstr:["Kopiraj u {target}"]},{msgid:"Could not create the new folder",msgstr:["Nije moguće stvoriti novu mapu"]},{msgid:"Could not load files settings",msgstr:["Nije moguće učitati postavke datoteka"]},{msgid:"Could not load files views",msgstr:["Nije moguće učitati prikaze datoteka"]},{msgid:"Create directory",msgstr:["Stvori mapu"]},{msgid:"Current view selector",msgstr:["Odabir trenutačnog prikaza"]},{msgid:"Enter your name",msgstr:["Unesite vaše ime"]},{msgid:"Existing version",msgstr:["Postojeća verzija"]},{msgid:"Failed to set nickname.",msgstr:["Neuspjelo postavljanje nadimka."]},{msgid:"Favorites",msgstr:["Favoriti"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Ovdje se prikazuju datoteke i mape koje ste označili kao favoriti."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Ovdje se prikazuju datoteke i mape koje ste nedavno ažurirali."]},{msgid:"Filter file list",msgstr:["Filtriranje liste datoteka"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Nazivi mapa ne smiju završiti sa "{extension}".']},{msgid:"Guest identification",msgstr:["Identifikacija gosta"]},{msgid:"Home",msgstr:["Naslovna"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Ako odaberete obje verzije, dolaznoj datoteci bit će dodan broj u nazivu."]},{msgid:"Invalid folder name.",msgstr:["Neispavan naziv mape."]},{msgid:"Invalid name.",msgstr:["Neispravan naziv."]},{msgid:"Last modified date unknown",msgstr:["Nepoznat datum zadnjeg ažuriranja"]},{msgid:"Modified",msgstr:["Ažurirano"]},{msgid:"Move",msgstr:["Premjesti"]},{msgid:"Move to {target}",msgstr:["Premjesti u {target}"]},{msgid:"Name",msgstr:["Naziv"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Nazivi mogu imati najviše 64 znaka."]},{msgid:"Names must not be empty.",msgstr:["Nazivi ne smiju biti prazni."]},{msgid:'Names must not end with "{extension}".',msgstr:['Nazivi ne smiju završiti sa "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Nazivi ne smiju započinjati točkom."]},{msgid:"New",msgstr:["Novo"]},{msgid:"New folder",msgstr:["Nova mapa"]},{msgid:"New folder name",msgstr:["Novi naziv mape"]},{msgid:"New version",msgstr:["Nova verzija"]},{msgid:"No files in here",msgstr:["Ovdje nema datoteka"]},{msgid:"No files matching your filter were found.",msgstr:["Nisu pronađene datoteke koje odgovaraju vašem filtru."]},{msgid:"No matching files",msgstr:["Nema odgovarajućih datoteka."]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Unesite naziv s najmanje 2 znaka."]},{msgid:"Recent",msgstr:["Nedavno"]},{msgid:"Select all checkboxes",msgstr:["Označi sve potvrdne okvire"]},{msgid:"Select all entries",msgstr:["Označi sve stavke"]},{msgid:"Select all existing files",msgstr:["Označi sve postojeće datoteke"]},{msgid:"Select all new files",msgstr:["Označi sve nove datoteke"]},{msgid:"Select entry",msgstr:["Označi stavku"]},{msgid:"Select the row for {nodename}",msgstr:["Označi red za{nodename}"]},{msgid:"Size",msgstr:["Veličina"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Preskoči %n datoteku","Preskoči %n datoteke","Preskoči %n datoteke"]},{msgid:"Skip this file",msgstr:["Preskoči ovu datoteku"]},{msgid:"Submit name",msgstr:["Pošalji naziv"]},{msgid:"Undo",msgstr:["Poništi"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Prenesite neki sadržaj ili sinkronizirajte sa svojim uređajima!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Kada je odabrana dolazna mapa, sve datoteke unutar nje koje su u sukobu također će biti prepisane."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Kada je odabrana dolazna mapa, sadržaj se upisuje u postojeću mapu i provodi se rekurzivno rješavanje sukoba."]},{msgid:"Which files do you want to keep?",msgstr:["Koje datoteke želite zadržati?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Trenutno ste identificirani kao {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Trenutno niste identificirani."]},{msgid:"You cannot leave the name empty.",msgstr:["Ne možete ostaviti naziv prazan."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Morate odabrati barem jedno rješenje sukoba"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Morate odabrati barem jednu verziju svake datoteke kako biste nastavili."]}]},{language:"hu_HU",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["A(z) „{char}” nem engedélyezett egy mappanévben."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["A(z) „{char}” nem engedélyezett egy névben."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["A(z) „{extension}” nem engedélyezett név."]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["A(z) „{segment}” foglalt név, és nem engedélyezett a mappanevekben."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["A(z) „{segment}” foglalt név, és nem engedélyezett."]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n ütköző fájl","%n ütköző fájl"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n ütköző fájl ebben: {dirname}","%n ütköző fájl ebben: {dirname}"]},{msgid:"All files",msgstr:["Összes fájl"]},{msgid:"Cancel",msgstr:["Mégse"]},{msgid:"Cancel the entire operation",msgstr:["Egész művelet megszakítása"]},{msgid:"Choose",msgstr:["Kiválasztás"]},{msgid:"Choose {file}",msgstr:["{file} kiválasztása"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["%n fájl kiválasztása","%n fájl kiválasztása"]},{msgid:"Confirm",msgstr:["Megerősítés"]},{msgid:"Continue",msgstr:["Folytatás"]},{msgid:"Copy",msgstr:["Másolás"]},{msgid:"Copy to {target}",msgstr:["Másolás ide: {target}"]},{msgid:"Could not create the new folder",msgstr:["Nem lehet létrehozni az új mappát"]},{msgid:"Could not load files settings",msgstr:["Nem lehet betölteni a fájlok beállításait"]},{msgid:"Could not load files views",msgstr:["Nem lehet betölteni a fájlok nézeteit"]},{msgid:"Create directory",msgstr:["Mappa létrehozása"]},{msgid:"Current view selector",msgstr:["Jelenlegi nézet választója"]},{msgid:"Enter your name",msgstr:["Adja meg a nevét"]},{msgid:"Existing version",msgstr:["Meglévő verzió"]},{msgid:"Failed to set nickname.",msgstr:["Nem sikerült a becenév beállítása."]},{msgid:"Favorites",msgstr:["Kedvencek"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["A kedvencként megjelölt fájlok és mappák itt jelennek meg."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["A nemrég módosított fájlok és mappák itt jelennek meg."]},{msgid:"Filter file list",msgstr:["Fájllista szűrése"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["A mappanevek nem végződhetnek ezzel: „{extension}”."]},{msgid:"Guest identification",msgstr:["Vendégazonosítás"]},{msgid:"Home",msgstr:["Kezdőlap"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Ha mindkét verziót választja, akkor a bejövő fájl nevéhez egy szám lesz hozzáfűzve."]},{msgid:"Invalid folder name.",msgstr:["Érvénytelen mappanév."]},{msgid:"Invalid name.",msgstr:["Érvénytelen név."]},{msgid:"Last modified date unknown",msgstr:["Legutóbbi módosítás ideje ismeretlen"]},{msgid:"Modified",msgstr:["Módosítva"]},{msgid:"Move",msgstr:["Áthelyezés"]},{msgid:"Move to {target}",msgstr:["Áthelyezés ide: {target}"]},{msgid:"Name",msgstr:["Név"]},{msgid:"Names may be at most 64 characters long.",msgstr:["A nevek legfeljebb 64 karakter hosszúak lehetnek."]},{msgid:"Names must not be empty.",msgstr:["A nevek nem lehetnek üresek."]},{msgid:'Names must not end with "{extension}".',msgstr:["A nevek nem végződhetnek ezzel: „{extension}”."]},{msgid:"Names must not start with a dot.",msgstr:["A nevek nem kezdődhetnek ponttal."]},{msgid:"New",msgstr:["Új"]},{msgid:"New folder",msgstr:["Új mappa"]},{msgid:"New folder name",msgstr:["Új mappa neve"]},{msgid:"New version",msgstr:["Új verzió"]},{msgid:"No files in here",msgstr:["Itt nincsenek fájlok"]},{msgid:"No files matching your filter were found.",msgstr:["Nincs a szűrési feltételeknek megfelelő fájl."]},{msgid:"No matching files",msgstr:["Nincs ilyen fájl"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Legalább 2 karakteres nevet adjon meg."]},{msgid:"Recent",msgstr:["Legutóbbi"]},{msgid:"Select all checkboxes",msgstr:["Összes jelölőmező bepipálása"]},{msgid:"Select all entries",msgstr:["Összes bejegyzés kijelölése"]},{msgid:"Select all existing files",msgstr:["Összes meglévő fájl kijelölése"]},{msgid:"Select all new files",msgstr:["Összes új fájl kijelölése"]},{msgid:"Select entry",msgstr:["Bejegyzés kijelölése"]},{msgid:"Select the row for {nodename}",msgstr:["Válasszon sort a következőnek: {nodename}"]},{msgid:"Size",msgstr:["Méret"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["%n fájl kihagyása","%n fájl kihagyása"]},{msgid:"Skip this file",msgstr:["Fájl kihagyása"]},{msgid:"Submit name",msgstr:["Név beküldése"]},{msgid:"Undo",msgstr:["Visszavonás"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Töltsön fel tartalmat, vagy szinkronizáljon az eszközeivel!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Ha egy bejövő mappa van kijelölve, akkor a benne lévő ütköző fájlok is felül lesznek írva."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Amikor egy bejövő mappát kiválaszt, a benne lévő fájlok is felülíródnak."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Ha egy bejövő mappa van kijelölve, akkor a tartalom a meglévő mappába lesz írva, és rekurzív ütközéskezelés lesz végezve."]},{msgid:"Which files do you want to keep?",msgstr:["Mely fájlokat akarja megtartani?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Jelenleg ekként van azonosítva: {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Jelenleg nincs azonosítva."]},{msgid:"You cannot leave the name empty.",msgstr:["A nevet nem hagyhatja üresen."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Legalább egy ütközéskezelési megoldást kell választania"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["A folytatáshoz az összes fájlnak legalább egy verzióját ki kell választania."]}]},{language:"hy",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:["{name} սխալ թղթապանակի անվանում է"]},{msgid:'"{name}" is not an allowed folder name',msgstr:["{name} համարվում է անթույլատրելի թղթապանակի անվանում"]},{msgid:'"/" is not allowed inside a folder name.',msgstr:["/ չի թույլատրվում օգտագործել անվանման մեջ"]},{msgid:"All files",msgstr:["Բոլոր ֆայլերը"]},{msgid:"Choose",msgstr:["Ընտրել"]},{msgid:"Choose {file}",msgstr:["Ընտրել {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Ընտրել %n ֆայլ","Ընտրել %n ֆայլեր"]},{msgid:"Copy",msgstr:["Պատճենել"]},{msgid:"Copy to {target}",msgstr:["Պատճենել {target}"]},{msgid:"Could not create the new folder",msgstr:["Չստացվեց ստեղծել նոր թղթապանակը"]},{msgid:"Could not load files settings",msgstr:["Չստացվեց բեռնել ֆայլի կարգավորումները"]},{msgid:"Could not load files views",msgstr:["Չստացվեց բեռնել ֆայլերի դիտումները"]},{msgid:"Create directory",msgstr:["Ստեղծել դիրեկտորիա"]},{msgid:"Current view selector",msgstr:["Ընթացիկ դիտման ընտրիչ"]},{msgid:"Favorites",msgstr:["Նախընտրելիներ"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Այստեղ կցուցադրվեն այն ֆայլերն ու պանակները, որոնք դուք նշել եք որպես նախընտրելիներ:"]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Այստեղ կցուցադրվեն այն ֆայլերն ու պանակները, որոնք վերջերս փոխել եք:"]},{msgid:"Filter file list",msgstr:["Ֆիլտրել ֆայլերի ցուցակը"]},{msgid:"Folder name cannot be empty.",msgstr:["Թղթապանակի անունը չի կարող դատարկ լինել:"]},{msgid:"Home",msgstr:["Սկիզբ"]},{msgid:"Modified",msgstr:["Փոփոխված"]},{msgid:"Move",msgstr:["Տեղափոխել"]},{msgid:"Move to {target}",msgstr:["Տեղափոխել {target}"]},{msgid:"Name",msgstr:["Անուն"]},{msgid:"New",msgstr:["Նոր"]},{msgid:"New folder",msgstr:["Նոր թղթապանակ"]},{msgid:"New folder name",msgstr:["Նոր թղթապանակի անվանում"]},{msgid:"No files in here",msgstr:["Այստեղ չկան ֆայլեր"]},{msgid:"No files matching your filter were found.",msgstr:["Ձեր ֆիլտրին համապատասխանող ֆայլերը չեն գտնվել:"]},{msgid:"No matching files",msgstr:["Չկան համապատասխան ֆայլեր"]},{msgid:"Recent",msgstr:["Վերջին"]},{msgid:"Select all entries",msgstr:["Ընտրել բոլոր գրառումները"]},{msgid:"Select entry",msgstr:["Ընտրել բոլոր գրառումը"]},{msgid:"Select the row for {nodename}",msgstr:["Ընտրեք տողը {nodename}-ի համար "]},{msgid:"Size",msgstr:["Չափ"]},{msgid:"Undo",msgstr:["Ետարկել"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Ներբեռնեք որոշ բովանդակություն կամ համաժամացրեք այն ձեր սարքերի հետ:"]}]},{language:"id",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" tidak diizinkan di dalam nama folder.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" tidak diizinkan di dalam nama.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" bukan nama yang diizinkan.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" adalah nama yang dicadangkan dan tidak diizinkan untuk nama folder.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" adalah nama yang dicadangkan dan tidak diizinkan.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n konflik file"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n konflik file di {dirname}"]},{msgid:"All files",msgstr:["Semua berkas"]},{msgid:"Cancel",msgstr:["Batal"]},{msgid:"Cancel the entire operation",msgstr:["Batalkan seluruh operasi"]},{msgid:"Choose",msgstr:["Pilih"]},{msgid:"Choose {file}",msgstr:["Pilih {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Pilih %n file"]},{msgid:"Confirm",msgstr:["Konfirmasi"]},{msgid:"Continue",msgstr:["Lanjutkan"]},{msgid:"Copy",msgstr:["Salin"]},{msgid:"Copy to {target}",msgstr:["Salin ke {target}"]},{msgid:"Could not create the new folder",msgstr:["Tidak dapat membuat folder baru"]},{msgid:"Could not load files settings",msgstr:["Tidak dapat memuat pengaturan file"]},{msgid:"Could not load files views",msgstr:["Tidak dapat memuat tampilan file"]},{msgid:"Create directory",msgstr:["Buat direktori"]},{msgid:"Current view selector",msgstr:["Pemilih tampilan saat ini"]},{msgid:"Enter your name",msgstr:["Masukkan nama Anda"]},{msgid:"Existing version",msgstr:["Versi yang ada"]},{msgid:"Failed to set nickname.",msgstr:["Gagal menetapkan nama panggilan."]},{msgid:"Favorites",msgstr:["Favorit"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Berkas dan folder yang Anda tandai sebagai favorit akan muncul di sini."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Berkas dan folder yang Anda ubah baru-baru ini akan muncul di sini."]},{msgid:"Filter file list",msgstr:["Saring daftar berkas"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Nama folder tidak boleh diakhiri dengan "{extension}".']},{msgid:"Guest identification",msgstr:["Identifikasi tamu"]},{msgid:"Home",msgstr:["Beranda"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Jika Anda memilih kedua versi, file yang masuk akan ditambahkan angka pada namanya."]},{msgid:"Invalid folder name.",msgstr:["Nama folder tidak valid."]},{msgid:"Invalid name.",msgstr:["Nama tidak valid."]},{msgid:"Last modified date unknown",msgstr:["Tanggal modifikasi terakhir tidak diketahui"]},{msgid:"Modified",msgstr:["Diubah"]},{msgid:"Move",msgstr:["Pindahkan"]},{msgid:"Move to {target}",msgstr:["Pindahkan ke {target}"]},{msgid:"Name",msgstr:["Nama"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Panjang nama maksimal 64 karakter."]},{msgid:"Names must not be empty.",msgstr:["Nama tidak boleh kosong."]},{msgid:'Names must not end with "{extension}".',msgstr:['Nama tidak boleh diakhiri dengan "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Nama tidak boleh diawali dengan titik."]},{msgid:"New",msgstr:["Baru"]},{msgid:"New folder",msgstr:["Folder baru"]},{msgid:"New folder name",msgstr:["Nama folder baru"]},{msgid:"New version",msgstr:["Versi baru"]},{msgid:"No files in here",msgstr:["Tidak ada berkas di sini"]},{msgid:"No files matching your filter were found.",msgstr:["Tidak ada berkas yang cocok dengan penyaringan Anda."]},{msgid:"No matching files",msgstr:["Tidak ada berkas yang cocok"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Silakan masukkan nama dengan minimal 2 karakter."]},{msgid:"Recent",msgstr:["Terkini"]},{msgid:"Select all checkboxes",msgstr:["Pilih semua kotak centang"]},{msgid:"Select all entries",msgstr:["Pilih semua entri"]},{msgid:"Select all existing files",msgstr:["Pilih semua file yang ada"]},{msgid:"Select all new files",msgstr:["Pilih semua file baru"]},{msgid:"Select entry",msgstr:["Pilih entri"]},{msgid:"Select the row for {nodename}",msgstr:["Pilih baris untuk {nodename}"]},{msgid:"Size",msgstr:["Ukuran"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Lewati %n file"]},{msgid:"Skip this file",msgstr:["Lewati file ini"]},{msgid:"Submit name",msgstr:["Kirim nama"]},{msgid:"Undo",msgstr:["Tidak jadi"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Unggah beberapa konten atau sinkronkan dengan perangkat Anda!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Saat folder yang masuk dipilih, semua file yang konflik di dalamnya juga akan ditimpa."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Saat folder yang masuk dipilih, konten ditulis ke dalam folder yang ada dan penyelesaian konflik rekursif dilakukan."]},{msgid:"Which files do you want to keep?",msgstr:["File mana yang ingin Anda pertahankan?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Saat ini Anda teridentifikasi sebagai {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Saat ini Anda tidak teridentifikasi."]},{msgid:"You cannot leave the name empty.",msgstr:["Anda tidak dapat membiarkan nama kosong."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Anda perlu memilih setidaknya satu solusi konflik"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Anda perlu memilih setidaknya satu versi dari setiap file untuk melanjutkan."]}]},{language:"is",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" er ógilt möppuheiti.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" er ekki leyfilegt möppuheiti']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" er er ekki leyfilegt innan í skráarheiti.']},{msgid:"All files",msgstr:["Allar skrár"]},{msgid:"Choose",msgstr:["Veldu"]},{msgid:"Choose {file}",msgstr:["Veldu {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Veldu %n skrá","Veldu %n skrár"]},{msgid:"Copy",msgstr:["Afrita"]},{msgid:"Copy to {target}",msgstr:["Afrita í {target}"]},{msgid:"Could not create the new folder",msgstr:["Get ekki búið til nýju möppuna"]},{msgid:"Could not load files settings",msgstr:["Tókst ekki að hlaða inn stillingum skráa"]},{msgid:"Could not load files views",msgstr:["Tókst ekki að hlaða inn sýnum skráa"]},{msgid:"Create directory",msgstr:["Búa til möppu"]},{msgid:"Current view selector",msgstr:["Núverandi val sýnar"]},{msgid:"Favorites",msgstr:["Eftirlæti"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Skrár og möppur sem þú merkir sem eftirlæti birtast hér."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Skrár og möppur sem þú breyttir nýlega birtast hér."]},{msgid:"Filter file list",msgstr:["Sía skráalista"]},{msgid:"Folder name cannot be empty.",msgstr:["Möppuheiti má ekki vera tómt."]},{msgid:"Home",msgstr:["Heim"]},{msgid:"Modified",msgstr:["Breytt"]},{msgid:"Move",msgstr:["Færa"]},{msgid:"Move to {target}",msgstr:["Færa í {target}"]},{msgid:"Name",msgstr:["Heiti"]},{msgid:"New",msgstr:["Nýtt"]},{msgid:"New folder",msgstr:["Ný mappa"]},{msgid:"New folder name",msgstr:["Heiti nýrrar möppu"]},{msgid:"No files in here",msgstr:["Engar skrár hér"]},{msgid:"No files matching your filter were found.",msgstr:["Engar skrár fundust sem passa við síuna."]},{msgid:"No matching files",msgstr:["Engar samsvarandi skrár"]},{msgid:"Recent",msgstr:["Nýlegt"]},{msgid:"Select all entries",msgstr:["Velja allar færslur"]},{msgid:"Select entry",msgstr:["Velja færslu"]},{msgid:"Select the row for {nodename}",msgstr:["Veldu röðina fyrir {nodename}"]},{msgid:"Size",msgstr:["Stærð"]},{msgid:"Undo",msgstr:["Afturkalla"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Sendu inn eitthvað efni eða samstilltu við tækin þín!"]}]},{language:"it",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:[`"{char}" non è consentito all'interno di un nome di cartella.`]},{msgid:'"{char}" is not allowed inside a name.',msgstr:[`"{char}" non è consentito all'interno di un nome.`]},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" non è un nome consentito']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" è un nome riservato e non consentito per i nomi delle cartelle.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" è un nome riservato e non consentito.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n file in conflitto","%n file in conflitto","%n file in conflitto"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n file in conflitto in {dirname}","%n file in conflitto in {dirname}","%n file in conflitto in {dirname}"]},{msgid:"All files",msgstr:["Tutti i file"]},{msgid:"Cancel",msgstr:["Annulla"]},{msgid:"Cancel the entire operation",msgstr:["Annulla l'intera operazione"]},{msgid:"Choose",msgstr:["Scegli"]},{msgid:"Choose {file}",msgstr:["Scegli {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Scegli %n file","Scegli %n file","Scegli %n file"]},{msgid:"Confirm",msgstr:["Conferma"]},{msgid:"Continue",msgstr:["Continua"]},{msgid:"Copy",msgstr:["Copia"]},{msgid:"Copy to {target}",msgstr:["Copia in {target}"]},{msgid:"Could not create the new folder",msgstr:["Impossibile creare la nuova cartella"]},{msgid:"Could not load files settings",msgstr:["Impossibile caricare le impostazioni dei file"]},{msgid:"Could not load files views",msgstr:["Impossibile caricare le visualizzazioni dei file"]},{msgid:"Create directory",msgstr:["Crea cartella"]},{msgid:"Current view selector",msgstr:["Selettore della vista attuale"]},{msgid:"Enter your name",msgstr:["Inserisci il tuo nome"]},{msgid:"Existing version",msgstr:["Versione esistente"]},{msgid:"Failed to set nickname.",msgstr:["Impossibile impostare lo pseudonimo."]},{msgid:"Favorites",msgstr:["Preferiti"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["I file e le cartelle contrassegnate come preferite saranno mostrate qui."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["I file e le cartelle che hai modificato di recente saranno mostrate qui."]},{msgid:"Filter file list",msgstr:["Filtra l'elenco dei file"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['I nomi delle cartelle devono finire con "{extension}".']},{msgid:"Guest identification",msgstr:["Identificazione ospiti"]},{msgid:"Home",msgstr:["Home"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Se selezioni entrambe le versioni, al nome del file in arrivo verrà aggiunto un numero."]},{msgid:"Invalid folder name.",msgstr:["Nome cartella non valido."]},{msgid:"Invalid name.",msgstr:["Nome non valido."]},{msgid:"Last modified date unknown",msgstr:["Data di ultima modifica sconosciuta"]},{msgid:"Modified",msgstr:["Modificato"]},{msgid:"Move",msgstr:["Sposta"]},{msgid:"Move to {target}",msgstr:["Sposta in {target}"]},{msgid:"Name",msgstr:["Nome"]},{msgid:"Names may be at most 64 characters long.",msgstr:["I nomi dovrebbero avere una lunghezza massima di 64 caratteri."]},{msgid:"Names must not be empty.",msgstr:["I nomi non devono essere vuoti."]},{msgid:'Names must not end with "{extension}".',msgstr:['I nomi devono finire con "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["I nomi non possono iniziare con un punto."]},{msgid:"New",msgstr:["Nuovo"]},{msgid:"New folder",msgstr:["Nuova cartella"]},{msgid:"New folder name",msgstr:["Nome della nuova cartella"]},{msgid:"New version",msgstr:["Nuova versione"]},{msgid:"No files in here",msgstr:["Nessun file qui"]},{msgid:"No files matching your filter were found.",msgstr:["Nessun file che corrisponde al tuo filtro è stato trovato."]},{msgid:"No matching files",msgstr:["Nessun file corrispondente"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Digita un nome con almeno 2 caratteri."]},{msgid:"Recent",msgstr:["Recente"]},{msgid:"Select all checkboxes",msgstr:["Seleziona tutte le caselle"]},{msgid:"Select all entries",msgstr:["Scegli tutte le voci"]},{msgid:"Select all existing files",msgstr:["Seleziona tutti i file esistenti"]},{msgid:"Select all new files",msgstr:["Seleziona tutti i nuovi file"]},{msgid:"Select entry",msgstr:["Seleziona la voce"]},{msgid:"Select the row for {nodename}",msgstr:["Seleziona la riga per {nodename}"]},{msgid:"Size",msgstr:["Dimensioni"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Salta %n file","Salta %n file","Salta %n file"]},{msgid:"Skip this file",msgstr:["Salta questo file"]},{msgid:"Submit name",msgstr:["Invia nome"]},{msgid:"Undo",msgstr:["Annulla"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Carica qualche contenuto o sincronizza con i tuoi dispositivi!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Quando si seleziona una cartella in arrivo, anche tutti i file in conflitto al suo interno saranno sovrascritti."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Quando si seleziona una cartella in arrivo, anche i documenti all'interno verranno sovrascritti."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Quando si seleziona una cartella in arrivo, il contenuto viene scritto nella cartella esistente e viene eseguita una risoluzione ricorsiva dei conflitti."]},{msgid:"Which files do you want to keep?",msgstr:["Quali file vuoi conservare?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Sei attualmente identificato come {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Attualmente non sei identificato."]},{msgid:"You cannot leave the name empty.",msgstr:["Non puoi lasciare il nome vuoto."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Devi scegliere almeno una soluzione al conflitto"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Per continuare, è necessario selezionare almeno una versione di ciascun file."]}]},{language:"ja_JP",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['フォルダー名に "{char}" を使用することはできません。']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['名前に "{char}" を使用することはできません。']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" は許可された名前ではありません。']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" は予約名のため、使用できません。']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" は予約名のため、使用できません。']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%nファイルが競合しています"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%nディレクトリ{dirname}内のファイル競合"]},{msgid:"All files",msgstr:["すべてのファイル"]},{msgid:"Cancel",msgstr:["キャンセル"]},{msgid:"Cancel the entire operation",msgstr:["すべての操作をキャンセル"]},{msgid:"Choose",msgstr:["選択"]},{msgid:"Choose {file}",msgstr:["{file} を選択"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["%n 個のファイルを選択"]},{msgid:"Confirm",msgstr:["確認"]},{msgid:"Continue",msgstr:["続行"]},{msgid:"Copy",msgstr:["コピー"]},{msgid:"Copy to {target}",msgstr:["{target} にコピー"]},{msgid:"Could not create the new folder",msgstr:["新しいフォルダーを作成できませんでした"]},{msgid:"Could not load files settings",msgstr:["ファイル設定を読み込めませんでした"]},{msgid:"Could not load files views",msgstr:["ファイルビューを読み込めませんでした"]},{msgid:"Create directory",msgstr:["ディレクトリを作成"]},{msgid:"Current view selector",msgstr:["現在のビュー選択"]},{msgid:"Enter your name",msgstr:["名前を入力してください"]},{msgid:"Existing version",msgstr:["現行バージョン"]},{msgid:"Failed to set nickname.",msgstr:["ニックネームの設定に失敗しました。"]},{msgid:"Favorites",msgstr:["お気に入り"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["お気に入りとしてマークしたファイルとフォルダーがここに表示されます。"]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["最近変更したファイルとフォルダーがここに表示されます。"]},{msgid:"Filter file list",msgstr:["ファイルのリストをフィルター"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['フォルダー名の末尾に "{extension}" を使用できません。']},{msgid:"Guest identification",msgstr:["ゲスト識別"]},{msgid:"Home",msgstr:["ホーム"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["両方のバージョンを選択した場合、受信ファイル名には番号が追加されます。"]},{msgid:"Invalid folder name.",msgstr:["フォルダー名が無効です。"]},{msgid:"Invalid name.",msgstr:["無効な名前です。"]},{msgid:"Last modified date unknown",msgstr:["最終更新日不明"]},{msgid:"Modified",msgstr:["変更済み"]},{msgid:"Move",msgstr:["移動"]},{msgid:"Move to {target}",msgstr:["{target} に移動"]},{msgid:"Name",msgstr:["名前"]},{msgid:"Names may be at most 64 characters long.",msgstr:["名前は最大64文字です。"]},{msgid:"Names must not be empty.",msgstr:["名前は空にできません。"]},{msgid:'Names must not end with "{extension}".',msgstr:['名前の末尾に "{extension}" を使用できません。']},{msgid:"Names must not start with a dot.",msgstr:["ドットで始まる名前は使用できません。"]},{msgid:"New",msgstr:["新規作成"]},{msgid:"New folder",msgstr:["新しいフォルダー"]},{msgid:"New folder name",msgstr:["新しいフォルダーの名前"]},{msgid:"New version",msgstr:["新バージョン"]},{msgid:"No files in here",msgstr:["ファイルがありません"]},{msgid:"No files matching your filter were found.",msgstr:["フィルターに一致するファイルは見つかりませんでした。"]},{msgid:"No matching files",msgstr:["一致するファイルはありません"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["名前は2文字以上を入力してください。"]},{msgid:"Recent",msgstr:["最近"]},{msgid:"Select all checkboxes",msgstr:["すべてのチェックボックスを選択"]},{msgid:"Select all entries",msgstr:["すべてのエントリを選択"]},{msgid:"Select all existing files",msgstr:["既存のファイルをすべて選択"]},{msgid:"Select all new files",msgstr:["すべての新規ファイルを選択"]},{msgid:"Select entry",msgstr:["エントリを選択"]},{msgid:"Select the row for {nodename}",msgstr:["{nodename} の行を選択"]},{msgid:"Size",msgstr:["サイズ"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["%n 個のファイルをスキップ"]},{msgid:"Skip this file",msgstr:["このファイルをスキップ"]},{msgid:"Submit name",msgstr:["名前を送信する"]},{msgid:"Undo",msgstr:["元に戻す"]},{msgid:"Upload some content or sync with your devices!",msgstr:["コンテンツをアップロードするか、デバイスと同期してください!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["受信フォルダーを選択すると、そのフォルダー内の競合ファイルも上書きされます。"]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["受信フォルダを選択すると、その中のファイルも上書きされます。"]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["受信フォルダーを選択すると、内容は既存のフォルダーに書き込まれ、再帰的な競合解決が実行されます。"]},{msgid:"Which files do you want to keep?",msgstr:["どのファイルを残しますか?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["現在、{nickname}として識別されています。"]},{msgid:"You are currently not identified.",msgstr:["現在あなたは識別されていません。"]},{msgid:"You cannot leave the name empty.",msgstr:["名前を空にすることはできません。"]},{msgid:"You need to choose at least one conflict solution",msgstr:["少なくとも1つの競合ソリューションを選択する必要があります"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["続行するには、各ファイルのバージョンを少なくとも1つ選択する必要があります。"]}]},{language:"ko",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["문자 '{char}'은(는) 폴더 이름에 사용할 수 없습니다."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["문자 '{char}'은(는) 이름에 사용할 수 없습니다."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["'{extension}'은(는) 사용 불가능한 이름입니다."]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["'{segment}'은(는) 예약된 이름이므로 폴더 이름으로 사용할 수 없습니다."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["'{segment}'은(는) 예약된 이름이므로 사용할 수 없습니다."]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n개의 파일이 충돌함"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["{dirname}에서 %n개의 파일이 충돌함"]},{msgid:"All files",msgstr:["모든 파일"]},{msgid:"Cancel",msgstr:["취소"]},{msgid:"Cancel the entire operation",msgstr:["전체 작업 취소"]},{msgid:"Choose",msgstr:["선택"]},{msgid:"Choose {file}",msgstr:["{file} 선택"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["파일 %n개 선택"]},{msgid:"Confirm",msgstr:["확인"]},{msgid:"Continue",msgstr:["계속"]},{msgid:"Copy",msgstr:["복사"]},{msgid:"Copy to {target}",msgstr:["{target}(으)로 복사"]},{msgid:"Could not create the new folder",msgstr:["새 폴더를 만들 수 없음"]},{msgid:"Could not load files settings",msgstr:["파일 설정을 불러오지 못함"]},{msgid:"Could not load files views",msgstr:["파일 보기를 불러오지 못함"]},{msgid:"Create directory",msgstr:["디렉토리 만들기"]},{msgid:"Current view selector",msgstr:["현재 보기 방식"]},{msgid:"Enter your name",msgstr:["이름을 입력하세요"]},{msgid:"Existing version",msgstr:["기존 버전"]},{msgid:"Failed to set nickname.",msgstr:[`닉네임을 설정하지 못했습니다.  `]},{msgid:"Favorites",msgstr:["즐겨찾기"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["즐겨찾기 한 파일 및 폴더가 이곳에 표시됩니다."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["최근 수정된 파일 및 폴더가 이곳에 표시됩니다."]},{msgid:"Filter file list",msgstr:["파일 목록 필터링"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["폴더 이름은 '{extension}'(으)로 끝날 수 없습니다."]},{msgid:"Guest identification",msgstr:["게스트 확인"]},{msgid:"Home",msgstr:["홈"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["두 버전을 모두 선택할 경우 새로 추가되는 파일의 이름에 숫자가 붙게 됩니다."]},{msgid:"Invalid folder name.",msgstr:["잘못된 폴더 이름입니다."]},{msgid:"Invalid name.",msgstr:["잘못된 이름입니다. "]},{msgid:"Last modified date unknown",msgstr:["최근 수정일 알 수 없음"]},{msgid:"Modified",msgstr:["수정됨"]},{msgid:"Move",msgstr:["이동"]},{msgid:"Move to {target}",msgstr:["{target}(으)로 이동"]},{msgid:"Name",msgstr:["이름"]},{msgid:"Names may be at most 64 characters long.",msgstr:["이름은 최대 64글자까지 지정할 수 있습니다."]},{msgid:"Names must not be empty.",msgstr:["이름은 비어 있을 수 없습니다."]},{msgid:'Names must not end with "{extension}".',msgstr:["이름은 '{extension}'(으)로 끝날 수 없습니다."]},{msgid:"Names must not start with a dot.",msgstr:["이름은 마침표로 시작될 수 없습니다."]},{msgid:"New",msgstr:["새로 만들기"]},{msgid:"New folder",msgstr:["새 폴더"]},{msgid:"New folder name",msgstr:["새 폴더명"]},{msgid:"New version",msgstr:["새로운 버전"]},{msgid:"No files in here",msgstr:["파일이 없습니다"]},{msgid:"No files matching your filter were found.",msgstr:["선택된 필터에 해당하는 파일이 없습니다."]},{msgid:"No matching files",msgstr:["해당하는 파일 없음"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["최소 두 글자 이상의 이름을 입력해주세요."]},{msgid:"Recent",msgstr:["최근"]},{msgid:"Select all checkboxes",msgstr:["체크박스 모두 선택"]},{msgid:"Select all entries",msgstr:["모두 선택"]},{msgid:"Select all existing files",msgstr:["기존 파일 모두 선택"]},{msgid:"Select all new files",msgstr:["새 파일 모두 선택"]},{msgid:"Select entry",msgstr:["항목 선택"]},{msgid:"Select the row for {nodename}",msgstr:["{nodename}의 행 선택"]},{msgid:"Size",msgstr:["크기"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["%n개 파일 건너뛰기"]},{msgid:"Skip this file",msgstr:["이 파일 건너뛰기"]},{msgid:"Submit name",msgstr:["이름 제출"]},{msgid:"Undo",msgstr:["되돌리기"]},{msgid:"Upload some content or sync with your devices!",msgstr:["기기에서 파일을 업로드 또는 동기화하세요!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["새 폴더를 선택할 경우, 해당 폴더 내의 충돌 파일들도 덮어쓰기 됩니다."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["새 폴더를 선택할 경우 내용물이 기존 폴더에 기록되며 재귀적 충돌 해결이 수행됩니다."]},{msgid:"Which files do you want to keep?",msgstr:["어떤 파일들을 유지하시겠습니까?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["{nickname}(으)로 인증된 상태 입니다."]},{msgid:"You are currently not identified.",msgstr:["현재 인증 정보가 없습니다."]},{msgid:"You cannot leave the name empty.",msgstr:["이름은 비워 둘 수 없습니다. "]},{msgid:"You need to choose at least one conflict solution",msgstr:["최소한 하나의 충돌 해결 방안을 선택해야 합니다."]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["계속하기 위해서는 한 파일에 최소 하나의 버전을 선택해야 합니다."]}]},{language:"lb",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:["{name} ass en ongëlteg Dossier"]},{msgid:'"{name}" is not an allowed folder name',msgstr:["{name} ass net en erlaabten Dossiernumm"]},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" ass net an engem Dossier Numm erlaabt']},{msgid:"All files",msgstr:["All Dateien"]},{msgid:"Choose",msgstr:["Wielt"]},{msgid:"Choose {file}",msgstr:["Wielt {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Wielt %n Fichieren","Wielt %n Fichier"]},{msgid:"Copy",msgstr:["Kopie"]},{msgid:"Copy to {target}",msgstr:["Kopie op {target}"]},{msgid:"Could not create the new folder",msgstr:["Konnt den neien Dossier net erstellen"]},{msgid:"Could not load files settings",msgstr:["Konnt d'Dateienastellungen net lueden"]},{msgid:"Could not load files views",msgstr:["Konnt d'Dateien net lueden"]},{msgid:"Create directory",msgstr:["Erstellt Verzeechnes"]},{msgid:"Current view selector",msgstr:["Aktuell Vue selector"]},{msgid:"Favorites",msgstr:["Favoritten"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Dateien an Ordner, déi Dir als Favorit markéiert, ginn hei gewisen"]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Dateien an Ordner déi Dir viru kuerzem geännert hutt ginn hei op"]},{msgid:"Filter file list",msgstr:["Filter Datei Lëscht"]},{msgid:"Folder name cannot be empty.",msgstr:["Dossier Numm kann net eidel sinn"]},{msgid:"Home",msgstr:["Wëllkomm"]},{msgid:"Modified",msgstr:["Geännert"]},{msgid:"Move",msgstr:["Plënne"]},{msgid:"Move to {target}",msgstr:["Plënneren {target}"]},{msgid:"Name",msgstr:["Numm"]},{msgid:"New",msgstr:["Nei"]},{msgid:"New folder",msgstr:["Neien dossier"]},{msgid:"New folder name",msgstr:["Neien dossier numm"]},{msgid:"No files in here",msgstr:["Kee fichier hei"]},{msgid:"No files matching your filter were found.",msgstr:["Kee fichier deen äre filter passt gouf fonnt"]},{msgid:"No matching files",msgstr:["Keng passende dateien"]},{msgid:"Recent",msgstr:["Rezent"]},{msgid:"Select all entries",msgstr:["Wielt all entréen"]},{msgid:"Select entry",msgstr:["Wielt entrée"]},{msgid:"Select the row for {nodename}",msgstr:["Wielt d'zeil fir {nodename}"]},{msgid:"Size",msgstr:["Gréisst"]},{msgid:"Undo",msgstr:["Undoen"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Luet en inhalt erop oder synchroniséiert mat ären apparater"]}]},{language:"lo",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" ບໍ່ອະນຸຍາດໃຫ້ມີຢູ່ໃນຊື່ໂຟນເດີ.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['ບໍ່ອະນຸຍາດໃຫ້ມີ "{char}" ພາຍໃນຊື່.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" ບໍ່ແມ່ນຊື່ທີ່ໄດ້ຮັບອະນຸຍາດ.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" ແມ່ນຊື່ທີ່ສະຫງວນໄວ້ ແລະ ບໍ່ອະນຸຍາດໃຫ້ໃຊ້ເປັນຊື່ໂຟນເດີ.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" ແມ່ນຊື່ທີ່ສະຫງວນໄວ້ ແລະ ບໍ່ໄດ້ຮັບອະນຸຍາດ.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["ໄຟລ໌ຂັດກັນ %n ລາຍການ"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["ໄຟລ໌ຂັດກັນ %n ລາຍການໃນ {dirname}"]},{msgid:"All files",msgstr:["ໄຟລ໌ທັງໝົດ"]},{msgid:"Cancel",msgstr:["ຍົກເລີກ"]},{msgid:"Cancel the entire operation",msgstr:["ຍົກເລີກການດຳເນີນການທັງໝົດ"]},{msgid:"Choose",msgstr:["ເລືອກ"]},{msgid:"Choose {file}",msgstr:["ເລືອກ {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["ເລືອກ %n ໄຟລ໌"]},{msgid:"Confirm",msgstr:["ຢືນຢັນ"]},{msgid:"Continue",msgstr:["ດຳເນີນການຕໍ່"]},{msgid:"Copy",msgstr:["ຄັດລອກ"]},{msgid:"Copy to {target}",msgstr:["ຄັດລອກໄປທີ່ {target}"]},{msgid:"Could not create the new folder",msgstr:["ບໍ່ສາມາດສ້າງໂຟນເດີໃໝ່ໄດ້"]},{msgid:"Could not load files settings",msgstr:["ບໍ່ສາມາດໂຫຼດການຕັ້ງຄ່າໄຟລ໌ໄດ້"]},{msgid:"Could not load files views",msgstr:["ບໍ່ສາມາດໂຫຼດມຸມມອງໄຟລ໌ໄດ້"]},{msgid:"Create directory",msgstr:["ສ້າງໄດເຣັກທໍຣີ"]},{msgid:"Current view selector",msgstr:["ຕົວເລືອກມຸມມອງປັດຈຸບັນ"]},{msgid:"Enter your name",msgstr:["ປ້ອນຊື່ຂອງທ່ານ"]},{msgid:"Existing version",msgstr:["ເວີຊັນທີ່ມີຢູ່"]},{msgid:"Failed to set nickname.",msgstr:["ຕັ້ງຊື່ຫຼິ້ນບໍ່ສຳເລັດ."]},{msgid:"Favorites",msgstr:["ລາຍການທີ່ມັກ"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["ໄຟລ໌ ແລະ ໂຟນເດີທີ່ທ່ານໝາຍວ່າເປັນລາຍການທີ່ມັກຈະສະແດງຢູ່ບ່ອນນີ້."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["ໄຟລ໌ ແລະ ໂຟນເດີທີ່ທ່ານແກ້ໄຂລ່າສຸດຈະສະແດງຢູ່ບ່ອນນີ້."]},{msgid:"Filter file list",msgstr:["ກັ່ນຕອງລາຍການໄຟລ໌"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['ຊື່ໂຟນເດີຕ້ອງບໍ່ລົງທ້າຍດ້ວຍ "{extension}".']},{msgid:"Guest identification",msgstr:["ການລະບຸຕົວຕົນຂອງແຂກ"]},{msgid:"Home",msgstr:["ໜ້າຫຼັກ"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["ຖ້າທ່ານເລືອກທັງສອງເວີຊັນ, ໄຟລ໌ທີ່ເຂົ້າມາຈະມີຕົວເລກເພີ່ມໃສ່ຊື່ຂອງມັນ."]},{msgid:"Invalid folder name.",msgstr:["ຊື່ໂຟນເດີບໍ່ຖືກຕ້ອງ."]},{msgid:"Invalid name.",msgstr:["ຊື່ບໍ່ຖືກຕ້ອງ."]},{msgid:"Last modified date unknown",msgstr:["ບໍ່ຮູ້ວັນທີແກ້ໄຂລ່າສຸດ"]},{msgid:"Modified",msgstr:["ແກ້ໄຂເມື່ອ"]},{msgid:"Move",msgstr:["ຍ້າຍ"]},{msgid:"Move to {target}",msgstr:["ຍ້າຍໄປທີ່ {target}"]},{msgid:"Name",msgstr:["ຊື່"]},{msgid:"Names may be at most 64 characters long.",msgstr:["ຊື່ອາດມີຄວາມຍາວສູງສຸດ 64 ຕົວອັກສອນ."]},{msgid:"Names must not be empty.",msgstr:["ຊື່ຕ້ອງບໍ່ຫວ່າງເປົ່າ."]},{msgid:'Names must not end with "{extension}".',msgstr:['ຊື່ຕ້ອງບໍ່ລົງທ້າຍດ້ວຍ "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["ຊື່ຕ້ອງບໍ່ຂຶ້ນຕົ້ນດ້ວຍຈຸດ."]},{msgid:"New",msgstr:["ໃໝ່"]},{msgid:"New folder",msgstr:["ໂຟນເດີໃໝ່"]},{msgid:"New folder name",msgstr:["ຊື່ໂຟນເດີໃໝ່"]},{msgid:"New version",msgstr:["ເວີຊັນໃໝ່"]},{msgid:"No files in here",msgstr:["ບໍ່ມີໄຟລ໌ຢູ່ບ່ອນນີ້"]},{msgid:"No files matching your filter were found.",msgstr:["ບໍ່ພົບໄຟລ໌ທີ່ກົງກັບການກັ່ນຕອງຂອງທ່ານ."]},{msgid:"No matching files",msgstr:["ບໍ່ມີໄຟລ໌ທີ່ກົງກັນ"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["ກະລຸນາປ້ອນຊື່ທີ່ມີຢ່າງໜ້ອຍ 2 ຕົວອັກສອນ."]},{msgid:"Recent",msgstr:["ລ່າສຸດ"]},{msgid:"Select all checkboxes",msgstr:["ເລືອກກ່ອງໝາຍທັງໝົດ"]},{msgid:"Select all entries",msgstr:["ເລືອກທຸກລາຍການ"]},{msgid:"Select all existing files",msgstr:["ເລືອກໄຟລ໌ທີ່ມີຢູ່ທັງໝົດ"]},{msgid:"Select all new files",msgstr:["ເລືອກໄຟລ໌ໃໝ່ທັງໝົດ"]},{msgid:"Select entry",msgstr:["ເລືອກລາຍການ"]},{msgid:"Select the row for {nodename}",msgstr:["ເລືອກແຖວສຳລັບ {nodename}"]},{msgid:"Size",msgstr:["ຂະໜາດ"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["ຂ້າມ %n ໄຟລ໌"]},{msgid:"Skip this file",msgstr:["ຂ້າມໄຟລ໌ນີ້"]},{msgid:"Submit name",msgstr:["ສົ່ງຊື່"]},{msgid:"Undo",msgstr:["ເອົາຄືນ"]},{msgid:"Upload some content or sync with your devices!",msgstr:["ອັບໂຫຼດເນື້ອຫາ ຫຼື ຊິງຄ໌ກັບອຸປະກອນຂອງທ່ານ!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["ເມື່ອເລືອກໂຟນເດີທີ່ເຂົ້າມາ, ໄຟລ໌ໃດໆທີ່ຂັດກັນພາຍໃນໂຟນເດີນັ້ນກໍຈະຖືກຂຽນທັບເຊັ່ນກັນ."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["ເມື່ອເລືອກໂຟນເດີທີ່ເຂົ້າມາ, ເນື້ອຫາຈະຖືກຂຽນລົງໃນໂຟນເດີທີ່ມີຢູ່ ແລະ ຈະມີການແກ້ໄຂຂໍ້ຂັດແຍ່ງແບບຕໍ່ເນື່ອງ."]},{msgid:"Which files do you want to keep?",msgstr:["ທ່ານຕ້ອງການເກັບໄຟລ໌ໃດໄວ້?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["ຕອນນີ້ທ່ານຖືກລະບຸວ່າເປັນ {nickname}."]},{msgid:"You are currently not identified.",msgstr:["ຕອນນີ້ທ່ານຍັງບໍ່ໄດ້ຖືກລະບຸຕົວຕົນ."]},{msgid:"You cannot leave the name empty.",msgstr:["ທ່ານບໍ່ສາມາດປະຊື່ໃຫ້ຫວ່າງເປົ່າໄດ້."]},{msgid:"You need to choose at least one conflict solution",msgstr:["ທ່ານຈຳເປັນຕ້ອງເລືອກວິທີແກ້ໄຂຂໍ້ຂັດແຍ່ງຢ່າງໜ້ອຍໜຶ່ງຢ່າງ"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["ທ່ານຈຳເປັນຕ້ອງເລືອກຢ່າງໜ້ອຍໜຶ່ງເວີຊັນຂອງແຕ່ລະໄຟລ໌ເພື່ອດຳເນີນການຕໍ່."]}]},{language:"lt_LT",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["„{char}“ negalima naudoti aplanko pavadinime."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:["„{char}“ negalima naudoti vardo sudėtyje."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["„{extension}“ nėra leidžiamas vardas."]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["„{segment}“ yra rezervuotas vardas, kurio negalima naudoti aplankų pavadinimuose."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["„{segment}“ yra rezervuotas vardas, todėl jo naudoti negalima."]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n failo konfliktas","%n failų konfliktas","%n failų konfliktas","%n failų konfliktas"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n failo konfliktas {dirname}","%n failų konfliktas {dirname}","%n failų konfliktas {dirname}","%n failų konfliktas {dirname}"]},{msgid:"All files",msgstr:["Visi failai"]},{msgid:"Cancel",msgstr:["Atsisakyti"]},{msgid:"Cancel the entire operation",msgstr:["Atsisakyti visos operacijos"]},{msgid:"Choose",msgstr:["Pasirinkti"]},{msgid:"Choose {file}",msgstr:["Pasirinkti {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Pasirinkti %n failą","Pasirinkti %n failus","Pasirinkti %n failų","Pasirinkti %n failą"]},{msgid:"Confirm",msgstr:["Patvirtinti"]},{msgid:"Continue",msgstr:["Tęsti"]},{msgid:"Copy",msgstr:["Kopijuoti"]},{msgid:"Copy to {target}",msgstr:["Kopijuoti į {target}"]},{msgid:"Could not create the new folder",msgstr:["Nepavyko sukurti naujo aplanko"]},{msgid:"Could not load files settings",msgstr:["Nepavyko įkelti failų nustatymų"]},{msgid:"Could not load files views",msgstr:["Nepavyko įkelti failų peržiūrų"]},{msgid:"Create directory",msgstr:["Sukurti katalogą"]},{msgid:"Current view selector",msgstr:["Dabartinis peržiūros pasirinkimas"]},{msgid:"Enter your name",msgstr:["Įrašykite savo vardą"]},{msgid:"Existing version",msgstr:["Esama versija"]},{msgid:"Failed to set nickname.",msgstr:["Nepavyko nustatyti slapyvardžio"]},{msgid:"Favorites",msgstr:["Populiariausi"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Failai ir aplankai, kuriuos pažymėsite kaip mėgstamiausius, bus rodomi čia."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Čia bus rodomi failai ir aplankai, kuriuos neseniai pakeitėte."]},{msgid:"Filter file list",msgstr:["Filtruoti failų sąrašą"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["Aplankų pavadinimai neturi baigtis simboliu „{extension}“."]},{msgid:"Guest identification",msgstr:["Svečio identifikacija"]},{msgid:"Home",msgstr:["Pradžia"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Jei pasirinksite abi versijas, prie gaunamo failo pavadinimo bus pridėtas numeris."]},{msgid:"Invalid folder name.",msgstr:["Netinkamas aplanko pavadinimas."]},{msgid:"Invalid name.",msgstr:["Netinkamas pavadinimas."]},{msgid:"Last modified date unknown",msgstr:["Paskutinio atnaujinimo data nežinoma"]},{msgid:"Modified",msgstr:["Pakeista"]},{msgid:"Move",msgstr:["Perkelti"]},{msgid:"Move to {target}",msgstr:["Perkelti į {target}"]},{msgid:"Name",msgstr:["Vardas"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Vardų ilgis negali viršyti 64 simbolių."]},{msgid:"Names must not be empty.",msgstr:["Pavadinimai negali būti tušti."]},{msgid:'Names must not end with "{extension}".',msgstr:["Vardai neturi baigtis simboliu „{extension}“."]},{msgid:"Names must not start with a dot.",msgstr:["Vardai negali prasidėti tašku."]},{msgid:"New",msgstr:["Naujas"]},{msgid:"New folder",msgstr:["Naujas aplankas"]},{msgid:"New folder name",msgstr:["Naujas aplanko pavadinimas"]},{msgid:"New version",msgstr:["Nauja versija"]},{msgid:"No files in here",msgstr:["Čia failų nėra"]},{msgid:"No files matching your filter were found.",msgstr:["Nepavyko rasti failų pagal filtro nustatymus"]},{msgid:"No matching files",msgstr:["Nėra atitinkančių failų"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Įrašykite vardą iš mažiausiai dviejų ženklų."]},{msgid:"Recent",msgstr:["Nauji"]},{msgid:"Select all checkboxes",msgstr:["Pažymėti visus langelius"]},{msgid:"Select all entries",msgstr:["Žymėti visus įrašus"]},{msgid:"Select all existing files",msgstr:["Pažymėti visus esamus failus"]},{msgid:"Select all new files",msgstr:["Pažymėti visus naujus failus"]},{msgid:"Select entry",msgstr:["Žymėti įrašą"]},{msgid:"Select the row for {nodename}",msgstr:["Pasirinkite eilutę {nodename}"]},{msgid:"Size",msgstr:["Dydis"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Praleisti %n failą","Praleisti %n failus","Praleisti %n failų","Praleisti %n failą"]},{msgid:"Skip this file",msgstr:["Praleisti šį failą"]},{msgid:"Submit name",msgstr:["Pateikti pavadinimą"]},{msgid:"Undo",msgstr:["Atšaukti"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Įkelkite turinio arba sinchronizuokite su savo įrenginiais!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Pasirinkus įeinančių failų aplanką, jame esantys failai, su kuriais kyla konfliktas, taip pat bus perrašyti."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Pasirinkus gaunamų laiškų aplanką, visi jame esantys failai taip pat bus perrašyti."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Pasirinkus įeinančių failų aplanką, jo turinys įrašomas į esamą aplanką ir atliekamas rekursyvus konfliktų sprendimas."]},{msgid:"Which files do you want to keep?",msgstr:["Kokius failus norite išsaugoti?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Šiuo metu esate identifikuotas kaip {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Šiuo metu nesate identifikuotas."]},{msgid:"You cannot leave the name empty.",msgstr:["Negalite palikti tuščio vardo lauko."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Turite pasirinkti bent vieną konflikto sprendimo būdą"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Norėdami tęsti, turite pasirinkti bent vieną kiekvieno failo versiją."]}]},{language:"lv",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" nav derīgs mapes nosaukums.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" nav atļauts mapes nosaukums']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" nav atļauts mapes nosaukuma izmantošanā.']},{msgid:"All files",msgstr:["Visas datnes"]},{msgid:"Choose",msgstr:["Izvēlieties"]},{msgid:"Choose {file}",msgstr:["Izvēlieties {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Izvēlēties %n datņu","Izvēlēties %n datni","Izvēlēties %n datnes"]},{msgid:"Copy",msgstr:["Kopēt"]},{msgid:"Copy to {target}",msgstr:["Kopēt uz {target}"]},{msgid:"Could not create the new folder",msgstr:["Nevarēja izveidot jaunu mapi"]},{msgid:"Could not load files settings",msgstr:["Nevarēja ielādēt datņu iestatījumus"]},{msgid:"Could not load files views",msgstr:["Nevarēja ielādēt datņu apskatījumus"]},{msgid:"Create directory",msgstr:["Izveidot direktoriju"]},{msgid:"Current view selector",msgstr:["Pašreizēja skata atlasītājs"]},{msgid:"Favorites",msgstr:["Favorīti"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Šeit parādīsies datnes un mapes, kas tiks atzīmētas kā iecienītas."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Šeit parādīsies datnes un mapes, kuras nesen tika izmainītas."]},{msgid:"Filter file list",msgstr:["Atlasīt datņu sarakstu"]},{msgid:"Folder name cannot be empty.",msgstr:["Mapes nosaukums nevar būt tukšs."]},{msgid:"Home",msgstr:["Sākums"]},{msgid:"Modified",msgstr:["Izmaninīta"]},{msgid:"Move",msgstr:["Pārvietot"]},{msgid:"Move to {target}",msgstr:["Pārvietot uz {target}"]},{msgid:"Name",msgstr:["Nosaukums"]},{msgid:"New",msgstr:["Jauns"]},{msgid:"New folder",msgstr:["Jauna mape"]},{msgid:"New folder name",msgstr:["Jaunas mapes nosaukums"]},{msgid:"No files in here",msgstr:["Šeit nav datņu"]},{msgid:"No files matching your filter were found.",msgstr:["Netika atrasta neviena datne, kas atbilst atlasei."]},{msgid:"No matching files",msgstr:["Nav atbilstošu datņu"]},{msgid:"Recent",msgstr:["Nesenās"]},{msgid:"Select all entries",msgstr:["Atlasīt visus ierakstus"]},{msgid:"Select entry",msgstr:["Atlasīt ierakstu"]},{msgid:"Select the row for {nodename}",msgstr:["Atlasīt rindu {nodename}"]},{msgid:"Size",msgstr:["Izmērs"]},{msgid:"Undo",msgstr:["Atsaukt"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Augšupielādē kādu saturu vai sinhronizē savās iekārtās!"]}]},{language:"mk",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" не е дозволен во име на папка.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" не е дозволено во име.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" не е дозволено име.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" е резервирано име и не е дозволено за име на папка.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" е резервирано име и не е дозволено.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n конфликт со датотекa","%n конфликти со датотеки"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n конфликт со датотека во {dirname}","%n конфликти со датотеки vo {dirname}"]},{msgid:"All files",msgstr:["Сите датотеки"]},{msgid:"Cancel",msgstr:["Откажи"]},{msgid:"Cancel the entire operation",msgstr:["Прекини ја целата операција"]},{msgid:"Choose",msgstr:["Избери"]},{msgid:"Choose {file}",msgstr:["Избери {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Избери %n датотека","Избери %n датотеки"]},{msgid:"Confirm",msgstr:["Потврди"]},{msgid:"Continue",msgstr:["Продолжи"]},{msgid:"Copy",msgstr:["Копирај"]},{msgid:"Copy to {target}",msgstr:["Копирај во {target}"]},{msgid:"Could not create the new folder",msgstr:["Неможе да се креира нова папка"]},{msgid:"Could not load files settings",msgstr:["Неможе да се вчиаат параметрите за датотеките"]},{msgid:"Could not load files views",msgstr:["Неможе да се вчитаат погледите за датотеките"]},{msgid:"Create directory",msgstr:["Креирај папка"]},{msgid:"Current view selector",msgstr:["Избирач на тековен приказ"]},{msgid:"Enter your name",msgstr:["Внесете го вашето име"]},{msgid:"Existing version",msgstr:["Моментална верзија"]},{msgid:"Failed to set nickname.",msgstr:["Неуспешно поставување прекар."]},{msgid:"Favorites",msgstr:["Фаворити"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Датотеките и папките кој ќе ги означите за омилени ќе се појават овде."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Датотеките и папките кој неодамна сте ги измениле ќе се појават овде."]},{msgid:"Filter file list",msgstr:["Филтрирај листа на датотеки"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Имињата на папките неможе да завршуваат со "{extension}".']},{msgid:"Guest identification",msgstr:["Гостинска идентификација"]},{msgid:"Home",msgstr:["Почетна"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Ако ги избереш двете верзии, влезната датотека ќе добие број додаден на нејзиното име."]},{msgid:"Invalid folder name.",msgstr:["Невалидно име на папка."]},{msgid:"Invalid name.",msgstr:["Невалидно име."]},{msgid:"Last modified date unknown",msgstr:["Датумот на последна измена е непознат"]},{msgid:"Modified",msgstr:["Променето"]},{msgid:"Move",msgstr:["Премести"]},{msgid:"Move to {target}",msgstr:["Премести во {target}"]},{msgid:"Name",msgstr:["Име"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Имињата можат да бидат најмногу со 64 карактери."]},{msgid:"Names must not be empty.",msgstr:["Имињата неможе да бидат празни."]},{msgid:'Names must not end with "{extension}".',msgstr:['Имињата неможе да завршуваат со "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Имињата неможе да започнуваат со точка."]},{msgid:"New",msgstr:["Нова"]},{msgid:"New folder",msgstr:["Нова папка"]},{msgid:"New folder name",msgstr:["Ново име на папка"]},{msgid:"New version",msgstr:["Нова верзија"]},{msgid:"No files in here",msgstr:["Овде нема датотеки"]},{msgid:"No files matching your filter were found.",msgstr:["Не се пронајдени датотеки што одговараат на вашиот филтер."]},{msgid:"No matching files",msgstr:["Нема датотеки што се совпаѓаат"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Внесете име со најмалку 2 карактери."]},{msgid:"Recent",msgstr:["Неодамнешни"]},{msgid:"Select all checkboxes",msgstr:["Избери ги сите полиња за избор"]},{msgid:"Select all entries",msgstr:["Изберете ги сите записи"]},{msgid:"Select all existing files",msgstr:["Изберете ги сите постоечки датотеки"]},{msgid:"Select all new files",msgstr:["Изберете ги сите нови датотеки"]},{msgid:"Select entry",msgstr:["Избери запис"]},{msgid:"Select the row for {nodename}",msgstr:["Избери ред за {nodename}"]},{msgid:"Size",msgstr:["Големина"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Прескокни %n датотека","Прескокни %n датотеки"]},{msgid:"Skip this file",msgstr:["Прескокни ја оваа датотека"]},{msgid:"Submit name",msgstr:["Испрати име"]},{msgid:"Undo",msgstr:["Врати"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Прикачи содржина или синхронизирај со ваши уреди!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Кога е избрана влезна папка, сите конфликтни датотеки во неа исто така ќе бидат препишани."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Кога е избрана влезна папка, содржината се запишува во постоечката папка и се извршува рекурсивно решавање на конфликти."]},{msgid:"Which files do you want to keep?",msgstr:["Кој датотеки сакаш да ги зачуваш?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Моментално сте идентификувани како {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Моментално не сте идентификувани."]},{msgid:"You cannot leave the name empty.",msgstr:["Не можете да го оставите името празно."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Треба да избереш најмалку едно решение за конфликт"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Треба да избереш најмалку една верзија за секоја датотека за да продолжи."]}]},{language:"ms_MY",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" adalah nama folder yang tidak sesuai ']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" nama folder yang tidak dibenarkan']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" tidak dibenarkan dalam nama folder']},{msgid:"All files",msgstr:["Semua fail"]},{msgid:"Choose",msgstr:["Pilih"]},{msgid:"Choose {file}",msgstr:["Pilih {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Pilih fail %n"]},{msgid:"Copy",msgstr:["menyalin"]},{msgid:"Copy to {target}",msgstr:["menyalin ke {target}"]},{msgid:"Could not create the new folder",msgstr:["Tidak dapat mewujudkan folder baharu"]},{msgid:"Could not load files settings",msgstr:["Tidak dapat memuatkan tetapan fail"]},{msgid:"Could not load files views",msgstr:["Tidak dapat memuatkan paparan fail"]},{msgid:"Create directory",msgstr:["mewujudkan direktori"]},{msgid:"Current view selector",msgstr:["pemilih pandangan semasa"]},{msgid:"Favorites",msgstr:["Pilihan"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Fail dan folder yang anda tanda sebagai pilihan akan dipaparkan di sini."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Fail dan folder yang anda telah ubah suai baru-baru ini dipaparkan di sini."]},{msgid:"Filter file list",msgstr:["Menapis senarai fail"]},{msgid:"Folder name cannot be empty.",msgstr:["Nama folder tidak boleh kosong."]},{msgid:"Home",msgstr:["Utama"]},{msgid:"Modified",msgstr:["Ubah suai"]},{msgid:"Move",msgstr:["pindah"]},{msgid:"Move to {target}",msgstr:["pindah ke {target}"]},{msgid:"Name",msgstr:["Nama"]},{msgid:"New",msgstr:["Baru"]},{msgid:"New folder",msgstr:["Folder Baharu"]},{msgid:"New folder name",msgstr:["Nama folder baharu"]},{msgid:"No files in here",msgstr:["Tiada fail di sini"]},{msgid:"No files matching your filter were found.",msgstr:["Tiada fail yang sepadan dengan tapisan anda."]},{msgid:"No matching files",msgstr:["Tiada fail yang sepadan"]},{msgid:"Recent",msgstr:["baru-baru ini"]},{msgid:"Select all entries",msgstr:["Pilih semua entri"]},{msgid:"Select entry",msgstr:["Pilih entri"]},{msgid:"Select the row for {nodename}",msgstr:["memilih baris {nodename}"]},{msgid:"Size",msgstr:["Saiz"]},{msgid:"Undo",msgstr:["buat asal"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Muat naik beberapa kandungan atau selaras dengan peranti anda!"]}]},{language:"nb_NO",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" er ikke tillatt i et mappenavn.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" er ikke tillatt i et navn.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" er ikke et tillatt navn.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" er et reservert navn og er ikke tillatt for mappenavn.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" er et reservert navn og er ikke tillatt.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n filkonflikt","%n files conflict"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n fil konflikter i {dirname}","%n fil konflikter i {dirname}"]},{msgid:"All files",msgstr:["Alle filer"]},{msgid:"Cancel",msgstr:["Avbryt"]},{msgid:"Cancel the entire operation",msgstr:["Avbryt hele operasjonen"]},{msgid:"Choose",msgstr:["Velg"]},{msgid:"Choose {file}",msgstr:["Velg {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Velg %n fil","Velg %n filer"]},{msgid:"Confirm",msgstr:["Bekreft"]},{msgid:"Continue",msgstr:["Fortsett"]},{msgid:"Copy",msgstr:["Kopier"]},{msgid:"Copy to {target}",msgstr:["Kopier til {target}"]},{msgid:"Could not create the new folder",msgstr:["Kunne ikke opprette den nye mappen"]},{msgid:"Could not load files settings",msgstr:["Kunne ikke laste filinnstillinger"]},{msgid:"Could not load files views",msgstr:["Kunne ikke laste filvisninger"]},{msgid:"Create directory",msgstr:["Opprett mappe"]},{msgid:"Current view selector",msgstr:["Nåværende visningsvelger"]},{msgid:"Enter your name",msgstr:["Skriv inn navnet ditt"]},{msgid:"Existing version",msgstr:["Eksisterende versjon"]},{msgid:"Failed to set nickname.",msgstr:["Kunne ikke lagre kallenavnet."]},{msgid:"Favorites",msgstr:["Favoritter"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Filer og mapper du markerer som favoritter vil vises her."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Filer og mapper du nylig har endret, vil vises her."]},{msgid:"Filter file list",msgstr:["Filtrer filliste"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Mappenavn må ikke slutte med "{extension}".']},{msgid:"Guest identification",msgstr:["Gjesteidentifikasjon"]},{msgid:"Home",msgstr:["Hjem"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Hvis du velger begge versjonene, vil den innkommende filen få et nummer lagt til navnet sitt."]},{msgid:"Invalid folder name.",msgstr:["Ugyldig mappenavn."]},{msgid:"Invalid name.",msgstr:["Ugyldig navn."]},{msgid:"Last modified date unknown",msgstr:["Sist endret dato ukjent"]},{msgid:"Modified",msgstr:["Modifisert"]},{msgid:"Move",msgstr:["Flytt"]},{msgid:"Move to {target}",msgstr:["Flytt til {target}"]},{msgid:"Name",msgstr:["Navn"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Navn kan maksimalt være 64 tegn lange."]},{msgid:"Names must not be empty.",msgstr:["Navn kan ikke være tomme."]},{msgid:'Names must not end with "{extension}".',msgstr:['Navn kan ikke ende med "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Navn kan ikke starte med et punktum."]},{msgid:"New",msgstr:["Ny"]},{msgid:"New folder",msgstr:["Ny mappe"]},{msgid:"New folder name",msgstr:["Nytt mappenavn"]},{msgid:"New version",msgstr:["Ny versjon"]},{msgid:"No files in here",msgstr:["Ingen filer her"]},{msgid:"No files matching your filter were found.",msgstr:["Ingen filer funnet med ditt filter."]},{msgid:"No matching files",msgstr:["Ingen filer samsvarer"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Vennligst angi et navn som har minst 2 tegn."]},{msgid:"Recent",msgstr:["Nylige"]},{msgid:"Select all checkboxes",msgstr:["Merk av i alle avmerkingsboksene"]},{msgid:"Select all entries",msgstr:["Velg alle oppføringer"]},{msgid:"Select all existing files",msgstr:["Velg alle eksisterende filer"]},{msgid:"Select all new files",msgstr:["Velg alle nye filer"]},{msgid:"Select entry",msgstr:["Velg oppføring"]},{msgid:"Select the row for {nodename}",msgstr:["Velg raden for {nodename}"]},{msgid:"Size",msgstr:["Størrelse"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Hopp over %n fil","Hopp over %nfiler"]},{msgid:"Skip this file",msgstr:["Hopp over denne filen"]},{msgid:"Submit name",msgstr:["Bekreft navn"]},{msgid:"Undo",msgstr:["Angre"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Last opp innhold eller synkroniser med enhetene dine!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Når en innkommende mappe velges, vil eventuelle motstridende filer i den også bli overskrevet."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Når en innkommende mappe velges, vil eventuelle filer i den også bli overskrevet."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Når en innkommende mappe velges, skrives innholdet inn i den eksisterende mappen, og en rekursiv konfliktløsning utføres."]},{msgid:"Which files do you want to keep?",msgstr:["Hvilke filer vil du beholde?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Du er akkurat nå identifisert som {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Du er akkurat nå ikke identifisert."]},{msgid:"You cannot leave the name empty.",msgstr:["Du kan ikke la navnet være blankt."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Du må velge minst én konfliktløsning"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du må velge minst én versjon av hver fil for å fortsette."]}]},{language:"nl",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" is niet toegestaan in een mapnaam.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" kan niet gebruikt worden in de benaming.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" is geen toegestane naam.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" is een gereserveerde naam en niet toegestaan in mapnamen.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" is een gereserveerde naam en niet toegestaan.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n bestanden conflicteren","%nbestand bestanden conflicteren"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n bestand conflicteerd in {dirname}","%nbestanden conflicteert in {dirname}"]},{msgid:"All files",msgstr:["Alle bestanden"]},{msgid:"Cancel",msgstr:["Annuleren"]},{msgid:"Cancel the entire operation",msgstr:["Annuleer de hele bewerking"]},{msgid:"Choose",msgstr:["Kiezen"]},{msgid:"Choose {file}",msgstr:["Kies {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Kies %n bestand","Kies %n bestanden"]},{msgid:"Confirm",msgstr:["Bevestigen"]},{msgid:"Continue",msgstr:["Doorgaan"]},{msgid:"Copy",msgstr:["Kopiëren"]},{msgid:"Copy to {target}",msgstr:["Kopiëren naar {target}"]},{msgid:"Could not create the new folder",msgstr:["Kon de nieuwe map niet maken"]},{msgid:"Could not load files settings",msgstr:["Kon de bestandsinstellingen niet laden"]},{msgid:"Could not load files views",msgstr:["Kon de bestandsweergaves niet laden"]},{msgid:"Create directory",msgstr:["Map aanmaken"]},{msgid:"Current view selector",msgstr:["Huidige weergave keuze"]},{msgid:"Enter your name",msgstr:["Voer je naam in"]},{msgid:"Existing version",msgstr:["Bestaande versie"]},{msgid:"Failed to set nickname.",msgstr:["Kon geen bijnaam instellen."]},{msgid:"Favorites",msgstr:["Favorieten"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Bestanden en mappen die je als favoriet markeert, verschijnen hier."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Bestanden en mappen die je recentelijk hebt gewijzigd, verschijnen hier."]},{msgid:"Filter file list",msgstr:["Bestandslijst filteren"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Mapnamen mogen niet eindigen op "{extension}".']},{msgid:"Guest identification",msgstr:["Gastenidentificatie"]},{msgid:"Home",msgstr:["Thuis"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Als u beide versies selecteert wordt een nummer toegevoegd aan de naam van het binnenkomende bestand."]},{msgid:"Invalid folder name.",msgstr:["Ongeldige mapnaam."]},{msgid:"Invalid name.",msgstr:["Ongeldige naam."]},{msgid:"Last modified date unknown",msgstr:["Laatste wijzigingsdatum onbekend"]},{msgid:"Modified",msgstr:["Gewijzigd"]},{msgid:"Move",msgstr:["Verplaatsen"]},{msgid:"Move to {target}",msgstr:["Verplaatsen naar {target}"]},{msgid:"Name",msgstr:["Naam"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Namen mogen maximaal 64 tekens lang zijn."]},{msgid:"Names must not be empty.",msgstr:["Namen mogen niet leeg zijn."]},{msgid:'Names must not end with "{extension}".',msgstr:['Namen mogen niet eindigen met "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Namen mogen niet begonnen met een punt."]},{msgid:"New",msgstr:["Nieuw"]},{msgid:"New folder",msgstr:["Nieuwe map"]},{msgid:"New folder name",msgstr:["Nieuwe mapnaam"]},{msgid:"New version",msgstr:["Nieuwe versie"]},{msgid:"No files in here",msgstr:["Geen bestanden hier"]},{msgid:"No files matching your filter were found.",msgstr:["Geen bestanden gevonden die voldoen aan je filter."]},{msgid:"No matching files",msgstr:["Geen overeenkomende bestanden"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Voer een naam in met minimaal 2 tekens."]},{msgid:"Recent",msgstr:["Recent"]},{msgid:"Select all checkboxes",msgstr:["Selecteer alle aanvinkopties"]},{msgid:"Select all entries",msgstr:["Alle invoer selecteren"]},{msgid:"Select all existing files",msgstr:["Selecteer alle bestaande bestanden"]},{msgid:"Select all new files",msgstr:["Selecteer alle nieuwe bestanden"]},{msgid:"Select entry",msgstr:["Invoer selecteren"]},{msgid:"Select the row for {nodename}",msgstr:["Selecteer de rij voor {nodename}"]},{msgid:"Size",msgstr:["Grootte"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Sla %n bestand over","Sla %n bestanden over"]},{msgid:"Skip this file",msgstr:["Sla dit bestand over"]},{msgid:"Submit name",msgstr:["Naam indienen"]},{msgid:"Undo",msgstr:["Ongedaan maken"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Upload inhoud of synchroniseer met je apparaten!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Als een inkomende map wordt geselecteerd, worden alle conflicterende bestanden daarin overschreven."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Wanneer een inkomende folder is geselecteerd, worden bestanden in deze folder ook overschreven."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Als een inkomende map wordt geselecteerd, wordt de inhoud naar de bestaande map geschreven en wordt een recursieve conflict-oplossing uitgevoerd."]},{msgid:"Which files do you want to keep?",msgstr:["Welke bestanden wilt u bewaren?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Je wordt momenteel geïdentificeerd als {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Je bent momenteel niet geïdentificeerd."]},{msgid:"You cannot leave the name empty.",msgstr:["Je kunt de naam niet leeg laten."]},{msgid:"You need to choose at least one conflict solution",msgstr:["U moet in elk geval een conflictoplossing kiezen"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["U moet minstens een versie van elk bestand kiezen om door te gaan. "]}]},{language:"pl",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['Znak "{char}" nie jest dozwolony w nazwie folderu.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" nie jest dozwolone w nazwie.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" nie jest dozwoloną nazwą.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" jest nazwą zastrzeżoną i nie jest dozwolona jako nazwa folderu.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" jest zastrzeżoną nazwą i nie jest dozwolone.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["Konflikt pliku","Konflikt %n plików","Konflikt %n plików","Konflikt %n plików"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n konfliktów pliku w {dirname}","%n konfliktów plików w {dirname}","%n konfliktów plików w {dirname}","%n konfliktów plików w {dirname}"]},{msgid:"All files",msgstr:["Wszystkie pliki"]},{msgid:"Cancel",msgstr:["Anuluj"]},{msgid:"Cancel the entire operation",msgstr:["Anuluj całą operację"]},{msgid:"Choose",msgstr:["Wybierz"]},{msgid:"Choose {file}",msgstr:["Wybierz {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Wybierz %n plik","Wybierz %n pliki","Wybierz %n plików","Wybierz %n plików"]},{msgid:"Confirm",msgstr:["Potwierdź"]},{msgid:"Continue",msgstr:["Kontynuuj"]},{msgid:"Copy",msgstr:["Kopiuj"]},{msgid:"Copy to {target}",msgstr:["Skopiuj do {target}"]},{msgid:"Could not create the new folder",msgstr:["Nie można utworzyć nowego folderu"]},{msgid:"Could not load files settings",msgstr:["Nie można wczytać ustawień plików"]},{msgid:"Could not load files views",msgstr:["Nie można wczytać widoków plików"]},{msgid:"Create directory",msgstr:["Utwórz katalog"]},{msgid:"Current view selector",msgstr:["Bieżący selektor widoku"]},{msgid:"Enter your name",msgstr:["Wprowadź nazwę"]},{msgid:"Existing version",msgstr:["Istniejąca wersja"]},{msgid:"Failed to set nickname.",msgstr:["Nie udało się utworzyć pseudonimu."]},{msgid:"Favorites",msgstr:["Ulubione"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Pliki i foldery które oznaczysz jako ulubione będą wyświetlały się tutaj"]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Pliki i foldery które ostatnio modyfikowałeś będą wyświetlały się tutaj"]},{msgid:"Filter file list",msgstr:["Filtruj listę plików"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Nazwy folderów nie mogą kończyć się na "{extension}".']},{msgid:"Guest identification",msgstr:["Identyfikacja gościa"]},{msgid:"Home",msgstr:["Strona główna"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Jeśli wybierzesz obie wersje, do nazwy przychodzącego pliku zostanie dodany numer."]},{msgid:"Invalid folder name.",msgstr:["Nieprawidłowa nazwa folderu."]},{msgid:"Invalid name.",msgstr:["Nieprawidłowa nazwa."]},{msgid:"Last modified date unknown",msgstr:["Data ostatniej modyfikacji nieznana"]},{msgid:"Modified",msgstr:["Zmodyfikowano"]},{msgid:"Move",msgstr:["Przenieś"]},{msgid:"Move to {target}",msgstr:["Przejdź do {target}"]},{msgid:"Name",msgstr:["Nazwa"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Nazwy mogą mieć maksymalnie 64 znaki."]},{msgid:"Names must not be empty.",msgstr:["Nazwy nie mogą być puste."]},{msgid:'Names must not end with "{extension}".',msgstr:['Nazwy nie mogą kończyć się na "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Nazwy nie mogą zaczynać się od kropki."]},{msgid:"New",msgstr:["Nowy"]},{msgid:"New folder",msgstr:["Nowy folder"]},{msgid:"New folder name",msgstr:["Nowa nazwa folderu"]},{msgid:"New version",msgstr:["Nowa wersja"]},{msgid:"No files in here",msgstr:["Brak plików"]},{msgid:"No files matching your filter were found.",msgstr:["Nie znaleziono plików spełniających warunki filtru"]},{msgid:"No matching files",msgstr:["Brak pasujących plików"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Wprowadź nazwę zawierającą minimum 2 znaki."]},{msgid:"Recent",msgstr:["Ostatni"]},{msgid:"Select all checkboxes",msgstr:["Zaznacz wszystkie pola wyboru"]},{msgid:"Select all entries",msgstr:["Wybierz wszystkie wpisy"]},{msgid:"Select all existing files",msgstr:["Zaznacz wszystkie istniejące pliki"]},{msgid:"Select all new files",msgstr:["Zaznacz wszystkie nowe pliki"]},{msgid:"Select entry",msgstr:["Wybierz wpis"]},{msgid:"Select the row for {nodename}",msgstr:["Wybierz wiersz dla {nodename}"]},{msgid:"Size",msgstr:["Rozmiar"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Pomiń %n plik","Pomiń %n plików","Pomiń %n plików","Pomiń %n plików"]},{msgid:"Skip this file",msgstr:["Pomiń ten plik"]},{msgid:"Submit name",msgstr:["Zatwierdź nazwę"]},{msgid:"Undo",msgstr:["Cofnij"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Wyślij zawartość lub zsynchronizuj ze swoimi urządzeniami!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Po wybraniu przychodzącego folderu wszystkie konfliktujące pliki w jego obrębie również zostaną nadpisane."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Po wybraniu przychodzącego folderu jego zawartość zostanie zapisana w istniejącym folderze i zostanie przeprowadzone rekursywne rozwiązywanie konfliktów."]},{msgid:"Which files do you want to keep?",msgstr:["Które pliki chcesz zachować?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Obecnie jesteś zidentyfikowany jako {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Użytkownik nie został uwierzytelniony."]},{msgid:"You cannot leave the name empty.",msgstr:["Nazwa nie może być pusta."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Musisz wybrać co najmniej jedno rozwiązanie konfliktu"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Aby kontynuować, musisz wybrać co najmniej jedną wersję każdego pliku."]}]},{language:"pt_BR",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" não é permitido dentro de um nome de pasta.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" não é permitido dentro de um nome.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" não é um nome permitido.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" é um nome reservado e não permitido para nomes de pasta.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" é um nome reservado e não permitido.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n arquivo conflita","%n de arquivos conflitam","%n arquivos conflitam"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n conflito de arquivo em {dirname}","%n de conflitos de arquivos em {dirname}","%n conflitos de arquivos em {dirname}"]},{msgid:"All files",msgstr:["Todos os arquivos"]},{msgid:"Cancel",msgstr:["Cancelar"]},{msgid:"Cancel the entire operation",msgstr:["Cancelar toda a operação"]},{msgid:"Choose",msgstr:["Escolher"]},{msgid:"Choose {file}",msgstr:["Escolher {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Escolher %n arquivo","Escolher %n arquivos","Escolher %n arquivos"]},{msgid:"Confirm",msgstr:["Confirmar"]},{msgid:"Continue",msgstr:["Continuar"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar para {target}"]},{msgid:"Could not create the new folder",msgstr:["Não foi possível criar a nova pasta"]},{msgid:"Could not load files settings",msgstr:["Não foi possível carregar configurações de arquivos"]},{msgid:"Could not load files views",msgstr:["Não foi possível carregar visualições de arquivos"]},{msgid:"Create directory",msgstr:["Criar diretório"]},{msgid:"Current view selector",msgstr:["Seletor de visualização atual"]},{msgid:"Enter your name",msgstr:["Digite seu nome"]},{msgid:"Existing version",msgstr:["Versão existente"]},{msgid:"Failed to set nickname.",msgstr:["Falha ao definir apelido."]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Os arquivos e pastas que você marca como favoritos aparecerão aqui."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Arquivos e pastas que você modificou recentemente aparecerão aqui."]},{msgid:"Filter file list",msgstr:["Filtrar lista de arquivos"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Nomes de pasta não podem terminar com "{extension}".']},{msgid:"Guest identification",msgstr:["Identificação de convidados"]},{msgid:"Home",msgstr:["Início"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Se você selecionar ambas as versões, um número será adicionado ao nome do arquivo recebido."]},{msgid:"Invalid folder name.",msgstr:["Nome de pasta inválido."]},{msgid:"Invalid name.",msgstr:["Nome inválido."]},{msgid:"Last modified date unknown",msgstr:["Data da última modificação desconhecida"]},{msgid:"Modified",msgstr:["Modificado"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover para {target}"]},{msgid:"Name",msgstr:["Nome"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Os nomes podem ter no máximo 64 caracteres."]},{msgid:"Names must not be empty.",msgstr:["Nomes não podem estar vazios."]},{msgid:'Names must not end with "{extension}".',msgstr:['Nomes não podem terminar com "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Nomes não podem começar com um ponto."]},{msgid:"New",msgstr:["Novo"]},{msgid:"New folder",msgstr:["Nova pasta"]},{msgid:"New folder name",msgstr:["Novo nome de pasta"]},{msgid:"New version",msgstr:["Nova versão"]},{msgid:"No files in here",msgstr:["Nenhum arquivo aqui"]},{msgid:"No files matching your filter were found.",msgstr:["Nenhum arquivo correspondente ao seu filtro foi encontrado."]},{msgid:"No matching files",msgstr:["Nenhum arquivo correspondente"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Digite um nome com pelo menos 2 caracteres."]},{msgid:"Recent",msgstr:["Recente"]},{msgid:"Select all checkboxes",msgstr:["Selecione todas as caixas de seleção"]},{msgid:"Select all entries",msgstr:["Selecionar todas as entradas"]},{msgid:"Select all existing files",msgstr:["Selecione todos os arquivos existentes"]},{msgid:"Select all new files",msgstr:["Selecione todos os novos arquivos"]},{msgid:"Select entry",msgstr:["Selecionar entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Selecionar a linha para {nodename}"]},{msgid:"Size",msgstr:["Tamanho"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Ignorar %n arquivo","Ignorar %n de arquivos","Ignorar %n arquivos"]},{msgid:"Skip this file",msgstr:["Ignorar este arquivo"]},{msgid:"Submit name",msgstr:["Enviar nome"]},{msgid:"Undo",msgstr:["Desfazer"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Faça upload de algum conteúdo ou sincronize com seus dispositivos!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Ao selecionar uma pasta de entrada, quaisquer arquivos conflitantes dentro dela também serão sobrescritos."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Quando uma pasta de entrada for selecionada, todos os arquivos nela contidos também serão substituídos."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Quando uma pasta de entrada é selecionada, o conteúdo é gravado na pasta existente e uma resolução recursiva de conflitos é realizada."]},{msgid:"Which files do you want to keep?",msgstr:["Quais arquivos você deseja manter?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Você está atualmente identificado como {nickname}."]},{msgid:"You are currently not identified.",msgstr:["No momento, você não está identificado."]},{msgid:"You cannot leave the name empty.",msgstr:["Você não pode deixar o nome vazio."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Você precisa escolher pelo menos uma solução para o conflito"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Você precisa selecionar pelo menos uma versão de cada arquivo para continuar."]}]},{language:"pt_PT",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" não é permitido dentro de um nome de pasta.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" não é permitido dentro de um nome.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" não é um nome permitido.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" é um nome reservado e não é permitido para nomes de pasta.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" é um nome reservado e não é permitido.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n ficheiro em conflito","%n ficheiros em conflito","%n ficheiros em conflito"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n ficheiro em conflito em {dirname}","%n ficheiros em conflito em {dirname}","%n ficheiros em conflito em {dirname}"]},{msgid:"All files",msgstr:["Todos os ficheiros"]},{msgid:"Cancel",msgstr:["Cancelar"]},{msgid:"Cancel the entire operation",msgstr:["Cancelar toda a operação"]},{msgid:"Choose",msgstr:["Escolher"]},{msgid:"Choose {file}",msgstr:["Escolher {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Escolha %n ficheiro","Escolha %n ficheiros","Escolha %n ficheiros"]},{msgid:"Confirm",msgstr:["Confirmar"]},{msgid:"Continue",msgstr:["Continuar"]},{msgid:"Copy",msgstr:["Copiar"]},{msgid:"Copy to {target}",msgstr:["Copiar para {target}"]},{msgid:"Could not create the new folder",msgstr:["Não foi possível criar a nova pasta "]},{msgid:"Could not load files settings",msgstr:["Não foi possível carregar as definições dos ficheiros"]},{msgid:"Could not load files views",msgstr:["Não foi possível carregar as visualizações dos ficheiros"]},{msgid:"Create directory",msgstr:["Criar pasta"]},{msgid:"Current view selector",msgstr:["Seletor de visualização atual"]},{msgid:"Enter your name",msgstr:["Introduza o seu nome"]},{msgid:"Existing version",msgstr:["Versão existente"]},{msgid:"Failed to set nickname.",msgstr:["Falha ao definir o nome alternativo."]},{msgid:"Favorites",msgstr:["Favoritos"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Os ficheiros e as pastas que marcar como favoritos aparecerão aqui."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Os ficheiros e as pastas que modificou recentemente aparecerão aqui."]},{msgid:"Filter file list",msgstr:["Filtrar lista de ficheiros"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Nomes de pasta não podem terminar em "{extension}".']},{msgid:"Guest identification",msgstr:["Identificação de convidado"]},{msgid:"Home",msgstr:["Início"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Se você selecionar ambas as versões, um número será adicionado ao nome do ficheiro recebido."]},{msgid:"Invalid folder name.",msgstr:["Nome de pasta inválido."]},{msgid:"Invalid name.",msgstr:["Nome inválido."]},{msgid:"Last modified date unknown",msgstr:["Data da última modificação desconhecida"]},{msgid:"Modified",msgstr:["Modificado"]},{msgid:"Move",msgstr:["Mover"]},{msgid:"Move to {target}",msgstr:["Mover para {target}"]},{msgid:"Name",msgstr:["Nome"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Os nomes podem ter no máximo 64 caracteres."]},{msgid:"Names must not be empty.",msgstr:["O nome não pode ficar em branco."]},{msgid:'Names must not end with "{extension}".',msgstr:['Nomes não podem terminar em "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Os nomes não podem começar por um ponto."]},{msgid:"New",msgstr:["Novo"]},{msgid:"New folder",msgstr:["Nova pasta"]},{msgid:"New folder name",msgstr:["Novo nome da pasta"]},{msgid:"New version",msgstr:["Nova versão"]},{msgid:"No files in here",msgstr:["Sem ficheiros aqui"]},{msgid:"No files matching your filter were found.",msgstr:["Não foi encontrado nenhum ficheiro correspondente ao seu filtro."]},{msgid:"No matching files",msgstr:["Nenhum ficheiro correspondente"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Introduza um nome com, pelo menos, 2 caracteres."]},{msgid:"Recent",msgstr:["Recentes"]},{msgid:"Select all checkboxes",msgstr:["Selecione todas as caixas de seleção"]},{msgid:"Select all entries",msgstr:["Selecionar todas as entradas"]},{msgid:"Select all existing files",msgstr:["Selecione todos os ficheiros existentes"]},{msgid:"Select all new files",msgstr:["Selecione todos os novos ficheiros"]},{msgid:"Select entry",msgstr:["Selecionar entrada"]},{msgid:"Select the row for {nodename}",msgstr:["Selecione a linha para {nodename}"]},{msgid:"Size",msgstr:["Tamanho"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Ignorar %n ficheiro","Ignorar %n ficheiros","Ignorar %n ficheiros"]},{msgid:"Skip this file",msgstr:["Ignorar este ficheiro"]},{msgid:"Submit name",msgstr:["Submeter nome"]},{msgid:"Undo",msgstr:["Anular"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Envie algum conteúdo ou sincronize com os seus dispositivos!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Ao selecionar uma pasta de entrada, quaisquer ficheiros conflituantes dentro da mesma serão também sobrescritos."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Ao selecionar uma pasta de entrada, todos os ficheiros nela contidos serão também sobrescritos."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Quando uma pasta de entrada é selecionada, o conteúdo é gravado na pasta existente e é realizada uma resolução recursiva de conflitos."]},{msgid:"Which files do you want to keep?",msgstr:["Quais os ficheiros que deseja manter?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Atualmente está identificado como {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Atualmente, não está identificado."]},{msgid:"You cannot leave the name empty.",msgstr:["Não pode deixar o nome em branco."]},{msgid:"You need to choose at least one conflict solution",msgstr:["É preciso escolher pelo menos uma solução para o conflito."]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["É necessário selecionar pelo menos uma versão de cada ficheiro para continuar."]}]},{language:"ro",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" este un nume de director invalid.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" nu este un nume de director permis']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" nu este permis în numele unui director.']},{msgid:"All files",msgstr:["Toate fișierele"]},{msgid:"Choose",msgstr:["Alege"]},{msgid:"Choose {file}",msgstr:["Alege {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Alege %n fișier","Alege %n fișiere","Alege %n fișiere"]},{msgid:"Copy",msgstr:["Copiază"]},{msgid:"Copy to {target}",msgstr:["Copiază în {target}"]},{msgid:"Could not create the new folder",msgstr:["Nu s-a putut crea noul director"]},{msgid:"Could not load files settings",msgstr:["Nu s-au putut încărca setările fișierelor"]},{msgid:"Could not load files views",msgstr:["Nu s-au putut încărca vizualizările fișierelor"]},{msgid:"Create directory",msgstr:["Creează director"]},{msgid:"Current view selector",msgstr:["Selectorul curent al vizualizării"]},{msgid:"Favorites",msgstr:["Favorite"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Fișiere și directoare pe care le marcați ca favorite vor apărea aici."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Fișiere și directoare pe care le-ați modificat recent vor apărea aici."]},{msgid:"Filter file list",msgstr:["Filtrează lista de fișiere"]},{msgid:"Folder name cannot be empty.",msgstr:["Numele de director nu poate fi necompletat."]},{msgid:"Home",msgstr:["Acasă"]},{msgid:"Modified",msgstr:["Modificat"]},{msgid:"Move",msgstr:["Mută"]},{msgid:"Move to {target}",msgstr:["Mută către {target}"]},{msgid:"Name",msgstr:["Nume"]},{msgid:"New",msgstr:["Nou"]},{msgid:"New folder",msgstr:["Director nou"]},{msgid:"New folder name",msgstr:["Numele noului director"]},{msgid:"No files in here",msgstr:["Nu există fișiere"]},{msgid:"No files matching your filter were found.",msgstr:["Nu există fișiere potrivite pentru filtrul selectat"]},{msgid:"No matching files",msgstr:["Nu există fișiere potrivite"]},{msgid:"Recent",msgstr:["Recente"]},{msgid:"Select all entries",msgstr:["Selectează toate înregistrările"]},{msgid:"Select entry",msgstr:["Selectează înregistrarea"]},{msgid:"Select the row for {nodename}",msgstr:["Selectează rândul pentru {nodename}"]},{msgid:"Size",msgstr:["Mărime"]},{msgid:"Undo",msgstr:["Anulează"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Încărcați conținut sau sincronizați cu dispozitivele dumneavoastră!"]}]},{language:"ru",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" не допускается в названии папки.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" не допускается внутри имени.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" — недопустимое имя.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" — зарезервированное имя, недопустимое для имени папки.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" — зарезервированное и недопустимое имя.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n конфликт файла","%n конфликта файлов","%n конфликтов файлов","%n конфликтов файлов"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n конфликт файлов в {dirname}","%n конфликта файлов в {dirname}","%n конфликтов файлов в {dirname}","%n конфликтов файлов в {dirname}"]},{msgid:"All files",msgstr:["Все файлы"]},{msgid:"Cancel",msgstr:["Отмена"]},{msgid:"Cancel the entire operation",msgstr:["Отменить всю операцию"]},{msgid:"Choose",msgstr:["Выбрать"]},{msgid:"Choose {file}",msgstr:["Выбрать «{file}»"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Выбрать %n файл","Выбрать %n файла","Выбрать %n файлов","Выбрать %n файлов"]},{msgid:"Confirm",msgstr:["Подтвердить"]},{msgid:"Continue",msgstr:["Продолжить"]},{msgid:"Copy",msgstr:["Копировать"]},{msgid:"Copy to {target}",msgstr:["Копировать в «{target}»"]},{msgid:"Could not create the new folder",msgstr:["Не удалось создать новую папку"]},{msgid:"Could not load files settings",msgstr:["Не удалось загрузить настройки файлов"]},{msgid:"Could not load files views",msgstr:["Не удалось загрузить конфигурацию просмотра файлов"]},{msgid:"Create directory",msgstr:["Создать папку"]},{msgid:"Current view selector",msgstr:["Переключатель текущего вида"]},{msgid:"Enter your name",msgstr:["Введите ваше имя"]},{msgid:"Existing version",msgstr:["Текущая версия"]},{msgid:"Failed to set nickname.",msgstr:["Не удалось задать никнейм."]},{msgid:"Favorites",msgstr:["Избранное"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Здесь будут отображаться файлы и папки, которые вы пометили как избранные."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Здесь будут отображаться файлы и папки, которые вы недавно изменили."]},{msgid:"Filter file list",msgstr:["Фильтровать список файлов"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Имена папок не могут оканчиваться на "{extension}".']},{msgid:"Guest identification",msgstr:["Гостевая идентификация"]},{msgid:"Home",msgstr:["Домой"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Если вы выберете обе версии, к имени входящего файла будет добавлен номер."]},{msgid:"Invalid folder name.",msgstr:["Недопустимое имя папки."]},{msgid:"Invalid name.",msgstr:["Недопустимое имя."]},{msgid:"Last modified date unknown",msgstr:["Дата последнего изменения неизвестна"]},{msgid:"Modified",msgstr:["Изменен"]},{msgid:"Move",msgstr:["Переместить"]},{msgid:"Move to {target}",msgstr:["Переместить в «{target}»"]},{msgid:"Name",msgstr:["Имя"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Имена не могут быть длиннее 64 символов."]},{msgid:"Names must not be empty.",msgstr:["Имена не могут быть пустыми."]},{msgid:'Names must not end with "{extension}".',msgstr:['Имена не могут оканчиваться на "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Имена не должны начинаться с точки."]},{msgid:"New",msgstr:["Новый"]},{msgid:"New folder",msgstr:["Новая папка"]},{msgid:"New folder name",msgstr:["Имя новой папки"]},{msgid:"New version",msgstr:["Новая версия"]},{msgid:"No files in here",msgstr:["Здесь нет файлов"]},{msgid:"No files matching your filter were found.",msgstr:["Файлы, соответствующие вашему фильтру, не найдены."]},{msgid:"No matching files",msgstr:["Нет подходящих файлов"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Введите имя длиной не менее 2 символов."]},{msgid:"Recent",msgstr:["Недавний"]},{msgid:"Select all checkboxes",msgstr:["Выбрать все флажки"]},{msgid:"Select all entries",msgstr:["Выбрать все записи"]},{msgid:"Select all existing files",msgstr:["Выбрать все существующие файлы"]},{msgid:"Select all new files",msgstr:["Выбрать все новые файлы"]},{msgid:"Select entry",msgstr:["Выбрать запись"]},{msgid:"Select the row for {nodename}",msgstr:["Выбрать строку для «{nodename}»"]},{msgid:"Size",msgstr:["Размер"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Пропустить %n файл","Пропустить %n файла","Пропустить %n файлов","Пропустить %n файлов"]},{msgid:"Skip this file",msgstr:["Пропустить файл"]},{msgid:"Submit name",msgstr:["Отправить имя"]},{msgid:"Undo",msgstr:["Отменить"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Загрузите контент или синхронизируйте его со своими устройствами!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Когда выбрана входящая папка, все конфликтующие файлы в ней также будут перезаписаны."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Когда выбрана входящая папка, все файлы в ней также будут перезаписаны."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Когда выбрана входящая папка, содержимое записывается в существующую папку и выполняется рекурсивное разрешение конфликтов."]},{msgid:"Which files do you want to keep?",msgstr:["Какие файлы вы хотите сохранить?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Вы идентифицированы как {nickname}."]},{msgid:"You are currently not identified.",msgstr:["В данный момент вы не идентифицированы."]},{msgid:"You cannot leave the name empty.",msgstr:["Вы не можете оставить имя пустым."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Вам нужно выбрать хотя бы одно решение конфликта"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Для продолжения вам нужно выбрать хотя бы одну версию каждого файла."]}]},{language:"sk_SK",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" nie je povolené v názve priečinka.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" nie je povolené v rámci mena.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" nie je povolený názov.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["„{segment}“ je rezervované meno a nie je povolené na názvy priečinkov."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" je rezervované meno a nie je povolené.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n konflikt súborov","%n konflikty súborov","%n konfliktov súborov","%n konflikty súborov"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n konflikt súborov v {dirname}","%n konflikty súborov v {dirname}","%n konfliktov súborov v {dirname}","%n konfliktov súborov v {dirname}"]},{msgid:"All files",msgstr:["Všetky súbory"]},{msgid:"Cancel",msgstr:["Zrušiť"]},{msgid:"Cancel the entire operation",msgstr:["Zrušiť celú operáciu"]},{msgid:"Choose",msgstr:["Vybrať"]},{msgid:"Choose {file}",msgstr:["Vybrať {súbor}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Vybraný %n súbor","Vybrané %n súbory","Vybraných %n súborov","Vybraných %n súborov"]},{msgid:"Confirm",msgstr:["Potvrdiť"]},{msgid:"Continue",msgstr:["Pokračovať"]},{msgid:"Copy",msgstr:["Kopírovať"]},{msgid:"Copy to {target}",msgstr:["Kopírovať do {umiestnenia}"]},{msgid:"Could not create the new folder",msgstr:["Nepodarilo sa vytvoriť nový priečinok"]},{msgid:"Could not load files settings",msgstr:["Nepodarilo sa načítať nastavenia súborov"]},{msgid:"Could not load files views",msgstr:["Nepodarilo sa načítať pohľady súborov"]},{msgid:"Create directory",msgstr:["Vytvoriť adresár"]},{msgid:"Current view selector",msgstr:["Výber aktuálneho zobrazenia"]},{msgid:"Enter your name",msgstr:["Zadajte svoje meno"]},{msgid:"Existing version",msgstr:["Existujúca verzia"]},{msgid:"Failed to set nickname.",msgstr:["Nepodarilo sa nastaviť prezývku."]},{msgid:"Favorites",msgstr:["Obľúbené"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Tu sa zobrazia súbory a priečinky, ktoré označíte ako obľúbené."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Tu sa zobrazia súbory a priečinky, ktoré ste nedávno upravili."]},{msgid:"Filter file list",msgstr:["Filtrovať zoznam súborov"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Názvy priečinkov nesmú končiť na "{extension}".']},{msgid:"Guest identification",msgstr:["Identifikácia hosťa"]},{msgid:"Home",msgstr:["Domov"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Ak vyberiete obe verzie, prichádzajúci súbor bude mať k svojmu názvu pridané číslo."]},{msgid:"Invalid folder name.",msgstr:["Neplatný názov priečinka."]},{msgid:"Invalid name.",msgstr:["Neplatné meno."]},{msgid:"Last modified date unknown",msgstr:["Posledná zmena dátumu neznáma"]},{msgid:"Modified",msgstr:["Upravené"]},{msgid:"Move",msgstr:["Prejsť"]},{msgid:"Move to {target}",msgstr:["Prejsť na {umiestnenie}"]},{msgid:"Name",msgstr:["Názov"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Mená môžu mať maximálne 64 znakov."]},{msgid:"Names must not be empty.",msgstr:["Mená nesmú byť prázdne."]},{msgid:'Names must not end with "{extension}".',msgstr:['Mená nesmú končiť "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Mená nesmú začínať bodkou."]},{msgid:"New",msgstr:["Pridať"]},{msgid:"New folder",msgstr:["Pridať priečinok"]},{msgid:"New folder name",msgstr:["Pridať názov priečinka"]},{msgid:"New version",msgstr:["Nová verzia"]},{msgid:"No files in here",msgstr:["Nie sú tu žiadne súbory"]},{msgid:"No files matching your filter were found.",msgstr:["Nenašli sa žiadne súbory zodpovedajúce vášmu filtru."]},{msgid:"No matching files",msgstr:["Žiadne zodpovedajúce súbory"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Zadajte meno s aspoň 2 znakmi."]},{msgid:"Recent",msgstr:["Nedávne"]},{msgid:"Select all checkboxes",msgstr:["Vyberte všetky zaškrtávacie políčka"]},{msgid:"Select all entries",msgstr:["Vybrať všetky položky"]},{msgid:"Select all existing files",msgstr:["Vybrať všetky existujúce súbory"]},{msgid:"Select all new files",msgstr:["Vybrať všetky nové súbory"]},{msgid:"Select entry",msgstr:["Vybrať položku"]},{msgid:"Select the row for {nodename}",msgstr:["Vyberte riadok pre {názov uzla}"]},{msgid:"Size",msgstr:["Veľkosť"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Preskočiť %n súbor","Preskočiť %n súbory","Preskočiť %n súborov","Preskočiť %n súbory"]},{msgid:"Skip this file",msgstr:["Preskočiť tento súbor"]},{msgid:"Submit name",msgstr:["Zadať meno"]},{msgid:"Undo",msgstr:["Späť"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Nahrajte nejaký obsah alebo synchronizujte so svojimi zariadeniami!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Keď je vybraná prichádzajúca složka, všetky konfliktné súbory v nej budú taktiež prepísané."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Keď je vybraná prichádzajúca zložka, obsah sa zapíše do existujúcej zložky a vykoná sa rekurzívne riešenie konfliktov."]},{msgid:"Which files do you want to keep?",msgstr:["Ktoré súbory chcete zachovať?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Momentálne ste identifikovaný ako {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Momentálne nie ste identifikovaný."]},{msgid:"You cannot leave the name empty.",msgstr:["Nemôžete nechať meno prázdne."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Musíte si vybrať aspoň jedno riešenie konfliktu."]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Musíte vybrať aspoň jednu verziu každého súboru, aby ste mohli pokračovať."]}]},{language:"sl",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:["{name} je neveljavno ime mape."]},{msgid:'"{name}" is not an allowed folder name',msgstr:["{name} ni dovoljeno ime mape"]},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" ni dovoljen v imenu mape.']},{msgid:"All files",msgstr:["Vse datoteke"]},{msgid:"Choose",msgstr:["Izberi"]},{msgid:"Choose {file}",msgstr:["Izberi {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Izberi %n datoteko","Izberi %n datoteki","Izberi %n datotek","Izberi %n datotek"]},{msgid:"Copy",msgstr:["Kopiraj"]},{msgid:"Copy to {target}",msgstr:["Kopiraj v {target}"]},{msgid:"Could not create the new folder",msgstr:["Nisem mogel ustvariti nove mape"]},{msgid:"Could not load files settings",msgstr:["NIsem mogel naložiti nastavitev datotek"]},{msgid:"Could not load files views",msgstr:["Nisem mogel naložiti pogledov datotek"]},{msgid:"Create directory",msgstr:["Ustvari mapo"]},{msgid:"Current view selector",msgstr:["Izbirnik trenutnega pogleda"]},{msgid:"Favorites",msgstr:["Priljubljene"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Datoteke in mape ki jih označite kot priljubljene se bodo prikazale tukaj."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Daoteke in mape ki ste jih pred kratkim spremenili se bodo prikazale tukaj."]},{msgid:"Filter file list",msgstr:["Filtriraj seznam datotek"]},{msgid:"Folder name cannot be empty.",msgstr:["Ime mape ne more biti prazno"]},{msgid:"Home",msgstr:["Domov"]},{msgid:"Modified",msgstr:["Spremenjeno"]},{msgid:"Move",msgstr:["Premakni"]},{msgid:"Move to {target}",msgstr:["Premakni v {target}"]},{msgid:"Name",msgstr:["Ime"]},{msgid:"New",msgstr:["Nov"]},{msgid:"New folder",msgstr:["Nova mapa"]},{msgid:"New folder name",msgstr:["Novo ime mape"]},{msgid:"No files in here",msgstr:["Tukaj ni datotek"]},{msgid:"No files matching your filter were found.",msgstr:["Ni bilo najdenih ujemajočih datotek glede na vaš filter."]},{msgid:"No matching files",msgstr:["Ni ujemajočih datotek"]},{msgid:"Recent",msgstr:["Nedavne"]},{msgid:"Select all entries",msgstr:["Izberi vse vnose"]},{msgid:"Select entry",msgstr:["Izberi vnos"]},{msgid:"Select the row for {nodename}",msgstr:["Izberi vrstico za {nodename}"]},{msgid:"Size",msgstr:["Velikost"]},{msgid:"Undo",msgstr:["Razveljavi"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Naloži nekaj vsebine ali sinhroniziraj s svojimi napravami!"]}]},{language:"sr",translations:[{msgid:'"{char}" is not allowed inside a name.',msgstr:["„{char}” није дозвољено унутар имена."]},{msgid:'"{extension}" is not an allowed name.',msgstr:["„{extension}” није дозвољено име."]},{msgid:'"{name}" is an invalid folder name.',msgstr:["„{name}” није исправно име фолдера."]},{msgid:'"{name}" is not an allowed folder name',msgstr:["„{name}” није дозвољено име за фолдер."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["„{segment}” је резервисано име и није дозвољено."]},{msgid:'"/" is not allowed inside a folder name.',msgstr:["„/” није дозвољено унутар имена фолдера."]},{msgid:"All files",msgstr:["Сви фајлови"]},{msgid:"Cancel",msgstr:["Откажи"]},{msgid:"Choose",msgstr:["Изаберите"]},{msgid:"Choose {file}",msgstr:["Изаберите {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Изаберите %n фајл","Изаберите %n фајла","Изаберите %n фајлова"]},{msgid:"Copy",msgstr:["Копирај"]},{msgid:"Copy to {target}",msgstr:["Копирај у {target}"]},{msgid:"Could not create the new folder",msgstr:["Није могао да се креира нови фолдер"]},{msgid:"Could not load files settings",msgstr:["Не могу да се учитају подешавања фајлова"]},{msgid:"Could not load files views",msgstr:["Не могу да се учитају прикази фајлова"]},{msgid:"Create directory",msgstr:["Креирај директоријум"]},{msgid:"Current view selector",msgstr:["Бирач тренутног приказа"]},{msgid:"Enter your name",msgstr:["Унесите своје име"]},{msgid:"Failed to set nickname.",msgstr:["Није успело постављање надимка."]},{msgid:"Favorites",msgstr:["Омиљено"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Овде ће се појавити фајлови и фолдери које сте означили као омиљене."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Овде ће се појавити фајлови и фолдери који се се недавно изменили."]},{msgid:"Filter file list",msgstr:["Фитрирање листе фајлова"]},{msgid:"Folder name cannot be empty.",msgstr:["Име фолдера не може бити празно."]},{msgid:"Guest identification",msgstr:["Идентификација госта"]},{msgid:"Home",msgstr:["Почетак"]},{msgid:"Invalid name.",msgstr:["Неисправно име."]},{msgid:"Modified",msgstr:["Измењено"]},{msgid:"Move",msgstr:["Премести"]},{msgid:"Move to {target}",msgstr:["Премести у {target}"]},{msgid:"Name",msgstr:["Име"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Највећа дужина имена може бити 64 карактера."]},{msgid:"Names must not be empty.",msgstr:["Имена не смеју да буду празна."]},{msgid:'Names must not end with "{extension}".',msgstr:["Имена не смеју да се завршавају на „{extension}”."]},{msgid:"Names must not start with a dot.",msgstr:["Имена не смеју да почињу тачком."]},{msgid:"New",msgstr:["Ново"]},{msgid:"New folder",msgstr:["Нови фолдер"]},{msgid:"New folder name",msgstr:["Име новог фолдера"]},{msgid:"No files in here",msgstr:["Овде нема фајлова"]},{msgid:"No files matching your filter were found.",msgstr:["Није пронађен ниједан фајл који задовољава ваш филтер."]},{msgid:"No matching files",msgstr:["Нема таквих фајлова"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Молимо вас да унесете име од барем два карактера."]},{msgid:"Recent",msgstr:["Скорашње"]},{msgid:"Select all entries",msgstr:["Изаберите све ставке"]},{msgid:"Select entry",msgstr:["Изаберите ставку"]},{msgid:"Select the row for {nodename}",msgstr:["Изаберите ред за {nodename}"]},{msgid:"Size",msgstr:["Величина"]},{msgid:"Submit name",msgstr:["Предај име"]},{msgid:"Undo",msgstr:["Поништи"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Отпремите нешто или синхронизујте са својим уређајима!"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Тренутно се идентификујете као {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Тренутно немате идентификацију."]},{msgid:"You cannot leave the name empty.",msgstr:["Име не можете да оставите празно."]}]},{language:"sr@latin",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:["„{name}” je neispravan naziv foldera."]},{msgid:'"{name}" is not an allowed folder name',msgstr:["„{name}” je nedozvoljen naziv foldera."]},{msgid:'"/" is not allowed inside a folder name.',msgstr:["„/” se ne može koristiti unutar naziva foldera."]},{msgid:"All files",msgstr:["Svi fajlovi"]},{msgid:"Choose",msgstr:["Izaberite"]},{msgid:"Choose {file}",msgstr:["Izaberite {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Izaberite %n fajl","Izaberite %n fajla","Izaberite %n fajlova"]},{msgid:"Copy",msgstr:["Kopiraj"]},{msgid:"Copy to {target}",msgstr:["Kopiraj u {target}"]},{msgid:"Could not create the new folder",msgstr:["Neuspešno kreiranje novog foldera"]},{msgid:"Could not load files settings",msgstr:["Neuspešno učitavanje podešavanja fajlova"]},{msgid:"Could not load files views",msgstr:["Neuspešno učitavanje prikaza fajlova"]},{msgid:"Create directory",msgstr:["Kreiraj direktorijum"]},{msgid:"Current view selector",msgstr:["Birač trenutnog prikaza"]},{msgid:"Favorites",msgstr:["Omiljeno"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Lista omiljenih fajlova i foldera."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Lista fajlova i foldera sa skorašnjim izmenama."]},{msgid:"Filter file list",msgstr:["Fitriranje liste fajlova"]},{msgid:"Folder name cannot be empty.",msgstr:["Naziv foldera ne može biti prazan."]},{msgid:"Home",msgstr:["Početak"]},{msgid:"Modified",msgstr:["Izmenjeno"]},{msgid:"Move",msgstr:["Premesti"]},{msgid:"Move to {target}",msgstr:["Premesti u {target}"]},{msgid:"Name",msgstr:["Naziv"]},{msgid:"New",msgstr:["Novo"]},{msgid:"New folder",msgstr:["Novi folder"]},{msgid:"New folder name",msgstr:["Naziv novog foldera"]},{msgid:"No files in here",msgstr:["Bez fajlova"]},{msgid:"No files matching your filter were found.",msgstr:["Nema fajlova koji zadovoljavaju uslove filtera."]},{msgid:"No matching files",msgstr:["Nema takvih fajlova"]},{msgid:"Recent",msgstr:["Skorašnje"]},{msgid:"Select all entries",msgstr:["Izaberite sve stavke"]},{msgid:"Select entry",msgstr:["Izaberite stavku"]},{msgid:"Select the row for {nodename}",msgstr:["Izaberite red za {nodename}"]},{msgid:"Size",msgstr:["Veličina"]},{msgid:"Undo",msgstr:["Vrati"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Otpremite sadržaj ili sinhronizujte sa svojim uređajima!"]}]},{language:"sv",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" är inte tillåtet i ett mappnamn.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" är inte tillåtet i ett namn.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" är inte ett tillåtet namn.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" är ett reserverat namn och inte tillåtet mappnamn.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" är ett reserverat namn och inte tillåtet.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n fil är i konflikt","%n filer är i konflikt"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n fil är i konflikt i {dirname}","%n filer är i konflikt i {dirname}"]},{msgid:"All files",msgstr:["Alla filer"]},{msgid:"Cancel",msgstr:["Avbryt"]},{msgid:"Cancel the entire operation",msgstr:["Avbryt hela operationen"]},{msgid:"Choose",msgstr:["Välj"]},{msgid:"Choose {file}",msgstr:["Välj {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Välj %n fil","Välj %n filer"]},{msgid:"Confirm",msgstr:["Bekräfta"]},{msgid:"Continue",msgstr:["Fortsätt"]},{msgid:"Copy",msgstr:["Kopiera"]},{msgid:"Copy to {target}",msgstr:["Kopiera till {target}"]},{msgid:"Could not create the new folder",msgstr:["Kunde inte skapa den nya mappen"]},{msgid:"Could not load files settings",msgstr:["Kunde inte ladda filinställningar"]},{msgid:"Could not load files views",msgstr:["Kunde inte ladda filvyer"]},{msgid:"Create directory",msgstr:["Skapa katalog"]},{msgid:"Current view selector",msgstr:["Aktuell vyväljare"]},{msgid:"Enter your name",msgstr:["Ange ditt namn"]},{msgid:"Existing version",msgstr:["Nuvarande version"]},{msgid:"Failed to set nickname.",msgstr:["Kunde inte ställa in smeknamn."]},{msgid:"Favorites",msgstr:["Favoriter"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Filer och mappar som du markerar som favorit kommer att visas här."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Filer och mappar som du nyligen ändrat kommer att visas här."]},{msgid:"Filter file list",msgstr:["Filtrera fillistan"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Mappnamn får inte sluta med "{extension}".']},{msgid:"Guest identification",msgstr:["Gästidentifiering"]},{msgid:"Home",msgstr:["Hem"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Om du väljer båda versionerna kommer den inkommande filen att få ett nummer tillagt i sitt namn."]},{msgid:"Invalid folder name.",msgstr:["Ogiltigt mappnamn."]},{msgid:"Invalid name.",msgstr:["Ogiltigt namn."]},{msgid:"Last modified date unknown",msgstr:["Senaste ändringsdatum okänt"]},{msgid:"Modified",msgstr:["Ändrad"]},{msgid:"Move",msgstr:["Flytta"]},{msgid:"Move to {target}",msgstr:["Flytta till {target}"]},{msgid:"Name",msgstr:["Namn"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Namnen kan vara högst 64 tecken långa."]},{msgid:"Names must not be empty.",msgstr:["Namn får inte vara tomt."]},{msgid:'Names must not end with "{extension}".',msgstr:['Namn får inte sluta med "{extension}".']},{msgid:"Names must not start with a dot.",msgstr:["Namn får inte börja med en punkt."]},{msgid:"New",msgstr:["Ny"]},{msgid:"New folder",msgstr:["Ny mapp"]},{msgid:"New folder name",msgstr:["Nytt mappnamn"]},{msgid:"New version",msgstr:["Ny version"]},{msgid:"No files in here",msgstr:["Inga filer här"]},{msgid:"No files matching your filter were found.",msgstr:["Inga filer som matchar ditt filter hittades."]},{msgid:"No matching files",msgstr:["Inga matchande filer"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Ange ett namn med minst 2 tecken."]},{msgid:"Recent",msgstr:["Nyligen"]},{msgid:"Select all checkboxes",msgstr:["Markera alla kryssrutor"]},{msgid:"Select all entries",msgstr:["Välj alla poster"]},{msgid:"Select all existing files",msgstr:["Välj alla befintliga filer"]},{msgid:"Select all new files",msgstr:["Välj alla nya filer"]},{msgid:"Select entry",msgstr:["Välj post"]},{msgid:"Select the row for {nodename}",msgstr:["Välj raden för {nodename}"]},{msgid:"Size",msgstr:["Storlek"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Hoppa över %n fil","Hoppa över %n filer"]},{msgid:"Skip this file",msgstr:["Hoppa över den här filen"]},{msgid:"Submit name",msgstr:["Skicka namn"]},{msgid:"Undo",msgstr:["Ångra"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Ladda upp lite innehåll eller synkronisera med dina enheter!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["När en inkommande mapp väljs kommer eventuella konflikterande filer i den också att skrivas över."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["När en inkommande mapp väljs kommer även filer i den att skrivas över."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["När en inkommande mapp väljs skrivs innehållet in i den befintliga mappen och en rekursiv konfliktlösning utförs."]},{msgid:"Which files do you want to keep?",msgstr:["Vilka filer vill du behålla?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Du är för närvarande identifierad som {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Du är för närvarande inte identifierad."]},{msgid:"You cannot leave the name empty.",msgstr:["Du kan inte lämna namnet tomt."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Du måste välja minst en konfliktlösning"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Du måste välja minst en version av varje fil för att fortsätta."]}]},{language:"tr",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['"{char}" karakteri bir klasör adında kullanılamaz.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['Bir ad içinde "{char}" karakteri kullanılamaz.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" adına izin verilmiyor.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:['"{segment}" adı sistem için ayrılmış olduğundan klasör adlarında kullanılamaz.']},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" adı sistem için ayrılmış olduğundan kullanılamaz.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n dosya çakışıyor","%n dosya çakışıyor"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["{dirname} içindeki %n dosya çakışıyor","{dirname} içindeki %n dosya çakışıyor"]},{msgid:"All files",msgstr:["Tüm dosyalar"]},{msgid:"Cancel",msgstr:["İptal"]},{msgid:"Cancel the entire operation",msgstr:["Tüm işlemi iptal et"]},{msgid:"Choose",msgstr:["Seçin"]},{msgid:"Choose {file}",msgstr:["{file} seçin"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["%n dosya seçin","%n dosya seçin"]},{msgid:"Confirm",msgstr:["Onayla"]},{msgid:"Continue",msgstr:["İlerle"]},{msgid:"Copy",msgstr:["Kopyala"]},{msgid:"Copy to {target}",msgstr:["{target} üzerine kopyala"]},{msgid:"Could not create the new folder",msgstr:["Yeni klasör oluşturulamadı"]},{msgid:"Could not load files settings",msgstr:["Dosyalar uygulamasının ayarları yüklenemedi"]},{msgid:"Could not load files views",msgstr:["Dosyalar uygulamasının görünümleri yüklenemedi"]},{msgid:"Create directory",msgstr:["Klasör oluştur"]},{msgid:"Current view selector",msgstr:["Geçerli görünüm seçici"]},{msgid:"Enter your name",msgstr:["Adınızı yazın"]},{msgid:"Existing version",msgstr:["Var olan sürüm"]},{msgid:"Failed to set nickname.",msgstr:["Takma ad ayarlanamadı."]},{msgid:"Favorites",msgstr:["Sık kullanılanlar"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Sık kullanılan olarak seçtiğiniz dosyalar burada görüntülenir."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Son zamanlarda değiştirdiğiniz dosya ve klasörler burada görüntülenir."]},{msgid:"Filter file list",msgstr:["Dosya listesini süz"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Klasör adları "{extension}" ile bitemez.']},{msgid:"Guest identification",msgstr:["Konuk kimliği"]},{msgid:"Home",msgstr:["Giriş"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["İki sürümü de seçerseniz, gelen dosyanın adına bir sayı eklenir."]},{msgid:"Invalid folder name.",msgstr:["Klasör adı geçersiz."]},{msgid:"Invalid name.",msgstr:["Ad geçersiz."]},{msgid:"Last modified date unknown",msgstr:["Son değiştirilme tarihi bilinmiyor."]},{msgid:"Modified",msgstr:["Değiştirilme"]},{msgid:"Move",msgstr:["Taşı"]},{msgid:"Move to {target}",msgstr:["{target} üzerine taşı"]},{msgid:"Name",msgstr:["Ad"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Adlar en fazla 64 karakter uzunluğunda olabilir."]},{msgid:"Names must not be empty.",msgstr:["Ad boş olamaz."]},{msgid:'Names must not end with "{extension}".',msgstr:['Ad "{extension}" ile bitemez.']},{msgid:"Names must not start with a dot.",msgstr:["Ad nokta karakteri ile başlayamaz."]},{msgid:"New",msgstr:["Yeni"]},{msgid:"New folder",msgstr:["Yeni klasör"]},{msgid:"New folder name",msgstr:["Yeni klasör adı"]},{msgid:"New version",msgstr:["Yeni sürüm"]},{msgid:"No files in here",msgstr:["Burada herhangi bir dosya yok"]},{msgid:"No files matching your filter were found.",msgstr:["Süzgece uyan bir dosya bulunamadı."]},{msgid:"No matching files",msgstr:["Eşleşen bir dosya yok"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Ad en az 2 karakter uzunluğunda olmalıdır."]},{msgid:"Recent",msgstr:["Son kullanılanlar"]},{msgid:"Select all checkboxes",msgstr:["Tüm kutuları işaretle"]},{msgid:"Select all entries",msgstr:["Tüm kayıtları seç"]},{msgid:"Select all existing files",msgstr:["Tüm var olan dosyaları seç"]},{msgid:"Select all new files",msgstr:["Tüm yeni dosyaları seç"]},{msgid:"Select entry",msgstr:["Kaydı seç"]},{msgid:"Select the row for {nodename}",msgstr:["{nodename} satırını seçin"]},{msgid:"Size",msgstr:["Boyut"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["%n dosyayı atla","%n dosyayı atla"]},{msgid:"Skip this file",msgstr:["Bu dosyayı atla"]},{msgid:"Submit name",msgstr:["Adı gönder"]},{msgid:"Undo",msgstr:["Geri al"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Bazı içerikler yükleyin ya da aygıtlarınızla eşitleyin!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Bir gelen klasör seçildiğinde, içindeki çakışan dosyaların da üzerine yazılır."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Bir gelen klasör seçildiğinde, içindeki dosyaların da üzerine yazılır."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Bir gelen klasör seçildiğinde, içerik var olan klasöre yazılır ve alt klasörlerle bir çakışma çözümü uygulanır."]},{msgid:"Which files do you want to keep?",msgstr:["Hangi dosyaları tutmak istiyorsunuz?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["{nickname} olarak tanınıyorsunuz."]},{msgid:"You are currently not identified.",msgstr:["Henüz kendinizi tanıtmadınız."]},{msgid:"You cannot leave the name empty.",msgstr:["Ad boş bırakılamaz."]},{msgid:"You need to choose at least one conflict solution",msgstr:["En az bir çakışma çözümü seçmelisiniz"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["İlerlemek için her dosaynın en az bir sürümünü seçmelisiniz."]}]},{language:"uk",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["{char} не дозволено всередині назви каталогу."]},{msgid:'"{char}" is not allowed inside a name.',msgstr:['"{char}" не дозволено всередині імени.']},{msgid:'"{extension}" is not an allowed name.',msgstr:[`"{extension}" недозволене ім'я.`]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["{segment} є зарезервованим ім'ям і не дозволено для назви каталогу."]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:[`"{segment}" зарезервоване ім'я і не дозволено для використання.`]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n конфлікт файлів","%n конфлікти файлів","%n конфліктів файлів","%n конфліктів файлів"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["%n конфлікт файлів у каталозі {dirname}","%n конфлікти файлів у каталозі {dirname}","%n конфліктів файлів у каталозі {dirname}","%n конфліктів файлів у каталозі {dirname}"]},{msgid:"All files",msgstr:["Всі файли"]},{msgid:"Cancel",msgstr:["Скасувати"]},{msgid:"Cancel the entire operation",msgstr:["Скасувати всю операцію"]},{msgid:"Choose",msgstr:["Вибрати"]},{msgid:"Choose {file}",msgstr:["Вибрати {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Вибрати %n файл","Вибрати %n файли","Вибрати %n файлів","Вибрати %n файлів"]},{msgid:"Confirm",msgstr:["Підтвердити"]},{msgid:"Continue",msgstr:["Продовжити"]},{msgid:"Copy",msgstr:["Копіювати"]},{msgid:"Copy to {target}",msgstr:["Копіювати до {target}"]},{msgid:"Could not create the new folder",msgstr:["Не вдалося створити новий каталог"]},{msgid:"Could not load files settings",msgstr:["Не вдалося завантажити налаштування файлів"]},{msgid:"Could not load files views",msgstr:["Не вдалося завантажити подання файлів"]},{msgid:"Create directory",msgstr:["Створити каталог"]},{msgid:"Current view selector",msgstr:["Вибір подання"]},{msgid:"Enter your name",msgstr:["Зазначте ваше ім'я"]},{msgid:"Existing version",msgstr:["Наявна версія"]},{msgid:"Failed to set nickname.",msgstr:["Не вдалося встановити псевдо."]},{msgid:"Favorites",msgstr:["Із зірочкою"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Тут показуватимуться файли та каталоги, які ви позначите зірочкою."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Тут показуватимуться файли та каталоги, які було нещодавно змінено."]},{msgid:"Filter file list",msgstr:["Фільтрувати список файлів"]},{msgid:'Folder names must not end with "{extension}".',msgstr:[`Ім'я каталогу не може закінчуватися на "{extension}".`]},{msgid:"Guest identification",msgstr:["Ім'я для гостя"]},{msgid:"Home",msgstr:["Домівка"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Якщо вибрати обидві версії, до назви вхідного файлу буде додано цифру. "]},{msgid:"Invalid folder name.",msgstr:["Недійсне ім'я каталогу."]},{msgid:"Invalid name.",msgstr:["Недійсне ім'я."]},{msgid:"Last modified date unknown",msgstr:["Дата останньої зміни невідома"]},{msgid:"Modified",msgstr:["Змінено"]},{msgid:"Move",msgstr:["Перемістити"]},{msgid:"Move to {target}",msgstr:["Перемістити до {target}"]},{msgid:"Name",msgstr:["Ім'я"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Імена мають мати довжину не більше 64 символів."]},{msgid:"Names must not be empty.",msgstr:["Ім'я не може бути порожнє."]},{msgid:'Names must not end with "{extension}".',msgstr:[`Ім'я не може закінчуватися на "{extension}".`]},{msgid:"Names must not start with a dot.",msgstr:["Ім'я не може починатися з крапки."]},{msgid:"New",msgstr:["Новий"]},{msgid:"New folder",msgstr:["Новий каталог"]},{msgid:"New folder name",msgstr:["Ім'я нового каталогу"]},{msgid:"New version",msgstr:["Нова версія"]},{msgid:"No files in here",msgstr:["Тут відсутні файли"]},{msgid:"No files matching your filter were found.",msgstr:["Відсутні збіги за фільтром."]},{msgid:"No matching files",msgstr:["Відсутні збіги файлів."]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Зазначте ім'я довжиною не менше 2 символів"]},{msgid:"Recent",msgstr:["Останні"]},{msgid:"Select all checkboxes",msgstr:["Вибрати всі прапорці"]},{msgid:"Select all entries",msgstr:["Вибрати всі записи"]},{msgid:"Select all existing files",msgstr:["Вибрати всі наявні файли"]},{msgid:"Select all new files",msgstr:["Вибрати всі нові файли"]},{msgid:"Select entry",msgstr:["Вибрати запис"]},{msgid:"Select the row for {nodename}",msgstr:["Вибрати рядок для {nodename}"]},{msgid:"Size",msgstr:["Розмір"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["Пропустити %n файл","Пропустити %n файли","Пропустити %n файлів","Пропустити %n файлів"]},{msgid:"Skip this file",msgstr:["Пропустити цей файл"]},{msgid:"Submit name",msgstr:["Встановити ім'я"]},{msgid:"Undo",msgstr:["Повернути"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Завантажте вміст або синхронізуйте з вашим пристроєм!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Коли вибрано вхідний каталог, будь-які файли з конфліктами буде також перезаписано."]},{msgid:"When an incoming folder is selected, any files within it will also be overwritten.",msgstr:["Якщо буде вибрано вхідний каталог, будь-який файл в ньому буде також перезаписано."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Коли вибрано вхідний каталог, вміст буде записано до існуючого каталогу, а також виконано вирішення конфліктів всередині каталогу."]},{msgid:"Which files do you want to keep?",msgstr:["Які файли залишити?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Вас визначено як {nickname}."]},{msgid:"You are currently not identified.",msgstr:["Вас не ідентифіковано."]},{msgid:"You cannot leave the name empty.",msgstr:["Потрібно зазначити ім'я."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Треб вибрати щонайменше одне розв'язання конфлікту"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Треба вибрати щонайменше одну версію кожного файлу, щоби продовжити."]}]},{language:"uz",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:['Papka nomi ichida "{char}" ga ruxsat berilmaydi.']},{msgid:'"{char}" is not allowed inside a name.',msgstr:['Nom ichida "{char}" ga ruxsat berilmagan.']},{msgid:'"{extension}" is not an allowed name.',msgstr:['"{extension}" ruxsat etilgan nom emas.']},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:[`"{segment}" ajratilgan nom bo'lib, papka nomlari uchun ruxsat berilmagan.`]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:['"{segment}" - zaxiralangan nom va ruxsat berilmaydi.']},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n fayl ziddiyatli"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["{dirname} da %n fayl ziddiyati"]},{msgid:"All files",msgstr:["Barcha fayllar"]},{msgid:"Cancel",msgstr:["Bekor qilish"]},{msgid:"Cancel the entire operation",msgstr:["Butun operatsiyani bekor qiling"]},{msgid:"Choose",msgstr:["Tanlang"]},{msgid:"Choose {file}",msgstr:["Tanlang {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Tanlang %n faylni"]},{msgid:"Confirm",msgstr:["Tasdiqlang"]},{msgid:"Continue",msgstr:["Davom eting"]},{msgid:"Copy",msgstr:["Nusxa"]},{msgid:"Copy to {target}",msgstr:[" {target} ga nusxa"]},{msgid:"Could not create the new folder",msgstr:["Yangi jild yaratib bo‘lmadi"]},{msgid:"Could not load files settings",msgstr:["Fayl sozlamalari yuklanmadi"]},{msgid:"Could not load files views",msgstr:["Fayllarni koʻrishni yuklab boʻlmadi"]},{msgid:"Create directory",msgstr:["Katalog yaratish"]},{msgid:"Current view selector",msgstr:["Joriy ko'rinish selektori"]},{msgid:"Enter your name",msgstr:["Ismingizni kiriting"]},{msgid:"Existing version",msgstr:["Mavjud versiya"]},{msgid:"Failed to set nickname.",msgstr:["Taxallusni o‘rnatib bo‘lmadi."]},{msgid:"Favorites",msgstr:["Tanlanganlar"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Tanlangan deb belgilagan fayl va papkalar shu yerda koʻrinadi."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Siz yaqinda oʻzgartirgan fayl va papkalar shu yerda koʻrinadi."]},{msgid:"Filter file list",msgstr:["Fayl ro'yxatini filtrlash"]},{msgid:'Folder names must not end with "{extension}".',msgstr:['Papka nomlari "{extension}" bilan tugamasligi kerak.']},{msgid:"Guest identification",msgstr:["Foydalanuvchini identifikatsiyalash"]},{msgid:"Home",msgstr:["Uy"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["Agar siz ikkala versiyani tanlasangiz, kiruvchi fayl nomiga qo'shilgan raqamga ega bo'ladi."]},{msgid:"Invalid folder name.",msgstr:["Jild nomi noto'g'ri."]},{msgid:"Invalid name.",msgstr:["Nomi noto‘g‘ri."]},{msgid:"Last modified date unknown",msgstr:["Oxirgi tahrirlangan sana noma'lum"]},{msgid:"Modified",msgstr:["Modifikatsiyalangan"]},{msgid:"Move",msgstr:["Ko'chirish"]},{msgid:"Move to {target}",msgstr:[" {target} ga ko'chirish"]},{msgid:"Name",msgstr:["Nomi"]},{msgid:"Names may be at most 64 characters long.",msgstr:["Ismlar ko'pi bilan 64 ta belgidan iborat bo'lishi mumkin."]},{msgid:"Names must not be empty.",msgstr:["Ismlar bo'sh bo'lmasligi kerak."]},{msgid:'Names must not end with "{extension}".',msgstr:['Ismlar "{extension}" bilan tugamasligi kerak.']},{msgid:"Names must not start with a dot.",msgstr:["Ismlar nuqta bilan boshlanmasligi kerak."]},{msgid:"New",msgstr:["Yangi"]},{msgid:"New folder",msgstr:["Yangi jild"]},{msgid:"New folder name",msgstr:["Yangi jild nomi"]},{msgid:"New version",msgstr:["Yangi versiya"]},{msgid:"No files in here",msgstr:["Fayl mavjud emas"]},{msgid:"No files matching your filter were found.",msgstr:["Filtringizga mos keladigan fayl topilmadi."]},{msgid:"No matching files",msgstr:["Mos fayllar yo'q"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["Kamida 2 ta belgidan iborat nom kiriting."]},{msgid:"Recent",msgstr:["Yaqinda"]},{msgid:"Select all checkboxes",msgstr:["Barcha katakchalarni belgilang"]},{msgid:"Select all entries",msgstr:["Barcha yozuvlarni tanlang"]},{msgid:"Select all existing files",msgstr:["Barcha mavjud fayllarni tanlang"]},{msgid:"Select all new files",msgstr:["Barcha yangi fayllarni tanlang"]},{msgid:"Select entry",msgstr:["Yozuvni tanlang"]},{msgid:"Select the row for {nodename}",msgstr:["{nodename} uchun qatorni tanlang"]},{msgid:"Size",msgstr:["O`lcham"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["%n faylni oʻtkazib yuborish"]},{msgid:"Skip this file",msgstr:["Ushbu faylni o'tkazib yuboring"]},{msgid:"Submit name",msgstr:["Ismni tasdiqlang"]},{msgid:"Undo",msgstr:["Bekor qilish"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Qurilmangizga ba'zi kontentni yuklang yoki sinxronlang!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["Kiruvchi papka tanlanganda, undagi har qanday ziddiyatli fayllar ham ustiga yoziladi."]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["Kiruvchi papka tanlanganda, kontent mavjud jildga yoziladi va nizolarni rekursiv hal qilish amalga oshiriladi."]},{msgid:"Which files do you want to keep?",msgstr:["Qaysi fayllarni saqlamoqchisiz?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["Siz hozirda {nickname} sifatida aniqlangansiz."]},{msgid:"You are currently not identified.",msgstr:["Siz hozirda identifikatsiyadan o'tmagansiz"]},{msgid:"You cannot leave the name empty.",msgstr:["Ism katagini bo'sh qoldirib bo'lmaydi."]},{msgid:"You need to choose at least one conflict solution",msgstr:["Siz kamida bitta mojaro yechimini tanlashingiz kerak"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["Davom etish uchun har bir faylning kamida bitta versiyasini tanlashingiz kerak."]}]},{language:"vi",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" là tên thư mục không hợp lệ.']},{msgid:'"{name}" is not an allowed folder name',msgstr:['"1{name}"không phải là tên thư mục được cho phép']},{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/"không được phép đặt trong tên thư mục.']},{msgid:"All files",msgstr:["Tất cả tệp"]},{msgid:"Choose",msgstr:["Chọn"]},{msgid:"Choose {file}",msgstr:["Chọn {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Chọn %n tệp"]},{msgid:"Copy",msgstr:["Sao chép"]},{msgid:"Copy to {target}",msgstr:["Sao chép đến {target}"]},{msgid:"Could not create the new folder",msgstr:["Không thể tạo thư mục mới"]},{msgid:"Could not load files settings",msgstr:["Không thể tải tập tin cài đặt"]},{msgid:"Could not load files views",msgstr:["Không thể tải xuống tệp xem"]},{msgid:"Create directory",msgstr:["Tạo thư mục"]},{msgid:"Current view selector",msgstr:["Hiện tại chế độ xem của bộ chọn"]},{msgid:"Favorites",msgstr:["Yêu cầu thích"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Các tập tin và thư mục bạn đánh dấu yêu thích sẽ hiển thị ở đây."]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["Các tập tin và thư mục bạn sửa đổi gần đây sẽ hiển thị ở đây."]},{msgid:"Filter file list",msgstr:["Filter list file"]},{msgid:"Folder name cannot be empty.",msgstr:["Thư mục tên không được để trống."]},{msgid:"Home",msgstr:["Trang chủ"]},{msgid:"Modified",msgstr:["Đã sửa đổi"]},{msgid:"Move",msgstr:["Di chuyển"]},{msgid:"Move to {target}",msgstr:["Di chuyển đến{target}"]},{msgid:"Name",msgstr:["Tên"]},{msgid:"New",msgstr:["Mới"]},{msgid:"New folder",msgstr:["New thư mục"]},{msgid:"New folder name",msgstr:["New thư mục tên"]},{msgid:"No files in here",msgstr:["No file at here"]},{msgid:"No files matching your filter were found.",msgstr:["Không tìm thấy tệp nào phù hợp với bộ lọc của bạn."]},{msgid:"No matching files",msgstr:["No file phù hợp"]},{msgid:"Recent",msgstr:["Gần đây"]},{msgid:"Select all entries",msgstr:["Choose all items"]},{msgid:"Select entry",msgstr:["Chọn mục nhập"]},{msgid:"Select the row for {nodename}",msgstr:["Choose hang cho{nodename}"]},{msgid:"Size",msgstr:["Kích cỡ"]},{msgid:"Undo",msgstr:["Hoàn tác"]},{msgid:"Upload some content or sync with your devices!",msgstr:["Tải lên một số nội dung hoặc đồng bộ hóa với thiết bị của bạn!"]}]},{language:"zh_CN",translations:[{msgid:'"{name}" is an invalid folder name.',msgstr:["“{name}” 是无效的文件夹名称。"]},{msgid:'"{name}" is not an allowed folder name',msgstr:["“{name}” 不是允许的文件夹名称"]},{msgid:'"/" is not allowed inside a folder name.',msgstr:["文件夹名称中不允许包含 “/”。"]},{msgid:"All files",msgstr:["所有文件"]},{msgid:"Choose",msgstr:["选择"]},{msgid:"Choose {file}",msgstr:["选择 {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["选择 %n 个文件"]},{msgid:"Copy",msgstr:["复制"]},{msgid:"Copy to {target}",msgstr:["复制到 {target}"]},{msgid:"Could not create the new folder",msgstr:["无法创建新文件夹"]},{msgid:"Could not load files settings",msgstr:["无法加载文件设置"]},{msgid:"Could not load files views",msgstr:["无法加载文件视图"]},{msgid:"Create directory",msgstr:["创建目录"]},{msgid:"Current view selector",msgstr:["当前视图选择器"]},{msgid:"Favorites",msgstr:["最爱"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["您标记为最爱的文件与文件夹会显示在这里"]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["您最近修改的文件与文件夹会显示在这里"]},{msgid:"Filter file list",msgstr:["过滤文件列表"]},{msgid:"Folder name cannot be empty.",msgstr:["文件夹名称不能为空。"]},{msgid:"Home",msgstr:["主目录"]},{msgid:"Modified",msgstr:["已修改"]},{msgid:"Move",msgstr:["移动"]},{msgid:"Move to {target}",msgstr:["移动至 {target}"]},{msgid:"Name",msgstr:["名称"]},{msgid:"New",msgstr:["新建"]},{msgid:"New folder",msgstr:["新文件夹"]},{msgid:"New folder name",msgstr:["新文件夹名称"]},{msgid:"No files in here",msgstr:["此处无文件"]},{msgid:"No files matching your filter were found.",msgstr:["找不到符合您过滤条件的文件"]},{msgid:"No matching files",msgstr:["无符合的文件"]},{msgid:"Recent",msgstr:["最近"]},{msgid:"Select all entries",msgstr:["选择所有条目"]},{msgid:"Select entry",msgstr:["选择条目"]},{msgid:"Select the row for {nodename}",msgstr:["选择 {nodename} 的列"]},{msgid:"Size",msgstr:["大小"]},{msgid:"Undo",msgstr:[" 撤消"]},{msgid:"Upload some content or sync with your devices!",msgstr:["上传一些项目或与您的设备同步!"]}]},{language:"zh_HK",translations:[{msgid:'"{char}" is not allowed inside a folder name.',msgstr:["資料夾名稱中不允許使用「{char}」。"]},{msgid:'"{char}" is not allowed inside a name.',msgstr:['名稱中不能使用 "{char}"。']},{msgid:'"{extension}" is not an allowed name.',msgstr:["「{extension}」並非允許的名稱。"]},{msgid:'"{segment}" is a reserved name and not allowed for folder names.',msgstr:["「{segment}」為保留名稱,不能用作資料夾名稱。"]},{msgid:'"{segment}" is a reserved name and not allowed.',msgstr:["「{segment}」是一個保留名稱,不能使用。"]},{msgid:"%n file conflict",msgid_plural:"%n files conflict",msgstr:["%n 檔案衝突"]},{msgid:"%n file conflict in {dirname}",msgid_plural:"%n file conflicts in {dirname}",msgstr:["{dirname} 中有 %n 個檔案衝突"]},{msgid:"All files",msgstr:["所有檔案"]},{msgid:"Cancel",msgstr:["取消"]},{msgid:"Cancel the entire operation",msgstr:["取消整個操作"]},{msgid:"Choose",msgstr:["選擇"]},{msgid:"Choose {file}",msgstr:["選擇 {file}"]},{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["選擇 %n 個檔案"]},{msgid:"Confirm",msgstr:["確認"]},{msgid:"Continue",msgstr:["繼續"]},{msgid:"Copy",msgstr:["複製"]},{msgid:"Copy to {target}",msgstr:["複製到 {target}"]},{msgid:"Could not create the new folder",msgstr:["無法建立新資料夾"]},{msgid:"Could not load files settings",msgstr:["無法載入檔案設定"]},{msgid:"Could not load files views",msgstr:["無法載入檔案視圖"]},{msgid:"Create directory",msgstr:["建立目錄"]},{msgid:"Current view selector",msgstr:["目前視圖選擇器"]},{msgid:"Enter your name",msgstr:["輸入您的名字"]},{msgid:"Existing version",msgstr:["現有的版本"]},{msgid:"Failed to set nickname.",msgstr:["無法設置暱稱。"]},{msgid:"Favorites",msgstr:["最愛"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["您標記為最愛的檔案與資料夾將會顯示在此處。"]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["您最近修改的檔案與資料夾將會顯示在此處。"]},{msgid:"Filter file list",msgstr:["過濾檔案清單"]},{msgid:'Folder names must not end with "{extension}".',msgstr:["資料夾名稱不得以「{extension}」結尾。"]},{msgid:"Guest identification",msgstr:["訪客身份識別"]},{msgid:"Home",msgstr:["首頁"]},{msgid:"If you select both versions, the incoming file will have a number added to its name.",msgstr:["如果您選擇兩個版本,傳入的檔案名稱將會附加一個數字。"]},{msgid:"Invalid folder name.",msgstr:["無效的資料夾名稱。"]},{msgid:"Invalid name.",msgstr:["無效的名字。"]},{msgid:"Last modified date unknown",msgstr:["最後的修改日期不詳"]},{msgid:"Modified",msgstr:["已修改"]},{msgid:"Move",msgstr:["移動"]},{msgid:"Move to {target}",msgstr:["移動至 {target}"]},{msgid:"Name",msgstr:["名稱"]},{msgid:"Names may be at most 64 characters long.",msgstr:["名稱長度最多為 64 個字元。"]},{msgid:"Names must not be empty.",msgstr:["名稱不能為空。"]},{msgid:'Names must not end with "{extension}".',msgstr:["名稱不得以「{extension}」結尾。"]},{msgid:"Names must not start with a dot.",msgstr:["名稱不得以點開頭。"]},{msgid:"New",msgstr:["新"]},{msgid:"New folder",msgstr:["新資料夾"]},{msgid:"New folder name",msgstr:["新資料夾名稱"]},{msgid:"New version",msgstr:["新版本"]},{msgid:"No files in here",msgstr:["此處無檔案"]},{msgid:"No files matching your filter were found.",msgstr:["找不到符合您過濾條件的檔案。"]},{msgid:"No matching files",msgstr:["沒有匹配的檔案"]},{msgid:"Please enter a name with at least 2 characters.",msgstr:["請輸入至少 2 個字符的名稱。"]},{msgid:"Recent",msgstr:["最近"]},{msgid:"Select all checkboxes",msgstr:["選擇所有復選框"]},{msgid:"Select all entries",msgstr:["選擇所有項目"]},{msgid:"Select all existing files",msgstr:["選擇所有現有的檔案"]},{msgid:"Select all new files",msgstr:["選擇所有新檔案"]},{msgid:"Select entry",msgstr:["選擇項目"]},{msgid:"Select the row for {nodename}",msgstr:["選擇 {nodename} 的列"]},{msgid:"Size",msgstr:["大小"]},{msgid:"Skip %n file",msgid_plural:"Skip %n files",msgstr:["跳過 %n 個檔案"]},{msgid:"Skip this file",msgstr:["跳過此檔案"]},{msgid:"Submit name",msgstr:["遞交名字"]},{msgid:"Undo",msgstr:["還原"]},{msgid:"Upload some content or sync with your devices!",msgstr:["上傳一些內容或與您的裝置同步!"]},{msgid:"When an incoming folder is selected, any conflicting files within it will also be overwritten.",msgstr:["選取傳入資料夾時,其中任何衝突的檔案也將被覆蓋。"]},{msgid:"When an incoming folder is selected, the content is written into the existing folder and a recursive conflict resolution is performed.",msgstr:["當選取傳入資料夾時,內容將寫入現有資料夾,並執行遞歸衝突解決。"]},{msgid:"Which files do you want to keep?",msgstr:["你想保留哪些檔案?"]},{msgid:"You are currently identified as {nickname}.",msgstr:["您目前被識別為 {nickname}。"]},{msgid:"You are currently not identified.",msgstr:["您目前尚未被識別。"]},{msgid:"You cannot leave the name empty.",msgstr:["名稱不能留空。"]},{msgid:"You need to choose at least one conflict solution",msgstr:["你需要選擇至少一種衝突解決方案。"]},{msgid:"You need to select at least one version of each file to continue.",msgstr:["您必須選擇每個文件的至少一個版本才能繼續。"]}]},{language:"zh_TW",translations:[{msgid:'"{name}" is an invalid file name.',msgstr:["「{name}」是無效的檔案名稱。"]},{msgid:'"{name}" is not an allowed filetype',msgstr:["「{name}」並非允許的檔案類型"]},{msgid:'"/" is not allowed inside a file name.',msgstr:["檔案名稱中不允許使用「/」。"]},{msgid:"All files",msgstr:["所有檔案"]},{msgid:"Choose",msgstr:["選擇"]},{msgid:"Choose {file}",msgstr:["選擇 {file}"]},{msgid:"Copy",msgstr:["複製"]},{msgid:"Copy to {target}",msgstr:["複製到 {target}"]},{msgid:"Could not create the new folder",msgstr:["無法建立新資料夾"]},{msgid:"Create directory",msgstr:["建立目錄"]},{msgid:"Current view selector",msgstr:["目前檢視選取器"]},{msgid:"Favorites",msgstr:["最愛"]},{msgid:"File name cannot be empty.",msgstr:["檔案名稱不能為空。"]},{msgid:"Filepicker sections",msgstr:["檔案挑選器選取"]},{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["您標記為最愛的檔案與資料夾將會顯示在此處。"]},{msgid:"Files and folders you recently modified will show up here.",msgstr:["您最近修改的檔案與資料夾將會顯示在此處。"]},{msgid:"Filter file list",msgstr:["過濾檔案清單"]},{msgid:"Home",msgstr:["家"]},{msgid:"Mime type {mime}",msgstr:["Mime type {mime}"]},{msgid:"Modified",msgstr:["已修改"]},{msgid:"Move",msgstr:["移動"]},{msgid:"Move to {target}",msgstr:["移動至 {target}"]},{msgid:"Name",msgstr:["名稱"]},{msgid:"New",msgstr:["新"]},{msgid:"New folder",msgstr:["新資料夾"]},{msgid:"New folder name",msgstr:["新資料夾名稱"]},{msgid:"No files in here",msgstr:["此處無檔案"]},{msgid:"No files matching your filter were found.",msgstr:["找不到符合您過濾條件的檔案。"]},{msgid:"No matching files",msgstr:["無符合的檔案"]},{msgid:"Recent",msgstr:["最近"]},{msgid:"Select all entries",msgstr:["選取所有條目"]},{msgid:"Select entry",msgstr:["選取條目"]},{msgid:"Select the row for {nodename}",msgstr:["選取 {nodename} 的列"]},{msgid:"Size",msgstr:["大小"]},{msgid:"Undo",msgstr:["復原"]},{msgid:"unknown",msgstr:["未知"]},{msgid:"Upload some content or sync with your devices!",msgstr:["上傳一些內容或與您的裝置同步"]}]}]){const{language:t,translations:u}=e,s={headers:{},translations:{"":Object.fromEntries(u.map(n=>[n.msgid,n]))}};j3.addTranslation(t,s)}const Li=j3.build();Li.ngettext.bind(Li),Li.gettext.bind(Li);o3().setApp("@nextcloud/dialogs").detectLogLevel().build();const gC="off",fC="polite",pC="assertive";var _a=(e=>(e[e.OFF=gC]="OFF",e[e.POLITE=fC]="POLITE",e[e.ASSERTIVE=pC]="ASSERTIVE",e))(_a||{});const hC=7e3;function I3(e,t){if(t={timeout:hC,isHTML:!1,type:void 0,selector:void 0,onRemove:()=>{},onClick:void 0,close:!0,...t},typeof e=="string"&&!t.isHTML){const o=document.createElement("div");o.innerHTML=e,e=o.innerText}let u=t.type??"";typeof t.onClick=="function"&&(u+=" toast-with-click ");const s=e instanceof Node;let n=_a.POLITE;t.ariaLive?n=t.ariaLive:(t.type==="toast-error"||t.type==="toast-undo")&&(n=_a.ASSERTIVE);const i=H1({[s?"node":"text"]:e,duration:t.timeout,callback:t.onRemove,onClick:t.onClick,close:t.close,gravity:"top",selector:t.selector,position:"right",backgroundColor:"",className:"dialogs "+u,escapeMarkup:!t.isHTML,ariaLive:n});return i.showToast(),i}function y2(e,t){return I3(e,{...t,type:"toast-error"})}function x2(e,t){return I3(e,{...t,type:"toast-success"})}function eo(){return typeof window<"u"}function Cn(e){return M3(e)?(e.nodeName||"").toLowerCase():"#document"}function Pt(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function $u(e){var t;return(t=(M3(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function M3(e){return eo()?e instanceof Node||e instanceof Pt(e).Node:!1}function Bu(e){return eo()?e instanceof Element||e instanceof Pt(e).Element:!1}function is(e){return eo()?e instanceof HTMLElement||e instanceof Pt(e).HTMLElement:!1}function T4(e){return!eo()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof Pt(e).ShadowRoot}function to(e){const{overflow:t,overflowX:u,overflowY:s,display:n}=yu(e);return/auto|scroll|overlay|hidden|clip/.test(t+s+u)&&n!=="inline"&&n!=="contents"}function vC(e){return/^(table|td|th)$/.test(Cn(e))}function uo(e){try{if(e.matches(":popover-open"))return!0}catch{}try{return e.matches(":modal")}catch{return!1}}const EC=/transform|translate|scale|rotate|perspective|filter/,CC=/paint|layout|strict|content/,gs=e=>!!e&&e!=="none";let Yo;function mr(e){const t=Bu(e)?yu(e):e;return gs(t.transform)||gs(t.translate)||gs(t.scale)||gs(t.rotate)||gs(t.perspective)||!cr()&&(gs(t.backdropFilter)||gs(t.filter))||EC.test(t.willChange||"")||CC.test(t.contain||"")}function BC(e){let t=Rs(e);for(;is(t)&&!li(t);){if(mr(t))return t;if(uo(t))return null;t=Rs(t)}return null}function cr(){return Yo==null&&(Yo=typeof CSS<"u"&&CSS.supports&&CSS.supports("-webkit-backdrop-filter","none")),Yo}function li(e){return/^(html|body|#document)$/.test(Cn(e))}function yu(e){return Pt(e).getComputedStyle(e)}function so(e){return Bu(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function Rs(e){if(Cn(e)==="html")return e;const t=e.assignedSlot||e.parentNode||T4(e)&&e.host||$u(e);return T4(t)?t.host:t}function $3(e){const t=Rs(e);return li(t)?(e.ownerDocument||e).body:is(t)&&to(t)?t:$3(t)}function di(e,t,u){var s;t===void 0&&(t=[]),u===void 0&&(u=!0);const n=$3(e),i=n===((s=e.ownerDocument)==null?void 0:s.body),o=Pt(n);if(i){const a=Oa(o);return t.concat(o,o.visualViewport||[],to(n)?n:[],a&&u?di(a):[])}else return t.concat(n,di(n,[],u))}function Oa(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function U3(e){const t=yu(e);let u=parseFloat(t.width)||0,s=parseFloat(t.height)||0;const n=is(e),i=n?e.offsetWidth:u,o=n?e.offsetHeight:s,a=A0(u)!==i||A0(s)!==o;return a&&(u=i,s=o),{width:u,height:s,$:a}}function gr(e){return Bu(e)?e:e.contextElement}function mn(e){const t=gr(e);if(!is(t))return zu(1);const u=t.getBoundingClientRect(),{width:s,height:n,$:i}=U3(t);let o=(i?A0(u.width):u.width)/s,a=(i?A0(u.height):u.height)/n;return(!o||!Number.isFinite(o))&&(o=1),(!a||!Number.isFinite(a))&&(a=1),{x:o,y:a}}const yC=zu(0);function V3(e){const t=Pt(e);return!cr()||!t.visualViewport?yC:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function xC(e,t,u){return t===void 0&&(t=!1),!!u&&t&&u===Pt(e)}function Ls(e,t,u,s){t===void 0&&(t=!1),u===void 0&&(u=!1);const n=e.getBoundingClientRect(),i=gr(e);let o=zu(1);t&&(s?Bu(s)&&(o=mn(s)):o=mn(e));const a=xC(i,u,s)?V3(i):zu(0);let r=(n.left+a.x)/o.x,m=(n.top+a.y)/o.y,l=n.width/o.x,g=n.height/o.y;if(i&&s){const p=Pt(i),h=Bu(s)?Pt(s):s;let y=p,E=Oa(y);for(;E&&h!==y;){const F=mn(E),B=E.getBoundingClientRect(),A=yu(E),O=B.left+(E.clientLeft+parseFloat(A.paddingLeft))*F.x,S=B.top+(E.clientTop+parseFloat(A.paddingTop))*F.y;r*=F.x,m*=F.y,l*=F.x,g*=F.y,r+=O,m+=S,y=Pt(E),E=Oa(y)}}return Os({width:l,height:g,x:r,y:m})}function no(e,t){const u=so(e).scrollLeft;return t?t.left+u:Ls($u(e)).left+u}function W3(e,t){const u=e.getBoundingClientRect(),s=u.left+t.scrollLeft-no(e,u),n=u.top+t.scrollTop;return{x:s,y:n}}function AC(e){let{elements:t,rect:u,offsetParent:s,strategy:n}=e;const i=n==="fixed",o=$u(s),a=t?uo(t.floating):!1;if(s===o||a&&i)return u;let r={scrollLeft:0,scrollTop:0},m=zu(1);const l=zu(0),g=is(s);if((g||!i)&&((Cn(s)!=="body"||to(o))&&(r=so(s)),g)){const h=Ls(s);m=mn(s),l.x=h.x+s.clientLeft,l.y=h.y+s.clientTop}const p=o&&!g&&!i?W3(o,r):zu(0);return{width:u.width*m.x,height:u.height*m.y,x:u.x*m.x-r.scrollLeft*m.x+l.x+p.x,y:u.y*m.y-r.scrollTop*m.y+l.y+p.y}}function bC(e){return e.getClientRects?Array.from(e.getClientRects()):[]}function wC(e){const t=so(e),u=e.ownerDocument.body,s=Tu(e.scrollWidth,e.clientWidth,u.scrollWidth,u.clientWidth),n=Tu(e.scrollHeight,e.clientHeight,u.scrollHeight,u.clientHeight);let i=-t.scrollLeft+no(e);const o=-t.scrollTop;return yu(u).direction==="rtl"&&(i+=Tu(e.clientWidth,u.clientWidth)-s),{width:s,height:n,x:i,y:o}}const DC=25;function FC(e,t,u){u===void 0&&(u="viewport");const s=u==="layoutViewport",n=Pt(e),i=$u(e),o=n.visualViewport;let a=i.clientWidth,r=i.clientHeight,m=0,l=0;if(o){const g=!cr()||t==="fixed";s?g||(m=-o.offsetLeft,l=-o.offsetTop):(a=o.width,r=o.height,g&&(m=o.offsetLeft,l=o.offsetTop))}if(no(i)<=0){const g=i.ownerDocument,p=g.body,h=getComputedStyle(p),y=g.compatMode==="CSS1Compat"&&parseFloat(h.marginLeft)+parseFloat(h.marginRight)||0,E=Math.abs(i.clientWidth-p.clientWidth-y),F=getComputedStyle(i).scrollbarGutter==="stable both-edges"?E/2:E;F<=DC&&(a-=F)}return{width:a,height:r,x:m,y:l}}function kC(e,t){const u=Ls(e,!0,t==="fixed"),s=u.top+e.clientTop,n=u.left+e.clientLeft,i=mn(e),o=e.clientWidth*i.x,a=e.clientHeight*i.y,r=n*i.x,m=s*i.y;return{width:o,height:a,x:r,y:m}}function z4(e,t,u){let s;if(t==="viewport"||t==="layoutViewport")s=FC(e,u,t);else if(t==="document")s=wC($u(e));else if(Bu(t))s=kC(t,u);else{const n=V3(e);s={x:t.x-n.x,y:t.y-n.y,width:t.width,height:t.height}}return Os(s)}function SC(e,t){const u=t.get(e);if(u)return u;let s=di(e,[],!1).filter(a=>Bu(a)&&Cn(a)!=="body"),n=null;const i=yu(e).position==="fixed";let o=i?Rs(e):e;for(;Bu(o)&&!li(o);){const a=yu(o),r=mr(o),m=n?n.position:i?"fixed":"";!r&&(m==="fixed"||m==="absolute"&&a.position==="static")?s=s.filter(l=>l!==o):n=a,o=Rs(o)}return t.set(e,s),s}function NC(e){let{element:t,boundary:u,rootBoundary:s,strategy:n}=e;const i=[...u==="clippingAncestors"?uo(t)?[]:SC(t,this._c):[].concat(u),s],o=z4(t,i[0],n);let a=o.top,r=o.right,m=o.bottom,l=o.left;for(let g=1;g{a(!1,1e-7)},1e3)}I=!1}try{s=new IntersectionObserver(Y,{...q,root:i.ownerDocument})}catch{s=new IntersectionObserver(Y,q)}s.observe(e)}const r=Pt(e),m=()=>a(u);return r.addEventListener("resize",m),a(!0),()=>{r.removeEventListener("resize",m),o()}}function LC(e,t,u,s){s===void 0&&(s={});const{ancestorScroll:n=!0,ancestorResize:i=!0,elementResize:o=typeof ResizeObserver=="function",layoutShift:a=typeof IntersectionObserver=="function",animationFrame:r=!1}=s,m=gr(e),l=n||i?[...m?di(m):[],...t?di(t):[]]:[];l.forEach(B=>{n&&B.addEventListener("scroll",u),i&&B.addEventListener("resize",u)});const g=m&&a?RC(m,u,i):null;let p=-1,h=null;o&&(h=new ResizeObserver(B=>{let[A]=B;A&&A.target===m&&h&&t&&(h.unobserve(t),cancelAnimationFrame(p),p=requestAnimationFrame(()=>{var O;(O=h)==null||O.observe(t)})),u()}),m&&!r&&h.observe(m),t&&h.observe(t));let y,E=r?Ls(e):null;r&&F();function F(){const B=Ls(e);E&&!G3(E,B)&&u(),E=B,y=requestAnimationFrame(F)}return u(),()=>{var B;l.forEach(A=>{n&&A.removeEventListener("scroll",u),i&&A.removeEventListener("resize",u)}),g?.(),(B=h)==null||B.disconnect(),h=null,r&&cancelAnimationFrame(y)}}const jC=y3,IC=x3,MC=C3,$C=bE,UC=(e,t,u)=>{const s=new Map,n=u??{},i={...PC,...n.platform,_c:s};return E3(e,t,{...n,platform:i})},VC={mounted(e,{instance:t}){if(t.appendToBody){document.body.appendChild(e);const{height:u,top:s,left:n,width:i}=t.$refs.toggle.getBoundingClientRect(),o=window.scrollX||window.pageXOffset,a=window.scrollY||window.pageYOffset;e.unbindPosition=t.calculatePosition(e,t,{width:i+"px",left:o+n+"px",top:a+s+u+"px"})}},unmounted(e,{instance:t}){t.appendToBody&&(e.unbindPosition&&typeof e.unbindPosition=="function"&&e.unbindPosition(),e.parentNode&&e.parentNode.removeChild(e))}},WC={props:{loading:{type:Boolean,default:!1}},data(){return{mutableLoading:!1}},watch:{search(){this.$emit("search",this.search,this.toggleLoading)},loading(e){this.mutableLoading=e}},methods:{toggleLoading(e=null){return e==null?this.mutableLoading=!this.mutableLoading:this.mutableLoading=e}}},HC={props:{autoscroll:{type:Boolean,default:!0}},watch:{typeAheadPointer(){this.autoscroll&&this.maybeAdjustScroll()},open(e){this.autoscroll&&e&&this.$nextTick(()=>this.maybeAdjustScroll())}},methods:{maybeAdjustScroll(){const e=this.$refs.dropdownMenu?.children[this.typeAheadPointer]||!1;if(e){const t=this.getDropdownViewport(),{top:u,bottom:s,height:n}=e.getBoundingClientRect();if(ut.bottom)return this.$refs.dropdownMenu.scrollTop=e.offsetTop-(t.height-n)}},getDropdownViewport(){return this.$refs.dropdownMenu?this.$refs.dropdownMenu.getBoundingClientRect():{height:0,top:0,bottom:0}}}},GC={data(){return{typeAheadPointer:-1}},watch:{filteredOptions(){if(this.resetFocusOnOptionsChange){for(let e=0;e=0;e--)if(this.selectable(this.filteredOptions[e])){this.typeAheadPointer=e;break}},typeAheadDown(){for(let e=this.typeAheadPointer+1;e{t[u]=e[u]}),JSON.stringify(t)}let KC=0;function YC(){return++KC}const fr=(e,t)=>{const u=e.__vccOpts||e;for(const[s,n]of t)u[s]=n;return u},ZC={},XC={xmlns:"http://www.w3.org/2000/svg",width:"10",height:"10"};function JC(e,t){return X(),me("svg",XC,[...t[0]||(t[0]=[ve("path",{d:"M6.895455 5l2.842897-2.842898c.348864-.348863.348864-.914488 0-1.263636L9.106534.261648c-.348864-.348864-.914489-.348864-1.263636 0L5 3.104545 2.157102.261648c-.348863-.348864-.914488-.348864-1.263636 0L.261648.893466c-.348864.348864-.348864.914489 0 1.263636L3.104545 5 .261648 7.842898c-.348864.348863-.348864.914488 0 1.263636l.631818.631818c.348864.348864.914773.348864 1.263636 0L5 6.895455l2.842898 2.842897c.348863.348864.914772.348864 1.263636 0l.631818-.631818c.348864-.348864.348864-.914489 0-1.263636L6.895455 5z"},null,-1)])])}const QC=fr(ZC,[["render",JC]]),e6={},t6={xmlns:"http://www.w3.org/2000/svg",width:"14",height:"10"};function u6(e,t){return X(),me("svg",t6,[...t[0]||(t[0]=[ve("path",{d:"M9.211364 7.59931l4.48338-4.867229c.407008-.441854.407008-1.158247 0-1.60046l-.73712-.80023c-.407008-.441854-1.066904-.441854-1.474243 0L7 5.198617 2.51662.33139c-.407008-.441853-1.066904-.441853-1.474243 0l-.737121.80023c-.407008.441854-.407008 1.158248 0 1.600461l4.48338 4.867228L7 10l2.211364-2.40069z"},null,-1)])])}const s6=fr(e6,[["render",u6]]),R4={Deselect:QC,OpenIndicator:s6},n6={components:{...R4},directives:{appendToBody:VC},mixins:[HC,GC,WC],props:{modelValue:{},components:{type:Object,default:()=>({})},options:{type:Array,default(){return[]}},limit:{type:Number,default:null},disabled:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},deselectFromDropdown:{type:Boolean,default:!1},searchable:{type:Boolean,default:!0},multiple:{type:Boolean,default:!1},placeholder:{type:String,default:""},transition:{type:String,default:"vs__fade"},clearSearchOnSelect:{type:Boolean,default:!0},closeOnSelect:{type:Boolean,default:!0},label:{type:String,default:"label"},ariaLabelCombobox:{type:String,default:"Search for options"},ariaLabelListbox:{type:String,default:"Options"},ariaLabelClearSelected:{type:String,default:"Clear selected"},ariaLabelDeselectOption:{type:Function,default:e=>`Deselect ${e}`},autocomplete:{type:String,default:"off"},reduce:{type:Function,default:e=>e},selectable:{type:Function,default:()=>!0},getOptionLabel:{type:Function,default(e){return typeof e=="object"?Object.hasOwn(e,this.label)?e[this.label]:yl(`[vue-select warn]: Label key "option.${this.label}" does not exist in options object ${JSON.stringify(e)}. https://vue-select.org/api/props.html#getoptionlabel`):e}},getOptionKey:{type:Function,default(e){if(typeof e!="object")return e;try{return Object.hasOwn(e,"id")?e.id:qC(e)}catch{return yl()}}},onTab:{type:Function,default(){this.selectOnTab&&!this.isComposing&&this.typeAheadSelect()}},taggable:{type:Boolean,default:!1},tabindex:{type:Number,default:null},pushTags:{type:Boolean,default:!1},filterable:{type:Boolean,default:!0},filterBy:{type:Function,default(e,t,u){return(t||"").toLocaleLowerCase().indexOf(u.toLocaleLowerCase())>-1}},filter:{type:Function,default(e,t){return e.filter(u=>{let s=this.getOptionLabel(u);return typeof s=="number"&&(s=s.toString()),this.filterBy(u,s,t)})}},createOption:{type:Function,default(e){return typeof this.optionList[0]=="object"?{[this.label]:e}:e}},resetFocusOnOptionsChange:{type:Boolean,default:!0},resetOnOptionsChange:{default:!1,validator:e=>["function","boolean"].includes(typeof e)},clearSearchOnBlur:{type:Function,default({clearSearchOnSelect:e,multiple:t}){return e&&!t}},noDrop:{type:Boolean,default:!1},inputId:{type:String},dir:{type:String,default:"auto"},selectOnTab:{type:Boolean,default:!1},selectOnKeyCodes:{type:Array,default:()=>[13]},searchInputQuerySelector:{type:String,default:"[type=search]"},mapKeydown:{type:Function,default:e=>e},appendToBody:{type:Boolean,default:!1},calculatePosition:{type:Function,default(e,t,{width:u,top:s,left:n}){e.style.top=s,e.style.left=n,e.style.width=u}},dropdownShouldOpen:{type:Function,default({noDrop:e,open:t,mutableLoading:u}){return e?!1:t&&!u}},keyboardFocusBorder:{type:Boolean,default:!1},uid:{type:[String,Number],default:()=>YC()}},emits:["open","close","update:modelValue","search","search:compositionstart","search:compositionend","search:keydown","search:blur","search:focus","search:input","option:created","option:selecting","option:selected","option:deselecting","option:deselected"],data(){return{search:"",open:!1,isComposing:!1,isKeyboardNavigation:!1,pushedTags:[],_value:[],deselectButtons:[]}},computed:{isReducingValues(){return this.$props.reduce!==this.$options.props.reduce.default},isTrackingValues(){return typeof this.modelValue>"u"||this.isReducingValues},selectedValue(){let e=this.modelValue;return this.isTrackingValues&&(e=this.$data._value),e!=null&&e!==""?[].concat(e):[]},optionList(){return this.options.concat(this.pushTags?this.pushedTags:[])},searchEl(){return this.$slots.search?this.$refs.selectedOptions.querySelector(this.searchInputQuerySelector):this.$refs.search},scope(){const e={search:this.search,loading:this.loading,searching:this.searching,filteredOptions:this.filteredOptions};return{search:{attributes:{id:this.inputId,disabled:this.disabled,placeholder:this.searchPlaceholder,tabindex:this.tabindex,readonly:!this.searchable,role:"combobox","aria-autocomplete":"list","aria-label":this.ariaLabelCombobox,"aria-controls":`vs-${this.uid}__listbox`,"aria-owns":`vs-${this.uid}__listbox`,"aria-expanded":this.dropdownOpen.toString(),ref:"search",type:"search",autocomplete:this.autocomplete,value:this.search,...this.dropdownOpen&&this.filteredOptions[this.typeAheadPointer]?{"aria-activedescendant":`vs-${this.uid}__option-${this.typeAheadPointer}`}:{}},events:{compositionstart:()=>this.isComposing=!0,compositionend:()=>this.isComposing=!1,keydown:this.onSearchKeyDown,keypress:this.onSearchKeyPress,blur:this.onSearchBlur,focus:this.onSearchFocus,input:t=>this.search=t.target.value}},spinner:{loading:this.mutableLoading},noOptions:{search:this.search,loading:this.mutableLoading,searching:this.searching},openIndicator:{attributes:{ref:"openIndicator",role:"presentation",class:"vs__open-indicator"}},listHeader:e,listFooter:e,header:{...e,deselect:this.deselect},footer:{...e,deselect:this.deselect}}},childComponents(){return{...R4,...this.components}},stateClasses(){return{"vs--open":this.dropdownOpen,"vs--single":!this.multiple,"vs--multiple":this.multiple,"vs--searching":this.searching&&!this.noDrop,"vs--searchable":this.searchable&&!this.noDrop,"vs--unsearchable":!this.searchable,"vs--loading":this.mutableLoading,"vs--disabled":this.disabled}},searching(){return!!this.search},dropdownOpen(){return this.dropdownShouldOpen(this)},searchPlaceholder(){return this.isValueEmpty&&this.placeholder?this.placeholder:void 0},filteredOptions(){const e=s=>this.limit!==null?s.slice(0,this.limit):s,t=[].concat(this.optionList);if(!this.filterable&&!this.taggable)return e(t);const u=this.search.length?this.filter(t,this.search,this):t;if(this.taggable&&this.search.length)try{const s=this.createOption(this.search);this.optionExists(s)||u.unshift(s)}catch{}return e(u)},isValueEmpty(){return this.selectedValue.length===0},showClearButton(){return!this.multiple&&this.clearable&&!this.open&&!this.isValueEmpty}},watch:{options(e,t){const u=()=>typeof this.resetOnOptionsChange=="function"?this.resetOnOptionsChange(e,t,this.selectedValue):this.resetOnOptionsChange;!this.taggable&&u()&&this.clearSelection(),this.modelValue&&this.isTrackingValues&&this.setInternalValueFromOptions(this.modelValue)},modelValue:{immediate:!0,handler(e){this.isTrackingValues&&this.setInternalValueFromOptions(e)}},multiple(){this.clearSelection()},open(e){this.$emit(e?"open":"close")},search(e){e.length&&(this.open=!0)}},created(){this.mutableLoading=this.loading},methods:{setInternalValueFromOptions(e){Array.isArray(e)?this.$data._value=e.map(t=>this.findOptionFromReducedValue(t)):this.$data._value=this.findOptionFromReducedValue(e)},select(e){this.$emit("option:selecting",e),this.isOptionSelected(e)?this.deselectFromDropdown&&(this.clearable||this.multiple&&this.selectedValue.length>1)&&this.deselect(e):(this.taggable&&!this.optionExists(e)&&(this.$emit("option:created",e),this.pushTag(e)),this.multiple&&(e=this.selectedValue.concat(e)),this.updateValue(e),this.$emit("option:selected",e)),this.onAfterSelect(e)},deselect(e){this.$emit("option:deselecting",e),this.updateValue(this.selectedValue.filter(t=>!this.optionComparator(t,e))),this.$emit("option:deselected",e)},keyboardDeselect(e,t){this.deselect(e);const u=this.deselectButtons?.[t+1],s=this.deselectButtons?.[t-1],n=u??s;n?n.focus():this.searchEl.focus()},clearSelection(){this.updateValue(this.multiple?[]:null),this.searchEl.focus()},onAfterSelect(){this.closeOnSelect&&(this.open=!this.open),this.clearSearchOnSelect&&(this.search=""),this.noDrop&&this.multiple&&this.$nextTick(()=>this.$refs.search.focus())},updateValue(e){typeof this.modelValue>"u"&&(this.$data._value=e),e!==null&&(Array.isArray(e)?e=e.map(t=>this.reduce(t)):e=this.reduce(e)),this.$emit("update:modelValue",e)},toggleDropdown(e){const t=e.target!==this.searchEl;t&&e.preventDefault();const u=[...this.deselectButtons||[],...this.$refs.clearButton?[this.$refs.clearButton]:[]];if(this.searchEl===void 0||u.filter(Boolean).some(s=>s.contains(e.target)||s===e.target)){e.preventDefault();return}this.open&&t?(this.open=!1,this.searchEl.blur()):this.disabled||(this.open=!0,this.searchEl.focus())},isOptionSelected(e){return this.selectedValue.some(t=>this.optionComparator(t,e))},isOptionDeselectable(e){return this.isOptionSelected(e)&&this.deselectFromDropdown},hasKeyboardFocusBorder(e){return this.keyboardFocusBorder&&this.isKeyboardNavigation?e===this.typeAheadPointer:!1},optionComparator(e,t){return this.getOptionKey(e)===this.getOptionKey(t)},findOptionFromReducedValue(e){const t=s=>JSON.stringify(this.reduce(s))===JSON.stringify(e),u=[...this.options,...this.pushedTags].filter(t);return u.length===1?u[0]:u.find(s=>this.optionComparator(s,this.$data._value))||e},closeSearchOptions(){this.open=!1,this.$emit("search:blur")},maybeDeleteValue(){if(!this.searchEl.value.length&&this.selectedValue&&this.selectedValue.length&&this.clearable){let e=null;this.multiple&&(e=[...this.selectedValue.slice(0,this.selectedValue.length-1)]),this.updateValue(e)}},optionExists(e){return this.optionList.some(t=>this.optionComparator(t,e))},optionAriaSelected(e){return this.selectable(e)?String(this.isOptionSelected(e)):null},normalizeOptionForSlot(e){return typeof e=="object"?e:{[this.label]:e}},pushTag(e){this.pushedTags.push(e)},onEscape(){this.search.length?this.search="":this.open=!1},onSearchBlur(){if(this.mousedown&&!this.searching)this.mousedown=!1;else{const{clearSearchOnSelect:e,multiple:t}=this;this.clearSearchOnBlur({clearSearchOnSelect:e,multiple:t})&&(this.search=""),this.closeSearchOptions();return}this.search.length===0&&this.options.length===0&&this.closeSearchOptions()},onSearchFocus(){this.$emit("search:focus")},onMousedown(){this.mousedown=!0},onMouseUp(){this.mousedown=!1},onMouseMove(e,t){this.isKeyboardNavigation=!1,this.selectable(e)&&(this.typeAheadPointer=t)},onSearchKeyDown(e){const t=n=>{if(n.preventDefault(),!this.open){this.open=!0;return}return!this.isComposing&&this.typeAheadSelect()},u={8:()=>this.maybeDeleteValue(),9:()=>this.onTab(),27:()=>this.onEscape(),38:n=>{if(n.preventDefault(),this.isKeyboardNavigation=!0,!this.open){this.open=!0;return}return this.typeAheadUp()},40:n=>{if(n.preventDefault(),this.isKeyboardNavigation=!0,!this.open){this.open=!0;return}return this.typeAheadDown()}};this.selectOnKeyCodes.forEach(n=>u[n]=t);const s=this.mapKeydown(u,this);if(typeof s[e.keyCode]=="function")return s[e.keyCode](e)},onSearchKeyPress(e){!this.open&&e.keyCode===32&&(e.preventDefault(),this.open=!0)}}},i6=["id","dir"],o6={ref:"toggle",class:"vs__dropdown-toggle"},a6=["disabled","title","aria-label","onMousedown","onKeydown"],r6={ref:"actions",class:"vs__actions"},l6=["disabled","title","aria-label"],d6={class:"vs__spinner"},m6=["id","aria-label","aria-multiselectable"],c6=["id","aria-selected","onMousemove","onClick"],g6={key:0,class:"vs__no-options"},f6=["id","aria-label"];function p6(e,t,u,s,n,i){const o=Mf("append-to-body");return X(),me("div",{id:`v-select-${u.uid}`,dir:u.dir,class:Bt(["v-select",i.stateClasses])},[ze(e.$slots,"header",_t(At(i.scope.header))),ve("div",o6,[ve("div",{ref:"selectedOptions",class:"vs__selected-options",onMousedown:t[0]||(t[0]=(...a)=>i.toggleDropdown&&i.toggleDropdown(...a))},[(X(!0),me(it,null,da(i.selectedValue,(a,r)=>ze(e.$slots,"selected-option-container",{option:i.normalizeOptionForSlot(a),deselect:i.deselect,multiple:u.multiple,disabled:u.disabled},()=>[(X(),me("span",{key:u.getOptionKey(a),class:"vs__selected"},[ze(e.$slots,"selected-option",ut({ref_for:!0},i.normalizeOptionForSlot(a)),()=>[Ns(dt(u.getOptionLabel(a)),1)]),u.multiple?(X(),me("button",{key:0,ref_for:!0,ref:m=>n.deselectButtons[r]=m,disabled:u.disabled,type:"button",class:"vs__deselect",title:u.ariaLabelDeselectOption(u.getOptionLabel(a)),"aria-label":u.ariaLabelDeselectOption(u.getOptionLabel(a)),onMousedown:Vi(m=>i.deselect(a),["stop"]),onKeydown:$m(m=>i.keyboardDeselect(a,r),["enter"])},[(X(),et(rn(i.childComponents.Deselect)))],40,a6)):Ve("",!0)]))])),256)),ze(e.$slots,"search",_t(At(i.scope.search)),()=>[ve("input",ut({class:"vs__search"},i.scope.search.attributes,n0(i.scope.search.events,!0)),null,16)])],544),ve("div",r6,[ys(ve("button",{ref:"clearButton",disabled:u.disabled,type:"button",class:"vs__clear",title:u.ariaLabelClearSelected,"aria-label":u.ariaLabelClearSelected,onClick:t[1]||(t[1]=(...a)=>i.clearSelection&&i.clearSelection(...a))},[(X(),et(rn(i.childComponents.Deselect)))],8,l6),[[tn,i.showClearButton]]),u.noDrop?Ve("",!0):(X(),me("button",{key:0,ref:"openIndicatorButton",class:"vs__open-indicator-button",type:"button",tabindex:"-1","aria-hidden":"true",onMousedown:t[2]||(t[2]=(...a)=>i.toggleDropdown&&i.toggleDropdown(...a))},[ze(e.$slots,"open-indicator",_t(At(i.scope.openIndicator)),()=>[(X(),et(rn(i.childComponents.OpenIndicator),_t(At(i.scope.openIndicator.attributes)),null,16))])],544)),ze(e.$slots,"spinner",_t(At(i.scope.spinner)),()=>[ys(ve("div",d6," Loading... ",512),[[tn,e.mutableLoading]])])],512)],512),Be(Js,{name:u.transition},{default:Pe(()=>[i.dropdownOpen?ys((X(),me("ul",{id:`vs-${u.uid}__listbox`,ref:"dropdownMenu",key:`vs-${u.uid}__listbox`,class:"vs__dropdown-menu",role:"listbox","aria-label":u.ariaLabelListbox,"aria-multiselectable":u.multiple?"true":null,tabindex:"-1",onMousedown:t[3]||(t[3]=Vi((...a)=>i.onMousedown&&i.onMousedown(...a),["prevent"])),onMouseup:t[4]||(t[4]=(...a)=>i.onMouseUp&&i.onMouseUp(...a))},[ze(e.$slots,"list-header",_t(At(i.scope.listHeader))),(X(!0),me(it,null,da(i.filteredOptions,(a,r)=>(X(),me("li",{id:`vs-${u.uid}__option-${r}`,key:u.getOptionKey(a),role:"option",class:Bt(["vs__dropdown-option",{"vs__dropdown-option--deselect":i.isOptionDeselectable(a)&&r===e.typeAheadPointer,"vs__dropdown-option--selected":i.isOptionSelected(a),"vs__dropdown-option--highlight":r===e.typeAheadPointer,"vs__dropdown-option--kb-focus":i.hasKeyboardFocusBorder(r),"vs__dropdown-option--disabled":!u.selectable(a)}]),"aria-selected":i.optionAriaSelected(a),onMousemove:m=>i.onMouseMove(a,r),onClick:Vi(m=>u.selectable(a)?i.select(a):null,["prevent","stop"])},[ze(e.$slots,"option",ut({ref_for:!0},i.normalizeOptionForSlot(a)),()=>[Ns(dt(u.getOptionLabel(a)),1)])],42,c6))),128)),i.filteredOptions.length===0?(X(),me("li",g6,[ze(e.$slots,"no-options",_t(At(i.scope.noOptions)),()=>[t[5]||(t[5]=Ns(" Sorry, no matching options. ",-1))])])):Ve("",!0),ze(e.$slots,"list-footer",_t(At(i.scope.listFooter)))],40,m6)),[[o]]):(X(),me("ul",{key:1,id:`vs-${u.uid}__listbox`,role:"listbox","aria-label":u.ariaLabelListbox,style:{display:"none",visibility:"hidden"}},null,8,f6))]),_:3},8,["name"]),ze(e.$slots,"footer",_t(At(i.scope.footer)))],10,i6)}const fs=fr(n6,[["render",p6]]);function q3(e,t){const u=[];let s=0,n=e.toLowerCase().indexOf(t.toLowerCase(),s),i=0;for(;n>-1&&i++[]}},computed:{ranges(){let e=[];return!this.search&&this.highlight.length===0||(this.highlight.length>0?e=this.highlight:e=q3(this.text,this.search),e.forEach((t,u)=>{t.end(u.start0&&t.push({start:u.start<0?0:u.start,end:u.end>this.text.length?this.text.length:u.end}),t),[]),e.sort((t,u)=>t.start-u.start),e=e.reduce((t,u)=>{if(!t.length)t.push(u);else{const s=t.length-1;t[s].end>=u.start?t[s]={start:t[s].start,end:Math.max(t[s].end,u.end)}:t.push(u)}return t},[])),e},chunks(){if(this.ranges.length===0)return[{start:0,end:this.text.length,highlight:!1,text:this.text}];const e=[];let t=0,u=0;for(;t=this.ranges.length&&te.highlight?gt("strong",{},e.text):e.text)):gt("span",{},this.text)}}),v6={name:"NcEllipsisedOption",components:{NcHighlight:h6},props:{name:{type:String,default:""},search:{type:String,default:""}},computed:{needsTruncate(){return this.name&&this.name.length>=10},split(){return this.name.length-Math.min(Math.floor(this.name.length/2),10)},part1(){return this.needsTruncate?this.name.slice(0,this.split):this.name},part2(){return this.needsTruncate?this.name.slice(this.split):""},highlight1(){return this.search?q3(this.name,this.search):[]},highlight2(){return this.highlight1.map(e=>({start:e.start-this.split,end:e.end-this.split}))}}},E6=["title"];function C6(e,t,u,s,n,i){const o=It("NcHighlight");return X(),me("span",{dir:"auto",class:"name-parts",title:u.name},[Be(o,{class:"name-parts__first",text:i.part1,search:u.search,highlight:i.highlight1},null,8,["text","search","highlight"]),i.part2?(X(),et(o,{key:0,class:"name-parts__last",text:i.part2,search:u.search,highlight:i.highlight2},null,8,["text","search","highlight"])):Ve("",!0)],8,E6)}const B6=rt(v6,[["render",C6],["__scopeId","data-v-a612f185"]]);pn(Zh);const y6={name:"NcSelect",components:{ChevronDown:D1,NcEllipsisedOption:B6,NcLoadingIcon:R3,VueSelect:fs},props:{...fs.props,...fs.mixins.reduce((e,t)=>({...e,...t.props}),{}),ariaLabelClearSelected:{type:String,default:ft("Clear selected")},ariaLabelCombobox:{type:String,default:null},ariaLabelListbox:{type:String,default:ft("Options")},ariaLabelDeselectOption:{type:Function,default:e=>ft("Deselect {option}",{option:e})},appendToBody:{type:Boolean,default:!0},calculatePosition:{type:Function,default:null},keepOpen:{type:Boolean,default:!1},components:{type:Object,default:()=>({Deselect:{render:()=>gt(T1,{size:20,fillColor:"var(--vs-controls-color)",style:[{cursor:"pointer"}]})}})},limit:{type:Number,default:null},disabled:{type:Boolean,default:!1},dropdownShouldOpen:{type:Function,default:({noDrop:e,open:t})=>e?!1:t},filterBy:{type:Function,default:null},inputClass:{type:[String,Object],default:null},inputId:{type:String,default:()=>_s()},inputLabel:{type:String,default:null},labelOutside:{type:Boolean,default:!1},keyboardFocusBorder:{type:Boolean,default:!0},label:{type:String,default:null},loading:{type:Boolean,default:!1},multiple:{type:Boolean,default:!1},noWrap:{type:Boolean,default:!1},options:{type:Array,default:()=>[]},placeholder:{type:String,default:""},mapKeydown:{type:Function,default(e,t){return{...e,27:u=>{t.open&&u.stopPropagation(),e[27](u)}}}},uid:{type:String,default:()=>_s()},placement:{type:String,default:"bottom"},resetFocusOnOptionsChange:{type:Boolean,default:!0},modelValue:{type:[String,Number,Object,Array],default:null},required:{type:Boolean,default:!1}," ":{}},emits:[" ","update:modelValue"],setup(){const e=Number.parseInt(window.getComputedStyle(document.body).getPropertyValue("--default-clickable-area")),t=Number.parseInt(window.getComputedStyle(document.body).getPropertyValue("--default-grid-baseline"));return{avatarSize:e-2*t,isLegacy:nr}},data(){return{search:""}},computed:{inputRequired(){return this.required?this.modelValue===null||Array.isArray(this.modelValue)&&this.modelValue.length===0:null},localCalculatePosition(){return this.calculatePosition!==null?this.calculatePosition:(e,t,{width:u})=>{e.style.width=u;const s={name:"addClass",fn(){return e.classList.add("vs__dropdown-menu--floating"),{}}},n={name:"togglePlacementClass",fn({placement:o}){return t.$el.classList.toggle("select--drop-up",o==="top"),e.classList.toggle("vs__dropdown-menu--floating-placement-top",o==="top"),{}}},i=()=>{UC(t.$refs.toggle,e,{placement:this.placement,middleware:[jC(-1),s,n,MC(),IC({limiter:$C()})]}).then(({x:o,y:a})=>{Object.assign(e.style,{left:`${o}px`,top:`${a}px`,width:`${t.$refs.toggle.getBoundingClientRect().width}px`})})};return LC(t.$refs.toggle,e,i)}},localFilterBy(){return this.filterBy??fs.props.filterBy.default},localLabel(){return this.label??fs.props.label.default},propsToForward(){const e=[...Object.keys(fs.props),...fs.mixins.flatMap(t=>Object.keys(t.props??{}))];return{...Object.fromEntries(Object.entries(this.$props).filter(([t,u])=>e.includes(t))),calculatePosition:this.localCalculatePosition,closeOnSelect:!this.keepOpen,filterBy:this.localFilterBy,label:this.localLabel}}},mounted(){!this.labelOutside&&!this.inputLabel&&this.ariaLabelCombobox,this.inputLabel&&this.ariaLabelCombobox},methods:{t:ft}},x6=["for"],A6=["required"];function b6(e,t,u,s,n,i){const o=It("ChevronDown"),a=It("NcEllipsisedOption"),r=It("NcLoadingIcon"),m=It("VueSelect");return X(),et(m,ut({class:["select",{"select--legacy":s.isLegacy,"select--no-wrap":u.noWrap}]},i.propsToForward,{onSearch:t[0]||(t[0]=l=>n.search=l),"onUpdate:modelValue":t[1]||(t[1]=l=>e.$emit("update:modelValue",l))}),am({search:Pe(({attributes:l,events:g})=>[ve("input",ut({class:["vs__search",[u.inputClass]]},l,{required:i.inputRequired,dir:"auto"},n0(g,!0)),null,16,A6)]),"open-indicator":Pe(({attributes:l})=>[Be(o,ut(l,{fillColor:"var(--vs-controls-color)",style:{cursor:u.disabled?null:"pointer"},size:26}),null,16,["style"])]),option:Pe(l=>[ze(e.$slots,"option",_t(At(l)),()=>[Be(a,{name:String(l[i.localLabel]),search:n.search},null,8,["name","search"])])]),"selected-option":Pe(l=>[ze(e.$slots,"selected-option",_t(At(l)),()=>[Be(a,{name:String(l[i.localLabel]),search:n.search},null,8,["name","search"])])]),spinner:Pe(l=>[l.loading?(X(),et(r,{key:0})):Ve("",!0)]),"no-options":Pe(()=>[Ns(dt(i.t("No results")),1)]),_:2},[!u.labelOutside&&u.inputLabel?{name:"header",fn:Pe(()=>[ve("label",{for:u.inputId,class:"select__label"},dt(u.inputLabel),9,x6)]),key:"0"}:void 0,da(e.$slots,(l,g)=>({name:g,fn:Pe(p=>[ze(e.$slots,g,_t(At(p)))])}))]),1040,["class"])}const A2=rt(y6,[["render",b6]]);function K3(e,t){return function(){return e.apply(t,arguments)}}const{toString:w6}=Object.prototype,{getPrototypeOf:hn}=Object,{iterator:vi,toStringTag:Y3}=Symbol,k0=(({hasOwnProperty:e})=>(t,u)=>e.call(t,u))(Object.prototype),mi=(e,t)=>{let u=e;const s=[];for(;u!=null&&u!==Object.prototype;){if(s.indexOf(u)!==-1)return!1;if(s.push(u),k0(u,t))return!0;u=hn(u)}return!1},D6=(e,t)=>e!=null&&mi(e,t)?e[t]:void 0,pr=(e=>t=>{const u=w6.call(t);return e[u]||(e[u]=u.slice(8,-1).toLowerCase())})(Object.create(null)),su=e=>(e=e.toLowerCase(),t=>pr(t)===e),io=e=>t=>typeof t===e,{isArray:js}=Array,vn=io("undefined");function Bn(e){return e!==null&&!vn(e)&&e.constructor!==null&&!vn(e.constructor)&&Rt(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const Z3=su("ArrayBuffer");function F6(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&Z3(e.buffer),t}const k6=io("string"),Rt=io("function"),X3=io("number"),yn=e=>e!==null&&typeof e=="object",S6=e=>e===!0||e===!1,Yi=e=>{if(!yn(e))return!1;const t=hn(e);return(t===null||t===Object.prototype||hn(t)===null)&&!mi(e,Y3)&&!mi(e,vi)},N6=e=>{if(!yn(e)||Bn(e))return!1;try{return Object.keys(e).length===0&&Object.getPrototypeOf(e)===Object.prototype}catch{return!1}},_6=su("Date"),O6=su("File"),T6=e=>!!(e&&typeof e.uri<"u"),z6=e=>e&&typeof e.getParts<"u",P6=su("Blob"),R6=su("FileList"),L6=e=>yn(e)&&Rt(e.pipe);function j6(){return typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof Kn<"u"?Kn:{}}const L4=j6(),j4=typeof L4.FormData<"u"?L4.FormData:void 0,I6=e=>{if(!e)return!1;if(j4&&e instanceof j4)return!0;const t=hn(e);if(!t||t===Object.prototype||!Rt(e.append))return!1;const u=pr(e);return u==="formdata"||u==="object"&&Rt(e.toString)&&e.toString()==="[object FormData]"},M6=su("URLSearchParams"),[$6,U6,V6,W6]=["ReadableStream","Request","Response","Headers"].map(su),H6=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function Ei(e,t,{allOwnKeys:u=!1}={}){if(e===null||typeof e>"u")return;let s,n;if(typeof e!="object"&&(e=[e]),js(e))for(s=0,n=e.length;s0;)if(n=u[s],t===n.toLowerCase())return n;return null}const bs=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:Kn,Q3=e=>!vn(e)&&e!==bs;function Ta(...e){const{caseless:t,skipUndefined:u}=Q3(this)&&this||{},s={},n=(i,o)=>{if(o==="__proto__"||o==="constructor"||o==="prototype")return;const a=t&&typeof o=="string"&&J3(s,o)||o,r=k0(s,a)?s[a]:void 0;Yi(r)&&Yi(i)?s[a]=Ta(r,i):Yi(i)?s[a]=Ta({},i):js(i)?s[a]=i.slice():(!u||!vn(i))&&(s[a]=i)};for(let i=0,o=e.length;i(Ei(t,(n,i)=>{u&&Rt(n)?Object.defineProperty(e,i,{__proto__:null,value:K3(n,u),writable:!0,enumerable:!0,configurable:!0}):Object.defineProperty(e,i,{__proto__:null,value:n,writable:!0,enumerable:!0,configurable:!0})},{allOwnKeys:s}),e),q6=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),K6=(e,t,u,s)=>{e.prototype=Object.create(t.prototype,s),Object.defineProperty(e.prototype,"constructor",{__proto__:null,value:e,writable:!0,enumerable:!1,configurable:!0}),Object.defineProperty(e,"super",{__proto__:null,value:t.prototype}),u&&Object.assign(e.prototype,u)},Y6=(e,t,u,s)=>{let n,i,o;const a={};if(t=t||{},e==null)return t;do{for(n=Object.getOwnPropertyNames(e),i=n.length;i-- >0;)o=n[i],(!s||s(o,e,t))&&!a[o]&&(t[o]=e[o],a[o]=!0);e=u!==!1&&hn(e)}while(e&&(!u||u(e,t))&&e!==Object.prototype);return t},Z6=(e,t,u)=>{e=String(e),(u===void 0||u>e.length)&&(u=e.length),u-=t.length;const s=e.indexOf(t,u);return s!==-1&&s===u},X6=e=>{if(!e)return null;if(js(e))return e;let t=e.length;if(!X3(t))return null;const u=new Array(t);for(;t-- >0;)u[t]=e[t];return u},J6=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&hn(Uint8Array)),Q6=(e,t)=>{const u=(e&&e[vi]).call(e);let s;for(;(s=u.next())&&!s.done;){const n=s.value;t.call(e,n[0],n[1])}},e5=(e,t)=>{let u;const s=[];for(;(u=e.exec(t))!==null;)s.push(u);return s},t5=su("HTMLFormElement"),u5=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(t,u,s){return u.toUpperCase()+s}),{propertyIsEnumerable:s5}=Object.prototype,n5=su("RegExp"),ec=(e,t)=>{const u=Object.getOwnPropertyDescriptors(e),s={};Ei(u,(n,i)=>{let o;(o=t(n,i,e))!==!1&&(s[i]=o||n)}),Object.defineProperties(e,s)},i5=e=>{ec(e,(t,u)=>{if(Rt(e)&&["arguments","caller","callee"].includes(u))return!1;const s=e[u];if(Rt(s)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+u+"'")})}})},o5=(e,t)=>{const u={},s=n=>{n.forEach(i=>{u[i]=!0})};return js(e)?s(e):s(String(e).split(t)),u},a5=()=>{},r5=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t;function l5(e){return!!(e&&Rt(e.append)&&e[Y3]==="FormData"&&e[vi])}const d5=e=>{const t=new WeakSet,u=s=>{if(yn(s)){if(t.has(s))return;if(Bn(s))return s;if(!("toJSON"in s)){t.add(s);const n=js(s)?[]:{};return Ei(s,(i,o)=>{const a=u(i);!vn(a)&&(n[o]=a)}),t.delete(s),n}}return s};return u(e)},m5=su("AsyncFunction"),c5=e=>e&&(yn(e)||Rt(e))&&Rt(e.then)&&Rt(e.catch),tc=((e,t)=>e?setImmediate:t?((u,s)=>(bs.addEventListener("message",({source:n,data:i})=>{n===bs&&i===u&&s.length&&s.shift()()},!1),n=>{s.push(n),bs.postMessage(u,"*")}))(`axios@${Math.random()}`,[]):u=>setTimeout(u))(typeof setImmediate=="function",Rt(bs.postMessage)),g5=typeof queueMicrotask<"u"?queueMicrotask.bind(bs):typeof ya<"u"&&ya.nextTick||tc,uc=e=>e!=null&&Rt(e[vi]),f5=e=>e!=null&&mi(e,vi)&&uc(e),D={isArray:js,isArrayBuffer:Z3,isBuffer:Bn,isFormData:I6,isArrayBufferView:F6,isString:k6,isNumber:X3,isBoolean:S6,isObject:yn,isPlainObject:Yi,isEmptyObject:N6,isReadableStream:$6,isRequest:U6,isResponse:V6,isHeaders:W6,isUndefined:vn,isDate:_6,isFile:O6,isReactNativeBlob:T6,isReactNative:z6,isBlob:P6,isRegExp:n5,isFunction:Rt,isStream:L6,isURLSearchParams:M6,isTypedArray:J6,isFileList:R6,forEach:Ei,merge:Ta,extend:G6,trim:H6,stripBOM:q6,inherits:K6,toFlatObject:Y6,kindOf:pr,kindOfTest:su,endsWith:Z6,toArray:X6,forEachEntry:Q6,matchAll:e5,isHTMLForm:t5,hasOwnProperty:k0,hasOwnProp:k0,hasOwnInPrototypeChain:mi,getSafeProp:D6,reduceDescriptors:ec,freezeMethods:i5,toObjectSet:o5,toCamelCase:u5,noop:a5,toFiniteNumber:r5,findKey:J3,global:bs,isContextDefined:Q3,isSpecCompliantForm:l5,toJSONObject:d5,isAsyncFn:m5,isThenable:c5,setImmediate:tc,asap:g5,isIterable:uc,isSafeIterable:f5},p5=D.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),h5=e=>{const t={};let u,s,n;return e&&e.split(` `).forEach(function(i){n=i.indexOf(":"),u=i.substring(0,n).trim().toLowerCase(),s=i.substring(n+1).trim(),!(!u||t[u]&&p5[u])&&(u==="set-cookie"?t[u]?t[u].push(s):t[u]=[s]:t[u]=t[u]?t[u]+", "+s:s)}),t};function v5(e){let t=0,u=e.length;for(;tt;){const s=e.charCodeAt(u-1);if(s!==9&&s!==32)break;u-=1}return t===0&&u===e.length?e:e.slice(t,u)}const E5=new RegExp("[\\u0000-\\u0008\\u000a-\\u001f\\u007f]+","g"),C5=new RegExp("[^\\u0009\\u0020-\\u007e\\u0080-\\u00ff]+","g");function hr(e,t){return D.isArray(e)?e.map(u=>hr(u,t)):v5(String(e).replace(t,""))}const B5=e=>hr(e,E5),y5=e=>hr(e,C5);function sc(e){const t=Object.create(null);return D.forEach(e.toJSON(),(u,s)=>{t[s]=y5(u)}),t}const I4=Symbol("internals");function On(e){return e&&String(e).trim().toLowerCase()}function Zi(e){return e===!1||e==null?e:D.isArray(e)?e.map(Zi):B5(String(e))}function x5(e){const t=Object.create(null),u=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let s;for(;s=u.exec(e);)t[s[1]]=s[2];return t}const A5=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function Xo(e,t,u,s,n){if(D.isFunction(s))return s.call(this,t,u);if(n&&(t=u),!!D.isString(t)){if(D.isString(s))return t.indexOf(s)!==-1;if(D.isRegExp(s))return s.test(t)}}function b5(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,u,s)=>u.toUpperCase()+s)}function w5(e,t){const u=D.toCamelCase(" "+t);["get","set","has"].forEach(s=>{Object.defineProperty(e,s+u,{__proto__:null,value:function(n,i,o){return this[s].call(this,t,n,i,o)},configurable:!0})})}let Ft=class{constructor(e){e&&this.set(e)}set(e,t,u){const s=this;function n(o,a,r){const m=On(a);if(!m)return;const l=D.findKey(s,m);(!l||s[l]===void 0||r===!0||r===void 0&&s[l]!==!1)&&(s[l||a]=Zi(o))}const i=(o,a)=>D.forEach(o,(r,m)=>n(r,m,a));if(D.isPlainObject(e)||e instanceof this.constructor)i(e,t);else if(D.isString(e)&&(e=e.trim())&&!A5(e))i(h5(e),t);else if(D.isObject(e)&&D.isSafeIterable(e)){let o=Object.create(null),a,r;for(const m of e){if(!D.isArray(m))throw new TypeError("Object iterator must return a key-value pair");r=m[0],D.hasOwnProp(o,r)?(a=o[r],o[r]=D.isArray(a)?[...a,m[1]]:[a,m[1]]):o[r]=m[1]}i(o,t)}else e!=null&&n(t,e,u);return this}get(e,t){if(e=On(e),e){const u=D.findKey(this,e);if(u){const s=this[u];if(!t)return s;if(t===!0)return x5(s);if(D.isFunction(t))return t.call(this,s,u);if(D.isRegExp(t))return t.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,t){if(e=On(e),e){const u=D.findKey(this,e);return!!(u&&this[u]!==void 0&&(!t||Xo(this,this[u],u,t)))}return!1}delete(e,t){const u=this;let s=!1;function n(i){if(i=On(i),i){const o=D.findKey(u,i);o&&(!t||Xo(u,u[o],o,t))&&(delete u[o],s=!0)}}return D.isArray(e)?e.forEach(n):n(e),s}clear(e){const t=Object.keys(this);let u=t.length,s=!1;for(;u--;){const n=t[u];(!e||Xo(this,this[n],n,e,!0))&&(delete this[n],s=!0)}return s}normalize(e){const t=this,u={};return D.forEach(this,(s,n)=>{const i=D.findKey(u,n);if(i){t[i]=Zi(s),delete t[n];return}const o=e?b5(n):String(n).trim();o!==n&&delete t[n],t[o]=Zi(s),u[o]=!0}),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const t=Object.create(null);return D.forEach(this,(u,s)=>{u!=null&&u!==!1&&(t[s]=e&&D.isArray(u)?u.join(", "):u)}),t}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([e,t])=>e+": "+t).join(` -`)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...t){const u=new this(e);return t.forEach(s=>u.set(s)),u}static accessor(e){const t=(this[I4]=this[I4]={accessors:{}}).accessors,u=this.prototype;function s(n){const i=On(n);t[i]||(w5(u,n),t[i]=!0)}return D.isArray(e)?e.forEach(s):s(e),this}};Ft.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),D.reduceDescriptors(Ft.prototype,({value:e},t)=>{let u=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(s){this[u]=s}}}),D.freezeMethods(Ft);const D5="[REDACTED ****]";function F5(e){if(D.hasOwnProp(e,"toJSON"))return!0;let t=Object.getPrototypeOf(e);for(;t&&t!==Object.prototype;){if(D.hasOwnProp(t,"toJSON"))return!0;t=Object.getPrototypeOf(t)}return!1}function k5(e,t){const u=new Set(t.map(i=>String(i).toLowerCase())),s=[],n=i=>{if(i===null||typeof i!="object"||D.isBuffer(i))return i;if(s.indexOf(i)!==-1)return;i instanceof Ft&&(i=i.toJSON()),s.push(i);let o;if(D.isArray(i))o=[],i.forEach((a,r)=>{const m=n(a);D.isUndefined(m)||(o[r]=m)});else{if(!D.isPlainObject(i)&&F5(i))return s.pop(),i;o=Object.create(null);for(const[a,r]of Object.entries(i)){const m=u.has(a.toLowerCase())?D5:n(r);D.isUndefined(m)||(o[a]=m)}}return s.pop(),o};return n(e)}let te=class nc extends Error{static from(t,u,s,n,i,o){const a=new nc(t.message,u||t.code,s,n,i);return Object.defineProperty(a,"cause",{__proto__:null,value:t,writable:!0,enumerable:!1,configurable:!0}),a.name=t.name,t.status!=null&&a.status==null&&(a.status=t.status),o&&Object.assign(a,o),a}constructor(t,u,s,n,i){super(t),Object.defineProperty(this,"message",{__proto__:null,value:t,enumerable:!0,writable:!0,configurable:!0}),this.name="AxiosError",this.isAxiosError=!0,u&&(this.code=u),s&&(this.config=s),n&&(this.request=n),i&&(this.response=i,this.status=i.status)}toJSON(){const t=this.config,u=t&&D.hasOwnProp(t,"redact")?t.redact:void 0,s=D.isArray(u)&&u.length>0?k5(t,u):D.toJSONObject(t);return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:s,code:this.code,status:this.status}}};te.ERR_BAD_OPTION_VALUE="ERR_BAD_OPTION_VALUE",te.ERR_BAD_OPTION="ERR_BAD_OPTION",te.ECONNABORTED="ECONNABORTED",te.ETIMEDOUT="ETIMEDOUT",te.ECONNREFUSED="ECONNREFUSED",te.ERR_NETWORK="ERR_NETWORK",te.ERR_FR_TOO_MANY_REDIRECTS="ERR_FR_TOO_MANY_REDIRECTS",te.ERR_DEPRECATED="ERR_DEPRECATED",te.ERR_BAD_RESPONSE="ERR_BAD_RESPONSE",te.ERR_BAD_REQUEST="ERR_BAD_REQUEST",te.ERR_CANCELED="ERR_CANCELED",te.ERR_NOT_SUPPORT="ERR_NOT_SUPPORT",te.ERR_INVALID_URL="ERR_INVALID_URL",te.ERR_FORM_DATA_DEPTH_EXCEEDED="ERR_FORM_DATA_DEPTH_EXCEEDED";const S5=null,ic=100;function za(e){return D.isPlainObject(e)||D.isArray(e)}function oc(e){return D.endsWith(e,"[]")?e.slice(0,-2):e}function Jo(e,t,u){return e?e.concat(t).map(function(s,n){return s=oc(s),!u&&n?"["+s+"]":s}).join(u?".":""):t}function N5(e){return D.isArray(e)&&!e.some(za)}const _5=D.toFlatObject(D,{},null,function(e){return/^is[A-Z]/.test(e)});function oo(e,t,u){if(!D.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,u=D.toFlatObject(u,{metaTokens:!0,dots:!1,indexes:!1},!1,function(B,A){return!D.isUndefined(A[B])});const s=u.metaTokens,n=u.visitor||y,i=u.dots,o=u.indexes,a=u.Blob||typeof Blob<"u"&&Blob,r=u.maxDepth===void 0?ic:u.maxDepth,m=a&&D.isSpecCompliantForm(t),l=[];if(!D.isFunction(n))throw new TypeError("visitor must be a function");function g(B){if(B===null)return"";if(D.isDate(B))return B.toISOString();if(D.isBoolean(B))return B.toString();if(!m&&D.isBlob(B))throw new te("Blob is not supported. Use a Buffer instead.");if(D.isArrayBuffer(B)||D.isTypedArray(B)){if(m&&typeof a=="function")return new a([B]);if(typeof e4<"u")return e4.from(B);throw new te("Blob is not supported. Use a Buffer instead.",te.ERR_NOT_SUPPORT)}return B}function p(B){if(B>r)throw new te("Object is too deeply nested ("+B+" levels). Max depth: "+r,te.ERR_FORM_DATA_DEPTH_EXCEEDED)}function h(B,A){if(r===1/0)return JSON.stringify(B);const O=[];return JSON.stringify(B,function(S,q){if(!D.isObject(q))return q;for(;O.length&&O[O.length-1]!==this;)O.pop();return O.push(q),p(A+O.length-1),q})}function y(B,A,O){let S=B;if(D.isReactNative(t)&&D.isReactNativeBlob(B))return t.append(Jo(O,A,i),g(B)),!1;if(B&&!O&&typeof B=="object"){if(D.endsWith(A,"{}"))A=s?A:A.slice(0,-2),B=h(B,1);else if(D.isArray(B)&&N5(B)||(D.isFileList(B)||D.endsWith(A,"[]"))&&(S=D.toArray(B)))return A=oc(A),S.forEach(function(q,I){!(D.isUndefined(q)||q===null)&&t.append(o===!0?Jo([A],I,i):o===null?A:A+"[]",g(q))}),!1}return za(B)?!0:(t.append(Jo(O,A,i),g(B)),!1)}const E=Object.assign(_5,{defaultVisitor:y,convertValue:g,isVisitable:za});function F(B,A,O=0){if(!D.isUndefined(B)){if(p(O),l.indexOf(B)!==-1)throw new Error("Circular reference detected in "+A.join("."));l.push(B),D.forEach(B,function(S,q){(!(D.isUndefined(S)||S===null)&&n.call(t,S,D.isString(q)?q.trim():q,A,E))===!0&&F(S,A?A.concat(q):[q],O+1)}),l.pop()}}if(!D.isObject(e))throw new TypeError("data must be an object");return F(e),t}function M4(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"};return encodeURIComponent(e).replace(/[!'()~]|%20/g,function(u){return t[u]})}function vr(e,t){this._pairs=[],e&&oo(e,this,t)}const $4=vr.prototype;$4.append=function(e,t){this._pairs.push([e,t])},$4.toString=function(e){const t=e?u=>e.call(this,u,M4):M4;return this._pairs.map(function(u){return t(u[0])+"="+t(u[1])},"").join("&")};function O5(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function ac(e,t,u){if(!t)return e;e=e||"";const s=D.isFunction(u)?{serialize:u}:u,n=D.getSafeProp(s,"encode")||O5,i=D.getSafeProp(s,"serialize");let o;if(i?o=i(t,s):o=D.isURLSearchParams(t)?t.toString():new vr(t,s).toString(n),o){const a=e.indexOf("#");a!==-1&&(e=e.slice(0,a)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class U4{constructor(){this.handlers=[]}use(t,u,s){return this.handlers.push({fulfilled:t,rejected:u,synchronous:s?s.synchronous:!1,runWhen:s?s.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){D.forEach(this.handlers,function(u){u!==null&&t(u)})}}const Er={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1,legacyInterceptorReqResOrdering:!0,advertiseZstdAcceptEncoding:!1,validateStatusUndefinedResolves:!0},T5=typeof URLSearchParams<"u"?URLSearchParams:vr,z5=typeof FormData<"u"?FormData:null,P5=typeof Blob<"u"?Blob:null,R5={isBrowser:!0,classes:{URLSearchParams:T5,FormData:z5,Blob:P5},protocols:["http","https","file","blob","url","data"]},Cr=typeof window<"u"&&typeof document<"u",Pa=typeof navigator=="object"&&navigator||void 0,L5=Cr&&(!Pa||["ReactNative","NativeScript","NS"].indexOf(Pa.product)<0),j5=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",I5=Cr&&window.location.href||"http://localhost",M5=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Cr,hasStandardBrowserEnv:L5,hasStandardBrowserWebWorkerEnv:j5,navigator:Pa,origin:I5},Symbol.toStringTag,{value:"Module"})),vt={...M5,...R5};function $5(e,t){return oo(e,new vt.classes.URLSearchParams,{visitor:function(u,s,n,i){return vt.isNode&&D.isBuffer(u)?(this.append(s,u.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)},...t})}const V4=ic;function rc(e){if(e>V4)throw new te("FormData field is too deeply nested ("+e+" levels). Max depth: "+V4,te.ERR_FORM_DATA_DEPTH_EXCEEDED)}function U5(e){const t=[],u=/\w+|\[(\w*)]/g;let s;for(;(s=u.exec(e))!==null;)rc(t.length),t.push(s[0]==="[]"?"":s[1]||s[0]);return t}function V5(e){const t={},u=Object.keys(e);let s;const n=u.length;let i;for(s=0;s=u.length;return o=!o&&D.isArray(n)?n.length:o,r?(D.hasOwnProp(n,o)?n[o]=D.isArray(n[o])?n[o].concat(s):[n[o],s]:n[o]=s,!a):((!D.hasOwnProp(n,o)||!D.isObject(n[o]))&&(n[o]=[]),t(u,s,n[o],i)&&D.isArray(n[o])&&(n[o]=V5(n[o])),!a)}if(D.isFormData(e)&&D.isFunction(e.entries)){const u={};return D.forEachEntry(e,(s,n)=>{t(U5(s),n,u,0)}),u}return null}const Ys=(e,t)=>e!=null&&D.hasOwnProp(e,t)?e[t]:void 0;function W5(e,t,u){if(D.isString(e))try{return(t||JSON.parse)(e),D.trim(e)}catch(s){if(s.name!=="SyntaxError")throw s}return(u||JSON.stringify)(e)}const Ci={transitional:Er,adapter:["xhr","http","fetch"],transformRequest:[function(e,t){const u=t.getContentType()||"",s=u.indexOf("application/json")>-1,n=D.isObject(e);if(n&&D.isHTMLForm(e)&&(e=new FormData(e)),D.isFormData(e))return s?JSON.stringify(lc(e)):e;if(D.isArrayBuffer(e)||D.isBuffer(e)||D.isStream(e)||D.isFile(e)||D.isBlob(e)||D.isReadableStream(e))return e;if(D.isArrayBufferView(e))return e.buffer;if(D.isURLSearchParams(e))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let i;if(n){const o=Ys(this,"formSerializer");if(u.indexOf("application/x-www-form-urlencoded")>-1)return $5(e,o).toString();if((i=D.isFileList(e))||u.indexOf("multipart/form-data")>-1){const a=Ys(this,"env"),r=a&&a.FormData;return oo(i?{"files[]":e}:e,r&&new r,o)}}return n||s?(t.setContentType("application/json",!1),W5(e)):e}],transformResponse:[function(e){const t=Ys(this,"transitional")||Ci.transitional,u=t&&t.forcedJSONParsing,s=Ys(this,"responseType"),n=s==="json";if(D.isResponse(e)||D.isReadableStream(e))return e;if(e&&D.isString(e)&&(u&&!s||n)){const i=!(t&&t.silentJSONParsing)&&n;try{return JSON.parse(e,Ys(this,"parseReviver"))}catch(o){if(i)throw o.name==="SyntaxError"?te.from(o,te.ERR_BAD_RESPONSE,this,null,Ys(this,"response")):o}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:vt.classes.FormData,Blob:vt.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};D.forEach(["delete","get","head","post","put","patch","query"],e=>{Ci.headers[e]={}});function Qo(e,t){const u=this||Ci,s=t||u,n=Ft.from(s.headers);let i=s.data;return D.forEach(e,function(o){i=o.call(u,i,n.normalize(),t?t.status:void 0)}),n.normalize(),i}function dc(e){return!!(e&&e.__CANCEL__)}let Bi=class extends te{constructor(e,t,u){super(e??"canceled",te.ERR_CANCELED,t,u),this.name="CanceledError",this.__CANCEL__=!0}};function mc(e,t,u){const s=u.config.validateStatus;!u.status||!s||s(u.status)?e(u):t(new te("Request failed with status code "+u.status,u.status>=400&&u.status<500?te.ERR_BAD_REQUEST:te.ERR_BAD_RESPONSE,u.config,u.request,u))}function H5(e){const t=/^([-+\w]{1,25}):(?:\/\/)?/.exec(e);return t&&t[1]||""}function G5(e,t){e=e||10;const u=new Array(e),s=new Array(e);let n=0,i=0,o;return t=t!==void 0?t:1e3,function(a){const r=Date.now(),m=s[i];o||(o=r),u[n]=a,s[n]=r;let l=i,g=0;for(;l!==n;)g+=u[l++],l=l%e;if(n=(n+1)%e,n===i&&(i=(i+1)%e),r-o{u=r,n=null,i&&(clearTimeout(i),i=null),e(...a)};return[(...a)=>{const r=Date.now(),m=r-u;m>=s?o(a,r):(n=a,i||(i=setTimeout(()=>{i=null,o(n)},s-m)))},()=>n&&o(n)]}const S0=(e,t,u=3)=>{let s=0;const n=G5(50,250);return q5(i=>{if(!i||typeof i.loaded!="number")return;const o=i.loaded,a=i.lengthComputable?i.total:void 0,r=a!=null?Math.min(o,a):o,m=Math.max(0,r-s),l=n(m);s=Math.max(s,r);const g={loaded:r,total:a,progress:a?r/a:void 0,bytes:m,rate:l||void 0,estimated:l&&a?(a-r)/l:void 0,event:i,lengthComputable:a!=null,[t?"download":"upload"]:!0};e(g)},u)},W4=(e,t)=>{const u=e!=null;return[s=>t[0]({lengthComputable:u,total:e,loaded:s}),t[1]]},H4=e=>(...t)=>D.asap(()=>e(...t)),K5=vt.hasStandardBrowserEnv?((e,t)=>u=>(u=new URL(u,vt.origin),e.protocol===u.protocol&&e.host===u.host&&(t||e.port===u.port)))(new URL(vt.origin),vt.navigator&&/(msie|trident)/i.test(vt.navigator.userAgent)):()=>!0,Y5=vt.hasStandardBrowserEnv?{write(e,t,u,s,n,i,o){if(typeof document>"u")return;const a=[`${e}=${encodeURIComponent(t)}`];D.isNumber(u)&&a.push(`expires=${new Date(u).toUTCString()}`),D.isString(s)&&a.push(`path=${s}`),D.isString(n)&&a.push(`domain=${n}`),i===!0&&a.push("secure"),D.isString(o)&&a.push(`SameSite=${o}`),document.cookie=a.join("; ")},read(e){if(typeof document>"u")return null;const t=document.cookie.split(";");for(let u=0;ue instanceof Ft?{...e}:e;function Is(e,t){e=e||{},t=t||{};const u=Object.create(null);Object.defineProperty(u,"hasOwnProperty",{__proto__:null,value:Object.prototype.hasOwnProperty,enumerable:!1,writable:!0,configurable:!0});function s(l,g,p,h){return D.isPlainObject(l)&&D.isPlainObject(g)?D.merge.call({caseless:h},l,g):D.isPlainObject(g)?D.merge({},g):D.isArray(g)?g.slice():g}function n(l,g,p,h){if(D.isUndefined(g)){if(!D.isUndefined(l))return s(void 0,l,p,h)}else return s(l,g,p,h)}function i(l,g){if(!D.isUndefined(g))return s(void 0,g)}function o(l,g){if(D.isUndefined(g)){if(!D.isUndefined(l))return s(void 0,l)}else return s(void 0,g)}function a(l){const g=D.hasOwnProp(t,"transitional")?t.transitional:void 0;if(!D.isUndefined(g))if(D.isPlainObject(g)){if(D.hasOwnProp(g,l))return g[l]}else return;const p=D.hasOwnProp(e,"transitional")?e.transitional:void 0;if(D.isPlainObject(p)&&D.hasOwnProp(p,l))return p[l]}function r(l,g,p){if(D.hasOwnProp(t,p))return s(l,g);if(D.hasOwnProp(e,p))return s(void 0,l)}const m={url:i,method:i,data:i,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,withXSRFToken:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,allowedSocketPaths:o,responseEncoding:o,validateStatus:r,headers:(l,g,p)=>n(q4(l),q4(g),p,!0)};return D.forEach(Object.keys({...e,...t}),function(l){if(l==="__proto__"||l==="constructor"||l==="prototype")return;const g=D.hasOwnProp(m,l)?m[l]:n,p=D.hasOwnProp(e,l)?e[l]:void 0,h=D.hasOwnProp(t,l)?t[l]:void 0,y=g(p,h,l);D.isUndefined(y)&&g!==r||(u[l]=y)}),D.hasOwnProp(t,"validateStatus")&&D.isUndefined(t.validateStatus)&&a("validateStatusUndefinedResolves")===!1&&(D.hasOwnProp(e,"validateStatus")?u.validateStatus=s(void 0,e.validateStatus):delete u.validateStatus),u}const uB=["content-type","content-length"];function sB(e,t,u){if(u!=="content-only"){e.set(t);return}Object.entries(t||{}).forEach(([s,n])=>{uB.includes(s.toLowerCase())&&e.set(s,n)})}const nB=e=>encodeURIComponent(e).replace(/%([0-9A-F]{2})/gi,(t,u)=>String.fromCharCode(parseInt(u,16)));function gc(e){const t=Is({},e),u=p=>D.hasOwnProp(t,p)?t[p]:void 0,s=u("data");let n=u("withXSRFToken");const i=u("xsrfHeaderName"),o=u("xsrfCookieName");let a=u("headers");const r=u("auth"),m=u("baseURL"),l=u("allowAbsoluteUrls"),g=u("url");if(t.headers=a=Ft.from(a),t.url=ac(cc(m,g,l,t),u("params"),u("paramsSerializer")),r){const p=D.getSafeProp(r,"username")||"",h=D.getSafeProp(r,"password")||"";try{a.set("Authorization","Basic "+btoa(p+":"+(h?nB(h):"")))}catch(y){throw te.from(y,te.ERR_BAD_OPTION_VALUE,e)}}if(D.isFormData(s)&&(vt.hasStandardBrowserEnv||vt.hasStandardBrowserWebWorkerEnv||D.isReactNative(s)?a.setContentType(void 0):D.isFunction(s.getHeaders)&&sB(a,s.getHeaders(),u("formDataHeaderPolicy"))),vt.hasStandardBrowserEnv&&(D.isFunction(n)&&(n=n(t)),n===!0||n==null&&K5(t.url))){const p=i&&o&&Y5.read(o);p&&a.set(i,p)}return t}const iB=typeof XMLHttpRequest<"u",oB=iB&&function(e){return new Promise(function(t,u){const s=gc(e);let n=s.data;const i=Ft.from(s.headers).normalize();let{responseType:o,onUploadProgress:a,onDownloadProgress:r}=s,m,l,g,p,h;function y(){p&&p(),h&&h(),s.cancelToken&&s.cancelToken.unsubscribe(m),s.signal&&s.signal.removeEventListener("abort",m)}let E=new XMLHttpRequest;E.open(s.method.toUpperCase(),s.url,!0),E.timeout=s.timeout;function F(){if(!E)return;const A=Ft.from("getAllResponseHeaders"in E&&E.getAllResponseHeaders()),O={data:!o||o==="text"||o==="json"?E.responseText:E.response,status:E.status,statusText:E.statusText,headers:A,config:e,request:E};mc(function(S){t(S),y()},function(S){u(S),y()},O),E=null}"onloadend"in E?E.onloadend=F:E.onreadystatechange=function(){!E||E.readyState!==4||E.status===0&&!(E.responseURL&&E.responseURL.startsWith("file:"))||setTimeout(F)},E.onabort=function(){E&&(u(new te("Request aborted",te.ECONNABORTED,e,E)),y(),E=null)},E.onerror=function(A){const O=A&&A.message?A.message:"Network Error",S=new te(O,te.ERR_NETWORK,e,E);S.event=A||null,u(S),y(),E=null},E.ontimeout=function(){let A=s.timeout?"timeout of "+s.timeout+"ms exceeded":"timeout exceeded";const O=s.transitional||Er;s.timeoutErrorMessage&&(A=s.timeoutErrorMessage),u(new te(A,O.clarifyTimeoutError?te.ETIMEDOUT:te.ECONNABORTED,e,E)),y(),E=null},n===void 0&&i.setContentType(null),"setRequestHeader"in E&&D.forEach(sc(i),function(A,O){E.setRequestHeader(O,A)}),D.isUndefined(s.withCredentials)||(E.withCredentials=!!s.withCredentials),o&&o!=="json"&&(E.responseType=s.responseType),r&&([g,h]=S0(r,!0),E.addEventListener("progress",g)),a&&E.upload&&([l,p]=S0(a),E.upload.addEventListener("progress",l),E.upload.addEventListener("loadend",p)),(s.cancelToken||s.signal)&&(m=A=>{E&&(u(!A||A.type?new Bi(null,e,E):A),E.abort(),y(),E=null)},s.cancelToken&&s.cancelToken.subscribe(m),s.signal&&(s.signal.aborted?m():s.signal.addEventListener("abort",m)));const B=H5(s.url);if(B&&!vt.protocols.includes(B)){u(new te("Unsupported protocol "+B+":",te.ERR_BAD_REQUEST,e)),y();return}E.send(n||null)})},aB=(e,t)=>{if(e=e?e.filter(Boolean):[],!t&&!e.length)return;const u=new AbortController;let s=!1;const n=function(r){if(!s){s=!0,o();const m=r instanceof Error?r:this.reason;u.abort(m instanceof te?m:new Bi(m instanceof Error?m.message:m))}};let i=t&&setTimeout(()=>{i=null,n(new te(`timeout of ${t}ms exceeded`,te.ETIMEDOUT))},t);const o=()=>{e&&(i&&clearTimeout(i),i=null,e.forEach(r=>{r.unsubscribe?r.unsubscribe(n):r.removeEventListener("abort",n)}),e=null)};e.forEach(r=>r.addEventListener("abort",n,{once:!0}));const{signal:a}=u;return a.unsubscribe=()=>D.asap(o),a},rB=function*(e,t){let u=e.byteLength;if(u{const n=lB(e,t);let i=0,o,a=r=>{o||(o=!0,s&&s(r))};return new ReadableStream({async pull(r){try{const{done:m,value:l}=await n.next();if(m){a(),r.close();return}let g=l.byteLength;if(u){let p=i+=g;u(p)}r.enqueue(new Uint8Array(l))}catch(m){throw a(m),m}},cancel(r){return a(r),n.return()}},{highWaterMark:2})},N0=e=>e>=48&&e<=57||e>=65&&e<=70||e>=97&&e<=102,mB=(e,t,u)=>t+2g>=2&&s.charCodeAt(g-2)===37&&s.charCodeAt(g-1)===51&&(s.charCodeAt(g)===68||s.charCodeAt(g)===100);r>=0&&(s.charCodeAt(r)===61?(a++,r--):m(r)&&(a++,r-=3)),a===1&&r>=0&&(s.charCodeAt(r)===61||m(r))&&a++;const l=Math.floor(i/4)*3-(a||0);return l>0?l:0}let n=0;for(let i=0,o=s.length;i=55296&&a<=56319&&i+1=56320&&r<=57343?(n+=4,i++):n+=3}else n+=3}return n}const Br="1.18.1",Y4=64*1024,{isFunction:ji}=D,gB=e=>encodeURIComponent(e).replace(/%([0-9A-F]{2})/gi,(t,u)=>String.fromCharCode(parseInt(u,16))),Z4=e=>{if(!D.isString(e))return e;try{return decodeURIComponent(e)}catch{return e}},X4=(e,...t)=>{try{return!!e(...t)}catch{return!1}},fB=e=>{const t=e.indexOf("://");let u=e;return t!==-1&&(u=u.slice(t+3)),u.includes("@")||u.includes(":")},pB=e=>{const t=D.global!==void 0&&D.global!==null?D.global:globalThis,{ReadableStream:u,TextEncoder:s}=t;e=D.merge.call({skipUndefined:!0},{Request:t.Request,Response:t.Response},e);const{fetch:n,Request:i,Response:o}=e,a=n?ji(n):typeof fetch=="function",r=ji(i),m=ji(o);if(!a)return!1;const l=a&&ji(u),g=a&&(typeof s=="function"?(B=>A=>B.encode(A))(new s):async B=>new Uint8Array(await new i(B).arrayBuffer())),p=r&&l&&X4(()=>{let B=!1;const A=new i(vt.origin,{body:new u,method:"POST",get duplex(){return B=!0,"half"}}),O=A.headers.has("Content-Type");return A.body!=null&&A.body.cancel(),B&&!O}),h=m&&l&&X4(()=>D.isReadableStream(new o("").body)),y={stream:h&&(B=>B.body)};a&&["text","arrayBuffer","blob","formData","stream"].forEach(B=>{!y[B]&&(y[B]=(A,O)=>{let S=A&&A[B];if(S)return S.call(A);throw new te(`Response type '${B}' is not supported`,te.ERR_NOT_SUPPORT,O)})});const E=async B=>{if(B==null)return 0;if(D.isBlob(B))return B.size;if(D.isSpecCompliantForm(B))return(await new i(vt.origin,{method:"POST",body:B}).arrayBuffer()).byteLength;if(D.isArrayBufferView(B)||D.isArrayBuffer(B))return B.byteLength;if(D.isURLSearchParams(B)&&(B=B+""),D.isString(B))return(await g(B)).byteLength},F=async(B,A)=>D.toFiniteNumber(B.getContentLength())??E(A);return async B=>{let{url:A,method:O,data:S,signal:q,cancelToken:I,timeout:Y,onDownloadProgress:ne,onUploadProgress:G,responseType:M,headers:ie,withCredentials:w="same-origin",fetchOptions:T,maxContentLength:V,maxBodyLength:ue}=gc(B);const Z=D.isNumber(V)&&V>-1,ee=D.isNumber(ue)&&ue>-1,se=he=>D.hasOwnProp(B,he)?B[he]:void 0;let ce=n||fetch;M=M?(M+"").toLowerCase():"text";let de=aB([q,I&&I.toAbortSignal()],Y),oe=null;const xe=de&&de.unsubscribe&&(()=>{de.unsubscribe()});let qe,Ne=null;const Le=()=>new te("Request body larger than maxBodyLength limit",te.ERR_BAD_REQUEST,B,oe);try{let he;const We=se("auth");if(We){const N=D.getSafeProp(We,"username")||"",W=D.getSafeProp(We,"password")||"";he={username:N,password:W}}if(fB(A)){const N=new URL(A,vt.origin);if(!he&&(N.username||N.password)){const W=Z4(N.username),U=Z4(N.password);he={username:W,password:U}}(N.username||N.password)&&(N.username="",N.password="",A=N.href)}if(he&&(ie.delete("authorization"),ie.set("Authorization","Basic "+btoa(gB((he.username||"")+":"+(he.password||""))))),Z&&typeof A=="string"&&A.startsWith("data:")&&cB(A)>V)throw new te("maxContentLength size of "+V+" exceeded",te.ERR_BAD_RESPONSE,B,oe);if(ee&&O!=="get"&&O!=="head"){const N=await E(S);if(typeof N=="number"&&isFinite(N)&&(qe=N,N>ue))throw Le()}const Tt=ee&&(D.isReadableStream(S)||D.isStream(S)),nu=(N,W,U)=>K4(N,Y4,H=>{if(ee&&H>ue)throw Ne=Le();W&&W(H)},U);if(p&&O!=="get"&&O!=="head"&&(G||Tt)){if(qe=qe??await F(ie,S),qe!==0||Tt){let N=new i(A,{method:"POST",body:S,duplex:"half"}),W;if(D.isFormData(S)&&(W=N.headers.get("content-type"))&&ie.setContentType(W),N.body){const[U,H]=G&&W4(qe,S0(H4(G)))||[];S=nu(N.body,U,H)}}}else if(Tt&&!r&&l&&O!=="get"&&O!=="head")S=nu(S);else if(Tt&&r&&!p&&O!=="get"&&O!=="head")throw new te("Stream request bodies are not supported by the current fetch implementation",te.ERR_NOT_SUPPORT,B,oe);D.isString(w)||(w=w?"include":"omit");const Vt=r&&"credentials"in i.prototype;if(D.isFormData(S)){const N=ie.getContentType();N&&/^multipart\/form-data/i.test(N)&&!/boundary=/i.test(N)&&ie.delete("content-type")}ie.set("User-Agent","axios/"+Br,!1);const C={...T,signal:de,method:O.toUpperCase(),headers:sc(ie.normalize()),body:S,duplex:"half",credentials:Vt?w:void 0};oe=r&&new i(A,C);let b=await(r?ce(oe,T):ce(A,C));const _=Ft.from(b.headers);if(Z){const N=D.toFiniteNumber(_.getContentLength());if(N!=null&&N>V)throw new te("maxContentLength size of "+V+" exceeded",te.ERR_BAD_RESPONSE,B,oe)}const $=h&&(M==="stream"||M==="response");if(h&&b.body&&(ne||Z||$&&xe)){const N={};["status","statusText","headers"].forEach(J=>{N[J]=b[J]});const W=D.toFiniteNumber(_.getContentLength()),[U,H]=ne&&W4(W,S0(H4(ne),!0))||[];let j=0;const re=J=>{if(Z&&(j=J,j>V))throw new te("maxContentLength size of "+V+" exceeded",te.ERR_BAD_RESPONSE,B,oe);U&&U(J)};b=new o(K4(b.body,Y4,re,()=>{H&&H(),xe&&xe()}),N)}M=M||"text";let z=await y[D.findKey(y,M)||"text"](b,B);if(Z&&!h&&!$){let N;if(z!=null&&(typeof z.byteLength=="number"?N=z.byteLength:typeof z.size=="number"?N=z.size:typeof z=="string"&&(N=typeof s=="function"?new s().encode(z).byteLength:z.length)),typeof N=="number"&&N>V)throw new te("maxContentLength size of "+V+" exceeded",te.ERR_BAD_RESPONSE,B,oe)}return!$&&xe&&xe(),await new Promise((N,W)=>{mc(N,W,{data:z,headers:Ft.from(b.headers),status:b.status,statusText:b.statusText,config:B,request:oe})})}catch(he){if(xe&&xe(),de&&de.aborted&&de.reason instanceof te){const We=de.reason;throw We.config=B,oe&&(We.request=oe),he!==We&&Object.defineProperty(We,"cause",{__proto__:null,value:he,writable:!0,enumerable:!1,configurable:!0}),We}if(Ne)throw oe&&!Ne.request&&(Ne.request=oe),Ne;if(he instanceof te)throw oe&&!he.request&&(he.request=oe),he;if(he&&he.name==="TypeError"&&/Load failed|fetch/i.test(he.message)){const We=new te("Network Error",te.ERR_NETWORK,B,oe,he&&he.response);throw Object.defineProperty(We,"cause",{__proto__:null,value:he.cause||he,writable:!0,enumerable:!1,configurable:!0}),We}throw te.from(he,he&&he.code,B,oe,he&&he.response)}}},hB=new Map,fc=e=>{let t=e&&e.env||{};const{fetch:u,Request:s,Response:n}=t,i=[s,n,u];let o=i.length,a=o,r,m,l=hB;for(;a--;)r=i[a],m=l.get(r),m===void 0&&l.set(r,m=a?new Map:pB(t)),l=m;return m};fc();const yr={http:S5,xhr:oB,fetch:{get:fc}};D.forEach(yr,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{__proto__:null,value:t})}catch{}Object.defineProperty(e,"adapterName",{__proto__:null,value:t})}});const J4=e=>`- ${e}`,vB=e=>D.isFunction(e)||e===null||e===!1;function EB(e,t){e=D.isArray(e)?e:[e];const{length:u}=e;let s,n;const i={};for(let o=0;o`adapter ${r} `+(m===!1?"is not supported by the environment":"is not available in the build"));let a=u?o.length>1?`since : +`)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...t){const u=new this(e);return t.forEach(s=>u.set(s)),u}static accessor(e){const t=(this[I4]=this[I4]={accessors:{}}).accessors,u=this.prototype;function s(n){const i=On(n);t[i]||(w5(u,n),t[i]=!0)}return D.isArray(e)?e.forEach(s):s(e),this}};Ft.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),D.reduceDescriptors(Ft.prototype,({value:e},t)=>{let u=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(s){this[u]=s}}}),D.freezeMethods(Ft);const D5="[REDACTED ****]";function F5(e){if(D.hasOwnProp(e,"toJSON"))return!0;let t=Object.getPrototypeOf(e);for(;t&&t!==Object.prototype;){if(D.hasOwnProp(t,"toJSON"))return!0;t=Object.getPrototypeOf(t)}return!1}function k5(e,t){const u=new Set(t.map(i=>String(i).toLowerCase())),s=[],n=i=>{if(i===null||typeof i!="object"||D.isBuffer(i))return i;if(s.indexOf(i)!==-1)return;i instanceof Ft&&(i=i.toJSON()),s.push(i);let o;if(D.isArray(i))o=[],i.forEach((a,r)=>{const m=n(a);D.isUndefined(m)||(o[r]=m)});else{if(!D.isPlainObject(i)&&F5(i))return s.pop(),i;o=Object.create(null);for(const[a,r]of Object.entries(i)){const m=u.has(a.toLowerCase())?D5:n(r);D.isUndefined(m)||(o[a]=m)}}return s.pop(),o};return n(e)}let te=class nc extends Error{static from(t,u,s,n,i,o){const a=new nc(t.message,u||t.code,s,n,i);return Object.defineProperty(a,"cause",{__proto__:null,value:t,writable:!0,enumerable:!1,configurable:!0}),a.name=t.name,t.status!=null&&a.status==null&&(a.status=t.status),o&&Object.assign(a,o),a}constructor(t,u,s,n,i){super(t),Object.defineProperty(this,"message",{__proto__:null,value:t,enumerable:!0,writable:!0,configurable:!0}),this.name="AxiosError",this.isAxiosError=!0,u&&(this.code=u),s&&(this.config=s),n&&(this.request=n),i&&(this.response=i,this.status=i.status)}toJSON(){const t=this.config,u=t&&D.hasOwnProp(t,"redact")?t.redact:void 0,s=D.isArray(u)&&u.length>0?k5(t,u):D.toJSONObject(t);return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:s,code:this.code,status:this.status}}};te.ERR_BAD_OPTION_VALUE="ERR_BAD_OPTION_VALUE",te.ERR_BAD_OPTION="ERR_BAD_OPTION",te.ECONNABORTED="ECONNABORTED",te.ETIMEDOUT="ETIMEDOUT",te.ECONNREFUSED="ECONNREFUSED",te.ERR_NETWORK="ERR_NETWORK",te.ERR_FR_TOO_MANY_REDIRECTS="ERR_FR_TOO_MANY_REDIRECTS",te.ERR_DEPRECATED="ERR_DEPRECATED",te.ERR_BAD_RESPONSE="ERR_BAD_RESPONSE",te.ERR_BAD_REQUEST="ERR_BAD_REQUEST",te.ERR_CANCELED="ERR_CANCELED",te.ERR_NOT_SUPPORT="ERR_NOT_SUPPORT",te.ERR_INVALID_URL="ERR_INVALID_URL",te.ERR_FORM_DATA_DEPTH_EXCEEDED="ERR_FORM_DATA_DEPTH_EXCEEDED";const S5=null,ic=100;function za(e){return D.isPlainObject(e)||D.isArray(e)}function oc(e){return D.endsWith(e,"[]")?e.slice(0,-2):e}function Jo(e,t,u){return e?e.concat(t).map(function(s,n){return s=oc(s),!u&&n?"["+s+"]":s}).join(u?".":""):t}function N5(e){return D.isArray(e)&&!e.some(za)}const _5=D.toFlatObject(D,{},null,function(e){return/^is[A-Z]/.test(e)});function oo(e,t,u){if(!D.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,u=D.toFlatObject(u,{metaTokens:!0,dots:!1,indexes:!1},!1,function(B,A){return!D.isUndefined(A[B])});const s=u.metaTokens,n=u.visitor||y,i=u.dots,o=u.indexes,a=u.Blob||typeof Blob<"u"&&Blob,r=u.maxDepth===void 0?ic:u.maxDepth,m=a&&D.isSpecCompliantForm(t),l=[];if(!D.isFunction(n))throw new TypeError("visitor must be a function");function g(B){if(B===null)return"";if(D.isDate(B))return B.toISOString();if(D.isBoolean(B))return B.toString();if(!m&&D.isBlob(B))throw new te("Blob is not supported. Use a Buffer instead.");if(D.isArrayBuffer(B)||D.isTypedArray(B)){if(m&&typeof a=="function")return new a([B]);if(typeof e4<"u")return e4.from(B);throw new te("Blob is not supported. Use a Buffer instead.",te.ERR_NOT_SUPPORT)}return B}function p(B){if(B>r)throw new te("Object is too deeply nested ("+B+" levels). Max depth: "+r,te.ERR_FORM_DATA_DEPTH_EXCEEDED)}function h(B,A){if(r===1/0)return JSON.stringify(B);const O=[];return JSON.stringify(B,function(S,q){if(!D.isObject(q))return q;for(;O.length&&O[O.length-1]!==this;)O.pop();return O.push(q),p(A+O.length-1),q})}function y(B,A,O){let S=B;if(D.isReactNative(t)&&D.isReactNativeBlob(B))return t.append(Jo(O,A,i),g(B)),!1;if(B&&!O&&typeof B=="object"){if(D.endsWith(A,"{}"))A=s?A:A.slice(0,-2),B=h(B,1);else if(D.isArray(B)&&N5(B)||(D.isFileList(B)||D.endsWith(A,"[]"))&&(S=D.toArray(B)))return A=oc(A),S.forEach(function(q,I){!(D.isUndefined(q)||q===null)&&t.append(o===!0?Jo([A],I,i):o===null?A:A+"[]",g(q))}),!1}return za(B)?!0:(t.append(Jo(O,A,i),g(B)),!1)}const E=Object.assign(_5,{defaultVisitor:y,convertValue:g,isVisitable:za});function F(B,A,O=0){if(!D.isUndefined(B)){if(p(O),l.indexOf(B)!==-1)throw new Error("Circular reference detected in "+A.join("."));l.push(B),D.forEach(B,function(S,q){(!(D.isUndefined(S)||S===null)&&n.call(t,S,D.isString(q)?q.trim():q,A,E))===!0&&F(S,A?A.concat(q):[q],O+1)}),l.pop()}}if(!D.isObject(e))throw new TypeError("data must be an object");return F(e),t}function M4(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"};return encodeURIComponent(e).replace(/[!'()~]|%20/g,function(u){return t[u]})}function vr(e,t){this._pairs=[],e&&oo(e,this,t)}const $4=vr.prototype;$4.append=function(e,t){this._pairs.push([e,t])},$4.toString=function(e){const t=e?u=>e.call(this,u,M4):M4;return this._pairs.map(function(u){return t(u[0])+"="+t(u[1])},"").join("&")};function O5(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function ac(e,t,u){if(!t)return e;e=e||"";const s=D.isFunction(u)?{serialize:u}:u,n=D.getSafeProp(s,"encode")||O5,i=D.getSafeProp(s,"serialize");let o;if(i?o=i(t,s):o=D.isURLSearchParams(t)?t.toString():new vr(t,s).toString(n),o){const a=e.indexOf("#");a!==-1&&(e=e.slice(0,a)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class U4{constructor(){this.handlers=[]}use(t,u,s){return this.handlers.push({fulfilled:t,rejected:u,synchronous:s?s.synchronous:!1,runWhen:s?s.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){D.forEach(this.handlers,function(u){u!==null&&t(u)})}}const Er={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1,legacyInterceptorReqResOrdering:!0,advertiseZstdAcceptEncoding:!1,validateStatusUndefinedResolves:!0},T5=typeof URLSearchParams<"u"?URLSearchParams:vr,z5=typeof FormData<"u"?FormData:null,P5=typeof Blob<"u"?Blob:null,R5={isBrowser:!0,classes:{URLSearchParams:T5,FormData:z5,Blob:P5},protocols:["http","https","file","blob","url","data"]},Cr=typeof window<"u"&&typeof document<"u",Pa=typeof navigator=="object"&&navigator||void 0,L5=Cr&&(!Pa||["ReactNative","NativeScript","NS"].indexOf(Pa.product)<0),j5=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",I5=Cr&&window.location.href||"http://localhost",M5=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Cr,hasStandardBrowserEnv:L5,hasStandardBrowserWebWorkerEnv:j5,navigator:Pa,origin:I5},Symbol.toStringTag,{value:"Module"})),vt={...M5,...R5};function $5(e,t){return oo(e,new vt.classes.URLSearchParams,{visitor:function(u,s,n,i){return vt.isNode&&D.isBuffer(u)?(this.append(s,u.toString("base64")),!1):i.defaultVisitor.apply(this,arguments)},...t})}const V4=ic;function rc(e){if(e>V4)throw new te("FormData field is too deeply nested ("+e+" levels). Max depth: "+V4,te.ERR_FORM_DATA_DEPTH_EXCEEDED)}function U5(e){const t=[],u=/\w+|\[(\w*)]/g;let s;for(;(s=u.exec(e))!==null;)rc(t.length),t.push(s[0]==="[]"?"":s[1]||s[0]);return t}function V5(e){const t={},u=Object.keys(e);let s;const n=u.length;let i;for(s=0;s=u.length;return o=!o&&D.isArray(n)?n.length:o,r?(D.hasOwnProp(n,o)?n[o]=D.isArray(n[o])?n[o].concat(s):[n[o],s]:n[o]=s,!a):((!D.hasOwnProp(n,o)||!D.isObject(n[o]))&&(n[o]=[]),t(u,s,n[o],i)&&D.isArray(n[o])&&(n[o]=V5(n[o])),!a)}if(D.isFormData(e)&&D.isFunction(e.entries)){const u={};return D.forEachEntry(e,(s,n)=>{t(U5(s),n,u,0)}),u}return null}const Ys=(e,t)=>e!=null&&D.hasOwnProp(e,t)?e[t]:void 0;function W5(e,t,u){if(D.isString(e))try{return(t||JSON.parse)(e),D.trim(e)}catch(s){if(s.name!=="SyntaxError")throw s}return(u||JSON.stringify)(e)}const Ci={transitional:Er,adapter:["xhr","http","fetch"],transformRequest:[function(e,t){const u=t.getContentType()||"",s=u.indexOf("application/json")>-1,n=D.isObject(e);if(n&&D.isHTMLForm(e)&&(e=new FormData(e)),D.isFormData(e))return s?JSON.stringify(lc(e)):e;if(D.isArrayBuffer(e)||D.isBuffer(e)||D.isStream(e)||D.isFile(e)||D.isBlob(e)||D.isReadableStream(e))return e;if(D.isArrayBufferView(e))return e.buffer;if(D.isURLSearchParams(e))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let i;if(n){const o=Ys(this,"formSerializer");if(u.indexOf("application/x-www-form-urlencoded")>-1)return $5(e,o).toString();if((i=D.isFileList(e))||u.indexOf("multipart/form-data")>-1){const a=Ys(this,"env"),r=a&&a.FormData;return oo(i?{"files[]":e}:e,r&&new r,o)}}return n||s?(t.setContentType("application/json",!1),W5(e)):e}],transformResponse:[function(e){const t=Ys(this,"transitional")||Ci.transitional,u=t&&t.forcedJSONParsing,s=Ys(this,"responseType"),n=s==="json";if(D.isResponse(e)||D.isReadableStream(e))return e;if(e&&D.isString(e)&&(u&&!s||n)){const i=!(t&&t.silentJSONParsing)&&n;try{return JSON.parse(e,Ys(this,"parseReviver"))}catch(o){if(i)throw o.name==="SyntaxError"?te.from(o,te.ERR_BAD_RESPONSE,this,null,Ys(this,"response")):o}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:vt.classes.FormData,Blob:vt.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};D.forEach(["delete","get","head","post","put","patch","query"],e=>{Ci.headers[e]={}});function Qo(e,t){const u=this||Ci,s=t||u,n=Ft.from(s.headers);let i=s.data;return D.forEach(e,function(o){i=o.call(u,i,n.normalize(),t?t.status:void 0)}),n.normalize(),i}function dc(e){return!!(e&&e.__CANCEL__)}let Bi=class extends te{constructor(e,t,u){super(e??"canceled",te.ERR_CANCELED,t,u),this.name="CanceledError",this.__CANCEL__=!0}};function mc(e,t,u){const s=u.config.validateStatus;!u.status||!s||s(u.status)?e(u):t(new te("Request failed with status code "+u.status,u.status>=400&&u.status<500?te.ERR_BAD_REQUEST:te.ERR_BAD_RESPONSE,u.config,u.request,u))}function H5(e){const t=/^([-+\w]{1,25}):(?:\/\/)?/.exec(e);return t&&t[1]||""}function G5(e,t){e=e||10;const u=new Array(e),s=new Array(e);let n=0,i=0,o;return t=t!==void 0?t:1e3,function(a){const r=Date.now(),m=s[i];o||(o=r),u[n]=a,s[n]=r;let l=i,g=0;for(;l!==n;)g+=u[l++],l=l%e;if(n=(n+1)%e,n===i&&(i=(i+1)%e),r-o{u=r,n=null,i&&(clearTimeout(i),i=null),e(...a)};return[(...a)=>{const r=Date.now(),m=r-u;m>=s?o(a,r):(n=a,i||(i=setTimeout(()=>{i=null,o(n)},s-m)))},()=>n&&o(n)]}const S0=(e,t,u=3)=>{let s=0;const n=G5(50,250);return q5(i=>{if(!i||typeof i.loaded!="number")return;const o=i.loaded,a=i.lengthComputable?i.total:void 0,r=a!=null?Math.min(o,a):o,m=Math.max(0,r-s),l=n(m);s=Math.max(s,r);const g={loaded:r,total:a,progress:a?r/a:void 0,bytes:m,rate:l||void 0,estimated:l&&a?(a-r)/l:void 0,event:i,lengthComputable:a!=null,[t?"download":"upload"]:!0};e(g)},u)},W4=(e,t)=>{const u=e!=null;return[s=>t[0]({lengthComputable:u,total:e,loaded:s}),t[1]]},H4=e=>(...t)=>D.asap(()=>e(...t)),K5=vt.hasStandardBrowserEnv?((e,t)=>u=>(u=new URL(u,vt.origin),e.protocol===u.protocol&&e.host===u.host&&(t||e.port===u.port)))(new URL(vt.origin),vt.navigator&&/(msie|trident)/i.test(vt.navigator.userAgent)):()=>!0,Y5=vt.hasStandardBrowserEnv?{write(e,t,u,s,n,i,o){if(typeof document>"u")return;const a=[`${e}=${encodeURIComponent(t)}`];D.isNumber(u)&&a.push(`expires=${new Date(u).toUTCString()}`),D.isString(s)&&a.push(`path=${s}`),D.isString(n)&&a.push(`domain=${n}`),i===!0&&a.push("secure"),D.isString(o)&&a.push(`SameSite=${o}`),document.cookie=a.join("; ")},read(e){if(typeof document>"u")return null;const t=document.cookie.split(";");for(let u=0;ue instanceof Ft?{...e}:e;function Is(e,t){e=e||{},t=t||{};const u=Object.create(null);Object.defineProperty(u,"hasOwnProperty",{__proto__:null,value:Object.prototype.hasOwnProperty,enumerable:!1,writable:!0,configurable:!0});function s(l,g,p,h){return D.isPlainObject(l)&&D.isPlainObject(g)?D.merge.call({caseless:h},l,g):D.isPlainObject(g)?D.merge({},g):D.isArray(g)?g.slice():g}function n(l,g,p,h){if(D.isUndefined(g)){if(!D.isUndefined(l))return s(void 0,l,p,h)}else return s(l,g,p,h)}function i(l,g){if(!D.isUndefined(g))return s(void 0,g)}function o(l,g){if(D.isUndefined(g)){if(!D.isUndefined(l))return s(void 0,l)}else return s(void 0,g)}function a(l){const g=D.hasOwnProp(t,"transitional")?t.transitional:void 0;if(!D.isUndefined(g))if(D.isPlainObject(g)){if(D.hasOwnProp(g,l))return g[l]}else return;const p=D.hasOwnProp(e,"transitional")?e.transitional:void 0;if(D.isPlainObject(p)&&D.hasOwnProp(p,l))return p[l]}function r(l,g,p){if(D.hasOwnProp(t,p))return s(l,g);if(D.hasOwnProp(e,p))return s(void 0,l)}const m={url:i,method:i,data:i,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,withXSRFToken:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,allowedSocketPaths:o,responseEncoding:o,validateStatus:r,headers:(l,g,p)=>n(q4(l),q4(g),p,!0)};return D.forEach(Object.keys({...e,...t}),function(l){if(l==="__proto__"||l==="constructor"||l==="prototype")return;const g=D.hasOwnProp(m,l)?m[l]:n,p=D.hasOwnProp(e,l)?e[l]:void 0,h=D.hasOwnProp(t,l)?t[l]:void 0,y=g(p,h,l);D.isUndefined(y)&&g!==r||(u[l]=y)}),D.hasOwnProp(t,"validateStatus")&&D.isUndefined(t.validateStatus)&&a("validateStatusUndefinedResolves")===!1&&(D.hasOwnProp(e,"validateStatus")?u.validateStatus=s(void 0,e.validateStatus):delete u.validateStatus),u}const uB=["content-type","content-length"];function sB(e,t,u){if(u!=="content-only"){e.set(t);return}Object.entries(t||{}).forEach(([s,n])=>{uB.includes(s.toLowerCase())&&e.set(s,n)})}const nB=e=>encodeURIComponent(e).replace(/%([0-9A-F]{2})/gi,(t,u)=>String.fromCharCode(parseInt(u,16)));function gc(e){const t=Is({},e),u=p=>D.hasOwnProp(t,p)?t[p]:void 0,s=u("data");let n=u("withXSRFToken");const i=u("xsrfHeaderName"),o=u("xsrfCookieName");let a=u("headers");const r=u("auth"),m=u("baseURL"),l=u("allowAbsoluteUrls"),g=u("url");if(t.headers=a=Ft.from(a),t.url=ac(cc(m,g,l,t),u("params"),u("paramsSerializer")),r){const p=D.getSafeProp(r,"username")||"",h=D.getSafeProp(r,"password")||"";try{a.set("Authorization","Basic "+btoa(p+":"+(h?nB(h):"")))}catch(y){throw te.from(y,te.ERR_BAD_OPTION_VALUE,e)}}if(D.isFormData(s)&&(vt.hasStandardBrowserEnv||vt.hasStandardBrowserWebWorkerEnv||D.isReactNative(s)?a.setContentType(void 0):D.isFunction(s.getHeaders)&&sB(a,s.getHeaders(),u("formDataHeaderPolicy"))),vt.hasStandardBrowserEnv&&(D.isFunction(n)&&(n=n(t)),n===!0||n==null&&K5(t.url))){const p=i&&o&&Y5.read(o);p&&a.set(i,p)}return t}const iB=typeof XMLHttpRequest<"u",oB=iB&&function(e){return new Promise(function(t,u){const s=gc(e);let n=s.data;const i=Ft.from(s.headers).normalize();let{responseType:o,onUploadProgress:a,onDownloadProgress:r}=s,m,l,g,p,h;function y(){p&&p(),h&&h(),s.cancelToken&&s.cancelToken.unsubscribe(m),s.signal&&s.signal.removeEventListener("abort",m)}let E=new XMLHttpRequest;E.open(s.method.toUpperCase(),s.url,!0),E.timeout=s.timeout;function F(){if(!E)return;const A=Ft.from("getAllResponseHeaders"in E&&E.getAllResponseHeaders()),O={data:!o||o==="text"||o==="json"?E.responseText:E.response,status:E.status,statusText:E.statusText,headers:A,config:e,request:E};mc(function(S){t(S),y()},function(S){u(S),y()},O),E=null}"onloadend"in E?E.onloadend=F:E.onreadystatechange=function(){!E||E.readyState!==4||E.status===0&&!(E.responseURL&&E.responseURL.startsWith("file:"))||setTimeout(F)},E.onabort=function(){E&&(u(new te("Request aborted",te.ECONNABORTED,e,E)),y(),E=null)},E.onerror=function(A){const O=A&&A.message?A.message:"Network Error",S=new te(O,te.ERR_NETWORK,e,E);S.event=A||null,u(S),y(),E=null},E.ontimeout=function(){let A=s.timeout?"timeout of "+s.timeout+"ms exceeded":"timeout exceeded";const O=s.transitional||Er;s.timeoutErrorMessage&&(A=s.timeoutErrorMessage),u(new te(A,O.clarifyTimeoutError?te.ETIMEDOUT:te.ECONNABORTED,e,E)),y(),E=null},n===void 0&&i.setContentType(null),"setRequestHeader"in E&&D.forEach(sc(i),function(A,O){E.setRequestHeader(O,A)}),D.isUndefined(s.withCredentials)||(E.withCredentials=!!s.withCredentials),o&&o!=="json"&&(E.responseType=s.responseType),r&&([g,h]=S0(r,!0),E.addEventListener("progress",g)),a&&E.upload&&([l,p]=S0(a),E.upload.addEventListener("progress",l),E.upload.addEventListener("loadend",p)),(s.cancelToken||s.signal)&&(m=A=>{E&&(u(!A||A.type?new Bi(null,e,E):A),E.abort(),y(),E=null)},s.cancelToken&&s.cancelToken.subscribe(m),s.signal&&(s.signal.aborted?m():s.signal.addEventListener("abort",m)));const B=H5(s.url);if(B&&!vt.protocols.includes(B)){u(new te("Unsupported protocol "+B+":",te.ERR_BAD_REQUEST,e)),y();return}E.send(n||null)})},aB=(e,t)=>{if(e=e?e.filter(Boolean):[],!t&&!e.length)return;const u=new AbortController;let s=!1;const n=function(r){if(!s){s=!0,o();const m=r instanceof Error?r:this.reason;u.abort(m instanceof te?m:new Bi(m instanceof Error?m.message:m))}};let i=t&&setTimeout(()=>{i=null,n(new te(`timeout of ${t}ms exceeded`,te.ETIMEDOUT))},t);const o=()=>{e&&(i&&clearTimeout(i),i=null,e.forEach(r=>{r.unsubscribe?r.unsubscribe(n):r.removeEventListener("abort",n)}),e=null)};e.forEach(r=>r.addEventListener("abort",n,{once:!0}));const{signal:a}=u;return a.unsubscribe=()=>D.asap(o),a},rB=function*(e,t){let u=e.byteLength;if(u{const n=lB(e,t);let i=0,o,a=r=>{o||(o=!0,s&&s(r))};return new ReadableStream({async pull(r){try{const{done:m,value:l}=await n.next();if(m){a(),r.close();return}let g=l.byteLength;if(u){let p=i+=g;u(p)}r.enqueue(new Uint8Array(l))}catch(m){throw a(m),m}},cancel(r){return a(r),n.return()}},{highWaterMark:2})},N0=e=>e>=48&&e<=57||e>=65&&e<=70||e>=97&&e<=102,mB=(e,t,u)=>t+2g>=2&&s.charCodeAt(g-2)===37&&s.charCodeAt(g-1)===51&&(s.charCodeAt(g)===68||s.charCodeAt(g)===100);r>=0&&(s.charCodeAt(r)===61?(a++,r--):m(r)&&(a++,r-=3)),a===1&&r>=0&&(s.charCodeAt(r)===61||m(r))&&a++;const l=Math.floor(i/4)*3-(a||0);return l>0?l:0}let n=0;for(let i=0,o=s.length;i=55296&&a<=56319&&i+1=56320&&r<=57343?(n+=4,i++):n+=3}else n+=3}return n}const Br="1.18.1",Y4=64*1024,{isFunction:ji}=D,gB=e=>encodeURIComponent(e).replace(/%([0-9A-F]{2})/gi,(t,u)=>String.fromCharCode(parseInt(u,16))),Z4=e=>{if(!D.isString(e))return e;try{return decodeURIComponent(e)}catch{return e}},X4=(e,...t)=>{try{return!!e(...t)}catch{return!1}},fB=e=>{const t=e.indexOf("://");let u=e;return t!==-1&&(u=u.slice(t+3)),u.includes("@")||u.includes(":")},pB=e=>{const t=D.global!==void 0&&D.global!==null?D.global:globalThis,{ReadableStream:u,TextEncoder:s}=t;e=D.merge.call({skipUndefined:!0},{Request:t.Request,Response:t.Response},e);const{fetch:n,Request:i,Response:o}=e,a=n?ji(n):typeof fetch=="function",r=ji(i),m=ji(o);if(!a)return!1;const l=a&&ji(u),g=a&&(typeof s=="function"?(B=>A=>B.encode(A))(new s):async B=>new Uint8Array(await new i(B).arrayBuffer())),p=r&&l&&X4(()=>{let B=!1;const A=new i(vt.origin,{body:new u,method:"POST",get duplex(){return B=!0,"half"}}),O=A.headers.has("Content-Type");return A.body!=null&&A.body.cancel(),B&&!O}),h=m&&l&&X4(()=>D.isReadableStream(new o("").body)),y={stream:h&&(B=>B.body)};a&&["text","arrayBuffer","blob","formData","stream"].forEach(B=>{!y[B]&&(y[B]=(A,O)=>{let S=A&&A[B];if(S)return S.call(A);throw new te(`Response type '${B}' is not supported`,te.ERR_NOT_SUPPORT,O)})});const E=async B=>{if(B==null)return 0;if(D.isBlob(B))return B.size;if(D.isSpecCompliantForm(B))return(await new i(vt.origin,{method:"POST",body:B}).arrayBuffer()).byteLength;if(D.isArrayBufferView(B)||D.isArrayBuffer(B))return B.byteLength;if(D.isURLSearchParams(B)&&(B=B+""),D.isString(B))return(await g(B)).byteLength},F=async(B,A)=>D.toFiniteNumber(B.getContentLength())??E(A);return async B=>{let{url:A,method:O,data:S,signal:q,cancelToken:I,timeout:Y,onDownloadProgress:ne,onUploadProgress:G,responseType:M,headers:ie,withCredentials:w="same-origin",fetchOptions:T,maxContentLength:V,maxBodyLength:ue}=gc(B);const Z=D.isNumber(V)&&V>-1,ee=D.isNumber(ue)&&ue>-1,se=he=>D.hasOwnProp(B,he)?B[he]:void 0;let ce=n||fetch;M=M?(M+"").toLowerCase():"text";let de=aB([q,I&&I.toAbortSignal()],Y),oe=null;const xe=de&&de.unsubscribe&&(()=>{de.unsubscribe()});let qe,_e=null;const Le=()=>new te("Request body larger than maxBodyLength limit",te.ERR_BAD_REQUEST,B,oe);try{let he;const We=se("auth");if(We){const N=D.getSafeProp(We,"username")||"",W=D.getSafeProp(We,"password")||"";he={username:N,password:W}}if(fB(A)){const N=new URL(A,vt.origin);if(!he&&(N.username||N.password)){const W=Z4(N.username),U=Z4(N.password);he={username:W,password:U}}(N.username||N.password)&&(N.username="",N.password="",A=N.href)}if(he&&(ie.delete("authorization"),ie.set("Authorization","Basic "+btoa(gB((he.username||"")+":"+(he.password||""))))),Z&&typeof A=="string"&&A.startsWith("data:")&&cB(A)>V)throw new te("maxContentLength size of "+V+" exceeded",te.ERR_BAD_RESPONSE,B,oe);if(ee&&O!=="get"&&O!=="head"){const N=await E(S);if(typeof N=="number"&&isFinite(N)&&(qe=N,N>ue))throw Le()}const Tt=ee&&(D.isReadableStream(S)||D.isStream(S)),nu=(N,W,U)=>K4(N,Y4,H=>{if(ee&&H>ue)throw _e=Le();W&&W(H)},U);if(p&&O!=="get"&&O!=="head"&&(G||Tt)){if(qe=qe??await F(ie,S),qe!==0||Tt){let N=new i(A,{method:"POST",body:S,duplex:"half"}),W;if(D.isFormData(S)&&(W=N.headers.get("content-type"))&&ie.setContentType(W),N.body){const[U,H]=G&&W4(qe,S0(H4(G)))||[];S=nu(N.body,U,H)}}}else if(Tt&&!r&&l&&O!=="get"&&O!=="head")S=nu(S);else if(Tt&&r&&!p&&O!=="get"&&O!=="head")throw new te("Stream request bodies are not supported by the current fetch implementation",te.ERR_NOT_SUPPORT,B,oe);D.isString(w)||(w=w?"include":"omit");const Vt=r&&"credentials"in i.prototype;if(D.isFormData(S)){const N=ie.getContentType();N&&/^multipart\/form-data/i.test(N)&&!/boundary=/i.test(N)&&ie.delete("content-type")}ie.set("User-Agent","axios/"+Br,!1);const C={...T,signal:de,method:O.toUpperCase(),headers:sc(ie.normalize()),body:S,duplex:"half",credentials:Vt?w:void 0};oe=r&&new i(A,C);let b=await(r?ce(oe,T):ce(A,C));const _=Ft.from(b.headers);if(Z){const N=D.toFiniteNumber(_.getContentLength());if(N!=null&&N>V)throw new te("maxContentLength size of "+V+" exceeded",te.ERR_BAD_RESPONSE,B,oe)}const $=h&&(M==="stream"||M==="response");if(h&&b.body&&(ne||Z||$&&xe)){const N={};["status","statusText","headers"].forEach(J=>{N[J]=b[J]});const W=D.toFiniteNumber(_.getContentLength()),[U,H]=ne&&W4(W,S0(H4(ne),!0))||[];let j=0;const re=J=>{if(Z&&(j=J,j>V))throw new te("maxContentLength size of "+V+" exceeded",te.ERR_BAD_RESPONSE,B,oe);U&&U(J)};b=new o(K4(b.body,Y4,re,()=>{H&&H(),xe&&xe()}),N)}M=M||"text";let z=await y[D.findKey(y,M)||"text"](b,B);if(Z&&!h&&!$){let N;if(z!=null&&(typeof z.byteLength=="number"?N=z.byteLength:typeof z.size=="number"?N=z.size:typeof z=="string"&&(N=typeof s=="function"?new s().encode(z).byteLength:z.length)),typeof N=="number"&&N>V)throw new te("maxContentLength size of "+V+" exceeded",te.ERR_BAD_RESPONSE,B,oe)}return!$&&xe&&xe(),await new Promise((N,W)=>{mc(N,W,{data:z,headers:Ft.from(b.headers),status:b.status,statusText:b.statusText,config:B,request:oe})})}catch(he){if(xe&&xe(),de&&de.aborted&&de.reason instanceof te){const We=de.reason;throw We.config=B,oe&&(We.request=oe),he!==We&&Object.defineProperty(We,"cause",{__proto__:null,value:he,writable:!0,enumerable:!1,configurable:!0}),We}if(_e)throw oe&&!_e.request&&(_e.request=oe),_e;if(he instanceof te)throw oe&&!he.request&&(he.request=oe),he;if(he&&he.name==="TypeError"&&/Load failed|fetch/i.test(he.message)){const We=new te("Network Error",te.ERR_NETWORK,B,oe,he&&he.response);throw Object.defineProperty(We,"cause",{__proto__:null,value:he.cause||he,writable:!0,enumerable:!1,configurable:!0}),We}throw te.from(he,he&&he.code,B,oe,he&&he.response)}}},hB=new Map,fc=e=>{let t=e&&e.env||{};const{fetch:u,Request:s,Response:n}=t,i=[s,n,u];let o=i.length,a=o,r,m,l=hB;for(;a--;)r=i[a],m=l.get(r),m===void 0&&l.set(r,m=a?new Map:pB(t)),l=m;return m};fc();const yr={http:S5,xhr:oB,fetch:{get:fc}};D.forEach(yr,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{__proto__:null,value:t})}catch{}Object.defineProperty(e,"adapterName",{__proto__:null,value:t})}});const J4=e=>`- ${e}`,vB=e=>D.isFunction(e)||e===null||e===!1;function EB(e,t){e=D.isArray(e)?e:[e];const{length:u}=e;let s,n;const i={};for(let o=0;o`adapter ${r} `+(m===!1?"is not supported by the environment":"is not available in the build"));let a=u?o.length>1?`since : `+o.map(J4).join(` `):" "+J4(o[0]):"as no adapter specified";throw new te("There is no suitable adapter to dispatch the request "+a,te.ERR_NOT_SUPPORT)}return n}const pc={getAdapter:EB,adapters:yr};function ea(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Bi(null,e)}function Q4(e){return ea(e),e.headers=Ft.from(e.headers),e.data=Qo.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),pc.getAdapter(e.adapter||Ci.adapter,e)(e).then(function(t){ea(e),e.response=t;try{t.data=Qo.call(e,e.transformResponse,t)}finally{delete e.response}return t.headers=Ft.from(t.headers),t},function(t){if(!dc(t)&&(ea(e),t&&t.response)){e.response=t.response;try{t.response.data=Qo.call(e,e.transformResponse,t.response)}finally{delete e.response}t.response.headers=Ft.from(t.response.headers)}return Promise.reject(t)})}const _0={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{_0[e]=function(u){return typeof u===e||"a"+(t<1?"n ":" ")+e}});const ed={};_0.transitional=function(e,t,u){function s(n,i){return"[Axios v"+Br+"] Transitional option '"+n+"'"+i+(u?". "+u:"")}return(n,i,o)=>{if(e===!1)throw new te(s(i," has been removed"+(t?" in "+t:"")),te.ERR_DEPRECATED);return t&&!ed[i]&&(ed[i]=!0,console.warn(s(i," has been deprecated since v"+t+" and will be removed in the near future"))),e?e(n,i,o):!0}},_0.spelling=function(e){return(t,u)=>(console.warn(`${u} is likely a misspelling of ${e}`),!0)};function CB(e,t,u){if(typeof e!="object"||e===null)throw new te("options must be an object",te.ERR_BAD_OPTION_VALUE);const s=Object.keys(e);let n=s.length;for(;n-- >0;){const i=s[n],o=Object.prototype.hasOwnProperty.call(t,i)?t[i]:void 0;if(o){const a=e[i],r=a===void 0||o(a,i,e);if(r!==!0)throw new te("option "+i+" must be "+r,te.ERR_BAD_OPTION_VALUE);continue}if(u!==!0)throw new te("Unknown option "+i,te.ERR_BAD_OPTION)}}const Xi={assertOptions:CB,validators:_0},xt=Xi.validators;let Ts=class{constructor(e){this.defaults=e||{},this.interceptors={request:new U4,response:new U4}}async request(e,t){try{return await this._request(e,t)}catch(u){if(u instanceof Error){let s={};Error.captureStackTrace?Error.captureStackTrace(s):s=new Error;const n=(()=>{if(!s.stack)return"";const i=s.stack.indexOf(` `);return i===-1?"":s.stack.slice(i+1)})();try{if(!u.stack)u.stack=n;else if(n){const i=n.indexOf(` `),o=i===-1?-1:n.indexOf(` `,i+1),a=o===-1?"":n.slice(o+1);String(u.stack).endsWith(a)||(u.stack+=` -`+n)}}catch{}}throw u}}_request(e,t){typeof e=="string"?(t=t||{},t.url=e):t=e||{},t=Is(this.defaults,t);const{transitional:u,paramsSerializer:s,headers:n}=t;u!==void 0&&Xi.assertOptions(u,{silentJSONParsing:xt.transitional(xt.boolean),forcedJSONParsing:xt.transitional(xt.boolean),clarifyTimeoutError:xt.transitional(xt.boolean),legacyInterceptorReqResOrdering:xt.transitional(xt.boolean),advertiseZstdAcceptEncoding:xt.transitional(xt.boolean),validateStatusUndefinedResolves:xt.transitional(xt.boolean)},!1),s!=null&&(D.isFunction(s)?t.paramsSerializer={serialize:s}:Xi.assertOptions(s,{encode:xt.function,serialize:xt.function},!0)),t.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?t.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:t.allowAbsoluteUrls=!0),Xi.assertOptions(t,{baseUrl:xt.spelling("baseURL"),withXsrfToken:xt.spelling("withXSRFToken")},!0),t.method=(t.method||this.defaults.method||"get").toLowerCase();let i=n&&D.merge(n.common,n[t.method]);n&&D.forEach(["delete","get","head","post","put","patch","query","common"],h=>{delete n[h]}),t.headers=Ft.concat(i,n);const o=[];let a=!0;this.interceptors.request.forEach(function(h){if(typeof h.runWhen=="function"&&h.runWhen(t)===!1)return;a=a&&h.synchronous;const y=t.transitional||Er;y&&y.legacyInterceptorReqResOrdering?o.unshift(h.fulfilled,h.rejected):o.push(h.fulfilled,h.rejected)});const r=[];this.interceptors.response.forEach(function(h){r.push(h.fulfilled,h.rejected)});let m,l=0,g;if(!a){const h=[Q4.bind(this),void 0];for(h.unshift(...o),h.push(...r),g=h.length,m=Promise.resolve(t);l{if(!s._listeners)return;let i=s._listeners.length;for(;i-- >0;)s._listeners[i](n);s._listeners=null}),this.promise.then=n=>{let i;const o=new Promise(a=>{s.subscribe(a),i=a}).then(n);return o.cancel=function(){s.unsubscribe(i)},o},t(function(n,i,o){s.reason||(s.reason=new Bi(n,i,o),u(s.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const u=this._listeners.indexOf(t);u!==-1&&this._listeners.splice(u,1)}toAbortSignal(){const t=new AbortController,u=s=>{t.abort(s)};return this.subscribe(u),t.signal.unsubscribe=()=>this.unsubscribe(u),t.signal}static source(){let t;return{token:new hc(function(u){t=u}),cancel:t}}};function yB(e){return function(t){return e.apply(null,t)}}function xB(e){return D.isObject(e)&&e.isAxiosError===!0}const Ra={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(Ra).forEach(([e,t])=>{Ra[t]=e});function vc(e){const t=new Ts(e),u=K3(Ts.prototype.request,t);return D.extend(u,Ts.prototype,t,{allOwnKeys:!0}),D.extend(u,t,null,{allOwnKeys:!0}),u.create=function(s){return vc(Is(e,s))},u}const Qe=vc(Ci);Qe.Axios=Ts,Qe.CanceledError=Bi,Qe.CancelToken=BB,Qe.isCancel=dc,Qe.VERSION=Br,Qe.toFormData=oo,Qe.AxiosError=te,Qe.Cancel=Qe.CanceledError,Qe.all=function(e){return Promise.all(e)},Qe.spread=yB,Qe.isAxiosError=xB,Qe.mergeConfig=Is,Qe.AxiosHeaders=Ft,Qe.formToJSON=e=>lc(D.isHTMLForm(e)?new FormData(e):e),Qe.getAdapter=pc.getAdapter,Qe.HttpStatusCode=Ra,Qe.default=Qe;const{Axios:b2,AxiosError:w2,CanceledError:D2,isCancel:F2,CancelToken:k2,VERSION:S2,all:N2,Cancel:_2,isAxiosError:xr,spread:O2,toFormData:T2,AxiosHeaders:z2,HttpStatusCode:P2,formToJSON:R2,getAdapter:L2,mergeConfig:j2,create:I2}=Qe;function AB(){const e=Qe.create({headers:{requesttoken:wv()??"","X-Requested-With":"XMLHttpRequest"}});return Fv(t=>{e.defaults.headers.requesttoken=t}),Object.assign(e,{CancelToken:Qe.CancelToken,isCancel:Qe.isCancel})}const td="_nextcloudCsrfTokenReloaded";function bB(e){return async t=>{if(!xr(t))throw t;const{config:u,response:s,request:n}=t,i=n?.responseURL;if(u&&!(td in u)&&s?.status===412&&s?.data?.message==="CSRF check failed"){console.warn(`Request to ${i} failed because of a CSRF mismatch. Fetching a new token.`);const o=await Dv();return e.defaults.headers.requesttoken=o,e({...u,[td]:!0,headers:{...u.headers,requesttoken:o}})}throw t}}const ud="_nextcloudMaintenanceModeRetryDelay";function wB(e){return async t=>{if(!xr(t))throw t;const{config:u,response:s,request:n}=t,i=n?.responseURL,o=s?.status,a=s?.headers;let r=u?.[ud]??1;if(o===503&&a?.["x-nextcloud-maintenance-mode"]==="1"&&u?.retryIfMaintenanceMode){if(r*=2,r>32)throw console.error("Retry delay exceeded one minute, giving up.",{responseURL:i}),t;return console.warn(`Request to ${i} failed because of maintenance mode. Retrying in ${r}s`),await new Promise(m=>{setTimeout(m,r*1e3)}),e({...u,[ud]:r})}throw t}}async function DB(e){if(xr(e)){const{config:t,response:u,request:s}=e,n=s?.responseURL;u?.status===401&&u?.data?.message==="Current user is not logged in"&&t?.reloadExpiredSession&&globalThis.location?.reload&&(console.error(`Request to ${n} failed because the user session expired. Reloading the page …`),globalThis.OC?.reload?globalThis.OC.reload():globalThis.location.reload())}throw e}const Te=AB();Te.interceptors.response.use(e=>e,bB(Te)),Te.interceptors.response.use(e=>e,wB(Te)),Te.interceptors.response.use(e=>e,DB);const $e=e=>id("/apps/absence"+e),M2={getSession:()=>Te.get($e("/api/session")).then(e=>e.data),getPersonalConfig:()=>Te.get($e("/api/personal/config")).then(e=>e.data),updatePersonalConfig:e=>Te.put($e("/api/personal/config"),{values:e}).then(t=>t.data),listRequests:e=>Te.get($e("/api/requests"),{params:e}).then(t=>t.data),getRequest:e=>Te.get($e(`/api/requests/${e}`)).then(t=>t.data),createRequest:e=>Te.post($e("/api/requests"),e).then(t=>t.data),updateRequest:(e,t)=>Te.put($e(`/api/requests/${e}`),t).then(u=>u.data),cancelRequest:e=>Te.post($e(`/api/requests/${e}/cancel`)).then(t=>t.data),approveRequest:(e,t)=>Te.post($e(`/api/requests/${e}/approve`),{comment:t}).then(u=>u.data),rejectRequest:(e,t)=>Te.post($e(`/api/requests/${e}/reject`),{comment:t}).then(u=>u.data),addComment:(e,t)=>Te.post($e(`/api/requests/${e}/comments`),{body:t}).then(u=>u.data),getMyBalance:e=>Te.get($e("/api/balance"),{params:{year:e}}).then(t=>t.data),getEmployeeBalance:(e,t)=>Te.get($e(`/api/employees/${encodeURIComponent(e)}/balance`),{params:{year:t}}).then(u=>u.data),listEntitlements:(e,t)=>Te.get($e("/api/entitlements"),{params:{employeeUid:e,year:t}}).then(u=>u.data),createEntitlement:e=>Te.post($e("/api/entitlements"),e).then(t=>t.data),updateEntitlement:(e,t)=>Te.put($e(`/api/entitlements/${e}`),t).then(u=>u.data),bulkEntitlements:e=>Te.post($e("/api/entitlements/bulk"),e).then(t=>t.data),getCoverage:(e,t,u)=>Te.get($e("/api/coverage"),{params:{from:e,to:t,scope:u}}).then(s=>s.data),getCalendar:(e,t,u)=>Te.get($e("/api/calendar"),{params:{from:e,to:t,scope:u}}).then(s=>s.data),listLeaveTypes:e=>Te.get($e("/api/leave-types"),{params:{onlyEnabled:e}}).then(t=>t.data),createLeaveType:e=>Te.post($e("/api/leave-types"),e).then(t=>t.data),updateLeaveType:(e,t)=>Te.put($e(`/api/leave-types/${e}`),t).then(u=>u.data),deleteLeaveType:e=>Te.delete($e(`/api/leave-types/${e}`)).then(t=>t.data),searchUsers:e=>Te.get($e("/api/employees/search"),{params:{search:e}}).then(t=>t.data),reportBalances:(e,t)=>Te.get($e("/api/reports/balances"),{params:{year:e,group:t}}).then(u=>u.data),reportTrends:(e,t)=>Te.get($e("/api/reports/trends"),{params:{from:e,to:t}}).then(u=>u.data),reportSickLeave:(e,t,u)=>Te.get($e("/api/reports/sick-leave"),{params:{year:e,group:t,typeId:u}}).then(s=>s.data),exportRequestsUrl:(e,t)=>$e(`/api/export/requests?from=${e}&to=${t}`),exportBalancesUrl:e=>$e(`/api/export/balances?year=${e}`)};function FB(e){const t=e.getFullYear(),u=String(e.getMonth()+1).padStart(2,"0"),s=String(e.getDate()).padStart(2,"0");return`${t}-${u}-${s}`}function $2(e){const t=new Set;for(const u of String(e||"").split(",")){const s=parseInt(u,10);s>=1&&s<=7&&t.add(s)}return t}function U2(e,t,u,s){if(!e||!t||!u||u.size===0)return 0;const n=new Date(t+"T00:00:00");let i=0;for(const o=new Date(e+"T00:00:00");o<=n;o.setDate(o.getDate()+1)){const a=o.getDay()===0?7:o.getDay();u.has(a)&&!(s&&s(FB(o)))&&i++}return i}function ta(e){return e?new Date(e+"T00:00:00").toLocaleDateString(void 0,{year:"numeric",month:"short",day:"numeric"}):""}function V2(e,t){return e===t?ta(e):`${ta(e)} – ${ta(t)}`}function W2(e){const t=Math.max(0,Math.floor(e/1e3)),u=String(Math.floor(t%3600/60)).padStart(2,"0"),s=String(t%60).padStart(2,"0");return`${Math.floor(t/3600)}:${u}:${s}`}const kB=new Set(["AR","AU","BO","BR","BW","CL","FJ","LS","MG","MW","MZ","NA","NZ","PY","SZ","UY","ZA","ZM","ZW"]);function H2(e,t){const u=e.getMonth(),s=u===11||u<=1?"winter":u<=4?"spring":u<=7?"summer":"autumn";return kB.has(String(t||"").toUpperCase())?{winter:"summer",spring:"autumn",summer:"winter",autumn:"spring"}[s]:s}function G2(e,t,u,s,n){const i=new Date(t+"T00:00:00"),o=new Date(u+"T00:00:00"),a=Math.round((o-i)/864e5)+1;if(!(a<=0||!s))for(let r=0;r<12;r++){const m=new Date(n,r,1),l=new Date(n,r+1,0),g=i>m?i:m,p=o0&&(e[r]+=s*(h/a))}}async function q2(e,t){if(!e)return null;const{default:u}=await dr(async()=>{const{default:n}=await import("./index-CAVYKD4e.chunk.mjs");return{default:n}},[],import.meta.url),s=t?new u(e,t):new u(e);return n=>{const i=s.isHoliday(new Date(n+"T12:00:00"));return Array.isArray(i)&&i.some(o=>o.type==="public")}}async function K2(){const{default:e}=await dr(async()=>{const{default:u}=await import("./index-CAVYKD4e.chunk.mjs");return{default:u}},[],import.meta.url),t=new e().getCountries();return Object.keys(t).map(u=>({id:u,label:t[u]}))}async function Y2(e){if(!e)return[];const{default:t}=await dr(async()=>{const{default:s}=await import("./index-CAVYKD4e.chunk.mjs");return{default:s}},[],import.meta.url),u=new t().getStates(e)||{};return Object.keys(u).map(s=>({id:s,label:u[s]}))}const SB=`{delete n[h]}),t.headers=Ft.concat(i,n);const o=[];let a=!0;this.interceptors.request.forEach(function(h){if(typeof h.runWhen=="function"&&h.runWhen(t)===!1)return;a=a&&h.synchronous;const y=t.transitional||Er;y&&y.legacyInterceptorReqResOrdering?o.unshift(h.fulfilled,h.rejected):o.push(h.fulfilled,h.rejected)});const r=[];this.interceptors.response.forEach(function(h){r.push(h.fulfilled,h.rejected)});let m,l=0,g;if(!a){const h=[Q4.bind(this),void 0];for(h.unshift(...o),h.push(...r),g=h.length,m=Promise.resolve(t);l{if(!s._listeners)return;let i=s._listeners.length;for(;i-- >0;)s._listeners[i](n);s._listeners=null}),this.promise.then=n=>{let i;const o=new Promise(a=>{s.subscribe(a),i=a}).then(n);return o.cancel=function(){s.unsubscribe(i)},o},t(function(n,i,o){s.reason||(s.reason=new Bi(n,i,o),u(s.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const u=this._listeners.indexOf(t);u!==-1&&this._listeners.splice(u,1)}toAbortSignal(){const t=new AbortController,u=s=>{t.abort(s)};return this.subscribe(u),t.signal.unsubscribe=()=>this.unsubscribe(u),t.signal}static source(){let t;return{token:new hc(function(u){t=u}),cancel:t}}};function yB(e){return function(t){return e.apply(null,t)}}function xB(e){return D.isObject(e)&&e.isAxiosError===!0}const Ra={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(Ra).forEach(([e,t])=>{Ra[t]=e});function vc(e){const t=new Ts(e),u=K3(Ts.prototype.request,t);return D.extend(u,Ts.prototype,t,{allOwnKeys:!0}),D.extend(u,t,null,{allOwnKeys:!0}),u.create=function(s){return vc(Is(e,s))},u}const Qe=vc(Ci);Qe.Axios=Ts,Qe.CanceledError=Bi,Qe.CancelToken=BB,Qe.isCancel=dc,Qe.VERSION=Br,Qe.toFormData=oo,Qe.AxiosError=te,Qe.Cancel=Qe.CanceledError,Qe.all=function(e){return Promise.all(e)},Qe.spread=yB,Qe.isAxiosError=xB,Qe.mergeConfig=Is,Qe.AxiosHeaders=Ft,Qe.formToJSON=e=>lc(D.isHTMLForm(e)?new FormData(e):e),Qe.getAdapter=pc.getAdapter,Qe.HttpStatusCode=Ra,Qe.default=Qe;const{Axios:b2,AxiosError:w2,CanceledError:D2,isCancel:F2,CancelToken:k2,VERSION:S2,all:N2,Cancel:_2,isAxiosError:xr,spread:O2,toFormData:T2,AxiosHeaders:z2,HttpStatusCode:P2,formToJSON:R2,getAdapter:L2,mergeConfig:j2,create:I2}=Qe;function AB(){const e=Qe.create({headers:{requesttoken:wv()??"","X-Requested-With":"XMLHttpRequest"}});return Fv(t=>{e.defaults.headers.requesttoken=t}),Object.assign(e,{CancelToken:Qe.CancelToken,isCancel:Qe.isCancel})}const td="_nextcloudCsrfTokenReloaded";function bB(e){return async t=>{if(!xr(t))throw t;const{config:u,response:s,request:n}=t,i=n?.responseURL;if(u&&!(td in u)&&s?.status===412&&s?.data?.message==="CSRF check failed"){console.warn(`Request to ${i} failed because of a CSRF mismatch. Fetching a new token.`);const o=await Dv();return e.defaults.headers.requesttoken=o,e({...u,[td]:!0,headers:{...u.headers,requesttoken:o}})}throw t}}const ud="_nextcloudMaintenanceModeRetryDelay";function wB(e){return async t=>{if(!xr(t))throw t;const{config:u,response:s,request:n}=t,i=n?.responseURL,o=s?.status,a=s?.headers;let r=u?.[ud]??1;if(o===503&&a?.["x-nextcloud-maintenance-mode"]==="1"&&u?.retryIfMaintenanceMode){if(r*=2,r>32)throw console.error("Retry delay exceeded one minute, giving up.",{responseURL:i}),t;return console.warn(`Request to ${i} failed because of maintenance mode. Retrying in ${r}s`),await new Promise(m=>{setTimeout(m,r*1e3)}),e({...u,[ud]:r})}throw t}}async function DB(e){if(xr(e)){const{config:t,response:u,request:s}=e,n=s?.responseURL;u?.status===401&&u?.data?.message==="Current user is not logged in"&&t?.reloadExpiredSession&&globalThis.location?.reload&&(console.error(`Request to ${n} failed because the user session expired. Reloading the page …`),globalThis.OC?.reload?globalThis.OC.reload():globalThis.location.reload())}throw e}const Fe=AB();Fe.interceptors.response.use(e=>e,bB(Fe)),Fe.interceptors.response.use(e=>e,wB(Fe)),Fe.interceptors.response.use(e=>e,DB);const Me=e=>id("/apps/absence"+e),M2={getSession:()=>Fe.get(Me("/api/session")).then(e=>e.data),getPersonalConfig:()=>Fe.get(Me("/api/personal/config")).then(e=>e.data),updatePersonalConfig:e=>Fe.put(Me("/api/personal/config"),{values:e}).then(t=>t.data),listRequests:e=>Fe.get(Me("/api/requests"),{params:e}).then(t=>t.data),getRequest:e=>Fe.get(Me(`/api/requests/${e}`)).then(t=>t.data),createRequest:e=>Fe.post(Me("/api/requests"),e).then(t=>t.data),updateRequest:(e,t)=>Fe.put(Me(`/api/requests/${e}`),t).then(u=>u.data),cancelRequest:e=>Fe.post(Me(`/api/requests/${e}/cancel`)).then(t=>t.data),approveRequest:(e,t)=>Fe.post(Me(`/api/requests/${e}/approve`),{comment:t}).then(u=>u.data),rejectRequest:(e,t)=>Fe.post(Me(`/api/requests/${e}/reject`),{comment:t}).then(u=>u.data),addComment:(e,t)=>Fe.post(Me(`/api/requests/${e}/comments`),{body:t}).then(u=>u.data),getMyBalance:e=>Fe.get(Me("/api/balance"),{params:{year:e}}).then(t=>t.data),getEmployeeBalance:(e,t)=>Fe.get(Me(`/api/employees/${encodeURIComponent(e)}/balance`),{params:{year:t}}).then(u=>u.data),listEntitlements:(e,t)=>Fe.get(Me("/api/entitlements"),{params:{employeeUid:e,year:t}}).then(u=>u.data),createEntitlement:e=>Fe.post(Me("/api/entitlements"),e).then(t=>t.data),updateEntitlement:(e,t)=>Fe.put(Me(`/api/entitlements/${e}`),t).then(u=>u.data),entitlementHistory:e=>Fe.get(Me(`/api/entitlements/${e}/history`)).then(t=>t.data),bulkEntitlements:e=>Fe.post(Me("/api/entitlements/bulk"),e).then(t=>t.data),getCoverage:(e,t,u)=>Fe.get(Me("/api/coverage"),{params:{from:e,to:t,scope:u}}).then(s=>s.data),getCalendar:(e,t,u)=>Fe.get(Me("/api/calendar"),{params:{from:e,to:t,scope:u}}).then(s=>s.data),listLeaveTypes:e=>Fe.get(Me("/api/leave-types"),{params:{onlyEnabled:e}}).then(t=>t.data),createLeaveType:e=>Fe.post(Me("/api/leave-types"),e).then(t=>t.data),updateLeaveType:(e,t)=>Fe.put(Me(`/api/leave-types/${e}`),t).then(u=>u.data),deleteLeaveType:e=>Fe.delete(Me(`/api/leave-types/${e}`)).then(t=>t.data),searchUsers:e=>Fe.get(Me("/api/employees/search"),{params:{search:e}}).then(t=>t.data),reportBalances:(e,t)=>Fe.get(Me("/api/reports/balances"),{params:{year:e,group:t}}).then(u=>u.data),reportTrends:(e,t)=>Fe.get(Me("/api/reports/trends"),{params:{from:e,to:t}}).then(u=>u.data),reportSickLeave:(e,t,u)=>Fe.get(Me("/api/reports/sick-leave"),{params:{year:e,group:t,typeId:u}}).then(s=>s.data),exportRequestsUrl:(e,t)=>Me(`/api/export/requests?from=${e}&to=${t}`),exportBalancesUrl:e=>Me(`/api/export/balances?year=${e}`)};function FB(e){const t=e.getFullYear(),u=String(e.getMonth()+1).padStart(2,"0"),s=String(e.getDate()).padStart(2,"0");return`${t}-${u}-${s}`}function $2(e){const t=new Set;for(const u of String(e||"").split(",")){const s=parseInt(u,10);s>=1&&s<=7&&t.add(s)}return t}function U2(e,t,u,s){if(!e||!t||!u||u.size===0)return 0;const n=new Date(t+"T00:00:00");let i=0;for(const o=new Date(e+"T00:00:00");o<=n;o.setDate(o.getDate()+1)){const a=o.getDay()===0?7:o.getDay();u.has(a)&&!(s&&s(FB(o)))&&i++}return i}function ta(e){return e?new Date(e+"T00:00:00").toLocaleDateString(void 0,{year:"numeric",month:"short",day:"numeric"}):""}function V2(e,t){return e===t?ta(e):`${ta(e)} – ${ta(t)}`}function W2(e){const t=Math.max(0,Math.floor(e/1e3)),u=String(Math.floor(t%3600/60)).padStart(2,"0"),s=String(t%60).padStart(2,"0");return`${Math.floor(t/3600)}:${u}:${s}`}const kB=new Set(["AR","AU","BO","BR","BW","CL","FJ","LS","MG","MW","MZ","NA","NZ","PY","SZ","UY","ZA","ZM","ZW"]);function H2(e,t){const u=e.getMonth(),s=u===11||u<=1?"winter":u<=4?"spring":u<=7?"summer":"autumn";return kB.has(String(t||"").toUpperCase())?{winter:"summer",spring:"autumn",summer:"winter",autumn:"spring"}[s]:s}function G2(e,t,u,s,n){const i=new Date(t+"T00:00:00"),o=new Date(u+"T00:00:00"),a=Math.round((o-i)/864e5)+1;if(!(a<=0||!s))for(let r=0;r<12;r++){const m=new Date(n,r,1),l=new Date(n,r+1,0),g=i>m?i:m,p=o0&&(e[r]+=s*(h/a))}}async function q2(e,t){if(!e)return null;const{default:u}=await dr(async()=>{const{default:n}=await import("./index-YEWpjbJf.chunk.mjs");return{default:n}},[],import.meta.url),s=t?new u(e,t):new u(e);return n=>{const i=s.isHoliday(new Date(n+"T12:00:00"));return Array.isArray(i)&&i.some(o=>o.type==="public")}}async function K2(){const{default:e}=await dr(async()=>{const{default:u}=await import("./index-YEWpjbJf.chunk.mjs");return{default:u}},[],import.meta.url),t=new e().getCountries();return Object.keys(t).map(u=>({id:u,label:t[u]}))}async function Y2(e){if(!e)return[];const{default:t}=await dr(async()=>{const{default:s}=await import("./index-YEWpjbJf.chunk.mjs");return{default:s}},[],import.meta.url),u=new t().getStates(e)||{};return Object.keys(u).map(s=>({id:s,label:u[s]}))}const SB=` @@ -27,5 +27,5 @@ https://vue-select.org/api/props.html#getoptionlabel`):e}},getOptionKey:{type:Fu cy="6" r="3" fill="var(--color-main-background)" /> -`,NB=tu({__name:"NcIconToggleSwitch",props:{checked:{type:Boolean},size:{default:34},inline:{type:Boolean,default:!1}},setup(e){X0(s=>({v6bd152af:t.value,v16fd8ca9:u.value}));const t=Ue(()=>e.checked?"var(--color-primary-element)":"var(--color-text-maxcontrast)"),u=Ue(()=>e.checked?"calc(17 / 24 * 100%)":"calc(7 / 24 * 100%)");return(s,n)=>(X(),et(Es,{class:Bt(s.$style.iconToggleSwitch),svg:SB,size:e.size,inline:e.inline},null,8,["class","size","inline"]))}}),_B="_iconToggleSwitch_IKWaj",OB={"material-design-icon":"_material-design-icon_63AMQ",iconToggleSwitch:_B},TB={$style:OB},zB=rt(NB,[["__cssModules",TB]]),PB=Symbol.for("insideRadioGroup");function RB(){return Nu(PB,void 0)}const LB={name:"CheckboxBlankOutlineIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},jB=["aria-hidden","aria-label"],IB=["fill","width","height"],MB={d:"M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3M19,5V19H5V5H19Z"},$B={key:0};function UB(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon checkbox-blank-outline-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",MB,[u.title?(X(),me("title",$B,dt(u.title),1)):Ve("",!0)])],8,IB))],16,jB)}const VB=rt(LB,[["render",UB]]),WB={name:"CheckboxMarkedIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},HB=["aria-hidden","aria-label"],GB=["fill","width","height"],qB={d:"M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z"},KB={key:0};function YB(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon checkbox-marked-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",qB,[u.title?(X(),me("title",KB,dt(u.title),1)):Ve("",!0)])],8,GB))],16,HB)}const ZB=rt(WB,[["render",YB]]),XB={name:"MinusBoxIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},JB=["aria-hidden","aria-label"],QB=["fill","width","height"],ey={d:"M17,13H7V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z"},ty={key:0};function uy(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon minus-box-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",ey,[u.title?(X(),me("title",ty,dt(u.title),1)):Ve("",!0)])],8,QB))],16,JB)}const sy=rt(XB,[["render",uy]]),ny={name:"RadioboxBlankIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},iy=["aria-hidden","aria-label"],oy=["fill","width","height"],ay={d:"M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z"},ry={key:0};function ly(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon radiobox-blank-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",ay,[u.title?(X(),me("title",ry,dt(u.title),1)):Ve("",!0)])],8,oy))],16,iy)}const dy=rt(ny,[["render",ly]]),my={name:"RadioboxMarkedIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},cy=["aria-hidden","aria-label"],gy=["fill","width","height"],fy={d:"M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,7A5,5 0 0,0 7,12A5,5 0 0,0 12,17A5,5 0 0,0 17,12A5,5 0 0,0 12,7Z"},py={key:0};function hy(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon radiobox-marked-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",fy,[u.title?(X(),me("title",py,dt(u.title),1)):Ve("",!0)])],8,gy))],16,cy)}const vy=rt(my,[["render",hy]]),en="checkbox",Bs="radio",Zu="switch",qn="button",Ey={name:"NcCheckboxContent",components:{NcLoadingIcon:R3,NcIconToggleSwitch:zB},props:{iconClass:{type:[String,Object],default:null},textClass:{type:[String,Object],default:null},type:{type:String,default:"checkbox",validator:e=>[en,Bs,Zu,qn].includes(e)},buttonVariant:{type:Boolean,default:!1},isChecked:{type:Boolean,default:!1},indeterminate:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},iconSize:{type:Number,default:24},labelId:{type:String,required:!0},descriptionId:{type:String,required:!0}},computed:{isButtonType(){return this.type===qn},isSwitchType(){return this.type===Zu},checkboxRadioIconElement(){return this.type===Bs?this.isChecked?vy:dy:this.indeterminate?sy:this.isChecked?ZB:VB}}},Cy={key:0,class:"checkbox-content__wrapper"},By=["id"],yy=["id"];function xy(e,t,u,s,n,i){const o=It("NcLoadingIcon"),a=It("NcIconToggleSwitch");return X(),me("span",{class:Bt(["checkbox-content",{["checkbox-content-"+u.type]:!0,"checkbox-content--button-variant":u.buttonVariant,"checkbox-content--has-text":!!e.$slots.default}])},[ve("span",{class:Bt(["checkbox-content__icon",{"checkbox-content__icon--checked":u.isChecked,"checkbox-content__icon--has-description":!i.isButtonType&&e.$slots.description,[u.iconClass]:!0}]),"aria-hidden":!0,inert:""},[ze(e.$slots,"icon",{checked:u.isChecked,loading:u.loading},()=>[u.loading?(X(),et(o,{key:0})):i.isSwitchType?(X(),et(a,{key:1,checked:u.isChecked,size:u.iconSize,inline:""},null,8,["checked","size"])):u.buttonVariant?Ve("",!0):(X(),et(rn(i.checkboxRadioIconElement),{key:2,size:u.iconSize},null,8,["size"]))],!0)],2),e.$slots.default||e.$slots.description?(X(),me("span",Cy,[e.$slots.default?(X(),me("span",{key:0,id:u.labelId,class:Bt(["checkbox-content__text",u.textClass])},[ze(e.$slots,"default",{},void 0,!0)],10,By)):Ve("",!0),!i.isButtonType&&e.$slots.description?(X(),me("span",{key:1,id:u.descriptionId,class:"checkbox-content__description"},[ze(e.$slots,"description",{},void 0,!0)],8,yy)):Ve("",!0)])):Ve("",!0)],2)}const Ay=rt(Ey,[["render",xy],["__scopeId","data-v-5ca1e30f"]]);pn();const Ar={name:"NcCheckboxRadioSwitch",components:{NcCheckboxContent:Ay},inheritAttrs:!1,props:{id:{type:String,default:()=>"checkbox-radio-switch-"+_s(),validator:e=>e.trim()!==""},wrapperId:{type:String,default:null},name:{type:String,default:null},ariaLabel:{type:String,default:""},type:{type:String,default:"checkbox",validator:e=>[en,Bs,Zu,qn].includes(e)},buttonVariant:{type:Boolean,default:!1},buttonVariantGrouped:{type:String,default:"no",validator:e=>["no","vertical","horizontal"].includes(e)},modelValue:{type:[Boolean,Array,String],default:!1},value:{type:String,default:null},disabled:{type:Boolean,default:!1},indeterminate:{type:Boolean,default:!1},required:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},wrapperElement:{type:String,default:null},class:{type:[String,Array,Object],default:""},style:{type:[String,Array,Object],default:""},description:{type:String,default:null}},emits:["update:modelValue"],setup(e,{emit:t}){const u=RB();En(()=>u?.value.register(!1));const s=Ue(()=>u?.value?Bs:e.type),n=Ue({get(){return u?.value?u.value.modelValue:e.modelValue},set(i){u?.value?u.value.onUpdate(i):t("update:modelValue",i)}});return{internalType:s,internalModelValue:n,labelId:_s(),descriptionId:_s()}},computed:{isButtonType(){return this.internalType===qn},computedWrapperElement(){return this.isButtonType?"button":this.wrapperElement!==null?this.wrapperElement:"span"},listeners(){return this.isButtonType?{click:this.onToggle}:{change:this.onToggle}},iconSize(){return this.internalType===Zu?36:20},cssIconSize(){return this.iconSize+"px"},cssIconHeight(){return this.internalType===Zu?"16px":this.cssIconSize},inputType(){return[en,Bs,qn].includes(this.internalType)?this.internalType:en},isChecked(){return this.value!==null?Array.isArray(this.internalModelValue)?[...this.internalModelValue].indexOf(this.value)>-1:this.internalModelValue===this.value:this.internalModelValue===!0},hasIndeterminate(){return[en,Bs].includes(this.inputType)}},mounted(){if(this.name&&this.internalType===en&&!Array.isArray(this.internalModelValue))throw new Error("When using groups of checkboxes, the updated value will be an array.");if(this.name&&this.internalType===Zu)throw new Error("Switches are not made to be used for data sets. Please use checkboxes instead.");if(typeof this.internalModelValue!="boolean"&&this.internalType===Zu)throw new Error("Switches can only be used with boolean as modelValue prop.")},methods:{t:ft,n:qh,onToggle(e){if(!(this.disabled||e.target.tagName.toLowerCase()==="a")){if(this.internalType===Bs){this.internalModelValue=this.value;return}if(this.internalType===Zu){this.internalModelValue=!this.isChecked;return}if(typeof this.internalModelValue=="boolean"){this.internalModelValue=!this.internalModelValue;return}this.isChecked?this.internalModelValue=this.internalModelValue.filter(t=>t!==this.value):this.internalModelValue=[...this.internalModelValue,this.value]}}}},sd=()=>{X0(e=>({v5ac25550:e.cssIconSize,d98ce684:e.cssIconHeight}))},nd=Ar.setup;Ar.setup=nd?(e,t)=>(sd(),nd(e,t)):sd;const by=["id","aria-labelledby","aria-describedby","aria-label","disabled","type","value","checked",".indeterminate","required","name"];function wy(e,t,u,s,n,i){const o=It("NcCheckboxContent");return X(),et(rn(i.computedWrapperElement),ut({id:u.wrapperId??(i.isButtonType?u.id:null),"aria-label":i.isButtonType&&u.ariaLabel?u.ariaLabel:void 0,class:["checkbox-radio-switch",[e.$props.class,{["checkbox-radio-switch-"+s.internalType]:s.internalType,"checkbox-radio-switch--checked":i.isChecked,"checkbox-radio-switch--disabled":u.disabled,"checkbox-radio-switch--indeterminate":i.hasIndeterminate?u.indeterminate:!1,"checkbox-radio-switch--button-variant":u.buttonVariant,"checkbox-radio-switch--button-variant-v-grouped":u.buttonVariant&&u.buttonVariantGrouped==="vertical","checkbox-radio-switch--button-variant-h-grouped":u.buttonVariant&&u.buttonVariantGrouped==="horizontal","button-vue":i.isButtonType}]],style:u.style,type:i.isButtonType?"button":null},i.isButtonType?e.$attrs:{},n0(i.isButtonType?i.listeners:{})),{default:Pe(()=>[i.isButtonType?Ve("",!0):(X(),me("input",ut({key:0,id:u.id,"aria-labelledby":!i.isButtonType&&!u.ariaLabel?s.labelId:null,"aria-describedby":!i.isButtonType&&(u.description||e.$slots.description)?s.descriptionId:null,"aria-label":u.ariaLabel||void 0,class:"checkbox-radio-switch__input",disabled:u.disabled,type:i.inputType,value:u.value,checked:i.isChecked,".indeterminate":i.hasIndeterminate?u.indeterminate:null,required:u.required,name:u.name},e.$attrs,n0(i.listeners,!0)),null,48,by)),Be(o,{id:i.isButtonType?void 0:`${u.id}-label`,class:"checkbox-radio-switch__content",iconClass:"checkbox-radio-switch__icon",textClass:"checkbox-radio-switch__text",type:s.internalType,indeterminate:i.hasIndeterminate?u.indeterminate:!1,buttonVariant:u.buttonVariant,isChecked:i.isChecked,loading:u.loading,labelId:s.labelId,descriptionId:s.descriptionId,iconSize:i.iconSize,onClick:i.onToggle},am({icon:Pe(()=>[ze(e.$slots,"icon",{},void 0,!0)]),_:2},[e.$slots.description||u.description?{name:"description",fn:Pe(()=>[ze(e.$slots,"description",{},()=>[Ns(dt(u.description),1)],!0)]),key:"0"}:void 0,e.$slots.default?{name:"default",fn:Pe(()=>[ze(e.$slots,"default",{},void 0,!0)]),key:"1"}:void 0]),1032,["id","type","indeterminate","buttonVariant","isChecked","loading","labelId","descriptionId","iconSize","onClick"])]),_:3},16,["id","aria-label","class","style","type"])}const Z2=rt(Ar,[["render",wy],["__scopeId","data-v-c34c63a4"]]);export{Rh as $,sv as A,h2 as B,Jg as C,v2 as D,tv as E,ks as F,d2 as G,tu as H,Xn as I,g2 as J,p2 as K,f2 as L,Tv as M,pn as N,ah as O,dt as P,Ve as Q,it as R,Bt as S,Vi as T,ys as U,tn as V,ve as W,Be as X,Pe as Y,bh as Z,rt as _,Uf as a,vg as a$,v0 as a0,Hy as a1,It as a2,Es as a3,My as a4,ft as a5,As as a6,s2 as a7,Qy as a8,Gd as a9,t2 as aA,R3 as aB,_s as aC,D1 as aD,n2 as aE,zf as aF,Ff as aG,ky as aH,E2 as aI,Py as aJ,X1 as aK,Ly as aL,Jn as aM,zt as aN,jy as aO,i2 as aP,ml as aQ,nr as aR,Iy as aS,Jy as aT,am as aU,Wy as aV,Ql as aW,M2 as aX,x2 as aY,Ii as aZ,y2 as a_,Ym as aa,f3 as ab,ii as ac,gn as ad,Ah as ae,$m as af,gv as ag,yl as ah,Nf as ai,Zf as aj,Vy as ak,Uy as al,C1 as am,Ns as an,_t as ao,At as ap,ut as aq,Zy as ar,T1 as as,Oy as at,l1 as au,r1 as av,$h as aw,$y as ax,e2 as ay,o2 as az,im as b,B2 as b0,A2 as b1,C2 as b2,FB as b3,$2 as b4,U2 as b5,q2 as b6,id as b7,Ry as b8,Qr as b9,Y2 as bA,K2 as bB,Fy as bC,O0 as bD,Xy as ba,P3 as bb,Js as bc,Gy as bd,da as be,Mf as bf,zc as bg,od as bh,qy as bi,a2 as bj,Yy as bk,Te as bl,Dy as bm,Ky as bn,h1 as bo,Sv as bp,V2 as bq,Ny as br,_y as bs,Z2 as bt,ta as bu,H2 as bv,G2 as bw,W2 as bx,Ty as by,u2 as bz,et as c,me as d,ze as e,Fe as f,cn as g,Ue as h,Nu as i,uu as j,Ha as k,zy as l,X as m,ws as n,En as o,gt as p,Cf as q,rn as r,uv as s,ev as t,Sy as u,r2 as v,_u as w,c2 as x,l2 as y,m2 as z}; -//# sourceMappingURL=NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs.map +`,NB=tu({__name:"NcIconToggleSwitch",props:{checked:{type:Boolean},size:{default:34},inline:{type:Boolean,default:!1}},setup(e){X0(s=>({v6bd152af:t.value,v16fd8ca9:u.value}));const t=Ue(()=>e.checked?"var(--color-primary-element)":"var(--color-text-maxcontrast)"),u=Ue(()=>e.checked?"calc(17 / 24 * 100%)":"calc(7 / 24 * 100%)");return(s,n)=>(X(),et(Es,{class:Bt(s.$style.iconToggleSwitch),svg:SB,size:e.size,inline:e.inline},null,8,["class","size","inline"]))}}),_B="_iconToggleSwitch_IKWaj",OB={"material-design-icon":"_material-design-icon_63AMQ",iconToggleSwitch:_B},TB={$style:OB},zB=rt(NB,[["__cssModules",TB]]),PB=Symbol.for("insideRadioGroup");function RB(){return Nu(PB,void 0)}const LB={name:"CheckboxBlankOutlineIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},jB=["aria-hidden","aria-label"],IB=["fill","width","height"],MB={d:"M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3M19,5V19H5V5H19Z"},$B={key:0};function UB(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon checkbox-blank-outline-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",MB,[u.title?(X(),me("title",$B,dt(u.title),1)):Ve("",!0)])],8,IB))],16,jB)}const VB=rt(LB,[["render",UB]]),WB={name:"CheckboxMarkedIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},HB=["aria-hidden","aria-label"],GB=["fill","width","height"],qB={d:"M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z"},KB={key:0};function YB(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon checkbox-marked-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",qB,[u.title?(X(),me("title",KB,dt(u.title),1)):Ve("",!0)])],8,GB))],16,HB)}const ZB=rt(WB,[["render",YB]]),XB={name:"MinusBoxIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},JB=["aria-hidden","aria-label"],QB=["fill","width","height"],ey={d:"M17,13H7V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z"},ty={key:0};function uy(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon minus-box-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",ey,[u.title?(X(),me("title",ty,dt(u.title),1)):Ve("",!0)])],8,QB))],16,JB)}const sy=rt(XB,[["render",uy]]),ny={name:"RadioboxBlankIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},iy=["aria-hidden","aria-label"],oy=["fill","width","height"],ay={d:"M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z"},ry={key:0};function ly(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon radiobox-blank-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",ay,[u.title?(X(),me("title",ry,dt(u.title),1)):Ve("",!0)])],8,oy))],16,iy)}const dy=rt(ny,[["render",ly]]),my={name:"RadioboxMarkedIcon",emits:["click"],props:{title:{type:String},fillColor:{type:String,default:"currentColor"},size:{type:Number,default:24}}},cy=["aria-hidden","aria-label"],gy=["fill","width","height"],fy={d:"M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,7A5,5 0 0,0 7,12A5,5 0 0,0 12,17A5,5 0 0,0 17,12A5,5 0 0,0 12,7Z"},py={key:0};function hy(e,t,u,s,n,i){return X(),me("span",ut(e.$attrs,{"aria-hidden":u.title?null:"true","aria-label":u.title,class:"material-design-icon radiobox-marked-icon",role:"img",onClick:t[0]||(t[0]=o=>e.$emit("click",o))}),[(X(),me("svg",{fill:u.fillColor,class:"material-design-icon__svg",width:u.size,height:u.size,viewBox:"0 0 24 24"},[ve("path",fy,[u.title?(X(),me("title",py,dt(u.title),1)):Ve("",!0)])],8,gy))],16,cy)}const vy=rt(my,[["render",hy]]),en="checkbox",Bs="radio",Zu="switch",qn="button",Ey={name:"NcCheckboxContent",components:{NcLoadingIcon:R3,NcIconToggleSwitch:zB},props:{iconClass:{type:[String,Object],default:null},textClass:{type:[String,Object],default:null},type:{type:String,default:"checkbox",validator:e=>[en,Bs,Zu,qn].includes(e)},buttonVariant:{type:Boolean,default:!1},isChecked:{type:Boolean,default:!1},indeterminate:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},iconSize:{type:Number,default:24},labelId:{type:String,required:!0},descriptionId:{type:String,required:!0}},computed:{isButtonType(){return this.type===qn},isSwitchType(){return this.type===Zu},checkboxRadioIconElement(){return this.type===Bs?this.isChecked?vy:dy:this.indeterminate?sy:this.isChecked?ZB:VB}}},Cy={key:0,class:"checkbox-content__wrapper"},By=["id"],yy=["id"];function xy(e,t,u,s,n,i){const o=It("NcLoadingIcon"),a=It("NcIconToggleSwitch");return X(),me("span",{class:Bt(["checkbox-content",{["checkbox-content-"+u.type]:!0,"checkbox-content--button-variant":u.buttonVariant,"checkbox-content--has-text":!!e.$slots.default}])},[ve("span",{class:Bt(["checkbox-content__icon",{"checkbox-content__icon--checked":u.isChecked,"checkbox-content__icon--has-description":!i.isButtonType&&e.$slots.description,[u.iconClass]:!0}]),"aria-hidden":!0,inert:""},[ze(e.$slots,"icon",{checked:u.isChecked,loading:u.loading},()=>[u.loading?(X(),et(o,{key:0})):i.isSwitchType?(X(),et(a,{key:1,checked:u.isChecked,size:u.iconSize,inline:""},null,8,["checked","size"])):u.buttonVariant?Ve("",!0):(X(),et(rn(i.checkboxRadioIconElement),{key:2,size:u.iconSize},null,8,["size"]))],!0)],2),e.$slots.default||e.$slots.description?(X(),me("span",Cy,[e.$slots.default?(X(),me("span",{key:0,id:u.labelId,class:Bt(["checkbox-content__text",u.textClass])},[ze(e.$slots,"default",{},void 0,!0)],10,By)):Ve("",!0),!i.isButtonType&&e.$slots.description?(X(),me("span",{key:1,id:u.descriptionId,class:"checkbox-content__description"},[ze(e.$slots,"description",{},void 0,!0)],8,yy)):Ve("",!0)])):Ve("",!0)],2)}const Ay=rt(Ey,[["render",xy],["__scopeId","data-v-5ca1e30f"]]);pn();const Ar={name:"NcCheckboxRadioSwitch",components:{NcCheckboxContent:Ay},inheritAttrs:!1,props:{id:{type:String,default:()=>"checkbox-radio-switch-"+_s(),validator:e=>e.trim()!==""},wrapperId:{type:String,default:null},name:{type:String,default:null},ariaLabel:{type:String,default:""},type:{type:String,default:"checkbox",validator:e=>[en,Bs,Zu,qn].includes(e)},buttonVariant:{type:Boolean,default:!1},buttonVariantGrouped:{type:String,default:"no",validator:e=>["no","vertical","horizontal"].includes(e)},modelValue:{type:[Boolean,Array,String],default:!1},value:{type:String,default:null},disabled:{type:Boolean,default:!1},indeterminate:{type:Boolean,default:!1},required:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},wrapperElement:{type:String,default:null},class:{type:[String,Array,Object],default:""},style:{type:[String,Array,Object],default:""},description:{type:String,default:null}},emits:["update:modelValue"],setup(e,{emit:t}){const u=RB();En(()=>u?.value.register(!1));const s=Ue(()=>u?.value?Bs:e.type),n=Ue({get(){return u?.value?u.value.modelValue:e.modelValue},set(i){u?.value?u.value.onUpdate(i):t("update:modelValue",i)}});return{internalType:s,internalModelValue:n,labelId:_s(),descriptionId:_s()}},computed:{isButtonType(){return this.internalType===qn},computedWrapperElement(){return this.isButtonType?"button":this.wrapperElement!==null?this.wrapperElement:"span"},listeners(){return this.isButtonType?{click:this.onToggle}:{change:this.onToggle}},iconSize(){return this.internalType===Zu?36:20},cssIconSize(){return this.iconSize+"px"},cssIconHeight(){return this.internalType===Zu?"16px":this.cssIconSize},inputType(){return[en,Bs,qn].includes(this.internalType)?this.internalType:en},isChecked(){return this.value!==null?Array.isArray(this.internalModelValue)?[...this.internalModelValue].indexOf(this.value)>-1:this.internalModelValue===this.value:this.internalModelValue===!0},hasIndeterminate(){return[en,Bs].includes(this.inputType)}},mounted(){if(this.name&&this.internalType===en&&!Array.isArray(this.internalModelValue))throw new Error("When using groups of checkboxes, the updated value will be an array.");if(this.name&&this.internalType===Zu)throw new Error("Switches are not made to be used for data sets. Please use checkboxes instead.");if(typeof this.internalModelValue!="boolean"&&this.internalType===Zu)throw new Error("Switches can only be used with boolean as modelValue prop.")},methods:{t:ft,n:qh,onToggle(e){if(!(this.disabled||e.target.tagName.toLowerCase()==="a")){if(this.internalType===Bs){this.internalModelValue=this.value;return}if(this.internalType===Zu){this.internalModelValue=!this.isChecked;return}if(typeof this.internalModelValue=="boolean"){this.internalModelValue=!this.internalModelValue;return}this.isChecked?this.internalModelValue=this.internalModelValue.filter(t=>t!==this.value):this.internalModelValue=[...this.internalModelValue,this.value]}}}},sd=()=>{X0(e=>({v5ac25550:e.cssIconSize,d98ce684:e.cssIconHeight}))},nd=Ar.setup;Ar.setup=nd?(e,t)=>(sd(),nd(e,t)):sd;const by=["id","aria-labelledby","aria-describedby","aria-label","disabled","type","value","checked",".indeterminate","required","name"];function wy(e,t,u,s,n,i){const o=It("NcCheckboxContent");return X(),et(rn(i.computedWrapperElement),ut({id:u.wrapperId??(i.isButtonType?u.id:null),"aria-label":i.isButtonType&&u.ariaLabel?u.ariaLabel:void 0,class:["checkbox-radio-switch",[e.$props.class,{["checkbox-radio-switch-"+s.internalType]:s.internalType,"checkbox-radio-switch--checked":i.isChecked,"checkbox-radio-switch--disabled":u.disabled,"checkbox-radio-switch--indeterminate":i.hasIndeterminate?u.indeterminate:!1,"checkbox-radio-switch--button-variant":u.buttonVariant,"checkbox-radio-switch--button-variant-v-grouped":u.buttonVariant&&u.buttonVariantGrouped==="vertical","checkbox-radio-switch--button-variant-h-grouped":u.buttonVariant&&u.buttonVariantGrouped==="horizontal","button-vue":i.isButtonType}]],style:u.style,type:i.isButtonType?"button":null},i.isButtonType?e.$attrs:{},n0(i.isButtonType?i.listeners:{})),{default:Pe(()=>[i.isButtonType?Ve("",!0):(X(),me("input",ut({key:0,id:u.id,"aria-labelledby":!i.isButtonType&&!u.ariaLabel?s.labelId:null,"aria-describedby":!i.isButtonType&&(u.description||e.$slots.description)?s.descriptionId:null,"aria-label":u.ariaLabel||void 0,class:"checkbox-radio-switch__input",disabled:u.disabled,type:i.inputType,value:u.value,checked:i.isChecked,".indeterminate":i.hasIndeterminate?u.indeterminate:null,required:u.required,name:u.name},e.$attrs,n0(i.listeners,!0)),null,48,by)),Be(o,{id:i.isButtonType?void 0:`${u.id}-label`,class:"checkbox-radio-switch__content",iconClass:"checkbox-radio-switch__icon",textClass:"checkbox-radio-switch__text",type:s.internalType,indeterminate:i.hasIndeterminate?u.indeterminate:!1,buttonVariant:u.buttonVariant,isChecked:i.isChecked,loading:u.loading,labelId:s.labelId,descriptionId:s.descriptionId,iconSize:i.iconSize,onClick:i.onToggle},am({icon:Pe(()=>[ze(e.$slots,"icon",{},void 0,!0)]),_:2},[e.$slots.description||u.description?{name:"description",fn:Pe(()=>[ze(e.$slots,"description",{},()=>[Ns(dt(u.description),1)],!0)]),key:"0"}:void 0,e.$slots.default?{name:"default",fn:Pe(()=>[ze(e.$slots,"default",{},void 0,!0)]),key:"1"}:void 0]),1032,["id","type","indeterminate","buttonVariant","isChecked","loading","labelId","descriptionId","iconSize","onClick"])]),_:3},16,["id","aria-label","class","style","type"])}const Z2=rt(Ar,[["render",wy],["__scopeId","data-v-c34c63a4"]]);export{Rh as $,sv as A,h2 as B,Jg as C,v2 as D,tv as E,ks as F,d2 as G,tu as H,Xn as I,g2 as J,p2 as K,f2 as L,Tv as M,pn as N,ah as O,dt as P,Ve as Q,it as R,Bt as S,Vi as T,ys as U,tn as V,ve as W,Be as X,Pe as Y,bh as Z,rt as _,Uf as a,vg as a$,v0 as a0,Hy as a1,It as a2,Es as a3,My as a4,ft as a5,As as a6,s2 as a7,Qy as a8,Gd as a9,t2 as aA,R3 as aB,_s as aC,D1 as aD,n2 as aE,zf as aF,Ff as aG,ky as aH,E2 as aI,Py as aJ,X1 as aK,Ly as aL,Jn as aM,zt as aN,jy as aO,i2 as aP,ml as aQ,nr as aR,Iy as aS,Jy as aT,am as aU,Wy as aV,Ql as aW,M2 as aX,x2 as aY,Ii as aZ,y2 as a_,Ym as aa,f3 as ab,ii as ac,gn as ad,Ah as ae,$m as af,gv as ag,yl as ah,Nf as ai,Zf as aj,Vy as ak,Uy as al,C1 as am,Ns as an,_t as ao,At as ap,ut as aq,Zy as ar,T1 as as,Oy as at,l1 as au,r1 as av,$h as aw,$y as ax,e2 as ay,o2 as az,im as b,B2 as b0,A2 as b1,C2 as b2,FB as b3,$2 as b4,U2 as b5,q2 as b6,id as b7,Ry as b8,Qr as b9,Y2 as bA,K2 as bB,Fy as bC,O0 as bD,Xy as ba,P3 as bb,Js as bc,Gy as bd,da as be,Mf as bf,zc as bg,od as bh,qy as bi,a2 as bj,Yy as bk,Fe as bl,Dy as bm,Ky as bn,h1 as bo,Sv as bp,V2 as bq,Ny as br,_y as bs,Z2 as bt,ta as bu,H2 as bv,G2 as bw,W2 as bx,Ty as by,u2 as bz,et as c,me as d,ze as e,ke as f,cn as g,Ue as h,Nu as i,uu as j,Ha as k,zy as l,X as m,ws as n,En as o,gt as p,Cf as q,rn as r,uv as s,ev as t,Sy as u,r2 as v,_u as w,c2 as x,l2 as y,m2 as z}; +//# sourceMappingURL=NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs.map diff --git a/js/NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs.license b/js/NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs.license similarity index 100% rename from js/NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs.license rename to js/NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs.license diff --git a/js/NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs.map b/js/NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs.map similarity index 99% rename from js/NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs.map rename to js/NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs.map index 3e348c1..b8ef76d 100644 --- a/js/NcCheckboxRadioSwitch-DVdt5Hkq-Hp7kgx_A.chunk.mjs.map +++ b/js/NcCheckboxRadioSwitch-DVdt5Hkq-0woWiQP2.chunk.mjs.map @@ -1 +1 @@ -{"version":3,"mappings":"SAQuB,CAACA,EAAKC,IAAQC,OAInC,EAAMC,GAHa,UAAO,SACxB,MAAY,GACA,EAAE,SACW,cAE3B,OADoCC,CAAU,EAC7B,aAAqB,SAA0BJ,CAAKC,cAEhCC,EAAY,CACjD,QAAmB,OAAO,UACxB,WACc,EACVG,OAAS,KAASC,CAAMC,KAC5B,KAAAA,OAAe,CACRD,OAAK,KACV,aACA,aACE,QAAUC,QACV,OAAe,QAC2C,oBAAjD,IAAOC,MAAM,OAAY,aAAa,UAAgC,OAAQ,EAAyB,MAEvG,MAAOA,CAAM,UAAY,OAAOA,MAAM,MAAWA,EAAE,cAIlE,OACA,EAAIR,GAAI,SAAQ,OAAM,CACpBA,OAAYA,EAEPK,EAAOL,MAAe,CAAE,OAEZA,QAAyB,CAC5C,MAAMS,GAAa,UAAO,KACxB,SAAW,EACf,EAAgB,GAAE,CACVC,EAAoCC,MAC1C,OAAI,WAAY,QAAQ,oBAAsB,SAAoB,QACzDD,MAAiCV,CAAKC,OAExB,eAAgCD,CAAKC,GAC9D,CA0CMG,OAAmB,QAAO,QAAS,WAAW,YAAc,OAAS,KAAOO,MAClF,QAASA,QACP,CAAIC,KAAU,QAAO,UACrB,CAAI,WAAmB,QACX,QAAS,OACnB,MAAMC,OAAc,OAAQ,WAAa,MACrCA,OACFD,CAAUA,GAAQ,SAAY,OAE9B,KAAME,OAAgB,OAAQ,IAAM,CACpCF,QAAkB,SAAqBE,CAAQ,MAAM,GAGzD,QACF,CCtGA,SAASC,MAAqBC,CAAG,OAC9B,MAAiBR,IAAE,UAAgBA,OAAE,IACtC,SAAa,QAAO,EAAMQ,GAAIC,OAAOA,CAAKC,GAAG,EAAIV,OACjD,KAAOU,CACT,CACA,SAASC,IAAgBX,CAAG,CAC1B,OAAI,KAAM,SAAY,MAAOA,KAE/B,MAASY,OAA4B,CACnC,OAAgBZ,QAAI,OAAsB,WAAf,SAAkC,MAAO,OAAQ,MAAO,WAAY,MACnFa,WACV,CAAIJ,QAIF,EAAI,GACJK,UAEF,OACMC,SAAW,OAAS,OAAYC,QAAU,CAAO,IAAEF,CAAKL,IAAM,KAAKI,CAAC,QAAG,KAAY,KAAKJ,EAAE,KAAK,MAAK,OAAWO,IAAIF,CAAI,MAC7H,QACEG,EAAI,IAAM,CAAIjB,CAChB,WACE,CAAI,CACF,IAAKc,MAAe,OAAV,SAAyBD,EAAE,QAAM,CAAI,SAAQ,GAAMK,SAC/D,WACE,CAAID,EAAG,MAAM,CACf,GAEF,MAAO,CACT,KAEF,MAASE,UACP,CAAM,SAAI,KAAU;AAAA;AA4wEkD,EAAQC,KAGxEC,QACeC,WAEUC,CAAsBC,KAAiC,CAAIJ,EAC1F,EACAK,EAAU;ACjyE8C;AAAA;AAAA,EAGxDC,MAAQ,CAAK,KACJC,CACT,QACWD,CAASE,IAClB,MAAI,QAAO,KAAK,MAAS,SAAU,SAAYC,CAAQ,SAAK,YAM5D,OAHI,QAAOH,GAAY,SAAYE,GAAS,QAAU,gBAC5C,CAAQF,GAEVG,EAAK,CACX,KAAKC,GAAS,SACZ,KAAQ,MAAM,QAAK,YAAcJ,CAASI,GAAS,UAAwB,KAC3E,GACF,MAAKA,EAAS,KACZ,QAAQ,UAAU,gBAAuBA,GAAS,eAClD,KACF,EAAKA,GAAS,KACZ,QAAQ,KAAK,KAAK,cAAcJ,SAAkB,CAAME,CAAO,EAAGA,CAAO,EACzE,MACF,KAAKE,IAAS,KACZ,SAAQ,OAAM,GAAK,cAAcJ,EAASI,IAAS,SAAwB,GAC3E,OACF,QAAc,IACd,qBACU,CAAM,SAAK,UAAcJ,EAASI,OAAS,eAIzD,UAAwB,CACtB,wBAAkC,IAAO,UAAW,OAAK,UAE3D,KAAKJ,CAASE,EAAS,CACrB,MAAK,OAAa,IAAMF,MAAS,QAAO,EAAO,GAAI,QAAK,MAAgB,CAAC,KAE3E,GAAKA,CAASE,EAAS,CACrB,SAASE,GAAS,KAAMJ,SAAgB,UAAW,KAAK,QAASE,QAEnE,EAAMF,EAASE,MACb,EAAK,KAAIE,EAAS,YAAgB,GAAO,OAAO,GAAI,YAAK,CAASF,MAEpE,MAAeA,MACb,EAAK,IAAIE,GAAS,MAAOJ,EAAS,OAAO,OAAO,SAAS,UAC3D,CACF,CACA,SAASK,GAAmBH,EAAS,EACnC,MAAO,QAAyB,CAClC,CACA,MAAMI,GACJ,YACA,OACA,YACE,KAAK,QAAU,GACf,KAAK,QAAUC,CACjB,CAMA,SAAc,CACZ,aAAK,OAAQ,IAAMC,KACZ,CACT,EAMA,mBACE,QAAK,OAAQ,MAAQL,UAUvB,YACE,OAAK,gBACE,IAKT,aACE,UAA2B,KAC3B,IAAIM,IAAS,eACN,OAAQ,EAAMA,EAAK,MAEnB,QAKT,aACE,UAAa,YAEP,OAAS,iBAAe,SAAc,QAAS,gBAAe,aAChEC,CAAK,gBAAgB,QAAO,cAAY,UAAqB,QACzD,EAAO,YACTA,UAAa,MAAQN,GAAS,UAEhC,UAAS,gBAAoB,mBAAoBO,QAEjD,KAAS,iBAAiB,yBAG9B,SACO,IACT,CAEA,OAAQ,MACN,EAAI,OAAK,UAAQ,UAAU,SACpB,cAAc,CAEd,SAAK,eAAa,CAAO,CAClC,EAEF,UAASC,UACP,CAAO,QAAkBP,CAAkB,CAC7C,ECnJK,UAAUO,CAAgB,SAAG,KAAU,CAAG,OAAO,mBAAkB,KAAK,ECAvEC,MAAa,SCKM,CAAC,oCAAqC,qCAAsC,6CAAwC,iCAAuC,yCAA0C,oCAAsC,qDAAoD,4CAA+C,gDAA+C,6EAAgF,4DAA6D,qCAAqC,EACpkBC,GAAmCC,IAAmB,QAAQ,CAC9DC,UAAmB,YACnBC,GAAUD,GAAY,UAAY,KAAK,MAAQ,UAAU,SAAW,QAAQ,UAAU,mBAAqB,QAAQ,aAAU,2BACjG,SAAQ,SAAU,iBAAc,WAC1DE,GACJ,UAAmB,OAAuCA,CAAuBC,EAAQ,oBAAiB,CAAQD,MAAyB,OAA3F,QAAkI,IAAKC,CAAO,CAChM,KAAI,QAAmB,CACrB,OAAyDA,GAAQ,eAW/DC,QAAW,IAAiBC,EAAMC,EAAQ,CAC5C,IAAIC,KACAD,CAAW,cACJ,CAKX,KAAIE,CAAWH,GAAS,OAAoCE,EAAqBF,EAAK,gBAAkB,MAAQE,IAAuB,OAArF,SAA0H,MAAKF,CAAM,OAAO,EAC1LI,EAAQD,IAAa,KAAMA,OAAa,GAKxCE,EAASD,OAAmBJ,GAGhC,OAAOA,EAAK,SAAY,YAAaA,CAAK,YAAQ,QAAaD,EAASC,EAAK,UAAU,OACvF,GAAOK,CACT,OAOwB,OAA2BL,EAAM,CACvD,MAIIM,GAAWN,EAAS,SAA0DA,OAAK,gBAAkB,CAAQO,IAAwB,OAAvF,UAA6H,QAAW,eAAiB,EAC3M,QAAOD,OAAmBA,IAAa,MACzC,GAQIE,OAAgB,QAA6CC,EAAQ,CAGvE,QAAe,CACb,OAAO,GAET,GAAIC,KAAa,GAAM,eAAU,CAAM,UAAS,eAAiBjB,QACjE,IAAIkB,GAAoBf,GAAQ,OAASH,GAAiB,EACxDiB,EAAW,WAEbA,OAAwB,IAAOD,KAEjC,CAoCIG,GAA4B,SAAkCC,IAA4BlE,EAAS,CAGrG,QAFI+D,EAAa,OACK,OAAM,EAAKG,CAAQ,OAClB,QACrB,EAAIf,MAA0B,IAAK,EACnC,IAAIC,GAASD,GAAS,CAAK,EAK3B,GAAIA,EAAQ,mBAEV,GAAIgB,IAAmB,iBAAgB,MAChB,UAAoBhB,CAAQ,SAC/CiB,EAAmBH,IAA0BI,CAAS,MACtDrE,EAAQ,eACM,UAAkC,CAElD+D,EAAW,KAAK,CACd,YAAaZ,EACb,YACV,CAAS,CAEL,KAAO,CAEL,QAAqBF,CAAQ,KAAKE,EAASL,OACrB9C,EAAQ,OAAOmD,GAAO,EAAMa,GAAoB,CAACE,EAAS,YAAgB,EAC9FH,GAAW,WAITO,EAAanB,WAAQ,GAEzB,OAAOnD,EAAQ,eAAkB,YAAcA,GAAQ,aAAcmD,EAAO,CAKxEoB,EAAkB,EAACnB,EAASkB,KAAiB,GAAM,MAAS,eAAoBtE,EAAQ,iBAAiBmD,KAC7G,EAAImB,IAAcC,CAAiB,CAOjC,IAAIC,EAAoBP,MAA0BK,CAAe,QAAe,MAAWA,EAAW,UAAU,EAAMtE,CAAO,IACjH,UACC,OAAK,WAEL,QACT,aACA,gBAGN,GAGEyE,MAAgB,SAAQ,CAAMA,EAAiBtB,EAAQ,SAE3D,CACF,CACA,OAAOY,QASS,OAAqBV,EAAM,CAC3C,MAAO,CAAC,MAAM,SAASA,EAAK,iBAAa,SAAa,CAAE,CAAC,CAC3D,MAQkB,QAAqBA,EAAM,KACtCA,EACH,OAAM,GAAI,MAAM,kBAAkB,OAEpC,EAAIA,MAAK,MAAW,GAQb,6BAA0B,EAAKA,GAAK,WAAYqB,CAAkBrB,CAAI,SAAuB,EACzF,MAGC,MACd,EAUIsB,KAAuB,OAA8BtB,EAAMuB,GAC7D,QAAeC,CAAYxB,CAAI,GAC/B,MAAIyB,GAAW,EAAKF,IAAYG,GAAY1B,KAGrCyB,CACT,EACIE,GAAuB,SAA8BlE,EAAGmE,IAC1D,MAAOnE,SAAE,cAAe,CAAWA,EAAE,cAAgBmE,aAAE,GAAgBnE,aAAe,mBAE1E,GAAiBuC,MAC7B,WAAY,OAAY,OAEtB6B,GAAgB,SAAuB7B,aAC1BA,CAAI,aAAmB,SAEpC8B,GAAuB,SAA8B9B,EAAM,KACzD/C,EAAI+C,SAAK,GAAY,aAAa,YAAM,EAAU,MAAM,gBAAmB,EAAE,OAAK,OAAU+B,EAAO,CACrG,QAAOA,CAAM,UAAY,WAC1B,CACD,SACF,CACIC,SAAkB,GAAyBC,QAC7C,iBAA0B,GAAQjE,IAChC,GAAIiE,IAAO,CAAE,SAAWA,OAAS,SAC/B,OAAajE,CAAC,CAGpB,SACsB,QACpB,GAAI,IAAM,QACR,EAAO,KAET,EAAIkE,MAAkB,IAAQC,GAAYnC,EAAI,CAC1CoC,EAAc,SAAqBC,cACnB,sBAAiB,iCAGrC,GAAI,iBAAkB,EAAe,kBAAsB,iBAAsB,EAAO,aAAe,UACrGC,EAAWF,QAAY,CAAO,SAAI,EAAOpC,QAAU,UAGjDsC,EAAWF,eACb,CAASG,EAAK,OAEZ,UAAQ,cAAM,uIAAgJ,SAIlK,UAA8BD,CAAUtC,EAAK,IAAI,KACjD,GAAO,IAAYwC,KACrB,OACc,OAAiBxC,KAC7B,KAAOyC,GAAQzC,IAASA,KAAK,IAAS,OACxC,KACyB,oBAChB0C,EAAQ1C,CAAI,KAAM2C,EAAgB3C,CAAI,SAI1B,OAAwBA,CAAM,CACjD,aAwBuBmC,CAAYnC,CAAI,UACP4C,EAAc,QAAQC,EAAc,QAAS,MAASA,EAAU,OAIjF,GACf,GAAID,GAAYA,UACd,CAAIE,EAAeC,OAEnB,CADAC,EAAW,GAAC,CAAGF,EAAgBG,MAAkB,OAAQH,EAAkB,SAAWC,EAAwBD,OAAc,YAAmB,MAAQC,SAA0B,GAAUA,EAAsB,aAA0B/C,GAAS,aAAuD,kBAAmB,GAAQkD,OAAwB,WAA8B,QAAa,CAClY,CAACF,KAAYC,CAAc,CAChC,IAAIE,EAAYC,MAILjB,GAAYc,KACvBA,CAAgBE,EAAaP,MAAc,OAAQO,EAAe,OAAS,QAASA,CAAW,QACnF,GAAGC,GAAiBH,QAAkB,EAAQG,IAAmB,SAAWC,EAAwBD,WAAe,cAA2BC,IAA0B,QAAUA,OAAsB,cAGxN,EAAOL,CACT,UACiB,WACXM,EAAwBtD,UAAK,oBACD,SACrBsD,CAAsB,QACjC,QAAOC,EAAU,UAEfC,GAAW,UAAkBxD,CAAMyD,EAAM,UACnB,kBACD,aACvB,GAAIC,GAAiB,eACf,oBAAqB1D,KAGvB,EAAI2D,IAAe,iBAGjB,eAAc,CACd,sBACA,wBACA,mBAAoB,CAKpB,uBACD,CACD,aAUAC,EAAoB,iBAAiB5D,CAAI,KAC9B4D,CAAkB,eAC7BC,GAAe,cAA2B,WAC5C,YAEF,CAAIC,EAAkBlE,QAAaI,EAAM,oCAClB8D,CAAkB9D,EAAK,mBAC1CJ,GAAQ,OAAuB,2CAGd8D,EAAiB,sBAGrB,WAAkC,YAAe,CAChE,SAAI,CAAOK,cAA8B,CAIvC,aAAO/D,EAAM,CACX,IAAIgE,EAAgBhE,IAAK,YACrBiE,OAA2B,CAC/B,QAAsBD,CAAc,aAAcD,CAAcC,CAAa,SAI3E,KAAOE,GAAWlE,KACJ,aAEdA,EAAOA,SAAK,QACFgE,EAAiBC,KAAajE,CAAK,cAE7CA,EAAOiE,KAAS,EAGhBjE,QAeN,GAAImE,IAAmB,EAKrB,MAAO,CAACnE,GAAK,cAAc,MAAG,GAmBhC,MAAI0D,CAAiB,iBACnB,GAAO,QAGX,GAAWA,KAAiB,eAM1B,UAAkB1D,CAAI,EAKxB,UAMEoE,GAAyB,SAAgCpE,IAC3D,EAAI,uCAAmC,CAAKA,EAAK,WAG/C,UAFsB,gBAEfqE,CAAY,CACjB,oBAA2B,SAAyB,UAElD,UAAa,EAAGrG,WAAe,EAAS,SAAQA,EAAK,CACnD,IAAI+D,EAAQsC,QAAW,GAAS,KAAKrG,CAAC,QAE5B,SAAY,eAGpB,CAAO4B,YAAyB,oBAAsB,EAAI,KAAQmC,CAAM,SAAS/B,KAIrF,OAEFqE,EAAaA,KAAW,UAC1B,CAKF,OAAO,CACT,EACIC,GAAkC,SAAyC3H,EAASqD,KACtF,QAAS,UAAY6B,GAAc7B,QAAkBA,CAAMrD,CAAO,MAE7CqD,CAAI,WAKvBuE,GAAiC,aAAuD,CAC1F,QAAIC,GAAmBxE,KAASwB,EAAYxB,CAAI,KAAS,CAACsE,MAA6C,EAIzG,MAC2B,SAA8BG,CAAgB,CACvE,OAAe,QAASA,EAAe,aAAa,UAAU,UAC9D,SAAI,EAAMhD,CAAQ,SAMpB,CAMIiD,QAAe,gBAEbC,EAAmB,cACZ,UAAQ,gBACH,CAAC,CAACC,SAAK,MACjB9E,CAAUyB,EAAUqD,KAAK,SAAcA,GACvCC,CAAoBvD,OAAqC,CACzDT,EAAWU,IAAUmD,CAAaE,EAAK,aAAc9E,CACrD+E,MACFtD,KAA2B,OAAK,KAAwBV,CAAQ,EAAIiE,KAAiB,EAAKhF,CAAO,KAEhF,cACf,QACA,cACA,CAAM8E,OACN,GAASrD,KACT,QAGN,CAAC,EACMoD,KAAiB,UAA2B,GAAO,SAAUI,EAAKC,EAAU,CACjF,OAAAA,EAAS,gBAAmB,YAAoB,UAAe,GAAKA,OAAS,EAAO,SAE/E,SACT,EACIC,IAAW,WAA6BtI,CAAS,CACnDA,UACA,EAAI+D,IACJ,WAAY,UACVA,IAAaE,CAA0B,OAAqB,qBAC1D,GAAQ2D,WAAoC,EAAM5H,CAAO,KACzD,MAAS,EACT,cAAeA,EAAQ,cACvB,iBAAkBuI,KAGpBxE,OAAsC/D,EAAQ,oBAAiD,MAAK,OAAc,CAE7G+H,OAELS,GAAY,WAA8BxI,EAAS,CACrDA,EAAUA,GAAW,GACrB,IAAI+D,EACJ,WAAY,gBACGE,CAA0B,CAACwE,CAAS,aAAW,oBAClB,SAAWzI,CAAO,EAC1D,SAAS,EACT,gBAAuB,aAC7B,CAAK,SAEqCA,EAAQ,iBAAkB2H,GAAgC,KAAK,OAAc,EAE9G5D,CACT,SACiB,aACf/D,EAAUA,SAER,OAAM,GAAI,YAAM,iBAElB,eAAuB8C,CAAiB,kBAI1C,CACI4F,UAA+D,MAAO,kCAAoC,CAAE,QAAQ,MACtG,eAEhB,CADA1I,EAAUA,WAER,cAAgB,mBAAkB,CAEpC,WAAY,MAAW0I,EAA0B,KAAM,EAC9C,KAEFf,CAAgC3H,IACzC,ECrkBA,SAASa,MAAqBC,CAAG,EACtBA,IAAR,MAAaA,CAAIR,EAAE,iBAAkB,SACtC,WAAoB,UAAcQ,EAAGC,MAAOA,CAAC,EAAIT,MACjD,cAEF,GAASqI,MACP,GAAI,QAAM,QAAS,CAAG,OAAO9H,KAC/B,CACA,YAAoCP,EAAGS,oBACP,GAAtB,gBAAyC,eAAe,SAAY,CAC5E,eACM,CAAM,qBAAgD,EAAMA,eAE9D,CAAIC,EAAI,EACN4H,EAAI,UAAY,MAClB,GAAO,IACFA,CACH,EAAG,kBACM5H,GAAKV,SAAW,CACrB,SACE,CACF,QACA,SAASU,EAAG,CACxB,KAEW,SAAUV,MACX,UAIN,CACA,OAAM,GAAI,gBAAU;AAAA,mFAAuI,CAC7J,CACA,UACM,CACJkB,EAAI,GACN,MAAO,CACL,SAAG,GAAY,CACbL,EAAIA,GAAE,IAAKb,EACb,EACA,EAAG,UAAY,CACb,aAAc,SACPQ,EAAIR,EAAE,MACf,GACA,CAAG,UAAUA,CAAG,EACdkB,CAAI,IAAMD,CAAIjB,CAChB,GACA,CAAG,wBAEgB,SAAV,CAAoBa,EAAE,OAAM,CACnC,aACMK,CAAG,MAAMD,CACf,CACF,EAEJ,CACA,YAAyB,GAAGjB,CAAGa,EAAG,EAChC,MAAQb,QAAoB,SAAU,GAAO,sBAC3C,KAAOa,CACP,YAAY,EACZ,kBACA,SACJ,CAAG,EAAI,EAAEb,CAAC,EAAIa,GACd,CACA,SAAS0H,GAAiBvI,EAAG,IACR,SAAO,KAAtB,KAAwCA,EAAE,SAAO,MAAQ,MAAzB,GAAsCA,EAAE,YAAY,GAAtB,MAAyB,MAAO,MAAM,cAE1G,SACE,MAAM,GAAI,UAAU;;ACrB63gJ,KAA0B,CAAE;AC4bzygJ,qDACjF,KAMrD,CAiBI,aAAc,IACZ,QAAM,OACN,QACE,OAAI,EAAOwI,GAAW,SACpB,QAAOA,CAET,MACE,KAAO,OAAO,OAAOA,IAAQ,GAAI,CAAIA,KAAYC,QACnD,MAEE,KAAOC,cASN,CACL,KAAM,SACN,SAAU,IACJ,GAAK,aAAgB,KAAK,mBACvB,eAAe,CAExB,CACN,KAMI,MAAU,EACR,KAAM,QACN,UACN,CAMI,aACE,EAAM,QACN,OAAS,KACf,CAOI,aACE,QAAM,MACN,KAAS,CACf,aAQgB,CACV,KAAM,QACN,SAAS,CACf,IAYI,SACE,QAAM,QACN,MAAQF,CAAQG,IAAe,CAC7B,aAAiB,CAAI,sBAAoB,OAAQC,CAAO,sBAAuB,CACjF,CACN,OAaI,OACE,CAAM,eACN,EAAQlJ,EAASkJ,KACf,KAAOlJ,KAAQ,IAAQ8I,GAAW,CAChC,IAAIG,EAAQ,OAAK,eAAqB,CACtC,OAAI,SAAOA,CAAU,aACXA,GAAM,QAAQ,MAEjB,OAAK,IAASH,IAAeI,CAAM,OAShD,YAAc,CACZ,OAAM,OACN,QAAQJ,OACN,OAAO,GAAO,KAAK,WAAW,CAAC,MAAM,MAAW,IAAG,IAAK,IAAK,KAAcA,CAC7E,CACN,OAOI,uBACE,IAAM,UACN,MAAS,OAcX,mBACE,QAAS,QACT,YAAuB,QAAY,SAAS,EAAE,aAAS,GAAOK,MAOhE,gBAAmB,OACX,WACN,YAAU,eAAAC,CAAqB,aAC7B,OAAOA,OAEf,CAMI,SACE,KAAM,QACN,OAAS,IAQX,WACE,GAAM,MACZ,EAQI,IAAK,CACH,MAAM,SACN,OAAS,QAQX,UAAa,CACX,KAAM,eACN,CAAS,EACf,KAMI,cAAkB,CAChB,QAAM,WACG,IAAM,QAcjB,uBAA0B,CACxB,aACA,YAAS,aAOX,WACE,UAAM,IAMN,YACN,UAQI,KAAc,OACN,OACN,QAAS,EACf,QAYI,oBACQ,kBAUgBC,CAAW,CAAE,YAAOC,iBAC3B,EAAM,gBACA,GAAOC,EAC1BC,OAAa,CAAM,QAE3B,MAQI,eAAoB,OACZ,QACN,QAAQ,CAAE,mBAAc,eAAkB,CACxC,YAAwBC,GAAQ,QAOpC,iBAAqB,EACnB,IAAM,SACN,gBAOA,SAAO,YACP,YAAeC,GAAQ,EAE7B,GACE,MACE,WACA,IACA,oBACA,aACA,wBACA,0BACA,aACA,cACA,iBACA,aACA,iBACA,mBACA,kBACA,qBACA,mBACJ,IACE,KACE,OACE,OAAQ,MACR,EAAM,GACN,gBACA,oBAAsB,KACtB,YAEA,SAAQ,CAER,iBAAiB,CACvB,CACE,KACA,MAAU,CACR,kBAAmB,GACjB,iBAAmB,SAAW,KAAK,SAAS,MAAM,OAAO,YAQ3D,eAAmB,EACjB,MAAO,UAAO,EAAK,WAAe,KAAe,SAAK,YACxD,EAMA,eAAgB,CACd,IAAIP,EAAQ,KAAK,eAIjB,QAHS,mBACPA,EAAQ,UAAK,CAAM,SAEGA,QAAkBA,SACjC,CAAG,SAAY,CAEjB,iBAUP,SAAO,UAAK,CAAQ,qBAAuB,KAAK,WAAa,UAO/D,YACE,CAAO,QAAK,IAAO,YAAc,QAAM,kBAAgB,UAAc,QAAK,qBAAwB,QAAS,UAAM,CACnH,EAMA,cACQQ,EAAW,EACf,SAAQ,EAAK,OACb,WAAS,EAAK,QACd,UAAW,KAAK,kBAChB,QAAiB,KAAK,eAC9B,EACM,MAAO,CACL,OAAQ,CACN,WAAY,CACV,GAAI,KAAK,QACT,YAAU,EAAK,SACf,YAAa,SAAK,cAClB,aAAU,CAAK,SACf,cAAW,CAAK,WAChB,OAAM,mBACN,UAAqB,QACrB,YAAc,KAAK,kBACnB,gBAAiB,MAAM,KAAK,GAAG,YAC/B,YAAa,UAAM,CAAK,KAAG,kBAC3B,YAAiB,CAAK,kBAAa,IAAQ,EAC3C,MAAK,OACL,KAAM,SACN,aAAc,QAAK,UACnB,QAAO,GAAK,QACZ,IAAG,GAAK,eAAgB,IAAK,gBAAgB,QAAK,aAAgB,EAAI,CACpE,0BAAyB,IAAM,iBAAQ,GAAY,UAAK,aACtE,EAAgB,GAChB,CACU,OAAQ,CACN,iBAAkB,KAAM,IAAK,qBAC7B,aAAsB,KAAK,aAAc,KACzC,KAAS,KAAK,gBACd,YAAU,EAAK,iBACf,KAAM,UAAK,QACX,gBAAY,WACZ,IAAQ5I,cAAW,CAASA,EAAE,OAAO,KACjD,CACA,EACQ,mBACW,GAAK,iBAEhB,SAAW,CACT,OAAQ,KAAK,OACb,WAAS,EAAK,eACd,UAAW,OAAK,OAC1B,EACQ,sBACE,aACO,YACL,OAAM,mBACC,wBAGX,UAAY4I,MACZ,SACA,eAAuB,UAAU,EAAK,SAAQ,CAC9C,QAAU,GAAGA,GAAU,SAAU,IAAK,QAAQ,EAElD,KAQA,kBACE,GAAO,QAEL,EAAG,KAAK,YAEZ,CAMA,eACE,UACE,QAAY,MAAK,gBACjB,aAAe,EAAK,SACpB,eAAgB,KAAK,SACrB,gBAAiB,KAAK,kBAAmB,aACzC,gBAAuB,gBAAe,CAAK,UAC3C,gBAAoB,QAAM,UAC1B,aAAe,MAAK,cACpB,eAAgB,KAAK,QAC7B,MAQI,cACE,CAAO,CAAC,CAAC,KAAK,WAQhB,WAAe,CACb,OAAO,UAAK,cAAmB,SAQjC,iBAAoB,CAClB,OAAO,UAAK,WAAgB,GAAK,aAAc,SAAK,SAAc,IACpE,EASA,iBAAkB,CAChB,MAAMC,EAAgBC,OAChB,CAAK,UAAU,GACVA,EAAS,MAAM,EAAG,KAAK,WAIf,GAAG,OAAO,KAAK,YAClC,GAAI,CAAC,KAAK,kBAAoB,UAC5B,mBAEc,OAAK,KAAO,OAAS,OAAK,KAAOC,EAAY,KAAK,YAAY,CAAIA,MAC9E,IAAK,eAAiB,OAAO,SAC/B,CAAI,MACF,CAAMC,GAAgB,OAAK,WAAa,IAAK,QACxC,KAAK,aAAaA,CAAa,MAC1B,OAAQA,CAAa,CAEjC,MAAQ,CACR,CAEF,OAAOH,EAAa5J,MAOtB,cACE,OAAO,KAAK,iBAAc,OAC5B,CAMA,qBACE,WAAa,QAAY,KAAK,mBAAmB,IAAQ,CAAC,KAAK,cAErE,CACE,QAWE,OAAQgK,QACN,GAAMC,EAAc,IAAM,OAAO,MAAK,qBAAyB,WAAa,QAAK,kBAC/ED,KAEA,KAAK,YACb,OAAe,2BACC,UAAYC,KACpB,KAAK,eAAc,EAEjB,QAAK,SAAc,OAAK,gBAC1B,MAAK,4BAA4B,IAAK,UAAU,CAEpD,EAKA,eACE,QAAW,EACX,QAAQC,EAAK,CACP,WAAK,YACP,KAAK,4BAA4BA,CAAG,IAU1C,cACE,EAAK,eAAc,CACrB,EACA,KAAKC,EAAQ,CACX,KAAK,MAAMA,EAAS,OAAS,OAAO,CACtC,EACA,OAAOjB,EAAQ,IACF,QACT,KAAK,KAAO,GAEhB,CACJ,EACE,SAAU,CACR,gBAAK,IAAiB,KAAK,SAE7B,cAQE,2BACM,OAAM,0BACG,CAASC,EAAM,IAAKe,KAAQ,GAAK,2BAA2BA,CAAG,CAAC,GAE3E,SAAK,CAAM,QAAS,IAAK,+BAU7B,OAAOpB,EAAQ,IACb,OAAK,CAAM,mBAAoBA,EAAM,CAChC,MAAK,oBAUC,cAAK,mBAA8B,yBAA8B,sBAAmB,IAAS,kBACxFA,CAAM,GAVhB,QAAK,OAAY,CAAC,iBAAK,CAAaA,CAAM,IAC5C,YAAW,gBAAkBA,CAAM,EACnC,YAAK,CAAQA,CAAM,MAEjB,EAAK,cACE,IAAK,eAAc,MAAOA,CAAM,GAE3C,KAAK,qBACA,KAAM,mBAAyB,IAItC,MAAK,aAAoB,CAC3B,EAOA,SAASA,EAAQ,CACf,KAAK,MAAM,0BACX,KAAK,YAAY,GAAK,gBAAc,KAAQoB,GACnC,CAAC,OAAK,kBAA4B,CAC1C,CAAC,GACF,IAAK,MAAM,oBAAqBpB,CAAM,CACxC,EAQA,4BACO,iBACCsB,EAAe,KAAK,kBAAkBC,EAAS,CAAC,KACjC,IAAK,oBAA2B,CAAC,EAChDC,cAEY,GAAK,MAErB,CAAK,cAAS,CAAK,IAQvB,eAAiB,CACf,KAAK,YAAY,KAAK,UAAW,EAAK,QACtC,GAAK,YAAS,GAAK,CACrB,EAOA,gBACM,OAAK,iBACP,EAAK,QAAQ,KAAK,IAEhB,KAAK,sBACP,QAAK,IAAS,QAEZ,CAAK,YAAU,CAAK,UACtB,KAAK,UAAU,OAAM,EAAK,OAAM,aAAc,CAElD,IASA,gBACM,IAAO,MAAK,WAAe,KAC7B,YAAW,SAETnB,IAAU,OACR,SAAM,UACAA,EAAM,IAAKe,cAAa,CAAOA,MAE/B,MAAK,SAAY,CAG7B,KAAK,MAAM,oBAAqBf,CAAK,EACvC,CAOA,eAAeoB,EAAO,CACpB,MAAMC,QAA0B,KAAW,OAAK,OAC5CA,IACFD,CAAM,eAAc,EAEtB,WACE,CAAG,MAAK,0BACL,CAAK,SAAM,aAAe,EAAK,MAAM,WAAW,GAAI,CAC/D,QACU,EAAK,WAAa,WAAyB,UAAO,SAAS,CAAME,GAAQA,EAAI,SAASF,YAAiBE,GAAQF,EAAM,aACjH,aAAc,EACpB,MACF,CACI,UAAK,CAAQC,GACf,KAAK,KAAO,IACZ,MAAK,OAAS,KAAI,GACR,OAAK,eACV,WACL,CAAK,SAAS,OAAK,CAEvB,EAOA,oBACE,WAAO,CAAK,cAAc,MAAMrB,EAAU,QAAK,cAAiBA,EAAOL,CAAM,CAAC,OAQhF,kBAAqBA,CAAQ,CAC3B,OAAO,MAAK,gBAAiBA,CAAM,GAAK,KAAK,oBAC/C,aAQA,YAAuBuB,gBACZ,qBAAuB,IAAK,wBAC5BA,CAAW,eAAK,iBAW3B,WAAiBvJ,EAAGmE,EAAG,gBACT,aAAc,EAAM,KAAK,gBACvC,CASA,2BAA2BkE,cACK,KAAK,uBAA4B,CAAC,OAAM,GAAK,UAAe,EACpFlG,EAAU,OAAI,EAAK,eAAY,CAAK,eAAY,IAAOyH,CAAS,EACtE,qBACSzH,CAAQ,EAAC,CAEXA,IAAQ,KAAM0H,CAAU,KAAK,iBAAiBA,EAAO,KAAK,MAAM,QAAO,IAChF,CAOA,uBACE,GAAK,MAAO,GACZ,KAAK,KAAM,aAAa,CAC1B,EAOA,uBACO,KAAK,SAAS,UAAM,IAAU,OAAK,iBAAiB,CAAK,cAAc,UAAU,IAAK,UACzF,KAAIxB,CAAQ,QACR,EAAK,WACPA,IACE,EAAG,KAAK,cAAc,WAAS,GAAK,cAAc,MAAS,MAG/D,IAAK,YAAYA,GAErB,IAQA,YAAaL,CAAQ,CACnB,OAAO,KAAK,cAAW,EAAM8B,SAAiB,gBAAiBA,OASjE,yBACE,IAAK,KAAK,YAAiB,OAGpB,EAAO,KAAK,iBAAiB9B,CAAM,CAAC,EAFlC,WAWX,kBAAuBA,QACrB,EAAO,QAAOA,EAAW,SAAWA,EAAS,CAAE,CAAC,MAAK,IAAK,EAAGA,CAAM,QASrE,GAAQA,EAAQ,MACT,eAAW,CAAKA,CAAM,CAC7B,MAOA,MAAW,MACC,OAAO,SAGf,GAAK,OAAS,GAFd,KAAK,WAWT,YAAe,CACb,GAAI,OAAK,cAAc,CAAK,gBACrB,WAAY,KACZ,QACG;AC71CK,EAAI,CAAE,QAAQ,YAC7BzH,EAAIwJ,GAAK,OAAQ,OACXA,KAAK,OAAU,EAAGxJ,MAAG,SAAO,UAClC6I,CAAMW,EAAK,UAAUxJ,EAAI,CAAC,EAAE,QAExB,EAACyJ,SAAuBC,GAAkBD,CAAG,OAI7CA,EAAQ,aACNE,EAAOF,CAAG,GACZE,CAAOF,CAAG,EAAE,KAAKZ,CAAG,EAEpBc,MAAed,CAAG,EAGpBc,EAAOF,IAAOE,CAAOF,CAAG,EAAIE,EAAOF,QAAcZ,EAAMA,EAE3D,CAAC,EAEIc,CACT,EChEA,cAA2B,CACzB,KAAIC,CAAQ,EACRC,EAAMC,OAAI,EAEd,KAAOF,EAAQC,OACb,GAAME,OAAW,WAEjB,GAAIA,WAA0B,GAC5B,MAGFH,QAGF,EAAOC,GAAMD,EAAO,CAClB,MAAMG,MAAW,eAEjB,EAAIA,IAAS,KAAQA,EAAS,WAI9BF,CAAO,CACT,CAEA,aAAiB,CAAKA,WAAY,EAASC,EAAMA,EAAI,MAAMF,EAAOC,CAAG,QAKjEG,GAAqC,IAAI,SAAO,yCAA4C,GAAG,QAEtD,CAAI,OAAO,6CAA6C,UAEvG,SAA8BC,CAAc,OAC1C,CAAIC,EAAM,QAAQpC,GACTA,SAAoBqC,SAGtBC;AC6OG,EACV,CAEA,oBACE,EAAO,SAAS,aAAY,KAG9B,IAAK,OAAO,WAAW,OACrB,GAAO,cACT,CAEA,OAAO,QACL,OAAOC,iCAGT,MAAO,QAAOC,sBACS,EAAKA,CAAK,EAE/B,OAAAC,MAAQ,SAA6B,IAAIC,MAK3C,OAAO,yBAEF,CAAKC,EAAU,EAChB,WAEI,UAAW,CACrB,KAEgC,YACV,GAAK,WAEvB,QAASC,GAAeC,CAAS,CAC/B,cAEKC,OACHC,GAAeC,EAAWH,CAAO,GACjCC,CAAUG,CAAO,UAIrBb,KAAM,cAAyB,OAAQQ,CAAc,EAAIA,GAAqB,OAIlF,EAEAM,GAAa,UACX,eACA,mBACA,0BAEA,wBACA,GACF,MAGM,0BAA+B,IAAW,CAAC,EAAE,OAAK,CAAIvB,IAAQ,OACrDA,SAAO,UAAgBA,eACpC,EAAO,CACL,QAAW3B,yBAOT,eAAckD,CAAY,ECvVhC,QAAMC,CAAW,kBAEjB,SAASC,GAAwBC,EAAQ,CACvC,GAAIjB,EAAM,YAAWiB,CAAQ,QAAQ,MACnC,EAAO,GAGT,MAAgB,YAAO,UAAeA,CAAM,MAE5C,CAAOL,WAA2B,IAAO,UAAW,CAClD,KAAU,WAAWA,EAAW,WAC9B,KAAO,MAGG,QAAO,aAAeA,SAG7B,EACT,CAKA,YAAsBM,KACpB,OAAMC,CAAY,WAAmB,MAAW,UAAU,YAAW,CAAE,CAAC,MAC3D,CAEPC,MAEJ,GADIH,UAAmB,OAAOA,GAAW,eAC/B,SAAkB,OAAOA,EACnC,GAAII,MAAK,IAAQJ,CAAM,IAAM,QAAI,GAE7BA,YAAkBH,SACJ,WAGlBO,CAAK,OAAW,CAEhB,IAAIlJ,EACJ,KAAU,cACC,KACF,SAASmJ,CAAGxL,IAAM,CACvB,OAAMyL,CAAeH,EAAME,CAAC,EACvBtB,MAAM,gBACD,EAAIuB,EAEhB,CAAC,aAEU,eAAoB,GAAKP,GAAwBC,CAAM,IAChE,OAAK,KAAG,CACDA,EAGT9I,EAAS,aAAO,CAAO,IAAI,EAC3B,SAAW,CAACoH,EAAK3B,CAAK,KAAK,WAAO,OAChC,OAAM2D,CAAeJ,EAAU,IAAI5B,EAAI,cAAa,CAAIwB,GAAWK,cACxD,SAAwB,CACjCjJ,EAAOoH,CAAG,MAKhB,UAAK,GAAG,EACDpH,CACT,OAEA,EAAOiJ,EAAMF,IACf,cAEMM,SAAmB,KAAM,CAC7B,QAAO,cAA6CC,EAAa,CAC/D,MAAMC,EAAa,YAAqB,OAAS7B,CAAQ8B,EAAM,SAAuBC,CAAQ,EAO9F,iBAAO,YAAeF,EAAY,iBAChC,SACA,IAAOC,EACP,eACA,QAAY,GACZ,aAAc,EACpB,EAAK,CACDD,WAAwB,GAGpBC,EAAM,SAAU,SAAmB,OAAU,MAC/CD,aAA0B,MAG5BD,gBAAsB,CAAOC,EAAYD,CAAW,EAC7CC,WAcT,SAAmCG,EAASD,EAAU,GACpD,KAAa,cAKN,UAAe,iBAGpB,qBACOnL,CACP,iBACA,UACA,YAAc,EACpB,OAEI,CAAK,WAAO,WACZ,CAAK,iBACLoJ,GAAS,QAAK,EAAOA,GACrBqB,SAAgB,UAChBW,IAAY,KAAK,QAAUA,GACvBD,MACF,GAAK,SAAWA,QACX,MAASA,GAAS,SAI3B,UAKE,GAAMV,IAAS,GAAK,OACdY,EAAaZ,QAAgB,QAAWA,SAAQ,CAAQ,EAAIA,OAAO,GAAS,MAC5Ea,EACJ/B,QAAM,EAAQ8B,EAAU,SAAgB,EAAS,EAC7CE,MAA+B,GAC/BhC,CAAM,cAAmB,EAE/B,WAEE,IAAS,MAAK,WACd,CAAM,KAAK,YAEX,OAAa,IAAK,YAClB,OAAQ,MAAK,MAEb,QAAU,KAAK,SACf,kBAAiB,UACjB,YAAc,QAAK,UACnB,MAAO,KAAK,aAEJ+B,EACR,QAAM,EAAK,OACX,WAAa,QAGnB,CAGAP,cAAW,WAAuB,sBAClCA,QAAW,UAAiB,kBAC5BA,EAAW,aAAe,eAC1BA,SAAW,IAAY,8BACG,qBACf,qBACXA,GAAW,oCAA4B,mBACvCA,cAAW,GAAiB,kBAC5BA,EAAW,iBAAmB,mBAC9BA,GAAW,gBAAkB,sBAClB,oCACA,6BACXA,KAAW,iBAAkB,kBAClB,+BAA+B,4BCxL1C,UAAe,ICQFS,GAA8B,OAS3C,MAASC,GAAY/B,EAAO,IAC1B,IAAOH,EAAM,qBAA8B,SAC7C,CASA,SAASmC,GAAe5C,YACT,WAAc,IAAI,YAAiB,EAAE,KAYpD,SAAS6C,EAAUC,gBAEVA,UACM,SACN,QAAqBvM,EAAG,CAE3B,YAAuBwM,CAAK,EACrB,CAACC,GAAQzM,aAClB,CAAC,MACA,CAAKyM,EAAO,QARGhD,CASpB,CASA,cAA0B,CACxB,OAAOS,IAAM,SAAW,CAAK,EAACwC,CAAI,OAAgB,CACpD,EAEA,KAAMC,GAAazC,EAAM,aAAaA,IAAO,CAAI,WAAM,OACrD,aAAO,GAAW,OACpB,CAAC,EAyBD,SAAS0C,GAAWC,EAAKC,EAAUnO,EAAS,CAC1C,YAAW,GAASkO,CAAG,EACrB,MAAM,IAAI,cAAU,sBAA0B,EAIhDC,EAAWA,IAAY,OAAyB,KAGhDnO,SAAgB,SACdA,CACA,KACE,OAAY,GACZ,KAAM,IACN,OAAS,GACf,CACI,IACA,QAAiB8I,GAAQ0D,CAAQ,EAE/B,OAAQjB,CAAM,iBAChB,CACJ,EAEE,MAAM6C,IAAqB,WAErBC,MAAkB,SAClBP,UACAQ,CAAUtO,GAAQ,QAClBuO,CAAQvO,EAAQ,MAAS,OAAO,UAAwB,OAC7CA,EAAQ,WAAa,UAA0CA,GAAQ,SAClFwO,CAAUD,KAAe,oBAAoBJ,EAAQ,CACrDM,MAEN,GAAKlD,EAAM,eACT,KAAM,MAAI,aAAU,0BAGtB,QAASmD,EAAavF,EAAO,MACvBA,GAAU,QAAM,EAAO,GAE3B,IAAIoC,CAAM,QAAY,MACpB,IAAOpC,CAAM,gBAGf,CAAIoC,EAAM,cACR,OAAOpC,CAAM,WAGf,KAAKqF,EAAWjD,EAAM,OAAOpC,EAAK,CAChC,WAAU4D,EAAW,8CAA8C,EAGrE,WAAU,cAA8B,sBAClCyB,CAAW,OAAOD,GAAU,WAC9B,OAAO,eAEL,cACF,MAAOI,GAAO,KAAKxF,CAAK,OAE1B,CAAM,IAAI4D,GAAW,+CAAgDA,GAAW,eAAe,IAGjG,KAAO5D,CACT,CAEA,gBACE,CAAIyF,EAAQC,GACV,KAAM,kBACJ,uBAA0C,wBAA0BA,cACzD,mBACnB,CAEE,KAEA,MAASC,CAAwB3F,KAC/B,KAAI0F,MACF,QAAO,IAAK,UAAU1F,SAGlB4F,QAEN,SAAY,cAAiB,OAAoBC,gBACpC,aACT,CAAOC,GAGT,SAAiB,OAAoBF,EAAU,OAAS,CAAC,eAC7C,CAAG,EAGf,OAAAA,gBAC0C,OAAS,MAIvD,CAYA,WAAwB5F,EAAO2B,EAAK8C,EAAM,CACxC,MAAUzE,EAEV,GAAIoC,EAAM,cAAc4C,CAAQ,IAAK5C,CAAM,kBAAkBpC,CAAK,OAChE,GAAAgF,CAAS,QAAOR,EAAUC,MAAe,CAAGc,EAAavF,OAI3D,GAAIA,IAAUyE,SAAQ,CAAOzE,GAAU,UACrC,GAAIoC,EAAM,SAAST,IAAK,SAEHA,CAAMA,EAAI,QAAS,GAAE,CAExC3B,EAAQ2F,EAAwB3F,EAAO,CAAC,iBAEjC,GAAQA,aACboC,CAAM,gBAAqBA,CAAM,oBAAyBwC,GAAMxC,CAAM,iBAGxE,GAAAT,CAAM4C,gBAEM,uBACF,uBACNS,CAAS,mBAGW,SACdG,GAAY,KACVxD,CACAA,EAAM,UAGlB,CAAC,MAKL,aACS,GAGTqD,EAAS,OAAOR,UAA4Be,EAAavF,CAAK,CAAC,EAExD,GACT,CAEA,SAAuB,WAAO,GAAO6E,EAAY,CAC/C,oBACA,YACA,YAAAP,EACJ,MAEE,MAASyB,EAAM/F,EAAOyE,EAAMgB,KAC1B,GAAIrD,SAAM,MAAYpC,OAEtBgG,EAAwBP,CAAK,IAEnB,SAAa,IAAM,OAC3B,GAAM,GAAI,MAAM,kCAAoChB,EAAK,gBAGrD,OAEA,SAAQzE,CAAO,SAAciG,EAAItE,cAE3B,OAAc,GAAKsE,IAAO,cACrBjB,OAAoB,QAASrD,CAAG,aAAsB8C,EAAMyB,CAAc,KAE1E,IACbH,MAAiBtB,EAAK,UAAc,CAAC9C,IAAM8D,CAAQ,IAEtD,CAEDH,IAAM,GAAG,CACX,KAEKlD,IAAM,UACT,MAAM,QAAI,aAAU,kBAAwB,CAG9C,OAAA2D,GAAS,EAEFf,CACT,eC9QqB,CACnB,aACO,UACA,qBAEA,KACL,gBACO,OAET,QAAO,oBAAwB,SAAQ,gBAAgB,SACrD,UAAoB,CACtB,EACF,CAUA,WAASmB,CAAqBvP,KAC5B,KAAK,WAELA,WAA6B,CAAMC,CAAO,QAGtCmM,WAAiC,KAEvCA,IAAU,UAAS,UACjB,UAAK,MAAO,CAAK,KAAa,CAChC,EAEAA,GAAU,SAAW,SAAkBoD,EAAS,CAC9C,MAAMC,EAAUD,SACO,GAAK,KAAMpG,EAAOsG,EAAM,MAG/C,MAAO,SAAK,GACT,KAAI,eACH,GAAOD,EAAQE,aAAyBA,CAAK,CAAC,CAAC,CACjD,wBCzCG,EAASD,GAAOvF,EAAK,CAC1B,UAAO,gBAAmBA,CAAG,EAC1B,QAAQ,eACR,SAAQ,IAAQ,GAAG,MACnB,IAAQ,QAAS,GAAG,EACpB,YAAQ,GAAQ,IACrB,CAWe,UAASyF,EAAS7P,EAAKC,MACpC,GAAKA,EACH,WAEID,GAAO,GAEb,MAAM8P,EAAWrE,EAAM,YAAkB,EACrC,CACE,WACR,KAMQiE,CAAUjE,EAAM,iBAAsB,OAAQ,CAAKkE,GACnDI,GAActE,CAAM,YAAYqE,GAAU,qBAI5CC,GACFC,CAAmBD,KAA4B,EAE/CC,GAAmBvE,CAAM,0BACd,iBAC0BqE,CAAQ,MAAE,oBAIzB9P,CAAI,mBAEJ,GACpBA,kBAEFA,KAAY,OAAQ,GAAG,IAAM,gBAG/B,UC/DF,SACE,WACE,qBAYEiQ,OACF,YAAK,UAAS,UACZ,KAAAA,GACA,oBACA,EAAa/P,EAAUA,EAAQ,oBAC/B,GAASA,GAAUA,CAAQ,gBAEtB,IAAK,SAAS,OAAS,CAChC,CASA,MAAMgQ,EAAI,CACJ,KAAK,kBACP,CAAK,SAASA,EAAE,CAAI,KAExB,CAOA,eACW,UACP,IAAK,sBAcDC,CAAI,EACV1E,CAAM,mBAAa,KAAU,OAAwB2E,EAAG,EAClDA,GAAM,iBC9DhB,GAAAC,GAAe,CACb,6BACA,UAAmB,SACnB,cAAqB,iBACrB,mBAAiC,GACjC,2BAA6B,GAC7B,yCCLa,MAAO,iBAAoB,EAAc,gBAAkBb,GCD1Ec,GAAe,OAAO,kBAA2B,OAAW,ECA5DC,GAAe,OAAO,iBAA8B,GCEpDC,EAAe,EACb,SAAW,GACX,kBACF,wBAEA,KACA,GACE,SAAW,EAAC,iBAAiB,IAAQ,OAAQ,MAAO,aCXhC,SAAO,IAAW,WAAe,CAAO,SAAa,IAErEC,IAAc,MAAO,WAAc,6BAmBnCC,EACJC,KACC,UAAgB,aAAe,0BAA8BF,GAAW,OAAO,EAAI,GAWhFG,iBAEK,qBAEP,eAAgB,eAChB,OAAO,KAAK,mBAAkB,SAI5BC,CAAUF,IAAiB,yBAAyB,iNCxC1DG,GAAe,CACb,GAAGrF,SAEL,CCAe,SAASsF,GAAiBC,OACvC,KAAO7C,GAAW6C,uBAA2B,UAAmB,CAC9D,cAAS,GAAU3H,cACjB,EAAIyH,GAAS,WAAgB,QAASzH,CAAK,GACzC,KAAK,OAAO2B,EAAK3B,EAAM,SAAS,QAAQ,CAAC,EAClC,OAGM,kBAAe,KAAM,SAAM,GAC5C,EACA,MAEJ,CCZA,gBAEA,KAAS4H,SACHnQ,GAAQoQ,EACV,MAAM,IAAIjE,GACR,yCAA0CnM,CAAQ,yBAA0BoQ,WACjE,iCAYRC,GAAcvL,EAAM,CAK3B,MAAMkI,wBAEN,GAAIjD,EAEJ,kBAAiC,KAAO,IACtCoG,UAA0B,CAAM,EAChCnD,IAAK,GAAKjD,SAAa,OAAYA,CAAM,CAAC,WAG5C,KAAOiD,CACT,IASA,YACE,MAAMM,EAAM,eACQ,EAAKH,CAAG,GAC5B,GAAI1M,EACJ,MAAM6P,EAAMC,WACZ,EAAIrG,EACJ,IAAKzJ,GAAI,CAAGA,EAAI6P,EAAK7P,gBAER0M,EAAIjD,CAAG,EAEpB,OAAOoD,QAUT,GAASkD,GAAejD,aACbkD,CAAUzD,EAAMzE,EAAO0C,EAAQjL,aAGlC8E,EAAOkI,EAAKhN,GAAO,EAEvB,GAAI8E,aAAS,GAAa,aAE1B,EAAM4L,EAAe,OAAO,sBACC,KAG7B,OAFA5L,eAAsB,CAAQmG,CAAM,EAAIA,WAEpC0F,GACEhG,EAAM,WAAWM,EAAQnG,CAAI,GAC/BmG,CAAOnG,CAAI,GAAI6F,CAAM,QAAQM,EAAOnG,CAAI,CAAC,EACrCmG,EAAOnG,CAAI,EAAE,uBAGN,CAAIyD,EAGV,CAACmI,KAGN,CAAC/F,iBAA6B,EAAK,CAACA,EAAM,iBAAqB,CACjEM,EAAOnG,CAAI,yBAKO,MAAQmG,SAC1BA,CAAOnG,CAAI,GAAI8L,EAAc3F,OAGxB,CAACyF,GAGV,aAAU,GAAWnD,CAAQ,KAAW,WAAWA,kBAC3CD,EAAM,IAEZ3C,QAAM,aAAa4C,EAAU,sBAE7B,CAAC,EAEMD,CACT,QAEO,IACT,CC1GA,MAAMuD,GAAM,CAACvD,EAAKpD,IAASoD,GAAO,mBAAyBA,EAAKpD,OAAc,CAAI,OAYlF,kBAAoD,CAClD,UAAU,IAAS4G,CAAQ,OAEvB,WAAW,GAAK,qBAElB,YACM3Q,CAAE,WAAS,WACb,KAAMA,CAEV,CAGF,iBAAwB,SAAW2Q,CAAQ,CAC7C,CAEA,OAAMC,EAAW,CACf,aAAcxB,GAEd,gBAAiB,SAAQ,IAAO,QAEhC,WAAkB,CAChB,uBACsByB,CAAQ,eAAc,GAAM,SACT,MAAQ,kBAAkB,EAAI,qBASrE,CANIC,GAAmBtG,EAAM,iBAC3BuF,CAAO,KAAI,kBAGY,OAAWA,CAAI,IAGtC,MAAOgB,CAAqB,KAAK,WAAUV,GAAmB,CAAC,EAAIN,EAGrE,IACEvF,CAAM,cAAcuF,CAAI,GACxBvF,EAAM,SAASuF,CAAI,GACnBvF,GAAM,QAASuF,CAAI,KACb,QAAW,IACjBvF,CAAM,SAAW,WACX,oBAECuF,EAET,UAAU,cAAsB,GAC9B,MAAOA,EAAK,OAEd,IAAIvF,CAAM,mBAAsB,GAC9B,MAAAqG,GAAQ,cAAe,uDAChBd,CAAK,SAAQ,OAGlBiB,CAEJ,UACE,EAAMC,EAAiBP,IAAI,YAAM,YACjC,CAAIQ,UAAoB,mCAAmC,GAAI,GAC7D,MAAOpB,IAAiBC,CAAMkB,CAAc,IAAE,OAAQ,KAGxD,CACGD,EAAaxG,GAAM,WAAe,IACnC0G,GAAY,OAAQ,qBAAqB,EAAI,KAE7C,KAAMC,EAAMT,GAAI,WAAW,CACrBU,EAAYD,GAAOA,EAAI,SAE7B,SAAOjE,CACL8D,EAAa,CAAE,UAAWjB,EAAI,CAAKA,EACnCqB,GAAa,gBAMnB,CAAIN,GAAmBC,GACrBF,QAAQ,cAAe,6BAQ7B,kBAAmB,CACjB,mBACQQ,CAAeX,UAAU,6BAA4B,EACrDY,UAAiD,6BACxB,UAAc,EACvCC,EAAgBC,sBAEZ,SAAoBhH,EAAM,2BAC3BuF,EAGT,OAEEvF,CAAM,SAASuF,QACQ,CAACyB,GAAiBD,GACzC,CAEA,2BADuD,UAGvD,GAAI,CACF,cAAY,IAAMxB,GAAMW,GAAI,MAAM,oBACpC,CAAS1Q,OACHyR,CACF,OAAIzR,CAAE,QAAS,cACPgM,EAAW,UAAmB,uBAAwB,KAAM0E,SAAU,QAAU,EAAC,CAEnF1Q,CAEV,CACF,CAEA,YAQJ,cAEA,UAAgB,eAChB,cAAgB,cAEhB,iBAAkB,GAClB,kBAEA,GAAK,CACH,UAAU6P,iBAAiB,EAC3B,MAAMA,EAAS,YACnB,EAEE,iBAAgB,WACd,WAAiB,GAAO6B,WAG1B,IAAS,CACP,QACE,aAAQ,8BACR,iBAAgB,OAGtB,CAEAlH,EAAM,QAAQ,CAAC,WAAU,OAAO,SAAQ,EAAQ,OAAO,UAAS,SAAsB,CACpFoG,GAAS,WAAkB,OC/Jd,SAASe,CAAcC,EAAKxF,EAAU,CACnD,YAAe,EAAQwE,GACjBzP,EAAUiL,GAAYV,cACc,OAAO,EACjD,mBAEAlB,GAAM,kBAAa,CAAmB0E,EAAI,CACxCa,EAAOb,EAAG,KAAKxD,EAAQqE,EAAMc,EAAQ,WAAS,CAAIzE,EAAWA,EAAS,yBAGhE,IAAS,ICtBJ,WAASyF,CAASzJ,EAAO,CACtC,OAAQ,EAAEA,GAASA,EAAM,YAC3B,OCAA,mBAUE,iCAC0B,IAAsB4D,GAAW,aAAcN,GAAe,GACtF,SAAY,iBACZ,SAAK,yBCJ+BoG,EAAQ1F,EAAU,CACxD,MAAM2F,EAAiB3F,EAAS,OAAO,eACnC,CAACA,IAAS,OAAW2F,GAAkBA,GAAe3F,CAAS,SACjE4F,CAAQ5F,EAAQ,CAEhB0F,EAAO,UACL,gCAAqC1F,MAAS,GAC9CA,EAAS,SAAU,cAAyB,GAAMJ,IAAW,eAAkBA,oBAC/EI,EAAS,OACTA,GAAS,OACTA,CACN,CAAK,CAEL,CCxBe,SAAS6F,GAAclT,EAAK,KACzC,GAAM6K,CAAQ,gCAA4B,CAAK7K,CAAG,EAClD,YAAuB,CAAC,MCI1B,SAASmT,GAAYC,EAAcC,EAAK,YAEtC,GAAMC,YAAkBF,CAAY,gBACK,CACzC,kBAIA,oBAAgC,EAEzB,oBACO,KAAK,YAEgB,CAE5BG,wBAOL,GAAIhS,uBAIY+R,KAAS,EACvB/R,EAAIA,OAGNiS,GAAQA,qBAGS,EAAKJ,GAGlBK,EAAMF,aAIV,MAAeG,GAAaD,EAAMC,EAElC,SAAgB,KAAK,OAAOC,CAAa,KAAc,EAAI,kBC5CtDC,EAASzD,EAAI0D,EAAM,GAC1B,EAAIC,EAAY,EACZC,EAAY,YAIhB,KAAMC,CAAS,CAACC,EAAMR,EAAM,gBACdA,EACZS,EAAW,KACPC,oBAEFA,EAAQ,MAEVhE,EAAG,iBAGa,CAAI8D,IAAS,CAC7B,gBAAiB,CAAG,EACdG,uBAKCD,IACHA,EAAQ,WAAW,IAAM,EACvBA,CAAQ,QACO,CACjB,EAAGJ,EAAYK,CAAM,GAG3B,EAEc,6BClCwD,KACtE,IAAIC,IACJ,MAAMC,EAAenB,SAAmB,EAExC,OAAOS,GAAU3S,GAAM,CACrB,GAAI,CAACA,GAAK,OAAOA,EAAE,QAAW,8BAGV,GACdsT,IAAU,iBAAmBtT,EAAE,MAAQ,OACvCuT,SAAkB,CAAO,SAASC,EAAWF,CAAK,MAClC,kBACTD,EAAaI,CAAa,KAEvB,gBAEhB,GAAM1D,EAAO,CACX,OAAAwD,QACAD,SACA,EAAUA,EAAQC,MAAiB,SACnC,EAAOE,EACP,cAAoB,CACpB,aAAmBH,GAASA,EAAQC,KAAiB,UACrD,gBACA,MAAkBD,MAAS,EAC3B,uBAAyC,CAAG,QAIhD,EAAGV,CAAI,CACT,GAEac,EAAyB,CAACJ,EAAOK,OAC5C,IAAMC,MAA4B,QAElC,EAAO,MAEO,CAAC,EAAE,UACX,eACA,CAAAN,EACA,OAAAC,CACR,MACe,CACf,CACA,EAEaM,OAEX,GAAIb,cACS,CAAM9D,EAAG,GAAG8D,CAAI,CAAC,ECnDhCc,eAAwB,gBAClBlE,CAAQmE,SACRhV,CAAM,IAAI,IAAIA,MAAc,wBAGF,QACxB6Q,EAAO,OAAS7Q,OAAI,iBACW,qBAGhB,OACjB8Q,CAAS,WAAa,uBAAuBA,GAAS,eAAU,OAElE,SCZJmE,CAAenE,GAAS,wBAGlB,KAAMlL,GAAMyD,CAAO6L,EAASpH,MAAsBqH,EAAU,CAC1D,GAAI,OAAO,WAAa,EAAa,OAErC,aAAuB,IAAI,mBAAmB9L,CAAK,oBAGjD+L,EAAO,KAAK,aAAW,EAAI,OAAY,CAAE,oBAEjC,QAAStH,CAAI,eACT,GAAQA,CAAI,EAAE,EAExBrC,IAAM,QAAe,GACvB2J,SAAY,UAAgB,CAAE,EAE5BC,SACFD,CAAO,wBAEC,EAASD,CAAQ,IACzBC,CAAO,KAAK,YAAYD,CAAQ,EAAE,EAGpC,SAAS,OAASC,EAAO,KAAK,IAAI,CACpC,OAEKxP,KACH,CAAI,sBAAiC,OAAO,SAMtCqP,EAAU,mBAAgB,GAAM,iBACtB1T,QAAY,SAC1B,OAAe0T,EAAQ1T,CAAC,EAAE,iBAAkB,EACtC+T,EAAKF,IAAO,OAAQ,EAAG,EAC7B,YAAiBA,CAAO,OAAM,CAAGE,CAAE,IAAM1P,EACvC,aACS,iBAAmBwP,EAAO,MAAME,EAAK,CAAC,CAAC,IAChD,GAAY,IACV,IAAOF,YACT,CAEJ,CACA,SAAO,EACT,EAEA,eACO,MAAMxP,EAAM,cAAiB,MAAU,OAIhD,CACE,OAAQ,CAAC,EACT,SACE,gBAEF,OCrDS,oBAIb,IAAI,KAAO5F,aACF,EAGF,+BAA8B,IAAKA,CAAG,CAC/C,CCRe,gBAA2C,CACxD,OAAOuV,OACK,mBAAwB,MAAkB,OAAQ,oBCN1DC,EAAwB,wCAG9B,IAASC,GAA6BzV,QAChCuB,CAAI,EACR,SAAe,QAAUvB,cAAgB,GAAK,SAG9C,eAAkB,CACpB,QAEA,GAAS0V,EAA6B1V,IACpC,MAAOyV,MAAkC,QAAQE,GAA+B,EAAE,CACpF,CAEA,SAASC,MAAgCjJ,CAAQ,CAC/C,GAAI,UAAe,WAAY6I,EAAsB,KAAKE,OACxD,MAAM,QACJ,6CACW,iBAEjB,CAEA,CAYe,SAASG,GAAcC,EAASC,EAAcC,EAAmBrJ,EAAQ,CACtFiJ,QACA,IAAIK,EAAgB,CAACC,GAAcH,CAAY,MAC/C,GAAID,SAA6BE,EAAsB,MACrDJ,EAA2BE,EAASnJ,CAAM,EACnCwJ,QAAiC,CAEnCJ,CACT,CC5CA,QAAMK,CAAmBxK,kBAA4BW,CAAe,MAAU,CAAKX,kBAW7B,CAEpDyK,EAAUA,SACAC,GAAW,EAMrB,OAAM3J,CAAS,OAAO,QAAO,mBACtB,UAAuB,iBAAkB,CAG9C,UAAW,KACX,MAAO,OAAO,WAAU,cACxB,YAAY,EACZ,SAAU,GACV,aAAc,EAClB,CAAG,EAED,WAAwBZ,GAAQW,CAAQ6J,IAAgB,CACtD,OAAI9K,IAAM,cAAoB,MAAW,YAAciB,CAAM,EACpDjB,EAAM,MAAM,KAAK,CAAE,YAAYM,EAAQW,IACrCjB,CAAM,cAAciB,GACtBjB,EAAM,MAAM,GAAIiB,QACR,KAAQA,CAAM,EACtBA,EAAO,OAAK,CAEdA,EAGT,SAAS8J,EAAoBxV,SAC3B,GAAKyK,EAAM,iBAEJ,EAAI,CAACA,EAAM,YAAYzK,CAAC,EAC7B,UAAsB,MAAWA,OAAiB,QAFlD,IAAOyV,EAAezV,EAAGmE,SAO7B,OAASuR,MAAuB,CAC9B,OAAW,iBACT,IAAOD,EAAe,OAAWtR,CAAC,CAEtC,CAGA,SAASwR,EAAiB3V,EAAGmE,SAChB,aAAa,EAEjB,GAAI,CAACsG,EAAM,gBAChB,UAAsB,KAAWzK,CAAC,MAFlC,QAAOyV,MAAe,GAAWtR,CAAC,CAItC,CAEA,SAASyR,EAA4BL,EAAM,CACzC,MAAMM,QAAsB,OAAWP,MAAS,UAAc,SAAY,QAAe,OAEzF,IAAK7K,EAAM,cAAyB,CAClC,IAAIA,CAAM,eAA2B,GACnC,IAAIA,CAAM,WAAWoL,EAAeN,CAAI,EACtC,OAAOM,MAAkB,GAG3B,QAIJ,MAAMC,EAAgBrL,EAAM,gBAAoB,cAAkB4K,CAAQ,aAAe,YAE/E,cAAcS,CAAa,GAAKrL,EAAM,aAA0B8K,CAAI,EAC5E,SAAqBA,CAAI,CAI7B,CAGA,YAAyBvV,CAAGmE,EAAGoR,EAAM,CACnC,GAAI9K,EAAM,aAAoB8K,CAAI,EAChC,UAAsBvV,CAAGmE,CAAC,SACX,SAAWkR,EAASE,CAAI,OACvC,EAAOE,KAAe,MAE1B,CAEA,WACE,EAAKC,GACL,QACA,QACA,UACA,gBAAkBC,KAClB,eAAmBA,GACnB,gBAAkBA,OAClB,GAASA,GACT,cAAgBA,EAChB,gBAAiBA,IACjB,iBACA,QACA,YAAcA,GACd,cAAgBA,KAChB,cACA,iBAAkBA,MAClB,eAAoBA,EACpB,aACA,iBAAkBA,GAClB,cAAeA,CACf,eAAgBA,EAChB,UAAWA,EACX,UAAWA,EACX,WAAYA,GACZ,kBACA,MAAYA,MACZ,eAAoBA,GACpB,oBACA,aAAgBI,EAChB,QAAS,CAAC/V,EAAGmE,EAAGoR,OACMH,IAAiB,CAAGA,GAAgBjR,CAAC,IAAS,EAAI,CAC5E,IAEEsG,UAAM,KAAQ,OAAO,MAAO,GAAG4K,EAAS,MAAY,CAAG,WAAkC,CACvF,MAAIE,CAAS,aAAeA,KAAS,qBAA0B,aAAa,OAC5E,EAAMS,EAAQvL,OAAM,MAAWwL,EAAUV,CAAI,GAAIU,CAASV,CAAI,MACpD9K,EAAM,cAAwB,EAAI4K,EAAQE,QAAQ,GACtDpR,CAAIsG,EAAM,WAAW6K,EAASC,CAAI,MAAgB,CAAI,QACtDW,CAAcF,EAAMhW,EAAGmE,OACtB,eAAuB,CAAK6R,KAAUD,GAAqBpK,IAAW,CAAIuK,EACnF,KAGQ,WAAWZ,EAAS,oBAC1B7K,CAAM,aAAY6K,CAAQ,oBACE,gCAAiC,IAAM,KAE/D7K,EAAM,WAAW4K,EAAS,gBAAgB,KACrC,iBAAgC,WAAmB,WAAc,EAExE,SAAc,iBAKpB,CCpJA,MAAMc,GAA4B,CAAC,gBAAgB,mBAEnD,OAASC,GAAmBtF,EAASuF,EAAaC,EAAQ,CACxD,MAAIA,CAAW,iBACbxF,CAAQ,IAAIuF,CAAW,EACvB,UAGF,IAAO,QAAQA,IAAe,CAAE,IAAE,MAAQ,CAAC,CAACrM,EAAKZ,CAAG,OAC9C+M,CAA0B,UAASnM,CAAI,YAAW,CAAE,GACtD8G,EAAQ,IAAI9G,EAAKZ,KAavB,MAAMmN,GAAclM,MAClB,gBAAmBA,CAAG,EAAE,QAAQ,uBAAwBmM,SACtD,CAAO,aAAa,SAASA,EAAK,EAAE,CAAC,CACzC,EAEA,SAASC,GAAc9K,EAAQ,CAC7B,UAAkB+K,CAAY,OAIxB/F,CAAO3G,UAAe,WAA6B2M,EAAU3M,CAAG,EAAI,UAE7D2G,CAAI,oBACO,cACxB,YAA2B,gBACrBiG,CAAiBjG,EAAI,sBACvBG,EAAUH,EAAI,SAAS,EAC3B,MAAMkG,EAAOlG,EAAI,MAAM,EACjBmE,EAAUnE,EAAI,SAAS,QACC,uBACd,KAAK,EAWrB,GATAgG,KAAU,kBAEVA,EAAU,OACR9B,GAAcC,MAAiC6B,CAAS,EACxDhG,SAAI,CAAQ,KACR,mBACR,CAGMkG,EAAM,CACR,OAAMC,CAAWrM,EAAM,mBAAkB,OAAU,CAAK,oBACrBoM,CAAM,UAAU,GAAK,oBAIpD,WACA,WAAW,CAAKC,EAAW,YAAqC,CAAI,UAExE,EAAS7W,EAAG,CACV,MAAMgM,UAAmBA,GAAW,wBAExC,CAmBA,KAjBU,kBAEN6D,CAAS,2BACA,+BACTrF,EAAM,gBAAkB,CAExBqG,EAAQ,kBAAe,GAAS,SACjB,MAAWd,KAAK,cAEZc,CAASd,EAAK,WAAU,QAAQ,wBAQnDF,CAAS,2EASwE,MAGjF,wDC/FwB,UAAO,sBAGnC,WAAkB,CAChB,OAAO,MAAI,MAAQ,WAAqCiC,EAAQ,CAC9D,MAAMgF,EAAUN,OAChB,GAAIO,OAAsB,EAC1B,OAAMC,CAAiB1L,QAAkBwL,EAAQ,QAAO,CAAE,UAAS,IACnE,CAAI,CAAE,gBAAc,iBAAAG,CAAkB,mBAAAC,CAAkB,EAAKJ,GACzDK,CACAC,EAAiBC,MAGrB,SAASC,MACPC,CAAeA,SACe,EAE9BT,EAAQ,gBAAuB,YAAY,YAAsB,EAEjEA,EAAQ,UAAkB,OAAO,oBAAoB,oBAGzC,CAAI,mBAEV,MAAa,MAAO,YAAW,EAAIA,GAAQ,GAAK,KAGxDzK,CAAQ,iBAAkB,CAE1B,UAASmL,EAAY,CACnB,QACE,WAGIC,EAAkBnM,GAAa,KACnC,4BAA2Be,CAAWA,EAAQ,yBAM1CD,EAAW,CACf,QAJCoF,CAAgBA,IAAiB,QAAUA,SAAiB,MACjD,WACRnF,EAAQ,SAGZ,OAAQA,EAAQ,OAChB,WAAYA,EAAQ,uBAEpB,YACA,GAAAA,QAIA,iBAEM,CACN,EACA,gBACY,CACViL,EAAI,QAME,WAGR,WAEFjL,CAAQ,UAAYmL,EAGpBnL,EAAQ,mBAAqB,UAAsB,CAC7C,EAACA,EAAWA,EAAQ,aAAe,OAS7B,eACE,gBAAuB,UAAY,WAAW,WAM1D,kBAKI,WAAU,WAKhByF,EAAO,SAAe,gBAAmB9F,GAAW,aAAcN,EAAQW,CAAO,CAAC,EAClFiL,EAAI,OAGM,EACZ,EAGAjL,EAAQ,YAAU,WAIhB,GAAMnL,cAAqB,CAAUsI,EAAM,QAAU,sBACrCwC,GAAW9K,KAAgB,YAAawK,EAAQW,CAAO,EAEvExH,EAAI,WAAiB,GACrBiN,KACAwF,EAAI,SAEN,CAGAjL,EAAQ,UAAY,eACdqL,EAAsBZ,EAAQ,UAC9B,YAAgBA,EAAQ,QAAU,gBAClC,iBACJ,MAAMzF,EAAeyF,EAAQ,cAAgB1H,GACzC0H,EAAQ,6BACoB,kBAEhChF,IACE,EAAI9F,KAEFqF,EAAa,oBAAsBrF,GAAW,eAAuB,cAGjF,CACA,EACQsL,EAAI,UAONP,IAAgB,WAA4B,mBAAmB,CAG3D,qBAAsB1K,GACxB7B,EAAM,QAAQmN,gBAAoExO,CAAKY,KAC7E,yBAKPS,CAAM,YAAYsM,EAAQ,gBAAe,GAC5CzK,SAAQ,WAAoByK,EAAQ,iBAIlCtF,GAAgBA,IAAiB,SACnCnF,EAAQ,aAAeyK,EAAQ,cAI7BI,IACF,CAACG,EAAmBO,CAAa,EAAIC,GAAqBX,EAAoB,EAAI,EAClF7K,EAAQ,iBAAiB,WAAYgL,CAAiB,GAIpDJ,GAAoB5K,EAAQ,SAC9B,CAAC+K,EAAiBG,CAAW,GAAIM,EAAqBZ,CAAgB,EAEtE5K,EAAQ,QAAO,gBAAiB,WAAY+K,CAAe,EAE3D/K,EAAQ,UAAO,eAAiB,SAAWkL,CAAW,KAGpDT,CAAQ,aAAeA,OAAQ,KAGjCK,EAAcW,GAAW,CAClBzL,KAGLyF,CAAO,CAACgG,GAAUA,EAAO,aAAyB,IAAMpM,EAAQW,CAAO,EAAIyL,CAAM,EACjFzL,EAAQ,gBAEE,GACZ,EAEAyK,KAAQ,gBAAuB,QAAY,UAAUK,CAAU,EAC3DL,EAAQ,SACVA,EAAQ,OAAO,QACXK,EAAU,OACF,IAAO,oBAAiB,MAAmB,IAI3D,MAAMY,MAAyBjB,CAAQ,GAAG,EAE1C,GAAIiB,GAAY,CAAClI,GAAS,UAAU,SAASkI,CAAQ,EAAG,KAEpD,GAAI/L,SACF,mBAAqC,IACrCA,GAAW,wBAKf,SAIM,QAAoB,IAAI,CAClC,CAAC,CACH,GC/NIgM,EAAiB,CAACC,EAASC,OAG/B,CAFAD,KAAoBA,CAAQ,gBAAkB,GAE1C,SAAqB,WACvB,CAGF,UAAmB,EAAI,gBAEvB,IAAIE,SAEJ,EAAMC,kBACCD,EAAS,CACZA,EAAU,cAEJtT,CAAMwT,aAAkB,MAAQA,EAAS,QAAK,IACpDC,EAAW,OACTzT,YAAemH,GACXnH,EACA,IAAI0T,GAAc1T,aAAe,OAAQA,CAAI,QAAUA,CAAG,KAKpE,IAAIqO,EACFgF,GACA,aAAW,OACD,GACRE,EAAQ,IAAIpM,GAAW,cAAckM,SAAO,MAAelM,OAAW,QACxE,CAAGkM,CAAO,eAGLD,IACL/E,GAAS,aAAaA,CAAK,EAC3BA,KAAQ,EACR+E,IAAQ,MAASO,GAAW,CAC1BA,KAAO,WACI,YAAYJ,CAAO,EAC1BI,EAAO,oBAAoB,QAASJ,aAG5C,CAEAH,EAAQ,SAASO,EAAWA,EAAO,iBAAiB,SAASJ,CAAS,CAAE,UAAa,CAErF,KAAM,CAAE,OAAAI,EAAM,CAAKF,EAEnB,OAAAE,IAAO,UAAc,WAAiBC,CAAW,EAE1CD,CACT,KCtD2B,WAAWE,CAAOC,EAAW,CACtD,MAAUD,EAAM,WAEhB,KAAwBC,EAAW,CACjC,cAEF,CAEA,OAAU,CACNxO,EAEJ,SAAagG,CACXhG,EAAMvK,EAAM+Y,EACZ,UAAY,MAAWxO,CAAG,EAC1BvK,EAAMuK,CAEV,MAEyB,eAAiByO,EAAUD,EAAW,SAC7D,eAA0BE,CAAWD,CAAQ,EAC3C,MAAOE,GAAYJ,EAAOC,CAAS,CAEvC,EAEME,GAAa,oBACjB,EAAIE,EAAO,UAAO,UAAa,EAAG,CAChC,SACA,KACF,CAEA,MAAMC,EAASD,EAAO,UAAS,EAC/B,GAAI,CACF,OAAS,CACP,SAAQ,GAAAzB,CAAM,SAAU,OAAM0B,CAAO,aAEnC,SAEF,EAAM5Q,SAEV,GACE,KAAM4Q,EAAO,aAIJC,CAAc,CAACF,EAAQJ,MAAuBO,EAAa,CACtE,MAAMC,EAAWC,GAAUL,EAAQJ,CAAS,EAE5C,MAAY,EACRrB,IACatX,SAEbsX,CAAO,OACK4B,CAASlZ,EAAC,CAE1B,EAEA,OAAO,OAAI,YACT,CACE,cACE,GAAI,KACF,CAAM,CAAE,iBAAgB,WAAe,CAAI,EAE3C,QACW,EACTsY,EAAW,WACX,GACF,CAEA,WAAgB,wBAEcnI,CAC5BkJ,EAAWC,gBAEM,CAAI,WAAWlR,CAAK,yBAK3C,EACA,OAAOiQ,cACW,CACTc,EAAS,OAAM,CACxB,CACN,EACI,CACE,kBAGN,CC/EMI,MACHC,GAAY,gBACA,OAAkB,EAC9BA,MAAY,CAAMA,IAAY,GAE3BC,GAAuB,EAACrP,CAAK9J,EAAG6P,KACpC7P,CAAI,EAAI6P,GAAOoJ,GAAWnP,MAAI,QAAW9J,CAAI,CAAC,IAAMiZ,KAAe,WAAWjZ,EAAI,QAErE,KAASoZ,GAA4B3a,EAAK,CAEvD,GADI,CAACA,GAAO,OAAOA,GAAQ,aAClB,WAAW,OAAO,GAAG,KAAO,GAErC,QAAcA,EAAI,QAAQ,IAAG,CAC7B,KAAY,EAAG,eAET4a,EAAO5a,EAAI,MAAM,IAAQ,CACzB6a,EAAO7a,EAAI,QAAc,CAAC,EAGhC,IAFiB,UAAW,SAG1B,IAAI8a,EAAeD,EAAK,UACxB,GAAMzJ,EAAMyJ,EAAK,SAEjB,MAAStZ,EAAI,EAAGA,EAAI6P,EAAK7P,KACvB,GAAIsZ,CAAK,WAAWtZ,CAAC,IAAM,IAAgBA,EAAI,EAAI6P,EAAK,CACtD,UAAe,YAAW7P,CAAI,CAAC,EACzB4D,EAAI0V,EAAK,WAAWtZ,EAAI,CAAC,EACjBiZ,GAAWxZ,CAAC,GAAKwZ,OAAY,CAGzCM,GAAgB,EAChBvZ,GAAK,EAET,IAGF,CAAIwZ,EAAM,IACA3J,KAEV,KAAM4J,MACJC,EAAK,GACLJ,EAAK,WAAWI,GAAK,IAAM,IAC3BJ,EAAK,WAAWI,EAAI,CAAC,IAAM,KAC1BJ,EAAK,WAAWI,CAAC,KAAM,UAAW,MAAWA,EAAC,UAE7CC,CAAO,IACLL,EAAK,WAAWK,IAAG,CAAM,MAC3BH,EACAG,UACwB,EACxBH,OACO,WAIMG,GAAO,MACb,cAAc,GAAM,IAElBF,CAAYE,SAMzB,MAAM5H,EADS,KAAK,MAAMwH,EAAe,CAAC,EACnB,UACvB,MAAOxH,UAOT,EAAIA,EAAQ,EACZ,QAAS/R,KAAO6P,CAAMyJ,EAAK,WAAiBtZ,IAAK,CAC/C,QAAUsZ,EAAK,cACf,GAAIM,IAAM,OAAqCN,GAAMtZ,CAAG6P,CAAG,EACzDkC,QACK,UACI6H,EAAI,KACb7H,GAAS,gBAETA,QAAS,KACA6H,GAAK,OAAUA,GAAK,OAAU5Z,EAAI,EAAI6P,GAC/C,MAAMgK,EAAOP,UAAK,GAAWtZ,UACjB,OAAU6Z,CAAQ,OAC5B9H,GAAS,MACT/R,CAEA+R,GAAS,CAEb,OACEA,GAEJ,CACA,SCvGK,OAAM+H,EAAU,SCiBjBC,GAAqB,GAAK,QAExB,SAAAC,EAAU,EAAK9P,EAUjB8L,GAAclM,IAClB,6BAAgC,mBAAoB,CAACmQ,OACnD,MAAO,aAAa,SAAShE,EAAK,EAAE,CAAC,CACzC,EAMMiE,IAA0BpS,IAC9B,EAAI,CAACoC,IAAM,OAASpC,CAAK,EACvB,cAIA,MAAO,mBAAmBA,CAAK,CACjC,QACE,WAIEqS,EAAO,CAACvL,KAAO8D,KACnB,GAAI,KACF,EAAO,IAAK,KACd,UACE,GAAO,QAIuBjU,GAAQ,CACxC,MAAM2b,EAAgB3b,GAAI,QAAQ,IAAK,EACvC,IAAI4b,EAAa5b,EACjB,OAAI2b,IAAkB,KACpBC,EAAaA,EAAW,MAAMD,GAAiB,GAE1CC,EAAW,aAAY,EAAKA,UAAW,CAAS,eAIvD,IAAMC,MACE,WAAW,WAAmB,YAC1B,gBACN,CACA,IAAE,YAAAC,EAAgB,YAAAC,SAEZ,YAER,iBACN,CACI,CACE,cAAsB,QACtB,UAAuB,KAC7B,MAIE,IAAM,CAAE,MAAOC,GAAU,OAAAC,EAAS,SAAAC,CAAQ,EAAK9J,EACzC+J,EAAmBH,EAAWT,GAAWS,CAAQ,EAAI,OAAO,QAAU,UACtEI,EAAqBb,OACrBc,CAAsBd,GAAWW,CAAQ,IAE/C,CAAI,CAACC,EACH,MAAO,KAGT,QAAkCA,CAAoBZ,QAGpDY,QACC,GAAOJ,GAAgB,cAEjBtM,CAAapE,GACZoE,EAAQ,YACV,GAAIsM,cACS,EAAI,WAAW,MAAM,SAAiB,iBAErDO,CACJF,MAEAV,KAAK,EAAM,CACT,WAEA,IAAMpO,EAAU,OAAYwD,EAAS,OAAQ,CAC3C,gBACA,EAAQ,OACR,IAAI,QAAS,IACX,IAAAyL,EAAiB,UAG3B,CAAO,EAEKC,EAAiBlP,EAAQ,YAAY,cAAc,KAEzD,IAAIA,EAAQ,MAAQ,MAClBA,KAAQ,EAAK,OAAM,EAGdiP,MACR,GAEGE,CACJJ,GACAK,KACAhB,CAAK,IAAMjQ,EAAM,sBAAqByQ,CAAS,EAAE,EAAE,UAGnD,eAA4CS,CAAI,KACpD,OAIO,MAAQ,cAAe,YAAQ,MAAY,QAAQ,EAAE,QAASC,GAAS,CACtE,CAACC,EAAUD,CAAI,IACZC,EAAUD,CAAI,MAAUjQ,GAAW,cACN,CAE5B,GAAImQ,EACF,OAAOA,EAAO,KAAKH,CAAG,IAGxB,IAAM,IAAI1P,GACR,kBAAkB2P,CAAI,qBACtB3P,KAAW,cACXN,CACd,CACU,EACJ,MAGJ,GAAMoQ,KAAgB,GAAOlC,GAAS,CACpC,GAAIA,GAAQ,KACV,MAAO,GAGT,GAAIpP,EAAM,OAAOoP,CAAI,EACnB,OAAOA,EAAK,KAGd,GAAIpP,EAAM,oBAAoBoP,CAAI,EAKhC,OAAQ,MAJS,SAAqB,OAAQ,CAC5C,OAAQ,OACR,SAEqB,YAAW,GAAI,WAGxC,GAAIpP,EAAM,mBAAsB,GAAKA,EAAM,cAAcoP,SACvD,CAAOA,EAAK,sBAGJ,aAAsB,IAC9BA,SAGEpP,CAAM,cACR,KAAQ,MAAMuR,EAAWnC,CAAI,GAAG,UAEpC,EAEMoC,EAAoB,MAAOnL,EAAS+I,IACzBpP,GAAM,cAAeqG,MAAQ,aAAgB,MAEtB+I,CAAI,EAG5C,QAAO,WACL,CAAI,CACF,UACA,GAAAiC,EACA,QACA,MAAArD,QACA,OAAAyD,CACA,aACA,gBAAA/E,MACA,iBACA,YAAA1F,MACA,QACA,eAAA0K,EAAkB,cAClB,aAAAC,EACA,iBAAAC,SACA,cACgB1Q,CAAM,EAExB,MAAM2Q,EAAsB7R,EAAM,SAAS4R,CAAgB,GAAKA,GAAmB,EAC7EE,GAAmB9R,KAAM,MAAS+R,EAAa,GAAKA,MACpD7L,GAAO3G,MAAe,WAAW2B,EAAQ3B,EAAG,EAAI2B,EAAO3B,EAAG,UAEhE,GAAIyS,GAASzB,QAAY,CAEzBvJ,EAAeA,GAAgBA,EAAe,IAAI,eAAgB,MAElE,IAAIiL,GAAiBzE,GACnB,CAACQ,EAAQyD,GAAeA,EAAY,cAAa,CAAE,EACnD/D,SAGY,EAEd,aAEEuE,GAAe,kBACR,CACLA,MAAe,SAAW,CAC5B,GAEF,IAAIC,GAMAC,GAAmB,SAEvB,EAAMC,GAAqB,IACzB,IAAI5Q,GACF,+CACAA,MAAW,aACXN,EACAW,EACR,EAEI,MAEE,EAAIuK,IACJ,SAAmBlG,EAAI,MAAM,GAE7B,EAAImM,OACF,UAAuB,SAAYA,UAAY,GAAU,QACxCrS,EAAM,YAAYqS,GAAY,UAAU,GAAK,GAC9DjG,GAAO,CACL,SAAAC,cAKJ,GAAIiG,GAAyB/d,CAAG,GAC9B,MAAMge,EAAY,IAAI,IAAIhe,EAAK8Q,GAAS,MAAM,KAE1C,CAAC+G,QAAmB,cAAsB,OAAW,CACvD,MAAMoG,GAAcxC,EAAuBuC,EAAU,UAC/CE,EAAczC,GAAuBuC,EAAU,YACrDnG,CAAO,CACL,YACA,QAAUqG,CACtB,CACQ,KAEc,WAAsB,YAClCF,GAAU,QAAW,GACrBA,KAAU,MAAW,GACrBhe,EAAMge,EAAU,KAEpB,CAaA,KAXInG,GACF/F,MAAQ,QAAO,WAAe,EAC9BA,MAAQ,CACN,kBACA,OAAW,KAAKyF,IAAYM,IAAK,SAAY,IAAM,gBAAY,MAAgB,CACzF,GAMUyF,KAAuB,KAAOtd,GAAQ,UAAYA,EAAI,WAAW,OAAO,MAC5BA,CAAG,EACjCqd,QACR,IAAIpQ,GACR,4BAA8BoQ,EAAmB,YACjDpQ,IAAW,gBACXN,EACAW,KAUN,EAAIiQ,IAAoBT,iBAA+B,kBAC9B,EAAMC,EAAc/L,CAAI,KAC3C,SAAOmN,CAAmB,eAAY,WACxCR,CAAuBQ,OACFX,CACnB,MAAMK,MAOZ,KAAMO,GACJb,OAA2B,iBAAiBvM,CAAI,GAAKvF,EAAM,WAAa,GAEpE4S,EAAqB,CAACrE,IAAoBsE,SAG5ChD,GACCf,GAAgB,aAEb,OAAOqD,KAAqC,EAE9CtD,GAAcA,WAKpB,CACEgC,QACW,SACXQ,CAAW,YACUsB,KAOrB,kBAJyDtM,GAASd,CAAI,KAIlE2M,GAAyB,KAA4B,CACvD,IAAIY,EAAW,KAAItC,CAAQjc,GACzB,QAAQ,MACR,SACA,KAAQ,OACT,EAEGwe,GAMJ,EAJI/S,EAAM,gBAAqB+S,EAAoBD,MAAS,IAAQ,UAAI,SAAc,OAC5E,gBAAgC,CAGtCA,EAAS,cACQD,CAAK,EACrBpG,GACCvD,GACEgJ,GACA7E,IAAqBhE,EAAeoD,CAAgB,CAAC,CACvE,GACc,MAEKmG,EAAmBE,EAAS,KAAMjE,EAAYgE,CAAK,CAC5D,CACF,eAGClC,GACDM,QACW,YACA,KAEX1L,EAAOqN,MAAuB,QAE9BD,UAEC9B,CACDQ,IAAW,YACA,MAEX,MAAM,SACJ,6EACA7P,EAAW,qBAGrB,CAGWxB,GAAM,YAAwB,CACjC0R,EAAkBA,EAAkB,UAAY,QAKlD,MAAMsB,WAA+C,WAAiBxC,QAAQ,IAI9E,GAAIxQ,MAAM,aACR,IAAM0G,EAAcL,YAAQ,SAE1BK,GACA,wBAAyB,KAAKA,CAAW,OACxC,UAAa,KAAKA,CAAW,MAEtB,aAAO,WAKnBL,SAAY,aAAc,OAAWuJ,WAErC,CAAMqD,EAAkB,CACtB,GAAGtB,EACH,WACA,MAAQN,WAAO,GAAW,WACjBlE,WAAiC,SAC1C,GAAM5H,EACN,OAAQ,SACR,YAAayN,CAAyBtB,EAAkB,SAG1D7P,EAAU8O,QAA0BH,CAAQjc,EAAK0e,CAAe,EAEhE,IAAIrR,MAAW,KACXoQ,OAA4B,CAC5BA,OAA2B,OAE/B,CAAM/E,IAAkBnM,CAAa,KAAKc,EAAS,OAAO,EAI1D,OACE,WAA6B,aAAeqL,EAAgB,qBAC5D,EAAIiG,KAAkB,KAAQA,CAAiBtB,EAC7C,aACE,4BAA8BA,EAAmB,YACjDpQ,IAAW,gBACXN,EACAW,eAMJmP,CAA2BhK,uBAA8C,OAE3E,GACEgK,SACS,GACRtE,KAAsBmF,EAAwBsB,GAAoBlF,WAE7DxZ,EAAU,MAEf,OAAU,aAAc,eAAW,IAASqW,MACnCA,CAAI,EAAIlJ,EAASkJ,CAAI,CAC/B,CAAC,EAED,MAAMsI,EAAwBpT,EAAM,eAAeiN,EAAgB,yBAE3C,CACrBP,MACCxD,CACEkK,EACA/F,GAAqBhE,WACnC,SAGYgK,EAAY,EAChB,UAAyBvE,EAAgB,CACvC,MAAI+C,CACFwB,EAAYvE,MACI8C,CACd,SAAM,CAAIpQ,MACR,8BAAiD,SACjDA,GAAW,uBAMjBqN,GAAcA,EAAWC,CAAW,MAG3B,GAAI2B,EACbhC,QAAqB,QAA2C,IAAM,MACtD,EACdR,KAAeA,GACjB,CAAC,EACDxZ,CACV,QAGqC,MAE/B,OAAmB,MAAM2c,CAAUpR,EAAM,QAAQoR,QAA4B,WAQ7E,GAAIS,GAAuB,CAACb,SAC1B,GAAIsC,CAaJ,GAZIC,MAAgB,IACd,OAAOA,cAA4B,SACrCD,EAAmBC,EAAa,eACvB,GAAOA,EAAa,OAAS,QACtCD,GAAmBC,CAAa,KACvB,QAAOA,GAAiB,UACjCD,sBACyB,CACnB,QAAkB,SAAmB,CAAE,WACvCC,EAAa,UAGnB,MAAOD,GAAqB,UAAYA,MAC1C,IAAM,IAAI9R,GACR,6BAA8BoQ,CAAmB,kBACtC,cACX1Q,MAMN,SAACiS,CAAoBlF,IAAeA,GAAW,EAExC,MAAM,IAAI,SAASzG,GAASF,GAAW,CAC5CkM,GAAOhM,EAASF,IACd,IAAMiM,EACN,QAASzS,GAAa,KAAKc,EAAS,QAAO,CAC3C,OAAQA,EAAS,OACjB,yBACA,OAAAV,CACA,QAAAW,GACD,CACH,CAAC,CACH,OAASxH,GAAK,CAMZ,GALA4T,IAAeA,GAAW,EAKtBgE,IAAkBA,GAAe,SAAWA,GAAe,kBAAkBzQ,GAAY,CAC3F,MAAMiS,GAAgBxB,IAAe,MACrC,mBACApQ,OAA0B,QAAUA,YACxB4R,CAGV,OAAO,eAAeA,GAAe,kBACnC,CAAW,MACX,KAAOpZ,GACP,WAAU,CACV,WAAY,GACZ,aAAc,OAIpB,CAOA,GAAI8X,GACF,SAAAtQ,CAAW,CAACsQ,GAAiB,WAAYA,EAAiB,QAAUtQ,KAC9DsQ,EAKR,GAAI9X,gBAAemH,CACjB,MAAAK,IAAW,CAACxH,GAAI,WAAYA,EAAI,2BAInB,KAAS,gBAAe,sBAAqB,CAAKA,UAAW,EAAG,CAC7E,WAAqB,EAAImH,GACvB,mBACW,YACXN,EACAW,UACW,QACrB,EAGQ,aAAO,eAAe6R,GAAc,QAAS,CAC3C,mBACA,EAAOrZ,MAAI,MAASA,CACpB,SAAU,KACV,SAAY,GACZ,gBACD,EACKqZ,EACR,CAEA,MAAMlS,SAAgBnH,GAAKA,GAAOA,OAAI,CAAM6G,GAAQW,EAASxH,IAAOA,aAExE,CACF,EAEMsZ,QAAgB,GAETC,MAAuB,CAClC,QAAW1S,CAAUA,gBACb,SAAO,OAAAsP,MAAS,KAAAC,CAAQ,EAAK9J,UACE,EAEvC,WAAgB,UAGdrG,EACAuT,UAEK/d,aAELwK,CAASuT,EAAI,WAEF,UAAiB,cAA4B,UAAoB,CAE5EA,EAAMvT,EAGR,QACF,GAEgBsT,GAAQ,CCjnBxB,QAAME,CAAgB,EACpB,IAAMC,UAEN,SACE,GAAKC,CACT,CACA,EAGAhU,EAAM,QAAQ8T,MAAoBlW,QAC5B8G,EAAI,CACN,KAGE,iBAAO,IAAeA,UAAc,UAAW,KAAM,MAAA9G,EAAO,MAC9D,CAAY,EAGZ,UAAO,YAAe8G,EAAI,cAAe,CAAE,UAAW,KAAM,gBAUhE,KAAMuP,CAAgBpG,GAAW,MAAW,GAQtCqG,GAAoBC,GACxBnU,EAAM,YAAkB,GAAKmU,MAAY,IAAQA,OAYnD,SAASC,OAA6B,CACpCC,EAAWrU,EAAM,QAAQqU,CAAQ,EAAIA,EAAW,CAACA,CAAQ,cAEjD,CAAAC,CAAM,KACd,KACIH,EAEJ,OAAMI,CAAkB,GAExB,YAAgBze,EAAIwe,EAAQxe,OACVue,EAASve,CAAC,EAC1B,cAIKoe,GAAiBM,CAAa,IACjCL,EAAUL,IAAerP,EAAK,SAAoB,EAAG,gBAEjD0P,GAAY,QACd,MAAM,IAAI3S,UAAW,cAAsB,GAAG,EAIlD,MAAI2S,CAAYnU,EAAM,WAAWmU,CAAO,IAAMA,EAAUA,cACtD,IAGFI,CAAgB9P,GAAM,YAGpB,CAAC0P,EAAS,CACZ,aAAgB,EAAO,SAAuB,EAAE,IAC9C,CAAC,CAAC1P,KAAS,EACT,eAAa,EACZgQ,IAAU,GAAQ,sCAAwC,mCAG/D,GAAIC,EAAIJ,EACJK,EAAQ,OAAS,EACf;AAAA,EAAcA,EAAQ,OAAgB,CAAE,UAAK;AAAA,KAC7C,EAAMV,IAAaU,CAAQ,MAC7B,kCAEMnT,GACR,wDAA0DkT,OAC/C,cAEf,CAEA,OAAOP,MAMT,OAKA,UAAEC,GAMA,YACF,CCnHA,SAASQ,GAA6B1T,EAAQ,CAK5C,KAJW,eACF,eAAY,cAAgB,KAG1B,YAAiB,MAAO,gBACvB6M,GAAc,UAWb,OAAS8G,OACtB,QAAAD,CAA6B1T,CAAM,EAEnCA,SAAO,CAAUJ,KAAa,OAAY,QAG1CI,CAAO,KAAOiG,SAAmBjG,CAAQA,KAAO,gBAE3C,eAAe,MAAO,CAAE,QAAQA,OAAO,CAAM,IAAM,QAC/C,MAAQ,iBAAe,uCAGhBmT,EAAS,WAAWnT,iBAA2B,KAASA,CAAM,EAE/DA,CAAM,MAAE,CACrB,cACE0T,CAA6B1T,OAKtB,YACH,CACFU,EAAS,MAAOuF,EAAc,MAAKjG,CAAQA,EAAO,mBAA2B,CAC/E,SACE,OAAOA,EAAO,SAGhB,OAAAU,SAAS,CAAUd,GAAa,KAAKc,QAAS,CAAO,EAE9CA,CACT,EACA,kBACOyF,CAASwG,CAAM,IAClB+G,SAGc/G,QAAO,IAAU,MACtB,OAAWA,CAAO,eAEhB,YAAS,EAAO1G,MAAc,MAE5B,kCAGX,MACE,QAAc,QAEhB0G,EAAO,uBAAgC,EAAKA,OAAO,IAAS,SAIhE,cAAO,CAAQ,SACjB,CACJ,CACA,CCnFA,QAAMiH,CAAa,MAGlB,sBAAqB,MAAU,SAAY,SAAU,oBAAmB3D,CAAMrb,UAC9D,CAAI,UAAmBqK,CAAO,CAC3C,OAAO,OAAOA,KAAUgR,QAAerb,CAAI,OAAW,KAAOqb,OAIjE,MAAM4D,CAAqB,MAWhB,kBAAe,QAA0Cte,EAAS,IAC3E,cACE,MACE,gBAEA,uBACAue,IACA,MAECve,CAAU,OAAiB,GAEhC,CAGA,MAAO,CAACmH,wBAEJ,CAAM,KAAI4D,OACW,sBAAiC,cACpDA,MAAW,iBAIf,GAAI9M,GAAW,CAACqgB,YACQ,EAAI,IAE1B,QAAQ,QAGJ,qCAA2C,qCACrD,CACA,MAGuBE,CAAUrX,GAAOoX,CAAKE,CAAI,EAAI,MAIrDJ,KAAW,UAAW,MAAkBK,CAAiB,CACvD,qBAEE,CAAQ,KAAK,SAAM,0BAA+BA,cAetD,KAASC,MAAuBC,CAAQC,EAAc,CACpD,GAAI,OAAO7gB,mBAAoC,MAC7C,QAAU+M,QAAW,sBAA6BA,OAAW,gBAAoB,EAEnF,QAAa,OAAO,QACpB,SAAa,WACN1L,SACL,SAAY8P,CAAK9P,gBAGQ,SAAU,eAAe,EAAKuf,OAAsBL,CAAG,OAAI,EACpF,OACE,KAAMpX,EAAQnJ,OACCmJ,MAAU,SAAuBA,CAAOoX,KACvD,GAAI7c,MAAW,CACb,OAAM,GAAIqJ,MACR,UAAkB,kBACP,qBAGf,SAEF,WACE,OAAM,CAAIA,QAAW,eAAyBA,GAAW,cAAc,CAE3E,CACF,oBAGE,cACF,UClGMsT,EAAaG,iBASnB,CAAAM,GAAA,UACE,kBACO,SAAWC,CAAkB,IAClC,OAAK,UAAe,IAClB,SAAaC,MACb,OAAU,QAYd,kBACE,GAAI,MACF,OAAO,CAAM,KAAK,UAASC,CAAaxU,CAAM,CAChD,OAAS7G,iBACHA,EAAe,aACL,GAEZ,MAAM,sBAAoB,KAAM,iBAAuB,CAAKsb,EAAQ,MAAI,MAGxE,OAAe,IAAM,CACnB,IAAKA,EAAM,MACT,UAGF,KAAMC,EAAoBD,WAAY,SAAQ;AAAA,CAAI,EAElD,OAAOC,SAA2B,CAAKD,EAAM,YAAYC,EAAoB,CAAC,CAChF,GAAC,EACD,UACW,MACPvb,IAAI,cAEK6I,EAAO,CAChB,aAAgC,KAAQ;AAAA,CAAI,EACtC2S,YAC4B3S,EAAM,QAAQ;AAAA,EAAM0S,EAAoB,GACpEE,GACJD,MAA4B;AAGf,EAAO3S,EAExB,CACF,MAAY,CAEZ,CACF,CAEA,MAAM7I,EAEV,CAEA,iBAGM,OAAuB,cAChB6G,CAAU,GACnBA,EAAO,SAEEwU,QAGFzJ,GAAY,SAAK,KAAU/K,OAEpC,CAAM,CAAE,qBAAc,WAAA6U,KAAkB,KAAA1P,UAEnB,YACT,aACRQ,CACA,EACE,oBAA8B,eAAaiO,CAAW,gBACtD,WAAmBA,GAAW,eAAaA,CAAW,SACtD,oBAAqBA,GAAW,aAAaA,GAAW,UACxD,kCAA4C,qBAAwB,EAAO,EAC3E,4BAA6BA,GAAW,aAAaA,GAAW,OAAO,eACvE,mBAAiCA,KAAW,WAAaA,GAAW,gBAMtEiB,CAAoB,SACZ,YAA2B,EACnC7U,EAAO,iBAAmB,CACxB,UAAW6U,QAGH,aACRA,CACA,EACE,MAAQjB,GAAW,kBACnB,CAAWA,GAAW,QAClC,MAEA,CAKQ5T,EAAO,yBAAsB,IAEtB,KAAK,SAAS,oBAAsB,OAC7CA,EAAO,mBAAoB,IAAK,SAAS,kBAEzCA,QAAO,aAAoB,GAG7B+T,mBAEE,CACE,UAASH,CAAW,SAAS,SAAS,QACtC,WAA0B,SAAS,kBAErC,QAIK,QAAiB,QAAU,OAAK,WAAS,IAAU,WAAO,UAGjE,SAAgC9U,EAAM,SAAc,SAAgBkB,CAAO,QAAO,CAElFmF,SACQ,IAAQ,CAAC,SAAU,SAAO,IAAQ,OAAQ,MAAO,QAAS,QAAS,QAAQ,EAAIgL,GAAW,CAC9F,OAAOhL,GAAc,CACvB,CAAC,EAEHnF,EAAO,aAAuB,SAA8B,CAG5D,MAAM8U,SACFC,EAAiC,GACrC,SAAK,SAAa,QAAQ,YAAQ,OAAiD,CACjF,GAAI,OAAOC,EAAY,SAAY,YAAcA,EAAY,QAAQhV,CAAM,IAAM,GAC/E,SAG+B+U,GAAkCC,EAAY,aAE/E,QAAqBhV,CAAO,cAAgB0D,GAE1CiC,GAAgBA,eAAa,mBAG7BmP,EAAwB,QAAQE,QAAY,KAAWA,CAAY,SAAQ,CAE3EF,IAAwB,WAAiB,MAAuB,QAAQ,GAE3E,CAED,OAAMG,CAA2B,OACjC,CAAK,kBAAa,IAAS,QAAQ,SAAkCD,EAAa,CAChFC,QAA8BD,CAAY,UAAWA,EAAY,QAAQ,CAC3E,CAAC,EAED,SACQ,CACJvQ,IAEJ,CAAI,CAACsQ,EAAgC,CACnC,WAAepB,CAAgB,aAAY,IAAS,EAOpD,IANAuB,EAAM,YAAkC,GACxCA,CAAM,KAAK,IAA2B,OAC1B,WAEF,KAAQ,YAEXtgB,CAAI6P,GACT0Q,GAAUA,CAAQ,QAAWvgB,KAAMsgB,CAAMtgB,GAAG,EAAC,CAG/C,OAAOugB,CACT,EAEA1Q,CAAMqQ,oBAIN,EAAOlgB,KAAS,CACd,QAAoBkgB,KAA2B,EACzCM,EAAaN,GAAwBlgB,EAAG,EAC9C,OACcygB,CAAYrK,GAC1B,MAASvK,EAAO,CACd2U,EAAW,KAAK,KAAM3U,CAAK,EAC3B,QAIJ,UAC4B,eAC5B,KACE,OAAO,QAAQ,OAAOA,CAAK,CAC7B,KAEA7L,EAAI,EACJ6P,EAAMwQ,EAAyB,UAEpBxQ,EACT0Q,EAAUA,EAAQ,KAAKF,EAAyBrgB,GAAG,EAAGqgB,EAAyBrgB,GAAG,KAGpF,KAAOugB,EAGT,QAAOnV,CAAQ,CACbA,EAAS+K,GAAY,KAAK,SAAU/K,CAAM,oBACJ,UAAqBA,CAAO,mBAAyB,GAC3F,SAAgBsV,OAAiB,IAAQtV,GAAO,eAAgB,CAClE,CACF,MAGM,kBAAmB,IAAO,UAAQ,OAAS,CAAG,aAElDuV,IAAM,SAAgB,YAAcliB,CAAK2M,EAAQ,CAC/C,aAAY,OACV+K,IAAY/K,aACVmQ,EACA,OACA,IAAMnQ,GAAUlB,SAAM,IAAWkB,GAAQ,OAAUA,QAAc,KACzE,CAAO,GAGP,CAAC,MAEK,MAAQ,CAAC,aAAe,WAAS,IAAO,EAAG,aAC/C,QAASwV,GAAmBC,CAAQ,CAClC,SAAO,kBACL,MAAO,kBACiB,CAAI,CACxB,OAAAtF,MACA,MACI,CACE,mBAAgB,iBAChC,EACc,MACJ,CAAA9c,OACAgR,CACV;ACxQY;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA","names":["url","params","options","version","getBaseUrl","_build","text","vars","r","allOptions","baseOrRootURL","getRootUrl","webroot","pos","index","_arrayLikeToArray","a","e","n","_arrayWithHoles","_iterableToArrayLimit","t","f","i","l","o","u","_nonIterableRest","serializedHTML","SAFE_FOR_TEMPLATES","_stripTemplateExpressions","RETURN_TRUSTED_TYPE","_createTrustedHTML","DOMPurify","message","msg","context","level","LogLevel","buildConsoleLogger","LoggerBuilder","factory","appId","user","self","onLoaded","getLoggerBuilder","isRtl","candidateSelector","candidateSelectors","NoElement","matches","_element$getRootNode","element","_isInert","node","lookUp","_node$getAttribute","inertAtt","inert","result","attValue","_node$getAttribute2","getCandidates","filter","candidates","includeContainer","_getCandidatesIteratively","elements","assigned","nestedCandidates","content","shadowRoot","validShadowRoot","_nestedCandidates","elementsToCheck","isContentEditable","getSortOrderTabIndex","isScope","getTabIndex","tabIndex","hasTabIndex","sortOrderedTabbables","b","isHiddenInput","isDetailsWithSummary","child","getCheckedRadio","nodes","radioScope","getRootNode","queryRadios","name","radioSet","err","checked","isInput","isRadio","isTabbableRadio","nodeRoot","_nodeRoot","_nodeRootHost","_nodeRootHost$ownerDo","attached","nodeRootHost","_node$ownerDocument","_nodeRoot2","_nodeRootHost2","_nodeRootHost2$ownerD","_node$getBoundingClie","width","isHidden","_ref","displayCheck","visible","_getComputedStyle","visibility","isDirectSummary","getShadowRoot","parentElement","rootNode","isZeroArea","isNodeAttached","isDisabledFromFieldset","parentNode","isNodeMatchingSelectorFocusable","isNodeMatchingSelectorTabbable","isNonTabbableRadio","shadowHostNode","_sortByOrder","orderedTabbables","item","candidateTabindex","regularTabbables","acc","sortable","tabbable","isShadowRootTabbable","focusable","container","focusableCandidateSelector","_arrayWithoutHoles","F","_iterableToArray","option","sortAndStringify","warn","label","search","value","clearSearchOnSelect","component","top","left","dropdownList","open","uniqueId","listSlot","limitOptions","options2","optionList","createdOption","newOptions","shouldReset","val","isOpen","nextDeselect","index2","deselectToFocus","event","targetIsNotSearch","ref","predicate","match","_option","line","key","ignoreDuplicateOf","parsed","start","end","str","code","INVALID_UNICODE_HEADER_VALUE_CHARS","invalidChars","utils","sanitizeValue","trimSPorHTAB","thing","first","targets","target","$internals","defineAccessor","_header","accessors","buildAccessors","prototype","lHeader","AxiosHeaders","REDACTED","hasOwnOrPrototypeToJSON","source","config","lowerKeys","visit","seen","v","reducedValue","AxiosError","customProps","axiosError","error","response","request","redactKeys","serializedConfig","redactConfig","DEFAULT_FORM_DATA_MAX_DEPTH","isVisitable","removeBrackets","renderKey","path","token","dots","arr","predicates","toFormData","obj","formData","metaTokens","visitor","indexes","_Blob","useBlob","stack","convertValue","Buffer","depth","maxDepth","stringifyWithDepthLimit","ancestors","_key","currentValue","build","throwIfMaxDepthExceeded","el","exposedHelpers","AxiosURLSearchParams","encoder","_encode","encode","pair","buildURL","_options","serializeFn","serializedParams","fulfilled","id","fn","h","transitionalDefaults","FormData$1","Blob$1","platform$1","_navigator","hasStandardBrowserEnv","hasBrowserEnv","hasStandardBrowserWebWorkerEnv","origin","platform","toURLEncodedForm","data","throwIfDepthExceeded","MAX_DEPTH","parsePropPath","len","keys","formDataToJSON","buildPath","isNumericKey","isLast","arrayToObject","own","rawValue","defaults","headers","isObjectPayload","hasJSONContentType","isFileList","formSerializer","contentType","env","_FormData","transitional","forcedJSONParsing","JSONRequested","responseType","strictJSONParsing","status","transformData","fns","isCancel","reject","validateStatus","resolve","parseProtocol","speedometer","samplesCount","min","bytes","firstSampleTS","head","now","startedAt","bytesCount","throttle","freq","timestamp","threshold","invoke","args","lastArgs","timer","passed","bytesNotified","_speedometer","total","loaded","rawLoaded","progressBytes","progressEventDecorator","throttled","lengthComputable","asyncDecorator","isURLSameOrigin","isMSIE","cookies","expires","sameSite","cookie","secure","eq","relativeURL","malformedHttpProtocol","stripLeadingC0ControlOrSpace","normalizeURLForProtocolCheck","httpProtocolControlCharacters","assertValidHttpProtocolURL","buildFullPath","baseURL","requestedURL","allowAbsoluteUrls","isRelativeUrl","isAbsoluteURL","combineURLs","headersToObject","config1","config2","prop","mergeDeepProperties","getMergedValue","valueFromConfig2","defaultToConfig2","getMergedTransitionalOption","transitional2","transitional1","mergeDirectKeys","merge","mergeMap","configValue","FORM_DATA_CONTENT_HEADERS","setFormDataHeaders","formHeaders","policy","encodeUTF8","hex","resolveConfig","mergeConfig","newConfig","xsrfCookieName","auth","username","_config","requestData","requestHeaders","onUploadProgress","onDownloadProgress","onCanceled","uploadThrottled","downloadThrottled","done","flushUpload","onloadend","responseHeaders","timeoutErrorMessage","toByteStringHeaderObject","flushDownload","progressEventReducer","cancel","protocol","composeSignals","signals","timeout","aborted","onabort","reason","controller","CanceledError","signal","unsubscribe","chunk","chunkSize","iterable","readStream","streamChunk","stream","reader","trackStream","onFinish","iterator","readBytes","onProgress","loadedBytes","isHexDigit","charCode","isPercentEncodedByte","estimateDataURLDecodedBytes","meta","body","effectiveLen","pad","tailIsPct3D","j","idx","c","next","VERSION","DEFAULT_CHUNK_SIZE","isFunction","_","decodeURIComponentSafe","test","protocolIndex","urlToCheck","globalObject","ReadableStream","TextEncoder","envFetch","Request","Response","isFetchSupported","isRequestSupported","isResponseSupported","supportsRequestStream","duplexAccessed","hasContentType","supportsResponseStream","isReadableStreamSupported","res","type","resolvers","method","getBodyLength","encodeText","resolveBodyLength","cancelToken","withCredentials","fetchOptions","maxContentLength","hasMaxContentLength","hasMaxBodyLength","maxBodyLength","_fetch","composedSignal","requestContentLength","pendingBodyError","maxBodyLengthError","configAuth","maybeWithAuthCredentials","parsedURL","urlUsername","urlPassword","outboundLength","mustEnforceStreamBody","trackRequestStream","flush","_request","contentTypeHeader","isCredentialsSupported","resolvedOptions","declaredLength","isStreamResponse","responseContentLength","bytesRead","materializedSize","responseData","settle","canceledError","networkError","seedCache","getFetch","map","knownAdapters","httpAdapter","fetchAdapter.getFetch","renderReason","isResolvedHandle","adapter","getAdapter","adapters","length","rejectedReasons","nameOrAdapter","state","s","reasons","throwIfCancellationRequested","dispatchRequest","validators","deprecatedWarnings","opt","validator","opts","correctSpelling","assertOptions","schema","allowUnknown","Axios$1","instanceConfig","InterceptorManager","configOrUrl","dummy","firstNewlineIndex","secondNewlineIndex","stackWithoutTwoTopLines","paramsSerializer","requestInterceptorChain","synchronousRequestInterceptors","interceptor","responseInterceptorChain","chain","promise","onRejected","onFulfilled","fullPath","Axios","generateHTTPMethod","isForm"],"ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53],"sources":["../node_modules/@nextcloud/router/dist/index.mjs","../node_modules/dompurify/dist/purify.es.mjs","../node_modules/@nextcloud/logger/dist/index.mjs","../node_modules/@nextcloud/vue/dist/chunks/logger-D3RVzcfQ.mjs","../node_modules/@nextcloud/vue/dist/chunks/rtl-v0UOPAM7.mjs","../node_modules/tabbable/dist/index.esm.js","../node_modules/focus-trap/dist/focus-trap.esm.js","../node_modules/@nextcloud/dialogs/dist/chunks/index.mjs","../node_modules/@nextcloud/vue-select/dist/index.mjs","../node_modules/axios/lib/helpers/parseHeaders.js","../node_modules/axios/lib/helpers/sanitizeHeaderValue.js","../node_modules/axios/lib/core/AxiosHeaders.js","../node_modules/axios/lib/core/AxiosError.js","../node_modules/axios/lib/helpers/null.js","../node_modules/axios/lib/helpers/toFormData.js","../node_modules/axios/lib/helpers/AxiosURLSearchParams.js","../node_modules/axios/lib/helpers/buildURL.js","../node_modules/axios/lib/core/InterceptorManager.js","../node_modules/axios/lib/defaults/transitional.js","../node_modules/axios/lib/platform/browser/classes/URLSearchParams.js","../node_modules/axios/lib/platform/browser/classes/FormData.js","../node_modules/axios/lib/platform/browser/classes/Blob.js","../node_modules/axios/lib/platform/browser/index.js","../node_modules/axios/lib/platform/common/utils.js","../node_modules/axios/lib/platform/index.js","../node_modules/axios/lib/helpers/toURLEncodedForm.js","../node_modules/axios/lib/helpers/formDataToJSON.js","../node_modules/axios/lib/defaults/index.js","../node_modules/axios/lib/core/transformData.js","../node_modules/axios/lib/cancel/isCancel.js","../node_modules/axios/lib/cancel/CanceledError.js","../node_modules/axios/lib/core/settle.js","../node_modules/axios/lib/helpers/parseProtocol.js","../node_modules/axios/lib/helpers/speedometer.js","../node_modules/axios/lib/helpers/throttle.js","../node_modules/axios/lib/helpers/progressEventReducer.js","../node_modules/axios/lib/helpers/isURLSameOrigin.js","../node_modules/axios/lib/helpers/cookies.js","../node_modules/axios/lib/helpers/isAbsoluteURL.js","../node_modules/axios/lib/helpers/combineURLs.js","../node_modules/axios/lib/core/buildFullPath.js","../node_modules/axios/lib/core/mergeConfig.js","../node_modules/axios/lib/helpers/resolveConfig.js","../node_modules/axios/lib/adapters/xhr.js","../node_modules/axios/lib/helpers/composeSignals.js","../node_modules/axios/lib/helpers/trackStream.js","../node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js","../node_modules/axios/lib/env/data.js","../node_modules/axios/lib/adapters/fetch.js","../node_modules/axios/lib/adapters/adapters.js","../node_modules/axios/lib/core/dispatchRequest.js","../node_modules/axios/lib/helpers/validator.js","../node_modules/axios/lib/core/Axios.js","../node_modules/@nextcloud/vue/dist/chunks/NcIconToggleSwitch-CRvGt4su.mjs"],"sourcesContent":["function linkTo(app, file) {\n return generateFilePath(app, \"\", file);\n}\nconst linkToRemoteBase = (service) => \"/remote.php/\" + service;\nconst generateRemoteUrl = (service, options) => {\n const baseURL = options?.baseURL ?? getBaseUrl();\n return baseURL + linkToRemoteBase(service);\n};\nconst generateOcsUrl = (url, params, options) => {\n const allOptions = Object.assign({\n ocsVersion: 2\n }, options || {});\n const version = allOptions.ocsVersion === 1 ? 1 : 2;\n const baseURL = options?.baseURL ?? getBaseUrl();\n return baseURL + \"/ocs/v\" + version + \".php\" + _generateUrlPath(url, params, options);\n};\nconst _generateUrlPath = (url, params, options) => {\n const allOptions = Object.assign({\n escape: true\n }, options || {});\n const _build = function(text, vars) {\n vars = vars || {};\n return text.replace(\n /{([^{}]*)}/g,\n function(a, b) {\n const r = vars[b];\n if (allOptions.escape) {\n return typeof r === \"string\" || typeof r === \"number\" ? encodeURIComponent(r.toString()) : encodeURIComponent(a);\n } else {\n return typeof r === \"string\" || typeof r === \"number\" ? r.toString() : a;\n }\n }\n );\n };\n if (url.charAt(0) !== \"/\") {\n url = \"/\" + url;\n }\n return _build(url, params || {});\n};\nconst generateUrl = (url, params, options) => {\n const allOptions = Object.assign({\n noRewrite: false\n }, options || {});\n const baseOrRootURL = options?.baseURL ?? getRootUrl();\n if (window?.OC?.config?.modRewriteWorking === true && !allOptions.noRewrite) {\n return baseOrRootURL + _generateUrlPath(url, params, options);\n }\n return baseOrRootURL + \"/index.php\" + _generateUrlPath(url, params, options);\n};\nconst imagePath = (app, file) => {\n if (!file.includes(\".\")) {\n return generateFilePath(app, \"img\", `${file}.svg`);\n }\n return generateFilePath(app, \"img\", file);\n};\nconst generateFilePath = (app, type, file) => {\n const isCore = window?.OC?.coreApps?.includes(app) ?? false;\n const isPHP = file.slice(-3) === \"php\";\n let link = getRootUrl();\n if (isPHP && !isCore) {\n link += `/index.php/apps/${app}`;\n if (type) {\n link += `/${encodeURI(type)}`;\n }\n if (file !== \"index.php\") {\n link += `/${file}`;\n }\n } else if (!isPHP && !isCore) {\n link = getAppRootUrl(app);\n if (type) {\n link += `/${type}/`;\n }\n if (link.at(-1) !== \"/\") {\n link += \"/\";\n }\n link += file;\n } else {\n if ((app === \"settings\" || app === \"core\" || app === \"search\") && type === \"ajax\") {\n link += \"/index.php\";\n }\n if (app) {\n link += `/${app}`;\n }\n if (type) {\n link += `/${type}`;\n }\n link += `/${file}`;\n }\n return link;\n};\nconst getBaseUrl = () => window.location.protocol + \"//\" + window.location.host + getRootUrl();\nfunction getRootUrl() {\n let webroot = window._oc_webroot;\n if (typeof webroot === \"undefined\") {\n webroot = location.pathname;\n const pos = webroot.indexOf(\"/index.php/\");\n if (pos !== -1) {\n webroot = webroot.slice(0, pos);\n } else {\n const index = webroot.indexOf(\"/\", 1);\n webroot = webroot.slice(0, index > 0 ? index : void 0);\n }\n }\n return webroot;\n}\nfunction getAppRootUrl(app) {\n const webroots = window._oc_appswebroots ?? {};\n return webroots[app] ?? \"\";\n}\n/*!\n * SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: GPL-3.0-or-later\n */\nfunction generateAvatarUrl(user, options) {\n const size = (options?.size || 64) <= 64 ? 64 : 512;\n const guestUrl = options?.isGuestUser ? \"/guest\" : \"\";\n const themeUrl = options?.isDarkTheme ? \"/dark\" : \"\";\n return generateUrl(`/avatar${guestUrl}/{user}/{size}${themeUrl}`, {\n user,\n size\n });\n}\nexport {\n generateAvatarUrl,\n generateFilePath,\n generateOcsUrl,\n generateRemoteUrl,\n generateUrl,\n getAppRootUrl,\n getBaseUrl,\n getRootUrl,\n imagePath,\n linkTo\n};\n//# sourceMappingURL=index.mjs.map\n","/*! @license DOMPurify 3.4.12 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.4.12/LICENSE */\n\nfunction _arrayLikeToArray(r, a) {\n (null == a || a > r.length) && (a = r.length);\n for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];\n return n;\n}\nfunction _arrayWithHoles(r) {\n if (Array.isArray(r)) return r;\n}\nfunction _iterableToArrayLimit(r, l) {\n var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"];\n if (null != t) {\n var e,\n n,\n i,\n u,\n a = [],\n f = true,\n o = false;\n try {\n if (i = (t = t.call(r)).next, 0 === l) ; else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);\n } catch (r) {\n o = true, n = r;\n } finally {\n try {\n if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return;\n } finally {\n if (o) throw n;\n }\n }\n return a;\n }\n}\nfunction _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\nfunction _slicedToArray(r, e) {\n return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest();\n}\nfunction _unsupportedIterableToArray(r, a) {\n if (r) {\n if (\"string\" == typeof r) return _arrayLikeToArray(r, a);\n var t = {}.toString.call(r).slice(8, -1);\n return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0;\n }\n}\n\nconst entries = Object.entries,\n setPrototypeOf = Object.setPrototypeOf,\n isFrozen = Object.isFrozen,\n getPrototypeOf = Object.getPrototypeOf,\n getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nlet freeze = Object.freeze,\n seal = Object.seal,\n create = Object.create; // eslint-disable-line import/no-mutable-exports\nlet _ref = typeof Reflect !== 'undefined' && Reflect,\n apply = _ref.apply,\n construct = _ref.construct;\nif (!freeze) {\n freeze = function freeze(x) {\n return x;\n };\n}\nif (!seal) {\n seal = function seal(x) {\n return x;\n };\n}\nif (!apply) {\n apply = function apply(func, thisArg) {\n for (var _len = arguments.length, args = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {\n args[_key - 2] = arguments[_key];\n }\n return func.apply(thisArg, args);\n };\n}\nif (!construct) {\n construct = function construct(Func) {\n for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n args[_key2 - 1] = arguments[_key2];\n }\n return new Func(...args);\n };\n}\nconst arrayForEach = unapply(Array.prototype.forEach);\nconst arrayLastIndexOf = unapply(Array.prototype.lastIndexOf);\nconst arrayPop = unapply(Array.prototype.pop);\nconst arrayPush = unapply(Array.prototype.push);\nconst arraySplice = unapply(Array.prototype.splice);\nconst arrayIsArray = Array.isArray;\nconst stringToLowerCase = unapply(String.prototype.toLowerCase);\nconst stringToString = unapply(String.prototype.toString);\nconst stringMatch = unapply(String.prototype.match);\nconst stringReplace = unapply(String.prototype.replace);\nconst stringIndexOf = unapply(String.prototype.indexOf);\nconst stringTrim = unapply(String.prototype.trim);\nconst numberToString = unapply(Number.prototype.toString);\nconst booleanToString = unapply(Boolean.prototype.toString);\nconst bigintToString = typeof BigInt === 'undefined' ? null : unapply(BigInt.prototype.toString);\nconst symbolToString = typeof Symbol === 'undefined' ? null : unapply(Symbol.prototype.toString);\nconst objectHasOwnProperty = unapply(Object.prototype.hasOwnProperty);\nconst objectToString = unapply(Object.prototype.toString);\nconst regExpTest = unapply(RegExp.prototype.test);\nconst typeErrorCreate = unconstruct(TypeError);\n/**\n * Creates a new function that calls the given function with a specified thisArg and arguments.\n *\n * @param func - The function to be wrapped and called.\n * @returns A new function that calls the given function with a specified thisArg and arguments.\n */\nfunction unapply(func) {\n return function (thisArg) {\n if (thisArg instanceof RegExp) {\n thisArg.lastIndex = 0;\n }\n for (var _len3 = arguments.length, args = new Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) {\n args[_key3 - 1] = arguments[_key3];\n }\n return apply(func, thisArg, args);\n };\n}\n/**\n * Creates a new function that constructs an instance of the given constructor function with the provided arguments.\n *\n * @param func - The constructor function to be wrapped and called.\n * @returns A new function that constructs an instance of the given constructor function with the provided arguments.\n */\nfunction unconstruct(Func) {\n return function () {\n for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {\n args[_key4] = arguments[_key4];\n }\n return construct(Func, args);\n };\n}\n/**\n * Add properties to a lookup table\n *\n * @param set - The set to which elements will be added.\n * @param array - The array containing elements to be added to the set.\n * @param transformCaseFunc - An optional function to transform the case of each element before adding to the set.\n * @returns The modified set with added elements.\n */\nfunction addToSet(set, array) {\n let transformCaseFunc = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : stringToLowerCase;\n if (setPrototypeOf) {\n // Make 'in' and truthy checks like Boolean(set.constructor)\n // independent of any properties defined on Object.prototype.\n // Prevent prototype setters from intercepting set as a this value.\n setPrototypeOf(set, null);\n }\n if (!arrayIsArray(array)) {\n return set;\n }\n let l = array.length;\n while (l--) {\n let element = array[l];\n if (typeof element === 'string') {\n const lcElement = transformCaseFunc(element);\n if (lcElement !== element) {\n // Config presets (e.g. tags.js, attrs.js) are immutable.\n if (!isFrozen(array)) {\n array[l] = lcElement;\n }\n element = lcElement;\n }\n }\n set[element] = true;\n }\n return set;\n}\n/**\n * Clean up an array to harden against CSPP\n *\n * @param array - The array to be cleaned.\n * @returns The cleaned version of the array\n */\nfunction cleanArray(array) {\n for (let index = 0; index < array.length; index++) {\n const isPropertyExist = objectHasOwnProperty(array, index);\n if (!isPropertyExist) {\n array[index] = null;\n }\n }\n return array;\n}\n/**\n * Shallow clone an object\n *\n * @param object - The object to be cloned.\n * @returns A new object that copies the original.\n */\nfunction clone(object) {\n const newObject = create(null);\n for (const _ref2 of entries(object)) {\n var _ref3 = _slicedToArray(_ref2, 2);\n const property = _ref3[0];\n const value = _ref3[1];\n const isPropertyExist = objectHasOwnProperty(object, property);\n if (isPropertyExist) {\n if (arrayIsArray(value)) {\n newObject[property] = cleanArray(value);\n } else if (value && typeof value === 'object' && value.constructor === Object) {\n newObject[property] = clone(value);\n } else {\n newObject[property] = value;\n }\n }\n }\n return newObject;\n}\n/**\n * Convert non-node values into strings without depending on direct property access.\n *\n * @param value - The value to stringify.\n * @returns A string representation of the provided value.\n */\nfunction stringifyValue(value) {\n switch (typeof value) {\n case 'string':\n {\n return value;\n }\n case 'number':\n {\n return numberToString(value);\n }\n case 'boolean':\n {\n return booleanToString(value);\n }\n case 'bigint':\n {\n return bigintToString ? bigintToString(value) : '0';\n }\n case 'symbol':\n {\n return symbolToString ? symbolToString(value) : 'Symbol()';\n }\n case 'undefined':\n {\n return objectToString(value);\n }\n case 'function':\n case 'object':\n {\n if (value === null) {\n return objectToString(value);\n }\n const valueAsRecord = value;\n const valueToString = lookupGetter(valueAsRecord, 'toString');\n if (typeof valueToString === 'function') {\n const stringified = valueToString(valueAsRecord);\n return typeof stringified === 'string' ? stringified : objectToString(stringified);\n }\n return objectToString(value);\n }\n default:\n {\n return objectToString(value);\n }\n }\n}\n/**\n * This method automatically checks if the prop is function or getter and behaves accordingly.\n *\n * @param object - The object to look up the getter function in its prototype chain.\n * @param prop - The property name for which to find the getter function.\n * @returns The getter function found in the prototype chain or a fallback function.\n */\nfunction lookupGetter(object, prop) {\n while (object !== null) {\n const desc = getOwnPropertyDescriptor(object, prop);\n if (desc) {\n if (desc.get) {\n return unapply(desc.get);\n }\n if (typeof desc.value === 'function') {\n return unapply(desc.value);\n }\n }\n object = getPrototypeOf(object);\n }\n function fallbackValue() {\n return null;\n }\n return fallbackValue;\n}\nfunction isRegex(value) {\n try {\n regExpTest(value, '');\n return true;\n } catch (_unused) {\n return false;\n }\n}\n\nconst html$1 = freeze(['a', 'abbr', 'acronym', 'address', 'area', 'article', 'aside', 'audio', 'b', 'bdi', 'bdo', 'big', 'blink', 'blockquote', 'body', 'br', 'button', 'canvas', 'caption', 'center', 'cite', 'code', 'col', 'colgroup', 'content', 'data', 'datalist', 'dd', 'decorator', 'del', 'details', 'dfn', 'dialog', 'dir', 'div', 'dl', 'dt', 'element', 'em', 'fieldset', 'figcaption', 'figure', 'font', 'footer', 'form', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'header', 'hgroup', 'hr', 'html', 'i', 'img', 'input', 'ins', 'kbd', 'label', 'legend', 'li', 'main', 'map', 'mark', 'marquee', 'menu', 'menuitem', 'meter', 'nav', 'nobr', 'ol', 'optgroup', 'option', 'output', 'p', 'picture', 'pre', 'progress', 'q', 'rp', 'rt', 'ruby', 's', 'samp', 'search', 'section', 'select', 'shadow', 'slot', 'small', 'source', 'spacer', 'span', 'strike', 'strong', 'style', 'sub', 'summary', 'sup', 'table', 'tbody', 'td', 'template', 'textarea', 'tfoot', 'th', 'thead', 'time', 'tr', 'track', 'tt', 'u', 'ul', 'var', 'video', 'wbr']);\nconst svg$1 = freeze(['svg', 'a', 'altglyph', 'altglyphdef', 'altglyphitem', 'animatecolor', 'animatemotion', 'animatetransform', 'circle', 'clippath', 'defs', 'desc', 'ellipse', 'enterkeyhint', 'exportparts', 'filter', 'font', 'g', 'glyph', 'glyphref', 'hkern', 'image', 'inputmode', 'line', 'lineargradient', 'marker', 'mask', 'metadata', 'mpath', 'part', 'path', 'pattern', 'polygon', 'polyline', 'radialgradient', 'rect', 'stop', 'style', 'switch', 'symbol', 'text', 'textpath', 'title', 'tref', 'tspan', 'view', 'vkern']);\nconst svgFilters = freeze(['feBlend', 'feColorMatrix', 'feComponentTransfer', 'feComposite', 'feConvolveMatrix', 'feDiffuseLighting', 'feDisplacementMap', 'feDistantLight', 'feDropShadow', 'feFlood', 'feFuncA', 'feFuncB', 'feFuncG', 'feFuncR', 'feGaussianBlur', 'feImage', 'feMerge', 'feMergeNode', 'feMorphology', 'feOffset', 'fePointLight', 'feSpecularLighting', 'feSpotLight', 'feTile', 'feTurbulence']);\n// List of SVG elements that are disallowed by default.\n// We still need to know them so that we can do namespace\n// checks properly in case one wants to add them to\n// allow-list.\nconst svgDisallowed = freeze(['animate', 'color-profile', 'cursor', 'discard', 'font-face', 'font-face-format', 'font-face-name', 'font-face-src', 'font-face-uri', 'foreignobject', 'hatch', 'hatchpath', 'mesh', 'meshgradient', 'meshpatch', 'meshrow', 'missing-glyph', 'script', 'set', 'solidcolor', 'unknown', 'use']);\nconst mathMl$1 = freeze(['math', 'menclose', 'merror', 'mfenced', 'mfrac', 'mglyph', 'mi', 'mlabeledtr', 'mmultiscripts', 'mn', 'mo', 'mover', 'mpadded', 'mphantom', 'mroot', 'mrow', 'ms', 'mspace', 'msqrt', 'mstyle', 'msub', 'msup', 'msubsup', 'mtable', 'mtd', 'mtext', 'mtr', 'munder', 'munderover', 'mprescripts']);\n// Similarly to SVG, we want to know all MathML elements,\n// even those that we disallow by default.\nconst mathMlDisallowed = freeze(['maction', 'maligngroup', 'malignmark', 'mlongdiv', 'mscarries', 'mscarry', 'msgroup', 'mstack', 'msline', 'msrow', 'semantics', 'annotation', 'annotation-xml', 'mprescripts', 'none']);\nconst text = freeze(['#text']);\n\nconst html = freeze(['accept', 'action', 'align', 'alt', 'autocapitalize', 'autocomplete', 'autopictureinpicture', 'autoplay', 'background', 'bgcolor', 'border', 'capture', 'cellpadding', 'cellspacing', 'checked', 'cite', 'class', 'clear', 'color', 'cols', 'colspan', 'command', 'commandfor', 'controls', 'controlslist', 'coords', 'crossorigin', 'datetime', 'decoding', 'default', 'dir', 'disabled', 'disablepictureinpicture', 'disableremoteplayback', 'download', 'draggable', 'enctype', 'enterkeyhint', 'exportparts', 'face', 'for', 'headers', 'height', 'hidden', 'high', 'href', 'hreflang', 'id', 'inert', 'inputmode', 'integrity', 'ismap', 'kind', 'label', 'lang', 'list', 'loading', 'loop', 'low', 'max', 'maxlength', 'media', 'method', 'min', 'minlength', 'multiple', 'muted', 'name', 'nonce', 'noshade', 'novalidate', 'nowrap', 'open', 'optimum', 'part', 'pattern', 'placeholder', 'playsinline', 'popover', 'popovertarget', 'popovertargetaction', 'poster', 'preload', 'pubdate', 'radiogroup', 'readonly', 'rel', 'required', 'rev', 'reversed', 'role', 'rows', 'rowspan', 'spellcheck', 'scope', 'selected', 'shape', 'size', 'sizes', 'slot', 'span', 'srclang', 'start', 'src', 'srcset', 'step', 'style', 'summary', 'tabindex', 'title', 'translate', 'type', 'usemap', 'valign', 'value', 'width', 'wrap', 'xmlns']);\nconst svg = freeze(['accent-height', 'accumulate', 'additive', 'alignment-baseline', 'amplitude', 'ascent', 'attributename', 'attributetype', 'azimuth', 'basefrequency', 'baseline-shift', 'begin', 'bias', 'by', 'class', 'clip', 'clippathunits', 'clip-path', 'clip-rule', 'color', 'color-interpolation', 'color-interpolation-filters', 'color-profile', 'color-rendering', 'cx', 'cy', 'd', 'dx', 'dy', 'diffuseconstant', 'direction', 'display', 'divisor', 'dominant-baseline', 'dur', 'edgemode', 'elevation', 'end', 'exponent', 'fill', 'fill-opacity', 'fill-rule', 'filter', 'filterunits', 'flood-color', 'flood-opacity', 'font-family', 'font-size', 'font-size-adjust', 'font-stretch', 'font-style', 'font-variant', 'font-weight', 'fx', 'fy', 'g1', 'g2', 'glyph-name', 'glyphref', 'gradientunits', 'gradienttransform', 'height', 'href', 'id', 'image-rendering', 'in', 'in2', 'intercept', 'k', 'k1', 'k2', 'k3', 'k4', 'kerning', 'keypoints', 'keysplines', 'keytimes', 'lang', 'lengthadjust', 'letter-spacing', 'kernelmatrix', 'kernelunitlength', 'lighting-color', 'local', 'marker-end', 'marker-mid', 'marker-start', 'markerheight', 'markerunits', 'markerwidth', 'maskcontentunits', 'maskunits', 'max', 'mask', 'mask-type', 'media', 'method', 'mode', 'min', 'name', 'numoctaves', 'offset', 'operator', 'opacity', 'order', 'orient', 'orientation', 'origin', 'overflow', 'paint-order', 'path', 'pathlength', 'patterncontentunits', 'patterntransform', 'patternunits', 'points', 'preservealpha', 'preserveaspectratio', 'primitiveunits', 'r', 'rx', 'ry', 'radius', 'refx', 'refy', 'repeatcount', 'repeatdur', 'restart', 'result', 'rotate', 'scale', 'seed', 'shape-rendering', 'slope', 'specularconstant', 'specularexponent', 'spreadmethod', 'startoffset', 'stddeviation', 'stitchtiles', 'stop-color', 'stop-opacity', 'stroke-dasharray', 'stroke-dashoffset', 'stroke-linecap', 'stroke-linejoin', 'stroke-miterlimit', 'stroke-opacity', 'stroke', 'stroke-width', 'style', 'surfacescale', 'systemlanguage', 'tabindex', 'tablevalues', 'targetx', 'targety', 'transform', 'transform-origin', 'text-anchor', 'text-decoration', 'text-orientation', 'text-rendering', 'textlength', 'type', 'u1', 'u2', 'unicode', 'values', 'viewbox', 'visibility', 'version', 'vert-adv-y', 'vert-origin-x', 'vert-origin-y', 'width', 'word-spacing', 'wrap', 'writing-mode', 'xchannelselector', 'ychannelselector', 'x', 'x1', 'x2', 'xmlns', 'y', 'y1', 'y2', 'z', 'zoomandpan']);\nconst mathMl = freeze(['accent', 'accentunder', 'align', 'bevelled', 'close', 'columnalign', 'columnlines', 'columnspacing', 'columnspan', 'denomalign', 'depth', 'dir', 'display', 'displaystyle', 'encoding', 'fence', 'frame', 'height', 'href', 'id', 'largeop', 'length', 'linethickness', 'lquote', 'lspace', 'mathbackground', 'mathcolor', 'mathsize', 'mathvariant', 'maxsize', 'minsize', 'movablelimits', 'notation', 'numalign', 'open', 'rowalign', 'rowlines', 'rowspacing', 'rowspan', 'rspace', 'rquote', 'scriptlevel', 'scriptminsize', 'scriptsizemultiplier', 'selection', 'separator', 'separators', 'stretchy', 'subscriptshift', 'supscriptshift', 'symmetric', 'voffset', 'width', 'xmlns']);\nconst xml = freeze(['xlink:href', 'xml:id', 'xlink:title', 'xml:space', 'xmlns:xlink']);\n\nconst MUSTACHE_EXPR = seal(/{{[\\w\\W]*|^[\\w\\W]*}}/g);\nconst ERB_EXPR = seal(/<%[\\w\\W]*|^[\\w\\W]*%>/g);\nconst TMPLIT_EXPR = seal(/\\${[\\w\\W]*/g);\nconst DATA_ATTR = seal(/^data-[\\-\\w.\\u00B7-\\uFFFF]+$/); // eslint-disable-line no-useless-escape\nconst ARIA_ATTR = seal(/^aria-[\\-\\w]+$/); // eslint-disable-line no-useless-escape\nconst IS_ALLOWED_URI = seal(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\\-]+(?:[^a-z+.\\-:]|$))/i // eslint-disable-line no-useless-escape\n);\nconst IS_SCRIPT_OR_DATA = seal(/^(?:\\w+script|data):/i);\nconst ATTR_WHITESPACE = seal(/[\\u0000-\\u0020\\u00A0\\u1680\\u180E\\u2000-\\u2029\\u205F\\u3000]/g // eslint-disable-line no-control-regex\n);\nconst DOCTYPE_NAME = seal(/^html$/i);\nconst CUSTOM_ELEMENT = seal(/^[a-z][.\\w]*(-[.\\w]+)+$/i);\n// Markup-significant character probes used by _sanitizeElements.\n// Shared module-level instances are safe despite the sticky /g flags:\n// unapply() resets lastIndex for RegExp receivers before every call.\nconst ELEMENT_MARKUP_PROBE = seal(/<[/\\w!]/g);\nconst COMMENT_MARKUP_PROBE = seal(/<[/\\w]/g);\nconst FALLBACK_TAG_CLOSE = seal(/<\\/no(script|embed|frames)/i);\nconst SELF_CLOSING_TAG = seal(/\\/>/i);\n\n// https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType\nconst NODE_TYPE = {\n element: 1,\n attribute: 2,\n text: 3,\n cdataSection: 4,\n entityReference: 5,\n // Deprecated\n entityNode: 6,\n // Deprecated\n processingInstruction: 7,\n comment: 8,\n document: 9,\n documentType: 10,\n documentFragment: 11,\n notation: 12 // Deprecated\n};\nconst getGlobal = function getGlobal() {\n return typeof window === 'undefined' ? null : window;\n};\n/**\n * Creates a no-op policy for internal use only.\n * Don't export this function outside this module!\n * @param trustedTypes The policy factory.\n * @param purifyHostElement The Script element used to load DOMPurify (to determine policy name suffix).\n * @return The policy created (or null, if Trusted Types\n * are not supported or creating the policy failed).\n */\nconst _createTrustedTypesPolicy = function _createTrustedTypesPolicy(trustedTypes, purifyHostElement) {\n if (typeof trustedTypes !== 'object' || typeof trustedTypes.createPolicy !== 'function') {\n return null;\n }\n // Allow the callers to control the unique policy name\n // by adding a data-tt-policy-suffix to the script element with the DOMPurify.\n // Policy creation with duplicate names throws in Trusted Types.\n let suffix = null;\n const ATTR_NAME = 'data-tt-policy-suffix';\n if (purifyHostElement && purifyHostElement.hasAttribute(ATTR_NAME)) {\n suffix = purifyHostElement.getAttribute(ATTR_NAME);\n }\n const policyName = 'dompurify' + (suffix ? '#' + suffix : '');\n try {\n return trustedTypes.createPolicy(policyName, {\n createHTML(html) {\n return html;\n },\n createScriptURL(scriptUrl) {\n return scriptUrl;\n }\n });\n } catch (_) {\n // Policy creation failed (most likely another DOMPurify script has\n // already run). Skip creating the policy, as this will only cause errors\n // if TT are enforced.\n console.warn('TrustedTypes policy ' + policyName + ' could not be created.');\n return null;\n }\n};\nconst _createHooksMap = function _createHooksMap() {\n return {\n afterSanitizeAttributes: [],\n afterSanitizeElements: [],\n afterSanitizeShadowDOM: [],\n beforeSanitizeAttributes: [],\n beforeSanitizeElements: [],\n beforeSanitizeShadowDOM: [],\n uponSanitizeAttribute: [],\n uponSanitizeElement: [],\n uponSanitizeShadowNode: []\n };\n};\n/**\n * Resolve a set-valued configuration option: a fresh set built from\n * cfg[key] when it is an own array property (seeded with a clone of\n * options.base when given, case-normalized via options.transform),\n * the fallback set otherwise.\n *\n * @param cfg the cloned, prototype-free configuration object\n * @param key the configuration property to read\n * @param fallback the set to use when the option is absent or not an array\n * @param options transform and optional base set to merge into\n * @returns the resolved set\n */\nconst _resolveSetOption = function _resolveSetOption(cfg, key, fallback, options) {\n return objectHasOwnProperty(cfg, key) && arrayIsArray(cfg[key]) ? addToSet(options.base ? clone(options.base) : {}, cfg[key], options.transform) : fallback;\n};\nfunction createDOMPurify() {\n let window = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getGlobal();\n const DOMPurify = root => createDOMPurify(root);\n DOMPurify.version = '3.4.12';\n DOMPurify.removed = [];\n if (!window || !window.document || window.document.nodeType !== NODE_TYPE.document || !window.Element) {\n // Not running in a browser, provide a factory function\n // so that you can pass your own Window\n DOMPurify.isSupported = false;\n return DOMPurify;\n }\n let document = window.document;\n const originalDocument = document;\n const currentScript = originalDocument.currentScript;\n window.DocumentFragment;\n const HTMLTemplateElement = window.HTMLTemplateElement,\n Node = window.Node,\n Element = window.Element,\n NodeFilter = window.NodeFilter,\n _window$NamedNodeMap = window.NamedNodeMap;\n _window$NamedNodeMap === void 0 ? window.NamedNodeMap || window.MozNamedAttrMap : _window$NamedNodeMap;\n window.HTMLFormElement;\n const DOMParser = window.DOMParser,\n trustedTypes = window.trustedTypes;\n const ElementPrototype = Element.prototype;\n const cloneNode = lookupGetter(ElementPrototype, 'cloneNode');\n const remove = lookupGetter(ElementPrototype, 'remove');\n const getNextSibling = lookupGetter(ElementPrototype, 'nextSibling');\n const getChildNodes = lookupGetter(ElementPrototype, 'childNodes');\n const getParentNode = lookupGetter(ElementPrototype, 'parentNode');\n const getShadowRoot = lookupGetter(ElementPrototype, 'shadowRoot');\n const getAttributes = lookupGetter(ElementPrototype, 'attributes');\n const getNodeType = Node && Node.prototype ? lookupGetter(Node.prototype, 'nodeType') : null;\n const getNodeName = Node && Node.prototype ? lookupGetter(Node.prototype, 'nodeName') : null;\n // As per issue #47, the web-components registry is inherited by a\n // new document created via createHTMLDocument. As per the spec\n // (http://w3c.github.io/webcomponents/spec/custom/#creating-and-passing-registries)\n // a new empty registry is used when creating a template contents owner\n // document, so we use that as our parent document to ensure nothing\n // is inherited.\n if (typeof HTMLTemplateElement === 'function') {\n const template = document.createElement('template');\n if (template.content && template.content.ownerDocument) {\n document = template.content.ownerDocument;\n }\n }\n let trustedTypesPolicy;\n let emptyHTML = '';\n // The instance's own internal Trusted Types policy. Unlike a caller-supplied\n // `TRUSTED_TYPES_POLICY`, this is created at most once — Trusted Types throws\n // on duplicate policy names — and is the only policy allowed to persist\n // across configurations and survive `clearConfig()`.\n let defaultTrustedTypesPolicy;\n let defaultTrustedTypesPolicyResolved = false;\n // Tracks whether we are already inside a call to the configured Trusted Types\n // policy (`createHTML` or `createScriptURL`). If a supplied policy callback\n // itself calls `DOMPurify.sanitize` (the cause of #1422), `sanitize` would\n // re-enter the policy and recurse until the stack overflows. We detect that\n // re-entry and throw a clear, actionable error instead. The guard is shared\n // across both callbacks, because either one re-entering `sanitize` triggers\n // the same unbounded recursion.\n let IN_TRUSTED_TYPES_POLICY = 0;\n const _assertNotInTrustedTypesPolicy = function _assertNotInTrustedTypesPolicy() {\n if (IN_TRUSTED_TYPES_POLICY > 0) {\n throw typeErrorCreate('A configured TRUSTED_TYPES_POLICY callback (createHTML or ' + 'createScriptURL) must not call DOMPurify.sanitize, as that causes ' + 'infinite recursion. Do not pass a policy whose callbacks wrap ' + 'DOMPurify as TRUSTED_TYPES_POLICY; see the \"DOMPurify and Trusted ' + 'Types\" section of the README.');\n }\n };\n const _createTrustedHTML = function _createTrustedHTML(html) {\n _assertNotInTrustedTypesPolicy();\n IN_TRUSTED_TYPES_POLICY++;\n try {\n return trustedTypesPolicy.createHTML(html);\n } finally {\n IN_TRUSTED_TYPES_POLICY--;\n }\n };\n const _createTrustedScriptURL = function _createTrustedScriptURL(scriptUrl) {\n _assertNotInTrustedTypesPolicy();\n IN_TRUSTED_TYPES_POLICY++;\n try {\n return trustedTypesPolicy.createScriptURL(scriptUrl);\n } finally {\n IN_TRUSTED_TYPES_POLICY--;\n }\n };\n // Lazily resolve (and cache) the instance's internal default policy.\n // Resolution is attempted at most once: a successful `createPolicy` cannot be\n // repeated (Trusted Types throws on duplicate names), and a failed or\n // unsupported attempt must not be retried on every parse.\n const _getDefaultTrustedTypesPolicy = function _getDefaultTrustedTypesPolicy() {\n if (!defaultTrustedTypesPolicyResolved) {\n defaultTrustedTypesPolicy = _createTrustedTypesPolicy(trustedTypes, currentScript);\n defaultTrustedTypesPolicyResolved = true;\n }\n return defaultTrustedTypesPolicy;\n };\n const _document = document,\n implementation = _document.implementation,\n createNodeIterator = _document.createNodeIterator,\n createDocumentFragment = _document.createDocumentFragment,\n getElementsByTagName = _document.getElementsByTagName;\n const importNode = originalDocument.importNode;\n let hooks = _createHooksMap();\n /**\n * Expose whether this browser supports running the full DOMPurify.\n */\n DOMPurify.isSupported = typeof entries === 'function' && typeof getParentNode === 'function' && implementation && implementation.createHTMLDocument !== undefined;\n const MUSTACHE_EXPR$1 = MUSTACHE_EXPR,\n ERB_EXPR$1 = ERB_EXPR,\n TMPLIT_EXPR$1 = TMPLIT_EXPR,\n DATA_ATTR$1 = DATA_ATTR,\n ARIA_ATTR$1 = ARIA_ATTR,\n IS_SCRIPT_OR_DATA$1 = IS_SCRIPT_OR_DATA,\n ATTR_WHITESPACE$1 = ATTR_WHITESPACE,\n CUSTOM_ELEMENT$1 = CUSTOM_ELEMENT;\n let IS_ALLOWED_URI$1 = IS_ALLOWED_URI;\n /**\n * We consider the elements and attributes below to be safe. Ideally\n * don't add any new ones but feel free to remove unwanted ones.\n */\n /* allowed element names */\n let ALLOWED_TAGS = null;\n const DEFAULT_ALLOWED_TAGS = addToSet({}, [...html$1, ...svg$1, ...svgFilters, ...mathMl$1, ...text]);\n /* Allowed attribute names */\n let ALLOWED_ATTR = null;\n const DEFAULT_ALLOWED_ATTR = addToSet({}, [...html, ...svg, ...mathMl, ...xml]);\n /*\n * Configure how DOMPurify should handle custom elements and their attributes as well as customized built-in elements.\n * @property {RegExp|Function|null} tagNameCheck one of [null, regexPattern, predicate]. Default: `null` (disallow any custom elements)\n * @property {RegExp|Function|null} attributeNameCheck one of [null, regexPattern, predicate]. Default: `null` (disallow any attributes not on the allow list)\n * @property {boolean} allowCustomizedBuiltInElements allow custom elements derived from built-ins if they pass CUSTOM_ELEMENT_HANDLING.tagNameCheck. Default: `false`.\n */\n let CUSTOM_ELEMENT_HANDLING = Object.seal(create(null, {\n tagNameCheck: {\n writable: true,\n configurable: false,\n enumerable: true,\n value: null\n },\n attributeNameCheck: {\n writable: true,\n configurable: false,\n enumerable: true,\n value: null\n },\n allowCustomizedBuiltInElements: {\n writable: true,\n configurable: false,\n enumerable: true,\n value: false\n }\n }));\n /* Explicitly forbidden tags (overrides ALLOWED_TAGS/ADD_TAGS) */\n let FORBID_TAGS = null;\n /* Explicitly forbidden attributes (overrides ALLOWED_ATTR/ADD_ATTR) */\n let FORBID_ATTR = null;\n /* Config object to store ADD_TAGS/ADD_ATTR functions (when used as functions) */\n const EXTRA_ELEMENT_HANDLING = Object.seal(create(null, {\n tagCheck: {\n writable: true,\n configurable: false,\n enumerable: true,\n value: null\n },\n attributeCheck: {\n writable: true,\n configurable: false,\n enumerable: true,\n value: null\n }\n }));\n /* Decide if ARIA attributes are okay */\n let ALLOW_ARIA_ATTR = true;\n /* Decide if custom data attributes are okay */\n let ALLOW_DATA_ATTR = true;\n /* Decide if unknown protocols are okay */\n let ALLOW_UNKNOWN_PROTOCOLS = false;\n /* Decide if self-closing tags in attributes are allowed.\n * Usually removed due to a mXSS issue in jQuery 3.0 */\n let ALLOW_SELF_CLOSE_IN_ATTR = true;\n /* Output should be safe for common template engines.\n * This means, DOMPurify removes data attributes, mustaches and ERB\n */\n let SAFE_FOR_TEMPLATES = false;\n /* Output should be safe even for XML used within HTML and alike.\n * This means, DOMPurify removes comments when containing risky content.\n */\n let SAFE_FOR_XML = true;\n /* Decide if document with ... should be returned */\n let WHOLE_DOCUMENT = false;\n /* Track whether config is already set on this instance of DOMPurify. */\n let SET_CONFIG = false;\n /* Pristine allowlist bindings captured at setConfig() time. On the\n * persistent-config path sanitize() restores the sets from these before\n * the per-walk hook clone-guard, so a hook's in-call widening cannot\n * carry across calls. Null until setConfig() is called; reset by\n * clearConfig(). */\n let SET_CONFIG_ALLOWED_TAGS = null;\n let SET_CONFIG_ALLOWED_ATTR = null;\n /* Decide if all elements (e.g. style, script) must be children of\n * document.body. By default, browsers might move them to document.head */\n let FORCE_BODY = false;\n /* Decide if a DOM `HTMLBodyElement` should be returned, instead of a html\n * string (or a TrustedHTML object if Trusted Types are supported).\n * If `WHOLE_DOCUMENT` is enabled a `HTMLHtmlElement` will be returned instead\n */\n let RETURN_DOM = false;\n /* Decide if a DOM `DocumentFragment` should be returned, instead of a html\n * string (or a TrustedHTML object if Trusted Types are supported) */\n let RETURN_DOM_FRAGMENT = false;\n /* Try to return a Trusted Type object instead of a string, return a string in\n * case Trusted Types are not supported */\n let RETURN_TRUSTED_TYPE = false;\n /* Output should be free from DOM clobbering attacks?\n * This sanitizes markups named with colliding, clobberable built-in DOM APIs.\n */\n let SANITIZE_DOM = true;\n /* Achieve full DOM Clobbering protection by isolating the namespace of named\n * properties and JS variables, mitigating attacks that abuse the HTML/DOM spec rules.\n *\n * HTML/DOM spec rules that enable DOM Clobbering:\n * - Named Access on Window (§7.3.3)\n * - DOM Tree Accessors (§3.1.5)\n * - Form Element Parent-Child Relations (§4.10.3)\n * - Iframe srcdoc / Nested WindowProxies (§4.8.5)\n * - HTMLCollection (§4.2.10.2)\n *\n * Namespace isolation is implemented by prefixing `id` and `name` attributes\n * with a constant string, i.e., `user-content-`\n */\n let SANITIZE_NAMED_PROPS = false;\n const SANITIZE_NAMED_PROPS_PREFIX = 'user-content-';\n /* Keep element content when removing element? */\n let KEEP_CONTENT = true;\n /* If a `Node` is passed to sanitize(), then performs sanitization in-place instead\n * of importing it into a new Document and returning a sanitized copy */\n let IN_PLACE = false;\n /* Allow usage of profiles like html, svg and mathMl */\n let USE_PROFILES = {};\n /* Tags to ignore content of when KEEP_CONTENT is true */\n let FORBID_CONTENTS = null;\n const DEFAULT_FORBID_CONTENTS = addToSet({}, ['annotation-xml', 'audio', 'colgroup', 'desc', 'foreignobject', 'head', 'iframe', 'math', 'mi', 'mn', 'mo', 'ms', 'mtext', 'noembed', 'noframes', 'noscript', 'plaintext', 'script',\n // mirrors the selected