diff --git a/API Server/internal/api/logbook.go b/API Server/internal/api/logbook.go index 8958bdd..0438aa0 100644 --- a/API Server/internal/api/logbook.go +++ b/API Server/internal/api/logbook.go @@ -5,6 +5,7 @@ import ( "encoding/json" "net/http" "net/url" + "strconv" "strings" "time" ) @@ -33,38 +34,66 @@ func (s *Server) requireUser(next http.HandlerFunc) http.HandlerFunc { // --------------------------------------------------------------------------- type droneRecord struct { - ID string `json:"id"` - Name string `json:"name"` - Model string `json:"model"` - Serial string `json:"serial"` - OperatorNumber string `json:"operator_number"` - MtomGrams float64 `json:"mtom_grams"` - IsToy bool `json:"is_toy"` - AutologsFlights bool `json:"autologs_flights"` - CClass string `json:"c_class"` - Organization string `json:"organization"` - Created string `json:"created"` - Updated string `json:"updated"` + ID string `json:"id"` + Name string `json:"name"` // pilot's custom label; blank on auto-added drones + Model string `json:"model"` + Serial string `json:"serial"` + Firmware string `json:"firmware"` + ControllerFirmware string `json:"controller_firmware"` + Registration string `json:"registration"` + OperatorNumber string `json:"operator_number"` + MtomGrams float64 `json:"mtom_grams"` + IsToy bool `json:"is_toy"` + AutologsFlights bool `json:"autologs_flights"` + CClass string `json:"c_class"` + Organization string `json:"organization"` + Created string `json:"created"` + Updated string `json:"updated"` } type droneView struct { - ID string `json:"id"` - Name string `json:"name"` - Model string `json:"model"` - Serial string `json:"serial"` - OperatorNumber string `json:"operatorNumber"` - MtomGrams float64 `json:"mtomGrams"` - IsToy bool `json:"isToy"` - AutologsFlights bool `json:"autologsFlights"` - CClass string `json:"cClass"` - Organization string `json:"organization"` - Created string `json:"created"` + ID string `json:"id"` + Name string `json:"name"` + DisplayName string `json:"displayName"` + Model string `json:"model"` + Serial string `json:"serial"` + Firmware string `json:"firmware"` + ControllerFirmware string `json:"controllerFirmware"` + Registration string `json:"registration"` + OperatorNumber string `json:"operatorNumber"` + MtomGrams float64 `json:"mtomGrams"` + IsToy bool `json:"isToy"` + AutologsFlights bool `json:"autologsFlights"` + CClass string `json:"cClass"` + Organization string `json:"organization"` + Created string `json:"created"` +} + +// displayName is what to call the drone in lists, logbook entries and the CSV +// export. The custom name wins; a drone auto-added on connection has none, so +// fall back to what the aircraft reported about itself. +func (d droneRecord) displayName() string { + if n := strings.TrimSpace(d.Name); n != "" { + return n + } + if m := strings.TrimSpace(d.Model); m != "" { + if s := strings.TrimSpace(d.Serial); s != "" { + return m + " · " + s + } + return m + } + if s := strings.TrimSpace(d.Serial); s != "" { + return s + } + return "Unnamed drone" } func (d droneRecord) view() droneView { return droneView{ - ID: d.ID, Name: d.Name, Model: d.Model, Serial: d.Serial, - OperatorNumber: d.OperatorNumber, MtomGrams: d.MtomGrams, IsToy: d.IsToy, + ID: d.ID, Name: d.Name, DisplayName: d.displayName(), Model: d.Model, Serial: d.Serial, + Firmware: d.Firmware, ControllerFirmware: d.ControllerFirmware, + Registration: d.Registration, OperatorNumber: d.OperatorNumber, + MtomGrams: d.MtomGrams, IsToy: d.IsToy, AutologsFlights: d.AutologsFlights, CClass: d.CClass, Organization: d.Organization, Created: d.Created, } @@ -142,7 +171,7 @@ func (f flightRecord) view(drones map[string]droneRecord) flightView { } name := "" if d != nil { - name = d.Name + name = d.displayName() } return flightView{ ID: f.ID, OperationDate: f.OperationDate, StartTime: f.StartTime, EndTime: f.EndTime, @@ -285,7 +314,9 @@ func (s *Server) dronesInScope(ctx context.Context, who *callerIdentity) (map[st var list struct { Items []droneRecord `json:"items"` } - if _, err := s.listRecords(ctx, "drones", droneScopeFilter(who), "name", &list); err != nil { + // Sorted by creation, not name: the custom name is optional, so sorting by it + // would bunch every auto-added drone together under a blank key. + if _, err := s.listRecords(ctx, "drones", droneScopeFilter(who), "created", &list); err != nil { return nil, err } m := make(map[string]droneRecord, len(list.Items)) @@ -388,15 +419,18 @@ func (s *Server) handleListDrones(w http.ResponseWriter, r *http.Request) { } type droneInput struct { - Name string `json:"name"` - Model string `json:"model"` - Serial string `json:"serial"` - OperatorNumber string `json:"operatorNumber"` - MtomGrams float64 `json:"mtomGrams"` - IsToy bool `json:"isToy"` - AutologsFlights bool `json:"autologsFlights"` - CClass string `json:"cClass"` - Organization *string `json:"organization"` // superadmin may target any org + Name string `json:"name"` // custom label; optional + Model string `json:"model"` + Serial string `json:"serial"` + Firmware string `json:"firmware"` + ControllerFirmware string `json:"controllerFirmware"` + Registration string `json:"registration"` + OperatorNumber string `json:"operatorNumber"` + MtomGrams float64 `json:"mtomGrams"` + IsToy bool `json:"isToy"` + AutologsFlights bool `json:"autologsFlights"` + CClass string `json:"cClass"` + Organization *string `json:"organization"` // superadmin may target any org } func (in droneInput) payload(who *callerIdentity) map[string]any { @@ -405,18 +439,30 @@ func (in droneInput) payload(who *callerIdentity) map[string]any { org = strings.TrimSpace(*in.Organization) } return map[string]any{ - "name": strings.TrimSpace(in.Name), - "model": strings.TrimSpace(in.Model), - "serial": strings.TrimSpace(in.Serial), - "operator_number": strings.TrimSpace(in.OperatorNumber), - "mtom_grams": in.MtomGrams, - "is_toy": in.IsToy, - "autologs_flights": in.AutologsFlights, - "c_class": strings.TrimSpace(in.CClass), - "organization": org, + "name": strings.TrimSpace(in.Name), + "model": strings.TrimSpace(in.Model), + "serial": strings.TrimSpace(in.Serial), + "firmware": strings.TrimSpace(in.Firmware), + "controller_firmware": strings.TrimSpace(in.ControllerFirmware), + "registration": strings.TrimSpace(in.Registration), + "operator_number": strings.TrimSpace(in.OperatorNumber), + "mtom_grams": in.MtomGrams, + "is_toy": in.IsToy, + "autologs_flights": in.AutologsFlights, + "c_class": strings.TrimSpace(in.CClass), + "organization": org, } } +// identifiable reports whether the input says *anything* about which aircraft +// this is. The custom name is optional (auto-added drones have none), but a +// record with no name, model and serial is not a drone, it is an empty row. +func (in droneInput) identifiable() bool { + return strings.TrimSpace(in.Name) != "" || + strings.TrimSpace(in.Model) != "" || + strings.TrimSpace(in.Serial) != "" +} + // POST /api/drones — register a drone (assigned to the caller's org). func (s *Server) handleCreateDrone(w http.ResponseWriter, r *http.Request) { who := caller(r) @@ -425,8 +471,8 @@ func (s *Server) handleCreateDrone(w http.ResponseWriter, r *http.Request) { writeError(w, http.StatusBadRequest, "invalid json") return } - if strings.TrimSpace(in.Name) == "" { - writeError(w, http.StatusBadRequest, "drone name is required") + if !in.identifiable() { + writeError(w, http.StatusBadRequest, "give the drone a custom name, model or serial") return } data, status, err := s.admin.do(r.Context(), http.MethodPost, @@ -444,6 +490,121 @@ func (s *Server) handleCreateDrone(w http.ResponseWriter, r *http.Request) { writeJSON(w, http.StatusCreated, map[string]any{"drone": d.view()}) } +// autoDroneInput is the identity a connected aircraft reports about itself. +// Everything the pilot curates by hand (custom name, registration, MTOM, class) +// is deliberately absent — the auto path never touches those. +type autoDroneInput struct { + Model string `json:"model"` + Serial string `json:"serial"` + Firmware string `json:"firmware"` + ControllerFirmware string `json:"controllerFirmware"` +} + +// findDroneBySerial looks a drone up across *all* orgs, ignoring caller scope: +// the serial is unique per airframe, so the caller's own scope is not enough to +// know whether the record already exists. +func (s *Server) findDroneBySerial(ctx context.Context, serial string) (droneRecord, bool, error) { + var list struct { + Items []droneRecord `json:"items"` + } + filter := "serial = " + strconv.Quote(serial) + if _, err := s.listRecords(ctx, "drones", filter, "created", &list); err != nil { + return droneRecord{}, false, err + } + if len(list.Items) == 0 { + return droneRecord{}, false, nil + } + return list.Items[0], true, nil +} + +// POST /api/drones/auto — upsert the drone the caller just connected, keyed by +// serial. Called by the Web App when a device reports a connected aircraft, so +// the fleet fills itself in without the pilot typing anything. +// +// Idempotent by design: it runs on every connection event, so an existing entry +// is refreshed (firmware changes as the pilot updates the aircraft) rather than +// duplicated, and the response says which happened. +func (s *Server) handleAutoDrone(w http.ResponseWriter, r *http.Request) { + who := caller(r) + var in autoDroneInput + if err := json.NewDecoder(r.Body).Decode(&in); err != nil { + writeError(w, http.StatusBadRequest, "invalid json") + return + } + serial := strings.TrimSpace(in.Serial) + if serial == "" { + // No serial means no stable identity to key on — auto-adding here would + // mint a fresh drone on every reconnect. + writeError(w, http.StatusBadRequest, "serial is required to auto-add a drone") + return + } + + existing, found, err := s.findDroneBySerial(r.Context(), serial) + if err != nil { + gatewayError(w, err) + return + } + + if found { + if !canManageDrone(who, existing) { + writeError(w, http.StatusConflict, "this drone is registered to another organisation") + return + } + // Refresh only what the aircraft is authoritative about, and only when it + // actually reported a value — a nil/absent field means "not resolved yet" + // (serial and firmware resolve on different schedules), never "cleared". + patch := map[string]any{} + if m := strings.TrimSpace(in.Model); m != "" && m != existing.Model { + patch["model"] = m + } + if f := strings.TrimSpace(in.Firmware); f != "" && f != existing.Firmware { + patch["firmware"] = f + } + if cf := strings.TrimSpace(in.ControllerFirmware); cf != "" && cf != existing.ControllerFirmware { + patch["controller_firmware"] = cf + } + if len(patch) == 0 { + writeJSON(w, http.StatusOK, map[string]any{"drone": existing.view(), "created": false, "updated": false}) + return + } + data, status, err := s.admin.do(r.Context(), http.MethodPatch, + "/api/collections/drones/records/"+url.PathEscape(existing.ID), patch) + if err != nil { + gatewayError(w, err) + return + } + if status != http.StatusOK { + relayRaw(w, status, data) + return + } + var d droneRecord + _ = json.Unmarshal(data, &d) + writeJSON(w, http.StatusOK, map[string]any{"drone": d.view(), "created": false, "updated": true}) + return + } + + // New airframe: record what it reported and leave the curated fields blank + // for the pilot to fill in on the Drones tab. + payload := droneInput{ + Model: strings.TrimSpace(in.Model), + Serial: serial, + Firmware: strings.TrimSpace(in.Firmware), + ControllerFirmware: strings.TrimSpace(in.ControllerFirmware), + }.payload(who) + data, status, err := s.admin.do(r.Context(), http.MethodPost, "/api/collections/drones/records", payload) + if err != nil { + gatewayError(w, err) + return + } + if status != http.StatusOK { + relayRaw(w, status, data) + return + } + var d droneRecord + _ = json.Unmarshal(data, &d) + writeJSON(w, http.StatusCreated, map[string]any{"drone": d.view(), "created": true, "updated": false}) +} + // PATCH /api/drones/{id} — update a drone (must be in the caller's scope). func (s *Server) handleUpdateDrone(w http.ResponseWriter, r *http.Request) { who := caller(r) @@ -466,8 +627,8 @@ func (s *Server) handleUpdateDrone(w http.ResponseWriter, r *http.Request) { writeError(w, http.StatusBadRequest, "invalid json") return } - if strings.TrimSpace(in.Name) == "" { - writeError(w, http.StatusBadRequest, "drone name is required") + if !in.identifiable() { + writeError(w, http.StatusBadRequest, "give the drone a custom name, model or serial") return } // Preserve org ownership unless a superadmin explicitly retargets it. diff --git a/API Server/internal/api/logbook_export.go b/API Server/internal/api/logbook_export.go index ec09ed6..859e8cf 100644 --- a/API Server/internal/api/logbook_export.go +++ b/API Server/internal/api/logbook_export.go @@ -41,7 +41,7 @@ func (s *Server) handleExportLogbook(w http.ResponseWriter, r *http.Request) { _ = cw.Write([]string{ "operation_date", "start_time", "end_time", - "drone_name", "drone_model", "drone_serial", "operator_number", + "drone_name", "drone_model", "drone_serial", "drone_registration", "operator_number", "area_or_route", "max_altitude_agl_m", "remote_pilot", "certificate_ref", "category", "purpose", "logging_path", "fdr_log_url", "authorisation_ref", @@ -55,9 +55,10 @@ func (s *Server) handleExportLogbook(w http.ResponseWriter, r *http.Request) { d = &dr } c := computeCompliance(f, d) - droneName, model, serial, opNo := "", "", "", "" + droneName, model, serial, reg, opNo := "", "", "", "", "" if d != nil { - droneName, model, serial, opNo = d.Name, d.Model, d.Serial, d.OperatorNumber + droneName, model, serial = d.displayName(), d.Model, d.Serial + reg, opNo = d.Registration, d.OperatorNumber } alt := "" if f.MaxAltitudeAGL > 0 { @@ -65,7 +66,7 @@ func (s *Server) handleExportLogbook(w http.ResponseWriter, r *http.Request) { } _ = cw.Write([]string{ day(f.OperationDate), f.StartTime, f.EndTime, - droneName, model, serial, opNo, + droneName, model, serial, reg, opNo, f.AreaRoute, alt, f.PilotName, f.CertificateRef, f.Category, f.Purpose, c.LoggingPath, f.RawFDRLogURL, f.AuthorisationRef, diff --git a/API Server/internal/api/server.go b/API Server/internal/api/server.go index 7b33d79..b48bc7d 100644 --- a/API Server/internal/api/server.go +++ b/API Server/internal/api/server.go @@ -150,6 +150,7 @@ func (s *Server) Handler() http.Handler { // inside the handlers, so the shared requireUser gate suffices. mux.HandleFunc("GET /api/drones", s.requireUser(s.handleListDrones)) mux.HandleFunc("POST /api/drones", s.requireUser(s.handleCreateDrone)) + mux.HandleFunc("POST /api/drones/auto", s.requireUser(s.handleAutoDrone)) mux.HandleFunc("PATCH /api/drones/{id}", s.requireUser(s.handleUpdateDrone)) mux.HandleFunc("DELETE /api/drones/{id}", s.requireUser(s.handleDeleteDrone)) mux.HandleFunc("GET /api/flights", s.requireUser(s.handleListFlights)) diff --git a/API Server/internal/hub/hub.go b/API Server/internal/hub/hub.go index c0f89e6..212e597 100644 --- a/API Server/internal/hub/hub.go +++ b/API Server/internal/hub/hub.go @@ -182,11 +182,22 @@ func (h *Hub) Ingest(deviceID string, raw map[string]any) { s.Connected = c if !c { s.Telemetry = Telemetry{} // drone unlinked: live telemetry is no longer valid + s.Serial, s.Firmware, s.ControllerFirmware = "", "", "" } } if m, ok := raw["model"].(string); ok { s.Model = m } + if s.Connected { + applyIdentity(s, raw) + } + case "identity": + // Ignore identity that arrives after a disconnect: the Fly App forwards + // every SDK event upstream before its own connected-check, so a callback + // resolving late would otherwise repopulate what the disconnect cleared. + if s.Connected { + applyIdentity(s, raw) + } case "battery": if p, ok := toInt(raw["percent"]); ok { s.Telemetry.BatteryPercent = &p diff --git a/API Server/internal/hub/models.go b/API Server/internal/hub/models.go index 4054a67..aecc5a8 100644 --- a/API Server/internal/hub/models.go +++ b/API Server/internal/hub/models.go @@ -23,13 +23,22 @@ type Telemetry struct { // DeviceState is the server's aggregated view of one app/drone. type DeviceState struct { - DeviceID string `json:"deviceId"` - Online bool `json:"online"` // app's websocket is connected to the server - Connected bool `json:"connected"` // a drone is connected to the app - Model string `json:"model"` - Registration string `json:"registration"` - Telemetry Telemetry `json:"telemetry"` - LastSeenMs int64 `json:"lastSeenMs"` + DeviceID string `json:"deviceId"` + Online bool `json:"online"` // app's websocket is connected to the server + Connected bool `json:"connected"` // a drone is connected to the app + Model string `json:"model"` + // Registration is the *SDK* registration state reported by the Fly App + // ("success", "failed", …) — not the aircraft's FAA/CAA registration number, + // which lives on the drone's logbook record. + Registration string `json:"registration"` + // Identity of the connected aircraft, as it reports itself. Serial and the + // two firmware versions resolve asynchronously after connect, each on its own + // schedule, so these fill in over several events rather than all at once. + Serial string `json:"serial"` + Firmware string `json:"firmware"` + ControllerFirmware string `json:"controllerFirmware"` + Telemetry Telemetry `json:"telemetry"` + LastSeenMs int64 `json:"lastSeenMs"` } // TrackPoint is one sample of the drone's GPS track (for the map trail). @@ -84,6 +93,22 @@ func toInt(v any) (int, bool) { return 0, false } +// applyIdentity copies the aircraft's self-reported identity from a raw event. +// A field the event omits (or reports null) means "not resolved yet" — the SDK +// answers serial in seconds but firmware can take far longer — so an absent +// value never clears one an earlier event already delivered. +func applyIdentity(s *DeviceState, raw map[string]any) { + if v, ok := raw["serial"].(string); ok && v != "" { + s.Serial = v + } + if v, ok := raw["firmware"].(string); ok && v != "" { + s.Firmware = v + } + if v, ok := raw["controllerFirmware"].(string); ok && v != "" { + s.ControllerFirmware = v + } +} + // applyTelemetry copies any present telemetry fields from a raw event map. func applyTelemetry(t *Telemetry, raw map[string]any) { if v, ok := toInt(raw["satelliteCount"]); ok { diff --git a/API Server/pocketbase/pb_migrations/1720300900_add_drone_identity.js b/API Server/pocketbase/pb_migrations/1720300900_add_drone_identity.js new file mode 100644 index 0000000..f8eeb64 --- /dev/null +++ b/API Server/pocketbase/pb_migrations/1720300900_add_drone_identity.js @@ -0,0 +1,58 @@ +/// + +// Extends `drones` with the identity a connected aircraft reports over the wire +// (serial + firmware were already modelled; the firmware versions and the +// aircraft registration were not), so that connecting a drone in the Fly App can +// auto-populate its fleet entry in the Web App's Drones tab. +// +// Added fields: +// - firmware aircraft firmware package version (auto-filled) +// - controller_firmware remote-controller firmware version (auto-filled) +// - registration FAA/CAA aircraft registration number (hand-entered). +// Distinct from `operator_number`, which is the EU/ +// Trafikstyrelsen *operator* ID displayed on the drone. +// +// `name` is also relaxed to optional: it is the pilot's custom label, and a +// drone auto-added on connection has no label until the pilot gives it one (the +// UI falls back to model + serial). +// +// Apply by copying into your PocketBase deployment's `pb_migrations/` directory +// and restarting. Written for PocketBase v0.22+/v0.23. Idempotent: each field is +// added only if absent, so re-running is a no-op. +// +// Depends on 1720300700_add_logbook.js (drones). +migrate( + (app) => { + const drones = app.findCollectionByNameOrId('drones') + + const add = (field) => { + if (!drones.fields.find((f) => f.name === field.name)) drones.fields.add(new Field(field)) + } + + add({ name: 'firmware', type: 'text', max: 80 }) + add({ name: 'controller_firmware', type: 'text', max: 80 }) + add({ name: 'registration', type: 'text', max: 60 }) + + // The custom name is optional — auto-added drones arrive unnamed. + const name = drones.fields.find((f) => f.name === 'name') + if (name) name.required = false + + // One fleet entry per serial: the auto-add path keys off the serial, and a + // duplicate would silently fork a drone's history across two records. + const idx = 'CREATE UNIQUE INDEX `idx_drones_serial` ON `drones` (`serial`) WHERE `serial` != \'\'' + if (!drones.indexes.find((i) => i.includes('idx_drones_serial'))) drones.indexes.push(idx) + + app.save(drones) + }, + (app) => { + const drones = app.findCollectionByNameOrId('drones') + for (const n of ['firmware', 'controller_firmware', 'registration']) { + const f = drones.fields.find((x) => x.name === n) + if (f) drones.fields.removeById(f.id) + } + const name = drones.fields.find((f) => f.name === 'name') + if (name) name.required = true + drones.indexes = drones.indexes.filter((i) => !i.includes('idx_drones_serial')) + app.save(drones) + }, +) diff --git a/Fly App/android/app/src/main/kotlin/com/dji/flutter/dji_msdk_sample/DjiSdkBridge.kt b/Fly App/android/app/src/main/kotlin/com/dji/flutter/dji_msdk_sample/DjiSdkBridge.kt index 8b25187..84627a2 100644 --- a/Fly App/android/app/src/main/kotlin/com/dji/flutter/dji_msdk_sample/DjiSdkBridge.kt +++ b/Fly App/android/app/src/main/kotlin/com/dji/flutter/dji_msdk_sample/DjiSdkBridge.kt @@ -64,6 +64,13 @@ class DjiSdkBridge( @Volatile private var firmwareVersion: String? = null + /** + * The *remote controller's* own firmware — a separate quantity from the + * aircraft's package version above, and legitimately read from the component + * (unlike the flight controller's version, see [fetchIdentity]). + */ + @Volatile private var controllerFirmwareVersion: String? = null + /** Invalidates in-flight identity retries when the product changes or drops. */ @Volatile private var identityGeneration = 0 @@ -162,12 +169,14 @@ class DjiSdkBridge( } override fun onProductConnect(product: BaseProduct?) { + resetIdentityCache() emit(connectionMap(product)) bindComponentCallbacks(product) startIdentityFetch() } override fun onProductChanged(product: BaseProduct?) { + resetIdentityCache() emit(connectionMap(product)) bindComponentCallbacks(product) startIdentityFetch() @@ -205,6 +214,7 @@ class DjiSdkBridge( "connected" to connected, "model" to model, "firmware" to (product?.firmwarePackageVersion ?: firmwareVersion), + "controllerFirmware" to controllerFirmwareVersion, "serial" to serialNumber, ) } @@ -221,12 +231,30 @@ class DjiSdkBridge( } } + /** + * Forgets the identity of whatever aircraft was connected before, synchronously. + * + * Must run *before* the `connection` event is built: [connectionMap] falls back + * to these cached values (the SDK answers null for a fresh product), so on + * `onProductChanged` a serial left over from the previous airframe would be + * published as if it belonged to the new one — and the Web App would file the + * new aircraft's model and firmware against the old drone in the pilot's fleet. + * Volatile writes, so it is safe on the SDK's arbitrary callback threads; the + * worst case is dropping a just-resolved value that the retry chain re-fetches. + */ + private fun resetIdentityCache() { + serialNumber = null + firmwareVersion = null + controllerFirmwareVersion = null + } + /** Drops the cached identity and strands any retry queued for the old product. */ private fun clearIdentity() { mainHandler.post { identityGeneration++ serialNumber = null firmwareVersion = null + controllerFirmwareVersion = null } } @@ -278,7 +306,27 @@ class DjiSdkBridge( // is the only source for this field — leave it blank until it is readable. } - if ((serialNumber == null || firmwareVersion == null) && attempt + 1 < IDENTITY_MAX_ATTEMPTS) { + // The remote controller's firmware, by contrast, is exactly what its own + // component reports — a distinct field, not a stand-in for the aircraft's. + if (controllerFirmwareVersion == null) { + (product as? Aircraft)?.remoteController?.getFirmwareVersion( + object : CommonCallbacks.CompletionCallbackWith { + override fun onSuccess(value: String?) { + if (value.isNullOrBlank()) return + mainHandler.post { + if (generation != identityGeneration || controllerFirmwareVersion == value) return@post + controllerFirmwareVersion = value + emitIdentity() + } + } + + override fun onFailure(error: DJIError?) = Unit + }, + ) + } + + val pending = serialNumber == null || firmwareVersion == null || controllerFirmwareVersion == null + if (pending && attempt + 1 < IDENTITY_MAX_ATTEMPTS) { mainHandler.postDelayed({ fetchIdentity(generation, attempt + 1) }, IDENTITY_RETRY_MS) } } @@ -296,6 +344,7 @@ class DjiSdkBridge( "type" to "identity", "serial" to serialNumber, "firmware" to firmwareVersion, + "controllerFirmware" to controllerFirmwareVersion, ) ) } diff --git a/Fly App/lib/flight_model.dart b/Fly App/lib/flight_model.dart index 6f6f2cd..20f94dd 100644 --- a/Fly App/lib/flight_model.dart +++ b/Fly App/lib/flight_model.dart @@ -69,6 +69,8 @@ class FlightModel extends ChangeNotifier { bool connected = false; String? model; String? firmwareVersion; + /// The remote controller's own firmware — distinct from the aircraft's above. + String? controllerFirmwareVersion; String? serialNumber; // ── Flight controller telemetry ──────────────────────────────────────────── diff --git a/Fly App/lib/main.dart b/Fly App/lib/main.dart index df20eda..5ba2acc 100644 --- a/Fly App/lib/main.dart +++ b/Fly App/lib/main.dart @@ -153,6 +153,7 @@ class _HomePageState extends State { _model.connected = event['connected'] as bool? ?? false; _model.model = event['model'] as String?; _model.firmwareVersion = event['firmware'] as String?; + _model.controllerFirmwareVersion = event['controllerFirmware'] as String?; _model.serialNumber = event['serial'] as String?; if (!_model.connected) _clearTelemetry(); _model.bump(); @@ -164,6 +165,8 @@ class _HomePageState extends State { if (!_model.connected) break; _model.serialNumber = event['serial'] as String? ?? _model.serialNumber; _model.firmwareVersion = event['firmware'] as String? ?? _model.firmwareVersion; + _model.controllerFirmwareVersion = + event['controllerFirmware'] as String? ?? _model.controllerFirmwareVersion; _model.bump(); break; case 'telemetry': @@ -268,6 +271,7 @@ class _HomePageState extends State { _model.isRecording = false; _model.recordSeconds = 0; _model.firmwareVersion = null; + _model.controllerFirmwareVersion = null; _model.serialNumber = null; } diff --git a/Fly App/lib/ui/settings_menu_page.dart b/Fly App/lib/ui/settings_menu_page.dart index a520981..52e35f0 100644 --- a/Fly App/lib/ui/settings_menu_page.dart +++ b/Fly App/lib/ui/settings_menu_page.dart @@ -136,6 +136,7 @@ class _SettingsMenuPageState extends State { ('Model', _m.model ?? '—'), ('Serial Number', _m.serialNumber ?? '—'), ('Firmware', _m.firmwareVersion ?? '—'), + ('Controller Firmware', _m.controllerFirmwareVersion ?? '—'), ('MSDK', _m.sdkVersion), ])), }; diff --git a/Web App/server/bff.go b/Web App/server/bff.go index 8ce976a..854ccdc 100644 --- a/Web App/server/bff.go +++ b/Web App/server/bff.go @@ -442,6 +442,15 @@ func (a *App) handleCreateDrone(w http.ResponseWriter, r *http.Request) { a.doRelay(w, req) } +// POST /bff/drones/auto → API Server /api/drones/auto +func (a *App) handleAutoDrone(w http.ResponseWriter, r *http.Request) { + body, _ := io.ReadAll(r.Body) + req, _ := http.NewRequest(http.MethodPost, a.apiBaseFor(r)+"/api/drones/auto", bytes.NewReader(body)) + req.Header.Set("Authorization", tokenOf(r)) + req.Header.Set("Content-Type", "application/json") + a.doRelay(w, req) +} + // PATCH /bff/drones/{id} → API Server /api/drones/{id} func (a *App) handleUpdateDrone(w http.ResponseWriter, r *http.Request) { id := r.PathValue("id") diff --git a/Web App/server/dist/assets/index-CHTNTK5I.js b/Web App/server/dist/assets/index-CHTNTK5I.js deleted file mode 100644 index e05d059..0000000 --- a/Web App/server/dist/assets/index-CHTNTK5I.js +++ /dev/null @@ -1,20 +0,0 @@ -(function(){const i=document.createElement("link").relList;if(i&&i.supports&&i.supports("modulepreload"))return;for(const u of document.querySelectorAll('link[rel="modulepreload"]'))l(u);new MutationObserver(u=>{for(const f of u)if(f.type==="childList")for(const h of f.addedNodes)h.tagName==="LINK"&&h.rel==="modulepreload"&&l(h)}).observe(document,{childList:!0,subtree:!0});function s(u){const f={};return u.integrity&&(f.integrity=u.integrity),u.referrerPolicy&&(f.referrerPolicy=u.referrerPolicy),u.crossOrigin==="use-credentials"?f.credentials="include":u.crossOrigin==="anonymous"?f.credentials="omit":f.credentials="same-origin",f}function l(u){if(u.ep)return;u.ep=!0;const f=s(u);fetch(u.href,f)}})();/** -* @vue/shared v3.5.39 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/function Xr(t){const i=Object.create(null);for(const s of t.split(","))i[s]=1;return s=>s in i}const wt={},es=[],di=()=>{},Ou=()=>!1,ja=t=>t.charCodeAt(0)===111&&t.charCodeAt(1)===110&&(t.charCodeAt(2)>122||t.charCodeAt(2)<97),Wa=t=>t.startsWith("onUpdate:"),Ht=Object.assign,Qr=(t,i)=>{const s=t.indexOf(i);s>-1&&t.splice(s,1)},pd=Object.prototype.hasOwnProperty,vt=(t,i)=>pd.call(t,i),De=Array.isArray,ts=t=>ea(t)==="[object Map]",ls=t=>ea(t)==="[object Set]",Ll=t=>ea(t)==="[object Date]",Ge=t=>typeof t=="function",Ct=t=>typeof t=="string",ti=t=>typeof t=="symbol",_t=t=>t!==null&&typeof t=="object",zu=t=>(_t(t)||Ge(t))&&Ge(t.then)&&Ge(t.catch),Iu=Object.prototype.toString,ea=t=>Iu.call(t),md=t=>ea(t).slice(8,-1),$u=t=>ea(t)==="[object Object]",el=t=>Ct(t)&&t!=="NaN"&&t[0]!=="-"&&""+parseInt(t,10)===t,Rs=Xr(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Ka=t=>{const i=Object.create(null);return(s=>i[s]||(i[s]=t(s)))},gd=/-\w/g,Qn=Ka(t=>t.replace(gd,i=>i.slice(1).toUpperCase())),vd=/\B([A-Z])/g,eo=Ka(t=>t.replace(vd,"-$1").toLowerCase()),Nu=Ka(t=>t.charAt(0).toUpperCase()+t.slice(1)),xr=Ka(t=>t?`on${Nu(t)}`:""),ci=(t,i)=>!Object.is(t,i),Ea=(t,...i)=>{for(let s=0;s{Object.defineProperty(t,i,{configurable:!0,enumerable:!1,writable:l,value:s})},Ga=t=>{const i=parseFloat(t);return isNaN(i)?t:i},_d=t=>{const i=Ct(t)?Number(t):NaN;return isNaN(i)?t:i};let Al;const qa=()=>Al||(Al=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Mo(t){if(De(t)){const i={};for(let s=0;s{if(s){const l=s.split(yd);l.length>1&&(i[l[0].trim()]=l[1].trim())}}),i}function Ae(t){let i="";if(Ct(t))i=t;else if(De(t))for(let s=0;sJi(s,i))}const Ru=t=>!!(t&&t.__v_isRef===!0),w=t=>Ct(t)?t:t==null?"":De(t)||_t(t)&&(t.toString===Iu||!Ge(t.toString))?Ru(t)?w(t.value):JSON.stringify(t,Bu,2):String(t),Bu=(t,i)=>Ru(i)?Bu(t,i.value):ts(i)?{[`Map(${i.size})`]:[...i.entries()].reduce((s,[l,u],f)=>(s[wr(l,f)+" =>"]=u,s),{})}:ls(i)?{[`Set(${i.size})`]:[...i.values()].map(s=>wr(s))}:ti(i)?wr(i):_t(i)&&!De(i)&&!$u(i)?String(i):i,wr=(t,i="")=>{var s;return ti(t)?`Symbol(${(s=t.description)!=null?s:i})`:t};/** -* @vue/reactivity v3.5.39 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let Wt;class Pd{constructor(i=!1){this.detached=i,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this._warnOnRun=!0,this.__v_skip=!0,!i&&Wt&&(Wt.active?(this.parent=Wt,this.index=(Wt.scopes||(Wt.scopes=[])).push(this)-1):(this._active=!1,this._warnOnRun=!1))}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let i,s;if(this.scopes)for(i=0,s=this.scopes.length;i0&&--this._on===0){if(Wt===this)Wt=this.prevScope;else{let i=Wt;for(;i;){if(i.prevScope===this){i.prevScope=this.prevScope;break}i=i.prevScope}}this.prevScope=void 0}}stop(i){if(this._active){this._active=!1;let s,l;for(s=0,l=this.effects.length;s0)return;if(Us){let i=Us;for(Us=void 0;i;){const s=i.next;i.next=void 0,i.flags&=-9,i=s}}let t;for(;Bs;){let i=Bs;for(Bs=void 0;i;){const s=i.next;if(i.next=void 0,i.flags&=-9,i.flags&1)try{i.trigger()}catch(l){t||(t=l)}i=s}}if(t)throw t}function Hu(t){for(let i=t.deps;i;i=i.nextDep)i.version=-1,i.prevActiveLink=i.dep.activeLink,i.dep.activeLink=i}function ju(t){let i,s=t.depsTail,l=s;for(;l;){const u=l.prevDep;l.version===-1?(l===s&&(s=u),ol(l),Ld(l)):i=l,l.dep.activeLink=l.prevActiveLink,l.prevActiveLink=void 0,l=u}t.deps=i,t.depsTail=s}function $r(t){for(let i=t.deps;i;i=i.nextDep)if(i.dep.version!==i.version||i.dep.computed&&(Wu(i.dep.computed)||i.dep.version!==i.version))return!0;return!!t._dirty}function Wu(t){if(t.flags&4&&!(t.flags&16)||(t.flags&=-17,t.globalVersion===Ws)||(t.globalVersion=Ws,!t.isSSR&&t.flags&128&&(!t.deps&&!t._dirty||!$r(t))))return;t.flags|=2;const i=t.dep,s=St,l=ei;St=t,ei=!0;try{Hu(t);const u=t.fn(t._value);(i.version===0||ci(u,t._value))&&(t.flags|=128,t._value=u,i.version++)}catch(u){throw i.version++,u}finally{St=s,ei=l,ju(t),t.flags&=-3}}function ol(t,i=!1){const{dep:s,prevSub:l,nextSub:u}=t;if(l&&(l.nextSub=u,t.prevSub=void 0),u&&(u.prevSub=l,t.nextSub=void 0),s.subs===t&&(s.subs=l,!l&&s.computed)){s.computed.flags&=-5;for(let f=s.computed.deps;f;f=f.nextDep)ol(f,!0)}!i&&!--s.sc&&s.map&&s.map.delete(s.key)}function Ld(t){const{prevDep:i,nextDep:s}=t;i&&(i.nextDep=s,t.prevDep=void 0),s&&(s.prevDep=i,t.nextDep=void 0)}let ei=!0;const Ku=[];function fi(){Ku.push(ei),ei=!1}function hi(){const t=Ku.pop();ei=t===void 0?!0:t}function Ml(t){const{cleanup:i}=t;if(t.cleanup=void 0,i){const s=St;St=void 0;try{i()}finally{St=s}}}let Ws=0;class Ad{constructor(i,s){this.sub=i,this.dep=s,this.version=s.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class sl{constructor(i){this.computed=i,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(i){if(!St||!ei||St===this.computed)return;let s=this.activeLink;if(s===void 0||s.sub!==St)s=this.activeLink=new Ad(St,this),St.deps?(s.prevDep=St.depsTail,St.depsTail.nextDep=s,St.depsTail=s):St.deps=St.depsTail=s,Gu(s);else if(s.version===-1&&(s.version=this.version,s.nextDep)){const l=s.nextDep;l.prevDep=s.prevDep,s.prevDep&&(s.prevDep.nextDep=l),s.prevDep=St.depsTail,s.nextDep=void 0,St.depsTail.nextDep=s,St.depsTail=s,St.deps===s&&(St.deps=l)}return s}trigger(i){this.version++,Ws++,this.notify(i)}notify(i){nl();try{for(let s=this.subs;s;s=s.prevSub)s.sub.notify()&&s.sub.dep.notify()}finally{il()}}}function Gu(t){if(t.dep.sc++,t.sub.flags&4){const i=t.dep.computed;if(i&&!t.dep.subs){i.flags|=20;for(let l=i.deps;l;l=l.nextDep)Gu(l)}const s=t.dep.subs;s!==t&&(t.prevSub=s,s&&(s.nextSub=t)),t.dep.subs=t}}const Nr=new WeakMap,Lo=Symbol(""),Dr=Symbol(""),Ks=Symbol("");function tn(t,i,s){if(ei&&St){let l=Nr.get(t);l||Nr.set(t,l=new Map);let u=l.get(s);u||(l.set(s,u=new sl),u.map=l,u.key=s),u.track()}}function Ci(t,i,s,l,u,f){const h=Nr.get(t);if(!h){Ws++;return}const _=y=>{y&&y.trigger()};if(nl(),i==="clear")h.forEach(_);else{const y=De(t),C=y&&el(s);if(y&&s==="length"){const T=Number(l);h.forEach((M,U)=>{(U==="length"||U===Ks||!ti(U)&&U>=T)&&_(M)})}else switch((s!==void 0||h.has(void 0))&&_(h.get(s)),C&&_(h.get(Ks)),i){case"add":y?C&&_(h.get("length")):(_(h.get(Lo)),ts(t)&&_(h.get(Dr)));break;case"delete":y||(_(h.get(Lo)),ts(t)&&_(h.get(Dr)));break;case"set":ts(t)&&_(h.get(Lo));break}}il()}function Xo(t){const i=pt(t);return i===t?i:(tn(i,"iterate",Ks),Hn(t)?i:i.map(ni))}function Ya(t){return tn(t=pt(t),"iterate",Ks),t}function li(t,i){return Mi(t)?as(Ao(t)?ni(i):i):ni(i)}const Md={__proto__:null,[Symbol.iterator](){return Sr(this,Symbol.iterator,t=>li(this,t))},concat(...t){return Xo(this).concat(...t.map(i=>De(i)?Xo(i):i))},entries(){return Sr(this,"entries",t=>(t[1]=li(this,t[1]),t))},every(t,i){return ki(this,"every",t,i,void 0,arguments)},filter(t,i){return ki(this,"filter",t,i,s=>s.map(l=>li(this,l)),arguments)},find(t,i){return ki(this,"find",t,i,s=>li(this,s),arguments)},findIndex(t,i){return ki(this,"findIndex",t,i,void 0,arguments)},findLast(t,i){return ki(this,"findLast",t,i,s=>li(this,s),arguments)},findLastIndex(t,i){return ki(this,"findLastIndex",t,i,void 0,arguments)},forEach(t,i){return ki(this,"forEach",t,i,void 0,arguments)},includes(...t){return Tr(this,"includes",t)},indexOf(...t){return Tr(this,"indexOf",t)},join(t){return Xo(this).join(t)},lastIndexOf(...t){return Tr(this,"lastIndexOf",t)},map(t,i){return ki(this,"map",t,i,void 0,arguments)},pop(){return Es(this,"pop")},push(...t){return Es(this,"push",t)},reduce(t,...i){return El(this,"reduce",t,i)},reduceRight(t,...i){return El(this,"reduceRight",t,i)},shift(){return Es(this,"shift")},some(t,i){return ki(this,"some",t,i,void 0,arguments)},splice(...t){return Es(this,"splice",t)},toReversed(){return Xo(this).toReversed()},toSorted(t){return Xo(this).toSorted(t)},toSpliced(...t){return Xo(this).toSpliced(...t)},unshift(...t){return Es(this,"unshift",t)},values(){return Sr(this,"values",t=>li(this,t))}};function Sr(t,i,s){const l=Ya(t),u=l[i]();return l!==t&&!Hn(t)&&(u._next=u.next,u.next=()=>{const f=u._next();return f.done||(f.value=s(f.value)),f}),u}const Ed=Array.prototype;function ki(t,i,s,l,u,f){const h=Ya(t),_=h!==t&&!Hn(t),y=h[i];if(y!==Ed[i]){const M=y.apply(t,f);return _?ni(M):M}let C=s;h!==t&&(_?C=function(M,U){return s.call(this,li(t,M),U,t)}:s.length>2&&(C=function(M,U){return s.call(this,M,U,t)}));const T=y.call(h,C,l);return _&&u?u(T):T}function El(t,i,s,l){const u=Ya(t),f=u!==t&&!Hn(t);let h=s,_=!1;u!==t&&(f?(_=l.length===0,h=function(C,T,M){return _&&(_=!1,C=li(t,C)),s.call(this,C,li(t,T),M,t)}):s.length>3&&(h=function(C,T,M){return s.call(this,C,T,M,t)}));const y=u[i](h,...l);return _?li(t,y):y}function Tr(t,i,s){const l=pt(t);tn(l,"iterate",Ks);const u=l[i](...s);return(u===-1||u===!1)&&ll(s[0])?(s[0]=pt(s[0]),l[i](...s)):u}function Es(t,i,s=[]){fi(),nl();const l=pt(t)[i].apply(t,s);return il(),hi(),l}const Od=Xr("__proto__,__v_isRef,__isVue"),qu=new Set(Object.getOwnPropertyNames(Symbol).filter(t=>t!=="arguments"&&t!=="caller").map(t=>Symbol[t]).filter(ti));function zd(t){ti(t)||(t=String(t));const i=pt(this);return tn(i,"has",t),i.hasOwnProperty(t)}class Yu{constructor(i=!1,s=!1){this._isReadonly=i,this._isShallow=s}get(i,s,l){if(s==="__v_skip")return i.__v_skip;const u=this._isReadonly,f=this._isShallow;if(s==="__v_isReactive")return!u;if(s==="__v_isReadonly")return u;if(s==="__v_isShallow")return f;if(s==="__v_raw")return l===(u?f?Zd:ec:f?Qu:Xu).get(i)||Object.getPrototypeOf(i)===Object.getPrototypeOf(l)?i:void 0;const h=De(i);if(!u){let y;if(h&&(y=Md[s]))return y;if(s==="hasOwnProperty")return zd}const _=Reflect.get(i,s,sn(i)?i:l);if((ti(s)?qu.has(s):Od(s))||(u||tn(i,"get",s),f))return _;if(sn(_)){const y=h&&el(s)?_:_.value;return u&&_t(y)?Rr(y):y}return _t(_)?u?Rr(_):xt(_):_}}class Ju extends Yu{constructor(i=!1){super(!1,i)}set(i,s,l,u){let f=i[s];const h=De(i)&&el(s);if(!this._isShallow){const C=Mi(f);if(!Hn(l)&&!Mi(l)&&(f=pt(f),l=pt(l)),!h&&sn(f)&&!sn(l))return C||(f.value=l),!0}const _=h?Number(s)t,Ta=t=>Reflect.getPrototypeOf(t);function Fd(t,i,s){return function(...l){const u=this.__v_raw,f=pt(u),h=ts(f),_=t==="entries"||t===Symbol.iterator&&h,y=t==="keys"&&h,C=u[t](...l),T=s?Fr:i?as:ni;return!i&&tn(f,"iterate",y?Dr:Lo),Ht(Object.create(C),{next(){const{value:M,done:U}=C.next();return U?{value:M,done:U}:{value:_?[T(M[0]),T(M[1])]:T(M),done:U}}})}}function Pa(t){return function(...i){return t==="delete"?!1:t==="clear"?void 0:this}}function Rd(t,i){const s={get(u){const f=this.__v_raw,h=pt(f),_=pt(u);t||(ci(u,_)&&tn(h,"get",u),tn(h,"get",_));const{has:y}=Ta(h),C=i?Fr:t?as:ni;if(y.call(h,u))return C(f.get(u));if(y.call(h,_))return C(f.get(_));f!==h&&f.get(u)},get size(){const u=this.__v_raw;return!t&&tn(pt(u),"iterate",Lo),u.size},has(u){const f=this.__v_raw,h=pt(f),_=pt(u);return t||(ci(u,_)&&tn(h,"has",u),tn(h,"has",_)),u===_?f.has(u):f.has(u)||f.has(_)},forEach(u,f){const h=this,_=h.__v_raw,y=pt(_),C=i?Fr:t?as:ni;return!t&&tn(y,"iterate",Lo),_.forEach((T,M)=>u.call(f,C(T),C(M),h))}};return Ht(s,t?{add:Pa("add"),set:Pa("set"),delete:Pa("delete"),clear:Pa("clear")}:{add(u){const f=pt(this),h=Ta(f),_=pt(u),y=!i&&!Hn(u)&&!Mi(u)?_:u;return h.has.call(f,y)||ci(u,y)&&h.has.call(f,u)||ci(_,y)&&h.has.call(f,_)||(f.add(y),Ci(f,"add",y,y)),this},set(u,f){!i&&!Hn(f)&&!Mi(f)&&(f=pt(f));const h=pt(this),{has:_,get:y}=Ta(h);let C=_.call(h,u);C||(u=pt(u),C=_.call(h,u));const T=y.call(h,u);return h.set(u,f),C?ci(f,T)&&Ci(h,"set",u,f):Ci(h,"add",u,f),this},delete(u){const f=pt(this),{has:h,get:_}=Ta(f);let y=h.call(f,u);y||(u=pt(u),y=h.call(f,u)),_&&_.call(f,u);const C=f.delete(u);return y&&Ci(f,"delete",u,void 0),C},clear(){const u=pt(this),f=u.size!==0,h=u.clear();return f&&Ci(u,"clear",void 0,void 0),h}}),["keys","values","entries",Symbol.iterator].forEach(u=>{s[u]=Fd(u,t,i)}),s}function al(t,i){const s=Rd(t,i);return(l,u,f)=>u==="__v_isReactive"?!t:u==="__v_isReadonly"?t:u==="__v_raw"?l:Reflect.get(vt(s,u)&&u in l?s:l,u,f)}const Bd={get:al(!1,!1)},Ud={get:al(!1,!0)},Vd={get:al(!0,!1)};const Xu=new WeakMap,Qu=new WeakMap,ec=new WeakMap,Zd=new WeakMap;function Hd(t){switch(t){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function xt(t){return Mi(t)?t:rl(t,!1,$d,Bd,Xu)}function jd(t){return rl(t,!1,Dd,Ud,Qu)}function Rr(t){return rl(t,!0,Nd,Vd,ec)}function rl(t,i,s,l,u){if(!_t(t)||t.__v_raw&&!(i&&t.__v_isReactive)||t.__v_skip||!Object.isExtensible(t))return t;const f=u.get(t);if(f)return f;const h=Hd(md(t));if(h===0)return t;const _=new Proxy(t,h===2?l:s);return u.set(t,_),_}function Ao(t){return Mi(t)?Ao(t.__v_raw):!!(t&&t.__v_isReactive)}function Mi(t){return!!(t&&t.__v_isReadonly)}function Hn(t){return!!(t&&t.__v_isShallow)}function ll(t){return t?!!t.__v_raw:!1}function pt(t){const i=t&&t.__v_raw;return i?pt(i):t}function Wd(t){return!vt(t,"__v_skip")&&Object.isExtensible(t)&&Du(t,"__v_skip",!0),t}const ni=t=>_t(t)?xt(t):t,as=t=>_t(t)?Rr(t):t;function sn(t){return t?t.__v_isRef===!0:!1}function W(t){return Kd(t,!1)}function Kd(t,i){return sn(t)?t:new Gd(t,i)}class Gd{constructor(i,s){this.dep=new sl,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=s?i:pt(i),this._value=s?i:ni(i),this.__v_isShallow=s}get value(){return this.dep.track(),this._value}set value(i){const s=this._rawValue,l=this.__v_isShallow||Hn(i)||Mi(i);i=l?i:pt(i),ci(i,s)&&(this._rawValue=i,this._value=l?i:ni(i),this.dep.trigger())}}function Oe(t){return sn(t)?t.value:t}const qd={get:(t,i,s)=>i==="__v_raw"?t:Oe(Reflect.get(t,i,s)),set:(t,i,s,l)=>{const u=t[i];return sn(u)&&!sn(s)?(u.value=s,!0):Reflect.set(t,i,s,l)}};function tc(t){return Ao(t)?t:new Proxy(t,qd)}class Yd{constructor(i,s,l){this.fn=i,this.setter=s,this._value=void 0,this.dep=new sl(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Ws-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!s,this.isSSR=l}notify(){if(this.flags|=16,!(this.flags&8)&&St!==this)return Zu(this,!0),!0}get value(){const i=this.dep.track();return Wu(this),i&&(i.version=this.dep.version),this._value}set value(i){this.setter&&this.setter(i)}}function Jd(t,i,s=!1){let l,u;return Ge(t)?l=t:(l=t.get,u=t.set),new Yd(l,u,s)}const Ca={},za=new WeakMap;let To;function Xd(t,i=!1,s=To){if(s){let l=za.get(s);l||za.set(s,l=[]),l.push(t)}}function Qd(t,i,s=wt){const{immediate:l,deep:u,once:f,scheduler:h,augmentJob:_,call:y}=s,C=ce=>u?ce:Hn(ce)||u===!1||u===0?Li(ce,1):Li(ce);let T,M,U,V,K=!1,F=!1;if(sn(t)?(M=()=>t.value,K=Hn(t)):Ao(t)?(M=()=>C(t),K=!0):De(t)?(F=!0,K=t.some(ce=>Ao(ce)||Hn(ce)),M=()=>t.map(ce=>{if(sn(ce))return ce.value;if(Ao(ce))return C(ce);if(Ge(ce))return y?y(ce,2):ce()})):Ge(t)?i?M=y?()=>y(t,2):t:M=()=>{if(U){fi();try{U()}finally{hi()}}const ce=To;To=T;try{return y?y(t,3,[V]):t(V)}finally{To=ce}}:M=di,i&&u){const ce=M,Be=u===!0?1/0:u;M=()=>Li(ce(),Be)}const me=Cd(),he=()=>{T.stop(),me&&me.active&&Qr(me.effects,T)};if(f&&i){const ce=i;i=(...Be)=>{const Ne=ce(...Be);return he(),Ne}}let Y=F?new Array(t.length).fill(Ca):Ca;const Le=ce=>{if(!(!(T.flags&1)||!T.dirty&&!ce))if(i){const Be=T.run();if(ce||u||K||(F?Be.some((Ne,ze)=>ci(Ne,Y[ze])):ci(Be,Y))){U&&U();const Ne=To;To=T;try{const ze=[Be,Y===Ca?void 0:F&&Y[0]===Ca?[]:Y,V];Y=Be,y?y(i,3,ze):i(...ze)}finally{To=Ne}}}else T.run()};return _&&_(Le),T=new Uu(M),T.scheduler=h?()=>h(Le,!1):Le,V=ce=>Xd(ce,!1,T),U=T.onStop=()=>{const ce=za.get(T);if(ce){if(y)y(ce,4);else for(const Be of ce)Be();za.delete(T)}},i?l?Le(!0):Y=T.run():h?h(Le.bind(null,!0),!0):T.run(),he.pause=T.pause.bind(T),he.resume=T.resume.bind(T),he.stop=he,he}function Li(t,i=1/0,s){if(i<=0||!_t(t)||t.__v_skip||(s=s||new Map,(s.get(t)||0)>=i))return t;if(s.set(t,i),i--,sn(t))Li(t.value,i,s);else if(De(t))for(let l=0;l{Li(l,i,s)});else if($u(t)){for(const l in t)Li(t[l],i,s);for(const l of Object.getOwnPropertySymbols(t))Object.prototype.propertyIsEnumerable.call(t,l)&&Li(t[l],i,s)}return t}/** -* @vue/runtime-core v3.5.39 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/function ta(t,i,s,l){try{return l?t(...l):t()}catch(u){Ja(u,i,s)}}function Wn(t,i,s,l){if(Ge(t)){const u=ta(t,i,s,l);return u&&zu(u)&&u.catch(f=>{Ja(f,i,s)}),u}if(De(t)){const u=[];for(let f=0;f>>1,u=fn[l],f=Gs(u);f=Gs(s)?fn.push(t):fn.splice(tf(i),0,t),t.flags|=1,oc()}}function oc(){Ia||(Ia=nc.then(ac))}function nf(t){De(t)?ns.push(...t):Yi&&t.id===-1?Yi.splice(Qo+1,0,t):t.flags&1||(ns.push(t),t.flags|=1),oc()}function Ol(t,i,s=ri+1){for(;sGs(s)-Gs(l));if(ns.length=0,Yi){Yi.push(...i);return}for(Yi=i,Qo=0;Qot.id==null?t.flags&2?-1:1/0:t.id;function ac(t){try{for(ri=0;ri{l._d&&Fa(-1);const f=$a(i);let h;try{h=t(...u)}finally{$a(f),l._d&&Fa(1)}return h};return l._n=!0,l._c=!0,l._d=!0,l}function Q(t,i){if(on===null)return t;const s=nr(on),l=t.dirs||(t.dirs=[]);for(let u=0;u1)return s&&Ge(i)?i.call(l&&l.proxy):i}}const of=Symbol.for("v-scx"),sf=()=>Vs(of);function Rt(t,i,s){return uc(t,i,s)}function uc(t,i,s=wt){const{immediate:l,deep:u,flush:f,once:h}=s,_=Ht({},s),y=i&&l||!i&&f!=="post";let C;if(Xs){if(f==="sync"){const V=sf();C=V.__watcherHandles||(V.__watcherHandles=[])}else if(!y){const V=()=>{};return V.stop=di,V.resume=di,V.pause=di,V}}const T=hn;_.call=(V,K,F)=>Wn(V,T,K,F);let M=!1;f==="post"?_.scheduler=V=>{dn(V,T&&T.suspense)}:f!=="sync"&&(M=!0,_.scheduler=(V,K)=>{K?V():ul(V)}),_.augmentJob=V=>{i&&(V.flags|=4),M&&(V.flags|=2,T&&(V.id=T.uid,V.i=T))};const U=Qd(t,i,_);return Xs&&(C?C.push(U):y&&U()),U}function af(t,i,s){const l=this.proxy,u=Ct(t)?t.includes(".")?cc(l,t):()=>l[t]:t.bind(l,l);let f;Ge(i)?f=i:(f=i.handler,s=i);const h=na(this),_=uc(u,f.bind(l),s);return h(),_}function cc(t,i){const s=i.split(".");return()=>{let l=t;for(let u=0;ut.__isTeleport,Po=t=>t&&(t.disabled||t.disabled===""),rf=t=>t&&(t.defer||t.defer===""),zl=t=>typeof SVGElement<"u"&&t instanceof SVGElement,Il=t=>typeof MathMLElement=="function"&&t instanceof MathMLElement,Br=(t,i)=>{const s=t&&t.to;return Ct(s)?i?i(s):null:s},lf={name:"Teleport",__isTeleport:!0,process(t,i,s,l,u,f,h,_,y,C){const{mc:T,pc:M,pbc:U,o:{insert:V,querySelector:K,createText:F,createComment:me,parentNode:he}}=C,Y=Po(i.props);let{dynamicChildren:Le}=i;const ce=(ze,We,we)=>{ze.shapeFlag&16&&T(ze.children,We,we,u,f,h,_,y)},Be=(ze=i)=>{const We=Po(ze.props),we=ze.target=Br(ze.props,K),le=Ur(we,ze,F,V);we&&(h!=="svg"&&zl(we)?h="svg":h!=="mathml"&&Il(we)&&(h="mathml"),u&&u.isCE&&(u.ce._teleportTargets||(u.ce._teleportTargets=new Set)).add(we),We||(ce(ze,we,le),$s(ze,!1)))},Ne=ze=>{const We=()=>{if(qi.get(ze)===We){if(qi.delete(ze),Po(ze.props)){const we=he(ze.el)||s;ce(ze,we,ze.anchor),$s(ze,!0)}Be(ze)}};qi.set(ze,We),dn(We,f)};if(t==null){const ze=i.el=F(""),We=i.anchor=F("");if(V(ze,s,l),V(We,s,l),rf(i.props)||f&&f.pendingBranch){Ne(i);return}Y&&(ce(i,s,We),$s(i,!0)),Be()}else{i.el=t.el;const ze=i.anchor=t.anchor,We=qi.get(t);if(We){We.flags|=8,qi.delete(t),Ne(i);return}i.targetStart=t.targetStart;const we=i.target=t.target,le=i.targetAnchor=t.targetAnchor,Me=Po(t.props),ie=Me?s:we,Ke=Me?ze:le;if(h==="svg"||zl(we)?h="svg":(h==="mathml"||Il(we))&&(h="mathml"),Le?(U(t.dynamicChildren,Le,ie,u,f,h,_),fl(t,i,!0)):y||M(t,i,ie,Ke,u,f,h,_,!1),Y)Me?i.props&&t.props&&i.props.to!==t.props.to&&(i.props.to=t.props.to):La(i,s,ze,C,1);else if((i.props&&i.props.to)!==(t.props&&t.props.to)){const re=Br(i.props,K);re&&(i.target=re,La(i,re,null,C,0))}else Me&&La(i,we,le,C,1);$s(i,Y)}},remove(t,i,s,{um:l,o:{remove:u}},f){const{shapeFlag:h,children:_,anchor:y,targetStart:C,targetAnchor:T,target:M,props:U}=t,V=Po(U),K=f||!V,F=qi.get(t);if(F&&(F.flags|=8,qi.delete(t)),M&&(u(C),u(T)),f&&u(y),!F&&(V||M)&&h&16)for(let me=0;me<_.length;me++){const he=_[me];l(he,i,s,K,!!he.dynamicChildren)}},move:La,hydrate:uf};function La(t,i,s,{o:{insert:l},m:u},f=2){f===0&&l(t.targetAnchor,i,s);const{el:h,anchor:_,shapeFlag:y,children:C,props:T}=t,M=f===2;if(M&&l(h,i,s),!qi.has(t)&&(!M||Po(T))&&y&16)for(let U=0;U{t.isMounted=!0}),us(()=>{t.isUnmounting=!0}),t}const Vn=[Function,Array],hc={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Vn,onEnter:Vn,onAfterEnter:Vn,onEnterCancelled:Vn,onBeforeLeave:Vn,onLeave:Vn,onAfterLeave:Vn,onLeaveCancelled:Vn,onBeforeAppear:Vn,onAppear:Vn,onAfterAppear:Vn,onAppearCancelled:Vn},pc=t=>{const i=t.subTree;return i.component?pc(i.component):i},ff={name:"BaseTransition",props:hc,setup(t,{slots:i}){const s=Bc(),l=df();return()=>{const u=i.default&&vc(i.default(),!0),f=u&&u.length?mc(u):s.subTree?$():void 0;if(!f)return;const h=pt(t),{mode:_}=h;if(l.isLeaving)return Pr(f);const y=$l(f);if(!y)return Pr(f);let C=Vr(y,h,l,s,M=>C=M);y.type!==nn&&qs(y,C);let T=s.subTree&&$l(s.subTree);if(T&&T.type!==nn&&!Co(T,y)&&pc(s).type!==nn){let M=Vr(T,h,l,s);if(qs(T,M),_==="out-in"&&y.type!==nn)return l.isLeaving=!0,M.afterLeave=()=>{l.isLeaving=!1,s.job.flags&8||s.update(),delete M.afterLeave,T=void 0},Pr(f);_==="in-out"&&y.type!==nn?M.delayLeave=(U,V,K)=>{const F=gc(l,T);F[String(T.key)]=T,U[Zn]=()=>{V(),U[Zn]=void 0,delete C.delayedLeave,T=void 0},C.delayedLeave=()=>{K(),delete C.delayedLeave,T=void 0}}:T=void 0}else T&&(T=void 0);return f}}};function mc(t){let i=t[0];if(t.length>1){for(const s of t)if(s.type!==nn){i=s;break}}return i}const hf=ff;function gc(t,i){const{leavingVNodes:s}=t;let l=s.get(i.type);return l||(l=Object.create(null),s.set(i.type,l)),l}function Vr(t,i,s,l,u){const{appear:f,mode:h,persisted:_=!1,onBeforeEnter:y,onEnter:C,onAfterEnter:T,onEnterCancelled:M,onBeforeLeave:U,onLeave:V,onAfterLeave:K,onLeaveCancelled:F,onBeforeAppear:me,onAppear:he,onAfterAppear:Y,onAppearCancelled:Le}=i,ce=String(t.key),Be=gc(s,t),Ne=(we,le)=>{we&&Wn(we,l,9,le)},ze=(we,le)=>{const Me=le[1];Ne(we,le),De(we)?we.every(ie=>ie.length<=1)&&Me():we.length<=1&&Me()},We={mode:h,persisted:_,beforeEnter(we){let le=y;if(!s.isMounted)if(f)le=me||y;else return;we[Zn]&&we[Zn](!0);const Me=Be[ce];Me&&Co(t,Me)&&Me.el[Zn]&&Me.el[Zn](),Ne(le,[we])},enter(we){if(Be[ce]===t)return;let le=C,Me=T,ie=M;if(!s.isMounted)if(f)le=he||C,Me=Y||T,ie=Le||M;else return;let Ke=!1;we[Os]=qe=>{Ke||(Ke=!0,qe?Ne(ie,[we]):Ne(Me,[we]),We.delayedLeave&&We.delayedLeave(),we[Os]=void 0)};const re=we[Os].bind(null,!1);le?ze(le,[we,re]):re()},leave(we,le){const Me=String(t.key);if(we[Os]&&we[Os](!0),s.isUnmounting)return le();Ne(U,[we]);let ie=!1;we[Zn]=re=>{ie||(ie=!0,le(),re?Ne(F,[we]):Ne(K,[we]),we[Zn]=void 0,Be[Me]===t&&delete Be[Me])};const Ke=we[Zn].bind(null,!1);Be[Me]=t,V?ze(V,[we,Ke]):Ke()},clone(we){const le=Vr(we,i,s,l,u);return u&&u(le),le}};return We}function Pr(t){if(Xa(t))return t=Xi(t),t.children=null,t}function $l(t){if(!Xa(t))return fc(t.type)&&t.children?mc(t.children):t;if(t.component)return t.component.subTree;const{shapeFlag:i,children:s}=t;if(s){if(i&16)return s[0];if(i&32&&Ge(s.default))return s.default()}}function qs(t,i){t.shapeFlag&6&&t.component?(t.transition=i,qs(t.component.subTree,i)):t.shapeFlag&128?(t.ssContent.transition=i.clone(t.ssContent),t.ssFallback.transition=i.clone(t.ssFallback)):t.transition=i}function vc(t,i=!1,s){let l=[],u=0;for(let f=0;f1)for(let f=0;fZs(F,i&&(De(i)?i[me]:i),s,l,u));return}if(is(l)&&!u){l.shapeFlag&512&&l.type.__asyncResolved&&l.component.subTree.component&&Zs(t,i,s,l.component.subTree);return}const f=l.shapeFlag&4?nr(l.component):l.el,h=u?null:f,{i:_,r:y}=t,C=i&&i.r,T=_.refs===wt?_.refs={}:_.refs,M=_.setupState,U=pt(M),V=M===wt?Ou:F=>Nl(T,F)?!1:vt(U,F),K=(F,me)=>!(me&&Nl(T,me));if(C!=null&&C!==y){if(Dl(i),Ct(C))T[C]=null,V(C)&&(M[C]=null);else if(sn(C)){const F=i;K(C,F.k)&&(C.value=null),F.k&&(T[F.k]=null)}}if(Ge(y)){fi();try{ta(y,_,12,[h,T])}finally{hi()}}else{const F=Ct(y),me=sn(y);if(F||me){const he=()=>{if(t.f){const Y=F?V(y)?M[y]:T[y]:K()||!t.k?y.value:T[t.k];if(u)De(Y)&&Qr(Y,f);else if(De(Y))Y.includes(f)||Y.push(f);else if(F)T[y]=[f],V(y)&&(M[y]=T[y]);else{const Le=[f];K(y,t.k)&&(y.value=Le),t.k&&(T[t.k]=Le)}}else F?(T[y]=h,V(y)&&(M[y]=h)):me&&(K(y,t.k)&&(y.value=h),t.k&&(T[t.k]=h))};if(h){const Y=()=>{he(),Na.delete(t)};Y.id=-1,Na.set(t,Y),dn(Y,s)}else Dl(t),he()}}}function Dl(t){const i=Na.get(t);i&&(i.flags|=8,Na.delete(t))}qa().requestIdleCallback;qa().cancelIdleCallback;const is=t=>!!t.type.__asyncLoader,Xa=t=>t.type.__isKeepAlive;function pf(t,i){bc(t,"a",i)}function mf(t,i){bc(t,"da",i)}function bc(t,i,s=hn){const l=t.__wdc||(t.__wdc=()=>{let u=s;for(;u;){if(u.isDeactivated)return;u=u.parent}return t()});if(Qa(i,l,s),s){let u=s.parent;for(;u&&u.parent;)Xa(u.parent.vnode)&&gf(l,i,s,u),u=u.parent}}function gf(t,i,s,l){const u=Qa(i,t,l,!0);yc(()=>{Qr(l[i],u)},s)}function Qa(t,i,s=hn,l=!1){if(s){const u=s[t]||(s[t]=[]),f=i.__weh||(i.__weh=(...h)=>{fi();const _=na(s),y=Wn(i,s,t,h);return _(),hi(),y});return l?u.unshift(f):u.push(f),f}}const Oi=t=>(i,s=hn)=>{(!Xs||t==="sp")&&Qa(t,(...l)=>i(...l),s)},vf=Oi("bm"),Ei=Oi("m"),_f=Oi("bu"),bf=Oi("u"),us=Oi("bum"),yc=Oi("um"),yf=Oi("sp"),xf=Oi("rtg"),wf=Oi("rtc");function kf(t,i=hn){Qa("ec",t,i)}const Sf=Symbol.for("v-ndc");function Fe(t,i,s,l){let u;const f=s,h=De(t);if(h||Ct(t)){const _=h&&Ao(t);let y=!1,C=!1;_&&(y=!Hn(t),C=Mi(t),t=Ya(t)),u=new Array(t.length);for(let T=0,M=t.length;Ti(_,y,void 0,f));else{const _=Object.keys(t);u=new Array(_.length);for(let y=0,C=_.length;y0;return p(),at(oe,null,[A("slot",s,l)],C?-2:64)}let f=t[i];f&&f._c&&(f._d=!1),p();const h=f&&xc(f(s)),_=s.key||h&&h.key,y=at(oe,{key:(_&&!ti(_)?_:`_${i}`)+(!h&&l?"_fb":"")},h||[],h&&t._===1?64:-2);return y.scopeId&&(y.slotScopeIds=[y.scopeId+"-s"]),f&&f._c&&(f._d=!0),y}function xc(t){return t.some(i=>Js(i)?!(i.type===nn||i.type===oe&&!xc(i.children)):!0)?t:null}const Zr=t=>t?Uc(t)?nr(t):Zr(t.parent):null,Hs=Ht(Object.create(null),{$:t=>t,$el:t=>t.vnode.el,$data:t=>t.data,$props:t=>t.props,$attrs:t=>t.attrs,$slots:t=>t.slots,$refs:t=>t.refs,$parent:t=>Zr(t.parent),$root:t=>Zr(t.root),$host:t=>t.ce,$emit:t=>t.emit,$options:t=>kc(t),$forceUpdate:t=>t.f||(t.f=()=>{ul(t.update)}),$nextTick:t=>t.n||(t.n=ic.bind(t.proxy)),$watch:t=>af.bind(t)}),Cr=(t,i)=>t!==wt&&!t.__isScriptSetup&&vt(t,i),Pf={get({_:t},i){if(i==="__v_skip")return!0;const{ctx:s,setupState:l,data:u,props:f,accessCache:h,type:_,appContext:y}=t;if(i[0]!=="$"){const U=h[i];if(U!==void 0)switch(U){case 1:return l[i];case 2:return u[i];case 4:return s[i];case 3:return f[i]}else{if(Cr(l,i))return h[i]=1,l[i];if(u!==wt&&vt(u,i))return h[i]=2,u[i];if(vt(f,i))return h[i]=3,f[i];if(s!==wt&&vt(s,i))return h[i]=4,s[i];Hr&&(h[i]=0)}}const C=Hs[i];let T,M;if(C)return i==="$attrs"&&tn(t.attrs,"get",""),C(t);if((T=_.__cssModules)&&(T=T[i]))return T;if(s!==wt&&vt(s,i))return h[i]=4,s[i];if(M=y.config.globalProperties,vt(M,i))return M[i]},set({_:t},i,s){const{data:l,setupState:u,ctx:f}=t;return Cr(u,i)?(u[i]=s,!0):l!==wt&&vt(l,i)?(l[i]=s,!0):vt(t.props,i)||i[0]==="$"&&i.slice(1)in t?!1:(f[i]=s,!0)},has({_:{data:t,setupState:i,accessCache:s,ctx:l,appContext:u,props:f,type:h}},_){let y;return!!(s[_]||t!==wt&&_[0]!=="$"&&vt(t,_)||Cr(i,_)||vt(f,_)||vt(l,_)||vt(Hs,_)||vt(u.config.globalProperties,_)||(y=h.__cssModules)&&y[_])},defineProperty(t,i,s){return s.get!=null?t._.accessCache[i]=0:vt(s,"value")&&this.set(t,i,s.value,null),Reflect.defineProperty(t,i,s)}};function Fl(t){return De(t)?t.reduce((i,s)=>(i[s]=null,i),{}):t}let Hr=!0;function Cf(t){const i=kc(t),s=t.proxy,l=t.ctx;Hr=!1,i.beforeCreate&&Rl(i.beforeCreate,t,"bc");const{data:u,computed:f,methods:h,watch:_,provide:y,inject:C,created:T,beforeMount:M,mounted:U,beforeUpdate:V,updated:K,activated:F,deactivated:me,beforeDestroy:he,beforeUnmount:Y,destroyed:Le,unmounted:ce,render:Be,renderTracked:Ne,renderTriggered:ze,errorCaptured:We,serverPrefetch:we,expose:le,inheritAttrs:Me,components:ie,directives:Ke,filters:re}=i;if(C&&Lf(C,l,null),h)for(const de in h){const ae=h[de];Ge(ae)&&(l[de]=ae.bind(s))}if(u){const de=u.call(s,s);_t(de)&&(t.data=xt(de))}if(Hr=!0,f)for(const de in f){const ae=f[de],Lt=Ge(ae)?ae.bind(s,s):Ge(ae.get)?ae.get.bind(s,s):di,pe=!Ge(ae)&&Ge(ae.set)?ae.set.bind(s):di,Ue=ue({get:Lt,set:pe});Object.defineProperty(l,de,{enumerable:!0,configurable:!0,get:()=>Ue.value,set:Ve=>Ue.value=Ve})}if(_)for(const de in _)wc(_[de],l,s,de);if(y){const de=Ge(y)?y.call(s):y;Reflect.ownKeys(de).forEach(ae=>{lc(ae,de[ae])})}T&&Rl(T,t,"c");function fe(de,ae){De(ae)?ae.forEach(Lt=>de(Lt.bind(s))):ae&&de(ae.bind(s))}if(fe(vf,M),fe(Ei,U),fe(_f,V),fe(bf,K),fe(pf,F),fe(mf,me),fe(kf,We),fe(wf,Ne),fe(xf,ze),fe(us,Y),fe(yc,ce),fe(yf,we),De(le))if(le.length){const de=t.exposed||(t.exposed={});le.forEach(ae=>{Object.defineProperty(de,ae,{get:()=>s[ae],set:Lt=>s[ae]=Lt,enumerable:!0})})}else t.exposed||(t.exposed={});Be&&t.render===di&&(t.render=Be),Me!=null&&(t.inheritAttrs=Me),ie&&(t.components=ie),Ke&&(t.directives=Ke),we&&_c(t)}function Lf(t,i,s=di){De(t)&&(t=jr(t));for(const l in t){const u=t[l];let f;_t(u)?"default"in u?f=Vs(u.from||l,u.default,!0):f=Vs(u.from||l):f=Vs(u),sn(f)?Object.defineProperty(i,l,{enumerable:!0,configurable:!0,get:()=>f.value,set:h=>f.value=h}):i[l]=f}}function Rl(t,i,s){Wn(De(t)?t.map(l=>l.bind(i.proxy)):t.bind(i.proxy),i,s)}function wc(t,i,s,l){let u=l.includes(".")?cc(s,l):()=>s[l];if(Ct(t)){const f=i[t];Ge(f)&&Rt(u,f)}else if(Ge(t))Rt(u,t.bind(s));else if(_t(t))if(De(t))t.forEach(f=>wc(f,i,s,l));else{const f=Ge(t.handler)?t.handler.bind(s):i[t.handler];Ge(f)&&Rt(u,f,t)}}function kc(t){const i=t.type,{mixins:s,extends:l}=i,{mixins:u,optionsCache:f,config:{optionMergeStrategies:h}}=t.appContext,_=f.get(i);let y;return _?y=_:!u.length&&!s&&!l?y=i:(y={},u.length&&u.forEach(C=>Da(y,C,h,!0)),Da(y,i,h)),_t(i)&&f.set(i,y),y}function Da(t,i,s,l=!1){const{mixins:u,extends:f}=i;f&&Da(t,f,s,!0),u&&u.forEach(h=>Da(t,h,s,!0));for(const h in i)if(!(l&&h==="expose")){const _=Af[h]||s&&s[h];t[h]=_?_(t[h],i[h]):i[h]}return t}const Af={data:Bl,props:Ul,emits:Ul,methods:Ns,computed:Ns,beforeCreate:cn,created:cn,beforeMount:cn,mounted:cn,beforeUpdate:cn,updated:cn,beforeDestroy:cn,beforeUnmount:cn,destroyed:cn,unmounted:cn,activated:cn,deactivated:cn,errorCaptured:cn,serverPrefetch:cn,components:Ns,directives:Ns,watch:Ef,provide:Bl,inject:Mf};function Bl(t,i){return i?t?function(){return Ht(Ge(t)?t.call(this,this):t,Ge(i)?i.call(this,this):i)}:i:t}function Mf(t,i){return Ns(jr(t),jr(i))}function jr(t){if(De(t)){const i={};for(let s=0;si==="modelValue"||i==="model-value"?t.modelModifiers:t[`${i}Modifiers`]||t[`${Qn(i)}Modifiers`]||t[`${eo(i)}Modifiers`];function $f(t,i,...s){if(t.isUnmounted)return;const l=t.vnode.props||wt;let u=s;const f=i.startsWith("update:"),h=f&&If(l,i.slice(7));h&&(h.trim&&(u=s.map(T=>Ct(T)?T.trim():T)),h.number&&(u=s.map(Ga)));let _,y=l[_=xr(i)]||l[_=xr(Qn(i))];!y&&f&&(y=l[_=xr(eo(i))]),y&&Wn(y,t,6,u);const C=l[_+"Once"];if(C){if(!t.emitted)t.emitted={};else if(t.emitted[_])return;t.emitted[_]=!0,Wn(C,t,6,u)}}const Nf=new WeakMap;function Tc(t,i,s=!1){const l=s?Nf:i.emitsCache,u=l.get(t);if(u!==void 0)return u;const f=t.emits;let h={},_=!1;if(!Ge(t)){const y=C=>{const T=Tc(C,i,!0);T&&(_=!0,Ht(h,T))};!s&&i.mixins.length&&i.mixins.forEach(y),t.extends&&y(t.extends),t.mixins&&t.mixins.forEach(y)}return!f&&!_?(_t(t)&&l.set(t,null),null):(De(f)?f.forEach(y=>h[y]=null):Ht(h,f),_t(t)&&l.set(t,h),h)}function er(t,i){return!t||!ja(i)?!1:(i=i.slice(2),i=i==="Once"?i:i.replace(/Once$/,""),vt(t,i[0].toLowerCase()+i.slice(1))||vt(t,eo(i))||vt(t,i))}function Vl(t){const{type:i,vnode:s,proxy:l,withProxy:u,propsOptions:[f],slots:h,attrs:_,emit:y,render:C,renderCache:T,props:M,data:U,setupState:V,ctx:K,inheritAttrs:F}=t,me=$a(t);let he,Y;try{if(s.shapeFlag&4){const ce=u||l,Be=ce;he=ui(C.call(Be,ce,T,M,V,U,K)),Y=_}else{const ce=i;he=ui(ce.length>1?ce(M,{attrs:_,slots:h,emit:y}):ce(M,null)),Y=i.props?_:Df(_)}}catch(ce){js.length=0,Ja(ce,t,1),he=A(nn)}let Le=he;if(Y&&F!==!1){const ce=Object.keys(Y),{shapeFlag:Be}=Le;ce.length&&Be&7&&(f&&ce.some(Wa)&&(Y=Ff(Y,f)),Le=Xi(Le,Y,!1,!0))}return s.dirs&&(Le=Xi(Le,null,!1,!0),Le.dirs=Le.dirs?Le.dirs.concat(s.dirs):s.dirs),s.transition&&qs(Le,s.transition),he=Le,$a(me),he}const Df=t=>{let i;for(const s in t)(s==="class"||s==="style"||ja(s))&&((i||(i={}))[s]=t[s]);return i},Ff=(t,i)=>{const s={};for(const l in t)(!Wa(l)||!(l.slice(9)in i))&&(s[l]=t[l]);return s};function Rf(t,i,s){const{props:l,children:u,component:f}=t,{props:h,children:_,patchFlag:y}=i,C=f.emitsOptions;if(i.dirs||i.transition)return!0;if(s&&y>=0){if(y&1024)return!0;if(y&16)return l?Zl(l,h,C):!!h;if(y&8){const T=i.dynamicProps;for(let M=0;MObject.create(Cc),Ac=t=>Object.getPrototypeOf(t)===Cc;function Uf(t,i,s,l=!1){const u={},f=Lc();t.propsDefaults=Object.create(null),Mc(t,i,u,f);for(const h in t.propsOptions[0])h in u||(u[h]=void 0);s?t.props=l?u:jd(u):t.type.props?t.props=u:t.props=f,t.attrs=f}function Vf(t,i,s,l){const{props:u,attrs:f,vnode:{patchFlag:h}}=t,_=pt(u),[y]=t.propsOptions;let C=!1;if((l||h>0)&&!(h&16)){if(h&8){const T=t.vnode.dynamicProps;for(let M=0;M{y=!0;const[U,V]=Ec(M,i,!0);Ht(h,U),V&&_.push(...V)};!s&&i.mixins.length&&i.mixins.forEach(T),t.extends&&T(t.extends),t.mixins&&t.mixins.forEach(T)}if(!f&&!y)return _t(t)&&l.set(t,es),es;if(De(f))for(let T=0;Tt==="_"||t==="_ctx"||t==="$stable",dl=t=>De(t)?t.map(ui):[ui(t)],Hf=(t,i,s)=>{if(i._n)return i;const l=xe((...u)=>dl(i(...u)),s);return l._c=!1,l},Oc=(t,i,s)=>{const l=t._ctx;for(const u in t){if(cl(u))continue;const f=t[u];if(Ge(f))i[u]=Hf(u,f,l);else if(f!=null){const h=dl(f);i[u]=()=>h}}},zc=(t,i)=>{const s=dl(i);t.slots.default=()=>s},Ic=(t,i,s)=>{for(const l in i)(s||!cl(l))&&(t[l]=i[l])},jf=(t,i,s)=>{const l=t.slots=Lc();if(t.vnode.shapeFlag&32){const u=i._;u?(Ic(l,i,s),s&&Du(l,"_",u,!0)):Oc(i,l)}else i&&zc(t,i)},Wf=(t,i,s)=>{const{vnode:l,slots:u}=t;let f=!0,h=wt;if(l.shapeFlag&32){const _=i._;_?s&&_===1?f=!1:Ic(u,i,s):(f=!i.$stable,Oc(i,u)),h=i}else i&&(zc(t,i),h={default:1});if(f)for(const _ in u)!cl(_)&&h[_]==null&&delete u[_]},dn=Jf;function Kf(t){return Gf(t)}function Gf(t,i){const s=qa();s.__VUE__=!0;const{insert:l,remove:u,patchProp:f,createElement:h,createText:_,createComment:y,setText:C,setElementText:T,parentNode:M,nextSibling:U,setScopeId:V=di,insertStaticContent:K}=t,F=(x,b,S,B=null,R=null,Z=null,se=void 0,ne=null,ee=!!b.dynamicChildren)=>{if(x===b)return;x&&!Co(x,b)&&(B=E(x),Ve(x,R,Z,!0),x=null),b.patchFlag===-2&&(ee=!1,b.dynamicChildren=null);const{type:q,ref:ge,shapeFlag:te}=b;switch(q){case tr:me(x,b,S,B);break;case nn:he(x,b,S,B);break;case Ar:x==null&&Y(b,S,B,se);break;case oe:ie(x,b,S,B,R,Z,se,ne,ee);break;default:te&1?Be(x,b,S,B,R,Z,se,ne,ee):te&6?Ke(x,b,S,B,R,Z,se,ne,ee):(te&64||te&128)&&q.process(x,b,S,B,R,Z,se,ne,ee,dt)}ge!=null&&R?Zs(ge,x&&x.ref,Z,b||x,!b):ge==null&&x&&x.ref!=null&&Zs(x.ref,null,Z,x,!0)},me=(x,b,S,B)=>{if(x==null)l(b.el=_(b.children),S,B);else{const R=b.el=x.el;b.children!==x.children&&C(R,b.children)}},he=(x,b,S,B)=>{x==null?l(b.el=y(b.children||""),S,B):b.el=x.el},Y=(x,b,S,B)=>{[x.el,x.anchor]=K(x.children,b,S,B,x.el,x.anchor)},Le=({el:x,anchor:b},S,B)=>{let R;for(;x&&x!==b;)R=U(x),l(x,S,B),x=R;l(b,S,B)},ce=({el:x,anchor:b})=>{let S;for(;x&&x!==b;)S=U(x),u(x),x=S;u(b)},Be=(x,b,S,B,R,Z,se,ne,ee)=>{if(b.type==="svg"?se="svg":b.type==="math"&&(se="mathml"),x==null)Ne(b,S,B,R,Z,se,ne,ee);else{const q=x.el&&x.el._isVueCE?x.el:null;try{q&&q._beginPatch(),we(x,b,R,Z,se,ne,ee)}finally{q&&q._endPatch()}}},Ne=(x,b,S,B,R,Z,se,ne)=>{let ee,q;const{props:ge,shapeFlag:te,transition:Se,dirs:Te}=x;if(ee=x.el=h(x.type,Z,ge&&ge.is,ge),te&8?T(ee,x.children):te&16&&We(x.children,ee,null,B,R,Lr(x,Z),se,ne),Te&&xo(x,null,B,"created"),ze(ee,x,x.scopeId,se,B),ge){for(const Ye in ge)Ye!=="value"&&!Rs(Ye)&&f(ee,Ye,null,ge[Ye],Z,B);"value"in ge&&f(ee,"value",null,ge.value,Z),(q=ge.onVnodeBeforeMount)&&ai(q,B,x)}Te&&xo(x,null,B,"beforeMount");const Ze=qf(R,Se);Ze&&Se.beforeEnter(ee),l(ee,b,S),((q=ge&&ge.onVnodeMounted)||Ze||Te)&&dn(()=>{try{q&&ai(q,B,x),Ze&&Se.enter(ee),Te&&xo(x,null,B,"mounted")}finally{}},R)},ze=(x,b,S,B,R)=>{if(S&&V(x,S),B)for(let Z=0;Z{for(let q=ee;q{const ne=b.el=x.el;let{patchFlag:ee,dynamicChildren:q,dirs:ge}=b;ee|=x.patchFlag&16;const te=x.props||wt,Se=b.props||wt;let Te;if(S&&wo(S,!1),(Te=Se.onVnodeBeforeUpdate)&&ai(Te,S,b,x),ge&&xo(b,x,S,"beforeUpdate"),S&&wo(S,!0),q&&(!x.dynamicChildren||x.dynamicChildren.length!==q.length)&&(ee=0,se=!1,q=null),(te.innerHTML&&Se.innerHTML==null||te.textContent&&Se.textContent==null)&&T(ne,""),q?le(x.dynamicChildren,q,ne,S,B,Lr(b,R),Z):se||ae(x,b,ne,null,S,B,Lr(b,R),Z,!1),ee>0){if(ee&16)Me(ne,te,Se,S,R);else if(ee&2&&te.class!==Se.class&&f(ne,"class",null,Se.class,R),ee&4&&f(ne,"style",te.style,Se.style,R),ee&8){const Ze=b.dynamicProps;for(let Ye=0;Ye{Te&&ai(Te,S,b,x),ge&&xo(b,x,S,"updated")},B)},le=(x,b,S,B,R,Z,se)=>{for(let ne=0;ne{if(b!==S){if(b!==wt)for(const Z in b)!Rs(Z)&&!(Z in S)&&f(x,Z,b[Z],null,R,B);for(const Z in S){if(Rs(Z))continue;const se=S[Z],ne=b[Z];se!==ne&&Z!=="value"&&f(x,Z,ne,se,R,B)}"value"in S&&f(x,"value",b.value,S.value,R)}},ie=(x,b,S,B,R,Z,se,ne,ee)=>{const q=b.el=x?x.el:_(""),ge=b.anchor=x?x.anchor:_("");let{patchFlag:te,dynamicChildren:Se,slotScopeIds:Te}=b;Te&&(ne=ne?ne.concat(Te):Te),x==null?(l(q,S,B),l(ge,S,B),We(b.children||[],S,ge,R,Z,se,ne,ee)):te>0&&te&64&&Se&&x.dynamicChildren&&x.dynamicChildren.length===Se.length?(le(x.dynamicChildren,Se,S,R,Z,se,ne),(b.key!=null||R&&b===R.subTree)&&fl(x,b,!0)):ae(x,b,S,ge,R,Z,se,ne,ee)},Ke=(x,b,S,B,R,Z,se,ne,ee)=>{b.slotScopeIds=ne,x==null?b.shapeFlag&512?R.ctx.activate(b,S,B,se,ee):re(b,S,B,R,Z,se,ee):qe(x,b,ee)},re=(x,b,S,B,R,Z,se)=>{const ne=x.component=oh(x,B,R);if(Xa(x)&&(ne.ctx.renderer=dt),sh(ne,!1,se),ne.asyncDep){if(R&&R.registerDep(ne,fe,se),!x.el){const ee=ne.subTree=A(nn);he(null,ee,b,S),x.placeholder=ee.el}}else fe(ne,x,b,S,R,Z,se)},qe=(x,b,S)=>{const B=b.component=x.component;if(Rf(x,b,S))if(B.asyncDep&&!B.asyncResolved){de(B,b,S);return}else B.next=b,B.update();else b.el=x.el,B.vnode=b},fe=(x,b,S,B,R,Z,se)=>{const ne=()=>{if(x.isMounted){let{next:te,bu:Se,u:Te,parent:Ze,vnode:Ye}=x;{const Kt=$c(x);if(Kt){te&&(te.el=Ye.el,de(x,te,se)),Kt.asyncDep.then(()=>{dn(()=>{x.isUnmounted||q()},R)});return}}let st=te,ft;wo(x,!1),te?(te.el=Ye.el,de(x,te,se)):te=Ye,Se&&Ea(Se),(ft=te.props&&te.props.onVnodeBeforeUpdate)&&ai(ft,Ze,te,Ye),wo(x,!0);const Tt=Vl(x),Bt=x.subTree;x.subTree=Tt,F(Bt,Tt,M(Bt.el),E(Bt),x,R,Z),te.el=Tt.el,st===null&&Bf(x,Tt.el),Te&&dn(Te,R),(ft=te.props&&te.props.onVnodeUpdated)&&dn(()=>ai(ft,Ze,te,Ye),R)}else{let te;const{el:Se,props:Te}=b,{bm:Ze,m:Ye,parent:st,root:ft,type:Tt}=x,Bt=is(b);wo(x,!1),Ze&&Ea(Ze),!Bt&&(te=Te&&Te.onVnodeBeforeMount)&&ai(te,st,b),wo(x,!0);{ft.ce&&ft.ce._hasShadowRoot()&&ft.ce._injectChildStyle(Tt,x.parent?x.parent.type:void 0);const Kt=x.subTree=Vl(x);F(null,Kt,S,B,x,R,Z),b.el=Kt.el}if(Ye&&dn(Ye,R),!Bt&&(te=Te&&Te.onVnodeMounted)){const Kt=b;dn(()=>ai(te,st,Kt),R)}(b.shapeFlag&256||st&&is(st.vnode)&&st.vnode.shapeFlag&256)&&x.a&&dn(x.a,R),x.isMounted=!0,b=S=B=null}};x.scope.on();const ee=x.effect=new Uu(ne);x.scope.off();const q=x.update=ee.run.bind(ee),ge=x.job=ee.runIfDirty.bind(ee);ge.i=x,ge.id=x.uid,ee.scheduler=()=>ul(ge),wo(x,!0),q()},de=(x,b,S)=>{b.component=x;const B=x.vnode.props;x.vnode=b,x.next=null,Vf(x,b.props,B,S),Wf(x,b.children,S),fi(),Ol(x),hi()},ae=(x,b,S,B,R,Z,se,ne,ee=!1)=>{const q=x&&x.children,ge=x?x.shapeFlag:0,te=b.children,{patchFlag:Se,shapeFlag:Te}=b;if(Se>0){if(Se&128){pe(q,te,S,B,R,Z,se,ne,ee);return}else if(Se&256){Lt(q,te,S,B,R,Z,se,ne,ee);return}}Te&8?(ge&16&&J(q,R,Z),te!==q&&T(S,te)):ge&16?Te&16?pe(q,te,S,B,R,Z,se,ne,ee):J(q,R,Z,!0):(ge&8&&T(S,""),Te&16&&We(te,S,B,R,Z,se,ne,ee))},Lt=(x,b,S,B,R,Z,se,ne,ee)=>{x=x||es,b=b||es;const q=x.length,ge=b.length,te=Math.min(q,ge);let Se;for(Se=0;Sege?J(x,R,Z,!0,!1,te):We(b,S,B,R,Z,se,ne,ee,te)},pe=(x,b,S,B,R,Z,se,ne,ee)=>{let q=0;const ge=b.length;let te=x.length-1,Se=ge-1;for(;q<=te&&q<=Se;){const Te=x[q],Ze=b[q]=ee?Pi(b[q]):ui(b[q]);if(Co(Te,Ze))F(Te,Ze,S,null,R,Z,se,ne,ee);else break;q++}for(;q<=te&&q<=Se;){const Te=x[te],Ze=b[Se]=ee?Pi(b[Se]):ui(b[Se]);if(Co(Te,Ze))F(Te,Ze,S,null,R,Z,se,ne,ee);else break;te--,Se--}if(q>te){if(q<=Se){const Te=Se+1,Ze=TeSe)for(;q<=te;)Ve(x[q],R,Z,!0),q++;else{const Te=q,Ze=q,Ye=new Map;for(q=Ze;q<=Se;q++){const Pt=b[q]=ee?Pi(b[q]):ui(b[q]);Pt.key!=null&&Ye.set(Pt.key,q)}let st,ft=0;const Tt=Se-Ze+1;let Bt=!1,Kt=0;const Nt=new Array(Tt);for(q=0;q=Tt){Ve(Pt,R,Z,!0);continue}let Gt;if(Pt.key!=null)Gt=Ye.get(Pt.key);else for(st=Ze;st<=Se;st++)if(Nt[st-Ze]===0&&Co(Pt,b[st])){Gt=st;break}Gt===void 0?Ve(Pt,R,Z,!0):(Nt[Gt-Ze]=q+1,Gt>=Kt?Kt=Gt:Bt=!0,F(Pt,b[Gt],S,null,R,Z,se,ne,ee),ft++)}const pn=Bt?Yf(Nt):es;for(st=pn.length-1,q=Tt-1;q>=0;q--){const Pt=Ze+q,Gt=b[Pt],zn=b[Pt+1],zi=Pt+1{const{el:Z,type:se,transition:ne,children:ee,shapeFlag:q}=x;if(q&6){Ue(x.component.subTree,b,S,B);return}if(q&128){x.suspense.move(b,S,B);return}if(q&64){se.move(x,b,S,dt);return}if(se===oe){l(Z,b,S);for(let te=0;tene.enter(Z),R));else{const{leave:te,delayLeave:Se,afterLeave:Te}=ne,Ze=()=>{x.ctx.isUnmounted?u(Z):l(Z,b,S)},Ye=()=>{const st=Z._isLeaving||!!Z[Zn];Z._isLeaving&&Z[Zn](!0),ne.persisted&&!st?Ze():te(Z,()=>{Ze(),Te&&Te()})};Se?Se(Z,Ze,Ye):Ye()}else l(Z,b,S)},Ve=(x,b,S,B=!1,R=!1)=>{const{type:Z,props:se,ref:ne,children:ee,dynamicChildren:q,shapeFlag:ge,patchFlag:te,dirs:Se,cacheIndex:Te,memo:Ze}=x;if(te===-2&&(R=!1),ne!=null&&(fi(),Zs(ne,null,S,x,!0),hi()),Te!=null&&(b.renderCache[Te]=void 0),ge&256){b.ctx.deactivate(x);return}const Ye=ge&1&&Se,st=!is(x);let ft;if(st&&(ft=se&&se.onVnodeBeforeUnmount)&&ai(ft,b,x),ge&6)Ce(x.component,S,B);else{if(ge&128){x.suspense.unmount(S,B);return}Ye&&xo(x,null,b,"beforeUnmount"),ge&64?x.type.remove(x,b,S,dt,B):q&&!q.hasOnce&&(Z!==oe||te>0&&te&64)?J(q,b,S,!1,!0):(Z===oe&&te&384||!R&&ge&16)&&J(ee,b,S),B&&mt(x)}const Tt=Ze!=null&&Te==null;(st&&(ft=se&&se.onVnodeUnmounted)||Ye||Tt)&&dn(()=>{ft&&ai(ft,b,x),Ye&&xo(x,null,b,"unmounted"),Tt&&(x.el=null)},S)},mt=x=>{const{type:b,el:S,anchor:B,transition:R}=x;if(b===oe){ot(S,B);return}if(b===Ar){ce(x);return}const Z=()=>{u(S),R&&!R.persisted&&R.afterLeave&&R.afterLeave()};if(x.shapeFlag&1&&R&&!R.persisted){const{leave:se,delayLeave:ne}=R,ee=()=>se(S,Z);ne?ne(x.el,Z,ee):ee()}else Z()},ot=(x,b)=>{let S;for(;x!==b;)S=U(x),u(x),x=S;u(b)},Ce=(x,b,S)=>{const{bum:B,scope:R,job:Z,subTree:se,um:ne,m:ee,a:q}=x;jl(ee),jl(q),B&&Ea(B),R.stop(),Z&&(Z.flags|=8,Ve(se,x,b,S)),ne&&dn(ne,b),dn(()=>{x.isUnmounted=!0},b)},J=(x,b,S,B=!1,R=!1,Z=0)=>{for(let se=Z;se{if(x.shapeFlag&6)return E(x.component.subTree);if(x.shapeFlag&128)return x.suspense.next();const b=U(x.anchor||x.el),S=b&&b[dc];return S?U(S):b};let I=!1;const gt=(x,b,S)=>{let B;x==null?b._vnode&&(Ve(b._vnode,null,null,!0),B=b._vnode.component):F(b._vnode||null,x,b,null,null,null,S),b._vnode=x,I||(I=!0,Ol(B),sc(),I=!1)},dt={p:F,um:Ve,m:Ue,r:mt,mt:re,mc:We,pc:ae,pbc:le,n:E,o:t};return{render:gt,hydrate:void 0,createApp:zf(gt)}}function Lr({type:t,props:i},s){return s==="svg"&&t==="foreignObject"||s==="mathml"&&t==="annotation-xml"&&i&&i.encoding&&i.encoding.includes("html")?void 0:s}function wo({effect:t,job:i},s){s?(t.flags|=32,i.flags|=4):(t.flags&=-33,i.flags&=-5)}function qf(t,i){return(!t||t&&!t.pendingBranch)&&i&&!i.persisted}function fl(t,i,s=!1){const l=t.children,u=i.children;if(De(l)&&De(u))for(let f=0;f>1,t[s[_]]0&&(i[l]=s[f-1]),s[f]=l)}}for(f=s.length,h=s[f-1];f-- >0;)s[f]=h,h=i[h];return s}function $c(t){const i=t.subTree.component;if(i)return i.asyncDep&&!i.asyncResolved?i:$c(i)}function jl(t){if(t)for(let i=0;it.__isSuspense;function Jf(t,i){i&&i.pendingBranch?De(t)?i.effects.push(...t):i.effects.push(t):nf(t)}const oe=Symbol.for("v-fgt"),tr=Symbol.for("v-txt"),nn=Symbol.for("v-cmt"),Ar=Symbol.for("v-stc"),js=[];let On=null;function p(t=!1){js.push(On=t?null:[])}function Xf(){js.pop(),On=js[js.length-1]||null}let Ys=1;function Fa(t,i=!1){Ys+=t,t<0&&On&&i&&(On.hasOnce=!0)}function Fc(t){return t.dynamicChildren=Ys>0?On||es:null,Xf(),Ys>0&&On&&On.push(t),t}function m(t,i,s,l,u,f){return Fc(a(t,i,s,l,u,f,!0))}function at(t,i,s,l,u){return Fc(A(t,i,s,l,u,!0))}function Js(t){return t?t.__v_isVNode===!0:!1}function Co(t,i){return t.type===i.type&&t.key===i.key}const Rc=({key:t})=>t??null,Oa=({ref:t,ref_key:i,ref_for:s})=>(typeof t=="number"&&(t=""+t),t!=null?Ct(t)||sn(t)||Ge(t)?{i:on,r:t,k:i,f:!!s}:t:null);function a(t,i=null,s=null,l=0,u=null,f=t===oe?0:1,h=!1,_=!1){const y={__v_isVNode:!0,__v_skip:!0,type:t,props:i,key:i&&Rc(i),ref:i&&Oa(i),scopeId:rc,slotScopeIds:null,children:s,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:f,patchFlag:l,dynamicProps:u,dynamicChildren:null,appContext:null,ctx:on};return _?(Ra(y,s),f&128&&t.normalize(y)):s&&(y.shapeFlag|=Ct(s)?8:16),Ys>0&&!h&&On&&(y.patchFlag>0||f&6)&&y.patchFlag!==32&&On.push(y),y}const A=Qf;function Qf(t,i=null,s=null,l=0,u=null,f=!1){if((!t||t===Sf)&&(t=nn),Js(t)){const _=Xi(t,i,!0);return s&&Ra(_,s),Ys>0&&!f&&On&&(_.shapeFlag&6?On[On.indexOf(t)]=_:On.push(_)),_.patchFlag=-2,_}if(uh(t)&&(t=t.__vccOpts),i){i=eh(i);let{class:_,style:y}=i;_&&!Ct(_)&&(i.class=Ae(_)),_t(y)&&(ll(y)&&!De(y)&&(y=Ht({},y)),i.style=Mo(y))}const h=Ct(t)?1:Dc(t)?128:fc(t)?64:_t(t)?4:Ge(t)?2:0;return a(t,i,s,l,u,h,f,!0)}function eh(t){return t?ll(t)||Ac(t)?Ht({},t):t:null}function Xi(t,i,s=!1,l=!1){const{props:u,ref:f,patchFlag:h,children:_,transition:y}=t,C=i?th(u||{},i):u,T={__v_isVNode:!0,__v_skip:!0,type:t.type,props:C,key:C&&Rc(C),ref:i&&i.ref?s&&f?De(f)?f.concat(Oa(i)):[f,Oa(i)]:Oa(i):f,scopeId:t.scopeId,slotScopeIds:t.slotScopeIds,children:_,target:t.target,targetStart:t.targetStart,targetAnchor:t.targetAnchor,staticCount:t.staticCount,shapeFlag:t.shapeFlag,patchFlag:i&&t.type!==oe?h===-1?16:h|16:h,dynamicProps:t.dynamicProps,dynamicChildren:t.dynamicChildren,appContext:t.appContext,dirs:t.dirs,transition:y,component:t.component,suspense:t.suspense,ssContent:t.ssContent&&Xi(t.ssContent),ssFallback:t.ssFallback&&Xi(t.ssFallback),placeholder:t.placeholder,el:t.el,anchor:t.anchor,ctx:t.ctx,ce:t.ce};return y&&l&&qs(T,y.clone(T)),T}function z(t=" ",i=0){return A(tr,null,t,i)}function $(t="",i=!1){return i?(p(),at(nn,null,t)):A(nn,null,t)}function ui(t){return t==null||typeof t=="boolean"?A(nn):De(t)?A(oe,null,t.slice()):Js(t)?Pi(t):A(tr,null,String(t))}function Pi(t){return t.el===null&&t.patchFlag!==-1||t.memo?t:Xi(t)}function Ra(t,i){let s=0;const{shapeFlag:l}=t;if(i==null)i=null;else if(De(i))s=16;else if(typeof i=="object")if(l&65){const u=i.default;u&&(u._c&&(u._d=!1),Ra(t,u()),u._c&&(u._d=!0));return}else{s=32;const u=i._;!u&&!Ac(i)?i._ctx=on:u===3&&on&&(on.slots._===1?i._=1:(i._=2,t.patchFlag|=1024))}else if(Ge(i)){if(l&65){Ra(t,{default:i});return}i={default:i,_ctx:on},s=32}else i=String(i),l&64?(s=16,i=[z(i)]):s=8;t.children=i,t.shapeFlag|=s}function th(...t){const i={};for(let s=0;shn||on;let Ba,Kr;{const t=qa(),i=(s,l)=>{let u;return(u=t[s])||(u=t[s]=[]),u.push(l),f=>{u.length>1?u.forEach(h=>h(f)):u[0](f)}};Ba=i("__VUE_INSTANCE_SETTERS__",s=>hn=s),Kr=i("__VUE_SSR_SETTERS__",s=>Xs=s)}const na=t=>{const i=hn;return Ba(t),t.scope.on(),()=>{t.scope.off(),Ba(i)}},Wl=()=>{hn&&hn.scope.off(),Ba(null)};function Uc(t){return t.vnode.shapeFlag&4}let Xs=!1;function sh(t,i=!1,s=!1){i&&Kr(i);const{props:l,children:u}=t.vnode,f=Uc(t);Uf(t,l,f,i),jf(t,u,s||i);const h=f?ah(t,i):void 0;return i&&Kr(!1),h}function ah(t,i){const s=t.type;t.accessCache=Object.create(null),t.proxy=new Proxy(t.ctx,Pf);const{setup:l}=s;if(l){fi();const u=t.setupContext=l.length>1?lh(t):null,f=na(t),h=ta(l,t,0,[t.props,u]),_=zu(h);if(hi(),f(),(_||t.sp)&&!is(t)&&_c(t),_){if(h.then(Wl,Wl),i)return h.then(y=>{Kl(t,y)}).catch(y=>{Ja(y,t,0)});t.asyncDep=h}else Kl(t,h)}else Vc(t)}function Kl(t,i,s){Ge(i)?t.type.__ssrInlineRender?t.ssrRender=i:t.render=i:_t(i)&&(t.setupState=tc(i)),Vc(t)}function Vc(t,i,s){const l=t.type;t.render||(t.render=l.render||di);{const u=na(t);fi();try{Cf(t)}finally{hi(),u()}}}const rh={get(t,i){return tn(t,"get",""),t[i]}};function lh(t){const i=s=>{t.exposed=s||{}};return{attrs:new Proxy(t.attrs,rh),slots:t.slots,emit:t.emit,expose:i}}function nr(t){return t.exposed?t.exposeProxy||(t.exposeProxy=new Proxy(tc(Wd(t.exposed)),{get(i,s){if(s in i)return i[s];if(s in Hs)return Hs[s](t)},has(i,s){return s in i||s in Hs}})):t.proxy}function uh(t){return Ge(t)&&"__vccOpts"in t}const ue=(t,i)=>Jd(t,i,Xs);function ch(t,i,s){try{Fa(-1);const l=arguments.length;return l===2?_t(i)&&!De(i)?Js(i)?A(t,null,[i]):A(t,i):A(t,null,i):(l>3?s=Array.prototype.slice.call(arguments,2):l===3&&Js(s)&&(s=[s]),A(t,i,s))}finally{Fa(1)}}const dh="3.5.39";/** -* @vue/runtime-dom v3.5.39 -* (c) 2018-present Yuxi (Evan) You and Vue contributors -* @license MIT -**/let Gr;const Gl=typeof window<"u"&&window.trustedTypes;if(Gl)try{Gr=Gl.createPolicy("vue",{createHTML:t=>t})}catch{}const Zc=Gr?t=>Gr.createHTML(t):t=>t,fh="http://www.w3.org/2000/svg",hh="http://www.w3.org/1998/Math/MathML",Ti=typeof document<"u"?document:null,ql=Ti&&Ti.createElement("template"),ph={insert:(t,i,s)=>{i.insertBefore(t,s||null)},remove:t=>{const i=t.parentNode;i&&i.removeChild(t)},createElement:(t,i,s,l)=>{const u=i==="svg"?Ti.createElementNS(fh,t):i==="mathml"?Ti.createElementNS(hh,t):s?Ti.createElement(t,{is:s}):Ti.createElement(t);return t==="select"&&l&&l.multiple!=null&&u.setAttribute("multiple",l.multiple),u},createText:t=>Ti.createTextNode(t),createComment:t=>Ti.createComment(t),setText:(t,i)=>{t.nodeValue=i},setElementText:(t,i)=>{t.textContent=i},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>Ti.querySelector(t),setScopeId(t,i){t.setAttribute(i,"")},insertStaticContent(t,i,s,l,u,f){const h=s?s.previousSibling:i.lastChild;if(u&&(u===f||u.nextSibling))for(;i.insertBefore(u.cloneNode(!0),s),!(u===f||!(u=u.nextSibling)););else{ql.innerHTML=Zc(l==="svg"?`${t}`:l==="mathml"?`${t}`:t);const _=ql.content;if(l==="svg"||l==="mathml"){const y=_.firstChild;for(;y.firstChild;)_.appendChild(y.firstChild);_.removeChild(y)}i.insertBefore(_,s)}return[h?h.nextSibling:i.firstChild,s?s.previousSibling:i.lastChild]}},Ki="transition",zs="animation",Qs=Symbol("_vtc"),Hc={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},mh=Ht({},hc,Hc),gh=t=>(t.displayName="Transition",t.props=mh,t),vh=gh((t,{slots:i})=>ch(hf,_h(t),i)),ko=(t,i=[])=>{De(t)?t.forEach(s=>s(...i)):t&&t(...i)},Yl=t=>t?De(t)?t.some(i=>i.length>1):t.length>1:!1;function _h(t){const i={};for(const ie in t)ie in Hc||(i[ie]=t[ie]);if(t.css===!1)return i;const{name:s="v",type:l,duration:u,enterFromClass:f=`${s}-enter-from`,enterActiveClass:h=`${s}-enter-active`,enterToClass:_=`${s}-enter-to`,appearFromClass:y=f,appearActiveClass:C=h,appearToClass:T=_,leaveFromClass:M=`${s}-leave-from`,leaveActiveClass:U=`${s}-leave-active`,leaveToClass:V=`${s}-leave-to`}=t,K=bh(u),F=K&&K[0],me=K&&K[1],{onBeforeEnter:he,onEnter:Y,onEnterCancelled:Le,onLeave:ce,onLeaveCancelled:Be,onBeforeAppear:Ne=he,onAppear:ze=Y,onAppearCancelled:We=Le}=i,we=(ie,Ke,re,qe)=>{ie._enterCancelled=qe,So(ie,Ke?T:_),So(ie,Ke?C:h),re&&re()},le=(ie,Ke)=>{ie._isLeaving=!1,So(ie,M),So(ie,V),So(ie,U),Ke&&Ke()},Me=ie=>(Ke,re)=>{const qe=ie?ze:Y,fe=()=>we(Ke,ie,re);ko(qe,[Ke,fe]),Jl(()=>{So(Ke,ie?y:f),Si(Ke,ie?T:_),Yl(qe)||Xl(Ke,l,F,fe)})};return Ht(i,{onBeforeEnter(ie){ko(he,[ie]),Si(ie,f),Si(ie,h)},onBeforeAppear(ie){ko(Ne,[ie]),Si(ie,y),Si(ie,C)},onEnter:Me(!1),onAppear:Me(!0),onLeave(ie,Ke){ie._isLeaving=!0;const re=()=>le(ie,Ke);Si(ie,M),ie._enterCancelled?(Si(ie,U),tu(ie)):(tu(ie),Si(ie,U)),Jl(()=>{ie._isLeaving&&(So(ie,M),Si(ie,V),Yl(ce)||Xl(ie,l,me,re))}),ko(ce,[ie,re])},onEnterCancelled(ie){we(ie,!1,void 0,!0),ko(Le,[ie])},onAppearCancelled(ie){we(ie,!0,void 0,!0),ko(We,[ie])},onLeaveCancelled(ie){le(ie),ko(Be,[ie])}})}function bh(t){if(t==null)return null;if(_t(t))return[Mr(t.enter),Mr(t.leave)];{const i=Mr(t);return[i,i]}}function Mr(t){return _d(t)}function Si(t,i){i.split(/\s+/).forEach(s=>s&&t.classList.add(s)),(t[Qs]||(t[Qs]=new Set)).add(i)}function So(t,i){i.split(/\s+/).forEach(l=>l&&t.classList.remove(l));const s=t[Qs];s&&(s.delete(i),s.size||(t[Qs]=void 0))}function Jl(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let yh=0;function Xl(t,i,s,l){const u=t._endId=++yh,f=()=>{u===t._endId&&l()};if(s!=null)return setTimeout(f,s);const{type:h,timeout:_,propCount:y}=xh(t,i);if(!h)return l();const C=h+"end";let T=0;const M=()=>{t.removeEventListener(C,U),f()},U=V=>{V.target===t&&++T>=y&&M()};setTimeout(()=>{T(s[K]||"").split(", "),u=l(`${Ki}Delay`),f=l(`${Ki}Duration`),h=Ql(u,f),_=l(`${zs}Delay`),y=l(`${zs}Duration`),C=Ql(_,y);let T=null,M=0,U=0;i===Ki?h>0&&(T=Ki,M=h,U=f.length):i===zs?C>0&&(T=zs,M=C,U=y.length):(M=Math.max(h,C),T=M>0?h>C?Ki:zs:null,U=T?T===Ki?f.length:y.length:0);const V=T===Ki&&/\b(?:transform|all)(?:,|$)/.test(l(`${Ki}Property`).toString());return{type:T,timeout:M,propCount:U,hasTransform:V}}function Ql(t,i){for(;t.lengtheu(s)+eu(t[l])))}function eu(t){return t==="auto"?0:Number(t.slice(0,-1).replace(",","."))*1e3}function tu(t){return(t?t.ownerDocument:document).body.offsetHeight}function wh(t,i,s){const l=t[Qs];l&&(i=(i?[i,...l]:[...l]).join(" ")),i==null?t.removeAttribute("class"):s?t.setAttribute("class",i):t.className=i}const Ua=Symbol("_vod"),jc=Symbol("_vsh"),kh={name:"show",beforeMount(t,{value:i},{transition:s}){t[Ua]=t.style.display==="none"?"":t.style.display,s&&i?s.beforeEnter(t):Is(t,i)},mounted(t,{value:i},{transition:s}){s&&i&&s.enter(t)},updated(t,{value:i,oldValue:s},{transition:l}){!i!=!s&&(l?i?(l.beforeEnter(t),Is(t,!0),l.enter(t)):l.leave(t,()=>{Is(t,!1)}):Is(t,i))},beforeUnmount(t,{value:i}){Is(t,i)}};function Is(t,i){t.style.display=i?t[Ua]:"none",t[jc]=!i}const Sh=Symbol(""),Th=/(?:^|;)\s*display\s*:/;function Ph(t,i,s){const l=t.style,u=Ct(s);let f=!1;if(s&&!u){if(i)if(Ct(i))for(const h of i.split(";")){const _=h.slice(0,h.indexOf(":")).trim();s[_]==null&&Ds(l,_,"")}else for(const h in i)s[h]==null&&Ds(l,h,"");for(const h in s){h==="display"&&(f=!0);const _=s[h];_!=null?Lh(t,h,!Ct(i)&&i?i[h]:void 0,_)||Ds(l,h,_):Ds(l,h,"")}}else if(u){if(i!==s){const h=l[Sh];h&&(s+=";"+h),l.cssText=s,f=Th.test(s)}}else i&&t.removeAttribute("style");Ua in t&&(t[Ua]=f?l.display:"",t[jc]&&(l.display="none"))}const nu=/\s*!important$/;function Ds(t,i,s){if(De(s))s.forEach(l=>Ds(t,i,l));else if(s==null&&(s=""),i.startsWith("--"))t.setProperty(i,s);else{const l=Ch(t,i);nu.test(s)?t.setProperty(eo(l),s.replace(nu,""),"important"):t[l]=s}}const iu=["Webkit","Moz","ms"],Er={};function Ch(t,i){const s=Er[i];if(s)return s;let l=Qn(i);if(l!=="filter"&&l in t)return Er[i]=l;l=Nu(l);for(let u=0;uOr||(Ih.then(()=>Or=0),Or=Date.now());function Nh(t,i){const s=l=>{if(!l._vts)l._vts=Date.now();else if(l._vts<=s.attached)return;const u=s.value;if(De(u)){const f=l.stopImmediatePropagation;l.stopImmediatePropagation=()=>{f.call(l),l._stopped=!0};const h=u.slice(),_=[l];for(let y=0;yt.charCodeAt(0)===111&&t.charCodeAt(1)===110&&t.charCodeAt(2)>96&&t.charCodeAt(2)<123,Dh=(t,i,s,l,u,f)=>{const h=u==="svg";i==="class"?wh(t,l,h):i==="style"?Ph(t,s,l):ja(i)?Wa(i)||Mh(t,i,s,l,f):(i[0]==="."?(i=i.slice(1),!0):i[0]==="^"?(i=i.slice(1),!1):Fh(t,i,l,h))?(au(t,i,l),!t.tagName.includes("-")&&(i==="value"||i==="checked"||i==="selected")&&su(t,i,l,h,f,i!=="value")):t._isVueCE&&(Rh(t,i)||t._def.__asyncLoader&&(/[A-Z]/.test(i)||!Ct(l)))?au(t,Qn(i),l,f,i):(i==="true-value"?t._trueValue=l:i==="false-value"&&(t._falseValue=l),su(t,i,l,h))};function Fh(t,i,s,l){if(l)return!!(i==="innerHTML"||i==="textContent"||i in t&&lu(i)&&Ge(s));if(i==="spellcheck"||i==="draggable"||i==="translate"||i==="autocorrect"||i==="sandbox"&&t.tagName==="IFRAME"||i==="form"||i==="list"&&t.tagName==="INPUT"||i==="type"&&t.tagName==="TEXTAREA")return!1;if(i==="width"||i==="height"){const u=t.tagName;if(u==="IMG"||u==="VIDEO"||u==="CANVAS"||u==="SOURCE")return!1}return lu(i)&&Ct(s)?!1:i in t}function Rh(t,i){const s=t._def.props;if(!s)return!1;const l=Qn(i);return Array.isArray(s)?s.some(u=>Qn(u)===l):Object.keys(s).some(u=>Qn(u)===l)}const Qi=t=>{const i=t.props["onUpdate:modelValue"]||!1;return De(i)?s=>Ea(i,s):i};function Bh(t){t.target.composing=!0}function uu(t){const i=t.target;i.composing&&(i.composing=!1,i.dispatchEvent(new Event("input")))}const jn=Symbol("_assign");function cu(t,i,s){return i&&(t=t.trim()),s&&(t=Ga(t)),t}const ye={created(t,{modifiers:{lazy:i,trim:s,number:l}},u){t[jn]=Qi(u);const f=l||u.props&&u.props.type==="number";Ai(t,i?"change":"input",h=>{h.target.composing||t[jn](cu(t.value,s,f))}),(s||f)&&Ai(t,"change",()=>{t.value=cu(t.value,s,f)}),i||(Ai(t,"compositionstart",Bh),Ai(t,"compositionend",uu),Ai(t,"change",uu))},mounted(t,{value:i}){t.value=i??""},beforeUpdate(t,{value:i,oldValue:s,modifiers:{lazy:l,trim:u,number:f}},h){if(t[jn]=Qi(h),t.composing)return;const _=(f||t.type==="number")&&!/^0\d/.test(t.value)?Ga(t.value):t.value,y=i??"";if(_===y)return;const C=t.getRootNode();(C instanceof Document||C instanceof ShadowRoot)&&C.activeElement===t&&t.type!=="range"&&(l&&i===s||u&&t.value.trim()===y)||(t.value=y)}},Va={deep:!0,created(t,i,s){t[jn]=Qi(s),Ai(t,"change",()=>{const l=t._modelValue,u=rs(t),f=t.checked,h=t[jn];if(De(l)){const _=tl(l,u),y=_!==-1;if(f&&!y)h(l.concat(u));else if(!f&&y){const C=[...l];C.splice(_,1),h(C)}}else if(ls(l)){const _=new Set(l);f?_.add(u):_.delete(u),h(_)}else h(Wc(t,f))})},mounted:du,beforeUpdate(t,i,s){t[jn]=Qi(s),du(t,i,s)}};function du(t,{value:i,oldValue:s},l){t._modelValue=i;let u;if(De(i))u=tl(i,l.props.value)>-1;else if(ls(i))u=i.has(l.props.value);else{if(i===s)return;u=Ji(i,Wc(t,!0))}t.checked!==u&&(t.checked=u)}const Uh={created(t,{value:i},s){t.checked=Ji(i,s.props.value),t[jn]=Qi(s),Ai(t,"change",()=>{t[jn](rs(t))})},beforeUpdate(t,{value:i,oldValue:s},l){t[jn]=Qi(l),i!==s&&(t.checked=Ji(i,l.props.value))}},zt={deep:!0,created(t,{value:i,modifiers:{number:s}},l){const u=ls(i);Ai(t,"change",()=>{const f=Array.prototype.filter.call(t.options,h=>h.selected).map(h=>s?Ga(rs(h)):rs(h));t[jn](t.multiple?u?new Set(f):f:f[0]),t._assigning=!0,ic(()=>{t._assigning=!1})}),t[jn]=Qi(l)},mounted(t,{value:i}){fu(t,i)},beforeUpdate(t,i,s){t[jn]=Qi(s)},updated(t,{value:i}){t._assigning||fu(t,i)}};function fu(t,i){const s=t.multiple,l=De(i);if(!(s&&!l&&!ls(i))){for(let u=0,f=t.options.length;uString(C)===String(_)):h.selected=tl(i,_)>-1}else h.selected=i.has(_);else if(Ji(rs(h),i)){t.selectedIndex!==u&&(t.selectedIndex=u);return}}!s&&t.selectedIndex!==-1&&(t.selectedIndex=-1)}}function rs(t){return"_value"in t?t._value:t.value}function Wc(t,i){const s=i?"_trueValue":"_falseValue";return s in t?t[s]:i}const Vh={created(t,i,s){Aa(t,i,s,null,"created")},mounted(t,i,s){Aa(t,i,s,null,"mounted")},beforeUpdate(t,i,s,l){Aa(t,i,s,l,"beforeUpdate")},updated(t,i,s,l){Aa(t,i,s,l,"updated")}};function Zh(t,i){switch(t){case"SELECT":return zt;case"TEXTAREA":return ye;default:switch(i){case"checkbox":return Va;case"radio":return Uh;default:return ye}}}function Aa(t,i,s,l,u){const h=Zh(t.tagName,s.props&&s.props.type)[u];h&&h(t,i,s,l)}const Hh=["ctrl","shift","alt","meta"],jh={stop:t=>t.stopPropagation(),prevent:t=>t.preventDefault(),self:t=>t.target!==t.currentTarget,ctrl:t=>!t.ctrlKey,shift:t=>!t.shiftKey,alt:t=>!t.altKey,meta:t=>!t.metaKey,left:t=>"button"in t&&t.button!==0,middle:t=>"button"in t&&t.button!==1,right:t=>"button"in t&&t.button!==2,exact:(t,i)=>Hh.some(s=>t[`${s}Key`]&&!i.includes(s))},hl=(t,i)=>{if(!t)return t;const s=t._withMods||(t._withMods={}),l=i.join(".");return s[l]||(s[l]=((u,...f)=>{for(let h=0;h{const s=t._withKeys||(t._withKeys={}),l=i.join(".");return s[l]||(s[l]=(u=>{if(!("key"in u))return;const f=eo(u.key);if(i.some(h=>h===f||Wh[h]===f))return t(u)}))},Kh=Ht({patchProp:Dh},ph);let pu;function Gh(){return pu||(pu=Kf(Kh))}const qh=((...t)=>{const i=Gh().createApp(...t),{mount:s}=i;return i.mount=l=>{const u=Jh(l);if(!u)return;const f=i._component;!Ge(f)&&!f.render&&!f.template&&(f.template=u.innerHTML),u.nodeType===1&&(u.textContent="");const h=s(u,!1,Yh(u));return u instanceof Element&&(u.removeAttribute("v-cloak"),u.setAttribute("data-v-app","")),h},i});function Yh(t){if(t instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&t instanceof MathMLElement)return"mathml"}function Jh(t){return Ct(t)?document.querySelector(t):t}const Kc="pv_theme",mu={light:"#EEF0F3",dark:"#0B1730"},Za=typeof window<"u"&&window.matchMedia?window.matchMedia("(prefers-color-scheme: dark)"):null;function Gc(){return Za&&Za.matches?"dark":"light"}function Xh(){try{return localStorage.getItem(Kc)||"light"}catch{return"light"}}function qc(t){return t==="system"?Gc():t}function Yc(t){const i=document.documentElement;i.setAttribute("data-theme",t),i.style.backgroundColor=mu[t]||mu.light}const Eo=W(Xh()),ss=W(qc(Eo.value));function Ha(t){Eo.value=t;const i=qc(t);ss.value=i,Yc(i);try{localStorage.setItem(Kc,t)}catch{}}function gu(){Ha(ss.value==="dark"?"light":"dark")}Za&&Za.addEventListener("change",()=>{if(Eo.value==="system"){const t=Gc();ss.value=t,Yc(t)}});async function Qh(){try{const t=await fetch("/bff/config");return t.ok?await t.json():{apiBase:""}}catch{return{apiBase:""}}}async function vu(){try{const t=await fetch("/bff/me");return t.ok?await t.json():null}catch{return null}}async function ep(t,i,s){const l=await fetch("/bff/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:t,password:i,apiBase:s})});return{ok:l.ok,status:l.status,body:await l.json().catch(()=>({}))}}async function tp(){try{await fetch("/bff/logout",{method:"POST"})}catch{}}async function np(){try{const t=await fetch("/bff/devices");return t.ok?await t.json():[]}catch{return[]}}async function ip(){try{const t=await fetch("/bff/users");return t.ok?{ok:!0,status:200,users:(await t.json()).users||[]}:{ok:!1,status:t.status,users:[]}}catch{return{ok:!1,status:0,users:[]}}}async function op(t,i,s,l){const u=await fetch("/bff/users",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:t,password:i,role:s,organization:l})});return{ok:u.ok,status:u.status,body:await u.json().catch(()=>({}))}}async function sp(t,i){const s=await fetch(`/bff/users/${encodeURIComponent(t)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function ap(t){const i=await fetch(`/bff/users/${encodeURIComponent(t)}`,{method:"DELETE"});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function rp(){try{const t=await fetch("/bff/orgs");return t.ok?{ok:!0,status:200,organizations:(await t.json()).organizations||[]}:{ok:!1,status:t.status,organizations:[]}}catch{return{ok:!1,status:0,organizations:[]}}}async function lp(t){const i=await fetch("/bff/orgs",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:t})});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function up(t,i){const s=await fetch(`/bff/orgs/${encodeURIComponent(t)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:i})});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function cp(t){const i=await fetch(`/bff/orgs/${encodeURIComponent(t)}`,{method:"DELETE"});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function dp(){try{const t=await fetch("/bff/preferences");if(!t.ok)return null;const i=await t.json();return i&&typeof i.preferences=="object"?i.preferences:null}catch{return null}}async function fp(t){try{return(await fetch("/bff/preferences",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify({preferences:t})})).ok}catch{return!1}}async function hp(){try{const t=await fetch("/bff/integrations/opensky");return t.ok?{ok:!0,status:200,body:await t.json()}:{ok:!1,status:t.status,body:await t.json().catch(()=>({}))}}catch{return{ok:!1,status:0,body:{}}}}async function _u(t){const i=await fetch("/bff/integrations/opensky",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function pp(t){const i=t?`?bbox=${encodeURIComponent(t)}`:"",s=await fetch(`/bff/integrations/opensky/health${i}`,{method:"POST"});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function mp(t){try{const i=t?`?bbox=${encodeURIComponent(t)}`:"",s=await fetch(`/bff/integrations/opensky/states${i}`);if(!s.ok)return{states:[],unavailable:!0,detail:"OpenSky unavailable"};const l=await s.json();return{states:l.states||[],time:l.time,unavailable:!!l.unavailable,detail:l.detail||"",plan:l.plan||"",recommendedInterval:l.recommendedInterval||0}}catch{return{states:[],unavailable:!0,detail:"OpenSky unavailable"}}}async function gp(){try{const t=await fetch("/bff/integrations/filetransfer");return t.ok?{ok:!0,status:200,body:await t.json()}:{ok:!1,status:t.status,body:await t.json().catch(()=>({}))}}catch{return{ok:!1,status:0,body:{}}}}async function bu(t){const i=await fetch("/bff/integrations/filetransfer",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function vp(){const t=await fetch("/bff/integrations/filetransfer/health",{method:"POST"});return{ok:t.ok,status:t.status,body:await t.json().catch(()=>({}))}}async function _p(){try{const t=await fetch("/bff/integrations/localstorage");return t.ok?{ok:!0,status:200,body:await t.json()}:{ok:!1,status:t.status,body:await t.json().catch(()=>({}))}}catch{return{ok:!1,status:0,body:{}}}}async function Ma(t){const i=await fetch("/bff/integrations/localstorage",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function bp(){const t=await fetch("/bff/integrations/localstorage/health",{method:"POST"});return{ok:t.ok,status:t.status,body:await t.json().catch(()=>({}))}}async function yp(){try{const t=await fetch("/bff/integrations/webdav");return t.ok?{ok:!0,status:200,body:await t.json()}:{ok:!1,status:t.status,body:await t.json().catch(()=>({}))}}catch{return{ok:!1,status:0,body:{}}}}async function yu(t){const i=await fetch("/bff/integrations/webdav",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function xp(){const t=await fetch("/bff/integrations/webdav/health",{method:"POST"});return{ok:t.ok,status:t.status,body:await t.json().catch(()=>({}))}}async function wp(){try{const t=await fetch("/bff/integrations/openweather");return t.ok?{ok:!0,status:200,body:await t.json()}:{ok:!1,status:t.status,body:await t.json().catch(()=>({}))}}catch{return{ok:!1,status:0,body:{}}}}async function xu(t){const i=await fetch("/bff/integrations/openweather",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function kp(){const t=await fetch("/bff/integrations/openweather/health",{method:"POST"});return{ok:t.ok,status:t.status,body:await t.json().catch(()=>({}))}}async function Sp(t,i){try{const s=t!=null&&i!=null?`?lat=${encodeURIComponent(t)}&lon=${encodeURIComponent(i)}`:"",l=await fetch(`/bff/integrations/openweather/current${s}`);return l.ok?await l.json():{unavailable:!0,detail:"Weather unavailable"}}catch{return{unavailable:!0,detail:"Weather unavailable"}}}async function Jc(){try{const t=await fetch("/bff/drones");return t.ok?{ok:!0,status:200,drones:(await t.json()).drones||[]}:{ok:!1,status:t.status,drones:[]}}catch{return{ok:!1,status:0,drones:[]}}}async function Tp(t){const i=await fetch("/bff/drones",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function Pp(t,i){const s=await fetch(`/bff/drones/${encodeURIComponent(t)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function Cp(t){const i=await fetch(`/bff/drones/${encodeURIComponent(t)}`,{method:"DELETE"});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function Lp(){try{const t=await fetch("/bff/flights");return t.ok?{ok:!0,status:200,flights:(await t.json()).flights||[]}:{ok:!1,status:t.status,flights:[]}}catch{return{ok:!1,status:0,flights:[]}}}async function Ap(t){const i=await fetch("/bff/flights",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function Mp(t,i){const s=await fetch(`/bff/flights/${encodeURIComponent(t)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function Ep(t){const i=await fetch(`/bff/flights/${encodeURIComponent(t)}`,{method:"DELETE"});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}function Op(){return"/bff/logbook/export"}async function zp(t){try{const i=t!=null&&t!==""?`?expiring=${encodeURIComponent(t)}`:"",s=await fetch(`/bff/documents${i}`);return s.ok?{ok:!0,status:200,documents:(await s.json()).documents||[]}:{ok:!1,status:s.status,documents:[]}}catch{return{ok:!1,status:0,documents:[]}}}async function Ip(t,i){const s=new FormData;Object.entries(t).forEach(([u,f])=>{f!=null&&f!==""&&s.append(u,f)}),i&&s.append("file",i);const l=await fetch("/bff/documents",{method:"POST",body:s});return{ok:l.ok,status:l.status,body:await l.json().catch(()=>({}))}}async function $p(t,i){const s=await fetch(`/bff/documents/${encodeURIComponent(t)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function Np(t){const i=await fetch(`/bff/documents/${encodeURIComponent(t)}`,{method:"DELETE"});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}function zr(t){return`/bff/documents/${encodeURIComponent(t)}/file`}function Dp(t){return`/bff/documents/${encodeURIComponent(t)}/file?inline=1`}async function Fp(t,i,s){const l=await fetch(`/bff/devices/${encodeURIComponent(t)}/command`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({command:i,payload:s})});return{ok:l.ok,body:await l.json().catch(()=>({}))}}const Xc="pv_prefs",qr={name:"",username:"",displayName:"",bio:"",avatar:"",showEmail:!1,fontSize:"md",language:"en",region:"US",dateFormat:"MDY",timeFormat:"24",reduceMotion:!1,showAirTraffic:!0,autoBbox:!0,airTrafficInterval:"auto",twoFactor:!1};function Rp(){try{return{...qr,...JSON.parse(localStorage.getItem(Xc)||"{}")||{}}}catch{return{...qr}}}const be=xt(Rp());function Qc(){try{localStorage.setItem(Xc,JSON.stringify(be))}catch{}}function ed(t){if(!t||typeof t!="object")return!1;for(const i of Object.keys(qr))i in t&&(be[i]=t[i]);return!0}const Bp={sm:15,md:16,lg:18};function pl(t){document.documentElement.style.fontSize=(Bp[t]||16)+"px"}function ml(t){document.documentElement.classList.toggle("reduce-motion",!!t)}function td(t){const i=new Date(t),s=i.getFullYear(),l=String(i.getMonth()+1).padStart(2,"0"),u=String(i.getDate()).padStart(2,"0");let f;switch(be.dateFormat){case"DMY":f=`${u}/${l}/${s}`;break;case"YMD":f=`${s}/${l}/${u}`;break;case"ISO":f=`${s}-${l}-${u}`;break;default:f=`${l}/${u}/${s}`}let h;return be.timeFormat==="12"?h=i.toLocaleTimeString("en-US",{hour:"numeric",minute:"2-digit",second:"2-digit",hour12:!0}):h=`${String(i.getHours()).padStart(2,"0")}:${String(i.getMinutes()).padStart(2,"0")}:${String(i.getSeconds()).padStart(2,"0")}`,{date:f,time:h}}function wu(t){return td(t).time}function ku(t){const i=td(t);return`${i.date} ${i.time}`}let gl=!1,Yr=!1,Jr=null;function Up(){return{...JSON.parse(JSON.stringify(be)),themeMode:Eo.value}}function vl(){!gl||Yr||(clearTimeout(Jr),Jr=setTimeout(()=>{fp(Up())},600))}function Vp(t){Yr=!0;try{ed(t),t.themeMode&&Ha(t.themeMode),pl(be.fontSize),ml(be.reduceMotion),Qc()}finally{Yr=!1}}async function Su(){gl=!0;const t=await dp();t&&Object.keys(t).length?Vp(t):vl()}function Zp(){gl=!1,clearTimeout(Jr)}Rt(be,()=>{Qc(),vl()},{deep:!0});Rt(Eo,vl);Rt(()=>be.fontSize,pl,{immediate:!0});Rt(()=>be.reduceMotion,ml,{immediate:!0});const Hp=["width","height"],nd={__name:"BrandMark",props:{size:{type:[Number,String],default:28}},setup(t){return(i,s)=>(p(),m("svg",{width:t.size,height:t.size,viewBox:"0 0 48 48",fill:"none","aria-hidden":"true"},[...s[0]||(s[0]=[a("g",{"stroke-width":"4","stroke-linecap":"round","stroke-linejoin":"round"},[a("polyline",{points:"8,30 19,17 30,30",stroke:"var(--accent)"}),a("polyline",{points:"18,33 29,20 40,33",stroke:"currentColor"})],-1)])],8,Hp))}},jp=["title","aria-label"],Wp={key:0,width:"18",height:"18",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},Kp={key:1,width:"18",height:"18",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},Gp={__name:"ThemeToggle",setup(t){return(i,s)=>(p(),m("button",{class:"btn-icon",type:"button",title:Oe(ss)==="dark"?"Switch to light":"Switch to dark","aria-label":Oe(ss)==="dark"?"Switch to light theme":"Switch to dark theme",onClick:s[0]||(s[0]=(...l)=>Oe(gu)&&Oe(gu)(...l))},[Oe(ss)==="dark"?(p(),m("svg",Wp,[...s[1]||(s[1]=[a("circle",{cx:"12",cy:"12",r:"4"},null,-1),a("path",{d:"M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41"},null,-1)])])):(p(),m("svg",Kp,[...s[2]||(s[2]=[a("path",{d:"M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9z"},null,-1)])]))],8,jp))}},qp={class:"relative grid h-full place-items-center p-5"},Yp={class:"absolute right-5 top-5"},Jp={class:"mb-6 flex items-center gap-3 text-ink"},Xp={class:"relative mb-1"},Qp=["type"],em=["aria-label","title"],tm={key:0,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"h-[18px] w-[18px]"},nm={key:1,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"h-[18px] w-[18px]"},im={key:0,class:"mt-4"},om={key:1,class:"mt-4 rounded border border-line bg-danger-soft px-3 py-2 text-sm text-danger-fg"},sm=["disabled"],am={__name:"LoginView",props:{defaultApiBase:{type:String,default:""}},emits:["signed-in"],setup(t,{emit:i}){const s=t,l=i,u=W(""),f=W(""),h=W(localStorage.getItem("api_url")||s.defaultApiBase||"http://localhost:8080"),_=W(!1),y=W(!1),C=W(!1),T=W("");async function M(){C.value=!0,T.value="",localStorage.setItem("api_url",h.value.trim());const{ok:U,status:V,body:K}=await ep(u.value.trim(),f.value,h.value.trim());if(C.value=!1,U){l("signed-in",K.email);return}T.value=V===400?"Invalid email or password.":V===502?"API server can't reach PocketBase.":K.message||K.error||"Cannot reach the API server."}return(U,V)=>(p(),m("div",qp,[a("div",Yp,[A(Gp)]),a("form",{class:"panel w-[380px] p-8 shadow-md",onSubmit:hl(M,["prevent"])},[a("div",Jp,[A(nd,{size:34}),V[5]||(V[5]=a("div",{class:"leading-tight"},[a("div",{class:"text-mode"},"PilotVault"),a("div",{class:"eyebrow mt-0.5"},"Control panel")],-1))]),V[9]||(V[9]=a("label",{class:"eyebrow mb-1.5 block"},"Email",-1)),Q(a("input",{"onUpdate:modelValue":V[0]||(V[0]=K=>u.value=K),type:"email",autocomplete:"username",required:"",class:"field mb-4",placeholder:"you@example.com"},null,512),[[ye,u.value]]),V[10]||(V[10]=a("label",{class:"eyebrow mb-1.5 block"},"Password",-1)),a("div",Xp,[Q(a("input",{"onUpdate:modelValue":V[1]||(V[1]=K=>f.value=K),type:y.value?"text":"password",autocomplete:"current-password",required:"",class:"field w-full pr-10",placeholder:"••••••••"},null,8,Qp),[[Vh,f.value]]),a("button",{type:"button",class:"absolute inset-y-0 right-0 grid w-10 place-items-center text-ink-muted transition hover:text-ink-secondary","aria-label":y.value?"Hide password":"Show password",title:y.value?"Hide password":"Show password",onClick:V[2]||(V[2]=K=>y.value=!y.value)},[y.value?(p(),m("svg",tm,[...V[6]||(V[6]=[a("path",{d:"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"},null,-1),a("line",{x1:"1",y1:"1",x2:"23",y2:"23"},null,-1)])])):(p(),m("svg",nm,[...V[7]||(V[7]=[a("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"},null,-1),a("circle",{cx:"12",cy:"12",r:"3"},null,-1)])]))],8,em)]),_.value?(p(),m("div",im,[V[8]||(V[8]=a("label",{class:"eyebrow mb-1.5 block"},"API Server",-1)),Q(a("input",{"onUpdate:modelValue":V[3]||(V[3]=K=>h.value=K),type:"text",class:"field font-mono",placeholder:"10.2.1.101:8080"},null,512),[[ye,h.value]])])):$("",!0),T.value?(p(),m("p",om,w(T.value),1)):$("",!0),a("button",{type:"submit",class:"btn-accent mt-6 w-full",disabled:C.value},w(C.value?"Signing in…":"Sign in"),9,sm),a("button",{type:"button",class:"mx-auto mt-3 block text-xs text-ink-muted transition hover:text-ink-secondary",onClick:V[4]||(V[4]=K=>_.value=!_.value)},w(_.value?"Hide server settings":"Server settings"),1)],32)]))}};function rm(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Fs={exports:{}};/* @preserve - * Leaflet 1.9.4, a JS library for interactive maps. https://leafletjs.com - * (c) 2010-2023 Vladimir Agafonkin, (c) 2010-2011 CloudMade - */var lm=Fs.exports,Tu;function um(){return Tu||(Tu=1,(function(t,i){(function(s,l){l(i)})(lm,(function(s){var l="1.9.4";function u(e){var n,o,r,d;for(o=1,r=arguments.length;o"u"||!L||!L.Mixin)){e=Le(e)?e:[e];for(var n=0;n0?Math.floor(e):Math.ceil(e)};ae.prototype={clone:function(){return new ae(this.x,this.y)},add:function(e){return this.clone()._add(pe(e))},_add:function(e){return this.x+=e.x,this.y+=e.y,this},subtract:function(e){return this.clone()._subtract(pe(e))},_subtract:function(e){return this.x-=e.x,this.y-=e.y,this},divideBy:function(e){return this.clone()._divideBy(e)},_divideBy:function(e){return this.x/=e,this.y/=e,this},multiplyBy:function(e){return this.clone()._multiplyBy(e)},_multiplyBy:function(e){return this.x*=e,this.y*=e,this},scaleBy:function(e){return new ae(this.x*e.x,this.y*e.y)},unscaleBy:function(e){return new ae(this.x/e.x,this.y/e.y)},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},ceil:function(){return this.clone()._ceil()},_ceil:function(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this},trunc:function(){return this.clone()._trunc()},_trunc:function(){return this.x=Lt(this.x),this.y=Lt(this.y),this},distanceTo:function(e){e=pe(e);var n=e.x-this.x,o=e.y-this.y;return Math.sqrt(n*n+o*o)},equals:function(e){return e=pe(e),e.x===this.x&&e.y===this.y},contains:function(e){return e=pe(e),Math.abs(e.x)<=Math.abs(this.x)&&Math.abs(e.y)<=Math.abs(this.y)},toString:function(){return"Point("+U(this.x)+", "+U(this.y)+")"}};function pe(e,n,o){return e instanceof ae?e:Le(e)?new ae(e[0],e[1]):e==null?e:typeof e=="object"&&"x"in e&&"y"in e?new ae(e.x,e.y):new ae(e,n,o)}function Ue(e,n){if(e)for(var o=n?[e,n]:e,r=0,d=o.length;r=this.min.x&&o.x<=this.max.x&&n.y>=this.min.y&&o.y<=this.max.y},intersects:function(e){e=Ve(e);var n=this.min,o=this.max,r=e.min,d=e.max,v=d.x>=n.x&&r.x<=o.x,P=d.y>=n.y&&r.y<=o.y;return v&&P},overlaps:function(e){e=Ve(e);var n=this.min,o=this.max,r=e.min,d=e.max,v=d.x>n.x&&r.xn.y&&r.y=n.lat&&d.lat<=o.lat&&r.lng>=n.lng&&d.lng<=o.lng},intersects:function(e){e=ot(e);var n=this._southWest,o=this._northEast,r=e.getSouthWest(),d=e.getNorthEast(),v=d.lat>=n.lat&&r.lat<=o.lat,P=d.lng>=n.lng&&r.lng<=o.lng;return v&&P},overlaps:function(e){e=ot(e);var n=this._southWest,o=this._northEast,r=e.getSouthWest(),d=e.getNorthEast(),v=d.lat>n.lat&&r.latn.lng&&r.lng1,Et=(function(){var e=!1;try{var n=Object.defineProperty({},"passive",{get:function(){e=!0}});window.addEventListener("testPassiveEventSupport",M,n),window.removeEventListener("testPassiveEventSupport",M,n)}catch{}return e})(),mn=(function(){return!!document.createElement("canvas").getContext})(),Ii=!!(document.createElementNS&&B("svg").createSVGRect),Pe=!!Ii&&(function(){var e=document.createElement("div");return e.innerHTML="",(e.firstChild&&e.firstChild.namespaceURI)==="http://www.w3.org/2000/svg"})(),qt=!Ii&&(function(){try{var e=document.createElement("div");e.innerHTML='';var n=e.firstChild;return n.style.behavior="url(#default#VML)",n&&typeof n.adj=="object"}catch{return!1}})(),Oo=navigator.platform.indexOf("Mac")===0,$n=navigator.platform.indexOf("Linux")===0;function an(e){return navigator.userAgent.toLowerCase().indexOf(e)>=0}var ve={ie:se,ielt9:ne,edge:ee,webkit:q,android:ge,android23:te,androidStock:Te,opera:Ze,chrome:Ye,gecko:st,safari:ft,phantom:Tt,opera12:Bt,win:Kt,ie3d:Nt,webkit3d:pn,gecko3d:Pt,any3d:Gt,mobile:zn,mobileWebkit:zi,mobileWebkit3d:rt,msPointer:Kn,pointer:In,touch:j,touchNative:ct,mobileOpera:O,mobileGecko:Ie,retina:it,passiveEvents:Et,canvas:mn,svg:Ii,vml:qt,inlineSvg:Pe,mac:Oo,linux:$n},rn=ve.msPointer?"MSPointerDown":"pointerdown",At=ve.msPointer?"MSPointerMove":"pointermove",oa=ve.msPointer?"MSPointerUp":"pointerup",cs=ve.msPointer?"MSPointerCancel":"pointercancel",to={touchstart:rn,touchmove:At,touchend:oa,touchcancel:cs},sa={touchstart:ds,touchmove:Gn,touchend:Gn,touchcancel:Gn},$i={},aa=!1;function ir(e,n,o){return n==="touchstart"&&ht(),sa[n]?(o=sa[n].bind(this,o),e.addEventListener(to[n],o,!1),o):(console.warn("wrong event specified:",n),M)}function ra(e,n,o){if(!to[n]){console.warn("wrong event specified:",n);return}e.removeEventListener(to[n],o,!1)}function or(e){$i[e.pointerId]=e}function sr(e){$i[e.pointerId]&&($i[e.pointerId]=e)}function la(e){delete $i[e.pointerId]}function ht(){aa||(document.addEventListener(rn,or,!0),document.addEventListener(At,sr,!0),document.addEventListener(oa,la,!0),document.addEventListener(cs,la,!0),aa=!0)}function Gn(e,n){if(n.pointerType!==(n.MSPOINTER_TYPE_MOUSE||"mouse")){n.touches=[];for(var o in $i)n.touches.push($i[o]);n.changedTouches=[n],e(n)}}function ds(e,n){n.MSPOINTER_TYPE_TOUCH&&n.pointerType===n.MSPOINTER_TYPE_TOUCH&&Dt(n),Gn(e,n)}function Yt(e){var n={},o,r;for(r in e)o=e[r],n[r]=o&&o.bind?o.bind(e):o;return e=n,n.type="dblclick",n.detail=2,n.isTrusted=!1,n._simulated=!0,n}var no=200;function zo(e,n){e.addEventListener("dblclick",n);var o=0,r;function d(v){if(v.detail!==1){r=v.detail;return}if(!(v.pointerType==="mouse"||v.sourceCapabilities&&!v.sourceCapabilities.firesTouchEvents)){var P=da(v);if(!(P.some(function(D){return D instanceof HTMLLabelElement&&D.attributes.for})&&!P.some(function(D){return D instanceof HTMLInputElement||D instanceof HTMLSelectElement}))){var N=Date.now();N-o<=no?(r++,r===2&&n(Yt(v))):r=1,o=N}}}return e.addEventListener("click",d),{dblclick:n,simDblclick:d}}function Io(e,n){e.removeEventListener("dblclick",n.dblclick),e.removeEventListener("click",n.simDblclick)}var Sn=Fo(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),Nn=Fo(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),ua=Nn==="webkitTransition"||Nn==="OTransition"?Nn+"End":"transitionend";function $o(e){return typeof e=="string"?document.getElementById(e):e}function pi(e,n){var o=e.style[n]||e.currentStyle&&e.currentStyle[n];if((!o||o==="auto")&&document.defaultView){var r=document.defaultView.getComputedStyle(e,null);o=r?r[n]:null}return o==="auto"?null:o}function lt(e,n,o){var r=document.createElement(e);return r.className=n||"",o&&o.appendChild(r),r}function ut(e){var n=e.parentNode;n&&n.removeChild(e)}function Tn(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function Pn(e){var n=e.parentNode;n&&n.lastChild!==e&&n.appendChild(e)}function jt(e){var n=e.parentNode;n&&n.firstChild!==e&&n.insertBefore(e,n.firstChild)}function No(e,n){if(e.classList!==void 0)return e.classList.contains(n);var o=Do(e);return o.length>0&&new RegExp("(^|\\s)"+n+"(\\s|$)").test(o)}function je(e,n){if(e.classList!==void 0)for(var o=K(n),r=0,d=o.length;r0?2*window.devicePixelRatio:1;function fa(e){return ve.edge?e.wheelDeltaY/2:e.deltaY&&e.deltaMode===0?-e.deltaY/vs:e.deltaY&&e.deltaMode===1?-e.deltaY*20:e.deltaY&&e.deltaMode===2?-e.deltaY*60:e.deltaX||e.deltaZ?0:e.wheelDelta?(e.wheelDeltaY||e.wheelDelta)/2:e.detail&&Math.abs(e.detail)<32765?-e.detail*20:e.detail?e.detail/-32765*60:0}function Ee(e,n){var o=n.relatedTarget;if(!o)return!0;try{for(;o&&o!==e;)o=o.parentNode}catch{return!1}return o!==e}var Ui={__proto__:null,on:$e,off:Qe,stopPropagation:vi,disableScrollPropagation:gs,disableClickPropagation:Ri,preventDefault:Dt,stop:_i,getPropagationPath:da,getMousePosition:Bi,getWheelDelta:fa,isExternalTarget:Ee,addListener:$e,removeListener:Qe},oo=de.extend({run:function(e,n,o,r){this.stop(),this._el=e,this._inProgress=!0,this._duration=o||.25,this._easeOutPower=1/Math.max(r||.5,.2),this._startPos=et(e),this._offset=n.subtract(this._startPos),this._startTime=+new Date,this.fire("start"),this._animate()},stop:function(){this._inProgress&&(this._step(!0),this._complete())},_animate:function(){this._animId=Me(this._animate,this),this._step()},_step:function(e){var n=+new Date-this._startTime,o=this._duration*1e3;nthis.options.maxZoom)?this.setZoom(e):this},panInsideBounds:function(e,n){this._enforcingBounds=!0;var o=this.getCenter(),r=this._limitCenter(o,this._zoom,ot(e));return o.equals(r)||this.panTo(r,n),this._enforcingBounds=!1,this},panInside:function(e,n){n=n||{};var o=pe(n.paddingTopLeft||n.padding||[0,0]),r=pe(n.paddingBottomRight||n.padding||[0,0]),d=this.project(this.getCenter()),v=this.project(e),P=this.getPixelBounds(),N=Ve([P.min.add(o),P.max.subtract(r)]),D=N.getSize();if(!N.contains(v)){this._enforcingBounds=!0;var X=v.subtract(N.getCenter()),_e=N.extend(v).getSize().subtract(D);d.x+=X.x<0?-_e.x:_e.x,d.y+=X.y<0?-_e.y:_e.y,this.panTo(this.unproject(d),n),this._enforcingBounds=!1}return this},invalidateSize:function(e){if(!this._loaded)return this;e=u({animate:!1,pan:!0},e===!0?{animate:!0}:e);var n=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var o=this.getSize(),r=n.divideBy(2).round(),d=o.divideBy(2).round(),v=r.subtract(d);return!v.x&&!v.y?this:(e.animate&&e.pan?this.panBy(v):(e.pan&&this._rawPanBy(v),this.fire("move"),e.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(h(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:n,newSize:o}))},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(e){if(e=this._locateOptions=u({timeout:1e4,watch:!1},e),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var n=h(this._handleGeolocationResponse,this),o=h(this._handleGeolocationError,this);return e.watch?this._locationWatchId=navigator.geolocation.watchPosition(n,o,e):navigator.geolocation.getCurrentPosition(n,o,e),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(e){if(this._container._leaflet_id){var n=e.code,o=e.message||(n===1?"permission denied":n===2?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:n,message:"Geolocation error: "+o+"."})}},_handleGeolocationResponse:function(e){if(this._container._leaflet_id){var n=e.coords.latitude,o=e.coords.longitude,r=new Ce(n,o),d=r.toBounds(e.coords.accuracy*2),v=this._locateOptions;if(v.setView){var P=this.getBoundsZoom(d);this.setView(r,v.maxZoom?Math.min(P,v.maxZoom):P)}var N={latlng:r,bounds:d,timestamp:e.timestamp};for(var D in e.coords)typeof e.coords[D]=="number"&&(N[D]=e.coords[D]);this.fire("locationfound",N)}},addHandler:function(e,n){if(!n)return this;var o=this[e]=new n(this);return this._handlers.push(o),this.options[e]&&o.enable(),this},remove:function(){if(this._initEvents(!0),this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch{this._container._leaflet_id=void 0,this._containerId=void 0}this._locationWatchId!==void 0&&this.stopLocate(),this._stop(),ut(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(ie(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload");var e;for(e in this._layers)this._layers[e].remove();for(e in this._panes)ut(this._panes[e]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(e,n){var o="leaflet-pane"+(e?" leaflet-"+e.replace("Pane","")+"-pane":""),r=lt("div",o,n||this._mapPane);return e&&(this._panes[e]=r),r},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter.clone():this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var e=this.getPixelBounds(),n=this.unproject(e.getBottomLeft()),o=this.unproject(e.getTopRight());return new mt(n,o)},getMinZoom:function(){return this.options.minZoom===void 0?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return this.options.maxZoom===void 0?this._layersMaxZoom===void 0?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(e,n,o){e=ot(e),o=pe(o||[0,0]);var r=this.getZoom()||0,d=this.getMinZoom(),v=this.getMaxZoom(),P=e.getNorthWest(),N=e.getSouthEast(),D=this.getSize().subtract(o),X=Ve(this.project(N,r),this.project(P,r)).getSize(),_e=ve.any3d?this.options.zoomSnap:1,Re=D.x/X.x,nt=D.y/X.y,un=n?Math.max(Re,nt):Math.min(Re,nt);return r=this.getScaleZoom(un,r),_e&&(r=Math.round(r/(_e/100))*(_e/100),r=n?Math.ceil(r/_e)*_e:Math.floor(r/_e)*_e),Math.max(d,Math.min(v,r))},getSize:function(){return(!this._size||this._sizeChanged)&&(this._size=new ae(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(e,n){var o=this._getTopLeftPoint(e,n);return new Ue(o,o.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(e){return this.options.crs.getProjectedBounds(e===void 0?this.getZoom():e)},getPane:function(e){return typeof e=="string"?this._panes[e]:e},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(e,n){var o=this.options.crs;return n=n===void 0?this._zoom:n,o.scale(e)/o.scale(n)},getScaleZoom:function(e,n){var o=this.options.crs;n=n===void 0?this._zoom:n;var r=o.zoom(e*o.scale(n));return isNaN(r)?1/0:r},project:function(e,n){return n=n===void 0?this._zoom:n,this.options.crs.latLngToPoint(J(e),n)},unproject:function(e,n){return n=n===void 0?this._zoom:n,this.options.crs.pointToLatLng(pe(e),n)},layerPointToLatLng:function(e){var n=pe(e).add(this.getPixelOrigin());return this.unproject(n)},latLngToLayerPoint:function(e){var n=this.project(J(e))._round();return n._subtract(this.getPixelOrigin())},wrapLatLng:function(e){return this.options.crs.wrapLatLng(J(e))},wrapLatLngBounds:function(e){return this.options.crs.wrapLatLngBounds(ot(e))},distance:function(e,n){return this.options.crs.distance(J(e),J(n))},containerPointToLayerPoint:function(e){return pe(e).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(e){return pe(e).add(this._getMapPanePos())},containerPointToLatLng:function(e){var n=this.containerPointToLayerPoint(pe(e));return this.layerPointToLatLng(n)},latLngToContainerPoint:function(e){return this.layerPointToContainerPoint(this.latLngToLayerPoint(J(e)))},mouseEventToContainerPoint:function(e){return Bi(e,this._container)},mouseEventToLayerPoint:function(e){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(e))},mouseEventToLatLng:function(e){return this.layerPointToLatLng(this.mouseEventToLayerPoint(e))},_initContainer:function(e){var n=this._container=$o(e);if(n){if(n._leaflet_id)throw new Error("Map container is already initialized.")}else throw new Error("Map container not found.");$e(n,"scroll",this._onScroll,this),this._containerId=y(n)},_initLayout:function(){var e=this._container;this._fadeAnimated=this.options.fadeAnimation&&ve.any3d,je(e,"leaflet-container"+(ve.touch?" leaflet-touch":"")+(ve.retina?" leaflet-retina":"")+(ve.ielt9?" leaflet-oldie":"")+(ve.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var n=pi(e,"position");n!=="absolute"&&n!=="relative"&&n!=="fixed"&&n!=="sticky"&&(e.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var e=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),Ot(this._mapPane,new ae(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(je(e.markerPane,"leaflet-zoom-hide"),je(e.shadowPane,"leaflet-zoom-hide"))},_resetView:function(e,n,o){Ot(this._mapPane,new ae(0,0));var r=!this._loaded;this._loaded=!0,n=this._limitZoom(n),this.fire("viewprereset");var d=this._zoom!==n;this._moveStart(d,o)._move(e,n)._moveEnd(d),this.fire("viewreset"),r&&this.fire("load")},_moveStart:function(e,n){return e&&this.fire("zoomstart"),n||this.fire("movestart"),this},_move:function(e,n,o,r){n===void 0&&(n=this._zoom);var d=this._zoom!==n;return this._zoom=n,this._lastCenter=e,this._pixelOrigin=this._getNewPixelOrigin(e),r?o&&o.pinch&&this.fire("zoom",o):((d||o&&o.pinch)&&this.fire("zoom",o),this.fire("move",o)),this},_moveEnd:function(e){return e&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return ie(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(e){Ot(this._mapPane,this._getMapPanePos().subtract(e))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(e){this._targets={},this._targets[y(this._container)]=this;var n=e?Qe:$e;n(this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&n(window,"resize",this._onResize,this),ve.any3d&&this.options.transform3DLimit&&(e?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){ie(this._resizeRequest),this._resizeRequest=Me(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var e=this._getMapPanePos();Math.max(Math.abs(e.x),Math.abs(e.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(e,n){for(var o=[],r,d=n==="mouseout"||n==="mouseover",v=e.target||e.srcElement,P=!1;v;){if(r=this._targets[y(v)],r&&(n==="click"||n==="preclick")&&this._draggableMoved(r)){P=!0;break}if(r&&r.listens(n,!0)&&(d&&!Ee(v,e)||(o.push(r),d))||v===this._container)break;v=v.parentNode}return!o.length&&!P&&!d&&this.listens(n,!0)&&(o=[this]),o},_isClickDisabled:function(e){for(;e&&e!==this._container;){if(e._leaflet_disable_click)return!0;e=e.parentNode}},_handleDOMEvent:function(e){var n=e.target||e.srcElement;if(!(!this._loaded||n._leaflet_disable_events||e.type==="click"&&this._isClickDisabled(n))){var o=e.type;o==="mousedown"&&Ro(n),this._fireDOMEvent(e,o)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(e,n,o){if(e.type==="click"){var r=u({},e);r.type="preclick",this._fireDOMEvent(r,r.type,o)}var d=this._findEventTargets(e,n);if(o){for(var v=[],P=0;P0?Math.round(e-n)/2:Math.max(0,Math.ceil(e))-Math.max(0,Math.floor(n))},_limitZoom:function(e){var n=this.getMinZoom(),o=this.getMaxZoom(),r=ve.any3d?this.options.zoomSnap:1;return r&&(e=Math.round(e/r)*r),Math.max(n,Math.min(o,e))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){Mt(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(e,n){var o=this._getCenterOffset(e)._trunc();return(n&&n.animate)!==!0&&!this.getSize().contains(o)?!1:(this.panBy(o,n),!0)},_createAnimProxy:function(){var e=this._proxy=lt("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(e),this.on("zoomanim",function(n){var o=Sn,r=this._proxy.style[o];mi(this._proxy,this.project(n.center,n.zoom),this.getZoomScale(n.zoom,1)),r===this._proxy.style[o]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",this._animMoveEnd,this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){ut(this._proxy),this.off("load moveend",this._animMoveEnd,this),delete this._proxy},_animMoveEnd:function(){var e=this.getCenter(),n=this.getZoom();mi(this._proxy,this.project(e,n),this.getZoomScale(n,1))},_catchTransitionEnd:function(e){this._animatingZoom&&e.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(e,n,o){if(this._animatingZoom)return!0;if(o=o||{},!this._zoomAnimated||o.animate===!1||this._nothingToAnimate()||Math.abs(n-this._zoom)>this.options.zoomAnimationThreshold)return!1;var r=this.getZoomScale(n),d=this._getCenterOffset(e)._divideBy(1-1/r);return o.animate!==!0&&!this.getSize().contains(d)?!1:(Me(function(){this._moveStart(!0,o.noMoveStart||!1)._animateZoom(e,n,!0)},this),!0)},_animateZoom:function(e,n,o,r){this._mapPane&&(o&&(this._animatingZoom=!0,this._animateToCenter=e,this._animateToZoom=n,je(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:e,zoom:n,noUpdate:r}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(h(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&Mt(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom,void 0,!0),this._tempFireZoomEvent&&this.fire("zoom"),delete this._tempFireZoomEvent,this.fire("move"),this._moveEnd(!0))}});function Vo(e,n){return new Xe(e,n)}var Xt=re.extend({options:{position:"topright"},initialize:function(e){F(this,e)},getPosition:function(){return this.options.position},setPosition:function(e){var n=this._map;return n&&n.removeControl(this),this.options.position=e,n&&n.addControl(this),this},getContainer:function(){return this._container},addTo:function(e){this.remove(),this._map=e;var n=this._container=this.onAdd(e),o=this.getPosition(),r=e._controlCorners[o];return je(n,"leaflet-control"),o.indexOf("bottom")!==-1?r.insertBefore(n,r.firstChild):r.appendChild(n),this._map.on("unload",this.remove,this),this},remove:function(){return this._map?(ut(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null,this):this},_refocusOnMap:function(e){this._map&&e&&e.screenX>0&&e.screenY>0&&this._map.getContainer().focus()}}),ln=function(e){return new Xt(e)};Xe.include({addControl:function(e){return e.addTo(this),this},removeControl:function(e){return e.remove(),this},_initControlPos:function(){var e=this._controlCorners={},n="leaflet-",o=this._controlContainer=lt("div",n+"control-container",this._container);function r(d,v){var P=n+d+" "+n+v;e[d+v]=lt("div",P,o)}r("top","left"),r("top","right"),r("bottom","left"),r("bottom","right")},_clearControlPos:function(){for(var e in this._controlCorners)ut(this._controlCorners[e]);ut(this._controlContainer),delete this._controlCorners,delete this._controlContainer}});var bi=Xt.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(e,n,o,r){return o1,this._baseLayersList.style.display=e?"":"none"),this._separator.style.display=n&&e?"":"none",this},_onLayerChange:function(e){this._handlingClick||this._update();var n=this._getLayer(y(e.target)),o=n.overlay?e.type==="add"?"overlayadd":"overlayremove":e.type==="add"?"baselayerchange":null;o&&this._map.fire(o,n)},_createRadioElement:function(e,n){var o='",r=document.createElement("div");return r.innerHTML=o,r.firstChild},_addItem:function(e){var n=document.createElement("label"),o=this._map.hasLayer(e.layer),r;e.overlay?(r=document.createElement("input"),r.type="checkbox",r.className="leaflet-control-layers-selector",r.defaultChecked=o):r=this._createRadioElement("leaflet-base-layers_"+y(this),o),this._layerControlInputs.push(r),r.layerId=y(e.layer),$e(r,"click",this._onInputClick,this);var d=document.createElement("span");d.innerHTML=" "+e.name;var v=document.createElement("span");n.appendChild(v),v.appendChild(r),v.appendChild(d);var P=e.overlay?this._overlaysList:this._baseLayersList;return P.appendChild(n),this._checkDisabledLayers(),n},_onInputClick:function(){if(!this._preventClick){var e=this._layerControlInputs,n,o,r=[],d=[];this._handlingClick=!0;for(var v=e.length-1;v>=0;v--)n=e[v],o=this._getLayer(n.layerId).layer,n.checked?r.push(o):n.checked||d.push(o);for(v=0;v=0;d--)n=e[d],o=this._getLayer(n.layerId).layer,n.disabled=o.options.minZoom!==void 0&&ro.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expandSafely:function(){var e=this._section;this._preventClick=!0,$e(e,"click",Dt),this.expand();var n=this;setTimeout(function(){Qe(e,"click",Dt),n._preventClick=!1})}}),so=function(e,n,o){return new bi(e,n,o)},Zo=Xt.extend({options:{position:"topleft",zoomInText:'+',zoomInTitle:"Zoom in",zoomOutText:'−',zoomOutTitle:"Zoom out"},onAdd:function(e){var n="leaflet-control-zoom",o=lt("div",n+" leaflet-bar"),r=this.options;return this._zoomInButton=this._createButton(r.zoomInText,r.zoomInTitle,n+"-in",o,this._zoomIn),this._zoomOutButton=this._createButton(r.zoomOutText,r.zoomOutTitle,n+"-out",o,this._zoomOut),this._updateDisabled(),e.on("zoomend zoomlevelschange",this._updateDisabled,this),o},onRemove:function(e){e.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(e){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(e.shiftKey?3:1))},_createButton:function(e,n,o,r,d){var v=lt("a",o,r);return v.innerHTML=e,v.href="#",v.title=n,v.setAttribute("role","button"),v.setAttribute("aria-label",n),Ri(v),$e(v,"click",_i),$e(v,"click",d,this),$e(v,"click",this._refocusOnMap,this),v},_updateDisabled:function(){var e=this._map,n="leaflet-disabled";Mt(this._zoomInButton,n),Mt(this._zoomOutButton,n),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),(this._disabled||e._zoom===e.getMinZoom())&&(je(this._zoomOutButton,n),this._zoomOutButton.setAttribute("aria-disabled","true")),(this._disabled||e._zoom===e.getMaxZoom())&&(je(this._zoomInButton,n),this._zoomInButton.setAttribute("aria-disabled","true"))}});Xe.mergeOptions({zoomControl:!0}),Xe.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new Zo,this.addControl(this.zoomControl))});var _s=function(e){return new Zo(e)},Ho=Xt.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(e){var n="leaflet-control-scale",o=lt("div",n),r=this.options;return this._addScales(r,n+"-line",o),e.on(r.updateWhenIdle?"moveend":"move",this._update,this),e.whenReady(this._update,this),o},onRemove:function(e){e.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(e,n,o){e.metric&&(this._mScale=lt("div",n,o)),e.imperial&&(this._iScale=lt("div",n,o))},_update:function(){var e=this._map,n=e.getSize().y/2,o=e.distance(e.containerPointToLatLng([0,n]),e.containerPointToLatLng([this.options.maxWidth,n]));this._updateScales(o)},_updateScales:function(e){this.options.metric&&e&&this._updateMetric(e),this.options.imperial&&e&&this._updateImperial(e)},_updateMetric:function(e){var n=this._getRoundNum(e),o=n<1e3?n+" m":n/1e3+" km";this._updateScale(this._mScale,o,n/e)},_updateImperial:function(e){var n=e*3.2808399,o,r,d;n>5280?(o=n/5280,r=this._getRoundNum(o),this._updateScale(this._iScale,r+" mi",r/o)):(d=this._getRoundNum(n),this._updateScale(this._iScale,d+" ft",d/n))},_updateScale:function(e,n,o){e.style.width=Math.round(this.options.maxWidth*o)+"px",e.innerHTML=n},_getRoundNum:function(e){var n=Math.pow(10,(Math.floor(e)+"").length-1),o=e/n;return o=o>=10?10:o>=5?5:o>=3?3:o>=2?2:1,n*o}}),ar=function(e){return new Ho(e)},vn='',Vi=Xt.extend({options:{position:"bottomright",prefix:''+(ve.inlineSvg?vn+" ":"")+"Leaflet"},initialize:function(e){F(this,e),this._attributions={}},onAdd:function(e){e.attributionControl=this,this._container=lt("div","leaflet-control-attribution"),Ri(this._container);for(var n in e._layers)e._layers[n].getAttribution&&this.addAttribution(e._layers[n].getAttribution());return this._update(),e.on("layeradd",this._addAttribution,this),this._container},onRemove:function(e){e.off("layeradd",this._addAttribution,this)},_addAttribution:function(e){e.layer.getAttribution&&(this.addAttribution(e.layer.getAttribution()),e.layer.once("remove",function(){this.removeAttribution(e.layer.getAttribution())},this))},setPrefix:function(e){return this.options.prefix=e,this._update(),this},addAttribution:function(e){return e?(this._attributions[e]||(this._attributions[e]=0),this._attributions[e]++,this._update(),this):this},removeAttribution:function(e){return e?(this._attributions[e]&&(this._attributions[e]--,this._update()),this):this},_update:function(){if(this._map){var e=[];for(var n in this._attributions)this._attributions[n]&&e.push(n);var o=[];this.options.prefix&&o.push(this.options.prefix),e.length&&o.push(e.join(", ")),this._container.innerHTML=o.join(' | ')}}});Xe.mergeOptions({attributionControl:!0}),Xe.addInitHook(function(){this.options.attributionControl&&new Vi().addTo(this)});var ha=function(e){return new Vi(e)};Xt.Layers=bi,Xt.Zoom=Zo,Xt.Scale=Ho,Xt.Attribution=Vi,ln.layers=so,ln.zoom=_s,ln.scale=ar,ln.attribution=ha;var Ln=re.extend({initialize:function(e){this._map=e},enable:function(){return this._enabled?this:(this._enabled=!0,this.addHooks(),this)},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}});Ln.addTo=function(e,n){return e.addHandler(n,this),this};var rr={Events:fe},bs=ve.touch?"touchstart mousedown":"mousedown",_n=de.extend({options:{clickTolerance:3},initialize:function(e,n,o,r){F(this,r),this._element=e,this._dragStartTarget=n||e,this._preventOutline=o},enable:function(){this._enabled||($e(this._dragStartTarget,bs,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(_n._dragging===this&&this.finishDrag(!0),Qe(this._dragStartTarget,bs,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(e){if(this._enabled&&(this._moved=!1,!No(this._element,"leaflet-zoom-anim"))){if(e.touches&&e.touches.length!==1){_n._dragging===this&&this.finishDrag();return}if(!(_n._dragging||e.shiftKey||e.which!==1&&e.button!==1&&!e.touches)&&(_n._dragging=this,this._preventOutline&&Ro(this._element),Ni(),Dn(),!this._moving)){this.fire("down");var n=e.touches?e.touches[0]:e,o=Bo(this._element);this._startPoint=new ae(n.clientX,n.clientY),this._startPos=et(this._element),this._parentScale=hs(o);var r=e.type==="mousedown";$e(document,r?"mousemove":"touchmove",this._onMove,this),$e(document,r?"mouseup":"touchend touchcancel",this._onUp,this)}}},_onMove:function(e){if(this._enabled){if(e.touches&&e.touches.length>1){this._moved=!0;return}var n=e.touches&&e.touches.length===1?e.touches[0]:e,o=new ae(n.clientX,n.clientY)._subtract(this._startPoint);!o.x&&!o.y||Math.abs(o.x)+Math.abs(o.y)v&&(P=N,v=D);v>o&&(n[P]=1,ws(e,n,o,r,P),ws(e,n,o,P,d))}function va(e,n){for(var o=[e[0]],r=1,d=0,v=e.length;rn&&(o.push(e[r]),d=r);return dn.max.x&&(o|=2),e.yn.max.y&&(o|=8),o}function ks(e,n){var o=n.x-e.x,r=n.y-e.y;return o*o+r*r}function Je(e,n,o,r){var d=n.x,v=n.y,P=o.x-d,N=o.y-v,D=P*P+N*N,X;return D>0&&(X=((e.x-d)*P+(e.y-v)*N)/D,X>1?(d=o.x,v=o.y):X>0&&(d+=P*X,v+=N*X)),P=e.x-d,N=e.y-v,r?P*P+N*N:new ae(d,v)}function kt(e){return!Le(e[0])||typeof e[0][0]!="object"&&typeof e[0][0]<"u"}function yi(e){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),kt(e)}function Ss(e,n){var o,r,d,v,P,N,D,X;if(!e||e.length===0)throw new Error("latlngs not passed");kt(e)||(console.warn("latlngs are not flat! Only the first ring will be used"),e=e[0]);var _e=J([0,0]),Re=ot(e),nt=Re.getNorthWest().distanceTo(Re.getSouthWest())*Re.getNorthEast().distanceTo(Re.getNorthWest());nt<1700&&(_e=ys(e));var un=e.length,Zt=[];for(o=0;or){D=(v-r)/d,X=[N.x-D*(N.x-P.x),N.y-D*(N.y-P.y)];break}var wn=n.unproject(pe(X));return J([wn.lat+_e.lat,wn.lng+_e.lng])}var dr={__proto__:null,simplify:xs,pointToSegmentDistance:ga,closestPointOnSegment:ur,clipSegment:jo,_getEdgeIntersection:Zi,_getBitCode:Fn,_sqClosestPointOnSegment:Je,isFlat:kt,_flat:yi,polylineCenter:Ss},ao={project:function(e){return new ae(e.lng,e.lat)},unproject:function(e){return new Ce(e.y,e.x)},bounds:new Ue([-180,-90],[180,90])},Ts={R:6378137,R_MINOR:6356752314245179e-9,bounds:new Ue([-2003750834279e-5,-1549657073972e-5],[2003750834279e-5,1876465623138e-5]),project:function(e){var n=Math.PI/180,o=this.R,r=e.lat*n,d=this.R_MINOR/o,v=Math.sqrt(1-d*d),P=v*Math.sin(r),N=Math.tan(Math.PI/4-r/2)/Math.pow((1-P)/(1+P),v/2);return r=-o*Math.log(Math.max(N,1e-10)),new ae(e.lng*n*o,r)},unproject:function(e){for(var n=180/Math.PI,o=this.R,r=this.R_MINOR/o,d=Math.sqrt(1-r*r),v=Math.exp(-e.y/o),P=Math.PI/2-2*Math.atan(v),N=0,D=.1,X;N<15&&Math.abs(D)>1e-7;N++)X=d*Math.sin(P),X=Math.pow((1-X)/(1+X),d/2),D=Math.PI/2-2*Math.atan(v*X)-P,P+=D;return new Ce(P*n,e.x*n/o)}},fr={__proto__:null,LonLat:ao,Mercator:Ts,SphericalMercator:dt},hr=u({},I,{code:"EPSG:3395",projection:Ts,transformation:(function(){var e=.5/(Math.PI*Ts.R);return x(e,.5,-e,.5)})()}),ba=u({},I,{code:"EPSG:4326",projection:ao,transformation:x(1/180,1,-1/180,.5)}),ro=u({},E,{projection:ao,transformation:x(1,0,-1,0),scale:function(e){return Math.pow(2,e)},zoom:function(e){return Math.log(e)/Math.LN2},distance:function(e,n){var o=n.lng-e.lng,r=n.lat-e.lat;return Math.sqrt(o*o+r*r)},infinite:!0});E.Earth=I,E.EPSG3395=hr,E.EPSG3857=b,E.EPSG900913=S,E.EPSG4326=ba,E.Simple=ro;var bn=de.extend({options:{pane:"overlayPane",attribution:null,bubblingMouseEvents:!0},addTo:function(e){return e.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(e){return e&&e.removeLayer(this),this},getPane:function(e){return this._map.getPane(e?this.options[e]||e:this.options.pane)},addInteractiveTarget:function(e){return this._map._targets[y(e)]=this,this},removeInteractiveTarget:function(e){return delete this._map._targets[y(e)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(e){var n=e.target;if(n.hasLayer(this)){if(this._map=n,this._zoomAnimated=n._zoomAnimated,this.getEvents){var o=this.getEvents();n.on(o,this),this.once("remove",function(){n.off(o,this)},this)}this.onAdd(n),this.fire("add"),n.fire("layeradd",{layer:this})}}});Xe.include({addLayer:function(e){if(!e._layerAdd)throw new Error("The provided object is not a Layer.");var n=y(e);return this._layers[n]?this:(this._layers[n]=e,e._mapToAdd=this,e.beforeAdd&&e.beforeAdd(this),this.whenReady(e._layerAdd,e),this)},removeLayer:function(e){var n=y(e);return this._layers[n]?(this._loaded&&e.onRemove(this),delete this._layers[n],this._loaded&&(this.fire("layerremove",{layer:e}),e.fire("remove")),e._map=e._mapToAdd=null,this):this},hasLayer:function(e){return y(e)in this._layers},eachLayer:function(e,n){for(var o in this._layers)e.call(n,this._layers[o]);return this},_addLayers:function(e){e=e?Le(e)?e:[e]:[];for(var n=0,o=e.length;nthis._layersMaxZoom&&this.setZoom(this._layersMaxZoom),this.options.minZoom===void 0&&this._layersMinZoom&&this.getZoom()=2&&n[0]instanceof Ce&&n[0].equals(n[o-1])&&n.pop(),n},_setLatLngs:function(e){Qt.prototype._setLatLngs.call(this,e),kt(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return kt(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var e=this._renderer._bounds,n=this.options.weight,o=new ae(n,n);if(e=new Ue(e.min.subtract(o),e.max.add(o)),this._parts=[],!(!this._pxBounds||!this._pxBounds.intersects(e))){if(this.options.noClip){this._parts=this._rings;return}for(var r=0,d=this._rings.length,v;re.y!=d.y>e.y&&e.x<(d.x-r.x)*(e.y-r.y)/(d.y-r.y)+r.x&&(n=!n);return n||Qt.prototype._containsPoint.call(this,e,!0)}});function ya(e,n){return new Rn(e,n)}var xn=yn.extend({initialize:function(e,n){F(this,n),this._layers={},e&&this.addData(e)},addData:function(e){var n=Le(e)?e:e.features,o,r,d;if(n){for(o=0,r=n.length;o0&&d.push(d[0].slice()),d}function tt(e,n){return e.feature?u({},e.feature,{geometry:n}):Mn(n)}function Mn(e){return e.type==="Feature"||e.type==="FeatureCollection"?e:{type:"Feature",properties:{},geometry:e}}var Wi={toGeoJSON:function(e){return tt(this,{type:"Point",coordinates:Ls(this.getLatLng(),e)})}};Wo.include(Wi),ji.include(Wi),xi.include(Wi),Qt.include({toGeoJSON:function(e){var n=!kt(this._latlngs),o=Go(this._latlngs,n?1:0,!1,e);return tt(this,{type:(n?"Multi":"")+"LineString",coordinates:o})}}),Rn.include({toGeoJSON:function(e){var n=!kt(this._latlngs),o=n&&!kt(this._latlngs[0]),r=Go(this._latlngs,o?2:n?1:0,!0,e);return n||(r=[r]),tt(this,{type:(o?"Multi":"")+"Polygon",coordinates:r})}}),Jn.include({toMultiPoint:function(e){var n=[];return this.eachLayer(function(o){n.push(o.toGeoJSON(e).geometry.coordinates)}),tt(this,{type:"MultiPoint",coordinates:n})},toGeoJSON:function(e){var n=this.feature&&this.feature.geometry&&this.feature.geometry.type;if(n==="MultiPoint")return this.toMultiPoint(e);var o=n==="GeometryCollection",r=[];return this.eachLayer(function(d){if(d.toGeoJSON){var v=d.toGeoJSON(e);if(o)r.push(v.geometry);else{var P=Mn(v);P.type==="FeatureCollection"?r.push.apply(r,P.features):r.push(P)}}}),o?tt(this,{geometries:r,type:"GeometryCollection"}):{type:"FeatureCollection",features:r}}});function qo(e,n){return new xn(e,n)}var gr=qo,fo=bn.extend({options:{opacity:1,alt:"",interactive:!1,crossOrigin:!1,errorOverlayUrl:"",zIndex:1,className:""},initialize:function(e,n,o){this._url=e,this._bounds=ot(n),F(this,o)},onAdd:function(){this._image||(this._initImage(),this.options.opacity<1&&this._updateOpacity()),this.options.interactive&&(je(this._image,"leaflet-interactive"),this.addInteractiveTarget(this._image)),this.getPane().appendChild(this._image),this._reset()},onRemove:function(){ut(this._image),this.options.interactive&&this.removeInteractiveTarget(this._image)},setOpacity:function(e){return this.options.opacity=e,this._image&&this._updateOpacity(),this},setStyle:function(e){return e.opacity&&this.setOpacity(e.opacity),this},bringToFront:function(){return this._map&&Pn(this._image),this},bringToBack:function(){return this._map&&jt(this._image),this},setUrl:function(e){return this._url=e,this._image&&(this._image.src=e),this},setBounds:function(e){return this._bounds=ot(e),this._map&&this._reset(),this},getEvents:function(){var e={zoom:this._reset,viewreset:this._reset};return this._zoomAnimated&&(e.zoomanim=this._animateZoom),e},setZIndex:function(e){return this.options.zIndex=e,this._updateZIndex(),this},getBounds:function(){return this._bounds},getElement:function(){return this._image},_initImage:function(){var e=this._url.tagName==="IMG",n=this._image=e?this._url:lt("img");if(je(n,"leaflet-image-layer"),this._zoomAnimated&&je(n,"leaflet-zoom-animated"),this.options.className&&je(n,this.options.className),n.onselectstart=M,n.onmousemove=M,n.onload=h(this.fire,this,"load"),n.onerror=h(this._overlayOnError,this,"error"),(this.options.crossOrigin||this.options.crossOrigin==="")&&(n.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),this.options.zIndex&&this._updateZIndex(),e){this._url=n.src;return}n.src=this._url,n.alt=this.options.alt},_animateZoom:function(e){var n=this._map.getZoomScale(e.zoom),o=this._map._latLngBoundsToNewLayerBounds(this._bounds,e.zoom,e.center).min;mi(this._image,o,n)},_reset:function(){var e=this._image,n=new Ue(this._map.latLngToLayerPoint(this._bounds.getNorthWest()),this._map.latLngToLayerPoint(this._bounds.getSouthEast())),o=n.getSize();Ot(e,n.min),e.style.width=o.x+"px",e.style.height=o.y+"px"},_updateOpacity:function(){gn(this._image,this.options.opacity)},_updateZIndex:function(){this._image&&this.options.zIndex!==void 0&&this.options.zIndex!==null&&(this._image.style.zIndex=this.options.zIndex)},_overlayOnError:function(){this.fire("error");var e=this.options.errorOverlayUrl;e&&this._url!==e&&(this._url=e,this._image.src=e)},getCenter:function(){return this._bounds.getCenter()}}),vr=function(e,n,o){return new fo(e,n,o)},ho=fo.extend({options:{autoplay:!0,loop:!0,keepAspectRatio:!0,muted:!1,playsInline:!0},_initImage:function(){var e=this._url.tagName==="VIDEO",n=this._image=e?this._url:lt("video");if(je(n,"leaflet-image-layer"),this._zoomAnimated&&je(n,"leaflet-zoom-animated"),this.options.className&&je(n,this.options.className),n.onselectstart=M,n.onmousemove=M,n.onloadeddata=h(this.fire,this,"load"),e){for(var o=n.getElementsByTagName("source"),r=[],d=0;d0?r:[n.src];return}Le(this._url)||(this._url=[this._url]),!this.options.keepAspectRatio&&Object.prototype.hasOwnProperty.call(n.style,"objectFit")&&(n.style.objectFit="fill"),n.autoplay=!!this.options.autoplay,n.loop=!!this.options.loop,n.muted=!!this.options.muted,n.playsInline=!!this.options.playsInline;for(var v=0;v×',$e(r,"click",function(d){Dt(d),this.close()},this)}},_updateLayout:function(){var e=this._contentNode,n=e.style;n.width="",n.whiteSpace="nowrap";var o=e.offsetWidth;o=Math.min(o,this.options.maxWidth),o=Math.max(o,this.options.minWidth),n.width=o+1+"px",n.whiteSpace="",n.height="";var r=e.offsetHeight,d=this.options.maxHeight,v="leaflet-popup-scrolled";d&&r>d?(n.height=d+"px",je(e,v)):Mt(e,v),this._containerWidth=this._container.offsetWidth},_animateZoom:function(e){var n=this._map._latLngToNewLayerPoint(this._latlng,e.zoom,e.center),o=this._getAnchor();Ot(this._container,n.add(o))},_adjustPan:function(){if(this.options.autoPan){if(this._map._panAnim&&this._map._panAnim.stop(),this._autopanning){this._autopanning=!1;return}var e=this._map,n=parseInt(pi(this._container,"marginBottom"),10)||0,o=this._container.offsetHeight+n,r=this._containerWidth,d=new ae(this._containerLeft,-o-this._containerBottom);d._add(et(this._container));var v=e.layerPointToContainerPoint(d),P=pe(this.options.autoPanPadding),N=pe(this.options.autoPanPaddingTopLeft||P),D=pe(this.options.autoPanPaddingBottomRight||P),X=e.getSize(),_e=0,Re=0;v.x+r+D.x>X.x&&(_e=v.x+r-X.x+D.x),v.x-_e-N.x<0&&(_e=v.x-N.x),v.y+o+D.y>X.y&&(Re=v.y+o-X.y+D.y),v.y-Re-N.y<0&&(Re=v.y-N.y),(_e||Re)&&(this.options.keepInView&&(this._autopanning=!0),e.fire("autopanstart").panBy([_e,Re]))}},_getAnchor:function(){return pe(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}}),As=function(e,n){return new Bn(e,n)};Xe.mergeOptions({closePopupOnClick:!0}),Xe.include({openPopup:function(e,n,o){return this._initOverlay(Bn,e,n,o).openOn(this),this},closePopup:function(e){return e=arguments.length?e:this._popup,e&&e.close(),this}}),bn.include({bindPopup:function(e,n){return this._popup=this._initOverlay(Bn,this._popup,e,n),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(e){return this._popup&&(this instanceof yn||(this._popup._source=this),this._popup._prepareOpen(e||this._latlng)&&this._popup.openOn(this._map)),this},closePopup:function(){return this._popup&&this._popup.close(),this},togglePopup:function(){return this._popup&&this._popup.toggle(this),this},isPopupOpen:function(){return this._popup?this._popup.isOpen():!1},setPopupContent:function(e){return this._popup&&this._popup.setContent(e),this},getPopup:function(){return this._popup},_openPopup:function(e){if(!(!this._popup||!this._map)){_i(e);var n=e.layer||e.target;if(this._popup._source===n&&!(n instanceof ii)){this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(e.latlng);return}this._popup._source=n,this.openPopup(e.latlng)}},_movePopup:function(e){this._popup.setLatLng(e.latlng)},_onKeyPress:function(e){e.originalEvent.keyCode===13&&this._openPopup(e)}});var vo=It.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(e){It.prototype.onAdd.call(this,e),this.setOpacity(this.options.opacity),e.fire("tooltipopen",{tooltip:this}),this._source&&(this.addEventParent(this._source),this._source.fire("tooltipopen",{tooltip:this},!0))},onRemove:function(e){It.prototype.onRemove.call(this,e),e.fire("tooltipclose",{tooltip:this}),this._source&&(this.removeEventParent(this._source),this._source.fire("tooltipclose",{tooltip:this},!0))},getEvents:function(){var e=It.prototype.getEvents.call(this);return this.options.permanent||(e.preclick=this.close),e},_initLayout:function(){var e="leaflet-tooltip",n=e+" "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=lt("div",n),this._container.setAttribute("role","tooltip"),this._container.setAttribute("id","leaflet-tooltip-"+y(this))},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(e){var n,o,r=this._map,d=this._container,v=r.latLngToContainerPoint(r.getCenter()),P=r.layerPointToContainerPoint(e),N=this.options.direction,D=d.offsetWidth,X=d.offsetHeight,_e=pe(this.options.offset),Re=this._getAnchor();N==="top"?(n=D/2,o=X):N==="bottom"?(n=D/2,o=0):N==="center"?(n=D/2,o=X/2):N==="right"?(n=0,o=X/2):N==="left"?(n=D,o=X/2):P.xthis.options.maxZoom||or?this._retainParent(d,v,P,r):!1)},_retainChildren:function(e,n,o,r){for(var d=2*e;d<2*e+2;d++)for(var v=2*n;v<2*n+2;v++){var P=new ae(d,v);P.z=o+1;var N=this._tileCoordsToKey(P),D=this._tiles[N];if(D&&D.active){D.retain=!0;continue}else D&&D.loaded&&(D.retain=!0);o+1this.options.maxZoom||this.options.minZoom!==void 0&&d1){this._setView(e,o);return}for(var Re=d.min.y;Re<=d.max.y;Re++)for(var nt=d.min.x;nt<=d.max.x;nt++){var un=new ae(nt,Re);if(un.z=this._tileZoom,!!this._isValidTile(un)){var Zt=this._tiles[this._tileCoordsToKey(un)];Zt?Zt.current=!0:P.push(un)}}if(P.sort(function(wn,Jo){return wn.distanceTo(v)-Jo.distanceTo(v)}),P.length!==0){this._loading||(this._loading=!0,this.fire("loading"));var Un=document.createDocumentFragment();for(nt=0;nto.max.x)||!n.wrapLat&&(e.yo.max.y))return!1}if(!this.options.bounds)return!0;var r=this._tileCoordsToBounds(e);return ot(this.options.bounds).overlaps(r)},_keyToBounds:function(e){return this._tileCoordsToBounds(this._keyToTileCoords(e))},_tileCoordsToNwSe:function(e){var n=this._map,o=this.getTileSize(),r=e.scaleBy(o),d=r.add(o),v=n.unproject(r,e.z),P=n.unproject(d,e.z);return[v,P]},_tileCoordsToBounds:function(e){var n=this._tileCoordsToNwSe(e),o=new mt(n[0],n[1]);return this.options.noWrap||(o=this._map.wrapLatLngBounds(o)),o},_tileCoordsToKey:function(e){return e.x+":"+e.y+":"+e.z},_keyToTileCoords:function(e){var n=e.split(":"),o=new ae(+n[0],+n[1]);return o.z=+n[2],o},_removeTile:function(e){var n=this._tiles[e];n&&(ut(n.el),delete this._tiles[e],this.fire("tileunload",{tile:n.el,coords:this._keyToTileCoords(e)}))},_initTile:function(e){je(e,"leaflet-tile");var n=this.getTileSize();e.style.width=n.x+"px",e.style.height=n.y+"px",e.onselectstart=M,e.onmousemove=M,ve.ielt9&&this.options.opacity<1&&gn(e,this.options.opacity)},_addTile:function(e,n){var o=this._getTilePos(e),r=this._tileCoordsToKey(e),d=this.createTile(this._wrapCoords(e),h(this._tileReady,this,e));this._initTile(d),this.createTile.length<2&&Me(h(this._tileReady,this,e,null,d)),Ot(d,o),this._tiles[r]={el:d,coords:e,current:!0},n.appendChild(d),this.fire("tileloadstart",{tile:d,coords:e})},_tileReady:function(e,n,o){n&&this.fire("tileerror",{error:n,tile:o,coords:e});var r=this._tileCoordsToKey(e);o=this._tiles[r],o&&(o.loaded=+new Date,this._map._fadeAnimated?(gn(o.el,0),ie(this._fadeFrame),this._fadeFrame=Me(this._updateOpacity,this)):(o.active=!0,this._pruneTiles()),n||(je(o.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:o.el,coords:e})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),ve.ielt9||!this._map._fadeAnimated?Me(this._pruneTiles,this):setTimeout(h(this._pruneTiles,this),250)))},_getTilePos:function(e){return e.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(e){var n=new ae(this._wrapX?T(e.x,this._wrapX):e.x,this._wrapY?T(e.y,this._wrapY):e.y);return n.z=e.z,n},_pxBoundsToTileRange:function(e){var n=this.getTileSize();return new Ue(e.min.unscaleBy(n).floor(),e.max.unscaleBy(n).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var e in this._tiles)if(!this._tiles[e].loaded)return!1;return!0}});function br(e){return new _o(e)}var Xn=_o.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(e,n){this._url=e,n=F(this,n),n.detectRetina&&ve.retina&&n.maxZoom>0?(n.tileSize=Math.floor(n.tileSize/2),n.zoomReverse?(n.zoomOffset--,n.minZoom=Math.min(n.maxZoom,n.minZoom+1)):(n.zoomOffset++,n.maxZoom=Math.max(n.minZoom,n.maxZoom-1)),n.minZoom=Math.max(0,n.minZoom)):n.zoomReverse?n.minZoom=Math.min(n.maxZoom,n.minZoom):n.maxZoom=Math.max(n.minZoom,n.maxZoom),typeof n.subdomains=="string"&&(n.subdomains=n.subdomains.split("")),this.on("tileunload",this._onTileRemove)},setUrl:function(e,n){return this._url===e&&n===void 0&&(n=!0),this._url=e,n||this.redraw(),this},createTile:function(e,n){var o=document.createElement("img");return $e(o,"load",h(this._tileOnLoad,this,n,o)),$e(o,"error",h(this._tileOnError,this,n,o)),(this.options.crossOrigin||this.options.crossOrigin==="")&&(o.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),typeof this.options.referrerPolicy=="string"&&(o.referrerPolicy=this.options.referrerPolicy),o.alt="",o.src=this.getTileUrl(e),o},getTileUrl:function(e){var n={r:ve.retina?"@2x":"",s:this._getSubdomain(e),x:e.x,y:e.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var o=this._globalTileRange.max.y-e.y;this.options.tms&&(n.y=o),n["-y"]=o}return Y(this._url,u(n,this.options))},_tileOnLoad:function(e,n){ve.ielt9?setTimeout(h(e,this,null,n),0):e(null,n)},_tileOnError:function(e,n,o){var r=this.options.errorTileUrl;r&&n.getAttribute("src")!==r&&(n.src=r),e(o,n)},_onTileRemove:function(e){e.tile.onload=null},_getZoomForUrl:function(){var e=this._tileZoom,n=this.options.maxZoom,o=this.options.zoomReverse,r=this.options.zoomOffset;return o&&(e=n-e),e+r},_getSubdomain:function(e){var n=Math.abs(e.x+e.y)%this.options.subdomains.length;return this.options.subdomains[n]},_abortLoading:function(){var e,n;for(e in this._tiles)if(this._tiles[e].coords.z!==this._tileZoom&&(n=this._tiles[e].el,n.onload=M,n.onerror=M,!n.complete)){n.src=Be;var o=this._tiles[e].coords;ut(n),delete this._tiles[e],this.fire("tileabort",{tile:n,coords:o})}},_removeTile:function(e){var n=this._tiles[e];if(n)return n.el.setAttribute("src",Be),_o.prototype._removeTile.call(this,e)},_tileReady:function(e,n,o){if(!(!this._map||o&&o.getAttribute("src")===Be))return _o.prototype._tileReady.call(this,e,n,o)}});function wa(e,n){return new Xn(e,n)}var yt=Xn.extend({defaultWmsParams:{service:"WMS",request:"GetMap",layers:"",styles:"",format:"image/jpeg",transparent:!1,version:"1.1.1"},options:{crs:null,uppercase:!1},initialize:function(e,n){this._url=e;var o=u({},this.defaultWmsParams);for(var r in n)r in this.options||(o[r]=n[r]);n=F(this,n);var d=n.detectRetina&&ve.retina?2:1,v=this.getTileSize();o.width=v.x*d,o.height=v.y*d,this.wmsParams=o},onAdd:function(e){this._crs=this.options.crs||e.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var n=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[n]=this._crs.code,Xn.prototype.onAdd.call(this,e)},getTileUrl:function(e){var n=this._tileCoordsToNwSe(e),o=this._crs,r=Ve(o.project(n[0]),o.project(n[1])),d=r.min,v=r.max,P=(this._wmsVersion>=1.3&&this._crs===ba?[d.y,d.x,v.y,v.x]:[d.x,d.y,v.x,v.y]).join(","),N=Xn.prototype.getTileUrl.call(this,e);return N+me(this.wmsParams,N,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+P},setParams:function(e,n){return u(this.wmsParams,e),n||this.redraw(),this}});function bo(e,n){return new yt(e,n)}Xn.WMS=yt,wa.wms=bo;var En=bn.extend({options:{padding:.1},initialize:function(e){F(this,e),y(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),je(this._container,"leaflet-zoom-animated")),this.getPane().appendChild(this._container),this._update(),this.on("update",this._updatePaths,this)},onRemove:function(){this.off("update",this._updatePaths,this),this._destroyContainer()},getEvents:function(){var e={viewreset:this._reset,zoom:this._onZoom,moveend:this._update,zoomend:this._onZoomEnd};return this._zoomAnimated&&(e.zoomanim=this._onAnimZoom),e},_onAnimZoom:function(e){this._updateTransform(e.center,e.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(e,n){var o=this._map.getZoomScale(n,this._zoom),r=this._map.getSize().multiplyBy(.5+this.options.padding),d=this._map.project(this._center,n),v=r.multiplyBy(-o).add(d).subtract(this._map._getNewPixelOrigin(e,n));ve.any3d?mi(this._container,v,o):Ot(this._container,v)},_reset:function(){this._update(),this._updateTransform(this._center,this._zoom);for(var e in this._layers)this._layers[e]._reset()},_onZoomEnd:function(){for(var e in this._layers)this._layers[e]._project()},_updatePaths:function(){for(var e in this._layers)this._layers[e]._update()},_update:function(){var e=this.options.padding,n=this._map.getSize(),o=this._map.containerPointToLayerPoint(n.multiplyBy(-e)).round();this._bounds=new Ue(o,o.add(n.multiplyBy(1+e*2)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),Yo=En.extend({options:{tolerance:0},getEvents:function(){var e=En.prototype.getEvents.call(this);return e.viewprereset=this._onViewPreReset,e},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){En.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var e=this._container=document.createElement("canvas");$e(e,"mousemove",this._onMouseMove,this),$e(e,"click dblclick mousedown mouseup contextmenu",this._onClick,this),$e(e,"mouseout",this._handleMouseOut,this),e._leaflet_disable_events=!0,this._ctx=e.getContext("2d")},_destroyContainer:function(){ie(this._redrawRequest),delete this._ctx,ut(this._container),Qe(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){var e;this._redrawBounds=null;for(var n in this._layers)e=this._layers[n],e._update();this._redraw()}},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){En.prototype._update.call(this);var e=this._bounds,n=this._container,o=e.getSize(),r=ve.retina?2:1;Ot(n,e.min),n.width=r*o.x,n.height=r*o.y,n.style.width=o.x+"px",n.style.height=o.y+"px",ve.retina&&this._ctx.scale(2,2),this._ctx.translate(-e.min.x,-e.min.y),this.fire("update")}},_reset:function(){En.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(e){this._updateDashArray(e),this._layers[y(e)]=e;var n=e._order={layer:e,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=n),this._drawLast=n,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(e){this._requestRedraw(e)},_removePath:function(e){var n=e._order,o=n.next,r=n.prev;o?o.prev=r:this._drawLast=r,r?r.next=o:this._drawFirst=o,delete e._order,delete this._layers[y(e)],this._requestRedraw(e)},_updatePath:function(e){this._extendRedrawBounds(e),e._project(),e._update(),this._requestRedraw(e)},_updateStyle:function(e){this._updateDashArray(e),this._requestRedraw(e)},_updateDashArray:function(e){if(typeof e.options.dashArray=="string"){var n=e.options.dashArray.split(/[, ]+/),o=[],r,d;for(d=0;d')}}catch{}return function(e){return document.createElement("<"+e+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}})(),g={_initContainer:function(){this._container=lt("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(En.prototype._update.call(this),this.fire("update"))},_initPath:function(e){var n=e._container=yo("shape");je(n,"leaflet-vml-shape "+(this.options.className||"")),n.coordsize="1 1",e._path=yo("path"),n.appendChild(e._path),this._updateStyle(e),this._layers[y(e)]=e},_addPath:function(e){var n=e._container;this._container.appendChild(n),e.options.interactive&&e.addInteractiveTarget(n)},_removePath:function(e){var n=e._container;ut(n),e.removeInteractiveTarget(n),delete this._layers[y(e)]},_updateStyle:function(e){var n=e._stroke,o=e._fill,r=e.options,d=e._container;d.stroked=!!r.stroke,d.filled=!!r.fill,r.stroke?(n||(n=e._stroke=yo("stroke")),d.appendChild(n),n.weight=r.weight+"px",n.color=r.color,n.opacity=r.opacity,r.dashArray?n.dashStyle=Le(r.dashArray)?r.dashArray.join(" "):r.dashArray.replace(/( *, *)/g," "):n.dashStyle="",n.endcap=r.lineCap.replace("butt","flat"),n.joinstyle=r.lineJoin):n&&(d.removeChild(n),e._stroke=null),r.fill?(o||(o=e._fill=yo("fill")),d.appendChild(o),o.color=r.fillColor||r.color,o.opacity=r.fillOpacity):o&&(d.removeChild(o),e._fill=null)},_updateCircle:function(e){var n=e._point.round(),o=Math.round(e._radius),r=Math.round(e._radiusY||o);this._setPath(e,e._empty()?"M0 0":"AL "+n.x+","+n.y+" "+o+","+r+" 0,"+65535*360)},_setPath:function(e,n){e._path.v=n},_bringToFront:function(e){Pn(e._container)},_bringToBack:function(e){jt(e._container)}},c=ve.vml?yo:B,H=En.extend({_initContainer:function(){this._container=c("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=c("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){ut(this._container),Qe(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){En.prototype._update.call(this);var e=this._bounds,n=e.getSize(),o=this._container;(!this._svgSize||!this._svgSize.equals(n))&&(this._svgSize=n,o.setAttribute("width",n.x),o.setAttribute("height",n.y)),Ot(o,e.min),o.setAttribute("viewBox",[e.min.x,e.min.y,n.x,n.y].join(" ")),this.fire("update")}},_initPath:function(e){var n=e._path=c("path");e.options.className&&je(n,e.options.className),e.options.interactive&&je(n,"leaflet-interactive"),this._updateStyle(e),this._layers[y(e)]=e},_addPath:function(e){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(e._path),e.addInteractiveTarget(e._path)},_removePath:function(e){ut(e._path),e.removeInteractiveTarget(e._path),delete this._layers[y(e)]},_updatePath:function(e){e._project(),e._update()},_updateStyle:function(e){var n=e._path,o=e.options;n&&(o.stroke?(n.setAttribute("stroke",o.color),n.setAttribute("stroke-opacity",o.opacity),n.setAttribute("stroke-width",o.weight),n.setAttribute("stroke-linecap",o.lineCap),n.setAttribute("stroke-linejoin",o.lineJoin),o.dashArray?n.setAttribute("stroke-dasharray",o.dashArray):n.removeAttribute("stroke-dasharray"),o.dashOffset?n.setAttribute("stroke-dashoffset",o.dashOffset):n.removeAttribute("stroke-dashoffset")):n.setAttribute("stroke","none"),o.fill?(n.setAttribute("fill",o.fillColor||o.color),n.setAttribute("fill-opacity",o.fillOpacity),n.setAttribute("fill-rule",o.fillRule||"evenodd")):n.setAttribute("fill","none"))},_updatePoly:function(e,n){this._setPath(e,R(e._parts,n))},_updateCircle:function(e){var n=e._point,o=Math.max(Math.round(e._radius),1),r=Math.max(Math.round(e._radiusY),1)||o,d="a"+o+","+r+" 0 1,0 ",v=e._empty()?"M0 0":"M"+(n.x-o)+","+n.y+d+o*2+",0 "+d+-o*2+",0 ";this._setPath(e,v)},_setPath:function(e,n){e._path.setAttribute("d",n)},_bringToFront:function(e){Pn(e._path)},_bringToBack:function(e){jt(e._path)}});ve.vml&&H.include(g);function k(e){return ve.svg||ve.vml?new H(e):null}Xe.include({getRenderer:function(e){var n=e.options.renderer||this._getPaneRenderer(e.options.pane)||this.options.renderer||this._renderer;return n||(n=this._renderer=this._createRenderer()),this.hasLayer(n)||this.addLayer(n),n},_getPaneRenderer:function(e){if(e==="overlayPane"||e===void 0)return!1;var n=this._paneRenderers[e];return n===void 0&&(n=this._createRenderer({pane:e}),this._paneRenderers[e]=n),n},_createRenderer:function(e){return this.options.preferCanvas&&ka(e)||k(e)}});var He=Rn.extend({initialize:function(e,n){Rn.prototype.initialize.call(this,this._boundsToLatLngs(e),n)},setBounds:function(e){return this.setLatLngs(this._boundsToLatLngs(e))},_boundsToLatLngs:function(e){return e=ot(e),[e.getSouthWest(),e.getNorthWest(),e.getNorthEast(),e.getSouthEast()]}});function id(e,n){return new He(e,n)}H.create=c,H.pointsToPath=R,xn.geometryToLayer=oi,xn.coordsToLatLng=si,xn.coordsToLatLngs=wi,xn.latLngToCoords=Ls,xn.latLngsToCoords=Go,xn.getFeature=tt,xn.asFeature=Mn,Xe.mergeOptions({boxZoom:!0});var _l=Ln.extend({initialize:function(e){this._map=e,this._container=e._container,this._pane=e._panes.overlayPane,this._resetStateTimeout=0,e.on("unload",this._destroy,this)},addHooks:function(){$e(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){Qe(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){ut(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){this._resetStateTimeout!==0&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(e){if(!e.shiftKey||e.which!==1&&e.button!==1)return!1;this._clearDeferredResetState(),this._resetState(),Dn(),Ni(),this._startPoint=this._map.mouseEventToContainerPoint(e),$e(document,{contextmenu:_i,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(e){this._moved||(this._moved=!0,this._box=lt("div","leaflet-zoom-box",this._container),je(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(e);var n=new Ue(this._point,this._startPoint),o=n.getSize();Ot(this._box,n.min),this._box.style.width=o.x+"px",this._box.style.height=o.y+"px"},_finish:function(){this._moved&&(ut(this._box),Mt(this._container,"leaflet-crosshair")),gi(),Di(),Qe(document,{contextmenu:_i,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(e){if(!(e.which!==1&&e.button!==1)&&(this._finish(),!!this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(h(this._resetState,this),0);var n=new mt(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(n).fire("boxzoomend",{boxZoomBounds:n})}},_onKeyDown:function(e){e.keyCode===27&&(this._finish(),this._clearDeferredResetState(),this._resetState())}});Xe.addInitHook("addHandler","boxZoom",_l),Xe.mergeOptions({doubleClickZoom:!0});var bl=Ln.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(e){var n=this._map,o=n.getZoom(),r=n.options.zoomDelta,d=e.originalEvent.shiftKey?o-r:o+r;n.options.doubleClickZoom==="center"?n.setZoom(d):n.setZoomAround(e.containerPoint,d)}});Xe.addInitHook("addHandler","doubleClickZoom",bl),Xe.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var yl=Ln.extend({addHooks:function(){if(!this._draggable){var e=this._map;this._draggable=new _n(e._mapPane,e._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),e.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),e.on("zoomend",this._onZoomEnd,this),e.whenReady(this._onZoomEnd,this))}je(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){Mt(this._map._container,"leaflet-grab"),Mt(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var e=this._map;if(e._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var n=ot(this._map.options.maxBounds);this._offsetLimit=Ve(this._map.latLngToContainerPoint(n.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(n.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;e.fire("movestart").fire("dragstart"),e.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(e){if(this._map.options.inertia){var n=this._lastTime=+new Date,o=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(o),this._times.push(n),this._prunePositions(n)}this._map.fire("move",e).fire("drag",e)},_prunePositions:function(e){for(;this._positions.length>1&&e-this._times[0]>50;)this._positions.shift(),this._times.shift()},_onZoomEnd:function(){var e=this._map.getSize().divideBy(2),n=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=n.subtract(e).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(e,n){return e-(e-n)*this._viscosity},_onPreDragLimit:function(){if(!(!this._viscosity||!this._offsetLimit)){var e=this._draggable._newPos.subtract(this._draggable._startPos),n=this._offsetLimit;e.xn.max.x&&(e.x=this._viscousLimit(e.x,n.max.x)),e.y>n.max.y&&(e.y=this._viscousLimit(e.y,n.max.y)),this._draggable._newPos=this._draggable._startPos.add(e)}},_onPreDragWrap:function(){var e=this._worldWidth,n=Math.round(e/2),o=this._initialWorldOffset,r=this._draggable._newPos.x,d=(r-n+o)%e+n-o,v=(r+n+o)%e-n-o,P=Math.abs(d+o)0?v:-v))-n;this._delta=0,this._startTime=null,P&&(e.options.scrollWheelZoom==="center"?e.setZoom(n+P):e.setZoomAround(this._lastMousePos,n+P))}});Xe.addInitHook("addHandler","scrollWheelZoom",wl);var od=600;Xe.mergeOptions({tapHold:ve.touchNative&&ve.safari&&ve.mobile,tapTolerance:15});var kl=Ln.extend({addHooks:function(){$e(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){Qe(this._map._container,"touchstart",this._onDown,this)},_onDown:function(e){if(clearTimeout(this._holdTimeout),e.touches.length===1){var n=e.touches[0];this._startPos=this._newPos=new ae(n.clientX,n.clientY),this._holdTimeout=setTimeout(h(function(){this._cancel(),this._isTapValid()&&($e(document,"touchend",Dt),$e(document,"touchend touchcancel",this._cancelClickPrevent),this._simulateEvent("contextmenu",n))},this),od),$e(document,"touchend touchcancel contextmenu",this._cancel,this),$e(document,"touchmove",this._onMove,this)}},_cancelClickPrevent:function e(){Qe(document,"touchend",Dt),Qe(document,"touchend touchcancel",e)},_cancel:function(){clearTimeout(this._holdTimeout),Qe(document,"touchend touchcancel contextmenu",this._cancel,this),Qe(document,"touchmove",this._onMove,this)},_onMove:function(e){var n=e.touches[0];this._newPos=new ae(n.clientX,n.clientY)},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_simulateEvent:function(e,n){var o=new MouseEvent(e,{bubbles:!0,cancelable:!0,view:window,screenX:n.screenX,screenY:n.screenY,clientX:n.clientX,clientY:n.clientY});o._simulated=!0,n.target.dispatchEvent(o)}});Xe.addInitHook("addHandler","tapHold",kl),Xe.mergeOptions({touchZoom:ve.touch,bounceAtZoomLimits:!0});var Sl=Ln.extend({addHooks:function(){je(this._map._container,"leaflet-touch-zoom"),$e(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){Mt(this._map._container,"leaflet-touch-zoom"),Qe(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(e){var n=this._map;if(!(!e.touches||e.touches.length!==2||n._animatingZoom||this._zooming)){var o=n.mouseEventToContainerPoint(e.touches[0]),r=n.mouseEventToContainerPoint(e.touches[1]);this._centerPoint=n.getSize()._divideBy(2),this._startLatLng=n.containerPointToLatLng(this._centerPoint),n.options.touchZoom!=="center"&&(this._pinchStartLatLng=n.containerPointToLatLng(o.add(r)._divideBy(2))),this._startDist=o.distanceTo(r),this._startZoom=n.getZoom(),this._moved=!1,this._zooming=!0,n._stop(),$e(document,"touchmove",this._onTouchMove,this),$e(document,"touchend touchcancel",this._onTouchEnd,this),Dt(e)}},_onTouchMove:function(e){if(!(!e.touches||e.touches.length!==2||!this._zooming)){var n=this._map,o=n.mouseEventToContainerPoint(e.touches[0]),r=n.mouseEventToContainerPoint(e.touches[1]),d=o.distanceTo(r)/this._startDist;if(this._zoom=n.getScaleZoom(d,this._startZoom),!n.options.bounceAtZoomLimits&&(this._zoomn.getMaxZoom()&&d>1)&&(this._zoom=n._limitZoom(this._zoom)),n.options.touchZoom==="center"){if(this._center=this._startLatLng,d===1)return}else{var v=o._add(r)._divideBy(2)._subtract(this._centerPoint);if(d===1&&v.x===0&&v.y===0)return;this._center=n.unproject(n.project(this._pinchStartLatLng,this._zoom).subtract(v),this._zoom)}this._moved||(n._moveStart(!0,!1),this._moved=!0),ie(this._animRequest);var P=h(n._move,n,this._center,this._zoom,{pinch:!0,round:!1},void 0);this._animRequest=Me(P,this,!0),Dt(e)}},_onTouchEnd:function(){if(!this._moved||!this._zooming){this._zooming=!1;return}this._zooming=!1,ie(this._animRequest),Qe(document,"touchmove",this._onTouchMove,this),Qe(document,"touchend touchcancel",this._onTouchEnd,this),this._map.options.zoomAnimation?this._map._animateZoom(this._center,this._map._limitZoom(this._zoom),!0,this._map.options.zoomSnap):this._map._resetView(this._center,this._map._limitZoom(this._zoom))}});Xe.addInitHook("addHandler","touchZoom",Sl),Xe.BoxZoom=_l,Xe.DoubleClickZoom=bl,Xe.Drag=yl,Xe.Keyboard=xl,Xe.ScrollWheelZoom=wl,Xe.TapHold=kl,Xe.TouchZoom=Sl,s.Bounds=Ue,s.Browser=ve,s.CRS=E,s.Canvas=Yo,s.Circle=ji,s.CircleMarker=xi,s.Class=re,s.Control=Xt,s.DivIcon=Ms,s.DivOverlay=It,s.DomEvent=Ui,s.DomUtil=Cn,s.Draggable=_n,s.Evented=de,s.FeatureGroup=yn,s.GeoJSON=xn,s.GridLayer=_o,s.Handler=Ln,s.Icon=Hi,s.ImageOverlay=fo,s.LatLng=Ce,s.LatLngBounds=mt,s.Layer=bn,s.LayerGroup=Jn,s.LineUtil=dr,s.Map=Xe,s.Marker=Wo,s.Mixin=rr,s.Path=ii,s.Point=ae,s.PolyUtil=lr,s.Polygon=Rn,s.Polyline=Qt,s.Popup=Bn,s.PosAnimation=oo,s.Projection=fr,s.Rectangle=He,s.Renderer=En,s.SVG=H,s.SVGOverlay=mo,s.TileLayer=Xn,s.Tooltip=vo,s.Transformation=bt,s.Util=Ke,s.VideoOverlay=ho,s.bind=h,s.bounds=Ve,s.canvas=ka,s.circle=Ft,s.circleMarker=co,s.control=ln,s.divIcon=xa,s.extend=u,s.featureGroup=Ps,s.geoJSON=qo,s.geoJson=gr,s.gridLayer=br,s.icon=pr,s.imageOverlay=vr,s.latLng=J,s.latLngBounds=ot,s.layerGroup=lo,s.map=Vo,s.marker=mr,s.point=pe,s.polygon=ya,s.polyline=Ko,s.popup=As,s.rectangle=id,s.setOptions=F,s.stamp=y,s.svg=k,s.svgOverlay=go,s.tileLayer=wa,s.tooltip=_r,s.transformation=x,s.version=l,s.videoOverlay=po;var sd=window.L;s.noConflict=function(){return window.L=sd,this},window.L=s}))})(Fs,Fs.exports)),Fs.exports}var cm=um();const Gi=rm(cm),Pu={__name:"DeviceMap",props:{position:{type:Object,default:null},trail:{type:Array,default:()=>[]},aircraft:{type:Array,default:()=>[]}},setup(t){const i=t,s=W(null);let l,u,f,h;const _=new Map;function y(K,F){const me=getComputedStyle(document.documentElement).getPropertyValue("--accent").trim()||"#3D7BF0",he=F?"#8a94a6":me,Y=typeof K=="number"?K:0;return Gi.divIcon({className:"plane-marker",iconSize:[22,22],iconAnchor:[11,11],html:``})}function C(K){const me=[`${K.callsign||K.icao24||"aircraft"}`];return K.country&&me.push(K.country),typeof K.altitude=="number"&&me.push(`${Math.round(K.altitude)} m`),typeof K.velocity=="number"&&me.push(`${Math.round(K.velocity*3.6)} km/h`),K.onGround&&me.push("on ground"),me.join(" · ")}function T(){if(!l)return;h||(h=Gi.layerGroup().addTo(l));const K=new Set;for(const F of i.aircraft){if(typeof F.lat!="number"||typeof F.lng!="number")continue;K.add(F.icao24);const me=[F.lat,F.lng];let he=_.get(F.icao24);he?(he.setLatLng(me),he.setIcon(y(F.heading,F.onGround)),he.setTooltipContent(C(F))):(he=Gi.marker(me,{icon:y(F.heading,F.onGround)}).bindTooltip(C(F)),he.addTo(h),_.set(F.icao24,he))}for(const[F,me]of _)K.has(F)||(h.removeLayer(me),_.delete(F))}function M(){if(!l)return;const K=i.position;if(K&&(K.lat||K.lng)){const F=[K.lat,K.lng];u?u.setLatLng(F):(u=Gi.marker(F).addTo(l),l.setView(F,17))}if(f&&f.remove(),i.trail.length){const F=getComputedStyle(document.documentElement).getPropertyValue("--accent").trim()||"#3D7BF0";f=Gi.polyline(i.trail,{color:F,weight:3}).addTo(l)}}Ei(()=>{l=Gi.map(s.value,{zoomControl:!0}).setView([20,0],2),Gi.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",{attribution:"© OpenStreetMap",maxZoom:19}).addTo(l),setTimeout(()=>l.invalidateSize(),60),M(),T(),(!i.position||!i.position.lat&&!i.position.lng)&&i.aircraft.length&&V()});let U=!1;function V(){if(U||!l||!i.aircraft.length)return;const K=i.aircraft.filter(F=>typeof F.lat=="number"&&typeof F.lng=="number").map(F=>[F.lat,F.lng]);K.length&&(l.fitBounds(Gi.latLngBounds(K).pad(.2)),U=!0)}return us(()=>{l&&l.remove(),l=null}),Rt(()=>i.position,M,{deep:!0}),Rt(()=>i.trail,M,{deep:!0}),Rt(()=>i.aircraft,()=>{T(),(!i.position||!i.position.lat&&!i.position.lng)&&V()},{deep:!0}),(K,F)=>(p(),m("div",{ref_key:"el",ref:s,class:"h-[320px] w-full rounded-lg"},null,512))}},dm=["width","height","stroke-width"],fm=["d"],G={__name:"Icon",props:{name:{type:String,required:!0},size:{type:[Number,String],default:18},stroke:{type:[Number,String],default:2}},setup(t){const l=({grid:"M3 3h7v7H3zM14 3h7v7h-7zM14 14h7v7h-7zM3 14h7v7H3z",radio:"M4.9 19.1a10 10 0 0 1 0-14.2M7.8 16.2a6 6 0 0 1 0-8.4M16.2 7.8a6 6 0 0 1 0 8.4M19.1 4.9a10 10 0 0 1 0 14.2M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2z",route:"M6 19a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM18 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM6 13V9a4 4 0 0 1 4-4h4",calendar:"M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z",book:"M4 19.5A2.5 2.5 0 0 1 6.5 17H20M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z",fileText:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM14 2v6h6M16 13H8M16 17H8M10 9H8",settings:"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6z M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z",search:"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16zM21 21l-4.3-4.3",plus:"M12 5v14M5 12h14",battery:"M3 8h14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H3a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1zM22 11v2",signal:"M2 20h.01M7 20v-4M12 20v-8M17 20V8M22 20V4",clock:"M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18zM12 7v5l3 2",chevronRight:"M9 6l6 6-6 6",play:"M6 3l14 9-14 9V3z",logout:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4M16 17l5-5-5-5M21 12H9",wind:"M12.8 19.6A2 2 0 1 0 14 16H2M17.5 8a2.5 2.5 0 1 1 2 4H2M9.6 4.6A2 2 0 1 1 11 8H2",drone:"M12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8zM6 6 4 4M18 6l2-2M6 18l-2 2M18 18l2 2",user:"M20 21a8 8 0 1 0-16 0M12 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8z",users:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2M9 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75",shield:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z",sliders:"M4 21v-7M4 10V3M12 21v-9M12 8V3M20 21v-5M20 12V3M1 14h6M9 8h6M17 16h6",alertTriangle:"M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0zM12 9v4M12 17h.01",download:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3",upload:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M17 8l-5-5-5 5M12 3v12",trash:"M3 6h18M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6M10 11v6M14 11v6",check:"M20 6 9 17l-5-5",mail:"M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zM22 6l-10 7L2 6",lock:"M5 11h14a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2zM7 11V7a5 5 0 0 1 10 0v4",monitor:"M3 4h18a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zM8 21h8M12 17v4",globe:"M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18zM3 12h18M12 3a15 15 0 0 1 0 18 15 15 0 0 1 0-18z",smartphone:"M7 2h10a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zM11 18h2",image:"M4 4h16a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zM8.5 11a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zM21 15l-5-5L5 21",eye:"M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7z M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",type:"M4 7V4h16v3M9 20h6M12 4v16",sun:"M12 17a5 5 0 1 0 0-10 5 5 0 0 0 0 10zM12 1v2M12 21v2M4.2 4.2l1.4 1.4M18.4 18.4l1.4 1.4M1 12h2M21 12h2M4.2 19.8l1.4-1.4M18.4 5.6l1.4-1.4",moon:"M21 12.8A9 9 0 1 1 11.2 3a7 7 0 0 0 9.8 9.8z",x:"M18 6 6 18M6 6l12 12",server:"M20 4H4a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zM20 13H4a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2zM6 7.5h.01M6 16.5h.01",cloud:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9z"}[t.name]||"").split(" M").map((u,f)=>f?"M"+u:u);return(u,f)=>(p(),m("svg",{width:t.size,height:t.size,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":t.stroke,"stroke-linecap":"round","stroke-linejoin":"round",style:{flex:"none"},"aria-hidden":"true"},[(p(!0),m(oe,null,Fe(Oe(l),(h,_)=>(p(),m("path",{key:_,d:h},null,8,fm))),128))],8,dm))}},hm=["aria-checked","disabled"],en={__name:"Toggle",props:{modelValue:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(t,{emit:i}){const s=i;return(l,u)=>(p(),m("button",{type:"button",role:"switch","aria-checked":t.modelValue,disabled:t.disabled,class:Ae(["relative inline-flex h-6 w-11 shrink-0 items-center rounded-full transition disabled:opacity-40",t.modelValue?"bg-accent":"bg-surface-2 border border-line-strong"]),onClick:u[0]||(u[0]=f=>s("update:modelValue",!t.modelValue))},[a("span",{class:Ae(["inline-block h-4 w-4 transform rounded-full bg-white shadow-sm transition",t.modelValue?"translate-x-6":"translate-x-1"])},null,2)],10,hm))}},pm={class:"inline-flex rounded-[10px] border border-line bg-surface-2 p-0.5"},mm=["onClick"],kn={__name:"Segmented",props:{modelValue:{type:[String,Number],default:""},options:{type:Array,default:()=>[]}},emits:["update:modelValue"],setup(t,{emit:i}){const s=i;return(l,u)=>(p(),m("div",pm,[(p(!0),m(oe,null,Fe(t.options,f=>(p(),m("button",{key:f.value,type:"button",class:Ae(["inline-flex items-center gap-1.5 rounded-lg px-3 py-1.5 text-[13px] font-semibold transition",t.modelValue===f.value?"bg-surface-1 text-ink shadow-xs":"text-ink-secondary hover:text-ink"]),onClick:h=>s("update:modelValue",f.value)},[f.icon?(p(),at(G,{key:0,name:f.icon,size:15},null,8,["name"])):$("",!0),z(" "+w(f.label),1)],10,mm))),128))]))}},gm={class:"text-sm font-semibold text-ink"},vm={key:0,class:"mt-0.5 text-xs text-ink-muted"},ke={__name:"Row",props:{title:{type:String,default:""},desc:{type:String,default:""},keywords:{type:String,default:""},block:{type:Boolean,default:!1}},setup(t){const i=t,s=Vs("settingsSearch",{value:""}),l=ue(()=>{const u=(s.value||"").trim().toLowerCase();return u?`${i.title} ${i.desc} ${i.keywords}`.toLowerCase().includes(u):!0});return(u,f)=>l.value?(p(),m("div",{key:0,class:Ae(["border-b border-line py-4 last:border-0",t.block?"":"flex items-center justify-between gap-6"])},[a("div",{class:Ae(t.block?"mb-3":"min-w-0")},[a("div",gm,w(t.title),1),t.desc?(p(),m("div",vm,w(t.desc),1)):$("",!0)],2),a("div",{class:Ae(t.block?"":"shrink-0")},[Tf(u.$slots,"default")],2)],2)):$("",!0)}},ia=[{code:"AL",name:"Albania",continent:"EU",bbox:"39.6,19.3,42.7,21.1"},{code:"AD",name:"Andorra",continent:"EU",bbox:"42.4,1.4,42.7,1.8"},{code:"AT",name:"Austria",continent:"EU",bbox:"46.4,9.5,49.0,17.2"},{code:"BY",name:"Belarus",continent:"EU",bbox:"51.2,23.2,56.2,32.8"},{code:"BE",name:"Belgium",continent:"EU",bbox:"49.5,2.5,51.5,6.4"},{code:"BA",name:"Bosnia and Herzegovina",continent:"EU",bbox:"42.6,15.7,45.3,19.6"},{code:"BG",name:"Bulgaria",continent:"EU",bbox:"41.2,22.4,44.2,28.6"},{code:"HR",name:"Croatia",continent:"EU",bbox:"42.4,13.5,46.6,19.4"},{code:"CY",name:"Cyprus",continent:"EU",bbox:"34.6,32.3,35.7,34.6"},{code:"CZ",name:"Czechia",continent:"EU",bbox:"48.6,12.1,51.1,18.9"},{code:"DK",name:"Denmark",continent:"EU",bbox:"54.6,8.1,57.8,12.7"},{code:"EE",name:"Estonia",continent:"EU",bbox:"57.5,21.8,59.7,28.2"},{code:"FI",name:"Finland",continent:"EU",bbox:"59.8,20.6,70.1,31.6"},{code:"FR",name:"France",continent:"EU",bbox:"41.3,-5.2,51.1,9.6"},{code:"DE",name:"Germany",continent:"EU",bbox:"47.2,5.8,55.1,15.1"},{code:"GR",name:"Greece",continent:"EU",bbox:"34.8,19.4,41.8,28.3"},{code:"HU",name:"Hungary",continent:"EU",bbox:"45.7,16.1,48.6,22.9"},{code:"IS",name:"Iceland",continent:"EU",bbox:"63.3,-24.6,66.6,-13.5"},{code:"IE",name:"Ireland",continent:"EU",bbox:"51.4,-10.6,55.4,-6.0"},{code:"IT",name:"Italy",continent:"EU",bbox:"36.6,6.6,47.1,18.6"},{code:"XK",name:"Kosovo",continent:"EU",bbox:"41.8,20.0,43.3,21.8"},{code:"LV",name:"Latvia",continent:"EU",bbox:"55.7,20.9,58.1,28.2"},{code:"LI",name:"Liechtenstein",continent:"EU",bbox:"47.0,9.4,47.3,9.6"},{code:"LT",name:"Lithuania",continent:"EU",bbox:"53.9,20.9,56.5,26.9"},{code:"LU",name:"Luxembourg",continent:"EU",bbox:"49.4,5.7,50.2,6.5"},{code:"MT",name:"Malta",continent:"EU",bbox:"35.8,14.1,36.1,14.6"},{code:"MD",name:"Moldova",continent:"EU",bbox:"45.4,26.6,48.5,30.2"},{code:"MC",name:"Monaco",continent:"EU",bbox:"43.72,7.40,43.75,7.44"},{code:"ME",name:"Montenegro",continent:"EU",bbox:"41.8,18.4,43.6,20.4"},{code:"NL",name:"Netherlands",continent:"EU",bbox:"50.7,3.3,53.7,7.2"},{code:"MK",name:"North Macedonia",continent:"EU",bbox:"40.8,20.4,42.4,23.0"},{code:"NO",name:"Norway",continent:"EU",bbox:"57.9,4.6,71.2,31.1"},{code:"PL",name:"Poland",continent:"EU",bbox:"49.0,14.1,54.9,24.2"},{code:"PT",name:"Portugal",continent:"EU",bbox:"36.9,-9.5,42.2,-6.2"},{code:"RO",name:"Romania",continent:"EU",bbox:"43.6,20.2,48.3,29.7"},{code:"SM",name:"San Marino",continent:"EU",bbox:"43.89,12.40,43.99,12.52"},{code:"RS",name:"Serbia",continent:"EU",bbox:"42.2,18.8,46.2,23.0"},{code:"SK",name:"Slovakia",continent:"EU",bbox:"47.7,16.8,49.6,22.6"},{code:"SI",name:"Slovenia",continent:"EU",bbox:"45.4,13.4,46.9,16.6"},{code:"ES",name:"Spain",continent:"EU",bbox:"35.9,-9.4,43.8,3.4"},{code:"SE",name:"Sweden",continent:"EU",bbox:"55.3,11.1,69.1,24.2"},{code:"CH",name:"Switzerland",continent:"EU",bbox:"45.8,5.9,47.8,10.5"},{code:"UA",name:"Ukraine",continent:"EU",bbox:"44.4,22.1,52.4,40.2"},{code:"GB",name:"United Kingdom",continent:"EU",bbox:"49.9,-8.7,60.9,1.8"},{code:"VA",name:"Vatican City",continent:"EU",bbox:"41.900,12.445,41.908,12.458"},{code:"RU",name:"Russia",continent:"EU",bbox:"41.2,19.6,81.9,180"},{code:"TR",name:"Turkey",continent:"EU",bbox:"35.8,25.7,42.3,44.8"},{code:"AF",name:"Afghanistan",continent:"AS",bbox:"29.4,60.5,38.5,74.9"},{code:"AM",name:"Armenia",continent:"AS",bbox:"38.8,43.4,41.3,46.6"},{code:"AZ",name:"Azerbaijan",continent:"AS",bbox:"38.4,44.8,41.9,50.4"},{code:"BH",name:"Bahrain",continent:"AS",bbox:"25.8,50.4,26.3,50.7"},{code:"BD",name:"Bangladesh",continent:"AS",bbox:"20.7,88.0,26.6,92.7"},{code:"BT",name:"Bhutan",continent:"AS",bbox:"26.7,88.7,28.3,92.1"},{code:"BN",name:"Brunei",continent:"AS",bbox:"4.0,114.0,5.1,115.4"},{code:"KH",name:"Cambodia",continent:"AS",bbox:"10.4,102.3,14.7,107.6"},{code:"CN",name:"China",continent:"AS",bbox:"18.2,73.5,53.6,134.8"},{code:"GE",name:"Georgia",continent:"AS",bbox:"41.0,40.0,43.6,46.7"},{code:"IN",name:"India",continent:"AS",bbox:"6.7,68.1,35.5,97.4"},{code:"ID",name:"Indonesia",continent:"AS",bbox:"-11.0,95.0,6.1,141.0"},{code:"IR",name:"Iran",continent:"AS",bbox:"25.0,44.0,39.8,63.3"},{code:"IQ",name:"Iraq",continent:"AS",bbox:"29.1,38.8,37.4,48.6"},{code:"IL",name:"Israel",continent:"AS",bbox:"29.5,34.2,33.3,35.9"},{code:"JP",name:"Japan",continent:"AS",bbox:"24.0,122.9,45.5,145.8"},{code:"JO",name:"Jordan",continent:"AS",bbox:"29.2,34.9,33.4,39.3"},{code:"KZ",name:"Kazakhstan",continent:"AS",bbox:"40.6,46.5,55.4,87.3"},{code:"KW",name:"Kuwait",continent:"AS",bbox:"28.5,46.5,30.1,48.4"},{code:"KG",name:"Kyrgyzstan",continent:"AS",bbox:"39.2,69.3,43.3,80.3"},{code:"LA",name:"Laos",continent:"AS",bbox:"13.9,100.1,22.5,107.7"},{code:"LB",name:"Lebanon",continent:"AS",bbox:"33.0,35.1,34.7,36.6"},{code:"MY",name:"Malaysia",continent:"AS",bbox:"0.9,99.6,7.4,119.3"},{code:"MV",name:"Maldives",continent:"AS",bbox:"-0.7,72.7,7.1,73.7"},{code:"MN",name:"Mongolia",continent:"AS",bbox:"41.6,87.7,52.1,119.9"},{code:"MM",name:"Myanmar",continent:"AS",bbox:"9.8,92.2,28.5,101.2"},{code:"NP",name:"Nepal",continent:"AS",bbox:"26.3,80.1,30.4,88.2"},{code:"KP",name:"North Korea",continent:"AS",bbox:"37.7,124.2,43.0,130.7"},{code:"OM",name:"Oman",continent:"AS",bbox:"16.6,52.0,26.4,59.8"},{code:"PK",name:"Pakistan",continent:"AS",bbox:"23.7,60.9,37.1,77.8"},{code:"PH",name:"Philippines",continent:"AS",bbox:"4.6,116.9,21.1,126.6"},{code:"QA",name:"Qatar",continent:"AS",bbox:"24.5,50.7,26.2,51.6"},{code:"SA",name:"Saudi Arabia",continent:"AS",bbox:"16.4,34.6,32.2,55.7"},{code:"SG",name:"Singapore",continent:"AS",bbox:"1.2,103.6,1.5,104.1"},{code:"KR",name:"South Korea",continent:"AS",bbox:"33.1,125.9,38.6,129.6"},{code:"LK",name:"Sri Lanka",continent:"AS",bbox:"5.9,79.7,9.8,81.9"},{code:"SY",name:"Syria",continent:"AS",bbox:"32.3,35.7,37.3,42.4"},{code:"TW",name:"Taiwan",continent:"AS",bbox:"21.9,120.0,25.3,122.0"},{code:"TJ",name:"Tajikistan",continent:"AS",bbox:"36.7,67.4,41.0,75.2"},{code:"TH",name:"Thailand",continent:"AS",bbox:"5.6,97.3,20.5,105.6"},{code:"TL",name:"Timor-Leste",continent:"AS",bbox:"-9.5,124.0,-8.1,127.3"},{code:"TM",name:"Turkmenistan",continent:"AS",bbox:"35.1,52.4,42.8,66.7"},{code:"AE",name:"United Arab Emirates",continent:"AS",bbox:"22.6,51.5,26.1,56.4"},{code:"UZ",name:"Uzbekistan",continent:"AS",bbox:"37.2,55.9,45.6,73.1"},{code:"VN",name:"Vietnam",continent:"AS",bbox:"8.2,102.1,23.4,109.5"},{code:"YE",name:"Yemen",continent:"AS",bbox:"12.1,42.5,19.0,54.5"},{code:"DZ",name:"Algeria",continent:"AF",bbox:"18.9,-8.7,37.1,12.0"},{code:"AO",name:"Angola",continent:"AF",bbox:"-18.0,11.6,-4.4,24.1"},{code:"BJ",name:"Benin",continent:"AF",bbox:"6.2,0.8,12.4,3.9"},{code:"BW",name:"Botswana",continent:"AF",bbox:"-26.9,20.0,-17.8,29.4"},{code:"BF",name:"Burkina Faso",continent:"AF",bbox:"9.4,-5.5,15.1,2.4"},{code:"BI",name:"Burundi",continent:"AF",bbox:"-4.5,29.0,-2.3,30.8"},{code:"CV",name:"Cabo Verde",continent:"AF",bbox:"14.8,-25.4,17.2,-22.7"},{code:"CM",name:"Cameroon",continent:"AF",bbox:"1.7,8.5,13.1,16.2"},{code:"CF",name:"Central African Republic",continent:"AF",bbox:"2.2,14.4,11.0,27.5"},{code:"TD",name:"Chad",continent:"AF",bbox:"7.4,13.5,23.4,24.0"},{code:"KM",name:"Comoros",continent:"AF",bbox:"-12.4,43.2,-11.4,44.5"},{code:"CG",name:"Congo",continent:"AF",bbox:"-5.0,11.1,3.7,18.6"},{code:"CD",name:"DR Congo",continent:"AF",bbox:"-13.5,12.2,5.4,31.3"},{code:"DJ",name:"Djibouti",continent:"AF",bbox:"10.9,41.7,12.7,43.4"},{code:"EG",name:"Egypt",continent:"AF",bbox:"22.0,25.0,31.7,36.9"},{code:"GQ",name:"Equatorial Guinea",continent:"AF",bbox:"0.9,9.3,3.8,11.4"},{code:"ER",name:"Eritrea",continent:"AF",bbox:"12.4,36.4,18.0,43.1"},{code:"SZ",name:"Eswatini",continent:"AF",bbox:"-27.3,30.8,-25.7,32.1"},{code:"ET",name:"Ethiopia",continent:"AF",bbox:"3.4,33.0,14.9,48.0"},{code:"GA",name:"Gabon",continent:"AF",bbox:"-4.0,8.7,2.3,14.5"},{code:"GM",name:"Gambia",continent:"AF",bbox:"13.1,-16.8,13.8,-13.8"},{code:"GH",name:"Ghana",continent:"AF",bbox:"4.7,-3.3,11.2,1.2"},{code:"GN",name:"Guinea",continent:"AF",bbox:"7.2,-15.1,12.7,-7.6"},{code:"GW",name:"Guinea-Bissau",continent:"AF",bbox:"10.9,-16.7,12.7,-13.6"},{code:"CI",name:"Ivory Coast",continent:"AF",bbox:"4.4,-8.6,10.7,-2.5"},{code:"KE",name:"Kenya",continent:"AF",bbox:"-4.7,33.9,5.5,41.9"},{code:"LS",name:"Lesotho",continent:"AF",bbox:"-30.7,27.0,-28.6,29.5"},{code:"LR",name:"Liberia",continent:"AF",bbox:"4.3,-11.5,8.6,-7.4"},{code:"LY",name:"Libya",continent:"AF",bbox:"19.5,9.3,33.2,25.2"},{code:"MG",name:"Madagascar",continent:"AF",bbox:"-25.6,43.2,-11.9,50.5"},{code:"MW",name:"Malawi",continent:"AF",bbox:"-17.1,32.7,-9.4,35.9"},{code:"ML",name:"Mali",continent:"AF",bbox:"10.1,-12.3,25.0,4.3"},{code:"MR",name:"Mauritania",continent:"AF",bbox:"14.7,-17.1,27.3,-4.8"},{code:"MU",name:"Mauritius",continent:"AF",bbox:"-20.5,57.3,-19.9,57.8"},{code:"MA",name:"Morocco",continent:"AF",bbox:"27.7,-13.2,35.9,-1.0"},{code:"MZ",name:"Mozambique",continent:"AF",bbox:"-26.9,30.2,-10.5,40.8"},{code:"NA",name:"Namibia",continent:"AF",bbox:"-28.9,11.7,-16.9,25.3"},{code:"NE",name:"Niger",continent:"AF",bbox:"11.7,0.2,23.5,16.0"},{code:"NG",name:"Nigeria",continent:"AF",bbox:"4.3,2.7,13.9,14.7"},{code:"RW",name:"Rwanda",continent:"AF",bbox:"-2.8,28.9,-1.1,30.9"},{code:"SN",name:"Senegal",continent:"AF",bbox:"12.3,-17.5,16.7,-11.4"},{code:"SL",name:"Sierra Leone",continent:"AF",bbox:"6.9,-13.3,10.0,-10.3"},{code:"SO",name:"Somalia",continent:"AF",bbox:"-1.7,40.9,12.0,51.4"},{code:"ZA",name:"South Africa",continent:"AF",bbox:"-34.8,16.5,-22.1,32.9"},{code:"SS",name:"South Sudan",continent:"AF",bbox:"3.5,24.1,12.2,35.9"},{code:"SD",name:"Sudan",continent:"AF",bbox:"8.7,21.8,22.2,38.6"},{code:"TZ",name:"Tanzania",continent:"AF",bbox:"-11.7,29.3,-1.0,40.4"},{code:"TG",name:"Togo",continent:"AF",bbox:"6.1,-0.1,11.1,1.8"},{code:"TN",name:"Tunisia",continent:"AF",bbox:"30.2,7.5,37.5,11.6"},{code:"UG",name:"Uganda",continent:"AF",bbox:"-1.5,29.6,4.2,35.0"},{code:"ZM",name:"Zambia",continent:"AF",bbox:"-18.1,21.9,-8.2,33.7"},{code:"ZW",name:"Zimbabwe",continent:"AF",bbox:"-22.4,25.2,-15.6,33.1"},{code:"CA",name:"Canada",continent:"NA",bbox:"41.7,-141.0,83.1,-52.6"},{code:"US",name:"United States",continent:"NA",bbox:"24.4,-125.0,49.4,-66.9"},{code:"MX",name:"Mexico",continent:"NA",bbox:"14.5,-118.4,32.7,-86.7"},{code:"GT",name:"Guatemala",continent:"NA",bbox:"13.7,-92.2,17.8,-88.2"},{code:"BZ",name:"Belize",continent:"NA",bbox:"15.9,-89.2,18.5,-87.8"},{code:"SV",name:"El Salvador",continent:"NA",bbox:"13.1,-90.1,14.4,-87.7"},{code:"HN",name:"Honduras",continent:"NA",bbox:"12.9,-89.4,16.5,-83.1"},{code:"NI",name:"Nicaragua",continent:"NA",bbox:"10.7,-87.7,15.0,-83.1"},{code:"CR",name:"Costa Rica",continent:"NA",bbox:"8.0,-85.9,11.2,-82.5"},{code:"PA",name:"Panama",continent:"NA",bbox:"7.2,-83.1,9.6,-77.2"},{code:"CU",name:"Cuba",continent:"NA",bbox:"19.8,-85.0,23.3,-74.1"},{code:"DO",name:"Dominican Republic",continent:"NA",bbox:"17.5,-72.0,19.9,-68.3"},{code:"HT",name:"Haiti",continent:"NA",bbox:"18.0,-74.5,20.1,-71.6"},{code:"JM",name:"Jamaica",continent:"NA",bbox:"17.7,-78.4,18.5,-76.2"},{code:"BS",name:"Bahamas",continent:"NA",bbox:"20.9,-79.0,27.3,-72.7"},{code:"TT",name:"Trinidad and Tobago",continent:"NA",bbox:"10.0,-61.9,11.4,-60.5"},{code:"AR",name:"Argentina",continent:"SA",bbox:"-55.1,-73.6,-21.8,-53.6"},{code:"BO",name:"Bolivia",continent:"SA",bbox:"-22.9,-69.6,-9.7,-57.5"},{code:"BR",name:"Brazil",continent:"SA",bbox:"-33.8,-74.0,5.3,-34.8"},{code:"CL",name:"Chile",continent:"SA",bbox:"-55.9,-75.6,-17.5,-66.4"},{code:"CO",name:"Colombia",continent:"SA",bbox:"-4.2,-79.0,12.5,-66.9"},{code:"EC",name:"Ecuador",continent:"SA",bbox:"-5.0,-81.1,1.4,-75.2"},{code:"GY",name:"Guyana",continent:"SA",bbox:"1.2,-61.4,8.6,-56.5"},{code:"PY",name:"Paraguay",continent:"SA",bbox:"-27.6,-62.6,-19.3,-54.3"},{code:"PE",name:"Peru",continent:"SA",bbox:"-18.4,-81.3,0.0,-68.7"},{code:"SR",name:"Suriname",continent:"SA",bbox:"1.8,-58.1,6.0,-54.0"},{code:"UY",name:"Uruguay",continent:"SA",bbox:"-35.0,-58.4,-30.1,-53.1"},{code:"VE",name:"Venezuela",continent:"SA",bbox:"0.6,-73.4,12.2,-59.8"},{code:"AU",name:"Australia",continent:"OC",bbox:"-43.6,113.3,-10.7,153.6"},{code:"NZ",name:"New Zealand",continent:"OC",bbox:"-47.3,166.4,-34.4,178.6"},{code:"PG",name:"Papua New Guinea",continent:"OC",bbox:"-11.7,140.8,-1.3,155.9"},{code:"FJ",name:"Fiji",continent:"OC",bbox:"-19.2,177.0,-16.0,180.0"}],_m=new Map(ia.map(t=>[t.code,t]));function bm(t){const i=String(t||"").split(",").map(s=>Number(s.trim()));return i.length!==4||i.some(s=>Number.isNaN(s))?null:i}function ym(t){const i=_m.get(t);return i?i.bbox:""}function Ir(t,i){if(typeof t!="number"||typeof i!="number"||Number.isNaN(t)||Number.isNaN(i))return null;let s=null,l=1/0;for(const u of ia){const f=bm(u.bbox);if(!f)continue;const[h,_,y,C]=f;if(ty||i<_||i>C)continue;const T=Math.abs(y-h)*Math.abs(C-_);Tt.continent==="EU").slice().sort((t,i)=>t.name.localeCompare(i.name)).map(t=>({value:t.bbox,label:t.name}))}function wm(){return ia.slice().sort((t,i)=>t.name.localeCompare(i.name)).map(t=>[t.code,t.name])}const km=[["EU","European countries"],["AS","Asian countries"],["AF","African countries"],["NA","North American countries"],["SA","South American countries"],["OC","Oceanian countries"]];function Sm(){return km.map(([t,i])=>({label:i,options:ia.filter(s=>s.continent===t).slice().sort((s,l)=>s.name.localeCompare(l.name)).map(s=>({value:s.bbox,label:s.name}))}))}const Tm=(t,i)=>{const s=t.__vccOpts||t;for(const[l,u]of i)s[l]=u;return s},Pm={class:"mx-auto max-w-[1280px] p-7"},Cm={class:"mb-5 flex flex-wrap items-end justify-between gap-4"},Lm={class:"flex h-10 w-full max-w-[280px] items-center gap-2 rounded border border-line-strong bg-surface-1 px-3"},Am={class:"grid grid-cols-[210px_1fr] gap-6 max-[760px]:grid-cols-1"},Mm={class:"flex flex-col gap-0.5 max-[760px]:flex-row max-[760px]:overflow-x-auto"},Em=["onClick"],Om={class:"whitespace-nowrap"},zm={class:"min-w-0"},Im={key:0,class:"panel p-10 text-center text-sm text-ink-muted"},$m={key:0,class:"eyebrow mb-2 mt-5 first:mt-0 flex items-center gap-2"},Nm={key:1,class:"panel mb-5 p-5"},Dm={class:"flex items-center gap-1"},Fm={class:"flex items-center gap-2"},Rm={class:"font-mono text-sm text-ink"},Bm={class:"inline-flex items-center gap-1 rounded-full bg-amber-soft px-2 py-0.5 text-[11px] font-semibold text-amber-fg"},Um={key:0,class:"mt-2 text-xs text-ink-muted"},Vm={class:"grid max-w-[420px] gap-2"},Zm={class:"flex items-center gap-3"},Hm={key:2,class:"panel mb-5 p-5"},jm=["value"],Wm=["value"],Km=["value"],Gm={class:"font-mono text-sm text-ink"},qm={key:3},Ym={key:0,class:"mb-5 flex items-center gap-1 overflow-x-auto border-b border-line"},Jm=["onClick"],Xm={class:"panel mb-5 p-5"},Qm={class:"mb-4 flex items-start gap-3 border-b border-line pb-4"},eg={class:"grid h-10 w-10 place-items-center rounded-lg bg-accent-soft text-accent-soft-fg"},tg={key:0,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},ng={key:1,class:"mb-4 flex flex-col gap-2 border-b border-line pb-4 sm:flex-row sm:items-center sm:justify-between"},ig={key:4,class:"border-b border-line py-3 text-xs text-amber-fg"},og={key:0},sg={key:5,class:"border-b border-line py-3 text-xs text-ink-muted"},ag={class:"font-semibold text-ink-secondary"},rg={key:6,class:"border-b border-line py-3 text-xs text-ink-muted"},lg={key:7,class:"my-4 rounded-lg border border-line bg-surface-2 p-4","data-keywords":"credits usage quota remaining daily allowance rate limit"},ug={class:"flex items-center justify-between gap-3"},cg={class:"flex items-center gap-2 text-sm font-semibold text-ink"},dg={key:0,class:"text-[11px] text-ink-muted"},fg={class:"mt-2 flex items-baseline gap-1.5"},hg={class:"font-mono text-2xl font-semibold text-ink"},pg={class:"text-sm text-ink-muted"},mg={class:"mt-2 h-2 w-full overflow-hidden rounded-full bg-line"},gg={class:"mt-2 text-xs text-ink-muted"},vg={class:"mt-2 text-sm text-ink"},_g={class:"font-semibold"},bg={class:"mt-1 text-xs text-ink-muted"},yg={key:1,class:"mt-2 text-xs text-ink-muted"},xg={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},wg={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},kg={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Sg={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Tg={key:1,class:"flex flex-col items-end gap-2"},Pg={key:0,value:"__auto__"},Cg=["label"],Lg=["value"],Ag={key:0,class:"w-64 text-right text-[11px] leading-snug text-ink-muted"},Mg={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Eg={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Og={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},zg={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Ig={key:8,class:"border-b border-line py-3 text-xs text-amber-fg"},$g={class:"mt-4 flex flex-wrap items-center gap-3"},Ng=["disabled"],Dg={key:1,class:"flex items-center gap-2",title:"Bounding box used for Test connection — smaller areas cost fewer OpenSky credits"},Fg=["label"],Rg=["value"],Bg=["disabled"],Ug={key:3,class:"text-xs text-danger-fg"},Vg={class:"panel mb-5 p-5"},Zg={class:"mb-4 flex items-start gap-3 border-b border-line pb-4"},Hg={class:"grid h-10 w-10 place-items-center rounded-lg bg-accent-soft text-accent-soft-fg"},jg={key:0,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},Wg={key:1,class:"mb-4 flex flex-col gap-2 border-b border-line pb-4 sm:flex-row sm:items-center sm:justify-between"},Kg={key:4,class:"border-b border-line py-3 text-xs text-amber-fg"},Gg={key:0},qg={key:5,class:"border-b border-line py-3 text-xs text-ink-muted"},Yg={class:"font-semibold text-ink-secondary"},Jg={key:6,class:"border-b border-line py-3 text-xs text-ink-muted"},Xg={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Qg={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},ev={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},tv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},nv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},iv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},ov={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},sv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},av={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},rv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},lv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},uv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},cv={key:7,class:"my-4 rounded-lg border border-line bg-surface-2 p-4","data-keywords":"usage quota rate limit calls per minute remaining left api"},dv={class:"flex items-center justify-between gap-3"},fv={class:"flex items-center gap-2 text-sm font-semibold text-ink"},hv={key:0,class:"text-[11px] text-ink-muted"},pv={class:"mt-2 flex items-baseline gap-1.5"},mv={class:"font-mono text-2xl font-semibold text-ink"},gv={class:"text-sm text-ink-muted"},vv={key:0,class:"mt-2 h-2 w-full overflow-hidden rounded-full bg-line"},_v={class:"mt-2 text-xs text-ink-muted"},bv={key:1,class:"mt-2 text-xs text-ink-muted"},yv={class:"mt-4 flex flex-wrap items-center gap-3"},xv=["disabled"],wv=["disabled"],kv={key:2,class:"text-xs text-danger-fg"},Sv={key:3,class:"text-[11px] text-ink-muted"},Tv={class:"panel mb-5 p-5"},Pv={class:"mb-4 flex items-start gap-3 border-b border-line pb-4"},Cv={class:"grid h-10 w-10 place-items-center rounded-lg bg-accent-soft text-accent-soft-fg"},Lv={key:0,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},Av={key:1,class:"mb-4 flex flex-col gap-2 border-b border-line pb-4 sm:flex-row sm:items-center sm:justify-between"},Mv={key:4,class:"border-b border-line py-3 text-xs text-amber-fg"},Ev={key:0},Ov={key:5,class:"border-b border-line py-3 text-xs text-ink-muted"},zv={class:"font-semibold text-ink-secondary"},Iv={key:6,class:"border-b border-line py-3 text-xs text-ink-muted"},$v={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},Nv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Dv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Fv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Rv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Bv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Uv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Vv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Zv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Hv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},jv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Wv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Kv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Gv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},qv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Yv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Jv={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},Xv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Qv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},e_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},t_={class:"mt-4 flex flex-wrap items-center gap-3"},n_=["disabled"],i_=["disabled"],o_={key:2,class:"text-xs text-danger-fg"},s_={key:3,class:"text-[11px] text-ink-muted"},a_={class:"panel mb-5 p-5"},r_={class:"mb-4 flex items-start gap-3 border-b border-line pb-4"},l_={class:"grid h-10 w-10 place-items-center rounded-lg bg-accent-soft text-accent-soft-fg"},u_={key:0,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},c_={key:1,class:"mb-4 flex flex-col gap-2 border-b border-line pb-4 sm:flex-row sm:items-center sm:justify-between"},d_={key:4,class:"border-b border-line py-3 text-xs text-amber-fg"},f_={key:0},h_={key:5,class:"border-b border-line py-3 text-xs text-ink-muted"},p_={class:"font-semibold text-ink-secondary"},m_={key:6,class:"border-b border-line py-3 text-xs text-ink-muted"},g_={key:0,class:"inline-flex items-center gap-2 break-all font-mono text-sm text-ink"},v_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},__={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},b_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},y_={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},x_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},w_={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},k_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},S_={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},T_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},P_={class:"mt-4 flex flex-wrap items-center gap-3"},C_=["disabled"],L_=["disabled"],A_={key:2,class:"text-xs text-danger-fg"},M_={key:3,class:"text-[11px] text-ink-muted"},E_={key:3,class:"panel mb-5 p-5"},O_={class:"mb-4 flex items-start gap-3 border-b border-line pb-4"},z_={class:"grid h-10 w-10 place-items-center rounded-lg bg-accent-soft text-accent-soft-fg"},I_={key:0,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},$_={key:1,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},N_={key:2,class:"mb-4 flex flex-col gap-2 border-b border-line pb-4 sm:flex-row sm:items-center sm:justify-between"},D_={key:5,class:"border-b border-line py-3 text-xs text-amber-fg"},F_={key:0},R_={key:6,class:"border-b border-line py-3 text-xs text-ink-muted"},B_={class:"font-semibold text-ink-secondary"},U_={key:7,class:"border-b border-line py-3 text-xs text-ink-muted"},V_={class:"flex w-full flex-col gap-2"},Z_={class:"break-all font-mono text-sm text-ink"},H_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},j_={key:1,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},W_={key:0,class:"text-xs text-ink-muted"},K_={key:1,class:"border-b border-line py-3 text-xs text-ink-muted"},G_={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},q_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Y_={class:"mt-4 flex flex-wrap items-center gap-3"},J_=["disabled"],X_=["disabled"],Q_={key:2,class:"text-xs text-danger-fg"},e1={key:3,class:"text-[11px] text-ink-muted"},t1={key:4,class:"panel mb-5 p-5"},n1={class:"flex items-center gap-4"},i1=["src"],o1={key:1,class:"grid h-16 w-16 place-items-center rounded-full bg-[var(--navy-800)] text-lg font-bold text-white"},s1={class:"flex gap-2"},a1={class:"btn-ghost cursor-pointer"},r1={class:"mt-1 text-right text-[11px] text-ink-muted"},l1={key:5,class:"panel mb-5 p-5"},u1={class:"flex items-center gap-3"},c1={key:0,class:"mt-4 rounded-lg border border-line bg-surface-2 p-4"},d1={class:"flex flex-wrap items-center gap-4"},f1={class:"min-w-0"},h1={class:"mt-1 select-all font-mono text-sm font-bold text-ink"},p1={class:"mt-3 flex items-center gap-2"},m1={key:0,class:"mt-2 text-xs text-danger-fg"},g1={key:1,class:"mt-4 rounded-lg border border-line bg-surface-2 p-4"},v1={class:"mt-2 grid grid-cols-2 gap-1 font-mono text-xs text-ink-secondary sm:grid-cols-4"},_1={class:"rounded-lg border border-line bg-surface-2 p-3"},b1={class:"flex items-center gap-3"},y1={class:"grid h-9 w-9 place-items-center rounded-full bg-accent-soft text-accent-soft-fg"},x1={class:"min-w-0 flex-1"},w1={class:"text-sm font-semibold text-ink"},k1={class:"font-mono text-[11px] text-ink-muted"},S1={key:6,class:"mb-5"},T1={key:0,class:"panel mb-5 p-5"},P1={class:"grid max-w-[520px] gap-2"},C1={class:"flex flex-wrap gap-2"},L1=["disabled","title"],A1=["value"],M1=["value"],E1={class:"flex items-center gap-2 py-1 text-sm text-ink-secondary"},O1={class:"flex items-center gap-3"},z1=["disabled"],I1={key:0,class:"text-xs text-danger-fg"},$1={key:1,class:"text-xs text-ink-muted"},N1={key:1,class:"panel mb-5 p-5"},D1={class:"grid max-w-[520px] gap-2"},F1={class:"flex flex-wrap gap-2"},R1=["value"],B1=["value"],U1={key:1,class:"text-xs text-ink-muted"},V1={class:"font-semibold text-ink-secondary"},Z1={class:"flex items-center gap-3"},H1=["disabled"],j1={key:0,class:"text-xs text-danger-fg"},W1={class:"panel overflow-hidden p-0"},K1={class:"flex items-center justify-between px-5 py-4"},G1=["disabled"],q1={key:0,class:"px-5 pb-5 text-sm text-danger-fg"},Y1={key:1,class:"px-5 pb-8 text-sm text-ink-muted"},J1={key:2,class:"overflow-x-auto"},X1={class:"w-full border-collapse text-sm"},Q1={class:"text-left"},eb={class:"px-5 py-3"},tb={class:"text-ink"},nb={key:0,class:"ml-1.5 text-[11px] text-ink-muted"},ib={class:"px-5 py-3"},ob={class:"px-5 py-3"},sb={class:"px-5 py-3"},ab={class:"px-5 py-3 text-right"},rb=["onClick"],lb={key:1,class:"inline-flex items-center gap-1.5"},ub=["onClick"],cb=["onClick"],db={key:7,class:"mb-5"},fb={key:0,class:"panel mb-5 p-5"},hb={class:"grid max-w-[520px] gap-2"},pb={class:"flex items-center gap-3"},mb={key:0,class:"text-xs text-danger-fg"},gb={key:1,class:"panel mb-5 p-5"},vb={class:"grid max-w-[520px] gap-2"},_b={class:"flex items-center gap-3"},bb=["disabled"],yb={key:0,class:"text-xs text-danger-fg"},xb={class:"panel overflow-hidden p-0"},wb={key:0,class:"px-5 pb-8 text-sm text-ink-muted"},kb={key:1,class:"overflow-x-auto"},Sb={class:"w-full border-collapse text-sm"},Tb={class:"text-left"},Pb={class:"px-5 py-3"},Cb={class:"inline-flex items-center gap-2 text-ink"},Lb={class:"px-5 py-3 text-ink-secondary"},Ab={class:"px-5 py-3 text-right"},Mb=["onClick"],Eb={key:1,class:"inline-flex items-center gap-1.5"},Ob=["onClick"],zb=["disabled","title","onClick"],Ib={key:8,class:"mb-5"},$b={class:"panel mb-5 p-5"},Nb={class:"btn-ghost cursor-pointer"},Db={key:0,class:"mt-2 text-xs text-ink-muted"},Fb={class:"rounded-lg border p-5",style:{"border-color":"color-mix(in srgb, var(--danger) 35%, transparent)",background:"var(--danger-soft)"}},Rb={class:"flex items-center gap-2 text-danger-fg"},Bb={class:"mt-4 rounded-lg border border-line bg-surface-1 p-4"},Ub={class:"mt-3 flex items-start gap-2 text-sm text-ink-secondary"},Vb={class:"mt-3"},Zb={class:"eyebrow mb-1 block"},Hb={class:"text-ink"},jb=["placeholder"],Wb={class:"mt-4 flex flex-wrap items-center gap-3"},Kb=["disabled"],Gb=["disabled"],qb={key:2,class:"text-xs text-ink-muted"},Yb={key:0,class:"mt-3 rounded border border-line bg-surface-2 px-3 py-2 text-xs text-ink-secondary"},Jb={key:0,class:"fixed bottom-5 right-5 z-20 flex items-center gap-2 rounded-lg border border-line bg-surface-1 px-4 py-2.5 text-sm text-ink shadow-md"},Cu="pv.opensky.health",Lu="pv.filetransfer.health",Au="pv.webdav.health",Mu="pv.openweather.health",Eu="pv.localstorage.health",Xb={__name:"Settings",props:{email:{type:String,default:""},role:{type:String,default:"user"},organization:{type:String,default:""},organizationName:{type:String,default:""}},emits:["logout"],setup(t,{emit:i}){const s=t,l=i,u=ue(()=>s.role==="superadmin"),f=ue(()=>s.role==="admin"||s.role==="superadmin");function h(g){return g==="superadmin"?"Superadmin":g==="admin"?"Admin":"User"}function _(g){return g==="superadmin"||g==="admin"?"shield":"user"}function y(g){return g==="superadmin"||g==="admin"?C.accent:C.neutral}const C={success:"bg-success-soft text-success-fg",warning:"bg-amber-soft text-amber-fg",danger:"bg-danger-soft text-danger-fg",accent:"bg-accent-soft text-accent-soft-fg",neutral:"bg-surface-2 text-ink-secondary"},T=ue(()=>{const g=[{id:"account",label:"Account",icon:"user",kw:"name username email password verification login credentials role"},{id:"appearance",label:"Appearance",icon:"sliders",kw:"theme light dark system language region font size accessibility date time format motion"},{id:"integrations",label:"Integrations",icon:"radio",kw:"opensky flights adsb aircraft plugin oauth credentials bounding box plan connection ftp sftp ftps file transfer server host upload download local storage folder drive isolated private read only webdav nextcloud owncloud dav url https openweather weather forecast temperature api key units calls per minute usage limit quota"},{id:"profile",label:"Profile",icon:"image",kw:"avatar photo display name bio public"},{id:"security",label:"Privacy & Security",icon:"shield",kw:"two factor authentication 2fa sessions devices logout security privacy"}];return f.value&&g.push({id:"team",label:"User management",icon:"users",kw:"users team members add remove create delete role admin permissions rights organization"}),u.value&&g.push({id:"organizations",label:"Organizations",icon:"grid",kw:"organization org tenant company create rename delete members"}),g.push({id:"advanced",label:"Advanced",icon:"alertTriangle",kw:"export import data delete account danger zone",danger:!0}),g}),M=W("account"),U=W("");lc("settingsSearch",U);const V=ue(()=>U.value.trim().length>0),K=ue(()=>U.value.trim().toLowerCase());function F(g){return K.value?(g.label+" "+g.kw).toLowerCase().includes(K.value)||he(g.id):!0}const me={account:["full name","username","email address verification verify","password change current new"],appearance:["theme light dark system","language","region","font size accessibility","reduce motion","date format","time format clock"],integrations:["opensky live flights","enable plugin","oauth client id secret","plan credits","bounding box","test connection","file transfer ftp sftp ftps","server host port username password","private key passphrase","base path directory","local storage folder drive","private isolated folder","read only access mode","webdav nextcloud owncloud dav","server url username password tls","base path directory folder","openweather weather forecast","api key units metric imperial","default latitude longitude language","calls per minute limit usage quota","api call usage today rate limit"],profile:["profile photo avatar","display name","bio about","show email public"],security:["two factor authentication","active sessions devices","sign out"],team:["add user create account","members list role admin remove delete","organization org assign"],organizations:["add organization create","rename organization","delete organization members"],advanced:["export data download","import data upload","delete account permanent danger"]};function he(g){return K.value?(me[g]||[]).some(c=>c.includes(K.value)):!0}const Y=ue(()=>V.value?T.value.filter(F):T.value.filter(g=>g.id===M.value)),Le=ue({get:()=>Eo.value,set:g=>Ha(g)}),ce=[{value:"light",label:"Light",icon:"sun"},{value:"dark",label:"Dark",icon:"moon"},{value:"system",label:"System",icon:"monitor"}],Be=[{value:"sm",label:"Small"},{value:"md",label:"Default"},{value:"lg",label:"Large"}],Ne=[{value:"12",label:"12-hour"},{value:"24",label:"24-hour"}],ze=[["en","English"],["es","Español"],["de","Deutsch"],["fr","Français"],["pl","Polski"],["ja","日本語"]],We=wm(),we=ue(()=>(We.find(([g])=>g===be.region)||[null,be.region])[1]),le=[["MDY","MM/DD/YYYY"],["DMY","DD/MM/YYYY"],["YMD","YYYY/MM/DD"],["ISO","YYYY-MM-DD"]],Me=W(Date.now());let ie=null;const Ke=ue(()=>ku(Me.value)),re=xt({loaded:!1,available:!1,orgEnabled:!0,allowAnonymous:!0,enabled:!1,canEditOrg:!1,isSuperadmin:!1,scopes:{}}),qe=W("user"),fe=xt({clientId:"",clientSecret:"",plan:"",bbox:""}),de=W(""),ae=W(!1),Lt=W(!1),pe=W(null),Ue=W(null),Ve=ue(()=>pe.value&&pe.value.credits||null),mt=ue(()=>{const g=Ve.value;return!g||!g.daily||g.remaining==null?null:Math.max(0,Math.min(100,Math.round(g.remaining/g.daily*100)))}),ot=ue(()=>{const g=mt.value;return g==null?"bg-accent":g<=10?"bg-danger":g<=30?"bg-amber":"bg-success"});function Ce(g){return typeof g=="number"?g.toLocaleString():g}function J(){if(!Ue.value)return"";const g=Math.max(0,Math.round((Date.now()-Ue.value)/1e3));if(g<60)return"just now";const c=Math.round(g/60);if(c<60)return`${c} min ago`;const H=Math.round(c/60);return H<24?`${H} h ago`:`${Math.round(H/24)} d ago`}function E(){try{pe.value&&localStorage.setItem(Cu,JSON.stringify({health:pe.value,ts:Ue.value}))}catch{}}function I(){try{const g=localStorage.getItem(Cu);if(!g)return;const c=JSON.parse(g);c&&c.health&&(pe.value=c.health,Ue.value=c.ts||null)}catch{}}const gt=[{value:"",label:"Not set"},{value:"anonymous",label:"Anonymous"},{value:"standard",label:"Standard"},{value:"contributor",label:"Contributor"}],dt=[{value:"user",label:"My settings",icon:"user"},{value:"org",label:"Organization",icon:"users"}],bt=[{label:"World",options:[{value:"-90,-180,90,180",label:"World"}]},{label:"Continents",options:[{value:"34,-25,72,45",label:"Europe"},{value:"-35,-18,38,52",label:"Africa"},{value:"5,25,82,180",label:"Asia"},{value:"7,-168,72,-52",label:"North America"},{value:"-56,-82,13,-34",label:"South America"},{value:"-48,110,-10,180",label:"Oceania"}]},{label:"European countries",options:xm()},{label:"Other countries",options:[{value:"24,-125,49.5,-66.5",label:"United States"},{value:"41.7,-141,83.1,-52.6",label:"Canada"},{value:"-43.6,113.3,-10.7,153.6",label:"Australia"},{value:"24,122.9,45.5,145.8",label:"Japan"}]}],x=bt.flatMap(g=>g.options);function b(g){const c=String(g||"").split(",").map(k=>k.trim());if(c.length!==4)return"";const H=c.map(Number);return H.some(k=>Number.isNaN(k))?"":H.join(",")}function S(g){const c=b(g),H=c&&x.find(k=>b(k.value)===c);return H?H.label:""}const B=W(!1),R=ue({get(){if(!ge.value&&be.autoBbox)return"__auto__";if(B.value)return"__custom__";const g=b(fe.bbox),c=g&&x.find(H=>b(H.value)===g);return c?c.value:"__custom__"},set(g){if(g==="__auto__"){ge.value||(be.autoBbox=!0),B.value=!1;return}if(ge.value||(be.autoBbox=!1),g==="__custom__"){B.value=!0;return}B.value=!1,fe.bbox=g}}),Z=ue(()=>R.value==="__custom__"),se=ue(()=>R.value==="__auto__"),ne=ue(()=>re.isSuperadmin),ee=ue(()=>re.isSuperadmin?"user":qe.value),q=ue(()=>re.scopes[ee.value]||{editableLayer:"user",fields:{}}),ge=ue(()=>ee.value==="org");function te(g){return q.value.fields[g]||{effective:"",own:"",source:"unset",locked:!1}}function Se(g){return ne.value||te(g).locked}function Te(g){const c=te(g).source;return c==="global"?"Set by administrator":c==="org"?"Set by your organization":""}function Ze(){fe.clientId=te("clientId").own||"",fe.clientSecret=te("clientSecret").own||"",fe.plan=te("plan").own||"",fe.bbox=te("bbox").own||"",B.value=!1}function Ye(g){re.available=!!g.available,re.orgEnabled=g.orgEnabled!==!1,re.allowAnonymous=!!g.allowAnonymous,re.enabled=!!g.enabled,re.canEditOrg=!!g.canEditOrg,re.isSuperadmin=!!g.isSuperadmin,re.scopes=g.scopes||{},qe.value==="org"&&!re.canEditOrg&&(qe.value="user"),Ze(),re.loaded=!0}Rt(qe,()=>{de.value="",Ze()});async function st(){I();const{ok:g,body:c}=await hp();g&&Ye(c)}async function ft(g){const c=ge.value;c?re.orgEnabled=g:re.enabled=g;const{ok:H,body:k}=await _u(c?{scope:"org",enabled:g}:{scope:"user",enabled:g});H?(Ye(k),Je(c?g?"OpenSky enabled for your organization.":"OpenSky disabled for your organization.":g?"OpenSky enabled.":"OpenSky disabled.")):(c?re.orgEnabled=!g:re.enabled=!g,Je(k.error||"Could not update."))}async function Tt(){de.value="",ae.value=!0;const g={};for(const He of["clientId","clientSecret","plan","bbox"])Se(He)||(g[He]=fe[He]);const c={scope:ee.value,config:g};ge.value||(c.enabled=re.enabled);const{ok:H,body:k}=await _u(c);if(ae.value=!1,!H){de.value=k.error||"Could not save settings.";return}Ye(k),Je(ge.value?"Organization OpenSky settings saved.":"OpenSky settings saved.")}const Bt=[{label:"World",options:[{value:"-90,-180,90,180",label:"World"}]},{label:"Continents",options:[{value:"34,-25,72,45",label:"Europe"},{value:"-35,-18,38,52",label:"Africa"},{value:"5,25,82,180",label:"Asia"},{value:"7,-168,72,-52",label:"North America"},{value:"-56,-82,13,-34",label:"South America"},{value:"-48,110,-10,180",label:"Oceania"}]},...Sm()],Kt=Bt.flatMap(g=>g.options),Nt=W(""),pn=W(!1),Pt=ue({get(){if(pn.value)return"__custom__";if(!Nt.value)return"__default__";const g=b(Nt.value),c=g&&Kt.find(H=>b(H.value)===g);return c?c.value:"__custom__"},set(g){if(g==="__default__"){pn.value=!1,Nt.value="";return}if(g==="__custom__"){pn.value=!0;return}pn.value=!1,Nt.value=g}}),Gt=ue(()=>Pt.value==="__custom__");async function zn(){Lt.value=!0,pe.value=null;const{ok:g,body:c}=await pp((Nt.value||"").trim()||void 0);Lt.value=!1,pe.value=g&&c.health?c.health:{status:"down",detail:c.error||"Probe failed."},Ue.value=Date.now(),E()}function zi(g){return g==="ok"?C.success:g==="degraded"?C.warning:C.danger}const rt=xt({loaded:!1,available:!1,orgEnabled:!0,enabled:!1,canEditOrg:!1,isSuperadmin:!1,scopes:{}}),Kn=W("user"),In=["protocol","host","port","username","password","privateKey","keyPassphrase","hostKeyFingerprint","insecureSkipVerify","basePath"],ct=xt(Object.fromEntries(In.map(g=>[g,""]))),j=W(""),O=W(!1),Ie=W(!1),it=W(null),Et=W(null),mn=[{value:"sftp",label:"SFTP"},{value:"ftps",label:"FTPS"},{value:"ftp",label:"FTP"}],Ii=[{value:"false",label:"Verify certificate"},{value:"true",label:"Skip verification"}],Pe=ue(()=>rt.isSuperadmin),qt=ue(()=>rt.isSuperadmin?"user":Kn.value),Oo=ue(()=>rt.scopes[qt.value]||{editableLayer:"user",fields:{}}),$n=ue(()=>qt.value==="org"),an=ue(()=>(rn("protocol")?ve("protocol").effective:ct.protocol)||"sftp");function ve(g){return Oo.value.fields[g]||{effective:"",own:"",source:"unset",locked:!1}}function rn(g){return Pe.value||ve(g).locked}function At(g){const c=ve(g).source;return c==="global"?"Set by administrator":c==="org"?"Set by your organization":""}function oa(g){return(mn.find(c=>c.value===g)||{}).label||g||"—"}function cs(){for(const g of In)ct[g]=ve(g).own||"";ct.protocol||(ct.protocol="sftp"),ct.insecureSkipVerify||(ct.insecureSkipVerify="false")}function to(g){rt.available=!!g.available,rt.orgEnabled=g.orgEnabled!==!1,rt.enabled=!!g.enabled,rt.canEditOrg=!!g.canEditOrg,rt.isSuperadmin=!!g.isSuperadmin,rt.scopes=g.scopes||{},Kn.value==="org"&&!rt.canEditOrg&&(Kn.value="user"),cs(),rt.loaded=!0}Rt(Kn,()=>{j.value="",cs()});function sa(){if(!Et.value)return"";const g=Math.max(0,Math.round((Date.now()-Et.value)/1e3));if(g<60)return"just now";const c=Math.round(g/60);if(c<60)return`${c} min ago`;const H=Math.round(c/60);return H<24?`${H} h ago`:`${Math.round(H/24)} d ago`}function $i(){try{it.value&&localStorage.setItem(Lu,JSON.stringify({health:it.value,ts:Et.value}))}catch{}}function aa(){try{const g=localStorage.getItem(Lu);if(!g)return;const c=JSON.parse(g);c&&c.health&&(it.value=c.health,Et.value=c.ts||null)}catch{}}async function ir(){aa();const{ok:g,body:c}=await gp();g&&to(c)}async function ra(g){const c=$n.value;c?rt.orgEnabled=g:rt.enabled=g;const{ok:H,body:k}=await bu(c?{scope:"org",enabled:g}:{scope:"user",enabled:g});H?(to(k),Je(c?g?"File transfer enabled for your organization.":"File transfer disabled for your organization.":g?"File transfer enabled.":"File transfer disabled.")):(c?rt.orgEnabled=!g:rt.enabled=!g,Je(k.error||"Could not update."))}async function or(){j.value="",O.value=!0;const g={};for(const He of In)rn(He)||(g[He]=ct[He]);const c={scope:qt.value,config:g};$n.value||(c.enabled=rt.enabled);const{ok:H,body:k}=await bu(c);if(O.value=!1,!H){j.value=k.error||"Could not save settings.";return}to(k),Je($n.value?"Organization file-transfer settings saved.":"File-transfer settings saved.")}async function sr(){Ie.value=!0,it.value=null;const{ok:g,body:c}=await vp();Ie.value=!1,it.value=g&&c.health?c.health:{status:"down",detail:c.error||"Probe failed."},Et.value=Date.now(),$i()}function la(g){return g==="ok"?C.success:g==="degraded"?C.warning:C.danger}const ht=xt({loaded:!1,available:!1,orgEnabled:!0,enabled:!1,canEditOrg:!1,isSuperadmin:!1,scopes:{}}),Gn=W("user"),ds=["baseURL","username","password","insecureSkipVerify","basePath"],Yt=xt(Object.fromEntries(ds.map(g=>[g,""]))),no=W(""),zo=W(!1),Io=W(!1),Sn=W(null),Nn=W(null),ua=[{value:"false",label:"Verify certificate"},{value:"true",label:"Skip verification"}],$o=ue(()=>ht.isSuperadmin),pi=ue(()=>ht.isSuperadmin?"user":Gn.value),lt=ue(()=>ht.scopes[pi.value]||{editableLayer:"user",fields:{}}),ut=ue(()=>pi.value==="org");function Tn(g){return lt.value.fields[g]||{effective:"",own:"",source:"unset",locked:!1}}function Pn(g){return $o.value||Tn(g).locked}function jt(g){const c=Tn(g).source;return c==="global"?"Set by administrator":c==="org"?"Set by your organization":""}function No(){for(const g of ds)Yt[g]=Tn(g).own||"";Yt.insecureSkipVerify||(Yt.insecureSkipVerify="false")}function je(g){ht.available=!!g.available,ht.orgEnabled=g.orgEnabled!==!1,ht.enabled=!!g.enabled,ht.canEditOrg=!!g.canEditOrg,ht.isSuperadmin=!!g.isSuperadmin,ht.scopes=g.scopes||{},Gn.value==="org"&&!ht.canEditOrg&&(Gn.value="user"),No(),ht.loaded=!0}Rt(Gn,()=>{no.value="",No()});function Mt(){if(!Nn.value)return"";const g=Math.max(0,Math.round((Date.now()-Nn.value)/1e3));if(g<60)return"just now";const c=Math.round(g/60);if(c<60)return`${c} min ago`;const H=Math.round(c/60);return H<24?`${H} h ago`:`${Math.round(H/24)} d ago`}function fs(){try{Sn.value&&localStorage.setItem(Au,JSON.stringify({health:Sn.value,ts:Nn.value}))}catch{}}function Do(){try{const g=localStorage.getItem(Au);if(!g)return;const c=JSON.parse(g);c&&c.health&&(Sn.value=c.health,Nn.value=c.ts||null)}catch{}}async function gn(){Do();const{ok:g,body:c}=await yp();g&&je(c)}async function ca(g){const c=ut.value;c?ht.orgEnabled=g:ht.enabled=g;const{ok:H,body:k}=await yu(c?{scope:"org",enabled:g}:{scope:"user",enabled:g});H?(je(k),Je(c?g?"WebDAV enabled for your organization.":"WebDAV disabled for your organization.":g?"WebDAV enabled.":"WebDAV disabled.")):(c?ht.orgEnabled=!g:ht.enabled=!g,Je(k.error||"Could not update."))}async function Fo(){no.value="",zo.value=!0;const g={};for(const He of ds)Pn(He)||(g[He]=Yt[He]);const c={scope:pi.value,config:g};ut.value||(c.enabled=ht.enabled);const{ok:H,body:k}=await yu(c);if(zo.value=!1,!H){no.value=k.error||"Could not save settings.";return}je(k),Je(ut.value?"Organization WebDAV settings saved.":"WebDAV settings saved.")}async function mi(){Io.value=!0,Sn.value=null;const{ok:g,body:c}=await xp();Io.value=!1,Sn.value=g&&c.health?c.health:{status:"down",detail:c.error||"Probe failed."},Nn.value=Date.now(),fs()}function Ot(g){return g==="ok"?C.success:g==="degraded"?C.warning:C.danger}const et=xt({loaded:!1,available:!1,orgEnabled:!0,enabled:!1,canEditOrg:!1,isSuperadmin:!1,scopes:{}}),Dn=W("user"),gi=["apiKey","units","lat","lon","lang","callsPerMinute"],Ut=xt(Object.fromEntries(gi.map(g=>[g,""]))),qn=W(""),Ni=W(!1),Di=W(!1),Jt=W(null),Yn=W(null),Ro=[{value:"",label:"Not set"},{value:"metric",label:"Metric (°C)"},{value:"imperial",label:"Imperial (°F)"},{value:"standard",label:"Standard (K)"}],Fi=ue(()=>et.isSuperadmin),Bo=ue(()=>et.isSuperadmin?"user":Dn.value),hs=ue(()=>et.scopes[Bo.value]||{editableLayer:"user",fields:{}}),Cn=ue(()=>Bo.value==="org");function $e(g){return hs.value.fields[g]||{effective:"",own:"",source:"unset",locked:!1}}function Vt(g){return Fi.value||$e(g).locked}function Qe(g){const c=$e(g).source;return c==="global"?"Set by administrator":c==="org"?"Set by your organization":""}function ps(){for(const g of gi)Ut[g]=$e(g).own||""}function io(g){et.available=!!g.available,et.orgEnabled=g.orgEnabled!==!1,et.enabled=!!g.enabled,et.canEditOrg=!!g.canEditOrg,et.isSuperadmin=!!g.isSuperadmin,et.scopes=g.scopes||{},Dn.value==="org"&&!et.canEditOrg&&(Dn.value="user"),ps(),et.loaded=!0}Rt(Dn,()=>{qn.value="",ps()});function Uo(){if(!Yn.value)return"";const g=Math.max(0,Math.round((Date.now()-Yn.value)/1e3));if(g<60)return"just now";const c=Math.round(g/60);if(c<60)return`${c} min ago`;const H=Math.round(c/60);return H<24?`${H} h ago`:`${Math.round(H/24)} d ago`}function ms(){try{Jt.value&&localStorage.setItem(Mu,JSON.stringify({health:Jt.value,ts:Yn.value}))}catch{}}function vi(){try{const g=localStorage.getItem(Mu);if(!g)return;const c=JSON.parse(g);c&&c.health&&(Jt.value=c.health,Yn.value=c.ts||null)}catch{}}async function gs(){vi();const{ok:g,body:c}=await wp();g&&io(c)}async function Ri(g){const c=Cn.value;c?et.orgEnabled=g:et.enabled=g;const{ok:H,body:k}=await xu(c?{scope:"org",enabled:g}:{scope:"user",enabled:g});H?(io(k),Je(c?g?"OpenWeather enabled for your organization.":"OpenWeather disabled for your organization.":g?"OpenWeather enabled.":"OpenWeather disabled.")):(c?et.orgEnabled=!g:et.enabled=!g,Je(k.error||"Could not update."))}async function Dt(){qn.value="",Ni.value=!0;const g={};for(const He of gi)Vt(He)||(g[He]=Ut[He]);const c={scope:Bo.value,config:g};Cn.value||(c.enabled=et.enabled);const{ok:H,body:k}=await xu(c);if(Ni.value=!1,!H){qn.value=k.error||"Could not save settings.";return}io(k),Je(Cn.value?"Organization OpenWeather settings saved.":"OpenWeather settings saved.")}async function _i(){Di.value=!0,Jt.value=null;const{ok:g,body:c}=await kp();Di.value=!1,Jt.value=g&&c.health?c.health:{status:"down",detail:c.error||"Probe failed."},Yn.value=Date.now(),ms()}function da(g){return g==="ok"?C.success:g==="degraded"?C.warning:C.danger}const Bi=ue(()=>Jt.value&&Jt.value.usage||null),vs=ue(()=>{const g=Bi.value;return!g||!g.minuteLimit?null:Math.max(0,Math.min(100,Math.round(g.minuteUsed/g.minuteLimit*100)))}),fa=ue(()=>{const g=vs.value;return g==null?"bg-accent":g>=90?"bg-danger":g>=70?"bg-amber":"bg-success"}),Ee=xt({loaded:!1,available:!1,orgEnabled:!0,enabled:!1,canEditOrg:!1,isSuperadmin:!1,isOrgUser:!1,mounts:[],privateFolder:!1,privateEnabled:!1,allowPrivate:!0,rootConfigured:!1,scopes:{}}),Ui=W("user"),oo=W(""),Xe=W(""),Vo=W(!1),Xt=W(!1),ln=W(null),bi=W(null),so=W({}),Zo=[{value:"",label:"Inherit"},{value:"false",label:"Read-write"},{value:"true",label:"Read-only"}],_s=ue(()=>Ee.isSuperadmin),Ho=ue(()=>Ee.isSuperadmin?"user":Ui.value),ar=ue(()=>Ee.scopes[Ho.value]||{editableLayer:"user",fields:{}}),vn=ue(()=>Ho.value==="org");function Vi(g){return ar.value.fields[g]||{effective:"",own:"",source:"unset",locked:!1}}function ha(g){return _s.value||Vi(g).locked}function Ln(g){const c=Vi(g).source;return c==="global"?"Set by administrator":c==="org"?"Set by your organization":""}function rr(g){return(Zo.find(c=>c.value===g)||{}).label||"Inherit"}function bs(){oo.value=Vi("readOnly").own||""}function _n(g){Ee.available=!!g.available,Ee.orgEnabled=g.orgEnabled!==!1,Ee.enabled=!!g.enabled,Ee.canEditOrg=!!g.canEditOrg,Ee.isSuperadmin=!!g.isSuperadmin,Ee.isOrgUser=!!g.isOrgUser,Ee.mounts=Array.isArray(g.mounts)?g.mounts:[],Ee.privateFolder=!!g.privateFolder,Ee.privateEnabled=!!g.privateEnabled,Ee.allowPrivate=g.allowPrivate!==!1,Ee.rootConfigured=!!g.rootConfigured,Ee.scopes=g.scopes||{},Ui.value==="org"&&!Ee.canEditOrg&&(Ui.value="user"),bs(),Ee.loaded=!0}Rt(Ui,()=>{Xe.value="",bs()});function pa(){if(!bi.value)return"";const g=Math.max(0,Math.round((Date.now()-bi.value)/1e3));if(g<60)return"just now";const c=Math.round(g/60);if(c<60)return`${c} min ago`;const H=Math.round(c/60);return H<24?`${H} h ago`:`${Math.round(H/24)} d ago`}function ma(){try{ln.value&&localStorage.setItem(Eu,JSON.stringify({health:ln.value,ts:bi.value}))}catch{}}function ys(){try{const g=localStorage.getItem(Eu);if(!g)return;const c=JSON.parse(g);c&&c.health&&(ln.value=c.health,bi.value=c.ts||null)}catch{}}async function lr(){ys();const{ok:g,body:c}=await _p();g&&_n(c)}async function xs(g){const c=vn.value;c?Ee.orgEnabled=g:Ee.enabled=g;const{ok:H,body:k}=await Ma(c?{scope:"org",enabled:g}:{scope:"user",enabled:g});H?(_n(k),Je(c?g?"Local storage enabled for your organization.":"Local storage disabled for your organization.":g?"Local storage enabled.":"Local storage disabled.")):(c?Ee.orgEnabled=!g:Ee.enabled=!g,Je(k.error||"Could not update."))}async function ga(g){Ee.privateFolder=g;const{ok:c,body:H}=await Ma({scope:"user",privateFolder:g});c?(_n(H),Je(g?"Private folder enabled.":"Private folder disabled.")):(Ee.privateFolder=!g,Je(H.error||"Could not update."))}async function ur(g){Ee.allowPrivate=g;const{ok:c,body:H}=await Ma({scope:"org",allowPrivate:g});c?(_n(H),Je(g?"Members may now create private folders.":"Private folders disabled for your organization.")):(Ee.allowPrivate=!g,Je(H.error||"Could not update."))}async function cr(){Xe.value="",Vo.value=!0;const g={};ha("readOnly")||(g.readOnly=oo.value);const c={scope:Ho.value,config:g};vn.value||(c.enabled=Ee.enabled);const{ok:H,body:k}=await Ma(c);if(Vo.value=!1,!H){Xe.value=k.error||"Could not save settings.";return}_n(k),Je(vn.value?"Organization local-storage settings saved.":"Local-storage settings saved.")}async function ws(){Xt.value=!0,ln.value=null,so.value={};const{ok:g,body:c}=await bp();Xt.value=!1,ln.value=g&&c.health?c.health:{status:"down",detail:c.error||"Probe failed."};const H={};if(Array.isArray(c.mounts))for(const k of c.mounts)H[k.id]={status:k.status,detail:k.detail};so.value=H,bi.value=Date.now(),ma()}function va(g){return g==="ok"?C.success:g==="degraded"?C.warning:C.danger}const _a=[{id:"apis-external",label:"APIs — External",icon:"globe"},{id:"drives-external",label:"Drives — External",icon:"server"},{id:"drives-local",label:"Drives — Local",icon:"monitor"}],jo=W("apis-external");function Zi(g){return V.value||jo.value===g}const Fn=W("");let ks=null;function Je(g){Fn.value=g,clearTimeout(ks),ks=setTimeout(()=>Fn.value="",2200)}const kt=xt({current:"",next:"",confirm:""}),yi=W(""),Ss=W(!1);function dr(){if(Ss.value=!1,!kt.current)return yi.value="Enter your current password.";if(kt.next.length<8)return yi.value="New password must be at least 8 characters.";if(kt.next!==kt.confirm)return yi.value="New passwords do not match.";yi.value="Validated. Connecting to the account service is pending — no password endpoint yet.",kt.current=kt.next=kt.confirm=""}const ao=W("");function Ts(){ao.value="Verification link would be sent once the account service is wired up."}function fr(g){const c=g.target.files&&g.target.files[0];if(!c)return;if(c.size>1.5*1024*1024){Je("Image too large (max ~1.5 MB).");return}const H=new FileReader;H.onload=()=>{be.avatar=String(H.result),Je("Photo updated.")},H.readAsDataURL(c)}function hr(){be.avatar="",Je("Photo removed.")}const ba=ue(()=>{var H,k,He;const c=(be.displayName||be.name||s.email||"PV").split("@")[0].split(/[.\-_ ]+/).filter(Boolean);return((((H=c[0])==null?void 0:H[0])||"P")+(((k=c[1])==null?void 0:k[0])||((He=c[0])==null?void 0:He[1])||"V")).toUpperCase()}),ro=W(!1),bn=W(""),Jn=W(""),lo=W(""),yn=W([]);function Ps(g){const c="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";let H="";for(let k=0;kPs(4).toLowerCase()+"-"+Ps(4).toLowerCase()),lo.value=""}function uo(){be.twoFactor=!1,yn.value=[],ro.value=!1}const An=navigator.userAgent;function Wo(){return/Edg\//.test(An)?"Edge":/OPR\//.test(An)?"Opera":/Chrome\//.test(An)?"Chrome":/Firefox\//.test(An)?"Firefox":/Safari\//.test(An)?"Safari":"Browser"}function mr(){return/Windows/.test(An)?"Windows":/Mac OS X/.test(An)?"macOS":/Android/.test(An)?"Android":/iPhone|iPad/.test(An)?"iOS":/Linux/.test(An)?"Linux":"Unknown OS"}const ii=Date.now(),xi=W([]),co=W(!1),ji=W(""),Ft=xt({email:"",password:"",role:"user",organization:""}),Qt=W(""),Ko=W(!1),Rn=W(""),ya=ue(()=>{const g=[{value:"user",label:"User"},{value:"admin",label:"Admin"}];return u.value&&g.push({value:"superadmin",label:"Superadmin"}),g}),xn=W([]);async function oi(){if(!f.value)return;const g=await rp();g.ok&&(xn.value=g.organizations.slice().sort((c,H)=>c.name.localeCompare(H.name)))}const Cs=ue(()=>{const g=xn.value.map(c=>({value:c.id,label:c.name}));return u.value&&g.unshift({value:"",label:"No organization"}),g});async function si(){if(!f.value)return;co.value=!0,ji.value="";const g=await ip();if(co.value=!1,!g.ok){ji.value=g.status===403?"Manager role required.":"Could not load users.";return}xi.value=g.users.slice().sort((c,H)=>c.email.localeCompare(H.email))}function wi(g){try{const c=g.data||{},H=Object.keys(c)[0];return H&&c[H]&&c[H].message||g.message||g.error||"Invalid input."}catch{return g.error||"Could not create user."}}async function Ls(){Qt.value="";const g=Ft.email.trim().toLowerCase();if(!g.includes("@"))return Qt.value="Enter a valid email.";if(Ft.password.length<8)return Qt.value="Password must be at least 8 characters.";Ko.value=!0;const c=u.value?Ft.organization:s.organization,{ok:H,body:k}=await op(g,Ft.password,Ft.role,c);if(Ko.value=!1,!H)return Qt.value=wi(k);Ft.email="",Ft.password="",Ft.role="user",Ft.organization="",Je("User created."),si()}async function Go(g){const{ok:c,body:H}=await ap(g.id);if(Rn.value="",!c)return Je(H.error||"Could not remove user.");Je("User removed."),si()}const tt=xt({id:"",email:"",role:"user",verified:!1,password:"",organization:""}),Mn=W(""),Wi=W(!1),qo=ue(()=>!!tt.id&&tt.email===s.email);function gr(g){Rn.value="",tt.id=g.id,tt.email=g.email,tt.role=g.role||"user",tt.verified=!!g.verified,tt.password="",tt.organization=g.organization||"",Mn.value=""}function fo(){tt.id="",Mn.value=""}async function vr(){Mn.value="";const g=tt.email.trim().toLowerCase();if(!g.includes("@"))return Mn.value="Enter a valid email.";if(tt.password&&tt.password.length<8)return Mn.value="New password must be at least 8 characters (or leave blank).";const c={email:g,role:tt.role,verified:tt.verified};u.value&&(c.organization=tt.organization),tt.password&&(c.password=tt.password),Wi.value=!0;const{ok:H,body:k}=await sp(tt.id,c);if(Wi.value=!1,!H)return Mn.value=wi(k);Je("User updated."),fo(),si()}const ho=xt({name:""}),po=W(""),mo=W(!1),go=W(""),It=xt({id:"",name:""}),Bn=W(""),As=ue(()=>{const g={};for(const c of xi.value)c.organization&&(g[c.organization]=(g[c.organization]||0)+1);return g});async function vo(){po.value="";const g=ho.name.trim();if(!g)return po.value="Enter an organization name.";mo.value=!0;const{ok:c,body:H}=await lp(g);if(mo.value=!1,!c)return po.value=wi(H);ho.name="",Je("Organization created."),oi()}function _r(g){go.value="",It.id=g.id,It.name=g.name,Bn.value=""}function Ms(){It.id="",Bn.value=""}async function xa(){Bn.value="";const g=It.name.trim();if(!g)return Bn.value="Enter an organization name.";const{ok:c,body:H}=await up(It.id,g);if(!c)return Bn.value=wi(H);Je("Organization renamed."),Ms(),oi(),si()}async function _o(g){const{ok:c,body:H}=await cp(g.id);if(go.value="",!c)return Je(H.error||"Could not delete organization.");Je("Organization deleted."),oi()}function br(){const g={_app:"PilotVault",_kind:"settings-export",exportedAt:new Date().toISOString(),email:s.email,prefs:{...be},themeMode:Eo.value},c=new Blob([JSON.stringify(g,null,2)],{type:"application/json"}),H=URL.createObjectURL(c),k=document.createElement("a");k.href=H,k.download=`pilotvault-settings-${new Date().toISOString().slice(0,10)}.json`,document.body.appendChild(k),k.click(),k.remove(),URL.revokeObjectURL(H),Je("Settings exported.")}const Xn=W("");function wa(g){const c=g.target.files&&g.target.files[0];if(!c)return;const H=new FileReader;H.onload=()=>{try{const k=JSON.parse(String(H.result)),He=k.prefs||k;if(!ed(He))throw new Error("bad shape");k.themeMode&&Ha(k.themeMode),pl(be.fontSize),ml(be.reduceMotion),Xn.value="Settings imported and applied."}catch{Xn.value="That file is not a valid PilotVault settings export."}},H.readAsText(c),g.target.value=""}const yt=xt({understand:!1,typed:"",cooldown:0,armed:!1,msg:""});let bo=null;const En=ue(()=>s.email||"DELETE MY ACCOUNT"),Yo=ue(()=>yt.understand&&yt.typed===En.value);function ka(){Yo.value&&(yt.armed=!0,yt.cooldown=5,clearInterval(bo),bo=setInterval(()=>{yt.cooldown--,yt.cooldown<=0&&clearInterval(bo)},1e3))}Rt(Yo,g=>{!g&&yt.armed&&(yt.armed=!1,yt.cooldown=0,clearInterval(bo))});function yo(){if(!(!yt.armed||yt.cooldown>0)){try{localStorage.removeItem("pv_prefs")}catch{}yt.msg="Account deletion requires the account service. Local data was cleared and you were signed out.",setTimeout(()=>l("logout"),900)}}return Ei(()=>{ie=setInterval(()=>Me.value=Date.now(),1e3),oi(),si(),st(),ir(),gn(),gs(),lr()}),us(()=>{clearInterval(ie),clearInterval(bo),clearTimeout(ks)}),(g,c)=>(p(),m("div",Pm,[a("div",Cm,[c[72]||(c[72]=a("div",null,[a("div",{class:"eyebrow"},"Preferences"),a("h2",{class:"mt-0.5 text-[22px] font-bold tracking-tightest text-ink"},"Settings")],-1)),a("div",Lm,[A(G,{name:"search",size:16,class:"text-ink-muted"}),Q(a("input",{"onUpdate:modelValue":c[0]||(c[0]=H=>U.value=H),placeholder:"Search settings…",class:"w-full border-none bg-transparent text-sm text-ink outline-none placeholder:text-ink-muted"},null,512),[[ye,U.value]]),U.value?(p(),m("button",{key:0,class:"text-ink-muted hover:text-ink","aria-label":"Clear search",onClick:c[1]||(c[1]=H=>U.value="")},[A(G,{name:"x",size:15})])):$("",!0)])]),a("div",Am,[Q(a("nav",Mm,[(p(!0),m(oe,null,Fe(T.value,H=>(p(),m("button",{key:H.id,class:Ae(["flex items-center gap-2.5 rounded px-3 py-2.5 text-left text-sm transition",[M.value===H.id?H.danger?"bg-danger-soft font-semibold text-danger-fg":"bg-accent-soft font-semibold text-accent-soft-fg":H.danger?"font-medium text-danger-fg hover:bg-danger-soft":"font-medium text-ink-secondary hover:bg-surface-2"]]),onClick:k=>M.value=H.id},[A(G,{name:H.icon,size:17},null,8,["name"]),a("span",Om,w(H.label),1)],10,Em))),128))],512),[[kh,!V.value]]),a("div",zm,[V.value&&!Y.value.length?(p(),m("div",Im," No settings match “"+w(U.value)+"”. ",1)):$("",!0),(p(!0),m(oe,null,Fe(Y.value,H=>(p(),m(oe,{key:H.id},[V.value?(p(),m("div",$m,[A(G,{name:H.icon,size:14},null,8,["name"]),z(" "+w(H.label),1)])):$("",!0),H.id==="account"?(p(),m("div",Nm,[A(ke,{title:"Full name",desc:"Shown to your team on flights and audit logs.",keywords:"full name account"},{default:xe(()=>[Q(a("input",{"onUpdate:modelValue":c[2]||(c[2]=k=>Oe(be).name=k),class:"field w-56",placeholder:"Jane Operator",onBlur:c[3]||(c[3]=k=>Je("Saved."))},null,544),[[ye,Oe(be).name]])]),_:1}),A(ke,{title:"Username",desc:"Your unique handle within PilotVault.",keywords:"username handle"},{default:xe(()=>[a("div",Dm,[c[73]||(c[73]=a("span",{class:"text-sm text-ink-muted"},"@",-1)),Q(a("input",{"onUpdate:modelValue":c[4]||(c[4]=k=>Oe(be).username=k),class:"field w-48",placeholder:"jane",onBlur:c[5]||(c[5]=k=>Je("Saved."))},null,544),[[ye,Oe(be).username]])])]),_:1}),A(ke,{title:"Email address",desc:"Used for sign-in and notifications.",keywords:"email verification verify"},{default:xe(()=>[a("div",Fm,[a("span",Rm,w(t.email||"—"),1),a("span",Bm,[A(G,{name:"mail",size:12}),c[74]||(c[74]=z(" Unverified ",-1))])])]),_:1}),A(ke,{title:"Role",desc:"Your access level in PilotVault.",keywords:"role admin user superadmin access rights permissions"},{default:xe(()=>[a("span",{class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",y(t.role)])},[A(G,{name:_(t.role),size:12},null,8,["name"]),z(w(h(t.role)),1)],2)]),_:1}),A(ke,{title:"Organization",desc:"The organization your account belongs to.",keywords:"organization org tenant company"},{default:xe(()=>[a("span",{class:Ae(["text-sm",t.organizationName?"text-ink":"text-ink-muted"])},w(t.organizationName||(u.value?"All organizations":"None")),3)]),_:1}),A(ke,{block:"",title:"Verify email",desc:"Confirm ownership to enable password resets and alerts.",keywords:"verify email resend"},{default:xe(()=>[a("button",{class:"btn-ghost",onClick:Ts},"Send verification link"),ao.value?(p(),m("p",Um,w(ao.value),1)):$("",!0)]),_:1}),A(ke,{block:"",title:"Change password",desc:"Use at least 8 characters.",keywords:"password change current new"},{default:xe(()=>[a("div",Vm,[Q(a("input",{"onUpdate:modelValue":c[6]||(c[6]=k=>kt.current=k),type:"password",class:"field",placeholder:"Current password"},null,512),[[ye,kt.current]]),Q(a("input",{"onUpdate:modelValue":c[7]||(c[7]=k=>kt.next=k),type:"password",class:"field",placeholder:"New password"},null,512),[[ye,kt.next]]),Q(a("input",{"onUpdate:modelValue":c[8]||(c[8]=k=>kt.confirm=k),type:"password",class:"field",placeholder:"Confirm new password"},null,512),[[ye,kt.confirm]]),a("div",Zm,[a("button",{class:"btn-accent",onClick:dr},"Update password"),yi.value?(p(),m("span",{key:0,class:Ae(["text-xs",Ss.value?"text-success-fg":"text-ink-muted"])},w(yi.value),3)):$("",!0)])])]),_:1})])):H.id==="appearance"?(p(),m("div",Hm,[A(ke,{title:"Theme",desc:"Light, dark, or follow your system.",keywords:"theme light dark system appearance"},{default:xe(()=>[A(kn,{modelValue:Le.value,"onUpdate:modelValue":c[9]||(c[9]=k=>Le.value=k),options:ce},null,8,["modelValue"])]),_:1}),A(ke,{title:"Font size",desc:"Scales the entire interface for readability.",keywords:"font size accessibility text"},{default:xe(()=>[A(kn,{modelValue:Oe(be).fontSize,"onUpdate:modelValue":c[10]||(c[10]=k=>Oe(be).fontSize=k),options:Be},null,8,["modelValue"])]),_:1}),A(ke,{title:"Reduce motion",desc:"Minimise animations and transitions.",keywords:"reduce motion accessibility animation"},{default:xe(()=>[A(en,{modelValue:Oe(be).reduceMotion,"onUpdate:modelValue":c[11]||(c[11]=k=>Oe(be).reduceMotion=k)},null,8,["modelValue"])]),_:1}),A(ke,{title:"Language",desc:"Interface language.",keywords:"language locale"},{default:xe(()=>[Q(a("select",{"onUpdate:modelValue":c[12]||(c[12]=k=>Oe(be).language=k),class:"field w-48"},[(p(),m(oe,null,Fe(ze,([k,He])=>a("option",{key:k,value:k},w(He),9,jm)),64))],512),[[zt,Oe(be).language]])]),_:1}),A(ke,{title:"Region",desc:"Affects number, unit and date defaults.",keywords:"region country locale"},{default:xe(()=>[Q(a("select",{"onUpdate:modelValue":c[13]||(c[13]=k=>Oe(be).region=k),class:"field w-48"},[(p(!0),m(oe,null,Fe(Oe(We),([k,He])=>(p(),m("option",{key:k,value:k},w(He),9,Wm))),128))],512),[[zt,Oe(be).region]])]),_:1}),A(ke,{title:"Date format",desc:"How calendar dates are displayed.",keywords:"date format"},{default:xe(()=>[Q(a("select",{"onUpdate:modelValue":c[14]||(c[14]=k=>Oe(be).dateFormat=k),class:"field w-48"},[(p(),m(oe,null,Fe(le,([k,He])=>a("option",{key:k,value:k},w(He),9,Km)),64))],512),[[zt,Oe(be).dateFormat]])]),_:1}),A(ke,{title:"Time format",desc:"12- or 24-hour clock.",keywords:"time format clock 12 24 hour"},{default:xe(()=>[A(kn,{modelValue:Oe(be).timeFormat,"onUpdate:modelValue":c[15]||(c[15]=k=>Oe(be).timeFormat=k),options:Ne},null,8,["modelValue"])]),_:1}),A(ke,{title:"Preview",desc:"How timestamps appear across the app.",keywords:"preview date time"},{default:xe(()=>[a("span",Gm,w(Ke.value),1)]),_:1}),c[75]||(c[75]=a("p",{class:"mt-3 text-xs text-ink-muted"}," Language & region are stored now; full localisation ships with the account service. ",-1))])):H.id==="integrations"?(p(),m("div",qm,[V.value?$("",!0):(p(),m("div",Ym,[(p(),m(oe,null,Fe(_a,k=>a("button",{key:k.id,type:"button",class:Ae(["-mb-px inline-flex items-center gap-1.5 whitespace-nowrap border-b-2 px-3 py-2 text-sm font-semibold transition",jo.value===k.id?"border-accent text-ink":"border-transparent text-ink-secondary hover:text-ink"]),onClick:He=>jo.value=k.id},[A(G,{name:k.icon,size:16},null,8,["name"]),z(w(k.label),1)],10,Jm)),64))])),Zi("apis-external")?(p(),m(oe,{key:1},[a("div",Xm,[a("div",Qm,[a("div",eg,[A(G,{name:"radio",size:20})]),c[76]||(c[76]=a("div",{class:"min-w-0"},[a("div",{class:"text-sm font-semibold text-ink"},"OpenSky Network"),a("div",{class:"mt-0.5 text-xs text-ink-muted"}," Live ADS-B aircraft data. Configure your own OAuth2 credentials, plan and default bounding box. ")],-1))]),re.loaded&&!re.available?(p(),m("div",tg,[A(G,{name:"lock",size:14,class:"mr-1 inline"}),c[77]||(c[77]=z(" OpenSky is currently disabled by your administrator. Contact them to enable it. ",-1))])):$("",!0),re.canEditOrg?(p(),m("div",ng,[c[78]||(c[78]=a("div",{class:"text-xs text-ink-muted"},"Manage your own settings, or organization-wide settings that apply to every user.",-1)),A(kn,{modelValue:qe.value,"onUpdate:modelValue":c[16]||(c[16]=k=>qe.value=k),options:dt},null,8,["modelValue"])])):$("",!0),ge.value?(p(),at(ke,{key:2,title:"Enable OpenSky (organization-wide)",desc:"Turn OpenSky on or off for everyone in your organization.",keywords:"enable disable plugin opensky organization"},{default:xe(()=>[A(en,{"model-value":re.orgEnabled,disabled:!re.available,"onUpdate:modelValue":ft},null,8,["model-value","disabled"])]),_:1})):(p(),at(ke,{key:3,title:"Enable OpenSky",desc:"Turn the plugin on for your account in the Web App.",keywords:"enable disable plugin opensky"},{default:xe(()=>[A(en,{"model-value":re.enabled,disabled:!re.available||!re.orgEnabled,"onUpdate:modelValue":ft},null,8,["model-value","disabled"])]),_:1})),!ge.value&&re.available&&!re.orgEnabled?(p(),m("div",ig,[A(G,{name:"lock",size:13,class:"mr-1 inline"}),c[80]||(c[80]=z("OpenSky is turned off for your organization",-1)),re.canEditOrg?(p(),m("span",og,[...c[79]||(c[79]=[z(" — switch to ",-1),a("span",{class:"font-semibold"},"Organization",-1),z(" to turn it back on",-1)])])):$("",!0),c[81]||(c[81]=z(". ",-1))])):$("",!0),ge.value?(p(),m("div",sg,[A(G,{name:"users",size:13,class:"mr-1 inline"}),c[82]||(c[82]=z("These are organization-wide settings — they apply to everyone in ",-1)),a("span",ag,w(t.organizationName||"your organization"),1),c[83]||(c[83]=z(". Leave a field blank to let each user choose their own; a value set here overrides the user's. ",-1))])):ne.value?(p(),m("div",rg," As a superadmin you manage the global OpenSky configuration in the API Server panel. The effective configuration is shown below. ")):$("",!0),re.available&&!ge.value?(p(),m("div",lg,[a("div",ug,[a("div",cg,[A(G,{name:"signal",size:15}),c[84]||(c[84]=z("Credit usage ",-1))]),Ue.value?(p(),m("span",dg,"Checked "+w(J()),1)):$("",!0)]),Ve.value?(p(),m(oe,{key:0},[Ve.value.remaining!=null?(p(),m(oe,{key:0},[a("div",fg,[a("span",hg,w(Ce(Ve.value.remaining)),1),a("span",pg,"/ "+w(Ce(Ve.value.daily))+" credits left today",1)]),a("div",mg,[a("div",{class:Ae(["h-full rounded-full transition-all",ot.value]),style:Mo({width:mt.value+"%"})},null,6)]),a("div",gg," Used "+w(Ce(Ve.value.daily-Ve.value.remaining))+" today · "+w(Ve.value.probeCost)+" credit"+w(Ve.value.probeCost===1?"":"s")+" per query · "+w(Ve.value.mode),1)],64)):(p(),m(oe,{key:1},[a("div",vg,[c[85]||(c[85]=z("Daily allowance: ",-1)),a("span",_g,w(Ce(Ve.value.daily)),1),c[86]||(c[86]=z(" credits",-1))]),a("div",bg,w(Ve.value.probeCost)+" credit"+w(Ve.value.probeCost===1?"":"s")+" per query · "+w(Ve.value.mode)+". OpenSky only reports live remaining credits for authenticated requests — add OAuth2 credentials below to track usage. ",1)],64))],64)):(p(),m("div",yg,[...c[87]||(c[87]=[z(" Run ",-1),a("span",{class:"font-semibold text-ink-secondary"},"Test connection",-1),z(" below to fetch your live OpenSky credit balance. ",-1)])]))])):$("",!0),A(ke,{title:"OpenSky plan",desc:"Your account tier — sets the daily credit allowance.",keywords:"plan tier credits"},{default:xe(()=>[Se("plan")?(p(),m("span",xg,[z(w((gt.find(k=>k.value===te("plan").effective)||{}).label||te("plan").effective||"—")+" ",1),Te("plan")?(p(),m("span",wg,[A(G,{name:"lock",size:10}),z(w(Te("plan")),1)])):$("",!0)])):(p(),at(kn,{key:1,modelValue:fe.plan,"onUpdate:modelValue":c[17]||(c[17]=k=>fe.plan=k),options:gt},null,8,["modelValue"]))]),_:1}),A(ke,{title:"Default bounding box",desc:"Automatic follows your location; or pick a region, or enter lamin,lomin,lamax,lomax by hand.",keywords:"bounding box bbox area region country continent world europe custom coordinates automatic location drone"},{default:xe(()=>[Se("bbox")?(p(),m("span",kg,[z(w(S(te("bbox").effective)||te("bbox").effective||"—")+" ",1),Te("bbox")?(p(),m("span",Sg,[A(G,{name:"lock",size:10}),z(w(Te("bbox")),1)])):$("",!0)])):(p(),m("div",Tg,[Q(a("select",{"onUpdate:modelValue":c[18]||(c[18]=k=>R.value=k),class:"field w-64"},[ge.value?$("",!0):(p(),m("option",Pg,"Automatic (by location)")),(p(),m(oe,null,Fe(bt,k=>a("optgroup",{key:k.label,label:k.label},[(p(!0),m(oe,null,Fe(k.options,He=>(p(),m("option",{key:He.value,value:He.value},w(He.label),9,Lg))),128))],8,Cg)),64)),c[88]||(c[88]=a("option",{value:"__custom__"},"Custom…",-1))],512),[[zt,R.value]]),se.value?(p(),m("p",Ag," Live map follows drone location → your device location → your Region ("+w(we.value)+"). ",1)):$("",!0),Z.value?Q((p(),m("input",{key:1,"onUpdate:modelValue":c[19]||(c[19]=k=>fe.bbox=k),class:"field w-64 font-mono",placeholder:"50.5,3.2,53.7,7.3"},null,512)),[[ye,fe.bbox]]):$("",!0)]))]),_:1}),A(ke,{title:"OAuth2 client ID",desc:"Optional — leave blank for anonymous access (lower limits).",keywords:"oauth client id credentials"},{default:xe(()=>[Se("clientId")?(p(),m("span",Mg,[z(w(te("clientId").effective||"—")+" ",1),Te("clientId")?(p(),m("span",Eg,[A(G,{name:"lock",size:10}),z(w(Te("clientId")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[20]||(c[20]=k=>fe.clientId=k),class:"field w-64",placeholder:"your-api-client"},null,512)),[[ye,fe.clientId]])]),_:1}),A(ke,{title:"OAuth2 client secret",desc:"Paired with the client ID for authenticated access.",keywords:"oauth client secret credentials password"},{default:xe(()=>[Se("clientSecret")?(p(),m("span",Og,[z(w(te("clientSecret").effective||"—")+" ",1),Te("clientSecret")?(p(),m("span",zg,[A(G,{name:"lock",size:10}),z(w(Te("clientSecret")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[21]||(c[21]=k=>fe.clientSecret=k),type:"password",class:"field w-64",placeholder:"••••••••"},null,512)),[[ye,fe.clientSecret]])]),_:1}),re.available&&!re.allowAnonymous?(p(),m("div",Ig," Anonymous access is disabled by the administrator — OpenSky needs OAuth2 credentials from some layer to work. ")):$("",!0),a("div",$g,[ne.value?$("",!0):(p(),m("button",{key:0,class:"btn-accent",disabled:ae.value||!re.available,onClick:Tt},w(ae.value?"Saving…":ge.value?"Save organization settings":"Save settings"),9,Ng)),ge.value?$("",!0):(p(),m("div",Dg,[c[91]||(c[91]=a("label",{class:"text-xs text-ink-muted"},"Test area",-1)),Q(a("select",{"onUpdate:modelValue":c[22]||(c[22]=k=>Pt.value=k),class:"field w-44"},[c[89]||(c[89]=a("option",{value:"__default__"},"Default bounding box",-1)),(p(),m(oe,null,Fe(Bt,k=>a("optgroup",{key:k.label,label:k.label},[(p(!0),m(oe,null,Fe(k.options,He=>(p(),m("option",{key:He.value,value:He.value},w(He.label),9,Rg))),128))],8,Fg)),64)),c[90]||(c[90]=a("option",{value:"__custom__"},"Custom…",-1))],512),[[zt,Pt.value]]),Gt.value?Q((p(),m("input",{key:0,"onUpdate:modelValue":c[23]||(c[23]=k=>Nt.value=k),class:"field w-44 font-mono",placeholder:"lamin,lomin,lamax,lomax"},null,512)),[[ye,Nt.value]]):$("",!0)])),ge.value?$("",!0):(p(),m("button",{key:2,class:"btn-ghost",disabled:Lt.value||!re.available,onClick:zn},w(Lt.value?"Testing…":"Test connection"),9,Bg)),de.value?(p(),m("span",Ug,w(de.value),1)):$("",!0),pe.value&&!ge.value?(p(),m("span",{key:4,class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",zi(pe.value.status)])},[c[92]||(c[92]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(pe.value.detail||pe.value.status),1)],2)):$("",!0)])]),a("div",Vg,[a("div",Zg,[a("div",Hg,[A(G,{name:"sun",size:20})]),c[93]||(c[93]=a("div",{class:"min-w-0"},[a("div",{class:"text-sm font-semibold text-ink"},"OpenWeather"),a("div",{class:"mt-0.5 text-xs text-ink-muted"}," Current conditions and forecast from the OpenWeather API. Configure the API key and default location your account uses. ")],-1))]),et.loaded&&!et.available?(p(),m("div",jg,[A(G,{name:"lock",size:14,class:"mr-1 inline"}),c[94]||(c[94]=z(" OpenWeather is currently disabled by your administrator. Contact them to enable it. ",-1))])):$("",!0),et.canEditOrg?(p(),m("div",Wg,[c[95]||(c[95]=a("div",{class:"text-xs text-ink-muted"},"Manage your own settings, or organization-wide settings that apply to every user.",-1)),A(kn,{modelValue:Dn.value,"onUpdate:modelValue":c[24]||(c[24]=k=>Dn.value=k),options:dt},null,8,["modelValue"])])):$("",!0),Cn.value?(p(),at(ke,{key:2,title:"Enable OpenWeather (organization-wide)",desc:"Turn it on or off for everyone in your organization.",keywords:"enable disable plugin openweather weather organization"},{default:xe(()=>[A(en,{"model-value":et.orgEnabled,disabled:!et.available,"onUpdate:modelValue":Ri},null,8,["model-value","disabled"])]),_:1})):(p(),at(ke,{key:3,title:"Enable OpenWeather",desc:"Turn the plugin on for your account in the Web App.",keywords:"enable disable plugin openweather weather"},{default:xe(()=>[A(en,{"model-value":et.enabled,disabled:!et.available||!et.orgEnabled,"onUpdate:modelValue":Ri},null,8,["model-value","disabled"])]),_:1})),!Cn.value&&et.available&&!et.orgEnabled?(p(),m("div",Kg,[A(G,{name:"lock",size:13,class:"mr-1 inline"}),c[97]||(c[97]=z("OpenWeather is turned off for your organization",-1)),et.canEditOrg?(p(),m("span",Gg,[...c[96]||(c[96]=[z(" — switch to ",-1),a("span",{class:"font-semibold"},"Organization",-1),z(" to turn it back on",-1)])])):$("",!0),c[98]||(c[98]=z(". ",-1))])):$("",!0),Cn.value?(p(),m("div",qg,[A(G,{name:"users",size:13,class:"mr-1 inline"}),c[99]||(c[99]=z("These are organization-wide settings — they apply to everyone in ",-1)),a("span",Yg,w(t.organizationName||"your organization"),1),c[100]||(c[100]=z(". Leave the API key blank to let each user configure their own; a key set here overrides the user's. ",-1))])):Fi.value?(p(),m("div",Jg," As a superadmin you manage the global OpenWeather configuration in the API Server panel. The effective configuration is shown below. ")):$("",!0),A(ke,{title:"API key",desc:"Your OpenWeather API key (the appid parameter). Required — OpenWeather has no anonymous tier.",keywords:"api key appid secret credentials token openweather"},{default:xe(()=>[Vt("apiKey")?(p(),m("span",Xg,[z(w($e("apiKey").effective||"—")+" ",1),Qe("apiKey")?(p(),m("span",Qg,[A(G,{name:"lock",size:10}),z(w(Qe("apiKey")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[25]||(c[25]=k=>Ut.apiKey=k),type:"password",class:"field w-64",placeholder:"••••••••"},null,512)),[[ye,Ut.apiKey]])]),_:1}),A(ke,{title:"Units",desc:"Measurement system for temperatures and wind speed.",keywords:"units metric imperial standard celsius fahrenheit kelvin"},{default:xe(()=>[Vt("units")?(p(),m("span",ev,[z(w((Ro.find(k=>k.value===$e("units").effective)||{}).label||$e("units").effective||"—")+" ",1),Qe("units")?(p(),m("span",tv,[A(G,{name:"lock",size:10}),z(w(Qe("units")),1)])):$("",!0)])):(p(),at(kn,{key:1,modelValue:Ut.units,"onUpdate:modelValue":c[26]||(c[26]=k=>Ut.units=k),options:Ro},null,8,["modelValue"]))]),_:1}),A(ke,{title:"Default latitude",desc:"Latitude used by the health probe and calls with no location (−90…90).",keywords:"latitude location coordinates default"},{default:xe(()=>[Vt("lat")?(p(),m("span",nv,[z(w($e("lat").effective||"—")+" ",1),Qe("lat")?(p(),m("span",iv,[A(G,{name:"lock",size:10}),z(w(Qe("lat")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[27]||(c[27]=k=>Ut.lat=k),inputmode:"decimal",class:"field w-40 font-mono",placeholder:"52.2297"},null,512)),[[ye,Ut.lat]])]),_:1}),A(ke,{title:"Default longitude",desc:"Longitude used by the health probe and calls with no location (−180…180).",keywords:"longitude location coordinates default"},{default:xe(()=>[Vt("lon")?(p(),m("span",ov,[z(w($e("lon").effective||"—")+" ",1),Qe("lon")?(p(),m("span",sv,[A(G,{name:"lock",size:10}),z(w(Qe("lon")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[28]||(c[28]=k=>Ut.lon=k),inputmode:"decimal",class:"field w-40 font-mono",placeholder:"21.0122"},null,512)),[[ye,Ut.lon]])]),_:1}),A(ke,{title:"Language",desc:"Optional ISO code for human-readable weather descriptions, e.g. en, pl, de.",keywords:"language locale description"},{default:xe(()=>[Vt("lang")?(p(),m("span",av,[z(w($e("lang").effective||"—")+" ",1),Qe("lang")?(p(),m("span",rv,[A(G,{name:"lock",size:10}),z(w(Qe("lang")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[29]||(c[29]=k=>Ut.lang=k),class:"field w-24 font-mono",placeholder:"en"},null,512)),[[ye,Ut.lang]])]),_:1}),A(ke,{title:"Calls per minute limit",desc:"Your plan's per-minute limit (free tier is 60). Only used to gauge app usage below. Leave blank to inherit; the app falls back to 60.",keywords:"calls per minute limit rate quota plan usage"},{default:xe(()=>[Vt("callsPerMinute")?(p(),m("span",lv,[z(w($e("callsPerMinute").effective||"60")+" ",1),Qe("callsPerMinute")?(p(),m("span",uv,[A(G,{name:"lock",size:10}),z(w(Qe("callsPerMinute")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[30]||(c[30]=k=>Ut.callsPerMinute=k),inputmode:"numeric",class:"field w-24 font-mono",placeholder:"60"},null,512)),[[ye,Ut.callsPerMinute]])]),_:1}),et.available&&!Cn.value?(p(),m("div",cv,[a("div",dv,[a("div",fv,[A(G,{name:"signal",size:15}),c[101]||(c[101]=z("API call usage ",-1))]),Yn.value?(p(),m("span",hv,"Checked "+w(Uo()),1)):$("",!0)]),Bi.value?(p(),m(oe,{key:0},[a("div",pv,[a("span",mv,w(Bi.value.minuteUsed),1),a("span",gv,"/ "+w(Bi.value.minuteLimit||"—")+" calls this minute",1)]),vs.value!=null?(p(),m("div",vv,[a("div",{class:Ae(["h-full rounded-full transition-all",fa.value]),style:Mo({width:vs.value+"%"})},null,6)])):$("",!0),a("div",_v,w(Bi.value.dayUsed)+" calls today · counts only requests PilotVault makes with this key, since server start. OpenWeather does not report remaining quota — check your account dashboard for the authoritative total. ",1)],64)):(p(),m("div",bv,[...c[102]||(c[102]=[z(" Run ",-1),a("span",{class:"font-semibold text-ink-secondary"},"Test connection",-1),z(" below to record and show call usage. ",-1)])]))])):$("",!0),a("div",yv,[Fi.value?$("",!0):(p(),m("button",{key:0,class:"btn-accent",disabled:Ni.value||!et.available,onClick:Dt},w(Ni.value?"Saving…":Cn.value?"Save organization settings":"Save settings"),9,xv)),Cn.value?$("",!0):(p(),m("button",{key:1,class:"btn-ghost",disabled:Di.value||!et.available,onClick:_i},w(Di.value?"Testing…":"Test connection"),9,wv)),qn.value?(p(),m("span",kv,w(qn.value),1)):$("",!0),Yn.value&&!Cn.value?(p(),m("span",Sv,"Checked "+w(Uo()),1)):$("",!0),Jt.value&&!Cn.value?(p(),m("span",{key:4,class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",da(Jt.value.status)])},[c[103]||(c[103]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Jt.value.detail||Jt.value.status),1)],2)):$("",!0)])])],64)):$("",!0),Zi("drives-external")?(p(),m(oe,{key:2},[a("div",Tv,[a("div",Pv,[a("div",Cv,[A(G,{name:"server",size:20})]),c[104]||(c[104]=a("div",{class:"min-w-0"},[a("div",{class:"text-sm font-semibold text-ink"},"File Transfer (FTP / SFTP)"),a("div",{class:"mt-0.5 text-xs text-ink-muted"}," Connect to an FTP, FTPS or SFTP server. Configure the connection your account uses for file transfers. ")],-1))]),rt.loaded&&!rt.available?(p(),m("div",Lv,[A(G,{name:"lock",size:14,class:"mr-1 inline"}),c[105]||(c[105]=z(" File transfer is currently disabled by your administrator. Contact them to enable it. ",-1))])):$("",!0),rt.canEditOrg?(p(),m("div",Av,[c[106]||(c[106]=a("div",{class:"text-xs text-ink-muted"},"Manage your own settings, or organization-wide settings that apply to every user.",-1)),A(kn,{modelValue:Kn.value,"onUpdate:modelValue":c[31]||(c[31]=k=>Kn.value=k),options:dt},null,8,["modelValue"])])):$("",!0),$n.value?(p(),at(ke,{key:2,title:"Enable file transfer (organization-wide)",desc:"Turn it on or off for everyone in your organization.",keywords:"enable disable plugin ftp sftp organization"},{default:xe(()=>[A(en,{"model-value":rt.orgEnabled,disabled:!rt.available,"onUpdate:modelValue":ra},null,8,["model-value","disabled"])]),_:1})):(p(),at(ke,{key:3,title:"Enable file transfer",desc:"Turn the plugin on for your account in the Web App.",keywords:"enable disable plugin ftp sftp"},{default:xe(()=>[A(en,{"model-value":rt.enabled,disabled:!rt.available||!rt.orgEnabled,"onUpdate:modelValue":ra},null,8,["model-value","disabled"])]),_:1})),!$n.value&&rt.available&&!rt.orgEnabled?(p(),m("div",Mv,[A(G,{name:"lock",size:13,class:"mr-1 inline"}),c[108]||(c[108]=z("File transfer is turned off for your organization",-1)),rt.canEditOrg?(p(),m("span",Ev,[...c[107]||(c[107]=[z(" — switch to ",-1),a("span",{class:"font-semibold"},"Organization",-1),z(" to turn it back on",-1)])])):$("",!0),c[109]||(c[109]=z(". ",-1))])):$("",!0),$n.value?(p(),m("div",Ov,[A(G,{name:"users",size:13,class:"mr-1 inline"}),c[110]||(c[110]=z("These are organization-wide settings — they apply to everyone in ",-1)),a("span",zv,w(t.organizationName||"your organization"),1),c[111]||(c[111]=z(". Leave the connection blank to let each user configure their own; a connection set here overrides the user's. ",-1))])):Pe.value?(p(),m("div",Iv," As a superadmin you manage the global file-transfer configuration in the API Server panel. The effective configuration is shown below. ")):$("",!0),A(ke,{title:"Protocol",desc:"SFTP (over SSH), FTPS (FTP over TLS), or plain FTP.",keywords:"protocol sftp ftps ftp"},{default:xe(()=>[rn("protocol")?(p(),m("span",$v,[z(w(oa(ve("protocol").effective))+" ",1),At("protocol")?(p(),m("span",Nv,[A(G,{name:"lock",size:10}),z(w(At("protocol")),1)])):$("",!0)])):(p(),at(kn,{key:1,modelValue:ct.protocol,"onUpdate:modelValue":c[32]||(c[32]=k=>ct.protocol=k),options:mn},null,8,["modelValue"]))]),_:1}),A(ke,{title:"Host",desc:"Server hostname or IP address.",keywords:"host server address"},{default:xe(()=>[rn("host")?(p(),m("span",Dv,[z(w(ve("host").effective||"—")+" ",1),At("host")?(p(),m("span",Fv,[A(G,{name:"lock",size:10}),z(w(At("host")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[33]||(c[33]=k=>ct.host=k),class:"field w-64",placeholder:"files.example.com"},null,512)),[[ye,ct.host]])]),_:1}),A(ke,{title:"Port",desc:"Leave blank for the protocol default (22 for SFTP, 21 for FTP/FTPS).",keywords:"port"},{default:xe(()=>[rn("port")?(p(),m("span",Rv,[z(w(ve("port").effective||"default")+" ",1),At("port")?(p(),m("span",Bv,[A(G,{name:"lock",size:10}),z(w(At("port")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[34]||(c[34]=k=>ct.port=k),inputmode:"numeric",class:"field w-24 font-mono",placeholder:"22"},null,512)),[[ye,ct.port]])]),_:1}),A(ke,{title:"Username",desc:"Account used to authenticate.",keywords:"username login account"},{default:xe(()=>[rn("username")?(p(),m("span",Uv,[z(w(ve("username").effective||"—")+" ",1),At("username")?(p(),m("span",Vv,[A(G,{name:"lock",size:10}),z(w(At("username")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[35]||(c[35]=k=>ct.username=k),class:"field w-64",placeholder:"user"},null,512)),[[ye,ct.username]])]),_:1}),A(ke,{title:"Password",desc:"Password auth for FTP/FTPS, or SFTP password login. Leave blank to use a key.",keywords:"password secret credentials"},{default:xe(()=>[rn("password")?(p(),m("span",Zv,[z(w(ve("password").effective||"—")+" ",1),At("password")?(p(),m("span",Hv,[A(G,{name:"lock",size:10}),z(w(At("password")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[36]||(c[36]=k=>ct.password=k),type:"password",class:"field w-64",placeholder:"••••••••"},null,512)),[[ye,ct.password]])]),_:1}),an.value==="sftp"?(p(),at(ke,{key:7,block:"",title:"SSH private key",desc:"PEM key for SFTP key auth — used instead of, or alongside, a password.",keywords:"private key ssh pem identity"},{default:xe(()=>[rn("privateKey")?(p(),m("span",jv,[z(w(ve("privateKey").effective||"—")+" ",1),At("privateKey")?(p(),m("span",Wv,[A(G,{name:"lock",size:10}),z(w(At("privateKey")),1)])):$("",!0)])):Q((p(),m("textarea",{key:1,"onUpdate:modelValue":c[37]||(c[37]=k=>ct.privateKey=k),rows:"3",class:"field w-full font-mono text-xs",placeholder:"-----BEGIN OPENSSH PRIVATE KEY-----"},null,512)),[[ye,ct.privateKey]])]),_:1})):$("",!0),an.value==="sftp"?(p(),at(ke,{key:8,title:"Private key passphrase",desc:"Passphrase protecting the SSH private key, if any.",keywords:"passphrase key secret"},{default:xe(()=>[rn("keyPassphrase")?(p(),m("span",Kv,[z(w(ve("keyPassphrase").effective||"—")+" ",1),At("keyPassphrase")?(p(),m("span",Gv,[A(G,{name:"lock",size:10}),z(w(At("keyPassphrase")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[38]||(c[38]=k=>ct.keyPassphrase=k),type:"password",class:"field w-64",placeholder:"••••••••"},null,512)),[[ye,ct.keyPassphrase]])]),_:1})):$("",!0),an.value==="sftp"?(p(),at(ke,{key:9,title:"Host key fingerprint",desc:"Optional SHA256:… fingerprint to pin the server's host key. Blank accepts any key.",keywords:"host key fingerprint verify trust"},{default:xe(()=>[rn("hostKeyFingerprint")?(p(),m("span",qv,[z(w(ve("hostKeyFingerprint").effective||"—")+" ",1),At("hostKeyFingerprint")?(p(),m("span",Yv,[A(G,{name:"lock",size:10}),z(w(At("hostKeyFingerprint")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[39]||(c[39]=k=>ct.hostKeyFingerprint=k),class:"field w-full font-mono text-xs",placeholder:"SHA256:…"},null,512)),[[ye,ct.hostKeyFingerprint]])]),_:1})):$("",!0),an.value==="ftps"?(p(),at(ke,{key:10,title:"TLS verification",desc:"Skip only for self-signed test servers.",keywords:"tls certificate verify insecure ftps"},{default:xe(()=>[rn("insecureSkipVerify")?(p(),m("span",Jv,[z(w(ve("insecureSkipVerify").effective==="true"?"Skip verification":"Verify certificate")+" ",1),At("insecureSkipVerify")?(p(),m("span",Xv,[A(G,{name:"lock",size:10}),z(w(At("insecureSkipVerify")),1)])):$("",!0)])):(p(),at(kn,{key:1,modelValue:ct.insecureSkipVerify,"onUpdate:modelValue":c[40]||(c[40]=k=>ct.insecureSkipVerify=k),options:Ii},null,8,["modelValue"]))]),_:1})):$("",!0),A(ke,{title:"Base path",desc:"Working directory and health-check target, e.g. /uploads.",keywords:"base path directory folder root"},{default:xe(()=>[rn("basePath")?(p(),m("span",Qv,[z(w(ve("basePath").effective||"—")+" ",1),At("basePath")?(p(),m("span",e_,[A(G,{name:"lock",size:10}),z(w(At("basePath")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[41]||(c[41]=k=>ct.basePath=k),class:"field w-64 font-mono",placeholder:"/uploads"},null,512)),[[ye,ct.basePath]])]),_:1}),a("div",t_,[Pe.value?$("",!0):(p(),m("button",{key:0,class:"btn-accent",disabled:O.value||!rt.available,onClick:or},w(O.value?"Saving…":$n.value?"Save organization settings":"Save settings"),9,n_)),$n.value?$("",!0):(p(),m("button",{key:1,class:"btn-ghost",disabled:Ie.value||!rt.available,onClick:sr},w(Ie.value?"Testing…":"Test connection"),9,i_)),j.value?(p(),m("span",o_,w(j.value),1)):$("",!0),Et.value&&!$n.value?(p(),m("span",s_,"Checked "+w(sa()),1)):$("",!0),it.value&&!$n.value?(p(),m("span",{key:4,class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",la(it.value.status)])},[c[112]||(c[112]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(it.value.detail||it.value.status),1)],2)):$("",!0)])]),a("div",a_,[a("div",r_,[a("div",l_,[A(G,{name:"cloud",size:20})]),c[113]||(c[113]=a("div",{class:"min-w-0"},[a("div",{class:"text-sm font-semibold text-ink"},"WebDAV"),a("div",{class:"mt-0.5 text-xs text-ink-muted"}," Connect to a WebDAV server (Nextcloud, ownCloud, IIS, …). Configure the connection your account uses. ")],-1))]),ht.loaded&&!ht.available?(p(),m("div",u_,[A(G,{name:"lock",size:14,class:"mr-1 inline"}),c[114]||(c[114]=z(" WebDAV is currently disabled by your administrator. Contact them to enable it. ",-1))])):$("",!0),ht.canEditOrg?(p(),m("div",c_,[c[115]||(c[115]=a("div",{class:"text-xs text-ink-muted"},"Manage your own settings, or organization-wide settings that apply to every user.",-1)),A(kn,{modelValue:Gn.value,"onUpdate:modelValue":c[42]||(c[42]=k=>Gn.value=k),options:dt},null,8,["modelValue"])])):$("",!0),ut.value?(p(),at(ke,{key:2,title:"Enable WebDAV (organization-wide)",desc:"Turn it on or off for everyone in your organization.",keywords:"enable disable plugin webdav organization"},{default:xe(()=>[A(en,{"model-value":ht.orgEnabled,disabled:!ht.available,"onUpdate:modelValue":ca},null,8,["model-value","disabled"])]),_:1})):(p(),at(ke,{key:3,title:"Enable WebDAV",desc:"Turn the plugin on for your account in the Web App.",keywords:"enable disable plugin webdav"},{default:xe(()=>[A(en,{"model-value":ht.enabled,disabled:!ht.available||!ht.orgEnabled,"onUpdate:modelValue":ca},null,8,["model-value","disabled"])]),_:1})),!ut.value&&ht.available&&!ht.orgEnabled?(p(),m("div",d_,[A(G,{name:"lock",size:13,class:"mr-1 inline"}),c[117]||(c[117]=z("WebDAV is turned off for your organization",-1)),ht.canEditOrg?(p(),m("span",f_,[...c[116]||(c[116]=[z(" — switch to ",-1),a("span",{class:"font-semibold"},"Organization",-1),z(" to turn it back on",-1)])])):$("",!0),c[118]||(c[118]=z(". ",-1))])):$("",!0),ut.value?(p(),m("div",h_,[A(G,{name:"users",size:13,class:"mr-1 inline"}),c[119]||(c[119]=z("These are organization-wide settings — they apply to everyone in ",-1)),a("span",p_,w(t.organizationName||"your organization"),1),c[120]||(c[120]=z(". Leave the connection blank to let each user configure their own; a connection set here overrides the user's. ",-1))])):$o.value?(p(),m("div",m_," As a superadmin you manage the global WebDAV configuration in the API Server panel. The effective configuration is shown below. ")):$("",!0),A(ke,{block:"",title:"Server URL",desc:"WebDAV endpoint including scheme, e.g. https://cloud.example.com/remote.php/dav/files/alice/.",keywords:"url server address endpoint webdav host"},{default:xe(()=>[Pn("baseURL")?(p(),m("span",g_,[z(w(Tn("baseURL").effective||"—")+" ",1),jt("baseURL")?(p(),m("span",v_,[A(G,{name:"lock",size:10}),z(w(jt("baseURL")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[43]||(c[43]=k=>Yt.baseURL=k),class:"field w-full font-mono text-xs",placeholder:"https://cloud.example.com/remote.php/dav/files/alice/"},null,512)),[[ye,Yt.baseURL]])]),_:1}),A(ke,{title:"Username",desc:"Account used to authenticate (leave blank for a public share).",keywords:"username login account"},{default:xe(()=>[Pn("username")?(p(),m("span",__,[z(w(Tn("username").effective||"—")+" ",1),jt("username")?(p(),m("span",b_,[A(G,{name:"lock",size:10}),z(w(jt("username")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[44]||(c[44]=k=>Yt.username=k),class:"field w-64",placeholder:"user"},null,512)),[[ye,Yt.username]])]),_:1}),A(ke,{title:"Password",desc:"Password or app-specific token for HTTP Basic auth.",keywords:"password secret credentials token"},{default:xe(()=>[Pn("password")?(p(),m("span",y_,[z(w(Tn("password").effective||"—")+" ",1),jt("password")?(p(),m("span",x_,[A(G,{name:"lock",size:10}),z(w(jt("password")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[45]||(c[45]=k=>Yt.password=k),type:"password",class:"field w-64",placeholder:"••••••••"},null,512)),[[ye,Yt.password]])]),_:1}),A(ke,{title:"TLS verification",desc:"Only affects HTTPS. Skip only for self-signed test servers.",keywords:"tls certificate verify insecure https"},{default:xe(()=>[Pn("insecureSkipVerify")?(p(),m("span",w_,[z(w(Tn("insecureSkipVerify").effective==="true"?"Skip verification":"Verify certificate")+" ",1),jt("insecureSkipVerify")?(p(),m("span",k_,[A(G,{name:"lock",size:10}),z(w(jt("insecureSkipVerify")),1)])):$("",!0)])):(p(),at(kn,{key:1,modelValue:Yt.insecureSkipVerify,"onUpdate:modelValue":c[46]||(c[46]=k=>Yt.insecureSkipVerify=k),options:ua},null,8,["modelValue"]))]),_:1}),A(ke,{title:"Base path",desc:"Working directory under the server URL and health-check target, e.g. /Documents.",keywords:"base path directory folder root"},{default:xe(()=>[Pn("basePath")?(p(),m("span",S_,[z(w(Tn("basePath").effective||"—")+" ",1),jt("basePath")?(p(),m("span",T_,[A(G,{name:"lock",size:10}),z(w(jt("basePath")),1)])):$("",!0)])):Q((p(),m("input",{key:1,"onUpdate:modelValue":c[47]||(c[47]=k=>Yt.basePath=k),class:"field w-64 font-mono",placeholder:"/Documents"},null,512)),[[ye,Yt.basePath]])]),_:1}),a("div",P_,[$o.value?$("",!0):(p(),m("button",{key:0,class:"btn-accent",disabled:zo.value||!ht.available,onClick:Fo},w(zo.value?"Saving…":ut.value?"Save organization settings":"Save settings"),9,C_)),ut.value?$("",!0):(p(),m("button",{key:1,class:"btn-ghost",disabled:Io.value||!ht.available,onClick:mi},w(Io.value?"Testing…":"Test connection"),9,L_)),no.value?(p(),m("span",A_,w(no.value),1)):$("",!0),Nn.value&&!ut.value?(p(),m("span",M_,"Checked "+w(Mt()),1)):$("",!0),Sn.value&&!ut.value?(p(),m("span",{key:4,class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",Ot(Sn.value.status)])},[c[121]||(c[121]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Sn.value.detail||Sn.value.status),1)],2)):$("",!0)])])],64)):$("",!0),Zi("drives-local")?(p(),m("div",E_,[a("div",O_,[a("div",z_,[A(G,{name:"monitor",size:20})]),c[122]||(c[122]=a("div",{class:"min-w-0"},[a("div",{class:"text-sm font-semibold text-ink"},"Local Storage"),a("div",{class:"mt-0.5 text-xs text-ink-muted"}," A private folder on the server for your files. Each user has their own; members of an organization share one. ")],-1))]),Ee.loaded&&!Ee.available?(p(),m("div",I_,[A(G,{name:"lock",size:14,class:"mr-1 inline"}),c[123]||(c[123]=z(" Local storage is currently disabled by your administrator. Contact them to enable it. ",-1))])):Ee.loaded&&!Ee.rootConfigured?(p(),m("div",$_,[A(G,{name:"alertTriangle",size:14,class:"mr-1 inline"}),c[124]||(c[124]=z(" No storage root has been configured by your administrator yet. ",-1))])):$("",!0),Ee.canEditOrg?(p(),m("div",N_,[c[125]||(c[125]=a("div",{class:"text-xs text-ink-muted"},"Manage your own settings, or organization-wide settings that apply to every user.",-1)),A(kn,{modelValue:Ui.value,"onUpdate:modelValue":c[48]||(c[48]=k=>Ui.value=k),options:dt},null,8,["modelValue"])])):$("",!0),vn.value?(p(),at(ke,{key:3,title:"Enable local storage (organization-wide)",desc:"Turn it on or off for everyone in your organization.",keywords:"enable disable plugin local storage folder organization"},{default:xe(()=>[A(en,{"model-value":Ee.orgEnabled,disabled:!Ee.available,"onUpdate:modelValue":xs},null,8,["model-value","disabled"])]),_:1})):(p(),at(ke,{key:4,title:"Enable local storage",desc:"Turn the plugin on for your account in the Web App.",keywords:"enable disable plugin local storage folder"},{default:xe(()=>[A(en,{"model-value":Ee.enabled,disabled:!Ee.available||!Ee.orgEnabled,"onUpdate:modelValue":xs},null,8,["model-value","disabled"])]),_:1})),!vn.value&&Ee.available&&!Ee.orgEnabled?(p(),m("div",D_,[A(G,{name:"lock",size:13,class:"mr-1 inline"}),c[127]||(c[127]=z("Local storage is turned off for your organization",-1)),Ee.canEditOrg?(p(),m("span",F_,[...c[126]||(c[126]=[z(" — switch to ",-1),a("span",{class:"font-semibold"},"Organization",-1),z(" to turn it back on",-1)])])):$("",!0),c[128]||(c[128]=z(". ",-1))])):$("",!0),vn.value?(p(),m("div",R_,[A(G,{name:"users",size:13,class:"mr-1 inline"}),c[129]||(c[129]=z("These are organization-wide settings — they apply to everyone in ",-1)),a("span",B_,w(t.organizationName||"your organization"),1),c[130]||(c[130]=z(", who all share the organization folder. Members can additionally enable a private folder inside it. ",-1))])):_s.value?(p(),m("div",U_," As a superadmin you manage the global storage root in the API Server panel. The effective configuration is shown below. ")):$("",!0),vn.value?(p(),at(ke,{key:8,title:"Private folders",desc:"Let members create a private folder inside the organization folder, reachable only by them.",keywords:"private folder members allow policy organization"},{default:xe(()=>[A(en,{"model-value":Ee.allowPrivate,disabled:!Ee.available,"onUpdate:modelValue":ur},null,8,["model-value","disabled"])]),_:1})):$("",!0),vn.value?$("",!0):(p(),m(oe,{key:9},[A(ke,{block:"",title:"Your folders",desc:"Assigned automatically and isolated — no one else can reach your private folder.",keywords:"folder directory path storage location isolated private shared"},{default:xe(()=>[a("div",V_,[(p(!0),m(oe,null,Fe(Ee.mounts,k=>(p(),m("div",{key:k.id,class:"flex flex-wrap items-center gap-2"},[a("span",Z_,w(k.path),1),k.kind==="shared"?(p(),m("span",H_,[A(G,{name:"users",size:10}),c[131]||(c[131]=z("Shared with your organization",-1))])):(p(),m("span",j_,[A(G,{name:"lock",size:10}),c[132]||(c[132]=z("Private to you",-1))])),so.value[k.id]?(p(),m("span",{key:2,class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2 py-0.5 text-[10px] font-semibold",va(so.value[k.id].status)])},[c[133]||(c[133]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(so.value[k.id].status),1)],2)):$("",!0)]))),128)),Ee.mounts.length?$("",!0):(p(),m("div",W_,w(Ee.rootConfigured?"No folder assigned yet.":"Waiting for the administrator to configure a storage root."),1))])]),_:1}),Ee.isOrgUser&&Ee.allowPrivate?(p(),at(ke,{key:0,title:"My private folder",desc:"Add a private folder inside the organization folder, reachable only by you — you keep the shared folder too.",keywords:"private folder personal isolated organization inside"},{default:xe(()=>[A(en,{"model-value":Ee.privateFolder,disabled:!Ee.available||!Ee.orgEnabled,"onUpdate:modelValue":ga},null,8,["model-value","disabled"])]),_:1})):Ee.isOrgUser&&!Ee.allowPrivate?(p(),m("div",K_,[A(G,{name:"lock",size:13,class:"mr-1 inline"}),c[134]||(c[134]=z("Private folders are turned off by your organization. ",-1))])):$("",!0)],64)),A(ke,{title:"Access mode",desc:"Read-only prevents uploads, deletes and folder creation.",keywords:"read only write access mode permission"},{default:xe(()=>[ha("readOnly")?(p(),m("span",G_,[z(w(rr(Vi("readOnly").effective))+" ",1),Ln("readOnly")?(p(),m("span",q_,[A(G,{name:"lock",size:10}),z(w(Ln("readOnly")),1)])):$("",!0)])):(p(),at(kn,{key:1,modelValue:oo.value,"onUpdate:modelValue":c[49]||(c[49]=k=>oo.value=k),options:Zo},null,8,["modelValue"]))]),_:1}),a("div",Y_,[_s.value?$("",!0):(p(),m("button",{key:0,class:"btn-accent",disabled:Vo.value||!Ee.available,onClick:cr},w(Vo.value?"Saving…":vn.value?"Save organization settings":"Save settings"),9,J_)),vn.value?$("",!0):(p(),m("button",{key:1,class:"btn-ghost",disabled:Xt.value||!Ee.available,onClick:ws},w(Xt.value?"Testing…":"Test folder"),9,X_)),Xe.value?(p(),m("span",Q_,w(Xe.value),1)):$("",!0),bi.value&&!vn.value?(p(),m("span",e1,"Checked "+w(pa()),1)):$("",!0),ln.value&&!vn.value?(p(),m("span",{key:4,class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",va(ln.value.status)])},[c[135]||(c[135]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(ln.value.detail||ln.value.status),1)],2)):$("",!0)])])):$("",!0)])):H.id==="profile"?(p(),m("div",t1,[A(ke,{block:"",title:"Profile photo",desc:"PNG or JPG, up to ~1.5 MB. Stored on this device.",keywords:"avatar photo picture"},{default:xe(()=>[a("div",n1,[Oe(be).avatar?(p(),m("img",{key:0,src:Oe(be).avatar,alt:"Avatar",class:"h-16 w-16 rounded-full object-cover"},null,8,i1)):(p(),m("div",o1,w(ba.value),1)),a("div",s1,[a("label",a1,[A(G,{name:"upload",size:15,class:"mr-1.5 inline"}),c[136]||(c[136]=z("Upload ",-1)),a("input",{type:"file",accept:"image/*",class:"hidden",onChange:fr},null,32)]),Oe(be).avatar?(p(),m("button",{key:0,class:"btn-ghost",onClick:hr},"Remove")):$("",!0)])])]),_:1}),A(ke,{title:"Display name",desc:"The name shown on your public profile.",keywords:"display name profile"},{default:xe(()=>[Q(a("input",{"onUpdate:modelValue":c[50]||(c[50]=k=>Oe(be).displayName=k),class:"field w-56",placeholder:"Jane O.",onBlur:c[51]||(c[51]=k=>Je("Saved."))},null,544),[[ye,Oe(be).displayName]])]),_:1}),A(ke,{block:"",title:"Bio",desc:"A short description others can see.",keywords:"bio about description"},{default:xe(()=>[Q(a("textarea",{"onUpdate:modelValue":c[52]||(c[52]=k=>Oe(be).bio=k),rows:"3",maxlength:"240",class:"field w-full resize-none",placeholder:"Flight director, North yard operations…",onBlur:c[53]||(c[53]=k=>Je("Saved."))},null,544),[[ye,Oe(be).bio]]),a("div",r1,w((Oe(be).bio||"").length)+"/240",1)]),_:1}),A(ke,{title:"Show email on profile",desc:"Let teammates see your email address.",keywords:"show email public visibility"},{default:xe(()=>[A(en,{modelValue:Oe(be).showEmail,"onUpdate:modelValue":c[54]||(c[54]=k=>Oe(be).showEmail=k)},null,8,["modelValue"])]),_:1})])):H.id==="security"?(p(),m("div",l1,[A(ke,{block:"",title:"Two-factor authentication",desc:"Require a one-time code at sign-in.",keywords:"two factor 2fa authentication security"},{default:xe(()=>[a("div",u1,[a("span",{class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",Oe(be).twoFactor?"bg-success-soft text-success-fg":"bg-surface-2 text-ink-secondary"])},[c[137]||(c[137]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Oe(be).twoFactor?"Enabled":"Disabled"),1)],2),!Oe(be).twoFactor&&!ro.value?(p(),m("button",{key:0,class:"btn-accent",onClick:Hi},"Enable 2FA")):Oe(be).twoFactor?(p(),m("button",{key:1,class:"btn-ghost",onClick:uo},"Disable")):$("",!0)]),ro.value?(p(),m("div",c1,[a("div",d1,[c[139]||(c[139]=a("div",{class:"grid h-28 w-28 place-items-center rounded bg-white p-2"},[a("svg",{viewBox:"0 0 100 100",class:"h-full w-full"},[a("rect",{width:"100",height:"100",fill:"#fff"}),a("g",{fill:"#0F1E3D"},[a("rect",{x:"6",y:"6",width:"24",height:"24"}),a("rect",{x:"70",y:"6",width:"24",height:"24"}),a("rect",{x:"6",y:"70",width:"24",height:"24"}),a("rect",{x:"12",y:"12",width:"12",height:"12",fill:"#fff"}),a("rect",{x:"76",y:"12",width:"12",height:"12",fill:"#fff"}),a("rect",{x:"12",y:"76",width:"12",height:"12",fill:"#fff"}),a("rect",{x:"40",y:"10",width:"8",height:"8"}),a("rect",{x:"52",y:"20",width:"8",height:"8"}),a("rect",{x:"40",y:"40",width:"8",height:"8"}),a("rect",{x:"60",y:"44",width:"8",height:"8"}),a("rect",{x:"44",y:"60",width:"8",height:"8"}),a("rect",{x:"70",y:"60",width:"8",height:"8"}),a("rect",{x:"80",y:"72",width:"8",height:"8"}),a("rect",{x:"60",y:"80",width:"8",height:"8"})])])],-1)),a("div",f1,[c[138]||(c[138]=a("div",{class:"text-xs text-ink-secondary"},"Scan with an authenticator app, or enter this secret:",-1)),a("div",h1,w(bn.value),1),a("div",p1,[Q(a("input",{"onUpdate:modelValue":c[55]||(c[55]=k=>Jn.value=k),inputmode:"numeric",maxlength:"6",class:"field w-28 font-mono tracking-[0.3em]",placeholder:"000000"},null,512),[[ye,Jn.value]]),a("button",{class:"btn-accent",onClick:pr},"Verify & enable")]),lo.value?(p(),m("p",m1,w(lo.value),1)):$("",!0)])])])):$("",!0),Oe(be).twoFactor&&yn.value.length?(p(),m("div",g1,[c[140]||(c[140]=a("div",{class:"text-xs font-semibold text-ink"},"Recovery codes",-1)),c[141]||(c[141]=a("div",{class:"mt-0.5 text-xs text-ink-muted"},"Store these somewhere safe — each works once.",-1)),a("div",v1,[(p(!0),m(oe,null,Fe(yn.value,k=>(p(),m("span",{key:k,class:"select-all"},w(k),1))),128))])])):$("",!0),c[142]||(c[142]=a("p",{class:"mt-2 text-xs text-ink-muted"},"Prototype — codes are generated locally until the account service verifies them.",-1))]),_:1}),A(ke,{block:"",title:"Active sessions",desc:"Devices currently signed in to your account.",keywords:"sessions devices logout sign out remote"},{default:xe(()=>[a("div",_1,[a("div",b1,[a("div",y1,[A(G,{name:"monitor",size:18})]),a("div",x1,[a("div",w1,[z(w(Wo())+" on "+w(mr())+" ",1),c[143]||(c[143]=a("span",{class:"ml-1 rounded-full bg-success-soft px-2 py-0.5 text-[10px] font-semibold text-success-fg"},"This device",-1))]),a("div",k1,"Signed in "+w(Oe(ku)(Oe(ii))),1)]),a("button",{class:"btn-ghost",onClick:c[56]||(c[56]=k=>l("logout"))},"Log out")])]),c[144]||(c[144]=a("button",{class:"btn-ghost mt-2 opacity-60",disabled:"",title:"Requires the account service"}," Log out all other devices ",-1)),c[145]||(c[145]=a("p",{class:"mt-2 text-xs text-ink-muted"}," Only this session is visible from the browser; enumerating and revoking remote sessions needs the account service. ",-1))]),_:1})])):H.id==="team"?(p(),m("div",S1,[tt.id?(p(),m("div",T1,[A(ke,{block:"",title:`Edit user — ${tt.email}`,desc:"Update details, change role, reset password, or set verified.",keywords:"edit user update role password verified organization"},{default:xe(()=>[a("div",P1,[a("div",C1,[Q(a("input",{"onUpdate:modelValue":c[57]||(c[57]=k=>tt.email=k),type:"email",class:"field flex-1",placeholder:"name@pilotvault.local"},null,512),[[ye,tt.email]]),Q(a("select",{"onUpdate:modelValue":c[58]||(c[58]=k=>tt.role=k),class:"field w-32",disabled:qo.value,title:qo.value?"You cannot change your own role":""},[(p(!0),m(oe,null,Fe(ya.value,k=>(p(),m("option",{key:k.value,value:k.value},w(k.label),9,A1))),128))],8,L1),[[zt,tt.role]])]),u.value?Q((p(),m("select",{key:0,"onUpdate:modelValue":c[59]||(c[59]=k=>tt.organization=k),class:"field",title:"Organization"},[(p(!0),m(oe,null,Fe(Cs.value,k=>(p(),m("option",{key:k.value,value:k.value},w(k.label),9,M1))),128))],512)),[[zt,tt.organization]]):$("",!0),Q(a("input",{"onUpdate:modelValue":c[60]||(c[60]=k=>tt.password=k),type:"password",class:"field",placeholder:"New password (leave blank to keep current)"},null,512),[[ye,tt.password]]),a("label",E1,[A(en,{modelValue:tt.verified,"onUpdate:modelValue":c[61]||(c[61]=k=>tt.verified=k)},null,8,["modelValue"]),c[146]||(c[146]=z(" Email verified ",-1))]),a("div",O1,[a("button",{class:"btn-accent",disabled:Wi.value,onClick:vr},w(Wi.value?"Saving…":"Save changes"),9,z1),a("button",{class:"btn-ghost",onClick:fo},"Cancel"),Mn.value?(p(),m("span",I1,w(Mn.value),1)):$("",!0),qo.value?(p(),m("span",$1,"Editing your own account — role locked.")):$("",!0)])])]),_:1},8,["title"])])):(p(),m("div",N1,[A(ke,{block:"",title:"Add user",desc:"Create a new account. Admins add users within their organization; superadmins can target any.",keywords:"add user create account role admin organization"},{default:xe(()=>[a("div",D1,[a("div",F1,[Q(a("input",{"onUpdate:modelValue":c[62]||(c[62]=k=>Ft.email=k),type:"email",class:"field flex-1",placeholder:"name@pilotvault.local"},null,512),[[ye,Ft.email]]),Q(a("select",{"onUpdate:modelValue":c[63]||(c[63]=k=>Ft.role=k),class:"field w-32"},[(p(!0),m(oe,null,Fe(ya.value,k=>(p(),m("option",{key:k.value,value:k.value},w(k.label),9,R1))),128))],512),[[zt,Ft.role]])]),u.value?Q((p(),m("select",{key:0,"onUpdate:modelValue":c[64]||(c[64]=k=>Ft.organization=k),class:"field",title:"Organization"},[(p(!0),m(oe,null,Fe(Cs.value,k=>(p(),m("option",{key:k.value,value:k.value},w(k.label),9,B1))),128))],512)),[[zt,Ft.organization]]):(p(),m("div",U1,[c[147]||(c[147]=z(" New users join your organization: ",-1)),a("span",V1,w(t.organizationName||"—"),1)])),Q(a("input",{"onUpdate:modelValue":c[65]||(c[65]=k=>Ft.password=k),type:"password",class:"field",placeholder:"Temporary password (min 8 chars)"},null,512),[[ye,Ft.password]]),a("div",Z1,[a("button",{class:"btn-accent",disabled:Ko.value,onClick:Ls},w(Ko.value?"Creating…":"Create user"),9,H1),Qt.value?(p(),m("span",j1,w(Qt.value),1)):$("",!0)])])]),_:1})])),a("div",W1,[a("div",K1,[c[148]||(c[148]=a("div",null,[a("div",{class:"eyebrow"},"Team"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"All users")],-1)),a("button",{class:"btn-ghost",disabled:co.value,onClick:si},w(co.value?"Loading…":"Refresh"),9,G1)]),ji.value?(p(),m("div",q1,w(ji.value),1)):!xi.value.length&&!co.value?(p(),m("div",Y1,"No users yet.")):(p(),m("div",J1,[a("table",X1,[a("thead",null,[a("tr",Q1,[(p(),m(oe,null,Fe(["User","Role","Organization","Status",""],k=>a("th",{key:k,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w(k),1)),64))])]),a("tbody",null,[(p(!0),m(oe,null,Fe(xi.value,k=>(p(),m("tr",{key:k.id,class:Ae(["border-b border-line last:border-0",tt.id===k.id?"bg-accent-soft":""])},[a("td",eb,[a("span",tb,w(k.email),1),k.email===t.email?(p(),m("span",nb,"(you)")):$("",!0)]),a("td",ib,[a("span",{class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",y(k.role||"user")])},[A(G,{name:_(k.role||"user"),size:12},null,8,["name"]),z(w(h(k.role||"user")),1)],2)]),a("td",ob,[a("span",{class:Ae(["text-sm",k.organizationName?"text-ink-secondary":"text-ink-muted"])},w(k.organizationName||"—"),3)]),a("td",sb,[a("span",{class:Ae(["text-xs",k.verified?"text-success-fg":"text-ink-muted"])},w(k.verified?"Verified":"Unverified"),3)]),a("td",ab,[Rn.value===k.id?(p(),m(oe,{key:0},[c[149]||(c[149]=a("span",{class:"mr-2 text-xs text-ink-muted"},"Remove?",-1)),a("button",{class:"btn-ghost mr-1",onClick:c[66]||(c[66]=He=>Rn.value="")},"Cancel"),a("button",{class:"rounded bg-danger px-3 py-1.5 text-sm font-semibold text-white transition hover:brightness-110",onClick:He=>Go(k)}," Remove ",8,rb)],64)):(p(),m("div",lb,[a("button",{class:"btn-ghost inline-flex items-center gap-1.5",onClick:He=>gr(k)},[A(G,{name:"settings",size:14}),c[150]||(c[150]=z(" Edit ",-1))],8,ub),k.email!==t.email?(p(),m("button",{key:0,class:"btn-ghost inline-flex items-center gap-1.5",onClick:He=>Rn.value=k.id},[A(G,{name:"trash",size:14}),c[151]||(c[151]=z(" Remove ",-1))],8,cb)):$("",!0)]))])],2))),128))])])]))])])):H.id==="organizations"?(p(),m("div",db,[It.id?(p(),m("div",fb,[A(ke,{block:"",title:"Rename organization",desc:"Update the organization's display name.",keywords:"rename organization edit"},{default:xe(()=>[a("div",hb,[Q(a("input",{"onUpdate:modelValue":c[67]||(c[67]=k=>It.name=k),class:"field",placeholder:"Organization name",onKeyup:hu(xa,["enter"])},null,544),[[ye,It.name]]),a("div",pb,[a("button",{class:"btn-accent",onClick:xa},"Save changes"),a("button",{class:"btn-ghost",onClick:Ms},"Cancel"),Bn.value?(p(),m("span",mb,w(Bn.value),1)):$("",!0)])])]),_:1})])):(p(),m("div",gb,[A(ke,{block:"",title:"Add organization",desc:"Create a new organization. Assign admins and users to it from User management.",keywords:"add organization create tenant company"},{default:xe(()=>[a("div",vb,[Q(a("input",{"onUpdate:modelValue":c[68]||(c[68]=k=>ho.name=k),class:"field",placeholder:"e.g. Northwind Aerial",onKeyup:hu(vo,["enter"])},null,544),[[ye,ho.name]]),a("div",_b,[a("button",{class:"btn-accent",disabled:mo.value,onClick:vo},w(mo.value?"Creating…":"Create organization"),9,bb),po.value?(p(),m("span",yb,w(po.value),1)):$("",!0)])])]),_:1})])),a("div",xb,[a("div",{class:"flex items-center justify-between px-5 py-4"},[c[152]||(c[152]=a("div",null,[a("div",{class:"eyebrow"},"Tenancy"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"All organizations")],-1)),a("button",{class:"btn-ghost",onClick:oi},"Refresh")]),xn.value.length?(p(),m("div",kb,[a("table",Sb,[a("thead",null,[a("tr",Tb,[(p(),m(oe,null,Fe(["Organization","Members",""],k=>a("th",{key:k,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w(k),1)),64))])]),a("tbody",null,[(p(!0),m(oe,null,Fe(xn.value,k=>(p(),m("tr",{key:k.id,class:Ae(["border-b border-line last:border-0",It.id===k.id?"bg-accent-soft":""])},[a("td",Pb,[a("span",Cb,[A(G,{name:"grid",size:14,class:"text-ink-muted"}),z(w(k.name),1)])]),a("td",Lb,w(As.value[k.id]||0),1),a("td",Ab,[go.value===k.id?(p(),m(oe,{key:0},[c[153]||(c[153]=a("span",{class:"mr-2 text-xs text-ink-muted"},"Delete?",-1)),a("button",{class:"btn-ghost mr-1",onClick:c[69]||(c[69]=He=>go.value="")},"Cancel"),a("button",{class:"rounded bg-danger px-3 py-1.5 text-sm font-semibold text-white transition hover:brightness-110",onClick:He=>_o(k)}," Delete ",8,Mb)],64)):(p(),m("div",Eb,[a("button",{class:"btn-ghost inline-flex items-center gap-1.5",onClick:He=>_r(k)},[A(G,{name:"settings",size:14}),c[154]||(c[154]=z(" Rename ",-1))],8,Ob),a("button",{class:"btn-ghost inline-flex items-center gap-1.5",disabled:(As.value[k.id]||0)>0,title:(As.value[k.id]||0)>0?"Reassign or remove members first":"",onClick:He=>go.value=k.id},[A(G,{name:"trash",size:14}),c[155]||(c[155]=z(" Delete ",-1))],8,zb)]))])],2))),128))])])])):(p(),m("div",wb,"No organizations yet."))])])):H.id==="advanced"?(p(),m("div",Ib,[a("div",$b,[A(ke,{title:"Export data",desc:"Download your settings and profile as JSON.",keywords:"export data download backup"},{default:xe(()=>[a("button",{class:"btn-ghost",onClick:br},[A(G,{name:"download",size:15,class:"mr-1.5 inline"}),c[156]||(c[156]=z("Export",-1))])]),_:1}),A(ke,{block:"",title:"Import data",desc:"Restore settings from a previous export.",keywords:"import data upload restore"},{default:xe(()=>[a("label",Nb,[A(G,{name:"upload",size:15,class:"mr-1.5 inline"}),c[157]||(c[157]=z("Choose file… ",-1)),a("input",{type:"file",accept:"application/json,.json",class:"hidden",onChange:wa},null,32)]),Xn.value?(p(),m("p",Db,w(Xn.value),1)):$("",!0)]),_:1})]),a("div",Fb,[a("div",Rb,[A(G,{name:"alertTriangle",size:18}),c[158]||(c[158]=a("h3",{class:"text-sm font-bold uppercase tracking-caps"},"Danger zone",-1))]),c[163]||(c[163]=a("p",{class:"mt-1 text-xs text-ink-secondary"},"Deleting your account is permanent and cannot be undone.",-1)),a("div",Bb,[c[162]||(c[162]=a("div",{class:"text-sm font-semibold text-ink"},"Delete account",-1)),a("label",Ub,[Q(a("input",{"onUpdate:modelValue":c[70]||(c[70]=k=>yt.understand=k),type:"checkbox",class:"mt-0.5 h-4 w-4 accent-[var(--danger)]"},null,512),[[Va,yt.understand]]),c[159]||(c[159]=z(" I understand this permanently deletes my account and all associated data. ",-1))]),a("div",Vb,[a("label",Zb,[c[160]||(c[160]=z("Type ",-1)),a("span",Hb,w(En.value),1),c[161]||(c[161]=z(" to confirm",-1))]),Q(a("input",{"onUpdate:modelValue":c[71]||(c[71]=k=>yt.typed=k),class:"field w-full max-w-[360px] font-mono",placeholder:En.value},null,8,jb),[[ye,yt.typed]])]),a("div",Wb,[yt.armed?(p(),m("button",{key:1,class:"rounded bg-danger px-4 py-2.5 text-sm font-semibold text-white transition enabled:hover:brightness-110 disabled:cursor-not-allowed disabled:opacity-50",disabled:yt.cooldown>0,onClick:yo},w(yt.cooldown>0?`Confirm in ${yt.cooldown}s…`:"Permanently delete account"),9,Gb)):(p(),m("button",{key:0,class:"rounded bg-danger px-4 py-2.5 text-sm font-semibold text-white transition enabled:hover:brightness-110 disabled:cursor-not-allowed disabled:opacity-40",disabled:!Yo.value,onClick:ka}," Delete account… ",8,Kb)),yt.armed&&yt.cooldown>0?(p(),m("span",qb,"Cooling-off period — read once more.")):$("",!0)]),yt.msg?(p(),m("p",Yb,w(yt.msg),1)):$("",!0)])])])):$("",!0)],64))),128))])]),A(vh,{name:"fade"},{default:xe(()=>[Fn.value?(p(),m("div",Jb,[A(G,{name:"check",size:16,class:"text-success-fg"}),z(w(Fn.value),1)])):$("",!0)]),_:1})]))}},Qb=Tm(Xb,[["__scopeId","data-v-7522b856"]]),ey={class:"mx-auto flex max-w-[1240px] flex-col gap-5 p-7"},ty={class:"flex flex-wrap items-center gap-3"},ny={class:"inline-flex rounded-lg border border-line bg-surface-1 p-0.5"},iy=["onClick"],oy={class:"ml-auto flex items-center gap-2"},sy=["href"],ay={class:"grid grid-cols-4 gap-4 max-[900px]:grid-cols-2"},ry={class:"eyebrow"},ly={key:0,class:"panel border-danger/40 p-4 text-sm text-danger-fg"},uy={key:0,class:"panel p-5"},cy={class:"mb-4 flex items-center justify-between"},dy={class:"eyebrow"},fy={class:"grid grid-cols-3 gap-3 max-[760px]:grid-cols-1"},hy={class:"block"},py={class:"block"},my={class:"block"},gy={class:"block"},vy={key:0,value:""},_y=["value"],by={class:"block"},yy={class:"block"},xy={class:"block"},wy={class:"block"},ky={class:"block"},Sy=["value"],Ty={class:"block"},Py=["value"],Cy={class:"block"},Ly=["value"],Ay={class:"block"},My={class:"mt-3 block"},Ey={key:0,class:"mt-3 grid grid-cols-2 gap-3 max-[760px]:grid-cols-1"},Oy={class:"block"},zy={class:"block"},Iy={class:"block"},$y={class:"block"},Ny={class:"col-span-2 block max-[760px]:col-span-1"},Dy={class:"mt-4 flex items-center gap-3"},Fy=["disabled"],Ry={key:0,class:"text-sm text-danger-fg"},By={class:"panel overflow-hidden p-0"},Uy={key:0,class:"px-5 py-12 text-center text-sm text-ink-muted"},Vy={key:1,class:"grid place-items-center px-5 py-16 text-center"},Zy={key:2,class:"overflow-x-auto"},Hy={class:"w-full border-collapse text-sm"},jy={class:"text-left"},Wy={class:"whitespace-nowrap px-5 py-3 font-mono text-ink"},Ky={key:0,class:"text-ink-muted"},Gy={class:"px-5 py-3 text-ink-secondary"},qy=["title"],Yy={class:"px-5 py-3 font-mono text-ink-secondary"},Jy={class:"px-5 py-3 text-ink-secondary"},Xy={class:"px-5 py-3"},Qy=["onClick"],ex={class:"whitespace-nowrap px-5 py-3 text-right"},tx=["onClick"],nx=["onClick"],ix=["onClick"],ox={key:0,class:"border-b border-line bg-surface-2"},sx={colspan:"7",class:"px-5 py-3"},ax={class:"flex flex-wrap gap-x-8 gap-y-1.5 text-xs"},rx={class:"text-ink-secondary"},lx={class:"text-ink"},ux={class:"text-ink-secondary"},cx={class:"text-ink"},dx={class:"text-ink-secondary"},fx={class:"font-mono text-ink"},hx={key:0,class:"text-ink-secondary"},px={class:"text-ink"},mx={key:0,class:"mt-2 space-y-1"},gx={key:1,class:"mt-2 text-xs text-success-fg"},vx={key:0,class:"panel p-5"},_x={class:"mb-4 flex items-center justify-between"},bx={class:"eyebrow"},yx={class:"grid grid-cols-3 gap-3 max-[760px]:grid-cols-1"},xx={class:"block"},wx={class:"block"},kx={class:"block"},Sx={class:"block"},Tx={class:"block"},Px={class:"block"},Cx=["value"],Lx={class:"mt-3 flex flex-wrap gap-6"},Ax={class:"flex items-center gap-2 text-sm text-ink-secondary"},Mx={class:"flex items-center gap-2 text-sm text-ink-secondary"},Ex={class:"mt-4 flex items-center gap-3"},Ox=["disabled"],zx={key:0,class:"text-sm text-danger-fg"},Ix={class:"panel overflow-hidden p-0"},$x={key:0,class:"px-5 py-12 text-center text-sm text-ink-muted"},Nx={key:1,class:"grid place-items-center px-5 py-16 text-center"},Dx={key:2,class:"overflow-x-auto"},Fx={class:"w-full border-collapse text-sm"},Rx={class:"text-left"},Bx={class:"px-5 py-3 font-semibold text-ink"},Ux={class:"px-5 py-3 text-ink-secondary"},Vx={class:"px-5 py-3 font-mono text-ink-secondary"},Zx={class:"px-5 py-3"},Hx={key:1,class:"text-ink-muted"},jx={class:"px-5 py-3"},Wx={class:"whitespace-nowrap px-5 py-3 text-right"},Kx=["onClick"],Gx=["onClick"],qx=["onClick"],Yx={__name:"Logbook",props:{email:{type:String,default:""},role:{type:String,default:"user"},organization:{type:String,default:""},organizationName:{type:String,default:""}},setup(t){const i=t,s={success:"bg-success-soft text-success-fg",warning:"bg-amber-soft text-amber-fg",danger:"bg-danger-soft text-danger-fg",accent:"bg-accent-soft text-accent-soft-fg",neutral:"bg-surface-2 text-ink-secondary"},l=W("flights"),u=W([]),f=W([]),h=W(!1),_=W("");async function y(){h.value=!0,_.value="";const[J,E]=await Promise.all([Jc(),Lp()]);(!J.ok||!E.ok)&&(_.value=J.status===503||E.status===503?"Logbook storage is not configured on the API Server (service account missing).":"Could not load the logbook."),u.value=J.drones,f.value=E.flights,h.value=!1}Ei(y);function C(J){const E=J.compliance||{};return E.exempt?{tone:"neutral",label:"Exempt"}:(E.redFlags||[]).length?{tone:"danger",label:`${E.redFlags.length} issue${E.redFlags.length>1?"s":""}`}:{tone:"success",label:"Compliant"}}const T=W("");function M(J){T.value=T.value===J?"":J}const U=[{value:"open",label:"Open"},{value:"specific",label:"Specific"},{value:"certified",label:"Certified"}],V=[{value:"commercial",label:"Commercial"},{value:"research",label:"Research"},{value:"public",label:"Public-benefit"},{value:"hobby",label:"Private hobby"},{value:"club_area",label:"Model-club area"}],K=[{value:"",label:"Auto (from drone)"},{value:"manual",label:"Manual"},{value:"automatic",label:"Automatic (FDR)"}];function F(){var J;return{operationDate:new Date().toISOString().slice(0,10),startTime:"",endTime:"",drone:((J=u.value[0])==null?void 0:J.id)||"",areaRoute:"",maxAltitudeAgl:"",pilotName:i.email,certificateRef:"",category:"open",purpose:"commercial",loggingPath:"",rawFdrLogUrl:"",authorisationRef:"",weather:"",airspaceRef:"",observer:"",incidents:"",notes:""}}const me=W(!1),he=W(""),Y=xt(F()),Le=W(""),ce=W(!1),Be=W(!1);function Ne(){Object.assign(Y,F()),he.value="",Le.value="",Be.value=!1,me.value=!0}function ze(J){Object.assign(Y,{operationDate:(J.operationDate||"").slice(0,10),startTime:J.startTime||"",endTime:J.endTime||"",drone:J.drone||"",areaRoute:J.areaRoute||"",maxAltitudeAgl:J.maxAltitudeAgl||"",pilotName:J.pilotName||"",certificateRef:J.certificateRef||"",category:J.category||"open",purpose:J.purpose||"commercial",loggingPath:J.loggingPath||"",rawFdrLogUrl:J.rawFdrLogUrl||"",authorisationRef:J.authorisationRef||"",weather:J.weather||"",airspaceRef:J.airspaceRef||"",observer:J.observer||"",incidents:J.incidents||"",notes:J.notes||""}),he.value=J.id,Le.value="",Be.value=!!(J.weather||J.airspaceRef||J.observer||J.incidents||J.notes),me.value=!0}function We(){me.value=!1,he.value=""}async function we(){var I;if(Le.value="",!Y.drone){Le.value="Select a drone first (add one on the Drones tab).";return}ce.value=!0;const J={...Y,maxAltitudeAgl:Number(Y.maxAltitudeAgl)||0},E=he.value?await Mp(he.value,J):await Ap(J);if(ce.value=!1,!E.ok){Le.value=((I=E.body)==null?void 0:I.error)||"Could not save the flight.";return}me.value=!1,await y()}const le=W("");async function Me(J){const E=await Ep(J.id);le.value="",E.ok&&await y()}const ie=["","C0","C1","C2","C3","C4","C5","C6"];function Ke(){return{name:"",model:"",serial:"",operatorNumber:"",mtomGrams:"",isToy:!1,autologsFlights:!1,cClass:""}}const re=W(!1),qe=W(""),fe=xt(Ke()),de=W(""),ae=W(!1);function Lt(){Object.assign(fe,Ke()),qe.value="",de.value="",re.value=!0}function pe(J){Object.assign(fe,{name:J.name||"",model:J.model||"",serial:J.serial||"",operatorNumber:J.operatorNumber||"",mtomGrams:J.mtomGrams||"",isToy:!!J.isToy,autologsFlights:!!J.autologsFlights,cClass:J.cClass||""}),qe.value=J.id,de.value="",re.value=!0}function Ue(){re.value=!1,qe.value=""}async function Ve(){var I;if(de.value="",!fe.name.trim()){de.value="Give the drone a name.";return}ae.value=!0;const J={...fe,mtomGrams:Number(fe.mtomGrams)||0},E=qe.value?await Pp(qe.value,J):await Tp(J);if(ae.value=!1,!E.ok){de.value=((I=E.body)==null?void 0:I.error)||"Could not save the drone.";return}re.value=!1,await y()}const mt=W("");async function ot(J){var I;const E=await Cp(J.id);mt.value="",E.ok?await y():de.value=((I=E.body)==null?void 0:I.error)||"Could not delete the drone."}const Ce=ue(()=>{const J=f.value.length,E=f.value.filter(gt=>{var dt;return(((dt=gt.compliance)==null?void 0:dt.redFlags)||[]).length}).length,I=f.value.filter(gt=>{var dt;return(dt=gt.compliance)==null?void 0:dt.required}).length;return{total:J,flagged:E,required:I,fleet:u.value.length}});return(J,E)=>(p(),m("div",ey,[a("div",ty,[a("div",ny,[(p(),m(oe,null,Fe([["flights","Flights"],["drones","Drones"]],I=>a("button",{key:I[0],class:Ae(["rounded-md px-3.5 py-1.5 text-sm font-semibold transition",l.value===I[0]?"bg-accent-soft text-accent-soft-fg":"text-ink-secondary hover:text-ink"]),onClick:gt=>l.value=I[0]},w(I[1]),11,iy)),64))]),a("div",oy,[a("a",{href:Oe(Op)(),class:"btn-ghost inline-flex items-center gap-2",title:"Download a compliance CSV (Trafikstyrelsen / police disclosure)"},[A(G,{name:"download",size:15}),E[29]||(E[29]=z(" Export CSV ",-1))],8,sy),l.value==="flights"?(p(),m("button",{key:0,class:"btn-accent inline-flex items-center gap-2",onClick:Ne},[A(G,{name:"plus",size:15}),E[30]||(E[30]=z(" Log flight ",-1))])):(p(),m("button",{key:1,class:"btn-accent inline-flex items-center gap-2",onClick:Lt},[A(G,{name:"plus",size:15}),E[31]||(E[31]=z(" Add drone ",-1))]))])]),a("div",ay,[(p(!0),m(oe,null,Fe([{label:"Flights logged",value:Ce.value.total,tone:"neutral"},{label:"Require logbook",value:Ce.value.required,tone:"neutral"},{label:"Compliance flags",value:Ce.value.flagged,tone:Ce.value.flagged?"danger":"success"},{label:"Registered drones",value:Ce.value.fleet,tone:"neutral"}],I=>(p(),m("div",{key:I.label,class:"panel p-5"},[a("div",ry,w(I.label),1),a("div",{class:Ae(["mt-2 text-[30px] font-bold leading-none tracking-tightest",I.tone==="danger"?"text-danger-fg":I.tone==="success"?"text-success-fg":"text-ink"])},w(I.value),3)]))),128))]),_.value?(p(),m("div",ly,w(_.value),1)):$("",!0),l.value==="flights"?(p(),m(oe,{key:1},[me.value?(p(),m("div",uy,[a("div",cy,[a("div",null,[a("div",dy,w(he.value?"Edit entry":"New entry"),1),E[32]||(E[32]=a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Logbook flight (BEK 1649 §5)",-1))]),a("button",{class:"btn-icon",onClick:We},[A(G,{name:"x",size:16})])]),a("div",fy,[a("label",hy,[E[33]||(E[33]=a("span",{class:"eyebrow mb-1 block"},"Date",-1)),Q(a("input",{"onUpdate:modelValue":E[0]||(E[0]=I=>Y.operationDate=I),type:"date",class:"field"},null,512),[[ye,Y.operationDate]])]),a("label",py,[E[34]||(E[34]=a("span",{class:"eyebrow mb-1 block"},"Start",-1)),Q(a("input",{"onUpdate:modelValue":E[1]||(E[1]=I=>Y.startTime=I),type:"time",class:"field"},null,512),[[ye,Y.startTime]])]),a("label",my,[E[35]||(E[35]=a("span",{class:"eyebrow mb-1 block"},"End",-1)),Q(a("input",{"onUpdate:modelValue":E[2]||(E[2]=I=>Y.endTime=I),type:"time",class:"field"},null,512),[[ye,Y.endTime]])]),a("label",gy,[E[36]||(E[36]=a("span",{class:"eyebrow mb-1 block"},"Drone",-1)),Q(a("select",{"onUpdate:modelValue":E[3]||(E[3]=I=>Y.drone=I),class:"field"},[u.value.length?$("",!0):(p(),m("option",vy,"— add a drone first —")),(p(!0),m(oe,null,Fe(u.value,I=>(p(),m("option",{key:I.id,value:I.id},w(I.name)+w(I.model?` · ${I.model}`:""),9,_y))),128))],512),[[zt,Y.drone]])]),a("label",by,[E[37]||(E[37]=a("span",{class:"eyebrow mb-1 block"},"Max altitude (m AGL)",-1)),Q(a("input",{"onUpdate:modelValue":E[4]||(E[4]=I=>Y.maxAltitudeAgl=I),type:"number",min:"0",class:"field",placeholder:"120"},null,512),[[ye,Y.maxAltitudeAgl]])]),a("label",yy,[E[38]||(E[38]=a("span",{class:"eyebrow mb-1 block"},"Area / route",-1)),Q(a("input",{"onUpdate:modelValue":E[5]||(E[5]=I=>Y.areaRoute=I),class:"field",placeholder:"Field N of Roskilde, grid survey"},null,512),[[ye,Y.areaRoute]])]),a("label",xy,[E[39]||(E[39]=a("span",{class:"eyebrow mb-1 block"},"Remote pilot name",-1)),Q(a("input",{"onUpdate:modelValue":E[6]||(E[6]=I=>Y.pilotName=I),class:"field",placeholder:"Full name"},null,512),[[ye,Y.pilotName]])]),a("label",wy,[E[40]||(E[40]=a("span",{class:"eyebrow mb-1 block"},"Certificate ref",-1)),Q(a("input",{"onUpdate:modelValue":E[7]||(E[7]=I=>Y.certificateRef=I),class:"field",placeholder:"A2 / STS cert no."},null,512),[[ye,Y.certificateRef]])]),a("label",ky,[E[41]||(E[41]=a("span",{class:"eyebrow mb-1 block"},"Logging path",-1)),Q(a("select",{"onUpdate:modelValue":E[8]||(E[8]=I=>Y.loggingPath=I),class:"field"},[(p(),m(oe,null,Fe(K,I=>a("option",{key:I.value,value:I.value},w(I.label),9,Sy)),64))],512),[[zt,Y.loggingPath]])]),a("label",Ty,[E[42]||(E[42]=a("span",{class:"eyebrow mb-1 block"},"Category",-1)),Q(a("select",{"onUpdate:modelValue":E[9]||(E[9]=I=>Y.category=I),class:"field"},[(p(),m(oe,null,Fe(U,I=>a("option",{key:I.value,value:I.value},w(I.label),9,Py)),64))],512),[[zt,Y.category]])]),a("label",Cy,[E[43]||(E[43]=a("span",{class:"eyebrow mb-1 block"},"Purpose",-1)),Q(a("select",{"onUpdate:modelValue":E[10]||(E[10]=I=>Y.purpose=I),class:"field"},[(p(),m(oe,null,Fe(V,I=>a("option",{key:I.value,value:I.value},w(I.label),9,Ly)),64))],512),[[zt,Y.purpose]])]),a("label",Ay,[E[44]||(E[44]=a("span",{class:"eyebrow mb-1 block"},"Authorisation ref",-1)),Q(a("input",{"onUpdate:modelValue":E[11]||(E[11]=I=>Y.authorisationRef=I),class:"field",placeholder:"Specific-category ref"},null,512),[[ye,Y.authorisationRef]])])]),a("label",My,[E[45]||(E[45]=a("span",{class:"eyebrow mb-1 block"},"FDR log URL (automatic path)",-1)),Q(a("input",{"onUpdate:modelValue":E[12]||(E[12]=I=>Y.rawFdrLogUrl=I),class:"field",placeholder:"Link to the stored flight-data-recorder export"},null,512),[[ye,Y.rawFdrLogUrl]])]),a("button",{class:"mt-4 flex items-center gap-1.5 text-sm font-semibold text-accent",onClick:E[13]||(E[13]=I=>Be.value=!Be.value)},[A(G,{name:Be.value?"x":"plus",size:14},null,8,["name"]),E[46]||(E[46]=z(" Operational details (weather, airspace, incidents) ",-1))]),Be.value?(p(),m("div",Ey,[a("label",Oy,[E[47]||(E[47]=a("span",{class:"eyebrow mb-1 block"},"Weather / wind",-1)),Q(a("input",{"onUpdate:modelValue":E[14]||(E[14]=I=>Y.weather=I),class:"field",placeholder:"6 m/s NW, CAVOK"},null,512),[[ye,Y.weather]])]),a("label",zy,[E[48]||(E[48]=a("span",{class:"eyebrow mb-1 block"},"Airspace / NOTAM ref",-1)),Q(a("input",{"onUpdate:modelValue":E[15]||(E[15]=I=>Y.airspaceRef=I),class:"field"},null,512),[[ye,Y.airspaceRef]])]),a("label",Iy,[E[49]||(E[49]=a("span",{class:"eyebrow mb-1 block"},"Observer",-1)),Q(a("input",{"onUpdate:modelValue":E[16]||(E[16]=I=>Y.observer=I),class:"field"},null,512),[[ye,Y.observer]])]),a("label",$y,[E[50]||(E[50]=a("span",{class:"eyebrow mb-1 block"},"Incidents / anomalies",-1)),Q(a("input",{"onUpdate:modelValue":E[17]||(E[17]=I=>Y.incidents=I),class:"field",placeholder:"RTH trigger, GPS dropout…"},null,512),[[ye,Y.incidents]])]),a("label",Ny,[E[51]||(E[51]=a("span",{class:"eyebrow mb-1 block"},"Notes",-1)),Q(a("textarea",{"onUpdate:modelValue":E[18]||(E[18]=I=>Y.notes=I),rows:"2",class:"field"},null,512),[[ye,Y.notes]])])])):$("",!0),a("div",Dy,[a("button",{class:"btn-accent",disabled:ce.value,onClick:we},w(ce.value?"Saving…":he.value?"Save changes":"Log flight"),9,Fy),a("button",{class:"btn-ghost",onClick:We},"Cancel"),Le.value?(p(),m("span",Ry,w(Le.value),1)):$("",!0)])])):$("",!0),a("div",By,[h.value?(p(),m("div",Uy,"Loading…")):f.value.length?(p(),m("div",Zy,[a("table",Hy,[a("thead",null,[a("tr",jy,[(p(),m(oe,null,Fe(["Date","Drone","Area / route","Alt","Pilot","Compliance",""],I=>a("th",{key:I,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w(I),1)),64))])]),a("tbody",null,[(p(!0),m(oe,null,Fe(f.value,I=>{var gt,dt,bt,x;return p(),m(oe,{key:I.id},[a("tr",{class:Ae(["border-b border-line last:border-0",he.value===I.id?"bg-accent-soft":""])},[a("td",Wy,[z(w((I.operationDate||"").slice(0,10))+" ",1),I.startTime?(p(),m("span",Ky,w(I.startTime),1)):$("",!0)]),a("td",Gy,w(I.droneName||"—"),1),a("td",{class:"max-w-[220px] truncate px-5 py-3 text-ink-secondary",title:I.areaRoute},w(I.areaRoute||"—"),9,qy),a("td",Yy,w(I.maxAltitudeAgl?I.maxAltitudeAgl+" m":"—"),1),a("td",Jy,w(I.pilotName||"—"),1),a("td",Xy,[a("button",{class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",s[C(I).tone]]),onClick:b=>M(I.id)},[C(I).tone==="danger"?(p(),at(G,{key:0,name:"alertTriangle",size:12})):C(I).tone==="success"?(p(),at(G,{key:1,name:"check",size:12})):$("",!0),z(" "+w(C(I).label),1)],10,Qy)]),a("td",ex,[le.value===I.id?(p(),m(oe,{key:0},[E[54]||(E[54]=a("span",{class:"mr-2 text-xs text-ink-muted"},"Delete?",-1)),a("button",{class:"btn-ghost mr-1",onClick:E[19]||(E[19]=b=>le.value="")},"Cancel"),a("button",{class:"rounded bg-danger px-3 py-1.5 text-sm font-semibold text-white transition hover:brightness-110",onClick:b=>Me(I)},"Delete",8,tx)],64)):(p(),m(oe,{key:1},[a("button",{class:"btn-ghost mr-1 inline-flex items-center gap-1",onClick:b=>ze(I)},[A(G,{name:"sliders",size:13}),E[55]||(E[55]=z(" Edit",-1))],8,nx),a("button",{class:"btn-ghost inline-flex items-center gap-1",onClick:b=>le.value=I.id},[A(G,{name:"trash",size:13})],8,ix)],64))])],2),T.value===I.id?(p(),m("tr",ox,[a("td",sx,[a("div",ax,[a("span",rx,[E[56]||(E[56]=z("Logging path: ",-1)),a("b",lx,w(((gt=I.compliance)==null?void 0:gt.loggingPath)||"—"),1)]),a("span",ux,[E[57]||(E[57]=z("Category: ",-1)),a("b",cx,w(I.category||"—"),1)]),a("span",dx,[E[58]||(E[58]=z("Retain until: ",-1)),a("b",fx,w((I.retentionUntil||"").slice(0,10)||"—"),1)]),(dt=I.compliance)!=null&&dt.exempt?(p(),m("span",hx,[E[59]||(E[59]=z("Exempt: ",-1)),a("b",px,w(I.compliance.exemptReason),1)])):$("",!0)]),(((bt=I.compliance)==null?void 0:bt.redFlags)||[]).length?(p(),m("ul",mx,[(p(!0),m(oe,null,Fe(I.compliance.redFlags,(b,S)=>(p(),m("li",{key:S,class:"flex items-start gap-2 text-xs text-danger-fg"},[A(G,{name:"alertTriangle",size:13,class:"mt-px shrink-0"}),z(" "+w(b),1)]))),128))])):(x=I.compliance)!=null&&x.exempt?$("",!0):(p(),m("div",gx,"No compliance gaps detected."))])])):$("",!0)],64)}),128))])])])):(p(),m("div",Vy,[A(G,{name:"book",size:26,class:"text-ink-muted"}),E[52]||(E[52]=a("div",{class:"mt-3 text-sm font-medium text-ink-secondary"},"No flights logged yet",-1)),E[53]||(E[53]=a("div",{class:"mt-1 text-xs text-ink-muted"},"Log your first operation to start the 5-year retention record.",-1))]))])],64)):(p(),m(oe,{key:2},[re.value?(p(),m("div",vx,[a("div",_x,[a("div",null,[a("div",bx,w(qe.value?"Edit drone":"New drone"),1),E[60]||(E[60]=a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Aircraft registry",-1))]),a("button",{class:"btn-icon",onClick:Ue},[A(G,{name:"x",size:16})])]),a("div",yx,[a("label",xx,[E[61]||(E[61]=a("span",{class:"eyebrow mb-1 block"},"Name",-1)),Q(a("input",{"onUpdate:modelValue":E[20]||(E[20]=I=>fe.name=I),class:"field",placeholder:"Mavic-01"},null,512),[[ye,fe.name]])]),a("label",wx,[E[62]||(E[62]=a("span",{class:"eyebrow mb-1 block"},"Model",-1)),Q(a("input",{"onUpdate:modelValue":E[21]||(E[21]=I=>fe.model=I),class:"field",placeholder:"DJI Mavic 3 Enterprise"},null,512),[[ye,fe.model]])]),a("label",kx,[E[63]||(E[63]=a("span",{class:"eyebrow mb-1 block"},"Serial",-1)),Q(a("input",{"onUpdate:modelValue":E[22]||(E[22]=I=>fe.serial=I),class:"field"},null,512),[[ye,fe.serial]])]),a("label",Sx,[E[64]||(E[64]=a("span",{class:"eyebrow mb-1 block"},"Operator no.",-1)),Q(a("input",{"onUpdate:modelValue":E[23]||(E[23]=I=>fe.operatorNumber=I),class:"field",placeholder:"DNK…"},null,512),[[ye,fe.operatorNumber]])]),a("label",Tx,[E[65]||(E[65]=a("span",{class:"eyebrow mb-1 block"},"MTOM (grams)",-1)),Q(a("input",{"onUpdate:modelValue":E[24]||(E[24]=I=>fe.mtomGrams=I),type:"number",min:"0",class:"field",placeholder:"920"},null,512),[[ye,fe.mtomGrams]])]),a("label",Px,[E[66]||(E[66]=a("span",{class:"eyebrow mb-1 block"},"C-class",-1)),Q(a("select",{"onUpdate:modelValue":E[25]||(E[25]=I=>fe.cClass=I),class:"field"},[(p(),m(oe,null,Fe(ie,I=>a("option",{key:I,value:I},w(I||"— none —"),9,Cx)),64))],512),[[zt,fe.cClass]])])]),a("div",Lx,[a("label",Ax,[Q(a("input",{"onUpdate:modelValue":E[26]||(E[26]=I=>fe.autologsFlights=I),type:"checkbox",class:"h-4 w-4 accent-[var(--accent)]"},null,512),[[Va,fe.autologsFlights]]),E[67]||(E[67]=z(" Auto-logs flights (onboard FDR) ",-1))]),a("label",Mx,[Q(a("input",{"onUpdate:modelValue":E[27]||(E[27]=I=>fe.isToy=I),type:"checkbox",class:"h-4 w-4 accent-[var(--accent)]"},null,512),[[Va,fe.isToy]]),E[68]||(E[68]=z(" Toy drone (logbook-exempt) ",-1))])]),a("div",Ex,[a("button",{class:"btn-accent",disabled:ae.value,onClick:Ve},w(ae.value?"Saving…":qe.value?"Save changes":"Add drone"),9,Ox),a("button",{class:"btn-ghost",onClick:Ue},"Cancel"),de.value?(p(),m("span",zx,w(de.value),1)):$("",!0)])])):$("",!0),a("div",Ix,[h.value?(p(),m("div",$x,"Loading…")):u.value.length?(p(),m("div",Dx,[a("table",Fx,[a("thead",null,[a("tr",Rx,[(p(),m(oe,null,Fe(["Name","Model","MTOM","Class","FDR",""],I=>a("th",{key:I,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w(I),1)),64))])]),a("tbody",null,[(p(!0),m(oe,null,Fe(u.value,I=>(p(),m("tr",{key:I.id,class:Ae(["border-b border-line last:border-0",qe.value===I.id?"bg-accent-soft":""])},[a("td",Bx,w(I.name),1),a("td",Ux,w(I.model||"—"),1),a("td",Vx,w(I.mtomGrams?I.mtomGrams+" g":"—"),1),a("td",Zx,[I.cClass?(p(),m("span",{key:0,class:Ae(["inline-flex rounded-full px-2 py-0.5 text-[11px] font-semibold",s.accent])},w(I.cClass),3)):(p(),m("span",Hx,"—")),I.isToy?(p(),m("span",{key:2,class:Ae(["ml-1 inline-flex rounded-full px-2 py-0.5 text-[11px] font-semibold",s.neutral])},"toy",2)):$("",!0)]),a("td",jx,[a("span",{class:Ae(["text-xs",I.autologsFlights?"text-success-fg":"text-ink-muted"])},w(I.autologsFlights?"yes":"no"),3)]),a("td",Wx,[mt.value===I.id?(p(),m(oe,{key:0},[E[71]||(E[71]=a("span",{class:"mr-2 text-xs text-ink-muted"},"Delete?",-1)),a("button",{class:"btn-ghost mr-1",onClick:E[28]||(E[28]=gt=>mt.value="")},"Cancel"),a("button",{class:"rounded bg-danger px-3 py-1.5 text-sm font-semibold text-white transition hover:brightness-110",onClick:gt=>ot(I)},"Delete",8,Kx)],64)):(p(),m(oe,{key:1},[a("button",{class:"btn-ghost mr-1 inline-flex items-center gap-1",onClick:gt=>pe(I)},[A(G,{name:"sliders",size:13}),E[72]||(E[72]=z(" Edit",-1))],8,Gx),a("button",{class:"btn-ghost inline-flex items-center gap-1",onClick:gt=>mt.value=I.id},[A(G,{name:"trash",size:13})],8,qx)],64))])],2))),128))])])])):(p(),m("div",Nx,[A(G,{name:"drone",size:26,class:"text-ink-muted"}),E[69]||(E[69]=a("div",{class:"mt-3 text-sm font-medium text-ink-secondary"},"No drones registered",-1)),E[70]||(E[70]=a("div",{class:"mt-1 text-xs text-ink-muted"},"Register the airframes you fly to log flights against them.",-1))]))])],64))]))}},Jx={class:"mx-auto flex max-w-[1240px] flex-col gap-5 p-7"},Xx={class:"flex flex-wrap items-center gap-3"},Qx={class:"inline-flex flex-wrap rounded-lg border border-line bg-surface-1 p-0.5"},e0=["onClick"],t0={class:"ml-auto"},n0={class:"grid grid-cols-4 gap-4 max-[900px]:grid-cols-2"},i0={class:"eyebrow"},o0={key:0,class:"panel border-danger/40 p-4 text-sm text-danger-fg"},s0={key:1,class:"panel p-5"},a0={class:"mb-4 flex items-center justify-between"},r0={class:"eyebrow"},l0={class:"mt-0.5 text-base font-semibold text-ink"},u0={class:"grid grid-cols-3 gap-3 max-[760px]:grid-cols-1"},c0={class:"col-span-2 block max-[760px]:col-span-1"},d0={class:"block"},f0=["value"],h0={class:"block"},p0=["value"],m0={class:"block"},g0=["value"],v0={class:"block"},_0={class:"block"},b0={class:"block"},y0={class:"block"},x0=["value"],w0={class:"block"},k0={class:"block"},S0={class:"block"},T0=["value"],P0={class:"mt-3 block"},C0={key:0,class:"mt-3"},L0={class:"eyebrow mb-1 block"},A0={key:1,class:"mt-3 text-xs text-ink-muted"},M0={class:"mt-4 flex items-center gap-3"},E0=["disabled"],O0={key:0,class:"text-sm text-danger-fg"},z0={class:"panel overflow-hidden p-0"},I0={key:0,class:"px-5 py-12 text-center text-sm text-ink-muted"},$0={key:1,class:"grid place-items-center px-5 py-16 text-center"},N0={class:"mt-3 text-sm font-medium text-ink-secondary"},D0={class:"mt-1 text-xs text-ink-muted"},F0={key:2,class:"overflow-x-auto"},R0={class:"w-full border-collapse text-sm"},B0={class:"text-left"},U0={class:"px-5 py-3"},V0={class:"font-semibold text-ink"},Z0={key:0,class:"font-mono text-[11px] text-ink-muted"},H0={class:"px-5 py-3 text-ink-secondary"},j0={class:"px-5 py-3 text-ink-secondary"},W0={class:"px-5 py-3"},K0=["onClick"],G0={key:0,class:"mt-0.5 font-mono text-[10.5px] text-ink-muted"},q0={class:"px-5 py-3 font-mono text-ink-secondary"},Y0={class:"whitespace-nowrap px-5 py-3 text-right"},J0=["onClick"],X0=["onClick"],Q0=["href"],ew=["onClick"],tw=["onClick"],nw=["onClick"],iw={key:0,class:"border-b border-line bg-surface-2"},ow={colspan:"6",class:"px-5 py-3"},sw={class:"flex flex-wrap gap-x-8 gap-y-1.5 text-xs"},aw={class:"text-ink-secondary"},rw={class:"text-ink"},lw={class:"text-ink-secondary"},uw={class:"text-ink"},cw={key:0,class:"text-ink-secondary"},dw={class:"text-ink"},fw={key:1,class:"text-ink-secondary"},hw={class:"font-mono text-ink"},pw={key:2,class:"text-ink-secondary"},mw={class:"font-mono text-ink"},gw={class:"text-ink-secondary"},vw={class:"text-ink"},_w={key:0,class:"mt-2 space-y-1"},bw={key:1,class:"mt-2 text-xs text-success-fg"},yw={key:2,class:"mt-2 text-xs text-ink-secondary"},xw={class:"flex max-h-[90vh] w-full max-w-[920px] flex-col overflow-hidden rounded-lg border border-line bg-surface-1 shadow-2xl"},ww={class:"flex items-center gap-3 border-b border-line px-5 py-3"},kw={class:"min-w-0"},Sw={class:"truncate text-sm font-semibold text-ink"},Tw={class:"truncate font-mono text-[11px] text-ink-muted"},Pw={class:"ml-auto flex items-center gap-2"},Cw=["href"],Lw=["href"],Aw={class:"flex-1 overflow-auto bg-surface-2"},Mw=["src","alt"],Ew=["src","title"],Ow={key:2,class:"grid place-items-center px-6 py-16 text-center"},zw={class:"mt-1 text-xs text-ink-muted"},Iw=["href"],$w={__name:"Documents",props:{email:{type:String,default:""},role:{type:String,default:"user"},organization:{type:String,default:""},organizationName:{type:String,default:""}},setup(t){const i={success:"bg-success-soft text-success-fg",warning:"bg-amber-soft text-amber-fg",danger:"bg-danger-soft text-danger-fg",accent:"bg-accent-soft text-accent-soft-fg",neutral:"bg-surface-2 text-ink-secondary"},s=[{value:"certificate",label:"Pilot certificate"},{value:"medical",label:"Medical / training"},{value:"insurance",label:"Insurance / liability"},{value:"background_check",label:"Background check / waiver"},{value:"registration",label:"Aircraft registration"},{value:"maintenance",label:"Maintenance log"},{value:"conformity",label:"Conformity / compliance"},{value:"firmware",label:"Firmware / software"},{value:"incident",label:"Incident / repair report"},{value:"flight_log",label:"Flight log"},{value:"checklist",label:"Pre-flight checklist"},{value:"airspace_auth",label:"Airspace authorisation"},{value:"mission_plan",label:"Mission plan / flight path"},{value:"risk_assessment",label:"Risk assessment / survey"},{value:"contract",label:"Contract / SOW"},{value:"client_insurance",label:"Client insurance cert"},{value:"delivery_report",label:"Delivery / media handoff"},{value:"other",label:"Other"}],l=Object.fromEntries(s.map(x=>[x.value,x.label])),u=[{value:"pilot",label:"Pilot"},{value:"aircraft",label:"Aircraft"},{value:"organization",label:"Organization"},{value:"client",label:"Client"},{value:"other",label:"Other"}],f=[{value:"active",label:"Active"},{value:"pending_review",label:"Pending review"},{value:"archived",label:"Archived"}],h=[{value:"pilot",label:"Pilot"},{value:"ops",label:"Ops manager"},{value:"admin",label:"Admin"},{value:"client",label:"Client-facing"}],_=W([]),y=W([]),C=W(!1),T=W("");async function M(){C.value=!0,T.value="";const[x,b]=await Promise.all([zp(),Jc()]);x.ok||(T.value=x.status===503?"Document storage is not configured on the API Server (service account missing).":"Could not load documents."),_.value=x.documents,y.value=b.drones||[],C.value=!1}Ei(M);const U=W("all"),V=[["all","All"],["expiring","Expiring soon"],["expired","Expired"],["pending","Pending review"],["archived","Archived"]],K=ue(()=>{const x=_.value;switch(U.value){case"expiring":return x.filter(b=>{var S;return((S=b.expiry)==null?void 0:S.state)==="expiring_soon"&&b.status!=="archived"});case"expired":return x.filter(b=>{var S;return((S=b.expiry)==null?void 0:S.state)==="expired"&&b.status!=="archived"});case"pending":return x.filter(b=>b.status==="pending_review");case"archived":return x.filter(b=>b.status==="archived");default:return x.filter(b=>b.status!=="archived")}});function F(x){if(x.status==="archived")return{tone:"neutral",label:"Superseded",icon:""};const b=x.expiry||{};return b.state==="expired"?{tone:"danger",label:"Expired",icon:"alertTriangle"}:b.state==="expiring_soon"?{tone:"warning",label:`Expires in ${b.daysUntilExpiry}d`,icon:"clock"}:b.state==="valid"?{tone:"success",label:"Valid",icon:"check"}:{tone:"neutral",label:"No expiry",icon:""}}const me=W("");function he(x){me.value=me.value===x?"":x}function Y(x){return x.ownerDrone?x.ownerDroneName||"Aircraft":x.ownerRef?x.ownerRef:x.ownerType==="pilot"?"Pilot":x.ownerType?x.ownerType.charAt(0).toUpperCase()+x.ownerType.slice(1):"—"}const Le=["png","jpg","jpeg","gif","webp","svg","bmp","avif"],ce=["pdf","txt","csv","log","json","md","html","htm","xml"];function Be(x){const b=(x||"").split(".").pop().toLowerCase();return Le.includes(b)?"image":ce.includes(b)?"frame":"none"}const Ne=W(null),ze=ue(()=>Ne.value?Be(Ne.value.fileName):"none"),We=ue(()=>Ne.value?Dp(Ne.value.id):"");function we(x){Ne.value=x}function le(){Ne.value=null}function Me(x){x.key==="Escape"&&Ne.value&&le()}Ei(()=>window.addEventListener("keydown",Me)),us(()=>window.removeEventListener("keydown",Me));function ie(){return{title:"",docType:"certificate",ownerType:"pilot",ownerDrone:"",ownerRef:"",reference:"",jurisdiction:"",issueDate:"",expiryDate:"",status:"active",accessTier:"ops",notes:""}}const Ke=W(!1),re=W(""),qe=W(""),fe=W(""),de=xt(ie()),ae=W(null),Lt=W(null),pe=W(""),Ue=W(!1);function Ve(){ae.value=null,Lt.value&&(Lt.value.value="")}function mt(){Object.assign(de,ie()),re.value="",qe.value="",fe.value="",Ve(),pe.value="",Ke.value=!0}function ot(x){Object.assign(de,{title:x.title||"",docType:x.docType||"certificate",ownerType:x.ownerType||"pilot",ownerDrone:x.ownerDrone||"",ownerRef:x.ownerRef||"",reference:x.reference||"",jurisdiction:x.jurisdiction||"",issueDate:x.issueDate||"",expiryDate:x.expiryDate||"",status:x.status||"active",accessTier:x.accessTier||"ops",notes:x.notes||""}),re.value=x.id,qe.value="",fe.value="",Ve(),pe.value="",Ke.value=!0}function Ce(x){ot(x),re.value="",qe.value=x.id,fe.value=x.title,de.status="active"}function J(){Ke.value=!1,re.value="",qe.value=""}function E(x){var b;ae.value=((b=x.target.files)==null?void 0:b[0])||null}async function I(){var b;if(pe.value="",!de.title.trim()){pe.value="Give the document a title.";return}Ue.value=!0;let x;if(re.value)x=await $p(re.value,{...de});else{const S={...de};qe.value&&(S.replaces=qe.value),x=await Ip(S,ae.value)}if(Ue.value=!1,!x.ok){pe.value=((b=x.body)==null?void 0:b.error)||"Could not save the document.";return}Ke.value=!1,re.value="",qe.value="",await M()}const gt=W("");async function dt(x){var S;const b=await Np(x.id);gt.value="",b.ok?await M():pe.value=((S=b.body)==null?void 0:S.error)||"Could not delete the document."}const bt=ue(()=>{const x=_.value.filter(b=>b.status!=="archived");return{total:x.length,expiring:x.filter(b=>{var S;return((S=b.expiry)==null?void 0:S.state)==="expiring_soon"}).length,expired:x.filter(b=>{var S;return((S=b.expiry)==null?void 0:S.state)==="expired"}).length,pending:_.value.filter(b=>b.status==="pending_review").length}});return(x,b)=>(p(),m("div",Jx,[a("div",Xx,[a("div",Qx,[(p(),m(oe,null,Fe(V,S=>a("button",{key:S[0],class:Ae(["rounded-md px-3.5 py-1.5 text-sm font-semibold transition",U.value===S[0]?"bg-accent-soft text-accent-soft-fg":"text-ink-secondary hover:text-ink"]),onClick:B=>U.value=S[0]},w(S[1]),11,e0)),64))]),a("div",t0,[a("button",{class:"btn-accent inline-flex items-center gap-2",onClick:mt},[A(G,{name:"upload",size:15}),b[13]||(b[13]=z(" Add document ",-1))])])]),a("div",n0,[(p(!0),m(oe,null,Fe([{label:"Documents on file",value:bt.value.total,tone:"neutral"},{label:"Expiring soon",value:bt.value.expiring,tone:bt.value.expiring?"warning":"neutral"},{label:"Expired",value:bt.value.expired,tone:bt.value.expired?"danger":"success"},{label:"Pending review",value:bt.value.pending,tone:bt.value.pending?"accent":"neutral"}],S=>(p(),m("div",{key:S.label,class:"panel p-5"},[a("div",i0,w(S.label),1),a("div",{class:Ae(["mt-2 text-[30px] font-bold leading-none tracking-tightest",S.tone==="danger"?"text-danger-fg":S.tone==="warning"?"text-amber-fg":S.tone==="success"?"text-success-fg":S.tone==="accent"?"text-accent-soft-fg":"text-ink"])},w(S.value),3)]))),128))]),T.value?(p(),m("div",o0,w(T.value),1)):$("",!0),Ke.value?(p(),m("div",s0,[a("div",a0,[a("div",null,[a("div",r0,w(re.value?"Edit document":qe.value?"New version":"New document"),1),a("div",l0,w(qe.value?`Supersedes “${fe.value}”`:"Compliance & operational document"),1)]),a("button",{class:"btn-icon",onClick:J},[A(G,{name:"x",size:16})])]),a("div",u0,[a("label",c0,[b[14]||(b[14]=a("span",{class:"eyebrow mb-1 block"},"Title",-1)),Q(a("input",{"onUpdate:modelValue":b[0]||(b[0]=S=>de.title=S),class:"field",placeholder:"A2 Remote Pilot Certificate — J. Dariusz"},null,512),[[ye,de.title]])]),a("label",d0,[b[15]||(b[15]=a("span",{class:"eyebrow mb-1 block"},"Type",-1)),Q(a("select",{"onUpdate:modelValue":b[1]||(b[1]=S=>de.docType=S),class:"field"},[(p(),m(oe,null,Fe(s,S=>a("option",{key:S.value,value:S.value},w(S.label),9,f0)),64))],512),[[zt,de.docType]])]),a("label",h0,[b[16]||(b[16]=a("span",{class:"eyebrow mb-1 block"},"Owner type",-1)),Q(a("select",{"onUpdate:modelValue":b[2]||(b[2]=S=>de.ownerType=S),class:"field"},[(p(),m(oe,null,Fe(u,S=>a("option",{key:S.value,value:S.value},w(S.label),9,p0)),64))],512),[[zt,de.ownerType]])]),a("label",m0,[b[18]||(b[18]=a("span",{class:"eyebrow mb-1 block"},"Aircraft (if any)",-1)),Q(a("select",{"onUpdate:modelValue":b[3]||(b[3]=S=>de.ownerDrone=S),class:"field"},[b[17]||(b[17]=a("option",{value:""},"— none —",-1)),(p(!0),m(oe,null,Fe(y.value,S=>(p(),m("option",{key:S.id,value:S.id},w(S.name)+w(S.model?` · ${S.model}`:""),9,g0))),128))],512),[[zt,de.ownerDrone]])]),a("label",v0,[b[19]||(b[19]=a("span",{class:"eyebrow mb-1 block"},"Owner reference",-1)),Q(a("input",{"onUpdate:modelValue":b[4]||(b[4]=S=>de.ownerRef=S),class:"field",placeholder:"Client name / serial / site"},null,512),[[ye,de.ownerRef]])]),a("label",_0,[b[20]||(b[20]=a("span",{class:"eyebrow mb-1 block"},"Reference / number",-1)),Q(a("input",{"onUpdate:modelValue":b[5]||(b[5]=S=>de.reference=S),class:"field",placeholder:"Cert / registration / policy no."},null,512),[[ye,de.reference]])]),a("label",b0,[b[21]||(b[21]=a("span",{class:"eyebrow mb-1 block"},"Jurisdiction",-1)),Q(a("input",{"onUpdate:modelValue":b[6]||(b[6]=S=>de.jurisdiction=S),class:"field",placeholder:"DK / EASA / FAA"},null,512),[[ye,de.jurisdiction]])]),a("label",y0,[b[22]||(b[22]=a("span",{class:"eyebrow mb-1 block"},"Access tier",-1)),Q(a("select",{"onUpdate:modelValue":b[7]||(b[7]=S=>de.accessTier=S),class:"field"},[(p(),m(oe,null,Fe(h,S=>a("option",{key:S.value,value:S.value},w(S.label),9,x0)),64))],512),[[zt,de.accessTier]])]),a("label",w0,[b[23]||(b[23]=a("span",{class:"eyebrow mb-1 block"},"Issue date",-1)),Q(a("input",{"onUpdate:modelValue":b[8]||(b[8]=S=>de.issueDate=S),type:"date",class:"field"},null,512),[[ye,de.issueDate]])]),a("label",k0,[b[24]||(b[24]=a("span",{class:"eyebrow mb-1 block"},"Expiry date",-1)),Q(a("input",{"onUpdate:modelValue":b[9]||(b[9]=S=>de.expiryDate=S),type:"date",class:"field"},null,512),[[ye,de.expiryDate]])]),a("label",S0,[b[25]||(b[25]=a("span",{class:"eyebrow mb-1 block"},"Status",-1)),Q(a("select",{"onUpdate:modelValue":b[10]||(b[10]=S=>de.status=S),class:"field"},[(p(),m(oe,null,Fe(f,S=>a("option",{key:S.value,value:S.value},w(S.label),9,T0)),64))],512),[[zt,de.status]])])]),a("label",P0,[b[26]||(b[26]=a("span",{class:"eyebrow mb-1 block"},"Notes",-1)),Q(a("textarea",{"onUpdate:modelValue":b[11]||(b[11]=S=>de.notes=S),rows:"2",class:"field",placeholder:"Conditions, renewal contacts, anything worth recording"},null,512),[[ye,de.notes]])]),re.value?(p(),m("div",A0,[...b[28]||(b[28]=[z(" Editing updates metadata only. To replace the file, close this and use ",-1),a("b",{class:"text-ink-secondary"},"New version",-1),z(" on the document — the old version is kept for audit. ",-1)])])):(p(),m("div",C0,[a("span",L0,"File "+w(qe.value?"(new version)":"(optional)"),1),a("input",{ref_key:"fileInput",ref:Lt,type:"file",class:"field",onChange:E},null,544),b[27]||(b[27]=a("p",{class:"mt-1 text-xs text-ink-muted"}," Stored in PocketBase for now (object storage later). Max 50 MB. ",-1))])),a("div",M0,[a("button",{class:"btn-accent",disabled:Ue.value,onClick:I},w(Ue.value?"Saving…":re.value?"Save changes":qe.value?"Upload new version":"Add document"),9,E0),a("button",{class:"btn-ghost",onClick:J},"Cancel"),pe.value?(p(),m("span",O0,w(pe.value),1)):$("",!0)])])):$("",!0),a("div",z0,[C.value?(p(),m("div",I0,"Loading…")):K.value.length?(p(),m("div",F0,[a("table",R0,[a("thead",null,[a("tr",B0,[(p(),m(oe,null,Fe(["Title","Type","Owner","Expiry","Ver",""],S=>a("th",{key:S,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w(S),1)),64))])]),a("tbody",null,[(p(!0),m(oe,null,Fe(K.value,S=>{var B,R;return p(),m(oe,{key:S.id},[a("tr",{class:Ae(["border-b border-line last:border-0",re.value===S.id?"bg-accent-soft":""])},[a("td",U0,[a("div",V0,w(S.title),1),S.reference?(p(),m("div",Z0,w(S.reference),1)):$("",!0)]),a("td",H0,w(Oe(l)[S.docType]||S.docType||"—"),1),a("td",j0,w(Y(S)),1),a("td",W0,[a("button",{class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",i[F(S).tone]]),onClick:Z=>he(S.id)},[F(S).icon?(p(),at(G,{key:0,name:F(S).icon,size:12},null,8,["name"])):$("",!0),z(" "+w(F(S).label),1)],10,K0),S.expiryDate?(p(),m("div",G0,w(S.expiryDate),1)):$("",!0)]),a("td",q0,"v"+w(S.version||1),1),a("td",Y0,[gt.value===S.id?(p(),m(oe,{key:0},[b[29]||(b[29]=a("span",{class:"mr-2 text-xs text-ink-muted"},"Delete?",-1)),a("button",{class:"btn-ghost mr-1",onClick:b[12]||(b[12]=Z=>gt.value="")},"Cancel"),a("button",{class:"rounded bg-danger px-3 py-1.5 text-sm font-semibold text-white transition hover:brightness-110",onClick:Z=>dt(S)},"Delete",8,J0)],64)):(p(),m(oe,{key:1},[S.hasFile?(p(),m("button",{key:0,class:"btn-ghost mr-1 inline-flex items-center gap-1",title:"Preview",onClick:Z=>we(S)},[A(G,{name:"eye",size:13})],8,X0)):$("",!0),S.hasFile?(p(),m("a",{key:1,href:Oe(zr)(S.id),class:"btn-ghost mr-1 inline-flex items-center gap-1",title:"Download file"},[A(G,{name:"download",size:13})],8,Q0)):$("",!0),a("button",{class:"btn-ghost mr-1 inline-flex items-center gap-1",title:"Upload new version",onClick:Z=>Ce(S)},[A(G,{name:"upload",size:13})],8,ew),a("button",{class:"btn-ghost mr-1 inline-flex items-center gap-1",onClick:Z=>ot(S)},[A(G,{name:"sliders",size:13}),b[30]||(b[30]=z(" Edit",-1))],8,tw),a("button",{class:"btn-ghost inline-flex items-center gap-1",onClick:Z=>gt.value=S.id},[A(G,{name:"trash",size:13})],8,nw)],64))])],2),me.value===S.id?(p(),m("tr",iw,[a("td",ow,[a("div",sw,[a("span",aw,[b[31]||(b[31]=z("Status: ",-1)),a("b",rw,w(S.status||"—"),1)]),a("span",lw,[b[32]||(b[32]=z("Access: ",-1)),a("b",uw,w(S.accessTier||"—"),1)]),S.jurisdiction?(p(),m("span",cw,[b[33]||(b[33]=z("Jurisdiction: ",-1)),a("b",dw,w(S.jurisdiction),1)])):$("",!0),S.issueDate?(p(),m("span",fw,[b[34]||(b[34]=z("Issued: ",-1)),a("b",hw,w(S.issueDate),1)])):$("",!0),S.expiryDate?(p(),m("span",pw,[b[35]||(b[35]=z("Expires: ",-1)),a("b",mw,w(S.expiryDate),1)])):$("",!0),a("span",gw,[b[36]||(b[36]=z("File: ",-1)),a("b",vw,w(S.hasFile?S.fileName:"none"),1)])]),(((B=S.expiry)==null?void 0:B.flags)||[]).length?(p(),m("ul",_w,[(p(!0),m(oe,null,Fe(S.expiry.flags,(Z,se)=>(p(),m("li",{key:se,class:Ae(["flex items-start gap-2 text-xs",S.expiry.state==="expired"?"text-danger-fg":S.expiry.state==="expiring_soon"?"text-amber-fg":"text-ink-secondary"])},[A(G,{name:"alertTriangle",size:13,class:"mt-px shrink-0"}),z(" "+w(Z),1)],2))),128))])):((R=S.expiry)==null?void 0:R.state)==="valid"?(p(),m("div",bw,"In force — no action needed.")):$("",!0),S.notes?(p(),m("div",yw,[b[37]||(b[37]=a("span",{class:"text-ink-muted"},"Notes:",-1)),z(" "+w(S.notes),1)])):$("",!0)])])):$("",!0)],64)}),128))])])])):(p(),m("div",$0,[A(G,{name:"fileText",size:26,class:"text-ink-muted"}),a("div",N0,w(U.value==="all"?"No documents on file yet":"Nothing in this view"),1),a("div",D0,w(U.value==="all"?"Add certificates, registrations, insurance and authorisations to track their expiry.":"Try a different filter."),1)]))]),(p(),at(cf,{to:"body"},[Ne.value?(p(),m("div",{key:0,class:"fixed inset-0 z-50 grid place-items-center p-4",style:{background:"color-mix(in srgb, black 60%, transparent)"},onClick:hl(le,["self"])},[a("div",xw,[a("div",ww,[a("div",kw,[a("div",Sw,w(Ne.value.title),1),a("div",Tw,w(Ne.value.fileName),1)]),a("div",Pw,[a("a",{href:We.value,target:"_blank",rel:"noopener",class:"btn-ghost inline-flex items-center gap-1.5",title:"Open in new tab"},[A(G,{name:"globe",size:14}),b[38]||(b[38]=z(" New tab ",-1))],8,Cw),a("a",{href:Oe(zr)(Ne.value.id),class:"btn-ghost inline-flex items-center gap-1.5",title:"Download"},[A(G,{name:"download",size:14}),b[39]||(b[39]=z(" Download ",-1))],8,Lw),a("button",{class:"btn-icon",title:"Close",onClick:le},[A(G,{name:"x",size:16})])])]),a("div",Aw,[ze.value==="image"?(p(),m("img",{key:0,src:We.value,alt:Ne.value.title,class:"mx-auto block max-w-full"},null,8,Mw)):ze.value==="frame"?(p(),m("iframe",{key:1,src:We.value,class:"h-[74vh] w-full border-0 bg-white",title:Ne.value.title},null,8,Ew)):(p(),m("div",Ow,[A(G,{name:"fileText",size:28,class:"text-ink-muted"}),b[41]||(b[41]=a("div",{class:"mt-3 text-sm font-medium text-ink-secondary"},"Preview isn't available for this file type",-1)),a("div",zw,w(Ne.value.fileName),1),a("a",{href:Oe(zr)(Ne.value.id),class:"btn-accent mt-4 inline-flex items-center gap-2"},[A(G,{name:"download",size:15}),b[40]||(b[40]=z(" Download instead ",-1))],8,Iw)]))])])])):$("",!0)]))]))}},Nw={class:"grid h-full grid-cols-[248px_1fr] max-[900px]:grid-cols-1"},Dw={class:"flex flex-col border-r border-line bg-surface-1 px-4 py-5 max-[900px]:hidden"},Fw={class:"flex items-center gap-2.5 px-2 pb-5"},Rw={class:"flex flex-col gap-0.5"},Bw=["onClick"],Uw={class:"mt-auto flex flex-col gap-2.5"},Vw={class:"rounded-lg bg-surface-2 p-3"},Zw={class:"flex items-center gap-2"},Hw={class:"text-xs font-semibold text-ink"},jw={class:"mt-1.5 block font-mono text-[10.5px] text-ink-muted"},Ww={class:"flex items-center gap-2.5 px-2 py-1"},Kw={class:"grid h-8 w-8 place-items-center rounded-full bg-[var(--navy-800)] text-xs font-bold text-white"},Gw={class:"min-w-0 flex-1"},qw={class:"truncate text-[13px] font-semibold text-ink"},Yw={class:"flex items-center gap-1.5 text-[11px] text-ink-muted"},Jw=["title"],Xw={class:"overflow-y-auto"},Qw={class:"sticky top-0 z-10 flex items-center gap-4 border-b border-line px-7 py-3.5",style:{background:"color-mix(in srgb, var(--bg-app) 82%, transparent)","backdrop-filter":"blur(10px)"}},e2={class:"mt-0.5 text-[22px] font-bold tracking-tightest text-ink"},t2={class:"ml-auto flex items-center gap-3"},n2={class:"flex h-10 w-60 items-center gap-2 rounded border border-line-strong bg-surface-1 px-3 max-[1100px]:hidden"},i2={key:0,class:"mx-auto flex max-w-[1240px] flex-col gap-5 p-7"},o2={class:"grid grid-cols-4 gap-4 max-[1100px]:grid-cols-2 max-[560px]:grid-cols-1"},s2={class:"flex items-center justify-between"},a2={class:"eyebrow"},r2={class:"mt-2.5 text-[34px] font-bold leading-none tracking-tightest text-ink"},l2={class:"grid grid-cols-[1.6fr_1fr] gap-5 max-[1100px]:grid-cols-1"},u2={class:"panel p-5"},c2={class:"mb-3.5 flex items-center justify-between"},d2={class:"flex items-center gap-2"},f2={class:"relative z-[1200]"},h2={class:"panel absolute right-0 z-[1200] mt-1.5 w-72 p-3.5 shadow-lg"},p2={class:"flex items-center justify-between gap-3"},m2={class:"mb-1.5 flex items-center justify-between"},g2={class:"font-mono text-[11px] text-ink-muted"},v2=["value"],_2={key:0,class:"mt-1.5 text-[11px] text-ink-muted"},b2={key:0,class:"mt-2.5 text-xs text-ink-muted"},y2={key:1,class:"mt-2.5 text-xs text-ink-muted"},x2={key:2,class:"mt-2.5 text-xs text-ink-muted"},w2={class:"flex flex-col gap-5"},k2={class:"panel p-5"},S2={class:"mb-3.5 flex items-center justify-between"},T2={class:"flex items-center gap-3"},P2={class:"text-5xl leading-none"},C2={class:"min-w-0"},L2={class:"flex items-baseline gap-1"},A2={class:"text-[34px] font-bold leading-none tracking-tightest text-ink"},M2={class:"text-lg font-semibold text-ink-secondary"},E2={class:"mt-1 truncate text-sm capitalize text-ink-secondary"},O2={class:"mt-1.5 truncate text-xs text-ink-muted"},z2={class:"mt-4 grid grid-cols-2 gap-2.5"},I2={class:"rounded-lg bg-surface-2 px-3 py-2"},$2={class:"mt-0.5 font-mono text-sm text-ink"},N2={class:"rounded-lg bg-surface-2 px-3 py-2"},D2={class:"mt-0.5 font-mono text-sm text-ink"},F2={class:"rounded-lg bg-surface-2 px-3 py-2"},R2={class:"mt-0.5 font-mono text-sm text-ink"},B2={key:0},U2={class:"rounded-lg bg-surface-2 px-3 py-2"},V2={class:"mt-0.5 font-mono text-sm text-ink"},Z2={key:0},H2={key:0,class:"mt-3 text-[11px] text-ink-muted"},j2={key:1,class:"grid place-items-center py-8 text-center"},W2={class:"mt-0.5 text-xs text-ink-muted"},K2={key:2,class:"grid place-items-center py-8 text-center text-sm text-ink-muted"},G2={class:"panel p-5"},q2={class:"mb-3.5 flex items-center justify-between"},Y2={class:"grid place-items-center py-10 text-center"},J2={class:"panel overflow-hidden p-0"},X2={class:"flex items-center justify-between px-5 py-4"},Q2={class:"flex gap-2"},ek={key:0,class:"px-5 py-12 text-center text-sm text-ink-muted"},tk={key:1,class:"overflow-x-auto"},nk={class:"w-full border-collapse text-sm"},ik={class:"text-left"},ok=["onClick"],sk={class:"px-5 py-3 font-mono font-bold text-ink"},ak={class:"px-5 py-3 text-ink-secondary"},rk={class:"px-5 py-3"},lk={class:"px-5 py-3 font-mono text-ink-secondary"},uk={class:"px-5 py-3"},ck={key:0,class:"flex items-center gap-2"},dk={class:"h-1.5 w-12 overflow-hidden rounded bg-surface-2"},fk={class:"font-mono text-xs text-ink-secondary"},hk={key:1,class:"font-mono text-xs text-ink-muted"},pk={class:"px-5 py-3 font-mono text-ink-secondary"},mk={class:"px-5 py-3 text-right"},gk=["onClick"],vk={key:1,class:"p-7"},_k={class:"mb-4 flex flex-wrap items-center gap-3"},bk={class:"font-mono text-mode font-bold text-ink"},yk={key:0,class:"rounded-full bg-danger-soft px-2.5 py-0.5 font-mono text-[10px] font-bold uppercase tracking-caps text-danger-fg"},xk={key:1,class:"ml-auto flex flex-wrap gap-1.5"},wk=["onClick"],kk={key:0,class:"panel grid place-items-center p-16 text-center"},Sk={class:"pill"},Tk={class:"pill"},Pk={class:"pill"},Ck={class:"mt-1 text-sm font-semibold text-ink"},Lk={class:"pill"},Ak={class:"mt-1 font-mono text-sm font-bold tabular text-ink"},Mk={class:"grid grid-cols-2 gap-4 max-[820px]:grid-cols-1"},Ek={class:"panel p-4"},Ok={class:"flex items-center gap-4"},zk={class:"h-9 flex-1 overflow-hidden rounded border border-line bg-surface-2"},Ik={class:"readout"},$k={class:"panel p-4"},Nk={class:"readout"},Dk={class:"panel p-4"},Fk={class:"space-y-1.5 text-sm"},Rk={class:"flex justify-between"},Bk={class:"text-ink"},Uk={class:"flex justify-between"},Vk={class:"text-ink"},Zk={class:"flex justify-between"},Hk={class:"font-mono tabular text-ink"},jk={class:"flex justify-between"},Wk={class:"font-mono tabular text-ink"},Kk={class:"panel p-4"},Gk={class:"space-y-1.5 text-sm"},qk={class:"flex justify-between"},Yk={class:"font-mono tabular text-ink"},Jk={class:"flex justify-between"},Xk={class:"font-mono tabular text-ink"},Qk={class:"flex justify-between"},eS={class:"font-mono tabular text-ink"},tS={class:"panel col-span-2 p-4 max-[820px]:col-span-1"},nS={class:"panel p-4"},iS={class:"flex flex-wrap gap-2"},oS={class:"mt-2 min-h-[16px] text-xs text-ink-muted"},sS={class:"panel p-4"},aS={class:"h-[180px] overflow-y-auto font-mono text-xs"},rS={class:"text-ink-muted"},lS={class:"font-semibold text-accent"},uS={class:"break-all text-ink"},cS={key:5,class:"p-7"},dS={class:"panel grid place-items-center p-16 text-center"},fS={class:"mt-3 text-sm font-medium text-ink-secondary"},hS={key:0,class:"mt-1 text-xs text-ink-muted"},pS={key:1,class:"mt-1 text-xs text-ink-muted"},mS="34,-25,72,45",gS=600*1e3,vS={__name:"Dashboard",props:{email:{type:String,default:""},role:{type:String,default:"user"},organization:{type:String,default:""},organizationName:{type:String,default:""}},emits:["logout"],setup(t,{emit:i}){const s=t,l=i,u=xt({}),f=xt({}),h=W(null),_=W(!1),y=xt([]),C=W(""),T=W([]),M=xt({unavailable:!1,detail:"",loaded:!1,plan:"",recommendedInterval:30}),U=ue(()=>T.value.filter(j=>!j.onGround).length),V=W(!1);let K=null;const F=[{value:"auto",label:"Auto"},{value:5,label:"5s"},{value:10,label:"10s"},{value:15,label:"15s"},{value:30,label:"30s"},{value:60,label:"60s"},{value:120,label:"120s"}],me=ue(()=>{if(be.airTrafficInterval==="auto")return M.recommendedInterval||30;const j=Number(be.airTrafficInterval);return Number.isFinite(j)&&j>0?j:30}),he=W(null);let Y=!1;function Le(){if(!(Y||he.value!==null)){if(typeof navigator>"u"||!navigator.geolocation){he.value=!1;return}Y=!0,navigator.geolocation.getCurrentPosition(j=>{he.value={lat:j.coords.latitude,lng:j.coords.longitude},Y=!1},()=>{he.value=!1,Y=!1},{timeout:8e3,maximumAge:6e5})}}function ce(j,O,Ie){const it=j&&j.telemetry||{},Et=it[O],mn=it[Ie];return typeof Et=="number"&&typeof mn=="number"&&(Et||mn)?{lat:Et,lng:mn}:null}function Be(){const j=ce(B.value,"latitude","longitude")||S.value.map(it=>ce(u[it],"latitude","longitude")).find(Boolean);if(j){const it=Ir(j.lat,j.lng);if(it)return it.bbox}const O=ce(B.value,"phoneLatitude","phoneLongitude")||S.value.map(it=>ce(u[it],"phoneLatitude","phoneLongitude")).find(Boolean);if(O){const it=Ir(O.lat,O.lng);if(it)return it.bbox}if(Le(),he.value){const it=Ir(he.value.lat,he.value.lng);if(it)return it.bbox}const Ie=ym(be.region);return Ie||mS}async function Ne(){if(!be.showAirTraffic)return;const j=be.autoBbox?Be():void 0,{states:O,unavailable:Ie,detail:it,plan:Et,recommendedInterval:mn}=await mp(j);T.value=O,M.unavailable=Ie,M.detail=it,M.plan=Et||"",mn&&(M.recommendedInterval=mn),M.loaded=!0}function ze(){K&&clearInterval(K),K=setInterval(()=>{Ce.value==="Overview"&&be.showAirTraffic&&Ne()},me.value*1e3)}function We(){Ne(),ze()}function we(){K&&clearInterval(K),K=null}const le=xt({loaded:!1,unavailable:!1,detail:"",data:null,units:"metric",source:"",updatedAt:0});let Me=null;function ie(){const j=ce(B.value,"latitude","longitude")||S.value.map(Ie=>ce(u[Ie],"latitude","longitude")).find(Boolean);if(j)return{lat:j.lat,lng:j.lng,source:"drone"};const O=ce(B.value,"phoneLatitude","phoneLongitude")||S.value.map(Ie=>ce(u[Ie],"phoneLatitude","phoneLongitude")).find(Boolean);return O?{lat:O.lat,lng:O.lng,source:"phone"}:he.value?{lat:he.value.lat,lng:he.value.lng,source:"browser"}:null}async function Ke(){const j=ie(),O=await Sp(j?j.lat:void 0,j?j.lng:void 0);if(le.loaded=!0,le.units=O.units||"metric",O.unavailable||!O.weather){le.unavailable=!0,le.detail=O.detail||"Weather is unavailable.",le.data=null;return}le.unavailable=!1,le.detail="",le.data=O.weather,le.source=j?j.source:"default",le.updatedAt=Date.now()}function re(){Me&&clearInterval(Me),Me=setInterval(()=>{Ce.value==="Overview"&&Ke()},gS)}function qe(){Ke(),re()}function fe(){Me&&clearInterval(Me),Me=null}const de=ue(()=>le.units==="imperial"?"°F":le.units==="standard"?"K":"°C"),ae=ue(()=>le.units==="imperial"?"mph":"m/s");function Lt(j){const O=(j||"").slice(0,2);return O==="01"?(j||"").endsWith("n")?"🌙":"☀️":{"02":"🌤️","03":"⛅","04":"☁️","09":"🌧️",10:"🌦️",11:"⛈️",13:"❄️",50:"🌫️"}[O]||"🌡️"}const pe=ue(()=>Lt(le.data&&le.data.icon)),Ue=ue(()=>{const j=le.data;return j?j.country?`${j.location}, ${j.country}`:j.location||"Unknown location":""}),Ve=ue(()=>le.source==="drone"?"at aircraft location":le.source==="phone"||le.source==="browser"?"at your location":"default location"),mt=ue(()=>le.updatedAt?new Date(le.updatedAt).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit"}):"");function ot(j,O=0){return typeof j=="number"?j.toFixed(O):"—"}const Ce=W("Overview"),J=[["grid","Overview"],["radio","Live flights"],["route","Routes"],["calendar","Schedule"],["book","Logbook"],["fileText","Documents"],["server","Drives"],["settings","Settings"]],E=ue(()=>(J.find(([,j])=>j===Ce.value)||["grid"])[0]),I=W(""),gt=W(""),dt=W("");let bt=null,x=null,b=!1;const S=ue(()=>Object.keys(u).sort((j,O)=>(u[O].online?1:0)-(u[j].online?1:0)||j.localeCompare(O))),B=ue(()=>h.value?u[h.value]:null),R=ue(()=>B.value&&B.value.telemetry||{}),Z=ue(()=>!!(B.value&&B.value.online)),se=ue(()=>{const j=R.value;return typeof j.latitude=="number"&&typeof j.longitude=="number"&&(j.latitude||j.longitude)?{lat:j.latitude,lng:j.longitude}:null}),ne=ue(()=>h.value&&f[h.value]||[]),ee=ue(()=>{const j=R.value;return typeof j.velocityX=="number"&&typeof j.velocityY=="number"?Math.hypot(j.velocityX,j.velocityY):null});function q(j){return j.online?j.connected?["In flight","success"]:["Standby","accent"]:["Offline","neutral"]}function ge(j){const O=j&&j.telemetry||{};return typeof O.velocityX=="number"&&typeof O.velocityY=="number"?Math.hypot(O.velocityX,O.velocityY):null}const te=ue(()=>S.value.map(j=>{const O=u[j],Ie=O.telemetry||{},[it,Et]=q(O);return{id:j,mission:O.model||(O.connected?"Drone linked":O.online?"App online":"No signal"),status:it,tone:Et,alt:typeof Ie.altitude=="number"?Ie.altitude.toFixed(0)+" m":"—",battery:typeof Ie.batteryPercent=="number"?Ie.batteryPercent:null,speed:ge(O)}})),Se=ue(()=>S.value.filter(j=>u[j].online).length),Te=ue(()=>S.value.filter(j=>u[j].online&&u[j].connected).length),Ze=ue(()=>S.value.filter(j=>!u[j].online).length),Ye=ue(()=>{const j=S.value.map(O=>{var Ie;return(Ie=u[O].telemetry)==null?void 0:Ie.batteryPercent}).filter(O=>typeof O=="number");return j.length?Math.round(j.reduce((O,Ie)=>O+Ie,0)/j.length):null}),st=ue(()=>[{label:"Active flights",value:String(Te.value),delta:`${Se.value} online`,tone:"success",icon:"radio"},{label:"Avg battery",value:Ye.value==null?"—":Ye.value+"%",delta:Ye.value==null?"no telemetry":Ye.value<40?"low — watch":"nominal",tone:Ye.value!=null&&Ye.value<40?"danger":"neutral",icon:"battery"},{label:"Fleet size",value:String(S.value.length),delta:`${Te.value} in flight`,tone:"neutral",icon:"grid"},{label:"Offline",value:String(Ze.value),delta:Ze.value?"needs attention":"all reachable",tone:Ze.value?"warning":"success",icon:"signal"}]),ft={success:"bg-success-soft text-success-fg",warning:"bg-amber-soft text-amber-fg",danger:"bg-danger-soft text-danger-fg",accent:"bg-accent-soft text-accent-soft-fg",neutral:"bg-surface-2 text-ink-secondary"},Tt={success:"text-success-fg",danger:"text-danger-fg",warning:"text-amber-fg",neutral:"text-ink-muted",accent:"text-accent-soft-fg"},Bt=ue(()=>{var Ie,it,Et;const O=(s.email||"PV").split("@")[0].split(/[.\-_ ]+/).filter(Boolean);return((((Ie=O[0])==null?void 0:Ie[0])||"P")+(((it=O[1])==null?void 0:it[0])||((Et=O[0])==null?void 0:Et[1])||"V")).toUpperCase()}),Kt={superadmin:"Superadmin",admin:"Admin",user:"Operator"},Nt=ue(()=>Kt[s.role]||"Operator"),pn=ue(()=>s.organizationName||(s.role==="superadmin"?"All organizations":"No organization"));function Pt(j){var Ie;u[j.deviceId]=j;const O=j.telemetry||{};typeof O.latitude=="number"&&typeof O.longitude=="number"&&(O.latitude||O.longitude)&&(f[j.deviceId]||(f[j.deviceId]=[]),f[j.deviceId].push([O.latitude,O.longitude]),f[j.deviceId].length>1e3&&f[j.deviceId].shift()),(!h.value||j.online&&!((Ie=u[h.value])!=null&&Ie.online))&&(h.value=j.deviceId)}function Gt(j){delete u[j],delete f[j],h.value===j&&(h.value=S.value[0]||null)}function zn(j){y.unshift({t:wu(Date.now()),tag:j.type||"?",text:JSON.stringify(zi(j))}),y.length>200&&y.pop()}function zi(j){const O={...j};return delete O.type,O}function rt(){const j=location.protocol==="https:"?"wss":"ws";bt=new WebSocket(`${j}://${location.host}/bff/ws`),bt.onopen=()=>_.value=!0,bt.onclose=()=>{_.value=!1,b||(x=setTimeout(rt,1500))},bt.onerror=()=>bt&&bt.close(),bt.onmessage=O=>{let Ie;try{Ie=JSON.parse(O.data)}catch{return}Ie.type==="snapshot"?(Ie.devices||[]).forEach(Pt):Ie.type==="update"&&Ie.device?(Pt(Ie.device),Ie.event&&Ie.device.deviceId===h.value&&zn(Ie.event)):Ie.type==="removed"&&Ie.deviceId&&Gt(Ie.deviceId)}}async function Kn(){if(!h.value)return dt.value="No device selected.";if(!I.value.trim())return dt.value="Enter a command name.";let j;if(gt.value.trim())try{j=JSON.parse(gt.value)}catch{return dt.value="Payload is not valid JSON."}const{ok:O,body:Ie}=await Fp(h.value,I.value.trim(),j);dt.value=O?`Sent "${I.value.trim()}".`:`Error: ${Ie.error||"failed"}`}function In(j,O,Ie=""){return typeof j=="number"?j.toFixed(O)+Ie:"—"}function ct(j){h.value=j,Ce.value="Live flights"}return Rt(Ce,j=>{j==="Overview"&&(Ne(),Ke())}),Rt(()=>be.showAirTraffic,j=>{j?Ne():T.value=[]}),Rt(me,ze),Ei(async()=>{(await np()).forEach(Pt),rt(),We(),qe()}),us(()=>{b=!0,x&&clearTimeout(x),bt&&bt.close(),we(),fe()}),(j,O)=>{var Ie,it,Et,mn,Ii;return p(),m("div",Nw,[a("aside",Dw,[a("div",Fw,[A(nd,{size:26}),O[11]||(O[11]=a("span",{class:"text-[19px] tracking-tightest"},[a("span",{class:"font-medium text-ink-secondary"},"Pilot"),a("span",{class:"font-bold text-ink"},"Vault")],-1))]),a("nav",Rw,[(p(),m(oe,null,Fe(J,([Pe,qt])=>a("button",{key:qt,class:Ae(["flex items-center gap-3 rounded px-3 py-2.5 text-left text-sm transition",Ce.value===qt?"bg-accent-soft font-semibold text-accent-soft-fg":"font-medium text-ink-secondary hover:bg-surface-2"]),onClick:Oo=>Ce.value=qt},[A(G,{name:Pe,size:18,stroke:Ce.value===qt?2.2:1.8},null,8,["name","stroke"]),z(" "+w(qt),1)],10,Bw)),64))]),a("div",Uw,[a("div",Vw,[a("div",Zw,[a("span",{class:Ae(["h-2 w-2 rounded-full",_.value?"bg-ready":"bg-caution"])},null,2),a("span",Hw,w(_.value?"Link healthy":"Reconnecting…"),1)]),a("span",jw,"API gateway · "+w(_.value?"streaming":"retrying"),1)]),a("div",Ww,[a("div",Kw,w(Bt.value),1),a("div",Gw,[a("div",qw,w(t.email||"Operator"),1),a("div",Yw,[A(G,{name:"grid",size:11,class:"shrink-0"}),a("span",{class:"truncate",title:`${Nt.value} · ${pn.value}`},w(Nt.value)+" · "+w(pn.value),9,Jw)])]),a("button",{class:"text-ink-muted transition hover:text-ink",title:"Log out","aria-label":"Log out",onClick:O[0]||(O[0]=Pe=>l("logout"))},[A(G,{name:"logout",size:16})])])])]),a("main",Xw,[a("header",Qw,[a("div",null,[O[12]||(O[12]=a("div",{class:"eyebrow"},"Live operations",-1)),a("h1",e2,w(Ce.value),1)]),a("div",t2,[a("div",n2,[A(G,{name:"search",size:16,class:"text-ink-muted"}),Q(a("input",{"onUpdate:modelValue":O[1]||(O[1]=Pe=>C.value=Pe),placeholder:"Search drones, routes…",class:"w-full border-none bg-transparent text-sm text-ink outline-none placeholder:text-ink-muted"},null,512),[[ye,C.value]])]),a("button",{class:"btn-accent flex items-center gap-2",onClick:O[2]||(O[2]=Pe=>Ce.value="Live flights")},[A(G,{name:"radio",size:16}),O[13]||(O[13]=z(" Live flights ",-1))])])]),Ce.value==="Overview"?(p(),m("div",i2,[a("div",o2,[(p(!0),m(oe,null,Fe(st.value,Pe=>(p(),m("div",{key:Pe.label,class:"panel p-5"},[a("div",s2,[a("span",a2,w(Pe.label),1),A(G,{name:Pe.icon,size:16,class:"text-ink-muted"},null,8,["name"])]),a("div",r2,w(Pe.value),1),a("span",{class:Ae(["mt-2 block font-mono text-[11px]",Tt[Pe.tone]])},w(Pe.delta),3)]))),128))]),a("div",l2,[a("div",u2,[a("div",c2,[O[18]||(O[18]=a("div",null,[a("div",{class:"eyebrow"},"Airspace"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Live map")],-1)),a("div",d2,[Oe(be).showAirTraffic&&U.value?(p(),m("span",{key:0,class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",ft.accent]),title:"Live aircraft from OpenSky Network"},[A(G,{name:"radio",size:12}),z(w(U.value)+" aircraft ",1)],2)):$("",!0),Te.value?(p(),m("span",{key:1,class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",ft.success])},[O[14]||(O[14]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Te.value)+" drones ",1)],2)):$("",!0),a("div",f2,[a("button",{type:"button",class:Ae(["grid h-7 w-7 place-items-center rounded-md text-ink-muted transition hover:bg-surface-2 hover:text-ink",V.value?"bg-surface-2 text-ink":""]),title:"Map settings","aria-label":"Map settings",onClick:O[3]||(O[3]=Pe=>V.value=!V.value)},[A(G,{name:"settings",size:16})],2),V.value?(p(),m(oe,{key:0},[a("div",{class:"fixed inset-0 z-[1190]",onClick:O[4]||(O[4]=Pe=>V.value=!1)}),a("div",h2,[O[17]||(O[17]=a("div",{class:"eyebrow mb-2.5"},"Map settings",-1)),a("label",p2,[O[15]||(O[15]=a("span",{class:"text-sm text-ink-secondary"},"Show live air traffic",-1)),A(en,{modelValue:Oe(be).showAirTraffic,"onUpdate:modelValue":O[5]||(O[5]=Pe=>Oe(be).showAirTraffic=Pe)},null,8,["modelValue"])]),a("div",{class:Ae(["mt-3.5",Oe(be).showAirTraffic?"":"pointer-events-none opacity-40"])},[a("div",m2,[O[16]||(O[16]=a("span",{class:"text-sm text-ink-secondary"},"Refresh interval",-1)),a("span",g2,"every "+w(me.value)+"s",1)]),Q(a("select",{"onUpdate:modelValue":O[6]||(O[6]=Pe=>Oe(be).airTrafficInterval=Pe),class:"field"},[(p(),m(oe,null,Fe(F,Pe=>a("option",{key:Pe.value,value:Pe.value},w(Pe.label)+w(Pe.value==="auto"?` (plan: ${M.recommendedInterval}s)`:""),9,v2)),64))],512),[[zt,Oe(be).airTrafficInterval]]),M.plan?(p(),m("p",_2," OpenSky plan: "+w(M.plan),1)):$("",!0)],2)])],64)):$("",!0)])])]),A(Pu,{position:se.value,trail:ne.value,aircraft:Oe(be).showAirTraffic?T.value:[]},null,8,["position","trail","aircraft"]),Oe(be).showAirTraffic?M.loaded&&M.unavailable?(p(),m("p",y2,w(M.detail||"Live air traffic is unavailable."),1)):(p(),m("p",x2," Live air traffic from OpenSky Network · updates every "+w(me.value)+"s ",1)):(p(),m("p",b2," Live air traffic hidden · enable it in Map settings "))]),a("div",w2,[a("div",k2,[a("div",S2,[O[19]||(O[19]=a("div",null,[a("div",{class:"eyebrow"},"Conditions"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Weather")],-1)),A(G,{name:"sun",size:16,class:"text-ink-muted"})]),le.data?(p(),m(oe,{key:0},[a("div",T2,[a("div",P2,w(pe.value),1),a("div",C2,[a("div",L2,[a("span",A2,w(ot(le.data.temp)),1),a("span",M2,w(de.value),1)]),a("div",E2,w(le.data.description||"—"),1)])]),a("div",O2,w(Ue.value)+" · "+w(Ve.value),1),a("div",z2,[a("div",I2,[O[20]||(O[20]=a("div",{class:"eyebrow"},"Feels like",-1)),a("div",$2,w(ot(le.data.feelsLike))+w(de.value),1)]),a("div",N2,[O[21]||(O[21]=a("div",{class:"eyebrow"},"Wind",-1)),a("div",D2,w(ot(le.data.windSpeed,1))+" "+w(ae.value),1)]),a("div",F2,[O[22]||(O[22]=a("div",{class:"eyebrow"},"Humidity",-1)),a("div",R2,[z(w(ot(le.data.humidity)),1),le.data.humidity!=null?(p(),m("span",B2,"%")):$("",!0)])]),a("div",U2,[O[23]||(O[23]=a("div",{class:"eyebrow"},"Cloud cover",-1)),a("div",V2,[z(w(ot(le.data.clouds)),1),le.data.clouds!=null?(p(),m("span",Z2,"%")):$("",!0)])])]),mt.value?(p(),m("div",H2,"Updated "+w(mt.value)+" · OpenWeather",1)):$("",!0)],64)):le.loaded&&le.unavailable?(p(),m("div",j2,[A(G,{name:"sun",size:24,class:"text-ink-muted"}),O[24]||(O[24]=a("div",{class:"mt-2 text-sm font-medium text-ink-secondary"},"Weather unavailable",-1)),a("div",W2,w(le.detail),1)])):(p(),m("div",K2," Loading weather… "))]),a("div",G2,[a("div",q2,[O[25]||(O[25]=a("div",null,[a("div",{class:"eyebrow"},"Today"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Schedule")],-1)),A(G,{name:"clock",size:16,class:"text-ink-muted"})]),a("div",Y2,[A(G,{name:"calendar",size:24,class:"text-ink-muted"}),O[26]||(O[26]=a("div",{class:"mt-2 text-sm font-medium text-ink-secondary"},"No missions scheduled",-1)),O[27]||(O[27]=a("div",{class:"mt-0.5 text-xs text-ink-muted"},"Scheduling is not wired to a backend yet.",-1))])])])]),a("div",J2,[a("div",X2,[O[30]||(O[30]=a("div",null,[a("div",{class:"eyebrow"},"Fleet"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Aircraft status")],-1)),a("div",Q2,[a("span",{class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",ft.success])},[O[28]||(O[28]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Te.value)+" in flight ",1)],2),Ze.value?(p(),m("span",{key:0,class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",ft.warning])},[O[29]||(O[29]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Ze.value)+" offline ",1)],2)):$("",!0)])]),te.value.length?(p(),m("div",tk,[a("table",nk,[a("thead",null,[a("tr",ik,[(p(),m(oe,null,Fe(["Aircraft","Mission","Status","Alt","Battery","Speed",""],Pe=>a("th",{key:Pe,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w(Pe),1)),64))])]),a("tbody",null,[(p(!0),m(oe,null,Fe(te.value,(Pe,qt)=>(p(),m("tr",{key:Pe.id,class:Ae(["cursor-pointer transition hover:bg-surface-2",qtct(Pe.id)},[a("td",sk,w(Pe.id),1),a("td",ak,w(Pe.mission),1),a("td",rk,[a("span",{class:Ae(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",ft[Pe.tone]])},[O[31]||(O[31]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Pe.status),1)],2)]),a("td",lk,w(Pe.alt),1),a("td",uk,[Pe.battery!=null?(p(),m("div",ck,[a("div",dk,[a("div",{class:Ae(["h-full",Pe.battery<40?"bg-caution":"bg-ready"]),style:Mo({width:Pe.battery+"%"})},null,6)]),a("span",fk,w(Pe.battery)+"%",1)])):(p(),m("span",hk,"—"))]),a("td",pk,[z(w(Pe.speed==null?"—":Pe.speed.toFixed(1))+" ",1),O[32]||(O[32]=a("span",{class:"text-ink-muted"},"m/s",-1))]),a("td",mk,[a("button",{class:"btn-ghost inline-flex items-center gap-1.5 whitespace-nowrap",onClick:hl(Oo=>ct(Pe.id),["stop"])},[A(G,{name:"play",size:14}),O[33]||(O[33]=z(" Track ",-1))],8,gk)])],10,ok))),128))])])])):(p(),m("div",ek," No aircraft connected yet. Devices appear here as they come online. "))])])):Ce.value==="Live flights"?(p(),m("div",vk,[a("div",_k,[a("span",bk,w(h.value||"No device selected"),1),B.value&&!Z.value?(p(),m("span",yk,"Offline")):$("",!0),S.value.length?(p(),m("div",xk,[(p(!0),m(oe,null,Fe(S.value,Pe=>(p(),m("button",{key:Pe,class:Ae(["flex items-center gap-2 rounded border px-3 py-1.5 font-mono text-xs font-bold transition",Pe===h.value?"border-accent bg-accent-soft text-accent-soft-fg":"border-line bg-surface-1 text-ink-secondary hover:border-line-strong"]),onClick:qt=>h.value=Pe},[a("span",{class:Ae(["h-2 w-2 rounded-full",u[Pe].online?"bg-ready":"bg-ink-muted"])},null,2),z(" "+w(Pe),1)],10,wk))),128))])):$("",!0)]),S.value.length?(p(),m(oe,{key:1},[a("div",{class:Ae(["mb-4 grid gap-3",!Z.value&&B.value?"opacity-60":""]),style:{"grid-template-columns":"repeat(auto-fit, minmax(150px, 1fr))"}},[a("div",Sk,[O[36]||(O[36]=a("div",{class:"eyebrow"},"Registration",-1)),a("div",{class:Ae(["mt-1 text-sm font-semibold",Z.value?((Ie=B.value)==null?void 0:Ie.registration)==="success"?"text-success-fg":"text-danger-fg":"text-ink"])},w(Z.value&&((it=B.value)!=null&&it.registration)?B.value.registration:"—"),3)]),a("div",Tk,[O[37]||(O[37]=a("div",{class:"eyebrow"},"Drone link",-1)),a("div",{class:Ae(["mt-1 text-sm font-semibold",Z.value?(Et=B.value)!=null&&Et.connected?"text-success-fg":"text-danger-fg":"text-ink"])},w(B.value?Z.value?B.value.connected?"connected":"no drone":"app offline":"—"),3)]),a("div",Pk,[O[38]||(O[38]=a("div",{class:"eyebrow"},"Model",-1)),a("div",Ck,w(((mn=B.value)==null?void 0:mn.model)||"—"),1)]),a("div",Lk,[O[39]||(O[39]=a("div",{class:"eyebrow"},"Last update",-1)),a("div",Ak,w((Ii=B.value)!=null&&Ii.lastSeenMs?Oe(wu)(B.value.lastSeenMs):"—"),1)])],2),a("div",Mk,[a("div",Ek,[O[41]||(O[41]=a("div",{class:"mb-3 eyebrow"},"Battery",-1)),a("div",Ok,[a("div",zk,[a("div",{class:Ae(["h-full transition-all",typeof R.value.batteryPercent=="number"?R.value.batteryPercent<20?"bg-warning":R.value.batteryPercent<40?"bg-caution":"bg-ready":""]),style:Mo({width:(typeof R.value.batteryPercent=="number"?R.value.batteryPercent:0)+"%"})},null,6)]),a("div",Ik,[z(w(typeof R.value.batteryPercent=="number"?R.value.batteryPercent:"—"),1),O[40]||(O[40]=a("span",{class:"text-sm text-ink-secondary"},"%",-1))])])]),a("div",$k,[O[43]||(O[43]=a("div",{class:"mb-3 eyebrow"},"Altitude",-1)),a("div",Nk,[z(w(In(R.value.altitude,1)),1),O[42]||(O[42]=a("span",{class:"text-sm text-ink-secondary"}," m",-1))])]),a("div",Dk,[O[48]||(O[48]=a("div",{class:"mb-3 eyebrow"},"Flight",-1)),a("div",Fk,[a("div",Rk,[O[44]||(O[44]=a("span",{class:"text-ink-secondary"},"Mode",-1)),a("b",Bk,w(R.value.flightMode||"—"),1)]),a("div",Uk,[O[45]||(O[45]=a("span",{class:"text-ink-secondary"},"Flying",-1)),a("b",Vk,w(R.value.isFlying==null?"—":R.value.isFlying?"yes":"no"),1)]),a("div",Zk,[O[46]||(O[46]=a("span",{class:"text-ink-secondary"},"GPS sats",-1)),a("b",Hk,w(R.value.satelliteCount==null?"—":R.value.satelliteCount),1)]),a("div",jk,[O[47]||(O[47]=a("span",{class:"text-ink-secondary"},"Speed (H)",-1)),a("b",Wk,w(ee.value==null?"—":In(ee.value,2," m/s")),1)])])]),a("div",Kk,[O[52]||(O[52]=a("div",{class:"mb-3 eyebrow"},"Position",-1)),a("div",Gk,[a("div",qk,[O[49]||(O[49]=a("span",{class:"text-ink-secondary"},"Latitude",-1)),a("b",Yk,w(In(R.value.latitude,6)),1)]),a("div",Jk,[O[50]||(O[50]=a("span",{class:"text-ink-secondary"},"Longitude",-1)),a("b",Xk,w(In(R.value.longitude,6)),1)]),a("div",Qk,[O[51]||(O[51]=a("span",{class:"text-ink-secondary"},"Vert. speed",-1)),a("b",eS,w(In(typeof R.value.velocityZ=="number"?-R.value.velocityZ:void 0,2," m/s")),1)])])]),a("div",tS,[O[53]||(O[53]=a("div",{class:"mb-3 eyebrow"},"Track",-1)),A(Pu,{position:se.value,trail:ne.value},null,8,["position","trail"])]),a("div",nS,[O[54]||(O[54]=a("div",{class:"mb-3 eyebrow"},"Send command",-1)),a("div",iS,[Q(a("input",{"onUpdate:modelValue":O[7]||(O[7]=Pe=>I.value=Pe),class:"field flex-1",placeholder:"command (e.g. startConnection)"},null,512),[[ye,I.value]]),Q(a("input",{"onUpdate:modelValue":O[8]||(O[8]=Pe=>gt.value=Pe),class:"field flex-1",placeholder:"payload JSON (optional)"},null,512),[[ye,gt.value]]),a("button",{class:"btn-accent",onClick:Kn},"Send")]),a("div",oS,w(dt.value),1)]),a("div",sS,[O[55]||(O[55]=a("div",{class:"mb-3 eyebrow"},"Event log",-1)),a("div",aS,[(p(!0),m(oe,null,Fe(y,(Pe,qt)=>(p(),m("div",{key:qt,class:"border-b border-line py-1"},[a("span",rS,w(Pe.t),1),a("span",lS,w(Pe.tag),1),a("span",uS,w(Pe.text),1)]))),128))])])])],64)):(p(),m("div",kk,[A(G,{name:"radio",size:28,class:"text-ink-muted"}),O[34]||(O[34]=a("div",{class:"mt-3 text-sm font-medium text-ink-secondary"},"No aircraft online",-1)),O[35]||(O[35]=a("div",{class:"mt-1 text-xs text-ink-muted"},"Live telemetry appears here once a drone connects.",-1))]))])):Ce.value==="Logbook"?(p(),at(Yx,{key:2,email:t.email,role:t.role,organization:t.organization,"organization-name":t.organizationName},null,8,["email","role","organization","organization-name"])):Ce.value==="Documents"?(p(),at($w,{key:3,email:t.email,role:t.role,organization:t.organization,"organization-name":t.organizationName},null,8,["email","role","organization","organization-name"])):Ce.value==="Settings"?(p(),at(Qb,{key:4,email:t.email,role:t.role,organization:t.organization,"organization-name":t.organizationName,onLogout:O[9]||(O[9]=Pe=>l("logout"))},null,8,["email","role","organization","organization-name"])):(p(),m("div",cS,[a("div",dS,[A(G,{name:E.value,size:28,class:"text-ink-muted"},null,8,["name"]),a("div",fS,w(Ce.value),1),Ce.value==="Drives"?(p(),m("div",hS,[O[56]||(O[56]=z(" Browse and transfer files here once a drive is connected. Configure drives in ",-1)),a("button",{class:"font-semibold text-accent hover:underline",onClick:O[10]||(O[10]=Pe=>Ce.value="Settings")},"Settings → Integrations"),O[57]||(O[57]=z(". ",-1))])):(p(),m("div",pS,"This section is part of the console shell and has no backend yet."))])]))])])}}},_S={key:0,class:"h-full"},bS={key:1,class:"grid h-full place-items-center text-ink-muted text-sm"},yS={__name:"App",setup(t){const i=W(!1),s=W(null),l=W("user"),u=W(""),f=W(""),h=W("");function _(T){l.value=T&&T.role||"user",u.value=T&&T.organization||"",f.value=T&&T.organizationName||""}Ei(async()=>{h.value=(await Qh()).apiBase||"";const T=await vu();T&&(s.value=T.email,_(T),await Su()),i.value=!0});async function y(T){s.value=T,_(await vu()),await Su()}async function C(){Zp(),await tp(),s.value=null,l.value="user",u.value="",f.value=""}return(T,M)=>i.value?(p(),m("div",_S,[s.value?(p(),at(vS,{key:0,email:s.value,role:l.value,organization:u.value,"organization-name":f.value,onLogout:C},null,8,["email","role","organization","organization-name"])):(p(),at(am,{key:1,"default-api-base":h.value,onSignedIn:y},null,8,["default-api-base"]))])):(p(),m("div",bS,"Loading…"))}};qh(yS).mount("#app"); diff --git a/Web App/server/dist/assets/index-DrzdlcUJ.js b/Web App/server/dist/assets/index-DrzdlcUJ.js new file mode 100644 index 0000000..1d34990 --- /dev/null +++ b/Web App/server/dist/assets/index-DrzdlcUJ.js @@ -0,0 +1,20 @@ +(function(){const i=document.createElement("link").relList;if(i&&i.supports&&i.supports("modulepreload"))return;for(const u of document.querySelectorAll('link[rel="modulepreload"]'))l(u);new MutationObserver(u=>{for(const f of u)if(f.type==="childList")for(const h of f.addedNodes)h.tagName==="LINK"&&h.rel==="modulepreload"&&l(h)}).observe(document,{childList:!0,subtree:!0});function s(u){const f={};return u.integrity&&(f.integrity=u.integrity),u.referrerPolicy&&(f.referrerPolicy=u.referrerPolicy),u.crossOrigin==="use-credentials"?f.credentials="include":u.crossOrigin==="anonymous"?f.credentials="omit":f.credentials="same-origin",f}function l(u){if(u.ep)return;u.ep=!0;const f=s(u);fetch(u.href,f)}})();/** +* @vue/shared v3.5.39 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function Xr(t){const i=Object.create(null);for(const s of t.split(","))i[s]=1;return s=>s in i}const vt={},es=[],ui=()=>{},zu=()=>!1,ja=t=>t.charCodeAt(0)===111&&t.charCodeAt(1)===110&&(t.charCodeAt(2)>122||t.charCodeAt(2)<97),Wa=t=>t.startsWith("onUpdate:"),Kt=Object.assign,Qr=(t,i)=>{const s=t.indexOf(i);s>-1&&t.splice(s,1)},pd=Object.prototype.hasOwnProperty,ct=(t,i)=>pd.call(t,i),$e=Array.isArray,ts=t=>ea(t)==="[object Map]",ls=t=>ea(t)==="[object Set]",Al=t=>ea(t)==="[object Date]",je=t=>typeof t=="function",Tt=t=>typeof t=="string",Qn=t=>typeof t=="symbol",dt=t=>t!==null&&typeof t=="object",$u=t=>(dt(t)||je(t))&&je(t.then)&&je(t.catch),Iu=Object.prototype.toString,ea=t=>Iu.call(t),md=t=>ea(t).slice(8,-1),Nu=t=>ea(t)==="[object Object]",el=t=>Tt(t)&&t!=="NaN"&&t[0]!=="-"&&""+parseInt(t,10)===t,Rs=Xr(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Ka=t=>{const i=Object.create(null);return(s=>i[s]||(i[s]=t(s)))},gd=/-\w/g,Jn=Ka(t=>t.replace(gd,i=>i.slice(1).toUpperCase())),vd=/\B([A-Z])/g,to=Ka(t=>t.replace(vd,"-$1").toLowerCase()),Du=Ka(t=>t.charAt(0).toUpperCase()+t.slice(1)),xr=Ka(t=>t?`on${Du(t)}`:""),li=(t,i)=>!Object.is(t,i),Ea=(t,...i)=>{for(let s=0;s{Object.defineProperty(t,i,{configurable:!0,enumerable:!1,writable:l,value:s})},Ga=t=>{const i=parseFloat(t);return isNaN(i)?t:i},_d=t=>{const i=Tt(t)?Number(t):NaN;return isNaN(i)?t:i};let Ml;const qa=()=>Ml||(Ml=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Eo(t){if($e(t)){const i={};for(let s=0;s{if(s){const l=s.split(yd);l.length>1&&(i[l[0].trim()]=l[1].trim())}}),i}function Ce(t){let i="";if(Tt(t))i=t;else if($e(t))for(let s=0;sXi(s,i))}const Bu=t=>!!(t&&t.__v_isRef===!0),w=t=>Tt(t)?t:t==null?"":$e(t)||dt(t)&&(t.toString===Iu||!je(t.toString))?Bu(t)?w(t.value):JSON.stringify(t,Uu,2):String(t),Uu=(t,i)=>Bu(i)?Uu(t,i.value):ts(i)?{[`Map(${i.size})`]:[...i.entries()].reduce((s,[l,u],f)=>(s[wr(l,f)+" =>"]=u,s),{})}:ls(i)?{[`Set(${i.size})`]:[...i.values()].map(s=>wr(s))}:Qn(i)?wr(i):dt(i)&&!$e(i)&&!Nu(i)?String(i):i,wr=(t,i="")=>{var s;return Qn(t)?`Symbol(${(s=t.description)!=null?s:i})`:t};/** +* @vue/reactivity v3.5.39 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Yt;class Pd{constructor(i=!1){this.detached=i,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this._warnOnRun=!0,this.__v_skip=!0,!i&&Yt&&(Yt.active?(this.parent=Yt,this.index=(Yt.scopes||(Yt.scopes=[])).push(this)-1):(this._active=!1,this._warnOnRun=!1))}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let i,s;if(this.scopes)for(i=0,s=this.scopes.length;i0&&--this._on===0){if(Yt===this)Yt=this.prevScope;else{let i=Yt;for(;i;){if(i.prevScope===this){i.prevScope=this.prevScope;break}i=i.prevScope}}this.prevScope=void 0}}stop(i){if(this._active){this._active=!1;let s,l;for(s=0,l=this.effects.length;s0)return;if(Us){let i=Us;for(Us=void 0;i;){const s=i.next;i.next=void 0,i.flags&=-9,i=s}}let t;for(;Bs;){let i=Bs;for(Bs=void 0;i;){const s=i.next;if(i.next=void 0,i.flags&=-9,i.flags&1)try{i.trigger()}catch(l){t||(t=l)}i=s}}if(t)throw t}function ju(t){for(let i=t.deps;i;i=i.nextDep)i.version=-1,i.prevActiveLink=i.dep.activeLink,i.dep.activeLink=i}function Wu(t){let i,s=t.depsTail,l=s;for(;l;){const u=l.prevDep;l.version===-1?(l===s&&(s=u),ol(l),Ld(l)):i=l,l.dep.activeLink=l.prevActiveLink,l.prevActiveLink=void 0,l=u}t.deps=i,t.depsTail=s}function Ir(t){for(let i=t.deps;i;i=i.nextDep)if(i.dep.version!==i.version||i.dep.computed&&(Ku(i.dep.computed)||i.dep.version!==i.version))return!0;return!!t._dirty}function Ku(t){if(t.flags&4&&!(t.flags&16)||(t.flags&=-17,t.globalVersion===Ws)||(t.globalVersion=Ws,!t.isSSR&&t.flags&128&&(!t.deps&&!t._dirty||!Ir(t))))return;t.flags|=2;const i=t.dep,s=xt,l=Xn;xt=t,Xn=!0;try{ju(t);const u=t.fn(t._value);(i.version===0||li(u,t._value))&&(t.flags|=128,t._value=u,i.version++)}catch(u){throw i.version++,u}finally{xt=s,Xn=l,Wu(t),t.flags&=-3}}function ol(t,i=!1){const{dep:s,prevSub:l,nextSub:u}=t;if(l&&(l.nextSub=u,t.prevSub=void 0),u&&(u.prevSub=l,t.nextSub=void 0),s.subs===t&&(s.subs=l,!l&&s.computed)){s.computed.flags&=-5;for(let f=s.computed.deps;f;f=f.nextDep)ol(f,!0)}!i&&!--s.sc&&s.map&&s.map.delete(s.key)}function Ld(t){const{prevDep:i,nextDep:s}=t;i&&(i.nextDep=s,t.prevDep=void 0),s&&(s.prevDep=i,t.nextDep=void 0)}let Xn=!0;const Gu=[];function ci(){Gu.push(Xn),Xn=!1}function di(){const t=Gu.pop();Xn=t===void 0?!0:t}function El(t){const{cleanup:i}=t;if(t.cleanup=void 0,i){const s=xt;xt=void 0;try{i()}finally{xt=s}}}let Ws=0;class Ad{constructor(i,s){this.sub=i,this.dep=s,this.version=s.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class sl{constructor(i){this.computed=i,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(i){if(!xt||!Xn||xt===this.computed)return;let s=this.activeLink;if(s===void 0||s.sub!==xt)s=this.activeLink=new Ad(xt,this),xt.deps?(s.prevDep=xt.depsTail,xt.depsTail.nextDep=s,xt.depsTail=s):xt.deps=xt.depsTail=s,qu(s);else if(s.version===-1&&(s.version=this.version,s.nextDep)){const l=s.nextDep;l.prevDep=s.prevDep,s.prevDep&&(s.prevDep.nextDep=l),s.prevDep=xt.depsTail,s.nextDep=void 0,xt.depsTail.nextDep=s,xt.depsTail=s,xt.deps===s&&(xt.deps=l)}return s}trigger(i){this.version++,Ws++,this.notify(i)}notify(i){nl();try{for(let s=this.subs;s;s=s.prevSub)s.sub.notify()&&s.sub.dep.notify()}finally{il()}}}function qu(t){if(t.dep.sc++,t.sub.flags&4){const i=t.dep.computed;if(i&&!t.dep.subs){i.flags|=20;for(let l=i.deps;l;l=l.nextDep)qu(l)}const s=t.dep.subs;s!==t&&(t.prevSub=s,s&&(s.nextSub=t)),t.dep.subs=t}}const Nr=new WeakMap,Ao=Symbol(""),Dr=Symbol(""),Ks=Symbol("");function on(t,i,s){if(Xn&&xt){let l=Nr.get(t);l||Nr.set(t,l=new Map);let u=l.get(s);u||(l.set(s,u=new sl),u.map=l,u.key=s),u.track()}}function Li(t,i,s,l,u,f){const h=Nr.get(t);if(!h){Ws++;return}const _=y=>{y&&y.trigger()};if(nl(),i==="clear")h.forEach(_);else{const y=$e(t),C=y&&el(s);if(y&&s==="length"){const T=Number(l);h.forEach((M,H)=>{(H==="length"||H===Ks||!Qn(H)&&H>=T)&&_(M)})}else switch((s!==void 0||h.has(void 0))&&_(h.get(s)),C&&_(h.get(Ks)),i){case"add":y?C&&_(h.get("length")):(_(h.get(Ao)),ts(t)&&_(h.get(Dr)));break;case"delete":y||(_(h.get(Ao)),ts(t)&&_(h.get(Dr)));break;case"set":ts(t)&&_(h.get(Ao));break}}il()}function Xo(t){const i=ut(t);return i===t?i:(on(i,"iterate",Ks),Vn(t)?i:i.map(ei))}function Ya(t){return on(t=ut(t),"iterate",Ks),t}function ai(t,i){return Ei(t)?as(Mo(t)?ei(i):i):ei(i)}const Md={__proto__:null,[Symbol.iterator](){return Sr(this,Symbol.iterator,t=>ai(this,t))},concat(...t){return Xo(this).concat(...t.map(i=>$e(i)?Xo(i):i))},entries(){return Sr(this,"entries",t=>(t[1]=ai(this,t[1]),t))},every(t,i){return Si(this,"every",t,i,void 0,arguments)},filter(t,i){return Si(this,"filter",t,i,s=>s.map(l=>ai(this,l)),arguments)},find(t,i){return Si(this,"find",t,i,s=>ai(this,s),arguments)},findIndex(t,i){return Si(this,"findIndex",t,i,void 0,arguments)},findLast(t,i){return Si(this,"findLast",t,i,s=>ai(this,s),arguments)},findLastIndex(t,i){return Si(this,"findLastIndex",t,i,void 0,arguments)},forEach(t,i){return Si(this,"forEach",t,i,void 0,arguments)},includes(...t){return Tr(this,"includes",t)},indexOf(...t){return Tr(this,"indexOf",t)},join(t){return Xo(this).join(t)},lastIndexOf(...t){return Tr(this,"lastIndexOf",t)},map(t,i){return Si(this,"map",t,i,void 0,arguments)},pop(){return Es(this,"pop")},push(...t){return Es(this,"push",t)},reduce(t,...i){return Ol(this,"reduce",t,i)},reduceRight(t,...i){return Ol(this,"reduceRight",t,i)},shift(){return Es(this,"shift")},some(t,i){return Si(this,"some",t,i,void 0,arguments)},splice(...t){return Es(this,"splice",t)},toReversed(){return Xo(this).toReversed()},toSorted(t){return Xo(this).toSorted(t)},toSpliced(...t){return Xo(this).toSpliced(...t)},unshift(...t){return Es(this,"unshift",t)},values(){return Sr(this,"values",t=>ai(this,t))}};function Sr(t,i,s){const l=Ya(t),u=l[i]();return l!==t&&!Vn(t)&&(u._next=u.next,u.next=()=>{const f=u._next();return f.done||(f.value=s(f.value)),f}),u}const Ed=Array.prototype;function Si(t,i,s,l,u,f){const h=Ya(t),_=h!==t&&!Vn(t),y=h[i];if(y!==Ed[i]){const M=y.apply(t,f);return _?ei(M):M}let C=s;h!==t&&(_?C=function(M,H){return s.call(this,ai(t,M),H,t)}:s.length>2&&(C=function(M,H){return s.call(this,M,H,t)}));const T=y.call(h,C,l);return _&&u?u(T):T}function Ol(t,i,s,l){const u=Ya(t),f=u!==t&&!Vn(t);let h=s,_=!1;u!==t&&(f?(_=l.length===0,h=function(C,T,M){return _&&(_=!1,C=ai(t,C)),s.call(this,C,ai(t,T),M,t)}):s.length>3&&(h=function(C,T,M){return s.call(this,C,T,M,t)}));const y=u[i](h,...l);return _?ai(t,y):y}function Tr(t,i,s){const l=ut(t);on(l,"iterate",Ks);const u=l[i](...s);return(u===-1||u===!1)&&ll(s[0])?(s[0]=ut(s[0]),l[i](...s)):u}function Es(t,i,s=[]){ci(),nl();const l=ut(t)[i].apply(t,s);return il(),di(),l}const Od=Xr("__proto__,__v_isRef,__isVue"),Yu=new Set(Object.getOwnPropertyNames(Symbol).filter(t=>t!=="arguments"&&t!=="caller").map(t=>Symbol[t]).filter(Qn));function zd(t){Qn(t)||(t=String(t));const i=ut(this);return on(i,"has",t),i.hasOwnProperty(t)}class Ju{constructor(i=!1,s=!1){this._isReadonly=i,this._isShallow=s}get(i,s,l){if(s==="__v_skip")return i.__v_skip;const u=this._isReadonly,f=this._isShallow;if(s==="__v_isReactive")return!u;if(s==="__v_isReadonly")return u;if(s==="__v_isShallow")return f;if(s==="__v_raw")return l===(u?f?Zd:tc:f?ec:Qu).get(i)||Object.getPrototypeOf(i)===Object.getPrototypeOf(l)?i:void 0;const h=$e(i);if(!u){let y;if(h&&(y=Md[s]))return y;if(s==="hasOwnProperty")return zd}const _=Reflect.get(i,s,rn(i)?i:l);if((Qn(s)?Yu.has(s):Od(s))||(u||on(i,"get",s),f))return _;if(rn(_)){const y=h&&el(s)?_:_.value;return u&&dt(y)?Rr(y):y}return dt(_)?u?Rr(_):gt(_):_}}class Xu extends Ju{constructor(i=!1){super(!1,i)}set(i,s,l,u){let f=i[s];const h=$e(i)&&el(s);if(!this._isShallow){const C=Ei(f);if(!Vn(l)&&!Ei(l)&&(f=ut(f),l=ut(l)),!h&&rn(f)&&!rn(l))return C||(f.value=l),!0}const _=h?Number(s)t,Ta=t=>Reflect.getPrototypeOf(t);function Fd(t,i,s){return function(...l){const u=this.__v_raw,f=ut(u),h=ts(f),_=t==="entries"||t===Symbol.iterator&&h,y=t==="keys"&&h,C=u[t](...l),T=s?Fr:i?as:ei;return!i&&on(f,"iterate",y?Dr:Ao),Kt(Object.create(C),{next(){const{value:M,done:H}=C.next();return H?{value:M,done:H}:{value:_?[T(M[0]),T(M[1])]:T(M),done:H}}})}}function Pa(t){return function(...i){return t==="delete"?!1:t==="clear"?void 0:this}}function Rd(t,i){const s={get(u){const f=this.__v_raw,h=ut(f),_=ut(u);t||(li(u,_)&&on(h,"get",u),on(h,"get",_));const{has:y}=Ta(h),C=i?Fr:t?as:ei;if(y.call(h,u))return C(f.get(u));if(y.call(h,_))return C(f.get(_));f!==h&&f.get(u)},get size(){const u=this.__v_raw;return!t&&on(ut(u),"iterate",Ao),u.size},has(u){const f=this.__v_raw,h=ut(f),_=ut(u);return t||(li(u,_)&&on(h,"has",u),on(h,"has",_)),u===_?f.has(u):f.has(u)||f.has(_)},forEach(u,f){const h=this,_=h.__v_raw,y=ut(_),C=i?Fr:t?as:ei;return!t&&on(y,"iterate",Ao),_.forEach((T,M)=>u.call(f,C(T),C(M),h))}};return Kt(s,t?{add:Pa("add"),set:Pa("set"),delete:Pa("delete"),clear:Pa("clear")}:{add(u){const f=ut(this),h=Ta(f),_=ut(u),y=!i&&!Vn(u)&&!Ei(u)?_:u;return h.has.call(f,y)||li(u,y)&&h.has.call(f,u)||li(_,y)&&h.has.call(f,_)||(f.add(y),Li(f,"add",y,y)),this},set(u,f){!i&&!Vn(f)&&!Ei(f)&&(f=ut(f));const h=ut(this),{has:_,get:y}=Ta(h);let C=_.call(h,u);C||(u=ut(u),C=_.call(h,u));const T=y.call(h,u);return h.set(u,f),C?li(f,T)&&Li(h,"set",u,f):Li(h,"add",u,f),this},delete(u){const f=ut(this),{has:h,get:_}=Ta(f);let y=h.call(f,u);y||(u=ut(u),y=h.call(f,u)),_&&_.call(f,u);const C=f.delete(u);return y&&Li(f,"delete",u,void 0),C},clear(){const u=ut(this),f=u.size!==0,h=u.clear();return f&&Li(u,"clear",void 0,void 0),h}}),["keys","values","entries",Symbol.iterator].forEach(u=>{s[u]=Fd(u,t,i)}),s}function al(t,i){const s=Rd(t,i);return(l,u,f)=>u==="__v_isReactive"?!t:u==="__v_isReadonly"?t:u==="__v_raw"?l:Reflect.get(ct(s,u)&&u in l?s:l,u,f)}const Bd={get:al(!1,!1)},Ud={get:al(!1,!0)},Vd={get:al(!0,!1)};const Qu=new WeakMap,ec=new WeakMap,tc=new WeakMap,Zd=new WeakMap;function Hd(t){switch(t){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function gt(t){return Ei(t)?t:rl(t,!1,Id,Bd,Qu)}function jd(t){return rl(t,!1,Dd,Ud,ec)}function Rr(t){return rl(t,!0,Nd,Vd,tc)}function rl(t,i,s,l,u){if(!dt(t)||t.__v_raw&&!(i&&t.__v_isReactive)||t.__v_skip||!Object.isExtensible(t))return t;const f=u.get(t);if(f)return f;const h=Hd(md(t));if(h===0)return t;const _=new Proxy(t,h===2?l:s);return u.set(t,_),_}function Mo(t){return Ei(t)?Mo(t.__v_raw):!!(t&&t.__v_isReactive)}function Ei(t){return!!(t&&t.__v_isReadonly)}function Vn(t){return!!(t&&t.__v_isShallow)}function ll(t){return t?!!t.__v_raw:!1}function ut(t){const i=t&&t.__v_raw;return i?ut(i):t}function Wd(t){return!ct(t,"__v_skip")&&Object.isExtensible(t)&&Fu(t,"__v_skip",!0),t}const ei=t=>dt(t)?gt(t):t,as=t=>dt(t)?Rr(t):t;function rn(t){return t?t.__v_isRef===!0:!1}function Y(t){return Kd(t,!1)}function Kd(t,i){return rn(t)?t:new Gd(t,i)}class Gd{constructor(i,s){this.dep=new sl,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=s?i:ut(i),this._value=s?i:ei(i),this.__v_isShallow=s}get value(){return this.dep.track(),this._value}set value(i){const s=this._rawValue,l=this.__v_isShallow||Vn(i)||Ei(i);i=l?i:ut(i),li(i,s)&&(this._rawValue=i,this._value=l?i:ei(i),this.dep.trigger())}}function Ee(t){return rn(t)?t.value:t}const qd={get:(t,i,s)=>i==="__v_raw"?t:Ee(Reflect.get(t,i,s)),set:(t,i,s,l)=>{const u=t[i];return rn(u)&&!rn(s)?(u.value=s,!0):Reflect.set(t,i,s,l)}};function nc(t){return Mo(t)?t:new Proxy(t,qd)}class Yd{constructor(i,s,l){this.fn=i,this.setter=s,this._value=void 0,this.dep=new sl(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Ws-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!s,this.isSSR=l}notify(){if(this.flags|=16,!(this.flags&8)&&xt!==this)return Hu(this,!0),!0}get value(){const i=this.dep.track();return Ku(this),i&&(i.version=this.dep.version),this._value}set value(i){this.setter&&this.setter(i)}}function Jd(t,i,s=!1){let l,u;return je(t)?l=t:(l=t.get,u=t.set),new Yd(l,u,s)}const Ca={},za=new WeakMap;let Po;function Xd(t,i=!1,s=Po){if(s){let l=za.get(s);l||za.set(s,l=[]),l.push(t)}}function Qd(t,i,s=vt){const{immediate:l,deep:u,once:f,scheduler:h,augmentJob:_,call:y}=s,C=de=>u?de:Vn(de)||u===!1||u===0?Ai(de,1):Ai(de);let T,M,H,j,K=!1,F=!1;if(rn(t)?(M=()=>t.value,K=Vn(t)):Mo(t)?(M=()=>C(t),K=!0):$e(t)?(F=!0,K=t.some(de=>Mo(de)||Vn(de)),M=()=>t.map(de=>{if(rn(de))return de.value;if(Mo(de))return C(de);if(je(de))return y?y(de,2):de()})):je(t)?i?M=y?()=>y(t,2):t:M=()=>{if(H){ci();try{H()}finally{di()}}const de=Po;Po=T;try{return y?y(t,3,[j]):t(j)}finally{Po=de}}:M=ui,i&&u){const de=M,Fe=u===!0?1/0:u;M=()=>Ai(de(),Fe)}const te=Cd(),X=()=>{T.stop(),te&&te.active&&Qr(te.effects,T)};if(f&&i){const de=i;i=(...Fe)=>{const Oe=de(...Fe);return X(),Oe}}let fe=F?new Array(t.length).fill(Ca):Ca;const Se=de=>{if(!(!(T.flags&1)||!T.dirty&&!de))if(i){const Fe=T.run();if(de||u||K||(F?Fe.some((Oe,Te)=>li(Oe,fe[Te])):li(Fe,fe))){H&&H();const Oe=Po;Po=T;try{const Te=[Fe,fe===Ca?void 0:F&&fe[0]===Ca?[]:fe,j];fe=Fe,y?y(i,3,Te):i(...Te)}finally{Po=Oe}}}else T.run()};return _&&_(Se),T=new Vu(M),T.scheduler=h?()=>h(Se,!1):Se,j=de=>Xd(de,!1,T),H=T.onStop=()=>{const de=za.get(T);if(de){if(y)y(de,4);else for(const Fe of de)Fe();za.delete(T)}},i?l?Se(!0):fe=T.run():h?h(Se.bind(null,!0),!0):T.run(),X.pause=T.pause.bind(T),X.resume=T.resume.bind(T),X.stop=X,X}function Ai(t,i=1/0,s){if(i<=0||!dt(t)||t.__v_skip||(s=s||new Map,(s.get(t)||0)>=i))return t;if(s.set(t,i),i--,rn(t))Ai(t.value,i,s);else if($e(t))for(let l=0;l{Ai(l,i,s)});else if(Nu(t)){for(const l in t)Ai(t[l],i,s);for(const l of Object.getOwnPropertySymbols(t))Object.prototype.propertyIsEnumerable.call(t,l)&&Ai(t[l],i,s)}return t}/** +* @vue/runtime-core v3.5.39 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function ta(t,i,s,l){try{return l?t(...l):t()}catch(u){Ja(u,i,s)}}function Hn(t,i,s,l){if(je(t)){const u=ta(t,i,s,l);return u&&$u(u)&&u.catch(f=>{Ja(f,i,s)}),u}if($e(t)){const u=[];for(let f=0;f>>1,u=fn[l],f=Gs(u);f=Gs(s)?fn.push(t):fn.splice(tf(i),0,t),t.flags|=1,sc()}}function sc(){$a||($a=ic.then(rc))}function nf(t){$e(t)?ns.push(...t):Ji&&t.id===-1?Ji.splice(Qo+1,0,t):t.flags&1||(ns.push(t),t.flags|=1),sc()}function zl(t,i,s=si+1){for(;sGs(s)-Gs(l));if(ns.length=0,Ji){Ji.push(...i);return}for(Ji=i,Qo=0;Qot.id==null?t.flags&2?-1:1/0:t.id;function rc(t){try{for(si=0;si{l._d&&Fa(-1);const f=Ia(i);let h;try{h=t(...u)}finally{Ia(f),l._d&&Fa(1)}return h};return l._n=!0,l._c=!0,l._d=!0,l}function ie(t,i){if(an===null)return t;const s=nr(an),l=t.dirs||(t.dirs=[]);for(let u=0;u1)return s&&je(i)?i.call(l&&l.proxy):i}}const of=Symbol.for("v-scx"),sf=()=>Vs(of);function Bt(t,i,s){return cc(t,i,s)}function cc(t,i,s=vt){const{immediate:l,deep:u,flush:f,once:h}=s,_=Kt({},s),y=i&&l||!i&&f!=="post";let C;if(Xs){if(f==="sync"){const j=sf();C=j.__watcherHandles||(j.__watcherHandles=[])}else if(!y){const j=()=>{};return j.stop=ui,j.resume=ui,j.pause=ui,j}}const T=hn;_.call=(j,K,F)=>Hn(j,T,K,F);let M=!1;f==="post"?_.scheduler=j=>{dn(j,T&&T.suspense)}:f!=="sync"&&(M=!0,_.scheduler=(j,K)=>{K?j():ul(j)}),_.augmentJob=j=>{i&&(j.flags|=4),M&&(j.flags|=2,T&&(j.id=T.uid,j.i=T))};const H=Qd(t,i,_);return Xs&&(C?C.push(H):y&&H()),H}function af(t,i,s){const l=this.proxy,u=Tt(t)?t.includes(".")?dc(l,t):()=>l[t]:t.bind(l,l);let f;je(i)?f=i:(f=i.handler,s=i);const h=na(this),_=cc(u,f.bind(l),s);return h(),_}function dc(t,i){const s=i.split(".");return()=>{let l=t;for(let u=0;ut.__isTeleport,Co=t=>t&&(t.disabled||t.disabled===""),rf=t=>t&&(t.defer||t.defer===""),$l=t=>typeof SVGElement<"u"&&t instanceof SVGElement,Il=t=>typeof MathMLElement=="function"&&t instanceof MathMLElement,Br=(t,i)=>{const s=t&&t.to;return Tt(s)?i?i(s):null:s},lf={name:"Teleport",__isTeleport:!0,process(t,i,s,l,u,f,h,_,y,C){const{mc:T,pc:M,pbc:H,o:{insert:j,querySelector:K,createText:F,createComment:te,parentNode:X}}=C,fe=Co(i.props);let{dynamicChildren:Se}=i;const de=(Te,Ze,he)=>{Te.shapeFlag&16&&T(Te.children,Ze,he,u,f,h,_,y)},Fe=(Te=i)=>{const Ze=Co(Te.props),he=Te.target=Br(Te.props,K),Q=Ur(he,Te,F,j);he&&(h!=="svg"&&$l(he)?h="svg":h!=="mathml"&&Il(he)&&(h="mathml"),u&&u.isCE&&(u.ce._teleportTargets||(u.ce._teleportTargets=new Set)).add(he),Ze||(de(Te,he,Q),Is(Te,!1)))},Oe=Te=>{const Ze=()=>{if(Yi.get(Te)===Ze){if(Yi.delete(Te),Co(Te.props)){const he=X(Te.el)||s;de(Te,he,Te.anchor),Is(Te,!0)}Fe(Te)}};Yi.set(Te,Ze),dn(Ze,f)};if(t==null){const Te=i.el=F(""),Ze=i.anchor=F("");if(j(Te,s,l),j(Ze,s,l),rf(i.props)||f&&f.pendingBranch){Oe(i);return}fe&&(de(i,s,Ze),Is(i,!0)),Fe()}else{i.el=t.el;const Te=i.anchor=t.anchor,Ze=Yi.get(t);if(Ze){Ze.flags|=8,Yi.delete(t),Oe(i);return}i.targetStart=t.targetStart;const he=i.target=t.target,Q=i.targetAnchor=t.targetAnchor,B=Co(t.props),O=B?s:he,N=B?Te:Q;if(h==="svg"||$l(he)?h="svg":(h==="mathml"||Il(he))&&(h="mathml"),Se?(H(t.dynamicChildren,Se,O,u,f,h,_),fl(t,i,!0)):y||M(t,i,O,N,u,f,h,_,!1),fe)B?i.props&&t.props&&i.props.to!==t.props.to&&(i.props.to=t.props.to):La(i,s,Te,C,1);else if((i.props&&i.props.to)!==(t.props&&t.props.to)){const $=Br(i.props,K);$&&(i.target=$,La(i,$,null,C,0))}else B&&La(i,he,Q,C,1);Is(i,fe)}},remove(t,i,s,{um:l,o:{remove:u}},f){const{shapeFlag:h,children:_,anchor:y,targetStart:C,targetAnchor:T,target:M,props:H}=t,j=Co(H),K=f||!j,F=Yi.get(t);if(F&&(F.flags|=8,Yi.delete(t)),M&&(u(C),u(T)),f&&u(y),!F&&(j||M)&&h&16)for(let te=0;te<_.length;te++){const X=_[te];l(X,i,s,K,!!X.dynamicChildren)}},move:La,hydrate:uf};function La(t,i,s,{o:{insert:l},m:u},f=2){f===0&&l(t.targetAnchor,i,s);const{el:h,anchor:_,shapeFlag:y,children:C,props:T}=t,M=f===2;if(M&&l(h,i,s),!Yi.has(t)&&(!M||Co(T))&&y&16)for(let H=0;H{t.isMounted=!0}),us(()=>{t.isUnmounting=!0}),t}const Bn=[Function,Array],pc={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Bn,onEnter:Bn,onAfterEnter:Bn,onEnterCancelled:Bn,onBeforeLeave:Bn,onLeave:Bn,onAfterLeave:Bn,onLeaveCancelled:Bn,onBeforeAppear:Bn,onAppear:Bn,onAfterAppear:Bn,onAppearCancelled:Bn},mc=t=>{const i=t.subTree;return i.component?mc(i.component):i},ff={name:"BaseTransition",props:pc,setup(t,{slots:i}){const s=Uc(),l=df();return()=>{const u=i.default&&_c(i.default(),!0),f=u&&u.length?gc(u):s.subTree?I():void 0;if(!f)return;const h=ut(t),{mode:_}=h;if(l.isLeaving)return Pr(f);const y=Nl(f);if(!y)return Pr(f);let C=Vr(y,h,l,s,M=>C=M);y.type!==sn&&qs(y,C);let T=s.subTree&&Nl(s.subTree);if(T&&T.type!==sn&&!Lo(T,y)&&mc(s).type!==sn){let M=Vr(T,h,l,s);if(qs(T,M),_==="out-in"&&y.type!==sn)return l.isLeaving=!0,M.afterLeave=()=>{l.isLeaving=!1,s.job.flags&8||s.update(),delete M.afterLeave,T=void 0},Pr(f);_==="in-out"&&y.type!==sn?M.delayLeave=(H,j,K)=>{const F=vc(l,T);F[String(T.key)]=T,H[Un]=()=>{j(),H[Un]=void 0,delete C.delayedLeave,T=void 0},C.delayedLeave=()=>{K(),delete C.delayedLeave,T=void 0}}:T=void 0}else T&&(T=void 0);return f}}};function gc(t){let i=t[0];if(t.length>1){for(const s of t)if(s.type!==sn){i=s;break}}return i}const hf=ff;function vc(t,i){const{leavingVNodes:s}=t;let l=s.get(i.type);return l||(l=Object.create(null),s.set(i.type,l)),l}function Vr(t,i,s,l,u){const{appear:f,mode:h,persisted:_=!1,onBeforeEnter:y,onEnter:C,onAfterEnter:T,onEnterCancelled:M,onBeforeLeave:H,onLeave:j,onAfterLeave:K,onLeaveCancelled:F,onBeforeAppear:te,onAppear:X,onAfterAppear:fe,onAppearCancelled:Se}=i,de=String(t.key),Fe=vc(s,t),Oe=(he,Q)=>{he&&Hn(he,l,9,Q)},Te=(he,Q)=>{const B=Q[1];Oe(he,Q),$e(he)?he.every(O=>O.length<=1)&&B():he.length<=1&&B()},Ze={mode:h,persisted:_,beforeEnter(he){let Q=y;if(!s.isMounted)if(f)Q=te||y;else return;he[Un]&&he[Un](!0);const B=Fe[de];B&&Lo(t,B)&&B.el[Un]&&B.el[Un](),Oe(Q,[he])},enter(he){if(Fe[de]===t)return;let Q=C,B=T,O=M;if(!s.isMounted)if(f)Q=X||C,B=fe||T,O=Se||M;else return;let N=!1;he[Os]=Ye=>{N||(N=!0,Ye?Oe(O,[he]):Oe(B,[he]),Ze.delayedLeave&&Ze.delayedLeave(),he[Os]=void 0)};const $=he[Os].bind(null,!1);Q?Te(Q,[he,$]):$()},leave(he,Q){const B=String(t.key);if(he[Os]&&he[Os](!0),s.isUnmounting)return Q();Oe(H,[he]);let O=!1;he[Un]=$=>{O||(O=!0,Q(),$?Oe(F,[he]):Oe(K,[he]),he[Un]=void 0,Fe[B]===t&&delete Fe[B])};const N=he[Un].bind(null,!1);Fe[B]=t,j?Te(j,[he,N]):N()},clone(he){const Q=Vr(he,i,s,l,u);return u&&u(Q),Q}};return Ze}function Pr(t){if(Xa(t))return t=Qi(t),t.children=null,t}function Nl(t){if(!Xa(t))return hc(t.type)&&t.children?gc(t.children):t;if(t.component)return t.component.subTree;const{shapeFlag:i,children:s}=t;if(s){if(i&16)return s[0];if(i&32&&je(s.default))return s.default()}}function qs(t,i){t.shapeFlag&6&&t.component?(t.transition=i,qs(t.component.subTree,i)):t.shapeFlag&128?(t.ssContent.transition=i.clone(t.ssContent),t.ssFallback.transition=i.clone(t.ssFallback)):t.transition=i}function _c(t,i=!1,s){let l=[],u=0;for(let f=0;f1)for(let f=0;fZs(F,i&&($e(i)?i[te]:i),s,l,u));return}if(is(l)&&!u){l.shapeFlag&512&&l.type.__asyncResolved&&l.component.subTree.component&&Zs(t,i,s,l.component.subTree);return}const f=l.shapeFlag&4?nr(l.component):l.el,h=u?null:f,{i:_,r:y}=t,C=i&&i.r,T=_.refs===vt?_.refs={}:_.refs,M=_.setupState,H=ut(M),j=M===vt?zu:F=>Dl(T,F)?!1:ct(H,F),K=(F,te)=>!(te&&Dl(T,te));if(C!=null&&C!==y){if(Fl(i),Tt(C))T[C]=null,j(C)&&(M[C]=null);else if(rn(C)){const F=i;K(C,F.k)&&(C.value=null),F.k&&(T[F.k]=null)}}if(je(y)){ci();try{ta(y,_,12,[h,T])}finally{di()}}else{const F=Tt(y),te=rn(y);if(F||te){const X=()=>{if(t.f){const fe=F?j(y)?M[y]:T[y]:K()||!t.k?y.value:T[t.k];if(u)$e(fe)&&Qr(fe,f);else if($e(fe))fe.includes(f)||fe.push(f);else if(F)T[y]=[f],j(y)&&(M[y]=T[y]);else{const Se=[f];K(y,t.k)&&(y.value=Se),t.k&&(T[t.k]=Se)}}else F?(T[y]=h,j(y)&&(M[y]=h)):te&&(K(y,t.k)&&(y.value=h),t.k&&(T[t.k]=h))};if(h){const fe=()=>{X(),Na.delete(t)};fe.id=-1,Na.set(t,fe),dn(fe,s)}else Fl(t),X()}}}function Fl(t){const i=Na.get(t);i&&(i.flags|=8,Na.delete(t))}qa().requestIdleCallback;qa().cancelIdleCallback;const is=t=>!!t.type.__asyncLoader,Xa=t=>t.type.__isKeepAlive;function pf(t,i){yc(t,"a",i)}function mf(t,i){yc(t,"da",i)}function yc(t,i,s=hn){const l=t.__wdc||(t.__wdc=()=>{let u=s;for(;u;){if(u.isDeactivated)return;u=u.parent}return t()});if(Qa(i,l,s),s){let u=s.parent;for(;u&&u.parent;)Xa(u.parent.vnode)&&gf(l,i,s,u),u=u.parent}}function gf(t,i,s,l){const u=Qa(i,t,l,!0);xc(()=>{Qr(l[i],u)},s)}function Qa(t,i,s=hn,l=!1){if(s){const u=s[t]||(s[t]=[]),f=i.__weh||(i.__weh=(...h)=>{ci();const _=na(s),y=Hn(i,s,t,h);return _(),di(),y});return l?u.unshift(f):u.push(f),f}}const Oi=t=>(i,s=hn)=>{(!Xs||t==="sp")&&Qa(t,(...l)=>i(...l),s)},vf=Oi("bm"),fi=Oi("m"),_f=Oi("bu"),bf=Oi("u"),us=Oi("bum"),xc=Oi("um"),yf=Oi("sp"),xf=Oi("rtg"),wf=Oi("rtc");function kf(t,i=hn){Qa("ec",t,i)}const Sf=Symbol.for("v-ndc");function Ie(t,i,s,l){let u;const f=s,h=$e(t);if(h||Tt(t)){const _=h&&Mo(t);let y=!1,C=!1;_&&(y=!Vn(t),C=Ei(t),t=Ya(t)),u=new Array(t.length);for(let T=0,M=t.length;Ti(_,y,void 0,f));else{const _=Object.keys(t);u=new Array(_.length);for(let y=0,C=_.length;y0;return p(),nt(le,null,[A("slot",s,l)],C?-2:64)}let f=t[i];f&&f._c&&(f._d=!1),p();const h=f&&wc(f(s)),_=s.key||h&&h.key,y=nt(le,{key:(_&&!Qn(_)?_:`_${i}`)+(!h&&l?"_fb":"")},h||[],h&&t._===1?64:-2);return y.scopeId&&(y.slotScopeIds=[y.scopeId+"-s"]),f&&f._c&&(f._d=!0),y}function wc(t){return t.some(i=>Js(i)?!(i.type===sn||i.type===le&&!wc(i.children)):!0)?t:null}const Zr=t=>t?Vc(t)?nr(t):Zr(t.parent):null,Hs=Kt(Object.create(null),{$:t=>t,$el:t=>t.vnode.el,$data:t=>t.data,$props:t=>t.props,$attrs:t=>t.attrs,$slots:t=>t.slots,$refs:t=>t.refs,$parent:t=>Zr(t.parent),$root:t=>Zr(t.root),$host:t=>t.ce,$emit:t=>t.emit,$options:t=>Sc(t),$forceUpdate:t=>t.f||(t.f=()=>{ul(t.update)}),$nextTick:t=>t.n||(t.n=oc.bind(t.proxy)),$watch:t=>af.bind(t)}),Cr=(t,i)=>t!==vt&&!t.__isScriptSetup&&ct(t,i),Pf={get({_:t},i){if(i==="__v_skip")return!0;const{ctx:s,setupState:l,data:u,props:f,accessCache:h,type:_,appContext:y}=t;if(i[0]!=="$"){const H=h[i];if(H!==void 0)switch(H){case 1:return l[i];case 2:return u[i];case 4:return s[i];case 3:return f[i]}else{if(Cr(l,i))return h[i]=1,l[i];if(u!==vt&&ct(u,i))return h[i]=2,u[i];if(ct(f,i))return h[i]=3,f[i];if(s!==vt&&ct(s,i))return h[i]=4,s[i];Hr&&(h[i]=0)}}const C=Hs[i];let T,M;if(C)return i==="$attrs"&&on(t.attrs,"get",""),C(t);if((T=_.__cssModules)&&(T=T[i]))return T;if(s!==vt&&ct(s,i))return h[i]=4,s[i];if(M=y.config.globalProperties,ct(M,i))return M[i]},set({_:t},i,s){const{data:l,setupState:u,ctx:f}=t;return Cr(u,i)?(u[i]=s,!0):l!==vt&&ct(l,i)?(l[i]=s,!0):ct(t.props,i)||i[0]==="$"&&i.slice(1)in t?!1:(f[i]=s,!0)},has({_:{data:t,setupState:i,accessCache:s,ctx:l,appContext:u,props:f,type:h}},_){let y;return!!(s[_]||t!==vt&&_[0]!=="$"&&ct(t,_)||Cr(i,_)||ct(f,_)||ct(l,_)||ct(Hs,_)||ct(u.config.globalProperties,_)||(y=h.__cssModules)&&y[_])},defineProperty(t,i,s){return s.get!=null?t._.accessCache[i]=0:ct(s,"value")&&this.set(t,i,s.value,null),Reflect.defineProperty(t,i,s)}};function Rl(t){return $e(t)?t.reduce((i,s)=>(i[s]=null,i),{}):t}let Hr=!0;function Cf(t){const i=Sc(t),s=t.proxy,l=t.ctx;Hr=!1,i.beforeCreate&&Bl(i.beforeCreate,t,"bc");const{data:u,computed:f,methods:h,watch:_,provide:y,inject:C,created:T,beforeMount:M,mounted:H,beforeUpdate:j,updated:K,activated:F,deactivated:te,beforeDestroy:X,beforeUnmount:fe,destroyed:Se,unmounted:de,render:Fe,renderTracked:Oe,renderTriggered:Te,errorCaptured:Ze,serverPrefetch:he,expose:Q,inheritAttrs:B,components:O,directives:N,filters:$}=i;if(C&&Lf(C,l,null),h)for(const ge in h){const ue=h[ge];je(ue)&&(l[ge]=ue.bind(s))}if(u){const ge=u.call(s,s);dt(ge)&&(t.data=gt(ge))}if(Hr=!0,f)for(const ge in f){const ue=f[ge],ft=je(ue)?ue.bind(s,s):je(ue.get)?ue.get.bind(s,s):ui,pe=!je(ue)&&je(ue.set)?ue.set.bind(s):ui,Ue=ce({get:ft,set:pe});Object.defineProperty(l,ge,{enumerable:!0,configurable:!0,get:()=>Ue.value,set:Ve=>Ue.value=Ve})}if(_)for(const ge in _)kc(_[ge],l,s,ge);if(y){const ge=je(y)?y.call(s):y;Reflect.ownKeys(ge).forEach(ue=>{uc(ue,ge[ue])})}T&&Bl(T,t,"c");function we(ge,ue){$e(ue)?ue.forEach(ft=>ge(ft.bind(s))):ue&&ge(ue.bind(s))}if(we(vf,M),we(fi,H),we(_f,j),we(bf,K),we(pf,F),we(mf,te),we(kf,Ze),we(wf,Oe),we(xf,Te),we(us,fe),we(xc,de),we(yf,he),$e(Q))if(Q.length){const ge=t.exposed||(t.exposed={});Q.forEach(ue=>{Object.defineProperty(ge,ue,{get:()=>s[ue],set:ft=>s[ue]=ft,enumerable:!0})})}else t.exposed||(t.exposed={});Fe&&t.render===ui&&(t.render=Fe),B!=null&&(t.inheritAttrs=B),O&&(t.components=O),N&&(t.directives=N),he&&bc(t)}function Lf(t,i,s=ui){$e(t)&&(t=jr(t));for(const l in t){const u=t[l];let f;dt(u)?"default"in u?f=Vs(u.from||l,u.default,!0):f=Vs(u.from||l):f=Vs(u),rn(f)?Object.defineProperty(i,l,{enumerable:!0,configurable:!0,get:()=>f.value,set:h=>f.value=h}):i[l]=f}}function Bl(t,i,s){Hn($e(t)?t.map(l=>l.bind(i.proxy)):t.bind(i.proxy),i,s)}function kc(t,i,s,l){let u=l.includes(".")?dc(s,l):()=>s[l];if(Tt(t)){const f=i[t];je(f)&&Bt(u,f)}else if(je(t))Bt(u,t.bind(s));else if(dt(t))if($e(t))t.forEach(f=>kc(f,i,s,l));else{const f=je(t.handler)?t.handler.bind(s):i[t.handler];je(f)&&Bt(u,f,t)}}function Sc(t){const i=t.type,{mixins:s,extends:l}=i,{mixins:u,optionsCache:f,config:{optionMergeStrategies:h}}=t.appContext,_=f.get(i);let y;return _?y=_:!u.length&&!s&&!l?y=i:(y={},u.length&&u.forEach(C=>Da(y,C,h,!0)),Da(y,i,h)),dt(i)&&f.set(i,y),y}function Da(t,i,s,l=!1){const{mixins:u,extends:f}=i;f&&Da(t,f,s,!0),u&&u.forEach(h=>Da(t,h,s,!0));for(const h in i)if(!(l&&h==="expose")){const _=Af[h]||s&&s[h];t[h]=_?_(t[h],i[h]):i[h]}return t}const Af={data:Ul,props:Vl,emits:Vl,methods:Ns,computed:Ns,beforeCreate:cn,created:cn,beforeMount:cn,mounted:cn,beforeUpdate:cn,updated:cn,beforeDestroy:cn,beforeUnmount:cn,destroyed:cn,unmounted:cn,activated:cn,deactivated:cn,errorCaptured:cn,serverPrefetch:cn,components:Ns,directives:Ns,watch:Ef,provide:Ul,inject:Mf};function Ul(t,i){return i?t?function(){return Kt(je(t)?t.call(this,this):t,je(i)?i.call(this,this):i)}:i:t}function Mf(t,i){return Ns(jr(t),jr(i))}function jr(t){if($e(t)){const i={};for(let s=0;si==="modelValue"||i==="model-value"?t.modelModifiers:t[`${i}Modifiers`]||t[`${Jn(i)}Modifiers`]||t[`${to(i)}Modifiers`];function If(t,i,...s){if(t.isUnmounted)return;const l=t.vnode.props||vt;let u=s;const f=i.startsWith("update:"),h=f&&$f(l,i.slice(7));h&&(h.trim&&(u=s.map(T=>Tt(T)?T.trim():T)),h.number&&(u=s.map(Ga)));let _,y=l[_=xr(i)]||l[_=xr(Jn(i))];!y&&f&&(y=l[_=xr(to(i))]),y&&Hn(y,t,6,u);const C=l[_+"Once"];if(C){if(!t.emitted)t.emitted={};else if(t.emitted[_])return;t.emitted[_]=!0,Hn(C,t,6,u)}}const Nf=new WeakMap;function Pc(t,i,s=!1){const l=s?Nf:i.emitsCache,u=l.get(t);if(u!==void 0)return u;const f=t.emits;let h={},_=!1;if(!je(t)){const y=C=>{const T=Pc(C,i,!0);T&&(_=!0,Kt(h,T))};!s&&i.mixins.length&&i.mixins.forEach(y),t.extends&&y(t.extends),t.mixins&&t.mixins.forEach(y)}return!f&&!_?(dt(t)&&l.set(t,null),null):($e(f)?f.forEach(y=>h[y]=null):Kt(h,f),dt(t)&&l.set(t,h),h)}function er(t,i){return!t||!ja(i)?!1:(i=i.slice(2),i=i==="Once"?i:i.replace(/Once$/,""),ct(t,i[0].toLowerCase()+i.slice(1))||ct(t,to(i))||ct(t,i))}function Zl(t){const{type:i,vnode:s,proxy:l,withProxy:u,propsOptions:[f],slots:h,attrs:_,emit:y,render:C,renderCache:T,props:M,data:H,setupState:j,ctx:K,inheritAttrs:F}=t,te=Ia(t);let X,fe;try{if(s.shapeFlag&4){const de=u||l,Fe=de;X=ri(C.call(Fe,de,T,M,j,H,K)),fe=_}else{const de=i;X=ri(de.length>1?de(M,{attrs:_,slots:h,emit:y}):de(M,null)),fe=i.props?_:Df(_)}}catch(de){js.length=0,Ja(de,t,1),X=A(sn)}let Se=X;if(fe&&F!==!1){const de=Object.keys(fe),{shapeFlag:Fe}=Se;de.length&&Fe&7&&(f&&de.some(Wa)&&(fe=Ff(fe,f)),Se=Qi(Se,fe,!1,!0))}return s.dirs&&(Se=Qi(Se,null,!1,!0),Se.dirs=Se.dirs?Se.dirs.concat(s.dirs):s.dirs),s.transition&&qs(Se,s.transition),X=Se,Ia(te),X}const Df=t=>{let i;for(const s in t)(s==="class"||s==="style"||ja(s))&&((i||(i={}))[s]=t[s]);return i},Ff=(t,i)=>{const s={};for(const l in t)(!Wa(l)||!(l.slice(9)in i))&&(s[l]=t[l]);return s};function Rf(t,i,s){const{props:l,children:u,component:f}=t,{props:h,children:_,patchFlag:y}=i,C=f.emitsOptions;if(i.dirs||i.transition)return!0;if(s&&y>=0){if(y&1024)return!0;if(y&16)return l?Hl(l,h,C):!!h;if(y&8){const T=i.dynamicProps;for(let M=0;MObject.create(Lc),Mc=t=>Object.getPrototypeOf(t)===Lc;function Uf(t,i,s,l=!1){const u={},f=Ac();t.propsDefaults=Object.create(null),Ec(t,i,u,f);for(const h in t.propsOptions[0])h in u||(u[h]=void 0);s?t.props=l?u:jd(u):t.type.props?t.props=u:t.props=f,t.attrs=f}function Vf(t,i,s,l){const{props:u,attrs:f,vnode:{patchFlag:h}}=t,_=ut(u),[y]=t.propsOptions;let C=!1;if((l||h>0)&&!(h&16)){if(h&8){const T=t.vnode.dynamicProps;for(let M=0;M{y=!0;const[H,j]=Oc(M,i,!0);Kt(h,H),j&&_.push(...j)};!s&&i.mixins.length&&i.mixins.forEach(T),t.extends&&T(t.extends),t.mixins&&t.mixins.forEach(T)}if(!f&&!y)return dt(t)&&l.set(t,es),es;if($e(f))for(let T=0;Tt==="_"||t==="_ctx"||t==="$stable",dl=t=>$e(t)?t.map(ri):[ri(t)],Hf=(t,i,s)=>{if(i._n)return i;const l=ye((...u)=>dl(i(...u)),s);return l._c=!1,l},zc=(t,i,s)=>{const l=t._ctx;for(const u in t){if(cl(u))continue;const f=t[u];if(je(f))i[u]=Hf(u,f,l);else if(f!=null){const h=dl(f);i[u]=()=>h}}},$c=(t,i)=>{const s=dl(i);t.slots.default=()=>s},Ic=(t,i,s)=>{for(const l in i)(s||!cl(l))&&(t[l]=i[l])},jf=(t,i,s)=>{const l=t.slots=Ac();if(t.vnode.shapeFlag&32){const u=i._;u?(Ic(l,i,s),s&&Fu(l,"_",u,!0)):zc(i,l)}else i&&$c(t,i)},Wf=(t,i,s)=>{const{vnode:l,slots:u}=t;let f=!0,h=vt;if(l.shapeFlag&32){const _=i._;_?s&&_===1?f=!1:Ic(u,i,s):(f=!i.$stable,zc(i,u)),h=i}else i&&($c(t,i),h={default:1});if(f)for(const _ in u)!cl(_)&&h[_]==null&&delete u[_]},dn=Jf;function Kf(t){return Gf(t)}function Gf(t,i){const s=qa();s.__VUE__=!0;const{insert:l,remove:u,patchProp:f,createElement:h,createText:_,createComment:y,setText:C,setElementText:T,parentNode:M,nextSibling:H,setScopeId:j=ui,insertStaticContent:K}=t,F=(x,b,S,W=null,V=null,G=null,re=void 0,ae=null,oe=!!b.dynamicChildren)=>{if(x===b)return;x&&!Lo(x,b)&&(W=zt(x),Ve(x,V,G,!0),x=null),b.patchFlag===-2&&(oe=!1,b.dynamicChildren=null);const{type:ee,ref:ve,shapeFlag:se}=b;switch(ee){case tr:te(x,b,S,W);break;case sn:X(x,b,S,W);break;case Ar:x==null&&fe(b,S,W,re);break;case le:O(x,b,S,W,V,G,re,ae,oe);break;default:se&1?Fe(x,b,S,W,V,G,re,ae,oe):se&6?N(x,b,S,W,V,G,re,ae,oe):(se&64||se&128)&&ee.process(x,b,S,W,V,G,re,ae,oe,Pt)}ve!=null&&V?Zs(ve,x&&x.ref,G,b||x,!b):ve==null&&x&&x.ref!=null&&Zs(x.ref,null,G,x,!0)},te=(x,b,S,W)=>{if(x==null)l(b.el=_(b.children),S,W);else{const V=b.el=x.el;b.children!==x.children&&C(V,b.children)}},X=(x,b,S,W)=>{x==null?l(b.el=y(b.children||""),S,W):b.el=x.el},fe=(x,b,S,W)=>{[x.el,x.anchor]=K(x.children,b,S,W,x.el,x.anchor)},Se=({el:x,anchor:b},S,W)=>{let V;for(;x&&x!==b;)V=H(x),l(x,S,W),x=V;l(b,S,W)},de=({el:x,anchor:b})=>{let S;for(;x&&x!==b;)S=H(x),u(x),x=S;u(b)},Fe=(x,b,S,W,V,G,re,ae,oe)=>{if(b.type==="svg"?re="svg":b.type==="math"&&(re="mathml"),x==null)Oe(b,S,W,V,G,re,ae,oe);else{const ee=x.el&&x.el._isVueCE?x.el:null;try{ee&&ee._beginPatch(),he(x,b,V,G,re,ae,oe)}finally{ee&&ee._endPatch()}}},Oe=(x,b,S,W,V,G,re,ae)=>{let oe,ee;const{props:ve,shapeFlag:se,transition:ke,dirs:Pe}=x;if(oe=x.el=h(x.type,G,ve&&ve.is,ve),se&8?T(oe,x.children):se&16&&Ze(x.children,oe,null,W,V,Lr(x,G),re,ae),Pe&&wo(x,null,W,"created"),Te(oe,x,x.scopeId,re,W),ve){for(const Ke in ve)Ke!=="value"&&!Rs(Ke)&&f(oe,Ke,null,ve[Ke],G,W);"value"in ve&&f(oe,"value",null,ve.value,G),(ee=ve.onVnodeBeforeMount)&&oi(ee,W,x)}Pe&&wo(x,null,W,"beforeMount");const Re=qf(V,ke);Re&&ke.beforeEnter(oe),l(oe,b,S),((ee=ve&&ve.onVnodeMounted)||Re||Pe)&&dn(()=>{try{ee&&oi(ee,W,x),Re&&ke.enter(oe),Pe&&wo(x,null,W,"mounted")}finally{}},V)},Te=(x,b,S,W,V)=>{if(S&&j(x,S),W)for(let G=0;G{for(let ee=oe;ee{const ae=b.el=x.el;let{patchFlag:oe,dynamicChildren:ee,dirs:ve}=b;oe|=x.patchFlag&16;const se=x.props||vt,ke=b.props||vt;let Pe;if(S&&ko(S,!1),(Pe=ke.onVnodeBeforeUpdate)&&oi(Pe,S,b,x),ve&&wo(b,x,S,"beforeUpdate"),S&&ko(S,!0),ee&&(!x.dynamicChildren||x.dynamicChildren.length!==ee.length)&&(oe=0,re=!1,ee=null),(se.innerHTML&&ke.innerHTML==null||se.textContent&&ke.textContent==null)&&T(ae,""),ee?Q(x.dynamicChildren,ee,ae,S,W,Lr(b,V),G):re||ue(x,b,ae,null,S,W,Lr(b,V),G,!1),oe>0){if(oe&16)B(ae,se,ke,S,V);else if(oe&2&&se.class!==ke.class&&f(ae,"class",null,ke.class,V),oe&4&&f(ae,"style",se.style,ke.style,V),oe&8){const Re=b.dynamicProps;for(let Ke=0;Ke{Pe&&oi(Pe,S,b,x),ve&&wo(b,x,S,"updated")},W)},Q=(x,b,S,W,V,G,re)=>{for(let ae=0;ae{if(b!==S){if(b!==vt)for(const G in b)!Rs(G)&&!(G in S)&&f(x,G,b[G],null,V,W);for(const G in S){if(Rs(G))continue;const re=S[G],ae=b[G];re!==ae&&G!=="value"&&f(x,G,ae,re,V,W)}"value"in S&&f(x,"value",b.value,S.value,V)}},O=(x,b,S,W,V,G,re,ae,oe)=>{const ee=b.el=x?x.el:_(""),ve=b.anchor=x?x.anchor:_("");let{patchFlag:se,dynamicChildren:ke,slotScopeIds:Pe}=b;Pe&&(ae=ae?ae.concat(Pe):Pe),x==null?(l(ee,S,W),l(ve,S,W),Ze(b.children||[],S,ve,V,G,re,ae,oe)):se>0&&se&64&&ke&&x.dynamicChildren&&x.dynamicChildren.length===ke.length?(Q(x.dynamicChildren,ke,S,V,G,re,ae),(b.key!=null||V&&b===V.subTree)&&fl(x,b,!0)):ue(x,b,S,ve,V,G,re,ae,oe)},N=(x,b,S,W,V,G,re,ae,oe)=>{b.slotScopeIds=ae,x==null?b.shapeFlag&512?V.ctx.activate(b,S,W,re,oe):$(b,S,W,V,G,re,oe):Ye(x,b,oe)},$=(x,b,S,W,V,G,re)=>{const ae=x.component=oh(x,W,V);if(Xa(x)&&(ae.ctx.renderer=Pt),sh(ae,!1,re),ae.asyncDep){if(V&&V.registerDep(ae,we,re),!x.el){const oe=ae.subTree=A(sn);X(null,oe,b,S),x.placeholder=oe.el}}else we(ae,x,b,S,V,G,re)},Ye=(x,b,S)=>{const W=b.component=x.component;if(Rf(x,b,S))if(W.asyncDep&&!W.asyncResolved){ge(W,b,S);return}else W.next=b,W.update();else b.el=x.el,W.vnode=b},we=(x,b,S,W,V,G,re)=>{const ae=()=>{if(x.isMounted){let{next:se,bu:ke,u:Pe,parent:Re,vnode:Ke}=x;{const Jt=Nc(x);if(Jt){se&&(se.el=Ke.el,ge(x,se,re)),Jt.asyncDep.then(()=>{dn(()=>{x.isUnmounted||ee()},V)});return}}let Ge=se,pt;ko(x,!1),se?(se.el=Ke.el,ge(x,se,re)):se=Ke,ke&&Ea(ke),(pt=se.props&&se.props.onVnodeBeforeUpdate)&&oi(pt,Re,se,Ke),ko(x,!0);const ht=Zl(x),Vt=x.subTree;x.subTree=ht,F(Vt,ht,M(Vt.el),zt(Vt),x,V,G),se.el=ht.el,Ge===null&&Bf(x,ht.el),Pe&&dn(Pe,V),(pt=se.props&&se.props.onVnodeUpdated)&&dn(()=>oi(pt,Re,se,Ke),V)}else{let se;const{el:ke,props:Pe}=b,{bm:Re,m:Ke,parent:Ge,root:pt,type:ht}=x,Vt=is(b);ko(x,!1),Re&&Ea(Re),!Vt&&(se=Pe&&Pe.onVnodeBeforeMount)&&oi(se,Ge,b),ko(x,!0);{pt.ce&&pt.ce._hasShadowRoot()&&pt.ce._injectChildStyle(ht,x.parent?x.parent.type:void 0);const Jt=x.subTree=Zl(x);F(null,Jt,S,W,x,V,G),b.el=Jt.el}if(Ke&&dn(Ke,V),!Vt&&(se=Pe&&Pe.onVnodeMounted)){const Jt=b;dn(()=>oi(se,Ge,Jt),V)}(b.shapeFlag&256||Ge&&is(Ge.vnode)&&Ge.vnode.shapeFlag&256)&&x.a&&dn(x.a,V),x.isMounted=!0,b=S=W=null}};x.scope.on();const oe=x.effect=new Vu(ae);x.scope.off();const ee=x.update=oe.run.bind(oe),ve=x.job=oe.runIfDirty.bind(oe);ve.i=x,ve.id=x.uid,oe.scheduler=()=>ul(ve),ko(x,!0),ee()},ge=(x,b,S)=>{b.component=x;const W=x.vnode.props;x.vnode=b,x.next=null,Vf(x,b.props,W,S),Wf(x,b.children,S),ci(),zl(x),di()},ue=(x,b,S,W,V,G,re,ae,oe=!1)=>{const ee=x&&x.children,ve=x?x.shapeFlag:0,se=b.children,{patchFlag:ke,shapeFlag:Pe}=b;if(ke>0){if(ke&128){pe(ee,se,S,W,V,G,re,ae,oe);return}else if(ke&256){ft(ee,se,S,W,V,G,re,ae,oe);return}}Pe&8?(ve&16&&De(ee,V,G),se!==ee&&T(S,se)):ve&16?Pe&16?pe(ee,se,S,W,V,G,re,ae,oe):De(ee,V,G,!0):(ve&8&&T(S,""),Pe&16&&Ze(se,S,W,V,G,re,ae,oe))},ft=(x,b,S,W,V,G,re,ae,oe)=>{x=x||es,b=b||es;const ee=x.length,ve=b.length,se=Math.min(ee,ve);let ke;for(ke=0;keve?De(x,V,G,!0,!1,se):Ze(b,S,W,V,G,re,ae,oe,se)},pe=(x,b,S,W,V,G,re,ae,oe)=>{let ee=0;const ve=b.length;let se=x.length-1,ke=ve-1;for(;ee<=se&&ee<=ke;){const Pe=x[ee],Re=b[ee]=oe?Ci(b[ee]):ri(b[ee]);if(Lo(Pe,Re))F(Pe,Re,S,null,V,G,re,ae,oe);else break;ee++}for(;ee<=se&&ee<=ke;){const Pe=x[se],Re=b[ke]=oe?Ci(b[ke]):ri(b[ke]);if(Lo(Pe,Re))F(Pe,Re,S,null,V,G,re,ae,oe);else break;se--,ke--}if(ee>se){if(ee<=ke){const Pe=ke+1,Re=Peke)for(;ee<=se;)Ve(x[ee],V,G,!0),ee++;else{const Pe=ee,Re=ee,Ke=new Map;for(ee=Re;ee<=ke;ee++){const Ct=b[ee]=oe?Ci(b[ee]):ri(b[ee]);Ct.key!=null&&Ke.set(Ct.key,ee)}let Ge,pt=0;const ht=ke-Re+1;let Vt=!1,Jt=0;const Zt=new Array(ht);for(ee=0;ee=ht){Ve(Ct,V,G,!0);continue}let $t;if(Ct.key!=null)$t=Ke.get(Ct.key);else for(Ge=Re;Ge<=ke;Ge++)if(Zt[Ge-Re]===0&&Lo(Ct,b[Ge])){$t=Ge;break}$t===void 0?Ve(Ct,V,G,!0):(Zt[$t-Re]=ee+1,$t>=Jt?Jt=$t:Vt=!0,F(Ct,b[$t],S,null,V,G,re,ae,oe),pt++)}const pn=Vt?Yf(Zt):es;for(Ge=pn.length-1,ee=ht-1;ee>=0;ee--){const Ct=Re+ee,$t=b[Ct],kn=b[Ct+1],zi=Ct+1{const{el:G,type:re,transition:ae,children:oe,shapeFlag:ee}=x;if(ee&6){Ue(x.component.subTree,b,S,W);return}if(ee&128){x.suspense.move(b,S,W);return}if(ee&64){re.move(x,b,S,Pt);return}if(re===le){l(G,b,S);for(let se=0;seae.enter(G),V));else{const{leave:se,delayLeave:ke,afterLeave:Pe}=ae,Re=()=>{x.ctx.isUnmounted?u(G):l(G,b,S)},Ke=()=>{const Ge=G._isLeaving||!!G[Un];G._isLeaving&&G[Un](!0),ae.persisted&&!Ge?Re():se(G,()=>{Re(),Pe&&Pe()})};ke?ke(G,Re,Ke):Ke()}else l(G,b,S)},Ve=(x,b,S,W=!1,V=!1)=>{const{type:G,props:re,ref:ae,children:oe,dynamicChildren:ee,shapeFlag:ve,patchFlag:se,dirs:ke,cacheIndex:Pe,memo:Re}=x;if(se===-2&&(V=!1),ae!=null&&(ci(),Zs(ae,null,S,x,!0),di()),Pe!=null&&(b.renderCache[Pe]=void 0),ve&256){b.ctx.deactivate(x);return}const Ke=ve&1&&ke,Ge=!is(x);let pt;if(Ge&&(pt=re&&re.onVnodeBeforeUnmount)&&oi(pt,b,x),ve&6)Le(x.component,S,W);else{if(ve&128){x.suspense.unmount(S,W);return}Ke&&wo(x,null,b,"beforeUnmount"),ve&64?x.type.remove(x,b,S,Pt,W):ee&&!ee.hasOnce&&(G!==le||se>0&&se&64)?De(ee,b,S,!1,!0):(G===le&&se&384||!V&&ve&16)&&De(oe,b,S),W&&wt(x)}const ht=Re!=null&&Pe==null;(Ge&&(pt=re&&re.onVnodeUnmounted)||Ke||ht)&&dn(()=>{pt&&oi(pt,b,x),Ke&&wo(x,null,b,"unmounted"),ht&&(x.el=null)},S)},wt=x=>{const{type:b,el:S,anchor:W,transition:V}=x;if(b===le){st(S,W);return}if(b===Ar){de(x);return}const G=()=>{u(S),V&&!V.persisted&&V.afterLeave&&V.afterLeave()};if(x.shapeFlag&1&&V&&!V.persisted){const{leave:re,delayLeave:ae}=V,oe=()=>re(S,G);ae?ae(x.el,G,oe):oe()}else G()},st=(x,b)=>{let S;for(;x!==b;)S=H(x),u(x),x=S;u(b)},Le=(x,b,S)=>{const{bum:W,scope:V,job:G,subTree:re,um:ae,m:oe,a:ee}=x;Wl(oe),Wl(ee),W&&Ea(W),V.stop(),G&&(G.flags|=8,Ve(re,x,b,S)),ae&&dn(ae,b),dn(()=>{x.isUnmounted=!0},b)},De=(x,b,S,W=!1,V=!1,G=0)=>{for(let re=G;re{if(x.shapeFlag&6)return zt(x.component.subTree);if(x.shapeFlag&128)return x.suspense.next();const b=H(x.anchor||x.el),S=b&&b[fc];return S?H(S):b};let At=!1;const Ut=(x,b,S)=>{let W;x==null?b._vnode&&(Ve(b._vnode,null,null,!0),W=b._vnode.component):F(b._vnode||null,x,b,null,null,null,S),b._vnode=x,At||(At=!0,zl(W),ac(),At=!1)},Pt={p:F,um:Ve,m:Ue,r:wt,mt:$,mc:Ze,pc:ue,pbc:Q,n:zt,o:t};return{render:Ut,hydrate:void 0,createApp:zf(Ut)}}function Lr({type:t,props:i},s){return s==="svg"&&t==="foreignObject"||s==="mathml"&&t==="annotation-xml"&&i&&i.encoding&&i.encoding.includes("html")?void 0:s}function ko({effect:t,job:i},s){s?(t.flags|=32,i.flags|=4):(t.flags&=-33,i.flags&=-5)}function qf(t,i){return(!t||t&&!t.pendingBranch)&&i&&!i.persisted}function fl(t,i,s=!1){const l=t.children,u=i.children;if($e(l)&&$e(u))for(let f=0;f>1,t[s[_]]0&&(i[l]=s[f-1]),s[f]=l)}}for(f=s.length,h=s[f-1];f-- >0;)s[f]=h,h=i[h];return s}function Nc(t){const i=t.subTree.component;if(i)return i.asyncDep&&!i.asyncResolved?i:Nc(i)}function Wl(t){if(t)for(let i=0;it.__isSuspense;function Jf(t,i){i&&i.pendingBranch?$e(t)?i.effects.push(...t):i.effects.push(t):nf(t)}const le=Symbol.for("v-fgt"),tr=Symbol.for("v-txt"),sn=Symbol.for("v-cmt"),Ar=Symbol.for("v-stc"),js=[];let zn=null;function p(t=!1){js.push(zn=t?null:[])}function Xf(){js.pop(),zn=js[js.length-1]||null}let Ys=1;function Fa(t,i=!1){Ys+=t,t<0&&zn&&i&&(zn.hasOnce=!0)}function Rc(t){return t.dynamicChildren=Ys>0?zn||es:null,Xf(),Ys>0&&zn&&zn.push(t),t}function m(t,i,s,l,u,f){return Rc(a(t,i,s,l,u,f,!0))}function nt(t,i,s,l,u){return Rc(A(t,i,s,l,u,!0))}function Js(t){return t?t.__v_isVNode===!0:!1}function Lo(t,i){return t.type===i.type&&t.key===i.key}const Bc=({key:t})=>t??null,Oa=({ref:t,ref_key:i,ref_for:s})=>(typeof t=="number"&&(t=""+t),t!=null?Tt(t)||rn(t)||je(t)?{i:an,r:t,k:i,f:!!s}:t:null);function a(t,i=null,s=null,l=0,u=null,f=t===le?0:1,h=!1,_=!1){const y={__v_isVNode:!0,__v_skip:!0,type:t,props:i,key:i&&Bc(i),ref:i&&Oa(i),scopeId:lc,slotScopeIds:null,children:s,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:f,patchFlag:l,dynamicProps:u,dynamicChildren:null,appContext:null,ctx:an};return _?(Ra(y,s),f&128&&t.normalize(y)):s&&(y.shapeFlag|=Tt(s)?8:16),Ys>0&&!h&&zn&&(y.patchFlag>0||f&6)&&y.patchFlag!==32&&zn.push(y),y}const A=Qf;function Qf(t,i=null,s=null,l=0,u=null,f=!1){if((!t||t===Sf)&&(t=sn),Js(t)){const _=Qi(t,i,!0);return s&&Ra(_,s),Ys>0&&!f&&zn&&(_.shapeFlag&6?zn[zn.indexOf(t)]=_:zn.push(_)),_.patchFlag=-2,_}if(uh(t)&&(t=t.__vccOpts),i){i=eh(i);let{class:_,style:y}=i;_&&!Tt(_)&&(i.class=Ce(_)),dt(y)&&(ll(y)&&!$e(y)&&(y=Kt({},y)),i.style=Eo(y))}const h=Tt(t)?1:Fc(t)?128:hc(t)?64:dt(t)?4:je(t)?2:0;return a(t,i,s,l,u,h,f,!0)}function eh(t){return t?ll(t)||Mc(t)?Kt({},t):t:null}function Qi(t,i,s=!1,l=!1){const{props:u,ref:f,patchFlag:h,children:_,transition:y}=t,C=i?th(u||{},i):u,T={__v_isVNode:!0,__v_skip:!0,type:t.type,props:C,key:C&&Bc(C),ref:i&&i.ref?s&&f?$e(f)?f.concat(Oa(i)):[f,Oa(i)]:Oa(i):f,scopeId:t.scopeId,slotScopeIds:t.slotScopeIds,children:_,target:t.target,targetStart:t.targetStart,targetAnchor:t.targetAnchor,staticCount:t.staticCount,shapeFlag:t.shapeFlag,patchFlag:i&&t.type!==le?h===-1?16:h|16:h,dynamicProps:t.dynamicProps,dynamicChildren:t.dynamicChildren,appContext:t.appContext,dirs:t.dirs,transition:y,component:t.component,suspense:t.suspense,ssContent:t.ssContent&&Qi(t.ssContent),ssFallback:t.ssFallback&&Qi(t.ssFallback),placeholder:t.placeholder,el:t.el,anchor:t.anchor,ctx:t.ctx,ce:t.ce};return y&&l&&qs(T,y.clone(T)),T}function z(t=" ",i=0){return A(tr,null,t,i)}function I(t="",i=!1){return i?(p(),nt(sn,null,t)):A(sn,null,t)}function ri(t){return t==null||typeof t=="boolean"?A(sn):$e(t)?A(le,null,t.slice()):Js(t)?Ci(t):A(tr,null,String(t))}function Ci(t){return t.el===null&&t.patchFlag!==-1||t.memo?t:Qi(t)}function Ra(t,i){let s=0;const{shapeFlag:l}=t;if(i==null)i=null;else if($e(i))s=16;else if(typeof i=="object")if(l&65){const u=i.default;u&&(u._c&&(u._d=!1),Ra(t,u()),u._c&&(u._d=!0));return}else{s=32;const u=i._;!u&&!Mc(i)?i._ctx=an:u===3&&an&&(an.slots._===1?i._=1:(i._=2,t.patchFlag|=1024))}else if(je(i)){if(l&65){Ra(t,{default:i});return}i={default:i,_ctx:an},s=32}else i=String(i),l&64?(s=16,i=[z(i)]):s=8;t.children=i,t.shapeFlag|=s}function th(...t){const i={};for(let s=0;shn||an;let Ba,Kr;{const t=qa(),i=(s,l)=>{let u;return(u=t[s])||(u=t[s]=[]),u.push(l),f=>{u.length>1?u.forEach(h=>h(f)):u[0](f)}};Ba=i("__VUE_INSTANCE_SETTERS__",s=>hn=s),Kr=i("__VUE_SSR_SETTERS__",s=>Xs=s)}const na=t=>{const i=hn;return Ba(t),t.scope.on(),()=>{t.scope.off(),Ba(i)}},Kl=()=>{hn&&hn.scope.off(),Ba(null)};function Vc(t){return t.vnode.shapeFlag&4}let Xs=!1;function sh(t,i=!1,s=!1){i&&Kr(i);const{props:l,children:u}=t.vnode,f=Vc(t);Uf(t,l,f,i),jf(t,u,s||i);const h=f?ah(t,i):void 0;return i&&Kr(!1),h}function ah(t,i){const s=t.type;t.accessCache=Object.create(null),t.proxy=new Proxy(t.ctx,Pf);const{setup:l}=s;if(l){ci();const u=t.setupContext=l.length>1?lh(t):null,f=na(t),h=ta(l,t,0,[t.props,u]),_=$u(h);if(di(),f(),(_||t.sp)&&!is(t)&&bc(t),_){if(h.then(Kl,Kl),i)return h.then(y=>{Gl(t,y)}).catch(y=>{Ja(y,t,0)});t.asyncDep=h}else Gl(t,h)}else Zc(t)}function Gl(t,i,s){je(i)?t.type.__ssrInlineRender?t.ssrRender=i:t.render=i:dt(i)&&(t.setupState=nc(i)),Zc(t)}function Zc(t,i,s){const l=t.type;t.render||(t.render=l.render||ui);{const u=na(t);ci();try{Cf(t)}finally{di(),u()}}}const rh={get(t,i){return on(t,"get",""),t[i]}};function lh(t){const i=s=>{t.exposed=s||{}};return{attrs:new Proxy(t.attrs,rh),slots:t.slots,emit:t.emit,expose:i}}function nr(t){return t.exposed?t.exposeProxy||(t.exposeProxy=new Proxy(nc(Wd(t.exposed)),{get(i,s){if(s in i)return i[s];if(s in Hs)return Hs[s](t)},has(i,s){return s in i||s in Hs}})):t.proxy}function uh(t){return je(t)&&"__vccOpts"in t}const ce=(t,i)=>Jd(t,i,Xs);function ch(t,i,s){try{Fa(-1);const l=arguments.length;return l===2?dt(i)&&!$e(i)?Js(i)?A(t,null,[i]):A(t,i):A(t,null,i):(l>3?s=Array.prototype.slice.call(arguments,2):l===3&&Js(s)&&(s=[s]),A(t,i,s))}finally{Fa(1)}}const dh="3.5.39";/** +* @vue/runtime-dom v3.5.39 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Gr;const ql=typeof window<"u"&&window.trustedTypes;if(ql)try{Gr=ql.createPolicy("vue",{createHTML:t=>t})}catch{}const Hc=Gr?t=>Gr.createHTML(t):t=>t,fh="http://www.w3.org/2000/svg",hh="http://www.w3.org/1998/Math/MathML",Pi=typeof document<"u"?document:null,Yl=Pi&&Pi.createElement("template"),ph={insert:(t,i,s)=>{i.insertBefore(t,s||null)},remove:t=>{const i=t.parentNode;i&&i.removeChild(t)},createElement:(t,i,s,l)=>{const u=i==="svg"?Pi.createElementNS(fh,t):i==="mathml"?Pi.createElementNS(hh,t):s?Pi.createElement(t,{is:s}):Pi.createElement(t);return t==="select"&&l&&l.multiple!=null&&u.setAttribute("multiple",l.multiple),u},createText:t=>Pi.createTextNode(t),createComment:t=>Pi.createComment(t),setText:(t,i)=>{t.nodeValue=i},setElementText:(t,i)=>{t.textContent=i},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>Pi.querySelector(t),setScopeId(t,i){t.setAttribute(i,"")},insertStaticContent(t,i,s,l,u,f){const h=s?s.previousSibling:i.lastChild;if(u&&(u===f||u.nextSibling))for(;i.insertBefore(u.cloneNode(!0),s),!(u===f||!(u=u.nextSibling)););else{Yl.innerHTML=Hc(l==="svg"?`${t}`:l==="mathml"?`${t}`:t);const _=Yl.content;if(l==="svg"||l==="mathml"){const y=_.firstChild;for(;y.firstChild;)_.appendChild(y.firstChild);_.removeChild(y)}i.insertBefore(_,s)}return[h?h.nextSibling:i.firstChild,s?s.previousSibling:i.lastChild]}},Gi="transition",zs="animation",Qs=Symbol("_vtc"),jc={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},mh=Kt({},pc,jc),gh=t=>(t.displayName="Transition",t.props=mh,t),vh=gh((t,{slots:i})=>ch(hf,_h(t),i)),So=(t,i=[])=>{$e(t)?t.forEach(s=>s(...i)):t&&t(...i)},Jl=t=>t?$e(t)?t.some(i=>i.length>1):t.length>1:!1;function _h(t){const i={};for(const O in t)O in jc||(i[O]=t[O]);if(t.css===!1)return i;const{name:s="v",type:l,duration:u,enterFromClass:f=`${s}-enter-from`,enterActiveClass:h=`${s}-enter-active`,enterToClass:_=`${s}-enter-to`,appearFromClass:y=f,appearActiveClass:C=h,appearToClass:T=_,leaveFromClass:M=`${s}-leave-from`,leaveActiveClass:H=`${s}-leave-active`,leaveToClass:j=`${s}-leave-to`}=t,K=bh(u),F=K&&K[0],te=K&&K[1],{onBeforeEnter:X,onEnter:fe,onEnterCancelled:Se,onLeave:de,onLeaveCancelled:Fe,onBeforeAppear:Oe=X,onAppear:Te=fe,onAppearCancelled:Ze=Se}=i,he=(O,N,$,Ye)=>{O._enterCancelled=Ye,To(O,N?T:_),To(O,N?C:h),$&&$()},Q=(O,N)=>{O._isLeaving=!1,To(O,M),To(O,j),To(O,H),N&&N()},B=O=>(N,$)=>{const Ye=O?Te:fe,we=()=>he(N,O,$);So(Ye,[N,we]),Xl(()=>{To(N,O?y:f),Ti(N,O?T:_),Jl(Ye)||Ql(N,l,F,we)})};return Kt(i,{onBeforeEnter(O){So(X,[O]),Ti(O,f),Ti(O,h)},onBeforeAppear(O){So(Oe,[O]),Ti(O,y),Ti(O,C)},onEnter:B(!1),onAppear:B(!0),onLeave(O,N){O._isLeaving=!0;const $=()=>Q(O,N);Ti(O,M),O._enterCancelled?(Ti(O,H),nu(O)):(nu(O),Ti(O,H)),Xl(()=>{O._isLeaving&&(To(O,M),Ti(O,j),Jl(de)||Ql(O,l,te,$))}),So(de,[O,$])},onEnterCancelled(O){he(O,!1,void 0,!0),So(Se,[O])},onAppearCancelled(O){he(O,!0,void 0,!0),So(Ze,[O])},onLeaveCancelled(O){Q(O),So(Fe,[O])}})}function bh(t){if(t==null)return null;if(dt(t))return[Mr(t.enter),Mr(t.leave)];{const i=Mr(t);return[i,i]}}function Mr(t){return _d(t)}function Ti(t,i){i.split(/\s+/).forEach(s=>s&&t.classList.add(s)),(t[Qs]||(t[Qs]=new Set)).add(i)}function To(t,i){i.split(/\s+/).forEach(l=>l&&t.classList.remove(l));const s=t[Qs];s&&(s.delete(i),s.size||(t[Qs]=void 0))}function Xl(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let yh=0;function Ql(t,i,s,l){const u=t._endId=++yh,f=()=>{u===t._endId&&l()};if(s!=null)return setTimeout(f,s);const{type:h,timeout:_,propCount:y}=xh(t,i);if(!h)return l();const C=h+"end";let T=0;const M=()=>{t.removeEventListener(C,H),f()},H=j=>{j.target===t&&++T>=y&&M()};setTimeout(()=>{T(s[K]||"").split(", "),u=l(`${Gi}Delay`),f=l(`${Gi}Duration`),h=eu(u,f),_=l(`${zs}Delay`),y=l(`${zs}Duration`),C=eu(_,y);let T=null,M=0,H=0;i===Gi?h>0&&(T=Gi,M=h,H=f.length):i===zs?C>0&&(T=zs,M=C,H=y.length):(M=Math.max(h,C),T=M>0?h>C?Gi:zs:null,H=T?T===Gi?f.length:y.length:0);const j=T===Gi&&/\b(?:transform|all)(?:,|$)/.test(l(`${Gi}Property`).toString());return{type:T,timeout:M,propCount:H,hasTransform:j}}function eu(t,i){for(;t.lengthtu(s)+tu(t[l])))}function tu(t){return t==="auto"?0:Number(t.slice(0,-1).replace(",","."))*1e3}function nu(t){return(t?t.ownerDocument:document).body.offsetHeight}function wh(t,i,s){const l=t[Qs];l&&(i=(i?[i,...l]:[...l]).join(" ")),i==null?t.removeAttribute("class"):s?t.setAttribute("class",i):t.className=i}const Ua=Symbol("_vod"),Wc=Symbol("_vsh"),kh={name:"show",beforeMount(t,{value:i},{transition:s}){t[Ua]=t.style.display==="none"?"":t.style.display,s&&i?s.beforeEnter(t):$s(t,i)},mounted(t,{value:i},{transition:s}){s&&i&&s.enter(t)},updated(t,{value:i,oldValue:s},{transition:l}){!i!=!s&&(l?i?(l.beforeEnter(t),$s(t,!0),l.enter(t)):l.leave(t,()=>{$s(t,!1)}):$s(t,i))},beforeUnmount(t,{value:i}){$s(t,i)}};function $s(t,i){t.style.display=i?t[Ua]:"none",t[Wc]=!i}const Sh=Symbol(""),Th=/(?:^|;)\s*display\s*:/;function Ph(t,i,s){const l=t.style,u=Tt(s);let f=!1;if(s&&!u){if(i)if(Tt(i))for(const h of i.split(";")){const _=h.slice(0,h.indexOf(":")).trim();s[_]==null&&Ds(l,_,"")}else for(const h in i)s[h]==null&&Ds(l,h,"");for(const h in s){h==="display"&&(f=!0);const _=s[h];_!=null?Lh(t,h,!Tt(i)&&i?i[h]:void 0,_)||Ds(l,h,_):Ds(l,h,"")}}else if(u){if(i!==s){const h=l[Sh];h&&(s+=";"+h),l.cssText=s,f=Th.test(s)}}else i&&t.removeAttribute("style");Ua in t&&(t[Ua]=f?l.display:"",t[Wc]&&(l.display="none"))}const iu=/\s*!important$/;function Ds(t,i,s){if($e(s))s.forEach(l=>Ds(t,i,l));else if(s==null&&(s=""),i.startsWith("--"))t.setProperty(i,s);else{const l=Ch(t,i);iu.test(s)?t.setProperty(to(l),s.replace(iu,""),"important"):t[l]=s}}const ou=["Webkit","Moz","ms"],Er={};function Ch(t,i){const s=Er[i];if(s)return s;let l=Jn(i);if(l!=="filter"&&l in t)return Er[i]=l;l=Du(l);for(let u=0;uOr||($h.then(()=>Or=0),Or=Date.now());function Nh(t,i){const s=l=>{if(!l._vts)l._vts=Date.now();else if(l._vts<=s.attached)return;const u=s.value;if($e(u)){const f=l.stopImmediatePropagation;l.stopImmediatePropagation=()=>{f.call(l),l._stopped=!0};const h=u.slice(),_=[l];for(let y=0;yt.charCodeAt(0)===111&&t.charCodeAt(1)===110&&t.charCodeAt(2)>96&&t.charCodeAt(2)<123,Dh=(t,i,s,l,u,f)=>{const h=u==="svg";i==="class"?wh(t,l,h):i==="style"?Ph(t,s,l):ja(i)?Wa(i)||Mh(t,i,s,l,f):(i[0]==="."?(i=i.slice(1),!0):i[0]==="^"?(i=i.slice(1),!1):Fh(t,i,l,h))?(ru(t,i,l),!t.tagName.includes("-")&&(i==="value"||i==="checked"||i==="selected")&&au(t,i,l,h,f,i!=="value")):t._isVueCE&&(Rh(t,i)||t._def.__asyncLoader&&(/[A-Z]/.test(i)||!Tt(l)))?ru(t,Jn(i),l,f,i):(i==="true-value"?t._trueValue=l:i==="false-value"&&(t._falseValue=l),au(t,i,l,h))};function Fh(t,i,s,l){if(l)return!!(i==="innerHTML"||i==="textContent"||i in t&&uu(i)&&je(s));if(i==="spellcheck"||i==="draggable"||i==="translate"||i==="autocorrect"||i==="sandbox"&&t.tagName==="IFRAME"||i==="form"||i==="list"&&t.tagName==="INPUT"||i==="type"&&t.tagName==="TEXTAREA")return!1;if(i==="width"||i==="height"){const u=t.tagName;if(u==="IMG"||u==="VIDEO"||u==="CANVAS"||u==="SOURCE")return!1}return uu(i)&&Tt(s)?!1:i in t}function Rh(t,i){const s=t._def.props;if(!s)return!1;const l=Jn(i);return Array.isArray(s)?s.some(u=>Jn(u)===l):Object.keys(s).some(u=>Jn(u)===l)}const eo=t=>{const i=t.props["onUpdate:modelValue"]||!1;return $e(i)?s=>Ea(i,s):i};function Bh(t){t.target.composing=!0}function cu(t){const i=t.target;i.composing&&(i.composing=!1,i.dispatchEvent(new Event("input")))}const Zn=Symbol("_assign");function du(t,i,s){return i&&(t=t.trim()),s&&(t=Ga(t)),t}const me={created(t,{modifiers:{lazy:i,trim:s,number:l}},u){t[Zn]=eo(u);const f=l||u.props&&u.props.type==="number";Mi(t,i?"change":"input",h=>{h.target.composing||t[Zn](du(t.value,s,f))}),(s||f)&&Mi(t,"change",()=>{t.value=du(t.value,s,f)}),i||(Mi(t,"compositionstart",Bh),Mi(t,"compositionend",cu),Mi(t,"change",cu))},mounted(t,{value:i}){t.value=i??""},beforeUpdate(t,{value:i,oldValue:s,modifiers:{lazy:l,trim:u,number:f}},h){if(t[Zn]=eo(h),t.composing)return;const _=(f||t.type==="number")&&!/^0\d/.test(t.value)?Ga(t.value):t.value,y=i??"";if(_===y)return;const C=t.getRootNode();(C instanceof Document||C instanceof ShadowRoot)&&C.activeElement===t&&t.type!=="range"&&(l&&i===s||u&&t.value.trim()===y)||(t.value=y)}},Va={deep:!0,created(t,i,s){t[Zn]=eo(s),Mi(t,"change",()=>{const l=t._modelValue,u=rs(t),f=t.checked,h=t[Zn];if($e(l)){const _=tl(l,u),y=_!==-1;if(f&&!y)h(l.concat(u));else if(!f&&y){const C=[...l];C.splice(_,1),h(C)}}else if(ls(l)){const _=new Set(l);f?_.add(u):_.delete(u),h(_)}else h(Kc(t,f))})},mounted:fu,beforeUpdate(t,i,s){t[Zn]=eo(s),fu(t,i,s)}};function fu(t,{value:i,oldValue:s},l){t._modelValue=i;let u;if($e(i))u=tl(i,l.props.value)>-1;else if(ls(i))u=i.has(l.props.value);else{if(i===s)return;u=Xi(i,Kc(t,!0))}t.checked!==u&&(t.checked=u)}const Uh={created(t,{value:i},s){t.checked=Xi(i,s.props.value),t[Zn]=eo(s),Mi(t,"change",()=>{t[Zn](rs(t))})},beforeUpdate(t,{value:i,oldValue:s},l){t[Zn]=eo(l),i!==s&&(t.checked=Xi(i,l.props.value))}},Ot={deep:!0,created(t,{value:i,modifiers:{number:s}},l){const u=ls(i);Mi(t,"change",()=>{const f=Array.prototype.filter.call(t.options,h=>h.selected).map(h=>s?Ga(rs(h)):rs(h));t[Zn](t.multiple?u?new Set(f):f:f[0]),t._assigning=!0,oc(()=>{t._assigning=!1})}),t[Zn]=eo(l)},mounted(t,{value:i}){hu(t,i)},beforeUpdate(t,i,s){t[Zn]=eo(s)},updated(t,{value:i}){t._assigning||hu(t,i)}};function hu(t,i){const s=t.multiple,l=$e(i);if(!(s&&!l&&!ls(i))){for(let u=0,f=t.options.length;uString(C)===String(_)):h.selected=tl(i,_)>-1}else h.selected=i.has(_);else if(Xi(rs(h),i)){t.selectedIndex!==u&&(t.selectedIndex=u);return}}!s&&t.selectedIndex!==-1&&(t.selectedIndex=-1)}}function rs(t){return"_value"in t?t._value:t.value}function Kc(t,i){const s=i?"_trueValue":"_falseValue";return s in t?t[s]:i}const Vh={created(t,i,s){Aa(t,i,s,null,"created")},mounted(t,i,s){Aa(t,i,s,null,"mounted")},beforeUpdate(t,i,s,l){Aa(t,i,s,l,"beforeUpdate")},updated(t,i,s,l){Aa(t,i,s,l,"updated")}};function Zh(t,i){switch(t){case"SELECT":return Ot;case"TEXTAREA":return me;default:switch(i){case"checkbox":return Va;case"radio":return Uh;default:return me}}}function Aa(t,i,s,l,u){const h=Zh(t.tagName,s.props&&s.props.type)[u];h&&h(t,i,s,l)}const Hh=["ctrl","shift","alt","meta"],jh={stop:t=>t.stopPropagation(),prevent:t=>t.preventDefault(),self:t=>t.target!==t.currentTarget,ctrl:t=>!t.ctrlKey,shift:t=>!t.shiftKey,alt:t=>!t.altKey,meta:t=>!t.metaKey,left:t=>"button"in t&&t.button!==0,middle:t=>"button"in t&&t.button!==1,right:t=>"button"in t&&t.button!==2,exact:(t,i)=>Hh.some(s=>t[`${s}Key`]&&!i.includes(s))},hl=(t,i)=>{if(!t)return t;const s=t._withMods||(t._withMods={}),l=i.join(".");return s[l]||(s[l]=((u,...f)=>{for(let h=0;h{const s=t._withKeys||(t._withKeys={}),l=i.join(".");return s[l]||(s[l]=(u=>{if(!("key"in u))return;const f=to(u.key);if(i.some(h=>h===f||Wh[h]===f))return t(u)}))},Kh=Kt({patchProp:Dh},ph);let mu;function Gh(){return mu||(mu=Kf(Kh))}const qh=((...t)=>{const i=Gh().createApp(...t),{mount:s}=i;return i.mount=l=>{const u=Jh(l);if(!u)return;const f=i._component;!je(f)&&!f.render&&!f.template&&(f.template=u.innerHTML),u.nodeType===1&&(u.textContent="");const h=s(u,!1,Yh(u));return u instanceof Element&&(u.removeAttribute("v-cloak"),u.setAttribute("data-v-app","")),h},i});function Yh(t){if(t instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&t instanceof MathMLElement)return"mathml"}function Jh(t){return Tt(t)?document.querySelector(t):t}const Gc="pv_theme",gu={light:"#EEF0F3",dark:"#0B1730"},Za=typeof window<"u"&&window.matchMedia?window.matchMedia("(prefers-color-scheme: dark)"):null;function qc(){return Za&&Za.matches?"dark":"light"}function Xh(){try{return localStorage.getItem(Gc)||"light"}catch{return"light"}}function Yc(t){return t==="system"?qc():t}function Jc(t){const i=document.documentElement;i.setAttribute("data-theme",t),i.style.backgroundColor=gu[t]||gu.light}const Oo=Y(Xh()),ss=Y(Yc(Oo.value));function Ha(t){Oo.value=t;const i=Yc(t);ss.value=i,Jc(i);try{localStorage.setItem(Gc,t)}catch{}}function vu(){Ha(ss.value==="dark"?"light":"dark")}Za&&Za.addEventListener("change",()=>{if(Oo.value==="system"){const t=qc();ss.value=t,Jc(t)}});async function Qh(){try{const t=await fetch("/bff/config");return t.ok?await t.json():{apiBase:""}}catch{return{apiBase:""}}}async function _u(){try{const t=await fetch("/bff/me");return t.ok?await t.json():null}catch{return null}}async function ep(t,i,s){const l=await fetch("/bff/login",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:t,password:i,apiBase:s})});return{ok:l.ok,status:l.status,body:await l.json().catch(()=>({}))}}async function tp(){try{await fetch("/bff/logout",{method:"POST"})}catch{}}async function np(){try{const t=await fetch("/bff/devices");return t.ok?await t.json():[]}catch{return[]}}async function ip(){try{const t=await fetch("/bff/users");return t.ok?{ok:!0,status:200,users:(await t.json()).users||[]}:{ok:!1,status:t.status,users:[]}}catch{return{ok:!1,status:0,users:[]}}}async function op(t,i,s,l){const u=await fetch("/bff/users",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({email:t,password:i,role:s,organization:l})});return{ok:u.ok,status:u.status,body:await u.json().catch(()=>({}))}}async function sp(t,i){const s=await fetch(`/bff/users/${encodeURIComponent(t)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function ap(t){const i=await fetch(`/bff/users/${encodeURIComponent(t)}`,{method:"DELETE"});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function rp(){try{const t=await fetch("/bff/orgs");return t.ok?{ok:!0,status:200,organizations:(await t.json()).organizations||[]}:{ok:!1,status:t.status,organizations:[]}}catch{return{ok:!1,status:0,organizations:[]}}}async function lp(t){const i=await fetch("/bff/orgs",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:t})});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function up(t,i){const s=await fetch(`/bff/orgs/${encodeURIComponent(t)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify({name:i})});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function cp(t){const i=await fetch(`/bff/orgs/${encodeURIComponent(t)}`,{method:"DELETE"});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function dp(){try{const t=await fetch("/bff/preferences");if(!t.ok)return null;const i=await t.json();return i&&typeof i.preferences=="object"?i.preferences:null}catch{return null}}async function fp(t){try{return(await fetch("/bff/preferences",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify({preferences:t})})).ok}catch{return!1}}async function hp(){try{const t=await fetch("/bff/integrations/opensky");return t.ok?{ok:!0,status:200,body:await t.json()}:{ok:!1,status:t.status,body:await t.json().catch(()=>({}))}}catch{return{ok:!1,status:0,body:{}}}}async function bu(t){const i=await fetch("/bff/integrations/opensky",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function pp(t){const i=t?`?bbox=${encodeURIComponent(t)}`:"",s=await fetch(`/bff/integrations/opensky/health${i}`,{method:"POST"});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function mp(t){try{const i=t?`?bbox=${encodeURIComponent(t)}`:"",s=await fetch(`/bff/integrations/opensky/states${i}`);if(!s.ok)return{states:[],unavailable:!0,detail:"OpenSky unavailable"};const l=await s.json();return{states:l.states||[],time:l.time,unavailable:!!l.unavailable,detail:l.detail||"",plan:l.plan||"",recommendedInterval:l.recommendedInterval||0}}catch{return{states:[],unavailable:!0,detail:"OpenSky unavailable"}}}async function gp(){try{const t=await fetch("/bff/integrations/filetransfer");return t.ok?{ok:!0,status:200,body:await t.json()}:{ok:!1,status:t.status,body:await t.json().catch(()=>({}))}}catch{return{ok:!1,status:0,body:{}}}}async function yu(t){const i=await fetch("/bff/integrations/filetransfer",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function vp(){const t=await fetch("/bff/integrations/filetransfer/health",{method:"POST"});return{ok:t.ok,status:t.status,body:await t.json().catch(()=>({}))}}async function _p(){try{const t=await fetch("/bff/integrations/localstorage");return t.ok?{ok:!0,status:200,body:await t.json()}:{ok:!1,status:t.status,body:await t.json().catch(()=>({}))}}catch{return{ok:!1,status:0,body:{}}}}async function Ma(t){const i=await fetch("/bff/integrations/localstorage",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function bp(){const t=await fetch("/bff/integrations/localstorage/health",{method:"POST"});return{ok:t.ok,status:t.status,body:await t.json().catch(()=>({}))}}async function yp(){try{const t=await fetch("/bff/integrations/webdav");return t.ok?{ok:!0,status:200,body:await t.json()}:{ok:!1,status:t.status,body:await t.json().catch(()=>({}))}}catch{return{ok:!1,status:0,body:{}}}}async function xu(t){const i=await fetch("/bff/integrations/webdav",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function xp(){const t=await fetch("/bff/integrations/webdav/health",{method:"POST"});return{ok:t.ok,status:t.status,body:await t.json().catch(()=>({}))}}async function wp(){try{const t=await fetch("/bff/integrations/openweather");return t.ok?{ok:!0,status:200,body:await t.json()}:{ok:!1,status:t.status,body:await t.json().catch(()=>({}))}}catch{return{ok:!1,status:0,body:{}}}}async function wu(t){const i=await fetch("/bff/integrations/openweather",{method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function kp(){const t=await fetch("/bff/integrations/openweather/health",{method:"POST"});return{ok:t.ok,status:t.status,body:await t.json().catch(()=>({}))}}async function Sp(t,i){try{const s=t!=null&&i!=null?`?lat=${encodeURIComponent(t)}&lon=${encodeURIComponent(i)}`:"",l=await fetch(`/bff/integrations/openweather/current${s}`);return l.ok?await l.json():{unavailable:!0,detail:"Weather unavailable"}}catch{return{unavailable:!0,detail:"Weather unavailable"}}}async function pl(){try{const t=await fetch("/bff/drones");return t.ok?{ok:!0,status:200,drones:(await t.json()).drones||[]}:{ok:!1,status:t.status,drones:[]}}catch{return{ok:!1,status:0,drones:[]}}}async function Tp(t){const i=await fetch("/bff/drones",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function Pp(t){try{const i=await fetch("/bff/drones/auto",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}catch{return{ok:!1,status:0,body:{}}}}async function Cp(t,i){const s=await fetch(`/bff/drones/${encodeURIComponent(t)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function Lp(t){const i=await fetch(`/bff/drones/${encodeURIComponent(t)}`,{method:"DELETE"});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function Ap(){try{const t=await fetch("/bff/flights");return t.ok?{ok:!0,status:200,flights:(await t.json()).flights||[]}:{ok:!1,status:t.status,flights:[]}}catch{return{ok:!1,status:0,flights:[]}}}async function Mp(t){const i=await fetch("/bff/flights",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(t)});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}async function Ep(t,i){const s=await fetch(`/bff/flights/${encodeURIComponent(t)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function Op(t){const i=await fetch(`/bff/flights/${encodeURIComponent(t)}`,{method:"DELETE"});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}function zp(){return"/bff/logbook/export"}async function $p(t){try{const i=t!=null&&t!==""?`?expiring=${encodeURIComponent(t)}`:"",s=await fetch(`/bff/documents${i}`);return s.ok?{ok:!0,status:200,documents:(await s.json()).documents||[]}:{ok:!1,status:s.status,documents:[]}}catch{return{ok:!1,status:0,documents:[]}}}async function Ip(t,i){const s=new FormData;Object.entries(t).forEach(([u,f])=>{f!=null&&f!==""&&s.append(u,f)}),i&&s.append("file",i);const l=await fetch("/bff/documents",{method:"POST",body:s});return{ok:l.ok,status:l.status,body:await l.json().catch(()=>({}))}}async function Np(t,i){const s=await fetch(`/bff/documents/${encodeURIComponent(t)}`,{method:"PATCH",headers:{"Content-Type":"application/json"},body:JSON.stringify(i)});return{ok:s.ok,status:s.status,body:await s.json().catch(()=>({}))}}async function Dp(t){const i=await fetch(`/bff/documents/${encodeURIComponent(t)}`,{method:"DELETE"});return{ok:i.ok,status:i.status,body:await i.json().catch(()=>({}))}}function zr(t){return`/bff/documents/${encodeURIComponent(t)}/file`}function Fp(t){return`/bff/documents/${encodeURIComponent(t)}/file?inline=1`}async function Rp(t,i,s){const l=await fetch(`/bff/devices/${encodeURIComponent(t)}/command`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({command:i,payload:s})});return{ok:l.ok,body:await l.json().catch(()=>({}))}}const Xc="pv_prefs",qr={name:"",username:"",displayName:"",bio:"",avatar:"",showEmail:!1,fontSize:"md",language:"en",region:"US",dateFormat:"MDY",timeFormat:"24",reduceMotion:!1,showAirTraffic:!0,autoBbox:!0,airTrafficInterval:"auto",twoFactor:!1};function Bp(){try{return{...qr,...JSON.parse(localStorage.getItem(Xc)||"{}")||{}}}catch{return{...qr}}}const be=gt(Bp());function Qc(){try{localStorage.setItem(Xc,JSON.stringify(be))}catch{}}function ed(t){if(!t||typeof t!="object")return!1;for(const i of Object.keys(qr))i in t&&(be[i]=t[i]);return!0}const Up={sm:15,md:16,lg:18};function ml(t){document.documentElement.style.fontSize=(Up[t]||16)+"px"}function gl(t){document.documentElement.classList.toggle("reduce-motion",!!t)}function td(t){const i=new Date(t),s=i.getFullYear(),l=String(i.getMonth()+1).padStart(2,"0"),u=String(i.getDate()).padStart(2,"0");let f;switch(be.dateFormat){case"DMY":f=`${u}/${l}/${s}`;break;case"YMD":f=`${s}/${l}/${u}`;break;case"ISO":f=`${s}-${l}-${u}`;break;default:f=`${l}/${u}/${s}`}let h;return be.timeFormat==="12"?h=i.toLocaleTimeString("en-US",{hour:"numeric",minute:"2-digit",second:"2-digit",hour12:!0}):h=`${String(i.getHours()).padStart(2,"0")}:${String(i.getMinutes()).padStart(2,"0")}:${String(i.getSeconds()).padStart(2,"0")}`,{date:f,time:h}}function ku(t){return td(t).time}function Su(t){const i=td(t);return`${i.date} ${i.time}`}let vl=!1,Yr=!1,Jr=null;function Vp(){return{...JSON.parse(JSON.stringify(be)),themeMode:Oo.value}}function _l(){!vl||Yr||(clearTimeout(Jr),Jr=setTimeout(()=>{fp(Vp())},600))}function Zp(t){Yr=!0;try{ed(t),t.themeMode&&Ha(t.themeMode),ml(be.fontSize),gl(be.reduceMotion),Qc()}finally{Yr=!1}}async function Tu(){vl=!0;const t=await dp();t&&Object.keys(t).length?Zp(t):_l()}function Hp(){vl=!1,clearTimeout(Jr)}Bt(be,()=>{Qc(),_l()},{deep:!0});Bt(Oo,_l);Bt(()=>be.fontSize,ml,{immediate:!0});Bt(()=>be.reduceMotion,gl,{immediate:!0});const jp=["width","height"],nd={__name:"BrandMark",props:{size:{type:[Number,String],default:28}},setup(t){return(i,s)=>(p(),m("svg",{width:t.size,height:t.size,viewBox:"0 0 48 48",fill:"none","aria-hidden":"true"},[...s[0]||(s[0]=[a("g",{"stroke-width":"4","stroke-linecap":"round","stroke-linejoin":"round"},[a("polyline",{points:"8,30 19,17 30,30",stroke:"var(--accent)"}),a("polyline",{points:"18,33 29,20 40,33",stroke:"currentColor"})],-1)])],8,jp))}},Wp=["title","aria-label"],Kp={key:0,width:"18",height:"18",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},Gp={key:1,width:"18",height:"18",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},qp={__name:"ThemeToggle",setup(t){return(i,s)=>(p(),m("button",{class:"btn-icon",type:"button",title:Ee(ss)==="dark"?"Switch to light":"Switch to dark","aria-label":Ee(ss)==="dark"?"Switch to light theme":"Switch to dark theme",onClick:s[0]||(s[0]=(...l)=>Ee(vu)&&Ee(vu)(...l))},[Ee(ss)==="dark"?(p(),m("svg",Kp,[...s[1]||(s[1]=[a("circle",{cx:"12",cy:"12",r:"4"},null,-1),a("path",{d:"M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41"},null,-1)])])):(p(),m("svg",Gp,[...s[2]||(s[2]=[a("path",{d:"M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9z"},null,-1)])]))],8,Wp))}},Yp={class:"relative grid h-full place-items-center p-5"},Jp={class:"absolute right-5 top-5"},Xp={class:"mb-6 flex items-center gap-3 text-ink"},Qp={class:"relative mb-1"},em=["type"],tm=["aria-label","title"],nm={key:0,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"h-[18px] w-[18px]"},im={key:1,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"h-[18px] w-[18px]"},om={key:0,class:"mt-4"},sm={key:1,class:"mt-4 rounded border border-line bg-danger-soft px-3 py-2 text-sm text-danger-fg"},am=["disabled"],rm={__name:"LoginView",props:{defaultApiBase:{type:String,default:""}},emits:["signed-in"],setup(t,{emit:i}){const s=t,l=i,u=Y(""),f=Y(""),h=Y(localStorage.getItem("api_url")||s.defaultApiBase||"http://localhost:8080"),_=Y(!1),y=Y(!1),C=Y(!1),T=Y("");async function M(){C.value=!0,T.value="",localStorage.setItem("api_url",h.value.trim());const{ok:H,status:j,body:K}=await ep(u.value.trim(),f.value,h.value.trim());if(C.value=!1,H){l("signed-in",K.email);return}T.value=j===400?"Invalid email or password.":j===502?"API server can't reach PocketBase.":K.message||K.error||"Cannot reach the API server."}return(H,j)=>(p(),m("div",Yp,[a("div",Jp,[A(qp)]),a("form",{class:"panel w-[380px] p-8 shadow-md",onSubmit:hl(M,["prevent"])},[a("div",Xp,[A(nd,{size:34}),j[5]||(j[5]=a("div",{class:"leading-tight"},[a("div",{class:"text-mode"},"PilotVault"),a("div",{class:"eyebrow mt-0.5"},"Control panel")],-1))]),j[9]||(j[9]=a("label",{class:"eyebrow mb-1.5 block"},"Email",-1)),ie(a("input",{"onUpdate:modelValue":j[0]||(j[0]=K=>u.value=K),type:"email",autocomplete:"username",required:"",class:"field mb-4",placeholder:"you@example.com"},null,512),[[me,u.value]]),j[10]||(j[10]=a("label",{class:"eyebrow mb-1.5 block"},"Password",-1)),a("div",Qp,[ie(a("input",{"onUpdate:modelValue":j[1]||(j[1]=K=>f.value=K),type:y.value?"text":"password",autocomplete:"current-password",required:"",class:"field w-full pr-10",placeholder:"••••••••"},null,8,em),[[Vh,f.value]]),a("button",{type:"button",class:"absolute inset-y-0 right-0 grid w-10 place-items-center text-ink-muted transition hover:text-ink-secondary","aria-label":y.value?"Hide password":"Show password",title:y.value?"Hide password":"Show password",onClick:j[2]||(j[2]=K=>y.value=!y.value)},[y.value?(p(),m("svg",nm,[...j[6]||(j[6]=[a("path",{d:"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"},null,-1),a("line",{x1:"1",y1:"1",x2:"23",y2:"23"},null,-1)])])):(p(),m("svg",im,[...j[7]||(j[7]=[a("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"},null,-1),a("circle",{cx:"12",cy:"12",r:"3"},null,-1)])]))],8,tm)]),_.value?(p(),m("div",om,[j[8]||(j[8]=a("label",{class:"eyebrow mb-1.5 block"},"API Server",-1)),ie(a("input",{"onUpdate:modelValue":j[3]||(j[3]=K=>h.value=K),type:"text",class:"field font-mono",placeholder:"10.2.1.101:8080"},null,512),[[me,h.value]])])):I("",!0),T.value?(p(),m("p",sm,w(T.value),1)):I("",!0),a("button",{type:"submit",class:"btn-accent mt-6 w-full",disabled:C.value},w(C.value?"Signing in…":"Sign in"),9,am),a("button",{type:"button",class:"mx-auto mt-3 block text-xs text-ink-muted transition hover:text-ink-secondary",onClick:j[4]||(j[4]=K=>_.value=!_.value)},w(_.value?"Hide server settings":"Server settings"),1)],32)]))}};function lm(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Fs={exports:{}};/* @preserve + * Leaflet 1.9.4, a JS library for interactive maps. https://leafletjs.com + * (c) 2010-2023 Vladimir Agafonkin, (c) 2010-2011 CloudMade + */var um=Fs.exports,Pu;function cm(){return Pu||(Pu=1,(function(t,i){(function(s,l){l(i)})(um,(function(s){var l="1.9.4";function u(e){var n,o,r,d;for(o=1,r=arguments.length;o"u"||!L||!L.Mixin)){e=Se(e)?e:[e];for(var n=0;n0?Math.floor(e):Math.ceil(e)};ue.prototype={clone:function(){return new ue(this.x,this.y)},add:function(e){return this.clone()._add(pe(e))},_add:function(e){return this.x+=e.x,this.y+=e.y,this},subtract:function(e){return this.clone()._subtract(pe(e))},_subtract:function(e){return this.x-=e.x,this.y-=e.y,this},divideBy:function(e){return this.clone()._divideBy(e)},_divideBy:function(e){return this.x/=e,this.y/=e,this},multiplyBy:function(e){return this.clone()._multiplyBy(e)},_multiplyBy:function(e){return this.x*=e,this.y*=e,this},scaleBy:function(e){return new ue(this.x*e.x,this.y*e.y)},unscaleBy:function(e){return new ue(this.x/e.x,this.y/e.y)},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},ceil:function(){return this.clone()._ceil()},_ceil:function(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this},trunc:function(){return this.clone()._trunc()},_trunc:function(){return this.x=ft(this.x),this.y=ft(this.y),this},distanceTo:function(e){e=pe(e);var n=e.x-this.x,o=e.y-this.y;return Math.sqrt(n*n+o*o)},equals:function(e){return e=pe(e),e.x===this.x&&e.y===this.y},contains:function(e){return e=pe(e),Math.abs(e.x)<=Math.abs(this.x)&&Math.abs(e.y)<=Math.abs(this.y)},toString:function(){return"Point("+H(this.x)+", "+H(this.y)+")"}};function pe(e,n,o){return e instanceof ue?e:Se(e)?new ue(e[0],e[1]):e==null?e:typeof e=="object"&&"x"in e&&"y"in e?new ue(e.x,e.y):new ue(e,n,o)}function Ue(e,n){if(e)for(var o=n?[e,n]:e,r=0,d=o.length;r=this.min.x&&o.x<=this.max.x&&n.y>=this.min.y&&o.y<=this.max.y},intersects:function(e){e=Ve(e);var n=this.min,o=this.max,r=e.min,d=e.max,v=d.x>=n.x&&r.x<=o.x,P=d.y>=n.y&&r.y<=o.y;return v&&P},overlaps:function(e){e=Ve(e);var n=this.min,o=this.max,r=e.min,d=e.max,v=d.x>n.x&&r.xn.y&&r.y=n.lat&&d.lat<=o.lat&&r.lng>=n.lng&&d.lng<=o.lng},intersects:function(e){e=st(e);var n=this._southWest,o=this._northEast,r=e.getSouthWest(),d=e.getNorthEast(),v=d.lat>=n.lat&&r.lat<=o.lat,P=d.lng>=n.lng&&r.lng<=o.lng;return v&&P},overlaps:function(e){e=st(e);var n=this._southWest,o=this._northEast,r=e.getSouthWest(),d=e.getNorthEast(),v=d.lat>n.lat&&r.latn.lng&&r.lng1,jn=(function(){var e=!1;try{var n=Object.defineProperty({},"passive",{get:function(){e=!0}});window.addEventListener("testPassiveEventSupport",M,n),window.removeEventListener("testPassiveEventSupport",M,n)}catch{}return e})(),U=(function(){return!!document.createElement("canvas").getContext})(),E=!!(document.createElementNS&&W("svg").createSVGRect),Me=!!E&&(function(){var e=document.createElement("div");return e.innerHTML="",(e.firstChild&&e.firstChild.namespaceURI)==="http://www.w3.org/2000/svg"})(),tt=!E&&(function(){try{var e=document.createElement("div");e.innerHTML='';var n=e.firstChild;return n.style.behavior="url(#default#VML)",n&&typeof n.adj=="object"}catch{return!1}})(),It=navigator.platform.indexOf("Mac")===0,St=navigator.platform.indexOf("Linux")===0;function Et(e){return navigator.userAgent.toLowerCase().indexOf(e)>=0}var Z={ie:re,ielt9:ae,edge:oe,webkit:ee,android:ve,android23:se,androidStock:Pe,opera:Re,chrome:Ke,gecko:Ge,safari:pt,phantom:ht,opera12:Vt,win:Jt,ie3d:Zt,webkit3d:pn,gecko3d:Ct,any3d:$t,mobile:kn,mobileWebkit:zi,mobileWebkit3d:at,msPointer:Sn,pointer:$i,touch:hi,touchNative:rt,mobileOpera:pi,mobileGecko:Ii,retina:Gt,passiveEvents:jn,canvas:U,svg:E,vml:tt,inlineSvg:Me,mac:It,linux:St},_t=Z.msPointer?"MSPointerDown":"pointerdown",bt=Z.msPointer?"MSPointerMove":"pointermove",oa=Z.msPointer?"MSPointerUp":"pointerup",cs=Z.msPointer?"MSPointerCancel":"pointercancel",no={touchstart:_t,touchmove:bt,touchend:oa,touchcancel:cs},sa={touchstart:ds,touchmove:Wn,touchend:Wn,touchcancel:Wn},Ni={},aa=!1;function ir(e,n,o){return n==="touchstart"&<(),sa[n]?(o=sa[n].bind(this,o),e.addEventListener(no[n],o,!1),o):(console.warn("wrong event specified:",n),M)}function ra(e,n,o){if(!no[n]){console.warn("wrong event specified:",n);return}e.removeEventListener(no[n],o,!1)}function or(e){Ni[e.pointerId]=e}function sr(e){Ni[e.pointerId]&&(Ni[e.pointerId]=e)}function la(e){delete Ni[e.pointerId]}function lt(){aa||(document.addEventListener(_t,or,!0),document.addEventListener(bt,sr,!0),document.addEventListener(oa,la,!0),document.addEventListener(cs,la,!0),aa=!0)}function Wn(e,n){if(n.pointerType!==(n.MSPOINTER_TYPE_MOUSE||"mouse")){n.touches=[];for(var o in Ni)n.touches.push(Ni[o]);n.changedTouches=[n],e(n)}}function ds(e,n){n.MSPOINTER_TYPE_TOUCH&&n.pointerType===n.MSPOINTER_TYPE_TOUCH&&Ft(n),Wn(e,n)}function Xt(e){var n={},o,r;for(r in e)o=e[r],n[r]=o&&o.bind?o.bind(e):o;return e=n,n.type="dblclick",n.detail=2,n.isTrusted=!1,n._simulated=!0,n}var io=200;function zo(e,n){e.addEventListener("dblclick",n);var o=0,r;function d(v){if(v.detail!==1){r=v.detail;return}if(!(v.pointerType==="mouse"||v.sourceCapabilities&&!v.sourceCapabilities.firesTouchEvents)){var P=da(v);if(!(P.some(function(R){return R instanceof HTMLLabelElement&&R.attributes.for})&&!P.some(function(R){return R instanceof HTMLInputElement||R instanceof HTMLSelectElement}))){var D=Date.now();D-o<=io?(r++,r===2&&n(Xt(v))):r=1,o=D}}}return e.addEventListener("click",d),{dblclick:n,simDblclick:d}}function $o(e,n){e.removeEventListener("dblclick",n.dblclick),e.removeEventListener("click",n.simDblclick)}var Tn=Fo(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),$n=Fo(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),ua=$n==="webkitTransition"||$n==="OTransition"?$n+"End":"transitionend";function Io(e){return typeof e=="string"?document.getElementById(e):e}function mi(e,n){var o=e.style[n]||e.currentStyle&&e.currentStyle[n];if((!o||o==="auto")&&document.defaultView){var r=document.defaultView.getComputedStyle(e,null);o=r?r[n]:null}return o==="auto"?null:o}function it(e,n,o){var r=document.createElement(e);return r.className=n||"",o&&o.appendChild(r),r}function ot(e){var n=e.parentNode;n&&n.removeChild(e)}function Pn(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function Cn(e){var n=e.parentNode;n&&n.lastChild!==e&&n.appendChild(e)}function qt(e){var n=e.parentNode;n&&n.firstChild!==e&&n.insertBefore(e,n.firstChild)}function No(e,n){if(e.classList!==void 0)return e.classList.contains(n);var o=Do(e);return o.length>0&&new RegExp("(^|\\s)"+n+"(\\s|$)").test(o)}function He(e,n){if(e.classList!==void 0)for(var o=K(n),r=0,d=o.length;r0?2*window.devicePixelRatio:1;function fa(e){return Z.edge?e.wheelDeltaY/2:e.deltaY&&e.deltaMode===0?-e.deltaY/vs:e.deltaY&&e.deltaMode===1?-e.deltaY*20:e.deltaY&&e.deltaMode===2?-e.deltaY*60:e.deltaX||e.deltaZ?0:e.wheelDelta?(e.wheelDeltaY||e.wheelDelta)/2:e.detail&&Math.abs(e.detail)<32765?-e.detail*20:e.detail?e.detail/-32765*60:0}function Ae(e,n){var o=n.relatedTarget;if(!o)return!0;try{for(;o&&o!==e;)o=o.parentNode}catch{return!1}return o!==e}var Vi={__proto__:null,on:ze,off:Je,stopPropagation:_i,disableScrollPropagation:gs,disableClickPropagation:Bi,preventDefault:Ft,stop:bi,getPropagationPath:da,getMousePosition:Ui,getWheelDelta:fa,isExternalTarget:Ae,addListener:ze,removeListener:Je},so=ge.extend({run:function(e,n,o,r){this.stop(),this._el=e,this._inProgress=!0,this._duration=o||.25,this._easeOutPower=1/Math.max(r||.5,.2),this._startPos=Xe(e),this._offset=n.subtract(this._startPos),this._startTime=+new Date,this.fire("start"),this._animate()},stop:function(){this._inProgress&&(this._step(!0),this._complete())},_animate:function(){this._animId=B(this._animate,this),this._step()},_step:function(e){var n=+new Date-this._startTime,o=this._duration*1e3;nthis.options.maxZoom)?this.setZoom(e):this},panInsideBounds:function(e,n){this._enforcingBounds=!0;var o=this.getCenter(),r=this._limitCenter(o,this._zoom,st(e));return o.equals(r)||this.panTo(r,n),this._enforcingBounds=!1,this},panInside:function(e,n){n=n||{};var o=pe(n.paddingTopLeft||n.padding||[0,0]),r=pe(n.paddingBottomRight||n.padding||[0,0]),d=this.project(this.getCenter()),v=this.project(e),P=this.getPixelBounds(),D=Ve([P.min.add(o),P.max.subtract(r)]),R=D.getSize();if(!D.contains(v)){this._enforcingBounds=!0;var ne=v.subtract(D.getCenter()),_e=D.extend(v).getSize().subtract(R);d.x+=ne.x<0?-_e.x:_e.x,d.y+=ne.y<0?-_e.y:_e.y,this.panTo(this.unproject(d),n),this._enforcingBounds=!1}return this},invalidateSize:function(e){if(!this._loaded)return this;e=u({animate:!1,pan:!0},e===!0?{animate:!0}:e);var n=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var o=this.getSize(),r=n.divideBy(2).round(),d=o.divideBy(2).round(),v=r.subtract(d);return!v.x&&!v.y?this:(e.animate&&e.pan?this.panBy(v):(e.pan&&this._rawPanBy(v),this.fire("move"),e.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(h(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:n,newSize:o}))},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(e){if(e=this._locateOptions=u({timeout:1e4,watch:!1},e),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var n=h(this._handleGeolocationResponse,this),o=h(this._handleGeolocationError,this);return e.watch?this._locationWatchId=navigator.geolocation.watchPosition(n,o,e):navigator.geolocation.getCurrentPosition(n,o,e),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(e){if(this._container._leaflet_id){var n=e.code,o=e.message||(n===1?"permission denied":n===2?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:n,message:"Geolocation error: "+o+"."})}},_handleGeolocationResponse:function(e){if(this._container._leaflet_id){var n=e.coords.latitude,o=e.coords.longitude,r=new Le(n,o),d=r.toBounds(e.coords.accuracy*2),v=this._locateOptions;if(v.setView){var P=this.getBoundsZoom(d);this.setView(r,v.maxZoom?Math.min(P,v.maxZoom):P)}var D={latlng:r,bounds:d,timestamp:e.timestamp};for(var R in e.coords)typeof e.coords[R]=="number"&&(D[R]=e.coords[R]);this.fire("locationfound",D)}},addHandler:function(e,n){if(!n)return this;var o=this[e]=new n(this);return this._handlers.push(o),this.options[e]&&o.enable(),this},remove:function(){if(this._initEvents(!0),this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch{this._container._leaflet_id=void 0,this._containerId=void 0}this._locationWatchId!==void 0&&this.stopLocate(),this._stop(),ot(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(O(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload");var e;for(e in this._layers)this._layers[e].remove();for(e in this._panes)ot(this._panes[e]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(e,n){var o="leaflet-pane"+(e?" leaflet-"+e.replace("Pane","")+"-pane":""),r=it("div",o,n||this._mapPane);return e&&(this._panes[e]=r),r},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter.clone():this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var e=this.getPixelBounds(),n=this.unproject(e.getBottomLeft()),o=this.unproject(e.getTopRight());return new wt(n,o)},getMinZoom:function(){return this.options.minZoom===void 0?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return this.options.maxZoom===void 0?this._layersMaxZoom===void 0?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(e,n,o){e=st(e),o=pe(o||[0,0]);var r=this.getZoom()||0,d=this.getMinZoom(),v=this.getMaxZoom(),P=e.getNorthWest(),D=e.getSouthEast(),R=this.getSize().subtract(o),ne=Ve(this.project(D,r),this.project(P,r)).getSize(),_e=Z.any3d?this.options.zoomSnap:1,Ne=R.x/ne.x,et=R.y/ne.y,un=n?Math.max(Ne,et):Math.min(Ne,et);return r=this.getScaleZoom(un,r),_e&&(r=Math.round(r/(_e/100))*(_e/100),r=n?Math.ceil(r/_e)*_e:Math.floor(r/_e)*_e),Math.max(d,Math.min(v,r))},getSize:function(){return(!this._size||this._sizeChanged)&&(this._size=new ue(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(e,n){var o=this._getTopLeftPoint(e,n);return new Ue(o,o.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(e){return this.options.crs.getProjectedBounds(e===void 0?this.getZoom():e)},getPane:function(e){return typeof e=="string"?this._panes[e]:e},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(e,n){var o=this.options.crs;return n=n===void 0?this._zoom:n,o.scale(e)/o.scale(n)},getScaleZoom:function(e,n){var o=this.options.crs;n=n===void 0?this._zoom:n;var r=o.zoom(e*o.scale(n));return isNaN(r)?1/0:r},project:function(e,n){return n=n===void 0?this._zoom:n,this.options.crs.latLngToPoint(De(e),n)},unproject:function(e,n){return n=n===void 0?this._zoom:n,this.options.crs.pointToLatLng(pe(e),n)},layerPointToLatLng:function(e){var n=pe(e).add(this.getPixelOrigin());return this.unproject(n)},latLngToLayerPoint:function(e){var n=this.project(De(e))._round();return n._subtract(this.getPixelOrigin())},wrapLatLng:function(e){return this.options.crs.wrapLatLng(De(e))},wrapLatLngBounds:function(e){return this.options.crs.wrapLatLngBounds(st(e))},distance:function(e,n){return this.options.crs.distance(De(e),De(n))},containerPointToLayerPoint:function(e){return pe(e).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(e){return pe(e).add(this._getMapPanePos())},containerPointToLatLng:function(e){var n=this.containerPointToLayerPoint(pe(e));return this.layerPointToLatLng(n)},latLngToContainerPoint:function(e){return this.layerPointToContainerPoint(this.latLngToLayerPoint(De(e)))},mouseEventToContainerPoint:function(e){return Ui(e,this._container)},mouseEventToLayerPoint:function(e){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(e))},mouseEventToLatLng:function(e){return this.layerPointToLatLng(this.mouseEventToLayerPoint(e))},_initContainer:function(e){var n=this._container=Io(e);if(n){if(n._leaflet_id)throw new Error("Map container is already initialized.")}else throw new Error("Map container not found.");ze(n,"scroll",this._onScroll,this),this._containerId=y(n)},_initLayout:function(){var e=this._container;this._fadeAnimated=this.options.fadeAnimation&&Z.any3d,He(e,"leaflet-container"+(Z.touch?" leaflet-touch":"")+(Z.retina?" leaflet-retina":"")+(Z.ielt9?" leaflet-oldie":"")+(Z.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var n=mi(e,"position");n!=="absolute"&&n!=="relative"&&n!=="fixed"&&n!=="sticky"&&(e.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var e=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),Mt(this._mapPane,new ue(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(He(e.markerPane,"leaflet-zoom-hide"),He(e.shadowPane,"leaflet-zoom-hide"))},_resetView:function(e,n,o){Mt(this._mapPane,new ue(0,0));var r=!this._loaded;this._loaded=!0,n=this._limitZoom(n),this.fire("viewprereset");var d=this._zoom!==n;this._moveStart(d,o)._move(e,n)._moveEnd(d),this.fire("viewreset"),r&&this.fire("load")},_moveStart:function(e,n){return e&&this.fire("zoomstart"),n||this.fire("movestart"),this},_move:function(e,n,o,r){n===void 0&&(n=this._zoom);var d=this._zoom!==n;return this._zoom=n,this._lastCenter=e,this._pixelOrigin=this._getNewPixelOrigin(e),r?o&&o.pinch&&this.fire("zoom",o):((d||o&&o.pinch)&&this.fire("zoom",o),this.fire("move",o)),this},_moveEnd:function(e){return e&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return O(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(e){Mt(this._mapPane,this._getMapPanePos().subtract(e))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(e){this._targets={},this._targets[y(this._container)]=this;var n=e?Je:ze;n(this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&n(window,"resize",this._onResize,this),Z.any3d&&this.options.transform3DLimit&&(e?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){O(this._resizeRequest),this._resizeRequest=B(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var e=this._getMapPanePos();Math.max(Math.abs(e.x),Math.abs(e.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(e,n){for(var o=[],r,d=n==="mouseout"||n==="mouseover",v=e.target||e.srcElement,P=!1;v;){if(r=this._targets[y(v)],r&&(n==="click"||n==="preclick")&&this._draggableMoved(r)){P=!0;break}if(r&&r.listens(n,!0)&&(d&&!Ae(v,e)||(o.push(r),d))||v===this._container)break;v=v.parentNode}return!o.length&&!P&&!d&&this.listens(n,!0)&&(o=[this]),o},_isClickDisabled:function(e){for(;e&&e!==this._container;){if(e._leaflet_disable_click)return!0;e=e.parentNode}},_handleDOMEvent:function(e){var n=e.target||e.srcElement;if(!(!this._loaded||n._leaflet_disable_events||e.type==="click"&&this._isClickDisabled(n))){var o=e.type;o==="mousedown"&&Ro(n),this._fireDOMEvent(e,o)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(e,n,o){if(e.type==="click"){var r=u({},e);r.type="preclick",this._fireDOMEvent(r,r.type,o)}var d=this._findEventTargets(e,n);if(o){for(var v=[],P=0;P0?Math.round(e-n)/2:Math.max(0,Math.ceil(e))-Math.max(0,Math.floor(n))},_limitZoom:function(e){var n=this.getMinZoom(),o=this.getMaxZoom(),r=Z.any3d?this.options.zoomSnap:1;return r&&(e=Math.round(e/r)*r),Math.max(n,Math.min(o,e))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){Lt(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(e,n){var o=this._getCenterOffset(e)._trunc();return(n&&n.animate)!==!0&&!this.getSize().contains(o)?!1:(this.panBy(o,n),!0)},_createAnimProxy:function(){var e=this._proxy=it("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(e),this.on("zoomanim",function(n){var o=Tn,r=this._proxy.style[o];gi(this._proxy,this.project(n.center,n.zoom),this.getZoomScale(n.zoom,1)),r===this._proxy.style[o]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",this._animMoveEnd,this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){ot(this._proxy),this.off("load moveend",this._animMoveEnd,this),delete this._proxy},_animMoveEnd:function(){var e=this.getCenter(),n=this.getZoom();gi(this._proxy,this.project(e,n),this.getZoomScale(n,1))},_catchTransitionEnd:function(e){this._animatingZoom&&e.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(e,n,o){if(this._animatingZoom)return!0;if(o=o||{},!this._zoomAnimated||o.animate===!1||this._nothingToAnimate()||Math.abs(n-this._zoom)>this.options.zoomAnimationThreshold)return!1;var r=this.getZoomScale(n),d=this._getCenterOffset(e)._divideBy(1-1/r);return o.animate!==!0&&!this.getSize().contains(d)?!1:(B(function(){this._moveStart(!0,o.noMoveStart||!1)._animateZoom(e,n,!0)},this),!0)},_animateZoom:function(e,n,o,r){this._mapPane&&(o&&(this._animatingZoom=!0,this._animateToCenter=e,this._animateToZoom=n,He(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:e,zoom:n,noUpdate:r}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(h(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&Lt(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom,void 0,!0),this._tempFireZoomEvent&&this.fire("zoom"),delete this._tempFireZoomEvent,this.fire("move"),this._moveEnd(!0))}});function Vo(e,n){return new qe(e,n)}var en=$.extend({options:{position:"topright"},initialize:function(e){F(this,e)},getPosition:function(){return this.options.position},setPosition:function(e){var n=this._map;return n&&n.removeControl(this),this.options.position=e,n&&n.addControl(this),this},getContainer:function(){return this._container},addTo:function(e){this.remove(),this._map=e;var n=this._container=this.onAdd(e),o=this.getPosition(),r=e._controlCorners[o];return He(n,"leaflet-control"),o.indexOf("bottom")!==-1?r.insertBefore(n,r.firstChild):r.appendChild(n),this._map.on("unload",this.remove,this),this},remove:function(){return this._map?(ot(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null,this):this},_refocusOnMap:function(e){this._map&&e&&e.screenX>0&&e.screenY>0&&this._map.getContainer().focus()}}),ln=function(e){return new en(e)};qe.include({addControl:function(e){return e.addTo(this),this},removeControl:function(e){return e.remove(),this},_initControlPos:function(){var e=this._controlCorners={},n="leaflet-",o=this._controlContainer=it("div",n+"control-container",this._container);function r(d,v){var P=n+d+" "+n+v;e[d+v]=it("div",P,o)}r("top","left"),r("top","right"),r("bottom","left"),r("bottom","right")},_clearControlPos:function(){for(var e in this._controlCorners)ot(this._controlCorners[e]);ot(this._controlContainer),delete this._controlCorners,delete this._controlContainer}});var yi=en.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(e,n,o,r){return o1,this._baseLayersList.style.display=e?"":"none"),this._separator.style.display=n&&e?"":"none",this},_onLayerChange:function(e){this._handlingClick||this._update();var n=this._getLayer(y(e.target)),o=n.overlay?e.type==="add"?"overlayadd":"overlayremove":e.type==="add"?"baselayerchange":null;o&&this._map.fire(o,n)},_createRadioElement:function(e,n){var o='",r=document.createElement("div");return r.innerHTML=o,r.firstChild},_addItem:function(e){var n=document.createElement("label"),o=this._map.hasLayer(e.layer),r;e.overlay?(r=document.createElement("input"),r.type="checkbox",r.className="leaflet-control-layers-selector",r.defaultChecked=o):r=this._createRadioElement("leaflet-base-layers_"+y(this),o),this._layerControlInputs.push(r),r.layerId=y(e.layer),ze(r,"click",this._onInputClick,this);var d=document.createElement("span");d.innerHTML=" "+e.name;var v=document.createElement("span");n.appendChild(v),v.appendChild(r),v.appendChild(d);var P=e.overlay?this._overlaysList:this._baseLayersList;return P.appendChild(n),this._checkDisabledLayers(),n},_onInputClick:function(){if(!this._preventClick){var e=this._layerControlInputs,n,o,r=[],d=[];this._handlingClick=!0;for(var v=e.length-1;v>=0;v--)n=e[v],o=this._getLayer(n.layerId).layer,n.checked?r.push(o):n.checked||d.push(o);for(v=0;v=0;d--)n=e[d],o=this._getLayer(n.layerId).layer,n.disabled=o.options.minZoom!==void 0&&ro.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expandSafely:function(){var e=this._section;this._preventClick=!0,ze(e,"click",Ft),this.expand();var n=this;setTimeout(function(){Je(e,"click",Ft),n._preventClick=!1})}}),ao=function(e,n,o){return new yi(e,n,o)},Zo=en.extend({options:{position:"topleft",zoomInText:'+',zoomInTitle:"Zoom in",zoomOutText:'−',zoomOutTitle:"Zoom out"},onAdd:function(e){var n="leaflet-control-zoom",o=it("div",n+" leaflet-bar"),r=this.options;return this._zoomInButton=this._createButton(r.zoomInText,r.zoomInTitle,n+"-in",o,this._zoomIn),this._zoomOutButton=this._createButton(r.zoomOutText,r.zoomOutTitle,n+"-out",o,this._zoomOut),this._updateDisabled(),e.on("zoomend zoomlevelschange",this._updateDisabled,this),o},onRemove:function(e){e.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(e){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(e.shiftKey?3:1))},_createButton:function(e,n,o,r,d){var v=it("a",o,r);return v.innerHTML=e,v.href="#",v.title=n,v.setAttribute("role","button"),v.setAttribute("aria-label",n),Bi(v),ze(v,"click",bi),ze(v,"click",d,this),ze(v,"click",this._refocusOnMap,this),v},_updateDisabled:function(){var e=this._map,n="leaflet-disabled";Lt(this._zoomInButton,n),Lt(this._zoomOutButton,n),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),(this._disabled||e._zoom===e.getMinZoom())&&(He(this._zoomOutButton,n),this._zoomOutButton.setAttribute("aria-disabled","true")),(this._disabled||e._zoom===e.getMaxZoom())&&(He(this._zoomInButton,n),this._zoomInButton.setAttribute("aria-disabled","true"))}});qe.mergeOptions({zoomControl:!0}),qe.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new Zo,this.addControl(this.zoomControl))});var _s=function(e){return new Zo(e)},Ho=en.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(e){var n="leaflet-control-scale",o=it("div",n),r=this.options;return this._addScales(r,n+"-line",o),e.on(r.updateWhenIdle?"moveend":"move",this._update,this),e.whenReady(this._update,this),o},onRemove:function(e){e.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(e,n,o){e.metric&&(this._mScale=it("div",n,o)),e.imperial&&(this._iScale=it("div",n,o))},_update:function(){var e=this._map,n=e.getSize().y/2,o=e.distance(e.containerPointToLatLng([0,n]),e.containerPointToLatLng([this.options.maxWidth,n]));this._updateScales(o)},_updateScales:function(e){this.options.metric&&e&&this._updateMetric(e),this.options.imperial&&e&&this._updateImperial(e)},_updateMetric:function(e){var n=this._getRoundNum(e),o=n<1e3?n+" m":n/1e3+" km";this._updateScale(this._mScale,o,n/e)},_updateImperial:function(e){var n=e*3.2808399,o,r,d;n>5280?(o=n/5280,r=this._getRoundNum(o),this._updateScale(this._iScale,r+" mi",r/o)):(d=this._getRoundNum(n),this._updateScale(this._iScale,d+" ft",d/n))},_updateScale:function(e,n,o){e.style.width=Math.round(this.options.maxWidth*o)+"px",e.innerHTML=n},_getRoundNum:function(e){var n=Math.pow(10,(Math.floor(e)+"").length-1),o=e/n;return o=o>=10?10:o>=5?5:o>=3?3:o>=2?2:1,n*o}}),ar=function(e){return new Ho(e)},gn='',Zi=en.extend({options:{position:"bottomright",prefix:''+(Z.inlineSvg?gn+" ":"")+"Leaflet"},initialize:function(e){F(this,e),this._attributions={}},onAdd:function(e){e.attributionControl=this,this._container=it("div","leaflet-control-attribution"),Bi(this._container);for(var n in e._layers)e._layers[n].getAttribution&&this.addAttribution(e._layers[n].getAttribution());return this._update(),e.on("layeradd",this._addAttribution,this),this._container},onRemove:function(e){e.off("layeradd",this._addAttribution,this)},_addAttribution:function(e){e.layer.getAttribution&&(this.addAttribution(e.layer.getAttribution()),e.layer.once("remove",function(){this.removeAttribution(e.layer.getAttribution())},this))},setPrefix:function(e){return this.options.prefix=e,this._update(),this},addAttribution:function(e){return e?(this._attributions[e]||(this._attributions[e]=0),this._attributions[e]++,this._update(),this):this},removeAttribution:function(e){return e?(this._attributions[e]&&(this._attributions[e]--,this._update()),this):this},_update:function(){if(this._map){var e=[];for(var n in this._attributions)this._attributions[n]&&e.push(n);var o=[];this.options.prefix&&o.push(this.options.prefix),e.length&&o.push(e.join(", ")),this._container.innerHTML=o.join(' | ')}}});qe.mergeOptions({attributionControl:!0}),qe.addInitHook(function(){this.options.attributionControl&&new Zi().addTo(this)});var ha=function(e){return new Zi(e)};en.Layers=yi,en.Zoom=Zo,en.Scale=Ho,en.Attribution=Zi,ln.layers=ao,ln.zoom=_s,ln.scale=ar,ln.attribution=ha;var An=$.extend({initialize:function(e){this._map=e},enable:function(){return this._enabled?this:(this._enabled=!0,this.addHooks(),this)},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}});An.addTo=function(e,n){return e.addHandler(n,this),this};var rr={Events:we},bs=Z.touch?"touchstart mousedown":"mousedown",vn=ge.extend({options:{clickTolerance:3},initialize:function(e,n,o,r){F(this,r),this._element=e,this._dragStartTarget=n||e,this._preventOutline=o},enable:function(){this._enabled||(ze(this._dragStartTarget,bs,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(vn._dragging===this&&this.finishDrag(!0),Je(this._dragStartTarget,bs,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(e){if(this._enabled&&(this._moved=!1,!No(this._element,"leaflet-zoom-anim"))){if(e.touches&&e.touches.length!==1){vn._dragging===this&&this.finishDrag();return}if(!(vn._dragging||e.shiftKey||e.which!==1&&e.button!==1&&!e.touches)&&(vn._dragging=this,this._preventOutline&&Ro(this._element),Di(),In(),!this._moving)){this.fire("down");var n=e.touches?e.touches[0]:e,o=Bo(this._element);this._startPoint=new ue(n.clientX,n.clientY),this._startPos=Xe(this._element),this._parentScale=hs(o);var r=e.type==="mousedown";ze(document,r?"mousemove":"touchmove",this._onMove,this),ze(document,r?"mouseup":"touchend touchcancel",this._onUp,this)}}},_onMove:function(e){if(this._enabled){if(e.touches&&e.touches.length>1){this._moved=!0;return}var n=e.touches&&e.touches.length===1?e.touches[0]:e,o=new ue(n.clientX,n.clientY)._subtract(this._startPoint);!o.x&&!o.y||Math.abs(o.x)+Math.abs(o.y)v&&(P=D,v=R);v>o&&(n[P]=1,ws(e,n,o,r,P),ws(e,n,o,P,d))}function va(e,n){for(var o=[e[0]],r=1,d=0,v=e.length;rn&&(o.push(e[r]),d=r);return dn.max.x&&(o|=2),e.yn.max.y&&(o|=8),o}function ks(e,n){var o=n.x-e.x,r=n.y-e.y;return o*o+r*r}function We(e,n,o,r){var d=n.x,v=n.y,P=o.x-d,D=o.y-v,R=P*P+D*D,ne;return R>0&&(ne=((e.x-d)*P+(e.y-v)*D)/R,ne>1?(d=o.x,v=o.y):ne>0&&(d+=P*ne,v+=D*ne)),P=e.x-d,D=e.y-v,r?P*P+D*D:new ue(d,v)}function yt(e){return!Se(e[0])||typeof e[0][0]!="object"&&typeof e[0][0]<"u"}function xi(e){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),yt(e)}function Ss(e,n){var o,r,d,v,P,D,R,ne;if(!e||e.length===0)throw new Error("latlngs not passed");yt(e)||(console.warn("latlngs are not flat! Only the first ring will be used"),e=e[0]);var _e=De([0,0]),Ne=st(e),et=Ne.getNorthWest().distanceTo(Ne.getSouthWest())*Ne.getNorthEast().distanceTo(Ne.getNorthWest());et<1700&&(_e=ys(e));var un=e.length,Wt=[];for(o=0;or){R=(v-r)/d,ne=[D.x-R*(D.x-P.x),D.y-R*(D.y-P.y)];break}var xn=n.unproject(pe(ne));return De([xn.lat+_e.lat,xn.lng+_e.lng])}var dr={__proto__:null,simplify:xs,pointToSegmentDistance:ga,closestPointOnSegment:ur,clipSegment:jo,_getEdgeIntersection:Hi,_getBitCode:Nn,_sqClosestPointOnSegment:We,isFlat:yt,_flat:xi,polylineCenter:Ss},ro={project:function(e){return new ue(e.lng,e.lat)},unproject:function(e){return new Le(e.y,e.x)},bounds:new Ue([-180,-90],[180,90])},Ts={R:6378137,R_MINOR:6356752314245179e-9,bounds:new Ue([-2003750834279e-5,-1549657073972e-5],[2003750834279e-5,1876465623138e-5]),project:function(e){var n=Math.PI/180,o=this.R,r=e.lat*n,d=this.R_MINOR/o,v=Math.sqrt(1-d*d),P=v*Math.sin(r),D=Math.tan(Math.PI/4-r/2)/Math.pow((1-P)/(1+P),v/2);return r=-o*Math.log(Math.max(D,1e-10)),new ue(e.lng*n*o,r)},unproject:function(e){for(var n=180/Math.PI,o=this.R,r=this.R_MINOR/o,d=Math.sqrt(1-r*r),v=Math.exp(-e.y/o),P=Math.PI/2-2*Math.atan(v),D=0,R=.1,ne;D<15&&Math.abs(R)>1e-7;D++)ne=d*Math.sin(P),ne=Math.pow((1-ne)/(1+ne),d/2),R=Math.PI/2-2*Math.atan(v*ne)-P,P+=R;return new Le(P*n,e.x*n/o)}},fr={__proto__:null,LonLat:ro,Mercator:Ts,SphericalMercator:Pt},hr=u({},At,{code:"EPSG:3395",projection:Ts,transformation:(function(){var e=.5/(Math.PI*Ts.R);return x(e,.5,-e,.5)})()}),ba=u({},At,{code:"EPSG:4326",projection:ro,transformation:x(1/180,1,-1/180,.5)}),lo=u({},zt,{projection:ro,transformation:x(1,0,-1,0),scale:function(e){return Math.pow(2,e)},zoom:function(e){return Math.log(e)/Math.LN2},distance:function(e,n){var o=n.lng-e.lng,r=n.lat-e.lat;return Math.sqrt(o*o+r*r)},infinite:!0});zt.Earth=At,zt.EPSG3395=hr,zt.EPSG3857=b,zt.EPSG900913=S,zt.EPSG4326=ba,zt.Simple=lo;var _n=ge.extend({options:{pane:"overlayPane",attribution:null,bubblingMouseEvents:!0},addTo:function(e){return e.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(e){return e&&e.removeLayer(this),this},getPane:function(e){return this._map.getPane(e?this.options[e]||e:this.options.pane)},addInteractiveTarget:function(e){return this._map._targets[y(e)]=this,this},removeInteractiveTarget:function(e){return delete this._map._targets[y(e)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(e){var n=e.target;if(n.hasLayer(this)){if(this._map=n,this._zoomAnimated=n._zoomAnimated,this.getEvents){var o=this.getEvents();n.on(o,this),this.once("remove",function(){n.off(o,this)},this)}this.onAdd(n),this.fire("add"),n.fire("layeradd",{layer:this})}}});qe.include({addLayer:function(e){if(!e._layerAdd)throw new Error("The provided object is not a Layer.");var n=y(e);return this._layers[n]?this:(this._layers[n]=e,e._mapToAdd=this,e.beforeAdd&&e.beforeAdd(this),this.whenReady(e._layerAdd,e),this)},removeLayer:function(e){var n=y(e);return this._layers[n]?(this._loaded&&e.onRemove(this),delete this._layers[n],this._loaded&&(this.fire("layerremove",{layer:e}),e.fire("remove")),e._map=e._mapToAdd=null,this):this},hasLayer:function(e){return y(e)in this._layers},eachLayer:function(e,n){for(var o in this._layers)e.call(n,this._layers[o]);return this},_addLayers:function(e){e=e?Se(e)?e:[e]:[];for(var n=0,o=e.length;nthis._layersMaxZoom&&this.setZoom(this._layersMaxZoom),this.options.minZoom===void 0&&this._layersMinZoom&&this.getZoom()=2&&n[0]instanceof Le&&n[0].equals(n[o-1])&&n.pop(),n},_setLatLngs:function(e){tn.prototype._setLatLngs.call(this,e),yt(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return yt(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var e=this._renderer._bounds,n=this.options.weight,o=new ue(n,n);if(e=new Ue(e.min.subtract(o),e.max.add(o)),this._parts=[],!(!this._pxBounds||!this._pxBounds.intersects(e))){if(this.options.noClip){this._parts=this._rings;return}for(var r=0,d=this._rings.length,v;re.y!=d.y>e.y&&e.x<(d.x-r.x)*(e.y-r.y)/(d.y-r.y)+r.x&&(n=!n);return n||tn.prototype._containsPoint.call(this,e,!0)}});function ya(e,n){return new Dn(e,n)}var yn=bn.extend({initialize:function(e,n){F(this,n),this._layers={},e&&this.addData(e)},addData:function(e){var n=Se(e)?e:e.features,o,r,d;if(n){for(o=0,r=n.length;o0&&d.push(d[0].slice()),d}function Qe(e,n){return e.feature?u({},e.feature,{geometry:n}):En(n)}function En(e){return e.type==="Feature"||e.type==="FeatureCollection"?e:{type:"Feature",properties:{},geometry:e}}var Ki={toGeoJSON:function(e){return Qe(this,{type:"Point",coordinates:Ls(this.getLatLng(),e)})}};Wo.include(Ki),Wi.include(Ki),wi.include(Ki),tn.include({toGeoJSON:function(e){var n=!yt(this._latlngs),o=Go(this._latlngs,n?1:0,!1,e);return Qe(this,{type:(n?"Multi":"")+"LineString",coordinates:o})}}),Dn.include({toGeoJSON:function(e){var n=!yt(this._latlngs),o=n&&!yt(this._latlngs[0]),r=Go(this._latlngs,o?2:n?1:0,!0,e);return n||(r=[r]),Qe(this,{type:(o?"Multi":"")+"Polygon",coordinates:r})}}),qn.include({toMultiPoint:function(e){var n=[];return this.eachLayer(function(o){n.push(o.toGeoJSON(e).geometry.coordinates)}),Qe(this,{type:"MultiPoint",coordinates:n})},toGeoJSON:function(e){var n=this.feature&&this.feature.geometry&&this.feature.geometry.type;if(n==="MultiPoint")return this.toMultiPoint(e);var o=n==="GeometryCollection",r=[];return this.eachLayer(function(d){if(d.toGeoJSON){var v=d.toGeoJSON(e);if(o)r.push(v.geometry);else{var P=En(v);P.type==="FeatureCollection"?r.push.apply(r,P.features):r.push(P)}}}),o?Qe(this,{geometries:r,type:"GeometryCollection"}):{type:"FeatureCollection",features:r}}});function qo(e,n){return new yn(e,n)}var gr=qo,ho=_n.extend({options:{opacity:1,alt:"",interactive:!1,crossOrigin:!1,errorOverlayUrl:"",zIndex:1,className:""},initialize:function(e,n,o){this._url=e,this._bounds=st(n),F(this,o)},onAdd:function(){this._image||(this._initImage(),this.options.opacity<1&&this._updateOpacity()),this.options.interactive&&(He(this._image,"leaflet-interactive"),this.addInteractiveTarget(this._image)),this.getPane().appendChild(this._image),this._reset()},onRemove:function(){ot(this._image),this.options.interactive&&this.removeInteractiveTarget(this._image)},setOpacity:function(e){return this.options.opacity=e,this._image&&this._updateOpacity(),this},setStyle:function(e){return e.opacity&&this.setOpacity(e.opacity),this},bringToFront:function(){return this._map&&Cn(this._image),this},bringToBack:function(){return this._map&&qt(this._image),this},setUrl:function(e){return this._url=e,this._image&&(this._image.src=e),this},setBounds:function(e){return this._bounds=st(e),this._map&&this._reset(),this},getEvents:function(){var e={zoom:this._reset,viewreset:this._reset};return this._zoomAnimated&&(e.zoomanim=this._animateZoom),e},setZIndex:function(e){return this.options.zIndex=e,this._updateZIndex(),this},getBounds:function(){return this._bounds},getElement:function(){return this._image},_initImage:function(){var e=this._url.tagName==="IMG",n=this._image=e?this._url:it("img");if(He(n,"leaflet-image-layer"),this._zoomAnimated&&He(n,"leaflet-zoom-animated"),this.options.className&&He(n,this.options.className),n.onselectstart=M,n.onmousemove=M,n.onload=h(this.fire,this,"load"),n.onerror=h(this._overlayOnError,this,"error"),(this.options.crossOrigin||this.options.crossOrigin==="")&&(n.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),this.options.zIndex&&this._updateZIndex(),e){this._url=n.src;return}n.src=this._url,n.alt=this.options.alt},_animateZoom:function(e){var n=this._map.getZoomScale(e.zoom),o=this._map._latLngBoundsToNewLayerBounds(this._bounds,e.zoom,e.center).min;gi(this._image,o,n)},_reset:function(){var e=this._image,n=new Ue(this._map.latLngToLayerPoint(this._bounds.getNorthWest()),this._map.latLngToLayerPoint(this._bounds.getSouthEast())),o=n.getSize();Mt(e,n.min),e.style.width=o.x+"px",e.style.height=o.y+"px"},_updateOpacity:function(){mn(this._image,this.options.opacity)},_updateZIndex:function(){this._image&&this.options.zIndex!==void 0&&this.options.zIndex!==null&&(this._image.style.zIndex=this.options.zIndex)},_overlayOnError:function(){this.fire("error");var e=this.options.errorOverlayUrl;e&&this._url!==e&&(this._url=e,this._image.src=e)},getCenter:function(){return this._bounds.getCenter()}}),vr=function(e,n,o){return new ho(e,n,o)},po=ho.extend({options:{autoplay:!0,loop:!0,keepAspectRatio:!0,muted:!1,playsInline:!0},_initImage:function(){var e=this._url.tagName==="VIDEO",n=this._image=e?this._url:it("video");if(He(n,"leaflet-image-layer"),this._zoomAnimated&&He(n,"leaflet-zoom-animated"),this.options.className&&He(n,this.options.className),n.onselectstart=M,n.onmousemove=M,n.onloadeddata=h(this.fire,this,"load"),e){for(var o=n.getElementsByTagName("source"),r=[],d=0;d0?r:[n.src];return}Se(this._url)||(this._url=[this._url]),!this.options.keepAspectRatio&&Object.prototype.hasOwnProperty.call(n.style,"objectFit")&&(n.style.objectFit="fill"),n.autoplay=!!this.options.autoplay,n.loop=!!this.options.loop,n.muted=!!this.options.muted,n.playsInline=!!this.options.playsInline;for(var v=0;v×',ze(r,"click",function(d){Ft(d),this.close()},this)}},_updateLayout:function(){var e=this._contentNode,n=e.style;n.width="",n.whiteSpace="nowrap";var o=e.offsetWidth;o=Math.min(o,this.options.maxWidth),o=Math.max(o,this.options.minWidth),n.width=o+1+"px",n.whiteSpace="",n.height="";var r=e.offsetHeight,d=this.options.maxHeight,v="leaflet-popup-scrolled";d&&r>d?(n.height=d+"px",He(e,v)):Lt(e,v),this._containerWidth=this._container.offsetWidth},_animateZoom:function(e){var n=this._map._latLngToNewLayerPoint(this._latlng,e.zoom,e.center),o=this._getAnchor();Mt(this._container,n.add(o))},_adjustPan:function(){if(this.options.autoPan){if(this._map._panAnim&&this._map._panAnim.stop(),this._autopanning){this._autopanning=!1;return}var e=this._map,n=parseInt(mi(this._container,"marginBottom"),10)||0,o=this._container.offsetHeight+n,r=this._containerWidth,d=new ue(this._containerLeft,-o-this._containerBottom);d._add(Xe(this._container));var v=e.layerPointToContainerPoint(d),P=pe(this.options.autoPanPadding),D=pe(this.options.autoPanPaddingTopLeft||P),R=pe(this.options.autoPanPaddingBottomRight||P),ne=e.getSize(),_e=0,Ne=0;v.x+r+R.x>ne.x&&(_e=v.x+r-ne.x+R.x),v.x-_e-D.x<0&&(_e=v.x-D.x),v.y+o+R.y>ne.y&&(Ne=v.y+o-ne.y+R.y),v.y-Ne-D.y<0&&(Ne=v.y-D.y),(_e||Ne)&&(this.options.keepInView&&(this._autopanning=!0),e.fire("autopanstart").panBy([_e,Ne]))}},_getAnchor:function(){return pe(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}}),As=function(e,n){return new Fn(e,n)};qe.mergeOptions({closePopupOnClick:!0}),qe.include({openPopup:function(e,n,o){return this._initOverlay(Fn,e,n,o).openOn(this),this},closePopup:function(e){return e=arguments.length?e:this._popup,e&&e.close(),this}}),_n.include({bindPopup:function(e,n){return this._popup=this._initOverlay(Fn,this._popup,e,n),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(e){return this._popup&&(this instanceof bn||(this._popup._source=this),this._popup._prepareOpen(e||this._latlng)&&this._popup.openOn(this._map)),this},closePopup:function(){return this._popup&&this._popup.close(),this},togglePopup:function(){return this._popup&&this._popup.toggle(this),this},isPopupOpen:function(){return this._popup?this._popup.isOpen():!1},setPopupContent:function(e){return this._popup&&this._popup.setContent(e),this},getPopup:function(){return this._popup},_openPopup:function(e){if(!(!this._popup||!this._map)){bi(e);var n=e.layer||e.target;if(this._popup._source===n&&!(n instanceof ti)){this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(e.latlng);return}this._popup._source=n,this.openPopup(e.latlng)}},_movePopup:function(e){this._popup.setLatLng(e.latlng)},_onKeyPress:function(e){e.originalEvent.keyCode===13&&this._openPopup(e)}});var _o=Nt.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(e){Nt.prototype.onAdd.call(this,e),this.setOpacity(this.options.opacity),e.fire("tooltipopen",{tooltip:this}),this._source&&(this.addEventParent(this._source),this._source.fire("tooltipopen",{tooltip:this},!0))},onRemove:function(e){Nt.prototype.onRemove.call(this,e),e.fire("tooltipclose",{tooltip:this}),this._source&&(this.removeEventParent(this._source),this._source.fire("tooltipclose",{tooltip:this},!0))},getEvents:function(){var e=Nt.prototype.getEvents.call(this);return this.options.permanent||(e.preclick=this.close),e},_initLayout:function(){var e="leaflet-tooltip",n=e+" "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=it("div",n),this._container.setAttribute("role","tooltip"),this._container.setAttribute("id","leaflet-tooltip-"+y(this))},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(e){var n,o,r=this._map,d=this._container,v=r.latLngToContainerPoint(r.getCenter()),P=r.layerPointToContainerPoint(e),D=this.options.direction,R=d.offsetWidth,ne=d.offsetHeight,_e=pe(this.options.offset),Ne=this._getAnchor();D==="top"?(n=R/2,o=ne):D==="bottom"?(n=R/2,o=0):D==="center"?(n=R/2,o=ne/2):D==="right"?(n=0,o=ne/2):D==="left"?(n=R,o=ne/2):P.xthis.options.maxZoom||or?this._retainParent(d,v,P,r):!1)},_retainChildren:function(e,n,o,r){for(var d=2*e;d<2*e+2;d++)for(var v=2*n;v<2*n+2;v++){var P=new ue(d,v);P.z=o+1;var D=this._tileCoordsToKey(P),R=this._tiles[D];if(R&&R.active){R.retain=!0;continue}else R&&R.loaded&&(R.retain=!0);o+1this.options.maxZoom||this.options.minZoom!==void 0&&d1){this._setView(e,o);return}for(var Ne=d.min.y;Ne<=d.max.y;Ne++)for(var et=d.min.x;et<=d.max.x;et++){var un=new ue(et,Ne);if(un.z=this._tileZoom,!!this._isValidTile(un)){var Wt=this._tiles[this._tileCoordsToKey(un)];Wt?Wt.current=!0:P.push(un)}}if(P.sort(function(xn,Jo){return xn.distanceTo(v)-Jo.distanceTo(v)}),P.length!==0){this._loading||(this._loading=!0,this.fire("loading"));var Rn=document.createDocumentFragment();for(et=0;eto.max.x)||!n.wrapLat&&(e.yo.max.y))return!1}if(!this.options.bounds)return!0;var r=this._tileCoordsToBounds(e);return st(this.options.bounds).overlaps(r)},_keyToBounds:function(e){return this._tileCoordsToBounds(this._keyToTileCoords(e))},_tileCoordsToNwSe:function(e){var n=this._map,o=this.getTileSize(),r=e.scaleBy(o),d=r.add(o),v=n.unproject(r,e.z),P=n.unproject(d,e.z);return[v,P]},_tileCoordsToBounds:function(e){var n=this._tileCoordsToNwSe(e),o=new wt(n[0],n[1]);return this.options.noWrap||(o=this._map.wrapLatLngBounds(o)),o},_tileCoordsToKey:function(e){return e.x+":"+e.y+":"+e.z},_keyToTileCoords:function(e){var n=e.split(":"),o=new ue(+n[0],+n[1]);return o.z=+n[2],o},_removeTile:function(e){var n=this._tiles[e];n&&(ot(n.el),delete this._tiles[e],this.fire("tileunload",{tile:n.el,coords:this._keyToTileCoords(e)}))},_initTile:function(e){He(e,"leaflet-tile");var n=this.getTileSize();e.style.width=n.x+"px",e.style.height=n.y+"px",e.onselectstart=M,e.onmousemove=M,Z.ielt9&&this.options.opacity<1&&mn(e,this.options.opacity)},_addTile:function(e,n){var o=this._getTilePos(e),r=this._tileCoordsToKey(e),d=this.createTile(this._wrapCoords(e),h(this._tileReady,this,e));this._initTile(d),this.createTile.length<2&&B(h(this._tileReady,this,e,null,d)),Mt(d,o),this._tiles[r]={el:d,coords:e,current:!0},n.appendChild(d),this.fire("tileloadstart",{tile:d,coords:e})},_tileReady:function(e,n,o){n&&this.fire("tileerror",{error:n,tile:o,coords:e});var r=this._tileCoordsToKey(e);o=this._tiles[r],o&&(o.loaded=+new Date,this._map._fadeAnimated?(mn(o.el,0),O(this._fadeFrame),this._fadeFrame=B(this._updateOpacity,this)):(o.active=!0,this._pruneTiles()),n||(He(o.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:o.el,coords:e})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),Z.ielt9||!this._map._fadeAnimated?B(this._pruneTiles,this):setTimeout(h(this._pruneTiles,this),250)))},_getTilePos:function(e){return e.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(e){var n=new ue(this._wrapX?T(e.x,this._wrapX):e.x,this._wrapY?T(e.y,this._wrapY):e.y);return n.z=e.z,n},_pxBoundsToTileRange:function(e){var n=this.getTileSize();return new Ue(e.min.unscaleBy(n).floor(),e.max.unscaleBy(n).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var e in this._tiles)if(!this._tiles[e].loaded)return!1;return!0}});function br(e){return new bo(e)}var Yn=bo.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(e,n){this._url=e,n=F(this,n),n.detectRetina&&Z.retina&&n.maxZoom>0?(n.tileSize=Math.floor(n.tileSize/2),n.zoomReverse?(n.zoomOffset--,n.minZoom=Math.min(n.maxZoom,n.minZoom+1)):(n.zoomOffset++,n.maxZoom=Math.max(n.minZoom,n.maxZoom-1)),n.minZoom=Math.max(0,n.minZoom)):n.zoomReverse?n.minZoom=Math.min(n.maxZoom,n.minZoom):n.maxZoom=Math.max(n.minZoom,n.maxZoom),typeof n.subdomains=="string"&&(n.subdomains=n.subdomains.split("")),this.on("tileunload",this._onTileRemove)},setUrl:function(e,n){return this._url===e&&n===void 0&&(n=!0),this._url=e,n||this.redraw(),this},createTile:function(e,n){var o=document.createElement("img");return ze(o,"load",h(this._tileOnLoad,this,n,o)),ze(o,"error",h(this._tileOnError,this,n,o)),(this.options.crossOrigin||this.options.crossOrigin==="")&&(o.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),typeof this.options.referrerPolicy=="string"&&(o.referrerPolicy=this.options.referrerPolicy),o.alt="",o.src=this.getTileUrl(e),o},getTileUrl:function(e){var n={r:Z.retina?"@2x":"",s:this._getSubdomain(e),x:e.x,y:e.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var o=this._globalTileRange.max.y-e.y;this.options.tms&&(n.y=o),n["-y"]=o}return fe(this._url,u(n,this.options))},_tileOnLoad:function(e,n){Z.ielt9?setTimeout(h(e,this,null,n),0):e(null,n)},_tileOnError:function(e,n,o){var r=this.options.errorTileUrl;r&&n.getAttribute("src")!==r&&(n.src=r),e(o,n)},_onTileRemove:function(e){e.tile.onload=null},_getZoomForUrl:function(){var e=this._tileZoom,n=this.options.maxZoom,o=this.options.zoomReverse,r=this.options.zoomOffset;return o&&(e=n-e),e+r},_getSubdomain:function(e){var n=Math.abs(e.x+e.y)%this.options.subdomains.length;return this.options.subdomains[n]},_abortLoading:function(){var e,n;for(e in this._tiles)if(this._tiles[e].coords.z!==this._tileZoom&&(n=this._tiles[e].el,n.onload=M,n.onerror=M,!n.complete)){n.src=Fe;var o=this._tiles[e].coords;ot(n),delete this._tiles[e],this.fire("tileabort",{tile:n,coords:o})}},_removeTile:function(e){var n=this._tiles[e];if(n)return n.el.setAttribute("src",Fe),bo.prototype._removeTile.call(this,e)},_tileReady:function(e,n,o){if(!(!this._map||o&&o.getAttribute("src")===Fe))return bo.prototype._tileReady.call(this,e,n,o)}});function wa(e,n){return new Yn(e,n)}var mt=Yn.extend({defaultWmsParams:{service:"WMS",request:"GetMap",layers:"",styles:"",format:"image/jpeg",transparent:!1,version:"1.1.1"},options:{crs:null,uppercase:!1},initialize:function(e,n){this._url=e;var o=u({},this.defaultWmsParams);for(var r in n)r in this.options||(o[r]=n[r]);n=F(this,n);var d=n.detectRetina&&Z.retina?2:1,v=this.getTileSize();o.width=v.x*d,o.height=v.y*d,this.wmsParams=o},onAdd:function(e){this._crs=this.options.crs||e.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var n=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[n]=this._crs.code,Yn.prototype.onAdd.call(this,e)},getTileUrl:function(e){var n=this._tileCoordsToNwSe(e),o=this._crs,r=Ve(o.project(n[0]),o.project(n[1])),d=r.min,v=r.max,P=(this._wmsVersion>=1.3&&this._crs===ba?[d.y,d.x,v.y,v.x]:[d.x,d.y,v.x,v.y]).join(","),D=Yn.prototype.getTileUrl.call(this,e);return D+te(this.wmsParams,D,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+P},setParams:function(e,n){return u(this.wmsParams,e),n||this.redraw(),this}});function yo(e,n){return new mt(e,n)}Yn.WMS=mt,wa.wms=yo;var On=_n.extend({options:{padding:.1},initialize:function(e){F(this,e),y(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),He(this._container,"leaflet-zoom-animated")),this.getPane().appendChild(this._container),this._update(),this.on("update",this._updatePaths,this)},onRemove:function(){this.off("update",this._updatePaths,this),this._destroyContainer()},getEvents:function(){var e={viewreset:this._reset,zoom:this._onZoom,moveend:this._update,zoomend:this._onZoomEnd};return this._zoomAnimated&&(e.zoomanim=this._onAnimZoom),e},_onAnimZoom:function(e){this._updateTransform(e.center,e.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(e,n){var o=this._map.getZoomScale(n,this._zoom),r=this._map.getSize().multiplyBy(.5+this.options.padding),d=this._map.project(this._center,n),v=r.multiplyBy(-o).add(d).subtract(this._map._getNewPixelOrigin(e,n));Z.any3d?gi(this._container,v,o):Mt(this._container,v)},_reset:function(){this._update(),this._updateTransform(this._center,this._zoom);for(var e in this._layers)this._layers[e]._reset()},_onZoomEnd:function(){for(var e in this._layers)this._layers[e]._project()},_updatePaths:function(){for(var e in this._layers)this._layers[e]._update()},_update:function(){var e=this.options.padding,n=this._map.getSize(),o=this._map.containerPointToLayerPoint(n.multiplyBy(-e)).round();this._bounds=new Ue(o,o.add(n.multiplyBy(1+e*2)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),Yo=On.extend({options:{tolerance:0},getEvents:function(){var e=On.prototype.getEvents.call(this);return e.viewprereset=this._onViewPreReset,e},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){On.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var e=this._container=document.createElement("canvas");ze(e,"mousemove",this._onMouseMove,this),ze(e,"click dblclick mousedown mouseup contextmenu",this._onClick,this),ze(e,"mouseout",this._handleMouseOut,this),e._leaflet_disable_events=!0,this._ctx=e.getContext("2d")},_destroyContainer:function(){O(this._redrawRequest),delete this._ctx,ot(this._container),Je(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){var e;this._redrawBounds=null;for(var n in this._layers)e=this._layers[n],e._update();this._redraw()}},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){On.prototype._update.call(this);var e=this._bounds,n=this._container,o=e.getSize(),r=Z.retina?2:1;Mt(n,e.min),n.width=r*o.x,n.height=r*o.y,n.style.width=o.x+"px",n.style.height=o.y+"px",Z.retina&&this._ctx.scale(2,2),this._ctx.translate(-e.min.x,-e.min.y),this.fire("update")}},_reset:function(){On.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(e){this._updateDashArray(e),this._layers[y(e)]=e;var n=e._order={layer:e,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=n),this._drawLast=n,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(e){this._requestRedraw(e)},_removePath:function(e){var n=e._order,o=n.next,r=n.prev;o?o.prev=r:this._drawLast=r,r?r.next=o:this._drawFirst=o,delete e._order,delete this._layers[y(e)],this._requestRedraw(e)},_updatePath:function(e){this._extendRedrawBounds(e),e._project(),e._update(),this._requestRedraw(e)},_updateStyle:function(e){this._updateDashArray(e),this._requestRedraw(e)},_updateDashArray:function(e){if(typeof e.options.dashArray=="string"){var n=e.options.dashArray.split(/[, ]+/),o=[],r,d;for(d=0;d')}}catch{}return function(e){return document.createElement("<"+e+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}})(),g={_initContainer:function(){this._container=it("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(On.prototype._update.call(this),this.fire("update"))},_initPath:function(e){var n=e._container=xo("shape");He(n,"leaflet-vml-shape "+(this.options.className||"")),n.coordsize="1 1",e._path=xo("path"),n.appendChild(e._path),this._updateStyle(e),this._layers[y(e)]=e},_addPath:function(e){var n=e._container;this._container.appendChild(n),e.options.interactive&&e.addInteractiveTarget(n)},_removePath:function(e){var n=e._container;ot(n),e.removeInteractiveTarget(n),delete this._layers[y(e)]},_updateStyle:function(e){var n=e._stroke,o=e._fill,r=e.options,d=e._container;d.stroked=!!r.stroke,d.filled=!!r.fill,r.stroke?(n||(n=e._stroke=xo("stroke")),d.appendChild(n),n.weight=r.weight+"px",n.color=r.color,n.opacity=r.opacity,r.dashArray?n.dashStyle=Se(r.dashArray)?r.dashArray.join(" "):r.dashArray.replace(/( *, *)/g," "):n.dashStyle="",n.endcap=r.lineCap.replace("butt","flat"),n.joinstyle=r.lineJoin):n&&(d.removeChild(n),e._stroke=null),r.fill?(o||(o=e._fill=xo("fill")),d.appendChild(o),o.color=r.fillColor||r.color,o.opacity=r.fillOpacity):o&&(d.removeChild(o),e._fill=null)},_updateCircle:function(e){var n=e._point.round(),o=Math.round(e._radius),r=Math.round(e._radiusY||o);this._setPath(e,e._empty()?"M0 0":"AL "+n.x+","+n.y+" "+o+","+r+" 0,"+65535*360)},_setPath:function(e,n){e._path.v=n},_bringToFront:function(e){Cn(e._container)},_bringToBack:function(e){qt(e._container)}},c=Z.vml?xo:W,q=On.extend({_initContainer:function(){this._container=c("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=c("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){ot(this._container),Je(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){On.prototype._update.call(this);var e=this._bounds,n=e.getSize(),o=this._container;(!this._svgSize||!this._svgSize.equals(n))&&(this._svgSize=n,o.setAttribute("width",n.x),o.setAttribute("height",n.y)),Mt(o,e.min),o.setAttribute("viewBox",[e.min.x,e.min.y,n.x,n.y].join(" ")),this.fire("update")}},_initPath:function(e){var n=e._path=c("path");e.options.className&&He(n,e.options.className),e.options.interactive&&He(n,"leaflet-interactive"),this._updateStyle(e),this._layers[y(e)]=e},_addPath:function(e){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(e._path),e.addInteractiveTarget(e._path)},_removePath:function(e){ot(e._path),e.removeInteractiveTarget(e._path),delete this._layers[y(e)]},_updatePath:function(e){e._project(),e._update()},_updateStyle:function(e){var n=e._path,o=e.options;n&&(o.stroke?(n.setAttribute("stroke",o.color),n.setAttribute("stroke-opacity",o.opacity),n.setAttribute("stroke-width",o.weight),n.setAttribute("stroke-linecap",o.lineCap),n.setAttribute("stroke-linejoin",o.lineJoin),o.dashArray?n.setAttribute("stroke-dasharray",o.dashArray):n.removeAttribute("stroke-dasharray"),o.dashOffset?n.setAttribute("stroke-dashoffset",o.dashOffset):n.removeAttribute("stroke-dashoffset")):n.setAttribute("stroke","none"),o.fill?(n.setAttribute("fill",o.fillColor||o.color),n.setAttribute("fill-opacity",o.fillOpacity),n.setAttribute("fill-rule",o.fillRule||"evenodd")):n.setAttribute("fill","none"))},_updatePoly:function(e,n){this._setPath(e,V(e._parts,n))},_updateCircle:function(e){var n=e._point,o=Math.max(Math.round(e._radius),1),r=Math.max(Math.round(e._radiusY),1)||o,d="a"+o+","+r+" 0 1,0 ",v=e._empty()?"M0 0":"M"+(n.x-o)+","+n.y+d+o*2+",0 "+d+-o*2+",0 ";this._setPath(e,v)},_setPath:function(e,n){e._path.setAttribute("d",n)},_bringToFront:function(e){Cn(e._path)},_bringToBack:function(e){qt(e._path)}});Z.vml&&q.include(g);function k(e){return Z.svg||Z.vml?new q(e):null}qe.include({getRenderer:function(e){var n=e.options.renderer||this._getPaneRenderer(e.options.pane)||this.options.renderer||this._renderer;return n||(n=this._renderer=this._createRenderer()),this.hasLayer(n)||this.addLayer(n),n},_getPaneRenderer:function(e){if(e==="overlayPane"||e===void 0)return!1;var n=this._paneRenderers[e];return n===void 0&&(n=this._createRenderer({pane:e}),this._paneRenderers[e]=n),n},_createRenderer:function(e){return this.options.preferCanvas&&ka(e)||k(e)}});var Be=Dn.extend({initialize:function(e,n){Dn.prototype.initialize.call(this,this._boundsToLatLngs(e),n)},setBounds:function(e){return this.setLatLngs(this._boundsToLatLngs(e))},_boundsToLatLngs:function(e){return e=st(e),[e.getSouthWest(),e.getNorthWest(),e.getNorthEast(),e.getSouthEast()]}});function id(e,n){return new Be(e,n)}q.create=c,q.pointsToPath=V,yn.geometryToLayer=ni,yn.coordsToLatLng=ii,yn.coordsToLatLngs=ki,yn.latLngToCoords=Ls,yn.latLngsToCoords=Go,yn.getFeature=Qe,yn.asFeature=En,qe.mergeOptions({boxZoom:!0});var bl=An.extend({initialize:function(e){this._map=e,this._container=e._container,this._pane=e._panes.overlayPane,this._resetStateTimeout=0,e.on("unload",this._destroy,this)},addHooks:function(){ze(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){Je(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){ot(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){this._resetStateTimeout!==0&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(e){if(!e.shiftKey||e.which!==1&&e.button!==1)return!1;this._clearDeferredResetState(),this._resetState(),In(),Di(),this._startPoint=this._map.mouseEventToContainerPoint(e),ze(document,{contextmenu:bi,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(e){this._moved||(this._moved=!0,this._box=it("div","leaflet-zoom-box",this._container),He(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(e);var n=new Ue(this._point,this._startPoint),o=n.getSize();Mt(this._box,n.min),this._box.style.width=o.x+"px",this._box.style.height=o.y+"px"},_finish:function(){this._moved&&(ot(this._box),Lt(this._container,"leaflet-crosshair")),vi(),Fi(),Je(document,{contextmenu:bi,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(e){if(!(e.which!==1&&e.button!==1)&&(this._finish(),!!this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(h(this._resetState,this),0);var n=new wt(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(n).fire("boxzoomend",{boxZoomBounds:n})}},_onKeyDown:function(e){e.keyCode===27&&(this._finish(),this._clearDeferredResetState(),this._resetState())}});qe.addInitHook("addHandler","boxZoom",bl),qe.mergeOptions({doubleClickZoom:!0});var yl=An.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(e){var n=this._map,o=n.getZoom(),r=n.options.zoomDelta,d=e.originalEvent.shiftKey?o-r:o+r;n.options.doubleClickZoom==="center"?n.setZoom(d):n.setZoomAround(e.containerPoint,d)}});qe.addInitHook("addHandler","doubleClickZoom",yl),qe.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var xl=An.extend({addHooks:function(){if(!this._draggable){var e=this._map;this._draggable=new vn(e._mapPane,e._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),e.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),e.on("zoomend",this._onZoomEnd,this),e.whenReady(this._onZoomEnd,this))}He(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){Lt(this._map._container,"leaflet-grab"),Lt(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var e=this._map;if(e._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var n=st(this._map.options.maxBounds);this._offsetLimit=Ve(this._map.latLngToContainerPoint(n.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(n.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;e.fire("movestart").fire("dragstart"),e.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(e){if(this._map.options.inertia){var n=this._lastTime=+new Date,o=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(o),this._times.push(n),this._prunePositions(n)}this._map.fire("move",e).fire("drag",e)},_prunePositions:function(e){for(;this._positions.length>1&&e-this._times[0]>50;)this._positions.shift(),this._times.shift()},_onZoomEnd:function(){var e=this._map.getSize().divideBy(2),n=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=n.subtract(e).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(e,n){return e-(e-n)*this._viscosity},_onPreDragLimit:function(){if(!(!this._viscosity||!this._offsetLimit)){var e=this._draggable._newPos.subtract(this._draggable._startPos),n=this._offsetLimit;e.xn.max.x&&(e.x=this._viscousLimit(e.x,n.max.x)),e.y>n.max.y&&(e.y=this._viscousLimit(e.y,n.max.y)),this._draggable._newPos=this._draggable._startPos.add(e)}},_onPreDragWrap:function(){var e=this._worldWidth,n=Math.round(e/2),o=this._initialWorldOffset,r=this._draggable._newPos.x,d=(r-n+o)%e+n-o,v=(r+n+o)%e-n-o,P=Math.abs(d+o)0?v:-v))-n;this._delta=0,this._startTime=null,P&&(e.options.scrollWheelZoom==="center"?e.setZoom(n+P):e.setZoomAround(this._lastMousePos,n+P))}});qe.addInitHook("addHandler","scrollWheelZoom",kl);var od=600;qe.mergeOptions({tapHold:Z.touchNative&&Z.safari&&Z.mobile,tapTolerance:15});var Sl=An.extend({addHooks:function(){ze(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){Je(this._map._container,"touchstart",this._onDown,this)},_onDown:function(e){if(clearTimeout(this._holdTimeout),e.touches.length===1){var n=e.touches[0];this._startPos=this._newPos=new ue(n.clientX,n.clientY),this._holdTimeout=setTimeout(h(function(){this._cancel(),this._isTapValid()&&(ze(document,"touchend",Ft),ze(document,"touchend touchcancel",this._cancelClickPrevent),this._simulateEvent("contextmenu",n))},this),od),ze(document,"touchend touchcancel contextmenu",this._cancel,this),ze(document,"touchmove",this._onMove,this)}},_cancelClickPrevent:function e(){Je(document,"touchend",Ft),Je(document,"touchend touchcancel",e)},_cancel:function(){clearTimeout(this._holdTimeout),Je(document,"touchend touchcancel contextmenu",this._cancel,this),Je(document,"touchmove",this._onMove,this)},_onMove:function(e){var n=e.touches[0];this._newPos=new ue(n.clientX,n.clientY)},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_simulateEvent:function(e,n){var o=new MouseEvent(e,{bubbles:!0,cancelable:!0,view:window,screenX:n.screenX,screenY:n.screenY,clientX:n.clientX,clientY:n.clientY});o._simulated=!0,n.target.dispatchEvent(o)}});qe.addInitHook("addHandler","tapHold",Sl),qe.mergeOptions({touchZoom:Z.touch,bounceAtZoomLimits:!0});var Tl=An.extend({addHooks:function(){He(this._map._container,"leaflet-touch-zoom"),ze(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){Lt(this._map._container,"leaflet-touch-zoom"),Je(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(e){var n=this._map;if(!(!e.touches||e.touches.length!==2||n._animatingZoom||this._zooming)){var o=n.mouseEventToContainerPoint(e.touches[0]),r=n.mouseEventToContainerPoint(e.touches[1]);this._centerPoint=n.getSize()._divideBy(2),this._startLatLng=n.containerPointToLatLng(this._centerPoint),n.options.touchZoom!=="center"&&(this._pinchStartLatLng=n.containerPointToLatLng(o.add(r)._divideBy(2))),this._startDist=o.distanceTo(r),this._startZoom=n.getZoom(),this._moved=!1,this._zooming=!0,n._stop(),ze(document,"touchmove",this._onTouchMove,this),ze(document,"touchend touchcancel",this._onTouchEnd,this),Ft(e)}},_onTouchMove:function(e){if(!(!e.touches||e.touches.length!==2||!this._zooming)){var n=this._map,o=n.mouseEventToContainerPoint(e.touches[0]),r=n.mouseEventToContainerPoint(e.touches[1]),d=o.distanceTo(r)/this._startDist;if(this._zoom=n.getScaleZoom(d,this._startZoom),!n.options.bounceAtZoomLimits&&(this._zoomn.getMaxZoom()&&d>1)&&(this._zoom=n._limitZoom(this._zoom)),n.options.touchZoom==="center"){if(this._center=this._startLatLng,d===1)return}else{var v=o._add(r)._divideBy(2)._subtract(this._centerPoint);if(d===1&&v.x===0&&v.y===0)return;this._center=n.unproject(n.project(this._pinchStartLatLng,this._zoom).subtract(v),this._zoom)}this._moved||(n._moveStart(!0,!1),this._moved=!0),O(this._animRequest);var P=h(n._move,n,this._center,this._zoom,{pinch:!0,round:!1},void 0);this._animRequest=B(P,this,!0),Ft(e)}},_onTouchEnd:function(){if(!this._moved||!this._zooming){this._zooming=!1;return}this._zooming=!1,O(this._animRequest),Je(document,"touchmove",this._onTouchMove,this),Je(document,"touchend touchcancel",this._onTouchEnd,this),this._map.options.zoomAnimation?this._map._animateZoom(this._center,this._map._limitZoom(this._zoom),!0,this._map.options.zoomSnap):this._map._resetView(this._center,this._map._limitZoom(this._zoom))}});qe.addInitHook("addHandler","touchZoom",Tl),qe.BoxZoom=bl,qe.DoubleClickZoom=yl,qe.Drag=xl,qe.Keyboard=wl,qe.ScrollWheelZoom=kl,qe.TapHold=Sl,qe.TouchZoom=Tl,s.Bounds=Ue,s.Browser=Z,s.CRS=zt,s.Canvas=Yo,s.Circle=Wi,s.CircleMarker=wi,s.Class=$,s.Control=en,s.DivIcon=Ms,s.DivOverlay=Nt,s.DomEvent=Vi,s.DomUtil=Ln,s.Draggable=vn,s.Evented=ge,s.FeatureGroup=bn,s.GeoJSON=yn,s.GridLayer=bo,s.Handler=An,s.Icon=ji,s.ImageOverlay=ho,s.LatLng=Le,s.LatLngBounds=wt,s.Layer=_n,s.LayerGroup=qn,s.LineUtil=dr,s.Map=qe,s.Marker=Wo,s.Mixin=rr,s.Path=ti,s.Point=ue,s.PolyUtil=lr,s.Polygon=Dn,s.Polyline=tn,s.Popup=Fn,s.PosAnimation=so,s.Projection=fr,s.Rectangle=Be,s.Renderer=On,s.SVG=q,s.SVGOverlay=go,s.TileLayer=Yn,s.Tooltip=_o,s.Transformation=kt,s.Util=N,s.VideoOverlay=po,s.bind=h,s.bounds=Ve,s.canvas=ka,s.circle=Rt,s.circleMarker=fo,s.control=ln,s.divIcon=xa,s.extend=u,s.featureGroup=Ps,s.geoJSON=qo,s.geoJson=gr,s.gridLayer=br,s.icon=pr,s.imageOverlay=vr,s.latLng=De,s.latLngBounds=st,s.layerGroup=uo,s.map=Vo,s.marker=mr,s.point=pe,s.polygon=ya,s.polyline=Ko,s.popup=As,s.rectangle=id,s.setOptions=F,s.stamp=y,s.svg=k,s.svgOverlay=vo,s.tileLayer=wa,s.tooltip=_r,s.transformation=x,s.version=l,s.videoOverlay=mo;var sd=window.L;s.noConflict=function(){return window.L=sd,this},window.L=s}))})(Fs,Fs.exports)),Fs.exports}var dm=cm();const qi=lm(dm),Cu={__name:"DeviceMap",props:{position:{type:Object,default:null},trail:{type:Array,default:()=>[]},aircraft:{type:Array,default:()=>[]}},setup(t){const i=t,s=Y(null);let l,u,f,h;const _=new Map;function y(K,F){const te=getComputedStyle(document.documentElement).getPropertyValue("--accent").trim()||"#3D7BF0",X=F?"#8a94a6":te,fe=typeof K=="number"?K:0;return qi.divIcon({className:"plane-marker",iconSize:[22,22],iconAnchor:[11,11],html:``})}function C(K){const te=[`${K.callsign||K.icao24||"aircraft"}`];return K.country&&te.push(K.country),typeof K.altitude=="number"&&te.push(`${Math.round(K.altitude)} m`),typeof K.velocity=="number"&&te.push(`${Math.round(K.velocity*3.6)} km/h`),K.onGround&&te.push("on ground"),te.join(" · ")}function T(){if(!l)return;h||(h=qi.layerGroup().addTo(l));const K=new Set;for(const F of i.aircraft){if(typeof F.lat!="number"||typeof F.lng!="number")continue;K.add(F.icao24);const te=[F.lat,F.lng];let X=_.get(F.icao24);X?(X.setLatLng(te),X.setIcon(y(F.heading,F.onGround)),X.setTooltipContent(C(F))):(X=qi.marker(te,{icon:y(F.heading,F.onGround)}).bindTooltip(C(F)),X.addTo(h),_.set(F.icao24,X))}for(const[F,te]of _)K.has(F)||(h.removeLayer(te),_.delete(F))}function M(){if(!l)return;const K=i.position;if(K&&(K.lat||K.lng)){const F=[K.lat,K.lng];u?u.setLatLng(F):(u=qi.marker(F).addTo(l),l.setView(F,17))}if(f&&f.remove(),i.trail.length){const F=getComputedStyle(document.documentElement).getPropertyValue("--accent").trim()||"#3D7BF0";f=qi.polyline(i.trail,{color:F,weight:3}).addTo(l)}}fi(()=>{l=qi.map(s.value,{zoomControl:!0}).setView([20,0],2),qi.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",{attribution:"© OpenStreetMap",maxZoom:19}).addTo(l),setTimeout(()=>l.invalidateSize(),60),M(),T(),(!i.position||!i.position.lat&&!i.position.lng)&&i.aircraft.length&&j()});let H=!1;function j(){if(H||!l||!i.aircraft.length)return;const K=i.aircraft.filter(F=>typeof F.lat=="number"&&typeof F.lng=="number").map(F=>[F.lat,F.lng]);K.length&&(l.fitBounds(qi.latLngBounds(K).pad(.2)),H=!0)}return us(()=>{l&&l.remove(),l=null}),Bt(()=>i.position,M,{deep:!0}),Bt(()=>i.trail,M,{deep:!0}),Bt(()=>i.aircraft,()=>{T(),(!i.position||!i.position.lat&&!i.position.lng)&&j()},{deep:!0}),(K,F)=>(p(),m("div",{ref_key:"el",ref:s,class:"h-[320px] w-full rounded-lg"},null,512))}},fm=["width","height","stroke-width"],hm=["d"],J={__name:"Icon",props:{name:{type:String,required:!0},size:{type:[Number,String],default:18},stroke:{type:[Number,String],default:2}},setup(t){const l=({grid:"M3 3h7v7H3zM14 3h7v7h-7zM14 14h7v7h-7zM3 14h7v7H3z",radio:"M4.9 19.1a10 10 0 0 1 0-14.2M7.8 16.2a6 6 0 0 1 0-8.4M16.2 7.8a6 6 0 0 1 0 8.4M19.1 4.9a10 10 0 0 1 0 14.2M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2z",route:"M6 19a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM18 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM6 13V9a4 4 0 0 1 4-4h4",calendar:"M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z",book:"M4 19.5A2.5 2.5 0 0 1 6.5 17H20M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z",fileText:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM14 2v6h6M16 13H8M16 17H8M10 9H8",settings:"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6z M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 1 1-2.83-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 1 1 2.83-2.83l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 1 1 2.83 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z",search:"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16zM21 21l-4.3-4.3",plus:"M12 5v14M5 12h14",battery:"M3 8h14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H3a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1zM22 11v2",signal:"M2 20h.01M7 20v-4M12 20v-8M17 20V8M22 20V4",clock:"M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18zM12 7v5l3 2",chevronRight:"M9 6l6 6-6 6",play:"M6 3l14 9-14 9V3z",logout:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4M16 17l5-5-5-5M21 12H9",wind:"M12.8 19.6A2 2 0 1 0 14 16H2M17.5 8a2.5 2.5 0 1 1 2 4H2M9.6 4.6A2 2 0 1 1 11 8H2",drone:"M12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8zM6 6 4 4M18 6l2-2M6 18l-2 2M18 18l2 2",user:"M20 21a8 8 0 1 0-16 0M12 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8z",users:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2M9 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75",shield:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z",sliders:"M4 21v-7M4 10V3M12 21v-9M12 8V3M20 21v-5M20 12V3M1 14h6M9 8h6M17 16h6",alertTriangle:"M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0zM12 9v4M12 17h.01",download:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3",upload:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M17 8l-5-5-5 5M12 3v12",trash:"M3 6h18M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6M10 11v6M14 11v6",check:"M20 6 9 17l-5-5",mail:"M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zM22 6l-10 7L2 6",lock:"M5 11h14a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2zM7 11V7a5 5 0 0 1 10 0v4",monitor:"M3 4h18a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zM8 21h8M12 17v4",globe:"M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18zM3 12h18M12 3a15 15 0 0 1 0 18 15 15 0 0 1 0-18z",smartphone:"M7 2h10a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zM11 18h2",image:"M4 4h16a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zM8.5 11a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zM21 15l-5-5L5 21",eye:"M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7z M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",type:"M4 7V4h16v3M9 20h6M12 4v16",sun:"M12 17a5 5 0 1 0 0-10 5 5 0 0 0 0 10zM12 1v2M12 21v2M4.2 4.2l1.4 1.4M18.4 18.4l1.4 1.4M1 12h2M21 12h2M4.2 19.8l1.4-1.4M18.4 5.6l1.4-1.4",moon:"M21 12.8A9 9 0 1 1 11.2 3a7 7 0 0 0 9.8 9.8z",x:"M18 6 6 18M6 6l12 12",server:"M20 4H4a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zM20 13H4a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2zM6 7.5h.01M6 16.5h.01",cloud:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9z"}[t.name]||"").split(" M").map((u,f)=>f?"M"+u:u);return(u,f)=>(p(),m("svg",{width:t.size,height:t.size,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":t.stroke,"stroke-linecap":"round","stroke-linejoin":"round",style:{flex:"none"},"aria-hidden":"true"},[(p(!0),m(le,null,Ie(Ee(l),(h,_)=>(p(),m("path",{key:_,d:h},null,8,hm))),128))],8,fm))}},pm=["aria-checked","disabled"],nn={__name:"Toggle",props:{modelValue:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(t,{emit:i}){const s=i;return(l,u)=>(p(),m("button",{type:"button",role:"switch","aria-checked":t.modelValue,disabled:t.disabled,class:Ce(["relative inline-flex h-6 w-11 shrink-0 items-center rounded-full transition disabled:opacity-40",t.modelValue?"bg-accent":"bg-surface-2 border border-line-strong"]),onClick:u[0]||(u[0]=f=>s("update:modelValue",!t.modelValue))},[a("span",{class:Ce(["inline-block h-4 w-4 transform rounded-full bg-white shadow-sm transition",t.modelValue?"translate-x-6":"translate-x-1"])},null,2)],10,pm))}},mm={class:"inline-flex rounded-[10px] border border-line bg-surface-2 p-0.5"},gm=["onClick"],wn={__name:"Segmented",props:{modelValue:{type:[String,Number],default:""},options:{type:Array,default:()=>[]}},emits:["update:modelValue"],setup(t,{emit:i}){const s=i;return(l,u)=>(p(),m("div",mm,[(p(!0),m(le,null,Ie(t.options,f=>(p(),m("button",{key:f.value,type:"button",class:Ce(["inline-flex items-center gap-1.5 rounded-lg px-3 py-1.5 text-[13px] font-semibold transition",t.modelValue===f.value?"bg-surface-1 text-ink shadow-xs":"text-ink-secondary hover:text-ink"]),onClick:h=>s("update:modelValue",f.value)},[f.icon?(p(),nt(J,{key:0,name:f.icon,size:15},null,8,["name"])):I("",!0),z(" "+w(f.label),1)],10,gm))),128))]))}},vm={class:"text-sm font-semibold text-ink"},_m={key:0,class:"mt-0.5 text-xs text-ink-muted"},xe={__name:"Row",props:{title:{type:String,default:""},desc:{type:String,default:""},keywords:{type:String,default:""},block:{type:Boolean,default:!1}},setup(t){const i=t,s=Vs("settingsSearch",{value:""}),l=ce(()=>{const u=(s.value||"").trim().toLowerCase();return u?`${i.title} ${i.desc} ${i.keywords}`.toLowerCase().includes(u):!0});return(u,f)=>l.value?(p(),m("div",{key:0,class:Ce(["border-b border-line py-4 last:border-0",t.block?"":"flex items-center justify-between gap-6"])},[a("div",{class:Ce(t.block?"mb-3":"min-w-0")},[a("div",vm,w(t.title),1),t.desc?(p(),m("div",_m,w(t.desc),1)):I("",!0)],2),a("div",{class:Ce(t.block?"":"shrink-0")},[Tf(u.$slots,"default")],2)],2)):I("",!0)}},ia=[{code:"AL",name:"Albania",continent:"EU",bbox:"39.6,19.3,42.7,21.1"},{code:"AD",name:"Andorra",continent:"EU",bbox:"42.4,1.4,42.7,1.8"},{code:"AT",name:"Austria",continent:"EU",bbox:"46.4,9.5,49.0,17.2"},{code:"BY",name:"Belarus",continent:"EU",bbox:"51.2,23.2,56.2,32.8"},{code:"BE",name:"Belgium",continent:"EU",bbox:"49.5,2.5,51.5,6.4"},{code:"BA",name:"Bosnia and Herzegovina",continent:"EU",bbox:"42.6,15.7,45.3,19.6"},{code:"BG",name:"Bulgaria",continent:"EU",bbox:"41.2,22.4,44.2,28.6"},{code:"HR",name:"Croatia",continent:"EU",bbox:"42.4,13.5,46.6,19.4"},{code:"CY",name:"Cyprus",continent:"EU",bbox:"34.6,32.3,35.7,34.6"},{code:"CZ",name:"Czechia",continent:"EU",bbox:"48.6,12.1,51.1,18.9"},{code:"DK",name:"Denmark",continent:"EU",bbox:"54.6,8.1,57.8,12.7"},{code:"EE",name:"Estonia",continent:"EU",bbox:"57.5,21.8,59.7,28.2"},{code:"FI",name:"Finland",continent:"EU",bbox:"59.8,20.6,70.1,31.6"},{code:"FR",name:"France",continent:"EU",bbox:"41.3,-5.2,51.1,9.6"},{code:"DE",name:"Germany",continent:"EU",bbox:"47.2,5.8,55.1,15.1"},{code:"GR",name:"Greece",continent:"EU",bbox:"34.8,19.4,41.8,28.3"},{code:"HU",name:"Hungary",continent:"EU",bbox:"45.7,16.1,48.6,22.9"},{code:"IS",name:"Iceland",continent:"EU",bbox:"63.3,-24.6,66.6,-13.5"},{code:"IE",name:"Ireland",continent:"EU",bbox:"51.4,-10.6,55.4,-6.0"},{code:"IT",name:"Italy",continent:"EU",bbox:"36.6,6.6,47.1,18.6"},{code:"XK",name:"Kosovo",continent:"EU",bbox:"41.8,20.0,43.3,21.8"},{code:"LV",name:"Latvia",continent:"EU",bbox:"55.7,20.9,58.1,28.2"},{code:"LI",name:"Liechtenstein",continent:"EU",bbox:"47.0,9.4,47.3,9.6"},{code:"LT",name:"Lithuania",continent:"EU",bbox:"53.9,20.9,56.5,26.9"},{code:"LU",name:"Luxembourg",continent:"EU",bbox:"49.4,5.7,50.2,6.5"},{code:"MT",name:"Malta",continent:"EU",bbox:"35.8,14.1,36.1,14.6"},{code:"MD",name:"Moldova",continent:"EU",bbox:"45.4,26.6,48.5,30.2"},{code:"MC",name:"Monaco",continent:"EU",bbox:"43.72,7.40,43.75,7.44"},{code:"ME",name:"Montenegro",continent:"EU",bbox:"41.8,18.4,43.6,20.4"},{code:"NL",name:"Netherlands",continent:"EU",bbox:"50.7,3.3,53.7,7.2"},{code:"MK",name:"North Macedonia",continent:"EU",bbox:"40.8,20.4,42.4,23.0"},{code:"NO",name:"Norway",continent:"EU",bbox:"57.9,4.6,71.2,31.1"},{code:"PL",name:"Poland",continent:"EU",bbox:"49.0,14.1,54.9,24.2"},{code:"PT",name:"Portugal",continent:"EU",bbox:"36.9,-9.5,42.2,-6.2"},{code:"RO",name:"Romania",continent:"EU",bbox:"43.6,20.2,48.3,29.7"},{code:"SM",name:"San Marino",continent:"EU",bbox:"43.89,12.40,43.99,12.52"},{code:"RS",name:"Serbia",continent:"EU",bbox:"42.2,18.8,46.2,23.0"},{code:"SK",name:"Slovakia",continent:"EU",bbox:"47.7,16.8,49.6,22.6"},{code:"SI",name:"Slovenia",continent:"EU",bbox:"45.4,13.4,46.9,16.6"},{code:"ES",name:"Spain",continent:"EU",bbox:"35.9,-9.4,43.8,3.4"},{code:"SE",name:"Sweden",continent:"EU",bbox:"55.3,11.1,69.1,24.2"},{code:"CH",name:"Switzerland",continent:"EU",bbox:"45.8,5.9,47.8,10.5"},{code:"UA",name:"Ukraine",continent:"EU",bbox:"44.4,22.1,52.4,40.2"},{code:"GB",name:"United Kingdom",continent:"EU",bbox:"49.9,-8.7,60.9,1.8"},{code:"VA",name:"Vatican City",continent:"EU",bbox:"41.900,12.445,41.908,12.458"},{code:"RU",name:"Russia",continent:"EU",bbox:"41.2,19.6,81.9,180"},{code:"TR",name:"Turkey",continent:"EU",bbox:"35.8,25.7,42.3,44.8"},{code:"AF",name:"Afghanistan",continent:"AS",bbox:"29.4,60.5,38.5,74.9"},{code:"AM",name:"Armenia",continent:"AS",bbox:"38.8,43.4,41.3,46.6"},{code:"AZ",name:"Azerbaijan",continent:"AS",bbox:"38.4,44.8,41.9,50.4"},{code:"BH",name:"Bahrain",continent:"AS",bbox:"25.8,50.4,26.3,50.7"},{code:"BD",name:"Bangladesh",continent:"AS",bbox:"20.7,88.0,26.6,92.7"},{code:"BT",name:"Bhutan",continent:"AS",bbox:"26.7,88.7,28.3,92.1"},{code:"BN",name:"Brunei",continent:"AS",bbox:"4.0,114.0,5.1,115.4"},{code:"KH",name:"Cambodia",continent:"AS",bbox:"10.4,102.3,14.7,107.6"},{code:"CN",name:"China",continent:"AS",bbox:"18.2,73.5,53.6,134.8"},{code:"GE",name:"Georgia",continent:"AS",bbox:"41.0,40.0,43.6,46.7"},{code:"IN",name:"India",continent:"AS",bbox:"6.7,68.1,35.5,97.4"},{code:"ID",name:"Indonesia",continent:"AS",bbox:"-11.0,95.0,6.1,141.0"},{code:"IR",name:"Iran",continent:"AS",bbox:"25.0,44.0,39.8,63.3"},{code:"IQ",name:"Iraq",continent:"AS",bbox:"29.1,38.8,37.4,48.6"},{code:"IL",name:"Israel",continent:"AS",bbox:"29.5,34.2,33.3,35.9"},{code:"JP",name:"Japan",continent:"AS",bbox:"24.0,122.9,45.5,145.8"},{code:"JO",name:"Jordan",continent:"AS",bbox:"29.2,34.9,33.4,39.3"},{code:"KZ",name:"Kazakhstan",continent:"AS",bbox:"40.6,46.5,55.4,87.3"},{code:"KW",name:"Kuwait",continent:"AS",bbox:"28.5,46.5,30.1,48.4"},{code:"KG",name:"Kyrgyzstan",continent:"AS",bbox:"39.2,69.3,43.3,80.3"},{code:"LA",name:"Laos",continent:"AS",bbox:"13.9,100.1,22.5,107.7"},{code:"LB",name:"Lebanon",continent:"AS",bbox:"33.0,35.1,34.7,36.6"},{code:"MY",name:"Malaysia",continent:"AS",bbox:"0.9,99.6,7.4,119.3"},{code:"MV",name:"Maldives",continent:"AS",bbox:"-0.7,72.7,7.1,73.7"},{code:"MN",name:"Mongolia",continent:"AS",bbox:"41.6,87.7,52.1,119.9"},{code:"MM",name:"Myanmar",continent:"AS",bbox:"9.8,92.2,28.5,101.2"},{code:"NP",name:"Nepal",continent:"AS",bbox:"26.3,80.1,30.4,88.2"},{code:"KP",name:"North Korea",continent:"AS",bbox:"37.7,124.2,43.0,130.7"},{code:"OM",name:"Oman",continent:"AS",bbox:"16.6,52.0,26.4,59.8"},{code:"PK",name:"Pakistan",continent:"AS",bbox:"23.7,60.9,37.1,77.8"},{code:"PH",name:"Philippines",continent:"AS",bbox:"4.6,116.9,21.1,126.6"},{code:"QA",name:"Qatar",continent:"AS",bbox:"24.5,50.7,26.2,51.6"},{code:"SA",name:"Saudi Arabia",continent:"AS",bbox:"16.4,34.6,32.2,55.7"},{code:"SG",name:"Singapore",continent:"AS",bbox:"1.2,103.6,1.5,104.1"},{code:"KR",name:"South Korea",continent:"AS",bbox:"33.1,125.9,38.6,129.6"},{code:"LK",name:"Sri Lanka",continent:"AS",bbox:"5.9,79.7,9.8,81.9"},{code:"SY",name:"Syria",continent:"AS",bbox:"32.3,35.7,37.3,42.4"},{code:"TW",name:"Taiwan",continent:"AS",bbox:"21.9,120.0,25.3,122.0"},{code:"TJ",name:"Tajikistan",continent:"AS",bbox:"36.7,67.4,41.0,75.2"},{code:"TH",name:"Thailand",continent:"AS",bbox:"5.6,97.3,20.5,105.6"},{code:"TL",name:"Timor-Leste",continent:"AS",bbox:"-9.5,124.0,-8.1,127.3"},{code:"TM",name:"Turkmenistan",continent:"AS",bbox:"35.1,52.4,42.8,66.7"},{code:"AE",name:"United Arab Emirates",continent:"AS",bbox:"22.6,51.5,26.1,56.4"},{code:"UZ",name:"Uzbekistan",continent:"AS",bbox:"37.2,55.9,45.6,73.1"},{code:"VN",name:"Vietnam",continent:"AS",bbox:"8.2,102.1,23.4,109.5"},{code:"YE",name:"Yemen",continent:"AS",bbox:"12.1,42.5,19.0,54.5"},{code:"DZ",name:"Algeria",continent:"AF",bbox:"18.9,-8.7,37.1,12.0"},{code:"AO",name:"Angola",continent:"AF",bbox:"-18.0,11.6,-4.4,24.1"},{code:"BJ",name:"Benin",continent:"AF",bbox:"6.2,0.8,12.4,3.9"},{code:"BW",name:"Botswana",continent:"AF",bbox:"-26.9,20.0,-17.8,29.4"},{code:"BF",name:"Burkina Faso",continent:"AF",bbox:"9.4,-5.5,15.1,2.4"},{code:"BI",name:"Burundi",continent:"AF",bbox:"-4.5,29.0,-2.3,30.8"},{code:"CV",name:"Cabo Verde",continent:"AF",bbox:"14.8,-25.4,17.2,-22.7"},{code:"CM",name:"Cameroon",continent:"AF",bbox:"1.7,8.5,13.1,16.2"},{code:"CF",name:"Central African Republic",continent:"AF",bbox:"2.2,14.4,11.0,27.5"},{code:"TD",name:"Chad",continent:"AF",bbox:"7.4,13.5,23.4,24.0"},{code:"KM",name:"Comoros",continent:"AF",bbox:"-12.4,43.2,-11.4,44.5"},{code:"CG",name:"Congo",continent:"AF",bbox:"-5.0,11.1,3.7,18.6"},{code:"CD",name:"DR Congo",continent:"AF",bbox:"-13.5,12.2,5.4,31.3"},{code:"DJ",name:"Djibouti",continent:"AF",bbox:"10.9,41.7,12.7,43.4"},{code:"EG",name:"Egypt",continent:"AF",bbox:"22.0,25.0,31.7,36.9"},{code:"GQ",name:"Equatorial Guinea",continent:"AF",bbox:"0.9,9.3,3.8,11.4"},{code:"ER",name:"Eritrea",continent:"AF",bbox:"12.4,36.4,18.0,43.1"},{code:"SZ",name:"Eswatini",continent:"AF",bbox:"-27.3,30.8,-25.7,32.1"},{code:"ET",name:"Ethiopia",continent:"AF",bbox:"3.4,33.0,14.9,48.0"},{code:"GA",name:"Gabon",continent:"AF",bbox:"-4.0,8.7,2.3,14.5"},{code:"GM",name:"Gambia",continent:"AF",bbox:"13.1,-16.8,13.8,-13.8"},{code:"GH",name:"Ghana",continent:"AF",bbox:"4.7,-3.3,11.2,1.2"},{code:"GN",name:"Guinea",continent:"AF",bbox:"7.2,-15.1,12.7,-7.6"},{code:"GW",name:"Guinea-Bissau",continent:"AF",bbox:"10.9,-16.7,12.7,-13.6"},{code:"CI",name:"Ivory Coast",continent:"AF",bbox:"4.4,-8.6,10.7,-2.5"},{code:"KE",name:"Kenya",continent:"AF",bbox:"-4.7,33.9,5.5,41.9"},{code:"LS",name:"Lesotho",continent:"AF",bbox:"-30.7,27.0,-28.6,29.5"},{code:"LR",name:"Liberia",continent:"AF",bbox:"4.3,-11.5,8.6,-7.4"},{code:"LY",name:"Libya",continent:"AF",bbox:"19.5,9.3,33.2,25.2"},{code:"MG",name:"Madagascar",continent:"AF",bbox:"-25.6,43.2,-11.9,50.5"},{code:"MW",name:"Malawi",continent:"AF",bbox:"-17.1,32.7,-9.4,35.9"},{code:"ML",name:"Mali",continent:"AF",bbox:"10.1,-12.3,25.0,4.3"},{code:"MR",name:"Mauritania",continent:"AF",bbox:"14.7,-17.1,27.3,-4.8"},{code:"MU",name:"Mauritius",continent:"AF",bbox:"-20.5,57.3,-19.9,57.8"},{code:"MA",name:"Morocco",continent:"AF",bbox:"27.7,-13.2,35.9,-1.0"},{code:"MZ",name:"Mozambique",continent:"AF",bbox:"-26.9,30.2,-10.5,40.8"},{code:"NA",name:"Namibia",continent:"AF",bbox:"-28.9,11.7,-16.9,25.3"},{code:"NE",name:"Niger",continent:"AF",bbox:"11.7,0.2,23.5,16.0"},{code:"NG",name:"Nigeria",continent:"AF",bbox:"4.3,2.7,13.9,14.7"},{code:"RW",name:"Rwanda",continent:"AF",bbox:"-2.8,28.9,-1.1,30.9"},{code:"SN",name:"Senegal",continent:"AF",bbox:"12.3,-17.5,16.7,-11.4"},{code:"SL",name:"Sierra Leone",continent:"AF",bbox:"6.9,-13.3,10.0,-10.3"},{code:"SO",name:"Somalia",continent:"AF",bbox:"-1.7,40.9,12.0,51.4"},{code:"ZA",name:"South Africa",continent:"AF",bbox:"-34.8,16.5,-22.1,32.9"},{code:"SS",name:"South Sudan",continent:"AF",bbox:"3.5,24.1,12.2,35.9"},{code:"SD",name:"Sudan",continent:"AF",bbox:"8.7,21.8,22.2,38.6"},{code:"TZ",name:"Tanzania",continent:"AF",bbox:"-11.7,29.3,-1.0,40.4"},{code:"TG",name:"Togo",continent:"AF",bbox:"6.1,-0.1,11.1,1.8"},{code:"TN",name:"Tunisia",continent:"AF",bbox:"30.2,7.5,37.5,11.6"},{code:"UG",name:"Uganda",continent:"AF",bbox:"-1.5,29.6,4.2,35.0"},{code:"ZM",name:"Zambia",continent:"AF",bbox:"-18.1,21.9,-8.2,33.7"},{code:"ZW",name:"Zimbabwe",continent:"AF",bbox:"-22.4,25.2,-15.6,33.1"},{code:"CA",name:"Canada",continent:"NA",bbox:"41.7,-141.0,83.1,-52.6"},{code:"US",name:"United States",continent:"NA",bbox:"24.4,-125.0,49.4,-66.9"},{code:"MX",name:"Mexico",continent:"NA",bbox:"14.5,-118.4,32.7,-86.7"},{code:"GT",name:"Guatemala",continent:"NA",bbox:"13.7,-92.2,17.8,-88.2"},{code:"BZ",name:"Belize",continent:"NA",bbox:"15.9,-89.2,18.5,-87.8"},{code:"SV",name:"El Salvador",continent:"NA",bbox:"13.1,-90.1,14.4,-87.7"},{code:"HN",name:"Honduras",continent:"NA",bbox:"12.9,-89.4,16.5,-83.1"},{code:"NI",name:"Nicaragua",continent:"NA",bbox:"10.7,-87.7,15.0,-83.1"},{code:"CR",name:"Costa Rica",continent:"NA",bbox:"8.0,-85.9,11.2,-82.5"},{code:"PA",name:"Panama",continent:"NA",bbox:"7.2,-83.1,9.6,-77.2"},{code:"CU",name:"Cuba",continent:"NA",bbox:"19.8,-85.0,23.3,-74.1"},{code:"DO",name:"Dominican Republic",continent:"NA",bbox:"17.5,-72.0,19.9,-68.3"},{code:"HT",name:"Haiti",continent:"NA",bbox:"18.0,-74.5,20.1,-71.6"},{code:"JM",name:"Jamaica",continent:"NA",bbox:"17.7,-78.4,18.5,-76.2"},{code:"BS",name:"Bahamas",continent:"NA",bbox:"20.9,-79.0,27.3,-72.7"},{code:"TT",name:"Trinidad and Tobago",continent:"NA",bbox:"10.0,-61.9,11.4,-60.5"},{code:"AR",name:"Argentina",continent:"SA",bbox:"-55.1,-73.6,-21.8,-53.6"},{code:"BO",name:"Bolivia",continent:"SA",bbox:"-22.9,-69.6,-9.7,-57.5"},{code:"BR",name:"Brazil",continent:"SA",bbox:"-33.8,-74.0,5.3,-34.8"},{code:"CL",name:"Chile",continent:"SA",bbox:"-55.9,-75.6,-17.5,-66.4"},{code:"CO",name:"Colombia",continent:"SA",bbox:"-4.2,-79.0,12.5,-66.9"},{code:"EC",name:"Ecuador",continent:"SA",bbox:"-5.0,-81.1,1.4,-75.2"},{code:"GY",name:"Guyana",continent:"SA",bbox:"1.2,-61.4,8.6,-56.5"},{code:"PY",name:"Paraguay",continent:"SA",bbox:"-27.6,-62.6,-19.3,-54.3"},{code:"PE",name:"Peru",continent:"SA",bbox:"-18.4,-81.3,0.0,-68.7"},{code:"SR",name:"Suriname",continent:"SA",bbox:"1.8,-58.1,6.0,-54.0"},{code:"UY",name:"Uruguay",continent:"SA",bbox:"-35.0,-58.4,-30.1,-53.1"},{code:"VE",name:"Venezuela",continent:"SA",bbox:"0.6,-73.4,12.2,-59.8"},{code:"AU",name:"Australia",continent:"OC",bbox:"-43.6,113.3,-10.7,153.6"},{code:"NZ",name:"New Zealand",continent:"OC",bbox:"-47.3,166.4,-34.4,178.6"},{code:"PG",name:"Papua New Guinea",continent:"OC",bbox:"-11.7,140.8,-1.3,155.9"},{code:"FJ",name:"Fiji",continent:"OC",bbox:"-19.2,177.0,-16.0,180.0"}],bm=new Map(ia.map(t=>[t.code,t]));function ym(t){const i=String(t||"").split(",").map(s=>Number(s.trim()));return i.length!==4||i.some(s=>Number.isNaN(s))?null:i}function xm(t){const i=bm.get(t);return i?i.bbox:""}function $r(t,i){if(typeof t!="number"||typeof i!="number"||Number.isNaN(t)||Number.isNaN(i))return null;let s=null,l=1/0;for(const u of ia){const f=ym(u.bbox);if(!f)continue;const[h,_,y,C]=f;if(ty||i<_||i>C)continue;const T=Math.abs(y-h)*Math.abs(C-_);Tt.continent==="EU").slice().sort((t,i)=>t.name.localeCompare(i.name)).map(t=>({value:t.bbox,label:t.name}))}function km(){return ia.slice().sort((t,i)=>t.name.localeCompare(i.name)).map(t=>[t.code,t.name])}const Sm=[["EU","European countries"],["AS","Asian countries"],["AF","African countries"],["NA","North American countries"],["SA","South American countries"],["OC","Oceanian countries"]];function Tm(){return Sm.map(([t,i])=>({label:i,options:ia.filter(s=>s.continent===t).slice().sort((s,l)=>s.name.localeCompare(l.name)).map(s=>({value:s.bbox,label:s.name}))}))}const Pm=(t,i)=>{const s=t.__vccOpts||t;for(const[l,u]of i)s[l]=u;return s},Cm={class:"mx-auto max-w-[1280px] p-7"},Lm={class:"mb-5 flex flex-wrap items-end justify-between gap-4"},Am={class:"flex h-10 w-full max-w-[280px] items-center gap-2 rounded border border-line-strong bg-surface-1 px-3"},Mm={class:"grid grid-cols-[210px_1fr] gap-6 max-[760px]:grid-cols-1"},Em={class:"flex flex-col gap-0.5 max-[760px]:flex-row max-[760px]:overflow-x-auto"},Om=["onClick"],zm={class:"whitespace-nowrap"},$m={class:"min-w-0"},Im={key:0,class:"panel p-10 text-center text-sm text-ink-muted"},Nm={key:0,class:"eyebrow mb-2 mt-5 first:mt-0 flex items-center gap-2"},Dm={key:1,class:"panel mb-5 p-5"},Fm={class:"flex items-center gap-1"},Rm={class:"flex items-center gap-2"},Bm={class:"font-mono text-sm text-ink"},Um={class:"inline-flex items-center gap-1 rounded-full bg-amber-soft px-2 py-0.5 text-[11px] font-semibold text-amber-fg"},Vm={key:0,class:"mt-2 text-xs text-ink-muted"},Zm={class:"grid max-w-[420px] gap-2"},Hm={class:"flex items-center gap-3"},jm={key:2,class:"panel mb-5 p-5"},Wm=["value"],Km=["value"],Gm=["value"],qm={class:"font-mono text-sm text-ink"},Ym={key:3},Jm={key:0,class:"mb-5 flex items-center gap-1 overflow-x-auto border-b border-line"},Xm=["onClick"],Qm={class:"panel mb-5 p-5"},eg={class:"mb-4 flex items-start gap-3 border-b border-line pb-4"},tg={class:"grid h-10 w-10 place-items-center rounded-lg bg-accent-soft text-accent-soft-fg"},ng={key:0,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},ig={key:1,class:"mb-4 flex flex-col gap-2 border-b border-line pb-4 sm:flex-row sm:items-center sm:justify-between"},og={key:4,class:"border-b border-line py-3 text-xs text-amber-fg"},sg={key:0},ag={key:5,class:"border-b border-line py-3 text-xs text-ink-muted"},rg={class:"font-semibold text-ink-secondary"},lg={key:6,class:"border-b border-line py-3 text-xs text-ink-muted"},ug={key:7,class:"my-4 rounded-lg border border-line bg-surface-2 p-4","data-keywords":"credits usage quota remaining daily allowance rate limit"},cg={class:"flex items-center justify-between gap-3"},dg={class:"flex items-center gap-2 text-sm font-semibold text-ink"},fg={key:0,class:"text-[11px] text-ink-muted"},hg={class:"mt-2 flex items-baseline gap-1.5"},pg={class:"font-mono text-2xl font-semibold text-ink"},mg={class:"text-sm text-ink-muted"},gg={class:"mt-2 h-2 w-full overflow-hidden rounded-full bg-line"},vg={class:"mt-2 text-xs text-ink-muted"},_g={class:"mt-2 text-sm text-ink"},bg={class:"font-semibold"},yg={class:"mt-1 text-xs text-ink-muted"},xg={key:1,class:"mt-2 text-xs text-ink-muted"},wg={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},kg={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Sg={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Tg={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Pg={key:1,class:"flex flex-col items-end gap-2"},Cg={key:0,value:"__auto__"},Lg=["label"],Ag=["value"],Mg={key:0,class:"w-64 text-right text-[11px] leading-snug text-ink-muted"},Eg={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Og={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},zg={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},$g={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Ig={key:8,class:"border-b border-line py-3 text-xs text-amber-fg"},Ng={class:"mt-4 flex flex-wrap items-center gap-3"},Dg=["disabled"],Fg={key:1,class:"flex items-center gap-2",title:"Bounding box used for Test connection — smaller areas cost fewer OpenSky credits"},Rg=["label"],Bg=["value"],Ug=["disabled"],Vg={key:3,class:"text-xs text-danger-fg"},Zg={class:"panel mb-5 p-5"},Hg={class:"mb-4 flex items-start gap-3 border-b border-line pb-4"},jg={class:"grid h-10 w-10 place-items-center rounded-lg bg-accent-soft text-accent-soft-fg"},Wg={key:0,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},Kg={key:1,class:"mb-4 flex flex-col gap-2 border-b border-line pb-4 sm:flex-row sm:items-center sm:justify-between"},Gg={key:4,class:"border-b border-line py-3 text-xs text-amber-fg"},qg={key:0},Yg={key:5,class:"border-b border-line py-3 text-xs text-ink-muted"},Jg={class:"font-semibold text-ink-secondary"},Xg={key:6,class:"border-b border-line py-3 text-xs text-ink-muted"},Qg={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},ev={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},tv={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},nv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},iv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},ov={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},sv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},av={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},rv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},lv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},uv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},cv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},dv={key:7,class:"my-4 rounded-lg border border-line bg-surface-2 p-4","data-keywords":"usage quota rate limit calls per minute remaining left api"},fv={class:"flex items-center justify-between gap-3"},hv={class:"flex items-center gap-2 text-sm font-semibold text-ink"},pv={key:0,class:"text-[11px] text-ink-muted"},mv={class:"mt-2 flex items-baseline gap-1.5"},gv={class:"font-mono text-2xl font-semibold text-ink"},vv={class:"text-sm text-ink-muted"},_v={key:0,class:"mt-2 h-2 w-full overflow-hidden rounded-full bg-line"},bv={class:"mt-2 text-xs text-ink-muted"},yv={key:1,class:"mt-2 text-xs text-ink-muted"},xv={class:"mt-4 flex flex-wrap items-center gap-3"},wv=["disabled"],kv=["disabled"],Sv={key:2,class:"text-xs text-danger-fg"},Tv={key:3,class:"text-[11px] text-ink-muted"},Pv={class:"panel mb-5 p-5"},Cv={class:"mb-4 flex items-start gap-3 border-b border-line pb-4"},Lv={class:"grid h-10 w-10 place-items-center rounded-lg bg-accent-soft text-accent-soft-fg"},Av={key:0,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},Mv={key:1,class:"mb-4 flex flex-col gap-2 border-b border-line pb-4 sm:flex-row sm:items-center sm:justify-between"},Ev={key:4,class:"border-b border-line py-3 text-xs text-amber-fg"},Ov={key:0},zv={key:5,class:"border-b border-line py-3 text-xs text-ink-muted"},$v={class:"font-semibold text-ink-secondary"},Iv={key:6,class:"border-b border-line py-3 text-xs text-ink-muted"},Nv={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},Dv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Fv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Rv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Bv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Uv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Vv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Zv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Hv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},jv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Wv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Kv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Gv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},qv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Yv={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},Jv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},Xv={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},Qv={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},e_={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},t_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},n_={class:"mt-4 flex flex-wrap items-center gap-3"},i_=["disabled"],o_=["disabled"],s_={key:2,class:"text-xs text-danger-fg"},a_={key:3,class:"text-[11px] text-ink-muted"},r_={class:"panel mb-5 p-5"},l_={class:"mb-4 flex items-start gap-3 border-b border-line pb-4"},u_={class:"grid h-10 w-10 place-items-center rounded-lg bg-accent-soft text-accent-soft-fg"},c_={key:0,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},d_={key:1,class:"mb-4 flex flex-col gap-2 border-b border-line pb-4 sm:flex-row sm:items-center sm:justify-between"},f_={key:4,class:"border-b border-line py-3 text-xs text-amber-fg"},h_={key:0},p_={key:5,class:"border-b border-line py-3 text-xs text-ink-muted"},m_={class:"font-semibold text-ink-secondary"},g_={key:6,class:"border-b border-line py-3 text-xs text-ink-muted"},v_={key:0,class:"inline-flex items-center gap-2 break-all font-mono text-sm text-ink"},__={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},b_={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},y_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},x_={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},w_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},k_={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},S_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},T_={key:0,class:"inline-flex items-center gap-2 font-mono text-sm text-ink"},P_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},C_={class:"mt-4 flex flex-wrap items-center gap-3"},L_=["disabled"],A_=["disabled"],M_={key:2,class:"text-xs text-danger-fg"},E_={key:3,class:"text-[11px] text-ink-muted"},O_={key:3,class:"panel mb-5 p-5"},z_={class:"mb-4 flex items-start gap-3 border-b border-line pb-4"},$_={class:"grid h-10 w-10 place-items-center rounded-lg bg-accent-soft text-accent-soft-fg"},I_={key:0,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},N_={key:1,class:"mb-4 rounded-lg border border-line bg-surface-2 px-4 py-3 text-xs text-ink-secondary"},D_={key:2,class:"mb-4 flex flex-col gap-2 border-b border-line pb-4 sm:flex-row sm:items-center sm:justify-between"},F_={key:5,class:"border-b border-line py-3 text-xs text-amber-fg"},R_={key:0},B_={key:6,class:"border-b border-line py-3 text-xs text-ink-muted"},U_={class:"font-semibold text-ink-secondary"},V_={key:7,class:"border-b border-line py-3 text-xs text-ink-muted"},Z_={class:"flex w-full flex-col gap-2"},H_={class:"break-all font-mono text-sm text-ink"},j_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},W_={key:1,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},K_={key:0,class:"text-xs text-ink-muted"},G_={key:1,class:"border-b border-line py-3 text-xs text-ink-muted"},q_={key:0,class:"inline-flex items-center gap-2 text-sm text-ink"},Y_={key:0,class:"inline-flex items-center gap-1 rounded-full bg-surface-2 px-2 py-0.5 text-[10px] font-semibold text-ink-secondary"},J_={class:"mt-4 flex flex-wrap items-center gap-3"},X_=["disabled"],Q_=["disabled"],e1={key:2,class:"text-xs text-danger-fg"},t1={key:3,class:"text-[11px] text-ink-muted"},n1={key:4,class:"panel mb-5 p-5"},i1={class:"flex items-center gap-4"},o1=["src"],s1={key:1,class:"grid h-16 w-16 place-items-center rounded-full bg-[var(--navy-800)] text-lg font-bold text-white"},a1={class:"flex gap-2"},r1={class:"btn-ghost cursor-pointer"},l1={class:"mt-1 text-right text-[11px] text-ink-muted"},u1={key:5,class:"panel mb-5 p-5"},c1={class:"flex items-center gap-3"},d1={key:0,class:"mt-4 rounded-lg border border-line bg-surface-2 p-4"},f1={class:"flex flex-wrap items-center gap-4"},h1={class:"min-w-0"},p1={class:"mt-1 select-all font-mono text-sm font-bold text-ink"},m1={class:"mt-3 flex items-center gap-2"},g1={key:0,class:"mt-2 text-xs text-danger-fg"},v1={key:1,class:"mt-4 rounded-lg border border-line bg-surface-2 p-4"},_1={class:"mt-2 grid grid-cols-2 gap-1 font-mono text-xs text-ink-secondary sm:grid-cols-4"},b1={class:"rounded-lg border border-line bg-surface-2 p-3"},y1={class:"flex items-center gap-3"},x1={class:"grid h-9 w-9 place-items-center rounded-full bg-accent-soft text-accent-soft-fg"},w1={class:"min-w-0 flex-1"},k1={class:"text-sm font-semibold text-ink"},S1={class:"font-mono text-[11px] text-ink-muted"},T1={key:6,class:"mb-5"},P1={key:0,class:"panel mb-5 p-5"},C1={class:"grid max-w-[520px] gap-2"},L1={class:"flex flex-wrap gap-2"},A1=["disabled","title"],M1=["value"],E1=["value"],O1={class:"flex items-center gap-2 py-1 text-sm text-ink-secondary"},z1={class:"flex items-center gap-3"},$1=["disabled"],I1={key:0,class:"text-xs text-danger-fg"},N1={key:1,class:"text-xs text-ink-muted"},D1={key:1,class:"panel mb-5 p-5"},F1={class:"grid max-w-[520px] gap-2"},R1={class:"flex flex-wrap gap-2"},B1=["value"],U1=["value"],V1={key:1,class:"text-xs text-ink-muted"},Z1={class:"font-semibold text-ink-secondary"},H1={class:"flex items-center gap-3"},j1=["disabled"],W1={key:0,class:"text-xs text-danger-fg"},K1={class:"panel overflow-hidden p-0"},G1={class:"flex items-center justify-between px-5 py-4"},q1=["disabled"],Y1={key:0,class:"px-5 pb-5 text-sm text-danger-fg"},J1={key:1,class:"px-5 pb-8 text-sm text-ink-muted"},X1={key:2,class:"overflow-x-auto"},Q1={class:"w-full border-collapse text-sm"},eb={class:"text-left"},tb={class:"px-5 py-3"},nb={class:"text-ink"},ib={key:0,class:"ml-1.5 text-[11px] text-ink-muted"},ob={class:"px-5 py-3"},sb={class:"px-5 py-3"},ab={class:"px-5 py-3"},rb={class:"px-5 py-3 text-right"},lb=["onClick"],ub={key:1,class:"inline-flex items-center gap-1.5"},cb=["onClick"],db=["onClick"],fb={key:7,class:"mb-5"},hb={key:0,class:"panel mb-5 p-5"},pb={class:"grid max-w-[520px] gap-2"},mb={class:"flex items-center gap-3"},gb={key:0,class:"text-xs text-danger-fg"},vb={key:1,class:"panel mb-5 p-5"},_b={class:"grid max-w-[520px] gap-2"},bb={class:"flex items-center gap-3"},yb=["disabled"],xb={key:0,class:"text-xs text-danger-fg"},wb={class:"panel overflow-hidden p-0"},kb={key:0,class:"px-5 pb-8 text-sm text-ink-muted"},Sb={key:1,class:"overflow-x-auto"},Tb={class:"w-full border-collapse text-sm"},Pb={class:"text-left"},Cb={class:"px-5 py-3"},Lb={class:"inline-flex items-center gap-2 text-ink"},Ab={class:"px-5 py-3 text-ink-secondary"},Mb={class:"px-5 py-3 text-right"},Eb=["onClick"],Ob={key:1,class:"inline-flex items-center gap-1.5"},zb=["onClick"],$b=["disabled","title","onClick"],Ib={key:8,class:"mb-5"},Nb={class:"panel mb-5 p-5"},Db={class:"btn-ghost cursor-pointer"},Fb={key:0,class:"mt-2 text-xs text-ink-muted"},Rb={class:"rounded-lg border p-5",style:{"border-color":"color-mix(in srgb, var(--danger) 35%, transparent)",background:"var(--danger-soft)"}},Bb={class:"flex items-center gap-2 text-danger-fg"},Ub={class:"mt-4 rounded-lg border border-line bg-surface-1 p-4"},Vb={class:"mt-3 flex items-start gap-2 text-sm text-ink-secondary"},Zb={class:"mt-3"},Hb={class:"eyebrow mb-1 block"},jb={class:"text-ink"},Wb=["placeholder"],Kb={class:"mt-4 flex flex-wrap items-center gap-3"},Gb=["disabled"],qb=["disabled"],Yb={key:2,class:"text-xs text-ink-muted"},Jb={key:0,class:"mt-3 rounded border border-line bg-surface-2 px-3 py-2 text-xs text-ink-secondary"},Xb={key:0,class:"fixed bottom-5 right-5 z-20 flex items-center gap-2 rounded-lg border border-line bg-surface-1 px-4 py-2.5 text-sm text-ink shadow-md"},Lu="pv.opensky.health",Au="pv.filetransfer.health",Mu="pv.webdav.health",Eu="pv.openweather.health",Ou="pv.localstorage.health",Qb={__name:"Settings",props:{email:{type:String,default:""},role:{type:String,default:"user"},organization:{type:String,default:""},organizationName:{type:String,default:""}},emits:["logout"],setup(t,{emit:i}){const s=t,l=i,u=ce(()=>s.role==="superadmin"),f=ce(()=>s.role==="admin"||s.role==="superadmin");function h(g){return g==="superadmin"?"Superadmin":g==="admin"?"Admin":"User"}function _(g){return g==="superadmin"||g==="admin"?"shield":"user"}function y(g){return g==="superadmin"||g==="admin"?C.accent:C.neutral}const C={success:"bg-success-soft text-success-fg",warning:"bg-amber-soft text-amber-fg",danger:"bg-danger-soft text-danger-fg",accent:"bg-accent-soft text-accent-soft-fg",neutral:"bg-surface-2 text-ink-secondary"},T=ce(()=>{const g=[{id:"account",label:"Account",icon:"user",kw:"name username email password verification login credentials role"},{id:"appearance",label:"Appearance",icon:"sliders",kw:"theme light dark system language region font size accessibility date time format motion"},{id:"integrations",label:"Integrations",icon:"radio",kw:"opensky flights adsb aircraft plugin oauth credentials bounding box plan connection ftp sftp ftps file transfer server host upload download local storage folder drive isolated private read only webdav nextcloud owncloud dav url https openweather weather forecast temperature api key units calls per minute usage limit quota"},{id:"profile",label:"Profile",icon:"image",kw:"avatar photo display name bio public"},{id:"security",label:"Privacy & Security",icon:"shield",kw:"two factor authentication 2fa sessions devices logout security privacy"}];return f.value&&g.push({id:"team",label:"User management",icon:"users",kw:"users team members add remove create delete role admin permissions rights organization"}),u.value&&g.push({id:"organizations",label:"Organizations",icon:"grid",kw:"organization org tenant company create rename delete members"}),g.push({id:"advanced",label:"Advanced",icon:"alertTriangle",kw:"export import data delete account danger zone",danger:!0}),g}),M=Y("account"),H=Y("");uc("settingsSearch",H);const j=ce(()=>H.value.trim().length>0),K=ce(()=>H.value.trim().toLowerCase());function F(g){return K.value?(g.label+" "+g.kw).toLowerCase().includes(K.value)||X(g.id):!0}const te={account:["full name","username","email address verification verify","password change current new"],appearance:["theme light dark system","language","region","font size accessibility","reduce motion","date format","time format clock"],integrations:["opensky live flights","enable plugin","oauth client id secret","plan credits","bounding box","test connection","file transfer ftp sftp ftps","server host port username password","private key passphrase","base path directory","local storage folder drive","private isolated folder","read only access mode","webdav nextcloud owncloud dav","server url username password tls","base path directory folder","openweather weather forecast","api key units metric imperial","default latitude longitude language","calls per minute limit usage quota","api call usage today rate limit"],profile:["profile photo avatar","display name","bio about","show email public"],security:["two factor authentication","active sessions devices","sign out"],team:["add user create account","members list role admin remove delete","organization org assign"],organizations:["add organization create","rename organization","delete organization members"],advanced:["export data download","import data upload","delete account permanent danger"]};function X(g){return K.value?(te[g]||[]).some(c=>c.includes(K.value)):!0}const fe=ce(()=>j.value?T.value.filter(F):T.value.filter(g=>g.id===M.value)),Se=ce({get:()=>Oo.value,set:g=>Ha(g)}),de=[{value:"light",label:"Light",icon:"sun"},{value:"dark",label:"Dark",icon:"moon"},{value:"system",label:"System",icon:"monitor"}],Fe=[{value:"sm",label:"Small"},{value:"md",label:"Default"},{value:"lg",label:"Large"}],Oe=[{value:"12",label:"12-hour"},{value:"24",label:"24-hour"}],Te=[["en","English"],["es","Español"],["de","Deutsch"],["fr","Français"],["pl","Polski"],["ja","日本語"]],Ze=km(),he=ce(()=>(Ze.find(([g])=>g===be.region)||[null,be.region])[1]),Q=[["MDY","MM/DD/YYYY"],["DMY","DD/MM/YYYY"],["YMD","YYYY/MM/DD"],["ISO","YYYY-MM-DD"]],B=Y(Date.now());let O=null;const N=ce(()=>Su(B.value)),$=gt({loaded:!1,available:!1,orgEnabled:!0,allowAnonymous:!0,enabled:!1,canEditOrg:!1,isSuperadmin:!1,scopes:{}}),Ye=Y("user"),we=gt({clientId:"",clientSecret:"",plan:"",bbox:""}),ge=Y(""),ue=Y(!1),ft=Y(!1),pe=Y(null),Ue=Y(null),Ve=ce(()=>pe.value&&pe.value.credits||null),wt=ce(()=>{const g=Ve.value;return!g||!g.daily||g.remaining==null?null:Math.max(0,Math.min(100,Math.round(g.remaining/g.daily*100)))}),st=ce(()=>{const g=wt.value;return g==null?"bg-accent":g<=10?"bg-danger":g<=30?"bg-amber":"bg-success"});function Le(g){return typeof g=="number"?g.toLocaleString():g}function De(){if(!Ue.value)return"";const g=Math.max(0,Math.round((Date.now()-Ue.value)/1e3));if(g<60)return"just now";const c=Math.round(g/60);if(c<60)return`${c} min ago`;const q=Math.round(c/60);return q<24?`${q} h ago`:`${Math.round(q/24)} d ago`}function zt(){try{pe.value&&localStorage.setItem(Lu,JSON.stringify({health:pe.value,ts:Ue.value}))}catch{}}function At(){try{const g=localStorage.getItem(Lu);if(!g)return;const c=JSON.parse(g);c&&c.health&&(pe.value=c.health,Ue.value=c.ts||null)}catch{}}const Ut=[{value:"",label:"Not set"},{value:"anonymous",label:"Anonymous"},{value:"standard",label:"Standard"},{value:"contributor",label:"Contributor"}],Pt=[{value:"user",label:"My settings",icon:"user"},{value:"org",label:"Organization",icon:"users"}],kt=[{label:"World",options:[{value:"-90,-180,90,180",label:"World"}]},{label:"Continents",options:[{value:"34,-25,72,45",label:"Europe"},{value:"-35,-18,38,52",label:"Africa"},{value:"5,25,82,180",label:"Asia"},{value:"7,-168,72,-52",label:"North America"},{value:"-56,-82,13,-34",label:"South America"},{value:"-48,110,-10,180",label:"Oceania"}]},{label:"European countries",options:wm()},{label:"Other countries",options:[{value:"24,-125,49.5,-66.5",label:"United States"},{value:"41.7,-141,83.1,-52.6",label:"Canada"},{value:"-43.6,113.3,-10.7,153.6",label:"Australia"},{value:"24,122.9,45.5,145.8",label:"Japan"}]}],x=kt.flatMap(g=>g.options);function b(g){const c=String(g||"").split(",").map(k=>k.trim());if(c.length!==4)return"";const q=c.map(Number);return q.some(k=>Number.isNaN(k))?"":q.join(",")}function S(g){const c=b(g),q=c&&x.find(k=>b(k.value)===c);return q?q.label:""}const W=Y(!1),V=ce({get(){if(!ve.value&&be.autoBbox)return"__auto__";if(W.value)return"__custom__";const g=b(we.bbox),c=g&&x.find(q=>b(q.value)===g);return c?c.value:"__custom__"},set(g){if(g==="__auto__"){ve.value||(be.autoBbox=!0),W.value=!1;return}if(ve.value||(be.autoBbox=!1),g==="__custom__"){W.value=!0;return}W.value=!1,we.bbox=g}}),G=ce(()=>V.value==="__custom__"),re=ce(()=>V.value==="__auto__"),ae=ce(()=>$.isSuperadmin),oe=ce(()=>$.isSuperadmin?"user":Ye.value),ee=ce(()=>$.scopes[oe.value]||{editableLayer:"user",fields:{}}),ve=ce(()=>oe.value==="org");function se(g){return ee.value.fields[g]||{effective:"",own:"",source:"unset",locked:!1}}function ke(g){return ae.value||se(g).locked}function Pe(g){const c=se(g).source;return c==="global"?"Set by administrator":c==="org"?"Set by your organization":""}function Re(){we.clientId=se("clientId").own||"",we.clientSecret=se("clientSecret").own||"",we.plan=se("plan").own||"",we.bbox=se("bbox").own||"",W.value=!1}function Ke(g){$.available=!!g.available,$.orgEnabled=g.orgEnabled!==!1,$.allowAnonymous=!!g.allowAnonymous,$.enabled=!!g.enabled,$.canEditOrg=!!g.canEditOrg,$.isSuperadmin=!!g.isSuperadmin,$.scopes=g.scopes||{},Ye.value==="org"&&!$.canEditOrg&&(Ye.value="user"),Re(),$.loaded=!0}Bt(Ye,()=>{ge.value="",Re()});async function Ge(){At();const{ok:g,body:c}=await hp();g&&Ke(c)}async function pt(g){const c=ve.value;c?$.orgEnabled=g:$.enabled=g;const{ok:q,body:k}=await bu(c?{scope:"org",enabled:g}:{scope:"user",enabled:g});q?(Ke(k),We(c?g?"OpenSky enabled for your organization.":"OpenSky disabled for your organization.":g?"OpenSky enabled.":"OpenSky disabled.")):(c?$.orgEnabled=!g:$.enabled=!g,We(k.error||"Could not update."))}async function ht(){ge.value="",ue.value=!0;const g={};for(const Be of["clientId","clientSecret","plan","bbox"])ke(Be)||(g[Be]=we[Be]);const c={scope:oe.value,config:g};ve.value||(c.enabled=$.enabled);const{ok:q,body:k}=await bu(c);if(ue.value=!1,!q){ge.value=k.error||"Could not save settings.";return}Ke(k),We(ve.value?"Organization OpenSky settings saved.":"OpenSky settings saved.")}const Vt=[{label:"World",options:[{value:"-90,-180,90,180",label:"World"}]},{label:"Continents",options:[{value:"34,-25,72,45",label:"Europe"},{value:"-35,-18,38,52",label:"Africa"},{value:"5,25,82,180",label:"Asia"},{value:"7,-168,72,-52",label:"North America"},{value:"-56,-82,13,-34",label:"South America"},{value:"-48,110,-10,180",label:"Oceania"}]},...Tm()],Jt=Vt.flatMap(g=>g.options),Zt=Y(""),pn=Y(!1),Ct=ce({get(){if(pn.value)return"__custom__";if(!Zt.value)return"__default__";const g=b(Zt.value),c=g&&Jt.find(q=>b(q.value)===g);return c?c.value:"__custom__"},set(g){if(g==="__default__"){pn.value=!1,Zt.value="";return}if(g==="__custom__"){pn.value=!0;return}pn.value=!1,Zt.value=g}}),$t=ce(()=>Ct.value==="__custom__");async function kn(){ft.value=!0,pe.value=null;const{ok:g,body:c}=await pp((Zt.value||"").trim()||void 0);ft.value=!1,pe.value=g&&c.health?c.health:{status:"down",detail:c.error||"Probe failed."},Ue.value=Date.now(),zt()}function zi(g){return g==="ok"?C.success:g==="degraded"?C.warning:C.danger}const at=gt({loaded:!1,available:!1,orgEnabled:!0,enabled:!1,canEditOrg:!1,isSuperadmin:!1,scopes:{}}),Sn=Y("user"),$i=["protocol","host","port","username","password","privateKey","keyPassphrase","hostKeyFingerprint","insecureSkipVerify","basePath"],rt=gt(Object.fromEntries($i.map(g=>[g,""]))),hi=Y(""),pi=Y(!1),Ii=Y(!1),Gt=Y(null),jn=Y(null),U=[{value:"sftp",label:"SFTP"},{value:"ftps",label:"FTPS"},{value:"ftp",label:"FTP"}],E=[{value:"false",label:"Verify certificate"},{value:"true",label:"Skip verification"}],Me=ce(()=>at.isSuperadmin),tt=ce(()=>at.isSuperadmin?"user":Sn.value),It=ce(()=>at.scopes[tt.value]||{editableLayer:"user",fields:{}}),St=ce(()=>tt.value==="org"),Et=ce(()=>(_t("protocol")?Z("protocol").effective:rt.protocol)||"sftp");function Z(g){return It.value.fields[g]||{effective:"",own:"",source:"unset",locked:!1}}function _t(g){return Me.value||Z(g).locked}function bt(g){const c=Z(g).source;return c==="global"?"Set by administrator":c==="org"?"Set by your organization":""}function oa(g){return(U.find(c=>c.value===g)||{}).label||g||"—"}function cs(){for(const g of $i)rt[g]=Z(g).own||"";rt.protocol||(rt.protocol="sftp"),rt.insecureSkipVerify||(rt.insecureSkipVerify="false")}function no(g){at.available=!!g.available,at.orgEnabled=g.orgEnabled!==!1,at.enabled=!!g.enabled,at.canEditOrg=!!g.canEditOrg,at.isSuperadmin=!!g.isSuperadmin,at.scopes=g.scopes||{},Sn.value==="org"&&!at.canEditOrg&&(Sn.value="user"),cs(),at.loaded=!0}Bt(Sn,()=>{hi.value="",cs()});function sa(){if(!jn.value)return"";const g=Math.max(0,Math.round((Date.now()-jn.value)/1e3));if(g<60)return"just now";const c=Math.round(g/60);if(c<60)return`${c} min ago`;const q=Math.round(c/60);return q<24?`${q} h ago`:`${Math.round(q/24)} d ago`}function Ni(){try{Gt.value&&localStorage.setItem(Au,JSON.stringify({health:Gt.value,ts:jn.value}))}catch{}}function aa(){try{const g=localStorage.getItem(Au);if(!g)return;const c=JSON.parse(g);c&&c.health&&(Gt.value=c.health,jn.value=c.ts||null)}catch{}}async function ir(){aa();const{ok:g,body:c}=await gp();g&&no(c)}async function ra(g){const c=St.value;c?at.orgEnabled=g:at.enabled=g;const{ok:q,body:k}=await yu(c?{scope:"org",enabled:g}:{scope:"user",enabled:g});q?(no(k),We(c?g?"File transfer enabled for your organization.":"File transfer disabled for your organization.":g?"File transfer enabled.":"File transfer disabled.")):(c?at.orgEnabled=!g:at.enabled=!g,We(k.error||"Could not update."))}async function or(){hi.value="",pi.value=!0;const g={};for(const Be of $i)_t(Be)||(g[Be]=rt[Be]);const c={scope:tt.value,config:g};St.value||(c.enabled=at.enabled);const{ok:q,body:k}=await yu(c);if(pi.value=!1,!q){hi.value=k.error||"Could not save settings.";return}no(k),We(St.value?"Organization file-transfer settings saved.":"File-transfer settings saved.")}async function sr(){Ii.value=!0,Gt.value=null;const{ok:g,body:c}=await vp();Ii.value=!1,Gt.value=g&&c.health?c.health:{status:"down",detail:c.error||"Probe failed."},jn.value=Date.now(),Ni()}function la(g){return g==="ok"?C.success:g==="degraded"?C.warning:C.danger}const lt=gt({loaded:!1,available:!1,orgEnabled:!0,enabled:!1,canEditOrg:!1,isSuperadmin:!1,scopes:{}}),Wn=Y("user"),ds=["baseURL","username","password","insecureSkipVerify","basePath"],Xt=gt(Object.fromEntries(ds.map(g=>[g,""]))),io=Y(""),zo=Y(!1),$o=Y(!1),Tn=Y(null),$n=Y(null),ua=[{value:"false",label:"Verify certificate"},{value:"true",label:"Skip verification"}],Io=ce(()=>lt.isSuperadmin),mi=ce(()=>lt.isSuperadmin?"user":Wn.value),it=ce(()=>lt.scopes[mi.value]||{editableLayer:"user",fields:{}}),ot=ce(()=>mi.value==="org");function Pn(g){return it.value.fields[g]||{effective:"",own:"",source:"unset",locked:!1}}function Cn(g){return Io.value||Pn(g).locked}function qt(g){const c=Pn(g).source;return c==="global"?"Set by administrator":c==="org"?"Set by your organization":""}function No(){for(const g of ds)Xt[g]=Pn(g).own||"";Xt.insecureSkipVerify||(Xt.insecureSkipVerify="false")}function He(g){lt.available=!!g.available,lt.orgEnabled=g.orgEnabled!==!1,lt.enabled=!!g.enabled,lt.canEditOrg=!!g.canEditOrg,lt.isSuperadmin=!!g.isSuperadmin,lt.scopes=g.scopes||{},Wn.value==="org"&&!lt.canEditOrg&&(Wn.value="user"),No(),lt.loaded=!0}Bt(Wn,()=>{io.value="",No()});function Lt(){if(!$n.value)return"";const g=Math.max(0,Math.round((Date.now()-$n.value)/1e3));if(g<60)return"just now";const c=Math.round(g/60);if(c<60)return`${c} min ago`;const q=Math.round(c/60);return q<24?`${q} h ago`:`${Math.round(q/24)} d ago`}function fs(){try{Tn.value&&localStorage.setItem(Mu,JSON.stringify({health:Tn.value,ts:$n.value}))}catch{}}function Do(){try{const g=localStorage.getItem(Mu);if(!g)return;const c=JSON.parse(g);c&&c.health&&(Tn.value=c.health,$n.value=c.ts||null)}catch{}}async function mn(){Do();const{ok:g,body:c}=await yp();g&&He(c)}async function ca(g){const c=ot.value;c?lt.orgEnabled=g:lt.enabled=g;const{ok:q,body:k}=await xu(c?{scope:"org",enabled:g}:{scope:"user",enabled:g});q?(He(k),We(c?g?"WebDAV enabled for your organization.":"WebDAV disabled for your organization.":g?"WebDAV enabled.":"WebDAV disabled.")):(c?lt.orgEnabled=!g:lt.enabled=!g,We(k.error||"Could not update."))}async function Fo(){io.value="",zo.value=!0;const g={};for(const Be of ds)Cn(Be)||(g[Be]=Xt[Be]);const c={scope:mi.value,config:g};ot.value||(c.enabled=lt.enabled);const{ok:q,body:k}=await xu(c);if(zo.value=!1,!q){io.value=k.error||"Could not save settings.";return}He(k),We(ot.value?"Organization WebDAV settings saved.":"WebDAV settings saved.")}async function gi(){$o.value=!0,Tn.value=null;const{ok:g,body:c}=await xp();$o.value=!1,Tn.value=g&&c.health?c.health:{status:"down",detail:c.error||"Probe failed."},$n.value=Date.now(),fs()}function Mt(g){return g==="ok"?C.success:g==="degraded"?C.warning:C.danger}const Xe=gt({loaded:!1,available:!1,orgEnabled:!0,enabled:!1,canEditOrg:!1,isSuperadmin:!1,scopes:{}}),In=Y("user"),vi=["apiKey","units","lat","lon","lang","callsPerMinute"],Ht=gt(Object.fromEntries(vi.map(g=>[g,""]))),Kn=Y(""),Di=Y(!1),Fi=Y(!1),Qt=Y(null),Gn=Y(null),Ro=[{value:"",label:"Not set"},{value:"metric",label:"Metric (°C)"},{value:"imperial",label:"Imperial (°F)"},{value:"standard",label:"Standard (K)"}],Ri=ce(()=>Xe.isSuperadmin),Bo=ce(()=>Xe.isSuperadmin?"user":In.value),hs=ce(()=>Xe.scopes[Bo.value]||{editableLayer:"user",fields:{}}),Ln=ce(()=>Bo.value==="org");function ze(g){return hs.value.fields[g]||{effective:"",own:"",source:"unset",locked:!1}}function jt(g){return Ri.value||ze(g).locked}function Je(g){const c=ze(g).source;return c==="global"?"Set by administrator":c==="org"?"Set by your organization":""}function ps(){for(const g of vi)Ht[g]=ze(g).own||""}function oo(g){Xe.available=!!g.available,Xe.orgEnabled=g.orgEnabled!==!1,Xe.enabled=!!g.enabled,Xe.canEditOrg=!!g.canEditOrg,Xe.isSuperadmin=!!g.isSuperadmin,Xe.scopes=g.scopes||{},In.value==="org"&&!Xe.canEditOrg&&(In.value="user"),ps(),Xe.loaded=!0}Bt(In,()=>{Kn.value="",ps()});function Uo(){if(!Gn.value)return"";const g=Math.max(0,Math.round((Date.now()-Gn.value)/1e3));if(g<60)return"just now";const c=Math.round(g/60);if(c<60)return`${c} min ago`;const q=Math.round(c/60);return q<24?`${q} h ago`:`${Math.round(q/24)} d ago`}function ms(){try{Qt.value&&localStorage.setItem(Eu,JSON.stringify({health:Qt.value,ts:Gn.value}))}catch{}}function _i(){try{const g=localStorage.getItem(Eu);if(!g)return;const c=JSON.parse(g);c&&c.health&&(Qt.value=c.health,Gn.value=c.ts||null)}catch{}}async function gs(){_i();const{ok:g,body:c}=await wp();g&&oo(c)}async function Bi(g){const c=Ln.value;c?Xe.orgEnabled=g:Xe.enabled=g;const{ok:q,body:k}=await wu(c?{scope:"org",enabled:g}:{scope:"user",enabled:g});q?(oo(k),We(c?g?"OpenWeather enabled for your organization.":"OpenWeather disabled for your organization.":g?"OpenWeather enabled.":"OpenWeather disabled.")):(c?Xe.orgEnabled=!g:Xe.enabled=!g,We(k.error||"Could not update."))}async function Ft(){Kn.value="",Di.value=!0;const g={};for(const Be of vi)jt(Be)||(g[Be]=Ht[Be]);const c={scope:Bo.value,config:g};Ln.value||(c.enabled=Xe.enabled);const{ok:q,body:k}=await wu(c);if(Di.value=!1,!q){Kn.value=k.error||"Could not save settings.";return}oo(k),We(Ln.value?"Organization OpenWeather settings saved.":"OpenWeather settings saved.")}async function bi(){Fi.value=!0,Qt.value=null;const{ok:g,body:c}=await kp();Fi.value=!1,Qt.value=g&&c.health?c.health:{status:"down",detail:c.error||"Probe failed."},Gn.value=Date.now(),ms()}function da(g){return g==="ok"?C.success:g==="degraded"?C.warning:C.danger}const Ui=ce(()=>Qt.value&&Qt.value.usage||null),vs=ce(()=>{const g=Ui.value;return!g||!g.minuteLimit?null:Math.max(0,Math.min(100,Math.round(g.minuteUsed/g.minuteLimit*100)))}),fa=ce(()=>{const g=vs.value;return g==null?"bg-accent":g>=90?"bg-danger":g>=70?"bg-amber":"bg-success"}),Ae=gt({loaded:!1,available:!1,orgEnabled:!0,enabled:!1,canEditOrg:!1,isSuperadmin:!1,isOrgUser:!1,mounts:[],privateFolder:!1,privateEnabled:!1,allowPrivate:!0,rootConfigured:!1,scopes:{}}),Vi=Y("user"),so=Y(""),qe=Y(""),Vo=Y(!1),en=Y(!1),ln=Y(null),yi=Y(null),ao=Y({}),Zo=[{value:"",label:"Inherit"},{value:"false",label:"Read-write"},{value:"true",label:"Read-only"}],_s=ce(()=>Ae.isSuperadmin),Ho=ce(()=>Ae.isSuperadmin?"user":Vi.value),ar=ce(()=>Ae.scopes[Ho.value]||{editableLayer:"user",fields:{}}),gn=ce(()=>Ho.value==="org");function Zi(g){return ar.value.fields[g]||{effective:"",own:"",source:"unset",locked:!1}}function ha(g){return _s.value||Zi(g).locked}function An(g){const c=Zi(g).source;return c==="global"?"Set by administrator":c==="org"?"Set by your organization":""}function rr(g){return(Zo.find(c=>c.value===g)||{}).label||"Inherit"}function bs(){so.value=Zi("readOnly").own||""}function vn(g){Ae.available=!!g.available,Ae.orgEnabled=g.orgEnabled!==!1,Ae.enabled=!!g.enabled,Ae.canEditOrg=!!g.canEditOrg,Ae.isSuperadmin=!!g.isSuperadmin,Ae.isOrgUser=!!g.isOrgUser,Ae.mounts=Array.isArray(g.mounts)?g.mounts:[],Ae.privateFolder=!!g.privateFolder,Ae.privateEnabled=!!g.privateEnabled,Ae.allowPrivate=g.allowPrivate!==!1,Ae.rootConfigured=!!g.rootConfigured,Ae.scopes=g.scopes||{},Vi.value==="org"&&!Ae.canEditOrg&&(Vi.value="user"),bs(),Ae.loaded=!0}Bt(Vi,()=>{qe.value="",bs()});function pa(){if(!yi.value)return"";const g=Math.max(0,Math.round((Date.now()-yi.value)/1e3));if(g<60)return"just now";const c=Math.round(g/60);if(c<60)return`${c} min ago`;const q=Math.round(c/60);return q<24?`${q} h ago`:`${Math.round(q/24)} d ago`}function ma(){try{ln.value&&localStorage.setItem(Ou,JSON.stringify({health:ln.value,ts:yi.value}))}catch{}}function ys(){try{const g=localStorage.getItem(Ou);if(!g)return;const c=JSON.parse(g);c&&c.health&&(ln.value=c.health,yi.value=c.ts||null)}catch{}}async function lr(){ys();const{ok:g,body:c}=await _p();g&&vn(c)}async function xs(g){const c=gn.value;c?Ae.orgEnabled=g:Ae.enabled=g;const{ok:q,body:k}=await Ma(c?{scope:"org",enabled:g}:{scope:"user",enabled:g});q?(vn(k),We(c?g?"Local storage enabled for your organization.":"Local storage disabled for your organization.":g?"Local storage enabled.":"Local storage disabled.")):(c?Ae.orgEnabled=!g:Ae.enabled=!g,We(k.error||"Could not update."))}async function ga(g){Ae.privateFolder=g;const{ok:c,body:q}=await Ma({scope:"user",privateFolder:g});c?(vn(q),We(g?"Private folder enabled.":"Private folder disabled.")):(Ae.privateFolder=!g,We(q.error||"Could not update."))}async function ur(g){Ae.allowPrivate=g;const{ok:c,body:q}=await Ma({scope:"org",allowPrivate:g});c?(vn(q),We(g?"Members may now create private folders.":"Private folders disabled for your organization.")):(Ae.allowPrivate=!g,We(q.error||"Could not update."))}async function cr(){qe.value="",Vo.value=!0;const g={};ha("readOnly")||(g.readOnly=so.value);const c={scope:Ho.value,config:g};gn.value||(c.enabled=Ae.enabled);const{ok:q,body:k}=await Ma(c);if(Vo.value=!1,!q){qe.value=k.error||"Could not save settings.";return}vn(k),We(gn.value?"Organization local-storage settings saved.":"Local-storage settings saved.")}async function ws(){en.value=!0,ln.value=null,ao.value={};const{ok:g,body:c}=await bp();en.value=!1,ln.value=g&&c.health?c.health:{status:"down",detail:c.error||"Probe failed."};const q={};if(Array.isArray(c.mounts))for(const k of c.mounts)q[k.id]={status:k.status,detail:k.detail};ao.value=q,yi.value=Date.now(),ma()}function va(g){return g==="ok"?C.success:g==="degraded"?C.warning:C.danger}const _a=[{id:"apis-external",label:"APIs — External",icon:"globe"},{id:"drives-external",label:"Drives — External",icon:"server"},{id:"drives-local",label:"Drives — Local",icon:"monitor"}],jo=Y("apis-external");function Hi(g){return j.value||jo.value===g}const Nn=Y("");let ks=null;function We(g){Nn.value=g,clearTimeout(ks),ks=setTimeout(()=>Nn.value="",2200)}const yt=gt({current:"",next:"",confirm:""}),xi=Y(""),Ss=Y(!1);function dr(){if(Ss.value=!1,!yt.current)return xi.value="Enter your current password.";if(yt.next.length<8)return xi.value="New password must be at least 8 characters.";if(yt.next!==yt.confirm)return xi.value="New passwords do not match.";xi.value="Validated. Connecting to the account service is pending — no password endpoint yet.",yt.current=yt.next=yt.confirm=""}const ro=Y("");function Ts(){ro.value="Verification link would be sent once the account service is wired up."}function fr(g){const c=g.target.files&&g.target.files[0];if(!c)return;if(c.size>1.5*1024*1024){We("Image too large (max ~1.5 MB).");return}const q=new FileReader;q.onload=()=>{be.avatar=String(q.result),We("Photo updated.")},q.readAsDataURL(c)}function hr(){be.avatar="",We("Photo removed.")}const ba=ce(()=>{var q,k,Be;const c=(be.displayName||be.name||s.email||"PV").split("@")[0].split(/[.\-_ ]+/).filter(Boolean);return((((q=c[0])==null?void 0:q[0])||"P")+(((k=c[1])==null?void 0:k[0])||((Be=c[0])==null?void 0:Be[1])||"V")).toUpperCase()}),lo=Y(!1),_n=Y(""),qn=Y(""),uo=Y(""),bn=Y([]);function Ps(g){const c="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";let q="";for(let k=0;kPs(4).toLowerCase()+"-"+Ps(4).toLowerCase()),uo.value=""}function co(){be.twoFactor=!1,bn.value=[],lo.value=!1}const Mn=navigator.userAgent;function Wo(){return/Edg\//.test(Mn)?"Edge":/OPR\//.test(Mn)?"Opera":/Chrome\//.test(Mn)?"Chrome":/Firefox\//.test(Mn)?"Firefox":/Safari\//.test(Mn)?"Safari":"Browser"}function mr(){return/Windows/.test(Mn)?"Windows":/Mac OS X/.test(Mn)?"macOS":/Android/.test(Mn)?"Android":/iPhone|iPad/.test(Mn)?"iOS":/Linux/.test(Mn)?"Linux":"Unknown OS"}const ti=Date.now(),wi=Y([]),fo=Y(!1),Wi=Y(""),Rt=gt({email:"",password:"",role:"user",organization:""}),tn=Y(""),Ko=Y(!1),Dn=Y(""),ya=ce(()=>{const g=[{value:"user",label:"User"},{value:"admin",label:"Admin"}];return u.value&&g.push({value:"superadmin",label:"Superadmin"}),g}),yn=Y([]);async function ni(){if(!f.value)return;const g=await rp();g.ok&&(yn.value=g.organizations.slice().sort((c,q)=>c.name.localeCompare(q.name)))}const Cs=ce(()=>{const g=yn.value.map(c=>({value:c.id,label:c.name}));return u.value&&g.unshift({value:"",label:"No organization"}),g});async function ii(){if(!f.value)return;fo.value=!0,Wi.value="";const g=await ip();if(fo.value=!1,!g.ok){Wi.value=g.status===403?"Manager role required.":"Could not load users.";return}wi.value=g.users.slice().sort((c,q)=>c.email.localeCompare(q.email))}function ki(g){try{const c=g.data||{},q=Object.keys(c)[0];return q&&c[q]&&c[q].message||g.message||g.error||"Invalid input."}catch{return g.error||"Could not create user."}}async function Ls(){tn.value="";const g=Rt.email.trim().toLowerCase();if(!g.includes("@"))return tn.value="Enter a valid email.";if(Rt.password.length<8)return tn.value="Password must be at least 8 characters.";Ko.value=!0;const c=u.value?Rt.organization:s.organization,{ok:q,body:k}=await op(g,Rt.password,Rt.role,c);if(Ko.value=!1,!q)return tn.value=ki(k);Rt.email="",Rt.password="",Rt.role="user",Rt.organization="",We("User created."),ii()}async function Go(g){const{ok:c,body:q}=await ap(g.id);if(Dn.value="",!c)return We(q.error||"Could not remove user.");We("User removed."),ii()}const Qe=gt({id:"",email:"",role:"user",verified:!1,password:"",organization:""}),En=Y(""),Ki=Y(!1),qo=ce(()=>!!Qe.id&&Qe.email===s.email);function gr(g){Dn.value="",Qe.id=g.id,Qe.email=g.email,Qe.role=g.role||"user",Qe.verified=!!g.verified,Qe.password="",Qe.organization=g.organization||"",En.value=""}function ho(){Qe.id="",En.value=""}async function vr(){En.value="";const g=Qe.email.trim().toLowerCase();if(!g.includes("@"))return En.value="Enter a valid email.";if(Qe.password&&Qe.password.length<8)return En.value="New password must be at least 8 characters (or leave blank).";const c={email:g,role:Qe.role,verified:Qe.verified};u.value&&(c.organization=Qe.organization),Qe.password&&(c.password=Qe.password),Ki.value=!0;const{ok:q,body:k}=await sp(Qe.id,c);if(Ki.value=!1,!q)return En.value=ki(k);We("User updated."),ho(),ii()}const po=gt({name:""}),mo=Y(""),go=Y(!1),vo=Y(""),Nt=gt({id:"",name:""}),Fn=Y(""),As=ce(()=>{const g={};for(const c of wi.value)c.organization&&(g[c.organization]=(g[c.organization]||0)+1);return g});async function _o(){mo.value="";const g=po.name.trim();if(!g)return mo.value="Enter an organization name.";go.value=!0;const{ok:c,body:q}=await lp(g);if(go.value=!1,!c)return mo.value=ki(q);po.name="",We("Organization created."),ni()}function _r(g){vo.value="",Nt.id=g.id,Nt.name=g.name,Fn.value=""}function Ms(){Nt.id="",Fn.value=""}async function xa(){Fn.value="";const g=Nt.name.trim();if(!g)return Fn.value="Enter an organization name.";const{ok:c,body:q}=await up(Nt.id,g);if(!c)return Fn.value=ki(q);We("Organization renamed."),Ms(),ni(),ii()}async function bo(g){const{ok:c,body:q}=await cp(g.id);if(vo.value="",!c)return We(q.error||"Could not delete organization.");We("Organization deleted."),ni()}function br(){const g={_app:"PilotVault",_kind:"settings-export",exportedAt:new Date().toISOString(),email:s.email,prefs:{...be},themeMode:Oo.value},c=new Blob([JSON.stringify(g,null,2)],{type:"application/json"}),q=URL.createObjectURL(c),k=document.createElement("a");k.href=q,k.download=`pilotvault-settings-${new Date().toISOString().slice(0,10)}.json`,document.body.appendChild(k),k.click(),k.remove(),URL.revokeObjectURL(q),We("Settings exported.")}const Yn=Y("");function wa(g){const c=g.target.files&&g.target.files[0];if(!c)return;const q=new FileReader;q.onload=()=>{try{const k=JSON.parse(String(q.result)),Be=k.prefs||k;if(!ed(Be))throw new Error("bad shape");k.themeMode&&Ha(k.themeMode),ml(be.fontSize),gl(be.reduceMotion),Yn.value="Settings imported and applied."}catch{Yn.value="That file is not a valid PilotVault settings export."}},q.readAsText(c),g.target.value=""}const mt=gt({understand:!1,typed:"",cooldown:0,armed:!1,msg:""});let yo=null;const On=ce(()=>s.email||"DELETE MY ACCOUNT"),Yo=ce(()=>mt.understand&&mt.typed===On.value);function ka(){Yo.value&&(mt.armed=!0,mt.cooldown=5,clearInterval(yo),yo=setInterval(()=>{mt.cooldown--,mt.cooldown<=0&&clearInterval(yo)},1e3))}Bt(Yo,g=>{!g&&mt.armed&&(mt.armed=!1,mt.cooldown=0,clearInterval(yo))});function xo(){if(!(!mt.armed||mt.cooldown>0)){try{localStorage.removeItem("pv_prefs")}catch{}mt.msg="Account deletion requires the account service. Local data was cleared and you were signed out.",setTimeout(()=>l("logout"),900)}}return fi(()=>{O=setInterval(()=>B.value=Date.now(),1e3),ni(),ii(),Ge(),ir(),mn(),gs(),lr()}),us(()=>{clearInterval(O),clearInterval(yo),clearTimeout(ks)}),(g,c)=>(p(),m("div",Cm,[a("div",Lm,[c[72]||(c[72]=a("div",null,[a("div",{class:"eyebrow"},"Preferences"),a("h2",{class:"mt-0.5 text-[22px] font-bold tracking-tightest text-ink"},"Settings")],-1)),a("div",Am,[A(J,{name:"search",size:16,class:"text-ink-muted"}),ie(a("input",{"onUpdate:modelValue":c[0]||(c[0]=q=>H.value=q),placeholder:"Search settings…",class:"w-full border-none bg-transparent text-sm text-ink outline-none placeholder:text-ink-muted"},null,512),[[me,H.value]]),H.value?(p(),m("button",{key:0,class:"text-ink-muted hover:text-ink","aria-label":"Clear search",onClick:c[1]||(c[1]=q=>H.value="")},[A(J,{name:"x",size:15})])):I("",!0)])]),a("div",Mm,[ie(a("nav",Em,[(p(!0),m(le,null,Ie(T.value,q=>(p(),m("button",{key:q.id,class:Ce(["flex items-center gap-2.5 rounded px-3 py-2.5 text-left text-sm transition",[M.value===q.id?q.danger?"bg-danger-soft font-semibold text-danger-fg":"bg-accent-soft font-semibold text-accent-soft-fg":q.danger?"font-medium text-danger-fg hover:bg-danger-soft":"font-medium text-ink-secondary hover:bg-surface-2"]]),onClick:k=>M.value=q.id},[A(J,{name:q.icon,size:17},null,8,["name"]),a("span",zm,w(q.label),1)],10,Om))),128))],512),[[kh,!j.value]]),a("div",$m,[j.value&&!fe.value.length?(p(),m("div",Im," No settings match “"+w(H.value)+"”. ",1)):I("",!0),(p(!0),m(le,null,Ie(fe.value,q=>(p(),m(le,{key:q.id},[j.value?(p(),m("div",Nm,[A(J,{name:q.icon,size:14},null,8,["name"]),z(" "+w(q.label),1)])):I("",!0),q.id==="account"?(p(),m("div",Dm,[A(xe,{title:"Full name",desc:"Shown to your team on flights and audit logs.",keywords:"full name account"},{default:ye(()=>[ie(a("input",{"onUpdate:modelValue":c[2]||(c[2]=k=>Ee(be).name=k),class:"field w-56",placeholder:"Jane Operator",onBlur:c[3]||(c[3]=k=>We("Saved."))},null,544),[[me,Ee(be).name]])]),_:1}),A(xe,{title:"Username",desc:"Your unique handle within PilotVault.",keywords:"username handle"},{default:ye(()=>[a("div",Fm,[c[73]||(c[73]=a("span",{class:"text-sm text-ink-muted"},"@",-1)),ie(a("input",{"onUpdate:modelValue":c[4]||(c[4]=k=>Ee(be).username=k),class:"field w-48",placeholder:"jane",onBlur:c[5]||(c[5]=k=>We("Saved."))},null,544),[[me,Ee(be).username]])])]),_:1}),A(xe,{title:"Email address",desc:"Used for sign-in and notifications.",keywords:"email verification verify"},{default:ye(()=>[a("div",Rm,[a("span",Bm,w(t.email||"—"),1),a("span",Um,[A(J,{name:"mail",size:12}),c[74]||(c[74]=z(" Unverified ",-1))])])]),_:1}),A(xe,{title:"Role",desc:"Your access level in PilotVault.",keywords:"role admin user superadmin access rights permissions"},{default:ye(()=>[a("span",{class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",y(t.role)])},[A(J,{name:_(t.role),size:12},null,8,["name"]),z(w(h(t.role)),1)],2)]),_:1}),A(xe,{title:"Organization",desc:"The organization your account belongs to.",keywords:"organization org tenant company"},{default:ye(()=>[a("span",{class:Ce(["text-sm",t.organizationName?"text-ink":"text-ink-muted"])},w(t.organizationName||(u.value?"All organizations":"None")),3)]),_:1}),A(xe,{block:"",title:"Verify email",desc:"Confirm ownership to enable password resets and alerts.",keywords:"verify email resend"},{default:ye(()=>[a("button",{class:"btn-ghost",onClick:Ts},"Send verification link"),ro.value?(p(),m("p",Vm,w(ro.value),1)):I("",!0)]),_:1}),A(xe,{block:"",title:"Change password",desc:"Use at least 8 characters.",keywords:"password change current new"},{default:ye(()=>[a("div",Zm,[ie(a("input",{"onUpdate:modelValue":c[6]||(c[6]=k=>yt.current=k),type:"password",class:"field",placeholder:"Current password"},null,512),[[me,yt.current]]),ie(a("input",{"onUpdate:modelValue":c[7]||(c[7]=k=>yt.next=k),type:"password",class:"field",placeholder:"New password"},null,512),[[me,yt.next]]),ie(a("input",{"onUpdate:modelValue":c[8]||(c[8]=k=>yt.confirm=k),type:"password",class:"field",placeholder:"Confirm new password"},null,512),[[me,yt.confirm]]),a("div",Hm,[a("button",{class:"btn-accent",onClick:dr},"Update password"),xi.value?(p(),m("span",{key:0,class:Ce(["text-xs",Ss.value?"text-success-fg":"text-ink-muted"])},w(xi.value),3)):I("",!0)])])]),_:1})])):q.id==="appearance"?(p(),m("div",jm,[A(xe,{title:"Theme",desc:"Light, dark, or follow your system.",keywords:"theme light dark system appearance"},{default:ye(()=>[A(wn,{modelValue:Se.value,"onUpdate:modelValue":c[9]||(c[9]=k=>Se.value=k),options:de},null,8,["modelValue"])]),_:1}),A(xe,{title:"Font size",desc:"Scales the entire interface for readability.",keywords:"font size accessibility text"},{default:ye(()=>[A(wn,{modelValue:Ee(be).fontSize,"onUpdate:modelValue":c[10]||(c[10]=k=>Ee(be).fontSize=k),options:Fe},null,8,["modelValue"])]),_:1}),A(xe,{title:"Reduce motion",desc:"Minimise animations and transitions.",keywords:"reduce motion accessibility animation"},{default:ye(()=>[A(nn,{modelValue:Ee(be).reduceMotion,"onUpdate:modelValue":c[11]||(c[11]=k=>Ee(be).reduceMotion=k)},null,8,["modelValue"])]),_:1}),A(xe,{title:"Language",desc:"Interface language.",keywords:"language locale"},{default:ye(()=>[ie(a("select",{"onUpdate:modelValue":c[12]||(c[12]=k=>Ee(be).language=k),class:"field w-48"},[(p(),m(le,null,Ie(Te,([k,Be])=>a("option",{key:k,value:k},w(Be),9,Wm)),64))],512),[[Ot,Ee(be).language]])]),_:1}),A(xe,{title:"Region",desc:"Affects number, unit and date defaults.",keywords:"region country locale"},{default:ye(()=>[ie(a("select",{"onUpdate:modelValue":c[13]||(c[13]=k=>Ee(be).region=k),class:"field w-48"},[(p(!0),m(le,null,Ie(Ee(Ze),([k,Be])=>(p(),m("option",{key:k,value:k},w(Be),9,Km))),128))],512),[[Ot,Ee(be).region]])]),_:1}),A(xe,{title:"Date format",desc:"How calendar dates are displayed.",keywords:"date format"},{default:ye(()=>[ie(a("select",{"onUpdate:modelValue":c[14]||(c[14]=k=>Ee(be).dateFormat=k),class:"field w-48"},[(p(),m(le,null,Ie(Q,([k,Be])=>a("option",{key:k,value:k},w(Be),9,Gm)),64))],512),[[Ot,Ee(be).dateFormat]])]),_:1}),A(xe,{title:"Time format",desc:"12- or 24-hour clock.",keywords:"time format clock 12 24 hour"},{default:ye(()=>[A(wn,{modelValue:Ee(be).timeFormat,"onUpdate:modelValue":c[15]||(c[15]=k=>Ee(be).timeFormat=k),options:Oe},null,8,["modelValue"])]),_:1}),A(xe,{title:"Preview",desc:"How timestamps appear across the app.",keywords:"preview date time"},{default:ye(()=>[a("span",qm,w(N.value),1)]),_:1}),c[75]||(c[75]=a("p",{class:"mt-3 text-xs text-ink-muted"}," Language & region are stored now; full localisation ships with the account service. ",-1))])):q.id==="integrations"?(p(),m("div",Ym,[j.value?I("",!0):(p(),m("div",Jm,[(p(),m(le,null,Ie(_a,k=>a("button",{key:k.id,type:"button",class:Ce(["-mb-px inline-flex items-center gap-1.5 whitespace-nowrap border-b-2 px-3 py-2 text-sm font-semibold transition",jo.value===k.id?"border-accent text-ink":"border-transparent text-ink-secondary hover:text-ink"]),onClick:Be=>jo.value=k.id},[A(J,{name:k.icon,size:16},null,8,["name"]),z(w(k.label),1)],10,Xm)),64))])),Hi("apis-external")?(p(),m(le,{key:1},[a("div",Qm,[a("div",eg,[a("div",tg,[A(J,{name:"radio",size:20})]),c[76]||(c[76]=a("div",{class:"min-w-0"},[a("div",{class:"text-sm font-semibold text-ink"},"OpenSky Network"),a("div",{class:"mt-0.5 text-xs text-ink-muted"}," Live ADS-B aircraft data. Configure your own OAuth2 credentials, plan and default bounding box. ")],-1))]),$.loaded&&!$.available?(p(),m("div",ng,[A(J,{name:"lock",size:14,class:"mr-1 inline"}),c[77]||(c[77]=z(" OpenSky is currently disabled by your administrator. Contact them to enable it. ",-1))])):I("",!0),$.canEditOrg?(p(),m("div",ig,[c[78]||(c[78]=a("div",{class:"text-xs text-ink-muted"},"Manage your own settings, or organization-wide settings that apply to every user.",-1)),A(wn,{modelValue:Ye.value,"onUpdate:modelValue":c[16]||(c[16]=k=>Ye.value=k),options:Pt},null,8,["modelValue"])])):I("",!0),ve.value?(p(),nt(xe,{key:2,title:"Enable OpenSky (organization-wide)",desc:"Turn OpenSky on or off for everyone in your organization.",keywords:"enable disable plugin opensky organization"},{default:ye(()=>[A(nn,{"model-value":$.orgEnabled,disabled:!$.available,"onUpdate:modelValue":pt},null,8,["model-value","disabled"])]),_:1})):(p(),nt(xe,{key:3,title:"Enable OpenSky",desc:"Turn the plugin on for your account in the Web App.",keywords:"enable disable plugin opensky"},{default:ye(()=>[A(nn,{"model-value":$.enabled,disabled:!$.available||!$.orgEnabled,"onUpdate:modelValue":pt},null,8,["model-value","disabled"])]),_:1})),!ve.value&&$.available&&!$.orgEnabled?(p(),m("div",og,[A(J,{name:"lock",size:13,class:"mr-1 inline"}),c[80]||(c[80]=z("OpenSky is turned off for your organization",-1)),$.canEditOrg?(p(),m("span",sg,[...c[79]||(c[79]=[z(" — switch to ",-1),a("span",{class:"font-semibold"},"Organization",-1),z(" to turn it back on",-1)])])):I("",!0),c[81]||(c[81]=z(". ",-1))])):I("",!0),ve.value?(p(),m("div",ag,[A(J,{name:"users",size:13,class:"mr-1 inline"}),c[82]||(c[82]=z("These are organization-wide settings — they apply to everyone in ",-1)),a("span",rg,w(t.organizationName||"your organization"),1),c[83]||(c[83]=z(". Leave a field blank to let each user choose their own; a value set here overrides the user's. ",-1))])):ae.value?(p(),m("div",lg," As a superadmin you manage the global OpenSky configuration in the API Server panel. The effective configuration is shown below. ")):I("",!0),$.available&&!ve.value?(p(),m("div",ug,[a("div",cg,[a("div",dg,[A(J,{name:"signal",size:15}),c[84]||(c[84]=z("Credit usage ",-1))]),Ue.value?(p(),m("span",fg,"Checked "+w(De()),1)):I("",!0)]),Ve.value?(p(),m(le,{key:0},[Ve.value.remaining!=null?(p(),m(le,{key:0},[a("div",hg,[a("span",pg,w(Le(Ve.value.remaining)),1),a("span",mg,"/ "+w(Le(Ve.value.daily))+" credits left today",1)]),a("div",gg,[a("div",{class:Ce(["h-full rounded-full transition-all",st.value]),style:Eo({width:wt.value+"%"})},null,6)]),a("div",vg," Used "+w(Le(Ve.value.daily-Ve.value.remaining))+" today · "+w(Ve.value.probeCost)+" credit"+w(Ve.value.probeCost===1?"":"s")+" per query · "+w(Ve.value.mode),1)],64)):(p(),m(le,{key:1},[a("div",_g,[c[85]||(c[85]=z("Daily allowance: ",-1)),a("span",bg,w(Le(Ve.value.daily)),1),c[86]||(c[86]=z(" credits",-1))]),a("div",yg,w(Ve.value.probeCost)+" credit"+w(Ve.value.probeCost===1?"":"s")+" per query · "+w(Ve.value.mode)+". OpenSky only reports live remaining credits for authenticated requests — add OAuth2 credentials below to track usage. ",1)],64))],64)):(p(),m("div",xg,[...c[87]||(c[87]=[z(" Run ",-1),a("span",{class:"font-semibold text-ink-secondary"},"Test connection",-1),z(" below to fetch your live OpenSky credit balance. ",-1)])]))])):I("",!0),A(xe,{title:"OpenSky plan",desc:"Your account tier — sets the daily credit allowance.",keywords:"plan tier credits"},{default:ye(()=>[ke("plan")?(p(),m("span",wg,[z(w((Ut.find(k=>k.value===se("plan").effective)||{}).label||se("plan").effective||"—")+" ",1),Pe("plan")?(p(),m("span",kg,[A(J,{name:"lock",size:10}),z(w(Pe("plan")),1)])):I("",!0)])):(p(),nt(wn,{key:1,modelValue:we.plan,"onUpdate:modelValue":c[17]||(c[17]=k=>we.plan=k),options:Ut},null,8,["modelValue"]))]),_:1}),A(xe,{title:"Default bounding box",desc:"Automatic follows your location; or pick a region, or enter lamin,lomin,lamax,lomax by hand.",keywords:"bounding box bbox area region country continent world europe custom coordinates automatic location drone"},{default:ye(()=>[ke("bbox")?(p(),m("span",Sg,[z(w(S(se("bbox").effective)||se("bbox").effective||"—")+" ",1),Pe("bbox")?(p(),m("span",Tg,[A(J,{name:"lock",size:10}),z(w(Pe("bbox")),1)])):I("",!0)])):(p(),m("div",Pg,[ie(a("select",{"onUpdate:modelValue":c[18]||(c[18]=k=>V.value=k),class:"field w-64"},[ve.value?I("",!0):(p(),m("option",Cg,"Automatic (by location)")),(p(),m(le,null,Ie(kt,k=>a("optgroup",{key:k.label,label:k.label},[(p(!0),m(le,null,Ie(k.options,Be=>(p(),m("option",{key:Be.value,value:Be.value},w(Be.label),9,Ag))),128))],8,Lg)),64)),c[88]||(c[88]=a("option",{value:"__custom__"},"Custom…",-1))],512),[[Ot,V.value]]),re.value?(p(),m("p",Mg," Live map follows drone location → your device location → your Region ("+w(he.value)+"). ",1)):I("",!0),G.value?ie((p(),m("input",{key:1,"onUpdate:modelValue":c[19]||(c[19]=k=>we.bbox=k),class:"field w-64 font-mono",placeholder:"50.5,3.2,53.7,7.3"},null,512)),[[me,we.bbox]]):I("",!0)]))]),_:1}),A(xe,{title:"OAuth2 client ID",desc:"Optional — leave blank for anonymous access (lower limits).",keywords:"oauth client id credentials"},{default:ye(()=>[ke("clientId")?(p(),m("span",Eg,[z(w(se("clientId").effective||"—")+" ",1),Pe("clientId")?(p(),m("span",Og,[A(J,{name:"lock",size:10}),z(w(Pe("clientId")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[20]||(c[20]=k=>we.clientId=k),class:"field w-64",placeholder:"your-api-client"},null,512)),[[me,we.clientId]])]),_:1}),A(xe,{title:"OAuth2 client secret",desc:"Paired with the client ID for authenticated access.",keywords:"oauth client secret credentials password"},{default:ye(()=>[ke("clientSecret")?(p(),m("span",zg,[z(w(se("clientSecret").effective||"—")+" ",1),Pe("clientSecret")?(p(),m("span",$g,[A(J,{name:"lock",size:10}),z(w(Pe("clientSecret")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[21]||(c[21]=k=>we.clientSecret=k),type:"password",class:"field w-64",placeholder:"••••••••"},null,512)),[[me,we.clientSecret]])]),_:1}),$.available&&!$.allowAnonymous?(p(),m("div",Ig," Anonymous access is disabled by the administrator — OpenSky needs OAuth2 credentials from some layer to work. ")):I("",!0),a("div",Ng,[ae.value?I("",!0):(p(),m("button",{key:0,class:"btn-accent",disabled:ue.value||!$.available,onClick:ht},w(ue.value?"Saving…":ve.value?"Save organization settings":"Save settings"),9,Dg)),ve.value?I("",!0):(p(),m("div",Fg,[c[91]||(c[91]=a("label",{class:"text-xs text-ink-muted"},"Test area",-1)),ie(a("select",{"onUpdate:modelValue":c[22]||(c[22]=k=>Ct.value=k),class:"field w-44"},[c[89]||(c[89]=a("option",{value:"__default__"},"Default bounding box",-1)),(p(),m(le,null,Ie(Vt,k=>a("optgroup",{key:k.label,label:k.label},[(p(!0),m(le,null,Ie(k.options,Be=>(p(),m("option",{key:Be.value,value:Be.value},w(Be.label),9,Bg))),128))],8,Rg)),64)),c[90]||(c[90]=a("option",{value:"__custom__"},"Custom…",-1))],512),[[Ot,Ct.value]]),$t.value?ie((p(),m("input",{key:0,"onUpdate:modelValue":c[23]||(c[23]=k=>Zt.value=k),class:"field w-44 font-mono",placeholder:"lamin,lomin,lamax,lomax"},null,512)),[[me,Zt.value]]):I("",!0)])),ve.value?I("",!0):(p(),m("button",{key:2,class:"btn-ghost",disabled:ft.value||!$.available,onClick:kn},w(ft.value?"Testing…":"Test connection"),9,Ug)),ge.value?(p(),m("span",Vg,w(ge.value),1)):I("",!0),pe.value&&!ve.value?(p(),m("span",{key:4,class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",zi(pe.value.status)])},[c[92]||(c[92]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(pe.value.detail||pe.value.status),1)],2)):I("",!0)])]),a("div",Zg,[a("div",Hg,[a("div",jg,[A(J,{name:"sun",size:20})]),c[93]||(c[93]=a("div",{class:"min-w-0"},[a("div",{class:"text-sm font-semibold text-ink"},"OpenWeather"),a("div",{class:"mt-0.5 text-xs text-ink-muted"}," Current conditions and forecast from the OpenWeather API. Configure the API key and default location your account uses. ")],-1))]),Xe.loaded&&!Xe.available?(p(),m("div",Wg,[A(J,{name:"lock",size:14,class:"mr-1 inline"}),c[94]||(c[94]=z(" OpenWeather is currently disabled by your administrator. Contact them to enable it. ",-1))])):I("",!0),Xe.canEditOrg?(p(),m("div",Kg,[c[95]||(c[95]=a("div",{class:"text-xs text-ink-muted"},"Manage your own settings, or organization-wide settings that apply to every user.",-1)),A(wn,{modelValue:In.value,"onUpdate:modelValue":c[24]||(c[24]=k=>In.value=k),options:Pt},null,8,["modelValue"])])):I("",!0),Ln.value?(p(),nt(xe,{key:2,title:"Enable OpenWeather (organization-wide)",desc:"Turn it on or off for everyone in your organization.",keywords:"enable disable plugin openweather weather organization"},{default:ye(()=>[A(nn,{"model-value":Xe.orgEnabled,disabled:!Xe.available,"onUpdate:modelValue":Bi},null,8,["model-value","disabled"])]),_:1})):(p(),nt(xe,{key:3,title:"Enable OpenWeather",desc:"Turn the plugin on for your account in the Web App.",keywords:"enable disable plugin openweather weather"},{default:ye(()=>[A(nn,{"model-value":Xe.enabled,disabled:!Xe.available||!Xe.orgEnabled,"onUpdate:modelValue":Bi},null,8,["model-value","disabled"])]),_:1})),!Ln.value&&Xe.available&&!Xe.orgEnabled?(p(),m("div",Gg,[A(J,{name:"lock",size:13,class:"mr-1 inline"}),c[97]||(c[97]=z("OpenWeather is turned off for your organization",-1)),Xe.canEditOrg?(p(),m("span",qg,[...c[96]||(c[96]=[z(" — switch to ",-1),a("span",{class:"font-semibold"},"Organization",-1),z(" to turn it back on",-1)])])):I("",!0),c[98]||(c[98]=z(". ",-1))])):I("",!0),Ln.value?(p(),m("div",Yg,[A(J,{name:"users",size:13,class:"mr-1 inline"}),c[99]||(c[99]=z("These are organization-wide settings — they apply to everyone in ",-1)),a("span",Jg,w(t.organizationName||"your organization"),1),c[100]||(c[100]=z(". Leave the API key blank to let each user configure their own; a key set here overrides the user's. ",-1))])):Ri.value?(p(),m("div",Xg," As a superadmin you manage the global OpenWeather configuration in the API Server panel. The effective configuration is shown below. ")):I("",!0),A(xe,{title:"API key",desc:"Your OpenWeather API key (the appid parameter). Required — OpenWeather has no anonymous tier.",keywords:"api key appid secret credentials token openweather"},{default:ye(()=>[jt("apiKey")?(p(),m("span",Qg,[z(w(ze("apiKey").effective||"—")+" ",1),Je("apiKey")?(p(),m("span",ev,[A(J,{name:"lock",size:10}),z(w(Je("apiKey")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[25]||(c[25]=k=>Ht.apiKey=k),type:"password",class:"field w-64",placeholder:"••••••••"},null,512)),[[me,Ht.apiKey]])]),_:1}),A(xe,{title:"Units",desc:"Measurement system for temperatures and wind speed.",keywords:"units metric imperial standard celsius fahrenheit kelvin"},{default:ye(()=>[jt("units")?(p(),m("span",tv,[z(w((Ro.find(k=>k.value===ze("units").effective)||{}).label||ze("units").effective||"—")+" ",1),Je("units")?(p(),m("span",nv,[A(J,{name:"lock",size:10}),z(w(Je("units")),1)])):I("",!0)])):(p(),nt(wn,{key:1,modelValue:Ht.units,"onUpdate:modelValue":c[26]||(c[26]=k=>Ht.units=k),options:Ro},null,8,["modelValue"]))]),_:1}),A(xe,{title:"Default latitude",desc:"Latitude used by the health probe and calls with no location (−90…90).",keywords:"latitude location coordinates default"},{default:ye(()=>[jt("lat")?(p(),m("span",iv,[z(w(ze("lat").effective||"—")+" ",1),Je("lat")?(p(),m("span",ov,[A(J,{name:"lock",size:10}),z(w(Je("lat")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[27]||(c[27]=k=>Ht.lat=k),inputmode:"decimal",class:"field w-40 font-mono",placeholder:"52.2297"},null,512)),[[me,Ht.lat]])]),_:1}),A(xe,{title:"Default longitude",desc:"Longitude used by the health probe and calls with no location (−180…180).",keywords:"longitude location coordinates default"},{default:ye(()=>[jt("lon")?(p(),m("span",sv,[z(w(ze("lon").effective||"—")+" ",1),Je("lon")?(p(),m("span",av,[A(J,{name:"lock",size:10}),z(w(Je("lon")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[28]||(c[28]=k=>Ht.lon=k),inputmode:"decimal",class:"field w-40 font-mono",placeholder:"21.0122"},null,512)),[[me,Ht.lon]])]),_:1}),A(xe,{title:"Language",desc:"Optional ISO code for human-readable weather descriptions, e.g. en, pl, de.",keywords:"language locale description"},{default:ye(()=>[jt("lang")?(p(),m("span",rv,[z(w(ze("lang").effective||"—")+" ",1),Je("lang")?(p(),m("span",lv,[A(J,{name:"lock",size:10}),z(w(Je("lang")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[29]||(c[29]=k=>Ht.lang=k),class:"field w-24 font-mono",placeholder:"en"},null,512)),[[me,Ht.lang]])]),_:1}),A(xe,{title:"Calls per minute limit",desc:"Your plan's per-minute limit (free tier is 60). Only used to gauge app usage below. Leave blank to inherit; the app falls back to 60.",keywords:"calls per minute limit rate quota plan usage"},{default:ye(()=>[jt("callsPerMinute")?(p(),m("span",uv,[z(w(ze("callsPerMinute").effective||"60")+" ",1),Je("callsPerMinute")?(p(),m("span",cv,[A(J,{name:"lock",size:10}),z(w(Je("callsPerMinute")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[30]||(c[30]=k=>Ht.callsPerMinute=k),inputmode:"numeric",class:"field w-24 font-mono",placeholder:"60"},null,512)),[[me,Ht.callsPerMinute]])]),_:1}),Xe.available&&!Ln.value?(p(),m("div",dv,[a("div",fv,[a("div",hv,[A(J,{name:"signal",size:15}),c[101]||(c[101]=z("API call usage ",-1))]),Gn.value?(p(),m("span",pv,"Checked "+w(Uo()),1)):I("",!0)]),Ui.value?(p(),m(le,{key:0},[a("div",mv,[a("span",gv,w(Ui.value.minuteUsed),1),a("span",vv,"/ "+w(Ui.value.minuteLimit||"—")+" calls this minute",1)]),vs.value!=null?(p(),m("div",_v,[a("div",{class:Ce(["h-full rounded-full transition-all",fa.value]),style:Eo({width:vs.value+"%"})},null,6)])):I("",!0),a("div",bv,w(Ui.value.dayUsed)+" calls today · counts only requests PilotVault makes with this key, since server start. OpenWeather does not report remaining quota — check your account dashboard for the authoritative total. ",1)],64)):(p(),m("div",yv,[...c[102]||(c[102]=[z(" Run ",-1),a("span",{class:"font-semibold text-ink-secondary"},"Test connection",-1),z(" below to record and show call usage. ",-1)])]))])):I("",!0),a("div",xv,[Ri.value?I("",!0):(p(),m("button",{key:0,class:"btn-accent",disabled:Di.value||!Xe.available,onClick:Ft},w(Di.value?"Saving…":Ln.value?"Save organization settings":"Save settings"),9,wv)),Ln.value?I("",!0):(p(),m("button",{key:1,class:"btn-ghost",disabled:Fi.value||!Xe.available,onClick:bi},w(Fi.value?"Testing…":"Test connection"),9,kv)),Kn.value?(p(),m("span",Sv,w(Kn.value),1)):I("",!0),Gn.value&&!Ln.value?(p(),m("span",Tv,"Checked "+w(Uo()),1)):I("",!0),Qt.value&&!Ln.value?(p(),m("span",{key:4,class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",da(Qt.value.status)])},[c[103]||(c[103]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Qt.value.detail||Qt.value.status),1)],2)):I("",!0)])])],64)):I("",!0),Hi("drives-external")?(p(),m(le,{key:2},[a("div",Pv,[a("div",Cv,[a("div",Lv,[A(J,{name:"server",size:20})]),c[104]||(c[104]=a("div",{class:"min-w-0"},[a("div",{class:"text-sm font-semibold text-ink"},"File Transfer (FTP / SFTP)"),a("div",{class:"mt-0.5 text-xs text-ink-muted"}," Connect to an FTP, FTPS or SFTP server. Configure the connection your account uses for file transfers. ")],-1))]),at.loaded&&!at.available?(p(),m("div",Av,[A(J,{name:"lock",size:14,class:"mr-1 inline"}),c[105]||(c[105]=z(" File transfer is currently disabled by your administrator. Contact them to enable it. ",-1))])):I("",!0),at.canEditOrg?(p(),m("div",Mv,[c[106]||(c[106]=a("div",{class:"text-xs text-ink-muted"},"Manage your own settings, or organization-wide settings that apply to every user.",-1)),A(wn,{modelValue:Sn.value,"onUpdate:modelValue":c[31]||(c[31]=k=>Sn.value=k),options:Pt},null,8,["modelValue"])])):I("",!0),St.value?(p(),nt(xe,{key:2,title:"Enable file transfer (organization-wide)",desc:"Turn it on or off for everyone in your organization.",keywords:"enable disable plugin ftp sftp organization"},{default:ye(()=>[A(nn,{"model-value":at.orgEnabled,disabled:!at.available,"onUpdate:modelValue":ra},null,8,["model-value","disabled"])]),_:1})):(p(),nt(xe,{key:3,title:"Enable file transfer",desc:"Turn the plugin on for your account in the Web App.",keywords:"enable disable plugin ftp sftp"},{default:ye(()=>[A(nn,{"model-value":at.enabled,disabled:!at.available||!at.orgEnabled,"onUpdate:modelValue":ra},null,8,["model-value","disabled"])]),_:1})),!St.value&&at.available&&!at.orgEnabled?(p(),m("div",Ev,[A(J,{name:"lock",size:13,class:"mr-1 inline"}),c[108]||(c[108]=z("File transfer is turned off for your organization",-1)),at.canEditOrg?(p(),m("span",Ov,[...c[107]||(c[107]=[z(" — switch to ",-1),a("span",{class:"font-semibold"},"Organization",-1),z(" to turn it back on",-1)])])):I("",!0),c[109]||(c[109]=z(". ",-1))])):I("",!0),St.value?(p(),m("div",zv,[A(J,{name:"users",size:13,class:"mr-1 inline"}),c[110]||(c[110]=z("These are organization-wide settings — they apply to everyone in ",-1)),a("span",$v,w(t.organizationName||"your organization"),1),c[111]||(c[111]=z(". Leave the connection blank to let each user configure their own; a connection set here overrides the user's. ",-1))])):Me.value?(p(),m("div",Iv," As a superadmin you manage the global file-transfer configuration in the API Server panel. The effective configuration is shown below. ")):I("",!0),A(xe,{title:"Protocol",desc:"SFTP (over SSH), FTPS (FTP over TLS), or plain FTP.",keywords:"protocol sftp ftps ftp"},{default:ye(()=>[_t("protocol")?(p(),m("span",Nv,[z(w(oa(Z("protocol").effective))+" ",1),bt("protocol")?(p(),m("span",Dv,[A(J,{name:"lock",size:10}),z(w(bt("protocol")),1)])):I("",!0)])):(p(),nt(wn,{key:1,modelValue:rt.protocol,"onUpdate:modelValue":c[32]||(c[32]=k=>rt.protocol=k),options:U},null,8,["modelValue"]))]),_:1}),A(xe,{title:"Host",desc:"Server hostname or IP address.",keywords:"host server address"},{default:ye(()=>[_t("host")?(p(),m("span",Fv,[z(w(Z("host").effective||"—")+" ",1),bt("host")?(p(),m("span",Rv,[A(J,{name:"lock",size:10}),z(w(bt("host")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[33]||(c[33]=k=>rt.host=k),class:"field w-64",placeholder:"files.example.com"},null,512)),[[me,rt.host]])]),_:1}),A(xe,{title:"Port",desc:"Leave blank for the protocol default (22 for SFTP, 21 for FTP/FTPS).",keywords:"port"},{default:ye(()=>[_t("port")?(p(),m("span",Bv,[z(w(Z("port").effective||"default")+" ",1),bt("port")?(p(),m("span",Uv,[A(J,{name:"lock",size:10}),z(w(bt("port")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[34]||(c[34]=k=>rt.port=k),inputmode:"numeric",class:"field w-24 font-mono",placeholder:"22"},null,512)),[[me,rt.port]])]),_:1}),A(xe,{title:"Username",desc:"Account used to authenticate.",keywords:"username login account"},{default:ye(()=>[_t("username")?(p(),m("span",Vv,[z(w(Z("username").effective||"—")+" ",1),bt("username")?(p(),m("span",Zv,[A(J,{name:"lock",size:10}),z(w(bt("username")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[35]||(c[35]=k=>rt.username=k),class:"field w-64",placeholder:"user"},null,512)),[[me,rt.username]])]),_:1}),A(xe,{title:"Password",desc:"Password auth for FTP/FTPS, or SFTP password login. Leave blank to use a key.",keywords:"password secret credentials"},{default:ye(()=>[_t("password")?(p(),m("span",Hv,[z(w(Z("password").effective||"—")+" ",1),bt("password")?(p(),m("span",jv,[A(J,{name:"lock",size:10}),z(w(bt("password")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[36]||(c[36]=k=>rt.password=k),type:"password",class:"field w-64",placeholder:"••••••••"},null,512)),[[me,rt.password]])]),_:1}),Et.value==="sftp"?(p(),nt(xe,{key:7,block:"",title:"SSH private key",desc:"PEM key for SFTP key auth — used instead of, or alongside, a password.",keywords:"private key ssh pem identity"},{default:ye(()=>[_t("privateKey")?(p(),m("span",Wv,[z(w(Z("privateKey").effective||"—")+" ",1),bt("privateKey")?(p(),m("span",Kv,[A(J,{name:"lock",size:10}),z(w(bt("privateKey")),1)])):I("",!0)])):ie((p(),m("textarea",{key:1,"onUpdate:modelValue":c[37]||(c[37]=k=>rt.privateKey=k),rows:"3",class:"field w-full font-mono text-xs",placeholder:"-----BEGIN OPENSSH PRIVATE KEY-----"},null,512)),[[me,rt.privateKey]])]),_:1})):I("",!0),Et.value==="sftp"?(p(),nt(xe,{key:8,title:"Private key passphrase",desc:"Passphrase protecting the SSH private key, if any.",keywords:"passphrase key secret"},{default:ye(()=>[_t("keyPassphrase")?(p(),m("span",Gv,[z(w(Z("keyPassphrase").effective||"—")+" ",1),bt("keyPassphrase")?(p(),m("span",qv,[A(J,{name:"lock",size:10}),z(w(bt("keyPassphrase")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[38]||(c[38]=k=>rt.keyPassphrase=k),type:"password",class:"field w-64",placeholder:"••••••••"},null,512)),[[me,rt.keyPassphrase]])]),_:1})):I("",!0),Et.value==="sftp"?(p(),nt(xe,{key:9,title:"Host key fingerprint",desc:"Optional SHA256:… fingerprint to pin the server's host key. Blank accepts any key.",keywords:"host key fingerprint verify trust"},{default:ye(()=>[_t("hostKeyFingerprint")?(p(),m("span",Yv,[z(w(Z("hostKeyFingerprint").effective||"—")+" ",1),bt("hostKeyFingerprint")?(p(),m("span",Jv,[A(J,{name:"lock",size:10}),z(w(bt("hostKeyFingerprint")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[39]||(c[39]=k=>rt.hostKeyFingerprint=k),class:"field w-full font-mono text-xs",placeholder:"SHA256:…"},null,512)),[[me,rt.hostKeyFingerprint]])]),_:1})):I("",!0),Et.value==="ftps"?(p(),nt(xe,{key:10,title:"TLS verification",desc:"Skip only for self-signed test servers.",keywords:"tls certificate verify insecure ftps"},{default:ye(()=>[_t("insecureSkipVerify")?(p(),m("span",Xv,[z(w(Z("insecureSkipVerify").effective==="true"?"Skip verification":"Verify certificate")+" ",1),bt("insecureSkipVerify")?(p(),m("span",Qv,[A(J,{name:"lock",size:10}),z(w(bt("insecureSkipVerify")),1)])):I("",!0)])):(p(),nt(wn,{key:1,modelValue:rt.insecureSkipVerify,"onUpdate:modelValue":c[40]||(c[40]=k=>rt.insecureSkipVerify=k),options:E},null,8,["modelValue"]))]),_:1})):I("",!0),A(xe,{title:"Base path",desc:"Working directory and health-check target, e.g. /uploads.",keywords:"base path directory folder root"},{default:ye(()=>[_t("basePath")?(p(),m("span",e_,[z(w(Z("basePath").effective||"—")+" ",1),bt("basePath")?(p(),m("span",t_,[A(J,{name:"lock",size:10}),z(w(bt("basePath")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[41]||(c[41]=k=>rt.basePath=k),class:"field w-64 font-mono",placeholder:"/uploads"},null,512)),[[me,rt.basePath]])]),_:1}),a("div",n_,[Me.value?I("",!0):(p(),m("button",{key:0,class:"btn-accent",disabled:pi.value||!at.available,onClick:or},w(pi.value?"Saving…":St.value?"Save organization settings":"Save settings"),9,i_)),St.value?I("",!0):(p(),m("button",{key:1,class:"btn-ghost",disabled:Ii.value||!at.available,onClick:sr},w(Ii.value?"Testing…":"Test connection"),9,o_)),hi.value?(p(),m("span",s_,w(hi.value),1)):I("",!0),jn.value&&!St.value?(p(),m("span",a_,"Checked "+w(sa()),1)):I("",!0),Gt.value&&!St.value?(p(),m("span",{key:4,class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",la(Gt.value.status)])},[c[112]||(c[112]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Gt.value.detail||Gt.value.status),1)],2)):I("",!0)])]),a("div",r_,[a("div",l_,[a("div",u_,[A(J,{name:"cloud",size:20})]),c[113]||(c[113]=a("div",{class:"min-w-0"},[a("div",{class:"text-sm font-semibold text-ink"},"WebDAV"),a("div",{class:"mt-0.5 text-xs text-ink-muted"}," Connect to a WebDAV server (Nextcloud, ownCloud, IIS, …). Configure the connection your account uses. ")],-1))]),lt.loaded&&!lt.available?(p(),m("div",c_,[A(J,{name:"lock",size:14,class:"mr-1 inline"}),c[114]||(c[114]=z(" WebDAV is currently disabled by your administrator. Contact them to enable it. ",-1))])):I("",!0),lt.canEditOrg?(p(),m("div",d_,[c[115]||(c[115]=a("div",{class:"text-xs text-ink-muted"},"Manage your own settings, or organization-wide settings that apply to every user.",-1)),A(wn,{modelValue:Wn.value,"onUpdate:modelValue":c[42]||(c[42]=k=>Wn.value=k),options:Pt},null,8,["modelValue"])])):I("",!0),ot.value?(p(),nt(xe,{key:2,title:"Enable WebDAV (organization-wide)",desc:"Turn it on or off for everyone in your organization.",keywords:"enable disable plugin webdav organization"},{default:ye(()=>[A(nn,{"model-value":lt.orgEnabled,disabled:!lt.available,"onUpdate:modelValue":ca},null,8,["model-value","disabled"])]),_:1})):(p(),nt(xe,{key:3,title:"Enable WebDAV",desc:"Turn the plugin on for your account in the Web App.",keywords:"enable disable plugin webdav"},{default:ye(()=>[A(nn,{"model-value":lt.enabled,disabled:!lt.available||!lt.orgEnabled,"onUpdate:modelValue":ca},null,8,["model-value","disabled"])]),_:1})),!ot.value&<.available&&!lt.orgEnabled?(p(),m("div",f_,[A(J,{name:"lock",size:13,class:"mr-1 inline"}),c[117]||(c[117]=z("WebDAV is turned off for your organization",-1)),lt.canEditOrg?(p(),m("span",h_,[...c[116]||(c[116]=[z(" — switch to ",-1),a("span",{class:"font-semibold"},"Organization",-1),z(" to turn it back on",-1)])])):I("",!0),c[118]||(c[118]=z(". ",-1))])):I("",!0),ot.value?(p(),m("div",p_,[A(J,{name:"users",size:13,class:"mr-1 inline"}),c[119]||(c[119]=z("These are organization-wide settings — they apply to everyone in ",-1)),a("span",m_,w(t.organizationName||"your organization"),1),c[120]||(c[120]=z(". Leave the connection blank to let each user configure their own; a connection set here overrides the user's. ",-1))])):Io.value?(p(),m("div",g_," As a superadmin you manage the global WebDAV configuration in the API Server panel. The effective configuration is shown below. ")):I("",!0),A(xe,{block:"",title:"Server URL",desc:"WebDAV endpoint including scheme, e.g. https://cloud.example.com/remote.php/dav/files/alice/.",keywords:"url server address endpoint webdav host"},{default:ye(()=>[Cn("baseURL")?(p(),m("span",v_,[z(w(Pn("baseURL").effective||"—")+" ",1),qt("baseURL")?(p(),m("span",__,[A(J,{name:"lock",size:10}),z(w(qt("baseURL")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[43]||(c[43]=k=>Xt.baseURL=k),class:"field w-full font-mono text-xs",placeholder:"https://cloud.example.com/remote.php/dav/files/alice/"},null,512)),[[me,Xt.baseURL]])]),_:1}),A(xe,{title:"Username",desc:"Account used to authenticate (leave blank for a public share).",keywords:"username login account"},{default:ye(()=>[Cn("username")?(p(),m("span",b_,[z(w(Pn("username").effective||"—")+" ",1),qt("username")?(p(),m("span",y_,[A(J,{name:"lock",size:10}),z(w(qt("username")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[44]||(c[44]=k=>Xt.username=k),class:"field w-64",placeholder:"user"},null,512)),[[me,Xt.username]])]),_:1}),A(xe,{title:"Password",desc:"Password or app-specific token for HTTP Basic auth.",keywords:"password secret credentials token"},{default:ye(()=>[Cn("password")?(p(),m("span",x_,[z(w(Pn("password").effective||"—")+" ",1),qt("password")?(p(),m("span",w_,[A(J,{name:"lock",size:10}),z(w(qt("password")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[45]||(c[45]=k=>Xt.password=k),type:"password",class:"field w-64",placeholder:"••••••••"},null,512)),[[me,Xt.password]])]),_:1}),A(xe,{title:"TLS verification",desc:"Only affects HTTPS. Skip only for self-signed test servers.",keywords:"tls certificate verify insecure https"},{default:ye(()=>[Cn("insecureSkipVerify")?(p(),m("span",k_,[z(w(Pn("insecureSkipVerify").effective==="true"?"Skip verification":"Verify certificate")+" ",1),qt("insecureSkipVerify")?(p(),m("span",S_,[A(J,{name:"lock",size:10}),z(w(qt("insecureSkipVerify")),1)])):I("",!0)])):(p(),nt(wn,{key:1,modelValue:Xt.insecureSkipVerify,"onUpdate:modelValue":c[46]||(c[46]=k=>Xt.insecureSkipVerify=k),options:ua},null,8,["modelValue"]))]),_:1}),A(xe,{title:"Base path",desc:"Working directory under the server URL and health-check target, e.g. /Documents.",keywords:"base path directory folder root"},{default:ye(()=>[Cn("basePath")?(p(),m("span",T_,[z(w(Pn("basePath").effective||"—")+" ",1),qt("basePath")?(p(),m("span",P_,[A(J,{name:"lock",size:10}),z(w(qt("basePath")),1)])):I("",!0)])):ie((p(),m("input",{key:1,"onUpdate:modelValue":c[47]||(c[47]=k=>Xt.basePath=k),class:"field w-64 font-mono",placeholder:"/Documents"},null,512)),[[me,Xt.basePath]])]),_:1}),a("div",C_,[Io.value?I("",!0):(p(),m("button",{key:0,class:"btn-accent",disabled:zo.value||!lt.available,onClick:Fo},w(zo.value?"Saving…":ot.value?"Save organization settings":"Save settings"),9,L_)),ot.value?I("",!0):(p(),m("button",{key:1,class:"btn-ghost",disabled:$o.value||!lt.available,onClick:gi},w($o.value?"Testing…":"Test connection"),9,A_)),io.value?(p(),m("span",M_,w(io.value),1)):I("",!0),$n.value&&!ot.value?(p(),m("span",E_,"Checked "+w(Lt()),1)):I("",!0),Tn.value&&!ot.value?(p(),m("span",{key:4,class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",Mt(Tn.value.status)])},[c[121]||(c[121]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Tn.value.detail||Tn.value.status),1)],2)):I("",!0)])])],64)):I("",!0),Hi("drives-local")?(p(),m("div",O_,[a("div",z_,[a("div",$_,[A(J,{name:"monitor",size:20})]),c[122]||(c[122]=a("div",{class:"min-w-0"},[a("div",{class:"text-sm font-semibold text-ink"},"Local Storage"),a("div",{class:"mt-0.5 text-xs text-ink-muted"}," A private folder on the server for your files. Each user has their own; members of an organization share one. ")],-1))]),Ae.loaded&&!Ae.available?(p(),m("div",I_,[A(J,{name:"lock",size:14,class:"mr-1 inline"}),c[123]||(c[123]=z(" Local storage is currently disabled by your administrator. Contact them to enable it. ",-1))])):Ae.loaded&&!Ae.rootConfigured?(p(),m("div",N_,[A(J,{name:"alertTriangle",size:14,class:"mr-1 inline"}),c[124]||(c[124]=z(" No storage root has been configured by your administrator yet. ",-1))])):I("",!0),Ae.canEditOrg?(p(),m("div",D_,[c[125]||(c[125]=a("div",{class:"text-xs text-ink-muted"},"Manage your own settings, or organization-wide settings that apply to every user.",-1)),A(wn,{modelValue:Vi.value,"onUpdate:modelValue":c[48]||(c[48]=k=>Vi.value=k),options:Pt},null,8,["modelValue"])])):I("",!0),gn.value?(p(),nt(xe,{key:3,title:"Enable local storage (organization-wide)",desc:"Turn it on or off for everyone in your organization.",keywords:"enable disable plugin local storage folder organization"},{default:ye(()=>[A(nn,{"model-value":Ae.orgEnabled,disabled:!Ae.available,"onUpdate:modelValue":xs},null,8,["model-value","disabled"])]),_:1})):(p(),nt(xe,{key:4,title:"Enable local storage",desc:"Turn the plugin on for your account in the Web App.",keywords:"enable disable plugin local storage folder"},{default:ye(()=>[A(nn,{"model-value":Ae.enabled,disabled:!Ae.available||!Ae.orgEnabled,"onUpdate:modelValue":xs},null,8,["model-value","disabled"])]),_:1})),!gn.value&&Ae.available&&!Ae.orgEnabled?(p(),m("div",F_,[A(J,{name:"lock",size:13,class:"mr-1 inline"}),c[127]||(c[127]=z("Local storage is turned off for your organization",-1)),Ae.canEditOrg?(p(),m("span",R_,[...c[126]||(c[126]=[z(" — switch to ",-1),a("span",{class:"font-semibold"},"Organization",-1),z(" to turn it back on",-1)])])):I("",!0),c[128]||(c[128]=z(". ",-1))])):I("",!0),gn.value?(p(),m("div",B_,[A(J,{name:"users",size:13,class:"mr-1 inline"}),c[129]||(c[129]=z("These are organization-wide settings — they apply to everyone in ",-1)),a("span",U_,w(t.organizationName||"your organization"),1),c[130]||(c[130]=z(", who all share the organization folder. Members can additionally enable a private folder inside it. ",-1))])):_s.value?(p(),m("div",V_," As a superadmin you manage the global storage root in the API Server panel. The effective configuration is shown below. ")):I("",!0),gn.value?(p(),nt(xe,{key:8,title:"Private folders",desc:"Let members create a private folder inside the organization folder, reachable only by them.",keywords:"private folder members allow policy organization"},{default:ye(()=>[A(nn,{"model-value":Ae.allowPrivate,disabled:!Ae.available,"onUpdate:modelValue":ur},null,8,["model-value","disabled"])]),_:1})):I("",!0),gn.value?I("",!0):(p(),m(le,{key:9},[A(xe,{block:"",title:"Your folders",desc:"Assigned automatically and isolated — no one else can reach your private folder.",keywords:"folder directory path storage location isolated private shared"},{default:ye(()=>[a("div",Z_,[(p(!0),m(le,null,Ie(Ae.mounts,k=>(p(),m("div",{key:k.id,class:"flex flex-wrap items-center gap-2"},[a("span",H_,w(k.path),1),k.kind==="shared"?(p(),m("span",j_,[A(J,{name:"users",size:10}),c[131]||(c[131]=z("Shared with your organization",-1))])):(p(),m("span",W_,[A(J,{name:"lock",size:10}),c[132]||(c[132]=z("Private to you",-1))])),ao.value[k.id]?(p(),m("span",{key:2,class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2 py-0.5 text-[10px] font-semibold",va(ao.value[k.id].status)])},[c[133]||(c[133]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(ao.value[k.id].status),1)],2)):I("",!0)]))),128)),Ae.mounts.length?I("",!0):(p(),m("div",K_,w(Ae.rootConfigured?"No folder assigned yet.":"Waiting for the administrator to configure a storage root."),1))])]),_:1}),Ae.isOrgUser&&Ae.allowPrivate?(p(),nt(xe,{key:0,title:"My private folder",desc:"Add a private folder inside the organization folder, reachable only by you — you keep the shared folder too.",keywords:"private folder personal isolated organization inside"},{default:ye(()=>[A(nn,{"model-value":Ae.privateFolder,disabled:!Ae.available||!Ae.orgEnabled,"onUpdate:modelValue":ga},null,8,["model-value","disabled"])]),_:1})):Ae.isOrgUser&&!Ae.allowPrivate?(p(),m("div",G_,[A(J,{name:"lock",size:13,class:"mr-1 inline"}),c[134]||(c[134]=z("Private folders are turned off by your organization. ",-1))])):I("",!0)],64)),A(xe,{title:"Access mode",desc:"Read-only prevents uploads, deletes and folder creation.",keywords:"read only write access mode permission"},{default:ye(()=>[ha("readOnly")?(p(),m("span",q_,[z(w(rr(Zi("readOnly").effective))+" ",1),An("readOnly")?(p(),m("span",Y_,[A(J,{name:"lock",size:10}),z(w(An("readOnly")),1)])):I("",!0)])):(p(),nt(wn,{key:1,modelValue:so.value,"onUpdate:modelValue":c[49]||(c[49]=k=>so.value=k),options:Zo},null,8,["modelValue"]))]),_:1}),a("div",J_,[_s.value?I("",!0):(p(),m("button",{key:0,class:"btn-accent",disabled:Vo.value||!Ae.available,onClick:cr},w(Vo.value?"Saving…":gn.value?"Save organization settings":"Save settings"),9,X_)),gn.value?I("",!0):(p(),m("button",{key:1,class:"btn-ghost",disabled:en.value||!Ae.available,onClick:ws},w(en.value?"Testing…":"Test folder"),9,Q_)),qe.value?(p(),m("span",e1,w(qe.value),1)):I("",!0),yi.value&&!gn.value?(p(),m("span",t1,"Checked "+w(pa()),1)):I("",!0),ln.value&&!gn.value?(p(),m("span",{key:4,class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",va(ln.value.status)])},[c[135]||(c[135]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(ln.value.detail||ln.value.status),1)],2)):I("",!0)])])):I("",!0)])):q.id==="profile"?(p(),m("div",n1,[A(xe,{block:"",title:"Profile photo",desc:"PNG or JPG, up to ~1.5 MB. Stored on this device.",keywords:"avatar photo picture"},{default:ye(()=>[a("div",i1,[Ee(be).avatar?(p(),m("img",{key:0,src:Ee(be).avatar,alt:"Avatar",class:"h-16 w-16 rounded-full object-cover"},null,8,o1)):(p(),m("div",s1,w(ba.value),1)),a("div",a1,[a("label",r1,[A(J,{name:"upload",size:15,class:"mr-1.5 inline"}),c[136]||(c[136]=z("Upload ",-1)),a("input",{type:"file",accept:"image/*",class:"hidden",onChange:fr},null,32)]),Ee(be).avatar?(p(),m("button",{key:0,class:"btn-ghost",onClick:hr},"Remove")):I("",!0)])])]),_:1}),A(xe,{title:"Display name",desc:"The name shown on your public profile.",keywords:"display name profile"},{default:ye(()=>[ie(a("input",{"onUpdate:modelValue":c[50]||(c[50]=k=>Ee(be).displayName=k),class:"field w-56",placeholder:"Jane O.",onBlur:c[51]||(c[51]=k=>We("Saved."))},null,544),[[me,Ee(be).displayName]])]),_:1}),A(xe,{block:"",title:"Bio",desc:"A short description others can see.",keywords:"bio about description"},{default:ye(()=>[ie(a("textarea",{"onUpdate:modelValue":c[52]||(c[52]=k=>Ee(be).bio=k),rows:"3",maxlength:"240",class:"field w-full resize-none",placeholder:"Flight director, North yard operations…",onBlur:c[53]||(c[53]=k=>We("Saved."))},null,544),[[me,Ee(be).bio]]),a("div",l1,w((Ee(be).bio||"").length)+"/240",1)]),_:1}),A(xe,{title:"Show email on profile",desc:"Let teammates see your email address.",keywords:"show email public visibility"},{default:ye(()=>[A(nn,{modelValue:Ee(be).showEmail,"onUpdate:modelValue":c[54]||(c[54]=k=>Ee(be).showEmail=k)},null,8,["modelValue"])]),_:1})])):q.id==="security"?(p(),m("div",u1,[A(xe,{block:"",title:"Two-factor authentication",desc:"Require a one-time code at sign-in.",keywords:"two factor 2fa authentication security"},{default:ye(()=>[a("div",c1,[a("span",{class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",Ee(be).twoFactor?"bg-success-soft text-success-fg":"bg-surface-2 text-ink-secondary"])},[c[137]||(c[137]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Ee(be).twoFactor?"Enabled":"Disabled"),1)],2),!Ee(be).twoFactor&&!lo.value?(p(),m("button",{key:0,class:"btn-accent",onClick:ji},"Enable 2FA")):Ee(be).twoFactor?(p(),m("button",{key:1,class:"btn-ghost",onClick:co},"Disable")):I("",!0)]),lo.value?(p(),m("div",d1,[a("div",f1,[c[139]||(c[139]=a("div",{class:"grid h-28 w-28 place-items-center rounded bg-white p-2"},[a("svg",{viewBox:"0 0 100 100",class:"h-full w-full"},[a("rect",{width:"100",height:"100",fill:"#fff"}),a("g",{fill:"#0F1E3D"},[a("rect",{x:"6",y:"6",width:"24",height:"24"}),a("rect",{x:"70",y:"6",width:"24",height:"24"}),a("rect",{x:"6",y:"70",width:"24",height:"24"}),a("rect",{x:"12",y:"12",width:"12",height:"12",fill:"#fff"}),a("rect",{x:"76",y:"12",width:"12",height:"12",fill:"#fff"}),a("rect",{x:"12",y:"76",width:"12",height:"12",fill:"#fff"}),a("rect",{x:"40",y:"10",width:"8",height:"8"}),a("rect",{x:"52",y:"20",width:"8",height:"8"}),a("rect",{x:"40",y:"40",width:"8",height:"8"}),a("rect",{x:"60",y:"44",width:"8",height:"8"}),a("rect",{x:"44",y:"60",width:"8",height:"8"}),a("rect",{x:"70",y:"60",width:"8",height:"8"}),a("rect",{x:"80",y:"72",width:"8",height:"8"}),a("rect",{x:"60",y:"80",width:"8",height:"8"})])])],-1)),a("div",h1,[c[138]||(c[138]=a("div",{class:"text-xs text-ink-secondary"},"Scan with an authenticator app, or enter this secret:",-1)),a("div",p1,w(_n.value),1),a("div",m1,[ie(a("input",{"onUpdate:modelValue":c[55]||(c[55]=k=>qn.value=k),inputmode:"numeric",maxlength:"6",class:"field w-28 font-mono tracking-[0.3em]",placeholder:"000000"},null,512),[[me,qn.value]]),a("button",{class:"btn-accent",onClick:pr},"Verify & enable")]),uo.value?(p(),m("p",g1,w(uo.value),1)):I("",!0)])])])):I("",!0),Ee(be).twoFactor&&bn.value.length?(p(),m("div",v1,[c[140]||(c[140]=a("div",{class:"text-xs font-semibold text-ink"},"Recovery codes",-1)),c[141]||(c[141]=a("div",{class:"mt-0.5 text-xs text-ink-muted"},"Store these somewhere safe — each works once.",-1)),a("div",_1,[(p(!0),m(le,null,Ie(bn.value,k=>(p(),m("span",{key:k,class:"select-all"},w(k),1))),128))])])):I("",!0),c[142]||(c[142]=a("p",{class:"mt-2 text-xs text-ink-muted"},"Prototype — codes are generated locally until the account service verifies them.",-1))]),_:1}),A(xe,{block:"",title:"Active sessions",desc:"Devices currently signed in to your account.",keywords:"sessions devices logout sign out remote"},{default:ye(()=>[a("div",b1,[a("div",y1,[a("div",x1,[A(J,{name:"monitor",size:18})]),a("div",w1,[a("div",k1,[z(w(Wo())+" on "+w(mr())+" ",1),c[143]||(c[143]=a("span",{class:"ml-1 rounded-full bg-success-soft px-2 py-0.5 text-[10px] font-semibold text-success-fg"},"This device",-1))]),a("div",S1,"Signed in "+w(Ee(Su)(Ee(ti))),1)]),a("button",{class:"btn-ghost",onClick:c[56]||(c[56]=k=>l("logout"))},"Log out")])]),c[144]||(c[144]=a("button",{class:"btn-ghost mt-2 opacity-60",disabled:"",title:"Requires the account service"}," Log out all other devices ",-1)),c[145]||(c[145]=a("p",{class:"mt-2 text-xs text-ink-muted"}," Only this session is visible from the browser; enumerating and revoking remote sessions needs the account service. ",-1))]),_:1})])):q.id==="team"?(p(),m("div",T1,[Qe.id?(p(),m("div",P1,[A(xe,{block:"",title:`Edit user — ${Qe.email}`,desc:"Update details, change role, reset password, or set verified.",keywords:"edit user update role password verified organization"},{default:ye(()=>[a("div",C1,[a("div",L1,[ie(a("input",{"onUpdate:modelValue":c[57]||(c[57]=k=>Qe.email=k),type:"email",class:"field flex-1",placeholder:"name@pilotvault.local"},null,512),[[me,Qe.email]]),ie(a("select",{"onUpdate:modelValue":c[58]||(c[58]=k=>Qe.role=k),class:"field w-32",disabled:qo.value,title:qo.value?"You cannot change your own role":""},[(p(!0),m(le,null,Ie(ya.value,k=>(p(),m("option",{key:k.value,value:k.value},w(k.label),9,M1))),128))],8,A1),[[Ot,Qe.role]])]),u.value?ie((p(),m("select",{key:0,"onUpdate:modelValue":c[59]||(c[59]=k=>Qe.organization=k),class:"field",title:"Organization"},[(p(!0),m(le,null,Ie(Cs.value,k=>(p(),m("option",{key:k.value,value:k.value},w(k.label),9,E1))),128))],512)),[[Ot,Qe.organization]]):I("",!0),ie(a("input",{"onUpdate:modelValue":c[60]||(c[60]=k=>Qe.password=k),type:"password",class:"field",placeholder:"New password (leave blank to keep current)"},null,512),[[me,Qe.password]]),a("label",O1,[A(nn,{modelValue:Qe.verified,"onUpdate:modelValue":c[61]||(c[61]=k=>Qe.verified=k)},null,8,["modelValue"]),c[146]||(c[146]=z(" Email verified ",-1))]),a("div",z1,[a("button",{class:"btn-accent",disabled:Ki.value,onClick:vr},w(Ki.value?"Saving…":"Save changes"),9,$1),a("button",{class:"btn-ghost",onClick:ho},"Cancel"),En.value?(p(),m("span",I1,w(En.value),1)):I("",!0),qo.value?(p(),m("span",N1,"Editing your own account — role locked.")):I("",!0)])])]),_:1},8,["title"])])):(p(),m("div",D1,[A(xe,{block:"",title:"Add user",desc:"Create a new account. Admins add users within their organization; superadmins can target any.",keywords:"add user create account role admin organization"},{default:ye(()=>[a("div",F1,[a("div",R1,[ie(a("input",{"onUpdate:modelValue":c[62]||(c[62]=k=>Rt.email=k),type:"email",class:"field flex-1",placeholder:"name@pilotvault.local"},null,512),[[me,Rt.email]]),ie(a("select",{"onUpdate:modelValue":c[63]||(c[63]=k=>Rt.role=k),class:"field w-32"},[(p(!0),m(le,null,Ie(ya.value,k=>(p(),m("option",{key:k.value,value:k.value},w(k.label),9,B1))),128))],512),[[Ot,Rt.role]])]),u.value?ie((p(),m("select",{key:0,"onUpdate:modelValue":c[64]||(c[64]=k=>Rt.organization=k),class:"field",title:"Organization"},[(p(!0),m(le,null,Ie(Cs.value,k=>(p(),m("option",{key:k.value,value:k.value},w(k.label),9,U1))),128))],512)),[[Ot,Rt.organization]]):(p(),m("div",V1,[c[147]||(c[147]=z(" New users join your organization: ",-1)),a("span",Z1,w(t.organizationName||"—"),1)])),ie(a("input",{"onUpdate:modelValue":c[65]||(c[65]=k=>Rt.password=k),type:"password",class:"field",placeholder:"Temporary password (min 8 chars)"},null,512),[[me,Rt.password]]),a("div",H1,[a("button",{class:"btn-accent",disabled:Ko.value,onClick:Ls},w(Ko.value?"Creating…":"Create user"),9,j1),tn.value?(p(),m("span",W1,w(tn.value),1)):I("",!0)])])]),_:1})])),a("div",K1,[a("div",G1,[c[148]||(c[148]=a("div",null,[a("div",{class:"eyebrow"},"Team"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"All users")],-1)),a("button",{class:"btn-ghost",disabled:fo.value,onClick:ii},w(fo.value?"Loading…":"Refresh"),9,q1)]),Wi.value?(p(),m("div",Y1,w(Wi.value),1)):!wi.value.length&&!fo.value?(p(),m("div",J1,"No users yet.")):(p(),m("div",X1,[a("table",Q1,[a("thead",null,[a("tr",eb,[(p(),m(le,null,Ie(["User","Role","Organization","Status",""],k=>a("th",{key:k,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w(k),1)),64))])]),a("tbody",null,[(p(!0),m(le,null,Ie(wi.value,k=>(p(),m("tr",{key:k.id,class:Ce(["border-b border-line last:border-0",Qe.id===k.id?"bg-accent-soft":""])},[a("td",tb,[a("span",nb,w(k.email),1),k.email===t.email?(p(),m("span",ib,"(you)")):I("",!0)]),a("td",ob,[a("span",{class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",y(k.role||"user")])},[A(J,{name:_(k.role||"user"),size:12},null,8,["name"]),z(w(h(k.role||"user")),1)],2)]),a("td",sb,[a("span",{class:Ce(["text-sm",k.organizationName?"text-ink-secondary":"text-ink-muted"])},w(k.organizationName||"—"),3)]),a("td",ab,[a("span",{class:Ce(["text-xs",k.verified?"text-success-fg":"text-ink-muted"])},w(k.verified?"Verified":"Unverified"),3)]),a("td",rb,[Dn.value===k.id?(p(),m(le,{key:0},[c[149]||(c[149]=a("span",{class:"mr-2 text-xs text-ink-muted"},"Remove?",-1)),a("button",{class:"btn-ghost mr-1",onClick:c[66]||(c[66]=Be=>Dn.value="")},"Cancel"),a("button",{class:"rounded bg-danger px-3 py-1.5 text-sm font-semibold text-white transition hover:brightness-110",onClick:Be=>Go(k)}," Remove ",8,lb)],64)):(p(),m("div",ub,[a("button",{class:"btn-ghost inline-flex items-center gap-1.5",onClick:Be=>gr(k)},[A(J,{name:"settings",size:14}),c[150]||(c[150]=z(" Edit ",-1))],8,cb),k.email!==t.email?(p(),m("button",{key:0,class:"btn-ghost inline-flex items-center gap-1.5",onClick:Be=>Dn.value=k.id},[A(J,{name:"trash",size:14}),c[151]||(c[151]=z(" Remove ",-1))],8,db)):I("",!0)]))])],2))),128))])])]))])])):q.id==="organizations"?(p(),m("div",fb,[Nt.id?(p(),m("div",hb,[A(xe,{block:"",title:"Rename organization",desc:"Update the organization's display name.",keywords:"rename organization edit"},{default:ye(()=>[a("div",pb,[ie(a("input",{"onUpdate:modelValue":c[67]||(c[67]=k=>Nt.name=k),class:"field",placeholder:"Organization name",onKeyup:pu(xa,["enter"])},null,544),[[me,Nt.name]]),a("div",mb,[a("button",{class:"btn-accent",onClick:xa},"Save changes"),a("button",{class:"btn-ghost",onClick:Ms},"Cancel"),Fn.value?(p(),m("span",gb,w(Fn.value),1)):I("",!0)])])]),_:1})])):(p(),m("div",vb,[A(xe,{block:"",title:"Add organization",desc:"Create a new organization. Assign admins and users to it from User management.",keywords:"add organization create tenant company"},{default:ye(()=>[a("div",_b,[ie(a("input",{"onUpdate:modelValue":c[68]||(c[68]=k=>po.name=k),class:"field",placeholder:"e.g. Northwind Aerial",onKeyup:pu(_o,["enter"])},null,544),[[me,po.name]]),a("div",bb,[a("button",{class:"btn-accent",disabled:go.value,onClick:_o},w(go.value?"Creating…":"Create organization"),9,yb),mo.value?(p(),m("span",xb,w(mo.value),1)):I("",!0)])])]),_:1})])),a("div",wb,[a("div",{class:"flex items-center justify-between px-5 py-4"},[c[152]||(c[152]=a("div",null,[a("div",{class:"eyebrow"},"Tenancy"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"All organizations")],-1)),a("button",{class:"btn-ghost",onClick:ni},"Refresh")]),yn.value.length?(p(),m("div",Sb,[a("table",Tb,[a("thead",null,[a("tr",Pb,[(p(),m(le,null,Ie(["Organization","Members",""],k=>a("th",{key:k,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w(k),1)),64))])]),a("tbody",null,[(p(!0),m(le,null,Ie(yn.value,k=>(p(),m("tr",{key:k.id,class:Ce(["border-b border-line last:border-0",Nt.id===k.id?"bg-accent-soft":""])},[a("td",Cb,[a("span",Lb,[A(J,{name:"grid",size:14,class:"text-ink-muted"}),z(w(k.name),1)])]),a("td",Ab,w(As.value[k.id]||0),1),a("td",Mb,[vo.value===k.id?(p(),m(le,{key:0},[c[153]||(c[153]=a("span",{class:"mr-2 text-xs text-ink-muted"},"Delete?",-1)),a("button",{class:"btn-ghost mr-1",onClick:c[69]||(c[69]=Be=>vo.value="")},"Cancel"),a("button",{class:"rounded bg-danger px-3 py-1.5 text-sm font-semibold text-white transition hover:brightness-110",onClick:Be=>bo(k)}," Delete ",8,Eb)],64)):(p(),m("div",Ob,[a("button",{class:"btn-ghost inline-flex items-center gap-1.5",onClick:Be=>_r(k)},[A(J,{name:"settings",size:14}),c[154]||(c[154]=z(" Rename ",-1))],8,zb),a("button",{class:"btn-ghost inline-flex items-center gap-1.5",disabled:(As.value[k.id]||0)>0,title:(As.value[k.id]||0)>0?"Reassign or remove members first":"",onClick:Be=>vo.value=k.id},[A(J,{name:"trash",size:14}),c[155]||(c[155]=z(" Delete ",-1))],8,$b)]))])],2))),128))])])])):(p(),m("div",kb,"No organizations yet."))])])):q.id==="advanced"?(p(),m("div",Ib,[a("div",Nb,[A(xe,{title:"Export data",desc:"Download your settings and profile as JSON.",keywords:"export data download backup"},{default:ye(()=>[a("button",{class:"btn-ghost",onClick:br},[A(J,{name:"download",size:15,class:"mr-1.5 inline"}),c[156]||(c[156]=z("Export",-1))])]),_:1}),A(xe,{block:"",title:"Import data",desc:"Restore settings from a previous export.",keywords:"import data upload restore"},{default:ye(()=>[a("label",Db,[A(J,{name:"upload",size:15,class:"mr-1.5 inline"}),c[157]||(c[157]=z("Choose file… ",-1)),a("input",{type:"file",accept:"application/json,.json",class:"hidden",onChange:wa},null,32)]),Yn.value?(p(),m("p",Fb,w(Yn.value),1)):I("",!0)]),_:1})]),a("div",Rb,[a("div",Bb,[A(J,{name:"alertTriangle",size:18}),c[158]||(c[158]=a("h3",{class:"text-sm font-bold uppercase tracking-caps"},"Danger zone",-1))]),c[163]||(c[163]=a("p",{class:"mt-1 text-xs text-ink-secondary"},"Deleting your account is permanent and cannot be undone.",-1)),a("div",Ub,[c[162]||(c[162]=a("div",{class:"text-sm font-semibold text-ink"},"Delete account",-1)),a("label",Vb,[ie(a("input",{"onUpdate:modelValue":c[70]||(c[70]=k=>mt.understand=k),type:"checkbox",class:"mt-0.5 h-4 w-4 accent-[var(--danger)]"},null,512),[[Va,mt.understand]]),c[159]||(c[159]=z(" I understand this permanently deletes my account and all associated data. ",-1))]),a("div",Zb,[a("label",Hb,[c[160]||(c[160]=z("Type ",-1)),a("span",jb,w(On.value),1),c[161]||(c[161]=z(" to confirm",-1))]),ie(a("input",{"onUpdate:modelValue":c[71]||(c[71]=k=>mt.typed=k),class:"field w-full max-w-[360px] font-mono",placeholder:On.value},null,8,Wb),[[me,mt.typed]])]),a("div",Kb,[mt.armed?(p(),m("button",{key:1,class:"rounded bg-danger px-4 py-2.5 text-sm font-semibold text-white transition enabled:hover:brightness-110 disabled:cursor-not-allowed disabled:opacity-50",disabled:mt.cooldown>0,onClick:xo},w(mt.cooldown>0?`Confirm in ${mt.cooldown}s…`:"Permanently delete account"),9,qb)):(p(),m("button",{key:0,class:"rounded bg-danger px-4 py-2.5 text-sm font-semibold text-white transition enabled:hover:brightness-110 disabled:cursor-not-allowed disabled:opacity-40",disabled:!Yo.value,onClick:ka}," Delete account… ",8,Gb)),mt.armed&&mt.cooldown>0?(p(),m("span",Yb,"Cooling-off period — read once more.")):I("",!0)]),mt.msg?(p(),m("p",Jb,w(mt.msg),1)):I("",!0)])])])):I("",!0)],64))),128))])]),A(vh,{name:"fade"},{default:ye(()=>[Nn.value?(p(),m("div",Xb,[A(J,{name:"check",size:16,class:"text-success-fg"}),z(w(Nn.value),1)])):I("",!0)]),_:1})]))}},ey=Pm(Qb,[["__scopeId","data-v-7522b856"]]),ty={class:"mx-auto flex max-w-[1240px] flex-col gap-5 p-7"},ny={class:"flex flex-wrap items-center gap-3"},iy={class:"ml-auto flex items-center gap-2"},oy=["href"],sy={class:"grid grid-cols-3 gap-4 max-[900px]:grid-cols-1"},ay={class:"eyebrow"},ry={key:0,class:"panel border-danger/40 p-4 text-sm text-danger-fg"},ly={key:1,class:"panel p-5"},uy={class:"mb-4 flex items-center justify-between"},cy={class:"eyebrow"},dy={class:"grid grid-cols-3 gap-3 max-[760px]:grid-cols-1"},fy={class:"block"},hy={class:"block"},py={class:"block"},my={class:"block"},gy={key:0,value:""},vy=["value"],_y={class:"block"},by={class:"block"},yy={class:"block"},xy={class:"block"},wy={class:"block"},ky=["value"],Sy={class:"block"},Ty=["value"],Py={class:"block"},Cy=["value"],Ly={class:"block"},Ay={class:"mt-3 block"},My={key:0,class:"mt-3 grid grid-cols-2 gap-3 max-[760px]:grid-cols-1"},Ey={class:"block"},Oy={class:"block"},zy={class:"block"},$y={class:"block"},Iy={class:"col-span-2 block max-[760px]:col-span-1"},Ny={class:"mt-4 flex items-center gap-3"},Dy=["disabled"],Fy={key:0,class:"text-sm text-danger-fg"},Ry={class:"panel overflow-hidden p-0"},By={key:0,class:"px-5 py-12 text-center text-sm text-ink-muted"},Uy={key:1,class:"grid place-items-center px-5 py-16 text-center"},Vy={key:2,class:"overflow-x-auto"},Zy={class:"w-full border-collapse text-sm"},Hy={class:"text-left"},jy={class:"whitespace-nowrap px-5 py-3 font-mono text-ink"},Wy={key:0,class:"text-ink-muted"},Ky={class:"px-5 py-3 text-ink-secondary"},Gy=["title"],qy={class:"px-5 py-3 font-mono text-ink-secondary"},Yy={class:"px-5 py-3 text-ink-secondary"},Jy={class:"px-5 py-3"},Xy=["onClick"],Qy={class:"whitespace-nowrap px-5 py-3 text-right"},ex=["onClick"],tx=["onClick"],nx=["onClick"],ix={key:0,class:"border-b border-line bg-surface-2"},ox={colspan:"7",class:"px-5 py-3"},sx={class:"flex flex-wrap gap-x-8 gap-y-1.5 text-xs"},ax={class:"text-ink-secondary"},rx={class:"text-ink"},lx={class:"text-ink-secondary"},ux={class:"text-ink"},cx={class:"text-ink-secondary"},dx={class:"font-mono text-ink"},fx={key:0,class:"text-ink-secondary"},hx={class:"text-ink"},px={key:0,class:"mt-2 space-y-1"},mx={key:1,class:"mt-2 text-xs text-success-fg"},gx={__name:"Logbook",props:{email:{type:String,default:""},role:{type:String,default:"user"},organization:{type:String,default:""},organizationName:{type:String,default:""}},setup(t){const i=t,s={success:"bg-success-soft text-success-fg",danger:"bg-danger-soft text-danger-fg",neutral:"bg-surface-2 text-ink-secondary"},l=Y([]),u=Y([]),f=Y(!1),h=Y("");async function _(){f.value=!0,h.value="";const[O,N]=await Promise.all([pl(),Ap()]);(!O.ok||!N.ok)&&(h.value=O.status===503||N.status===503?"Logbook storage is not configured on the API Server (service account missing).":"Could not load the logbook."),l.value=O.drones,u.value=N.flights,f.value=!1}fi(_);function y(O){const N=O.compliance||{};return N.exempt?{tone:"neutral",label:"Exempt"}:(N.redFlags||[]).length?{tone:"danger",label:`${N.redFlags.length} issue${N.redFlags.length>1?"s":""}`}:{tone:"success",label:"Compliant"}}const C=Y("");function T(O){C.value=C.value===O?"":O}const M=[{value:"open",label:"Open"},{value:"specific",label:"Specific"},{value:"certified",label:"Certified"}],H=[{value:"commercial",label:"Commercial"},{value:"research",label:"Research"},{value:"public",label:"Public-benefit"},{value:"hobby",label:"Private hobby"},{value:"club_area",label:"Model-club area"}],j=[{value:"",label:"Auto (from drone)"},{value:"manual",label:"Manual"},{value:"automatic",label:"Automatic (FDR)"}];function K(){var O;return{operationDate:new Date().toISOString().slice(0,10),startTime:"",endTime:"",drone:((O=l.value[0])==null?void 0:O.id)||"",areaRoute:"",maxAltitudeAgl:"",pilotName:i.email,certificateRef:"",category:"open",purpose:"commercial",loggingPath:"",rawFdrLogUrl:"",authorisationRef:"",weather:"",airspaceRef:"",observer:"",incidents:"",notes:""}}const F=Y(!1),te=Y(""),X=gt(K()),fe=Y(""),Se=Y(!1),de=Y(!1);function Fe(){Object.assign(X,K()),te.value="",fe.value="",de.value=!1,F.value=!0}function Oe(O){Object.assign(X,{operationDate:(O.operationDate||"").slice(0,10),startTime:O.startTime||"",endTime:O.endTime||"",drone:O.drone||"",areaRoute:O.areaRoute||"",maxAltitudeAgl:O.maxAltitudeAgl||"",pilotName:O.pilotName||"",certificateRef:O.certificateRef||"",category:O.category||"open",purpose:O.purpose||"commercial",loggingPath:O.loggingPath||"",rawFdrLogUrl:O.rawFdrLogUrl||"",authorisationRef:O.authorisationRef||"",weather:O.weather||"",airspaceRef:O.airspaceRef||"",observer:O.observer||"",incidents:O.incidents||"",notes:O.notes||""}),te.value=O.id,fe.value="",de.value=!!(O.weather||O.airspaceRef||O.observer||O.incidents||O.notes),F.value=!0}function Te(){F.value=!1,te.value=""}async function Ze(){var $;if(fe.value="",!X.drone){fe.value="Select a drone first (add one in the Drones section).";return}Se.value=!0;const O={...X,maxAltitudeAgl:Number(X.maxAltitudeAgl)||0},N=te.value?await Ep(te.value,O):await Mp(O);if(Se.value=!1,!N.ok){fe.value=(($=N.body)==null?void 0:$.error)||"Could not save the flight.";return}F.value=!1,await _()}const he=Y("");async function Q(O){const N=await Op(O.id);he.value="",N.ok&&await _()}const B=ce(()=>{const O=u.value.length,N=u.value.filter(Ye=>{var we;return(((we=Ye.compliance)==null?void 0:we.redFlags)||[]).length}).length,$=u.value.filter(Ye=>{var we;return(we=Ye.compliance)==null?void 0:we.required}).length;return{total:O,flagged:N,required:$}});return(O,N)=>(p(),m("div",ty,[a("div",ny,[N[22]||(N[22]=a("div",null,[a("div",{class:"eyebrow"},"Logbook"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Flights (BEK 1649 §5)")],-1)),a("div",iy,[a("a",{href:Ee(zp)(),class:"btn-ghost inline-flex items-center gap-2",title:"Download a compliance CSV (Trafikstyrelsen / police disclosure)"},[A(J,{name:"download",size:15}),N[20]||(N[20]=z(" Export CSV ",-1))],8,oy),a("button",{class:"btn-accent inline-flex items-center gap-2",onClick:Fe},[A(J,{name:"plus",size:15}),N[21]||(N[21]=z(" Log flight ",-1))])])]),a("div",sy,[(p(!0),m(le,null,Ie([{label:"Flights logged",value:B.value.total,tone:"neutral"},{label:"Require logbook",value:B.value.required,tone:"neutral"},{label:"Compliance flags",value:B.value.flagged,tone:B.value.flagged?"danger":"success"}],$=>(p(),m("div",{key:$.label,class:"panel p-5"},[a("div",ay,w($.label),1),a("div",{class:Ce(["mt-2 text-[30px] font-bold leading-none tracking-tightest",$.tone==="danger"?"text-danger-fg":$.tone==="success"?"text-success-fg":"text-ink"])},w($.value),3)]))),128))]),h.value?(p(),m("div",ry,w(h.value),1)):I("",!0),F.value?(p(),m("div",ly,[a("div",uy,[a("div",null,[a("div",cy,w(te.value?"Edit entry":"New entry"),1),N[23]||(N[23]=a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Logbook flight (BEK 1649 §5)",-1))]),a("button",{class:"btn-icon",onClick:Te},[A(J,{name:"x",size:16})])]),a("div",dy,[a("label",fy,[N[24]||(N[24]=a("span",{class:"eyebrow mb-1 block"},"Date",-1)),ie(a("input",{"onUpdate:modelValue":N[0]||(N[0]=$=>X.operationDate=$),type:"date",class:"field"},null,512),[[me,X.operationDate]])]),a("label",hy,[N[25]||(N[25]=a("span",{class:"eyebrow mb-1 block"},"Start",-1)),ie(a("input",{"onUpdate:modelValue":N[1]||(N[1]=$=>X.startTime=$),type:"time",class:"field"},null,512),[[me,X.startTime]])]),a("label",py,[N[26]||(N[26]=a("span",{class:"eyebrow mb-1 block"},"End",-1)),ie(a("input",{"onUpdate:modelValue":N[2]||(N[2]=$=>X.endTime=$),type:"time",class:"field"},null,512),[[me,X.endTime]])]),a("label",my,[N[27]||(N[27]=a("span",{class:"eyebrow mb-1 block"},"Drone",-1)),ie(a("select",{"onUpdate:modelValue":N[3]||(N[3]=$=>X.drone=$),class:"field"},[l.value.length?I("",!0):(p(),m("option",gy,"— add a drone first —")),(p(!0),m(le,null,Ie(l.value,$=>(p(),m("option",{key:$.id,value:$.id},w($.displayName),9,vy))),128))],512),[[Ot,X.drone]])]),a("label",_y,[N[28]||(N[28]=a("span",{class:"eyebrow mb-1 block"},"Max altitude (m AGL)",-1)),ie(a("input",{"onUpdate:modelValue":N[4]||(N[4]=$=>X.maxAltitudeAgl=$),type:"number",min:"0",class:"field",placeholder:"120"},null,512),[[me,X.maxAltitudeAgl]])]),a("label",by,[N[29]||(N[29]=a("span",{class:"eyebrow mb-1 block"},"Area / route",-1)),ie(a("input",{"onUpdate:modelValue":N[5]||(N[5]=$=>X.areaRoute=$),class:"field",placeholder:"Field N of Roskilde, grid survey"},null,512),[[me,X.areaRoute]])]),a("label",yy,[N[30]||(N[30]=a("span",{class:"eyebrow mb-1 block"},"Remote pilot name",-1)),ie(a("input",{"onUpdate:modelValue":N[6]||(N[6]=$=>X.pilotName=$),class:"field",placeholder:"Full name"},null,512),[[me,X.pilotName]])]),a("label",xy,[N[31]||(N[31]=a("span",{class:"eyebrow mb-1 block"},"Certificate ref",-1)),ie(a("input",{"onUpdate:modelValue":N[7]||(N[7]=$=>X.certificateRef=$),class:"field",placeholder:"A2 / STS cert no."},null,512),[[me,X.certificateRef]])]),a("label",wy,[N[32]||(N[32]=a("span",{class:"eyebrow mb-1 block"},"Logging path",-1)),ie(a("select",{"onUpdate:modelValue":N[8]||(N[8]=$=>X.loggingPath=$),class:"field"},[(p(),m(le,null,Ie(j,$=>a("option",{key:$.value,value:$.value},w($.label),9,ky)),64))],512),[[Ot,X.loggingPath]])]),a("label",Sy,[N[33]||(N[33]=a("span",{class:"eyebrow mb-1 block"},"Category",-1)),ie(a("select",{"onUpdate:modelValue":N[9]||(N[9]=$=>X.category=$),class:"field"},[(p(),m(le,null,Ie(M,$=>a("option",{key:$.value,value:$.value},w($.label),9,Ty)),64))],512),[[Ot,X.category]])]),a("label",Py,[N[34]||(N[34]=a("span",{class:"eyebrow mb-1 block"},"Purpose",-1)),ie(a("select",{"onUpdate:modelValue":N[10]||(N[10]=$=>X.purpose=$),class:"field"},[(p(),m(le,null,Ie(H,$=>a("option",{key:$.value,value:$.value},w($.label),9,Cy)),64))],512),[[Ot,X.purpose]])]),a("label",Ly,[N[35]||(N[35]=a("span",{class:"eyebrow mb-1 block"},"Authorisation ref",-1)),ie(a("input",{"onUpdate:modelValue":N[11]||(N[11]=$=>X.authorisationRef=$),class:"field",placeholder:"Specific-category ref"},null,512),[[me,X.authorisationRef]])])]),a("label",Ay,[N[36]||(N[36]=a("span",{class:"eyebrow mb-1 block"},"FDR log URL (automatic path)",-1)),ie(a("input",{"onUpdate:modelValue":N[12]||(N[12]=$=>X.rawFdrLogUrl=$),class:"field",placeholder:"Link to the stored flight-data-recorder export"},null,512),[[me,X.rawFdrLogUrl]])]),a("button",{class:"mt-4 flex items-center gap-1.5 text-sm font-semibold text-accent",onClick:N[13]||(N[13]=$=>de.value=!de.value)},[A(J,{name:de.value?"x":"plus",size:14},null,8,["name"]),N[37]||(N[37]=z(" Operational details (weather, airspace, incidents) ",-1))]),de.value?(p(),m("div",My,[a("label",Ey,[N[38]||(N[38]=a("span",{class:"eyebrow mb-1 block"},"Weather / wind",-1)),ie(a("input",{"onUpdate:modelValue":N[14]||(N[14]=$=>X.weather=$),class:"field",placeholder:"6 m/s NW, CAVOK"},null,512),[[me,X.weather]])]),a("label",Oy,[N[39]||(N[39]=a("span",{class:"eyebrow mb-1 block"},"Airspace / NOTAM ref",-1)),ie(a("input",{"onUpdate:modelValue":N[15]||(N[15]=$=>X.airspaceRef=$),class:"field"},null,512),[[me,X.airspaceRef]])]),a("label",zy,[N[40]||(N[40]=a("span",{class:"eyebrow mb-1 block"},"Observer",-1)),ie(a("input",{"onUpdate:modelValue":N[16]||(N[16]=$=>X.observer=$),class:"field"},null,512),[[me,X.observer]])]),a("label",$y,[N[41]||(N[41]=a("span",{class:"eyebrow mb-1 block"},"Incidents / anomalies",-1)),ie(a("input",{"onUpdate:modelValue":N[17]||(N[17]=$=>X.incidents=$),class:"field",placeholder:"RTH trigger, GPS dropout…"},null,512),[[me,X.incidents]])]),a("label",Iy,[N[42]||(N[42]=a("span",{class:"eyebrow mb-1 block"},"Notes",-1)),ie(a("textarea",{"onUpdate:modelValue":N[18]||(N[18]=$=>X.notes=$),rows:"2",class:"field"},null,512),[[me,X.notes]])])])):I("",!0),a("div",Ny,[a("button",{class:"btn-accent",disabled:Se.value,onClick:Ze},w(Se.value?"Saving…":te.value?"Save changes":"Log flight"),9,Dy),a("button",{class:"btn-ghost",onClick:Te},"Cancel"),fe.value?(p(),m("span",Fy,w(fe.value),1)):I("",!0)])])):I("",!0),a("div",Ry,[f.value?(p(),m("div",By,"Loading…")):u.value.length?(p(),m("div",Vy,[a("table",Zy,[a("thead",null,[a("tr",Hy,[(p(),m(le,null,Ie(["Date","Drone","Area / route","Alt","Pilot","Compliance",""],$=>a("th",{key:$,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w($),1)),64))])]),a("tbody",null,[(p(!0),m(le,null,Ie(u.value,$=>{var Ye,we,ge,ue;return p(),m(le,{key:$.id},[a("tr",{class:Ce(["border-b border-line last:border-0",te.value===$.id?"bg-accent-soft":""])},[a("td",jy,[z(w(($.operationDate||"").slice(0,10))+" ",1),$.startTime?(p(),m("span",Wy,w($.startTime),1)):I("",!0)]),a("td",Ky,w($.droneName||"—"),1),a("td",{class:"max-w-[220px] truncate px-5 py-3 text-ink-secondary",title:$.areaRoute},w($.areaRoute||"—"),9,Gy),a("td",qy,w($.maxAltitudeAgl?$.maxAltitudeAgl+" m":"—"),1),a("td",Yy,w($.pilotName||"—"),1),a("td",Jy,[a("button",{class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",s[y($).tone]]),onClick:ft=>T($.id)},[y($).tone==="danger"?(p(),nt(J,{key:0,name:"alertTriangle",size:12})):y($).tone==="success"?(p(),nt(J,{key:1,name:"check",size:12})):I("",!0),z(" "+w(y($).label),1)],10,Xy)]),a("td",Qy,[he.value===$.id?(p(),m(le,{key:0},[N[45]||(N[45]=a("span",{class:"mr-2 text-xs text-ink-muted"},"Delete?",-1)),a("button",{class:"btn-ghost mr-1",onClick:N[19]||(N[19]=ft=>he.value="")},"Cancel"),a("button",{class:"rounded bg-danger px-3 py-1.5 text-sm font-semibold text-white transition hover:brightness-110",onClick:ft=>Q($)},"Delete",8,ex)],64)):(p(),m(le,{key:1},[a("button",{class:"btn-ghost mr-1 inline-flex items-center gap-1",onClick:ft=>Oe($)},[A(J,{name:"sliders",size:13}),N[46]||(N[46]=z(" Edit",-1))],8,tx),a("button",{class:"btn-ghost inline-flex items-center gap-1",onClick:ft=>he.value=$.id},[A(J,{name:"trash",size:13})],8,nx)],64))])],2),C.value===$.id?(p(),m("tr",ix,[a("td",ox,[a("div",sx,[a("span",ax,[N[47]||(N[47]=z("Logging path: ",-1)),a("b",rx,w(((Ye=$.compliance)==null?void 0:Ye.loggingPath)||"—"),1)]),a("span",lx,[N[48]||(N[48]=z("Category: ",-1)),a("b",ux,w($.category||"—"),1)]),a("span",cx,[N[49]||(N[49]=z("Retain until: ",-1)),a("b",dx,w(($.retentionUntil||"").slice(0,10)||"—"),1)]),(we=$.compliance)!=null&&we.exempt?(p(),m("span",fx,[N[50]||(N[50]=z("Exempt: ",-1)),a("b",hx,w($.compliance.exemptReason),1)])):I("",!0)]),(((ge=$.compliance)==null?void 0:ge.redFlags)||[]).length?(p(),m("ul",px,[(p(!0),m(le,null,Ie($.compliance.redFlags,(ft,pe)=>(p(),m("li",{key:pe,class:"flex items-start gap-2 text-xs text-danger-fg"},[A(J,{name:"alertTriangle",size:13,class:"mt-px shrink-0"}),z(" "+w(ft),1)]))),128))])):(ue=$.compliance)!=null&&ue.exempt?I("",!0):(p(),m("div",mx,"No compliance gaps detected."))])])):I("",!0)],64)}),128))])])])):(p(),m("div",Uy,[A(J,{name:"book",size:26,class:"text-ink-muted"}),N[43]||(N[43]=a("div",{class:"mt-3 text-sm font-medium text-ink-secondary"},"No flights logged yet",-1)),N[44]||(N[44]=a("div",{class:"mt-1 text-xs text-ink-muted"},"Log your first operation to start the 5-year retention record.",-1))]))])]))}},vx={class:"mx-auto flex max-w-[1240px] flex-col gap-5 p-7"},_x={class:"flex flex-wrap items-center gap-3"},bx={class:"ml-auto flex items-center gap-2"},yx={class:"grid grid-cols-4 gap-4 max-[900px]:grid-cols-2"},xx={class:"eyebrow"},wx={key:0,class:"panel border-danger/40 p-4 text-sm text-danger-fg"},kx={key:1,class:"panel p-5"},Sx={class:"mb-4 flex items-center justify-between"},Tx={class:"eyebrow"},Px={class:"grid grid-cols-3 gap-3 max-[760px]:grid-cols-1"},Cx={class:"block"},Lx={class:"block"},Ax={class:"block"},Mx={class:"block"},Ex={class:"block"},Ox={class:"block"},zx={class:"block"},$x={class:"block"},Ix={class:"block"},Nx=["value"],Dx={class:"mt-3 flex flex-wrap gap-6"},Fx={class:"flex items-center gap-2 text-sm text-ink-secondary"},Rx={class:"flex items-center gap-2 text-sm text-ink-secondary"},Bx={class:"mt-4 flex items-center gap-3"},Ux=["disabled"],Vx={key:0,class:"text-sm text-danger-fg"},Zx={class:"panel overflow-hidden p-0"},Hx={key:0,class:"px-5 py-12 text-center text-sm text-ink-muted"},jx={key:1,class:"grid place-items-center px-5 py-16 text-center"},Wx={key:2,class:"overflow-x-auto"},Kx={class:"w-full border-collapse text-sm"},Gx={class:"text-left"},qx={class:"px-5 py-3"},Yx={class:"flex items-center gap-2"},Jx={class:"font-semibold text-ink"},Xx={key:0,class:"text-xs text-ink-muted"},Qx={key:1,class:"text-xs text-ink-muted"},e0={class:"px-5 py-3 font-mono text-xs text-ink-secondary"},t0={class:"px-5 py-3 font-mono text-xs text-ink-secondary"},n0={class:"px-5 py-3 font-mono text-xs text-ink-secondary"},i0={class:"px-5 py-3 font-mono text-xs text-ink-secondary"},o0={class:"px-5 py-3"},s0={key:1,class:"text-ink-muted"},a0={class:"whitespace-nowrap px-5 py-3 text-right"},r0=["onClick"],l0=["onClick"],u0=["onClick"],c0={__name:"Drones",props:{connectedSerials:{type:Array,default:()=>[]}},emits:["deleted"],setup(t,{expose:i,emit:s}){const l=t,u=s,f={success:"bg-success-soft text-success-fg",accent:"bg-accent-soft text-accent-soft-fg",neutral:"bg-surface-2 text-ink-secondary"},h=Y([]),_=Y(!1),y=Y("");async function C(){_.value=!0,y.value="";const Q=await pl();Q.ok||(y.value=Q.status===503?"Drone storage is not configured on the API Server (service account missing).":"Could not load your drones."),h.value=Q.drones,_.value=!1}fi(C),i({reload:C});const T=ce(()=>new Set(l.connectedSerials.filter(Boolean)));function M(Q){return!!Q.serial&&T.value.has(Q.serial)}const H=["","C0","C1","C2","C3","C4","C5","C6"];function j(){return{name:"",model:"",serial:"",firmware:"",controllerFirmware:"",registration:"",operatorNumber:"",mtomGrams:"",isToy:!1,autologsFlights:!1,cClass:""}}const K=Y(!1),F=Y(""),te=gt(j()),X=Y(""),fe=Y(!1);function Se(){Object.assign(te,j()),F.value="",X.value="",K.value=!0}function de(Q){Object.assign(te,{name:Q.name||"",model:Q.model||"",serial:Q.serial||"",firmware:Q.firmware||"",controllerFirmware:Q.controllerFirmware||"",registration:Q.registration||"",operatorNumber:Q.operatorNumber||"",mtomGrams:Q.mtomGrams||"",isToy:!!Q.isToy,autologsFlights:!!Q.autologsFlights,cClass:Q.cClass||""}),F.value=Q.id,X.value="",K.value=!0}function Fe(){K.value=!1,F.value=""}async function Oe(){var O;if(X.value="",!te.name.trim()&&!te.model.trim()&&!te.serial.trim()){X.value="Give the drone a custom name, model or serial.";return}fe.value=!0;const Q={...te,mtomGrams:Number(te.mtomGrams)||0},B=F.value?await Cp(F.value,Q):await Tp(Q);if(fe.value=!1,!B.ok){X.value=((O=B.body)==null?void 0:O.error)||"Could not save the drone.";return}K.value=!1,await C()}const Te=Y("");async function Ze(Q){var O;const B=await Lp(Q.id);Te.value="",B.ok?(u("deleted",Q.serial),await C()):X.value=((O=B.body)==null?void 0:O.error)||"Could not delete the drone."}const he=ce(()=>({fleet:h.value.length,connected:h.value.filter(M).length,unnamed:h.value.filter(Q=>!(Q.name||"").trim()).length,unregistered:h.value.filter(Q=>!(Q.registration||"").trim()).length}));return(Q,B)=>(p(),m("div",vx,[a("div",_x,[B[13]||(B[13]=a("div",null,[a("div",{class:"eyebrow"},"Fleet"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Drones you fly")],-1)),a("div",bx,[a("button",{class:"btn-accent inline-flex items-center gap-2",onClick:Se},[A(J,{name:"plus",size:15}),B[12]||(B[12]=z(" Add drone ",-1))])])]),a("div",yx,[(p(!0),m(le,null,Ie([{label:"Drones in fleet",value:he.value.fleet,tone:"neutral"},{label:"Connected now",value:he.value.connected,tone:he.value.connected?"success":"neutral"},{label:"Awaiting a name",value:he.value.unnamed,tone:"neutral"},{label:"No registration",value:he.value.unregistered,tone:"neutral"}],O=>(p(),m("div",{key:O.label,class:"panel p-5"},[a("div",xx,w(O.label),1),a("div",{class:Ce(["mt-2 text-[30px] font-bold leading-none tracking-tightest",O.tone==="success"?"text-success-fg":"text-ink"])},w(O.value),3)]))),128))]),y.value?(p(),m("div",wx,w(y.value),1)):I("",!0),K.value?(p(),m("div",kx,[a("div",Sx,[a("div",null,[a("div",Tx,w(F.value?"Edit drone":"New drone"),1),B[14]||(B[14]=a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Aircraft registry",-1))]),a("button",{class:"btn-icon",onClick:Fe},[A(J,{name:"x",size:16})])]),a("div",Px,[a("label",Cx,[B[15]||(B[15]=a("span",{class:"eyebrow mb-1 block"},"Custom name",-1)),ie(a("input",{"onUpdate:modelValue":B[0]||(B[0]=O=>te.name=O),class:"field",placeholder:"Mavic-01"},null,512),[[me,te.name]])]),a("label",Lx,[B[16]||(B[16]=a("span",{class:"eyebrow mb-1 block"},"Model",-1)),ie(a("input",{"onUpdate:modelValue":B[1]||(B[1]=O=>te.model=O),class:"field",placeholder:"DJI Mavic 3 Enterprise"},null,512),[[me,te.model]])]),a("label",Ax,[B[17]||(B[17]=a("span",{class:"eyebrow mb-1 block"},"Serial number",-1)),ie(a("input",{"onUpdate:modelValue":B[2]||(B[2]=O=>te.serial=O),class:"field"},null,512),[[me,te.serial]])]),a("label",Mx,[B[18]||(B[18]=a("span",{class:"eyebrow mb-1 block"},"Drone firmware",-1)),ie(a("input",{"onUpdate:modelValue":B[3]||(B[3]=O=>te.firmware=O),class:"field",placeholder:"03.02.35.05"},null,512),[[me,te.firmware]])]),a("label",Ex,[B[19]||(B[19]=a("span",{class:"eyebrow mb-1 block"},"Controller firmware",-1)),ie(a("input",{"onUpdate:modelValue":B[4]||(B[4]=O=>te.controllerFirmware=O),class:"field",placeholder:"01.03.0800"},null,512),[[me,te.controllerFirmware]])]),a("label",Ox,[B[20]||(B[20]=a("span",{class:"eyebrow mb-1 block"},"Registration (FAA/CAA)",-1)),ie(a("input",{"onUpdate:modelValue":B[5]||(B[5]=O=>te.registration=O),class:"field",placeholder:"FA3X7K9PLM"},null,512),[[me,te.registration]])]),a("label",zx,[B[21]||(B[21]=a("span",{class:"eyebrow mb-1 block"},"Operator no. (EU)",-1)),ie(a("input",{"onUpdate:modelValue":B[6]||(B[6]=O=>te.operatorNumber=O),class:"field",placeholder:"DNK…"},null,512),[[me,te.operatorNumber]])]),a("label",$x,[B[22]||(B[22]=a("span",{class:"eyebrow mb-1 block"},"MTOM (grams)",-1)),ie(a("input",{"onUpdate:modelValue":B[7]||(B[7]=O=>te.mtomGrams=O),type:"number",min:"0",class:"field",placeholder:"920"},null,512),[[me,te.mtomGrams]])]),a("label",Ix,[B[23]||(B[23]=a("span",{class:"eyebrow mb-1 block"},"C-class",-1)),ie(a("select",{"onUpdate:modelValue":B[8]||(B[8]=O=>te.cClass=O),class:"field"},[(p(),m(le,null,Ie(H,O=>a("option",{key:O,value:O},w(O||"— none —"),9,Nx)),64))],512),[[Ot,te.cClass]])])]),B[26]||(B[26]=a("p",{class:"mt-3 text-xs text-ink-muted"}," Model, serial and both firmware versions fill themselves in when the drone connects — anything you type here is kept as-is. ",-1)),a("div",Dx,[a("label",Fx,[ie(a("input",{"onUpdate:modelValue":B[9]||(B[9]=O=>te.autologsFlights=O),type:"checkbox",class:"h-4 w-4 accent-[var(--accent)]"},null,512),[[Va,te.autologsFlights]]),B[24]||(B[24]=z(" Auto-logs flights (onboard FDR) ",-1))]),a("label",Rx,[ie(a("input",{"onUpdate:modelValue":B[10]||(B[10]=O=>te.isToy=O),type:"checkbox",class:"h-4 w-4 accent-[var(--accent)]"},null,512),[[Va,te.isToy]]),B[25]||(B[25]=z(" Toy drone (logbook-exempt) ",-1))])]),a("div",Bx,[a("button",{class:"btn-accent",disabled:fe.value,onClick:Oe},w(fe.value?"Saving…":F.value?"Save changes":"Add drone"),9,Ux),a("button",{class:"btn-ghost",onClick:Fe},"Cancel"),X.value?(p(),m("span",Vx,w(X.value),1)):I("",!0)])])):I("",!0),a("div",Zx,[_.value?(p(),m("div",Hx,"Loading…")):h.value.length?(p(),m("div",Wx,[a("table",Kx,[a("thead",null,[a("tr",Gx,[(p(),m(le,null,Ie(["Drone","Serial","Firmware","Ctrl FW","Registration","Class",""],O=>a("th",{key:O,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w(O),1)),64))])]),a("tbody",null,[(p(!0),m(le,null,Ie(h.value,O=>(p(),m("tr",{key:O.id,class:Ce(["border-b border-line last:border-0",F.value===O.id?"bg-accent-soft":""])},[a("td",qx,[a("div",Yx,[a("span",Jx,w(O.displayName),1),M(O)?(p(),m("span",{key:0,class:Ce(["inline-flex items-center gap-1 rounded-full px-2 py-0.5 text-[11px] font-semibold",f.success])},[A(J,{name:"signal",size:11}),B[29]||(B[29]=z(" connected ",-1))],2)):I("",!0)]),O.name&&O.model?(p(),m("div",Xx,w(O.model),1)):O.name?I("",!0):(p(),m("div",Qx,"no custom name yet"))]),a("td",e0,w(O.serial||"—"),1),a("td",t0,w(O.firmware||"—"),1),a("td",n0,w(O.controllerFirmware||"—"),1),a("td",i0,w(O.registration||"—"),1),a("td",o0,[O.cClass?(p(),m("span",{key:0,class:Ce(["inline-flex rounded-full px-2 py-0.5 text-[11px] font-semibold",f.accent])},w(O.cClass),3)):(p(),m("span",s0,"—")),O.isToy?(p(),m("span",{key:2,class:Ce(["ml-1 inline-flex rounded-full px-2 py-0.5 text-[11px] font-semibold",f.neutral])},"toy",2)):I("",!0)]),a("td",a0,[Te.value===O.id?(p(),m(le,{key:0},[B[30]||(B[30]=a("span",{class:"mr-2 text-xs text-ink-muted"},"Delete?",-1)),a("button",{class:"btn-ghost mr-1",onClick:B[11]||(B[11]=N=>Te.value="")},"Cancel"),a("button",{class:"rounded bg-danger px-3 py-1.5 text-sm font-semibold text-white transition hover:brightness-110",onClick:N=>Ze(O)},"Delete",8,r0)],64)):(p(),m(le,{key:1},[a("button",{class:"btn-ghost mr-1 inline-flex items-center gap-1",onClick:N=>de(O)},[A(J,{name:"sliders",size:13}),B[31]||(B[31]=z(" Edit",-1))],8,l0),a("button",{class:"btn-ghost inline-flex items-center gap-1",onClick:N=>Te.value=O.id},[A(J,{name:"trash",size:13})],8,u0)],64))])],2))),128))])])])):(p(),m("div",jx,[A(J,{name:"drone",size:26,class:"text-ink-muted"}),B[27]||(B[27]=a("div",{class:"mt-3 text-sm font-medium text-ink-secondary"},"No drones yet",-1)),B[28]||(B[28]=a("div",{class:"mt-1 text-xs text-ink-muted"}," Connect a drone in the Fly App and it lands here by itself — or add one by hand. ",-1))]))])]))}},d0={class:"mx-auto flex max-w-[1240px] flex-col gap-5 p-7"},f0={class:"flex flex-wrap items-center gap-3"},h0={class:"inline-flex flex-wrap rounded-lg border border-line bg-surface-1 p-0.5"},p0=["onClick"],m0={class:"ml-auto"},g0={class:"grid grid-cols-4 gap-4 max-[900px]:grid-cols-2"},v0={class:"eyebrow"},_0={key:0,class:"panel border-danger/40 p-4 text-sm text-danger-fg"},b0={key:1,class:"panel p-5"},y0={class:"mb-4 flex items-center justify-between"},x0={class:"eyebrow"},w0={class:"mt-0.5 text-base font-semibold text-ink"},k0={class:"grid grid-cols-3 gap-3 max-[760px]:grid-cols-1"},S0={class:"col-span-2 block max-[760px]:col-span-1"},T0={class:"block"},P0=["value"],C0={class:"block"},L0=["value"],A0={class:"block"},M0=["value"],E0={class:"block"},O0={class:"block"},z0={class:"block"},$0={class:"block"},I0=["value"],N0={class:"block"},D0={class:"block"},F0={class:"block"},R0=["value"],B0={class:"mt-3 block"},U0={key:0,class:"mt-3"},V0={class:"eyebrow mb-1 block"},Z0={key:1,class:"mt-3 text-xs text-ink-muted"},H0={class:"mt-4 flex items-center gap-3"},j0=["disabled"],W0={key:0,class:"text-sm text-danger-fg"},K0={class:"panel overflow-hidden p-0"},G0={key:0,class:"px-5 py-12 text-center text-sm text-ink-muted"},q0={key:1,class:"grid place-items-center px-5 py-16 text-center"},Y0={class:"mt-3 text-sm font-medium text-ink-secondary"},J0={class:"mt-1 text-xs text-ink-muted"},X0={key:2,class:"overflow-x-auto"},Q0={class:"w-full border-collapse text-sm"},ew={class:"text-left"},tw={class:"px-5 py-3"},nw={class:"font-semibold text-ink"},iw={key:0,class:"font-mono text-[11px] text-ink-muted"},ow={class:"px-5 py-3 text-ink-secondary"},sw={class:"px-5 py-3 text-ink-secondary"},aw={class:"px-5 py-3"},rw=["onClick"],lw={key:0,class:"mt-0.5 font-mono text-[10.5px] text-ink-muted"},uw={class:"px-5 py-3 font-mono text-ink-secondary"},cw={class:"whitespace-nowrap px-5 py-3 text-right"},dw=["onClick"],fw=["onClick"],hw=["href"],pw=["onClick"],mw=["onClick"],gw=["onClick"],vw={key:0,class:"border-b border-line bg-surface-2"},_w={colspan:"6",class:"px-5 py-3"},bw={class:"flex flex-wrap gap-x-8 gap-y-1.5 text-xs"},yw={class:"text-ink-secondary"},xw={class:"text-ink"},ww={class:"text-ink-secondary"},kw={class:"text-ink"},Sw={key:0,class:"text-ink-secondary"},Tw={class:"text-ink"},Pw={key:1,class:"text-ink-secondary"},Cw={class:"font-mono text-ink"},Lw={key:2,class:"text-ink-secondary"},Aw={class:"font-mono text-ink"},Mw={class:"text-ink-secondary"},Ew={class:"text-ink"},Ow={key:0,class:"mt-2 space-y-1"},zw={key:1,class:"mt-2 text-xs text-success-fg"},$w={key:2,class:"mt-2 text-xs text-ink-secondary"},Iw={class:"flex max-h-[90vh] w-full max-w-[920px] flex-col overflow-hidden rounded-lg border border-line bg-surface-1 shadow-2xl"},Nw={class:"flex items-center gap-3 border-b border-line px-5 py-3"},Dw={class:"min-w-0"},Fw={class:"truncate text-sm font-semibold text-ink"},Rw={class:"truncate font-mono text-[11px] text-ink-muted"},Bw={class:"ml-auto flex items-center gap-2"},Uw=["href"],Vw=["href"],Zw={class:"flex-1 overflow-auto bg-surface-2"},Hw=["src","alt"],jw=["src","title"],Ww={key:2,class:"grid place-items-center px-6 py-16 text-center"},Kw={class:"mt-1 text-xs text-ink-muted"},Gw=["href"],qw={__name:"Documents",props:{email:{type:String,default:""},role:{type:String,default:"user"},organization:{type:String,default:""},organizationName:{type:String,default:""}},setup(t){const i={success:"bg-success-soft text-success-fg",warning:"bg-amber-soft text-amber-fg",danger:"bg-danger-soft text-danger-fg",accent:"bg-accent-soft text-accent-soft-fg",neutral:"bg-surface-2 text-ink-secondary"},s=[{value:"certificate",label:"Pilot certificate"},{value:"medical",label:"Medical / training"},{value:"insurance",label:"Insurance / liability"},{value:"background_check",label:"Background check / waiver"},{value:"registration",label:"Aircraft registration"},{value:"maintenance",label:"Maintenance log"},{value:"conformity",label:"Conformity / compliance"},{value:"firmware",label:"Firmware / software"},{value:"incident",label:"Incident / repair report"},{value:"flight_log",label:"Flight log"},{value:"checklist",label:"Pre-flight checklist"},{value:"airspace_auth",label:"Airspace authorisation"},{value:"mission_plan",label:"Mission plan / flight path"},{value:"risk_assessment",label:"Risk assessment / survey"},{value:"contract",label:"Contract / SOW"},{value:"client_insurance",label:"Client insurance cert"},{value:"delivery_report",label:"Delivery / media handoff"},{value:"other",label:"Other"}],l=Object.fromEntries(s.map(x=>[x.value,x.label])),u=[{value:"pilot",label:"Pilot"},{value:"aircraft",label:"Aircraft"},{value:"organization",label:"Organization"},{value:"client",label:"Client"},{value:"other",label:"Other"}],f=[{value:"active",label:"Active"},{value:"pending_review",label:"Pending review"},{value:"archived",label:"Archived"}],h=[{value:"pilot",label:"Pilot"},{value:"ops",label:"Ops manager"},{value:"admin",label:"Admin"},{value:"client",label:"Client-facing"}],_=Y([]),y=Y([]),C=Y(!1),T=Y("");async function M(){C.value=!0,T.value="";const[x,b]=await Promise.all([$p(),pl()]);x.ok||(T.value=x.status===503?"Document storage is not configured on the API Server (service account missing).":"Could not load documents."),_.value=x.documents,y.value=b.drones||[],C.value=!1}fi(M);const H=Y("all"),j=[["all","All"],["expiring","Expiring soon"],["expired","Expired"],["pending","Pending review"],["archived","Archived"]],K=ce(()=>{const x=_.value;switch(H.value){case"expiring":return x.filter(b=>{var S;return((S=b.expiry)==null?void 0:S.state)==="expiring_soon"&&b.status!=="archived"});case"expired":return x.filter(b=>{var S;return((S=b.expiry)==null?void 0:S.state)==="expired"&&b.status!=="archived"});case"pending":return x.filter(b=>b.status==="pending_review");case"archived":return x.filter(b=>b.status==="archived");default:return x.filter(b=>b.status!=="archived")}});function F(x){if(x.status==="archived")return{tone:"neutral",label:"Superseded",icon:""};const b=x.expiry||{};return b.state==="expired"?{tone:"danger",label:"Expired",icon:"alertTriangle"}:b.state==="expiring_soon"?{tone:"warning",label:`Expires in ${b.daysUntilExpiry}d`,icon:"clock"}:b.state==="valid"?{tone:"success",label:"Valid",icon:"check"}:{tone:"neutral",label:"No expiry",icon:""}}const te=Y("");function X(x){te.value=te.value===x?"":x}function fe(x){return x.ownerDrone?x.ownerDroneName||"Aircraft":x.ownerRef?x.ownerRef:x.ownerType==="pilot"?"Pilot":x.ownerType?x.ownerType.charAt(0).toUpperCase()+x.ownerType.slice(1):"—"}const Se=["png","jpg","jpeg","gif","webp","svg","bmp","avif"],de=["pdf","txt","csv","log","json","md","html","htm","xml"];function Fe(x){const b=(x||"").split(".").pop().toLowerCase();return Se.includes(b)?"image":de.includes(b)?"frame":"none"}const Oe=Y(null),Te=ce(()=>Oe.value?Fe(Oe.value.fileName):"none"),Ze=ce(()=>Oe.value?Fp(Oe.value.id):"");function he(x){Oe.value=x}function Q(){Oe.value=null}function B(x){x.key==="Escape"&&Oe.value&&Q()}fi(()=>window.addEventListener("keydown",B)),us(()=>window.removeEventListener("keydown",B));function O(){return{title:"",docType:"certificate",ownerType:"pilot",ownerDrone:"",ownerRef:"",reference:"",jurisdiction:"",issueDate:"",expiryDate:"",status:"active",accessTier:"ops",notes:""}}const N=Y(!1),$=Y(""),Ye=Y(""),we=Y(""),ge=gt(O()),ue=Y(null),ft=Y(null),pe=Y(""),Ue=Y(!1);function Ve(){ue.value=null,ft.value&&(ft.value.value="")}function wt(){Object.assign(ge,O()),$.value="",Ye.value="",we.value="",Ve(),pe.value="",N.value=!0}function st(x){Object.assign(ge,{title:x.title||"",docType:x.docType||"certificate",ownerType:x.ownerType||"pilot",ownerDrone:x.ownerDrone||"",ownerRef:x.ownerRef||"",reference:x.reference||"",jurisdiction:x.jurisdiction||"",issueDate:x.issueDate||"",expiryDate:x.expiryDate||"",status:x.status||"active",accessTier:x.accessTier||"ops",notes:x.notes||""}),$.value=x.id,Ye.value="",we.value="",Ve(),pe.value="",N.value=!0}function Le(x){st(x),$.value="",Ye.value=x.id,we.value=x.title,ge.status="active"}function De(){N.value=!1,$.value="",Ye.value=""}function zt(x){var b;ue.value=((b=x.target.files)==null?void 0:b[0])||null}async function At(){var b;if(pe.value="",!ge.title.trim()){pe.value="Give the document a title.";return}Ue.value=!0;let x;if($.value)x=await Np($.value,{...ge});else{const S={...ge};Ye.value&&(S.replaces=Ye.value),x=await Ip(S,ue.value)}if(Ue.value=!1,!x.ok){pe.value=((b=x.body)==null?void 0:b.error)||"Could not save the document.";return}N.value=!1,$.value="",Ye.value="",await M()}const Ut=Y("");async function Pt(x){var S;const b=await Dp(x.id);Ut.value="",b.ok?await M():pe.value=((S=b.body)==null?void 0:S.error)||"Could not delete the document."}const kt=ce(()=>{const x=_.value.filter(b=>b.status!=="archived");return{total:x.length,expiring:x.filter(b=>{var S;return((S=b.expiry)==null?void 0:S.state)==="expiring_soon"}).length,expired:x.filter(b=>{var S;return((S=b.expiry)==null?void 0:S.state)==="expired"}).length,pending:_.value.filter(b=>b.status==="pending_review").length}});return(x,b)=>(p(),m("div",d0,[a("div",f0,[a("div",h0,[(p(),m(le,null,Ie(j,S=>a("button",{key:S[0],class:Ce(["rounded-md px-3.5 py-1.5 text-sm font-semibold transition",H.value===S[0]?"bg-accent-soft text-accent-soft-fg":"text-ink-secondary hover:text-ink"]),onClick:W=>H.value=S[0]},w(S[1]),11,p0)),64))]),a("div",m0,[a("button",{class:"btn-accent inline-flex items-center gap-2",onClick:wt},[A(J,{name:"upload",size:15}),b[13]||(b[13]=z(" Add document ",-1))])])]),a("div",g0,[(p(!0),m(le,null,Ie([{label:"Documents on file",value:kt.value.total,tone:"neutral"},{label:"Expiring soon",value:kt.value.expiring,tone:kt.value.expiring?"warning":"neutral"},{label:"Expired",value:kt.value.expired,tone:kt.value.expired?"danger":"success"},{label:"Pending review",value:kt.value.pending,tone:kt.value.pending?"accent":"neutral"}],S=>(p(),m("div",{key:S.label,class:"panel p-5"},[a("div",v0,w(S.label),1),a("div",{class:Ce(["mt-2 text-[30px] font-bold leading-none tracking-tightest",S.tone==="danger"?"text-danger-fg":S.tone==="warning"?"text-amber-fg":S.tone==="success"?"text-success-fg":S.tone==="accent"?"text-accent-soft-fg":"text-ink"])},w(S.value),3)]))),128))]),T.value?(p(),m("div",_0,w(T.value),1)):I("",!0),N.value?(p(),m("div",b0,[a("div",y0,[a("div",null,[a("div",x0,w($.value?"Edit document":Ye.value?"New version":"New document"),1),a("div",w0,w(Ye.value?`Supersedes “${we.value}”`:"Compliance & operational document"),1)]),a("button",{class:"btn-icon",onClick:De},[A(J,{name:"x",size:16})])]),a("div",k0,[a("label",S0,[b[14]||(b[14]=a("span",{class:"eyebrow mb-1 block"},"Title",-1)),ie(a("input",{"onUpdate:modelValue":b[0]||(b[0]=S=>ge.title=S),class:"field",placeholder:"A2 Remote Pilot Certificate — J. Dariusz"},null,512),[[me,ge.title]])]),a("label",T0,[b[15]||(b[15]=a("span",{class:"eyebrow mb-1 block"},"Type",-1)),ie(a("select",{"onUpdate:modelValue":b[1]||(b[1]=S=>ge.docType=S),class:"field"},[(p(),m(le,null,Ie(s,S=>a("option",{key:S.value,value:S.value},w(S.label),9,P0)),64))],512),[[Ot,ge.docType]])]),a("label",C0,[b[16]||(b[16]=a("span",{class:"eyebrow mb-1 block"},"Owner type",-1)),ie(a("select",{"onUpdate:modelValue":b[2]||(b[2]=S=>ge.ownerType=S),class:"field"},[(p(),m(le,null,Ie(u,S=>a("option",{key:S.value,value:S.value},w(S.label),9,L0)),64))],512),[[Ot,ge.ownerType]])]),a("label",A0,[b[18]||(b[18]=a("span",{class:"eyebrow mb-1 block"},"Aircraft (if any)",-1)),ie(a("select",{"onUpdate:modelValue":b[3]||(b[3]=S=>ge.ownerDrone=S),class:"field"},[b[17]||(b[17]=a("option",{value:""},"— none —",-1)),(p(!0),m(le,null,Ie(y.value,S=>(p(),m("option",{key:S.id,value:S.id},w(S.name)+w(S.model?` · ${S.model}`:""),9,M0))),128))],512),[[Ot,ge.ownerDrone]])]),a("label",E0,[b[19]||(b[19]=a("span",{class:"eyebrow mb-1 block"},"Owner reference",-1)),ie(a("input",{"onUpdate:modelValue":b[4]||(b[4]=S=>ge.ownerRef=S),class:"field",placeholder:"Client name / serial / site"},null,512),[[me,ge.ownerRef]])]),a("label",O0,[b[20]||(b[20]=a("span",{class:"eyebrow mb-1 block"},"Reference / number",-1)),ie(a("input",{"onUpdate:modelValue":b[5]||(b[5]=S=>ge.reference=S),class:"field",placeholder:"Cert / registration / policy no."},null,512),[[me,ge.reference]])]),a("label",z0,[b[21]||(b[21]=a("span",{class:"eyebrow mb-1 block"},"Jurisdiction",-1)),ie(a("input",{"onUpdate:modelValue":b[6]||(b[6]=S=>ge.jurisdiction=S),class:"field",placeholder:"DK / EASA / FAA"},null,512),[[me,ge.jurisdiction]])]),a("label",$0,[b[22]||(b[22]=a("span",{class:"eyebrow mb-1 block"},"Access tier",-1)),ie(a("select",{"onUpdate:modelValue":b[7]||(b[7]=S=>ge.accessTier=S),class:"field"},[(p(),m(le,null,Ie(h,S=>a("option",{key:S.value,value:S.value},w(S.label),9,I0)),64))],512),[[Ot,ge.accessTier]])]),a("label",N0,[b[23]||(b[23]=a("span",{class:"eyebrow mb-1 block"},"Issue date",-1)),ie(a("input",{"onUpdate:modelValue":b[8]||(b[8]=S=>ge.issueDate=S),type:"date",class:"field"},null,512),[[me,ge.issueDate]])]),a("label",D0,[b[24]||(b[24]=a("span",{class:"eyebrow mb-1 block"},"Expiry date",-1)),ie(a("input",{"onUpdate:modelValue":b[9]||(b[9]=S=>ge.expiryDate=S),type:"date",class:"field"},null,512),[[me,ge.expiryDate]])]),a("label",F0,[b[25]||(b[25]=a("span",{class:"eyebrow mb-1 block"},"Status",-1)),ie(a("select",{"onUpdate:modelValue":b[10]||(b[10]=S=>ge.status=S),class:"field"},[(p(),m(le,null,Ie(f,S=>a("option",{key:S.value,value:S.value},w(S.label),9,R0)),64))],512),[[Ot,ge.status]])])]),a("label",B0,[b[26]||(b[26]=a("span",{class:"eyebrow mb-1 block"},"Notes",-1)),ie(a("textarea",{"onUpdate:modelValue":b[11]||(b[11]=S=>ge.notes=S),rows:"2",class:"field",placeholder:"Conditions, renewal contacts, anything worth recording"},null,512),[[me,ge.notes]])]),$.value?(p(),m("div",Z0,[...b[28]||(b[28]=[z(" Editing updates metadata only. To replace the file, close this and use ",-1),a("b",{class:"text-ink-secondary"},"New version",-1),z(" on the document — the old version is kept for audit. ",-1)])])):(p(),m("div",U0,[a("span",V0,"File "+w(Ye.value?"(new version)":"(optional)"),1),a("input",{ref_key:"fileInput",ref:ft,type:"file",class:"field",onChange:zt},null,544),b[27]||(b[27]=a("p",{class:"mt-1 text-xs text-ink-muted"}," Stored in PocketBase for now (object storage later). Max 50 MB. ",-1))])),a("div",H0,[a("button",{class:"btn-accent",disabled:Ue.value,onClick:At},w(Ue.value?"Saving…":$.value?"Save changes":Ye.value?"Upload new version":"Add document"),9,j0),a("button",{class:"btn-ghost",onClick:De},"Cancel"),pe.value?(p(),m("span",W0,w(pe.value),1)):I("",!0)])])):I("",!0),a("div",K0,[C.value?(p(),m("div",G0,"Loading…")):K.value.length?(p(),m("div",X0,[a("table",Q0,[a("thead",null,[a("tr",ew,[(p(),m(le,null,Ie(["Title","Type","Owner","Expiry","Ver",""],S=>a("th",{key:S,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w(S),1)),64))])]),a("tbody",null,[(p(!0),m(le,null,Ie(K.value,S=>{var W,V;return p(),m(le,{key:S.id},[a("tr",{class:Ce(["border-b border-line last:border-0",$.value===S.id?"bg-accent-soft":""])},[a("td",tw,[a("div",nw,w(S.title),1),S.reference?(p(),m("div",iw,w(S.reference),1)):I("",!0)]),a("td",ow,w(Ee(l)[S.docType]||S.docType||"—"),1),a("td",sw,w(fe(S)),1),a("td",aw,[a("button",{class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",i[F(S).tone]]),onClick:G=>X(S.id)},[F(S).icon?(p(),nt(J,{key:0,name:F(S).icon,size:12},null,8,["name"])):I("",!0),z(" "+w(F(S).label),1)],10,rw),S.expiryDate?(p(),m("div",lw,w(S.expiryDate),1)):I("",!0)]),a("td",uw,"v"+w(S.version||1),1),a("td",cw,[Ut.value===S.id?(p(),m(le,{key:0},[b[29]||(b[29]=a("span",{class:"mr-2 text-xs text-ink-muted"},"Delete?",-1)),a("button",{class:"btn-ghost mr-1",onClick:b[12]||(b[12]=G=>Ut.value="")},"Cancel"),a("button",{class:"rounded bg-danger px-3 py-1.5 text-sm font-semibold text-white transition hover:brightness-110",onClick:G=>Pt(S)},"Delete",8,dw)],64)):(p(),m(le,{key:1},[S.hasFile?(p(),m("button",{key:0,class:"btn-ghost mr-1 inline-flex items-center gap-1",title:"Preview",onClick:G=>he(S)},[A(J,{name:"eye",size:13})],8,fw)):I("",!0),S.hasFile?(p(),m("a",{key:1,href:Ee(zr)(S.id),class:"btn-ghost mr-1 inline-flex items-center gap-1",title:"Download file"},[A(J,{name:"download",size:13})],8,hw)):I("",!0),a("button",{class:"btn-ghost mr-1 inline-flex items-center gap-1",title:"Upload new version",onClick:G=>Le(S)},[A(J,{name:"upload",size:13})],8,pw),a("button",{class:"btn-ghost mr-1 inline-flex items-center gap-1",onClick:G=>st(S)},[A(J,{name:"sliders",size:13}),b[30]||(b[30]=z(" Edit",-1))],8,mw),a("button",{class:"btn-ghost inline-flex items-center gap-1",onClick:G=>Ut.value=S.id},[A(J,{name:"trash",size:13})],8,gw)],64))])],2),te.value===S.id?(p(),m("tr",vw,[a("td",_w,[a("div",bw,[a("span",yw,[b[31]||(b[31]=z("Status: ",-1)),a("b",xw,w(S.status||"—"),1)]),a("span",ww,[b[32]||(b[32]=z("Access: ",-1)),a("b",kw,w(S.accessTier||"—"),1)]),S.jurisdiction?(p(),m("span",Sw,[b[33]||(b[33]=z("Jurisdiction: ",-1)),a("b",Tw,w(S.jurisdiction),1)])):I("",!0),S.issueDate?(p(),m("span",Pw,[b[34]||(b[34]=z("Issued: ",-1)),a("b",Cw,w(S.issueDate),1)])):I("",!0),S.expiryDate?(p(),m("span",Lw,[b[35]||(b[35]=z("Expires: ",-1)),a("b",Aw,w(S.expiryDate),1)])):I("",!0),a("span",Mw,[b[36]||(b[36]=z("File: ",-1)),a("b",Ew,w(S.hasFile?S.fileName:"none"),1)])]),(((W=S.expiry)==null?void 0:W.flags)||[]).length?(p(),m("ul",Ow,[(p(!0),m(le,null,Ie(S.expiry.flags,(G,re)=>(p(),m("li",{key:re,class:Ce(["flex items-start gap-2 text-xs",S.expiry.state==="expired"?"text-danger-fg":S.expiry.state==="expiring_soon"?"text-amber-fg":"text-ink-secondary"])},[A(J,{name:"alertTriangle",size:13,class:"mt-px shrink-0"}),z(" "+w(G),1)],2))),128))])):((V=S.expiry)==null?void 0:V.state)==="valid"?(p(),m("div",zw,"In force — no action needed.")):I("",!0),S.notes?(p(),m("div",$w,[b[37]||(b[37]=a("span",{class:"text-ink-muted"},"Notes:",-1)),z(" "+w(S.notes),1)])):I("",!0)])])):I("",!0)],64)}),128))])])])):(p(),m("div",q0,[A(J,{name:"fileText",size:26,class:"text-ink-muted"}),a("div",Y0,w(H.value==="all"?"No documents on file yet":"Nothing in this view"),1),a("div",J0,w(H.value==="all"?"Add certificates, registrations, insurance and authorisations to track their expiry.":"Try a different filter."),1)]))]),(p(),nt(cf,{to:"body"},[Oe.value?(p(),m("div",{key:0,class:"fixed inset-0 z-50 grid place-items-center p-4",style:{background:"color-mix(in srgb, black 60%, transparent)"},onClick:hl(Q,["self"])},[a("div",Iw,[a("div",Nw,[a("div",Dw,[a("div",Fw,w(Oe.value.title),1),a("div",Rw,w(Oe.value.fileName),1)]),a("div",Bw,[a("a",{href:Ze.value,target:"_blank",rel:"noopener",class:"btn-ghost inline-flex items-center gap-1.5",title:"Open in new tab"},[A(J,{name:"globe",size:14}),b[38]||(b[38]=z(" New tab ",-1))],8,Uw),a("a",{href:Ee(zr)(Oe.value.id),class:"btn-ghost inline-flex items-center gap-1.5",title:"Download"},[A(J,{name:"download",size:14}),b[39]||(b[39]=z(" Download ",-1))],8,Vw),a("button",{class:"btn-icon",title:"Close",onClick:Q},[A(J,{name:"x",size:16})])])]),a("div",Zw,[Te.value==="image"?(p(),m("img",{key:0,src:Ze.value,alt:Oe.value.title,class:"mx-auto block max-w-full"},null,8,Hw)):Te.value==="frame"?(p(),m("iframe",{key:1,src:Ze.value,class:"h-[74vh] w-full border-0 bg-white",title:Oe.value.title},null,8,jw)):(p(),m("div",Ww,[A(J,{name:"fileText",size:28,class:"text-ink-muted"}),b[41]||(b[41]=a("div",{class:"mt-3 text-sm font-medium text-ink-secondary"},"Preview isn't available for this file type",-1)),a("div",Kw,w(Oe.value.fileName),1),a("a",{href:Ee(zr)(Oe.value.id),class:"btn-accent mt-4 inline-flex items-center gap-2"},[A(J,{name:"download",size:15}),b[40]||(b[40]=z(" Download instead ",-1))],8,Gw)]))])])])):I("",!0)]))]))}},Yw={class:"grid h-full grid-cols-[248px_1fr] max-[900px]:grid-cols-1"},Jw={class:"flex flex-col border-r border-line bg-surface-1 px-4 py-5 max-[900px]:hidden"},Xw={class:"flex items-center gap-2.5 px-2 pb-5"},Qw={class:"flex flex-col gap-0.5"},e2=["onClick"],t2={class:"mt-auto flex flex-col gap-2.5"},n2={class:"rounded-lg bg-surface-2 p-3"},i2={class:"flex items-center gap-2"},o2={class:"text-xs font-semibold text-ink"},s2={class:"mt-1.5 block font-mono text-[10.5px] text-ink-muted"},a2={class:"flex items-center gap-2.5 px-2 py-1"},r2={class:"grid h-8 w-8 place-items-center rounded-full bg-[var(--navy-800)] text-xs font-bold text-white"},l2={class:"min-w-0 flex-1"},u2={class:"truncate text-[13px] font-semibold text-ink"},c2={class:"flex items-center gap-1.5 text-[11px] text-ink-muted"},d2=["title"],f2={class:"overflow-y-auto"},h2={class:"sticky top-0 z-10 flex items-center gap-4 border-b border-line px-7 py-3.5",style:{background:"color-mix(in srgb, var(--bg-app) 82%, transparent)","backdrop-filter":"blur(10px)"}},p2={class:"mt-0.5 text-[22px] font-bold tracking-tightest text-ink"},m2={class:"ml-auto flex items-center gap-3"},g2={class:"flex h-10 w-60 items-center gap-2 rounded border border-line-strong bg-surface-1 px-3 max-[1100px]:hidden"},v2={key:0,class:"mx-auto flex max-w-[1240px] flex-col gap-5 p-7"},_2={class:"grid grid-cols-4 gap-4 max-[1100px]:grid-cols-2 max-[560px]:grid-cols-1"},b2={class:"flex items-center justify-between"},y2={class:"eyebrow"},x2={class:"mt-2.5 text-[34px] font-bold leading-none tracking-tightest text-ink"},w2={class:"grid grid-cols-[1.6fr_1fr] gap-5 max-[1100px]:grid-cols-1"},k2={class:"panel p-5"},S2={class:"mb-3.5 flex items-center justify-between"},T2={class:"flex items-center gap-2"},P2={class:"relative z-[1200]"},C2={class:"panel absolute right-0 z-[1200] mt-1.5 w-72 p-3.5 shadow-lg"},L2={class:"flex items-center justify-between gap-3"},A2={class:"mb-1.5 flex items-center justify-between"},M2={class:"font-mono text-[11px] text-ink-muted"},E2=["value"],O2={key:0,class:"mt-1.5 text-[11px] text-ink-muted"},z2={key:0,class:"mt-2.5 text-xs text-ink-muted"},$2={key:1,class:"mt-2.5 text-xs text-ink-muted"},I2={key:2,class:"mt-2.5 text-xs text-ink-muted"},N2={class:"flex flex-col gap-5"},D2={class:"panel p-5"},F2={class:"mb-3.5 flex items-center justify-between"},R2={class:"flex items-center gap-3"},B2={class:"text-5xl leading-none"},U2={class:"min-w-0"},V2={class:"flex items-baseline gap-1"},Z2={class:"text-[34px] font-bold leading-none tracking-tightest text-ink"},H2={class:"text-lg font-semibold text-ink-secondary"},j2={class:"mt-1 truncate text-sm capitalize text-ink-secondary"},W2={class:"mt-1.5 truncate text-xs text-ink-muted"},K2={class:"mt-4 grid grid-cols-2 gap-2.5"},G2={class:"rounded-lg bg-surface-2 px-3 py-2"},q2={class:"mt-0.5 font-mono text-sm text-ink"},Y2={class:"rounded-lg bg-surface-2 px-3 py-2"},J2={class:"mt-0.5 font-mono text-sm text-ink"},X2={class:"rounded-lg bg-surface-2 px-3 py-2"},Q2={class:"mt-0.5 font-mono text-sm text-ink"},ek={key:0},tk={class:"rounded-lg bg-surface-2 px-3 py-2"},nk={class:"mt-0.5 font-mono text-sm text-ink"},ik={key:0},ok={key:0,class:"mt-3 text-[11px] text-ink-muted"},sk={key:1,class:"grid place-items-center py-8 text-center"},ak={class:"mt-0.5 text-xs text-ink-muted"},rk={key:2,class:"grid place-items-center py-8 text-center text-sm text-ink-muted"},lk={class:"panel p-5"},uk={class:"mb-3.5 flex items-center justify-between"},ck={class:"grid place-items-center py-10 text-center"},dk={class:"panel overflow-hidden p-0"},fk={class:"flex items-center justify-between px-5 py-4"},hk={class:"flex gap-2"},pk={key:0,class:"px-5 py-12 text-center text-sm text-ink-muted"},mk={key:1,class:"overflow-x-auto"},gk={class:"w-full border-collapse text-sm"},vk={class:"text-left"},_k=["onClick"],bk={class:"px-5 py-3 font-mono font-bold text-ink"},yk={class:"px-5 py-3 text-ink-secondary"},xk={class:"px-5 py-3"},wk={class:"px-5 py-3 font-mono text-ink-secondary"},kk={class:"px-5 py-3"},Sk={key:0,class:"flex items-center gap-2"},Tk={class:"h-1.5 w-12 overflow-hidden rounded bg-surface-2"},Pk={class:"font-mono text-xs text-ink-secondary"},Ck={key:1,class:"font-mono text-xs text-ink-muted"},Lk={class:"px-5 py-3 font-mono text-ink-secondary"},Ak={class:"px-5 py-3 text-right"},Mk=["onClick"],Ek={key:1,class:"p-7"},Ok={class:"mb-4 flex flex-wrap items-center gap-3"},zk={class:"font-mono text-mode font-bold text-ink"},$k={key:0,class:"rounded-full bg-danger-soft px-2.5 py-0.5 font-mono text-[10px] font-bold uppercase tracking-caps text-danger-fg"},Ik={key:1,class:"ml-auto flex flex-wrap gap-1.5"},Nk=["onClick"],Dk={key:0,class:"panel grid place-items-center p-16 text-center"},Fk={class:"pill"},Rk={class:"pill"},Bk={class:"pill"},Uk={class:"mt-1 text-sm font-semibold text-ink"},Vk={class:"pill"},Zk={class:"mt-1 font-mono text-sm font-bold tabular text-ink"},Hk={class:"grid grid-cols-2 gap-4 max-[820px]:grid-cols-1"},jk={class:"panel p-4"},Wk={class:"flex items-center gap-4"},Kk={class:"h-9 flex-1 overflow-hidden rounded border border-line bg-surface-2"},Gk={class:"readout"},qk={class:"panel p-4"},Yk={class:"readout"},Jk={class:"panel p-4"},Xk={class:"space-y-1.5 text-sm"},Qk={class:"flex justify-between"},eS={class:"text-ink"},tS={class:"flex justify-between"},nS={class:"text-ink"},iS={class:"flex justify-between"},oS={class:"font-mono tabular text-ink"},sS={class:"flex justify-between"},aS={class:"font-mono tabular text-ink"},rS={class:"panel p-4"},lS={class:"space-y-1.5 text-sm"},uS={class:"flex justify-between"},cS={class:"font-mono tabular text-ink"},dS={class:"flex justify-between"},fS={class:"font-mono tabular text-ink"},hS={class:"flex justify-between"},pS={class:"font-mono tabular text-ink"},mS={class:"panel col-span-2 p-4 max-[820px]:col-span-1"},gS={class:"panel p-4"},vS={class:"flex flex-wrap gap-2"},_S={class:"mt-2 min-h-[16px] text-xs text-ink-muted"},bS={class:"panel p-4"},yS={class:"h-[180px] overflow-y-auto font-mono text-xs"},xS={class:"text-ink-muted"},wS={class:"font-semibold text-accent"},kS={class:"break-all text-ink"},SS={key:6,class:"p-7"},TS={class:"panel grid place-items-center p-16 text-center"},PS={class:"mt-3 text-sm font-medium text-ink-secondary"},CS={key:0,class:"mt-1 text-xs text-ink-muted"},LS={key:1,class:"mt-1 text-xs text-ink-muted"},AS="34,-25,72,45",MS=600*1e3,ES={__name:"Dashboard",props:{email:{type:String,default:""},role:{type:String,default:"user"},organization:{type:String,default:""},organizationName:{type:String,default:""}},emits:["logout"],setup(t,{emit:i}){const s=t,l=i,u=gt({}),f=gt({}),h=Y(null),_=Y(!1),y=gt([]),C=Y(""),T=Y([]),M=gt({unavailable:!1,detail:"",loaded:!1,plan:"",recommendedInterval:30}),H=ce(()=>T.value.filter(U=>!U.onGround).length),j=Y(!1);let K=null;const F=[{value:"auto",label:"Auto"},{value:5,label:"5s"},{value:10,label:"10s"},{value:15,label:"15s"},{value:30,label:"30s"},{value:60,label:"60s"},{value:120,label:"120s"}],te=ce(()=>{if(be.airTrafficInterval==="auto")return M.recommendedInterval||30;const U=Number(be.airTrafficInterval);return Number.isFinite(U)&&U>0?U:30}),X=Y(null);let fe=!1;function Se(){if(!(fe||X.value!==null)){if(typeof navigator>"u"||!navigator.geolocation){X.value=!1;return}fe=!0,navigator.geolocation.getCurrentPosition(U=>{X.value={lat:U.coords.latitude,lng:U.coords.longitude},fe=!1},()=>{X.value=!1,fe=!1},{timeout:8e3,maximumAge:6e5})}}function de(U,E,Me){const tt=U&&U.telemetry||{},It=tt[E],St=tt[Me];return typeof It=="number"&&typeof St=="number"&&(It||St)?{lat:It,lng:St}:null}function Fe(){const U=de(W.value,"latitude","longitude")||S.value.map(tt=>de(u[tt],"latitude","longitude")).find(Boolean);if(U){const tt=$r(U.lat,U.lng);if(tt)return tt.bbox}const E=de(W.value,"phoneLatitude","phoneLongitude")||S.value.map(tt=>de(u[tt],"phoneLatitude","phoneLongitude")).find(Boolean);if(E){const tt=$r(E.lat,E.lng);if(tt)return tt.bbox}if(Se(),X.value){const tt=$r(X.value.lat,X.value.lng);if(tt)return tt.bbox}const Me=xm(be.region);return Me||AS}async function Oe(){if(!be.showAirTraffic)return;const U=be.autoBbox?Fe():void 0,{states:E,unavailable:Me,detail:tt,plan:It,recommendedInterval:St}=await mp(U);T.value=E,M.unavailable=Me,M.detail=tt,M.plan=It||"",St&&(M.recommendedInterval=St),M.loaded=!0}function Te(){K&&clearInterval(K),K=setInterval(()=>{Le.value==="Overview"&&be.showAirTraffic&&Oe()},te.value*1e3)}function Ze(){Oe(),Te()}function he(){K&&clearInterval(K),K=null}const Q=gt({loaded:!1,unavailable:!1,detail:"",data:null,units:"metric",source:"",updatedAt:0});let B=null;function O(){const U=de(W.value,"latitude","longitude")||S.value.map(Me=>de(u[Me],"latitude","longitude")).find(Boolean);if(U)return{lat:U.lat,lng:U.lng,source:"drone"};const E=de(W.value,"phoneLatitude","phoneLongitude")||S.value.map(Me=>de(u[Me],"phoneLatitude","phoneLongitude")).find(Boolean);return E?{lat:E.lat,lng:E.lng,source:"phone"}:X.value?{lat:X.value.lat,lng:X.value.lng,source:"browser"}:null}async function N(){const U=O(),E=await Sp(U?U.lat:void 0,U?U.lng:void 0);if(Q.loaded=!0,Q.units=E.units||"metric",E.unavailable||!E.weather){Q.unavailable=!0,Q.detail=E.detail||"Weather is unavailable.",Q.data=null;return}Q.unavailable=!1,Q.detail="",Q.data=E.weather,Q.source=U?U.source:"default",Q.updatedAt=Date.now()}function $(){B&&clearInterval(B),B=setInterval(()=>{Le.value==="Overview"&&N()},MS)}function Ye(){N(),$()}function we(){B&&clearInterval(B),B=null}const ge=ce(()=>Q.units==="imperial"?"°F":Q.units==="standard"?"K":"°C"),ue=ce(()=>Q.units==="imperial"?"mph":"m/s");function ft(U){const E=(U||"").slice(0,2);return E==="01"?(U||"").endsWith("n")?"🌙":"☀️":{"02":"🌤️","03":"⛅","04":"☁️","09":"🌧️",10:"🌦️",11:"⛈️",13:"❄️",50:"🌫️"}[E]||"🌡️"}const pe=ce(()=>ft(Q.data&&Q.data.icon)),Ue=ce(()=>{const U=Q.data;return U?U.country?`${U.location}, ${U.country}`:U.location||"Unknown location":""}),Ve=ce(()=>Q.source==="drone"?"at aircraft location":Q.source==="phone"||Q.source==="browser"?"at your location":"default location"),wt=ce(()=>Q.updatedAt?new Date(Q.updatedAt).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit"}):"");function st(U,E=0){return typeof U=="number"?U.toFixed(E):"—"}const Le=Y("Overview"),De=[["grid","Overview"],["radio","Live flights"],["route","Routes"],["calendar","Schedule"],["drone","Drones"],["book","Logbook"],["fileText","Documents"],["server","Drives"],["settings","Settings"]],zt=ce(()=>(De.find(([,U])=>U===Le.value)||["grid"])[0]),At=Y(""),Ut=Y(""),Pt=Y("");let kt=null,x=null,b=!1;const S=ce(()=>Object.keys(u).sort((U,E)=>(u[E].online?1:0)-(u[U].online?1:0)||U.localeCompare(E))),W=ce(()=>h.value?u[h.value]:null),V=ce(()=>W.value&&W.value.telemetry||{}),G=ce(()=>!!(W.value&&W.value.online)),re=ce(()=>{const U=V.value;return typeof U.latitude=="number"&&typeof U.longitude=="number"&&(U.latitude||U.longitude)?{lat:U.latitude,lng:U.longitude}:null}),ae=ce(()=>h.value&&f[h.value]||[]),oe=ce(()=>{const U=V.value;return typeof U.velocityX=="number"&&typeof U.velocityY=="number"?Math.hypot(U.velocityX,U.velocityY):null});function ee(U){return U.online?U.connected?["In flight","success"]:["Standby","accent"]:["Offline","neutral"]}function ve(U){const E=U&&U.telemetry||{};return typeof E.velocityX=="number"&&typeof E.velocityY=="number"?Math.hypot(E.velocityX,E.velocityY):null}const se=ce(()=>S.value.map(U=>{const E=u[U],Me=E.telemetry||{},[tt,It]=ee(E);return{id:U,mission:E.model||(E.connected?"Drone linked":E.online?"App online":"No signal"),status:tt,tone:It,alt:typeof Me.altitude=="number"?Me.altitude.toFixed(0)+" m":"—",battery:typeof Me.batteryPercent=="number"?Me.batteryPercent:null,speed:ve(E)}})),ke=ce(()=>S.value.map(U=>u[U].connected?u[U].serial:"").filter(Boolean)),Pe=ce(()=>S.value.filter(U=>u[U].online).length),Re=ce(()=>S.value.filter(U=>u[U].online&&u[U].connected).length),Ke=ce(()=>S.value.filter(U=>!u[U].online).length),Ge=ce(()=>{const U=S.value.map(E=>{var Me;return(Me=u[E].telemetry)==null?void 0:Me.batteryPercent}).filter(E=>typeof E=="number");return U.length?Math.round(U.reduce((E,Me)=>E+Me,0)/U.length):null}),pt=ce(()=>[{label:"Active flights",value:String(Re.value),delta:`${Pe.value} online`,tone:"success",icon:"radio"},{label:"Avg battery",value:Ge.value==null?"—":Ge.value+"%",delta:Ge.value==null?"no telemetry":Ge.value<40?"low — watch":"nominal",tone:Ge.value!=null&&Ge.value<40?"danger":"neutral",icon:"battery"},{label:"Fleet size",value:String(S.value.length),delta:`${Re.value} in flight`,tone:"neutral",icon:"grid"},{label:"Offline",value:String(Ke.value),delta:Ke.value?"needs attention":"all reachable",tone:Ke.value?"warning":"success",icon:"signal"}]),ht={success:"bg-success-soft text-success-fg",warning:"bg-amber-soft text-amber-fg",danger:"bg-danger-soft text-danger-fg",accent:"bg-accent-soft text-accent-soft-fg",neutral:"bg-surface-2 text-ink-secondary"},Vt={success:"text-success-fg",danger:"text-danger-fg",warning:"text-amber-fg",neutral:"text-ink-muted",accent:"text-accent-soft-fg"},Jt=ce(()=>{var Me,tt,It;const E=(s.email||"PV").split("@")[0].split(/[.\-_ ]+/).filter(Boolean);return((((Me=E[0])==null?void 0:Me[0])||"P")+(((tt=E[1])==null?void 0:tt[0])||((It=E[0])==null?void 0:It[1])||"V")).toUpperCase()}),Zt={superadmin:"Superadmin",admin:"Admin",user:"Operator"},pn=ce(()=>Zt[s.role]||"Operator"),Ct=ce(()=>s.organizationName||(s.role==="superadmin"?"All organizations":"No organization")),$t=new Set,kn=Y(null);async function zi(U){var It,St,Et;if(!U.connected||!U.serial)return;const E={serial:U.serial,model:U.model||"",firmware:U.firmware||"",controllerFirmware:U.controllerFirmware||""},Me=[E.serial,E.model,E.firmware,E.controllerFirmware].join("|");if($t.has(Me))return;$t.add(Me);const tt=await Pp(E);if(!tt.ok){(tt.status===0||tt.status>=500)&&$t.delete(Me);return}((It=tt.body)!=null&&It.created||(St=tt.body)!=null&&St.updated)&&((Et=kn.value)==null||Et.reload())}function at(U){if(U)for(const E of $t)E.startsWith(`${U}|`)&&$t.delete(E)}function Sn(U){var Me;u[U.deviceId]=U,zi(U);const E=U.telemetry||{};typeof E.latitude=="number"&&typeof E.longitude=="number"&&(E.latitude||E.longitude)&&(f[U.deviceId]||(f[U.deviceId]=[]),f[U.deviceId].push([E.latitude,E.longitude]),f[U.deviceId].length>1e3&&f[U.deviceId].shift()),(!h.value||U.online&&!((Me=u[h.value])!=null&&Me.online))&&(h.value=U.deviceId)}function $i(U){delete u[U],delete f[U],h.value===U&&(h.value=S.value[0]||null)}function rt(U){y.unshift({t:ku(Date.now()),tag:U.type||"?",text:JSON.stringify(hi(U))}),y.length>200&&y.pop()}function hi(U){const E={...U};return delete E.type,E}function pi(){const U=location.protocol==="https:"?"wss":"ws";kt=new WebSocket(`${U}://${location.host}/bff/ws`),kt.onopen=()=>_.value=!0,kt.onclose=()=>{_.value=!1,b||(x=setTimeout(pi,1500))},kt.onerror=()=>kt&&kt.close(),kt.onmessage=E=>{let Me;try{Me=JSON.parse(E.data)}catch{return}Me.type==="snapshot"?(Me.devices||[]).forEach(Sn):Me.type==="update"&&Me.device?(Sn(Me.device),Me.event&&Me.device.deviceId===h.value&&rt(Me.event)):Me.type==="removed"&&Me.deviceId&&$i(Me.deviceId)}}async function Ii(){if(!h.value)return Pt.value="No device selected.";if(!At.value.trim())return Pt.value="Enter a command name.";let U;if(Ut.value.trim())try{U=JSON.parse(Ut.value)}catch{return Pt.value="Payload is not valid JSON."}const{ok:E,body:Me}=await Rp(h.value,At.value.trim(),U);Pt.value=E?`Sent "${At.value.trim()}".`:`Error: ${Me.error||"failed"}`}function Gt(U,E,Me=""){return typeof U=="number"?U.toFixed(E)+Me:"—"}function jn(U){h.value=U,Le.value="Live flights"}return Bt(Le,U=>{U==="Overview"&&(Oe(),N())}),Bt(()=>be.showAirTraffic,U=>{U?Oe():T.value=[]}),Bt(te,Te),fi(async()=>{(await np()).forEach(Sn),pi(),Ze(),Ye()}),us(()=>{b=!0,x&&clearTimeout(x),kt&&kt.close(),he(),we()}),(U,E)=>{var Me,tt,It,St,Et;return p(),m("div",Yw,[a("aside",Jw,[a("div",Xw,[A(nd,{size:26}),E[11]||(E[11]=a("span",{class:"text-[19px] tracking-tightest"},[a("span",{class:"font-medium text-ink-secondary"},"Pilot"),a("span",{class:"font-bold text-ink"},"Vault")],-1))]),a("nav",Qw,[(p(),m(le,null,Ie(De,([Z,_t])=>a("button",{key:_t,class:Ce(["flex items-center gap-3 rounded px-3 py-2.5 text-left text-sm transition",Le.value===_t?"bg-accent-soft font-semibold text-accent-soft-fg":"font-medium text-ink-secondary hover:bg-surface-2"]),onClick:bt=>Le.value=_t},[A(J,{name:Z,size:18,stroke:Le.value===_t?2.2:1.8},null,8,["name","stroke"]),z(" "+w(_t),1)],10,e2)),64))]),a("div",t2,[a("div",n2,[a("div",i2,[a("span",{class:Ce(["h-2 w-2 rounded-full",_.value?"bg-ready":"bg-caution"])},null,2),a("span",o2,w(_.value?"Link healthy":"Reconnecting…"),1)]),a("span",s2,"API gateway · "+w(_.value?"streaming":"retrying"),1)]),a("div",a2,[a("div",r2,w(Jt.value),1),a("div",l2,[a("div",u2,w(t.email||"Operator"),1),a("div",c2,[A(J,{name:"grid",size:11,class:"shrink-0"}),a("span",{class:"truncate",title:`${pn.value} · ${Ct.value}`},w(pn.value)+" · "+w(Ct.value),9,d2)])]),a("button",{class:"text-ink-muted transition hover:text-ink",title:"Log out","aria-label":"Log out",onClick:E[0]||(E[0]=Z=>l("logout"))},[A(J,{name:"logout",size:16})])])])]),a("main",f2,[a("header",h2,[a("div",null,[E[12]||(E[12]=a("div",{class:"eyebrow"},"Live operations",-1)),a("h1",p2,w(Le.value),1)]),a("div",m2,[a("div",g2,[A(J,{name:"search",size:16,class:"text-ink-muted"}),ie(a("input",{"onUpdate:modelValue":E[1]||(E[1]=Z=>C.value=Z),placeholder:"Search drones, routes…",class:"w-full border-none bg-transparent text-sm text-ink outline-none placeholder:text-ink-muted"},null,512),[[me,C.value]])]),a("button",{class:"btn-accent flex items-center gap-2",onClick:E[2]||(E[2]=Z=>Le.value="Live flights")},[A(J,{name:"radio",size:16}),E[13]||(E[13]=z(" Live flights ",-1))])])]),Le.value==="Overview"?(p(),m("div",v2,[a("div",_2,[(p(!0),m(le,null,Ie(pt.value,Z=>(p(),m("div",{key:Z.label,class:"panel p-5"},[a("div",b2,[a("span",y2,w(Z.label),1),A(J,{name:Z.icon,size:16,class:"text-ink-muted"},null,8,["name"])]),a("div",x2,w(Z.value),1),a("span",{class:Ce(["mt-2 block font-mono text-[11px]",Vt[Z.tone]])},w(Z.delta),3)]))),128))]),a("div",w2,[a("div",k2,[a("div",S2,[E[18]||(E[18]=a("div",null,[a("div",{class:"eyebrow"},"Airspace"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Live map")],-1)),a("div",T2,[Ee(be).showAirTraffic&&H.value?(p(),m("span",{key:0,class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",ht.accent]),title:"Live aircraft from OpenSky Network"},[A(J,{name:"radio",size:12}),z(w(H.value)+" aircraft ",1)],2)):I("",!0),Re.value?(p(),m("span",{key:1,class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",ht.success])},[E[14]||(E[14]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Re.value)+" drones ",1)],2)):I("",!0),a("div",P2,[a("button",{type:"button",class:Ce(["grid h-7 w-7 place-items-center rounded-md text-ink-muted transition hover:bg-surface-2 hover:text-ink",j.value?"bg-surface-2 text-ink":""]),title:"Map settings","aria-label":"Map settings",onClick:E[3]||(E[3]=Z=>j.value=!j.value)},[A(J,{name:"settings",size:16})],2),j.value?(p(),m(le,{key:0},[a("div",{class:"fixed inset-0 z-[1190]",onClick:E[4]||(E[4]=Z=>j.value=!1)}),a("div",C2,[E[17]||(E[17]=a("div",{class:"eyebrow mb-2.5"},"Map settings",-1)),a("label",L2,[E[15]||(E[15]=a("span",{class:"text-sm text-ink-secondary"},"Show live air traffic",-1)),A(nn,{modelValue:Ee(be).showAirTraffic,"onUpdate:modelValue":E[5]||(E[5]=Z=>Ee(be).showAirTraffic=Z)},null,8,["modelValue"])]),a("div",{class:Ce(["mt-3.5",Ee(be).showAirTraffic?"":"pointer-events-none opacity-40"])},[a("div",A2,[E[16]||(E[16]=a("span",{class:"text-sm text-ink-secondary"},"Refresh interval",-1)),a("span",M2,"every "+w(te.value)+"s",1)]),ie(a("select",{"onUpdate:modelValue":E[6]||(E[6]=Z=>Ee(be).airTrafficInterval=Z),class:"field"},[(p(),m(le,null,Ie(F,Z=>a("option",{key:Z.value,value:Z.value},w(Z.label)+w(Z.value==="auto"?` (plan: ${M.recommendedInterval}s)`:""),9,E2)),64))],512),[[Ot,Ee(be).airTrafficInterval]]),M.plan?(p(),m("p",O2," OpenSky plan: "+w(M.plan),1)):I("",!0)],2)])],64)):I("",!0)])])]),A(Cu,{position:re.value,trail:ae.value,aircraft:Ee(be).showAirTraffic?T.value:[]},null,8,["position","trail","aircraft"]),Ee(be).showAirTraffic?M.loaded&&M.unavailable?(p(),m("p",$2,w(M.detail||"Live air traffic is unavailable."),1)):(p(),m("p",I2," Live air traffic from OpenSky Network · updates every "+w(te.value)+"s ",1)):(p(),m("p",z2," Live air traffic hidden · enable it in Map settings "))]),a("div",N2,[a("div",D2,[a("div",F2,[E[19]||(E[19]=a("div",null,[a("div",{class:"eyebrow"},"Conditions"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Weather")],-1)),A(J,{name:"sun",size:16,class:"text-ink-muted"})]),Q.data?(p(),m(le,{key:0},[a("div",R2,[a("div",B2,w(pe.value),1),a("div",U2,[a("div",V2,[a("span",Z2,w(st(Q.data.temp)),1),a("span",H2,w(ge.value),1)]),a("div",j2,w(Q.data.description||"—"),1)])]),a("div",W2,w(Ue.value)+" · "+w(Ve.value),1),a("div",K2,[a("div",G2,[E[20]||(E[20]=a("div",{class:"eyebrow"},"Feels like",-1)),a("div",q2,w(st(Q.data.feelsLike))+w(ge.value),1)]),a("div",Y2,[E[21]||(E[21]=a("div",{class:"eyebrow"},"Wind",-1)),a("div",J2,w(st(Q.data.windSpeed,1))+" "+w(ue.value),1)]),a("div",X2,[E[22]||(E[22]=a("div",{class:"eyebrow"},"Humidity",-1)),a("div",Q2,[z(w(st(Q.data.humidity)),1),Q.data.humidity!=null?(p(),m("span",ek,"%")):I("",!0)])]),a("div",tk,[E[23]||(E[23]=a("div",{class:"eyebrow"},"Cloud cover",-1)),a("div",nk,[z(w(st(Q.data.clouds)),1),Q.data.clouds!=null?(p(),m("span",ik,"%")):I("",!0)])])]),wt.value?(p(),m("div",ok,"Updated "+w(wt.value)+" · OpenWeather",1)):I("",!0)],64)):Q.loaded&&Q.unavailable?(p(),m("div",sk,[A(J,{name:"sun",size:24,class:"text-ink-muted"}),E[24]||(E[24]=a("div",{class:"mt-2 text-sm font-medium text-ink-secondary"},"Weather unavailable",-1)),a("div",ak,w(Q.detail),1)])):(p(),m("div",rk," Loading weather… "))]),a("div",lk,[a("div",uk,[E[25]||(E[25]=a("div",null,[a("div",{class:"eyebrow"},"Today"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Schedule")],-1)),A(J,{name:"clock",size:16,class:"text-ink-muted"})]),a("div",ck,[A(J,{name:"calendar",size:24,class:"text-ink-muted"}),E[26]||(E[26]=a("div",{class:"mt-2 text-sm font-medium text-ink-secondary"},"No missions scheduled",-1)),E[27]||(E[27]=a("div",{class:"mt-0.5 text-xs text-ink-muted"},"Scheduling is not wired to a backend yet.",-1))])])])]),a("div",dk,[a("div",fk,[E[30]||(E[30]=a("div",null,[a("div",{class:"eyebrow"},"Fleet"),a("div",{class:"mt-0.5 text-base font-semibold text-ink"},"Aircraft status")],-1)),a("div",hk,[a("span",{class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",ht.success])},[E[28]||(E[28]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Re.value)+" in flight ",1)],2),Ke.value?(p(),m("span",{key:0,class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",ht.warning])},[E[29]||(E[29]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Ke.value)+" offline ",1)],2)):I("",!0)])]),se.value.length?(p(),m("div",mk,[a("table",gk,[a("thead",null,[a("tr",vk,[(p(),m(le,null,Ie(["Aircraft","Mission","Status","Alt","Battery","Speed",""],Z=>a("th",{key:Z,class:"border-y border-line bg-surface-2 px-5 py-2.5 font-mono text-[10.5px] font-normal uppercase tracking-caps text-ink-muted"},w(Z),1)),64))])]),a("tbody",null,[(p(!0),m(le,null,Ie(se.value,(Z,_t)=>(p(),m("tr",{key:Z.id,class:Ce(["cursor-pointer transition hover:bg-surface-2",_tjn(Z.id)},[a("td",bk,w(Z.id),1),a("td",yk,w(Z.mission),1),a("td",xk,[a("span",{class:Ce(["inline-flex items-center gap-1.5 rounded-full px-2.5 py-1 text-[11px] font-semibold",ht[Z.tone]])},[E[31]||(E[31]=a("span",{class:"h-1.5 w-1.5 rounded-full bg-current"},null,-1)),z(w(Z.status),1)],2)]),a("td",wk,w(Z.alt),1),a("td",kk,[Z.battery!=null?(p(),m("div",Sk,[a("div",Tk,[a("div",{class:Ce(["h-full",Z.battery<40?"bg-caution":"bg-ready"]),style:Eo({width:Z.battery+"%"})},null,6)]),a("span",Pk,w(Z.battery)+"%",1)])):(p(),m("span",Ck,"—"))]),a("td",Lk,[z(w(Z.speed==null?"—":Z.speed.toFixed(1))+" ",1),E[32]||(E[32]=a("span",{class:"text-ink-muted"},"m/s",-1))]),a("td",Ak,[a("button",{class:"btn-ghost inline-flex items-center gap-1.5 whitespace-nowrap",onClick:hl(bt=>jn(Z.id),["stop"])},[A(J,{name:"play",size:14}),E[33]||(E[33]=z(" Track ",-1))],8,Mk)])],10,_k))),128))])])])):(p(),m("div",pk," No aircraft connected yet. Devices appear here as they come online. "))])])):Le.value==="Live flights"?(p(),m("div",Ek,[a("div",Ok,[a("span",zk,w(h.value||"No device selected"),1),W.value&&!G.value?(p(),m("span",$k,"Offline")):I("",!0),S.value.length?(p(),m("div",Ik,[(p(!0),m(le,null,Ie(S.value,Z=>(p(),m("button",{key:Z,class:Ce(["flex items-center gap-2 rounded border px-3 py-1.5 font-mono text-xs font-bold transition",Z===h.value?"border-accent bg-accent-soft text-accent-soft-fg":"border-line bg-surface-1 text-ink-secondary hover:border-line-strong"]),onClick:_t=>h.value=Z},[a("span",{class:Ce(["h-2 w-2 rounded-full",u[Z].online?"bg-ready":"bg-ink-muted"])},null,2),z(" "+w(Z),1)],10,Nk))),128))])):I("",!0)]),S.value.length?(p(),m(le,{key:1},[a("div",{class:Ce(["mb-4 grid gap-3",!G.value&&W.value?"opacity-60":""]),style:{"grid-template-columns":"repeat(auto-fit, minmax(150px, 1fr))"}},[a("div",Fk,[E[36]||(E[36]=a("div",{class:"eyebrow"},"Registration",-1)),a("div",{class:Ce(["mt-1 text-sm font-semibold",G.value?((Me=W.value)==null?void 0:Me.registration)==="success"?"text-success-fg":"text-danger-fg":"text-ink"])},w(G.value&&((tt=W.value)!=null&&tt.registration)?W.value.registration:"—"),3)]),a("div",Rk,[E[37]||(E[37]=a("div",{class:"eyebrow"},"Drone link",-1)),a("div",{class:Ce(["mt-1 text-sm font-semibold",G.value?(It=W.value)!=null&&It.connected?"text-success-fg":"text-danger-fg":"text-ink"])},w(W.value?G.value?W.value.connected?"connected":"no drone":"app offline":"—"),3)]),a("div",Bk,[E[38]||(E[38]=a("div",{class:"eyebrow"},"Model",-1)),a("div",Uk,w(((St=W.value)==null?void 0:St.model)||"—"),1)]),a("div",Vk,[E[39]||(E[39]=a("div",{class:"eyebrow"},"Last update",-1)),a("div",Zk,w((Et=W.value)!=null&&Et.lastSeenMs?Ee(ku)(W.value.lastSeenMs):"—"),1)])],2),a("div",Hk,[a("div",jk,[E[41]||(E[41]=a("div",{class:"mb-3 eyebrow"},"Battery",-1)),a("div",Wk,[a("div",Kk,[a("div",{class:Ce(["h-full transition-all",typeof V.value.batteryPercent=="number"?V.value.batteryPercent<20?"bg-warning":V.value.batteryPercent<40?"bg-caution":"bg-ready":""]),style:Eo({width:(typeof V.value.batteryPercent=="number"?V.value.batteryPercent:0)+"%"})},null,6)]),a("div",Gk,[z(w(typeof V.value.batteryPercent=="number"?V.value.batteryPercent:"—"),1),E[40]||(E[40]=a("span",{class:"text-sm text-ink-secondary"},"%",-1))])])]),a("div",qk,[E[43]||(E[43]=a("div",{class:"mb-3 eyebrow"},"Altitude",-1)),a("div",Yk,[z(w(Gt(V.value.altitude,1)),1),E[42]||(E[42]=a("span",{class:"text-sm text-ink-secondary"}," m",-1))])]),a("div",Jk,[E[48]||(E[48]=a("div",{class:"mb-3 eyebrow"},"Flight",-1)),a("div",Xk,[a("div",Qk,[E[44]||(E[44]=a("span",{class:"text-ink-secondary"},"Mode",-1)),a("b",eS,w(V.value.flightMode||"—"),1)]),a("div",tS,[E[45]||(E[45]=a("span",{class:"text-ink-secondary"},"Flying",-1)),a("b",nS,w(V.value.isFlying==null?"—":V.value.isFlying?"yes":"no"),1)]),a("div",iS,[E[46]||(E[46]=a("span",{class:"text-ink-secondary"},"GPS sats",-1)),a("b",oS,w(V.value.satelliteCount==null?"—":V.value.satelliteCount),1)]),a("div",sS,[E[47]||(E[47]=a("span",{class:"text-ink-secondary"},"Speed (H)",-1)),a("b",aS,w(oe.value==null?"—":Gt(oe.value,2," m/s")),1)])])]),a("div",rS,[E[52]||(E[52]=a("div",{class:"mb-3 eyebrow"},"Position",-1)),a("div",lS,[a("div",uS,[E[49]||(E[49]=a("span",{class:"text-ink-secondary"},"Latitude",-1)),a("b",cS,w(Gt(V.value.latitude,6)),1)]),a("div",dS,[E[50]||(E[50]=a("span",{class:"text-ink-secondary"},"Longitude",-1)),a("b",fS,w(Gt(V.value.longitude,6)),1)]),a("div",hS,[E[51]||(E[51]=a("span",{class:"text-ink-secondary"},"Vert. speed",-1)),a("b",pS,w(Gt(typeof V.value.velocityZ=="number"?-V.value.velocityZ:void 0,2," m/s")),1)])])]),a("div",mS,[E[53]||(E[53]=a("div",{class:"mb-3 eyebrow"},"Track",-1)),A(Cu,{position:re.value,trail:ae.value},null,8,["position","trail"])]),a("div",gS,[E[54]||(E[54]=a("div",{class:"mb-3 eyebrow"},"Send command",-1)),a("div",vS,[ie(a("input",{"onUpdate:modelValue":E[7]||(E[7]=Z=>At.value=Z),class:"field flex-1",placeholder:"command (e.g. startConnection)"},null,512),[[me,At.value]]),ie(a("input",{"onUpdate:modelValue":E[8]||(E[8]=Z=>Ut.value=Z),class:"field flex-1",placeholder:"payload JSON (optional)"},null,512),[[me,Ut.value]]),a("button",{class:"btn-accent",onClick:Ii},"Send")]),a("div",_S,w(Pt.value),1)]),a("div",bS,[E[55]||(E[55]=a("div",{class:"mb-3 eyebrow"},"Event log",-1)),a("div",yS,[(p(!0),m(le,null,Ie(y,(Z,_t)=>(p(),m("div",{key:_t,class:"border-b border-line py-1"},[a("span",xS,w(Z.t),1),a("span",wS,w(Z.tag),1),a("span",kS,w(Z.text),1)]))),128))])])])],64)):(p(),m("div",Dk,[A(J,{name:"radio",size:28,class:"text-ink-muted"}),E[34]||(E[34]=a("div",{class:"mt-3 text-sm font-medium text-ink-secondary"},"No aircraft online",-1)),E[35]||(E[35]=a("div",{class:"mt-1 text-xs text-ink-muted"},"Live telemetry appears here once a drone connects.",-1))]))])):Le.value==="Logbook"?(p(),nt(gx,{key:2,email:t.email,role:t.role,organization:t.organization,"organization-name":t.organizationName},null,8,["email","role","organization","organization-name"])):Le.value==="Drones"?(p(),nt(c0,{key:3,ref_key:"dronesView",ref:kn,"connected-serials":ke.value,onDeleted:at},null,8,["connected-serials"])):Le.value==="Documents"?(p(),nt(qw,{key:4,email:t.email,role:t.role,organization:t.organization,"organization-name":t.organizationName},null,8,["email","role","organization","organization-name"])):Le.value==="Settings"?(p(),nt(ey,{key:5,email:t.email,role:t.role,organization:t.organization,"organization-name":t.organizationName,onLogout:E[9]||(E[9]=Z=>l("logout"))},null,8,["email","role","organization","organization-name"])):(p(),m("div",SS,[a("div",TS,[A(J,{name:zt.value,size:28,class:"text-ink-muted"},null,8,["name"]),a("div",PS,w(Le.value),1),Le.value==="Drives"?(p(),m("div",CS,[E[56]||(E[56]=z(" Browse and transfer files here once a drive is connected. Configure drives in ",-1)),a("button",{class:"font-semibold text-accent hover:underline",onClick:E[10]||(E[10]=Z=>Le.value="Settings")},"Settings → Integrations"),E[57]||(E[57]=z(". ",-1))])):(p(),m("div",LS,"This section is part of the console shell and has no backend yet."))])]))])])}}},OS={key:0,class:"h-full"},zS={key:1,class:"grid h-full place-items-center text-ink-muted text-sm"},$S={__name:"App",setup(t){const i=Y(!1),s=Y(null),l=Y("user"),u=Y(""),f=Y(""),h=Y("");function _(T){l.value=T&&T.role||"user",u.value=T&&T.organization||"",f.value=T&&T.organizationName||""}fi(async()=>{h.value=(await Qh()).apiBase||"";const T=await _u();T&&(s.value=T.email,_(T),await Tu()),i.value=!0});async function y(T){s.value=T,_(await _u()),await Tu()}async function C(){Hp(),await tp(),s.value=null,l.value="user",u.value="",f.value=""}return(T,M)=>i.value?(p(),m("div",OS,[s.value?(p(),nt(ES,{key:0,email:s.value,role:l.value,organization:u.value,"organization-name":f.value,onLogout:C},null,8,["email","role","organization","organization-name"])):(p(),nt(rm,{key:1,"default-api-base":h.value,onSignedIn:y},null,8,["default-api-base"]))])):(p(),m("div",zS,"Loading…"))}};qh($S).mount("#app"); diff --git a/Web App/server/dist/index.html b/Web App/server/dist/index.html index dd61daf..7704325 100644 --- a/Web App/server/dist/index.html +++ b/Web App/server/dist/index.html @@ -35,7 +35,7 @@ })() PilotVault — Control Panel - + diff --git a/Web App/server/main.go b/Web App/server/main.go index d4f028a..0afea6e 100644 --- a/Web App/server/main.go +++ b/Web App/server/main.go @@ -80,6 +80,7 @@ func main() { // Logbook — drones, flights, and the compliance CSV export (scoping upstream) mux.HandleFunc("GET /bff/drones", app.requireAuth(app.handleListDrones)) mux.HandleFunc("POST /bff/drones", app.requireAuth(app.handleCreateDrone)) + mux.HandleFunc("POST /bff/drones/auto", app.requireAuth(app.handleAutoDrone)) mux.HandleFunc("PATCH /bff/drones/{id}", app.requireAuth(app.handleUpdateDrone)) mux.HandleFunc("DELETE /bff/drones/{id}", app.requireAuth(app.handleDeleteDrone)) mux.HandleFunc("GET /bff/flights", app.requireAuth(app.handleListFlights)) diff --git a/Web App/web/src/api.js b/Web App/web/src/api.js index e4bb194..31ae00e 100644 --- a/Web App/web/src/api.js +++ b/Web App/web/src/api.js @@ -346,6 +346,22 @@ export async function createDrone(drone) { return { ok: r.ok, status: r.status, body: await r.json().catch(() => ({})) } } +// Upsert the drone a connected device just reported, keyed by serial. Safe to +// call on every connection event: the server refreshes an existing entry rather +// than duplicating it, and answers { created, updated }. +export async function autoAddDrone(identity) { + try { + const r = await fetch('/bff/drones/auto', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(identity), + }) + return { ok: r.ok, status: r.status, body: await r.json().catch(() => ({})) } + } catch { + return { ok: false, status: 0, body: {} } + } +} + export async function updateDrone(id, drone) { const r = await fetch(`/bff/drones/${encodeURIComponent(id)}`, { method: 'PATCH', diff --git a/Web App/web/src/components/Dashboard.vue b/Web App/web/src/components/Dashboard.vue index a0e8e59..87c854e 100644 --- a/Web App/web/src/components/Dashboard.vue +++ b/Web App/web/src/components/Dashboard.vue @@ -5,9 +5,10 @@ import BrandMark from './BrandMark.vue' import Icon from './Icon.vue' import Settings from './Settings.vue' import Logbook from './Logbook.vue' +import Drones from './Drones.vue' import Documents from './Documents.vue' import Toggle from './settings/Toggle.vue' -import { getDevices, sendCommand, getOpenSkyStates, getOpenWeatherCurrent } from '../api.js' +import { getDevices, sendCommand, getOpenSkyStates, getOpenWeatherCurrent, autoAddDrone } from '../api.js' import { formatTime, prefs } from '../prefs.js' import { countryForPoint, bboxForCountry } from '../countries.js' @@ -238,6 +239,7 @@ const NAV = [ ['radio', 'Live flights'], ['route', 'Routes'], ['calendar', 'Schedule'], + ['drone', 'Drones'], ['book', 'Logbook'], ['fileText', 'Documents'], ['server', 'Drives'], @@ -309,6 +311,11 @@ const fleet = computed(() => }), ) +// Serials of aircraft connected right now — lets the Drones section flag which +// fleet entry is the drone in front of the pilot. +const connectedSerials = computed(() => + ids.value.map((id) => (devices[id].connected ? devices[id].serial : '')).filter(Boolean), +) const onlineCount = computed(() => ids.value.filter((id) => devices[id].online).length) const flyingCount = computed(() => ids.value.filter((id) => devices[id].online && devices[id].connected).length, @@ -381,10 +388,62 @@ const orgLabel = computed( () => props.organizationName || (props.role === 'superadmin' ? 'All organizations' : 'No organization'), ) +/* ---------- fleet auto-registration ---------- */ + +// Connecting a drone in the Fly App should be enough to get it into the pilot's +// fleet — nobody wants to retype a serial off an airframe. Every device update +// carrying a connected aircraft's serial is offered to the server, which upserts +// on serial (see POST /api/drones/auto). +// +// upsert() runs on every telemetry frame, so the identity tuple is remembered +// and only a *change* is sent: without that this would fire a request per frame. +// The tuple (not just the serial) is the key because serial and the two firmware +// versions resolve on their own schedules after connect — a later event filling +// firmware in has to reach the server too. +const sentIdentities = new Set() +const dronesView = ref(null) + +async function autoRegister(d) { + if (!d.connected || !d.serial) return + const identity = { + serial: d.serial, + model: d.model || '', + firmware: d.firmware || '', + controllerFirmware: d.controllerFirmware || '', + } + const key = [identity.serial, identity.model, identity.firmware, identity.controllerFirmware].join('|') + if (sentIdentities.has(key)) return + sentIdentities.add(key) + + const res = await autoAddDrone(identity) + if (!res.ok) { + // Only a *transient* failure earns a retry: forget the key so the next event + // tries again. A 4xx is the server's settled answer (409 = another org's + // airframe, 401 = session gone, 400 = it dislikes this payload) and will not + // change on its own — since upsert() runs on every telemetry frame, retrying + // one would mean a request per frame for as long as the drone stays connected. + const transient = res.status === 0 || res.status >= 500 + if (transient) sentIdentities.delete(key) + return + } + if (res.body?.created || res.body?.updated) dronesView.value?.reload() +} + +// A drone deleted from the fleet must be able to come back: without this, its +// identity tuple stays in sentIdentities and every later event short-circuits, +// so a drone deleted while connected would not reappear until a page reload. +function forgetIdentity(serial) { + if (!serial) return + for (const key of sentIdentities) { + if (key.startsWith(`${serial}|`)) sentIdentities.delete(key) + } +} + /* ---------- realtime plumbing ---------- */ function upsert(d) { devices[d.deviceId] = d + autoRegister(d) const t = d.telemetry || {} if (typeof t.latitude === 'number' && typeof t.longitude === 'number' && (t.latitude || t.longitude)) { if (!trails[d.deviceId]) trails[d.deviceId] = [] @@ -986,6 +1045,10 @@ onBeforeUnmount(() => { + + + diff --git a/Web App/web/src/components/Drones.vue b/Web App/web/src/components/Drones.vue new file mode 100644 index 0000000..0c20e49 --- /dev/null +++ b/Web App/web/src/components/Drones.vue @@ -0,0 +1,278 @@ + + + + + + + + Fleet + Drones you fly + + + + Add drone + + + + + + + + {{ s.label }} + + {{ s.value }} + + + + + {{ loadErr }} + + + + + + {{ editingId ? 'Edit drone' : 'New drone' }} + Aircraft registry + + + + + + Custom name + + Model + + Serial number + + + Drone firmware + + Controller firmware + + Registration (FAA/CAA) + + + Operator no. (EU) + + MTOM (grams) + + C-class + + {{ c || '— none —' }} + + + + + Model, serial and both firmware versions fill themselves in when the drone connects — anything + you type here is kept as-is. + + + + + + Auto-logs flights (onboard FDR) + + + + Toy drone (logbook-exempt) + + + + + + {{ saving ? 'Saving…' : editingId ? 'Save changes' : 'Add drone' }} + + Cancel + {{ msg }} + + + + + + Loading… + + + No drones yet + + Connect a drone in the Fly App and it lands here by itself — or add one by hand. + + + + + + + + {{ h }} + + + + + + + + {{ d.displayName }} + + connected + + + {{ d.model }} + no custom name yet + + {{ d.serial || '—' }} + {{ d.firmware || '—' }} + {{ d.controllerFirmware || '—' }} + {{ d.registration || '—' }} + + {{ d.cClass }} + — + toy + + + + Delete? + Cancel + Delete + + + Edit + + + + + + + + + + diff --git a/Web App/web/src/components/Logbook.vue b/Web App/web/src/components/Logbook.vue index 212ad60..d1e1ac8 100644 --- a/Web App/web/src/components/Logbook.vue +++ b/Web App/web/src/components/Logbook.vue @@ -1,10 +1,7 @@ @@ -229,16 +161,9 @@ const stats = computed(() => { - - - {{ t[1] }} - + + Logbook + Flights (BEK 1649 §5) { > Export CSV - + Log flight - - Add drone - - + {{ s.label }} { {{ loadErr }} - - - - - - - {{ editingFlightId ? 'Edit entry' : 'New entry' }} - Logbook flight (BEK 1649 §5) - - + + + + + {{ editingFlightId ? 'Edit entry' : 'New entry' }} + Logbook flight (BEK 1649 §5) + + - - - Date - - - - Start - - - - End - - - - - Drone - - — add a drone first — - {{ d.name }}{{ d.model ? ` · ${d.model}` : '' }} - - - - Max altitude (m AGL) - - - - Area / route - - - - - Remote pilot name - - - - Certificate ref - - - - Logging path - - {{ p.label }} - - - - - Category - - {{ c.label }} - - - - Purpose - - {{ p.label }} - - - - Authorisation ref - - - - - - FDR log URL (automatic path) - + + + Date + + + + Start + + + + End + - - Operational details (weather, airspace, incidents) + + Drone + + — add a drone first — + {{ d.displayName }} + + + + Max altitude (m AGL) + + + + Area / route + + + + + Remote pilot name + + + + Certificate ref + + + + Logging path + + {{ p.label }} + + + + + Category + + {{ c.label }} + + + + Purpose + + {{ p.label }} + + + + Authorisation ref + + + + + + FDR log URL (automatic path) + + + + + Operational details (weather, airspace, incidents) + + + Weather / wind + + Airspace / NOTAM ref + + Observer + + Incidents / anomalies + + Notes + + + + + + {{ savingFlight ? 'Saving…' : editingFlightId ? 'Save changes' : 'Log flight' }} - - Weather / wind - - Airspace / NOTAM ref - - Observer - - Incidents / anomalies - - Notes - - - - - - {{ savingFlight ? 'Saving…' : editingFlightId ? 'Save changes' : 'Log flight' }} - - Cancel - {{ flightMsg }} - + Cancel + {{ flightMsg }} + - - - Loading… - - - No flights logged yet - Log your first operation to start the 5-year retention record. - - - - - - - {{ h }} - - - - - - - - {{ (f.operationDate || '').slice(0, 10) }} - {{ f.startTime }} - - {{ f.droneName || '—' }} - {{ f.areaRoute || '—' }} - {{ f.maxAltitudeAgl ? f.maxAltitudeAgl + ' m' : '—' }} - {{ f.pilotName || '—' }} - - - - - {{ flightBadge(f).label }} - - - - - Delete? - Cancel - Delete - - - Edit - - - - - - - - Logging path: {{ f.compliance?.loggingPath || '—' }} - Category: {{ f.category || '—' }} - Retain until: {{ (f.retentionUntil || '').slice(0, 10) || '—' }} - Exempt: {{ f.compliance.exemptReason }} - - - - {{ rf }} - - - No compliance gaps detected. - - - - - - + + + Loading… + + + No flights logged yet + Log your first operation to start the 5-year retention record. - - - - - - - - {{ editingDroneId ? 'Edit drone' : 'New drone' }} - Aircraft registry - - - - - Name - - Model - - Serial - - Operator no. - - MTOM (grams) - - C-class - - {{ c || '— none —' }} - - - - - - Auto-logs flights (onboard FDR) - - - - Toy drone (logbook-exempt) - - - - - {{ savingDrone ? 'Saving…' : editingDroneId ? 'Save changes' : 'Add drone' }} - - Cancel - {{ droneMsg }} - - - - - Loading… - - - No drones registered - Register the airframes you fly to log flights against them. - - - - - - - {{ h }} - - - - - - {{ d.name }} - {{ d.model || '—' }} - {{ d.mtomGrams ? d.mtomGrams + ' g' : '—' }} - - {{ d.cClass }} - — - toy + + + + + + {{ h }} + + + + + + + + {{ (f.operationDate || '').slice(0, 10) }} + {{ f.startTime }} + {{ f.droneName || '—' }} + {{ f.areaRoute || '—' }} + {{ f.maxAltitudeAgl ? f.maxAltitudeAgl + ' m' : '—' }} + {{ f.pilotName || '—' }} - {{ d.autologsFlights ? 'yes' : 'no' }} + + + + {{ flightBadge(f).label }} + - + Delete? - Cancel - Delete + Cancel + Delete - Edit - + Edit + - - - + + + + Logging path: {{ f.compliance?.loggingPath || '—' }} + Category: {{ f.category || '—' }} + Retain until: {{ (f.retentionUntil || '').slice(0, 10) || '—' }} + Exempt: {{ f.compliance.exemptReason }} + + + + {{ rf }} + + + No compliance gaps detected. + + + + + - +
+ Model, serial and both firmware versions fill themselves in when the drone connects — anything + you type here is kept as-is. +