diff --git a/Controller/DeviceController.cs b/Controller/DeviceController.cs index f6153ad..30efb73 100644 --- a/Controller/DeviceController.cs +++ b/Controller/DeviceController.cs @@ -22,9 +22,7 @@ public async Task PostDeviceModel(DeviceModel deviceModel) string result; bool resultBool; - Console.WriteLine($"ClientToken: {deviceModel.ClientToken}"); - Console.WriteLine($"DeviceToken: {deviceModel.DeviceToken}"); - Console.WriteLine($"GotifyUrl: {deviceModel.GotifyUrl}"); + AppLog.Info("Device", $"Register request client={AppLog.MaskSecret(deviceModel.ClientToken)} device={AppLog.MaskSecret(deviceModel.DeviceToken)} gotify={AppLog.SafeUrl(deviceModel.GotifyUrl)}"); if ( deviceModel.ClientToken.Length == 0 || deviceModel.ClientToken == "string" || @@ -66,7 +64,7 @@ public async Task DeleteDevcice(string token) string result; bool resultBool; - Console.WriteLine($"Delete Token: {token}"); + AppLog.Info("Device", $"Delete request client={AppLog.MaskSecret(token)}"); if (token.Length == 0 || token == "string") { result = "Error deleting device!"; @@ -145,9 +143,8 @@ public async Task Test(string deviceToken) var ntfy = new SecNtfy(Environments.secNtfyUrl); if (deviceToken.Length > 0) _ = await ntfy.SendNotification(deviceToken, "Test", "Test Notification"); - if (Environments.isLogEnabled) - Console.WriteLine(ntfy.encTitle); + AppLog.Debug("Device", $"Test notification encryptedTitle={ntfy.encTitle}"); return Ok(); } -} \ No newline at end of file +} diff --git a/Controller/UsersController.cs b/Controller/UsersController.cs new file mode 100644 index 0000000..fb625e0 --- /dev/null +++ b/Controller/UsersController.cs @@ -0,0 +1,58 @@ +using System.Reflection; +using iGotify_Notification_Assist.Models; +using iGotify_Notification_Assist.Services; +using Microsoft.AspNetCore.Mvc; + +namespace iGotify_Notification_Assist.Controller; + +[ApiController] +[Route("[controller]")] +public class UsersController : ControllerBase +{ + [HttpGet] + [ServiceFilter(typeof(AuthenticationFilter))] + public async Task GetAllUsers() + { + List userList = await DatabaseService.GetUsers(); + return Ok(new { Message = "Users successfully retrieved!", Data = userList }); + } + + [HttpPatch] + [ServiceFilter(typeof(AuthenticationFilter))] + public async Task PatchUser([FromBody] Users? user) + { + if (user == null) + return Ok(new { Message = "User Body is empty!" }); + + bool isUpdated = await DatabaseService.UpdateUser(user); + + if (isUpdated) + { + var gss = GotifySocketService.getInstance(); + GotifySocketService.KillAllWsThread(); + gss.Start(); + } + + return Ok(new { Message = isUpdated ? "User successfully updated!" : "User didn't updated!" }); + } + + [HttpDelete("{userId}")] + [ServiceFilter(typeof(AuthenticationFilter))] + public async Task DeleteUser(int userId) + { + bool isDeleted = false; + List userList = await DatabaseService.GetUsers(); + Users? usr = userList.Find(x => x.Uid == userId); + if (usr != null) + isDeleted = await usr.Delete(); + + if (isDeleted) + { + var gss = GotifySocketService.getInstance(); + GotifySocketService.KillAllWsThread(); + gss.Start(); + } + + return Ok(new { Message = isDeleted ? "User successfully deleted!" : "User didn't deleted!" }); + } +} \ No newline at end of file diff --git a/Models/DeviceModel.cs b/Models/DeviceModel.cs index b08be2d..6c22f08 100644 --- a/Models/DeviceModel.cs +++ b/Models/DeviceModel.cs @@ -40,26 +40,43 @@ public async Task Delete() /// public async Task SendNotifications(GotifyMessage iGotifyMessage, WebsocketClient webSock) { + await SendNotifications(iGotifyMessage, webSock.Url.ToString(), webSock.Name ?? ""); + } + + /// + /// Send the passed notification from a native websocket context + /// + public async Task SendNotifications(GotifyMessage iGotifyMessage, string wsUrl, string clientToken) + { + if (string.IsNullOrWhiteSpace(clientToken)) + { + AppLog.Warn("Notification", "Cannot send notification because client token is empty."); + return; + } + var title = iGotifyMessage.title; var msg = iGotifyMessage.message; - var protocol = webSock.Url.ToString().Contains("ws://") ? "http://" : "https://"; - var gotifyServerUrl = webSock.Url.ToString().Replace("ws://", "").Replace("wss://", "").Replace("\"", "") + var protocol = wsUrl.Contains("ws://") ? "http://" : "https://"; + var gotifyServerUrl = wsUrl.Replace("ws://", "").Replace("wss://", "").Replace("\"", "") .Split("/stream"); var imageUrl = gotifyServerUrl.Length > 0 - ? $"{protocol}{gotifyServerUrl[0]}$$${iGotifyMessage.appid}$$${webSock.Name}" + ? $"{protocol}{gotifyServerUrl[0]}$$${iGotifyMessage.appid}$$${clientToken}" : ""; - var usr = await DatabaseService.GetUser(webSock.Name!); + var usr = await DatabaseService.GetUser(clientToken); if (usr.Uid == 0) { - Console.WriteLine("THERE'S SOMETHING WRONG HERE? NO USER FOUND"); + AppLog.Warn("Notification", $"No user found for client={AppLog.MaskSecret(clientToken)}"); } var ntfy = new SecNtfy(Environments.secNtfyUrl); var response = await ntfy.SendNotification(usr.DeviceToken, title, msg, iGotifyMessage.priority == 10, imageUrl, iGotifyMessage.priority); - Console.WriteLine(response != null ? JsonConvert.SerializeObject(response) : "Notification response is null"); + AppLog.Debug("Notification", + response != null + ? $"SecNtfy response client={AppLog.MaskSecret(clientToken)} response={JsonConvert.SerializeObject(response)}" + : $"SecNtfy response client={AppLog.MaskSecret(clientToken)} response="); } -} \ No newline at end of file +} diff --git a/Models/Users.cs b/Models/Users.cs index 7c23e20..c0556bf 100644 --- a/Models/Users.cs +++ b/Models/Users.cs @@ -14,4 +14,9 @@ public async Task Update() { return await DatabaseService.UpdateUser(this); } + + public async Task Delete() + { + return await DatabaseService.DeleteUser(ClientToken); + } } \ No newline at end of file diff --git a/Program.cs b/Program.cs index cb26fe0..5fb079f 100644 --- a/Program.cs +++ b/Program.cs @@ -20,11 +20,25 @@ options.SerializerOptions.PropertyNamingPolicy = null; // Preserve exact casing }); + +if (Environments.enableUserUi) +{ + builder.Services.AddSingleton(); + builder.Services.AddScoped(); +} + builder.Services.AddSingleton(builder.Configuration); builder.Services.AddOpenApi(); builder.Services.AddTransient(); var app = builder.Build(); + +if (Environments.enableUserUi) +{ + app.UseDefaultFiles(); // sucht automatisch index.html + app.UseStaticFiles(); // aktiviert wwwroot +} + app.UsePathBase("/api"); app.UseCors(x => x @@ -51,8 +65,9 @@ }); } -//app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); - app.MapControllers(); +if (Environments.enableUserUi) + app.MapFallbackToFile("index.html"); + app.Run(); \ No newline at end of file diff --git a/README.md b/README.md index f61b67c..3566429 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Download Link to iGotify down below *These three environment variables above aren't required when the Gotify & iGotify Instances available over a domain!* -* `ENABLE_CONSOLE_LOG` = you can disable unnecessary console logs (default: true) +* `ENABLE_CONSOLE_LOG` = enable application console logs (default: true) * `ENABLE_SCALAR_UI` = you can now disable the Endpoint page (default: true) *please write the boolean variables (true, false) in single quotes 'true'* diff --git a/Services/AppLog.cs b/Services/AppLog.cs new file mode 100644 index 0000000..56d846a --- /dev/null +++ b/Services/AppLog.cs @@ -0,0 +1,61 @@ +namespace iGotify_Notification_Assist.Services; + +internal static class AppLog +{ + public static void Info(string area, string message) + { + Write("INFO", area, message); + } + + public static void Warn(string area, string message) + { + Write("WARN", area, message); + } + + public static void Error(string area, string message, Exception? exception = null) + { + Write("ERROR", area, exception == null ? message : $"{message} ({exception.GetType().Name}: {exception.Message})"); + } + + public static void Debug(string area, string message) + { + Write("DEBUG", area, message); + } + + public static string MaskSecret(string? value) + { + if (string.IsNullOrWhiteSpace(value)) + return ""; + + var trimmed = value.Trim(); + if (trimmed.Length <= 8) + return "****"; + + return $"{trimmed[..4]}...{trimmed[^4..]}"; + } + + public static string SafeUrl(string? value) + { + if (string.IsNullOrWhiteSpace(value)) + return ""; + + var normalized = value.Trim().Trim('"'); + if (!normalized.StartsWith("http://", StringComparison.OrdinalIgnoreCase) && + !normalized.StartsWith("https://", StringComparison.OrdinalIgnoreCase)) + { + normalized = $"https://{normalized}"; + } + + return Uri.TryCreate(normalized, UriKind.Absolute, out var uri) + ? uri.GetLeftPart(UriPartial.Authority) + : ""; + } + + private static void Write(string level, string area, string message) + { + if (!Environments.isLogEnabled) + return; + + Console.WriteLine($"[{level}] [{area}] {message}"); + } +} diff --git a/Services/AuthenticationFilter.cs b/Services/AuthenticationFilter.cs new file mode 100644 index 0000000..17f9f66 --- /dev/null +++ b/Services/AuthenticationFilter.cs @@ -0,0 +1,38 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.Filters; + +namespace iGotify_Notification_Assist.Services; + +public class AuthenticationFilter : IAsyncActionFilter, IAsyncAuthorizationFilter +{ + private string? token = ""; + + public async Task OnActionExecutionAsync(ActionExecutingContext context, ActionExecutionDelegate next) + { + //Console.WriteLine(token); + await next(); + } + + public void OnActionExecuted(ActionExecutedContext context) + { + // our code after action executes + } + + public async Task OnAuthorizationAsync(AuthorizationFilterContext context) + { + var auth = context.HttpContext.Request.Headers.Authorization; + + if (auth.ToString().Length > 0 && auth.ToString().Contains("Bearer")) + { + var cleared = auth.ToString().Replace("Bearer ", ""); + token = cleared; + var result = PasswordGenerator.IsValid(token); + if (!result) + context.Result = new UnauthorizedResult(); + } + else + { + context.Result = new UnauthorizedResult(); + } + } +} \ No newline at end of file diff --git a/Services/DatabaseService.cs b/Services/DatabaseService.cs index 0cb59c7..b713e69 100644 --- a/Services/DatabaseService.cs +++ b/Services/DatabaseService.cs @@ -233,23 +233,30 @@ public static async Task GetUser(string clientToken) public static async Task> GetUsers() { var userList = new List(); - var path = $"{GetLocationsOf.App}/data"; - //Create Database File - var pathToDb = Path.Combine(path, "users.db"); - var isDbFileExists = File.Exists(pathToDb); + try + { + var path = $"{GetLocationsOf.App}/data"; + //Create Database File + var pathToDb = Path.Combine(path, "users.db"); + var isDbFileExists = File.Exists(pathToDb); - if (!isDbFileExists) return userList; - await using var dbConnection = new SqliteConnection(GetConnectionString.UsersDb(pathToDb)); - dbConnection.Open(); + if (!isDbFileExists) return userList; + await using var dbConnection = new SqliteConnection(GetConnectionString.UsersDb(pathToDb)); + dbConnection.Open(); - // Create a sample table - const string selectAllQuery = "SELECT * FROM Users u;"; - userList = (await dbConnection.QueryAsync(selectAllQuery)).ToList(); + // Create a sample table + const string selectAllQuery = "SELECT * FROM Users u;"; + userList = (await dbConnection.QueryAsync(selectAllQuery)).ToList(); - // Perform other database operations as needed + // Perform other database operations as needed - // Close the connection when done - dbConnection.Close(); + // Close the connection when done + dbConnection.Close(); + } + catch (Exception e) + { + AppLog.Error("APP", e.Message); + } return userList; } diff --git a/Services/Environments.cs b/Services/Environments.cs index 9faf596..1b52892 100644 --- a/Services/Environments.cs +++ b/Services/Environments.cs @@ -1,42 +1,37 @@ namespace iGotify_Notification_Assist.Services; -public class Environments +public static class Environments { - public static bool isLogEnabled - { - get - { - var value = Environment.GetEnvironmentVariable("ENABLE_CONSOLE_LOG") ?? "true"; - return value == "true"; - } - } + private const string EnableConsoleLog = "ENABLE_CONSOLE_LOG"; + private const string EnableScalarUi = "ENABLE_SCALAR_UI"; + private const string EnableUserUi = "ENABLE_USER_UI"; + private const string GotifyUrls = "GOTIFY_URLS"; + private const string GotifyClientTokens = "GOTIFY_CLIENT_TOKENS"; + private const string SecNtfyTokens = "SECNTFY_TOKENS"; + private const string SecNtfyServerUrl = "SECNTFY_SERVER_URL"; - public static bool enableScalarUi - { - get - { - var value = Environment.GetEnvironmentVariable("ENABLE_SCALAR_UI") ?? "true"; - return value == "true"; - } - } + public static bool isLogEnabled => GetBool(EnableConsoleLog, defaultValue: true); - public static string gotifyUrls - { - get { return Environment.GetEnvironmentVariable("GOTIFY_URLS") ?? ""; } - } + public static bool enableScalarUi => GetBool(EnableScalarUi, defaultValue: true); - public static string gotifyClientTokens - { - get { return Environment.GetEnvironmentVariable("GOTIFY_CLIENT_TOKENS") ?? ""; } - } + public static bool enableUserUi => GetBool(EnableUserUi, defaultValue: true); + + public static string gotifyUrls => GetString(GotifyUrls); + + public static string gotifyClientTokens => GetString(GotifyClientTokens); + + public static string secNtfyTokens => GetString(SecNtfyTokens); + + public static string secNtfyUrl => GetString(SecNtfyServerUrl, "https://api.secntfy.app"); - public static string secNtfyTokens + private static bool GetBool(string name, bool defaultValue) { - get { return Environment.GetEnvironmentVariable("SECNTFY_TOKENS") ?? ""; } + var value = Environment.GetEnvironmentVariable(name); + return string.IsNullOrWhiteSpace(value) ? defaultValue : bool.TryParse(value, out var parsed) && parsed; } - public static string secNtfyUrl + private static string GetString(string name, string defaultValue = "") { - get { return Environment.GetEnvironmentVariable("SECNTFY_SERVER_URL") ?? "https://api.secntfy.app"; } + return Environment.GetEnvironmentVariable(name)?.Trim() ?? defaultValue; } -} \ No newline at end of file +} diff --git a/Services/GotifySocketService.cs b/Services/GotifySocketService.cs index 1e0d112..bd3aa44 100644 --- a/Services/GotifySocketService.cs +++ b/Services/GotifySocketService.cs @@ -1,5 +1,6 @@ using System.Net.Sockets; using System.Net.WebSockets; +using System.Collections.Concurrent; using iGotify_Notification_Assist.Models; using SecNtfyNuGet; @@ -13,6 +14,14 @@ public class GotifySocketService // Data structure for tracking threads and WebSocket connections private static List? _threadSockets; + private static readonly ConcurrentDictionary _nativeSockets = new(); + + private sealed class NativeSocketRuntime + { + public required CancellationTokenSource Cts { get; init; } + public Task RunnerTask { get; set; } = Task.CompletedTask; + public required WebSockClientNative Client { get; init; } + } public static GotifySocketService getInstance() { @@ -33,7 +42,7 @@ public void Init() DatabaseService.UpdateDatebase(path, "Users", "Headers", "text not null default ''"); } - Console.WriteLine($"Database is created: {isDbFileExists}"); + AppLog.Info("Startup", $"Database initialized success={isDbFileExists}"); isInit = isDbFileExists; } @@ -62,6 +71,8 @@ public static void KillWsThread(string clientToken) _threadSockets.Remove(threadSocket); } } + + StopNativeSocket(clientToken); } public static void KillAllWsThread() @@ -84,7 +95,7 @@ public static void KillAllWsThread() } catch (Exception e) { - Console.WriteLine(e); + AppLog.Error("WebSocket", "Failed to stop legacy websocket thread", e); } finally { @@ -94,6 +105,11 @@ public static void KillAllWsThread() _threadSockets.Clear(); } + + foreach (var clientToken in _nativeSockets.Keys) + { + StopNativeSocket(clientToken); + } } public static void StartWsThread(string gotifyServerUrl, string clientToken) @@ -112,7 +128,7 @@ public static void StartWsThread(string gotifyServerUrl, string clientToken) threadSocket.thread.Start(); } else - Console.WriteLine($"Client: {clientToken} already connected! Skipping..."); + AppLog.Info("WebSocket", $"Legacy client already running client={AppLog.MaskSecret(clientToken)}"); } public static void StartWsThread(Users user) @@ -131,7 +147,39 @@ public static void StartWsThread(Users user) threadSocket.thread.Start(); } else - Console.WriteLine($"Client: {user.ClientToken} already connected! Skipping..."); + AppLog.Info("WebSocket", $"Legacy client already running client={AppLog.MaskSecret(user.ClientToken)}"); + } + + public static void StartNativeWsTask(Users user) + { + if (string.IsNullOrWhiteSpace(user.ClientToken)) + return; + + var cts = new CancellationTokenSource(); + var nativeClient = new WebSockClientNative(); + var runtime = new NativeSocketRuntime + { + Cts = cts, + Client = nativeClient + }; + + if (!_nativeSockets.TryAdd(user.ClientToken, runtime)) + { + AppLog.Info("WebSocket", $"Client already running client={AppLog.MaskSecret(user.ClientToken)}"); + cts.Cancel(); + cts.Dispose(); + return; + } + + AppLog.Info("WebSocket", + $"Starting client={AppLog.MaskSecret(user.ClientToken)} gotify={AppLog.SafeUrl(user.GotifyUrl)}"); + + runtime.RunnerTask = Task.Run(() => nativeClient.RunAsync(user, cts.Token), cts.Token); + runtime.RunnerTask.ContinueWith(_ => + { + if (_nativeSockets.TryRemove(user.ClientToken, out var completedRuntime)) + completedRuntime.Cts.Dispose(); + }, TaskScheduler.Default); } private static void StartWsConn(ThreadSocket threadSocket, Users user) @@ -148,7 +196,7 @@ private static void StartWsConn(ThreadSocket threadSocket, Users user) wsUrl = $"{socket}://{gotifyServerUrl}/stream?token={user.ClientToken}"; // Starting WebSocket instance - Console.WriteLine("Client connecting..."); + AppLog.Info("WebSocket", $"Legacy connecting client={AppLog.MaskSecret(user.ClientToken)}"); var wsc = new WebSockClient { URL = wsUrl, user = user }; wsc.Start(user.ClientToken); // Connect the client @@ -158,14 +206,13 @@ private static void StartWsConn(ThreadSocket threadSocket, Users user) } catch (WebSocketException wse) { - Console.WriteLine( - $"Unable to Connect to WS or WSS connection aborted with clientToken: {user.ClientToken}"); - Console.WriteLine(wse.StackTrace); + AppLog.Error("WebSocket", $"Legacy connection failed client={AppLog.MaskSecret(user.ClientToken)}", + wse); //currentProcess.Kill(true); } } - Console.WriteLine($"Client disconnected: {user.ClientToken}"); + AppLog.Info("WebSocket", $"Legacy stopped client={AppLog.MaskSecret(user.ClientToken)}"); } private static void StartWsConn(ThreadSocket threadSocket, string gotifyServerUrl, string clientToken) @@ -182,7 +229,7 @@ private static void StartWsConn(ThreadSocket threadSocket, string gotifyServerUr wsUrl = $"{socket}://{gotifyServerUrl}/stream?token={clientToken}"; // Starting WebSocket instance - Console.WriteLine("Client connecting..."); + AppLog.Info("WebSocket", $"Legacy connecting client={AppLog.MaskSecret(clientToken)}"); var wsc = new WebSockClient { URL = wsUrl }; wsc.Start(clientToken); // Connect the client @@ -195,13 +242,12 @@ private static void StartWsConn(ThreadSocket threadSocket, string gotifyServerUr } catch (WebSocketException wse) { - Console.WriteLine($"Unable to Connect to WS or WSS connection aborted with clientToken: {clientToken}"); - Console.WriteLine(wse.StackTrace); + AppLog.Error("WebSocket", $"Legacy connection failed client={AppLog.MaskSecret(clientToken)}", wse); //currentProcess.Kill(true); } } - Console.WriteLine($"Client disconnected: {clientToken}"); + AppLog.Info("WebSocket", $"Legacy stopped client={AppLog.MaskSecret(clientToken)}"); } /// @@ -247,82 +293,69 @@ public async void Start() } catch (Exception e) { - Console.WriteLine($"Error: {e.Message}"); - Console.WriteLine("Something went wrong when inserting you're connection!"); - Console.WriteLine("Please check you're environment lists!"); + AppLog.Error("Startup", "Failed to import connection settings from environment variables", e); + AppLog.Warn("Startup", "Check GOTIFY_URLS, GOTIFY_CLIENT_TOKENS and SECNTFY_TOKENS."); } } else { var statusServerList = gotifyUrlList.Count == 0 ? "empty" : "filled"; - Console.WriteLine($"Gotify Url list is: {statusServerList}"); + AppLog.Info("Startup", $"GOTIFY_URLS={statusServerList}"); var statusClientList = gotifyClientList.Count == 0 ? "empty" : "filled"; - Console.WriteLine($"Gotify Client list is: {statusClientList}"); + AppLog.Info("Startup", $"GOTIFY_CLIENT_TOKENS={statusClientList}"); var statusNtfyList = secntfyTokenList.Count == 0 ? "empty" : "filled"; - Console.WriteLine($"SecNtfy Token list is: {statusNtfyList}"); - Console.WriteLine( - $"If one or more lists are empty please check the environment variable! GOTIFY_URLS or GOTIFY_CLIENT_TOKENS or SECNTFY_TOKENS"); - Console.WriteLine( - $"If all lists are empty do nothing, you will configure the gotify server over the iGotify app."); + AppLog.Info("Startup", $"SECNTFY_TOKENS={statusNtfyList}"); + AppLog.Info("Startup", "No environment connections found; waiting for app configuration."); } var userList = await DatabaseService.GetUsers(); - - StartConnection(userList, secntfyUrl); + await StartConnection(userList, secntfyUrl); } - private async void StartConnection(List userList, string secntfyUrl) + private async Task StartConnection(List userList, string secntfyUrl) { - foreach (var user in userList) + try { - string isGotifyAvailable; - string isSecNtfyAvailable; - try - { - isGotifyAvailable = await SecNtfy.CheckIfUrlReachable(user.GotifyUrl) ? "yes" : "no"; - - if (isGotifyAvailable == "no") - { - StartConnection(userList, secntfyUrl); - return; - } - } - catch - { - Console.WriteLine($"Gotify Server: '{user.GotifyUrl}' is not available try to reconnect in 10s."); - StartDelayedConnection(userList, secntfyUrl); - return; - } - - try - { - bool isSecNtfyAvailableBool = await SecNtfy.CheckIfUrlReachable(secntfyUrl); - isSecNtfyAvailable = isSecNtfyAvailableBool ? "yes" : "no"; - - if (!isSecNtfyAvailableBool) - Console.WriteLine($"SecNtfy Server: '{secntfyUrl}' is not available, please check your internet connection!"); - } - catch - { - Console.WriteLine($"SecNtfy Server: '{secntfyUrl}' is not available try to reconnect in 10s."); - StartDelayedConnection(userList, secntfyUrl); - return; - } + var isSecNtfyAvailable = await SecNtfy.CheckIfUrlReachable(secntfyUrl); + if (!isSecNtfyAvailable) + AppLog.Warn("SecNtfy", $"Server unavailable url={AppLog.SafeUrl(secntfyUrl)}"); + } + catch + { + AppLog.Warn("SecNtfy", + $"Availability check failed url={AppLog.SafeUrl(secntfyUrl)}; websocket clients will still start."); + } - Console.WriteLine($"Gotify - Url: {user.GotifyUrl}"); - Console.WriteLine($"Is Gotify - Url available: {isGotifyAvailable}"); - Console.WriteLine($"SecNtfy Server - Url: {secntfyUrl}"); - Console.WriteLine($"Is SecNtfy Server - Url available: {isSecNtfyAvailable}"); - Console.WriteLine($"Client - Token: {user.ClientToken}"); + foreach (var user in userList) + { + AppLog.Info("WebSocket", + $"Configured client={AppLog.MaskSecret(user.ClientToken)} gotify={AppLog.SafeUrl(user.GotifyUrl)} secntfy={AppLog.SafeUrl(secntfyUrl)}"); - StartWsThread(user); + // StartWsThread(user); // legacy websocket.client implementation + StartNativeWsTask(user); } } - private async void StartDelayedConnection(List userList, string secntfyUrl) + private static void StopNativeSocket(string clientToken) { - await Task.Delay(10000); - Console.WriteLine("Reconnecting..."); - StartConnection(userList, secntfyUrl); + if (!_nativeSockets.TryRemove(clientToken, out var runtime)) + return; + + AppLog.Info("WebSocket", $"Stopping client={AppLog.MaskSecret(clientToken)}"); + + try + { + runtime.Cts.Cancel(); + runtime.Client.StopAsync().GetAwaiter().GetResult(); + runtime.RunnerTask.Wait(millisecondsTimeout: 500); + } + catch (Exception e) + { + AppLog.Error("WebSocket", $"Failed to stop client={AppLog.MaskSecret(clientToken)}", e); + } + finally + { + runtime.Cts.Dispose(); + } } -} \ No newline at end of file +} diff --git a/Services/PasswordGenerator.cs b/Services/PasswordGenerator.cs new file mode 100644 index 0000000..18eadde --- /dev/null +++ b/Services/PasswordGenerator.cs @@ -0,0 +1,48 @@ +using System.Security.Cryptography; +using Microsoft.AspNetCore.Identity; + +namespace iGotify_Notification_Assist.Services; + +public class PasswordGenerator +{ + public static void EnsurePasswordExists() + { + var path = $"{GetLocationsOf.App}/data/secure"; + //Create Database File + var passwordFile = Path.Combine(path, "api-password.hash"); + Directory.CreateDirectory(Path.GetDirectoryName(passwordFile)!); + if (File.Exists(passwordFile)) + return; + + var password = GenerateSecurePassword(); + var hasher = new PasswordHasher(); + var hash = hasher.HashPassword("api", password); + File.WriteAllText(passwordFile, hash); + AppLog.Info("PG", "===================================================="); + AppLog.Info("PG", "Initial API password generated:"); + AppLog.Info("PG", $"{password}"); + AppLog.Info("PG", "Please save this password. It will not be shown again."); + AppLog.Info("PG", "===================================================="); + } + + public static bool IsValid(string password) + { + var path = $"{GetLocationsOf.App}/data/secure"; + //Create Database File + var passwordFile = Path.Combine(path, "api-password.hash"); + if (!File.Exists(passwordFile)) + return false; + + var hash = File.ReadAllText(passwordFile); + var hasher = new PasswordHasher(); + var result = hasher.VerifyHashedPassword("api", hash, password); + return result == PasswordVerificationResult.Success || result == PasswordVerificationResult.SuccessRehashNeeded; + } + + private static string GenerateSecurePassword(int length = 32) + { + const string chars = "ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz23456789!@$%_-"; + var bytes = RandomNumberGenerator.GetBytes(length); + return new string(bytes.Select(b => chars[b % chars.Length]).ToArray()); + } +} \ No newline at end of file diff --git a/Services/StartUpBuilder.cs b/Services/StartUpBuilder.cs index 0a13873..04cff9d 100644 --- a/Services/StartUpBuilder.cs +++ b/Services/StartUpBuilder.cs @@ -6,6 +6,7 @@ public Action Configure(Action next) { return builder => { + PasswordGenerator.EnsurePasswordExists(); // Create GotifyInstance after starting of the API var gss = GotifySocketService.getInstance(); gss.Init(); diff --git a/Services/WebSockClient.cs b/Services/WebSockClient.cs index cf26a26..5878ed3 100644 --- a/Services/WebSockClient.cs +++ b/Services/WebSockClient.cs @@ -62,7 +62,7 @@ public void Start(string clientToken, bool isRestart = false) //Console.WriteLine($"ReconnectionHappened {info.Type}"); if (info.Type == ReconnectionType.Initial && isRestart) { - Console.WriteLine($"Gotify with Clienttoken: \"{clientToken}\" is successfully reconnected!"); + AppLog.Info("WebSocket", $"Legacy reconnected client={AppLog.MaskSecret(clientToken)}"); } }); @@ -70,24 +70,25 @@ public void Start(string clientToken, bool isRestart = false) ws.DisconnectionHappened.Subscribe(type => { var wsName = ws.Name; - Console.WriteLine($"Disconnection happened, type: {type.Type}"); + AppLog.Warn("WebSocket", $"Legacy disconnected client={AppLog.MaskSecret(wsName)} reason={type.Type}"); switch (type.Type) { case DisconnectionType.Lost: - Console.WriteLine("Connection lost reconnect to Websocket..."); + AppLog.Info("WebSocket", $"Legacy reconnecting client={AppLog.MaskSecret(wsName)}"); // Stop(); Start(wsName, true); break; case DisconnectionType.Error: if (type.Exception != null && type.Exception.Message.Contains("401")) { - Console.WriteLine($"ClientToken: {wsName} is not authorized and returned a 401 Unauthorized error! Skipping reconnection..."); + AppLog.Warn("WebSocket", + $"Legacy unauthorized client={AppLog.MaskSecret(wsName)}; reconnect stopped."); Stop(); } else { - Console.WriteLine( - $"Webseocket Reconnection failed with Error. Try to reconnect ClientToken: {wsName} in 10s."); + AppLog.Warn("WebSocket", + $"Legacy reconnect failed client={AppLog.MaskSecret(wsName)}; retry in 10s."); ReconnectDelayed(wsName); } @@ -111,19 +112,18 @@ public void Start(string clientToken, bool isRestart = false) var message = msg.ToString().Replace("client::display", "clientdisplay") .Replace("client::notification", "clientnotification") .Replace("android::action", "androidaction"); - if (Environments.isLogEnabled) - Console.WriteLine("Message converted: " + message); + AppLog.Debug("WebSocket", $"Legacy message received client={AppLog.MaskSecret(ws.Name)} payload={message}"); // var jsonData = JsonConvert.SerializeObject(message); var gm = JsonConvert.DeserializeObject(message); // If object is null return and listen to the next message if (gm == null) { - Console.WriteLine("GotifyMessage is null"); + AppLog.Warn("WebSocket", $"Legacy message ignored client={AppLog.MaskSecret(ws.Name)} reason=invalid-json"); return; } // Go and send the message - Console.WriteLine($"WS Instance from: {ws.Name}"); + AppLog.Debug("WebSocket", $"Legacy forwarding notification client={AppLog.MaskSecret(ws.Name)}"); await new DeviceModel().SendNotifications(gm, ws); })) .Concat() // executes sequentially @@ -132,7 +132,7 @@ public void Start(string clientToken, bool isRestart = false) ws.Start(); if (!isRestart) - Console.WriteLine("Done!"); + AppLog.Info("WebSocket", $"Legacy started client={AppLog.MaskSecret(clientToken)}"); } /// @@ -151,7 +151,7 @@ private async void ReconnectDelayed(string clientToken) { if (ws != null) { - Console.WriteLine("Stopping WebSocket..."); + AppLog.Info("WebSocket", $"Legacy stopping client={AppLog.MaskSecret(clientToken)}"); await ws!.Stop(WebSocketCloseStatus.Empty, "Connection closing."); } @@ -160,4 +160,4 @@ private async void ReconnectDelayed(string clientToken) if (!isStopped) Start(clientToken, true); } -} \ No newline at end of file +} diff --git a/Services/WebSockClientNative.cs b/Services/WebSockClientNative.cs new file mode 100644 index 0000000..f6c7faf --- /dev/null +++ b/Services/WebSockClientNative.cs @@ -0,0 +1,232 @@ +using System.Net.WebSockets; +using System.Text; +using iGotify_Notification_Assist.Models; +using Newtonsoft.Json; + +namespace iGotify_Notification_Assist.Services; + +public sealed class WebSockClientNative +{ + private const int BufferSize = 8 * 1024; + private static readonly TimeSpan CloseTimeout = TimeSpan.FromSeconds(5); + private ClientWebSocket? _socket; + private volatile bool _isStopped; + + public async Task RunAsync(Users user, CancellationToken cancellationToken) + { + var wsUrl = BuildWsUrl(user); + var reconnectDelaySeconds = 1; + var client = AppLog.MaskSecret(user.ClientToken); + var gotify = AppLog.SafeUrl(user.GotifyUrl); + + AppLog.Info("WebSocket", $"Url is: {wsUrl}"); + while (!cancellationToken.IsCancellationRequested && !_isStopped) + { + try + { + using var socket = CreateSocket(user); + _socket = socket; + + AppLog.Info("WebSocket", $"Connecting client={client} gotify={gotify}"); + await socket.ConnectAsync(new Uri(wsUrl), cancellationToken); + AppLog.Info("WebSocket", $"Connected client={client}"); + + reconnectDelaySeconds = 1; + await ReceiveLoopAsync(socket, wsUrl, user.ClientToken, cancellationToken); + } + catch (OperationCanceledException) when (cancellationToken.IsCancellationRequested || _isStopped) + { + break; + } + catch (WebSocketException wse) + { + if (wse.Message.Contains("401")) + { + AppLog.Warn("WebSocket", + $"Unauthorized client={client}; token rejected by Gotify. Reconnect stopped."); + break; + } + + AppLog.Warn("WebSocket", $"Connection failed client={client}: {wse.Message}"); + } + catch (Exception ex) + { + AppLog.Error("WebSocket", $"Unexpected error client={client}", ex); + } + finally + { + _socket = null; + } + + if (cancellationToken.IsCancellationRequested || _isStopped) + break; + + var jitterMs = Random.Shared.Next(250, 1250); + var delay = TimeSpan.FromSeconds(reconnectDelaySeconds) + TimeSpan.FromMilliseconds(jitterMs); + + AppLog.Info("WebSocket", $"Reconnect scheduled client={client} delay={Math.Round(delay.TotalSeconds, 1)}s"); + + try + { + await Task.Delay(delay, cancellationToken); + } + catch (OperationCanceledException) + { + break; + } + + reconnectDelaySeconds = Math.Min(reconnectDelaySeconds * 2, 30); + } + + AppLog.Info("WebSocket", $"Stopped client={client}"); + } + + public async Task StopAsync() + { + _isStopped = true; + + if (_socket == null) + return; + + try + { + if (_socket.State == WebSocketState.Open || _socket.State == WebSocketState.CloseReceived) + { + using var closeCts = new CancellationTokenSource(CloseTimeout); + await _socket.CloseAsync(WebSocketCloseStatus.NormalClosure, "Connection closing", + closeCts.Token); + } + else + { + _socket.Abort(); + } + } + catch + { + _socket.Abort(); + } + } + + private static ClientWebSocket CreateSocket(Users user) + { + var socket = new ClientWebSocket(); + socket.Options.KeepAliveInterval = TimeSpan.FromSeconds(30); + + if (string.IsNullOrWhiteSpace(user.Headers)) + return socket; + + List? customHeaders; + try + { + customHeaders = JsonConvert.DeserializeObject>(user.Headers); + } + catch + { + customHeaders = null; + } + + if (customHeaders == null) + return socket; + + foreach (var header in customHeaders) + { + if (string.IsNullOrWhiteSpace(header.Key) || string.IsNullOrWhiteSpace(header.Value)) + continue; + + try + { + socket.Options.SetRequestHeader(header.Key, header.Value); + } + catch (ArgumentException ex) + { + AppLog.Warn("WebSocket", $"Skipping invalid custom header name='{header.Key}': {ex.Message}"); + } + } + + return socket; + } + + private static string BuildWsUrl(Users user) + { + var gotifyUrl = user.GotifyUrl.Trim().Trim('"'); + if (!gotifyUrl.StartsWith("http://", StringComparison.OrdinalIgnoreCase) && + !gotifyUrl.StartsWith("https://", StringComparison.OrdinalIgnoreCase)) + { + gotifyUrl = $"https://{gotifyUrl}"; + } + + var builder = new UriBuilder(gotifyUrl) + { + Scheme = gotifyUrl.StartsWith("http://", StringComparison.OrdinalIgnoreCase) ? "ws" : "wss", + Path = CombinePath(new Uri(gotifyUrl).AbsolutePath, "stream"), + Query = $"token={Uri.EscapeDataString(user.ClientToken)}" + }; + + return builder.Uri.ToString(); + } + + private static async Task ReceiveLoopAsync(ClientWebSocket socket, string wsUrl, string clientToken, + CancellationToken cancellationToken) + { + var buffer = new byte[BufferSize]; + + while (!cancellationToken.IsCancellationRequested && socket.State == WebSocketState.Open) + { + using var ms = new MemoryStream(); + WebSocketReceiveResult result; + + do + { + result = await socket.ReceiveAsync(new ArraySegment(buffer), cancellationToken); + + if (result.MessageType == WebSocketMessageType.Close) + { + if (socket.State == WebSocketState.Open || socket.State == WebSocketState.CloseReceived) + { + await socket.CloseAsync(WebSocketCloseStatus.NormalClosure, "Server closed connection", + cancellationToken); + } + + return; + } + + ms.Write(buffer, 0, result.Count); + } while (!result.EndOfMessage); + + var rawMessage = Encoding.UTF8.GetString(ms.ToArray()); + var message = rawMessage.Replace("client::display", "clientdisplay") + .Replace("client::notification", "clientnotification") + .Replace("android::action", "androidaction"); + + AppLog.Debug("WebSocket", $"Message received client={AppLog.MaskSecret(clientToken)} payload={message}"); + + GotifyMessage? gm; + try + { + gm = JsonConvert.DeserializeObject(message); + } + catch + { + gm = null; + } + + if (gm == null) + { + AppLog.Warn("WebSocket", $"Message ignored client={AppLog.MaskSecret(clientToken)} reason=invalid-json"); + continue; + } + + AppLog.Debug("WebSocket", $"Forwarding notification client={AppLog.MaskSecret(clientToken)}"); + await new DeviceModel().SendNotifications(gm, wsUrl, clientToken); + } + } + + private static string CombinePath(string basePath, string path) + { + var normalizedBasePath = string.IsNullOrWhiteSpace(basePath) || basePath == "/" + ? "" + : basePath.TrimEnd('/'); + + return $"{normalizedBasePath}/{path.TrimStart('/')}"; + } +} diff --git a/iGotify Notification Assist.csproj b/iGotify Notification Assist.csproj index a2ea6c5..9d70ef5 100644 --- a/iGotify Notification Assist.csproj +++ b/iGotify Notification Assist.csproj @@ -6,9 +6,9 @@ enable true iGotify_Notification_Assist - 1.5.1.3 - 1.5.1.3 - 1.5.1.3 + 1.6.0.0 + 1.6.0.0 + 1.6.0.0 default diff --git a/wwwroot/apple-touch-icon.png b/wwwroot/apple-touch-icon.png new file mode 100644 index 0000000..44ecb3b Binary files /dev/null and b/wwwroot/apple-touch-icon.png differ diff --git a/wwwroot/chunk--N7TDTLb.js b/wwwroot/chunk--N7TDTLb.js new file mode 100644 index 0000000..5ae8a8c --- /dev/null +++ b/wwwroot/chunk--N7TDTLb.js @@ -0,0 +1,2 @@ +var e={name:"code",meta:{tags:["code","programming","software","developer","script"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.46968 4.46973C6.76257 4.17684 7.23733 4.17684 7.53023 4.46973C7.82306 4.76263 7.8231 5.23741 7.53023 5.53028L3.06049 10L7.53023 14.4698C7.82306 14.7627 7.8231 15.2374 7.53023 15.5303C7.23735 15.8232 6.76258 15.8231 6.46968 15.5303L1.46967 10.5303C1.17678 10.2374 1.17678 9.76264 1.46967 9.46974L6.46968 4.46973ZM12.4697 4.46973C12.7626 4.17684 13.2373 4.17684 13.5302 4.46973L18.5302 9.46974C18.8231 9.76264 18.8231 10.2374 18.5302 10.5303L13.5302 15.5303C13.2374 15.8232 12.7626 15.8231 12.4697 15.5303C12.1768 15.2374 12.1768 14.7627 12.4697 14.4698L16.9394 10L12.4697 5.53028C12.1768 5.23739 12.1768 4.76263 12.4697 4.46973Z",fill:"currentColor",key:"gzy602"}]]}; +export{e as code}; \ No newline at end of file diff --git a/wwwroot/chunk-0CpHZmKW.js b/wwwroot/chunk-0CpHZmKW.js new file mode 100644 index 0000000..ef296d6 --- /dev/null +++ b/wwwroot/chunk-0CpHZmKW.js @@ -0,0 +1,2 @@ +var C={name:"at",meta:{tags:["at","email","location","place"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1.25C13.6934 1.25 15.9469 2.53852 17.2393 4.38086C18.4962 6.17289 18.75 8.36007 18.75 10V11.3799C18.75 13.0141 17.4243 14.3398 15.79 14.3398C14.7045 14.3398 13.7574 13.7536 13.2422 12.8818C12.4473 13.7754 11.2901 14.3398 10 14.3398C7.60323 14.3398 5.66029 12.3967 5.66016 10C5.66026 7.60323 7.60321 5.66024 10 5.66016C11.0816 5.66019 12.0702 6.05639 12.8301 6.71094V6.41016C12.8301 5.99594 13.1659 5.66016 13.5801 5.66016C13.9942 5.66021 14.3301 5.99597 14.3301 6.41016V9.72363C14.3358 9.81496 14.3398 9.90723 14.3398 10C14.3398 10.0922 14.3357 10.1836 14.3301 10.2744V11.3799C14.3301 12.1857 14.9843 12.8398 15.79 12.8398C16.5958 12.8398 17.25 12.1857 17.25 11.3799V10C17.25 8.47005 17.0036 6.65759 16.0107 5.24219C15.0531 3.87703 13.3066 2.75 10 2.75C5.99421 2.75 2.75 5.99421 2.75 10C2.75 14.0107 5.91911 17.25 10 17.25C10.4142 17.25 10.75 17.5858 10.75 18C10.75 18.4142 10.4142 18.75 10 18.75C5.08089 18.75 1.25 14.8293 1.25 10C1.25 5.16579 5.16579 1.25 10 1.25ZM10 7.16016C8.43165 7.16024 7.16026 8.43164 7.16016 10C7.16029 11.5683 8.43167 12.8398 10 12.8398C11.5033 12.8398 12.7305 11.6714 12.8301 10.1934V9.80566C12.7302 8.32792 11.5031 7.16022 10 7.16016Z",fill:"currentColor",key:"tl2h97"}]]}; +export{C as at}; \ No newline at end of file diff --git a/wwwroot/chunk-0M221H8F.js b/wwwroot/chunk-0M221H8F.js new file mode 100644 index 0000000..8b54cf4 --- /dev/null +++ b/wwwroot/chunk-0M221H8F.js @@ -0,0 +1,2 @@ +var C={name:"globe",meta:{tags:["globe","world","internet","global","earth"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM2.53809 10.75C2.85555 13.947 5.18024 16.5508 8.23438 17.2881C6.79484 15.4029 5.51787 13.1226 5.28809 10.75H2.53809ZM14.7119 10.75C14.4821 13.1228 13.2043 15.4028 11.7646 17.2881C14.8192 16.5511 17.1444 13.9474 17.4619 10.75H14.7119ZM6.7959 10.75C7.05835 12.9585 8.42565 15.1988 10 17.0967C11.5743 15.1988 12.9416 12.9585 13.2041 10.75H6.7959ZM11.7646 2.71094C13.2045 4.59632 14.4821 6.87693 14.7119 9.25H17.4619C17.1444 6.05257 14.8193 3.44783 11.7646 2.71094ZM10 2.90234C8.42545 4.80036 7.0583 7.0412 6.7959 9.25H13.2041C12.9417 7.0412 11.5746 4.80036 10 2.90234ZM8.23438 2.71094C5.18013 3.44813 2.85556 6.05289 2.53809 9.25H5.28809C5.51789 6.87713 6.79465 4.59622 8.23438 2.71094Z",fill:"currentColor",key:"4g2nrg"}]]}; +export{C as globe}; \ No newline at end of file diff --git a/wwwroot/chunk-0PdyW8jb.js b/wwwroot/chunk-0PdyW8jb.js new file mode 100644 index 0000000..f7e124f --- /dev/null +++ b/wwwroot/chunk-0PdyW8jb.js @@ -0,0 +1,2 @@ +var C={name:"wallet",meta:{tags:["wallet","money","cash","payments","finance"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15 1.25C15.9642 1.25 16.75 2.03579 16.75 3V5.25H17C17.9665 5.25 18.75 6.0335 18.75 7V17C18.75 17.9665 17.9665 18.75 17 18.75H3C2.0335 18.75 1.25 17.9665 1.25 17V7C1.25 6.92991 1.2556 6.86093 1.26367 6.79297C1.26599 6.77332 1.26852 6.75381 1.27148 6.73438C1.27519 6.71022 1.27754 6.68593 1.28223 6.66211C1.29098 6.61736 1.30334 6.57373 1.31543 6.53027C1.31869 6.51863 1.32073 6.50666 1.32422 6.49512C1.35164 6.40398 1.3875 6.31663 1.42871 6.23242C1.43456 6.22053 1.43921 6.20803 1.44531 6.19629C1.46651 6.15537 1.49039 6.1161 1.51465 6.07715C1.51843 6.07109 1.52154 6.0646 1.52539 6.05859C1.72258 5.75036 2.01369 5.5091 2.3584 5.37305C2.37457 5.36665 2.39083 5.36042 2.40723 5.35449C2.44383 5.3413 2.48086 5.32913 2.51855 5.31836C2.52894 5.31538 2.53934 5.31236 2.5498 5.30957C2.59379 5.29789 2.63832 5.28757 2.68359 5.2793C2.69232 5.27769 2.70119 5.27686 2.70996 5.27539C2.75662 5.2676 2.80373 5.26086 2.85156 5.25684C2.85286 5.25673 2.85418 5.25694 2.85547 5.25684L14.7627 1.28809L14.8799 1.25977C14.9195 1.25333 14.9597 1.25 15 1.25ZM3 6.75C2.86421 6.75 2.75 6.86421 2.75 7V17C2.75 17.1358 2.86421 17.25 3 17.25H17C17.1381 17.25 17.25 17.1381 17.25 17V7C17.25 6.86193 17.1381 6.75 17 6.75H3ZM14.5 10.75C15.1904 10.75 15.75 11.3096 15.75 12C15.75 12.6904 15.1904 13.25 14.5 13.25C13.8096 13.25 13.25 12.6904 13.25 12C13.25 11.3096 13.8096 10.75 14.5 10.75ZM7.62207 5.25H15.25V3C15.25 2.89177 15.1773 2.79758 15.0791 2.76367L7.62207 5.25Z",fill:"currentColor",key:"1hq2xy"}]]}; +export{C as wallet}; \ No newline at end of file diff --git a/wwwroot/chunk-0g2a9Jlq.js b/wwwroot/chunk-0g2a9Jlq.js new file mode 100644 index 0000000..187282f --- /dev/null +++ b/wwwroot/chunk-0g2a9Jlq.js @@ -0,0 +1,2 @@ +var e={name:"ellipsis-v",meta:{tags:["ellipsis-v","more","options","menu","vertical","dots"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 15.25C10.9642 15.25 11.75 16.0358 11.75 17C11.75 17.9642 10.9642 18.75 10 18.75C9.03579 18.75 8.25 17.9642 8.25 17C8.25 16.0358 9.03579 15.25 10 15.25ZM10 8.25C10.9642 8.25 11.75 9.03579 11.75 10C11.75 10.9642 10.9642 11.75 10 11.75C9.03579 11.75 8.25 10.9642 8.25 10C8.25 9.03579 9.03579 8.25 10 8.25ZM10 1.25C10.9642 1.25 11.75 2.03579 11.75 3C11.75 3.96421 10.9642 4.75 10 4.75C9.03579 4.75 8.25 3.96421 8.25 3C8.25 2.03579 9.03579 1.25 10 1.25Z",fill:"currentColor",key:"g5yz8h"}]]}; +export{e as ellipsisV}; \ No newline at end of file diff --git a/wwwroot/chunk-0hK2w8Hx.js b/wwwroot/chunk-0hK2w8Hx.js new file mode 100644 index 0000000..187fd1c --- /dev/null +++ b/wwwroot/chunk-0hK2w8Hx.js @@ -0,0 +1,2 @@ +var t={name:"thumbs-up-fill",meta:{tags:["thumbs-up-fill","approval","like","agreement","support"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M5.24023 18H3.62988C2.72994 17.9999 2.00977 17.2796 2.00977 16.3896V10.6201C2.00977 9.73016 2.73994 9.00007 3.62988 9H5.24023V18ZM9.73047 2C10.8303 2.00025 11.7197 2.90015 11.7197 4V7.5H16.5C17.4399 7.5 18.1303 8.33989 17.9805 9.25977L16.6602 16.7598C16.5302 17.4798 15.9097 18 15.1797 18H5.98047V9L8.71973 2.61035C8.87968 2.24046 9.23979 2.00015 9.63965 2H9.73047Z",fill:"currentColor",key:"5kg7qi"}]]}; +export{t as thumbsUpFill}; \ No newline at end of file diff --git a/wwwroot/chunk-0u1HFdKh.js b/wwwroot/chunk-0u1HFdKh.js new file mode 100644 index 0000000..99eb9cd --- /dev/null +++ b/wwwroot/chunk-0u1HFdKh.js @@ -0,0 +1,2 @@ +var e={name:"file-o",meta:{tags:["file-o","deprecate","document","draft"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.5 1.25C10.6989 1.25 10.8896 1.32907 11.0303 1.46973L16.5303 6.96973C16.6709 7.11038 16.75 7.30109 16.75 7.5V16C16.75 17.5142 15.5142 18.75 14 18.75H6C4.48579 18.75 3.25 17.5142 3.25 16V4C3.25 2.48579 4.48579 1.25 6 1.25H10.5ZM6 2.75C5.31421 2.75 4.75 3.31421 4.75 4V16C4.75 16.6858 5.31421 17.25 6 17.25H14C14.6858 17.25 15.25 16.6858 15.25 16V8.25H10.5C10.0858 8.25 9.75 7.91421 9.75 7.5V2.75H6ZM11.25 6.75H14.1895L11.25 3.81055V6.75Z",fill:"currentColor",key:"2sixl9"}]]}; +export{e as fileO}; \ No newline at end of file diff --git a/wwwroot/chunk-0x3m7KuF.js b/wwwroot/chunk-0x3m7KuF.js new file mode 100644 index 0000000..c187abe --- /dev/null +++ b/wwwroot/chunk-0x3m7KuF.js @@ -0,0 +1,2 @@ +var a={name:"exclamation-triangle",meta:{tags:["exclamation-triangle","warning","alert","danger","caution"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 2.25C10.2691 2.25005 10.5179 2.39429 10.6514 2.62793L18.6514 16.6279C18.7839 16.8599 18.7825 17.1448 18.6485 17.376C18.5143 17.6072 18.2673 17.75 18 17.75H2C1.73266 17.75 1.48576 17.6072 1.35156 17.376C1.21753 17.1448 1.21609 16.86 1.34863 16.6279L9.34864 2.62793C9.48218 2.39428 9.73089 2.25 10 2.25ZM3.29297 16.25H16.7071L10 4.51172L3.29297 16.25ZM10 13.25C10.4142 13.2501 10.75 13.5858 10.75 14V14.5C10.75 14.9142 10.4142 15.2499 10 15.25C9.5858 15.25 9.25001 14.9142 9.25001 14.5V14C9.25001 13.5858 9.5858 13.25 10 13.25ZM10 7.25C10.4142 7.25007 10.75 7.58583 10.75 8V11.5C10.75 11.9142 10.4142 12.2499 10 12.25C9.5858 12.25 9.25001 11.9142 9.25001 11.5V8C9.25001 7.58579 9.5858 7.25 10 7.25Z",fill:"currentColor",key:"dk1648"}]]}; +export{a as exclamationTriangle}; \ No newline at end of file diff --git a/wwwroot/chunk-1yWJF10n.js b/wwwroot/chunk-1yWJF10n.js new file mode 100644 index 0000000..703be90 --- /dev/null +++ b/wwwroot/chunk-1yWJF10n.js @@ -0,0 +1,2 @@ +var C={name:"trophy",meta:{tags:["trophy","award","prize","win","victory"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.7285 9.07812C16.6052 8.73396 17.25 7.90919 17.25 7V5C17.25 4.86193 17.1381 4.75 17 4.75H15.75V8.46191C15.75 8.66892 15.7429 8.87453 15.7285 9.07812ZM2.75 7C2.75 7.90931 3.39464 8.73501 4.27148 9.0791C4.25709 8.87519 4.25001 8.66925 4.25 8.46191V4.75H3C2.86193 4.75 2.75 4.86193 2.75 5V7ZM14.25 2.92285C14.2499 2.89547 14.2392 2.85906 14.1982 2.82129C14.1562 2.78255 14.088 2.75 14 2.75H6C5.912 2.75 5.84381 2.78255 5.80176 2.82129C5.76084 2.85906 5.75006 2.89547 5.75 2.92285V8.46191C5.75007 9.86134 6.13603 11.0615 6.83301 11.8975C7.51533 12.7157 8.54793 13.25 10 13.25C11.4521 13.25 12.4847 12.7157 13.167 11.8975C13.864 11.0615 14.2499 9.86134 14.25 8.46191V2.92285ZM15.75 3.25H17C17.9665 3.25 18.75 4.0335 18.75 5V7C18.75 8.90895 17.2219 10.4213 15.4404 10.7021C15.2058 11.5026 14.8361 12.2375 14.3184 12.8584C13.4661 13.8803 12.2585 14.5434 10.75 14.708V17.25H13C13.4142 17.25 13.75 17.5858 13.75 18C13.75 18.4142 13.4142 18.75 13 18.75H7C6.58579 18.75 6.25 18.4142 6.25 18C6.25 17.5858 6.58579 17.25 7 17.25H9.25V14.708C7.74154 14.5434 6.53394 13.8803 5.68164 12.8584C5.16382 12.2374 4.79322 11.5027 4.55859 10.7021C2.77748 10.421 1.25 8.90861 1.25 7V5C1.25 4.0335 2.0335 3.25 3 3.25H4.25V2.92285C4.25013 1.94356 5.09122 1.25 6 1.25H14C14.9088 1.25 15.7499 1.94356 15.75 2.92285V3.25Z",fill:"currentColor",key:"pgh4ra"}]]}; +export{C as trophy}; \ No newline at end of file diff --git a/wwwroot/chunk-2j1JVK7Q.js b/wwwroot/chunk-2j1JVK7Q.js new file mode 100644 index 0000000..0c26afc --- /dev/null +++ b/wwwroot/chunk-2j1JVK7Q.js @@ -0,0 +1,2 @@ +var C={name:"cog",meta:{tags:["cog","settings","gears","options","configuration"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.99023 1.25C11.2273 1.25014 12.1904 2.28946 12.1904 3.49023C12.1905 3.66022 12.2857 3.81986 12.4121 3.90137L12.4678 3.93164L12.4746 3.93457C12.6169 3.99769 12.8389 3.97115 13.0049 3.81445L13.0059 3.81543C13.857 2.98049 15.2601 2.93876 16.1309 3.80957C17.0049 4.68387 16.9582 6.08238 16.127 6.93164L16.1279 6.93262C15.9986 7.06583 15.9532 7.27964 15.9863 7.42676L16.0059 7.48535L16.0088 7.49219L15.3447 7.7793L15.3203 7.79004L16.0088 7.49316C16.0749 7.64545 16.2898 7.79551 16.4961 7.7998H16.4951C17.6574 7.80788 18.75 8.74637 18.75 10C18.75 11.2371 17.7105 12.2001 16.5098 12.2002C16.3157 12.2004 16.1344 12.3247 16.0684 12.4775L16.0654 12.4844C16.0022 12.6266 16.0289 12.8486 16.1855 13.0146H16.1846C17.02 13.8657 17.0613 15.2696 16.1904 16.1406C15.3161 17.0147 13.9166 16.9691 13.0674 16.1377C12.9096 15.9846 12.6813 15.9551 12.5449 16.0156L12.5371 16.0186C12.402 16.0772 12.2598 16.2756 12.2598 16.4902C12.2596 17.6578 11.3193 18.7594 10.0605 18.7598C8.8282 18.7598 7.8679 17.729 7.86035 16.5342V16.5352C7.85613 16.3313 7.72117 16.1524 7.56543 16.0957C7.54877 16.0897 7.53182 16.0824 7.51562 16.0752C7.37335 16.012 7.15133 16.0387 6.98535 16.1953L6.98438 16.1943C6.13332 17.0293 4.73123 17.0708 3.86035 16.2002C2.98503 15.3249 3.0311 13.9233 3.86523 13.0742C4.01571 12.9166 4.04539 12.6903 3.98535 12.5547L3.98145 12.5469C3.9228 12.4118 3.72423 12.2696 3.50977 12.2695C2.34217 12.2693 1.24041 11.3291 1.24023 10.0703C1.24023 8.8384 2.27052 7.8783 3.46484 7.87012C3.66881 7.86585 3.84879 7.73108 3.90527 7.5752L3.9248 7.52539C3.98798 7.38313 3.96138 7.16112 3.80469 6.99512V6.99414C2.97031 6.14302 2.92945 4.74078 3.7998 3.87012C4.67411 2.99595 6.07357 3.04081 6.92285 3.87207L6.98438 3.92285C7.13751 4.02813 7.35051 4.05057 7.47559 3.99512L7.48242 3.99121C7.63483 3.92527 7.78574 3.71036 7.79004 3.50391C7.79863 2.342 8.73695 1.25 9.99023 1.25ZM9.99023 2.75C9.64942 2.75 9.29029 3.08764 9.29004 3.51953C9.29004 3.52459 9.29014 3.5301 9.29004 3.53516C9.27439 4.28613 8.80742 5.04818 8.08398 5.36426L8.08496 5.36523C7.32816 5.70159 6.4257 5.48004 5.87793 4.94824L5.875 4.94531C5.58407 4.65949 5.12505 4.66611 4.86035 4.93066C4.61318 5.17814 4.59161 5.6023 4.8291 5.89355L4.88086 5.94922L4.89551 5.96484C5.41858 6.51878 5.63257 7.37714 5.2959 8.13477L5.29492 8.13379C4.99781 8.88858 4.25444 9.35452 3.49512 9.37012C3.49032 9.37021 3.48527 9.37012 3.48047 9.37012C3.06132 9.37012 2.74023 9.70751 2.74023 10.0703C2.74044 10.411 3.07799 10.7693 3.50977 10.7695C4.25229 10.7696 5.03087 11.2054 5.35449 11.9453H5.35547C5.69473 12.7088 5.46504 13.5809 4.93848 14.123L4.93555 14.126C4.64971 14.4169 4.65623 14.875 4.9209 15.1396C5.18475 15.4032 5.64907 15.41 5.93945 15.1201L5.95508 15.1045C6.49689 14.5929 7.32914 14.3788 8.07422 14.6846H8.0752C8.85904 14.9682 9.34452 15.7291 9.36035 16.5049C9.36045 16.5098 9.36035 16.5147 9.36035 16.5195C9.36035 16.9387 9.69777 17.2598 10.0605 17.2598C10.4012 17.2594 10.7596 16.922 10.7598 16.4902C10.7598 15.7475 11.1952 14.9681 11.9355 14.6445C12.6514 14.3265 13.4626 14.5087 14.0078 14.9668L14.1133 15.0625L14.1162 15.0654C14.4071 15.3507 14.8653 15.3444 15.1299 15.0801C15.3936 14.8162 15.4003 14.351 15.1104 14.0605C15.1053 14.0555 15.0996 14.0501 15.0947 14.0449C14.5734 13.4928 14.3594 12.6386 14.6914 11.8828L14.7559 11.75C15.0984 11.101 15.792 10.7004 16.5098 10.7002C16.9288 10.7001 17.25 10.3627 17.25 10C17.25 9.65919 16.9123 9.30007 16.4805 9.2998C16.4754 9.2998 16.4699 9.2999 16.4648 9.2998C15.7137 9.28416 14.9507 8.81753 14.6348 8.09375C14.2988 7.33691 14.5208 6.43524 15.0527 5.8877L15.0557 5.88477C15.3413 5.59387 15.3347 5.13479 15.0703 4.87012C14.8064 4.6062 14.3412 4.60032 14.0508 4.89062C14.0458 4.89562 14.0403 4.90043 14.0352 4.90527C13.4813 5.42837 12.6229 5.64229 11.8652 5.30566V5.30469C11.1429 4.98889 10.6905 4.25313 10.6904 3.49023C10.6904 3.07118 10.3529 2.75014 9.99023 2.75ZM10 7.07031C11.6179 7.07048 12.9305 8.38204 12.9307 10C12.9305 11.618 11.618 12.9305 10 12.9307C8.38203 12.9305 7.07044 11.618 7.07031 10C7.07048 8.38205 8.38205 7.07048 10 7.07031ZM10 8.57031C9.21047 8.57048 8.57048 9.21048 8.57031 10C8.57044 10.7895 9.21045 11.4305 10 11.4307C10.7895 11.4305 11.4305 10.7896 11.4307 10C11.4305 9.21048 10.7895 8.57048 10 8.57031Z",fill:"currentColor",key:"k57301"}]]}; +export{C as cog}; \ No newline at end of file diff --git a/wwwroot/chunk-5BNEAk67.js b/wwwroot/chunk-5BNEAk67.js new file mode 100644 index 0000000..df047e8 --- /dev/null +++ b/wwwroot/chunk-5BNEAk67.js @@ -0,0 +1,2 @@ +var e={name:"save",meta:{tags:["save","store","keep","reserve","record"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12.5 1.25C12.6989 1.25 12.8896 1.32907 13.0303 1.46973L17.5303 5.96973C17.6709 6.11038 17.75 6.30109 17.75 6.5V16C17.75 17.5142 16.5142 18.75 15 18.75H5C3.48579 18.75 2.25 17.5142 2.25 16V4C2.25 2.48579 3.48579 1.25 5 1.25H12.5ZM5 2.75C4.31421 2.75 3.75 3.31421 3.75 4V16C3.75 16.6858 4.31421 17.25 5 17.25H5.25V11.5C5.25 10.8158 5.81579 10.25 6.5 10.25H13.5C14.2039 10.25 14.75 10.8256 14.75 11.5V17.25H15C15.6858 17.25 16.25 16.6858 16.25 16V6.81055L12.1895 2.75H11.75V5.4502C11.7499 6.13686 11.2012 6.7496 10.4707 6.75H6.52051C5.78962 6.75 5.24033 6.13708 5.24023 5.4502V2.75H5ZM6.75 17.25H13.25V11.75H6.75V17.25ZM6.74023 5.25H10.25V2.75H6.74023V5.25Z",fill:"currentColor",key:"fh7jjk"}]]}; +export{e as save}; \ No newline at end of file diff --git a/wwwroot/chunk-5LcnwngY.js b/wwwroot/chunk-5LcnwngY.js new file mode 100644 index 0000000..633232c --- /dev/null +++ b/wwwroot/chunk-5LcnwngY.js @@ -0,0 +1,2 @@ +var C={name:"subscript",meta:{tags:["text formatting","below","chemistry","math","subscript"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.2812 9.36811C13.8517 9.04584 14.516 8.92857 15.1621 9.03705C15.7275 9.13208 16.2498 9.39493 16.6621 9.78803L16.832 9.96479L16.8379 9.97162C17.2648 10.4674 17.4998 11.1013 17.5 11.7509C17.5 12.7287 16.9565 13.4221 16.3672 13.8964C15.7926 14.3587 15.0818 14.6883 14.5703 14.9296C14.0788 15.1614 13.8592 15.3374 13.7324 15.5331C13.6638 15.6392 13.6031 15.784 13.5605 16.0009H16.75C17.1638 16.0011 17.4996 16.3371 17.5 16.7509C17.5 17.165 17.164 17.5007 16.75 17.5009H12.75C12.3358 17.5009 12 17.1651 12 16.7509C12 15.9418 12.1157 15.2707 12.4726 14.7187C12.8308 14.1652 13.3621 13.841 13.9297 13.5732C14.4779 13.3146 15.0177 13.0584 15.4277 12.7285C15.8229 12.4104 16 12.1028 16 11.7509C15.9998 11.4628 15.8955 11.1783 15.7051 10.955C15.4991 10.7231 15.22 10.5681 14.914 10.5165C14.6078 10.4651 14.2921 10.5198 14.0215 10.6718C13.7548 10.8243 13.5559 11.0648 13.457 11.3427C13.3183 11.7328 12.8891 11.9362 12.499 11.7978C12.1087 11.659 11.9042 11.2301 12.043 10.8398C12.2641 10.2181 12.7053 9.69748 13.2783 9.37006L13.2812 9.36811ZM9.71971 2.71869C10.0126 2.4258 10.4874 2.4258 10.7803 2.71869C11.0727 3.01162 11.073 3.48648 10.7803 3.77924L7.81053 6.74897L10.7803 9.71869C11.0727 10.0116 11.073 10.4865 10.7803 10.7792C10.4875 11.072 10.0126 11.0717 9.71971 10.7792L6.74999 7.80951L3.78026 10.7792C3.4875 11.072 3.01263 11.0717 2.71971 10.7792C2.42684 10.4864 2.42685 10.0116 2.71971 9.71869L5.68944 6.74897L2.71971 3.77924C2.42684 3.48635 2.42685 3.01159 2.71971 2.71869C3.0126 2.4258 3.48737 2.42581 3.78026 2.71869L6.74999 5.68842L9.71971 2.71869Z",fill:"currentColor",key:"tjle1a"}]]}; +export{C as subscript}; \ No newline at end of file diff --git a/wwwroot/chunk-65-R5k0e.js b/wwwroot/chunk-65-R5k0e.js new file mode 100644 index 0000000..3485dbd --- /dev/null +++ b/wwwroot/chunk-65-R5k0e.js @@ -0,0 +1,2 @@ +var C={name:"indian-rupee",meta:{tags:["indian-rupee","money","currency","inr","cash"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16 0.75C16.4142 0.75 16.75 1.08579 16.75 1.5C16.75 1.91421 16.4142 2.25 16 2.25H11.0801C11.1545 2.32041 11.2271 2.39242 11.2969 2.4668C12.0631 3.28324 12.5206 4.3047 12.6826 5.36133H16C16.4142 5.36133 16.75 5.69711 16.75 6.11133C16.7499 6.52544 16.4141 6.86133 16 6.86133H12.7148C12.5903 8.00581 12.1233 9.12528 11.2969 10.0059C10.3102 11.057 8.85628 11.7227 6.99999 11.7227H5.93066L13.0059 18.1963C13.3113 18.4758 13.3329 18.9503 13.0537 19.2559C12.7742 19.5613 12.2997 19.5829 11.9941 19.3037L3.49413 11.5254C3.26586 11.3165 3.18873 10.9886 3.30077 10.7002C3.4129 10.412 3.69071 10.2227 3.99999 10.2227H6.99999C8.47701 10.2227 9.52302 9.70321 10.2031 8.97852C10.7501 8.39556 11.0877 7.64998 11.2041 6.86133H3.99999C3.58585 6.86133 3.25011 6.52544 3.24999 6.11133C3.24999 5.69711 3.58578 5.36133 3.99999 5.36133H11.1592C11.0132 4.66571 10.6921 4.01423 10.2031 3.49316C9.52302 2.76855 8.47691 2.25 6.99999 2.25H3.99999C3.58578 2.25 3.24999 1.91421 3.24999 1.5C3.24999 1.08579 3.58578 0.75 3.99999 0.75H16Z",fill:"currentColor",key:"6ie1cm"}]]}; +export{C as indianRupee}; \ No newline at end of file diff --git a/wwwroot/chunk-8XukwsUq.js b/wwwroot/chunk-8XukwsUq.js new file mode 100644 index 0000000..0a29d02 --- /dev/null +++ b/wwwroot/chunk-8XukwsUq.js @@ -0,0 +1,2 @@ +var L={name:"receipt",meta:{tags:["receipt","bill","invoice","proof-of-purchase","payment"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.4639 1.48239C11.7754 1.22832 12.2246 1.22832 12.5361 1.48239L12.6006 1.54001L14 2.93942L15.2988 1.6406C15.8342 1.10527 16.7497 1.48415 16.75 2.24118V17.7588C16.7498 18.5159 15.8343 18.8948 15.2988 18.3594L14 17.0605L12.6006 18.4599C12.2687 18.7914 11.7313 18.7914 11.3994 18.4599L10 17.0605L8.60059 18.4599C8.26874 18.7914 7.73126 18.7914 7.39941 18.4599L6 17.0605L4.70117 18.3594C4.16575 18.8948 3.25017 18.5159 3.25 17.7588V2.24118C3.25024 1.53137 4.05495 1.15383 4.59668 1.55075L4.70117 1.6406L6 2.93942L7.39941 1.54001L7.46387 1.48239C7.77544 1.22832 8.22456 1.22832 8.53613 1.48239L8.60059 1.54001L10 2.93942L11.3994 1.54001L11.4639 1.48239ZM10.6006 4.45993C10.2687 4.79135 9.73126 4.79135 9.39941 4.45993L8 3.06052L6.60059 4.45993C6.26874 4.79135 5.73126 4.79135 5.39941 4.45993L4.75 3.81052V16.1894L5.39941 15.54L5.46387 15.4824C5.79756 15.2103 6.28938 15.2293 6.60059 15.54L8 16.9394L9.39941 15.54L9.46387 15.4824C9.79756 15.2103 10.2894 15.2293 10.6006 15.54L12 16.9394L13.3994 15.54L13.4639 15.4824C13.7976 15.2103 14.2894 15.2293 14.6006 15.54L15.25 16.1894V3.81052L14.6006 4.45993C14.2687 4.79135 13.7313 4.79135 13.3994 4.45993L12 3.06052L10.6006 4.45993ZM12 12.25C12.4142 12.25 12.7499 12.5858 12.75 13C12.75 13.4142 12.4142 13.75 12 13.75H8C7.58579 13.75 7.25 13.4142 7.25 13C7.25007 12.5858 7.58583 12.25 8 12.25H12ZM12 9.24997C12.4142 9.24997 12.7499 9.58582 12.75 9.99998C12.75 10.4142 12.4142 10.75 12 10.75H8C7.58579 10.75 7.25 10.4142 7.25 9.99998C7.25007 9.58582 7.58583 9.24997 8 9.24997H12ZM12 6.24997C12.4142 6.24997 12.7499 6.58582 12.75 6.99997C12.75 7.41419 12.4142 7.74997 12 7.74997H8C7.58579 7.74997 7.25 7.41419 7.25 6.99997C7.25007 6.58582 7.58583 6.24997 8 6.24997H12Z",fill:"currentColor",key:"2hesko"}]]}; +export{L as receipt}; \ No newline at end of file diff --git a/wwwroot/chunk-APEEp2se.js b/wwwroot/chunk-APEEp2se.js new file mode 100644 index 0000000..e4e2c0c --- /dev/null +++ b/wwwroot/chunk-APEEp2se.js @@ -0,0 +1,2 @@ +var e={name:"telegram",meta:{tags:["telegram","messaging","chat","fast"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 2C5.581 2 2 5.581 2 10C2 14.419 5.581 18 10 18C14.419 18 18 14.419 18 10C18 5.581 14.419 2 10 2ZM13.929 7.48102L12.616 13.668C12.519 14.107 12.258 14.213 11.893 14.007L9.893 12.533L8.928 13.462C8.822 13.568 8.731 13.659 8.525 13.659L8.667 11.624L12.373 8.276C12.534 8.134 12.338 8.05301 12.125 8.19501L7.544 11.079L5.57 10.463C5.141 10.328 5.131 10.034 5.66 9.828L13.373 6.854C13.732 6.723 14.045 6.93902 13.929 7.48102Z",fill:"currentColor",key:"dqmgi0"}]]}; +export{e as telegram}; \ No newline at end of file diff --git a/wwwroot/chunk-B1Fg5m07.js b/wwwroot/chunk-B1Fg5m07.js new file mode 100644 index 0000000..2b9087a --- /dev/null +++ b/wwwroot/chunk-B1Fg5m07.js @@ -0,0 +1,2 @@ +var C={name:"android",meta:{tags:["android","mobile","os","tech","robot","system"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.4404 13.7334C14.4402 14.3221 13.958 14.7997 13.3633 14.7998H12.6904V17.0674C12.6902 17.5822 12.2679 18 11.748 18C11.2282 18 10.8059 17.5822 10.8057 17.0674V14.7998H9.19141V17.0674C9.19119 17.5822 8.76888 18 8.24902 18C7.72916 18 7.30686 17.5822 7.30664 17.0674V14.7998H6.63379C6.03903 14.7997 5.55686 14.3221 5.55664 13.7334V7.33301H14.4404V13.7334ZM3.94238 7.33301C4.46208 7.33321 4.88359 7.75092 4.88379 8.26562V12.5332C4.88367 13.048 4.46214 13.4656 3.94238 13.4658C3.42245 13.4658 3.00012 13.0481 3 12.5332V8.26562C3.0002 7.75079 3.42251 7.33301 3.94238 7.33301ZM16.0566 7.33301C16.5765 7.33301 16.9988 7.75079 16.999 8.26562V12.5332C16.9989 13.0481 16.5766 13.4658 16.0566 13.4658C15.5369 13.4656 15.1154 13.048 15.1152 12.5332V8.26562C15.1154 7.75091 15.5369 7.3332 16.0566 7.33301ZM12.7676 2C12.7905 2 12.814 2.00663 12.835 2.01758C12.903 2.05558 12.9276 2.14098 12.8896 2.20898L12.3545 3.16406L12.1836 3.4668C12.2345 3.49477 12.2869 3.52279 12.3379 3.55176C12.3889 3.58076 12.4393 3.60963 12.4893 3.64062C13.3782 4.18963 14.0375 5.02402 14.3145 6C14.3914 6.2599 14.4334 6.52791 14.4395 6.7998H5.55859C5.56561 6.5289 5.60763 6.25991 5.68359 6C5.95959 5.025 6.61981 4.1906 7.50781 3.6416C7.55779 3.60962 7.6082 3.57977 7.65918 3.55078C7.7101 3.52183 7.76254 3.49375 7.81445 3.4668L7.64258 3.16406L7.11133 2.20996C7.07635 2.14301 7.10014 2.06147 7.16504 2.02344C7.23204 1.98344 7.31938 2.00624 7.35938 2.07324L7.90137 3.04004L8.07227 3.34473C8.12615 3.32178 8.18145 3.30027 8.23633 3.27832C8.29126 3.25635 8.34739 3.23579 8.40332 3.21582C9.4371 2.85499 10.5648 2.85499 11.5996 3.21582C11.6565 3.23579 11.7117 3.25735 11.7666 3.27832C11.8225 3.29927 11.8768 3.32079 11.9307 3.34473L12.1016 3.04004L12.6436 2.07227C12.6685 2.02837 12.7157 2.00014 12.7676 2ZM7.97949 4.66699C7.75671 4.66725 7.57617 4.84654 7.57617 5.06738C7.57639 5.28804 7.75684 5.46654 7.97949 5.4668C8.20236 5.4668 8.38357 5.2882 8.38379 5.06738C8.38379 4.84638 8.20249 4.66699 7.97949 4.66699ZM12.0186 4.66699C11.7957 4.66721 11.6152 4.84652 11.6152 5.06738C11.6155 5.28806 11.7959 5.46658 12.0186 5.4668C12.2414 5.4668 12.4226 5.2882 12.4229 5.06738C12.4229 4.84638 12.2416 4.66699 12.0186 4.66699Z",fill:"currentColor",key:"aq5j9i"}]]}; +export{C as android}; \ No newline at end of file diff --git a/wwwroot/chunk-B1zpbnxk.js b/wwwroot/chunk-B1zpbnxk.js new file mode 100644 index 0000000..9f7301a --- /dev/null +++ b/wwwroot/chunk-B1zpbnxk.js @@ -0,0 +1,2 @@ +var C={name:"slack",meta:{tags:["slack","communication","team","work","collabrate"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M5.36 12.11C5.36 13.03 4.6 13.79 3.68 13.79C2.76 13.79 2 13.03 2 12.11C2 11.19 2.76 10.43 3.68 10.43H5.36V12.11ZM6.21 12.11C6.21 11.19 6.97 10.43 7.89 10.43C8.81 10.43 9.57 11.19 9.57 12.11V16.32C9.57 17.24 8.81 18 7.89 18C6.97 18 6.21 17.24 6.21 16.32V12.11ZM7.89 5.35999C6.97 5.35999 6.21 4.59999 6.21 3.67999C6.21 2.75999 6.97 2 7.89 2C8.81 2 9.57 2.75999 9.57 3.67999V5.35999H7.89ZM7.89 6.21002C8.81 6.21002 9.57 6.97001 9.57 7.89001C9.57 8.81001 8.81 9.57001 7.89 9.57001H3.68C2.75 9.57001 2 8.81001 2 7.89001C2 6.97001 2.76 6.21002 3.68 6.21002H7.89ZM14.64 7.89001C14.64 6.97001 15.4 6.21002 16.32 6.21002C17.24 6.21002 18 6.97001 18 7.89001C18 8.81001 17.24 9.57001 16.32 9.57001H14.64V7.89001ZM13.79 7.89001C13.79 8.81001 13.03 9.57001 12.11 9.57001C11.19 9.57001 10.43 8.81001 10.43 7.89001V3.67999C10.43 2.74999 11.19 2 12.11 2C13.03 2 13.79 2.75999 13.79 3.67999V7.89001ZM12.11 14.64C13.03 14.64 13.79 15.4 13.79 16.32C13.79 17.24 13.03 18 12.11 18C11.19 18 10.43 17.24 10.43 16.32V14.64H12.11ZM12.11 13.79C11.19 13.79 10.43 13.03 10.43 12.11C10.43 11.19 11.19 10.43 12.11 10.43H16.32C17.24 10.43 18 11.19 18 12.11C18 13.03 17.24 13.79 16.32 13.79H12.11Z",fill:"currentColor",key:"j1ekej"}]]}; +export{C as slack}; \ No newline at end of file diff --git a/wwwroot/chunk-B2TUx5gh.js b/wwwroot/chunk-B2TUx5gh.js new file mode 100644 index 0000000..004091b --- /dev/null +++ b/wwwroot/chunk-B2TUx5gh.js @@ -0,0 +1,2 @@ +var e={name:"caret-up",meta:{tags:["caret-up","expand","up","rise","increase"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 5.25C10.236 5.25 10.458 5.36114 10.5996 5.5498L16.5996 13.5498C16.77 13.777 16.7977 14.081 16.6709 14.335C16.5439 14.589 16.2841 14.75 16 14.75H4.00003C3.71595 14.75 3.45617 14.589 3.32913 14.335C3.20231 14.081 3.23006 13.777 3.40042 13.5498L9.40042 5.5498L9.45706 5.48242C9.5977 5.33486 9.79364 5.25 10 5.25ZM5.50003 13.25H14.5L10 7.24902L5.50003 13.25Z",fill:"currentColor",key:"nqsryg"}]]}; +export{e as caretUp}; \ No newline at end of file diff --git a/wwwroot/chunk-B32pMA-x.js b/wwwroot/chunk-B32pMA-x.js new file mode 100644 index 0000000..079dfd4 --- /dev/null +++ b/wwwroot/chunk-B32pMA-x.js @@ -0,0 +1,2 @@ +var e={name:"circle",meta:{tags:["circle","round","cycle","loop","circular"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10ZM19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1C14.9706 1 19 5.02944 19 10Z",fill:"currentColor",key:"3ypx3o"}]]}; +export{e as circle}; \ No newline at end of file diff --git a/wwwroot/chunk-B35U5OW_.js b/wwwroot/chunk-B35U5OW_.js new file mode 100644 index 0000000..55bb076 --- /dev/null +++ b/wwwroot/chunk-B35U5OW_.js @@ -0,0 +1,2 @@ +var C={name:"users",meta:{tags:["users","group","team","people","crowd"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12 11.75C14.0105 11.75 15.9066 11.918 17.3184 12.5801C18.0408 12.9189 18.6618 13.3983 19.0977 14.0703C19.5343 14.7438 19.75 15.5561 19.75 16.5C19.75 16.9142 19.4142 17.25 19 17.25C18.5858 17.25 18.25 16.9142 18.25 16.5C18.25 15.7891 18.0906 15.2735 17.8398 14.8867C17.5882 14.4987 17.2091 14.1849 16.6816 13.9375C15.5934 13.4271 13.9895 13.25 12 13.25C10.0105 13.25 8.40661 13.4271 7.31836 13.9375C6.79093 14.1849 6.41177 14.4987 6.16016 14.8867C5.90942 15.2735 5.75 15.7891 5.75 16.5C5.75 16.9142 5.41421 17.25 5 17.25C4.58579 17.25 4.25 16.9142 4.25 16.5C4.25 15.5561 4.46567 14.7438 4.90234 14.0703C5.33821 13.3983 5.95922 12.9189 6.68164 12.5801C8.09339 11.918 9.98953 11.75 12 11.75ZM4.5 11.25C4.91421 11.25 5.25 11.5858 5.25 12C5.25 12.4142 4.91421 12.75 4.5 12.75C3.12087 12.75 2.53344 13.0537 2.2373 13.418C1.9071 13.8242 1.75 14.5186 1.75 15.75C1.75 16.1642 1.41421 16.5 1 16.5C0.585786 16.5 0.25 16.1642 0.25 15.75C0.25 14.5014 0.383447 13.3204 1.07324 12.4717C1.79717 11.5812 2.95953 11.25 4.5 11.25ZM3.32227 7.78418C3.46922 6.12766 4.93911 4.91355 6.5918 5.07324C7.00408 5.11314 7.3065 5.48029 7.2666 5.89258C7.22652 6.30468 6.85943 6.60629 6.44727 6.56641C5.62048 6.48666 4.88964 7.09306 4.81641 7.91602C4.74693 8.7008 5.27558 9.38961 6.01562 9.53223L6.16602 9.55273L6.17285 9.55371C6.50604 9.58637 6.82994 9.50335 7.12109 9.33301C7.47853 9.12394 7.93728 9.24417 8.14648 9.60156C8.3557 9.959 8.23631 10.4187 7.87891 10.6279C7.35025 10.9373 6.71286 11.1142 6.02637 11.0469V11.0459C4.36813 10.8947 3.17706 9.42435 3.32227 7.78418ZM12 2.75C14.0711 2.75 15.75 4.42893 15.75 6.5C15.75 8.57107 14.0711 10.25 12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75ZM12 4.25C10.7574 4.25 9.75 5.25736 9.75 6.5C9.75 7.74264 10.7574 8.75 12 8.75C13.2426 8.75 14.25 7.74264 14.25 6.5C14.25 5.25736 13.2426 4.25 12 4.25Z",fill:"currentColor",key:"v5luu3"}]]}; +export{C as users}; \ No newline at end of file diff --git a/wwwroot/chunk-B4IpSLza.js b/wwwroot/chunk-B4IpSLza.js new file mode 100644 index 0000000..c4ab599 --- /dev/null +++ b/wwwroot/chunk-B4IpSLza.js @@ -0,0 +1,2 @@ +var C={name:"expand",meta:{tags:["expand","enlarge","grow","increase","extend"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M1.25 16V13C1.25 12.5858 1.58579 12.25 2 12.25C2.41421 12.25 2.75 12.5858 2.75 13V16C2.75 16.6904 3.30964 17.25 4 17.25H7C7.41421 17.25 7.75 17.5858 7.75 18C7.75 18.4142 7.41421 18.75 7 18.75H4C2.48122 18.75 1.25 17.5188 1.25 16ZM17.25 16V13C17.25 12.5858 17.5858 12.25 18 12.25C18.4142 12.25 18.75 12.5858 18.75 13V16C18.75 17.5188 17.5188 18.75 16 18.75H13C12.5858 18.75 12.25 18.4142 12.25 18C12.25 17.5858 12.5858 17.25 13 17.25H16C16.6904 17.25 17.25 16.6904 17.25 16ZM1.25 7V4C1.25 2.48122 2.48122 1.25 4 1.25H7C7.41421 1.25 7.75 1.58579 7.75 2C7.75 2.41421 7.41421 2.75 7 2.75H4C3.30964 2.75 2.75 3.30964 2.75 4V7C2.75 7.41421 2.41421 7.75 2 7.75C1.58579 7.75 1.25 7.41421 1.25 7ZM17.25 7V4C17.25 3.30964 16.6904 2.75 16 2.75H13C12.5858 2.75 12.25 2.41421 12.25 2C12.25 1.58579 12.5858 1.25 13 1.25H16C17.5188 1.25 18.75 2.48122 18.75 4V7C18.75 7.41421 18.4142 7.75 18 7.75C17.5858 7.75 17.25 7.41421 17.25 7Z",fill:"currentColor",key:"1e3qpz"}]]}; +export{C as expand}; \ No newline at end of file diff --git a/wwwroot/chunk-B4QFVk3n.js b/wwwroot/chunk-B4QFVk3n.js new file mode 100644 index 0000000..c508072 --- /dev/null +++ b/wwwroot/chunk-B4QFVk3n.js @@ -0,0 +1,2 @@ +var e={name:"pause",meta:{tags:["pause","stop","wait","halt","break"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7 2.25C7.41421 2.25 7.75 2.58579 7.75 3V17C7.75 17.4142 7.41421 17.75 7 17.75C6.58579 17.75 6.25 17.4142 6.25 17V3C6.25 2.58579 6.58579 2.25 7 2.25ZM13 2.25C13.4142 2.25 13.75 2.58579 13.75 3V17C13.75 17.4142 13.4142 17.75 13 17.75C12.5858 17.75 12.25 17.4142 12.25 17V3C12.25 2.58579 12.5858 2.25 13 2.25Z",fill:"currentColor",key:"2k8410"}]]}; +export{e as pause}; \ No newline at end of file diff --git a/wwwroot/chunk-B4g_nH4g.js b/wwwroot/chunk-B4g_nH4g.js new file mode 100644 index 0000000..a5d590a --- /dev/null +++ b/wwwroot/chunk-B4g_nH4g.js @@ -0,0 +1,2 @@ +var C={name:"hourglass",meta:{tags:["hourglass","time","wait","patience","sand"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16.25 1.25C16.6642 1.25 17 1.58579 17 2C17 2.41421 16.6642 2.75 16.25 2.75H15.584C15.5588 2.83997 15.5314 2.93913 15.499 3.0459C15.3347 3.58814 15.0727 4.34014 14.6807 5.18945C13.9937 6.67771 12.8921 8.49513 11.1855 10C12.8921 11.5049 13.9937 13.3223 14.6807 14.8105C15.0727 15.6599 15.3347 16.4119 15.499 16.9541C15.5314 17.0609 15.5588 17.16 15.584 17.25H16.25C16.6642 17.25 17 17.5858 17 18C17 18.4142 16.6642 18.75 16.25 18.75H3.75C3.33579 18.75 3 18.4142 3 18C3 17.5858 3.33579 17.25 3.75 17.25H4.41602C4.44121 17.16 4.46862 17.0609 4.50098 16.9541C4.6653 16.4119 4.92735 15.6599 5.31934 14.8105C6.00618 13.3225 7.10725 11.5048 8.81348 10C7.10725 8.49522 6.00618 6.67755 5.31934 5.18945C4.92735 4.34014 4.6653 3.58814 4.50098 3.0459C4.46862 2.93913 4.44121 2.83997 4.41602 2.75H3.75C3.33579 2.75 3 2.41421 3 2C3 1.58579 3.33579 1.25 3.75 1.25H16.25ZM10 10.959C8.39086 12.3111 7.33993 14.011 6.68066 15.4395C6.35577 16.1434 6.13123 16.774 5.98145 17.25H14.0186C13.8688 16.774 13.6442 16.1434 13.3193 15.4395C12.6601 14.011 11.6091 12.3111 10 10.959ZM5.98145 2.75C6.13123 3.22598 6.35577 3.85658 6.68066 4.56055C7.33987 5.98882 8.39113 7.68798 10 9.04004C11.6089 7.68798 12.6601 5.98882 13.3193 4.56055C13.6442 3.85658 13.8688 3.22598 14.0186 2.75H5.98145Z",fill:"currentColor",key:"5lxrr3"}]]}; +export{C as hourglass}; \ No newline at end of file diff --git a/wwwroot/chunk-B6e7dF8L.js b/wwwroot/chunk-B6e7dF8L.js new file mode 100644 index 0000000..3ea207f --- /dev/null +++ b/wwwroot/chunk-B6e7dF8L.js @@ -0,0 +1,2 @@ +var e={name:"eraser",meta:{tags:["eraser","delete","remove","wipe","clean"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.9261 2.25742C11.6079 1.57564 12.7053 1.57567 13.3871 2.25742L17.7435 6.61289C18.425 7.29472 18.4242 8.39215 17.7426 9.07383L10.1029 16.7135H16.0511C16.4654 16.7135 16.8011 17.0493 16.8011 17.4635C16.8011 17.8776 16.4653 18.2135 16.0511 18.2135H8.2113C7.65347 18.3345 7.04918 18.1781 6.61365 17.7428L2.2572 13.3873C1.57551 12.7056 1.57561 11.6082 2.2572 10.9264L6.55798 6.62461C6.57713 6.59993 6.59783 6.57599 6.62048 6.55332C6.64338 6.53042 6.6678 6.50916 6.69275 6.48984L10.9261 2.25742ZM3.31775 11.9869C3.22194 12.0829 3.22185 12.2308 3.31775 12.3268L7.6742 16.6822C7.71693 16.7248 7.76966 16.747 7.82361 16.7516C7.86905 16.737 7.91549 16.724 7.96423 16.7184C7.98115 16.7081 7.99822 16.697 8.01306 16.6822L11.851 12.8443L7.15564 8.14902L3.31775 11.9869ZM12.3265 3.31797C12.2305 3.222 12.0827 3.22197 11.9867 3.31797L8.21619 7.08848L12.9115 11.7838L16.682 8.01328C16.7779 7.91739 16.7786 7.76946 16.683 7.67344L12.3265 3.31797Z",fill:"currentColor",key:"ppym5m"}]]}; +export{e as eraser}; \ No newline at end of file diff --git a/wwwroot/chunk-B6lZiRFI.js b/wwwroot/chunk-B6lZiRFI.js new file mode 100644 index 0000000..84a409e --- /dev/null +++ b/wwwroot/chunk-B6lZiRFI.js @@ -0,0 +1,2 @@ +var C={name:"thumbtack",meta:{tags:["thumbtack","pin","mark","secure","set"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.25 2.75H6.75V8C6.75 9.0095 5.92823 9.62747 5.2832 9.87012C4.60803 10.1241 4.20262 10.7932 3.97266 11.5791C3.90371 11.8148 3.85635 12.0451 3.82324 12.25H16.1768C16.1437 12.0451 16.0963 11.8148 16.0273 11.5791C15.7974 10.7932 15.392 10.1241 14.7168 9.87012C14.0718 9.62747 13.25 9.0095 13.25 8V2.75ZM14.75 8C14.75 8.05247 14.769 8.123 14.8516 8.21387C14.9387 8.30982 15.0776 8.40379 15.2451 8.4668C16.5887 8.97242 17.1929 10.2185 17.4678 11.1582C17.61 11.6446 17.6791 12.0992 17.7139 12.4297C17.7314 12.596 17.7406 12.7338 17.7451 12.832C17.7474 12.8812 17.7484 12.9208 17.749 12.9492C17.7493 12.9633 17.7499 12.9749 17.75 12.9834V12.999C17.75 12.9993 17.75 13 17 13H17.75C17.75 13.4142 17.4142 13.75 17 13.75H10.75V18C10.75 18.4142 10.4142 18.75 10 18.75C9.58579 18.75 9.25 18.4142 9.25 18V13.75H3C2.58579 13.75 2.25 13.4142 2.25 13H3L2.25 12.999V12.9834C2.25009 12.9749 2.25067 12.9633 2.25098 12.9492C2.25159 12.9208 2.25262 12.8812 2.25488 12.832C2.25941 12.7338 2.26863 12.596 2.28613 12.4297C2.32091 12.0992 2.38997 11.6446 2.53223 11.1582C2.80709 10.2185 3.41134 8.97242 4.75488 8.4668C4.92237 8.40379 5.06125 8.30982 5.14844 8.21387C5.23098 8.123 5.25 8.05247 5.25 8V2.75H5C4.58579 2.75 4.25 2.41421 4.25 2C4.25 1.58579 4.58579 1.25 5 1.25H15C15.4142 1.25 15.75 1.58579 15.75 2C15.75 2.41421 15.4142 2.75 15 2.75H14.75V8Z",fill:"currentColor",key:"c18jal"}]]}; +export{C as thumbtack}; \ No newline at end of file diff --git a/wwwroot/chunk-B7BL3zbf.js b/wwwroot/chunk-B7BL3zbf.js new file mode 100644 index 0000000..5358a7b --- /dev/null +++ b/wwwroot/chunk-B7BL3zbf.js @@ -0,0 +1,2 @@ +var r={name:"arrow-u-turn-up-right",meta:{tags:["redirect","curve right","return up","turn","arrow-u-turn-up-right"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.4697 2.46967C13.7626 2.17678 14.2374 2.17678 14.5303 2.46967L18.5303 6.46967C18.5787 6.51807 18.616 6.57314 18.6484 6.62983C18.664 6.65698 18.6803 6.68369 18.6924 6.71283C18.7131 6.76283 18.7279 6.81454 18.7373 6.86713C18.745 6.91027 18.75 6.95458 18.75 6.99994C18.75 7.04466 18.7448 7.08824 18.7373 7.1308C18.7279 7.18375 18.7132 7.23574 18.6924 7.28608C18.6715 7.33644 18.645 7.38355 18.6143 7.42768C18.5893 7.46339 18.5621 7.49834 18.5303 7.53022L14.5303 11.5302C14.2374 11.8231 13.7626 11.8231 13.4697 11.5302C13.1768 11.2373 13.1769 10.7626 13.4697 10.4697L16.1895 7.74994H7.5C6.21837 7.74994 5.00175 8.21355 4.11523 9.01947C3.23121 9.82322 2.75 10.8972 2.75 11.9999C2.75001 12.5476 2.86896 13.092 3.10156 13.6025C3.33426 14.1131 3.6772 14.5822 4.11523 14.9804C5.00175 15.7863 6.21839 16.2499 7.5 16.2499H13C13.4142 16.2499 13.75 16.5857 13.75 16.9999C13.75 17.4141 13.4142 17.7499 13 17.7499H7.5C5.86434 17.7499 4.28281 17.1601 3.10645 16.0908C2.52327 15.5606 2.0564 14.9269 1.73633 14.2246C1.41615 13.5218 1.25001 12.7655 1.25 11.9999C1.25 10.4506 1.9277 8.98072 3.10645 7.90912C4.28281 6.83979 5.86433 6.24994 7.5 6.24994H16.1895L13.4697 3.53022C13.1768 3.23733 13.1769 2.76257 13.4697 2.46967Z",fill:"currentColor",key:"ai7hpk"}]]}; +export{r as arrowUTurnUpRight}; \ No newline at end of file diff --git a/wwwroot/chunk-B7xoC2Vs.js b/wwwroot/chunk-B7xoC2Vs.js new file mode 100644 index 0000000..7ba96d7 --- /dev/null +++ b/wwwroot/chunk-B7xoC2Vs.js @@ -0,0 +1,2 @@ +var t={name:"sort-up-fill",meta:{tags:["sort-up-fill","ascending","arrange","rise"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.52606 5.91785C9.82056 5.6776 10.2554 5.69521 10.53 5.9696L17.53 12.9696C17.7444 13.1841 17.8091 13.5067 17.6931 13.787C17.577 14.0672 17.303 14.2499 16.9997 14.2499H2.99969C2.69648 14.2497 2.42238 14.0671 2.30634 13.787C2.19043 13.5068 2.25508 13.184 2.46942 12.9696L9.46942 5.9696L9.52606 5.91785Z",fill:"currentColor",key:"2cs1w8"}]]}; +export{t as sortUpFill}; \ No newline at end of file diff --git a/wwwroot/chunk-B87MtNIR.js b/wwwroot/chunk-B87MtNIR.js new file mode 100644 index 0000000..17a1ce0 --- /dev/null +++ b/wwwroot/chunk-B87MtNIR.js @@ -0,0 +1,2 @@ +var l={name:"star-half-fill",meta:{tags:["star-half-fill","rate","like","average"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.1702 1.26953C10.5096 1.34877 10.7503 1.65149 10.7503 2V15.2695C10.7503 15.5481 10.5955 15.8039 10.3489 15.9336L5.14874 18.6641C4.89619 18.7966 4.59048 18.774 4.35968 18.6064C4.12896 18.4388 4.01295 18.1551 4.06085 17.874L4.9837 12.4717L1.06671 8.64648C0.86246 8.4471 0.788904 8.14934 0.877258 7.87793C0.965674 7.60658 1.20028 7.40906 1.48273 7.36816L6.90265 6.58301L9.32745 1.66797C9.48169 1.35559 9.83093 1.19053 10.1702 1.26953Z",fill:"currentColor",key:"e0oq4t"}]]}; +export{l as starHalfFill}; \ No newline at end of file diff --git a/wwwroot/chunk-B8jc3gjs.js b/wwwroot/chunk-B8jc3gjs.js new file mode 100644 index 0000000..eff7937 --- /dev/null +++ b/wwwroot/chunk-B8jc3gjs.js @@ -0,0 +1,2 @@ +var e={name:"wave-pulse",meta:{tags:["wave-pulse","frequency","rhythm","beat","vibration","rate"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.05274 3.25202C8.35532 3.27352 8.61599 3.47498 8.71191 3.76276L12.1387 14.044L14.3291 9.66412C14.4562 9.41024 14.7161 9.25006 15 9.25006H17C17.4142 9.25006 17.75 9.58585 17.75 10.0001C17.75 10.4143 17.4142 10.7501 17 10.7501H15.4639L12.6709 16.335C12.5353 16.6062 12.2497 16.7694 11.9473 16.7481C11.6447 16.7266 11.384 16.5251 11.2881 16.2374L7.86035 5.95514L5.6709 10.335C5.54385 10.5891 5.28408 10.7501 5 10.7501H3C2.5858 10.7501 2.25003 10.4143 2.25 10.0001C2.25 9.58585 2.58579 9.25006 3 9.25006H4.53613L7.3291 3.6651C7.4647 3.39391 7.75031 3.23069 8.05274 3.25202Z",fill:"currentColor",key:"19lh07"}]]}; +export{e as wavePulse}; \ No newline at end of file diff --git a/wwwroot/chunk-B9TmWO65.js b/wwwroot/chunk-B9TmWO65.js new file mode 100644 index 0000000..00703c8 --- /dev/null +++ b/wwwroot/chunk-B9TmWO65.js @@ -0,0 +1,2 @@ +var e={name:"folder-open",meta:{tags:["folder-open","access-files","open-directory","open-folder","file-access"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M5.83984 2.75C6.06354 2.75 6.27549 2.85002 6.41797 3.02246L9.08398 6.25H14.0303C15.5289 6.25015 16.71 7.5109 16.71 9V9.25H18.5C18.7618 9.25 19.0046 9.38666 19.1406 9.61035C19.2766 9.83432 19.2859 10.1132 19.165 10.3457L15.7852 16.8457C15.6561 17.0939 15.3999 17.25 15.1201 17.25H1.5C1.23815 17.25 0.995431 17.1133 0.859375 16.8896C0.78689 16.7703 0.751915 16.6353 0.751953 16.5H0.75V5.5C0.75 4.01091 1.93103 2.75018 3.42969 2.75H5.83984ZM2.73535 15.75H14.6641L17.2646 10.75H5.33594L2.73535 15.75ZM3.42969 4.25C2.80862 4.25018 2.25 4.78931 2.25 5.5V13.4326L4.21484 9.6543L4.26855 9.56543C4.40793 9.36926 4.63504 9.25004 4.87988 9.25H15.21V9C15.21 8.28929 14.6514 7.75016 14.0303 7.75H8.73047C8.5067 7.75 8.29384 7.65009 8.15137 7.47754L5.48633 4.25H3.42969Z",fill:"currentColor",key:"iiu2jd"}]]}; +export{e as folderOpen}; \ No newline at end of file diff --git a/wwwroot/chunk-B9Vc_lY6.js b/wwwroot/chunk-B9Vc_lY6.js new file mode 100644 index 0000000..4b6ef80 --- /dev/null +++ b/wwwroot/chunk-B9Vc_lY6.js @@ -0,0 +1,2 @@ +var C={name:"key",meta:{tags:["key","unlock","access","secret","password"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13 1.25C16.1756 1.25004 18.75 3.82439 18.75 7.00001C18.75 10.1756 16.1756 12.75 13 12.75C11.6821 12.75 10.4688 12.3053 9.49901 11.5596C9.49582 11.5629 9.49349 11.5671 9.49022 11.5703L7.06054 14L8.53026 15.4697C8.82311 15.7626 8.82311 16.2374 8.53026 16.5303C8.23738 16.8232 7.76261 16.8231 7.46972 16.5303L5.99999 15.0606L5.06054 16L6.53026 17.4697C6.82311 17.7626 6.82311 18.2374 6.53026 18.5303C6.23738 18.8232 5.76261 18.8231 5.46972 18.5303L3.99999 17.0606L3.03026 18.0303C2.73738 18.3232 2.26261 18.3231 1.96972 18.0303C1.67685 17.7374 1.67683 17.2626 1.96972 16.9697L8.43944 10.5C7.69421 9.53042 7.24999 8.31743 7.24999 7.00001C7.24999 3.82437 9.82435 1.25 13 1.25ZM13 2.75C10.6528 2.75 8.74999 4.65279 8.74999 7.00001C8.74999 9.34722 10.6528 11.25 13 11.25C15.3472 11.25 17.25 9.34719 17.25 7.00001C17.25 4.65282 15.3472 2.75004 13 2.75Z",fill:"currentColor",key:"cm3yv"}]]}; +export{C as key}; \ No newline at end of file diff --git a/wwwroot/chunk-BAPPY9P4.js b/wwwroot/chunk-BAPPY9P4.js new file mode 100644 index 0000000..108e6b9 --- /dev/null +++ b/wwwroot/chunk-BAPPY9P4.js @@ -0,0 +1,2 @@ +var C={name:"whatsapp",meta:{tags:["whatsapp","chat","message","instant-messaging","call"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.604 4.325C14.108 2.825 12.115 2 9.99699 2C5.62599 2 2.068 5.557 2.068 9.929C2.068 11.325 2.432 12.69 3.125 13.893L2 18L6.20399 16.896C7.36099 17.528 8.665 17.86 9.993 17.86H9.99699C14.365 17.86 18.001 14.303 18.001 9.931C18 7.814 17.1 5.825 15.604 4.325ZM9.99699 16.525C8.81099 16.525 7.651 16.207 6.64 15.607L6.401 15.464L3.908 16.118L4.572 13.686L4.415 13.436C3.754 12.386 3.408 11.175 3.408 9.929C3.408 6.297 6.365 3.34 10.001 3.34C11.762 3.34 13.415 4.026 14.658 5.272C15.901 6.518 16.665 8.172 16.662 9.933C16.661 13.568 13.629 16.525 9.99699 16.525ZM13.611 11.589C13.415 11.489 12.44 11.01 12.257 10.946C12.075 10.878 11.943 10.846 11.811 11.046C11.679 11.246 11.3 11.689 11.182 11.825C11.068 11.957 10.95 11.975 10.753 11.875C9.589 11.293 8.824 10.836 8.057 9.51801C7.853 9.16801 8.261 9.193 8.639 8.436C8.703 8.304 8.67099 8.19 8.62099 8.09C8.57099 7.99 8.17499 7.015 8.00999 6.619C7.84899 6.233 7.685 6.287 7.564 6.28C7.45 6.273 7.318 6.27299 7.185 6.27299C7.052 6.27299 6.839 6.323 6.656 6.519C6.474 6.719 5.963 7.198 5.963 8.173C5.963 9.148 6.674 10.091 6.77 10.223C6.87 10.355 8.166 12.355 10.156 13.216C11.413 13.759 11.906 13.805 12.535 13.712C12.917 13.655 13.706 13.233 13.871 12.769C14.035 12.305 14.035 11.908 13.985 11.826C13.94 11.735 13.807 11.685 13.611 11.589Z",fill:"currentColor",key:"4wv8mp"}]]}; +export{C as whatsapp}; \ No newline at end of file diff --git a/wwwroot/chunk-BC8lBI2r.js b/wwwroot/chunk-BC8lBI2r.js new file mode 100644 index 0000000..65784d4 --- /dev/null +++ b/wwwroot/chunk-BC8lBI2r.js @@ -0,0 +1,2 @@ +var C={name:"dollar",meta:{tags:["dollar","money","currency","cash","payment"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1.25C10.4142 1.25 10.75 1.58579 10.75 2V3.25H14C14.4142 3.25 14.75 3.58579 14.75 4C14.75 4.41421 14.4142 4.75 14 4.75H10.75V9.25H11.5C13.7306 9.25 15.75 10.8206 15.75 13C15.75 15.1794 13.7306 16.75 11.5 16.75H10.75V18C10.75 18.4142 10.4142 18.75 10 18.75C9.58579 18.75 9.25 18.4142 9.25 18V16.75H5C4.58579 16.75 4.25 16.4142 4.25 16C4.25 15.5858 4.58579 15.25 5 15.25H9.25V10.75H8.5C6.2694 10.75 4.25 9.17936 4.25 7C4.25 4.82064 6.2694 3.25 8.5 3.25H9.25V2C9.25 1.58579 9.58579 1.25 10 1.25ZM10.75 15.25H11.5C13.1294 15.25 14.25 14.1406 14.25 13C14.25 11.8594 13.1294 10.75 11.5 10.75H10.75V15.25ZM8.5 4.75C6.8706 4.75 5.75 5.85936 5.75 7C5.75 8.14064 6.8706 9.25 8.5 9.25H9.25V4.75H8.5Z",fill:"currentColor",key:"hpots7"}]]}; +export{C as dollar}; \ No newline at end of file diff --git a/wwwroot/chunk-BCCfqxL2.js b/wwwroot/chunk-BCCfqxL2.js new file mode 100644 index 0000000..2351989 --- /dev/null +++ b/wwwroot/chunk-BCCfqxL2.js @@ -0,0 +1,2 @@ +var C={name:"flag",meta:{tags:["flag","report","banner"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7.72656 1.25263C8.20985 1.28981 8.72 1.46632 9.18848 1.66767C9.66629 1.87304 10.1694 2.13439 10.6426 2.38154C11.1268 2.63442 11.581 2.87248 12.002 3.05927C12.431 3.24969 12.7629 3.35751 13.0029 3.38447H13.0049C13.1337 3.39919 13.4143 3.37429 13.8398 3.28095C14.2401 3.19315 14.6935 3.06327 15.127 2.92548C15.5582 2.7884 15.9591 2.647 16.2529 2.53974C16.3993 2.48629 16.5185 2.44111 16.6006 2.40986C16.6416 2.39424 16.6741 2.38193 16.6953 2.37372C16.7057 2.36972 16.7136 2.36694 16.7188 2.36493C16.7213 2.36392 16.7234 2.36246 16.7246 2.362H16.7256C16.9564 2.27135 17.2179 2.30045 17.4229 2.44013C17.6276 2.57984 17.75 2.81235 17.75 3.06025V11.5895C17.75 11.8978 17.5613 12.175 17.2744 12.2878H17.2734V12.2888H17.2715C17.2698 12.2894 17.2668 12.2905 17.2637 12.2917C17.2573 12.2942 17.2481 12.2979 17.2363 12.3024C17.2127 12.3116 17.1784 12.3249 17.1348 12.3415C17.0472 12.3748 16.9212 12.4221 16.7676 12.4782C16.4606 12.5903 16.0383 12.7391 15.5811 12.8845C15.1258 13.0292 14.6243 13.1745 14.1611 13.2761C13.7233 13.3721 13.2311 13.4502 12.835 13.405V13.404C12.3607 13.3506 11.8585 13.1669 11.3936 12.9606C10.9197 12.7503 10.4188 12.4866 9.94824 12.2409C9.46662 11.9894 9.01375 11.7552 8.59668 11.5759C8.17021 11.3926 7.84396 11.2958 7.61231 11.278V11.277C7.42018 11.263 7.06441 11.3004 6.57715 11.3952C6.1089 11.4863 5.58255 11.6177 5.08301 11.7546C4.58519 11.891 4.12264 12.0308 3.78418 12.1364C3.77264 12.14 3.76125 12.1436 3.75 12.1472V17.9997C3.75 18.4139 3.41421 18.7497 3 18.7497C2.58579 18.7497 2.25 18.4139 2.25 17.9997V3.07001C2.25003 2.74817 2.45576 2.46191 2.76074 2.35908H2.76172L2.76367 2.3581C2.76554 2.35747 2.7681 2.3563 2.77148 2.35517C2.77859 2.35279 2.78939 2.34984 2.80273 2.3454C2.82944 2.33653 2.86835 2.32354 2.91797 2.30732C3.01754 2.27475 3.16093 2.22853 3.33594 2.17353C3.68562 2.06364 4.16581 1.91714 4.68555 1.77411C5.2037 1.63153 5.77142 1.48913 6.29199 1.38837C6.78917 1.29216 7.31631 1.21952 7.72656 1.25263ZM7.60742 2.74775C7.41855 2.73207 7.06443 2.76653 6.57617 2.86103C6.10872 2.95152 5.58319 3.08303 5.08398 3.2204C4.58653 3.35729 4.12446 3.49787 3.78613 3.60419C3.77409 3.60798 3.76172 3.61124 3.75 3.61493V10.5778C4.02895 10.4938 4.34944 10.4006 4.68652 10.3083C5.20444 10.1664 5.77117 10.0237 6.29102 9.92255C6.7904 9.82544 7.31836 9.75131 7.72656 9.78193H7.72754C8.21086 9.8191 8.71997 9.99658 9.18848 10.1979C9.66629 10.4033 10.1694 10.6647 10.6426 10.9118C11.1267 11.1647 11.5811 11.4028 12.002 11.5895C12.431 11.7799 12.7629 11.8878 13.0029 11.9147H13.0049C13.1337 11.9295 13.4143 11.9045 13.8398 11.8112C14.2401 11.7234 14.6935 11.5926 15.127 11.4548C15.5568 11.3181 15.9565 11.1771 16.25 11.07V4.13154C16.0437 4.20286 15.8171 4.27914 15.5811 4.35419C15.1258 4.4989 14.6243 4.64421 14.1611 4.74579C13.724 4.84167 13.2327 4.91948 12.8369 4.8747V4.87568C12.362 4.82254 11.8591 4.63695 11.3936 4.43036C10.9197 4.22005 10.4188 3.9564 9.94824 3.71064C9.46658 3.45909 9.01378 3.22489 8.59668 3.0456C8.17021 2.8623 7.84396 2.76557 7.61231 2.74775H7.60742Z",fill:"currentColor",key:"ziequy"}]]}; +export{C as flag}; \ No newline at end of file diff --git a/wwwroot/chunk-BCve8E0Y.js b/wwwroot/chunk-BCve8E0Y.js new file mode 100644 index 0000000..c45b281 --- /dev/null +++ b/wwwroot/chunk-BCve8E0Y.js @@ -0,0 +1,2 @@ +var C={name:"sync",meta:{tags:["sync","update","refresh","reload","synchronize"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.7197 12.1484C15.8534 11.7565 16.2799 11.5472 16.6719 11.6807C17.0639 11.8143 17.2732 12.2408 17.1397 12.6328C16.7937 13.6478 16.2135 14.6078 15.4102 15.4111C12.5773 18.2435 7.99192 18.2437 5.15919 15.4111L4.32032 14.5713V17.001C4.31993 17.4148 3.98423 17.7509 3.57032 17.751C3.15636 17.751 2.82072 17.4149 2.82032 17.001V12.7607C2.82032 12.3465 3.15611 12.0107 3.57032 12.0107H7.81056C8.2246 12.0109 8.56056 12.3467 8.56056 12.7607C8.56029 13.1746 8.22443 13.5105 7.81056 13.5107H5.38087L6.22072 14.3506C8.46769 16.597 12.1026 16.597 14.3496 14.3506C14.9859 13.7143 15.4456 12.9529 15.7197 12.1484ZM16.4307 2.25C16.8447 2.25027 17.1807 2.58596 17.1807 3V7.24023C17.1805 7.65417 16.8446 7.98996 16.4307 7.99023H12.1904C11.7763 7.99023 11.4406 7.65434 11.4404 7.24023C11.4404 6.82602 11.7762 6.49023 12.1904 6.49023H14.6201L13.7803 5.65039C11.5332 3.40331 7.89751 3.40335 5.6504 5.65039C5.01415 6.28671 4.55438 7.04704 4.28029 7.85156C4.14673 8.24361 3.72019 8.45282 3.32814 8.31934C2.93639 8.18562 2.72696 7.76006 2.86036 7.36816C3.20621 6.35295 3.7864 5.39338 4.58986 4.58984C7.42275 1.75702 12.008 1.75697 14.8408 4.58984L15.6807 5.42969V3C15.6807 2.58579 16.0165 2.25 16.4307 2.25Z",fill:"currentColor",key:"tkon4v"}]]}; +export{C as sync}; \ No newline at end of file diff --git a/wwwroot/chunk-BEhxoQU3.js b/wwwroot/chunk-BEhxoQU3.js new file mode 100644 index 0000000..7df5291 --- /dev/null +++ b/wwwroot/chunk-BEhxoQU3.js @@ -0,0 +1,2 @@ +var C={name:"verified",meta:{tags:["verified","confirm","checked","authenticated","approved"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16.8004 9.99987C16.8005 9.67939 16.8935 9.38876 16.986 9.16198C17.0772 8.93826 17.1972 8.70875 17.2819 8.53991C17.377 8.3504 17.4387 8.21503 17.4723 8.10241C17.5045 7.9944 17.4917 7.96875 17.4958 7.98424L17.4948 7.98229C17.4899 7.97281 17.4708 7.94234 17.4147 7.88952C17.3292 7.80902 17.2072 7.72334 17.0299 7.60827C16.8726 7.50611 16.652 7.36873 16.4616 7.2235C16.2689 7.07652 16.0397 6.87256 15.8795 6.59362C15.7206 6.31654 15.6586 6.01716 15.6276 5.77721C15.5969 5.5401 15.5887 5.28148 15.5788 5.09362C15.5676 4.88268 15.5539 4.73306 15.527 4.61705C15.5113 4.54963 15.4948 4.51597 15.487 4.50182C15.4721 4.49379 15.4387 4.47888 15.3737 4.46373C15.2576 4.43673 15.1074 4.42222 14.8961 4.411C14.7082 4.40103 14.4496 4.39284 14.2126 4.36217C13.9727 4.33113 13.6742 4.26913 13.3971 4.11022L13.3922 4.10827C13.1161 3.94716 12.9147 3.71665 12.7702 3.52526C12.6276 3.33639 12.4903 3.11542 12.3893 2.95983C12.275 2.78368 12.1887 2.6628 12.1081 2.57799C12.0496 2.51653 12.018 2.49935 12.0104 2.49596L12.0055 2.49401C12.0217 2.49836 11.9962 2.485 11.8874 2.51745C11.7748 2.55105 11.6393 2.61287 11.4499 2.70788C11.281 2.7926 11.0515 2.91355 10.8278 3.00475C10.601 3.09716 10.3103 3.1903 9.98989 3.1903C9.66944 3.19027 9.37878 3.09718 9.152 3.00475C8.92818 2.91352 8.69884 2.7926 8.52993 2.70788C8.34042 2.61282 8.20506 2.55103 8.09243 2.51745C7.98421 2.48518 7.95859 2.49815 7.97427 2.49401L7.97232 2.49498C7.9861 2.49123 7.95653 2.49332 7.87954 2.57506C7.79902 2.66058 7.71342 2.78249 7.59829 2.95983C7.49616 3.11716 7.35876 3.33778 7.21353 3.52819C7.06657 3.72082 6.86255 3.95009 6.58364 4.11022C6.30656 4.2692 6.00718 4.33113 5.76724 4.36217C5.53012 4.39282 5.27151 4.40103 5.08364 4.411C4.87259 4.42221 4.72311 4.43678 4.60708 4.46373C4.54041 4.47924 4.50628 4.4939 4.49185 4.50182C4.48392 4.51627 4.46926 4.55045 4.45376 4.61705C4.42681 4.73308 4.41223 4.88259 4.40103 5.09362C4.39106 5.28149 4.38285 5.5401 4.3522 5.77721C4.32116 6.01716 4.25923 6.31653 4.10025 6.59362L4.09829 6.59752C3.93719 6.8737 3.70668 7.07507 3.51529 7.21959C3.32643 7.3622 3.10547 7.49944 2.94986 7.60045C2.77379 7.71475 2.65283 7.8011 2.56802 7.8817C2.50721 7.93952 2.48964 7.97132 2.48599 7.97936L2.48404 7.98424C2.48816 7.96861 2.47523 7.99426 2.50747 8.10241C2.54106 8.21503 2.60284 8.3504 2.6979 8.53991C2.78263 8.70881 2.90354 8.93816 2.99478 9.16198C3.08722 9.38876 3.1803 9.6794 3.18032 9.99987C3.18032 10.3203 3.0872 10.611 2.99478 10.8378C2.90357 11.0615 2.78263 11.2909 2.6979 11.4598C2.60288 11.6492 2.54107 11.7847 2.50747 11.8973C2.49111 11.9522 2.48615 11.986 2.48501 12.0038L2.48404 12.0155L2.48501 12.0184C2.48114 12.0038 2.4827 12.0326 2.56509 12.1102C2.65063 12.1908 2.77244 12.2773 2.94986 12.3924C3.10713 12.4945 3.32795 12.6311 3.51821 12.7762C3.71094 12.9233 3.9401 13.128 4.10025 13.4071C4.25918 13.6841 4.32116 13.9826 4.3522 14.2225C4.38286 14.4596 4.39106 14.7182 4.40103 14.9061C4.41224 15.1173 4.42676 15.2676 4.45376 15.3837C4.4689 15.4486 4.48381 15.482 4.49185 15.4969C4.50598 15.5048 4.5396 15.5213 4.60708 15.537C4.72309 15.5639 4.87268 15.5775 5.08364 15.5887C5.2715 15.5987 5.53012 15.6069 5.76724 15.6376C5.97706 15.6647 6.23226 15.7153 6.47818 15.8339L6.58364 15.8895L6.58755 15.8924C6.86365 16.0535 7.0651 16.2831 7.20962 16.4745C7.35217 16.6633 7.48947 16.8843 7.59048 17.0399C7.70483 17.2161 7.7911 17.3379 7.87173 17.4227C7.9105 17.4635 7.93772 17.4844 7.95376 17.495L7.96939 17.5038L7.97427 17.5057C7.95872 17.5016 7.98433 17.5145 8.09243 17.4823C8.20507 17.4487 8.34042 17.3869 8.52993 17.2919C8.69878 17.2072 8.92828 17.0872 9.152 16.996C9.37879 16.9035 9.66943 16.8104 9.98989 16.8104C10.3104 16.8104 10.601 16.9035 10.8278 16.996C11.0515 17.0871 11.281 17.2071 11.4499 17.2919C11.6392 17.3869 11.7748 17.4487 11.8874 17.4823C11.9961 17.5147 12.0216 17.5014 12.0055 17.5057L12.0084 17.5048C11.9938 17.5086 12.0226 17.5071 12.1002 17.4247C12.1807 17.3392 12.2674 17.2181 12.3825 17.0409C12.4846 16.8835 12.621 16.662 12.7663 16.4715C12.9133 16.2788 13.118 16.0497 13.3971 15.8895C13.6741 15.7306 13.9727 15.6686 14.2126 15.6376C14.4496 15.6069 14.7082 15.5987 14.8961 15.5887C15.1074 15.5775 15.2576 15.564 15.3737 15.537C15.4395 15.5216 15.4723 15.5049 15.487 15.4969C15.4949 15.4823 15.5117 15.4495 15.527 15.3837C15.554 15.2676 15.5675 15.1173 15.5788 14.9061C15.5887 14.7182 15.5969 14.4596 15.6276 14.2225C15.6586 13.9826 15.7207 13.6841 15.8795 13.4071L15.8825 13.4022C16.0436 13.1261 16.2731 12.9247 16.4645 12.7801C16.6533 12.6375 16.8743 12.5003 17.0299 12.3993C17.2061 12.2849 17.3279 12.1987 17.4127 12.118C17.4929 12.0418 17.4974 12.0108 17.4948 12.0204L17.4958 12.0155C17.4915 12.0315 17.5047 12.0059 17.4723 11.8973C17.4387 11.7848 17.3769 11.6492 17.2819 11.4598C17.1972 11.291 17.0772 11.0615 16.986 10.8378C16.8935 10.6109 16.8004 10.3204 16.8004 9.99987ZM13.4997 6.71959C13.7925 6.42683 14.2673 6.42689 14.5602 6.71959C14.8531 7.01246 14.853 7.48724 14.5602 7.78014L9.04068 13.3006C8.90011 13.4412 8.70918 13.5203 8.5104 13.5204C8.31163 13.5204 8.12075 13.4411 7.98013 13.3006L5.46939 10.7909C5.17649 10.498 5.17649 10.0223 5.46939 9.72936C5.76214 9.43667 6.23703 9.43691 6.52993 9.72936L8.50943 11.7089L13.4997 6.71959ZM18.3004 9.99987C18.3004 10.0393 18.3135 10.1212 18.3747 10.2714C18.4371 10.4246 18.5175 10.5774 18.6227 10.787C18.7176 10.9761 18.8347 11.2167 18.9098 11.4686C18.9857 11.723 19.0371 12.0493 18.945 12.3983C18.8522 12.754 18.6436 13.018 18.4459 13.2059C18.2518 13.3905 18.0273 13.5412 17.8473 13.6581C17.6468 13.7883 17.5014 13.8773 17.3688 13.9774C17.2433 14.0722 17.1951 14.1298 17.1793 14.1551C17.1632 14.1844 17.1362 14.2575 17.1159 14.4149C17.0947 14.5786 17.0893 14.7504 17.0768 14.9862C17.0655 15.1987 17.0478 15.4662 16.9879 15.7235C16.9272 15.9844 16.8094 16.2953 16.5553 16.5546C16.5518 16.5582 16.5482 16.5618 16.5446 16.5653C16.2853 16.8194 15.9744 16.9372 15.7135 16.9979C15.4562 17.0578 15.1887 17.0755 14.9762 17.0868C14.7405 17.0993 14.5686 17.1047 14.4049 17.1258C14.2441 17.1467 14.1712 17.1743 14.1432 17.1903C14.1173 17.2052 14.0579 17.2529 13.9596 17.3817C13.8596 17.5128 13.7693 17.6585 13.6403 17.8573C13.5242 18.0361 13.3742 18.2595 13.192 18.453C13.0069 18.6496 12.7467 18.861 12.3922 18.9549L12.3913 18.954C12.0412 19.0472 11.7138 18.9959 11.4586 18.9198C11.2069 18.8447 10.9671 18.7275 10.778 18.6327C10.5681 18.5274 10.4147 18.4471 10.2614 18.3846C10.1112 18.3235 10.0294 18.3104 9.98989 18.3104C9.95037 18.3104 9.86856 18.3234 9.71841 18.3846C9.56511 18.4471 9.41248 18.5275 9.20278 18.6327C9.01361 18.7276 8.77314 18.8446 8.52114 18.9198C8.26645 18.9957 7.93984 19.0475 7.59048 18.9549C7.23511 18.8621 6.97264 18.6534 6.78482 18.4559C6.60025 18.2618 6.44954 18.0373 6.33267 17.8573C6.20259 17.6569 6.11337 17.5113 6.01333 17.3788C5.91504 17.2486 5.85552 17.2022 5.83169 17.1883H5.83071C5.79922 17.172 5.72604 17.1454 5.57486 17.1258C5.41128 17.1047 5.2392 17.0993 5.00357 17.0868C4.79124 17.0755 4.5243 17.0577 4.26724 16.9979C4.00628 16.9372 3.69455 16.8195 3.43521 16.5653C3.43164 16.5618 3.42796 16.5581 3.42446 16.5546C3.17053 16.2954 3.05354 15.9843 2.99282 15.7235C2.93297 15.4662 2.91524 15.1987 2.90396 14.9862C2.89144 14.7505 2.88606 14.5785 2.86489 14.4149C2.84407 14.2539 2.81548 14.1811 2.79946 14.1532C2.78457 14.1273 2.73746 14.0676 2.60904 13.9696C2.47794 13.8696 2.33131 13.7793 2.13247 13.6503C1.95369 13.5342 1.73017 13.3842 1.53677 13.202C1.34022 13.0169 1.12872 12.7567 1.03482 12.4022L1.03579 12.4012C0.942568 12.0512 0.993892 11.7238 1.06997 11.4686C1.14513 11.2167 1.2622 10.9761 1.35708 10.787C1.46227 10.5773 1.54265 10.4246 1.60513 10.2714C1.66635 10.1211 1.68032 10.0393 1.68032 9.99987C1.6803 9.96034 1.66636 9.87859 1.60513 9.72838C1.54263 9.57506 1.46231 9.42252 1.35708 9.21276C1.26217 9.02356 1.14513 8.78315 1.06997 8.53112C0.994025 8.27643 0.94226 7.94981 1.03482 7.60045C1.1276 7.24514 1.33635 6.98261 1.53384 6.79479C1.7279 6.61029 1.95247 6.4595 2.13247 6.34264C2.33308 6.21241 2.4793 6.12348 2.61196 6.0233C2.73801 5.92812 2.78396 5.86883 2.79946 5.84362C2.81568 5.81408 2.84463 5.7415 2.86489 5.58483C2.88603 5.42128 2.89145 5.24914 2.90396 5.01354C2.91523 4.80118 2.93306 4.5343 2.99282 4.27721C3.05353 4.01626 3.17032 3.70452 3.42446 3.44518L3.43521 3.43444C3.69455 3.18028 4.00628 3.06253 4.26724 3.00182C4.52426 2.94209 4.79126 2.92521 5.00357 2.91393C5.23916 2.90142 5.41131 2.896 5.57486 2.87487C5.73556 2.85407 5.80855 2.82547 5.83657 2.80944C5.86247 2.79458 5.92288 2.7478 6.02114 2.61901C6.12115 2.48792 6.21043 2.34128 6.3395 2.14245C6.45556 1.96366 6.60557 1.74018 6.78775 1.54674C6.97292 1.35012 7.23388 1.13867 7.58853 1.04479V1.04577C7.93864 0.952469 8.26596 1.00386 8.52114 1.07995C8.77316 1.1551 9.01359 1.27216 9.20278 1.36705C9.41253 1.47227 9.56509 1.55261 9.71841 1.6151C9.86861 1.67632 9.95036 1.69027 9.98989 1.6903C10.0294 1.6903 10.1112 1.67631 10.2614 1.6151C10.4147 1.55259 10.5681 1.47231 10.778 1.36705C10.9671 1.27222 11.2069 1.15505 11.4586 1.07995C11.713 1.0041 12.0394 0.952675 12.3883 1.04479L12.3893 1.04381C12.745 1.13659 13.008 1.34617 13.1959 1.54381C13.3805 1.73797 13.5312 1.96241 13.6481 2.14245C13.7783 2.34306 13.8673 2.48928 13.9674 2.62194C14.0614 2.74632 14.1195 2.79342 14.1452 2.80944C14.1741 2.82559 14.2466 2.85439 14.4049 2.87487C14.5686 2.89603 14.7405 2.90141 14.9762 2.91393C15.1887 2.92522 15.4562 2.94197 15.7135 3.00182C15.942 3.05498 16.209 3.15186 16.4459 3.34557L16.5446 3.43444L16.5553 3.44518C16.8095 3.70453 16.9272 4.01626 16.9879 4.27721C17.0477 4.53427 17.0655 4.80121 17.0768 5.01354C17.0893 5.24919 17.0947 5.42125 17.1159 5.58483C17.1366 5.7454 17.1643 5.81847 17.1803 5.84655C17.1952 5.87244 17.2429 5.93282 17.3717 6.03112C17.5027 6.131 17.6487 6.22054 17.8473 6.34948C18.0261 6.46553 18.2495 6.61554 18.443 6.79772C18.6392 6.98244 18.8498 7.24227 18.944 7.59557L18.9733 7.72643C19.0253 8.02792 18.9766 8.30734 18.9098 8.53112C18.8347 8.78313 18.7176 9.02358 18.6227 9.21276C18.5175 9.42248 18.4372 9.57508 18.3747 9.72838C18.3134 9.87855 18.3005 9.96035 18.3004 9.99987Z",fill:"currentColor",key:"mv1npw"}]]}; +export{C as verified}; \ No newline at end of file diff --git a/wwwroot/chunk-BFHBmffg.js b/wwwroot/chunk-BFHBmffg.js new file mode 100644 index 0000000..7b469b9 --- /dev/null +++ b/wwwroot/chunk-BFHBmffg.js @@ -0,0 +1,2 @@ +var C={name:"id-card",meta:{tags:["id-card","identification","personal-info","identity","proof"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 3.25C17.9665 3.25 18.75 4.0335 18.75 5V15C18.75 15.9665 17.9665 16.75 17 16.75H3C2.0335 16.75 1.25 15.9665 1.25 15V5C1.25 4.0335 2.0335 3.25 3 3.25H17ZM3 4.75C2.86193 4.75 2.75 4.86193 2.75 5V15C2.75 15.1381 2.86193 15.25 3 15.25H17C17.1381 15.25 17.25 15.1381 17.25 15V5C17.25 4.86193 17.1381 4.75 17 4.75H3ZM7 10.25C7.44119 10.25 7.88811 10.2497 8.29199 10.2842C8.69458 10.3186 9.11636 10.392 9.49707 10.5732C9.89898 10.7646 10.2341 11.0669 10.4551 11.5088C10.6661 11.931 10.75 12.4334 10.75 13C10.75 13.4142 10.4142 13.75 10 13.75C9.58579 13.75 9.25 13.4142 9.25 13C9.25 12.5667 9.18341 12.319 9.11328 12.1787C9.05301 12.0584 8.97547 11.9853 8.85254 11.9268C8.70829 11.8581 8.49255 11.8064 8.16406 11.7783C7.83674 11.7504 7.45872 11.75 7 11.75C6.54129 11.75 6.16326 11.7504 5.83594 11.7783C5.50745 11.8064 5.29171 11.8581 5.14746 11.9268C5.02453 11.9853 4.94699 12.0584 4.88672 12.1787C4.81659 12.319 4.75 12.5667 4.75 13C4.75 13.4142 4.41421 13.75 4 13.75C3.58579 13.75 3.25 13.4142 3.25 13C3.25 12.4334 3.33392 11.931 3.54492 11.5088C3.76586 11.0669 4.10102 10.7646 4.50293 10.5732C4.88364 10.392 5.30542 10.3186 5.70801 10.2842C6.11189 10.2497 6.55881 10.25 7 10.25ZM14 10.25C14.4142 10.25 14.75 10.5858 14.75 11C14.75 11.4142 14.4142 11.75 14 11.75H12C11.5858 11.75 11.25 11.4142 11.25 11C11.25 10.5858 11.5858 10.25 12 10.25H14ZM7 5.75C8.10457 5.75 9 6.64543 9 7.75C9 8.85457 8.10457 9.75 7 9.75C5.89543 9.75 5 8.85457 5 7.75C5 6.64543 5.89543 5.75 7 5.75ZM15 7.25C15.4142 7.25 15.75 7.58579 15.75 8C15.75 8.41421 15.4142 8.75 15 8.75H12C11.5858 8.75 11.25 8.41421 11.25 8C11.25 7.58579 11.5858 7.25 12 7.25H15ZM7 7.25C6.72386 7.25 6.5 7.47386 6.5 7.75C6.5 8.02614 6.72386 8.25 7 8.25C7.27614 8.25 7.5 8.02614 7.5 7.75C7.5 7.47386 7.27614 7.25 7 7.25Z",fill:"currentColor",key:"avlxm3"}]]}; +export{C as idCard}; \ No newline at end of file diff --git a/wwwroot/chunk-BFHotWUx.js b/wwwroot/chunk-BFHotWUx.js new file mode 100644 index 0000000..5facdcd --- /dev/null +++ b/wwwroot/chunk-BFHotWUx.js @@ -0,0 +1,2 @@ +var C={name:"sort-alpha-up",meta:{tags:["sort-alpha-up"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.0254 2.25098C6.03224 2.25121 6.03907 2.25153 6.0459 2.25195C6.08456 2.25429 6.12233 2.2596 6.15919 2.26758C6.19246 2.2748 6.22461 2.28607 6.25684 2.29785C6.26932 2.30242 6.28276 2.30437 6.29493 2.30957C6.31401 2.31772 6.33112 2.33004 6.34961 2.33984C6.37342 2.35248 6.39774 2.36387 6.41993 2.37891C6.45875 2.40523 6.49589 2.43533 6.53028 2.46973L9.03028 4.96973C9.32314 5.26261 9.32314 5.73739 9.03028 6.03027C8.7374 6.32316 8.26263 6.32314 7.96973 6.03027L6.75001 4.81055V17C6.75001 17.4142 6.41419 17.75 6.00001 17.75C5.58579 17.75 5.25001 17.4142 5.25001 17V4.81055L4.03028 6.03027C3.73739 6.32316 3.26263 6.32314 2.96973 6.03027C2.67684 5.73738 2.67684 5.26262 2.96973 4.96973L5.46973 2.46973L5.52637 2.41797C5.53657 2.40965 5.54808 2.40321 5.5586 2.39551C5.57414 2.38414 5.59004 2.37345 5.60645 2.36328C5.63035 2.34849 5.65462 2.3351 5.67969 2.32324C5.69787 2.31463 5.71641 2.30697 5.73536 2.2998C5.76293 2.28942 5.79094 2.28144 5.81934 2.27441C5.8394 2.26944 5.85923 2.26309 5.87989 2.25977C5.89094 2.25799 5.90198 2.25616 5.91309 2.25488C5.94158 2.2516 5.97063 2.25 6.00001 2.25C6.00851 2.25 6.01696 2.2507 6.0254 2.25098ZM15.3594 10.75C15.9419 10.75 16.3139 11.1617 16.4453 11.5527C16.5759 11.9416 16.5254 12.4392 16.1787 12.8115L16.1709 12.8193L13.3506 15.7598H15.75C16.164 15.7599 16.4999 16.0958 16.5 16.5098C16.5 16.9239 16.1641 17.2596 15.75 17.2598H12.6201C12.038 17.2597 11.671 16.8432 11.54 16.4648C11.4081 16.0831 11.4463 15.576 11.8096 15.1992H11.8106L14.6397 12.25H12.25C11.8359 12.2499 11.5 11.9142 11.5 11.5C11.5 11.0858 11.8359 10.7501 12.25 10.75H15.3594ZM13.9951 2.74805C14.4736 2.74812 14.8372 3.06717 14.9893 3.45996L14.9932 3.46875L14.9961 3.47852L16.6963 8.24902C16.8349 8.63891 16.6319 9.06791 16.2422 9.20703C15.8522 9.34596 15.4224 9.1418 15.2832 8.75195L15.0078 7.98047H12.9805L12.7061 8.75195C12.5669 9.14179 12.138 9.34589 11.7481 9.20703C11.3581 9.06798 11.1553 8.63901 11.294 8.24902L12.9932 3.47852L12.9971 3.46875L13.001 3.45996C13.1531 3.06712 13.5166 2.74805 13.9951 2.74805ZM13.5156 6.48047H14.4736L13.9941 5.13574L13.5156 6.48047Z",fill:"currentColor",key:"fvsney"}]]}; +export{C as sortAlphaUp}; \ No newline at end of file diff --git a/wwwroot/chunk-BFLYyYKm.js b/wwwroot/chunk-BFLYyYKm.js new file mode 100644 index 0000000..1a7450f --- /dev/null +++ b/wwwroot/chunk-BFLYyYKm.js @@ -0,0 +1,2 @@ +var t={name:"italic",meta:{tags:["text formatting","slant","oblique","emphasis","italic"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 1.25C17.4142 1.25 17.75 1.58579 17.75 2C17.75 2.41421 17.4142 2.75 17 2.75H13.5195L8.08203 17.25H11C11.4142 17.25 11.75 17.5858 11.75 18C11.75 18.4142 11.4142 18.75 11 18.75H3C2.58579 18.75 2.25 18.4142 2.25 18C2.25 17.5858 2.58579 17.25 3 17.25H6.48047L11.918 2.75H9C8.58579 2.75 8.25 2.41421 8.25 2C8.25 1.58579 8.58579 1.25 9 1.25H17Z",fill:"currentColor",key:"ofrbuf"}]]}; +export{t as italic}; \ No newline at end of file diff --git a/wwwroot/chunk-BFOrGqTe.js b/wwwroot/chunk-BFOrGqTe.js new file mode 100644 index 0000000..c6940a8 --- /dev/null +++ b/wwwroot/chunk-BFOrGqTe.js @@ -0,0 +1,2 @@ +var C={name:"vimeo",meta:{tags:["vimeo","video","movie","clip","streaming"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16.4 2H3.6C2.718 2 2 2.71801 2 3.60001V16.4C2 17.282 2.718 18 3.6 18H16.4C17.282 18 18 17.282 18 16.4V3.60001C18 2.71801 17.283 2 16.4 2ZM15.465 7.314C15.415 8.439 14.629 9.982 13.108 11.935C11.537 13.978 10.204 14.999 9.119 14.999C8.444 14.999 7.876 14.378 7.408 13.131C6.497 9.79901 6.108 7.845 5.358 7.845C5.272 7.845 4.969 8.027 4.451 8.388L3.908 7.68802C5.24 6.51702 6.512 5.21702 7.308 5.14502C8.208 5.05902 8.762 5.674 8.969 6.991C9.708 11.677 10.037 12.384 11.383 10.262C11.865 9.49799 12.126 8.91599 12.162 8.51599C12.287 7.32999 11.237 7.412 10.526 7.716C11.094 5.855 12.18 4.95201 13.783 5.00201C14.972 5.03601 15.533 5.807 15.465 7.314Z",fill:"currentColor",key:"973wgh"}]]}; +export{C as vimeo}; \ No newline at end of file diff --git a/wwwroot/chunk-BGJhCZji.js b/wwwroot/chunk-BGJhCZji.js new file mode 100644 index 0000000..407ebc2 --- /dev/null +++ b/wwwroot/chunk-BGJhCZji.js @@ -0,0 +1,2 @@ +var C={name:"mars",meta:{tags:["mars","male","man","men","gender"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.5 11.75C13.5 10.3142 12.9248 9.01399 11.9902 8.06543C11.0372 7.09822 9.71396 6.5 8.25 6.5C5.35051 6.5 3 8.8505 3 11.75C3 14.6495 5.35051 17 8.25 17C11.1495 17 13.5 14.6495 13.5 11.75ZM18.5 5.75C18.5 6.16421 18.1642 6.5 17.75 6.5C17.3358 6.5 17 6.16421 17 5.75V4.0752L13.5479 7.56934C14.456 8.71883 15 10.1711 15 11.75C15 15.4779 11.9779 18.5 8.25 18.5C4.52208 18.5 1.5 15.4779 1.5 11.75C1.5 8.02208 4.52208 5 8.25 5C9.85769 5 11.3341 5.56384 12.4932 6.50195L15.9541 3H14.25C13.8358 3 13.5 2.66421 13.5 2.25C13.5 1.83579 13.8358 1.5 14.25 1.5H17.75C18.1642 1.5 18.5 1.83579 18.5 2.25V5.75Z",fill:"currentColor",key:"wd6yn7"}]]}; +export{C as mars}; \ No newline at end of file diff --git a/wwwroot/chunk-BGL7AhjT.js b/wwwroot/chunk-BGL7AhjT.js new file mode 100644 index 0000000..c387104 --- /dev/null +++ b/wwwroot/chunk-BGL7AhjT.js @@ -0,0 +1,2 @@ +var e={name:"heart",meta:{tags:["heart","love","like","affection","favorite"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.281 3.70723C12.2186 1.76505 15.3584 1.76432 17.2957 3.70723L17.2976 3.70918C19.2334 5.652 19.2323 8.79984 17.2966 10.7414L10.531 17.5295C10.3903 17.6706 10.1991 17.7502 9.99977 17.7502C9.80048 17.7502 9.60923 17.6706 9.46852 17.5295L2.7029 10.7414C0.767289 8.79874 0.767289 5.65088 2.7029 3.70821C4.64004 1.76437 7.78348 1.76414 9.72047 3.70821L9.99977 3.98848L10.2791 3.70821L10.281 3.70723ZM16.2341 4.7668C14.8833 3.41139 12.6944 3.41161 11.3425 4.7668L11.3416 4.76778L11.3406 4.7668L10.531 5.58125C10.3903 5.72246 10.1991 5.80195 9.99977 5.80196C9.80042 5.80196 9.60924 5.72245 9.46852 5.58125L8.657 4.7668C7.3062 3.41153 5.11617 3.41149 3.7654 4.7668C2.413 6.12413 2.413 8.32549 3.7654 9.68282L9.99977 15.9367L16.2341 9.68282C17.5865 8.32638 17.5874 6.12496 16.2351 4.76778L16.2341 4.7668Z",fill:"currentColor",key:"du5rdn"}]]}; +export{e as heart}; \ No newline at end of file diff --git a/wwwroot/chunk-BGQsA6xm.js b/wwwroot/chunk-BGQsA6xm.js new file mode 100644 index 0000000..df7aaf6 --- /dev/null +++ b/wwwroot/chunk-BGQsA6xm.js @@ -0,0 +1,2 @@ +var C={name:"objects-column",meta:{tags:["objects-column","items","elements","organization","grid","layout"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7 13.25C7.9665 13.25 8.75 14.0335 8.75 15V17C8.75 17.9665 7.9665 18.75 7 18.75H3C2.0335 18.75 1.25 17.9665 1.25 17V15C1.25 14.0335 2.0335 13.25 3 13.25H7ZM17 9.25C17.9665 9.25 18.75 10.0335 18.75 11V17C18.75 17.9665 17.9665 18.75 17 18.75H13C12.0335 18.75 11.25 17.9665 11.25 17V11C11.25 10.0335 12.0335 9.25 13 9.25H17ZM3 14.75C2.86193 14.75 2.75 14.8619 2.75 15V17C2.75 17.1381 2.86193 17.25 3 17.25H7C7.13807 17.25 7.25 17.1381 7.25 17V15C7.25 14.8619 7.13807 14.75 7 14.75H3ZM13 10.75C12.8619 10.75 12.75 10.8619 12.75 11V17C12.75 17.1381 12.8619 17.25 13 17.25H17C17.1381 17.25 17.25 17.1381 17.25 17V11C17.25 10.8619 17.1381 10.75 17 10.75H13ZM7 1.25C7.9665 1.25 8.75 2.0335 8.75 3V9C8.75 9.9665 7.9665 10.75 7 10.75H3C2.0335 10.75 1.25 9.9665 1.25 9V3C1.25 2.0335 2.0335 1.25 3 1.25H7ZM3 2.75C2.86193 2.75 2.75 2.86193 2.75 3V9C2.75 9.13807 2.86193 9.25 3 9.25H7C7.13807 9.25 7.25 9.13807 7.25 9V3C7.25 2.86193 7.13807 2.75 7 2.75H3ZM17 1.25C17.9665 1.25 18.75 2.0335 18.75 3V5C18.75 5.9665 17.9665 6.75 17 6.75H13C12.0335 6.75 11.25 5.9665 11.25 5V3C11.25 2.0335 12.0335 1.25 13 1.25H17ZM13 2.75C12.8619 2.75 12.75 2.86193 12.75 3V5C12.75 5.13807 12.8619 5.25 13 5.25H17C17.1381 5.25 17.25 5.13807 17.25 5V3C17.25 2.86193 17.1381 2.75 17 2.75H13Z",fill:"currentColor",key:"o6rs9s"}]]}; +export{C as objectsColumn}; \ No newline at end of file diff --git a/wwwroot/chunk-BGa60lkb.js b/wwwroot/chunk-BGa60lkb.js new file mode 100644 index 0000000..5fef593 --- /dev/null +++ b/wwwroot/chunk-BGa60lkb.js @@ -0,0 +1,2 @@ +var t={name:"fast-forward",meta:{tags:["fast-forward","next","speed","quick","future"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18 2.24994C18.4141 2.24994 18.7498 2.58587 18.75 2.99994V17C18.75 17.4142 18.4142 17.75 18 17.75C17.5858 17.75 17.25 17.4142 17.25 17V10.8105L10.5303 17.5303C10.3158 17.7448 9.99313 17.8094 9.71289 17.6934C9.4327 17.5773 9.25 17.3033 9.25 17V10.8105L2.53027 17.5303C2.31579 17.7448 1.99313 17.8094 1.71289 17.6934C1.4327 17.5773 1.25 17.3033 1.25 17V2.99994C1.25013 2.69672 1.43273 2.42262 1.71289 2.30658C1.99303 2.19063 2.31582 2.25534 2.53027 2.46967L9.25 9.18943V2.99994C9.25013 2.69672 9.43273 2.42262 9.71289 2.30658C9.99303 2.19063 10.3158 2.25534 10.5303 2.46967L17.25 9.18943V2.99994C17.2502 2.58587 17.5859 2.24994 18 2.24994ZM2.75 15.1895L7.93945 9.99998L2.75 4.8105V15.1895ZM10.75 15.1895L15.9395 9.99998L10.75 4.8105V15.1895Z",fill:"currentColor",key:"3lt9ep"}]]}; +export{t as fastForward}; \ No newline at end of file diff --git a/wwwroot/chunk-BHSiIEz-.js b/wwwroot/chunk-BHSiIEz-.js new file mode 100644 index 0000000..8763b46 --- /dev/null +++ b/wwwroot/chunk-BHSiIEz-.js @@ -0,0 +1,2 @@ +var C={name:"list-tree",meta:{tags:["hierarchy","nested list","structure","tree view","list-tree"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M3.5 4.25C4.18921 4.25 4.75 4.81079 4.75 5.5C4.75 5.90756 4.55279 6.26873 4.25 6.49707V8C4.25 8.33152 4.38179 8.64937 4.61621 8.88379C4.85063 9.11821 5.16848 9.25 5.5 9.25H7.00293C7.23127 8.94721 7.59244 8.75 8 8.75C8.68921 8.75 9.25 9.31079 9.25 10C9.25 10.6892 8.68921 11.25 8 11.25C7.59244 11.25 7.23127 11.0528 7.00293 10.75H5.5C5.06086 10.75 4.63384 10.6425 4.25 10.4463V12.5C4.25 12.8315 4.38179 13.1494 4.61621 13.3838C4.85063 13.6182 5.16848 13.75 5.5 13.75H7.00293C7.23127 13.4472 7.59244 13.25 8 13.25C8.68921 13.25 9.25 13.8108 9.25 14.5C9.25 15.1892 8.68921 15.75 8 15.75C7.59244 15.75 7.23127 15.5528 7.00293 15.25H5.5C4.77065 15.25 4.07139 14.9601 3.55566 14.4443C3.03994 13.9286 2.75 13.2293 2.75 12.5V6.49707C2.44721 6.26873 2.25 5.90756 2.25 5.5C2.25 4.81079 2.81079 4.25 3.5 4.25ZM17 13.75C17.4141 13.75 17.7499 14.0859 17.75 14.5C17.75 14.9142 17.4142 15.25 17 15.25H12C11.5858 15.25 11.25 14.9142 11.25 14.5C11.2501 14.0859 11.5859 13.75 12 13.75H17ZM17 9.25C17.4141 9.25 17.7499 9.5859 17.75 10C17.75 10.4142 17.4142 10.75 17 10.75H12C11.5858 10.75 11.25 10.4142 11.25 10C11.2501 9.5859 11.5859 9.25 12 9.25H17ZM17 4.75C17.4141 4.75001 17.7499 5.08591 17.75 5.5C17.75 5.91421 17.4142 6.25001 17 6.25H8C7.58579 6.24999 7.25 5.9142 7.25 5.5C7.25001 5.08579 7.5858 4.75 8 4.75H17Z",fill:"currentColor",key:"w3z6dr"}]]}; +export{C as listTree}; \ No newline at end of file diff --git a/wwwroot/chunk-BHhvbblE.js b/wwwroot/chunk-BHhvbblE.js new file mode 100644 index 0000000..ccdf589 --- /dev/null +++ b/wwwroot/chunk-BHhvbblE.js @@ -0,0 +1,2 @@ +var t={name:"tag",meta:{tags:["tag","label","price","identifier","sticker"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.457 2.04492C10.6012 2.07375 10.7354 2.14453 10.8408 2.25L17.3213 8.72949L17.3252 8.73438C18.1917 9.61618 18.1918 11.0343 17.3252 11.916C17.3009 11.9408 17.2741 11.9626 17.2471 11.9834L11.9111 17.3203C11.0286 18.2029 9.60367 18.2032 8.7207 17.3213L2.24023 10.8506C2.09964 10.71 2.0196 10.5191 2.01953 10.3203V2.78027C2.01953 2.36606 2.35629 2.03027 2.77051 2.03027H10.3105L10.457 2.04492ZM3.52051 10.0078L9.78027 16.2598H9.78125C10.0784 16.5564 10.5536 16.5567 10.8506 16.2598L16.2598 10.8496C16.272 10.8374 16.2859 10.8267 16.2988 10.8154C16.5458 10.5173 16.5328 10.0737 16.2598 9.79102L10 3.53027H3.52051V10.0078ZM6.5 5.25C7.19 5.25 7.75 5.81 7.75 6.5C7.75 7.19 7.19 7.75 6.5 7.75C5.81 7.75 5.25 7.19 5.25 6.5C5.25 5.81 5.81 5.25 6.5 5.25Z",fill:"currentColor",key:"awlho3"}]]}; +export{t as tag}; \ No newline at end of file diff --git a/wwwroot/chunk-BHmq3J-Z.js b/wwwroot/chunk-BHmq3J-Z.js new file mode 100644 index 0000000..78f2a16 --- /dev/null +++ b/wwwroot/chunk-BHmq3J-Z.js @@ -0,0 +1,2 @@ +var C={name:"heading-6",meta:{tags:["h6","sixth header","section","subheading","heading-6"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 3.25C10.4142 3.25003 10.75 3.58581 10.75 4V16C10.75 16.4142 10.4142 16.75 10 16.75C9.58579 16.75 9.25 16.4142 9.25 16V10.75H2.75V16C2.75 16.4142 2.41419 16.75 2 16.75C1.58579 16.75 1.25 16.4142 1.25 16V4C1.25 3.58579 1.58579 3.25 2 3.25C2.41419 3.25003 2.75 3.58581 2.75 4V9.25H9.25V4C9.25 3.58579 9.58579 3.25 10 3.25ZM17.4697 7.46973C17.7626 7.17686 18.2374 7.17684 18.5303 7.46973C18.8231 7.76261 18.8231 8.23739 18.5303 8.53027C17.5455 9.51504 16.859 10.3272 16.4121 11.165C16.382 11.2215 16.3543 11.2789 16.3262 11.3359C16.542 11.2815 16.7673 11.25 17 11.25C18.5188 11.25 19.75 12.4812 19.75 14C19.75 15.5188 18.5188 16.75 17 16.75C15.5762 16.75 14.4045 15.6679 14.2637 14.2812L14.25 14C14.25 12.6382 14.5251 11.5154 15.0879 10.46C15.641 9.42295 16.4547 8.48476 17.4697 7.46973ZM17 12.75C16.3096 12.75 15.75 13.3096 15.75 14C15.75 14.6904 16.3096 15.25 17 15.25C17.6903 15.25 18.25 14.6903 18.25 14C18.25 13.3097 17.6903 12.75 17 12.75Z",fill:"currentColor",key:"6jbdfp"}]]}; +export{C as heading6}; \ No newline at end of file diff --git a/wwwroot/chunk-BIhv3LFO.js b/wwwroot/chunk-BIhv3LFO.js new file mode 100644 index 0000000..e002cad --- /dev/null +++ b/wwwroot/chunk-BIhv3LFO.js @@ -0,0 +1,2 @@ +var C={name:"sort-numeric-down",meta:{tags:["sort-numeric-down"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6 2.25C6.41419 2.25003 6.75 2.58581 6.75 3V15.1895L7.96973 13.9697C8.26263 13.6769 8.73739 13.6768 9.03028 13.9697C9.32313 14.2626 9.32313 14.7374 9.03028 15.0303L6.53028 17.5303C6.4984 17.5622 6.46345 17.5893 6.42774 17.6143C6.38361 17.6451 6.3365 17.6715 6.28614 17.6924C6.25408 17.7056 6.22077 17.7141 6.1875 17.7227C6.17438 17.7261 6.16183 17.7317 6.14844 17.7344C6.14261 17.7356 6.13672 17.7363 6.13086 17.7373C6.0883 17.7448 6.04472 17.75 6 17.75L5.92286 17.7461C5.90403 17.7442 5.88558 17.7406 5.86719 17.7373C5.86166 17.7363 5.8561 17.7355 5.85059 17.7344C5.8372 17.7317 5.82465 17.7261 5.81153 17.7227C5.77828 17.714 5.74493 17.7057 5.71289 17.6924C5.68375 17.6803 5.65704 17.664 5.62989 17.6484C5.5732 17.616 5.51813 17.5787 5.46973 17.5303L2.96973 15.0303C2.67684 14.7374 2.67684 14.2626 2.96973 13.9697C3.26263 13.6769 3.73739 13.6768 4.03028 13.9697L5.25 15.1895V3C5.25 2.58579 5.58579 2.25 6 2.25ZM14 10.75C15.2164 10.75 16.2039 11.7155 16.2451 12.9219C16.2478 12.9476 16.25 12.9736 16.25 13V13.5C16.25 13.9167 16.2495 14.2988 16.2285 14.6348C16.1593 16.0883 14.9268 17.2497 13.4805 17.25H13C12.5858 17.25 12.25 16.9142 12.25 16.5C12.25 16.0858 12.5858 15.75 13 15.75H13.4805C13.9035 15.7498 14.2884 15.5225 14.5166 15.1875C14.3505 15.2266 14.178 15.25 14 15.25C12.7574 15.25 11.75 14.2426 11.75 13C11.75 11.7574 12.7574 10.75 14 10.75ZM14 12.25C13.5858 12.25 13.25 12.5858 13.25 13C13.25 13.4142 13.5858 13.75 14 13.75C14.4142 13.75 14.75 13.4142 14.75 13C14.75 12.5858 14.4142 12.25 14 12.25ZM13.293 2.97852C13.7009 2.68712 14.2003 2.69082 14.5859 2.90332C14.9845 3.1231 15.25 3.55329 15.25 4.05078V8.50098C15.2495 8.91477 14.9139 9.25095 14.5 9.25098C14.0861 9.25098 13.7505 8.91479 13.75 8.50098V4.44141L13.3652 4.65625C13.0036 4.85761 12.5464 4.7267 12.3447 4.36523C12.1435 4.00359 12.2734 3.54736 12.6348 3.3457L13.293 2.97852Z",fill:"currentColor",key:"f6rfv5"}]]}; +export{C as sortNumericDown}; \ No newline at end of file diff --git a/wwwroot/chunk-BMJo6CoG.js b/wwwroot/chunk-BMJo6CoG.js new file mode 100644 index 0000000..df7ba22 --- /dev/null +++ b/wwwroot/chunk-BMJo6CoG.js @@ -0,0 +1,2 @@ +var C={name:"microchip",meta:{tags:["microchip","technology","circuit","processor","component"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.25 5C15.25 4.86193 15.1381 4.75 15 4.75H5C4.86193 4.75 4.75 4.86193 4.75 5V15C4.75 15.1381 4.86193 15.25 5 15.25H15C15.1381 15.25 15.25 15.1381 15.25 15V5ZM16.75 5.25H18C18.4142 5.25 18.75 5.58579 18.75 6C18.75 6.41421 18.4142 6.75 18 6.75H16.75V9.25H18C18.4142 9.25 18.75 9.58579 18.75 10C18.75 10.4142 18.4142 10.75 18 10.75H16.75V13.25H18C18.4142 13.25 18.75 13.5858 18.75 14C18.75 14.4142 18.4142 14.75 18 14.75H16.75V15C16.75 15.9665 15.9665 16.75 15 16.75H14.75V18C14.75 18.4142 14.4142 18.75 14 18.75C13.5858 18.75 13.25 18.4142 13.25 18V16.75H10.75V18C10.75 18.4142 10.4142 18.75 10 18.75C9.58579 18.75 9.25 18.4142 9.25 18V16.75H6.75V18C6.75 18.4142 6.41421 18.75 6 18.75C5.58579 18.75 5.25 18.4142 5.25 18V16.75H5C4.0335 16.75 3.25 15.9665 3.25 15V14.75H2C1.58579 14.75 1.25 14.4142 1.25 14C1.25 13.5858 1.58579 13.25 2 13.25H3.25V10.75H2C1.58579 10.75 1.25 10.4142 1.25 10C1.25 9.58579 1.58579 9.25 2 9.25H3.25V6.75H2C1.58579 6.75 1.25 6.41421 1.25 6C1.25 5.58579 1.58579 5.25 2 5.25H3.25V5C3.25 4.0335 4.0335 3.25 5 3.25H5.25V2C5.25 1.58579 5.58579 1.25 6 1.25C6.41421 1.25 6.75 1.58579 6.75 2V3.25H9.25V2C9.25 1.58579 9.58579 1.25 10 1.25C10.4142 1.25 10.75 1.58579 10.75 2V3.25H13.25V2C13.25 1.58579 13.5858 1.25 14 1.25C14.4142 1.25 14.75 1.58579 14.75 2V3.25H15C15.9665 3.25 16.75 4.0335 16.75 5V5.25Z",fill:"currentColor",key:"4idak2"}]]}; +export{C as microchip}; \ No newline at end of file diff --git a/wwwroot/chunk-BMjBqw4k.js b/wwwroot/chunk-BMjBqw4k.js new file mode 100644 index 0000000..f3f5275 --- /dev/null +++ b/wwwroot/chunk-BMjBqw4k.js @@ -0,0 +1,2 @@ +var L={name:"bolt",meta:{tags:["bolt","lightning","electicity","speed","charge"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.2412 0.982209C10.4824 0.607697 10.9087 0.54164 11.209 0.638459C11.5154 0.737307 11.7998 1.03233 11.7998 1.44998V1.50467L11.792 1.55936L10.8545 7.90018H15.3603C15.6983 7.90032 15.9624 8.09319 16.0976 8.32498C16.2252 8.54388 16.2768 8.87756 16.0908 9.18338L16.0937 9.18533L14.0039 12.6756L13.9961 12.6873L13.9892 12.698L9.77537 19.1863L9.77635 19.1873C9.53641 19.5712 9.10382 19.6386 8.80076 19.5408C8.49451 19.4419 8.21007 19.1476 8.20994 18.7303V18.6746L8.21776 18.6199L9.15526 12.2801H4.65037C4.31202 12.2801 4.04728 12.0871 3.91209 11.8553C3.78443 11.6363 3.73133 11.3011 3.91795 10.9949H3.91698L6.00682 7.50467L6.02049 7.48123L10.2412 0.981233V0.982209ZM7.27928 8.29862L5.79295 10.7801H9.91014C10.1104 10.7801 10.3356 10.8501 10.5127 11.0271C10.6897 11.2041 10.7597 11.4293 10.7597 11.6297V11.6853L10.7519 11.74L10.1406 15.8699L12.7305 11.8816L14.2168 9.40018H10.0996C9.89914 9.40009 9.67392 9.32992 9.49705 9.15311C9.32009 8.97605 9.24998 8.75001 9.24998 8.54959V8.4949L9.2578 8.44022L9.86815 4.30936L7.27928 8.29862Z",fill:"currentColor",key:"uu80x9"}]]}; +export{L as bolt}; \ No newline at end of file diff --git a/wwwroot/chunk-BMt4SNF3.js b/wwwroot/chunk-BMt4SNF3.js new file mode 100644 index 0000000..739b07a --- /dev/null +++ b/wwwroot/chunk-BMt4SNF3.js @@ -0,0 +1,2 @@ +var e={name:"caret-left",meta:{tags:["caret-left","previous","backward","left","return"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.5498 3.40042C13.777 3.23006 14.081 3.20231 14.335 3.32913C14.589 3.45617 14.75 3.71595 14.75 4.00003V16C14.75 16.2841 14.589 16.5439 14.335 16.6709C14.081 16.7977 13.777 16.77 13.5498 16.5996L5.5498 10.5996C5.36114 10.458 5.25 10.236 5.25 10C5.25 9.76409 5.36114 9.54207 5.5498 9.40042L13.5498 3.40042ZM7.24902 10L13.25 14.5V5.49905L7.24902 10Z",fill:"currentColor",key:"xub75s"}]]}; +export{e as caretLeft}; \ No newline at end of file diff --git a/wwwroot/chunk-BNZ57oy-.js b/wwwroot/chunk-BNZ57oy-.js new file mode 100644 index 0000000..fe758af --- /dev/null +++ b/wwwroot/chunk-BNZ57oy-.js @@ -0,0 +1,2 @@ +var C={name:"pause-circle",meta:{tags:["pause-circle","halt","wait","stop","break"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM8 6.25C8.41421 6.25 8.75 6.58579 8.75 7V13C8.75 13.4142 8.41421 13.75 8 13.75C7.58579 13.75 7.25 13.4142 7.25 13V7C7.25 6.58579 7.58579 6.25 8 6.25ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7V13C12.75 13.4142 12.4142 13.75 12 13.75C11.5858 13.75 11.25 13.4142 11.25 13V7C11.25 6.58579 11.5858 6.25 12 6.25Z",fill:"currentColor",key:"hljnqm"}]]}; +export{C as pauseCircle}; \ No newline at end of file diff --git a/wwwroot/chunk-BQPXz2ow.js b/wwwroot/chunk-BQPXz2ow.js new file mode 100644 index 0000000..4640e65 --- /dev/null +++ b/wwwroot/chunk-BQPXz2ow.js @@ -0,0 +1,2 @@ +var L={name:"hammer",meta:{tags:["hammer","tool","build","construction","fix"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.16211 1.17675C8.84553 0.49333 9.95428 0.49333 10.6377 1.17675L18.8232 9.36229C19.5067 10.0457 19.5067 11.1545 18.8232 11.8379L16.6377 14.0234C15.9543 14.7068 14.8455 14.7068 14.1621 14.0234L11.7988 11.6601L5.12989 18.3301C4.17424 19.2856 2.62553 19.2857 1.66992 18.3301C0.714322 17.3745 0.714387 15.8257 1.66992 14.8701L8.33887 8.20019L5.97656 5.83788C5.29315 5.15446 5.29315 4.04571 5.97656 3.36229L8.16211 1.17675ZM2.73047 15.9307C2.36072 16.3005 2.36066 16.8997 2.73047 17.2695C3.10029 17.6393 3.69948 17.6393 4.06934 17.2695L10.7393 10.5996L9.40039 9.26073L2.73047 15.9307ZM9.57715 2.23729C9.47961 2.13975 9.32129 2.13993 9.22363 2.23729L7.03711 4.42284C6.9396 4.52035 6.93985 4.6787 7.03711 4.77636L15.2236 12.9629C15.3213 13.0601 15.4796 13.0604 15.5772 12.9629L17.7627 10.7764C17.8601 10.6787 17.8602 10.5204 17.7627 10.4228L9.57715 2.23729Z",fill:"currentColor",key:"ens2mu"}]]}; +export{L as hammer}; \ No newline at end of file diff --git a/wwwroot/chunk-BQfQemsJ.js b/wwwroot/chunk-BQfQemsJ.js new file mode 100644 index 0000000..34d8755 --- /dev/null +++ b/wwwroot/chunk-BQfQemsJ.js @@ -0,0 +1,2 @@ +var t={name:"dot",meta:{tags:["point","small circle","indicator","bullet","dot"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 8.25C10.9625 8.25 11.75 9.0375 11.75 10C11.75 10.9625 10.9625 11.75 10 11.75C9.0375 11.75 8.25 10.9625 8.25 10C8.25 9.0375 9.0375 8.25 10 8.25Z",fill:"currentColor",key:"6vldma"}],["path",{d:"M11 10C11 9.45171 10.5483 9 10 9C9.45171 9 9 9.45171 9 10C9 10.5483 9.45171 11 10 11C10.5483 11 11 10.5483 11 10ZM12.5 10C12.5 11.3767 11.3767 12.5 10 12.5C8.62329 12.5 7.5 11.3767 7.5 10C7.5 8.62329 8.62329 7.5 10 7.5C11.3767 7.5 12.5 8.62329 12.5 10Z",fill:"currentColor",key:"8m9ml9"}]]}; +export{t as dot}; \ No newline at end of file diff --git a/wwwroot/chunk-BTG5G4zd.js b/wwwroot/chunk-BTG5G4zd.js new file mode 100644 index 0000000..260b5dc --- /dev/null +++ b/wwwroot/chunk-BTG5G4zd.js @@ -0,0 +1,2 @@ +var e={name:"undo",meta:{tags:["undo","revert","back","cancel","reverse"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.46973 1.46973C9.76262 1.17684 10.2374 1.17684 10.5303 1.46973C10.8231 1.76263 10.8232 2.23739 10.5303 2.53028L8.81055 4.25H10C14.0042 4.25 17.25 7.49579 17.25 11.5C17.25 15.5042 14.0042 18.75 10 18.75C5.99581 18.75 2.75003 15.5042 2.75 11.5C2.75 11.0858 3.08579 10.75 3.5 10.75C3.91421 10.75 4.25 11.0858 4.25 11.5C4.25003 14.6758 6.82423 17.25 10 17.25C13.1758 17.25 15.75 14.6758 15.75 11.5C15.75 8.32422 13.1758 5.75 10 5.75H8.81055L10.5303 7.46973C10.8231 7.76263 10.8232 8.23739 10.5303 8.53028C10.2374 8.82313 9.76261 8.82313 9.46973 8.53028L6.46973 5.53028C6.17684 5.23739 6.17686 4.76263 6.46973 4.46973L9.46973 1.46973Z",fill:"currentColor",key:"xu5ao6"}]]}; +export{e as undo}; \ No newline at end of file diff --git a/wwwroot/chunk-BUv4TMSF.js b/wwwroot/chunk-BUv4TMSF.js new file mode 100644 index 0000000..5615f5c --- /dev/null +++ b/wwwroot/chunk-BUv4TMSF.js @@ -0,0 +1,2 @@ +var C={name:"cart-minus",meta:{tags:["cart-minus","remove","purchase"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7.75 15.25C8.57843 15.25 9.25 15.9216 9.25 16.75C9.25 17.5784 8.57843 18.25 7.75 18.25C6.92157 18.25 6.25 17.5784 6.25 16.75C6.25 15.9216 6.92157 15.25 7.75 15.25ZM14.25 15.25C15.0784 15.25 15.75 15.9216 15.75 16.75C15.75 17.5784 15.0784 18.25 14.25 18.25C13.4216 18.25 12.75 17.5784 12.75 16.75C12.75 15.9216 13.4216 15.25 14.25 15.25ZM4 1.75C4.36246 1.75 4.67344 2.00959 4.73828 2.36621L5.17188 4.75H18C18.2308 4.75 18.4487 4.85628 18.5908 5.03809C18.7329 5.22006 18.7835 5.45765 18.7275 5.68164L16.7275 13.6816C16.6441 14.0155 16.3442 14.25 16 14.25H6C5.63754 14.25 5.32656 13.9904 5.26172 13.6338L3.37402 3.25H2C1.58579 3.25 1.25 2.91421 1.25 2.5C1.25 2.08579 1.58579 1.75 2 1.75H4ZM6.62598 12.75H15.415L17.04 6.25H5.44434L6.62598 12.75ZM13.1396 8.75C13.5539 8.75 13.8896 9.08579 13.8896 9.5C13.8896 9.91421 13.5539 10.25 13.1396 10.25H9.13965C8.7256 10.2498 8.38965 9.91409 8.38965 9.5C8.38965 9.08591 8.7256 8.7502 9.13965 8.75H13.1396Z",fill:"currentColor",key:"lkrzyv"}]]}; +export{C as cartMinus}; \ No newline at end of file diff --git a/wwwroot/chunk-BV-ol2QB.js b/wwwroot/chunk-BV-ol2QB.js new file mode 100644 index 0000000..e1597a7 --- /dev/null +++ b/wwwroot/chunk-BV-ol2QB.js @@ -0,0 +1,2 @@ +var t={name:"twitter",meta:{tags:["twitter","social-media","tweet","bird","x"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.5997 2.75H17.0543L11.6932 8.89159L18 17.25H13.063L9.19339 12.182L4.77097 17.25H2.31291L8.04607 10.6797L2 2.75H7.06215L10.5563 7.38233L14.5997 2.75ZM13.7375 15.7791H15.0969L6.3216 4.14423H4.86136L13.7375 15.7791Z",fill:"currentColor",key:"vfwqlp"}]]}; +export{t as twitter}; \ No newline at end of file diff --git a/wwwroot/chunk-BXxllqxh.js b/wwwroot/chunk-BXxllqxh.js new file mode 100644 index 0000000..45abf35 --- /dev/null +++ b/wwwroot/chunk-BXxllqxh.js @@ -0,0 +1,2 @@ +var C={name:"heading-4",meta:{tags:["h4","fourth header","section","subheading","heading-4"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 3.25C10.4142 3.25 10.75 3.58579 10.75 4V16C10.75 16.4142 10.4142 16.75 10 16.75C9.58579 16.75 9.25 16.4142 9.25 16V10.75H2.75V16C2.75 16.4142 2.41421 16.75 2 16.75C1.58579 16.75 1.25 16.4142 1.25 16V4C1.25 3.58579 1.58579 3.25 2 3.25C2.41421 3.25 2.75 3.58579 2.75 4V9.25H9.25V4C9.25 3.58579 9.58579 3.25 10 3.25ZM19 7.25C19.4142 7.25 19.75 7.58579 19.75 8V16C19.75 16.4142 19.4142 16.75 19 16.75C18.5858 16.75 18.25 16.4142 18.25 16V12.75H16C15.5359 12.75 15.0909 12.5655 14.7627 12.2373C14.4345 11.9091 14.25 11.4641 14.25 11V8C14.25 7.58579 14.5858 7.25 15 7.25C15.4142 7.25 15.75 7.58579 15.75 8V11C15.75 11.0663 15.7764 11.1299 15.8232 11.1768C15.8701 11.2236 15.9337 11.25 16 11.25H18.25V8C18.25 7.58579 18.5858 7.25 19 7.25Z",fill:"currentColor",key:"zg0x1r"}]]}; +export{C as heading4}; \ No newline at end of file diff --git a/wwwroot/chunk-BYUMETYD.js b/wwwroot/chunk-BYUMETYD.js new file mode 100644 index 0000000..9cb8557 --- /dev/null +++ b/wwwroot/chunk-BYUMETYD.js @@ -0,0 +1,184 @@ +import {V as Vn,M as M5,$ as $4,B as Bn,U as Un,P as Pi$1,E as Ei$1,L as L9,F as Fn,_ as _n,r as rn,l as ln,T as T0,a as an,c as cn,y as y5,v as vr,n as nn,z as z5,k as kr,H as Hr,o as o1,I,b as L,W,Q as Qr,d as ar,Z as Z8,e as co,O as Oo,q as q4,f as M4}from'./chunk-DIc0UlHL.js';import {g,F as Ft$1,U as Uo,V as VG,B as Bc,a as au,b as bp,Y as YM,c as cu,m as mD,z as z_,r as rM,n as n_,d as gD,e as zE,W as W_,o as oM,f as mn,$ as $t$1,i as iq,I as I$1,h as mu,u as uz,j as rq,k as oq,l as gs,p as Vc,q as cA,s as BE,t as uu,v as lu,w as VE,x as jM,y as nN,A as j0,Q as QE,C as IM,D as az,E as xt$1,G as su,H as EM,J as WI,K as b,L as yn,M as Bp,N as sz,O as cz,P as U,R as nq,S as sq,T as PM,X as XE,Z as qE,_ as aM,a0 as cM,a1 as hM,a2 as Ha,a3 as fu,a4 as fD,a5 as Gm,a6 as GE,a7 as Rm,a8 as xm,a9 as pN,aa as QM,ab as xp}from'./main-ILRVANDG.js';import {eye as C$1}from'./chunk-DqmIZI_F.js';import {eyeSlash as C}from'./chunk-BYlnnID-.js';var it=` + .p-card { + display: block; + background: dt('card.background'); + color: dt('card.color'); + box-shadow: dt('card.shadow'); + border-radius: dt('card.border.radius'); + display: flex; + flex-direction: column; + } + + .p-card-caption { + display: flex; + flex-direction: column; + gap: dt('card.caption.gap'); + } + + .p-card-body { + padding: dt('card.body.padding'); + display: flex; + flex-direction: column; + gap: dt('card.body.gap'); + } + + .p-card-title { + font-size: dt('card.title.font.size'); + font-weight: dt('card.title.font.weight'); + } + + .p-card-subtitle { + color: dt('card.subtitle.color'); + font-size: dt('card.subtitle.font.size'); + font-weight: dt('card.subtitle.font.weight'); + } +`;var ht=["header"],_t=["title"],yt=["subtitle"],vt=["content"],bt=["footer"],wt=["*",[["p-header"]],[["p-footer"]]],xt=["*","p-header","p-footer"];function Ct(t,o){t&1&&qE(0);}function Tt(t,o){if(t&1&&(Bc(0,"div",1),lu(1,1),VE(2,Ct,1,0,"ng-container",2),bp()),t&2){let e=EM();jM(e.cx("header")),zE("pBind",e.ptm("header")),n_(2),zE("ngTemplateOutlet",e.headerTemplate());}}function kt(t,o){if(t&1&&YM(0),t&2){let e=EM(2);xp(" ",e.header()," ");}}function Mt(t,o){t&1&&qE(0);}function St(t,o){if(t&1&&(Bc(0,"div",1),rM(1,kt,1,1),VE(2,Mt,1,0,"ng-container",2),bp()),t&2){let e=EM();jM(e.cx("title")),zE("pBind",e.ptm("title")),n_(),oM(e.showHeaderText()?1:-1),n_(),zE("ngTemplateOutlet",e.titleTemplate());}}function Dt(t,o){if(t&1&&YM(0),t&2){let e=EM(2);xp(" ",e.subheader()," ");}}function It(t,o){t&1&&qE(0);}function Et(t,o){if(t&1&&(Bc(0,"div",1),rM(1,Dt,1,1),VE(2,It,1,0,"ng-container",2),bp()),t&2){let e=EM();jM(e.cx("subtitle")),zE("pBind",e.ptm("subtitle")),n_(),oM(e.showSubheaderText()?1:-1),n_(),zE("ngTemplateOutlet",e.subtitleTemplate());}}function Nt(t,o){t&1&&qE(0);}function Pt(t,o){t&1&&qE(0);}function Ft(t,o){if(t&1&&(Bc(0,"div",1),lu(1,2),VE(2,Pt,1,0,"ng-container",2),bp()),t&2){let e=EM();jM(e.cx("footer")),zE("pBind",e.ptm("footer")),n_(2),zE("ngTemplateOutlet",e.footerTemplate());}}var Lt={root:"p-card p-component",header:"p-card-header",body:"p-card-body",caption:"p-card-caption",title:"p-card-title",subtitle:"p-card-subtitle",content:"p-card-content",footer:"p-card-footer"},nt=(()=>{class t extends WI{name="card";style=it;classes=Lt;static \u0275fac=(()=>{let e;return function(i){return (e||(e=Vc(t)))(i||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var ot=new I$1("CARD_INSTANCE"),ce=(()=>{class t extends I{componentName="Card";$pcCard=g(ot,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});_componentStyle=g(nt);header=mu();subheader=mu();headerFacet=uz(rq,{descendants:false});footerFacet=uz(oq,{descendants:false});headerTemplate=uz("header",{descendants:false});titleTemplate=uz("title",{descendants:false});subtitleTemplate=uz("subtitle",{descendants:false});contentTemplate=uz("content",{descendants:false});footerTemplate=uz("footer",{descendants:false});hasHeader=gs(()=>!!(this.headerFacet()||this.headerTemplate()));hasTitle=gs(()=>!!(this.header()||this.titleTemplate()));hasSubtitle=gs(()=>!!(this.subheader()||this.subtitleTemplate()));hasFooter=gs(()=>!!(this.footerFacet()||this.footerTemplate()));showHeaderText=gs(()=>this.header()&&!this.titleTemplate());showSubheaderText=gs(()=>this.subheader()&&!this.subtitleTemplate());onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}getBlockableElement(){return this.el.nativeElement}static \u0275fac=(()=>{let e;return function(i){return (e||(e=Vc(t)))(i||t)}})();static \u0275cmp=Uo({type:t,selectors:[["p-card"]],contentQueries:function(n,i,c){n&1&&QE(c,i.headerFacet,rq,4)(c,i.footerFacet,oq,4)(c,i.headerTemplate,ht,4)(c,i.titleTemplate,_t,4)(c,i.subtitleTemplate,yt,4)(c,i.contentTemplate,vt,4)(c,i.footerTemplate,bt,4),n&2&&IM(7);},hostVars:2,hostBindings:function(n,i){n&2&&jM(i.cx("root"));},inputs:{header:[1,"header"],subheader:[1,"subheader"]},features:[nN([nt,{provide:ot,useExisting:t},{provide:W,useExisting:t}]),j0([L]),BE],ngContentSelectors:xt,decls:8,vars:11,consts:[[3,"pBind","class"],[3,"pBind"],[4,"ngTemplateOutlet"]],template:function(n,i){n&1&&(uu(wt),rM(0,Tt,3,4,"div",0),Bc(1,"div",1),rM(2,St,3,5,"div",0),rM(3,Et,3,5,"div",0),Bc(4,"div",1),lu(5),VE(6,Nt,1,0,"ng-container",2),bp(),rM(7,Ft,3,4,"div",0),bp()),n&2&&(oM(i.hasHeader()?0:-1),n_(),jM(i.cx("body")),zE("pBind",i.ptm("body")),n_(),oM(i.hasTitle()?2:-1),n_(),oM(i.hasSubtitle()?3:-1),n_(),jM(i.cx("content")),zE("pBind",i.ptm("content")),n_(2),zE("ngTemplateOutlet",i.contentTemplate()),n_(),oM(i.hasFooter()?7:-1));},dependencies:[cA,iq,o1,L],encapsulation:2})}return t})(),at=(()=>{class t{static \u0275fac=function(n){return new(n||t)};static \u0275mod=mn({type:t});static \u0275inj=$t$1({imports:[ce,iq,o1,iq,o1]})}return t})();var Ot=(t,o)=>o[1].key||t;function Vt(t,o){if(t&1&&(Gm(),GE(0,"path")),t&2){let e=EM().$implicit;su("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function At(t,o){if(t&1&&(Gm(),GE(0,"circle")),t&2){let e=EM().$implicit;su("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function zt(t,o){if(t&1&&(Gm(),GE(0,"rect")),t&2){let e=EM().$implicit;su("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Rt(t,o){if(t&1&&(Gm(),GE(0,"line")),t&2){let e=EM().$implicit;su("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function $t(t,o){if(t&1&&(Gm(),GE(0,"polyline")),t&2){let e=EM().$implicit;su("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Ht(t,o){if(t&1&&(Gm(),GE(0,"polygon")),t&2){let e=EM().$implicit;su("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function jt(t,o){if(t&1&&(Gm(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Gt(t,o){if(t&1&&rM(0,Vt,1,9,":svg:path")(1,At,1,6,":svg:circle")(2,zt,1,9,":svg:rect")(3,Rt,1,7,":svg:line")(4,$t,1,4,":svg:polyline")(5,Ht,1,4,":svg:polygon")(6,jt,1,7,":svg:ellipse"),t&2){let e,n=o.$implicit;oM((e=n[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var rt=(()=>{class t extends M4{constructor(){super(),this._icon=C$1;}static \u0275fac=function(n){return new(n||t)};static \u0275cmp=Uo({type:t,selectors:[["svg","data-p-icon","eye"]],features:[BE],decls:2,vars:0,template:function(n,i){n&1&&aM(0,Gt,7,1,null,null,Ot),n&2&&cM(i.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var Ut=(t,o)=>o[1].key||t;function Wt(t,o){if(t&1&&(Gm(),GE(0,"path")),t&2){let e=EM().$implicit;su("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function qt(t,o){if(t&1&&(Gm(),GE(0,"circle")),t&2){let e=EM().$implicit;su("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Qt(t,o){if(t&1&&(Gm(),GE(0,"rect")),t&2){let e=EM().$implicit;su("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Kt(t,o){if(t&1&&(Gm(),GE(0,"line")),t&2){let e=EM().$implicit;su("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Zt(t,o){if(t&1&&(Gm(),GE(0,"polyline")),t&2){let e=EM().$implicit;su("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Yt(t,o){if(t&1&&(Gm(),GE(0,"polygon")),t&2){let e=EM().$implicit;su("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Jt(t,o){if(t&1&&(Gm(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Xt(t,o){if(t&1&&rM(0,Wt,1,9,":svg:path")(1,qt,1,6,":svg:circle")(2,Qt,1,9,":svg:rect")(3,Kt,1,7,":svg:line")(4,Zt,1,4,":svg:polyline")(5,Yt,1,4,":svg:polygon")(6,Jt,1,7,":svg:ellipse"),t&2){let e,n=o.$implicit;oM((e=n[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var st=(()=>{class t extends M4{constructor(){super(),this._icon=C;}static \u0275fac=function(n){return new(n||t)};static \u0275cmp=Uo({type:t,selectors:[["svg","data-p-icon","eye-slash"]],features:[BE],decls:2,vars:0,template:function(n,i){n&1&&aM(0,Xt,7,1,null,null,Ut),n&2&&cM(i.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var oe=` + .p-password { + display: inline-flex; + position: relative; + } + + .p-password .p-password-overlay { + min-width: 100%; + } + + .p-password-meter { + height: dt('password.meter.height'); + background: dt('password.meter.background'); + border-radius: dt('password.meter.border.radius'); + } + + .p-password-meter-label { + height: 100%; + width: 0; + transition: width 1s ease-in-out; + border-radius: dt('password.meter.border.radius'); + } + + .p-password-meter-weak { + background: dt('password.strength.weak.background'); + } + + .p-password-meter-medium { + background: dt('password.strength.medium.background'); + } + + .p-password-meter-strong { + background: dt('password.strength.strong.background'); + } + + .p-password-meter-text { + font-weight: dt('password.meter.text.font.weight'); + font-size: dt('password.meter.text.font.size'); + } + + .p-password-fluid { + display: flex; + } + + .p-password-fluid .p-password-input { + width: 100%; + } + + .p-password-input::-ms-reveal, + .p-password-input::-ms-clear { + display: none; + } + + .p-password-overlay { + padding: dt('password.overlay.padding'); + background: dt('password.overlay.background'); + color: dt('password.overlay.color'); + border: 1px solid dt('password.overlay.border.color'); + box-shadow: dt('password.overlay.shadow'); + border-radius: dt('password.overlay.border.radius'); + } + + .p-password-content { + display: flex; + flex-direction: column; + gap: dt('password.content.gap'); + } + + .p-password-toggle-mask-icon { + inset-inline-end: dt('form.field.padding.x'); + color: dt('password.icon.color'); + position: absolute; + top: 50%; + margin-top: calc(-1 * calc(dt('icon.size') / 2)); + width: dt('icon.size'); + height: dt('icon.size'); + } + + .p-password-clear-icon { + position: absolute; + top: 50%; + margin-top: calc(-1 * dt('icon.size') / 2); + cursor: pointer; + inset-inline-end: dt('form.field.padding.x'); + color: dt('form.field.icon.color'); + } + + .p-password:has(.p-password-toggle-mask-icon) .p-password-input { + padding-inline-end: calc((dt('form.field.padding.x') * 2) + dt('icon.size')); + } + + .p-password:has(.p-password-toggle-mask-icon) .p-password-clear-icon { + inset-inline-end: calc((dt('form.field.padding.x') * 2) + dt('icon.size')); + } + + .p-password:has(.p-password-clear-icon) .p-password-input { + padding-inline-end: calc((dt('form.field.padding.x') * 2) + dt('icon.size')); + } + + .p-password:has(.p-password-clear-icon):has(.p-password-toggle-mask-icon) .p-password-input { + padding-inline-end: calc((dt('form.field.padding.x') * 3) + calc(dt('icon.size') * 2)); + } + +`;var ei=["content"],ti=["footer"],ii=["header"],ni=["clearicon"],oi=["hideicon"],ai=["showicon"],ri=["overlay"],si=["input"];function li(t,o){if(t&1){let e=hM();Gm(),Bc(0,"svg",8),cu("click",function(){Rm(e);let i=EM(2);return xm(i.clear())}),bp();}if(t&2){let e=EM(2);jM(e.cx("clearIcon")),zE("pBind",e.ptm("clearIcon"));}}function di(t,o){t&1&&qE(0);}function pi(t,o){if(t&1){let e=hM();rM(0,li,1,3,":svg:svg",5),Bc(1,"span",6),cu("click",function(){Rm(e);let i=EM();return xm(i.clear())}),VE(2,di,1,0,"ng-container",7),bp();}if(t&2){let e=EM();oM(e.clearIconTemplate()?-1:0),n_(),jM(e.cx("clearIcon")),zE("pBind",e.ptm("clearIcon")),n_(),zE("ngTemplateOutlet",e.clearIconTemplate());}}function ci(t,o){if(t&1){let e=hM();Gm(),Bc(0,"svg",11),cu("click",function(){Rm(e);let i=EM(3);return xm(i.onMaskToggle())}),bp();}if(t&2){let e=EM(3);jM(e.cx("maskIcon")),zE("pBind",e.ptm("maskIcon"));}}function mi(t,o){t&1&&qE(0);}function ui(t,o){if(t&1){let e=hM();Bc(0,"span",6),cu("click",function(){Rm(e);let i=EM(3);return xm(i.onMaskToggle())}),VE(1,mi,1,0,"ng-container",12),bp();}if(t&2){let e=EM(3);zE("pBind",e.ptm("maskIcon")),n_(),zE("ngTemplateOutlet",e.hideIconTemplate())("ngTemplateOutletContext",e.maskIconContext);}}function fi(t,o){if(t&1&&rM(0,ci,1,3,":svg:svg",9)(1,ui,2,3,"span",10),t&2){let e=EM(2);oM(e.hideIconTemplate()?1:0);}}function gi(t,o){if(t&1){let e=hM();Gm(),Bc(0,"svg",14),cu("click",function(){Rm(e);let i=EM(3);return xm(i.onMaskToggle())}),bp();}if(t&2){let e=EM(3);jM(e.cx("unmaskIcon")),zE("pBind",e.ptm("unmaskIcon"));}}function hi(t,o){t&1&&qE(0);}function _i(t,o){if(t&1){let e=hM();Bc(0,"span",6),cu("click",function(){Rm(e);let i=EM(3);return xm(i.onMaskToggle())}),VE(1,hi,1,0,"ng-container",12),bp();}if(t&2){let e=EM(3);zE("pBind",e.ptm("unmaskIcon")),n_(),zE("ngTemplateOutlet",e.showIconTemplate())("ngTemplateOutletContext",e.unmaskIconContext);}}function yi(t,o){if(t&1&&rM(0,gi,1,3,":svg:svg",13)(1,_i,2,3,"span",10),t&2){let e=EM(2);oM(e.showIconTemplate()?1:0);}}function vi(t,o){if(t&1&&rM(0,fi,2,1)(1,yi,2,1),t&2){let e=EM();oM(e.unmasked()?0:1);}}function bi(t,o){t&1&&qE(0);}function wi(t,o){t&1&&qE(0);}function xi(t,o){if(t&1&&VE(0,wi,1,0,"ng-container",7),t&2){let e=EM(2);zE("ngTemplateOutlet",e.contentTemplate());}}function Ci(t,o){if(t&1&&(Bc(0,"div",10)(1,"div",10),au(2,"div",10),bp(),Bc(3,"div",10),YM(4),bp()()),t&2){let e=EM(2);jM(e.cx("content")),zE("pBind",e.ptm("content")),n_(),jM(e.cx("meter")),zE("pBind",e.ptm("meter")),n_(),jM(e.cx("meterLabel")),fu("width",e.meter?e.meter.width:""),zE("pBind",e.ptm("meterLabel")),su("data-p",e.meterDataP),n_(),jM(e.cx("meterText")),zE("pBind",e.ptm("meterText")),n_(),fD(e.infoText);}}function Ti(t,o){t&1&&qE(0);}function ki(t,o){if(t&1){let e=hM();Bc(0,"div",6),cu("click",function(i){Rm(e);let c=EM();return xm(c.onOverlayClick(i))}),VE(1,bi,1,0,"ng-container",7),rM(2,xi,1,1,"ng-container")(3,Ci,5,16,"div",15),VE(4,Ti,1,0,"ng-container",7),bp();}if(t&2){let e=EM();PM(e.sx("overlay")),jM(e.cx("overlay")),zE("pBind",e.ptm("overlay")),su("data-p",e.overlayDataP),n_(),zE("ngTemplateOutlet",e.headerTemplate()),n_(),oM(e.contentTemplate()?2:3),n_(2),zE("ngTemplateOutlet",e.footerTemplate());}}var Mi=` +${oe} + +/* For PrimeNG */ +.p-password-overlay { + min-width: 100%; +} + +p-password.ng-invalid.ng-dirty .p-inputtext { + border-color: dt('inputtext.invalid.border.color'); +} + +p-password.ng-invalid.ng-dirty .p-inputtext:enabled:focus { + border-color: dt('inputtext.focus.border.color'); +} + +p-password.ng-invalid.ng-dirty .p-inputtext::placeholder { + color: dt('inputtext.invalid.placeholder.color'); +} + +.p-password-fluid-directive { + width: 100%; +} + +/* Animations */ +.p-password-enter { + animation: p-animate-password-enter 300ms cubic-bezier(.19,1,.22,1); +} + +.p-password-leave { + animation: p-animate-password-leave 300ms cubic-bezier(.19,1,.22,1); +} + +@keyframes p-animate-password-enter { + from { + opacity: 0; + transform: scale(0.93); + } +} + +@keyframes p-animate-password-leave { + to { + opacity: 0; + transform: scale(0.93); + } +} +`,Si={root:({instance:t})=>({position:t.$appendTo()==="self"?"relative":void 0}),overlay:{position:"absolute"}},Di={root:({instance:t})=>["p-password p-component p-inputwrapper",{"p-inputwrapper-filled":t.$filled(),"p-variant-filled":t.$variant()==="filled","p-inputwrapper-focus":t.focused,"p-password-fluid":t.hasFluid}],rootDirective:({instance:t})=>["p-password p-inputtext p-component p-inputwrapper",{"p-inputwrapper-filled":t.$filled(),"p-variant-filled":t.$variant()==="filled","p-password-fluid-directive":t.hasFluid}],pcInputText:"p-password-input",maskIcon:"p-password-toggle-mask-icon p-password-mask-icon",unmaskIcon:"p-password-toggle-mask-icon p-password-unmask-icon",overlay:"p-password-overlay p-component",content:"p-password-content",meter:"p-password-meter",meterLabel:({instance:t})=>`p-password-meter-label ${t.meter?"p-password-meter-"+t.meter.strength:""}`,meterText:"p-password-meter-text",clearIcon:"p-password-clear-icon"},lt=(()=>{class t extends WI{name="password";style=Mi;classes=Di;inlineStyles=Si;static \u0275fac=(()=>{let e;return function(i){return (e||(e=Vc(t)))(i||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var dt=new I$1("PASSWORD_INSTANCE");var Ii={provide:q4,useExisting:Ha(()=>pt),multi:true},pt=(()=>{class t extends Qr{componentName="Password";bindDirectiveInstance=g(L,{self:true});$pcPassword=g(dt,{optional:true,skipSelf:true})??void 0;onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}ariaLabel=mu();ariaLabelledBy=mu();label=mu();promptLabel=mu();mediumRegex=mu("^(((?=.*[a-z])(?=.*[A-Z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[0-9])))(?=.{6,})");strongRegex=mu("^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.{8,})");weakLabel=mu();mediumLabel=mu();strongLabel=mu();inputId=mu();feedback=mu(true,{transform:yn});toggleMask=mu(void 0,{transform:yn});inputStyleClass=mu();inputStyle=mu();autocomplete=mu();placeholder=mu();showClear=mu(false,{transform:yn});autofocus=mu(void 0,{transform:yn});tabindex=mu(void 0,{transform:Bp});appendTo=mu("self");motionOptions=mu();overlayOptions=mu();onFocus=sz();onBlur=sz();onClear=sz();overlayViewChild=cz("overlay");inputViewChild=cz("input");contentTemplate=uz("content",{descendants:false});footerTemplate=uz("footer",{descendants:false});headerTemplate=uz("header",{descendants:false});clearIconTemplate=uz("clearicon",{descendants:false});hideIconTemplate=uz("hideicon",{descendants:false});showIconTemplate=uz("showicon",{descendants:false});$appendTo=gs(()=>this.appendTo()||this.config.overlayAppendTo());overlayVisible=U(false);meter;infoText;focused=false;unmasked=U(false);requiredAttr=gs(()=>this.required()?"":void 0);disabledAttr=gs(()=>this.$disabled()?"":void 0);inputType=gs(()=>this.unmasked()?"text":"password");get showClearIcon(){return this.showClear()&&this.value!=null}get maskIconContext(){return {class:this.cx("maskIcon")??""}}get unmaskIconContext(){return {class:this.cx("unmaskIcon")??""}}mediumCheckRegExp;strongCheckRegExp;resizeListener;scrollHandler;value=null;translationSubscription;_componentStyle=g(lt);overlayService=g(nq);onInit(){this.infoText=this.promptText(),this.mediumCheckRegExp=new RegExp(this.mediumRegex()),this.strongCheckRegExp=new RegExp(this.strongRegex()),this.translationSubscription=this.config.translationObserver.subscribe(()=>{this.updateUI(this.value||"");});}onInput(e){this.value=e.target.value,this.onModelChange(this.value);}onInputFocus(e){this.focused=true,this.feedback()&&this.overlayVisible.set(true),this.onFocus.emit(e);}onInputBlur(e){this.focused=false,this.feedback()&&this.overlayVisible.set(false),this.onModelTouched(),this.onBlur.emit(e);}onKeyUp(e){if(this.feedback()){let n=e.target.value;if(this.updateUI(n),e.code==="Escape"){this.overlayVisible()&&this.overlayVisible.set(false);return}this.overlayVisible()||this.overlayVisible.set(true);}}updateUI(e){let n=null,i=null;switch(this.testStrength(e)){case 1:n=this.weakText(),i={strength:"weak",width:"33.33%"};break;case 2:n=this.mediumText(),i={strength:"medium",width:"66.66%"};break;case 3:n=this.strongText(),i={strength:"strong",width:"100%"};break;default:n=this.promptText(),i=null;break}this.meter=i,this.infoText=n;}onMaskToggle(){this.unmasked.update(e=>!e);}onOverlayClick(e){this.overlayService.add({originalEvent:e,target:this.el.nativeElement});}testStrength(e){let n=0;return this.strongCheckRegExp?.test(e)?n=3:this.mediumCheckRegExp?.test(e)?n=2:e.length&&(n=1),n}promptText(){return this.promptLabel()||this.translate(sq.PASSWORD_PROMPT)}weakText(){return this.weakLabel()||this.translate(sq.WEAK)}mediumText(){return this.mediumLabel()||this.translate(sq.MEDIUM)}strongText(){return this.strongLabel()||this.translate(sq.STRONG)}clear(){this.value=null,this.onModelChange(this.value),this.writeValue(this.value),this.onClear.emit();}writeControlValue(e,n){e===void 0?this.value=null:this.value=e,this.feedback()&&this.updateUI(this.value||""),n(this.value);}onDestroy(){this.translationSubscription&&this.translationSubscription.unsubscribe();}get containerDataP(){return this.cn({fluid:this.hasFluid})}get meterDataP(){return this.cn({[this.meter?.strength]:this.meter?.strength})}get overlayDataP(){return this.cn({["overlay-"+this.$appendTo()]:"overlay-"+this.$appendTo()})}static \u0275fac=(()=>{let e;return function(i){return (e||(e=Vc(t)))(i||t)}})();static \u0275cmp=Uo({type:t,selectors:[["p-password"]],contentQueries:function(n,i,c){n&1&&QE(c,i.contentTemplate,ei,4)(c,i.footerTemplate,ti,4)(c,i.headerTemplate,ii,4)(c,i.clearIconTemplate,ni,4)(c,i.hideIconTemplate,oi,4)(c,i.showIconTemplate,ai,4),n&2&&IM(6);},viewQuery:function(n,i){n&1&&XE(i.overlayViewChild,ri,5)(i.inputViewChild,si,5),n&2&&IM(2);},hostVars:5,hostBindings:function(n,i){n&2&&(su("data-p",i.containerDataP),PM(i.sx("root")),jM(i.cx("root")));},inputs:{ariaLabel:[1,"ariaLabel"],ariaLabelledBy:[1,"ariaLabelledBy"],label:[1,"label"],promptLabel:[1,"promptLabel"],mediumRegex:[1,"mediumRegex"],strongRegex:[1,"strongRegex"],weakLabel:[1,"weakLabel"],mediumLabel:[1,"mediumLabel"],strongLabel:[1,"strongLabel"],inputId:[1,"inputId"],feedback:[1,"feedback"],toggleMask:[1,"toggleMask"],inputStyleClass:[1,"inputStyleClass"],inputStyle:[1,"inputStyle"],autocomplete:[1,"autocomplete"],placeholder:[1,"placeholder"],showClear:[1,"showClear"],autofocus:[1,"autofocus"],tabindex:[1,"tabindex"],appendTo:[1,"appendTo"],motionOptions:[1,"motionOptions"],overlayOptions:[1,"overlayOptions"]},outputs:{onFocus:"onFocus",onBlur:"onBlur",onClear:"onClear"},features:[nN([Ii,lt,{provide:dt,useExisting:t},{provide:W,useExisting:t}]),j0([L]),BE],decls:8,vars:34,consts:[["input",""],["overlay",""],["content",""],["pInputText","",3,"input","focus","blur","keyup","pSize","value","variant","invalid","pAutoFocus","pt","unstyled"],[3,"visibleChange","hostAttrSelector","visible","options","target","appendTo","unstyled","pt","motionOptions"],["data-p-icon","times",3,"class","pBind"],[3,"click","pBind"],[4,"ngTemplateOutlet"],["data-p-icon","times",3,"click","pBind"],["data-p-icon","eye-slash",3,"class","pBind"],[3,"pBind"],["data-p-icon","eye-slash",3,"click","pBind"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],["data-p-icon","eye",3,"class","pBind"],["data-p-icon","eye",3,"click","pBind"],[3,"class","pBind"]],template:function(n,i){n&1&&(Bc(0,"input",3,0),cu("input",function(D){return i.onInput(D)})("focus",function(D){return i.onInputFocus(D)})("blur",function(D){return i.onInputBlur(D)})("keyup",function(D){return i.onKeyUp(D)}),bp(),rM(2,pi,3,5),rM(3,vi,2,1),Bc(4,"p-overlay",4,1),cu("visibleChange",function(D){return i.overlayVisible.set(D)}),VE(6,ki,5,9,"ng-template",null,2,pN),bp()),n&2&&(PM(i.inputStyle()),jM(i.cn(i.cx("pcInputText"),i.inputStyleClass())),zE("pSize",i.size())("value",i.value)("variant",i.$variant())("invalid",i.invalid())("pAutoFocus",i.autofocus())("pt",i.ptm("pcInputText"))("unstyled",i.unstyled()),su("label",i.label())("aria-label",i.ariaLabel())("aria-labelledBy",i.ariaLabelledBy())("id",i.inputId())("tabindex",i.tabindex())("type",i.inputType())("placeholder",i.placeholder())("autocomplete",i.autocomplete())("name",i.name())("maxlength",i.maxlength())("minlength",i.minlength())("required",i.requiredAttr())("disabled",i.disabledAttr()),n_(2),oM(i.showClearIcon?2:-1),n_(),oM(i.toggleMask()?3:-1),n_(),zE("hostAttrSelector",i.$attrSelector)("visible",i.overlayVisible())("options",i.overlayOptions())("target","@parent")("appendTo",i.$appendTo())("unstyled",i.unstyled())("pt",i.ptm("pcOverlay"))("motionOptions",i.motionOptions()));},dependencies:[cA,ar,Z8,co,st,rt,Oo,iq,o1,L],encapsulation:2})}return t})(),ct=(()=>{class t{static \u0275fac=function(n){return new(n||t)};static \u0275mod=mn({type:t});static \u0275inj=$t$1({imports:[pt,iq,o1,iq,o1]})}return t})();var Ei={root:"p-password p-component"},mt=(()=>{class t extends WI{name="password";style=oe;classes=Ei;static \u0275fac=(()=>{let e;return function(i){return (e||(e=Vc(t)))(i||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var ut=(()=>{class t extends I{componentName="InputPassword";mask=az(true);_componentStyle=g(mt);toggleMask(){this.mask.set(!this.mask());}get inputType(){return this.mask()?"password":"text"}static \u0275fac=(()=>{let e;return function(i){return (e||(e=Vc(t)))(i||t)}})();static \u0275dir=xt$1({type:t,selectors:[["","pInputPassword",""]],hostVars:3,hostBindings:function(n,i){n&2&&(su("type",i.inputType),jM(i.cx("root")));},inputs:{mask:[1,"mask"]},outputs:{mask:"maskChange"},features:[nN([mt,{provide:W,useExisting:t}]),j0([{directive:ar,inputs:["invalid","invalid","variant","variant","fluid","fluid","pSize","pSize","pInputTextPT","pInputTextPT","pInputTextUnstyled","pInputTextUnstyled","hostName","hostName"]}]),BE]})}return t})();function Ni(t,o){if(t&1&&au(0,"fa-icon",10),t&2){let e=EM();zE("icon",e.faEye);}}function Pi(t,o){if(t&1&&au(0,"fa-icon",10),t&2){let e=EM();zE("icon",e.faEyeSlash);}}var ft=class t{signInIcon=Vn;mask=true;password=new M5("",{nonNullable:true,validators:[$4.required]});faEye=Bn;faEyeSlash=Un;router=g(Ft$1);login(){let o=this.password.value.trim();o&&(localStorage.setItem("APIKEY",o),this.router.navigateByUrl("/dashboard"));}static \u0275fac=function(e){return new(e||t)};static \u0275cmp=Uo({type:t,selectors:[["app-login"]],decls:24,vars:7,consts:[[1,"login-page"],[1,"login-panel"],[1,"brand"],[1,"brand-mark"],["alt","logo","height","42","ngSrc","/gotify-logo.svg","priority","","width","42"],[1,"eyebrow"],[1,"login-form",3,"ngSubmit"],["variant","in"],["autocomplete","current-password","id","password","pInputPassword","",3,"maskChange","mask","fluid","formControl"],[2,"cursor","pointer",3,"click"],[3,"icon"],["for","password"],["aria-label","Anmelden","pButton","","type","submit",3,"disabled","fluid"]],template:function(e,n){e&1&&(Bc(0,"main",0)(1,"section",1)(2,"p-card")(3,"div",2)(4,"span",3),au(5,"img",4),bp(),Bc(6,"div")(7,"p",5),YM(8,"iGotify Assistent UI"),bp(),Bc(9,"h1"),YM(10,"Login"),bp()()(),Bc(11,"form",6),cu("ngSubmit",function(){return n.login()}),Bc(12,"p-floatlabel",7)(13,"p-iconfield")(14,"input",8),mD("maskChange",function(c){return QM(n.mask,c)||(n.mask=c),c}),bp(),z_(),Bc(15,"p-inputicon",9),cu("click",function(){return n.mask=!n.mask}),rM(16,Ni,1,1,"fa-icon",10)(17,Pi,1,1,"fa-icon",10),bp()(),Bc(18,"label",11),YM(19,"Password"),bp()(),Bc(20,"button",12),au(21,"fa-icon",10),Bc(22,"span"),YM(23,"Sign In"),bp()()()()()()),e&2&&(n_(14),gD("mask",n.mask),zE("fluid",true)("formControl",n.password),W_(),n_(2),oM(n.mask?16:17),n_(4),zE("disabled",n.password.invalid)("fluid",true),n_(),zE("icon",n.signInIcon));},dependencies:[Pi$1,Ei$1,at,ce,L9,Fn,_n,rn,ln,T0,an,cn,y5,ct,vr,VG,nn,z5,ut,kr,Hr],styles:["[_nghost-%COMP%]{display:block;min-height:100dvh}.login-page[_ngcontent-%COMP%]{align-items:center;background:linear-gradient(135deg,color-mix(in srgb,var(--p-primary-color) 16%,transparent),transparent 38%),linear-gradient(315deg,color-mix(in srgb,transparent 42%,transparent),transparent 34%),transparent;display:flex;justify-content:center;min-height:100dvh;padding:2rem}.login-panel[_ngcontent-%COMP%]{max-width:28rem;width:100%}.brand[_ngcontent-%COMP%]{align-items:center;display:flex;gap:1rem;margin-bottom:1.5rem}.brand-mark[_ngcontent-%COMP%]{align-items:center;display:inline-flex;font-weight:700;height:3rem;justify-content:center;width:3rem}.eyebrow[_ngcontent-%COMP%]{color:var(--p-text-muted-color);font-size:.875rem;margin:0 0 .2rem}h1[_ngcontent-%COMP%]{color:var(--p-text-color);font-size:1.5rem;line-height:1.1;margin:0}.login-form[_ngcontent-%COMP%]{display:grid;gap:1rem}"]})};export{ft as Login}; \ No newline at end of file diff --git a/wwwroot/chunk-BYlnnID-.js b/wwwroot/chunk-BYlnnID-.js new file mode 100644 index 0000000..8c99dbc --- /dev/null +++ b/wwwroot/chunk-BYlnnID-.js @@ -0,0 +1,2 @@ +var C={name:"eye-slash",meta:{tags:["eye-slash","hide","private","unseen","invisible"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M3.46999 3.46973C3.76289 3.17696 4.23769 3.17688 4.53054 3.46973L16.5306 15.4697C16.8233 15.7626 16.8233 16.2374 16.5306 16.5303C16.2377 16.8231 15.7629 16.823 15.47 16.5303L14.4124 15.4727C13.1972 16.2508 11.7234 16.7499 10.0003 16.75C6.99409 16.75 4.80642 15.079 3.40944 13.4961C2.70716 12.7003 2.18616 11.9074 1.84108 11.3145C1.66819 11.0174 1.5383 10.7679 1.45045 10.5908C1.40658 10.5024 1.37291 10.4317 1.34987 10.3818C1.33842 10.357 1.32886 10.3374 1.32252 10.3232C1.31939 10.3162 1.31755 10.3099 1.31569 10.3057C1.31482 10.3037 1.31338 10.3021 1.31276 10.3008L1.31178 10.2988V10.2979C1.31454 10.2963 1.35767 10.2774 2.00026 10L1.31178 10.2969C1.23111 10.1098 1.23009 9.89788 1.30885 9.70996V9.70801C1.30923 9.70724 1.31035 9.70614 1.3108 9.70508C1.31174 9.70289 1.31329 9.69961 1.31471 9.69629C1.3177 9.68931 1.32131 9.67964 1.32643 9.66797C1.33705 9.64374 1.35256 9.60942 1.37233 9.56641C1.4119 9.48031 1.47048 9.35783 1.54713 9.20703C1.70032 8.90569 1.92898 8.48733 2.23463 8.01172C2.73213 7.23767 3.44493 6.29106 4.38601 5.44629L3.46999 4.53027C3.1771 4.23738 3.1771 3.76262 3.46999 3.46973ZM5.45046 6.51074C4.61173 7.25038 3.95951 8.10258 3.49636 8.82324C3.22238 9.24956 3.01835 9.62252 2.88405 9.88672C2.86458 9.92502 2.84684 9.96165 2.83034 9.99512C2.90415 10.1407 3.00634 10.3344 3.13796 10.5605C3.44755 11.0925 3.91225 11.8 4.53347 12.5039C5.784 13.9209 7.59663 15.25 10.0003 15.25C11.2833 15.25 12.3869 14.9161 13.3206 14.3809L11.7083 12.7686C10.4536 13.5457 8.7907 13.3904 7.70047 12.3008C6.61016 11.2105 6.45322 9.5459 7.23074 8.29102L5.45046 6.51074ZM10.0003 3.25C13.0064 3.2501 15.1942 4.921 16.5911 6.50391C17.2934 7.2997 17.8144 8.0926 18.1595 8.68555C18.3324 8.98265 18.4623 9.23211 18.5501 9.40918C18.594 9.49764 18.6277 9.56829 18.6507 9.61816C18.6621 9.64297 18.6717 9.66258 18.678 9.67676C18.6812 9.68379 18.683 9.69008 18.6849 9.69434C18.6858 9.69631 18.6872 9.69786 18.6878 9.69922L18.6888 9.70117V9.70215C18.6888 9.7025 18.6795 9.7068 18.0003 10L18.6888 10.2969L18.6858 10.3027C18.6844 10.3061 18.6824 10.3109 18.68 10.3164C18.675 10.3276 18.6683 10.3439 18.6595 10.3633C18.6417 10.4022 18.6158 10.4575 18.5823 10.5264C18.5151 10.6647 18.4162 10.8603 18.2845 11.0967C18.0212 11.569 17.6251 12.2106 17.0911 12.8926C16.8359 13.2186 16.3645 13.2755 16.0384 13.0205C15.7123 12.7652 15.6543 12.2939 15.9095 11.9678C16.3854 11.36 16.7397 10.7863 16.9739 10.3662C17.0526 10.225 17.1162 10.1008 17.1673 10C17.0937 9.85507 16.9927 9.66301 16.8626 9.43945C16.553 8.90753 16.0883 8.20004 15.4671 7.49609C14.2166 6.07911 12.4039 4.7501 10.0003 4.75C9.52755 4.75 9.07986 4.80351 8.65652 4.89355C8.25151 4.97973 7.85325 4.72132 7.76687 4.31641C7.68069 3.91134 7.93901 3.51306 8.34402 3.42676C8.86049 3.31689 9.41325 3.25 10.0003 3.25ZM8.34891 9.40918C8.12692 10.0272 8.26402 10.7432 8.76102 11.2402C9.25783 11.7366 9.9724 11.8719 10.5901 11.6504L8.34891 9.40918ZM18.6888 9.70312C18.7703 9.89221 18.7709 10.1067 18.6898 10.2959L18.0003 10L18.6888 9.70312Z",fill:"currentColor",key:"4j9v21"}]]}; +export{C as eyeSlash}; \ No newline at end of file diff --git a/wwwroot/chunk-B_vEGFq_.js b/wwwroot/chunk-B_vEGFq_.js new file mode 100644 index 0000000..09c22e1 --- /dev/null +++ b/wwwroot/chunk-B_vEGFq_.js @@ -0,0 +1,2 @@ +var C={name:"instagram",meta:{tags:["instagram","photos","hashtag","selfie","social"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 5.90003C7.73001 5.90003 5.9 7.73001 5.9 10C5.9 12.27 7.73001 14.1 10 14.1C12.27 14.1 14.1 12.27 14.1 10C14.1 7.73001 12.27 5.90003 10 5.90003ZM10 12.67C8.53001 12.67 7.33001 11.47 7.33001 10C7.33001 8.53001 8.53001 7.33003 10 7.33003C11.47 7.33003 12.67 8.53001 12.67 10C12.67 11.47 11.47 12.67 10 12.67ZM15.23 5.72999C15.23 6.25999 14.8 6.69001 14.27 6.69001C13.74 6.69001 13.31 6.25999 13.31 5.72999C13.31 5.19999 13.74 4.77003 14.27 4.77003C14.8 4.77003 15.23 5.19999 15.23 5.72999ZM17.94 6.70002C17.88 5.42002 17.59 4.27999 16.65 3.34999C15.71 2.40999 14.58 2.12001 13.3 2.06001C11.98 1.99001 8.02001 1.99001 6.70001 2.06001C5.42001 2.12001 4.29002 2.40999 3.35002 3.34999C2.41002 4.28999 2.12001 5.42002 2.06001 6.70002C1.99001 8.02002 1.99001 11.98 2.06001 13.3C2.12001 14.58 2.41002 15.72 3.35002 16.65C4.29002 17.59 5.42001 17.88 6.70001 17.94C8.02001 18.01 11.98 18.01 13.3 17.94C14.58 17.88 15.72 17.59 16.65 16.65C17.59 15.71 17.88 14.58 17.94 13.3C18.01 11.98 18.01 8.02002 17.94 6.70002ZM16.24 14.72C15.96 15.42 15.42 15.96 14.72 16.24C13.67 16.66 11.17 16.56 10 16.56C8.83001 16.56 6.33001 16.65 5.28001 16.24C4.58001 15.96 4.04 15.42 3.76 14.72C3.34 13.67 3.44001 11.17 3.44001 10C3.44001 8.83001 3.35 6.33004 3.76 5.28004C4.04 4.58004 4.58001 4.04002 5.28001 3.76002C6.33001 3.34002 8.83001 3.44001 10 3.44001C11.17 3.44001 13.67 3.35002 14.72 3.76002C15.42 4.04002 15.96 4.58004 16.24 5.28004C16.66 6.33004 16.56 8.83001 16.56 10C16.56 11.17 16.66 13.67 16.24 14.72Z",fill:"currentColor",key:"dsqr5j"}]]}; +export{C as instagram}; \ No newline at end of file diff --git a/wwwroot/chunk-BcKJx9ih.js b/wwwroot/chunk-BcKJx9ih.js new file mode 100644 index 0000000..36cf725 --- /dev/null +++ b/wwwroot/chunk-BcKJx9ih.js @@ -0,0 +1,2 @@ +var e={name:"times-circle",meta:{tags:["times-circle","close","cancel","delete","times"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM12.4697 6.46973C12.7626 6.17683 13.2374 6.17683 13.5303 6.46973C13.8232 6.76262 13.8232 7.23738 13.5303 7.53027L11.0605 10L13.5303 12.4697C13.8232 12.7626 13.8232 13.2374 13.5303 13.5303C13.2374 13.8232 12.7626 13.8232 12.4697 13.5303L10 11.0605L7.53027 13.5303C7.23738 13.8232 6.76262 13.8232 6.46973 13.5303C6.17683 13.2374 6.17683 12.7626 6.46973 12.4697L8.93945 10L6.46973 7.53027C6.17683 7.23738 6.17683 6.76262 6.46973 6.46973C6.76262 6.17683 7.23738 6.17683 7.53027 6.46973L10 8.93945L12.4697 6.46973Z",fill:"currentColor",key:"8rdmue"}]]}; +export{e as timesCircle}; \ No newline at end of file diff --git a/wwwroot/chunk-Bd92eCxz.js b/wwwroot/chunk-Bd92eCxz.js new file mode 100644 index 0000000..b5539ba --- /dev/null +++ b/wwwroot/chunk-Bd92eCxz.js @@ -0,0 +1,2 @@ +var C={name:"chart-scatter",meta:{tags:["chart-scatter","graph","statistic","plot","data"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M2.5 1.75C2.91421 1.75 3.25 2.08579 3.25 2.5V16.75H17.5C17.9142 16.75 18.25 17.0858 18.25 17.5C18.25 17.9142 17.9142 18.25 17.5 18.25H2.5C2.08579 18.25 1.75 17.9142 1.75 17.5V2.5C1.75 2.08579 2.08579 1.75 2.5 1.75ZM11 12C11.5523 12 12 12.4477 12 13C12 13.5523 11.5523 14 11 14C10.4477 14 10 13.5523 10 13C10 12.4477 10.4477 12 11 12ZM6 10C6.55228 10 7 10.4477 7 11C7 11.5523 6.55228 12 6 12C5.44772 12 5 11.5523 5 11C5 10.4477 5.44772 10 6 10ZM13.5 8C14.0523 8 14.5 8.44772 14.5 9C14.5 9.55228 14.0523 10 13.5 10C12.9477 10 12.5 9.55228 12.5 9C12.5 8.44772 12.9477 8 13.5 8ZM8.5 6C9.05228 6 9.5 6.44772 9.5 7C9.5 7.55228 9.05228 8 8.5 8C7.94772 8 7.5 7.55228 7.5 7C7.5 6.44772 7.94772 6 8.5 6ZM16 4C16.5523 4 17 4.44772 17 5C17 5.55228 16.5523 6 16 6C15.4477 6 15 5.55228 15 5C15 4.44772 15.4477 4 16 4Z",fill:"currentColor",key:"biit9y"}]]}; +export{C as chartScatter}; \ No newline at end of file diff --git a/wwwroot/chunk-BdBzonGf.js b/wwwroot/chunk-BdBzonGf.js new file mode 100644 index 0000000..2319ccf --- /dev/null +++ b/wwwroot/chunk-BdBzonGf.js @@ -0,0 +1,2 @@ +var C={name:"comments",meta:{tags:["comments","chats","forums","discussions","feedbacks"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.83985 1.50977C9.72128 1.50977 10.5819 1.69005 11.3545 2.01953C12.1225 2.34708 12.8204 2.82091 13.4053 3.39453C13.9974 3.97534 14.4758 4.68134 14.7949 5.46778C14.857 5.62072 14.9127 5.7776 14.9649 5.93653C15.1501 6.06975 15.3268 6.21338 15.4932 6.36426L15.7207 6.58008L15.7256 6.58496C16.2992 7.16984 16.7721 7.86776 17.0996 8.63575C17.4291 9.40841 17.6104 10.269 17.6104 11.1504C17.6103 11.9338 17.4662 12.7001 17.2031 13.4033L18.457 17.5215C18.5376 17.7864 18.4662 18.0747 18.2705 18.2705C18.0747 18.4662 17.7864 18.5386 17.5215 18.458L13.4014 17.2041C12.6987 17.4667 11.933 17.6103 11.1504 17.6104C10.2732 17.6103 9.41719 17.43 8.64747 17.1035V17.1055C7.85541 16.784 7.14254 16.2841 6.57911 15.7207C6.16925 15.3108 5.8215 14.8475 5.53614 14.3428L2.46876 15.2774C2.20378 15.358 1.91559 15.2857 1.71974 15.0899C1.52418 14.8941 1.45184 14.6065 1.53224 14.3418L2.78517 10.2217C2.52246 9.51881 2.37989 8.75257 2.37989 7.96973C2.37993 7.08834 2.56016 6.2277 2.88966 5.45508C3.21724 4.68711 3.69105 3.98915 4.26466 3.4043C4.84551 2.81214 5.55144 2.33379 6.3379 2.01465C7.10467 1.7035 7.95041 1.5098 8.83985 1.50977ZM15.2822 8.41407C15.2324 9.1392 15.0639 9.84216 14.7901 10.4844C14.4625 11.2524 13.9886 11.9503 13.4151 12.5352C12.8342 13.1273 12.1282 13.6057 11.3418 13.9248C10.575 14.2359 9.7293 14.4297 8.83985 14.4297C8.3009 14.4297 7.7705 14.3604 7.26271 14.2324C7.38074 14.3821 7.50602 14.5255 7.64063 14.6602C8.02239 15.0418 8.48897 15.3807 8.99317 15.6191L9.21192 15.7149L9.22462 15.7197L9.22364 15.7207C9.81091 15.9712 10.472 16.1103 11.1504 16.1104C11.8286 16.1103 12.4891 15.9711 13.0762 15.7207L13.2002 15.6797C13.3276 15.6501 13.4614 15.654 13.5879 15.6924L16.6123 16.6123L15.6924 13.5889C15.6411 13.4203 15.6507 13.2383 15.7197 13.0762C15.9702 12.489 16.1103 11.8288 16.1104 11.1504C16.1104 10.4719 15.9701 9.81186 15.7197 9.22461C15.599 8.94158 15.4514 8.67027 15.2822 8.41407ZM8.83985 3.00977C8.16963 3.0098 7.51531 3.15562 6.90235 3.4043C6.30899 3.64508 5.77404 4.00742 5.33497 4.45508C4.88887 4.91001 4.52189 5.45229 4.26954 6.04395C4.01913 6.63116 3.87993 7.29133 3.87989 7.96973C3.87989 8.64812 4.01918 9.30831 4.26954 9.89551C4.33872 10.0577 4.34915 10.2395 4.29786 10.4082L3.37696 13.4316L5.66114 12.7373C5.69188 12.726 5.7227 12.7161 5.75392 12.709L6.40138 12.5127L6.53028 12.4854C6.66003 12.4697 6.79245 12.4882 6.91407 12.54C7.50133 12.7905 8.16142 12.9297 8.83985 12.9297C9.51032 12.9297 10.1652 12.784 10.7783 12.5352C11.3717 12.2944 11.9057 11.932 12.3447 11.4844C12.7909 11.0294 13.1578 10.4873 13.4102 9.89551C13.6606 9.30827 13.7998 8.64818 13.7998 7.96973C13.7998 7.29951 13.654 6.64517 13.4053 6.03223C13.1645 5.43893 12.8022 4.90389 12.3545 4.46485C11.8996 4.0188 11.3573 3.65174 10.7656 3.39941C10.1784 3.14904 9.51822 3.00977 8.83985 3.00977Z",fill:"currentColor",key:"dkvjnn"}]]}; +export{C as comments}; \ No newline at end of file diff --git a/wwwroot/chunk-BdOmJGRT.js b/wwwroot/chunk-BdOmJGRT.js new file mode 100644 index 0000000..4441c10 --- /dev/null +++ b/wwwroot/chunk-BdOmJGRT.js @@ -0,0 +1,2 @@ +var C={name:"building",meta:{tags:["building","office","architecture","structure","construction"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15 1.25C15.4142 1.25 15.75 1.58579 15.75 2V17.25H16.25C16.6642 17.25 17 17.5858 17 18C17 18.4142 16.6642 18.75 16.25 18.75H3.75C3.33579 18.75 3 18.4142 3 18C3 17.5858 3.33579 17.25 3.75 17.25H4.25V2C4.25 1.58579 4.58579 1.25 5 1.25H15ZM5.75 17.25H7V15C7 14.72 7.22 14.5 7.5 14.5H8.5C8.78 14.5 9 14.72 9 15V17.25H14.25V2.75H5.75V17.25ZM8.5 11C8.77614 11 9 11.2239 9 11.5V12.5C9 12.7761 8.77614 13 8.5 13H7.5C7.22386 13 7 12.7761 7 12.5V11.5C7 11.2239 7.22386 11 7.5 11H8.5ZM12.5 11C12.7761 11 13 11.2239 13 11.5V12.5C13 12.7761 12.7761 13 12.5 13H11.5C11.2239 13 11 12.7761 11 12.5V11.5C11 11.2239 11.2239 11 11.5 11H12.5ZM8.5 7.5C8.77614 7.5 9 7.72386 9 8V9C9 9.27614 8.77614 9.5 8.5 9.5H7.5C7.22386 9.5 7 9.27614 7 9V8C7 7.72386 7.22386 7.5 7.5 7.5H8.5ZM12.5 7.5C12.7761 7.5 13 7.72386 13 8V9C13 9.27614 12.7761 9.5 12.5 9.5H11.5C11.2239 9.5 11 9.27614 11 9V8C11 7.72386 11.2239 7.5 11.5 7.5H12.5ZM8.5 4C8.77614 4 9 4.22386 9 4.5V5.5C9 5.77614 8.77614 6 8.5 6H7.5C7.22386 6 7 5.77614 7 5.5V4.5C7 4.22386 7.22386 4 7.5 4H8.5ZM12.5 4C12.7761 4 13 4.22386 13 4.5V5.5C13 5.77614 12.7761 6 12.5 6H11.5C11.2239 6 11 5.77614 11 5.5V4.5C11 4.22386 11.2239 4 11.5 4H12.5Z",fill:"currentColor",key:"gg2ar4"}]]}; +export{C as building}; \ No newline at end of file diff --git a/wwwroot/chunk-BeHgAqHM.js b/wwwroot/chunk-BeHgAqHM.js new file mode 100644 index 0000000..b5662d3 --- /dev/null +++ b/wwwroot/chunk-BeHgAqHM.js @@ -0,0 +1,2 @@ +var e={name:"equals",meta:{tags:["equals","same","identical","match","balance"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 12.25C17.4142 12.25 17.75 12.5858 17.75 13C17.75 13.4142 17.4142 13.75 17 13.75H3C2.58579 13.75 2.25 13.4142 2.25 13C2.25 12.5858 2.58579 12.25 3 12.25H17ZM17 6.25C17.4142 6.25 17.75 6.58579 17.75 7C17.75 7.41421 17.4142 7.75 17 7.75H3C2.58579 7.75 2.25 7.41421 2.25 7C2.25 6.58579 2.58579 6.25 3 6.25H17Z",fill:"currentColor",key:"km5bp0"}]]}; +export{e as equals}; \ No newline at end of file diff --git a/wwwroot/chunk-BeIwkcK6.js b/wwwroot/chunk-BeIwkcK6.js new file mode 100644 index 0000000..d94f1e9 --- /dev/null +++ b/wwwroot/chunk-BeIwkcK6.js @@ -0,0 +1,2 @@ +var C={name:"spinner-dotted",meta:{tags:["spinner-dotted","loading","processing","buffering"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 16.5C10.8284 16.5 11.5 17.1716 11.5 18C11.5 18.8284 10.8284 19.5 10 19.5C9.17157 19.5 8.5 18.8284 8.5 18C8.5 17.1716 9.17157 16.5 10 16.5ZM3.28223 14.5957C3.86801 14.0099 4.81851 14.0099 5.4043 14.5957C5.98991 15.1814 5.98968 16.131 5.4043 16.7168C4.81851 17.3026 3.86801 17.3026 3.28223 16.7168C2.69692 16.131 2.69669 15.1813 3.28223 14.5957ZM14.5957 14.5957C15.1815 14.0099 16.132 14.0099 16.7178 14.5957C17.3033 15.1813 17.3031 16.131 16.7178 16.7168C16.132 17.3026 15.1815 17.3026 14.5957 16.7168C14.0103 16.131 14.0101 15.1814 14.5957 14.5957ZM2 8.5C2.82843 8.5 3.5 9.17157 3.5 10C3.5 10.8284 2.82843 11.5 2 11.5C1.17157 11.5 0.5 10.8284 0.5 10C0.5 9.17157 1.17157 8.5 2 8.5ZM18 8.5C18.8284 8.5 19.5 9.17157 19.5 10C19.5 10.8284 18.8284 11.5 18 11.5C17.1716 11.5 16.5 10.8284 16.5 10C16.5 9.17157 17.1716 8.5 18 8.5ZM3.28223 3.28223C3.86799 2.69649 4.81851 2.69653 5.4043 3.28223C5.99008 3.86801 5.99006 4.81851 5.4043 5.4043C4.81851 5.99008 3.86801 5.99008 3.28223 5.4043C2.69652 4.8185 2.69647 3.86799 3.28223 3.28223ZM10 0.5C10.8284 0.5 11.5 1.17157 11.5 2C11.5 2.82843 10.8284 3.5 10 3.5C9.17157 3.5 8.5 2.82843 8.5 2C8.5 1.17157 9.17157 0.5 10 0.5Z",fill:"currentColor",key:"js93df"}]]}; +export{C as spinnerDotted}; \ No newline at end of file diff --git a/wwwroot/chunk-Bf6h-MYj.js b/wwwroot/chunk-Bf6h-MYj.js new file mode 100644 index 0000000..a75ab94 --- /dev/null +++ b/wwwroot/chunk-Bf6h-MYj.js @@ -0,0 +1,2 @@ +var o={name:"ban",meta:{tags:["ban","block","stop","deny","prohibit"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM4.19336 5.25391C3.13534 6.54681 2.5 8.19904 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C11.8009 17.5 13.4522 16.8636 14.7451 15.8057L4.19336 5.25391ZM10 2.5C8.19904 2.5 6.54681 3.13534 5.25391 4.19336L15.8057 14.7451C16.8636 13.4522 17.5 11.8009 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5Z",fill:"currentColor",key:"yaoic5"}]]}; +export{o as ban}; \ No newline at end of file diff --git a/wwwroot/chunk-BgXspcqu.js b/wwwroot/chunk-BgXspcqu.js new file mode 100644 index 0000000..815a786 --- /dev/null +++ b/wwwroot/chunk-BgXspcqu.js @@ -0,0 +1,2 @@ +var e={name:"file",meta:{tags:["file","document","record","data","paper"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.5 1.25C10.6989 1.25 10.8896 1.32907 11.0303 1.46973L16.5303 6.96973C16.6709 7.11038 16.75 7.30109 16.75 7.5V16C16.75 17.5142 15.5142 18.75 14 18.75H6C4.48579 18.75 3.25 17.5142 3.25 16V4C3.25 2.48579 4.48579 1.25 6 1.25H10.5ZM6 2.75C5.31421 2.75 4.75 3.31421 4.75 4V16C4.75 16.6858 5.31421 17.25 6 17.25H14C14.6858 17.25 15.25 16.6858 15.25 16V8.25H10.5C10.0858 8.25 9.75 7.91421 9.75 7.5V2.75H6ZM11.25 6.75H14.1895L11.25 3.81055V6.75Z",fill:"currentColor",key:"2sixl9"}]]}; +export{e as file}; \ No newline at end of file diff --git a/wwwroot/chunk-BiI0OCvF.js b/wwwroot/chunk-BiI0OCvF.js new file mode 100644 index 0000000..3aee555 --- /dev/null +++ b/wwwroot/chunk-BiI0OCvF.js @@ -0,0 +1,2 @@ +var t={name:"chart-pie",meta:{tags:["chart-pie","graph","statistics","proportion"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1.25C10.4142 1.25 10.75 1.58579 10.75 2V2.28613C14.6813 2.66287 17.75 5.96898 17.75 10C17.75 14.2841 14.284 17.7498 10 17.75C7.39402 17.7499 5.09067 16.4606 3.6875 14.4922L3.41406 14.6504C3.05499 14.8568 2.59609 14.733 2.38965 14.374C2.38227 14.3612 2.37568 14.348 2.36914 14.335C1.63496 13.045 1.25 11.5695 1.25 10C1.25 5.16579 5.16579 1.25 10 1.25ZM10.75 10C10.75 10.2684 10.6067 10.5166 10.374 10.6504L4.99805 13.7393C6.13827 15.2626 7.95377 16.2499 10 16.25C13.4556 16.2498 16.25 13.4556 16.25 10C16.25 6.79827 13.8509 4.16586 10.75 3.7959V10ZM9.25 2.78809C5.59696 3.16306 2.75 6.24746 2.75 10C2.75 11.0622 2.9586 12.0579 3.35156 12.9551L9.25 9.56543V2.78809Z",fill:"currentColor",key:"dkfmqs"}]]}; +export{t as chartPie}; \ No newline at end of file diff --git a/wwwroot/chunk-BiY_D0pV.js b/wwwroot/chunk-BiY_D0pV.js new file mode 100644 index 0000000..9302249 --- /dev/null +++ b/wwwroot/chunk-BiY_D0pV.js @@ -0,0 +1,2 @@ +var e={name:"copy",meta:{tags:["copy","duplicate","replicate","clone","reproduce"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.5 0.25C11.6989 0.25 11.8896 0.329074 12.0303 0.469727L17.5303 5.96973C17.6709 6.11038 17.75 6.30109 17.75 6.5V13C17.75 14.5142 16.5142 15.75 15 15.75H14.75V17C14.75 18.5142 13.5142 19.75 12 19.75H5C3.48579 19.75 2.25 18.5142 2.25 17V7C2.25 5.48579 3.48579 4.25 5 4.25H6.25V3C6.25 1.48579 7.48579 0.25 9 0.25H11.5ZM5 5.75C4.31421 5.75 3.75 6.31421 3.75 7V17C3.75 17.6858 4.31421 18.25 5 18.25H12C12.6858 18.25 13.25 17.6858 13.25 17V15.75H9C7.48579 15.75 6.25 14.5142 6.25 13V5.75H5ZM9 1.75C8.31421 1.75 7.75 2.31421 7.75 3V13C7.75 13.6858 8.31421 14.25 9 14.25H15C15.6858 14.25 16.25 13.6858 16.25 13V7.25H11.5C11.0858 7.25 10.75 6.91421 10.75 6.5V1.75H9ZM12.25 5.75H15.1895L12.25 2.81055V5.75Z",fill:"currentColor",key:"vmf92a"}]]}; +export{e as copy}; \ No newline at end of file diff --git a/wwwroot/chunk-Bid0rLxv.js b/wwwroot/chunk-Bid0rLxv.js new file mode 100644 index 0000000..522a1ec --- /dev/null +++ b/wwwroot/chunk-Bid0rLxv.js @@ -0,0 +1,2 @@ +var C={name:"arrows-v",meta:{tags:["arrows-v","vertical","up-and-down","bi-directional","move"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.0254 1.25098C10.0322 1.25121 10.0391 1.25153 10.0459 1.25195C10.0846 1.25429 10.1223 1.2596 10.1592 1.26758C10.1925 1.2748 10.2246 1.28607 10.2568 1.29785C10.2693 1.30242 10.2828 1.30437 10.2949 1.30957C10.314 1.31772 10.3311 1.33004 10.3496 1.33984C10.3734 1.35248 10.3977 1.36387 10.4199 1.37891C10.4588 1.40523 10.4959 1.43533 10.5303 1.46973L14.5303 5.46973C14.8232 5.76261 14.8232 6.23739 14.5303 6.53027C14.2374 6.82316 13.7626 6.82314 13.4697 6.53027L10.75 3.81055V16.1895L13.4697 13.4697C13.7626 13.1769 14.2374 13.1768 14.5303 13.4697C14.8232 13.7626 14.8232 14.2374 14.5303 14.5303L10.5303 18.5303C10.4984 18.5621 10.4635 18.5893 10.4277 18.6143C10.3836 18.645 10.3365 18.6715 10.2861 18.6924C10.2541 18.7056 10.2208 18.7141 10.1875 18.7227C10.1744 18.7261 10.1618 18.7317 10.1484 18.7344C10.1426 18.7355 10.1367 18.7363 10.1309 18.7373C10.0883 18.7448 10.0447 18.75 10 18.75C9.95465 18.75 9.91034 18.745 9.8672 18.7373C9.86166 18.7363 9.85611 18.7355 9.8506 18.7344C9.83721 18.7317 9.82465 18.7261 9.81153 18.7227C9.77829 18.714 9.74494 18.7057 9.7129 18.6924C9.68376 18.6803 9.65704 18.664 9.62989 18.6484C9.57321 18.616 9.51813 18.5787 9.46974 18.5303L5.46972 14.5303C5.17683 14.2374 5.17683 13.7626 5.46972 13.4697C5.76262 13.1769 6.23739 13.1768 6.53027 13.4697L9.25001 16.1895V3.81055L6.53027 6.53027C6.23739 6.82316 5.76262 6.82314 5.46972 6.53027C5.17683 6.23738 5.17683 5.76262 5.46972 5.46973L9.46974 1.46973L9.52638 1.41797C9.53657 1.40965 9.54808 1.40321 9.5586 1.39551C9.57414 1.38414 9.59004 1.37345 9.60645 1.36328C9.63035 1.34849 9.65462 1.3351 9.6797 1.32324C9.69787 1.31463 9.71642 1.30697 9.73536 1.2998C9.76294 1.28942 9.79095 1.28144 9.81935 1.27441C9.83941 1.26944 9.85923 1.26309 9.87989 1.25977C9.89095 1.25799 9.90199 1.25616 9.9131 1.25488C9.94159 1.2516 9.97064 1.25 10 1.25C10.0085 1.25 10.017 1.2507 10.0254 1.25098Z",fill:"currentColor",key:"7aq1nq"}]]}; +export{C as arrowsV}; \ No newline at end of file diff --git a/wwwroot/chunk-Bivg4anJ.js b/wwwroot/chunk-Bivg4anJ.js new file mode 100644 index 0000000..65ec66b --- /dev/null +++ b/wwwroot/chunk-Bivg4anJ.js @@ -0,0 +1,2 @@ +var l={name:"play-circle",meta:{tags:["play-circle","start","go","action","play"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM8 6.41406C8.00012 5.52329 9.07709 5.07721 9.70703 5.70703L13.293 9.29297C13.6834 9.68347 13.6834 10.3165 13.293 10.707L9.70703 14.293C9.07709 14.9228 8.00012 14.4767 8 13.5859V6.41406Z",fill:"currentColor",key:"4xq26m"}]]}; +export{l as playCircle}; \ No newline at end of file diff --git a/wwwroot/chunk-BjStHNJA.js b/wwwroot/chunk-BjStHNJA.js new file mode 100644 index 0000000..b2031c5 --- /dev/null +++ b/wwwroot/chunk-BjStHNJA.js @@ -0,0 +1,2 @@ +var e={name:"lock",meta:{tags:["lock","secure","safe","restrict","close"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1.25C12.6242 1.25 14.75 3.37579 14.75 6V8.25H15C16.5188 8.25 17.75 9.48122 17.75 11V16C17.75 17.5188 16.5188 18.75 15 18.75H5C3.48122 18.75 2.25 17.5188 2.25 16V11C2.25 9.48122 3.48122 8.25 5 8.25H5.25V6C5.25 3.37579 7.37579 1.25 10 1.25ZM5 9.75C4.30964 9.75 3.75 10.3096 3.75 11V16C3.75 16.6904 4.30964 17.25 5 17.25H15C15.6904 17.25 16.25 16.6904 16.25 16V11C16.25 10.3096 15.6904 9.75 15 9.75H5ZM10 2.75C8.20421 2.75 6.75 4.20421 6.75 6V8.25H13.25V6C13.25 4.20421 11.7958 2.75 10 2.75Z",fill:"currentColor",key:"4vb3dl"}]]}; +export{e as lock}; \ No newline at end of file diff --git a/wwwroot/chunk-Bjbc6xom.js b/wwwroot/chunk-Bjbc6xom.js new file mode 100644 index 0000000..13323d2 --- /dev/null +++ b/wwwroot/chunk-Bjbc6xom.js @@ -0,0 +1,2 @@ +var C={name:"user",meta:{tags:["user","profile","person","account","individual"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 11.75C12.0105 11.75 13.9066 11.918 15.3184 12.5801C16.0408 12.9189 16.6618 13.3983 17.0977 14.0703C17.5343 14.7438 17.75 15.5561 17.75 16.5C17.75 16.9142 17.4142 17.25 17 17.25C16.5858 17.25 16.25 16.9142 16.25 16.5C16.25 15.7891 16.0906 15.2735 15.8398 14.8867C15.5882 14.4987 15.2091 14.1849 14.6816 13.9375C13.5934 13.4271 11.9895 13.25 10 13.25C8.01048 13.25 6.40661 13.4271 5.31836 13.9375C4.79093 14.1849 4.41177 14.4987 4.16016 14.8867C3.90942 15.2735 3.75 15.7891 3.75 16.5C3.75 16.9142 3.41421 17.25 3 17.25C2.58579 17.25 2.25 16.9142 2.25 16.5C2.25 15.5561 2.46567 14.7438 2.90234 14.0703C3.33821 13.3983 3.95922 12.9189 4.68164 12.5801C6.09339 11.918 7.98953 11.75 10 11.75ZM10 2.75C12.0711 2.75 13.75 4.42893 13.75 6.5C13.75 8.57107 12.0711 10.25 10 10.25C7.92893 10.25 6.25 8.57107 6.25 6.5C6.25 4.42893 7.92893 2.75 10 2.75ZM10 4.25C8.75736 4.25 7.75 5.25736 7.75 6.5C7.75 7.74264 8.75736 8.75 10 8.75C11.2426 8.75 12.25 7.74264 12.25 6.5C12.25 5.25736 11.2426 4.25 10 4.25Z",fill:"currentColor",key:"lefe09"}]]}; +export{C as user}; \ No newline at end of file diff --git a/wwwroot/chunk-BnC2V6PB.js b/wwwroot/chunk-BnC2V6PB.js new file mode 100644 index 0000000..80bdf2f --- /dev/null +++ b/wwwroot/chunk-BnC2V6PB.js @@ -0,0 +1,2 @@ +var C={name:"sliders-v",meta:{tags:["sliders-v","controls","adjustments","sliders","settings"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M5.5 9.25C5.91421 9.25 6.25 9.58579 6.25 10V17C6.25 17.4142 5.91421 17.75 5.5 17.75C5.08579 17.75 4.75 17.4142 4.75 17V10C4.75 9.58579 5.08579 9.25 5.5 9.25ZM10 13.25C10.4142 13.25 10.75 13.5858 10.75 14V17C10.75 17.4142 10.4142 17.75 10 17.75C9.58579 17.75 9.25 17.4142 9.25 17V14C9.25 13.5858 9.58579 13.25 10 13.25ZM14.5 9.25C14.9142 9.25 15.25 9.58579 15.25 10V17C15.25 17.4142 14.9142 17.75 14.5 17.75C14.0858 17.75 13.75 17.4142 13.75 17V10C13.75 9.58579 14.0858 9.25 14.5 9.25ZM10 2.25C10.4142 2.25 10.75 2.58579 10.75 3V11.25H11.5C11.9142 11.25 12.25 11.5858 12.25 12C12.25 12.4142 11.9142 12.75 11.5 12.75H8.5C8.08579 12.75 7.75 12.4142 7.75 12C7.75 11.5858 8.08579 11.25 8.5 11.25H9.25V3C9.25 2.58579 9.58579 2.25 10 2.25ZM5.5 2.25C5.91421 2.25 6.25 2.58579 6.25 3V7.25H7C7.41421 7.25 7.75 7.58579 7.75 8C7.75 8.41421 7.41421 8.75 7 8.75H4C3.58579 8.75 3.25 8.41421 3.25 8C3.25 7.58579 3.58579 7.25 4 7.25H4.75V3C4.75 2.58579 5.08579 2.25 5.5 2.25ZM14.5 2.25C14.9142 2.25 15.25 2.58579 15.25 3V7.25H16C16.4142 7.25 16.75 7.58579 16.75 8C16.75 8.41421 16.4142 8.75 16 8.75H13C12.5858 8.75 12.25 8.41421 12.25 8C12.25 7.58579 12.5858 7.25 13 7.25H13.75V3C13.75 2.58579 14.0858 2.25 14.5 2.25Z",fill:"currentColor",key:"wkjjg3"}]]}; +export{C as slidersV}; \ No newline at end of file diff --git a/wwwroot/chunk-BqboFAtO.js b/wwwroot/chunk-BqboFAtO.js new file mode 100644 index 0000000..cac9d10 --- /dev/null +++ b/wwwroot/chunk-BqboFAtO.js @@ -0,0 +1,2 @@ +var C={name:"graduation-cap",meta:{tags:["graduation-cap","education","school","diploma","university"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16.25 8.21974L14.9854 8.86037V12.2598C15.5359 11.9443 15.9507 11.6425 16.207 11.4385C16.2217 11.4268 16.25 11.3933 16.25 11.3194V8.21974ZM2.87501 6.13869L3.3047 6.31447L3.32521 6.32423L10.0059 9.53908L12.541 8.36037L9.65236 6.84962C9.28537 6.65766 9.14309 6.20394 9.33498 5.83693C9.52696 5.46989 9.98064 5.32854 10.3477 5.52052L14.2402 7.55568L16.6611 6.33107L16.6885 6.3174L16.7168 6.30568L17.124 6.13869L10 2.82716L2.87501 6.13869ZM17.75 11.3194C17.75 11.7937 17.5559 12.2825 17.1416 12.6123C16.7389 12.9329 15.9995 13.4624 14.9854 13.9541V18C14.9854 18.4142 14.6496 18.75 14.2354 18.75C13.8212 18.75 13.4854 18.4142 13.4854 18V14.5596C12.4762 14.8898 11.3045 15.124 10 15.124C6.30396 15.124 3.66694 13.103 2.79787 12.3379C2.42385 12.0086 2.25001 11.545 2.25001 11.0967V7.50392L1.77833 7.31251C0.76783 6.90037 0.734114 5.48173 1.72365 5.0215L9.47267 1.41798C9.76507 1.28203 10.0972 1.26524 10.3994 1.3672L10.5274 1.41798L18.2764 5.0215C19.2659 5.48173 19.2322 6.90037 18.2217 7.31251L17.75 7.50392V11.3194ZM3.75001 11.0967C3.75001 11.1653 3.77508 11.1996 3.78908 11.2119C4.55268 11.8842 6.84373 13.624 10 13.624C11.3331 13.624 12.5104 13.3404 13.4854 12.9688V9.57521L10.5303 10.9492C10.191 11.1069 9.79912 11.1046 9.46193 10.9424L3.75001 8.1924V11.0967Z",fill:"currentColor",key:"80747u"}]]}; +export{C as graduationCap}; \ No newline at end of file diff --git a/wwwroot/chunk-BrWkzAmi.js b/wwwroot/chunk-BrWkzAmi.js new file mode 100644 index 0000000..34d5a2a --- /dev/null +++ b/wwwroot/chunk-BrWkzAmi.js @@ -0,0 +1,2 @@ +var t={name:"note-sticky",meta:{tags:["memo","post-it","reminder","annotation","note-sticky"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18.75 5C18.75 3.48579 17.5142 2.25 16 2.25L4 2.25C2.48579 2.25 1.25 3.48578 1.25 5L1.25 15C1.25 16.5142 2.48579 17.75 4 17.75L12.5 17.75C12.6989 17.75 12.8896 17.6709 13.0303 17.5303L18.5303 12.0303C18.6709 11.8896 18.75 11.6989 18.75 11.5L18.75 5ZM13.25 12.5C13.25 12.3619 13.3619 12.25 13.5 12.25L16.1895 12.25L13.25 15.1895L13.25 12.5ZM2.75 5C2.75 4.31421 3.31421 3.75 4 3.75L16 3.75C16.6858 3.75 17.25 4.31421 17.25 5L17.25 10.75L13.5 10.75C12.5335 10.75 11.75 11.5335 11.75 12.5L11.75 16.25L4 16.25C3.31421 16.25 2.75 15.6858 2.75 15L2.75 5Z",fill:"currentColor",key:"jgqzsx"}]]}; +export{t as noteSticky}; \ No newline at end of file diff --git a/wwwroot/chunk-BvC4w5r3.js b/wwwroot/chunk-BvC4w5r3.js new file mode 100644 index 0000000..97bf38b --- /dev/null +++ b/wwwroot/chunk-BvC4w5r3.js @@ -0,0 +1,2 @@ +var C={name:"sort-alpha-down-alt",meta:{tags:["sort-alpha-down-alt"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.00001 2.25C6.41419 2.25003 6.75001 2.58581 6.75001 3V15.1895L7.96973 13.9697C8.26263 13.6769 8.7374 13.6768 9.03028 13.9697C9.32314 14.2626 9.32314 14.7374 9.03028 15.0303L6.53028 17.5303C6.4984 17.5622 6.46345 17.5893 6.42774 17.6143C6.38361 17.6451 6.3365 17.6715 6.28614 17.6924C6.25408 17.7056 6.22077 17.7141 6.18751 17.7227C6.17438 17.7261 6.16184 17.7317 6.14844 17.7344C6.14261 17.7356 6.13672 17.7363 6.13086 17.7373C6.0883 17.7448 6.04472 17.75 6.00001 17.75L5.92286 17.7461C5.90403 17.7442 5.88558 17.7406 5.86719 17.7373C5.86166 17.7363 5.85611 17.7355 5.85059 17.7344C5.8372 17.7317 5.82465 17.7261 5.81153 17.7227C5.77828 17.714 5.74493 17.7057 5.7129 17.6924C5.68376 17.6803 5.65704 17.664 5.62989 17.6484C5.5732 17.616 5.51813 17.5787 5.46973 17.5303L2.96973 15.0303C2.67684 14.7374 2.67684 14.2626 2.96973 13.9697C3.26263 13.6769 3.73739 13.6768 4.03028 13.9697L5.25001 15.1895V3C5.25001 2.58579 5.58579 2.25 6.00001 2.25ZM13.9951 10.748C14.4736 10.7481 14.8372 11.0672 14.9893 11.46L14.9932 11.4688L14.9961 11.4785L16.6963 16.249C16.8349 16.6389 16.6319 17.0679 16.2422 17.207C15.8522 17.346 15.4224 17.1418 15.2832 16.752L15.0078 15.9805H12.9805L12.7061 16.752C12.5669 17.1418 12.138 17.3459 11.7481 17.207C11.3581 17.068 11.1553 16.639 11.294 16.249L12.9932 11.4785L12.9971 11.4688L13.001 11.46C13.1531 11.0671 13.5166 10.748 13.9951 10.748ZM13.5156 14.4805H14.4736L13.9941 13.1357L13.5156 14.4805ZM15.3594 2.75C15.9419 2.75 16.3139 3.16168 16.4453 3.55273C16.5759 3.94165 16.5254 4.43919 16.1787 4.81152L16.1709 4.81934L13.3506 7.75977H15.75C16.164 7.75991 16.4999 8.09576 16.5 8.50977C16.5 8.92389 16.1641 9.25962 15.75 9.25977H12.6201C12.038 9.25968 11.671 8.84316 11.54 8.46484C11.4081 8.08313 11.4463 7.57605 11.8096 7.19922H11.8106L14.6397 4.25H12.25C11.8359 4.2499 11.5 3.91415 11.5 3.5C11.5 3.08585 11.8359 2.7501 12.25 2.75H15.3594Z",fill:"currentColor",key:"tlfgwn"}]]}; +export{C as sortAlphaDownAlt}; \ No newline at end of file diff --git a/wwwroot/chunk-BvE4mVBA.js b/wwwroot/chunk-BvE4mVBA.js new file mode 100644 index 0000000..692e7ac --- /dev/null +++ b/wwwroot/chunk-BvE4mVBA.js @@ -0,0 +1,2 @@ +var C={name:"filter-slash",meta:{tags:["filter-slash","remove-filter","all-results","clear-filter"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.1299 1.5C6.17217 1.50001 6.21355 1.50401 6.25392 1.51074C6.2611 1.51194 6.26825 1.51324 6.2754 1.51465C6.3006 1.51961 6.32442 1.52871 6.34865 1.53613C6.36939 1.54247 6.3909 1.54651 6.41115 1.55469C6.43886 1.56592 6.4643 1.58137 6.49025 1.5957C6.50866 1.60586 6.52822 1.61415 6.54591 1.62598C6.54862 1.62778 6.55104 1.62999 6.55372 1.63184C6.58997 1.65675 6.62487 1.68478 6.65724 1.7168L17.5274 12.4668C17.8218 12.758 17.8244 13.2329 17.5332 13.5273C17.242 13.8218 16.7672 13.8244 16.4727 13.5332L12.8106 9.91113L12.75 9.99512V17.75C12.75 18.1642 12.4142 18.4999 12 18.5H8.00002C7.5858 18.5 7.25002 18.1642 7.25002 17.75V9.99414L1.89551 2.69336C1.72839 2.46547 1.70335 2.16322 1.83105 1.91113C1.95882 1.65907 2.2174 1.5 2.5 1.5H6.1299ZM3.9795 3L8.60451 9.30664C8.69881 9.43526 8.75002 9.59052 8.75002 9.75V17H11.25V9.75C11.25 9.59048 11.3012 9.43528 11.3955 9.30664L11.7325 8.8457L5.8213 3H3.9795ZM17.5 1.5C17.7826 1.50007 18.0413 1.65908 18.169 1.91113C18.2966 2.16317 18.2716 2.46551 18.1045 2.69336L15.3545 6.44336C15.1096 6.77731 14.6407 6.84933 14.3067 6.60449C13.9727 6.35953 13.9006 5.89065 14.1455 5.55664L16.0205 3H10.5C10.0858 3 9.75002 2.66421 9.75002 2.25C9.75002 1.83579 10.0858 1.5 10.5 1.5H17.5Z",fill:"currentColor",key:"uzxb5j"}]]}; +export{C as filterSlash}; \ No newline at end of file diff --git a/wwwroot/chunk-BvLTtEI_.js b/wwwroot/chunk-BvLTtEI_.js new file mode 100644 index 0000000..48eea7d --- /dev/null +++ b/wwwroot/chunk-BvLTtEI_.js @@ -0,0 +1,2 @@ +var t={name:"text",meta:{tags:["typography","content","writing","characters","text"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16 1.25C16.4641 1.25 16.9091 1.43451 17.2373 1.7627C17.5655 2.09088 17.75 2.53587 17.75 3V5C17.75 5.41421 17.4142 5.75 17 5.75C16.5858 5.75 16.25 5.41421 16.25 5V3C16.25 2.93369 16.2236 2.87013 16.1768 2.82324C16.1299 2.77636 16.0663 2.75 16 2.75H10.75V17.25H13C13.4142 17.25 13.75 17.5858 13.75 18C13.75 18.4142 13.4142 18.75 13 18.75H7C6.58579 18.75 6.25 18.4142 6.25 18C6.25 17.5858 6.58579 17.25 7 17.25H9.25V2.75H4C3.9337 2.75 3.87013 2.77636 3.82324 2.82324C3.77636 2.87013 3.75 2.9337 3.75 3V5C3.75 5.41421 3.41421 5.75 3 5.75C2.58579 5.75 2.25 5.41421 2.25 5V3C2.25 2.53587 2.43451 2.09088 2.7627 1.7627C3.09088 1.43451 3.53587 1.25 4 1.25H16Z",fill:"currentColor",key:"ue6n3e"}]]}; +export{t as text}; \ No newline at end of file diff --git a/wwwroot/chunk-BvRYcbeE.js b/wwwroot/chunk-BvRYcbeE.js new file mode 100644 index 0000000..2e5381e --- /dev/null +++ b/wwwroot/chunk-BvRYcbeE.js @@ -0,0 +1,2 @@ +var C={name:"github",meta:{tags:["github","code","repository","developer","open-source"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7.352 14.883C7.352 14.949 7.278 15.002 7.184 15.002C7.078 15.012 7.003 14.959 7.003 14.883C7.003 14.817 7.077 14.764 7.171 14.764C7.268 14.754 7.352 14.807 7.352 14.883ZM6.348 14.734C6.325 14.8 6.39 14.876 6.487 14.896C6.571 14.929 6.668 14.896 6.687 14.83C6.706 14.764 6.645 14.688 6.548 14.658C6.464 14.635 6.371 14.668 6.348 14.734ZM7.774 14.678C7.68 14.701 7.616 14.764 7.626 14.84C7.636 14.906 7.72 14.949 7.816 14.926C7.91 14.903 7.974 14.84 7.964 14.774C7.954 14.711 7.867 14.668 7.774 14.678ZM9.897 2C5.423 2 2 5.484 2 10.073C2 13.742 4.252 16.882 7.468 17.987C7.881 18.063 8.026 17.802 8.026 17.587C8.026 17.382 8.016 16.25 8.016 15.556C8.016 15.556 5.758 16.052 5.284 14.57C5.284 14.57 4.916 13.607 4.387 13.359C4.387 13.359 3.648 12.84 4.439 12.849C4.439 12.849 5.242 12.915 5.684 13.703C6.39 14.98 7.574 14.613 8.036 14.394C8.11 13.865 8.32 13.497 8.552 13.279C6.749 13.074 4.929 12.806 4.929 9.623C4.929 8.713 5.174 8.257 5.69 7.674C5.606 7.459 5.332 6.572 5.774 5.428C6.448 5.213 8 6.321 8 6.321C8.645 6.136 9.339 6.04 10.026 6.04C10.713 6.04 11.407 6.136 12.052 6.321C12.052 6.321 13.604 5.209 14.278 5.428C14.72 6.576 14.446 7.459 14.362 7.674C14.878 8.26 15.194 8.716 15.194 9.623C15.194 12.816 13.294 13.07 11.491 13.279C11.788 13.54 12.039 14.037 12.039 14.814C12.039 15.929 12.029 17.309 12.029 17.58C12.029 17.795 12.177 18.056 12.587 17.98C15.813 16.882 18 13.742 18 10.073C18 5.484 14.371 2 9.897 2ZM5.135 13.411C5.093 13.444 5.103 13.52 5.158 13.583C5.21 13.636 5.284 13.659 5.326 13.616C5.368 13.583 5.358 13.507 5.303 13.444C5.251 13.391 5.177 13.368 5.135 13.411ZM4.787 13.143C4.764 13.186 4.797 13.239 4.861 13.272C4.913 13.305 4.977 13.295 5 13.249C5.023 13.206 4.99 13.153 4.926 13.12C4.861 13.1 4.81 13.11 4.787 13.143ZM5.832 14.321C5.78 14.364 5.8 14.463 5.874 14.526C5.948 14.602 6.042 14.612 6.084 14.559C6.126 14.516 6.107 14.417 6.042 14.354C5.971 14.278 5.874 14.268 5.832 14.321ZM5.465 13.834C5.413 13.867 5.413 13.953 5.465 14.029C5.517 14.105 5.604 14.138 5.646 14.105C5.698 14.062 5.698 13.976 5.646 13.9C5.601 13.824 5.517 13.791 5.465 13.834Z",fill:"currentColor",key:"6atr68"}]]}; +export{C as github}; \ No newline at end of file diff --git a/wwwroot/chunk-BwUVHSLd.js b/wwwroot/chunk-BwUVHSLd.js new file mode 100644 index 0000000..c7a2bf8 --- /dev/null +++ b/wwwroot/chunk-BwUVHSLd.js @@ -0,0 +1,2 @@ +var e={name:"heading",meta:{tags:["title","section","text formatting","header","heading"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16 1.25C16.4142 1.25 16.75 1.58579 16.75 2V18C16.75 18.4142 16.4142 18.75 16 18.75C15.5858 18.75 15.25 18.4142 15.25 18V10.75H4.75V18C4.75 18.4142 4.41421 18.75 4 18.75C3.58579 18.75 3.25 18.4142 3.25 18V2C3.25 1.58579 3.58579 1.25 4 1.25C4.41421 1.25 4.75 1.58579 4.75 2V9.25H15.25V2C15.25 1.58579 15.5858 1.25 16 1.25Z",fill:"currentColor",key:"o1kxgn"}]]}; +export{e as heading}; \ No newline at end of file diff --git a/wwwroot/chunk-BwcvZgHZ.js b/wwwroot/chunk-BwcvZgHZ.js new file mode 100644 index 0000000..a541fa2 --- /dev/null +++ b/wwwroot/chunk-BwcvZgHZ.js @@ -0,0 +1,2 @@ +var C={name:"calendar-clock",meta:{tags:["calendar-clock","schedule","date","event","time"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.75 10.25C17.2353 10.25 19.25 12.2647 19.25 14.75C19.25 17.2353 17.2353 19.25 14.75 19.25C12.2647 19.25 10.25 17.2353 10.25 14.75C10.25 12.2647 12.2647 10.25 14.75 10.25ZM13 0.25C13.4142 0.25 13.75 0.585786 13.75 1V2.25H15C16.5188 2.25 17.75 3.48122 17.75 5V8.5C17.75 8.91421 17.4142 9.25 17 9.25H3.75V16C3.75 16.6904 4.30964 17.25 5 17.25H9C9.41421 17.25 9.75 17.5858 9.75 18C9.75 18.4142 9.41421 18.75 9 18.75H5C3.48122 18.75 2.25 17.5188 2.25 16V5C2.25 3.48122 3.48122 2.25 5 2.25H6.25V1C6.25 0.585786 6.58579 0.25 7 0.25C7.41421 0.25 7.75 0.585786 7.75 1V2.25H12.25V1C12.25 0.585786 12.5858 0.25 13 0.25ZM14.75 11.75C13.0931 11.75 11.75 13.0931 11.75 14.75C11.75 16.4069 13.0931 17.75 14.75 17.75C16.4069 17.75 17.75 16.4069 17.75 14.75C17.75 13.0931 16.4069 11.75 14.75 11.75ZM14.5 12.75C14.9142 12.75 15.25 13.0858 15.25 13.5V14.75H15.5C15.9142 14.75 16.25 15.0858 16.25 15.5C16.25 15.9142 15.9142 16.25 15.5 16.25H14.5C14.0858 16.25 13.75 15.9142 13.75 15.5V13.5C13.75 13.0858 14.0858 12.75 14.5 12.75ZM5 3.75C4.30964 3.75 3.75 4.30964 3.75 5V7.75H16.25V5C16.25 4.30964 15.6904 3.75 15 3.75H13.75V5C13.75 5.41421 13.4142 5.75 13 5.75C12.5858 5.75 12.25 5.41421 12.25 5V3.75H7.75V5C7.75 5.41421 7.41421 5.75 7 5.75C6.58579 5.75 6.25 5.41421 6.25 5V3.75H5Z",fill:"currentColor",key:"154sjk"}]]}; +export{C as calendarClock}; \ No newline at end of file diff --git a/wwwroot/chunk-ByNlNAoF.js b/wwwroot/chunk-ByNlNAoF.js new file mode 100644 index 0000000..d1db61c --- /dev/null +++ b/wwwroot/chunk-ByNlNAoF.js @@ -0,0 +1,2 @@ +var e={name:"shield",meta:{tags:["shield","protect","secure","guard","defense"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.76624 1.28709C9.94367 1.2289 10.1374 1.23952 10.3092 1.31736C12.9815 2.52892 14.3578 3.01007 16.9235 3.51951L18.1032 3.74217L18.2262 3.77537C18.5026 3.87571 18.6993 4.13131 18.7184 4.4326C19.3714 14.8286 10.9224 18.4341 10.2828 18.6943C10.1065 18.766 9.90882 18.7683 9.73109 18.7002C9.36531 18.5599 7.10804 17.5971 5.01136 15.373C2.89484 13.1277 0.957103 9.60788 1.28187 4.4326C1.30367 4.08819 1.55745 3.80338 1.8971 3.74217C5.27457 3.13343 6.64557 2.69175 9.69105 1.31638L9.76624 1.28709ZM9.99866 2.81931C7.22889 4.05794 5.73426 4.54452 2.75257 5.10545C2.62914 9.48931 4.30765 12.4401 6.10316 14.3447C7.66859 16.0052 9.33395 16.8772 9.99574 17.1806C11.4452 16.5095 17.4716 13.2334 17.2457 5.10642C14.266 4.54659 12.7788 4.06713 9.99866 2.81931Z",fill:"currentColor",key:"4f041s"}]]}; +export{e as shield}; \ No newline at end of file diff --git a/wwwroot/chunk-BzD-5Uny.js b/wwwroot/chunk-BzD-5Uny.js new file mode 100644 index 0000000..c3a3242 --- /dev/null +++ b/wwwroot/chunk-BzD-5Uny.js @@ -0,0 +1,2 @@ +var C={name:"th-large",meta:{tags:["th-large","grid","layout","blocks","sections"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7 10.75C8.24264 10.75 9.25 11.7574 9.25 13V16C9.25 17.2426 8.24264 18.25 7 18.25H4C2.75736 18.25 1.75 17.2426 1.75 16V13C1.75 11.7574 2.75736 10.75 4 10.75H7ZM16 10.75C17.2426 10.75 18.25 11.7574 18.25 13V16C18.25 17.2426 17.2426 18.25 16 18.25H13C11.7574 18.25 10.75 17.2426 10.75 16V13C10.75 11.7574 11.7574 10.75 13 10.75H16ZM4 12.25C3.58579 12.25 3.25 12.5858 3.25 13V16C3.25 16.4142 3.58579 16.75 4 16.75H7C7.41421 16.75 7.75 16.4142 7.75 16V13C7.75 12.5858 7.41421 12.25 7 12.25H4ZM13 12.25C12.5858 12.25 12.25 12.5858 12.25 13V16C12.25 16.4142 12.5858 16.75 13 16.75H16C16.4142 16.75 16.75 16.4142 16.75 16V13C16.75 12.5858 16.4142 12.25 16 12.25H13ZM7 1.75C8.24264 1.75 9.25 2.75736 9.25 4V7C9.25 8.24264 8.24264 9.25 7 9.25H4C2.75736 9.25 1.75 8.24264 1.75 7V4C1.75 2.75736 2.75736 1.75 4 1.75H7ZM16 1.75C17.2426 1.75 18.25 2.75736 18.25 4V7C18.25 8.24264 17.2426 9.25 16 9.25H13C11.7574 9.25 10.75 8.24264 10.75 7V4C10.75 2.75736 11.7574 1.75 13 1.75H16ZM4 3.25C3.58579 3.25 3.25 3.58579 3.25 4V7C3.25 7.41421 3.58579 7.75 4 7.75H7C7.41421 7.75 7.75 7.41421 7.75 7V4C7.75 3.58579 7.41421 3.25 7 3.25H4ZM13 3.25C12.5858 3.25 12.25 3.58579 12.25 4V7C12.25 7.41421 12.5858 7.75 13 7.75H16C16.4142 7.75 16.75 7.41421 16.75 7V4C16.75 3.58579 16.4142 3.25 16 3.25H13Z",fill:"currentColor",key:"10zkz5"}]]}; +export{C as thLarge}; \ No newline at end of file diff --git a/wwwroot/chunk-C-8g8p0O.js b/wwwroot/chunk-C-8g8p0O.js new file mode 100644 index 0000000..f57a014 --- /dev/null +++ b/wwwroot/chunk-C-8g8p0O.js @@ -0,0 +1,2 @@ +var C={name:"calendar-plus",meta:{tags:["calendar-plus","add-event","new-date","schedule"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13 0.75C13.4142 0.75 13.75 1.08579 13.75 1.5V2.75H15C16.5188 2.75 17.75 3.98122 17.75 5.5V16.5C17.75 18.0188 16.5188 19.25 15 19.25H5C3.48122 19.25 2.25 18.0188 2.25 16.5V5.5C2.25 3.98122 3.48122 2.75 5 2.75H6.25V1.5C6.25 1.08579 6.58579 0.75 7 0.75C7.41421 0.75 7.75 1.08579 7.75 1.5V2.75H12.25V1.5C12.25 1.08579 12.5858 0.75 13 0.75ZM3.75 16.5C3.75 17.1904 4.30964 17.75 5 17.75H15C15.6904 17.75 16.25 17.1904 16.25 16.5V9.75H3.75V16.5ZM10 11.25C10.4142 11.25 10.75 11.5858 10.75 12V13.25H12C12.4142 13.25 12.75 13.5858 12.75 14C12.75 14.4142 12.4142 14.75 12 14.75H10.75V16C10.75 16.4142 10.4142 16.75 10 16.75C9.58579 16.75 9.25 16.4142 9.25 16V14.75H8C7.58579 14.75 7.25 14.4142 7.25 14C7.25 13.5858 7.58579 13.25 8 13.25H9.25V12C9.25 11.5858 9.58579 11.25 10 11.25ZM5 4.25C4.30964 4.25 3.75 4.80964 3.75 5.5V8.25H16.25V5.5C16.25 4.80964 15.6904 4.25 15 4.25H13.75V5.5C13.75 5.91421 13.4142 6.25 13 6.25C12.5858 6.25 12.25 5.91421 12.25 5.5V4.25H7.75V5.5C7.75 5.91421 7.41421 6.25 7 6.25C6.58579 6.25 6.25 5.91421 6.25 5.5V4.25H5Z",fill:"currentColor",key:"j70stm"}]]}; +export{C as calendarPlus}; \ No newline at end of file diff --git a/wwwroot/chunk-C-ZnT4I5.js b/wwwroot/chunk-C-ZnT4I5.js new file mode 100644 index 0000000..e878f71 --- /dev/null +++ b/wwwroot/chunk-C-ZnT4I5.js @@ -0,0 +1,2 @@ +var e={name:"mobile",meta:{tags:["mobile","phone","device","smartphone","cellphone"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14 1.25C14.9665 1.25 15.75 2.0335 15.75 3V17C15.75 17.9665 14.9665 18.75 14 18.75H6C5.0335 18.75 4.25 17.9665 4.25 17V3C4.25 2.0335 5.0335 1.25 6 1.25H14ZM6 2.75C5.86193 2.75 5.75 2.86193 5.75 3V17C5.75 17.1381 5.86193 17.25 6 17.25H14C14.1381 17.25 14.25 17.1381 14.25 17V3C14.25 2.86193 14.1381 2.75 14 2.75H6ZM10 13C10.55 13 11 13.45 11 14C11 14.55 10.55 15 10 15C9.45 15 9 14.55 9 14C9 13.45 9.45 13 10 13Z",fill:"currentColor",key:"3cpog5"}]]}; +export{e as mobile}; \ No newline at end of file diff --git a/wwwroot/chunk-C0hWobdV.js b/wwwroot/chunk-C0hWobdV.js new file mode 100644 index 0000000..bfc7675 --- /dev/null +++ b/wwwroot/chunk-C0hWobdV.js @@ -0,0 +1,2 @@ +var C={name:"hashtag",meta:{tags:["hashtag","tag","trend","topic","social-media"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.2725 1.81834C15.3729 1.4166 15.7799 1.17214 16.1816 1.27244C16.5834 1.37288 16.8278 1.77986 16.7275 2.18162L15.96 5.24998H19C19.4142 5.24998 19.75 5.58579 19.75 5.99998C19.75 6.41419 19.4142 6.74998 19 6.74998H15.585L13.96 13.25H17C17.4142 13.25 17.75 13.5858 17.75 14C17.75 14.4142 17.4142 14.75 17 14.75H13.585L12.7275 18.1816C12.6271 18.5834 12.2201 18.8278 11.8184 18.7275C11.4166 18.6271 11.1722 18.2201 11.2725 17.8183L12.04 14.75H5.58496L4.72754 18.1816C4.6271 18.5834 4.22013 18.8278 3.81836 18.7275C3.4166 18.6271 3.17215 18.2201 3.27246 17.8183L4.04004 14.75H1C0.585786 14.75 0.25 14.4142 0.25 14C0.250024 13.5858 0.585801 13.25 1 13.25H4.41504L6.04004 6.74998H3C2.58579 6.74998 2.25 6.41419 2.25 5.99998C2.25002 5.58579 2.5858 5.24998 3 5.24998H6.41504L7.27246 1.81834C7.37292 1.4166 7.77989 1.17214 8.18164 1.27244C8.5834 1.37288 8.82782 1.77986 8.72754 2.18162L7.95996 5.24998H14.415L15.2725 1.81834ZM7.58496 6.74998L5.95996 13.25H12.415L14.04 6.74998H7.58496Z",fill:"currentColor",key:"9hgvqi"}]]}; +export{C as hashtag}; \ No newline at end of file diff --git a/wwwroot/chunk-C1HAnR8M.js b/wwwroot/chunk-C1HAnR8M.js new file mode 100644 index 0000000..ec65d35 --- /dev/null +++ b/wwwroot/chunk-C1HAnR8M.js @@ -0,0 +1,2 @@ +var e={name:"arrow-left",meta:{tags:["arrow-left","back","previous","left","return"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.46973 3.46973C8.76262 3.17683 9.23738 3.17683 9.53028 3.46973C9.82311 3.76263 9.82315 4.2374 9.53028 4.53028L4.81055 9.25001H17C17.4142 9.25004 17.75 9.58582 17.75 10C17.75 10.4142 17.4142 10.75 17 10.75H4.81055L9.53028 15.4698C9.82311 15.7626 9.82315 16.2374 9.53028 16.5303C9.2374 16.8232 8.76263 16.8231 8.46973 16.5303L2.46973 10.5303C2.17684 10.2374 2.17684 9.76263 2.46973 9.46974L8.46973 3.46973Z",fill:"currentColor",key:"1aynnl"}]]}; +export{e as arrowLeft}; \ No newline at end of file diff --git a/wwwroot/chunk-C1L8mJC5.js b/wwwroot/chunk-C1L8mJC5.js new file mode 100644 index 0000000..30d6386 --- /dev/null +++ b/wwwroot/chunk-C1L8mJC5.js @@ -0,0 +1,2 @@ +var C={name:"calendar-times",meta:{tags:["calendar-times","delete-event","clear-calendar"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13 0.75C13.4142 0.75 13.75 1.08579 13.75 1.5V2.75H15C16.5188 2.75 17.75 3.98122 17.75 5.5V16.5C17.75 18.0188 16.5188 19.25 15 19.25H5C3.48122 19.25 2.25 18.0188 2.25 16.5V5.5C2.25 3.98122 3.48122 2.75 5 2.75H6.25V1.5C6.25 1.08579 6.58579 0.75 7 0.75C7.41421 0.75 7.75 1.08579 7.75 1.5V2.75H12.25V1.5C12.25 1.08579 12.5858 0.75 13 0.75ZM3.75 16.5C3.75 17.1904 4.30964 17.75 5 17.75H15C15.6904 17.75 16.25 17.1904 16.25 16.5V9.75H3.75V16.5ZM10.8799 12.0596C11.1727 11.767 11.6476 11.7669 11.9404 12.0596C12.2331 12.3524 12.2331 12.8273 11.9404 13.1201L11.0605 14L11.9404 14.8799C12.233 15.1728 12.2332 15.6476 11.9404 15.9404C11.6476 16.2332 11.1728 16.233 10.8799 15.9404L10 15.0605L9.12012 15.9404C8.82726 16.2331 8.35243 16.2331 8.05957 15.9404C7.76691 15.6476 7.76689 15.1727 8.05957 14.8799L8.93945 14L8.05957 13.1201C7.76686 12.8272 7.76674 12.3524 8.05957 12.0596C8.35241 11.7668 8.82723 11.7669 9.12012 12.0596L10 12.9395L10.8799 12.0596ZM5 4.25C4.30964 4.25 3.75 4.80964 3.75 5.5V8.25H16.25V5.5C16.25 4.80964 15.6904 4.25 15 4.25H13.75V5.5C13.75 5.91421 13.4142 6.25 13 6.25C12.5858 6.25 12.25 5.91421 12.25 5.5V4.25H7.75V5.5C7.75 5.91421 7.41421 6.25 7 6.25C6.58579 6.25 6.25 5.91421 6.25 5.5V4.25H5Z",fill:"currentColor",key:"exajwq"}]]}; +export{C as calendarTimes}; \ No newline at end of file diff --git a/wwwroot/chunk-C2rOUNbT.js b/wwwroot/chunk-C2rOUNbT.js new file mode 100644 index 0000000..353cded --- /dev/null +++ b/wwwroot/chunk-C2rOUNbT.js @@ -0,0 +1,2 @@ +var t={name:"print",meta:{tags:["print","printout","hard-copy","document","printer"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.5 1.25C14.1842 1.25 14.75 1.81579 14.75 2.5V5.25H16C17.5142 5.25 18.75 6.48579 18.75 8V12C18.75 13.5142 17.5142 14.75 16 14.75H14.75V17.5C14.75 18.1904 14.1904 18.75 13.5 18.75H6.5C5.80964 18.75 5.25 18.1904 5.25 17.5V14.75H4C2.48579 14.75 1.25 13.5142 1.25 12V8C1.25 6.48579 2.48579 5.25 4 5.25H5.25V2.5C5.25 1.81579 5.81579 1.25 6.5 1.25H13.5ZM6.75 17.25H13.25V10.75H6.75V17.25ZM4 6.75C3.31421 6.75 2.75 7.31421 2.75 8V12C2.75 12.6858 3.31421 13.25 4 13.25H5.25V10.5C5.25 9.80964 5.80964 9.25 6.5 9.25H13.5C14.1904 9.25 14.75 9.80964 14.75 10.5V13.25H16C16.6858 13.25 17.25 12.6858 17.25 12V8C17.25 7.31421 16.6858 6.75 16 6.75H4ZM6.75 5.25H13.25V2.75H6.75V5.25Z",fill:"currentColor",key:"izyfnj"}]]}; +export{t as print}; \ No newline at end of file diff --git a/wwwroot/chunk-C3SoKzdM.js b/wwwroot/chunk-C3SoKzdM.js new file mode 100644 index 0000000..651407e --- /dev/null +++ b/wwwroot/chunk-C3SoKzdM.js @@ -0,0 +1,2 @@ +var t={name:"play",meta:{tags:["play","start","go","run","action"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.21289 2.30665C6.49313 2.19061 6.81579 2.25526 7.03027 2.46974L14.0303 9.46974C14.3232 9.76263 14.3232 10.2374 14.0303 10.5303L7.03027 17.5303C6.81579 17.7448 6.49313 17.8094 6.21289 17.6934C5.93263 17.5773 5.75 17.3034 5.75 17V3.00001C5.75 2.69667 5.93263 2.42274 6.21289 2.30665ZM7.25 15.1895L12.4395 10L7.25 4.81056V15.1895Z",fill:"currentColor",key:"rn1lho"}]]}; +export{t as play}; \ No newline at end of file diff --git a/wwwroot/chunk-C3bIvUKi.js b/wwwroot/chunk-C3bIvUKi.js new file mode 100644 index 0000000..7802d0b --- /dev/null +++ b/wwwroot/chunk-C3bIvUKi.js @@ -0,0 +1,2 @@ +var l={name:"thumbs-down-fill",meta:{tags:["thumbs-down-fill","disapproval","dislike","disagreement","refusal"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.0303 11L11.29 17.3896C11.1301 17.7596 10.7701 17.9999 10.3701 18H10.2803C9.18027 18 8.29004 17.1 8.29004 16V12.5H3.50976C2.56994 12.4999 1.88041 11.6601 2.03027 10.7402H2.01953L3.33984 3.24023C3.46984 2.52023 4.09031 2 4.82031 2H14.0303V11ZM16.3701 2C17.2701 2.00007 17.9902 2.7204 17.9902 3.61035V9.37988C17.9902 10.2698 17.2601 10.9999 16.3701 11H14.7598V2H16.3701Z",fill:"currentColor",key:"jdjyyc"}]]}; +export{l as thumbsDownFill}; \ No newline at end of file diff --git a/wwwroot/chunk-C3sucAnF.js b/wwwroot/chunk-C3sucAnF.js new file mode 100644 index 0000000..28ed9ba --- /dev/null +++ b/wwwroot/chunk-C3sucAnF.js @@ -0,0 +1,2 @@ +var C={name:"bold",meta:{tags:["text formatting","strong","emphasis","font weight","bold"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11 1.25C12.2598 1.25 13.4676 1.7508 14.3584 2.6416C15.2492 3.5324 15.75 4.74022 15.75 6C15.75 7.25978 15.2492 8.4676 14.3584 9.3584C14.2412 9.47558 14.1178 9.58505 13.9902 9.68848C14.4941 9.92117 14.9584 10.2416 15.3584 10.6416C16.2492 11.5324 16.75 12.7402 16.75 14C16.75 15.2598 16.2492 16.4676 15.3584 17.3584C14.4676 18.2492 13.2598 18.75 12 18.75H4C3.58579 18.75 3.25 18.4142 3.25 18V2C3.25 1.58579 3.58579 1.25 4 1.25H11ZM4.75 17.25H12C12.862 17.25 13.6884 16.9073 14.2979 16.2979C14.9073 15.6884 15.25 14.862 15.25 14C15.25 13.138 14.9073 12.3116 14.2979 11.7021C13.6884 11.0927 12.862 10.75 12 10.75H4.75V17.25ZM4.75 9.25H11C11.862 9.25 12.6884 8.90734 13.2979 8.29785C13.9073 7.68836 14.25 6.86195 14.25 6C14.25 5.13805 13.9073 4.31164 13.2979 3.70215C12.6884 3.09266 11.862 2.75 11 2.75H4.75V9.25Z",fill:"currentColor",key:"96evi8"}]]}; +export{C as bold}; \ No newline at end of file diff --git a/wwwroot/chunk-C4Y6Nmaz.js b/wwwroot/chunk-C4Y6Nmaz.js new file mode 100644 index 0000000..146b132 --- /dev/null +++ b/wwwroot/chunk-C4Y6Nmaz.js @@ -0,0 +1,2 @@ +var e={name:"calendar-minus",meta:{tags:["calendar-minus","remove-event","delete-date","cancel-event"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13 0.75C13.4142 0.75 13.75 1.08579 13.75 1.5V2.75H15C16.5188 2.75 17.75 3.98122 17.75 5.5V16.5C17.75 18.0188 16.5188 19.25 15 19.25H5C3.48122 19.25 2.25 18.0188 2.25 16.5V5.5C2.25 3.98122 3.48122 2.75 5 2.75H6.25V1.5C6.25 1.08579 6.58579 0.75 7 0.75C7.41421 0.75 7.75 1.08579 7.75 1.5V2.75H12.25V1.5C12.25 1.08579 12.5858 0.75 13 0.75ZM3.75 16.5C3.75 17.1904 4.30964 17.75 5 17.75H15C15.6904 17.75 16.25 17.1904 16.25 16.5V9.75H3.75V16.5ZM12 13.2998C12.4141 13.2998 12.7499 13.6357 12.75 14.0498C12.75 14.464 12.4142 14.7998 12 14.7998H8C7.58579 14.7998 7.25 14.464 7.25 14.0498C7.25013 13.6357 7.58587 13.2998 8 13.2998H12ZM5 4.25C4.30964 4.25 3.75 4.80964 3.75 5.5V8.25H16.25V5.5C16.25 4.80964 15.6904 4.25 15 4.25H13.75V5.5C13.75 5.91421 13.4142 6.25 13 6.25C12.5858 6.25 12.25 5.91421 12.25 5.5V4.25H7.75V5.5C7.75 5.91421 7.41421 6.25 7 6.25C6.58579 6.25 6.25 5.91421 6.25 5.5V4.25H5Z",fill:"currentColor",key:"jhkfq6"}]]}; +export{e as calendarMinus}; \ No newline at end of file diff --git a/wwwroot/chunk-C4lgb4Kh.js b/wwwroot/chunk-C4lgb4Kh.js new file mode 100644 index 0000000..14a7c74 --- /dev/null +++ b/wwwroot/chunk-C4lgb4Kh.js @@ -0,0 +1,2 @@ +var C={name:"euro",meta:{tags:["euro","money","currency","europe","cash"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.1435 1.25048C13.4708 1.29418 15.5731 2.23436 17.1162 3.75536C17.411 4.04603 17.4144 4.5209 17.124 4.81591C16.8332 5.11067 16.3584 5.11437 16.0634 4.82372C14.7866 3.56502 13.0477 2.78579 11.1152 2.7495C7.8518 2.69096 5.05737 4.7987 4.0957 7.7495H15C15.414 7.7495 15.7497 8.08551 15.75 8.4995C15.75 8.91372 15.4142 9.2495 15 9.2495H3.77929C3.75805 9.45508 3.74306 9.66308 3.73925 9.87353C3.73389 10.1698 3.74896 10.462 3.77831 10.7495H13.5C13.914 10.7495 14.2497 11.0855 14.25 11.4995C14.25 11.9137 13.9142 12.2495 13.5 12.2495H4.09472C5.02588 15.1063 7.68689 17.1919 10.8633 17.2495V17.2505C12.7927 17.2867 14.5599 16.5618 15.8847 15.355L15.9111 15.3315L15.915 15.3276C15.9229 15.3198 15.9406 15.3026 15.9599 15.2847C15.968 15.2772 15.9779 15.2693 15.9883 15.2602L16.1787 15.0698C16.4715 14.777 16.9473 14.7771 17.2402 15.0698C17.5328 15.3627 17.533 15.8376 17.2402 16.1304H17.2392L17.2383 16.1323C17.2368 16.1337 17.2338 16.1358 17.2314 16.1382C17.2265 16.1431 17.2201 16.1504 17.2129 16.1577C17.198 16.1725 17.1799 16.1897 17.1699 16.1997C17.145 16.2246 17.122 16.2476 17.0996 16.27C17.0772 16.2924 17.0551 16.3155 17.0302 16.3403L16.9922 16.3774L16.9716 16.3921C16.9632 16.4005 16.947 16.418 16.9287 16.435C16.9191 16.4439 16.9062 16.4524 16.8935 16.4634L16.8945 16.4643C15.3992 17.8263 13.4306 18.6819 11.2705 18.7475L10.8359 18.7495C6.83451 18.6769 3.50829 15.935 2.53125 12.2495H0.999999C0.585786 12.2495 0.25 11.9137 0.25 11.4995C0.250259 11.0855 0.585946 10.7495 0.999999 10.7495H2.26953C2.24449 10.4523 2.23374 10.1509 2.23925 9.84618C2.24289 9.64547 2.25561 9.44662 2.27246 9.2495H0.999999C0.585786 9.2495 0.25 8.91372 0.25 8.4995C0.250259 8.08551 0.585946 7.7495 0.999999 7.7495H2.5332C3.5419 3.94779 7.03321 1.17528 11.1435 1.2495V1.25048Z",fill:"currentColor",key:"51xi8i"}]]}; +export{C as euro}; \ No newline at end of file diff --git a/wwwroot/chunk-C5_Z_5cM.js b/wwwroot/chunk-C5_Z_5cM.js new file mode 100644 index 0000000..6024ab3 --- /dev/null +++ b/wwwroot/chunk-C5_Z_5cM.js @@ -0,0 +1,2 @@ +var C={name:"eye-dropper",meta:{tags:["color picker","sample","pick color","design","eyedropper"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.6817 1.44629C16.443 1.44629 17.1735 1.74888 17.7119 2.28711C18.2504 2.82553 18.5537 3.55594 18.5537 4.31738C18.5537 5.07891 18.2504 5.80918 17.7119 6.34766L16.836 7.22363C17.0438 7.45996 17.2142 7.72705 17.335 8.01856C17.4792 8.36679 17.5537 8.74026 17.5537 9.11719C17.5537 9.49426 17.4793 9.86843 17.335 10.2168C17.1907 10.565 16.9785 10.8809 16.7119 11.1475C16.4454 11.414 16.1295 11.6262 15.7813 11.7705C15.433 11.9148 15.0587 11.9893 14.6817 11.9893C14.3048 11.9892 13.9312 11.9147 13.583 11.7705C13.2917 11.6498 13.0244 11.4793 12.7881 11.2715L6.89849 17.1621C6.38293 17.6777 5.68332 17.9676 4.95416 17.9678H3.61041C3.32039 17.9679 3.04078 18.0687 2.81842 18.251L2.72662 18.334C2.43375 18.6268 1.95895 18.6267 1.66608 18.334C1.37325 18.0411 1.37329 17.5663 1.66608 17.2734L1.74909 17.1816C1.90539 16.9909 2.00209 16.7581 2.02643 16.5127L2.03229 16.3897V15.0459C2.03245 14.3167 2.32231 13.6172 2.83795 13.1016L8.72759 7.21094C8.26851 6.68853 8.01079 6.01701 8.01079 5.31738C8.01082 4.94041 8.08529 4.56703 8.22954 4.21875C8.37382 3.87046 8.58505 3.55369 8.85161 3.28711C9.11818 3.02054 9.43498 2.80933 9.78325 2.66504C10.1315 2.52079 10.5049 2.44634 10.8819 2.44629C11.5815 2.44629 12.253 2.70403 12.7754 3.16309L13.6514 2.28711C14.1897 1.74877 14.9204 1.44644 15.6817 1.44629ZM3.8985 14.1621C3.66408 14.3965 3.53237 14.7144 3.53229 15.0459V16.3897C3.53227 16.4169 3.52822 16.4445 3.5274 16.4717C3.55495 16.4708 3.58277 16.4678 3.61041 16.4678H4.95416C5.2856 16.4677 5.6036 16.336 5.83794 16.1016L11.7217 10.2178L9.78227 8.27832L3.8985 14.1621ZM15.6817 2.94629C15.3182 2.94644 14.969 3.09062 14.7119 3.34766L13.3125 4.74805C13.1719 4.88862 12.9811 4.96773 12.7823 4.96777C12.5835 4.96773 12.3926 4.88856 12.252 4.74805L11.8516 4.34766C11.5945 4.09067 11.2454 3.94629 10.8819 3.94629C10.702 3.94634 10.5237 3.98194 10.3575 4.05078C10.1911 4.1197 10.0395 4.22035 9.91215 4.34766C9.78485 4.47498 9.68418 4.62663 9.61528 4.79297C9.54643 4.95924 9.51082 5.13742 9.51079 5.31738C9.51079 5.68094 9.65517 6.02997 9.91215 6.28711L13.712 10.0869C13.8393 10.2142 13.9909 10.3159 14.1573 10.3848C14.3235 10.4536 14.5018 10.4892 14.6817 10.4893C14.8617 10.4893 15.0407 10.4536 15.2071 10.3848C15.3734 10.3159 15.5241 10.2142 15.6514 10.0869C15.7787 9.95961 15.8803 9.8089 15.9492 9.64258C16.0182 9.4762 16.0537 9.29727 16.0537 9.11719C16.0537 8.93726 16.0181 8.75901 15.9492 8.59277C15.8803 8.42642 15.7787 8.27479 15.6514 8.14746L15.252 7.74805C14.9592 7.45517 14.9592 6.98038 15.252 6.6875L16.6514 5.28711C16.9086 5.02994 17.0537 4.68108 17.0537 4.31738C17.0537 3.95377 16.9085 3.60478 16.6514 3.34766C16.3943 3.09073 16.0452 2.94629 15.6817 2.94629Z",fill:"currentColor",key:"2tiqon"}]]}; +export{C as eyeDropper}; \ No newline at end of file diff --git a/wwwroot/chunk-C6JmmVH1.js b/wwwroot/chunk-C6JmmVH1.js new file mode 100644 index 0000000..5cc7080 --- /dev/null +++ b/wwwroot/chunk-C6JmmVH1.js @@ -0,0 +1,2 @@ +var C={name:"headphones",meta:{tags:["headphones","music","audio","sound","listen"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M3.75 12.25C3.74999 12.1119 3.63806 12 3.5 12H3.17676L1.88867 12.6445C1.80398 12.6869 1.75 12.7735 1.75 12.8682V14.9961C1.75017 15.1076 1.82444 15.2057 1.93164 15.2363L3.43164 15.665C3.59121 15.7104 3.75 15.5898 3.75 15.4238V12.25ZM5.25 15.4238C5.25 16.5864 4.13733 17.4265 3.01953 17.1074L1.51953 16.6787C0.76838 16.4641 0.250174 15.7773 0.25 14.9961V12.8682C0.25 12.2053 0.624901 11.5992 1.21777 11.3027L2.27148 10.7754C2.28765 10.5468 2.3157 10.2446 2.36719 9.8916C2.48279 9.09897 2.71504 8.02912 3.1875 6.94922C3.66016 5.86886 4.38568 4.75158 5.49902 3.90332C6.62219 3.04768 8.09659 2.5 10 2.5C11.9034 2.5 13.3778 3.04768 14.501 3.90332C15.6143 4.75158 16.3398 5.86886 16.8125 6.94922C17.285 8.02912 17.5172 9.09897 17.6328 9.8916C17.6843 10.2446 17.7114 10.5468 17.7275 10.7754L18.7822 11.3027C19.3751 11.5992 19.75 12.2053 19.75 12.8682V14.9961C19.7498 15.7773 19.2316 16.4641 18.4805 16.6787L16.9805 17.1074C15.8627 17.4265 14.75 16.5864 14.75 15.4238V12.25C14.75 11.3858 15.3766 10.6686 16.2002 10.5264C16.1867 10.3998 16.1705 10.2596 16.1484 10.1084C16.0453 9.40105 15.84 8.4708 15.4375 7.55078C15.0352 6.63125 14.448 5.74839 13.5928 5.09668C12.7472 4.45246 11.5964 4 10 4C8.4036 4 7.25277 4.45246 6.40723 5.09668C5.552 5.74839 4.96479 6.63125 4.5625 7.55078C4.15999 8.4708 3.95472 9.40105 3.85156 10.1084C3.82951 10.2596 3.81235 10.3998 3.79883 10.5264C4.62288 10.6682 5.24999 11.3854 5.25 12.25V15.4238ZM16.25 15.4238C16.25 15.5898 16.4088 15.7104 16.5684 15.665L18.0684 15.2363C18.1756 15.2057 18.2498 15.1075 18.25 14.9961V12.8682C18.25 12.7735 18.196 12.6869 18.1113 12.6445L16.8232 12H16.5C16.3619 12 16.25 12.1119 16.25 12.25V15.4238Z",fill:"currentColor",key:"y4mj7y"}]]}; +export{C as headphones}; \ No newline at end of file diff --git a/wwwroot/chunk-C71VW9ix.js b/wwwroot/chunk-C71VW9ix.js new file mode 100644 index 0000000..b61de85 --- /dev/null +++ b/wwwroot/chunk-C71VW9ix.js @@ -0,0 +1,2 @@ +var e={name:"search-minus",meta:{tags:["search-minus","reduce-search","less-results","narrow-filter","restrict-search"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.76953 1.25C12.9227 1.25 16.29 4.61733 16.29 8.77051C16.2899 10.5767 15.6514 12.2329 14.5898 13.5293L18.5303 17.4697C18.8231 17.7626 18.8231 18.2374 18.5303 18.5303C18.2374 18.8231 17.7626 18.8231 17.4697 18.5303L13.5303 14.5908C12.2336 15.6525 10.5761 16.29 8.76953 16.29C4.61674 16.2898 1.25026 12.9233 1.25 8.77051C1.25 4.61749 4.61657 1.25026 8.76953 1.25ZM8.76953 2.75C5.445 2.75026 2.75 5.44591 2.75 8.77051C2.75026 12.0949 5.44515 14.7898 8.76953 14.79C12.0941 14.79 14.7898 12.095 14.79 8.77051C14.79 5.44575 12.0943 2.75 8.76953 2.75ZM11.25 8C11.6642 8 12 8.33579 12 8.75C12 9.16421 11.6642 9.5 11.25 9.5H6.25C5.83579 9.5 5.5 9.16421 5.5 8.75C5.5 8.33579 5.83579 8 6.25 8H11.25Z",fill:"currentColor",key:"r5qbcd"}]]}; +export{e as searchMinus}; \ No newline at end of file diff --git a/wwwroot/chunk-C7S9pDCz.js b/wwwroot/chunk-C7S9pDCz.js new file mode 100644 index 0000000..055229f --- /dev/null +++ b/wwwroot/chunk-C7S9pDCz.js @@ -0,0 +1,2 @@ +var e={name:"folder",meta:{tags:["folder","file-holder","organizer","container","directory"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M1.75 14.5V5.5C1.75 3.98579 2.98579 2.75 4.5 2.75H7C7.21887 2.75 7.42685 2.84558 7.56934 3.01172L10.3447 6.25H15.5C17.0142 6.25 18.25 7.48579 18.25 9V14.5C18.25 16.0142 17.0142 17.25 15.5 17.25H4.5C2.98579 17.25 1.75 16.0142 1.75 14.5ZM3.25 14.5C3.25 15.1858 3.81421 15.75 4.5 15.75H15.5C16.1858 15.75 16.75 15.1858 16.75 14.5V9C16.75 8.31421 16.1858 7.75 15.5 7.75H10C9.78113 7.75 9.57315 7.65442 9.43066 7.48828L6.65527 4.25H4.5C3.81421 4.25 3.25 4.81421 3.25 5.5V14.5Z",fill:"currentColor",key:"kbzk5z"}]]}; +export{e as folder}; \ No newline at end of file diff --git a/wwwroot/chunk-C8xAjk-l.js b/wwwroot/chunk-C8xAjk-l.js new file mode 100644 index 0000000..44d1e97 --- /dev/null +++ b/wwwroot/chunk-C8xAjk-l.js @@ -0,0 +1,2 @@ +var C={name:"stopwatch",meta:{tags:["stopwatch","time","countdown","timer","race"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.75 4C13.616 4 16.75 7.13401 16.75 11C16.75 14.866 13.616 18 9.75 18C5.88401 18 2.75 14.866 2.75 11C2.75 7.13401 5.88401 4 9.75 4ZM9.75 5.5C6.71243 5.5 4.25 7.96243 4.25 11C4.25 14.0376 6.71243 16.5 9.75 16.5C12.7876 16.5 15.25 14.0376 15.25 11C15.25 7.96243 12.7876 5.5 9.75 5.5ZM9.74023 7.25C10.1543 7.25013 10.4902 7.58587 10.4902 8V11C10.4902 11.4141 10.1543 11.7499 9.74023 11.75C9.32602 11.75 8.99023 11.4142 8.99023 11V8C8.99023 7.58579 9.32602 7.25 9.74023 7.25ZM14.4795 3.70996C14.7724 3.41707 15.2471 3.41707 15.54 3.70996L17.04 5.20996C17.3329 5.50285 17.3329 5.97761 17.04 6.27051C16.7471 6.56316 16.2723 6.56332 15.9795 6.27051L14.4795 4.77051C14.1867 4.4777 14.1868 4.00287 14.4795 3.70996ZM12.25 2C12.6642 2 13 2.33579 13 2.75C13 3.16421 12.6642 3.5 12.25 3.5H7.25C6.83579 3.5 6.5 3.16421 6.5 2.75C6.5 2.33579 6.83579 2 7.25 2H12.25Z",fill:"currentColor",key:"2gtlfj"}]]}; +export{C as stopwatch}; \ No newline at end of file diff --git a/wwwroot/chunk-C9MZNswu.js b/wwwroot/chunk-C9MZNswu.js new file mode 100644 index 0000000..e7bb699 --- /dev/null +++ b/wwwroot/chunk-C9MZNswu.js @@ -0,0 +1,2 @@ +var e={name:"ethereum",meta:{tags:["ethereum","cryptocurrency","blockchain","digital","currency"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.7469 10.1594L10 13.2406L5.25 10.1594L10 1.5L14.7469 10.1594ZM10 14.2301L5.25 11.1488L10 18.5L14.75 11.1488L10 14.2301Z",fill:"currentColor",key:"wiuw8x"}]]}; +export{e as ethereum}; \ No newline at end of file diff --git a/wwwroot/chunk-CACXmwDo.js b/wwwroot/chunk-CACXmwDo.js new file mode 100644 index 0000000..3c6feac --- /dev/null +++ b/wwwroot/chunk-CACXmwDo.js @@ -0,0 +1,2 @@ +var C={name:"pen-to-square",meta:{tags:["pen-to-square","write","edit","note","document"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.25 2.75035C9.66399 2.75061 10 3.0863 10 3.50035C9.99982 3.91425 9.66388 4.25008 9.25 4.25035H3.8125C3.22984 4.25035 2.75 4.73019 2.75 5.31285V16.1878C2.75018 16.7704 3.22995 17.2503 3.8125 17.2503H14.6875C15.2698 17.2501 15.7498 16.7702 15.75 16.1878V10.7503C15.75 10.3361 16.0858 10.0003 16.5 10.0003C16.914 10.0006 17.25 10.3363 17.25 10.7503V16.1878C17.2498 17.5986 16.0983 18.7501 14.6875 18.7503H3.8125C2.40152 18.7503 1.2492 17.5988 1.24902 16.1878V5.31285C1.24902 3.90176 2.40141 2.75035 3.8125 2.75035H9.25ZM16.4795 1.25035C17.0428 1.26301 17.6429 1.46867 18.0801 1.9066C18.5081 2.33541 18.7255 2.91986 18.748 3.48082C18.7677 3.97256 18.6391 4.50655 18.3018 4.93785L18.1436 5.11558L10.4609 12.808C10.3368 12.9322 10.1729 13.0098 9.99805 13.0257L7.56836 13.2464C7.34812 13.2665 7.12988 13.1881 6.97266 13.0326C6.81543 12.877 6.7342 12.6593 6.75195 12.4388L6.94629 10.0326L6.96875 9.90172C7.00229 9.77416 7.06878 9.6563 7.16309 9.56187L14.8457 1.87046C15.2982 1.41724 15.916 1.23769 16.4795 1.25035ZM16.4453 2.74937C16.2011 2.74399 16.0115 2.82562 15.9072 2.93004L8.41895 10.4271L8.31934 11.6712L9.59082 11.556L17.082 4.05601L17.1523 3.96519C17.2158 3.86074 17.256 3.71635 17.249 3.54136C17.2396 3.30669 17.1472 3.09509 17.0186 2.96617C16.8989 2.84635 16.69 2.75487 16.4453 2.74937Z",fill:"currentColor",key:"p20ai9"}]]}; +export{C as penToSquare}; \ No newline at end of file diff --git a/wwwroot/chunk-CAQ2W4Ck.js b/wwwroot/chunk-CAQ2W4Ck.js new file mode 100644 index 0000000..c06b297 --- /dev/null +++ b/wwwroot/chunk-CAQ2W4Ck.js @@ -0,0 +1,2 @@ +var C={name:"info-circle",meta:{tags:["info-circle","information","help","details"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM10 8.25C10.4142 8.25 10.75 8.58579 10.75 9V14C10.75 14.4142 10.4142 14.75 10 14.75C9.58579 14.75 9.25 14.4142 9.25 14V9C9.25 8.58579 9.58579 8.25 10 8.25ZM10 5.25C10.4142 5.25 10.75 5.58579 10.75 6V6.5C10.75 6.91421 10.4142 7.25 10 7.25C9.58579 7.25 9.25 6.91421 9.25 6.5V6C9.25 5.58579 9.58579 5.25 10 5.25Z",fill:"currentColor",key:"l9ro38"}]]}; +export{C as infoCircle}; \ No newline at end of file diff --git a/wwwroot/chunk-CAkA4Jav.js b/wwwroot/chunk-CAkA4Jav.js new file mode 100644 index 0000000..d6e522b --- /dev/null +++ b/wwwroot/chunk-CAkA4Jav.js @@ -0,0 +1,2 @@ +var C={name:"cart-arrow-down",meta:{tags:["cart-arrow-down","shopping"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7.75 14.75C8.58 14.75 9.25 15.42 9.25 16.25C9.25 17.08 8.58 17.75 7.75 17.75C6.92 17.75 6.25 17.08 6.25 16.25C6.25 15.42 6.92 14.75 7.75 14.75ZM14.25 14.75C15.08 14.75 15.75 15.42 15.75 16.25C15.75 17.08 15.08 17.75 14.25 17.75C13.42 17.75 12.75 17.08 12.75 16.25C12.75 15.42 13.42 14.75 14.25 14.75ZM4 1.25C4.36246 1.25 4.67344 1.50959 4.73828 1.86621L6.62598 12.25H15.415L17.2725 4.81836C17.3729 4.41659 17.7799 4.17215 18.1816 4.27246C18.5834 4.3729 18.8278 4.77987 18.7275 5.18164L16.7275 13.1816C16.6441 13.5155 16.3442 13.75 16 13.75H6C5.63754 13.75 5.32656 13.4904 5.26172 13.1338L3.37402 2.75H2C1.58579 2.75 1.25 2.41421 1.25 2C1.25 1.58579 1.58579 1.25 2 1.25H4ZM11 2.25C11.4142 2.25 11.75 2.58579 11.75 3V6.18945L12.4697 5.46973C12.7626 5.17683 13.2374 5.17683 13.5303 5.46973C13.8232 5.76262 13.8232 6.23738 13.5303 6.53027L11.5303 8.53027C11.2374 8.82317 10.7626 8.82317 10.4697 8.53027L8.46973 6.53027C8.17683 6.23738 8.17683 5.76262 8.46973 5.46973C8.76262 5.17683 9.23738 5.17683 9.53027 5.46973L10.25 6.18945V3C10.25 2.58579 10.5858 2.25 11 2.25Z",fill:"currentColor",key:"91ark8"}]]}; +export{C as cartArrowDown}; \ No newline at end of file diff --git a/wwwroot/chunk-CCzM2oTx.js b/wwwroot/chunk-CCzM2oTx.js new file mode 100644 index 0000000..46974ce --- /dev/null +++ b/wwwroot/chunk-CCzM2oTx.js @@ -0,0 +1,2 @@ +var o={name:"rows-2",meta:{tags:["two rows","split horizontal","layout","grid","rows-2"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.25 10.75H2.75V15.7139C2.75 16.6592 3.40058 17.25 4 17.25H16C16.5994 17.25 17.25 16.6592 17.25 15.7139V10.75ZM17.25 4.28613C17.25 3.34078 16.5994 2.75 16 2.75H4C3.40058 2.75 2.75 3.34078 2.75 4.28613V9.25H17.25V4.28613ZM18.75 15.7139C18.75 17.2932 17.6097 18.75 16 18.75H4C2.39028 18.75 1.25 17.2932 1.25 15.7139V4.28613C1.25 2.70676 2.39028 1.25 4 1.25H16C17.6097 1.25 18.75 2.70676 18.75 4.28613V15.7139Z",fill:"currentColor",key:"6if8x0"}]]}; +export{o as rows2}; \ No newline at end of file diff --git a/wwwroot/chunk-CDQKZBpH.js b/wwwroot/chunk-CDQKZBpH.js new file mode 100644 index 0000000..61becba --- /dev/null +++ b/wwwroot/chunk-CDQKZBpH.js @@ -0,0 +1,2 @@ +var t={name:"image",meta:{tags:["image","picture","photo","graphic","illustration"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16 2.25C17.5188 2.25 18.75 3.48122 18.75 5V15C18.75 16.5188 17.5188 17.75 16 17.75H4C2.48122 17.75 1.25 16.5188 1.25 15V5C1.25 3.48122 2.48122 2.25 4 2.25H16ZM10.6016 16.25H16C16.5949 16.25 17.0905 15.834 17.2168 15.2773L14.0498 12.1104L10.6016 16.25ZM2.75 14.2715V15C2.75 15.6904 3.30964 16.25 4 16.25H8.64844L11.167 13.2275L7.0498 9.11035L2.75 14.2715ZM4 3.75C3.30964 3.75 2.75 4.30964 2.75 5V11.9277L6.42383 7.51953L6.47754 7.46191C6.60837 7.33487 6.78185 7.25937 6.96582 7.25098C7.17632 7.24143 7.38127 7.32073 7.53027 7.46973L12.1309 12.0703L13.4238 10.5195L13.4775 10.4619C13.6084 10.3349 13.7818 10.2594 13.9658 10.251C14.1763 10.2414 14.3813 10.3207 14.5303 10.4697L17.25 13.1895V5C17.25 4.30964 16.6904 3.75 16 3.75H4Z",fill:"currentColor",key:"dhaobx"}]]}; +export{t as image}; \ No newline at end of file diff --git a/wwwroot/chunk-CG8Y9LBo.js b/wwwroot/chunk-CG8Y9LBo.js new file mode 100644 index 0000000..42b37b2 --- /dev/null +++ b/wwwroot/chunk-CG8Y9LBo.js @@ -0,0 +1,2 @@ +var C={name:"paragraph-left",meta:{tags:["align left","text alignment","flush left","paragraph formatting","paragraph-left"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M2.9697 12.9697C3.26257 12.6769 3.73736 12.6769 4.03025 12.9697C4.32313 13.2626 4.3231 13.7374 4.03025 14.0303L2.81052 15.25H19C19.4141 15.25 19.7499 15.5858 19.75 16C19.75 16.4142 19.4142 16.75 19 16.75H2.81052L4.03025 17.9697C4.32313 18.2626 4.3231 18.7374 4.03025 19.0303C3.73736 19.3232 3.2626 19.3232 2.9697 19.0303L0.469703 16.5303C0.45673 16.5173 0.444417 16.5039 0.432594 16.4902C0.427768 16.4847 0.422613 16.4794 0.417945 16.4736C0.400066 16.4517 0.384145 16.4286 0.369117 16.4053C0.345263 16.3682 0.323899 16.3288 0.306617 16.2871C0.288789 16.244 0.275981 16.1998 0.266578 16.1553C0.264336 16.1446 0.263471 16.1338 0.261695 16.123C0.256028 16.0889 0.252827 16.0548 0.25193 16.0205C0.251612 16.0088 0.250723 15.9971 0.250953 15.9854C0.251721 15.9486 0.255575 15.9121 0.261695 15.876C0.263214 15.8669 0.263748 15.8577 0.265602 15.8486C0.273799 15.8091 0.285289 15.7703 0.299781 15.7324C0.305126 15.7184 0.312122 15.7051 0.318336 15.6914C0.331549 15.6623 0.346272 15.6339 0.363258 15.6064C0.371177 15.5937 0.378913 15.5807 0.387672 15.5684C0.392922 15.5609 0.397757 15.5532 0.403297 15.5459C0.423473 15.5195 0.44554 15.4939 0.469703 15.4697L2.9697 12.9697ZM17 1.25C17.4142 1.25 17.75 1.58579 17.75 2C17.75 2.41421 17.4142 2.75 17 2.75H15.75V12C15.75 12.4142 15.4142 12.75 15 12.75C14.5858 12.75 14.25 12.4142 14.25 12V2.75H11.75V12C11.75 12.4142 11.4142 12.75 11 12.75C10.5858 12.75 10.25 12.4142 10.25 12V8.75H7.99998C7.00543 8.74999 6.05186 8.35462 5.34861 7.65137C4.64536 6.94811 4.24998 5.99455 4.24998 5C4.24998 4.00545 4.64536 3.05189 5.34861 2.34863C6.05186 1.64538 7.00543 1.25001 7.99998 1.25H17ZM7.99998 2.75C7.40325 2.75001 6.8311 2.98723 6.40916 3.40918C5.98721 3.83113 5.74998 4.40327 5.74998 5C5.74998 5.59673 5.98721 6.16887 6.40916 6.59082C6.8311 7.01277 7.40325 7.24999 7.99998 7.25H10.25V2.75H7.99998Z",fill:"currentColor",key:"ya6odl"}]]}; +export{C as paragraphLeft}; \ No newline at end of file diff --git a/wwwroot/chunk-CHFb1sNc.js b/wwwroot/chunk-CHFb1sNc.js new file mode 100644 index 0000000..416d4f2 --- /dev/null +++ b/wwwroot/chunk-CHFb1sNc.js @@ -0,0 +1,2 @@ +var C={name:"list-ol",meta:{tags:["numbered list","ordered","sequence","enumeration","list-ol"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M2.48965 11.0479C2.93079 10.7891 3.4482 10.6943 3.95254 10.7823C4.39351 10.8594 4.79631 11.0715 5.11172 11.3839L5.2416 11.5235L5.24746 11.5303C5.57386 11.9241 5.75039 12.4233 5.75039 12.9307C5.75022 13.7062 5.33238 14.2546 4.89492 14.6202C4.47423 14.9717 3.95801 15.2191 3.61172 15.3888C3.28845 15.5471 3.1839 15.6488 3.1293 15.7364C3.12673 15.7405 3.12504 15.7456 3.12246 15.7501H5.00039C5.41442 15.7503 5.75039 16.086 5.75039 16.5001C5.75038 16.9142 5.41441 17.2499 5.00039 17.2501H2.25039C1.83619 17.2501 1.50041 16.9143 1.50039 16.5001C1.50039 15.9086 1.58058 15.3856 1.85586 14.9434C2.13465 14.4958 2.54642 14.2406 2.95156 14.0421C3.33368 13.8549 3.6768 13.6837 3.93301 13.4698C4.17218 13.2699 4.25025 13.1042 4.25039 12.9307C4.25039 12.7686 4.19325 12.6112 4.09512 12.4913C3.9865 12.3655 3.84438 12.2861 3.69473 12.2598C3.54488 12.2337 3.38902 12.2608 3.25234 12.3399L3.15762 12.4083C3.06888 12.4851 3.00005 12.5863 2.96035 12.7022C2.8262 13.0939 2.39899 13.3029 2.00723 13.169C1.6154 13.0348 1.40627 12.6077 1.54043 12.2159C1.70761 11.7277 2.04331 11.313 2.48672 11.0499L2.48965 11.0479ZM17.0004 13.7501C17.4143 13.7503 17.7503 14.0861 17.7504 14.5001C17.7504 14.9142 17.4144 15.2499 17.0004 15.2501H8.00039C7.58618 15.2501 7.25039 14.9143 7.25039 14.5001C7.25051 14.086 7.58625 13.7501 8.00039 13.7501H17.0004ZM17.0004 9.25005C17.4143 9.25027 17.7503 9.58607 17.7504 10.0001C17.7504 10.4141 17.4144 10.7498 17.0004 10.7501H8.00039C7.58618 10.7501 7.25039 10.4143 7.25039 10.0001C7.25051 9.58594 7.58625 9.25005 8.00039 9.25005H17.0004ZM2.54336 2.97755C2.95124 2.68635 3.45082 2.6899 3.83633 2.90236C4.23481 3.12215 4.50039 3.55234 4.50039 4.04983V8.50005C4.50017 8.91394 4.16428 9.24983 3.75039 9.25005C3.33631 9.25005 3.00061 8.91408 3.00039 8.50005V4.44045L2.61562 4.6553C2.25386 4.85682 1.79677 4.72596 1.59512 4.36428C1.39384 4.00258 1.52364 3.54636 1.88516 3.34474L2.54336 2.97755ZM17.0004 4.75002C17.4143 4.75024 17.7503 5.08605 17.7504 5.50003C17.7504 5.91411 17.4144 6.24982 17.0004 6.25003H8.00039C7.58618 6.25003 7.25039 5.91424 7.25039 5.50003C7.25051 5.08591 7.58625 4.75002 8.00039 4.75002H17.0004Z",fill:"currentColor",key:"tfnw6"}]]}; +export{C as listOl}; \ No newline at end of file diff --git a/wwwroot/chunk-CJypuhm-.js b/wwwroot/chunk-CJypuhm-.js new file mode 100644 index 0000000..21f81c1 --- /dev/null +++ b/wwwroot/chunk-CJypuhm-.js @@ -0,0 +1,2 @@ +var a={name:"slash",meta:{tags:["divide","separator","diagonal","fraction","slash"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.2479 1.69152C17.5408 1.39863 18.0156 1.39863 18.3085 1.69152C18.6014 1.98441 18.6014 2.45929 18.3085 2.75218L2.75218 18.3085C2.45929 18.6014 1.98442 18.6014 1.69152 18.3085C1.39863 18.0156 1.39863 17.5408 1.69152 17.2479L17.2479 1.69152Z",fill:"currentColor",key:"3pf7sd"}]]}; +export{a as slash}; \ No newline at end of file diff --git a/wwwroot/chunk-CK3HzLAP.js b/wwwroot/chunk-CK3HzLAP.js new file mode 100644 index 0000000..b7eda70 --- /dev/null +++ b/wwwroot/chunk-CK3HzLAP.js @@ -0,0 +1,2 @@ +var e={name:"caret-down",meta:{tags:["caret-down","collapse","down","fall","decrease"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16 5.25C16.2841 5.25 16.5439 5.41095 16.6709 5.66504C16.7977 5.91905 16.77 6.22305 16.5996 6.4502L10.5996 14.4502C10.458 14.6389 10.236 14.75 10 14.75C9.76409 14.75 9.54207 14.6389 9.40042 14.4502L3.40042 6.4502C3.23006 6.22305 3.20231 5.91905 3.32913 5.66504C3.45617 5.41095 3.71595 5.25 4.00003 5.25H16ZM10 12.75L14.5 6.75H5.50003L10 12.75Z",fill:"currentColor",key:"63qmu2"}]]}; +export{e as caretDown}; \ No newline at end of file diff --git a/wwwroot/chunk-CKd1xF6Q.js b/wwwroot/chunk-CKd1xF6Q.js new file mode 100644 index 0000000..d75afd1 --- /dev/null +++ b/wwwroot/chunk-CKd1xF6Q.js @@ -0,0 +1,2 @@ +var C={name:"amazon",meta:{tags:["amazon","online-shopping","ecommerce","products","retail"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.2236 6.66901C9.42758 6.73301 4.97358 7.22302 4.97358 10.865C4.97358 14.776 10.0726 14.936 11.7396 12.408C11.9796 12.772 13.0446 13.747 13.4096 14.079L15.5036 12.079C15.5036 12.079 14.3126 11.175 14.3126 10.193V4.93903C14.3126 4.03503 13.4096 2 10.1716 2C6.92658 2 5.20458 3.96401 5.20458 5.72501L7.91457 5.96802C8.51557 4.20002 9.91257 4.20001 9.91257 4.20001C11.4156 4.19801 11.2236 5.26601 11.2236 6.66901ZM11.2236 9.76901C11.2236 12.626 8.11858 12.198 8.11858 10.383C8.11858 8.69703 9.98058 8.358 11.2236 8.319V9.76901ZM16.2386 15.609C15.9546 15.966 13.6576 18.002 9.80457 18.002C5.95157 18.002 3.00158 15.448 2.09858 14.395C1.84758 14.12 2.13558 13.991 2.30158 14.099C5.00458 15.688 9.22558 18.306 16.0366 15.181C16.3126 15.048 16.5266 15.251 16.2386 15.609ZM17.7056 15.687C17.4656 16.251 17.1156 16.644 16.9236 16.794C16.7206 16.955 16.5736 16.89 16.6836 16.658C16.7946 16.426 17.3956 14.997 17.1516 14.694C16.9116 14.398 15.7876 14.54 15.3816 14.58C14.9836 14.616 14.9026 14.651 14.8656 14.569C14.7806 14.365 15.6656 14.015 16.2486 13.944C16.8276 13.88 17.7606 13.915 17.9446 14.148C18.0826 14.33 17.9456 15.116 17.7056 15.687Z",fill:"currentColor",key:"f8u6bc"}]]}; +export{C as amazon}; \ No newline at end of file diff --git a/wwwroot/chunk-CKu-OKr8.js b/wwwroot/chunk-CKu-OKr8.js new file mode 100644 index 0000000..689acb0 --- /dev/null +++ b/wwwroot/chunk-CKu-OKr8.js @@ -0,0 +1,2 @@ +var C={name:"camera",meta:{tags:["camera","photo","picture","snapshot","image"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.9297 2.75C12.848 2.75 13.7035 3.20325 14.2139 3.97363L15.4014 5.75H16C17.5142 5.75 18.75 6.98579 18.75 8.5V14.5C18.75 16.0142 17.5142 17.25 16 17.25H4C2.48579 17.25 1.25 16.0142 1.25 14.5V8.5C1.25 6.98579 2.48579 5.75 4 5.75H4.59863L5.78613 3.97363C6.29769 3.20154 7.16409 2.75 8.07031 2.75H11.9297ZM8.07031 4.25C7.65767 4.25 7.26483 4.45758 7.03613 4.80371L7.0332 4.80664L5.62402 6.91699C5.48486 7.12525 5.25047 7.25 5 7.25H4C3.31421 7.25 2.75 7.81421 2.75 8.5V14.5C2.75 15.1858 3.31421 15.75 4 15.75H16C16.6858 15.75 17.25 15.1858 17.25 14.5V8.5C17.25 7.81421 16.6858 7.25 16 7.25H15C14.7495 7.25 14.5151 7.12525 14.376 6.91699L12.9668 4.80664L12.9639 4.80371C12.734 4.45587 12.3503 4.25 11.9297 4.25H8.07031ZM10 7.75C11.7949 7.75 13.25 9.20507 13.25 11C13.25 12.7949 11.7949 14.25 10 14.25C8.20507 14.25 6.75 12.7949 6.75 11C6.75 9.20507 8.20507 7.75 10 7.75ZM10 9.25C9.0335 9.25 8.25 10.0335 8.25 11C8.25 11.9665 9.0335 12.75 10 12.75C10.9665 12.75 11.75 11.9665 11.75 11C11.75 10.0335 10.9665 9.25 10 9.25Z",fill:"currentColor",key:"wpct6d"}]]}; +export{C as camera}; \ No newline at end of file diff --git a/wwwroot/chunk-CLGfo1mj.js b/wwwroot/chunk-CLGfo1mj.js new file mode 100644 index 0000000..4c6282d --- /dev/null +++ b/wwwroot/chunk-CLGfo1mj.js @@ -0,0 +1,2 @@ +var L={name:"sparkles",meta:{tags:["sparkles","shine","glitter","twinkle","bright","new","magic"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.7156 13.854C15.8068 13.5806 16.1937 13.5805 16.2849 13.854L16.7029 15.108C16.7328 15.1975 16.8028 15.2676 16.8923 15.2974L18.1462 15.7154C18.4196 15.8066 18.4195 16.1935 18.1462 16.2847L16.8923 16.7027C16.8029 16.7325 16.7328 16.8028 16.7029 16.8922L16.2849 18.1461C16.1937 18.4196 15.8067 18.4196 15.7156 18.1461L15.2976 16.8922C15.2677 16.8027 15.1967 16.7325 15.1072 16.7027L13.8533 16.2847C13.5803 16.1933 13.5803 15.8067 13.8533 15.7154L15.1072 15.2974C15.1967 15.2675 15.2677 15.1975 15.2976 15.108L15.7156 13.854ZM7.25079 2.91152C7.56269 2.31801 8.43693 2.31802 8.74883 2.91152L8.80644 3.04824L10.3416 7.65767L14.9519 9.19382C15.7268 9.45214 15.7268 10.5488 14.9519 10.8071L10.3416 12.3423L8.80644 16.9527C8.54794 17.7272 7.45161 17.7273 7.19318 16.9527L5.65706 12.3423L1.04772 10.8071C0.272876 10.5488 0.273027 9.45227 1.04772 9.19382L5.65706 7.65767L7.19318 3.04824L7.25079 2.91152ZM6.97736 8.4399C6.89269 8.69355 6.69297 8.89343 6.43928 8.978L3.36997 10.0005L6.43928 11.0229C6.66138 11.097 6.84198 11.2589 6.94025 11.4683L6.97736 11.561L7.99981 14.6294L9.02226 11.561L9.05937 11.4683C9.1576 11.259 9.33834 11.097 9.56034 11.0229L12.6287 10.0005L9.56034 8.978C9.30663 8.89342 9.10691 8.69359 9.02226 8.4399L7.99981 5.37053L6.97736 8.4399ZM15.7156 1.85389C15.8068 1.58042 16.1937 1.58039 16.2849 1.85389L16.7029 3.10781C16.7328 3.1973 16.8028 3.26742 16.8923 3.29726L18.1462 3.71524C18.4196 3.80643 18.4195 4.19332 18.1462 4.28458L16.8923 4.70255C16.8029 4.73237 16.7328 4.80264 16.7029 4.89201L16.2849 6.14593C16.1937 6.41944 15.8067 6.41944 15.7156 6.14593L15.2976 4.89201C15.2677 4.80254 15.1967 4.73239 15.1072 4.70255L13.8533 4.28458C13.5803 4.19319 13.5803 3.80657 13.8533 3.71524L15.1072 3.29726C15.1967 3.2674 15.2677 3.19739 15.2976 3.10781L15.7156 1.85389Z",fill:"currentColor",key:"u1wcyv"}]]}; +export{L as sparkles}; \ No newline at end of file diff --git a/wwwroot/chunk-CLQ3kvhm.js b/wwwroot/chunk-CLQ3kvhm.js new file mode 100644 index 0000000..0958a1a --- /dev/null +++ b/wwwroot/chunk-CLQ3kvhm.js @@ -0,0 +1,2 @@ +var e={name:"step-forward",meta:{tags:["step-forward","next","proceed","forward","advance"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14 2.24994C14.4141 2.24994 14.7498 2.58587 14.75 2.99994V17C14.75 17.4142 14.4142 17.75 14 17.75C13.5858 17.75 13.25 17.4142 13.25 17V10.8105L6.53027 17.5303C6.31579 17.7448 5.99313 17.8094 5.71289 17.6934C5.4327 17.5773 5.25 17.3033 5.25 17V2.99994C5.25013 2.69672 5.43273 2.42262 5.71289 2.30658C5.99303 2.19063 6.31582 2.25534 6.53027 2.46967L13.25 9.18943V2.99994C13.2502 2.58587 13.5859 2.24994 14 2.24994ZM6.75 15.1895L11.9395 9.99998L6.75 4.8105V15.1895Z",fill:"currentColor",key:"8h6jqn"}]]}; +export{e as stepForward}; \ No newline at end of file diff --git a/wwwroot/chunk-CMDwvy6C.js b/wwwroot/chunk-CMDwvy6C.js new file mode 100644 index 0000000..61659d2 --- /dev/null +++ b/wwwroot/chunk-CMDwvy6C.js @@ -0,0 +1,2 @@ +var C={name:"signature",meta:{tags:["sign","autograph","handwriting","verify","signature"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 17.25C17.4142 17.25 17.75 17.5858 17.75 18C17.75 18.4142 17.4142 18.75 17 18.75H3C2.58578 18.75 2.24999 18.4142 2.24999 18C2.24999 17.5858 2.58578 17.25 3 17.25H17ZM9.50001 2.25C11.2612 2.25004 12.5648 3.88842 12.169 5.60449L11.8936 6.79785C11.7226 7.53855 11.3715 8.19937 10.8945 8.74023L12.4473 11.0693C12.5348 11.2004 12.7205 11.2187 12.832 11.1074L13.7627 10.1768C14.4461 9.49347 15.5539 9.49345 16.2373 10.1768L18.5303 12.4697C18.8231 12.7626 18.8231 13.2374 18.5303 13.5303C18.2374 13.8232 17.7626 13.8231 17.4698 13.5303L15.1768 11.2373C15.0792 11.1398 14.9209 11.1398 14.8233 11.2373L13.8926 12.168C13.1117 12.9485 11.8118 12.82 11.1992 11.9014L9.72169 9.68555C9.07536 10.0462 8.33423 10.25 7.55372 10.25H6.17383C6.11494 10.5497 6.03678 10.9334 5.94531 11.3398C5.84325 11.7934 5.72318 12.2835 5.59473 12.7207C5.47189 13.1387 5.32325 13.5739 5.14941 13.875C4.88554 14.332 4.62247 14.726 4.42578 15.0059C4.32735 15.1459 4.24523 15.2586 4.18652 15.3369C4.15722 15.376 4.1337 15.4073 4.11719 15.4287C4.10894 15.4394 4.10233 15.4481 4.09765 15.4541C4.09537 15.457 4.09319 15.4592 4.09179 15.4609L4.08886 15.4639V15.4648C3.83232 15.7898 3.3603 15.8453 3.03515 15.5889C2.71014 15.3323 2.65469 14.8603 2.91113 14.5352C2.91167 14.5345 2.91269 14.533 2.91406 14.5312C2.91692 14.5276 2.92156 14.5217 2.92773 14.5137C2.94049 14.4971 2.96011 14.4712 2.98535 14.4375C3.03599 14.3699 3.11034 14.27 3.19921 14.1436C3.37751 13.8899 3.61451 13.5339 3.85058 13.125C3.92674 12.9931 4.03487 12.7109 4.15625 12.2979C4.27195 11.904 4.38389 11.4486 4.48242 11.0107C4.54312 10.741 4.59755 10.4807 4.64453 10.25H3.7705C2.38023 10.2499 1.32319 9.00127 1.55175 7.62988C1.73268 6.54517 2.67079 5.75009 3.7705 5.75H5.49902L5.7627 4.36035C5.83981 3.9534 6.2327 3.68562 6.63965 3.7627C7.04657 3.83983 7.31438 4.23272 7.23731 4.63965L7.01758 5.79688C8.17955 5.95943 9.2423 6.5476 9.99806 7.44922C10.197 7.15512 10.348 6.8232 10.4317 6.46094L10.707 5.26758C10.8862 4.49137 10.2966 3.75004 9.50001 3.75C9.08579 3.75 8.75001 3.41421 8.75001 3C8.75001 2.58579 9.08579 2.25 9.50001 2.25ZM3.7705 7.25C3.40396 7.25009 3.09151 7.51538 3.03125 7.87695C2.95519 8.33397 3.3072 8.74989 3.7705 8.75H4.93066L5.21484 7.25H3.7705ZM6.45801 8.75H7.55372C8.02316 8.74999 8.47003 8.6365 8.86915 8.4375C8.33539 7.78782 7.57107 7.37005 6.73731 7.27246L6.45801 8.75Z",fill:"currentColor",key:"phwvef"}]]}; +export{C as signature}; \ No newline at end of file diff --git a/wwwroot/chunk-CMIRZ0nJ.js b/wwwroot/chunk-CMIRZ0nJ.js new file mode 100644 index 0000000..25277e2 --- /dev/null +++ b/wwwroot/chunk-CMIRZ0nJ.js @@ -0,0 +1,2 @@ +var e={name:"briefcase",meta:{tags:["briefcase","work","job","professional","business"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.25 1.25C12.1904 1.25 13.25 1.8891 13.25 3V4.25H17C17.9665 4.25 18.75 5.0335 18.75 6V16C18.75 16.9665 17.9665 17.75 17 17.75H3C2.0335 17.75 1.25 16.9665 1.25 16V6C1.25 5.0335 2.0335 4.25 3 4.25H6.75V3C6.75 1.8891 7.80956 1.25 8.75 1.25H11.25ZM2.75 16C2.75 16.1381 2.86193 16.25 3 16.25H17C17.1381 16.25 17.25 16.1381 17.25 16V10.75H14.75V13C14.75 13.4142 14.4142 13.75 14 13.75H6C5.58579 13.75 5.25 13.4142 5.25 13V10.75H2.75V16ZM6.75 12.25H13.25V10.75H6.75V12.25ZM3 5.75C2.86193 5.75 2.75 5.86193 2.75 6V9.25H17.25V6C17.25 5.86193 17.1381 5.75 17 5.75H3ZM8.75 2.75C8.56437 2.75 8.41975 2.81098 8.33496 2.87891C8.2511 2.9461 8.25 2.99437 8.25 3V4.25H11.75V3C11.75 2.99437 11.7489 2.9461 11.665 2.87891C11.5803 2.81098 11.4356 2.75 11.25 2.75H8.75Z",fill:"currentColor",key:"ptp21z"}]]}; +export{e as briefcase}; \ No newline at end of file diff --git a/wwwroot/chunk-CMXNn6fK.js b/wwwroot/chunk-CMXNn6fK.js new file mode 100644 index 0000000..bf98914 --- /dev/null +++ b/wwwroot/chunk-CMXNn6fK.js @@ -0,0 +1,2 @@ +var C={name:"discord",meta:{tags:["discord","voice","chat","game","social","communication"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16.5942 4.229C15.3642 3.655 14.0492 3.238 12.6742 3C12.5052 3.305 12.3082 3.71401 12.1722 4.04001C10.7102 3.82101 9.26219 3.82101 7.82819 4.04001C7.69219 3.71401 7.4902 3.305 7.3202 3C5.9442 3.238 4.62719 3.65601 3.39719 4.23201C0.916192 7.97201 0.24419 11.618 0.58019 15.213C2.22519 16.439 3.8202 17.183 5.3882 17.671C5.7752 17.14 6.1202 16.575 6.4182 15.979C5.8522 15.764 5.30919 15.499 4.79719 15.192C4.93319 15.092 5.0662 14.986 5.1942 14.878C8.3202 16.337 11.7172 16.337 14.8062 14.878C14.9362 14.986 15.0692 15.091 15.2032 15.192C14.6892 15.501 14.1452 15.766 13.5792 15.981C13.8762 16.575 14.2202 17.141 14.6092 17.673C16.1782 17.186 17.7742 16.441 19.4202 15.214C19.8132 11.046 18.7442 7.433 16.5942 4.229ZM6.84319 13.003C5.90519 13.003 5.13519 12.129 5.13519 11.065C5.13519 10.001 5.88819 9.125 6.84319 9.125C7.79819 9.125 8.56819 9.999 8.55119 11.065C8.55319 12.129 7.79819 13.003 6.84319 13.003ZM13.1552 13.003C12.2172 13.003 11.4472 12.129 11.4472 11.065C11.4472 10.001 12.2002 9.125 13.1552 9.125C14.1102 9.125 14.8802 9.999 14.8632 11.065C14.8632 12.129 14.1102 13.003 13.1552 13.003Z",fill:"currentColor",key:"5bwxqf"}]]}; +export{C as discord}; \ No newline at end of file diff --git a/wwwroot/chunk-CMaAFeKd.js b/wwwroot/chunk-CMaAFeKd.js new file mode 100644 index 0000000..3d7578e --- /dev/null +++ b/wwwroot/chunk-CMaAFeKd.js @@ -0,0 +1,2 @@ +var e={name:"asterisk",meta:{tags:["asterisk","star","note","reference","highlight"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.0001 2.25C10.4142 2.25004 10.7501 2.58581 10.7501 3V8.7002L15.6876 5.85059C16.0463 5.64366 16.5049 5.76636 16.712 6.125C16.9189 6.4836 16.796 6.94224 16.4376 7.14941L11.4991 10L16.4376 12.8506C16.796 13.0578 16.9189 13.5164 16.712 13.875C16.5049 14.2336 16.0463 14.3563 15.6876 14.1494L10.7501 11.2979V17C10.7501 17.4142 10.4142 17.75 10.0001 17.75C9.58586 17.75 9.25007 17.4142 9.25007 17V11.2979L4.31257 14.1494C3.95388 14.3564 3.49523 14.2337 3.28816 13.875C3.08116 13.5164 3.20408 13.0578 3.56257 12.8506L8.50007 10L3.56257 7.14941C3.20408 6.94225 3.08116 6.48362 3.28816 6.125C3.49523 5.76634 3.95388 5.64361 4.31257 5.85059L9.25007 8.7002V3C9.25007 2.58579 9.58586 2.25 10.0001 2.25Z",fill:"currentColor",key:"cawm4a"}]]}; +export{e as asterisk}; \ No newline at end of file diff --git a/wwwroot/chunk-CMjDv-CI.js b/wwwroot/chunk-CMjDv-CI.js new file mode 100644 index 0000000..26d7817 --- /dev/null +++ b/wwwroot/chunk-CMjDv-CI.js @@ -0,0 +1,2 @@ +var r={name:"arrow-down-left-and-arrow-up-right-to-center",meta:{tags:["arrow-down-left-and-arrow-up-right-to-center","join","meet","intersection"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.50001 10.75C8.9142 10.7501 9.25001 11.0858 9.25001 11.5V17C9.24997 17.4142 8.91417 17.75 8.50001 17.75C8.08582 17.75 7.75005 17.4142 7.75001 17V13.3106L3.03028 18.0303C2.7374 18.3232 2.26262 18.3231 1.96973 18.0303C1.67684 17.7374 1.67684 17.2627 1.96973 16.9698L6.68946 12.25H3C2.58581 12.25 2.25004 11.9142 2.25 11.5C2.25 11.0858 2.58579 10.75 3 10.75H8.50001ZM16.9698 1.96973C17.2626 1.67684 17.7374 1.67684 18.0303 1.96973C18.3231 2.26263 18.3232 2.7374 18.0303 3.03028L13.3106 7.75001H17C17.4142 7.75005 17.75 8.08582 17.75 8.50002C17.75 8.91417 17.4142 9.24998 17 9.25002H11.5C11.0858 9.25002 10.7501 8.91419 10.75 8.50002V3.00001C10.75 2.58579 11.0858 2.25 11.5 2.25C11.9142 2.25004 12.25 2.58581 12.25 3.00001V6.68947L16.9698 1.96973Z",fill:"currentColor",key:"hpdfx2"}]]}; +export{r as arrowDownLeftAndArrowUpRightToCenter}; \ No newline at end of file diff --git a/wwwroot/chunk-CNhspLoj.js b/wwwroot/chunk-CNhspLoj.js new file mode 100644 index 0000000..ddb2ec2 --- /dev/null +++ b/wwwroot/chunk-CNhspLoj.js @@ -0,0 +1,2 @@ +var s={name:"ellipsis-h",meta:{tags:["ellipsis-h","more","options","menu","horizontal","dots"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M3 8.25C3.96421 8.25 4.75 9.03579 4.75 10C4.75 10.9642 3.96421 11.75 3 11.75C2.03579 11.75 1.25 10.9642 1.25 10C1.25 9.03579 2.03579 8.25 3 8.25ZM10 8.25C10.9642 8.25 11.75 9.03579 11.75 10C11.75 10.9642 10.9642 11.75 10 11.75C9.03579 11.75 8.25 10.9642 8.25 10C8.25 9.03579 9.03579 8.25 10 8.25ZM17 8.25C17.9642 8.25 18.75 9.03579 18.75 10C18.75 10.9642 17.9642 11.75 17 11.75C16.0358 11.75 15.25 10.9642 15.25 10C15.25 9.03579 16.0358 8.25 17 8.25Z",fill:"currentColor",key:"5srhsb"}]]}; +export{s as ellipsisH}; \ No newline at end of file diff --git a/wwwroot/chunk-COTxONT4.js b/wwwroot/chunk-COTxONT4.js new file mode 100644 index 0000000..7d74ff0 --- /dev/null +++ b/wwwroot/chunk-COTxONT4.js @@ -0,0 +1,2 @@ +var C={name:"wrench",meta:{tags:["wrench","tool","fix","repair","adjust"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.05968 2.90929C10.5363 1.43281 12.6467 0.938184 14.5382 1.45714C14.7958 1.52783 14.9962 1.73014 15.0646 1.98839C15.1328 2.24655 15.059 2.52121 14.8702 2.71007L12.4181 5.16124L12.9405 7.06944L14.8468 7.5919L17.2999 5.13976L17.3741 5.07433C17.5568 4.93448 17.7956 4.88567 18.0216 4.94542C18.2798 5.01379 18.4822 5.21416 18.5528 5.47179C19.0718 7.36332 18.5771 9.47372 17.1007 10.9503L17.0987 10.9523C15.6161 12.4243 13.5362 12.8934 11.6544 12.4054L6.14073 17.92C5.01963 19.0411 3.20142 19.0461 2.08604 17.9171C0.979397 16.7967 0.975366 14.9838 2.08995 13.8692L7.60362 8.3546C7.11545 6.47509 7.57513 4.39384 9.05968 2.90929ZM12.6837 2.77452C11.7467 2.85772 10.8325 3.2576 10.1202 3.96983C8.94799 5.14207 8.63631 6.83462 9.15733 8.3214C9.2527 8.59342 9.1844 8.89687 8.98058 9.10069L3.1505 14.9308C2.62527 15.4561 2.62033 16.3238 3.15343 16.8634C3.67803 17.3942 4.54037 17.3982 5.07921 16.8595L10.9093 11.0294C11.1131 10.8256 11.4166 10.7573 11.6886 10.8526C13.0799 11.3402 14.656 11.0908 15.8155 10.0968L16.0411 9.8878C16.7527 9.17546 17.1515 8.26195 17.2345 7.3253L15.6007 8.96007C15.4102 9.15052 15.132 9.22447 14.8722 9.15343L12.1319 8.40343C11.8763 8.33343 11.6765 8.13369 11.6066 7.87804L10.8566 5.1378C10.7855 4.87801 10.8595 4.59974 11.0499 4.40929L12.6837 2.77452Z",fill:"currentColor",key:"fyn01g"}]]}; +export{C as wrench}; \ No newline at end of file diff --git a/wwwroot/chunk-CRi0OPFY.js b/wwwroot/chunk-CRi0OPFY.js new file mode 100644 index 0000000..4ce356c --- /dev/null +++ b/wwwroot/chunk-CRi0OPFY.js @@ -0,0 +1,2 @@ +var o={name:"sort-down",meta:{tags:["sort-down","descending","down","decrease","lower"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 5.75C17.3034 5.75 17.5773 5.93263 17.6934 6.21289C17.8094 6.49313 17.7448 6.81579 17.5303 7.03027L10.5303 14.0303C10.2374 14.3232 9.76263 14.3232 9.46974 14.0303L2.46974 7.03027C2.25526 6.81579 2.19061 6.49313 2.30665 6.21289C2.42274 5.93263 2.69667 5.75 3.00001 5.75H17ZM10 12.4395L15.1895 7.25H4.81056L10 12.4395Z",fill:"currentColor",key:"cahri1"}]]}; +export{o as sortDown}; \ No newline at end of file diff --git a/wwwroot/chunk-CSjcPLJv.js b/wwwroot/chunk-CSjcPLJv.js new file mode 100644 index 0000000..15889db --- /dev/null +++ b/wwwroot/chunk-CSjcPLJv.js @@ -0,0 +1,2 @@ +var C={name:"arrows-alt",meta:{tags:["arrows-alt","direction","move"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.0254 1.25098C10.0319 1.2512 10.0384 1.25156 10.0449 1.25195C10.0839 1.25426 10.122 1.25954 10.1592 1.26758C10.1925 1.2748 10.2246 1.28607 10.2568 1.29785C10.2693 1.30242 10.2828 1.30437 10.2949 1.30957C10.314 1.31772 10.3311 1.33004 10.3496 1.33984C10.3734 1.35248 10.3977 1.36387 10.4199 1.37891C10.4588 1.40524 10.4959 1.43532 10.5303 1.46973L13.0303 3.96973C13.3232 4.26262 13.3232 4.73738 13.0303 5.03027C12.7374 5.32317 12.2626 5.32317 11.9697 5.03027L10.75 3.81055V9.25H16.1895L14.9697 8.03027C14.6768 7.73738 14.6768 7.26262 14.9697 6.96973C15.2626 6.67683 15.7374 6.67683 16.0303 6.96973L18.5303 9.46973C18.5787 9.51812 18.616 9.5732 18.6484 9.62988C18.664 9.65703 18.6803 9.68375 18.6924 9.71289C18.7131 9.76289 18.7279 9.81459 18.7373 9.86719C18.745 9.91035 18.75 9.95462 18.75 10C18.75 10.045 18.7449 10.089 18.7373 10.1318C18.7279 10.1845 18.713 10.2361 18.6924 10.2861C18.6803 10.3153 18.6639 10.342 18.6484 10.3691C18.616 10.4261 18.5789 10.4817 18.5303 10.5303L16.0303 13.0303C15.7374 13.3232 15.2626 13.3232 14.9697 13.0303C14.6768 12.7374 14.6768 12.2626 14.9697 11.9697L16.1895 10.75H10.75V16.1895L11.9697 14.9697C12.2626 14.6768 12.7374 14.6768 13.0303 14.9697C13.3232 15.2626 13.3232 15.7374 13.0303 16.0303L10.5303 18.5303C10.4817 18.5789 10.4261 18.616 10.3691 18.6484C10.342 18.6639 10.3153 18.6803 10.2861 18.6924C10.2541 18.7056 10.2208 18.7141 10.1875 18.7227C10.1744 18.7261 10.1618 18.7317 10.1484 18.7344C10.1429 18.7355 10.1374 18.7363 10.1318 18.7373C10.089 18.7449 10.045 18.75 10 18.75C9.95462 18.75 9.91035 18.745 9.86719 18.7373C9.86165 18.7363 9.8561 18.7355 9.85059 18.7344C9.8372 18.7317 9.82464 18.7261 9.81152 18.7227C9.77828 18.714 9.74492 18.7057 9.71289 18.6924C9.68375 18.6803 9.65703 18.664 9.62988 18.6484C9.5732 18.616 9.51812 18.5787 9.46973 18.5303L6.96973 16.0303C6.67683 15.7374 6.67683 15.2626 6.96973 14.9697C7.26262 14.6768 7.73738 14.6768 8.03027 14.9697L9.25 16.1895V10.75H3.81055L5.03027 11.9697C5.32317 12.2626 5.32317 12.7374 5.03027 13.0303C4.73738 13.3232 4.26262 13.3232 3.96973 13.0303L1.46973 10.5303C1.421 10.4816 1.3831 10.4263 1.35059 10.3691C1.33512 10.342 1.31868 10.3153 1.30664 10.2861C1.28603 10.2361 1.27106 10.1844 1.26172 10.1318C1.25413 10.089 1.25 10.045 1.25 10C1.25 9.95468 1.25402 9.91029 1.26172 9.86719C1.27082 9.81636 1.28505 9.76621 1.30469 9.71777L1.30859 9.70801C1.32018 9.68061 1.33596 9.6555 1.35059 9.62988C1.38303 9.57305 1.42121 9.51824 1.46973 9.46973L3.96973 6.96973C4.26262 6.67683 4.73738 6.67683 5.03027 6.96973C5.32317 7.26262 5.32317 7.73738 5.03027 8.03027L3.81055 9.25H9.25V3.81055L8.03027 5.03027C7.73738 5.32317 7.26262 5.32317 6.96973 5.03027C6.67683 4.73738 6.67683 4.26262 6.96973 3.96973L9.46973 1.46973L9.52637 1.41797C9.53656 1.40965 9.54807 1.40321 9.55859 1.39551C9.57413 1.38414 9.59003 1.37345 9.60645 1.36328C9.63034 1.34849 9.65462 1.3351 9.67969 1.32324C9.69786 1.31462 9.71641 1.30697 9.73535 1.2998C9.76293 1.28942 9.79094 1.28144 9.81934 1.27441C9.8394 1.26944 9.85922 1.26309 9.87988 1.25977C9.89094 1.25799 9.90198 1.25616 9.91309 1.25488C9.9416 1.25159 9.97061 1.25 10 1.25C10.0085 1.25 10.017 1.2507 10.0254 1.25098Z",fill:"currentColor",key:"kt2m04"}]]}; +export{C as arrowsAlt}; \ No newline at end of file diff --git a/wwwroot/chunk-CTuNXAWt.js b/wwwroot/chunk-CTuNXAWt.js new file mode 100644 index 0000000..6d7e37d --- /dev/null +++ b/wwwroot/chunk-CTuNXAWt.js @@ -0,0 +1,2 @@ +var C={name:"truck",meta:{tags:["truck","delivery","transport","vehicle","cargo"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.75 2.25C12.7142 2.25 13.5 3.03579 13.5 4V4.75H15.5C17.5742 4.75 19.25 6.42579 19.25 8.5V13C19.25 13.9642 18.4642 14.75 17.5 14.75H17.2393C17.1116 16.4281 15.7108 17.75 14 17.75C12.2892 17.75 10.8884 16.4281 10.7607 14.75H9.23926C9.11156 16.4281 7.71078 17.75 6 17.75C4.28923 17.75 2.88844 16.4281 2.76074 14.75H2.5C1.53579 14.75 0.75 13.9642 0.75 13V4C0.75 3.03579 1.53579 2.25 2.5 2.25H11.75ZM6 12.75C5.63392 12.75 5.29379 12.8625 5.0127 13.0547C4.92501 13.1147 4.84279 13.1823 4.76758 13.2568C4.60451 13.4183 4.47327 13.6115 4.38379 13.8262C4.29725 14.0335 4.25 14.2613 4.25 14.5C4.25 15.4665 5.0335 16.25 6 16.25C6.9665 16.25 7.75 15.4665 7.75 14.5C7.75 14.2612 7.70187 14.0336 7.61523 13.8262C7.52567 13.6115 7.39465 13.4183 7.23145 13.2568C7.15618 13.1823 7.07408 13.1147 6.98633 13.0547C6.70536 12.8628 6.3658 12.75 6 12.75ZM14 12.75C13.934 12.75 13.8696 12.7541 13.8066 12.7607C13.5957 12.7839 13.3964 12.8452 13.2148 12.9365L13.123 12.9902C12.6996 13.2332 12.3903 13.6529 12.2842 14.1553C12.2619 14.2667 12.25 14.382 12.25 14.5C12.25 15.4665 13.0335 16.25 14 16.25C14.9665 16.25 15.75 15.4665 15.75 14.5C15.75 14.2612 15.7019 14.0336 15.6152 13.8262C15.5257 13.6115 15.3947 13.4183 15.2314 13.2568C15.1562 13.1823 15.0741 13.1147 14.9863 13.0547C14.7054 12.8628 14.3658 12.75 14 12.75ZM2.5 3.75C2.36421 3.75 2.25 3.86421 2.25 4V13C2.25 13.1358 2.36421 13.25 2.5 13.25H3C3.13635 12.9231 3.32589 12.6248 3.55566 12.3623C3.59421 12.3182 3.63299 12.2744 3.67383 12.2324C3.69971 12.2059 3.72616 12.18 3.75293 12.1543C3.79086 12.1179 3.83046 12.0834 3.87012 12.0488C3.90252 12.0206 3.93426 11.9917 3.96777 11.9648C4.02321 11.9203 4.08034 11.8778 4.13867 11.8369C4.21307 11.7848 4.28938 11.7353 4.36816 11.6895C4.37458 11.6857 4.38125 11.6824 4.3877 11.6787C4.5121 11.6075 4.64136 11.5438 4.77539 11.4893C4.79351 11.4819 4.81179 11.4748 4.83008 11.4678C4.96039 11.4175 5.09462 11.3752 5.23242 11.3418C5.25319 11.3368 5.274 11.3318 5.29492 11.3271C5.4375 11.2956 5.58349 11.2729 5.73242 11.2607C5.74314 11.2599 5.7539 11.2596 5.76465 11.2588C5.84238 11.2532 5.92085 11.25 6 11.25C6.07882 11.25 6.15696 11.2533 6.23438 11.2588C6.24512 11.2596 6.25589 11.2599 6.2666 11.2607C6.41555 11.2728 6.56151 11.2956 6.7041 11.3271C6.72503 11.3318 6.74583 11.3368 6.7666 11.3418C6.90442 11.3751 7.03861 11.4175 7.16895 11.4678C7.18724 11.4748 7.20551 11.4819 7.22363 11.4893C7.3577 11.5438 7.48689 11.6075 7.61133 11.6787C7.61778 11.6824 7.62444 11.6857 7.63086 11.6895C7.70967 11.7353 7.78593 11.7848 7.86035 11.8369C7.91871 11.8778 7.9758 11.9203 8.03125 11.9648C8.06478 11.9917 8.09649 12.0207 8.12891 12.0488C8.16858 12.0834 8.20815 12.1179 8.24609 12.1543C8.27288 12.18 8.2993 12.2059 8.3252 12.2324C8.36605 12.2744 8.4048 12.3182 8.44336 12.3623C8.67333 12.6249 8.86356 12.9229 9 13.25H11C11.2163 12.7315 11.5638 12.2828 12 11.9414V4C12 3.86421 11.8858 3.75 11.75 3.75H2.5ZM13.5 9.25H17.75V8.5C17.75 7.25421 16.7458 6.25 15.5 6.25H13.5V9.25Z",fill:"currentColor",key:"v1xid8"}]]}; +export{C as truck}; \ No newline at end of file diff --git a/wwwroot/chunk-CVWfWsz_.js b/wwwroot/chunk-CVWfWsz_.js new file mode 100644 index 0000000..9b7b744 --- /dev/null +++ b/wwwroot/chunk-CVWfWsz_.js @@ -0,0 +1,2 @@ +var C={name:"code-branch",meta:{tags:["version control","git","fork","branch","code-branch"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.25 2.25C15.4926 2.25 16.5 3.25736 16.5 4.5C16.5 5.47922 15.8733 6.30895 15 6.61816V8C15 9.51878 13.7688 10.75 12.25 10.75H6.5V13.3809C7.37343 13.69 8 14.5207 8 15.5C8 16.7426 6.99264 17.75 5.75 17.75C4.50736 17.75 3.5 16.7426 3.5 15.5C3.5 14.5207 4.12657 13.69 5 13.3809V6.61816C4.12673 6.30895 3.5 5.47922 3.5 4.5C3.5 3.25736 4.50736 2.25 5.75 2.25C6.99264 2.25 8 3.25736 8 4.5C8 5.47922 7.37327 6.30895 6.5 6.61816V9.25H12.25C12.9404 9.25 13.5 8.69036 13.5 8V6.61816C12.6267 6.30895 12 5.47922 12 4.5C12 3.25736 13.0074 2.25 14.25 2.25ZM5.75 14.75C5.33579 14.75 5 15.0858 5 15.5C5 15.9142 5.33579 16.25 5.75 16.25C6.16421 16.25 6.5 15.9142 6.5 15.5C6.5 15.0858 6.16421 14.75 5.75 14.75ZM5.75 3.75C5.33579 3.75 5 4.08579 5 4.5C5 4.91421 5.33579 5.25 5.75 5.25C6.16421 5.25 6.5 4.91421 6.5 4.5C6.5 4.08579 6.16421 3.75 5.75 3.75ZM14.25 3.75C13.8358 3.75 13.5 4.08579 13.5 4.5C13.5 4.91421 13.8358 5.25 14.25 5.25C14.6642 5.25 15 4.91421 15 4.5C15 4.08579 14.6642 3.75 14.25 3.75Z",fill:"currentColor",key:"4t7b2b"}]]}; +export{C as codeBranch}; \ No newline at end of file diff --git a/wwwroot/chunk-CVkqnXWK.js b/wwwroot/chunk-CVkqnXWK.js new file mode 100644 index 0000000..c1462a7 --- /dev/null +++ b/wwwroot/chunk-CVkqnXWK.js @@ -0,0 +1,2 @@ +var o={name:"grid-2",meta:{tags:["two by two","layout","sections","blocks","grid-2"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.25 10.75H10.75V17.25H16C16.5994 17.25 17.25 16.6592 17.25 15.7139V10.75ZM2.75 15.7139C2.75 16.6592 3.40058 17.25 4 17.25H9.25V10.75H2.75V15.7139ZM17.25 4.28613C17.25 3.34078 16.5994 2.75 16 2.75H10.75V9.25H17.25V4.28613ZM2.75 9.25H9.25V2.75H4C3.40058 2.75 2.75 3.34078 2.75 4.28613V9.25ZM18.75 15.7139C18.75 17.2932 17.6097 18.75 16 18.75H4C2.39028 18.75 1.25 17.2932 1.25 15.7139V4.28613C1.25 2.70676 2.39028 1.25 4 1.25H16C17.6097 1.25 18.75 2.70676 18.75 4.28613V15.7139Z",fill:"currentColor",key:"7kum7y"}]]}; +export{o as grid2}; \ No newline at end of file diff --git a/wwwroot/chunk-CW4oHvvn.js b/wwwroot/chunk-CW4oHvvn.js new file mode 100644 index 0000000..3b267e2 --- /dev/null +++ b/wwwroot/chunk-CW4oHvvn.js @@ -0,0 +1,2 @@ +var C={name:"arrow-right-arrow-left",meta:{tags:["arrow-right-arrow-left","bidirectional","left-and-right","alternation","back-and-forth"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M4.96973 10.9697C5.26262 10.6768 5.73738 10.6768 6.03027 10.9697C6.32314 11.2626 6.32316 11.7374 6.03027 12.0303L4.81055 13.25H17C17.4142 13.25 17.75 13.5858 17.75 14C17.75 14.4142 17.4142 14.75 17 14.75H4.81055L6.03027 15.9698C6.32314 16.2626 6.32316 16.7374 6.03027 17.0303C5.73739 17.3232 5.26261 17.3232 4.96973 17.0303L2.46973 14.5303C2.43771 14.4983 2.40978 14.4636 2.38477 14.4278C2.35404 14.3837 2.32743 14.3365 2.30664 14.2862C2.28591 14.2359 2.27105 14.1838 2.26172 14.1309C2.25423 14.0884 2.25 14.0447 2.25 14C2.25 13.9547 2.25402 13.9103 2.26172 13.8672C2.27081 13.8164 2.28505 13.7662 2.30469 13.7178L2.30859 13.708C2.32018 13.6806 2.33596 13.6555 2.35059 13.6299C2.38303 13.5731 2.42122 13.5183 2.46973 13.4697L4.96973 10.9697ZM13.9697 2.96973C14.2626 2.67683 14.7374 2.67683 15.0303 2.96973L17.5303 5.46973C17.5787 5.51813 17.616 5.5732 17.6484 5.62989C17.664 5.65704 17.6803 5.68376 17.6924 5.7129C17.7131 5.76289 17.7279 5.8146 17.7373 5.86719C17.745 5.91034 17.75 5.95464 17.75 6.00001C17.75 6.04472 17.7448 6.0883 17.7373 6.13087C17.728 6.18382 17.7132 6.2358 17.6924 6.28614C17.6715 6.3365 17.6451 6.38361 17.6143 6.42774C17.5893 6.46346 17.5622 6.49841 17.5303 6.53028L15.0303 9.03029C14.7374 9.32314 14.2626 9.32314 13.9697 9.03029C13.6768 8.7374 13.6769 8.26263 13.9697 7.96974L15.1895 6.75001H3C2.58581 6.75001 2.25003 6.41419 2.25 6.00001C2.25 5.58579 2.58579 5.25 3 5.25H15.1895L13.9697 4.03028C13.6768 3.73739 13.6769 3.26262 13.9697 2.96973Z",fill:"currentColor",key:"xmny1k"}]]}; +export{C as arrowRightArrowLeft}; \ No newline at end of file diff --git a/wwwroot/chunk-CWgO16Vu.js b/wwwroot/chunk-CWgO16Vu.js new file mode 100644 index 0000000..f930da9 --- /dev/null +++ b/wwwroot/chunk-CWgO16Vu.js @@ -0,0 +1,2 @@ +var C={name:"history",meta:{tags:["history","past","records","timeline","memories"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M2.25 2C2.66421 2 3 2.33579 3 2.75V5.65918L4.2002 4.45996C7.47309 1.18715 12.7672 1.18712 16.04 4.45996C19.3128 7.73283 19.3128 13.0269 16.04 16.2998C12.7672 19.5727 7.47309 19.5726 4.2002 16.2998C3.90734 16.0069 3.90731 15.5321 4.2002 15.2393C4.49311 14.9468 4.96799 14.9465 5.26074 15.2393C7.94785 17.9263 12.2924 17.9263 14.9795 15.2393C17.6665 12.5522 17.6665 8.20759 14.9795 5.52051C12.2924 2.83345 7.94785 2.83348 5.26074 5.52051L4.03027 6.75H7C7.41421 6.75 7.75 7.08579 7.75 7.5C7.75 7.91421 7.41421 8.25 7 8.25H2.25C1.83579 8.25 1.5 7.91421 1.5 7.5V2.75C1.5 2.33579 1.83579 2 2.25 2ZM10 5.25C10.4142 5.25 10.75 5.58579 10.75 6V9.68945L13.0303 11.9697C13.3232 12.2626 13.3232 12.7374 13.0303 13.0303C12.7374 13.3232 12.2626 13.3232 11.9697 13.0303L9.46973 10.5303C9.32907 10.3896 9.25 10.1989 9.25 10V6C9.25 5.58579 9.58579 5.25 10 5.25Z",fill:"currentColor",key:"co8lj1"}]]}; +export{C as history}; \ No newline at end of file diff --git a/wwwroot/chunk-CX-xfH5L.js b/wwwroot/chunk-CX-xfH5L.js new file mode 100644 index 0000000..a0c5ee4 --- /dev/null +++ b/wwwroot/chunk-CX-xfH5L.js @@ -0,0 +1,2 @@ +var C={name:"file-word",meta:{tags:["file-word","document","edit","write","microsoft"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.5 1.25C10.6989 1.25 10.8896 1.32907 11.0303 1.46973L16.5303 6.96973C16.6709 7.11038 16.75 7.30109 16.75 7.5V16C16.75 17.5142 15.5142 18.75 14 18.75H6C4.48579 18.75 3.25 17.5142 3.25 16V4C3.25 2.48579 4.48579 1.25 6 1.25H10.5ZM6 2.75C5.31421 2.75 4.75 3.31421 4.75 4V16C4.75 16.6858 5.31421 17.25 6 17.25H14C14.6858 17.25 15.25 16.6858 15.25 16V8.25H10.5C10.0858 8.25 9.75 7.91421 9.75 7.5V2.75H6ZM10 9.75C10.3067 9.75 10.5824 9.93694 10.6963 10.2217L11.8975 13.2266L12.7812 10.2842C12.9003 9.88755 13.3191 9.66224 13.7158 9.78125C14.1125 9.90035 14.3378 10.3191 14.2188 10.7158L12.7188 15.7158C12.6271 16.0212 12.3517 16.2348 12.0332 16.249C11.7147 16.2631 11.4221 16.0744 11.3037 15.7783L10 12.5186L8.69629 15.7783C8.57787 16.0744 8.28531 16.2631 7.9668 16.249C7.64828 16.2348 7.37294 16.0212 7.28125 15.7158L5.78125 10.7158C5.66224 10.3191 5.88755 9.90035 6.28418 9.78125C6.68086 9.66224 7.09965 9.88755 7.21875 10.2842L8.10156 13.2266L9.30371 10.2217L9.35352 10.1191C9.48682 9.89273 9.73172 9.75 10 9.75ZM11.25 6.75H14.1895L11.25 3.81055V6.75Z",fill:"currentColor",key:"litry0"}]]}; +export{C as fileWord}; \ No newline at end of file diff --git a/wwwroot/chunk-CXC50BBV.js b/wwwroot/chunk-CXC50BBV.js new file mode 100644 index 0000000..946c1dc --- /dev/null +++ b/wwwroot/chunk-CXC50BBV.js @@ -0,0 +1,2 @@ +var e={name:"align-center",meta:{tags:["align-center","text-alignment","center-text","middle-alignment","centered-layout"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15 15.25C15.4142 15.25 15.75 15.5858 15.75 16C15.75 16.4142 15.4142 16.75 15 16.75H5C4.58579 16.75 4.25 16.4142 4.25 16C4.25 15.5858 4.58579 15.25 5 15.25H15ZM18 11.25C18.4142 11.25 18.75 11.5858 18.75 12C18.75 12.4142 18.4142 12.75 18 12.75H2C1.58579 12.75 1.25 12.4142 1.25 12C1.25 11.5858 1.58579 11.25 2 11.25H18ZM15 7.25C15.4142 7.25 15.75 7.58579 15.75 8C15.75 8.41421 15.4142 8.75 15 8.75H5C4.58579 8.75 4.25 8.41421 4.25 8C4.25 7.58579 4.58579 7.25 5 7.25H15ZM18 3.25C18.4142 3.25 18.75 3.58579 18.75 4C18.75 4.41421 18.4142 4.75 18 4.75H2C1.58579 4.75 1.25 4.41421 1.25 4C1.25 3.58579 1.58579 3.25 2 3.25H18Z",fill:"currentColor",key:"qwsvt3"}]]}; +export{e as alignCenter}; \ No newline at end of file diff --git a/wwwroot/chunk-CYM_wo41.js b/wwwroot/chunk-CYM_wo41.js new file mode 100644 index 0000000..e1c63e9 --- /dev/null +++ b/wwwroot/chunk-CYM_wo41.js @@ -0,0 +1,2 @@ +var C={name:"address-book",meta:{tags:["address-book","contacts","directory","information","numbers"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.4541 1.25C14.4139 1.25 15.25 2.00243 15.25 3V17C15.25 17.9976 14.4139 18.75 13.4541 18.75H4.0459C3.08606 18.75 2.25 17.9976 2.25 17V3C2.25 2.00243 3.08606 1.25 4.0459 1.25H13.4541ZM4.0459 2.75C3.85096 2.75 3.75 2.893 3.75 3V17C3.75 17.107 3.85096 17.25 4.0459 17.25H13.4541C13.649 17.25 13.75 17.107 13.75 17V3C13.75 2.893 13.649 2.75 13.4541 2.75H4.0459ZM17 13.25C17.4142 13.25 17.75 13.5858 17.75 14V16C17.75 16.4142 17.4142 16.75 17 16.75C16.5858 16.75 16.25 16.4142 16.25 16V14C16.25 13.5858 16.5858 13.25 17 13.25ZM8.75 10.5C9.19119 10.5 9.63811 10.4997 10.042 10.5342C10.4446 10.5686 10.8664 10.642 11.2471 10.8232C11.649 11.0146 11.9841 11.3169 12.2051 11.7588C12.4161 12.181 12.5 12.6834 12.5 13.25C12.5 13.6642 12.1642 14 11.75 14C11.3358 14 11 13.6642 11 13.25C11 12.8167 10.9334 12.569 10.8633 12.4287C10.803 12.3084 10.7255 12.2353 10.6025 12.1768C10.4583 12.1081 10.2425 12.0564 9.91406 12.0283C9.58674 12.0004 9.20872 12 8.75 12C8.29129 12 7.91326 12.0004 7.58594 12.0283C7.25745 12.0564 7.04171 12.1081 6.89746 12.1768C6.77453 12.2353 6.697 12.3084 6.63672 12.4287C6.56659 12.569 6.5 12.8167 6.5 13.25C6.5 13.6642 6.16421 14 5.75 14C5.33579 14 5 13.6642 5 13.25C5 12.6834 5.08392 12.181 5.29492 11.7588C5.51586 11.3169 5.85103 11.0146 6.25293 10.8232C6.63364 10.642 7.05542 10.5686 7.45801 10.5342C7.86189 10.4997 8.30881 10.5 8.75 10.5ZM17 8.25C17.4142 8.25 17.75 8.58579 17.75 9V11C17.75 11.4142 17.4142 11.75 17 11.75C16.5858 11.75 16.25 11.4142 16.25 11V9C16.25 8.58579 16.5858 8.25 17 8.25ZM8.75 6C9.85457 6 10.75 6.89543 10.75 8C10.75 9.10457 9.85457 10 8.75 10C7.64543 10 6.75 9.10457 6.75 8C6.75 6.89543 7.64543 6 8.75 6ZM8.75 7.5C8.47386 7.5 8.25 7.72386 8.25 8C8.25 8.27614 8.47386 8.5 8.75 8.5C9.02614 8.5 9.25 8.27614 9.25 8C9.25 7.72386 9.02614 7.5 8.75 7.5ZM17 3.25C17.4142 3.25 17.75 3.58579 17.75 4V6C17.75 6.41421 17.4142 6.75 17 6.75C16.5858 6.75 16.25 6.41421 16.25 6V4C16.25 3.58579 16.5858 3.25 17 3.25Z",fill:"currentColor",key:"h577aa"}]]}; +export{C as addressBook}; \ No newline at end of file diff --git a/wwwroot/chunk-CYepWBv0.js b/wwwroot/chunk-CYepWBv0.js new file mode 100644 index 0000000..2b455e1 --- /dev/null +++ b/wwwroot/chunk-CYepWBv0.js @@ -0,0 +1,2 @@ +var C={name:"user-plus",meta:{tags:["user-plus","add-user","new-user","register","signup"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 12.25C12.0105 12.25 13.9066 12.418 15.3184 13.0801C16.0408 13.4189 16.6618 13.8983 17.0977 14.5703C17.5343 15.2438 17.75 16.0561 17.75 17C17.75 17.4142 17.4142 17.75 17 17.75C16.5858 17.75 16.25 17.4142 16.25 17C16.25 16.2891 16.0906 15.7735 15.8398 15.3867C15.5882 14.9987 15.2091 14.6849 14.6816 14.4375C13.5934 13.9271 11.9895 13.75 10 13.75C8.01048 13.75 6.40661 13.9271 5.31836 14.4375C4.79093 14.6849 4.41177 14.9987 4.16016 15.3867C3.90942 15.7735 3.75 16.2891 3.75 17C3.75 17.4142 3.41421 17.75 3 17.75C2.58579 17.75 2.25 17.4142 2.25 17C2.25 16.0561 2.46567 15.2438 2.90234 14.5703C3.33821 13.8983 3.95922 13.4189 4.68164 13.0801C6.09339 12.418 7.98953 12.25 10 12.25ZM17 7.5C17.4142 7.5 17.75 7.83579 17.75 8.25V9.25H18.75C19.1642 9.25 19.5 9.58579 19.5 10C19.5 10.4142 19.1642 10.75 18.75 10.75H17.75V11.75C17.75 12.1642 17.4142 12.5 17 12.5C16.5858 12.5 16.25 12.1642 16.25 11.75V10.75H15.25C14.8358 10.75 14.5 10.4142 14.5 10C14.5 9.58579 14.8358 9.25 15.25 9.25H16.25V8.25C16.25 7.83579 16.5858 7.5 17 7.5ZM10 3.25C12.0711 3.25 13.75 4.92893 13.75 7C13.75 9.07107 12.0711 10.75 10 10.75C7.92893 10.75 6.25 9.07107 6.25 7C6.25 4.92893 7.92893 3.25 10 3.25ZM10 4.75C8.75736 4.75 7.75 5.75736 7.75 7C7.75 8.24264 8.75736 9.25 10 9.25C11.2426 9.25 12.25 8.24264 12.25 7C12.25 5.75736 11.2426 4.75 10 4.75Z",fill:"currentColor",key:"1gdold"}]]}; +export{C as userPlus}; \ No newline at end of file diff --git a/wwwroot/chunk-CZ6NLRQ2.js b/wwwroot/chunk-CZ6NLRQ2.js new file mode 100644 index 0000000..c31b0b6 --- /dev/null +++ b/wwwroot/chunk-CZ6NLRQ2.js @@ -0,0 +1,2 @@ +var C={name:"question",meta:{tags:["question","help","query","doubt","uncertainty"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 16.25C10.6904 16.25 11.25 16.8096 11.25 17.5C11.25 18.1904 10.6904 18.75 10 18.75C9.30964 18.75 8.75 18.1904 8.75 17.5C8.75 16.8096 9.30964 16.25 10 16.25ZM10 1.25C11.5923 1.25 13.0338 1.88159 14.0732 2.93262C15.1045 3.97533 15.75 5.40196 15.75 7C15.75 8.59234 15.1184 10.0338 14.0674 11.0732C13.1912 11.9398 12.0372 12.5312 10.75 12.6992V14C10.75 14.4142 10.4142 14.75 10 14.75C9.58579 14.75 9.25 14.4142 9.25 14V12C9.25 11.5858 9.58579 11.25 10 11.25C11.1727 11.25 12.236 10.775 13.0127 10.0068C13.7817 9.24631 14.25 8.18765 14.25 7C14.25 5.81805 13.7756 4.76459 13.0068 3.9873C12.2463 3.21833 11.1877 2.75 10 2.75C8.81804 2.75 7.76459 3.22442 6.9873 3.99316C6.21833 4.75369 5.75 5.81235 5.75 7C5.75 7.41421 5.41421 7.75 5 7.75C4.58579 7.75 4.25 7.41421 4.25 7C4.25 5.40766 4.8816 3.96623 5.93262 2.92676C6.97533 1.8955 8.40196 1.25 10 1.25Z",fill:"currentColor",key:"e6ye25"}]]}; +export{C as question}; \ No newline at end of file diff --git a/wwwroot/chunk-CZEoJB1K.js b/wwwroot/chunk-CZEoJB1K.js new file mode 100644 index 0000000..8c90fea --- /dev/null +++ b/wwwroot/chunk-CZEoJB1K.js @@ -0,0 +1,3810 @@ +import {P as U,g,F as Ft,bk as c,bl as X4$1,bm as tq,U as Uo$1,V as VG,a1 as hM,B as Bc$1,r as rM,a as au$1,Y as YM,b as bp$1,_ as aM,c as cu$1,w as VE,a9 as pN,m as mD,z as z_,n as n_,o as oM,e as zE,a0 as cM,bj as rN,T as PM,bn as XM,d as gD,W as W_,bo as vw,bp as a,K as b,f as mn,$ as $t,i as iq,h as mu$1,L as yn,M as Bp$1,N as sz,D as az,O as cz,u as uz,l as gs$1,R as nq,bq as eq,ad as Ui,ac as J,aR as BG,br as j4$1,bs as J4$1,bt as Me,ap as m,aq as l$1,bu as PI,aK as o$1,q as cA,s as BE,x as jM,G as su$1,y as nN,A as j0$1,X as XE,C as IM,Q as QE,I as I$1,bv as A4$1,E as xt,ag as YE,p as Vc$1,bw as Yn$1,bx as tO,by as T4$1,b6 as b4$1,bz as _4$1,bA as rO,bB as oO,bC as M4$1,a$ as I4$1,b0 as uO,bD as OI,bE as z4$1,bc as Gs$1,a3 as fu$1,k as oq,al as Ae,bF as lO,S as sq,t as uu$1,bG as de,bH as w4$1,aY as RI,aj as Rt,ai as jr$1,b4 as aO,b2 as AI,bI as Kr$1,v as lu$1,H as EM,a4 as fD,ab as xp$1,aE as oe,ay as Pe,b5 as N4$2,b9 as H4$1,bJ as g4$1,bK as p4$1,bL as cO,b8 as D4$1,ar as Y,J as WI,bM as n,bN as U4$1,a_ as F4$1,aZ as x4$1,bO as wc$1,bP as Dc$1,aO as _e$1,bQ as vi,bR as P,bf as oN,ae as G,bS as K,bT as R4$1,bU as L4$1,bV as pS,bW as Ke,bX as qx,bY as pl$1,bZ as $x,a7 as Rm$1,a8 as xm$1,am as Ie,b_ as f4$1,aL as zh,b$ as Jx,c0 as G4$1,c1 as hl$1,c2 as kI,c3 as P4$1,c4 as h4$1,c5 as O4$1,b7 as C4$1,a5 as Gm$1,c6 as iM,Z as qE,c7 as CM,c8 as iN,a2 as Ha$1,a6 as GE,bi as aT,ak as rD,c9 as fS,ca as sM,aa as QM,cb as Ov,cc as cN,cd as Mp$1,ce as Np$1,cf as aN,cg as uN,ch as sN,ci as pD}from'./main-ILRVANDG.js';import {R as Rn,g as On,h as In,i as $n,j as Hn,m as jn$1,p as e4$1,M as M5$1,$ as $4$1,P as Pi,E as Ei,F as Fn,_ as _n,v as vr$1,r as rn,T as T0$1,a as an,y as y5$1,d as ar$1,I,s as Lo$1,b as L,t as _e,u as B3$1,n as nn,o as o1,w as Q8$1,x as ce,A as I3$1,C as j8$1,N as N4$1,D as b4$2,Z as Z8$1,X as X9$1,Y as Y9$1,e as co$1,G as De,J as Mo$1,K as V3,S as Pn,W,a0 as L5$1,a1 as q0$1,a2 as cr$1,a3 as z4$2,f as M4$2,a4 as be,a5 as v2$1,q as q4$1,Q as Qr$1,O as Oo$1,H as Hr$1,k as kr$1,a6 as R3$1,a7 as e$h,a8 as e$i}from'./chunk-DIc0UlHL.js';var C$5={name:"window-maximize",meta:{tags:["window-maximize","enlarge","full-screen","expand","increase"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6 12.25C6.9665 12.25 7.75 13.0335 7.75 14V17C7.75 17.9665 6.9665 18.75 6 18.75H3C2.0335 18.75 1.25 17.9665 1.25 17V14C1.25 13.0335 2.0335 12.25 3 12.25H6ZM16 1.25C17.5142 1.25 18.75 2.48579 18.75 4V16C18.75 17.5142 17.5142 18.75 16 18.75H10C9.58579 18.75 9.25 18.4142 9.25 18C9.25 17.5858 9.58579 17.25 10 17.25H16C16.6858 17.25 17.25 16.6858 17.25 16V4C17.25 3.31421 16.6858 2.75 16 2.75H4C3.31421 2.75 2.75 3.31421 2.75 4V10C2.75 10.4142 2.41421 10.75 2 10.75C1.58579 10.75 1.25 10.4142 1.25 10V4C1.25 2.48579 2.48579 1.25 4 1.25H16ZM3 13.75C2.86193 13.75 2.75 13.8619 2.75 14V17C2.75 17.1381 2.86193 17.25 3 17.25H6C6.13807 17.25 6.25 17.1381 6.25 17V14C6.25 13.8619 6.13807 13.75 6 13.75H3ZM14 5.25C14.045 5.25 14.089 5.25413 14.1318 5.26172C14.1374 5.2627 14.1429 5.26354 14.1484 5.26465C14.1618 5.26733 14.1744 5.27298 14.1875 5.27637C14.2207 5.28495 14.2541 5.29344 14.2861 5.30664C14.3153 5.31868 14.342 5.33512 14.3691 5.35059C14.4263 5.3831 14.4816 5.421 14.5303 5.46973C14.5787 5.51812 14.616 5.5732 14.6484 5.62988C14.664 5.65703 14.6803 5.68375 14.6924 5.71289C14.7131 5.76289 14.7279 5.81459 14.7373 5.86719C14.745 5.91035 14.75 5.95462 14.75 6V10C14.75 10.4142 14.4142 10.75 14 10.75C13.5858 10.75 13.25 10.4142 13.25 10V7.81055L10.0303 11.0303C9.73738 11.3232 9.26262 11.3232 8.96973 11.0303C8.67683 10.7374 8.67683 10.2626 8.96973 9.96973L12.1895 6.75H10C9.58579 6.75 9.25 6.41421 9.25 6C9.25 5.58579 9.58579 5.25 10 5.25H14Z",fill:"currentColor",key:"zaqlif"}]]}; +var C$4={name:"window-minimize",meta:{tags:["window-minimize","shrink","small-screen","collapse","decrease-size"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6 12.25C6.9665 12.25 7.75 13.0335 7.75 14V17C7.75 17.9665 6.9665 18.75 6 18.75H3C2.0335 18.75 1.25 17.9665 1.25 17V14C1.25 13.0335 2.0335 12.25 3 12.25H6ZM16 1.25C17.5142 1.25 18.75 2.48579 18.75 4V16C18.75 17.5142 17.5142 18.75 16 18.75H10C9.58579 18.75 9.25 18.4142 9.25 18C9.25 17.5858 9.58579 17.25 10 17.25H16C16.6858 17.25 17.25 16.6858 17.25 16V4C17.25 3.31421 16.6858 2.75 16 2.75H4C3.31421 2.75 2.75 3.31421 2.75 4V10C2.75 10.4142 2.41421 10.75 2 10.75C1.58579 10.75 1.25 10.4142 1.25 10V4C1.25 2.48579 2.48579 1.25 4 1.25H16ZM3 13.75C2.86193 13.75 2.75 13.8619 2.75 14V17C2.75 17.1381 2.86193 17.25 3 17.25H6C6.13807 17.25 6.25 17.1381 6.25 17V14C6.25 13.8619 6.13807 13.75 6 13.75H3ZM13.4697 5.46973C13.7626 5.17683 14.2374 5.17683 14.5303 5.46973C14.8232 5.76262 14.8232 6.23738 14.5303 6.53027L11.3105 9.75H13.5C13.9142 9.75 14.25 10.0858 14.25 10.5C14.25 10.9142 13.9142 11.25 13.5 11.25H9.5C9.45462 11.25 9.41035 11.245 9.36719 11.2373C9.36165 11.2363 9.3561 11.2355 9.35059 11.2344C9.3372 11.2317 9.32464 11.2261 9.31152 11.2227C9.27828 11.214 9.24492 11.2057 9.21289 11.1924C9.18375 11.1803 9.15703 11.164 9.12988 11.1484C9.0732 11.116 9.01812 11.0787 8.96973 11.0303C8.921 10.9816 8.8831 10.9263 8.85059 10.8691C8.83512 10.842 8.81868 10.8153 8.80664 10.7861C8.78603 10.7361 8.77106 10.6844 8.76172 10.6318C8.75413 10.589 8.75 10.545 8.75 10.5V6.5C8.75 6.08579 9.08579 5.75 9.5 5.75C9.91421 5.75 10.25 6.08579 10.25 6.5V8.68945L13.4697 5.46973Z",fill:"currentColor",key:"2tiixc"}]]}; +var l={name:"filter-fill",meta:{tags:["filter-fill","selection","full-filter","complete-criteria"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.5002 1.5C17.7827 1.50007 18.0414 1.65908 18.1691 1.91113C18.2968 2.16317 18.2717 2.46551 18.1047 2.69336L12.7502 9.99414V17.75C12.7502 18.1642 12.4143 18.4999 12.0002 18.5H8.00018C7.58597 18.5 7.25018 18.1642 7.25018 17.75V9.99414L1.89569 2.69336C1.72858 2.46547 1.70354 2.16322 1.83124 1.91113C1.959 1.65907 2.21758 1.5 2.50018 1.5H17.5002Z",fill:"currentColor",key:"ckg1lv"}]]}; +var e$g={name:"plus",meta:{tags:["plus","add","increase","more","extra"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 2.25C10.4142 2.25 10.75 2.58579 10.75 3V9.25H17C17.4142 9.25 17.75 9.58579 17.75 10C17.75 10.4142 17.4142 10.75 17 10.75H10.75V17C10.75 17.4142 10.4142 17.75 10 17.75C9.58579 17.75 9.25 17.4142 9.25 17V10.75H3C2.58579 10.75 2.25 10.4142 2.25 10C2.25 9.58579 2.58579 9.25 3 9.25H9.25V3C9.25 2.58579 9.58579 2.25 10 2.25Z",fill:"currentColor",key:"uygcm6"}]]}; +var C$3={name:"trash",meta:{tags:["trash","delete","remove","garbage","waste"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12.7803 1.24023C14.0509 1.24046 15.3104 2.13265 15.3105 3.5V5.01074C15.3105 5.07641 15.2991 5.13949 15.2832 5.2002H18C18.4142 5.2002 18.75 5.53598 18.75 5.9502C18.7499 6.3643 18.4141 6.7002 18 6.7002H16.9707V16.4902C16.9706 17.8447 15.7145 18.7498 14.4404 18.75H5.55078C4.28003 18.75 3.02066 17.8578 3.02051 16.4902V6.7002H2C1.58587 6.7002 1.25013 6.3643 1.25 5.9502C1.25 5.53598 1.58579 5.2002 2 5.2002H4.7168C4.70088 5.13949 4.69049 5.07641 4.69043 5.01074V3.5C4.69058 2.14539 5.94651 1.24023 7.2207 1.24023H12.7803ZM4.52051 16.4902C4.52069 16.8026 4.86179 17.25 5.55078 17.25H14.4404C15.1256 17.2498 15.4705 16.7954 15.4707 16.4902V6.7002H4.52051V16.4902ZM8.21973 8.96973C8.63386 8.96973 8.96959 9.30563 8.96973 9.71973V14.2393C8.96973 14.6535 8.63394 14.9893 8.21973 14.9893C7.80564 14.9891 7.46973 14.6534 7.46973 14.2393V9.71973C7.46986 9.30572 7.80572 8.96987 8.21973 8.96973ZM11.7803 8.96973C12.1943 8.96987 12.5301 9.30572 12.5303 9.71973V14.2393C12.5303 14.6534 12.1944 14.9891 11.7803 14.9893C11.3661 14.9893 11.0303 14.6535 11.0303 14.2393V9.71973C11.0304 9.30563 11.3661 8.96973 11.7803 8.96973ZM7.2207 2.74023C6.53516 2.74023 6.19061 3.19475 6.19043 3.5V5.01074C6.19037 5.07641 6.179 5.13949 6.16309 5.2002H13.8369C13.821 5.13949 13.8106 5.07641 13.8105 5.01074V3.5C13.8104 3.18775 13.4689 2.74045 12.7803 2.74023H7.2207Z",fill:"currentColor",key:"sq6mcj"}]]}; +var e$f={name:"calendar",meta:{tags:["calendar","date","event","schedule","day"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13 0.25C13.4142 0.25 13.75 0.585786 13.75 1V2.25H15C16.5188 2.25 17.75 3.48122 17.75 5V16C17.75 17.5188 16.5188 18.75 15 18.75H5C3.48122 18.75 2.25 17.5188 2.25 16V5C2.25 3.48122 3.48122 2.25 5 2.25H6.25V1C6.25 0.585786 6.58579 0.25 7 0.25C7.41421 0.25 7.75 0.585786 7.75 1V2.25H12.25V1C12.25 0.585786 12.5858 0.25 13 0.25ZM3.75 16C3.75 16.6904 4.30964 17.25 5 17.25H15C15.6904 17.25 16.25 16.6904 16.25 16V9.25H3.75V16ZM5 3.75C4.30964 3.75 3.75 4.30964 3.75 5V7.75H16.25V5C16.25 4.30964 15.6904 3.75 15 3.75H13.75V5C13.75 5.41421 13.4142 5.75 13 5.75C12.5858 5.75 12.25 5.41421 12.25 5V3.75H7.75V5C7.75 5.41421 7.41421 5.75 7 5.75C6.58579 5.75 6.25 5.41421 6.25 5V3.75H5Z",fill:"currentColor",key:"q4dzz"}]]}; +var e$e={name:"chevron-left",meta:{tags:["chevron-left","backward","previous","return","left"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.9697 4.46973C12.2626 4.17684 12.7374 4.17684 13.0303 4.46973C13.3232 4.76262 13.3232 5.23738 13.0303 5.53028L8.56055 10L13.0303 14.4697C13.3232 14.7626 13.3232 15.2374 13.0303 15.5303C12.7374 15.8232 12.2626 15.8232 11.9697 15.5303L6.96973 10.5303C6.67684 10.2374 6.67684 9.76262 6.96973 9.46973L11.9697 4.46973Z",fill:"currentColor",key:"es7c15"}]]}; +var e$d={name:"chevron-right",meta:{tags:["chevron-right","forward","next","right","proceed"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.96973 4.46972C7.26262 4.17683 7.73738 4.17683 8.03028 4.46972L13.0303 9.46972C13.3232 9.76262 13.3232 10.2374 13.0303 10.5303L8.03028 15.5303C7.73738 15.8232 7.26262 15.8232 6.96973 15.5303C6.67684 15.2374 6.67684 14.7626 6.96973 14.4697L11.4395 10L6.96973 5.53027C6.67684 5.23738 6.67684 4.76262 6.96973 4.46972Z",fill:"currentColor",key:"cn504p"}]]}; +var e$c={name:"chevron-up",meta:{tags:["chevron-up","up","increase","rise","elevate"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.52637 6.91797C9.82095 6.67766 10.2557 6.69513 10.5303 6.96973L15.5303 11.9697C15.8232 12.2626 15.8232 12.7374 15.5303 13.0303C15.2374 13.3232 14.7626 13.3232 14.4697 13.0303L10 8.56055L5.53028 13.0303C5.23738 13.3232 4.76262 13.3232 4.46973 13.0303C4.17684 12.7374 4.17684 12.2626 4.46973 11.9697L9.46973 6.96973L9.52637 6.91797Z",fill:"currentColor",key:"ygb8i5"}]]}; +var t$2={name:"blank",svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["rect",{width:"1",height:"1",fill:"currentColor",fillOpacity:"0",key:"dqty8v"}]]}; +var o={name:"arrow-down",meta:{tags:["arrow-down","download","decrease","down","lower"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 2.25C10.4142 2.25003 10.75 2.58581 10.75 3V15.1895L15.4698 10.4697C15.7627 10.1769 16.2374 10.1769 16.5303 10.4697C16.8232 10.7626 16.8232 11.2374 16.5303 11.5303L10.5303 17.5303C10.2374 17.8232 9.76264 17.8232 9.46974 17.5303L3.46973 11.5303C3.17684 11.2374 3.17684 10.7626 3.46973 10.4697C3.76263 10.1769 4.2374 10.1769 4.53028 10.4697L9.25002 15.1895V3C9.25002 2.58579 9.5858 2.25 10 2.25Z",fill:"currentColor",key:"1tm2qt"}]]}; +var e$b={name:"arrow-up",meta:{tags:["arrow-up","upload","increase","up","elevate"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.52638 2.41791C9.82095 2.17769 10.2557 2.19512 10.5303 2.46967L16.5303 8.46969C16.8232 8.76256 16.8231 9.23734 16.5303 9.53024C16.2374 9.82314 15.7627 9.82314 15.4698 9.53024L10.75 4.8105V17C10.75 17.4142 10.4142 17.75 10 17.75C9.5858 17.75 9.25002 17.4142 9.25002 17V4.8105L4.53027 9.53024C4.23737 9.82314 3.76261 9.82314 3.46972 9.53024C3.17685 9.23735 3.17683 8.76258 3.46972 8.46969L9.46974 2.46967L9.52638 2.41791Z",fill:"currentColor",key:"s4tw6r"}]]}; +var C$2={name:"sort-alt",meta:{tags:["sort-alt"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.0254 2.25098C6.03225 2.25121 6.03907 2.25153 6.04591 2.25195C6.08456 2.25429 6.12233 2.2596 6.15919 2.26758C6.19247 2.2748 6.22461 2.28607 6.25685 2.29785C6.26933 2.30242 6.28277 2.30437 6.29493 2.30957C6.31402 2.31772 6.33113 2.33004 6.34962 2.33984C6.37342 2.35248 6.39774 2.36387 6.41993 2.37891C6.45876 2.40523 6.49589 2.43533 6.53028 2.46973L9.03029 4.96973C9.32314 5.26261 9.32314 5.73739 9.03029 6.03027C8.7374 6.32316 8.26264 6.32314 7.96974 6.03027L6.75001 4.81055V17C6.75001 17.4142 6.4142 17.75 6.00001 17.75C5.5858 17.75 5.25001 17.4142 5.25001 17V4.81055L4.03028 6.03027C3.7374 6.32316 3.26263 6.32314 2.96973 6.03027C2.67684 5.73738 2.67684 5.26262 2.96973 4.96973L5.46974 2.46973L5.52638 2.41797C5.53657 2.40965 5.54808 2.40321 5.5586 2.39551C5.57414 2.38414 5.59004 2.37345 5.60645 2.36328C5.63035 2.34849 5.65462 2.3351 5.6797 2.32324C5.69787 2.31463 5.71642 2.30697 5.73536 2.2998C5.76294 2.28942 5.79095 2.28144 5.81935 2.27441C5.83941 2.26944 5.85923 2.26309 5.87989 2.25977C5.89095 2.25799 5.90199 2.25616 5.9131 2.25488C5.94159 2.2516 5.97064 2.25 6.00001 2.25C6.00851 2.25 6.01697 2.2507 6.0254 2.25098ZM14 2.25C14.4142 2.25003 14.75 2.58581 14.75 3V15.1895L15.9698 13.9697C16.2627 13.6769 16.7374 13.6768 17.0303 13.9697C17.3232 14.2626 17.3232 14.7374 17.0303 15.0303L14.5303 17.5303C14.4984 17.5622 14.4635 17.5893 14.4278 17.6143C14.3836 17.6451 14.3365 17.6715 14.2862 17.6924C14.2541 17.7056 14.2208 17.7141 14.1875 17.7227C14.1744 17.7261 14.1619 17.7317 14.1485 17.7344C14.1426 17.7356 14.1367 17.7363 14.1309 17.7373C14.0883 17.7448 14.0447 17.75 14 17.75L13.9229 17.7461C13.904 17.7442 13.8856 17.7406 13.8672 17.7373C13.8617 17.7363 13.8561 17.7355 13.8506 17.7344C13.8372 17.7317 13.8247 17.7261 13.8115 17.7227C13.7783 17.714 13.745 17.7057 13.7129 17.6924C13.6838 17.6803 13.6571 17.664 13.6299 17.6484C13.5732 17.616 13.5181 17.5787 13.4698 17.5303L10.9697 15.0303C10.6769 14.7374 10.6769 14.2626 10.9697 13.9697C11.2626 13.6769 11.7374 13.6768 12.0303 13.9697L13.25 15.1895V3C13.25 2.58579 13.5858 2.25 14 2.25Z",fill:"currentColor",key:"eomyyr"}]]}; +var C$1={name:"sort-amount-down",meta:{tags:["sort-amount-down"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6 2.25C6.41419 2.25003 6.75 2.58581 6.75 3V15.1895L7.96973 13.9697C8.26263 13.6769 8.73739 13.6768 9.03028 13.9697C9.32313 14.2626 9.32313 14.7374 9.03028 15.0303L6.53028 17.5303C6.4984 17.5622 6.46345 17.5893 6.42774 17.6143C6.38361 17.6451 6.3365 17.6715 6.28614 17.6924C6.25408 17.7056 6.22077 17.7141 6.1875 17.7227C6.17438 17.7261 6.16183 17.7317 6.14844 17.7344C6.14261 17.7356 6.13672 17.7363 6.13086 17.7373C6.0883 17.7448 6.04472 17.75 6 17.75L5.92286 17.7461C5.90403 17.7442 5.88558 17.7406 5.86719 17.7373C5.86166 17.7363 5.8561 17.7355 5.85059 17.7344C5.8372 17.7317 5.82465 17.7261 5.81153 17.7227C5.77828 17.714 5.74493 17.7057 5.71289 17.6924C5.68375 17.6803 5.65704 17.664 5.62989 17.6484C5.5732 17.616 5.51813 17.5787 5.46973 17.5303L2.96973 15.0303C2.67684 14.7374 2.67684 14.2626 2.96973 13.9697C3.26263 13.6769 3.73739 13.6768 4.03028 13.9697L5.25 15.1895V3C5.25 2.58579 5.58579 2.25 6 2.25ZM11 11.25C11.4142 11.25 11.75 11.5858 11.75 12C11.75 12.4142 11.4142 12.75 11 12.75H10.5C10.0858 12.75 9.75 12.4142 9.75 12C9.75 11.5858 10.0858 11.25 10.5 11.25H11ZM13 8.25C13.4142 8.25003 13.75 8.58581 13.75 9C13.75 9.4142 13.4142 9.74997 13 9.75H10.5C10.0858 9.75 9.75 9.41421 9.75 9C9.75 8.58579 10.0858 8.25 10.5 8.25H13ZM15 5.25C15.4142 5.25003 15.75 5.58581 15.75 6C15.75 6.4142 15.4142 6.74997 15 6.75H10.5C10.0858 6.75 9.75 6.41421 9.75 6C9.75 5.58579 10.0858 5.25 10.5 5.25H15ZM17 2.25C17.4142 2.25003 17.75 2.58581 17.75 3C17.75 3.41419 17.4142 3.74997 17 3.75H10.5C10.0858 3.75 9.75 3.41421 9.75 3C9.75 2.58579 10.0858 2.25 10.5 2.25H17Z",fill:"currentColor",key:"sij9t"}]]}; +var C={name:"sort-amount-up-alt",meta:{tags:["sort-amount-up-alt"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.02539 2.25098C6.03224 2.25121 6.03906 2.25153 6.0459 2.25195C6.08456 2.25429 6.12233 2.2596 6.15918 2.26758C6.19246 2.2748 6.22461 2.28607 6.25684 2.29785C6.26932 2.30242 6.28276 2.30437 6.29493 2.30957C6.31401 2.31772 6.33112 2.33004 6.34961 2.33984C6.37341 2.35248 6.39773 2.36387 6.41993 2.37891C6.45875 2.40523 6.49589 2.43533 6.53028 2.46973L9.03028 4.96973C9.32313 5.26261 9.32313 5.73739 9.03028 6.03027C8.73739 6.32316 8.26263 6.32314 7.96973 6.03027L6.75 4.81055V17C6.75 17.4142 6.41419 17.75 6 17.75C5.58579 17.75 5.25 17.4142 5.25 17V4.81055L4.03028 6.03027C3.73739 6.32316 3.26263 6.32314 2.96973 6.03027C2.67684 5.73738 2.67684 5.26262 2.96973 4.96973L5.46973 2.46973L5.52637 2.41797C5.53657 2.40965 5.54808 2.40321 5.5586 2.39551C5.57414 2.38414 5.59004 2.37345 5.60645 2.36328C5.63035 2.34849 5.65462 2.3351 5.67969 2.32324C5.69787 2.31463 5.71641 2.30697 5.73536 2.2998C5.76293 2.28942 5.79094 2.28144 5.81934 2.27441C5.8394 2.26944 5.85922 2.26309 5.87989 2.25977C5.89094 2.25799 5.90198 2.25616 5.91309 2.25488C5.94158 2.2516 5.97063 2.25 6 2.25C6.00851 2.25 6.01696 2.2507 6.02539 2.25098ZM17 16.25C17.4142 16.25 17.75 16.5858 17.75 17C17.75 17.4142 17.4142 17.75 17 17.75H10.5C10.0858 17.75 9.75 17.4142 9.75 17C9.75 16.5858 10.0858 16.25 10.5 16.25H17ZM15 13.25C15.4142 13.25 15.75 13.5858 15.75 14C15.75 14.4142 15.4142 14.75 15 14.75H10.5C10.0858 14.75 9.75 14.4142 9.75 14C9.75 13.5858 10.0858 13.25 10.5 13.25H15ZM13 10.25C13.4142 10.25 13.75 10.5858 13.75 11C13.75 11.4142 13.4142 11.75 13 11.75H10.5C10.0858 11.75 9.75 11.4142 9.75 11C9.75 10.5858 10.0858 10.25 10.5 10.25H13ZM11 7.25C11.4142 7.25003 11.75 7.58581 11.75 8C11.75 8.4142 11.4142 8.74997 11 8.75H10.5C10.0858 8.75 9.75 8.41421 9.75 8C9.75 7.58579 10.0858 7.25 10.5 7.25H11Z",fill:"currentColor",key:"5lgl16"}]]}; +var e$a={name:"minus",meta:{tags:["minus","remove","subtract","decrease","less"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 9.25C17.4142 9.25 17.75 9.58579 17.75 10C17.75 10.4142 17.4142 10.75 17 10.75H3C2.58579 10.75 2.25 10.4142 2.25 10C2.25 9.58579 2.58579 9.25 3 9.25H17Z",fill:"currentColor",key:"iu8x2q"}]]}; +var e$9={name:"filter",meta:{tags:["filter","refine","criteria","sort","selection"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.5 1.75C17.7826 1.75 18.0412 1.90903 18.1689 2.16113C18.2966 2.41322 18.2716 2.71547 18.1045 2.94336L12.75 10.2441V18C12.75 18.4142 12.4142 18.75 12 18.75H8C7.58579 18.75 7.25 18.4142 7.25 18V10.2441L1.89551 2.94336C1.72839 2.71547 1.70335 2.41322 1.83105 2.16113C1.95881 1.90903 2.21737 1.75 2.5 1.75H17.5ZM8.60449 9.55664C8.69883 9.68528 8.75 9.84048 8.75 10V17.25H11.25V10C11.25 9.84048 11.3012 9.68528 11.3955 9.55664L16.0205 3.25H3.97949L8.60449 9.55664Z",fill:"currentColor",key:"6kqlg6"}]]}; +var t$1={name:"angle-right",meta:{tags:["angle-right","next","proceed","right","forward"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7.71972 5.96973C8.01262 5.67684 8.48738 5.67684 8.78027 5.96973L12.2803 9.46973C12.5732 9.76262 12.5732 10.2374 12.2803 10.5303L8.78027 14.0303C8.48738 14.3232 8.01262 14.3232 7.71972 14.0303C7.42683 13.7374 7.42683 13.2626 7.71972 12.9697L10.6894 10L7.71972 7.03028C7.42683 6.73738 7.42683 6.26262 7.71972 5.96973Z",fill:"currentColor",key:"gqatxy"}]]}; +var e$8={name:"angle-double-left",meta:{tags:["angle-double-left","fast-return","left","back","previous"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.46974 5.96973C8.76263 5.67684 9.2374 5.67684 9.53029 5.96973C9.82313 6.26263 9.82317 6.73741 9.53029 7.03028L6.56056 10L9.53029 12.9698C9.82313 13.2627 9.82317 13.7374 9.53029 14.0303C9.23742 14.3232 8.76264 14.3231 8.46974 14.0303L4.96973 10.5303C4.67684 10.2374 4.67684 9.76264 4.96973 9.46974L8.46974 5.96973ZM13.9698 5.96973C14.2626 5.67684 14.7374 5.67684 15.0303 5.96973C15.3231 6.26263 15.3232 6.73741 15.0303 7.03028L12.0606 10L15.0303 12.9698C15.3231 13.2627 15.3232 13.7374 15.0303 14.0303C14.7374 14.3232 14.2627 14.3231 13.9698 14.0303L10.4697 10.5303C10.1769 10.2374 10.1769 9.76264 10.4697 9.46974L13.9698 5.96973Z",fill:"currentColor",key:"yswbnk"}]]}; +var e$7={name:"angle-double-right",meta:{tags:["angle-double-right","fast-proceed","right","next","forward"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M4.96972 5.96973C5.26262 5.67683 5.73738 5.67683 6.03027 5.96973L9.53028 9.46974C9.82312 9.76264 9.82316 10.2374 9.53028 10.5303L6.03027 14.0303C5.7374 14.3232 5.26262 14.3231 4.96972 14.0303C4.67683 13.7374 4.67683 13.2626 4.96972 12.9698L7.93946 10L4.96972 7.03028C4.67683 6.73738 4.67683 6.26262 4.96972 5.96973ZM10.4697 5.96973C10.7626 5.67683 11.2374 5.67683 11.5303 5.96973L15.0303 9.46974C15.3231 9.76264 15.3232 10.2374 15.0303 10.5303L11.5303 14.0303C11.2374 14.3232 10.7626 14.3231 10.4697 14.0303C10.1768 13.7374 10.1768 13.2626 10.4697 12.9698L13.4395 10L10.4697 7.03028C10.1768 6.73738 10.1768 6.26262 10.4697 5.96973Z",fill:"currentColor",key:"r8emu"}]]}; +var e$6={name:"angle-left",meta:{tags:["angle-left","back","return","left","previous"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.2197 5.96973C11.5126 5.67683 11.9874 5.67683 12.2803 5.96973C12.5732 6.26262 12.5732 6.73738 12.2803 7.03027L9.31054 10L12.2803 12.9697C12.5732 13.2626 12.5732 13.7374 12.2803 14.0303C11.9874 14.3232 11.5126 14.3232 11.2197 14.0303L7.71972 10.5303C7.42683 10.2374 7.42683 9.76262 7.71972 9.46973L11.2197 5.96973Z",fill:"currentColor",key:"6ofr4b"}]]}; +var e$5={name:"angle-up",meta:{tags:["angle-up","rise","lift","up","increase"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.52637 7.66796C9.82095 7.42765 10.2557 7.44512 10.5303 7.71972L14.0303 11.2197C14.3232 11.5126 14.3232 11.9874 14.0303 12.2803C13.7374 12.5732 13.2626 12.5732 12.9697 12.2803L10 9.31054L7.03028 12.2803C6.73738 12.5732 6.26262 12.5732 5.96973 12.2803C5.67684 11.9874 5.67684 11.5126 5.96973 11.2197L9.46973 7.71972L9.52637 7.66796Z",fill:"currentColor",key:"sz2v2o"}]]}; +var e$4={name:"chevron-down",meta:{tags:["chevron-down","down","fall","decrease","lower"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.4697 6.96973C14.7626 6.67684 15.2374 6.67684 15.5303 6.96973C15.8232 7.26262 15.8232 7.73738 15.5303 8.03028L10.5303 13.0303C10.2374 13.3232 9.76262 13.3232 9.46972 13.0303L4.46972 8.03028C4.17683 7.73738 4.17683 7.26262 4.46972 6.96973C4.76262 6.67684 5.23738 6.67684 5.53027 6.96973L10 11.4395L14.4697 6.96973Z",fill:"currentColor",key:"a1s1p6"}]]}; +var e$3={name:"search",meta:{tags:["search","find","query","lookup","discover"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.76953 1.25C12.9226 1.25 16.2898 4.61656 16.29 8.76953C16.29 10.576 15.6515 12.2326 14.5898 13.5293L18.5303 17.4697C18.823 17.7626 18.8231 18.2374 18.5303 18.5303C18.2374 18.8231 17.7626 18.823 17.4697 18.5303L13.5293 14.5898C12.2326 15.6515 10.576 16.29 8.76953 16.29C4.61656 16.2898 1.25 12.9226 1.25 8.76953C1.25025 4.61672 4.61672 1.25025 8.76953 1.25ZM8.76953 2.75C5.44515 2.75025 2.75025 5.44514 2.75 8.76953C2.75 12.0941 5.44499 14.7898 8.76953 14.79C12.0943 14.79 14.79 12.0943 14.79 8.76953C14.7898 5.445 12.0941 2.75 8.76953 2.75Z",fill:"currentColor",key:"nt0lcw"}]]}; +var e$2={name:"check",meta:{tags:["check","done","complete","ok","approve"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.4697 3.96973C17.7626 3.67684 18.2373 3.67684 18.5302 3.96973C18.8231 4.26262 18.8231 4.73738 18.5302 5.03028L7.53022 16.0303C7.23732 16.3232 6.76256 16.3232 6.46967 16.0303L1.46967 11.0303C1.17678 10.7374 1.17678 10.2626 1.46967 9.96973C1.76256 9.67684 2.23732 9.67684 2.53022 9.96973L6.99994 14.4395L17.4697 3.96973Z",fill:"currentColor",key:"9v7b3r"}]]}; +var e$1={name:"bars",meta:{tags:["bars","menu","options","list","categories","hamburger"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 13.75C17.4142 13.75 17.75 14.0858 17.75 14.5C17.75 14.9142 17.4142 15.25 17 15.25H3C2.58579 15.25 2.25 14.9142 2.25 14.5C2.25 14.0858 2.58579 13.75 3 13.75H17ZM17 9.25C17.4142 9.25 17.75 9.58579 17.75 10C17.75 10.4142 17.4142 10.75 17 10.75H3C2.58579 10.75 2.25 10.4142 2.25 10C2.25 9.58579 2.58579 9.25 3 9.25H17ZM17 4.75C17.4142 4.75 17.75 5.08579 17.75 5.5C17.75 5.91421 17.4142 6.25 17 6.25H3C2.58579 6.25 2.25 5.91421 2.25 5.5C2.25 5.08579 2.58579 4.75 3 4.75H17Z",fill:"currentColor",key:"1wyj6c"}]]}; +var e={name:"angle-down",meta:{tags:["angle-down","fall","down","decrease","lower"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12.9697 7.71973C13.2626 7.42684 13.7374 7.42684 14.0303 7.71973C14.3232 8.01262 14.3232 8.48738 14.0303 8.78028L10.5303 12.2803C10.2374 12.5732 9.76262 12.5732 9.46973 12.2803L5.96973 8.78028C5.67684 8.48738 5.67684 8.01262 5.96973 7.71973C6.26262 7.42684 6.73738 7.42684 7.03028 7.71973L10 10.6895L12.9697 7.71973Z",fill:"currentColor",key:"r6am4n"}]]}; +var Xo=(t,a)=>a[1].key||t;function Jo(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function ea(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function ta(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function ia(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function na(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function oa(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function aa(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function la(t,a){if(t&1&&rM(0,Jo,1,9,":svg:path")(1,ea,1,6,":svg:circle")(2,ta,1,9,":svg:rect")(3,ia,1,7,":svg:line")(4,na,1,4,":svg:polyline")(5,oa,1,4,":svg:polygon")(6,aa,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var jn=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$1;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","bars"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,la,7,1,null,null,Xo),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var ra=(t,a)=>a[1].key||t;function sa(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function ca(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function da(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function pa(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function ua(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function ma(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function fa(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function ha(t,a){if(t&1&&rM(0,sa,1,9,":svg:path")(1,ca,1,6,":svg:circle")(2,da,1,9,":svg:rect")(3,pa,1,7,":svg:line")(4,ua,1,4,":svg:polyline")(5,ma,1,4,":svg:polygon")(6,fa,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var E1=(()=>{class t extends M4$2{constructor(){super(),this._icon=e;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","angle-down"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,ha,7,1,null,null,ra),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var ga=(t,a)=>a[1].key||t;function ba(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function _a(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function ya(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function va(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function xa(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Ca(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Ma(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function wa(t,a){if(t&1&&rM(0,ba,1,9,":svg:path")(1,_a,1,6,":svg:circle")(2,ya,1,9,":svg:rect")(3,va,1,7,":svg:line")(4,xa,1,4,":svg:polyline")(5,Ca,1,4,":svg:polygon")(6,Ma,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var N1=(()=>{class t extends M4$2{constructor(){super(),this._icon=t$1;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","angle-right"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,wa,7,1,null,null,ga),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var Wn=` + .p-tooltip { + position: absolute; + display: none; + max-width: dt('tooltip.max.width'); + } + + .p-tooltip-right, + .p-tooltip-left { + padding: 0 dt('tooltip.gutter'); + } + + .p-tooltip-top, + .p-tooltip-bottom { + padding: dt('tooltip.gutter') 0; + } + + .p-tooltip-text { + white-space: pre-line; + word-break: break-word; + background: dt('tooltip.background'); + color: dt('tooltip.color'); + padding: dt('tooltip.padding'); + box-shadow: dt('tooltip.shadow'); + border-radius: dt('tooltip.border.radius'); + font-weight: dt('tooltip.font.weight'); + font-size: dt('tooltip.font.size'); + } + + .p-tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; + } + + .p-tooltip-right .p-tooltip-arrow { + margin-top: calc(-1 * dt('tooltip.gutter')); + border-width: dt('tooltip.gutter') dt('tooltip.gutter') dt('tooltip.gutter') 0; + border-right-color: dt('tooltip.background'); + } + + .p-tooltip-left .p-tooltip-arrow { + margin-top: calc(-1 * dt('tooltip.gutter')); + border-width: dt('tooltip.gutter') 0 dt('tooltip.gutter') dt('tooltip.gutter'); + border-left-color: dt('tooltip.background'); + } + + .p-tooltip-top .p-tooltip-arrow { + margin-left: calc(-1 * dt('tooltip.gutter')); + border-width: dt('tooltip.gutter') dt('tooltip.gutter') 0 dt('tooltip.gutter'); + border-top-color: dt('tooltip.background'); + border-bottom-color: dt('tooltip.background'); + } + + .p-tooltip-bottom .p-tooltip-arrow { + margin-left: calc(-1 * dt('tooltip.gutter')); + border-width: 0 dt('tooltip.gutter') dt('tooltip.gutter') dt('tooltip.gutter'); + border-top-color: dt('tooltip.background'); + border-bottom-color: dt('tooltip.background'); + } +`;var za={root:"p-tooltip p-component",arrow:"p-tooltip-arrow",text:"p-tooltip-text"},Yn=(()=>{class t extends WI{name="tooltip";style=Wn;classes=za;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var Zn=new I$1("TOOLTIP_INSTANCE"),Kt=(()=>{class t extends I{componentName="Tooltip";$pcTooltip=g(Zn,{optional:true,skipSelf:true})??void 0;tooltipPosition=mu$1();tooltipEvent=mu$1("hover");positionStyle=mu$1();tooltipStyleClass=mu$1();tooltipZIndex=mu$1();escape=mu$1(true,{transform:yn});showDelay=mu$1(void 0,{transform:Bp$1});hideDelay=mu$1(void 0,{transform:Bp$1});life=mu$1(void 0,{transform:Bp$1});positionTop=mu$1(void 0,{transform:Bp$1});positionLeft=mu$1(void 0,{transform:Bp$1});autoHide=mu$1(true,{transform:yn});fitContent=mu$1(true,{transform:yn});hideOnEscape=mu$1(true,{transform:yn});showOnEllipsis=mu$1(false,{transform:yn});content=mu$1(void 0,{alias:"pTooltip"});tooltipDisabled=mu$1(false,{transform:yn});tooltipOptions=mu$1();appendTo=mu$1(void 0);$appendTo=gs$1(()=>this.appendTo()||this.config.overlayAppendTo());tooltipId=j8$1("pn_id_")+"_tooltip";_tooltipOptions=gs$1(()=>m(l$1({tooltipLabel:this.content(),tooltipPosition:this.tooltipPosition()??"right",tooltipEvent:this.tooltipEvent(),appendTo:this.appendTo()??"body",positionStyle:this.positionStyle(),tooltipStyleClass:this.tooltipStyleClass(),tooltipZIndex:this.tooltipZIndex()??"auto",escape:this.escape(),showDelay:this.showDelay(),hideDelay:this.hideDelay(),life:this.life(),positionTop:this.positionTop()??0,positionLeft:this.positionLeft()??0,autoHide:this.autoHide(),hideOnEscape:this.hideOnEscape(),showOnEllipsis:this.showOnEllipsis(),disabled:this.tooltipDisabled()},this.tooltipOptions()),{id:this.tooltipId}));container=null;styleClass;tooltipText=null;rootPTClasses="";showTimeout=null;hideTimeout=null;active;mouseEnterListener;mouseLeaveListener;containerMouseleaveListener;clickListener;focusListener;blurListener;touchStartListener;touchEndListener;documentTouchListener;documentEscapeListener;scrollHandler=null;resizeListener=null;_componentStyle=g(Yn);pTooltipPT=mu$1();pTooltipUnstyled=mu$1();viewContainer=g(Yn$1);constructor(){super(),Ui(()=>{let e=this.pTooltipPT();e&&this.directivePT.set(e);}),Ui(()=>{this.pTooltipUnstyled()&&this.directiveUnstyled.set(this.pTooltipUnstyled());}),Ui(()=>{let e=this.content();J(()=>{this.active&&(e?this.container&&this.container.offsetParent?(this.updateText(),this.align()):this.show():this.hide());});}),Ui(()=>{let e=this.tooltipDisabled();J(()=>{e&&this.deactivate();});}),Ui(()=>{let e=this.tooltipOptions();J(()=>{e&&(this.deactivate(),this.active&&(this.getOption("tooltipLabel")?this.container&&this.container.offsetParent?(this.updateText(),this.align()):this.show():this.hide()));});});}onAfterViewInit(){if(BG(this.platformId)){let e=this.getOption("tooltipEvent");if((e==="hover"||e==="both")&&(this.mouseEnterListener=this.onMouseEnter.bind(this),this.mouseLeaveListener=this.onMouseLeave.bind(this),this.clickListener=this.onInputClick.bind(this),this.el.nativeElement.addEventListener("mouseenter",this.mouseEnterListener),this.el.nativeElement.addEventListener("click",this.clickListener),this.el.nativeElement.addEventListener("mouseleave",this.mouseLeaveListener),this.touchStartListener=this.onTouchStart.bind(this),this.touchEndListener=this.onTouchEnd.bind(this),this.el.nativeElement.addEventListener("touchstart",this.touchStartListener,{passive:true}),this.el.nativeElement.addEventListener("touchend",this.touchEndListener,{passive:true})),e==="focus"||e==="both"){this.focusListener=this.onFocus.bind(this),this.blurListener=this.onBlur.bind(this);let i=this.el.nativeElement.querySelector(".p-component");i||(i=this.getTarget(this.el.nativeElement)),i.addEventListener("focus",this.focusListener),i.addEventListener("blur",this.blurListener);}}}isAutoHide(){return this.getOption("autoHide")}onMouseEnter(e){!this.container&&!this.showTimeout&&this.activate();}onMouseLeave(e){this.isAutoHide()?this.deactivate():!(tO(e.relatedTarget,"p-tooltip")||tO(e.relatedTarget,"p-tooltip-text")||tO(e.relatedTarget,"p-tooltip-arrow"))&&this.deactivate();}onTouchStart(e){!this.container&&!this.showTimeout&&(this.activate(),this.isAutoHide()||this.bindDocumentTouchListener());}onTouchEnd(e){this.isAutoHide()&&this.deactivate();}bindDocumentTouchListener(){this.documentTouchListener||(this.documentTouchListener=this.renderer.listen("document","touchstart",e=>{let i=e.target;this.container&&!this.container.contains(i)&&!this.el.nativeElement.contains(i)&&(this.deactivate(),this.unbindDocumentTouchListener());}));}unbindDocumentTouchListener(){this.documentTouchListener&&(this.documentTouchListener(),this.documentTouchListener=null);}onFocus(e){this.activate();}onBlur(e){this.deactivate();}onInputClick(e){this.deactivate();}hasEllipsis(){let e=this.el.nativeElement;return e.offsetWidth{this.show();},e):this.show();let i=this.getOption("life");if(i){let n=e?i+e:i;this.hideTimeout=setTimeout(()=>{this.hide();},n);}this.getOption("hideOnEscape")&&(this.documentEscapeListener=this.renderer.listen("document","keydown.escape",()=>{this.deactivate(),this.documentEscapeListener?.();}));}deactivate(){this.active=false,this.clearShowTimeout();let e=this.getOption("hideDelay");e?(this.clearHideTimeout(),this.hideTimeout=setTimeout(()=>{this.hide();},e)):this.hide(),this.documentEscapeListener&&this.documentEscapeListener();}create(){this.container&&(this.clearHideTimeout(),this.remove());let e=T4$1("div",{class:this.cx("root"),"p-bind":this.ptm("root"),"data-pc-section":"root"}),i=T4$1("div",{class:this.cx("arrow"),"p-bind":this.ptm("arrow"),"data-pc-section":"arrow"}),n=T4$1("div",{class:this.cx("text"),"p-bind":this.ptm("text"),"data-pc-section":"text"});e.setAttribute("role","tooltip"),e.appendChild(i),this.container=e,this.tooltipText=n,this.updateText(),this.getOption("positionStyle")&&(e.style.position=this.getOption("positionStyle")),e.appendChild(n),this.getOption("appendTo")==="body"?document.body.appendChild(e):this.getOption("appendTo")==="target"?b4$1(e,this.el.nativeElement):b4$1(this.getOption("appendTo"),e),e.style.display="none",this.fitContent()&&(e.style.width="fit-content"),this.isAutoHide()?e.style.pointerEvents="none":(e.style.pointerEvents="unset",this.bindContainerMouseleaveListener());}bindContainerMouseleaveListener(){!this.containerMouseleaveListener&&this.container&&(this.containerMouseleaveListener=this.renderer.listen(this.container,"mouseleave",()=>{this.deactivate();}));}unbindContainerMouseleaveListener(){this.containerMouseleaveListener&&(this.bindContainerMouseleaveListener(),this.containerMouseleaveListener=null);}show(){if(!this.getOption("tooltipLabel")||this.getOption("disabled"))return;this.create();let e=this.container;this.el.nativeElement.closest("p-dialog")?setTimeout(()=>{this.container&&(this.container.style.display="inline-block",this.align());},100):(e.style.display="inline-block",this.align()),_4$1(e,250),this.getOption("tooltipZIndex")==="auto"?N4$1.set("tooltip",e,this.config.zIndex.tooltip):e.style.zIndex=this.getOption("tooltipZIndex"),this.bindDocumentResizeListener(),this.bindScrollListener();}hide(){this.getOption("tooltipZIndex")==="auto"&&N4$1.clear(this.container),this.remove();}updateText(){if(!this.tooltipText)return;let e=this.getOption("tooltipLabel");if(e&&typeof e.createEmbeddedView=="function"){let i=this.viewContainer.createEmbeddedView(e);i.detectChanges(),i.rootNodes.forEach(n=>this.tooltipText.appendChild(n));}else this.getOption("escape")?(this.tooltipText.innerHTML="",this.tooltipText.appendChild(document.createTextNode(e))):this.tooltipText.innerHTML=e;}align(){let e=this.getOption("tooltipPosition"),n={top:[this.alignTop,this.alignBottom,this.alignRight,this.alignLeft],bottom:[this.alignBottom,this.alignTop,this.alignRight,this.alignLeft],left:[this.alignLeft,this.alignRight,this.alignTop,this.alignBottom],right:[this.alignRight,this.alignLeft,this.alignTop,this.alignBottom]}[e]||[];for(let[o,r]of n.entries())if(o===0)r.call(this);else if(this.isOutOfBounds())r.call(this);else break}getHostOffset(){if(this.getOption("appendTo")==="body"||this.getOption("appendTo")==="target"){let e=this.el.nativeElement.getBoundingClientRect(),i=e.left+rO(),n=e.top+oO();return {left:i,top:n}}else return {left:0,top:0}}get activeElement(){return this.el.nativeElement.nodeName.startsWith("P-")?M4$1(this.el.nativeElement,".p-component"):this.el.nativeElement}alignRight(){this.preAlign("right");let e=this.activeElement,i=I4$1(e),n=(uO(e)-uO(this.container))/2;this.alignTooltip(i,n);let o=this.getArrowElement();o&&(o.style.top="50%",o.style.right="",o.style.bottom="",o.style.left="0");}alignLeft(){this.preAlign("left");let e=this.getArrowElement(),i=I4$1(this.container),n=(uO(this.el.nativeElement)-uO(this.container))/2;this.alignTooltip(-i,n),e&&(e.style.top="50%",e.style.right="0",e.style.bottom="",e.style.left="");}alignTop(){this.preAlign("top");let e=this.getArrowElement(),i=this.getHostOffset(),n=I4$1(this.container),o=(I4$1(this.el.nativeElement)-I4$1(this.container))/2,r=uO(this.container);this.alignTooltip(o,-r);let u=i.left-this.getHostOffset().left+n/2;e&&(e.style.top="",e.style.right="",e.style.bottom="0",e.style.left=u+"px");}getArrowElement(){return M4$1(this.container,'[data-pc-section="arrow"]')}alignBottom(){this.preAlign("bottom");let e=this.getArrowElement(),i=I4$1(this.container),n=this.getHostOffset(),o=(I4$1(this.el.nativeElement)-I4$1(this.container))/2,r=uO(this.el.nativeElement);this.alignTooltip(o,r);let u=n.left-this.getHostOffset().left+i/2;e&&(e.style.top="0",e.style.right="",e.style.bottom="",e.style.left=u+"px");}alignTooltip(e,i){let n=this.getHostOffset(),o=n.left+e,r=n.top+i;this.container.style.left=o+this.getOption("positionLeft")+"px",this.container.style.top=r+this.getOption("positionTop")+"px";}getOption(e){return this._tooltipOptions()[e]}getTarget(e){return tO(e,"p-inputwrapper")?M4$1(e,"input"):e}preAlign(e){this.container.style.left="-999px",this.container.style.top="-999px",this.container.className=this.cn(this.cx("root"),this.ptm("root")?.class,"p-tooltip-"+e,this.getOption("tooltipStyleClass")??"")??"";}isOutOfBounds(){let e=this.container.getBoundingClientRect(),i=e.top,n=e.left,o=I4$1(this.container),r=uO(this.container),u=OI();return n+o>u.width||n<0||i<0||i+r>u.height}onWindowResize(e){this.hide();}bindDocumentResizeListener(){let e=this.onWindowResize.bind(this);this.resizeListener=e,window.addEventListener("resize",e);}unbindDocumentResizeListener(){this.resizeListener&&(window.removeEventListener("resize",this.resizeListener),this.resizeListener=null);}bindScrollListener(){this.scrollHandler||(this.scrollHandler=new b4$2(this.el.nativeElement,()=>{this.container&&this.hide();})),this.scrollHandler.bindScrollListener();}unbindScrollListener(){this.scrollHandler&&this.scrollHandler.unbindScrollListener();}unbindEvents(){let e=this.getOption("tooltipEvent");if((e==="hover"||e==="both")&&(this.el.nativeElement.removeEventListener("mouseenter",this.mouseEnterListener),this.el.nativeElement.removeEventListener("mouseleave",this.mouseLeaveListener),this.el.nativeElement.removeEventListener("click",this.clickListener),this.el.nativeElement.removeEventListener("touchstart",this.touchStartListener),this.el.nativeElement.removeEventListener("touchend",this.touchEndListener),this.unbindDocumentTouchListener()),e==="focus"||e==="both"){let i=this.el.nativeElement.querySelector(".p-component");i||(i=this.getTarget(this.el.nativeElement)),i.removeEventListener("focus",this.focusListener),i.removeEventListener("blur",this.blurListener);}this.unbindDocumentResizeListener();}remove(){this.container&&this.container.parentElement&&(this.getOption("appendTo")==="body"?document.body.removeChild(this.container):this.getOption("appendTo")==="target"?this.el.nativeElement.removeChild(this.container):z4$1(this.getOption("appendTo"),this.container)),this.unbindDocumentResizeListener(),this.unbindScrollListener(),this.unbindContainerMouseleaveListener(),this.unbindDocumentTouchListener(),this.clearTimeouts(),this.container=null,this.scrollHandler=null;}clearShowTimeout(){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=null);}clearHideTimeout(){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=null);}clearTimeouts(){this.clearShowTimeout(),this.clearHideTimeout();}onDestroy(){this.unbindEvents(),this.container&&N4$1.clear(this.container),this.remove(),this.scrollHandler&&(this.scrollHandler.destroy(),this.scrollHandler=null),this.documentEscapeListener&&this.documentEscapeListener();}static \u0275fac=function(i){return new(i||t)};static \u0275dir=xt({type:t,selectors:[["","pTooltip",""]],inputs:{tooltipPosition:[1,"tooltipPosition"],tooltipEvent:[1,"tooltipEvent"],positionStyle:[1,"positionStyle"],tooltipStyleClass:[1,"tooltipStyleClass"],tooltipZIndex:[1,"tooltipZIndex"],escape:[1,"escape"],showDelay:[1,"showDelay"],hideDelay:[1,"hideDelay"],life:[1,"life"],positionTop:[1,"positionTop"],positionLeft:[1,"positionLeft"],autoHide:[1,"autoHide"],fitContent:[1,"fitContent"],hideOnEscape:[1,"hideOnEscape"],showOnEllipsis:[1,"showOnEllipsis"],content:[1,"pTooltip","content"],tooltipDisabled:[1,"tooltipDisabled"],tooltipOptions:[1,"tooltipOptions"],appendTo:[1,"appendTo"],pTooltipPT:[1,"pTooltipPT"],pTooltipUnstyled:[1,"pTooltipUnstyled"]},features:[nN([Yn,{provide:Zn,useExisting:t},{provide:W,useExisting:t}]),BE]})}return t})(),Qn=(()=>{class t{static \u0275fac=function(i){return new(i||t)};static \u0275mod=mn({type:t});static \u0275inj=$t({imports:[o1,o1]})}return t})();var Xn=` + .p-menubar { + display: flex; + align-items: center; + background: dt('menubar.background'); + border: 1px solid dt('menubar.border.color'); + border-radius: dt('menubar.border.radius'); + color: dt('menubar.color'); + padding: dt('menubar.padding'); + gap: dt('menubar.gap'); + } + + .p-menubar-start, + .p-megamenu-end { + display: flex; + align-items: center; + } + + .p-menubar-root-list, + .p-menubar-submenu { + display: flex; + margin: 0; + padding: 0; + list-style: none; + outline: 0 none; + } + + .p-menubar-root-list { + align-items: center; + flex-wrap: wrap; + gap: dt('menubar.gap'); + } + + .p-menubar-root-list > .p-menubar-item > .p-menubar-item-content { + border-radius: dt('menubar.base.item.border.radius'); + } + + .p-menubar-root-list > .p-menubar-item > .p-menubar-item-content > .p-menubar-item-link { + padding: dt('menubar.base.item.padding'); + } + + .p-menubar-item-content { + transition: + background dt('menubar.transition.duration'), + color dt('menubar.transition.duration'); + border-radius: dt('menubar.item.border.radius'); + color: dt('menubar.item.color'); + } + + .p-menubar-item-link { + cursor: pointer; + display: flex; + align-items: center; + text-decoration: none; + overflow: hidden; + position: relative; + color: inherit; + padding: dt('menubar.item.padding'); + gap: dt('menubar.item.gap'); + user-select: none; + outline: 0 none; + } + + .p-menubar-item-label { + font-weight: dt('menubar.item.label.font.weight'); + font-size: dt('menubar.item.label.font.size'); + } + + .p-menubar-item-icon { + color: dt('menubar.item.icon.color'); + font-size: dt('menubar.item.icon.size'); + width: dt('menubar.item.icon.size'); + height: dt('menubar.item.icon.size'); + } + + .p-menubar-submenu-icon { + color: dt('menubar.submenu.icon.color'); + margin-left: auto; + font-size: dt('menubar.submenu.icon.size'); + width: dt('menubar.submenu.icon.size'); + height: dt('menubar.submenu.icon.size'); + } + + .p-menubar-submenu .p-menubar-submenu-icon:dir(rtl) { + margin-left: 0; + margin-right: auto; + } + + .p-menubar-item.p-focus > .p-menubar-item-content { + color: dt('menubar.item.focus.color'); + background: dt('menubar.item.focus.background'); + } + + .p-menubar-item.p-focus > .p-menubar-item-content .p-menubar-item-icon { + color: dt('menubar.item.icon.focus.color'); + } + + .p-menubar-item.p-focus > .p-menubar-item-content .p-menubar-submenu-icon { + color: dt('menubar.submenu.icon.focus.color'); + } + + .p-menubar-item:not(.p-disabled) > .p-menubar-item-content:hover { + color: dt('menubar.item.focus.color'); + background: dt('menubar.item.focus.background'); + } + + .p-menubar-item:not(.p-disabled) > .p-menubar-item-content:hover .p-menubar-item-icon { + color: dt('menubar.item.icon.focus.color'); + } + + .p-menubar-item:not(.p-disabled) > .p-menubar-item-content:hover .p-menubar-submenu-icon { + color: dt('menubar.submenu.icon.focus.color'); + } + + .p-menubar-item-active > .p-menubar-item-content { + color: dt('menubar.item.active.color'); + background: dt('menubar.item.active.background'); + } + + .p-menubar-item-active > .p-menubar-item-content .p-menubar-item-icon { + color: dt('menubar.item.icon.active.color'); + } + + .p-menubar-item-active > .p-menubar-item-content .p-menubar-submenu-icon { + color: dt('menubar.submenu.icon.active.color'); + } + + .p-menubar-submenu { + display: none; + position: absolute; + min-width: 12.5rem; + z-index: 1; + background: dt('menubar.submenu.background'); + border: 1px solid dt('menubar.submenu.border.color'); + border-radius: dt('menubar.submenu.border.radius'); + box-shadow: dt('menubar.submenu.shadow'); + color: dt('menubar.submenu.color'); + flex-direction: column; + padding: dt('menubar.submenu.padding'); + gap: dt('menubar.submenu.gap'); + will-change: transform; + } + + .p-menubar-submenu .p-menubar-separator { + border-block-start: 1px solid dt('menubar.separator.border.color'); + } + + .p-menubar-submenu .p-menubar-item { + position: relative; + } + + .p-menubar-submenu > .p-menubar-item-active > .p-menubar-submenu { + display: block; + left: 100%; + top: 0; + } + + .p-menubar-end { + margin-left: auto; + align-self: center; + } + + .p-menubar-end:dir(rtl) { + margin-left: 0; + margin-right: auto; + } + + .p-menubar-button { + display: none; + justify-content: center; + align-items: center; + cursor: pointer; + width: dt('menubar.mobile.button.size'); + height: dt('menubar.mobile.button.size'); + position: relative; + color: dt('menubar.mobile.button.color'); + border: 0 none; + background: transparent; + border-radius: dt('menubar.mobile.button.border.radius'); + transition: + background dt('menubar.transition.duration'), + color dt('menubar.transition.duration'), + outline-color dt('menubar.transition.duration'); + outline-color: transparent; + } + + .p-menubar-button:hover { + color: dt('menubar.mobile.button.hover.color'); + background: dt('menubar.mobile.button.hover.background'); + } + + .p-menubar-button:focus-visible { + box-shadow: dt('menubar.mobile.button.focus.ring.shadow'); + outline: dt('menubar.mobile.button.focus.ring.width') dt('menubar.mobile.button.focus.ring.style') dt('menubar.mobile.button.focus.ring.color'); + outline-offset: dt('menubar.mobile.button.focus.ring.offset'); + } + + .p-menubar-mobile { + position: relative; + } + + .p-menubar-mobile .p-menubar-button { + display: flex; + } + + .p-menubar-mobile .p-menubar-root-list { + position: absolute; + display: none; + width: 100%; + flex-direction: column; + top: 100%; + left: 0; + z-index: 1; + padding: dt('menubar.submenu.padding'); + background: dt('menubar.submenu.background'); + border: 1px solid dt('menubar.submenu.border.color'); + box-shadow: dt('menubar.submenu.shadow'); + border-radius: dt('menubar.submenu.border.radius'); + gap: dt('menubar.submenu.gap'); + } + + .p-menubar-mobile .p-menubar-root-list:dir(rtl) { + left: auto; + right: 0; + } + + .p-menubar-mobile .p-menubar-root-list > .p-menubar-item > .p-menubar-item-content > .p-menubar-item-link { + padding: dt('menubar.item.padding'); + } + + .p-menubar-mobile-active .p-menubar-root-list { + display: flex; + } + + .p-menubar-mobile .p-menubar-root-list .p-menubar-item { + width: 100%; + position: static; + } + + .p-menubar-mobile .p-menubar-root-list .p-menubar-separator { + border-block-start: 1px solid dt('menubar.separator.border.color'); + } + + .p-menubar-mobile .p-menubar-root-list > .p-menubar-item > .p-menubar-item-content .p-menubar-submenu-icon { + margin-left: auto; + transition: transform 0.2s; + } + + .p-menubar-mobile .p-menubar-root-list > .p-menubar-item > .p-menubar-item-content .p-menubar-submenu-icon:dir(rtl), + .p-menubar-mobile .p-menubar-submenu-icon:dir(rtl) { + margin-left: 0; + margin-right: auto; + } + + .p-menubar-mobile .p-menubar-root-list > .p-menubar-item-active > .p-menubar-item-content .p-menubar-submenu-icon { + transform: rotate(-180deg); + } + + .p-menubar-mobile .p-menubar-submenu .p-menubar-submenu-icon { + transition: transform 0.2s; + transform: rotate(90deg); + } + + .p-menubar-mobile .p-menubar-item-active > .p-menubar-item-content .p-menubar-submenu-icon { + transform: rotate(-90deg); + } + + .p-menubar-mobile .p-menubar-submenu { + width: 100%; + position: static; + box-shadow: none; + border: 0 none; + padding-inline-start: dt('menubar.submenu.mobile.indent'); + padding-inline-end: 0; + } +`;var Da=(t,a)=>({instance:t,processedItem:a}),Sa=(t,a)=>a.key;function Ia(t,a){if(t&1&&au$1(0,"li",3),t&2){let e=EM().$implicit,i=EM();PM(i.getItemProp(e,"style")),jM(i.cn(i.cx("separator"),e?.styleClass)),zE("pBind",i.ptm("separator")),su$1("id",i.getItemId(e));}}function Ea(t,a){if(t&1&&au$1(0,"span",14),t&2){let e=EM(4),i=e.$implicit,n=e.$index,o=EM();PM(o.getItemProp(i,"iconStyle")),jM(o.cn(o.cx("itemIcon"),o.getItemProp(i,"icon"),o.getItemProp(i,"iconClass"))),zE("pBind",o.getPTOptions(i,n,"itemIcon")),su$1("tabindex",-1);}}function Na(t,a){if(t&1&&(Bc$1(0,"span",15),YM(1),bp$1()),t&2){let e=EM(4),i=e.$implicit,n=e.$index,o=EM();PM(o.getItemProp(i,"labelStyle")),jM(o.cn(o.cx("itemLabel"),o.getItemProp(i,"labelClass"))),zE("id",o.getItemLabelId(i))("pBind",o.getPTOptions(i,n,"itemLabel")),n_(),xp$1(" ",o.getItemLabel(i)," ");}}function La(t,a){if(t&1&&au$1(0,"span",16),t&2){let e=EM(4),i=e.$implicit,n=e.$index,o=EM();PM(o.getItemProp(i,"labelStyle")),jM(o.cn(o.cx("itemLabel"),o.getItemProp(i,"labelClass"))),zE("innerHTML",o.getItemLabel(i),aT)("id",o.getItemLabelId(i))("pBind",o.getPTOptions(i,n,"itemLabel"));}}function Fa(t,a){if(t&1&&au$1(0,"p-badge",17),t&2){let e=EM(4),i=e.$implicit,n=e.$index,o=EM();jM(o.getItemProp(i,"badgeStyleClass")),zE("value",o.getItemProp(i,"badge"))("pt",o.getPTOptions(i,n,"pcBadge"))("unstyled",o.unstyled());}}function Oa(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",21)),t&2){let e=EM(6),i=e.$implicit,n=e.$index,o=EM();jM(o.cx("submenuIcon")),zE("pBind",o.getPTOptions(i,n,"submenuIcon"));}}function Ba(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",22)),t&2){let e=EM(6),i=e.$implicit,n=e.$index,o=EM();jM(o.cx("submenuIcon")),zE("pBind",o.getPTOptions(i,n,"submenuIcon"));}}function Va(t,a){if(t&1&&rM(0,Oa,1,3,":svg:svg",19)(1,Ba,1,3,":svg:svg",20),t&2){let e=EM(6);oM(e.root()?0:1);}}function Pa(t,a){t&1&&qE(0);}function Ra(t,a){if(t&1&&(rM(0,Va,2,1),VE(1,Pa,1,0,"ng-container",18)),t&2){let e=EM(5);oM(e.submenuiconTemplate()?-1:0),n_(),zE("ngTemplateOutlet",e.submenuiconTemplate());}}function Aa(t,a){if(t&1&&(Bc$1(0,"a",9),rM(1,Ea,1,6,"span",10),rM(2,Na,2,7,"span",11)(3,La,1,7,"span",12),rM(4,Fa,1,5,"p-badge",13),rM(5,Ra,2,2),bp$1()),t&2){let e=EM(3),i=e.$implicit,n=e.$index,o=EM();PM(o.getItemProp(i,"linkStyle")),jM(o.cn(o.cx("itemLink"),o.getItemProp(i,"linkClass"))),zE("pBind",o.getPTOptions(i,n,"itemLink")),su$1("href",o.getItemProp(i,"url"),Ov)("data-automationid",o.getItemProp(i,"automationId"))("title",o.getItemProp(i,"title"))("target",o.getItemProp(i,"target"))("tabindex",-1),n_(),oM(o.getItemProp(i,"icon")?1:-1),n_(),oM(o.getItemProp(i,"escape")?2:3),n_(2),oM(o.getItemProp(i,"badge")?4:-1),n_(),oM(o.isItemGroup(i)?5:-1);}}function Ha(t,a){if(t&1&&au$1(0,"span",14),t&2){let e=EM(4),i=e.$implicit,n=e.$index,o=EM();PM(o.getItemProp(i,"iconStyle")),jM(o.cn(o.cx("itemIcon"),o.getItemProp(i,"icon"),o.getItemProp(i,"iconClass"))),zE("pBind",o.getPTOptions(i,n,"itemIcon")),su$1("tabindex",-1);}}function $a(t,a){if(t&1&&(Bc$1(0,"span",14),YM(1),bp$1()),t&2){let e=EM(4),i=e.$implicit,n=e.$index,o=EM();PM(o.getItemProp(i,"labelStyle")),jM(o.cn(o.cx("itemLabel"),o.getItemProp(i,"labelClass"))),zE("pBind",o.getPTOptions(i,n,"itemLabel")),n_(),fD(o.getItemLabel(i));}}function Ga(t,a){if(t&1&&au$1(0,"span",25),t&2){let e=EM(4),i=e.$implicit,n=e.$index,o=EM();PM(o.getItemProp(i,"labelStyle")),jM(o.cn(o.cx("itemLabel"),o.getItemProp(i,"labelClass"))),zE("innerHTML",o.getItemLabel(i),aT)("pBind",o.getPTOptions(i,n,"itemLabel"));}}function Ua(t,a){if(t&1&&au$1(0,"p-badge",17),t&2){let e=EM(4),i=e.$implicit,n=e.$index,o=EM();jM(o.getItemProp(i,"badgeStyleClass")),zE("value",o.getItemProp(i,"badge"))("pt",o.getPTOptions(i,n,"pcBadge"))("unstyled",o.unstyled());}}function Ka(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",21)),t&2){let e=EM(6),i=e.$implicit,n=e.$index,o=EM();jM(o.cx("submenuIcon")),zE("pBind",o.getPTOptions(i,n,"submenuIcon"));}}function qa(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",22)),t&2){let e=EM(6),i=e.$implicit,n=e.$index,o=EM();jM(o.cx("submenuIcon")),zE("pBind",o.getPTOptions(i,n,"submenuIcon"));}}function ja(t,a){if(t&1&&rM(0,Ka,1,3,":svg:svg",19)(1,qa,1,3,":svg:svg",20),t&2){let e=EM(6);oM(e.root()?0:1);}}function Wa(t,a){t&1&&qE(0);}function Ya(t,a){if(t&1&&(rM(0,ja,2,1),VE(1,Wa,1,0,"ng-container",18)),t&2){let e=EM(5);oM(e.submenuiconTemplate()?-1:0),n_(),zE("ngTemplateOutlet",e.submenuiconTemplate());}}function Za(t,a){if(t&1&&(Bc$1(0,"a",23),rM(1,Ha,1,6,"span",10),rM(2,$a,2,6,"span",10)(3,Ga,1,6,"span",24),rM(4,Ua,1,5,"p-badge",13),rM(5,Ya,2,2),bp$1()),t&2){let e=EM(3),i=e.$implicit,n=e.$index,o=EM();PM(o.getItemProp(i,"linkStyle")),jM(o.cn(o.cx("itemLink"),o.getItemProp(i,"linkClass"))),zE("routerLink",o.getItemProp(i,"routerLink"))("queryParams",o.getItemProp(i,"queryParams"))("routerLinkActive","p-menubar-item-link-active")("routerLinkActiveOptions",o.getRouterLinkActiveOptions(i))("target",o.getItemProp(i,"target"))("fragment",o.getItemProp(i,"fragment"))("queryParamsHandling",o.getItemProp(i,"queryParamsHandling"))("preserveFragment",o.getItemProp(i,"preserveFragment"))("skipLocationChange",o.getItemProp(i,"skipLocationChange"))("replaceUrl",o.getItemProp(i,"replaceUrl"))("state",o.getItemProp(i,"state"))("pBind",o.getPTOptions(i,n,"itemLink")),su$1("data-automationid",o.getItemProp(i,"automationId"))("title",o.getItemProp(i,"title"))("tabindex",-1),n_(),oM(o.getItemProp(i,"icon")?1:-1),n_(),oM(o.getItemProp(i,"escape")?2:3),n_(2),oM(o.getItemProp(i,"badge")?4:-1),n_(),oM(o.isItemGroup(i)?5:-1);}}function Qa(t,a){if(t&1&&rM(0,Aa,6,14,"a",7)(1,Za,6,23,"a",8),t&2){let e=EM(2).$implicit,i=EM();oM(i.getItemProp(e,"routerLink")?1:0);}}function Xa(t,a){t&1&&qE(0);}function Ja(t,a){if(t&1&&VE(0,Xa,1,0,"ng-container",26),t&2){let e=EM(2).$implicit,i=EM();zE("ngTemplateOutlet",i.itemTemplate())("ngTemplateOutletContext",i.getItemTemplateContext(e.item,i.root()));}}function el(t,a){if(t&1){let e=hM();Bc$1(0,"ul",27),cu$1("itemClick",function(n){Rm$1(e);let o=EM(3);return xm$1(o.itemClick.emit(n))})("itemMouseEnter",function(n){Rm$1(e);let o=EM(3);return xm$1(o.onItemMouseEnter(n))}),bp$1();}if(t&2){let e=EM(2).$implicit,i=EM();zE("itemTemplate",i.itemTemplate())("items",e.items)("mobileActive",i.mobileActive())("autoDisplay",i.autoDisplay())("menuId",i.menuId())("activeItemPath",i.activeItemPath())("focusedItemId",i.focusedItemId())("level",i.level()+1)("pMotion",i.isItemActive(e))("pMotionDisabled",i.mobileActive())("pMotionName","p-anchored-overlay")("pMotionAppear",true)("pMotionOptions",i.motionOptions())("motionOptions",i.motionOptions())("pt",i.pt())("pBind",i.ptm("submenu"))("unstyled",i.unstyled())("submenuiconTemplate",i.submenuiconTemplate()),su$1("aria-labelledby",i.getItemLabelId(e));}}function tl(t,a){if(t&1){let e=hM();Bc$1(0,"li",4,0)(2,"div",5),cu$1("click",function(n){Rm$1(e);let o=EM().$implicit,r=EM();return xm$1(r.onItemClick(n,o))})("mouseenter",function(n){Rm$1(e);let o=EM().$implicit,r=EM();return xm$1(r.onItemMouseEnter({$event:n,processedItem:o}))}),rM(3,Qa,2,1)(4,Ja,1,2,"ng-container"),bp$1(),rM(5,el,1,19,"ul",6),bp$1();}if(t&2){let e=EM(),i=e.$implicit,n=e.$index,o=EM();PM(o.getItemProp(i,"style")),jM(o.cn(o.cx("item",iN(22,Da,o,i)),o.getItemProp(i,"styleClass"))),zE("pBind",o.getPTOptions(i,n,"item"))("tooltipOptions",o.getItemProp(i,"tooltipOptions"))("pTooltipUnstyled",o.unstyled()),su$1("id",o.getItemId(i))("data-p-highlight",o.isItemActive(i))("data-p-focused",o.isItemFocused(i))("data-p-disabled",o.isItemDisabled(i))("aria-label",o.getItemLabel(i))("aria-disabled",o.isItemDisabled(i)||void 0)("aria-haspopup",o.isItemGroup(i)&&!o.getItemProp(i,"to")?"menu":void 0)("aria-expanded",o.isItemGroup(i)?o.isItemActive(i):void 0)("aria-setsize",o.getAriaSetSize())("aria-posinset",o.getAriaPosInset(n)),n_(2),jM(o.cx("itemContent")),zE("pBind",o.getPTOptions(i,n,"itemContent")),n_(),oM(o.itemTemplate()?4:3),n_(2),oM(o.isItemVisible(i)&&o.isItemGroup(i)?5:-1);}}function il(t,a){if(t&1&&(rM(0,Ia,1,6,"li",1),rM(1,tl,6,25,"li",2)),t&2){let e=a.$implicit,i=EM();oM(i.isItemVisible(e)&&i.getItemProp(e,"separator")?0:-1),n_(),oM(i.isItemVisible(e)&&!i.getItemProp(e,"separator")?1:-1);}}var nl=["start"],ol=["end"],al=["item"],ll=["menuicon"],rl=["submenuicon"],sl=["menubutton"],cl=["rootmenu"],dl=["*"];function pl(t,a){t&1&&qE(0);}function ul(t,a){if(t&1&&(Bc$1(0,"div",6),VE(1,pl,1,0,"ng-container",7),bp$1()),t&2){let e=EM();jM(e.cx("start")),zE("pBind",e.ptm("start")),n_(),zE("ngTemplateOutlet",e.startTemplate());}}function ml(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",9)),t&2){let e=EM(2);zE("pBind",e.ptm("buttonIcon"));}}function fl(t,a){t&1&&qE(0);}function hl(t,a){if(t&1){let e=hM();Bc$1(0,"a",8,1),cu$1("click",function(n){Rm$1(e);let o=EM();return xm$1(o.menuButtonClick(n))})("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.menuButtonKeydown(n))}),rM(2,ml,1,1,":svg:svg",9),VE(3,fl,1,0,"ng-container",7),bp$1();}if(t&2){let e=EM();jM(e.cx("button")),zE("pBind",e.ptm("button")),su$1("aria-haspopup",true)("aria-expanded",e.mobileActive)("aria-controls",e.$id())("aria-label",e.navigationAriaLabel),n_(2),oM(e.menuIconTemplate()?-1:2),n_(),zE("ngTemplateOutlet",e.menuIconTemplate());}}function gl(t,a){t&1&&qE(0);}function bl(t,a){if(t&1&&(Bc$1(0,"div",6),VE(1,gl,1,0,"ng-container",7),bp$1()),t&2){let e=EM();jM(e.cx("end")),zE("pBind",e.ptm("end")),n_(),zE("ngTemplateOutlet",e.endTemplate());}}function _l(t,a){if(t&1&&(Bc$1(0,"div"),lu$1(1),bp$1()),t&2){let e=EM();jM(e.cx("end"));}}var oi=(()=>{class t{autoHide;autoHideDelay;mouseLeaves=new Y;mouseLeft$=this.mouseLeaves.pipe(pS(()=>fS(this.autoHideDelay)),Ke(e=>this.autoHide&&e));static \u0275fac=function(i){return new(i||t)};static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})(),yl=` +${Xn} +.p-menubar-root-list > .p-menubar-item-active > .p-menubar-submenu, +.p-menubar-submenu > .p-menubar-item-active > .p-menubar-submenu { + display: flex; +} +`,vl={root:({instance:t})=>["p-menubar p-component",{"p-menubar-mobile":t.queryMatches(),"p-menubar-mobile-active":t.mobileActive}],start:"p-menubar-start",button:"p-menubar-button",rootList:"p-menubar-root-list",item:({instance:t,processedItem:a})=>["p-menubar-item",{"p-menubar-item-active":t.isItemActive(a),"p-focus":t.isItemFocused(a),"p-disabled":t.isItemDisabled(a)}],itemContent:"p-menubar-item-content",itemLink:"p-menubar-item-link",itemIcon:"p-menubar-item-icon",itemLabel:"p-menubar-item-label",submenuIcon:"p-menubar-submenu-icon",submenu:"p-menubar-submenu",separator:"p-menubar-separator",end:"p-menubar-end"},ai=(()=>{class t extends WI{name="menubar";style=yl;classes=vl;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var xl=(()=>{class t extends I{hostId=gs$1(()=>this.root()?this.menuId():null);hostClass=gs$1(()=>this.level()===0?this.cx("rootList"):this.cx("submenu"));items=mu$1();itemTemplate=mu$1();root=mu$1(false,{transform:yn});autoZIndex=mu$1(true,{transform:yn});baseZIndex=mu$1(0,{transform:Bp$1});mobileActive=mu$1(void 0,{transform:yn});autoDisplay=mu$1(void 0,{transform:yn});menuId=mu$1();ariaLabel=mu$1();ariaLabelledBy=mu$1();level=mu$1(0,{transform:Bp$1});focusedItemId=mu$1();activeItemPath=mu$1();inlineStyles=mu$1();motionOptions=mu$1();submenuiconTemplate=mu$1();itemClick=sz();itemMouseEnter=sz();menuFocus=sz();menuBlur=sz();menuKeydown=sz();mouseLeaveSubscriber;menubarService=g(oi);_componentStyle=g(ai);hostName="Menubar";onInit(){this.mouseLeaveSubscriber=this.menubarService.mouseLeft$.subscribe(()=>{this.cd.markForCheck();});}onItemClick(e,i){this.getItemProp(i,"command",{originalEvent:e,item:i.item}),this.itemClick.emit({originalEvent:e,processedItem:i,isFocus:true});}getItemProp(e,i,n=null){return e&&e.item?Pe(e.item[i],n):void 0}getItemId(e){return e.item&&e.item?.id?e.item.id:`${this.menuId()}_${e.key}`}getItemLabelId(e){return `${this.menuId()}_${e.key}_label`}getItemLabel(e){return this.getItemProp(e,"label")}isItemVisible(e){return this.getItemProp(e,"visible")!==false}isItemActive(e){let i=this.activeItemPath();return i?i.some(n=>n.key===e.key):false}isItemDisabled(e){return this.getItemProp(e,"disabled")}isItemFocused(e){return this.focusedItemId()===this.getItemId(e)}isItemGroup(e){return oe(e.items)}getAriaSetSize(){let e=this.items();return e?e.filter(i=>this.isItemVisible(i)&&!this.getItemProp(i,"separator")).length:0}getAriaPosInset(e){let i=this.items();return i?e-i.slice(0,e).filter(n=>this.isItemVisible(n)&&this.getItemProp(n,"separator")).length+1:0}onItemMouseEnter(e){if(this.autoDisplay()){let{$event:i,processedItem:n}=e;this.itemMouseEnter.emit({originalEvent:i,processedItem:n});}}getRouterLinkActiveOptions(e){return this.getItemProp(e,"routerLinkActiveOptions")||{exact:false}}getPTOptions(e,i,n){return this.ptm(n,{context:{item:e.item,index:i,active:this.isItemActive(e),focused:this.isItemFocused(e),disabled:this.isItemDisabled(e),level:this.level()}})}getItemTemplateContext(e,i){return {$implicit:e,root:i}}onDestroy(){this.mouseLeaveSubscriber?.unsubscribe();}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-menubarsub"],["","pMenubarSub",""]],hostVars:7,hostBindings:function(i,n){i&2&&(su$1("id",n.hostId())("aria-activedescendant",n.focusedItemId())("role","menubar"),PM(n.inlineStyles()),jM(n.hostClass()));},inputs:{items:[1,"items"],itemTemplate:[1,"itemTemplate"],root:[1,"root"],autoZIndex:[1,"autoZIndex"],baseZIndex:[1,"baseZIndex"],mobileActive:[1,"mobileActive"],autoDisplay:[1,"autoDisplay"],menuId:[1,"menuId"],ariaLabel:[1,"ariaLabel"],ariaLabelledBy:[1,"ariaLabelledBy"],level:[1,"level"],focusedItemId:[1,"focusedItemId"],activeItemPath:[1,"activeItemPath"],inlineStyles:[1,"inlineStyles"],motionOptions:[1,"motionOptions"],submenuiconTemplate:[1,"submenuiconTemplate"]},outputs:{itemClick:"itemClick",itemMouseEnter:"itemMouseEnter",menuFocus:"menuFocus",menuBlur:"menuBlur",menuKeydown:"menuKeydown"},features:[BE],decls:2,vars:0,consts:[["listItem",""],["role","separator",3,"style","class","pBind"],["role","menuitem","pTooltip","",3,"style","class","pBind","tooltipOptions","pTooltipUnstyled"],["role","separator",3,"pBind"],["role","menuitem","pTooltip","",3,"pBind","tooltipOptions","pTooltipUnstyled"],[3,"click","mouseenter","pBind"],["pMenubarSub","",3,"itemTemplate","items","mobileActive","autoDisplay","menuId","activeItemPath","focusedItemId","level","pMotion","pMotionDisabled","pMotionName","pMotionAppear","pMotionOptions","motionOptions","pt","pBind","unstyled","submenuiconTemplate"],["pRipple","",3,"class","style","pBind"],["pRipple","",3,"routerLink","queryParams","routerLinkActive","routerLinkActiveOptions","target","class","style","fragment","queryParamsHandling","preserveFragment","skipLocationChange","replaceUrl","state","pBind"],["pRipple","",3,"pBind"],[3,"class","style","pBind"],[3,"class","style","id","pBind"],[3,"class","style","innerHTML","id","pBind"],[3,"class","value","pt","unstyled"],[3,"pBind"],[3,"id","pBind"],[3,"innerHTML","id","pBind"],[3,"value","pt","unstyled"],[4,"ngTemplateOutlet"],["data-p-icon","angle-down",3,"class","pBind"],["data-p-icon","angle-right",3,"class","pBind"],["data-p-icon","angle-down",3,"pBind"],["data-p-icon","angle-right",3,"pBind"],["pRipple","",3,"routerLink","queryParams","routerLinkActive","routerLinkActiveOptions","target","fragment","queryParamsHandling","preserveFragment","skipLocationChange","replaceUrl","state","pBind"],[3,"class","style","innerHTML","pBind"],[3,"innerHTML","pBind"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],["pMenubarSub","",3,"itemClick","itemMouseEnter","itemTemplate","items","mobileActive","autoDisplay","menuId","activeItemPath","focusedItemId","level","pMotion","pMotionDisabled","pMotionName","pMotionAppear","pMotionOptions","motionOptions","pt","pBind","unstyled","submenuiconTemplate"]],template:function(i,n){i&1&&aM(0,il,2,2,null,null,Sa),i&2&&cM(n.items());},dependencies:[t,cA,qx,pl$1,$x,z4$2,Qn,Kt,L,E1,N1,ce,I3$1,iq,o1,De,Mo$1],encapsulation:2})}return t})(),Jn=new I$1("MENUBAR_INSTANCE"),Cl=(()=>{class t extends I{componentName="Menubar";$pcMenubar=g(Jn,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});menubarService=g(oi);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}model=mu$1();autoZIndex=mu$1(true,{transform:yn});baseZIndex=mu$1(0,{transform:Bp$1});motionOptions=mu$1();autoDisplay=mu$1(true,{transform:yn});autoHide=mu$1(void 0,{transform:yn});breakpoint=mu$1("960px");autoHideDelay=mu$1(100,{transform:Bp$1});id=mu$1();ariaLabel=mu$1();ariaLabelledBy=mu$1();onFocus=sz();onBlur=sz();startTemplate=uz("start",{descendants:false});endTemplate=uz("end",{descendants:false});itemTemplate=uz("item",{descendants:false});menuIconTemplate=uz("menuicon",{descendants:false});submenuIconTemplate=uz("submenuicon",{descendants:false});menubutton=cz("menubutton");rootmenu=cz("rootmenu");_internalId=j8$1("pn_id_");$id=gs$1(()=>this.id()||this._internalId);computedMotionOptions=gs$1(()=>l$1(l$1({},this.ptm("motion")),this.motionOptions()));mobileActive;matchMediaListener;query;queryMatches=U(false);outsideClickListener;resizeListener;mouseLeaveSubscriber;dirty=false;focused=false;activeItemPath=U([]);focusedItemInfo=U({index:-1,level:0,parentKey:"",item:null});searchValue="";searchTimeout=null;_componentStyle=g(ai);processedItems=gs$1(()=>this.createProcessedItems(this.model()||[]));get visibleItems(){let e=this.activeItemPath().find(i=>i.key===this.focusedItemInfo().parentKey);return e?e.items:this.processedItems()}get navigationAriaLabel(){return this.config.translation?.aria?.navigation}get focusedItemId(){let e=this.focusedItemInfo();return e.item&&e.item?.id?e.item.id:e.index!==-1?`${this.$id()}${oe(e.parentKey)?"_"+e.parentKey:""}_${e.index}`:null}constructor(){super(),Ui(()=>{let e=this.activeItemPath();oe(e)?(this.bindOutsideClickListener(),this.bindResizeListener()):(this.unbindOutsideClickListener(),this.unbindResizeListener());});}onInit(){this.bindMatchMediaListener(),this.menubarService.autoHide=this.autoHide(),this.menubarService.autoHideDelay=this.autoHideDelay(),this.mouseLeaveSubscriber=this.menubarService.mouseLeft$.subscribe(()=>{this.hide();});}createProcessedItems(e,i=0,n={},o=""){let r=[];return e&&e.forEach((u,M)=>{let z=(o!==""?o+"_":"")+M,T={item:u,index:M,level:i,key:z,parent:n,parentKey:o};T.items=this.createProcessedItems(u.items||[],i+1,T,z),r.push(T);}),r}bindMatchMediaListener(){if(BG(this.platformId)&&!this.matchMediaListener){let e=window.matchMedia(`(max-width: ${this.breakpoint()})`);this.query=e,this.queryMatches.set(e.matches),this.matchMediaListener=()=>{this.queryMatches.set(e.matches),this.mobileActive=false,this.cd.markForCheck();},e.addEventListener("change",this.matchMediaListener);}}unbindMatchMediaListener(){this.matchMediaListener&&(this.query.removeEventListener("change",this.matchMediaListener),this.matchMediaListener=null);}getItemProp(e,i){return e?Pe(e[i]):void 0}menuButtonClick(e){this.toggle(e);}menuButtonKeydown(e){(e.code==="Enter"||e.code==="Space")&&this.menuButtonClick(e);}onItemClick(e){this.dirty=true;let{originalEvent:i,processedItem:n}=e,o=this.isProcessedItemGroup(n),r=Gs$1(n.parent);if(this.isSelected(n)){let{index:M,key:z,level:T,parentKey:L,item:K}=n;this.activeItemPath.set(this.activeItemPath().filter($=>z!==$.key&&z.startsWith($.key))),this.focusedItemInfo.set({index:M,level:T,parentKey:L,item:K}),this.dirty=!r,N4$2(this.rootmenu()?.el.nativeElement);}else if(o)this.onItemChange(e);else {let M=r?n:this.activeItemPath().find(z=>z.parentKey==="");this.hide(i),this.changeFocusedItemIndex(i,M?M.index:-1),this.mobileActive=false,N4$2(this.rootmenu()?.el.nativeElement);}}onItemMouseEnter(e){H4$1()?this.onItemChange({originalEvent:e.originalEvent,processedItem:e.processedItem,isFocus:this.autoDisplay()},"hover"):this.dirty&&this.onItemChange(e,"hover");}onMouseLeave(e){let i=this.menubarService.autoHide,n=this.menubarService.autoHideDelay;i&&setTimeout(()=>{this.menubarService.mouseLeaves.next(true);},n);}changeFocusedItemIndex(e,i){let n=this.findVisibleItem(i);if(this.focusedItemInfo().index!==i){let o=this.focusedItemInfo();this.focusedItemInfo.set(m(l$1({},o),{item:n?.item??null,index:i})),this.scrollInView();}}scrollInView(e=-1){let i=e!==-1?`${this.$id()}_${e}`:this.focusedItemId,n=M4$1(this.rootmenu()?.el.nativeElement,`li[id="${i}"]`);n&&n.scrollIntoView&&n.scrollIntoView({block:"nearest",inline:"nearest"});}onItemChange(e,i){let{processedItem:n,isFocus:o}=e;if(Gs$1(n))return;let{index:r,key:u,level:M,parentKey:z,items:T,item:L}=n,K=oe(T),$=this.activeItemPath().filter(G=>G.parentKey!==z&&G.parentKey!==u);K&&$.push(n),this.focusedItemInfo.set({index:r,level:M,parentKey:z,item:L}),K&&(this.dirty=true),o&&N4$2(this.rootmenu()?.el.nativeElement),!(i==="hover"&&this.queryMatches())&&this.activeItemPath.set($);}toggle(e){this.mobileActive?(this.mobileActive=false,N4$1.clear(this.rootmenu()?.el.nativeElement),this.hide()):(this.mobileActive=true,N4$1.set("menu",this.rootmenu()?.el.nativeElement,this.config.zIndex.menu),setTimeout(()=>{this.show();},0)),this.bindOutsideClickListener(),e.preventDefault();}hide(e,i){this.mobileActive&&setTimeout(()=>{N4$2(this.menubutton()?.nativeElement);},0),this.activeItemPath.set([]),this.focusedItemInfo.set({index:-1,level:0,parentKey:"",item:null}),i&&N4$2(this.rootmenu()?.el.nativeElement),this.dirty=false;}show(){let e=this.findVisibleItem(this.findFirstFocusedItemIndex());this.focusedItemInfo.set({index:this.findFirstFocusedItemIndex(),level:0,parentKey:"",item:e?.item??null}),N4$2(this.rootmenu()?.el.nativeElement);}onMenuMouseDown(e){this.dirty=true;}onMenuFocus(e){this.focused=true;let i=e.relatedTarget;if((!i||!this.el.nativeElement.contains(i))&&this.focusedItemInfo().index===-1&&!this.activeItemPath().length&&!this.dirty){let o=this.findVisibleItem(this.findFirstFocusedItemIndex());this.focusedItemInfo.set({index:this.findFirstFocusedItemIndex(),level:0,parentKey:"",item:o?.item??null});}this.onFocus.emit(e);}onMenuBlur(e){let i=e.relatedTarget;i&&this.el.nativeElement.contains(i)||setTimeout(()=>{let n=this.document.activeElement;n&&this.el.nativeElement.contains(n)||(this.focused=false,this.focusedItemInfo.set({index:-1,level:0,parentKey:"",item:null}),this.searchValue="",this.dirty=false,this.onBlur.emit(e));});}onKeyDown(e){let i=e.metaKey||e.ctrlKey;switch(e.code){case "ArrowDown":this.onArrowDownKey(e);break;case "ArrowUp":this.onArrowUpKey(e);break;case "ArrowLeft":this.onArrowLeftKey(e);break;case "ArrowRight":this.onArrowRightKey(e);break;case "Home":this.onHomeKey(e);break;case "End":this.onEndKey(e);break;case "Space":this.onSpaceKey(e);break;case "Enter":this.onEnterKey(e);break;case "Escape":this.onEscapeKey(e);break;case "Tab":this.onTabKey(e);break;case "PageDown":case "PageUp":case "Backspace":case "ShiftLeft":case "ShiftRight":break;default:!i&&g4$1(e.key)&&this.searchItems(e,e.key);break}}findVisibleItem(e){return oe(this.visibleItems)?this.visibleItems[e]:null}findFirstFocusedItemIndex(){let e=this.findSelectedItemIndex();return e<0?this.findFirstItemIndex():e}findFirstItemIndex(){return this.visibleItems.findIndex(e=>this.isValidItem(e))}findSelectedItemIndex(){return this.visibleItems.findIndex(e=>this.isValidSelectedItem(e))}isProcessedItemGroup(e){return e&&oe(e.items)}isSelected(e){return this.activeItemPath().some(i=>i.key===e.key)}isValidSelectedItem(e){return this.isValidItem(e)&&this.isSelected(e)}isValidItem(e){return !!e&&!this.isItemDisabled(e.item)&&!this.isItemSeparator(e.item)}isItemDisabled(e){return this.getItemProp(e,"disabled")}isItemSeparator(e){return this.getItemProp(e,"separator")}isItemMatched(e){return this.isValidItem(e)&&!!this.getProccessedItemLabel(e)?.toLocaleLowerCase().startsWith(this.searchValue.toLocaleLowerCase())}isProccessedItemGroup(e){return e&&oe(e.items)}searchItems(e,i){this.searchValue=(this.searchValue||"")+i;let n=-1,o=false;return this.focusedItemInfo().index!==-1?(n=this.visibleItems.slice(this.focusedItemInfo().index).findIndex(r=>this.isItemMatched(r)),n=n===-1?this.visibleItems.slice(0,this.focusedItemInfo().index).findIndex(r=>this.isItemMatched(r)):n+this.focusedItemInfo().index):n=this.visibleItems.findIndex(r=>this.isItemMatched(r)),n!==-1&&(o=true),n===-1&&this.focusedItemInfo().index===-1&&(n=this.findFirstFocusedItemIndex()),n!==-1&&this.changeFocusedItemIndex(e,n),this.searchTimeout&&clearTimeout(this.searchTimeout),this.searchTimeout=setTimeout(()=>{this.searchValue="",this.searchTimeout=null;},500),o}getProccessedItemLabel(e){return e?this.getItemLabel(e.item):void 0}getItemLabel(e){return this.getItemProp(e,"label")}onArrowDownKey(e){let i=this.visibleItems[this.focusedItemInfo().index];if(i?Gs$1(i.parent):null)this.isProccessedItemGroup(i)&&(this.onItemChange({originalEvent:e,processedItem:i}),this.focusedItemInfo.set({index:-1,level:i.level+1,parentKey:i.key,item:i.item}),this.onArrowRightKey(e));else {let o=this.focusedItemInfo().index!==-1?this.findNextItemIndex(this.focusedItemInfo().index):this.findFirstFocusedItemIndex();this.changeFocusedItemIndex(e,o),e.preventDefault();}}onArrowRightKey(e){let i=this.visibleItems[this.focusedItemInfo().index];if(i?this.activeItemPath().find(o=>o.key===i.parentKey):null)this.isProccessedItemGroup(i)&&(this.onItemChange({originalEvent:e,processedItem:i}),this.focusedItemInfo.set({index:-1,level:i.level+1,parentKey:i.key,item:i.item}),this.onArrowDownKey(e));else {let o=this.focusedItemInfo().index!==-1?this.findNextItemIndex(this.focusedItemInfo().index):this.findFirstFocusedItemIndex();this.changeFocusedItemIndex(e,o),e.preventDefault();}}onArrowUpKey(e){let i=this.visibleItems[this.focusedItemInfo().index];if(Gs$1(i.parent)){if(this.isProccessedItemGroup(i)){this.onItemChange({originalEvent:e,processedItem:i}),this.focusedItemInfo.set({index:-1,level:i.level+1,parentKey:i.key,item:i.item});let r=this.findLastItemIndex();this.changeFocusedItemIndex(e,r);}}else {let o=this.activeItemPath().find(r=>r.key===i.parentKey);if(this.focusedItemInfo().index===0){this.focusedItemInfo.set({index:-1,level:o?.level??0,parentKey:o?o.parentKey:"",item:i.item}),this.searchValue="",this.onArrowLeftKey(e);let r=this.activeItemPath().filter(u=>u.parentKey!==this.focusedItemInfo().parentKey);this.activeItemPath.set(r);}else {let r=this.focusedItemInfo().index!==-1?this.findPrevItemIndex(this.focusedItemInfo().index):this.findLastFocusedItemIndex();this.changeFocusedItemIndex(e,r);}}e.preventDefault();}onArrowLeftKey(e){let i=this.visibleItems[this.focusedItemInfo().index],n=i?this.activeItemPath().find(o=>o.key===i.parentKey):null;if(n){this.onItemChange({originalEvent:e,processedItem:n});let o=this.activeItemPath().filter(r=>r.parentKey!==this.focusedItemInfo().parentKey);this.activeItemPath.set(o),e.preventDefault();}else {let o=this.focusedItemInfo().index!==-1?this.findPrevItemIndex(this.focusedItemInfo().index):this.findLastFocusedItemIndex();this.changeFocusedItemIndex(e,o),e.preventDefault();}}onHomeKey(e){this.changeFocusedItemIndex(e,this.findFirstItemIndex()),e.preventDefault();}onEndKey(e){this.changeFocusedItemIndex(e,this.findLastItemIndex()),e.preventDefault();}onSpaceKey(e){this.onEnterKey(e);}onEscapeKey(e){this.hide(e,true),this.focusedItemInfo().index=this.findFirstFocusedItemIndex(),e.preventDefault();}onTabKey(e){if(this.focusedItemInfo().index!==-1){let i=this.visibleItems[this.focusedItemInfo().index];!this.isProccessedItemGroup(i)&&this.onItemChange({originalEvent:e,processedItem:i});}this.hide();}onEnterKey(e){if(this.focusedItemInfo().index!==-1){let i=M4$1(this.rootmenu()?.el.nativeElement,`li[id="${`${this.focusedItemId}`}"]`),n=i&&(M4$1(i,'[data-pc-section="itemlink"]')||M4$1(i,"a,button"));n?n.click():i&&i.click();}e.preventDefault();}findLastFocusedItemIndex(){let e=this.findSelectedItemIndex();return e<0?this.findLastItemIndex():e}findLastItemIndex(){return p4$1(this.visibleItems,e=>this.isValidItem(e))}findPrevItemIndex(e){let i=e>0?p4$1(this.visibleItems.slice(0,e),n=>this.isValidItem(n)):-1;return i>-1?i:e}findNextItemIndex(e){let i=ethis.isValidItem(n)):-1;return i>-1?i+e+1:e}bindResizeListener(){BG(this.platformId)&&(this.resizeListener||(this.resizeListener=this.renderer.listen(this.document.defaultView,"resize",e=>{H4$1()||this.hide(e,true),this.mobileActive=false;})));}bindOutsideClickListener(){BG(this.platformId)&&(this.outsideClickListener||(this.outsideClickListener=this.renderer.listen(this.document,"click",e=>{let i=this.rootmenu()?.el.nativeElement,n=this.menubutton()?.nativeElement,o=i!==e.target&&!i?.contains(e.target),r=this.mobileActive&&n!==e.target&&!n?.contains(e.target);o&&(r?this.mobileActive=false:this.hide());})));}unbindOutsideClickListener(){this.outsideClickListener&&(this.outsideClickListener(),this.outsideClickListener=null);}unbindResizeListener(){this.resizeListener&&(this.resizeListener(),this.resizeListener=null);}onDestroy(){this.mouseLeaveSubscriber?.unsubscribe(),this.unbindOutsideClickListener(),this.unbindResizeListener(),this.unbindMatchMediaListener();}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-menubar"]],contentQueries:function(i,n,o){i&1&&QE(o,n.startTemplate,nl,4)(o,n.endTemplate,ol,4)(o,n.itemTemplate,al,4)(o,n.menuIconTemplate,ll,4)(o,n.submenuIconTemplate,rl,4),i&2&&IM(5);},viewQuery:function(i,n){i&1&&XE(n.menubutton,sl,5)(n.rootmenu,cl,5),i&2&&IM(2);},hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("root"));},inputs:{model:[1,"model"],autoZIndex:[1,"autoZIndex"],baseZIndex:[1,"baseZIndex"],motionOptions:[1,"motionOptions"],autoDisplay:[1,"autoDisplay"],autoHide:[1,"autoHide"],breakpoint:[1,"breakpoint"],autoHideDelay:[1,"autoHideDelay"],id:[1,"id"],ariaLabel:[1,"ariaLabel"],ariaLabelledBy:[1,"ariaLabelledBy"]},outputs:{onFocus:"onFocus",onBlur:"onBlur"},features:[nN([oi,ai,{provide:Jn,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:dl,decls:6,vars:20,consts:[["rootmenu",""],["menubutton",""],[3,"class","pBind"],["tabindex","0","role","button",3,"class","pBind"],["pMenubarSub","","tabindex","0",3,"itemClick","mousedown","focus","blur","keydown","itemMouseEnter","mouseleave","items","itemTemplate","motionOptions","menuId","root","baseZIndex","autoZIndex","mobileActive","autoDisplay","focusedItemId","submenuiconTemplate","activeItemPath","pt","pBind","unstyled"],[3,"class"],[3,"pBind"],[4,"ngTemplateOutlet"],["tabindex","0","role","button",3,"click","keydown","pBind"],["data-p-icon","bars",3,"pBind"]],template:function(i,n){i&1&&(uu$1(),rM(0,ul,2,4,"div",2),rM(1,hl,4,9,"a",3),Bc$1(2,"ul",4,0),cu$1("itemClick",function(r){return n.onItemClick(r)})("mousedown",function(r){return n.onMenuMouseDown(r)})("focus",function(r){return n.onMenuFocus(r)})("blur",function(r){return n.onMenuBlur(r)})("keydown",function(r){return n.onKeyDown(r)})("itemMouseEnter",function(r){return n.onItemMouseEnter(r)})("mouseleave",function(r){return n.onMouseLeave(r)}),bp$1(),rM(4,bl,2,4,"div",2)(5,_l,2,2,"div",5)),i&2&&(oM(n.startTemplate()?0:-1),n_(),oM(n.model()?.length?1:-1),n_(),zE("items",n.processedItems())("itemTemplate",n.itemTemplate())("motionOptions",n.computedMotionOptions())("menuId",n.$id())("root",true)("baseZIndex",n.baseZIndex())("autoZIndex",n.autoZIndex())("mobileActive",n.mobileActive)("autoDisplay",n.autoDisplay())("focusedItemId",n.focused?n.focusedItemId:void 0)("submenuiconTemplate",n.submenuIconTemplate())("activeItemPath",n.activeItemPath())("pt",n.pt())("pBind",n.ptm("rootList"))("unstyled",n.unstyled()),su$1("aria-label",n.ariaLabel())("aria-labelledby",n.ariaLabelledBy()),n_(2),oM(n.endTemplate()?4:5));},dependencies:[cA,xl,jn,iq,o1,L],encapsulation:2})}return t})(),e2=(()=>{class t{static \u0275fac=function(i){return new(i||t)};static \u0275mod=mn({type:t});static \u0275inj=$t({imports:[Cl,iq,iq]})}return t})();var t2=` + .p-datatable { + position: relative; + display: block; + } + + .p-datatable-table { + border-spacing: 0; + border-collapse: separate; + width: 100%; + } + + .p-datatable-scrollable > .p-datatable-table-container { + position: relative; + } + + .p-datatable-scrollable-table > .p-datatable-thead { + inset-block-start: 0; + z-index: 1; + } + + .p-datatable-scrollable-table > .p-datatable-frozen-tbody { + position: sticky; + z-index: 1; + } + + .p-datatable-scrollable-table > .p-datatable-tfoot { + inset-block-end: 0; + z-index: 1; + } + + .p-datatable-scrollable .p-datatable-frozen-column { + position: sticky; + } + + .p-datatable-scrollable th.p-datatable-frozen-column { + z-index: 1; + } + + .p-datatable-scrollable td.p-datatable-frozen-column { + background: inherit; + } + + .p-datatable-scrollable > .p-datatable-table-container > .p-datatable-table > .p-datatable-thead, + .p-datatable-scrollable > .p-datatable-table-container > .p-virtualscroller > .p-datatable-table > .p-datatable-thead { + background: dt('datatable.header.cell.background'); + } + + .p-datatable-scrollable > .p-datatable-table-container > .p-datatable-table > .p-datatable-tfoot, + .p-datatable-scrollable > .p-datatable-table-container > .p-virtualscroller > .p-datatable-table > .p-datatable-tfoot { + background: dt('datatable.footer.cell.background'); + } + + .p-datatable-flex-scrollable { + display: flex; + flex-direction: column; + height: 100%; + } + + .p-datatable-flex-scrollable > .p-datatable-table-container { + display: flex; + flex-direction: column; + flex: 1; + height: 100%; + } + + .p-datatable-scrollable-table > .p-datatable-tbody > .p-datatable-row-group-header { + position: sticky; + z-index: 1; + } + + .p-datatable-resizable-table > .p-datatable-thead > tr > th, + .p-datatable-resizable-table > .p-datatable-tfoot > tr > td, + .p-datatable-resizable-table > .p-datatable-tbody > tr > td { + overflow: hidden; + white-space: nowrap; + } + + .p-datatable-resizable-table > .p-datatable-thead > tr > th.p-datatable-resizable-column:not(.p-datatable-frozen-column) { + background-clip: padding-box; + position: relative; + } + + .p-datatable-resizable-table-fit > .p-datatable-thead > tr > th.p-datatable-resizable-column:last-child .p-datatable-column-resizer { + display: none; + } + + .p-datatable-column-resizer { + display: block; + position: absolute; + inset-block-start: 0; + inset-inline-end: 0; + margin: 0; + width: dt('datatable.column.resizer.width'); + height: 100%; + padding: 0; + cursor: col-resize; + border: 1px solid transparent; + } + + .p-datatable-column-header-content { + display: flex; + align-items: center; + gap: dt('datatable.header.cell.gap'); + } + + .p-datatable-column-resize-indicator { + width: dt('datatable.resize.indicator.width'); + position: absolute; + z-index: 10; + display: none; + background: dt('datatable.resize.indicator.color'); + } + + .p-datatable-row-reorder-indicator-up, + .p-datatable-row-reorder-indicator-down { + position: absolute; + display: none; + } + + .p-datatable-reorderable-column, + .p-datatable-reorderable-row-handle { + cursor: move; + } + + .p-datatable-mask { + position: absolute; + display: flex; + align-items: center; + justify-content: center; + z-index: 2; + } + + .p-datatable-inline-filter { + display: flex; + align-items: center; + width: 100%; + gap: dt('datatable.filter.inline.gap'); + } + + .p-datatable-inline-filter .p-datatable-filter-element-container { + flex: 1 1 auto; + width: 1%; + } + + .p-datatable-filter-overlay { + background: dt('datatable.filter.overlay.select.background'); + color: dt('datatable.filter.overlay.select.color'); + border: 1px solid dt('datatable.filter.overlay.select.border.color'); + border-radius: dt('datatable.filter.overlay.select.border.radius'); + box-shadow: dt('datatable.filter.overlay.select.shadow'); + min-width: 12.5rem; + } + + .p-datatable-filter-constraint-list { + margin: 0; + list-style: none; + display: flex; + flex-direction: column; + padding: dt('datatable.filter.constraint.list.padding'); + gap: dt('datatable.filter.constraint.list.gap'); + } + + .p-datatable-filter-constraint { + padding: dt('datatable.filter.constraint.padding'); + color: dt('datatable.filter.constraint.color'); + border-radius: dt('datatable.filter.constraint.border.radius'); + cursor: pointer; + transition: + background dt('datatable.transition.duration'), + color dt('datatable.transition.duration'), + border-color dt('datatable.transition.duration'), + box-shadow dt('datatable.transition.duration'); + } + + .p-datatable-filter-constraint-selected { + background: dt('datatable.filter.constraint.selected.background'); + color: dt('datatable.filter.constraint.selected.color'); + } + + .p-datatable-filter-constraint:not(.p-datatable-filter-constraint-selected):not(.p-disabled):hover { + background: dt('datatable.filter.constraint.focus.background'); + color: dt('datatable.filter.constraint.focus.color'); + } + + .p-datatable-filter-constraint:focus-visible { + outline: 0 none; + background: dt('datatable.filter.constraint.focus.background'); + color: dt('datatable.filter.constraint.focus.color'); + } + + .p-datatable-filter-constraint-selected:focus-visible { + outline: 0 none; + background: dt('datatable.filter.constraint.selected.focus.background'); + color: dt('datatable.filter.constraint.selected.focus.color'); + } + + .p-datatable-filter-constraint-separator { + border-block-start: 1px solid dt('datatable.filter.constraint.separator.border.color'); + } + + .p-datatable-popover-filter { + display: inline-flex; + margin-inline-start: auto; + } + + .p-datatable-filter-overlay-popover { + background: dt('datatable.filter.overlay.popover.background'); + color: dt('datatable.filter.overlay.popover.color'); + border: 1px solid dt('datatable.filter.overlay.popover.border.color'); + border-radius: dt('datatable.filter.overlay.popover.border.radius'); + box-shadow: dt('datatable.filter.overlay.popover.shadow'); + min-width: 12.5rem; + padding: dt('datatable.filter.overlay.popover.padding'); + display: flex; + flex-direction: column; + gap: dt('datatable.filter.overlay.popover.gap'); + } + + .p-datatable-filter-operator-dropdown { + width: 100%; + } + + .p-datatable-filter-rule-list, + .p-datatable-filter-rule { + display: flex; + flex-direction: column; + gap: dt('datatable.filter.overlay.popover.gap'); + } + + .p-datatable-filter-rule { + border-block-end: 1px solid dt('datatable.filter.rule.border.color'); + padding-bottom: dt('datatable.filter.overlay.popover.gap'); + } + + .p-datatable-filter-rule:last-child { + border-block-end: 0 none; + padding-bottom: 0; + } + + .p-datatable-filter-add-rule-button { + width: 100%; + } + + .p-datatable-filter-remove-rule-button { + width: 100%; + } + + .p-datatable-filter-buttonbar { + padding: 0; + display: flex; + align-items: center; + justify-content: space-between; + } + + .p-datatable-virtualscroller-spacer { + display: flex; + } + + .p-datatable .p-virtualscroller .p-virtualscroller-loading { + transform: none !important; + min-height: 0; + position: sticky; + inset-block-start: 0; + inset-inline-start: 0; + } + + .p-datatable-paginator-top { + border-color: dt('datatable.paginator.top.border.color'); + border-style: solid; + border-width: dt('datatable.paginator.top.border.width'); + } + + .p-datatable-paginator-bottom { + border-color: dt('datatable.paginator.bottom.border.color'); + border-style: solid; + border-width: dt('datatable.paginator.bottom.border.width'); + } + + .p-datatable-header { + background: dt('datatable.header.background'); + color: dt('datatable.header.color'); + border-color: dt('datatable.header.border.color'); + border-style: solid; + border-width: dt('datatable.header.border.width'); + padding: dt('datatable.header.padding'); + } + + .p-datatable-footer { + background: dt('datatable.footer.background'); + color: dt('datatable.footer.color'); + border-color: dt('datatable.footer.border.color'); + border-style: solid; + border-width: dt('datatable.footer.border.width'); + padding: dt('datatable.footer.padding'); + } + + .p-datatable-header-cell { + padding: dt('datatable.header.cell.padding'); + background: dt('datatable.header.cell.background'); + border-color: dt('datatable.header.cell.border.color'); + border-style: solid; + border-width: 0 0 1px 0; + color: dt('datatable.header.cell.color'); + font-weight: normal; + text-align: start; + transition: + background dt('datatable.transition.duration'), + color dt('datatable.transition.duration'), + border-color dt('datatable.transition.duration'), + outline-color dt('datatable.transition.duration'), + box-shadow dt('datatable.transition.duration'); + } + + .p-datatable-column-title { + font-weight: dt('datatable.column.title.font.weight'); + font-size: dt('datatable.column.title.font.size'); + } + + .p-datatable-tbody > tr { + outline-color: transparent; + background: dt('datatable.row.background'); + color: dt('datatable.row.color'); + transition: + background dt('datatable.transition.duration'), + color dt('datatable.transition.duration'), + border-color dt('datatable.transition.duration'), + outline-color dt('datatable.transition.duration'), + box-shadow dt('datatable.transition.duration'); + } + + .p-datatable-tbody > tr > td { + text-align: start; + border-color: dt('datatable.body.cell.border.color'); + border-style: solid; + border-width: 0 0 1px 0; + padding: dt('datatable.body.cell.padding'); + font-weight: dt('datatable.body.cell.font.weight'); + font-size: dt('datatable.body.cell.font.size'); + } + + .p-datatable-hoverable .p-datatable-tbody > tr:not(.p-datatable-row-selected):hover { + background: dt('datatable.row.hover.background'); + color: dt('datatable.row.hover.color'); + } + + .p-datatable-tbody > tr.p-datatable-row-selected { + background: dt('datatable.row.selected.background'); + color: dt('datatable.row.selected.color'); + } + + .p-datatable-tbody > tr:has(+ .p-datatable-row-selected) > td { + border-block-end-color: dt('datatable.body.cell.selected.border.color'); + } + + .p-datatable-tbody > tr.p-datatable-row-selected > td { + border-block-end-color: dt('datatable.body.cell.selected.border.color'); + } + + .p-datatable-tbody > tr:focus-visible, + .p-datatable-tbody > tr.p-datatable-contextmenu-row-selected { + box-shadow: dt('datatable.row.focus.ring.shadow'); + outline: dt('datatable.row.focus.ring.width') dt('datatable.row.focus.ring.style') dt('datatable.row.focus.ring.color'); + outline-offset: dt('datatable.row.focus.ring.offset'); + } + + .p-datatable-tfoot > tr > td { + text-align: start; + padding: dt('datatable.footer.cell.padding'); + border-color: dt('datatable.footer.cell.border.color'); + border-style: solid; + border-width: 0 0 1px 0; + color: dt('datatable.footer.cell.color'); + background: dt('datatable.footer.cell.background'); + } + + .p-datatable-column-footer { + font-weight: dt('datatable.column.footer.font.weight'); + font-size: dt('datatable.column.footer.font.size'); + } + + .p-datatable-sortable-column { + cursor: pointer; + user-select: none; + outline-color: transparent; + } + + .p-datatable-column-title, + .p-datatable-sort-icon, + .p-datatable-sort-badge { + vertical-align: middle; + } + + .p-datatable-sort-icon { + color: dt('datatable.sort.icon.color'); + font-size: dt('datatable.sort.icon.size'); + width: dt('datatable.sort.icon.size'); + height: dt('datatable.sort.icon.size'); + transition: color dt('datatable.transition.duration'); + } + + .p-datatable-sortable-column:not(.p-datatable-column-sorted):hover { + background: dt('datatable.header.cell.hover.background'); + color: dt('datatable.header.cell.hover.color'); + } + + .p-datatable-sortable-column:not(.p-datatable-column-sorted):hover .p-datatable-sort-icon { + color: dt('datatable.sort.icon.hover.color'); + } + + .p-datatable-column-sorted { + background: dt('datatable.header.cell.selected.background'); + color: dt('datatable.header.cell.selected.color'); + } + + .p-datatable-column-sorted .p-datatable-sort-icon { + color: dt('datatable.header.cell.selected.color'); + } + + .p-datatable-sortable-column:focus-visible { + box-shadow: dt('datatable.header.cell.focus.ring.shadow'); + outline: dt('datatable.header.cell.focus.ring.width') dt('datatable.header.cell.focus.ring.style') dt('datatable.header.cell.focus.ring.color'); + outline-offset: dt('datatable.header.cell.focus.ring.offset'); + } + + .p-datatable-hoverable .p-datatable-selectable-row { + cursor: pointer; + } + + .p-datatable-tbody > tr.p-datatable-dragpoint-top > td { + box-shadow: inset 0 2px 0 0 dt('datatable.drop.point.color'); + } + + .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td { + box-shadow: inset 0 -2px 0 0 dt('datatable.drop.point.color'); + } + + .p-datatable-loading-icon { + font-size: dt('datatable.loading.icon.size'); + width: dt('datatable.loading.icon.size'); + height: dt('datatable.loading.icon.size'); + } + + .p-datatable-gridlines .p-datatable-header { + border-width: 1px 1px 0 1px; + } + + .p-datatable-gridlines .p-datatable-footer { + border-width: 0 1px 1px 1px; + } + + .p-datatable-gridlines .p-datatable-paginator-top { + border-width: 1px 1px 0 1px; + } + + .p-datatable-gridlines .p-datatable-paginator-bottom { + border-width: 0 1px 1px 1px; + } + + .p-datatable-gridlines .p-datatable-thead > tr > th { + border-width: 1px 0 1px 1px; + } + + .p-datatable-gridlines .p-datatable-thead > tr > th:last-child { + border-width: 1px; + } + + .p-datatable-gridlines .p-datatable-thead > tr:not(:first-child) > th { + border-block-start-width: 0; + } + + .p-datatable-gridlines .p-datatable-tfoot > tr:not(:first-child) > td { + border-block-start-width: 0; + } + + .p-datatable-gridlines .p-datatable-tbody > tr > td { + border-width: 1px 0 0 1px; + } + + .p-datatable-gridlines .p-datatable-tbody > tr > td:last-child { + border-width: 1px 1px 0 1px; + } + + .p-datatable-gridlines .p-datatable-tbody > tr:last-child > td { + border-width: 1px 0 1px 1px; + } + + .p-datatable-gridlines .p-datatable-tbody > tr:last-child > td:last-child { + border-width: 1px; + } + + .p-datatable-gridlines .p-datatable-tfoot > tr > td { + border-width: 1px 0 1px 1px; + } + + .p-datatable-gridlines .p-datatable-tfoot > tr > td:last-child { + border-width: 1px 1px 1px 1px; + } + + .p-datatable.p-datatable-gridlines .p-datatable-thead + .p-datatable-tfoot > tr > td { + border-width: 0 0 1px 1px; + } + + .p-datatable.p-datatable-gridlines .p-datatable-thead + .p-datatable-tfoot > tr > td:last-child { + border-width: 0 1px 1px 1px; + } + + .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody > tr > td { + border-width: 0 0 1px 1px; + } + + .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody > tr > td:last-child { + border-width: 0 1px 1px 1px; + } + + .p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody > tr:last-child > td { + border-width: 0 0 0 1px; + } + + .p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody > tr:last-child > td:last-child { + border-width: 0 1px 0 1px; + } + + .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd { + background: dt('datatable.row.striped.background'); + } + + .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-datatable-row-selected { + background: dt('datatable.row.selected.background'); + color: dt('datatable.row.selected.color'); + } + + .p-datatable-striped.p-datatable-hoverable .p-datatable-tbody > tr:not(.p-datatable-row-selected):hover { + background: dt('datatable.row.hover.background'); + color: dt('datatable.row.hover.color'); + } + + .p-datatable.p-datatable-sm .p-datatable-header { + padding: dt('datatable.header.sm.padding'); + } + + .p-datatable.p-datatable-sm .p-datatable-thead > tr > th { + padding: dt('datatable.header.cell.sm.padding'); + } + + .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td { + padding: dt('datatable.body.cell.sm.padding'); + } + + .p-datatable.p-datatable-sm .p-datatable-tfoot > tr > td { + padding: dt('datatable.footer.cell.sm.padding'); + } + + .p-datatable.p-datatable-sm .p-datatable-footer { + padding: dt('datatable.footer.sm.padding'); + } + + .p-datatable.p-datatable-lg .p-datatable-header { + padding: dt('datatable.header.lg.padding'); + } + + .p-datatable.p-datatable-lg .p-datatable-thead > tr > th { + padding: dt('datatable.header.cell.lg.padding'); + } + + .p-datatable.p-datatable-lg .p-datatable-tbody > tr > td { + padding: dt('datatable.body.cell.lg.padding'); + } + + .p-datatable.p-datatable-lg .p-datatable-tfoot > tr > td { + padding: dt('datatable.footer.cell.lg.padding'); + } + + .p-datatable.p-datatable-lg .p-datatable-footer { + padding: dt('datatable.footer.lg.padding'); + } + + .p-datatable-row-toggle-button { + display: inline-flex; + align-items: center; + justify-content: center; + overflow: hidden; + position: relative; + width: dt('datatable.row.toggle.button.size'); + height: dt('datatable.row.toggle.button.size'); + color: dt('datatable.row.toggle.button.color'); + border: 0 none; + background: transparent; + cursor: pointer; + border-radius: dt('datatable.row.toggle.button.border.radius'); + transition: + background dt('datatable.transition.duration'), + color dt('datatable.transition.duration'), + border-color dt('datatable.transition.duration'), + outline-color dt('datatable.transition.duration'), + box-shadow dt('datatable.transition.duration'); + outline-color: transparent; + user-select: none; + } + + .p-datatable-row-toggle-button:enabled:hover { + color: dt('datatable.row.toggle.button.hover.color'); + background: dt('datatable.row.toggle.button.hover.background'); + } + + .p-datatable-tbody > tr.p-datatable-row-selected .p-datatable-row-toggle-button:hover { + background: dt('datatable.row.toggle.button.selected.hover.background'); + color: dt('datatable.row.toggle.button.selected.hover.color'); + } + + .p-datatable-row-toggle-button:focus-visible { + box-shadow: dt('datatable.row.toggle.button.focus.ring.shadow'); + outline: dt('datatable.row.toggle.button.focus.ring.width') dt('datatable.row.toggle.button.focus.ring.style') dt('datatable.row.toggle.button.focus.ring.color'); + outline-offset: dt('datatable.row.toggle.button.focus.ring.offset'); + } + + .p-datatable-row-toggle-icon:dir(rtl) { + transform: rotate(180deg); + } +`;var Ml=(t,a)=>a[1].key||t;function wl(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function zl(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function kl(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Tl(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Dl(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Sl(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Il(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function El(t,a){if(t&1&&rM(0,wl,1,9,":svg:path")(1,zl,1,6,":svg:circle")(2,kl,1,9,":svg:rect")(3,Tl,1,7,":svg:line")(4,Dl,1,4,":svg:polyline")(5,Sl,1,4,":svg:polygon")(6,Il,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var i2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$8;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","angle-double-left"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,El,7,1,null,null,Ml),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var Nl=(t,a)=>a[1].key||t;function Ll(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Fl(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Ol(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Bl(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Vl(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Pl(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Rl(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Al(t,a){if(t&1&&rM(0,Ll,1,9,":svg:path")(1,Fl,1,6,":svg:circle")(2,Ol,1,9,":svg:rect")(3,Bl,1,7,":svg:line")(4,Vl,1,4,":svg:polyline")(5,Pl,1,4,":svg:polygon")(6,Rl,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var n2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$7;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","angle-double-right"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,Al,7,1,null,null,Nl),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var Hl=(t,a)=>a[1].key||t;function $l(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Gl(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Ul(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Kl(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function ql(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function jl(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Wl(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Yl(t,a){if(t&1&&rM(0,$l,1,9,":svg:path")(1,Gl,1,6,":svg:circle")(2,Ul,1,9,":svg:rect")(3,Kl,1,7,":svg:line")(4,ql,1,4,":svg:polyline")(5,jl,1,4,":svg:polygon")(6,Wl,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var o2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$6;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","angle-left"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,Yl,7,1,null,null,Hl),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var Zl=(t,a)=>a[1].key||t;function Ql(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Xl(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Jl(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function e3(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function t3(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function i3(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function n3(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function o3(t,a){if(t&1&&rM(0,Ql,1,9,":svg:path")(1,Xl,1,6,":svg:circle")(2,Jl,1,9,":svg:rect")(3,e3,1,7,":svg:line")(4,t3,1,4,":svg:polyline")(5,i3,1,4,":svg:polygon")(6,n3,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var a2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$5;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","angle-up"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,o3,7,1,null,null,Zl),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var l2=` + .p-inputnumber { + display: inline-flex; + position: relative; + } + + .p-inputnumber-button { + display: flex; + align-items: center; + justify-content: center; + flex: 0 0 auto; + cursor: pointer; + background: dt('inputnumber.button.background'); + color: dt('inputnumber.button.color'); + width: dt('inputnumber.button.width'); + transition: + background dt('inputnumber.transition.duration'), + color dt('inputnumber.transition.duration'), + border-color dt('inputnumber.transition.duration'), + outline-color dt('inputnumber.transition.duration'); + } + + .p-inputnumber-button:disabled { + cursor: auto; + } + + .p-inputnumber-button:not(:disabled):hover { + background: dt('inputnumber.button.hover.background'); + color: dt('inputnumber.button.hover.color'); + } + + .p-inputnumber-button:not(:disabled):active { + background: dt('inputnumber.button.active.background'); + color: dt('inputnumber.button.active.color'); + } + + .p-inputnumber-stacked .p-inputnumber-button { + position: relative; + flex: 1 1 auto; + border: 0 none; + } + + .p-inputnumber-stacked .p-inputnumber-button-group { + display: flex; + flex-direction: column; + position: absolute; + inset-block-start: 1px; + inset-inline-end: 1px; + height: calc(100% - 2px); + z-index: 1; + } + + .p-inputnumber-stacked .p-inputnumber-increment-button { + padding: 0; + border-start-end-radius: calc(dt('inputnumber.button.border.radius') - 1px); + } + + .p-inputnumber-stacked .p-inputnumber-decrement-button { + padding: 0; + border-end-end-radius: calc(dt('inputnumber.button.border.radius') - 1px); + } + + .p-inputnumber-stacked .p-inputnumber-input { + padding-inline-end: calc(dt('inputnumber.button.width') + dt('form.field.padding.x')); + } + + .p-inputnumber-horizontal .p-inputnumber-button { + border: 1px solid dt('inputnumber.button.border.color'); + } + + .p-inputnumber-horizontal .p-inputnumber-button:hover { + border-color: dt('inputnumber.button.hover.border.color'); + } + + .p-inputnumber-horizontal .p-inputnumber-button:active { + border-color: dt('inputnumber.button.active.border.color'); + } + + .p-inputnumber-horizontal .p-inputnumber-increment-button { + order: 3; + border-start-end-radius: dt('inputnumber.button.border.radius'); + border-end-end-radius: dt('inputnumber.button.border.radius'); + border-inline-start: 0 none; + } + + .p-inputnumber-horizontal .p-inputnumber-input { + order: 2; + border-radius: 0; + } + + .p-inputnumber-horizontal .p-inputnumber-decrement-button { + order: 1; + border-start-start-radius: dt('inputnumber.button.border.radius'); + border-end-start-radius: dt('inputnumber.button.border.radius'); + border-inline-end: 0 none; + } + + .p-floatlabel:has(.p-inputnumber-horizontal) label { + margin-inline-start: dt('inputnumber.button.width'); + } + + .p-inputnumber-vertical { + flex-direction: column; + } + + .p-inputnumber-vertical .p-inputnumber-button { + border: 1px solid dt('inputnumber.button.border.color'); + padding: dt('inputnumber.button.vertical.padding'); + } + + .p-inputnumber-vertical .p-inputnumber-button:hover { + border-color: dt('inputnumber.button.hover.border.color'); + } + + .p-inputnumber-vertical .p-inputnumber-button:active { + border-color: dt('inputnumber.button.active.border.color'); + } + + .p-inputnumber-vertical .p-inputnumber-increment-button { + order: 1; + border-start-start-radius: dt('inputnumber.button.border.radius'); + border-start-end-radius: dt('inputnumber.button.border.radius'); + width: 100%; + border-block-end: 0 none; + } + + .p-inputnumber-vertical .p-inputnumber-input { + order: 2; + border-radius: 0; + text-align: center; + } + + .p-inputnumber-vertical .p-inputnumber-decrement-button { + order: 3; + border-end-start-radius: dt('inputnumber.button.border.radius'); + border-end-end-radius: dt('inputnumber.button.border.radius'); + width: 100%; + border-block-start: 0 none; + } + + .p-inputnumber-input { + flex: 1 1 auto; + } + + .p-inputnumber-fluid { + width: 100%; + } + + .p-inputnumber-fluid .p-inputnumber-input { + width: 1%; + } + + .p-inputnumber-fluid.p-inputnumber-vertical .p-inputnumber-input { + width: 100%; + } + + .p-inputnumber:has(.p-inputtext-sm) .p-inputnumber-button .p-icon { + font-size: dt('form.field.sm.font.size'); + width: dt('form.field.sm.font.size'); + height: dt('form.field.sm.font.size'); + } + + .p-inputnumber:has(.p-inputtext-lg) .p-inputnumber-button .p-icon { + font-size: dt('form.field.lg.font.size'); + width: dt('form.field.lg.font.size'); + height: dt('form.field.lg.font.size'); + } + + .p-inputnumber-clear-icon { + position: absolute; + top: 50%; + margin-top: calc(-1 * dt('icon.size') / 2); + cursor: pointer; + inset-inline-end: dt('form.field.padding.x'); + color: dt('form.field.icon.color'); + } + + .p-inputnumber:has(.p-inputnumber-clear-icon) .p-inputnumber-input { + padding-inline-end: calc((dt('form.field.padding.x') * 2) + dt('icon.size')); + } + + .p-inputnumber-stacked .p-inputnumber-clear-icon { + inset-inline-end: calc(dt('inputnumber.button.width') + dt('form.field.padding.x')); + } + + .p-inputnumber-stacked:has(.p-inputnumber-clear-icon) .p-inputnumber-input { + padding-inline-end: calc(dt('inputnumber.button.width') + (dt('form.field.padding.x') * 2) + dt('icon.size')); + } + + .p-inputnumber-horizontal .p-inputnumber-clear-icon { + inset-inline-end: calc(dt('inputnumber.button.width') + dt('form.field.padding.x')); + } +`;var a3=["clearicon"],l3=["incrementbuttonicon"],r3=["decrementbuttonicon"],s3=["input"];function c3(t,a){if(t&1){let e=hM();Gm$1(),Bc$1(0,"svg",4),cu$1("click",function(){Rm$1(e);let n=EM(2);return xm$1(n.clear())}),bp$1();}if(t&2){let e=EM(2);jM(e.cx("clearIcon")),zE("pBind",e.ptm("clearIcon"));}}function d3(t,a){t&1&&qE(0);}function p3(t,a){if(t&1){let e=hM();Bc$1(0,"span",5),cu$1("click",function(){Rm$1(e);let n=EM(2);return xm$1(n.clear())}),VE(1,d3,1,0,"ng-container",6),bp$1();}if(t&2){let e=EM(2);jM(e.cx("clearIcon")),zE("pBind",e.ptm("clearIcon")),n_(),zE("ngTemplateOutlet",e.clearIconTemplate());}}function u3(t,a){if(t&1&&rM(0,c3,1,3,":svg:svg",3)(1,p3,2,4,"span",2),t&2){let e=EM();oM(e.clearIconTemplate()?1:0);}}function m3(t,a){if(t&1&&au$1(0,"span",7),t&2){let e=EM(2);jM(e.incrementButtonIcon()),zE("pBind",e.ptm("incrementButtonIcon"));}}function f3(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",9)),t&2){let e=EM(3);zE("pBind",e.ptm("incrementButtonIcon"));}}function h3(t,a){t&1&&qE(0);}function g3(t,a){if(t&1&&VE(0,h3,1,0,"ng-container",6),t&2){let e=EM(3);zE("ngTemplateOutlet",e.incrementButtonIconTemplate());}}function b3(t,a){if(t&1&&rM(0,f3,1,1,":svg:svg",9)(1,g3,1,1,"ng-container"),t&2){let e=EM(2);oM(e.incrementButtonIconTemplate()?1:0);}}function _3(t,a){if(t&1&&au$1(0,"span",7),t&2){let e=EM(2);jM(e.decrementButtonIcon()),zE("pBind",e.ptm("decrementButtonIcon"));}}function y3(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",10)),t&2){let e=EM(3);zE("pBind",e.ptm("decrementButtonIcon"));}}function v3(t,a){t&1&&qE(0);}function x3(t,a){if(t&1&&VE(0,v3,1,0,"ng-container",6),t&2){let e=EM(3);zE("ngTemplateOutlet",e.decrementButtonIconTemplate());}}function C3(t,a){if(t&1&&rM(0,y3,1,1,":svg:svg",10)(1,x3,1,1,"ng-container"),t&2){let e=EM(2);oM(e.decrementButtonIconTemplate()?1:0);}}function M3(t,a){if(t&1){let e=hM();Bc$1(0,"span",7)(1,"button",8),cu$1("mousedown",function(n){Rm$1(e);let o=EM();return xm$1(o.onUpButtonMouseDown(n))})("mouseup",function(){Rm$1(e);let n=EM();return xm$1(n.onUpButtonMouseUp())})("mouseleave",function(){Rm$1(e);let n=EM();return xm$1(n.onUpButtonMouseLeave())})("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onUpButtonKeyDown(n))})("keyup",function(){Rm$1(e);let n=EM();return xm$1(n.onUpButtonKeyUp())}),rM(2,m3,1,3,"span",2)(3,b3,2,1),bp$1(),Bc$1(4,"button",8),cu$1("mousedown",function(n){Rm$1(e);let o=EM();return xm$1(o.onDownButtonMouseDown(n))})("mouseup",function(){Rm$1(e);let n=EM();return xm$1(n.onDownButtonMouseUp())})("mouseleave",function(){Rm$1(e);let n=EM();return xm$1(n.onDownButtonMouseLeave())})("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onDownButtonKeyDown(n))})("keyup",function(){Rm$1(e);let n=EM();return xm$1(n.onDownButtonKeyUp())}),rM(5,_3,1,3,"span",2)(6,C3,2,1),bp$1()();}if(t&2){let e=EM();jM(e.cx("buttonGroup")),zE("pBind",e.ptm("buttonGroup")),su$1("data-p",e.dataP),n_(),jM(e.cn(e.cx("incrementButton"),e.incrementButtonClass())),zE("pBind",e.ptm("incrementButton")),su$1("disabled",e.disabledAttr())("aria-hidden",true)("data-p",e.dataP),n_(),oM(e.hasIncrementButtonIcon()?2:3),n_(2),jM(e.cn(e.cx("decrementButton"),e.decrementButtonClass())),zE("pBind",e.ptm("decrementButton")),su$1("disabled",e.disabledAttr())("aria-hidden",true)("data-p",e.dataP),n_(),oM(e.hasDecrementButtonIcon()?5:6);}}function w3(t,a){if(t&1&&au$1(0,"span",7),t&2){let e=EM(2);jM(e.incrementButtonIcon()),zE("pBind",e.ptm("incrementButtonIcon"));}}function z3(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",9)),t&2){let e=EM(3);zE("pBind",e.ptm("incrementButtonIcon"));}}function k3(t,a){t&1&&qE(0);}function T3(t,a){if(t&1&&VE(0,k3,1,0,"ng-container",6),t&2){let e=EM(3);zE("ngTemplateOutlet",e.incrementButtonIconTemplate());}}function D3(t,a){if(t&1&&rM(0,z3,1,1,":svg:svg",9)(1,T3,1,1,"ng-container"),t&2){let e=EM(2);oM(e.incrementButtonIconTemplate()?1:0);}}function S3(t,a){if(t&1&&au$1(0,"span",7),t&2){let e=EM(2);jM(e.decrementButtonIcon()),zE("pBind",e.ptm("decrementButtonIcon"));}}function I3(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",10)),t&2){let e=EM(3);zE("pBind",e.ptm("decrementButtonIcon"));}}function E3(t,a){t&1&&qE(0);}function N3(t,a){if(t&1&&VE(0,E3,1,0,"ng-container",6),t&2){let e=EM(3);zE("ngTemplateOutlet",e.decrementButtonIconTemplate());}}function L3(t,a){if(t&1&&rM(0,I3,1,1,":svg:svg",10)(1,N3,1,1,"ng-container"),t&2){let e=EM(2);oM(e.decrementButtonIconTemplate()?1:0);}}function F3(t,a){if(t&1){let e=hM();Bc$1(0,"button",8),cu$1("mousedown",function(n){Rm$1(e);let o=EM();return xm$1(o.onUpButtonMouseDown(n))})("mouseup",function(){Rm$1(e);let n=EM();return xm$1(n.onUpButtonMouseUp())})("mouseleave",function(){Rm$1(e);let n=EM();return xm$1(n.onUpButtonMouseLeave())})("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onUpButtonKeyDown(n))})("keyup",function(){Rm$1(e);let n=EM();return xm$1(n.onUpButtonKeyUp())}),rM(1,w3,1,3,"span",2)(2,D3,2,1),bp$1(),Bc$1(3,"button",8),cu$1("mousedown",function(n){Rm$1(e);let o=EM();return xm$1(o.onDownButtonMouseDown(n))})("mouseup",function(){Rm$1(e);let n=EM();return xm$1(n.onDownButtonMouseUp())})("mouseleave",function(){Rm$1(e);let n=EM();return xm$1(n.onDownButtonMouseLeave())})("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onDownButtonKeyDown(n))})("keyup",function(){Rm$1(e);let n=EM();return xm$1(n.onDownButtonKeyUp())}),rM(4,S3,1,3,"span",2)(5,L3,2,1),bp$1();}if(t&2){let e=EM();jM(e.cn(e.cx("incrementButton"),e.incrementButtonClass())),zE("pBind",e.ptm("incrementButton")),su$1("disabled",e.disabledAttr())("aria-hidden",true)("data-p",e.dataP),n_(),oM(e.hasIncrementButtonIcon()?1:2),n_(2),jM(e.cn(e.cx("decrementButton"),e.decrementButtonClass())),zE("pBind",e.ptm("decrementButton")),su$1("disabled",e.disabledAttr())("aria-hidden",true)("data-p",e.dataP),n_(),oM(e.hasDecrementButtonIcon()?4:5);}}var O3={root:({instance:t})=>["p-inputnumber p-component p-inputwrapper",{"p-invalid":t.invalid(),"p-inputwrapper-filled":t.$filled()||t.allowEmpty()===false,"p-inputwrapper-focus":t.focused,"p-inputnumber-stacked":t.showButtons()&&t.buttonLayout()==="stacked","p-inputnumber-horizontal":t.showButtons()&&t.buttonLayout()==="horizontal","p-inputnumber-vertical":t.showButtons()&&t.buttonLayout()==="vertical","p-inputnumber-fluid":t.hasFluid}],pcInputText:"p-inputnumber-input",clearIcon:"p-inputnumber-clear-icon",buttonGroup:"p-inputnumber-button-group",incrementButton:({instance:t})=>["p-inputnumber-button p-inputnumber-increment-button",{"p-disabled":t.showButtons()&&t.max()!=null&&t.maxlength()}],decrementButton:({instance:t})=>["p-inputnumber-button p-inputnumber-decrement-button",{"p-disabled":t.showButtons()&&t.min()!=null&&t.minlength()}]},r2=(()=>{class t extends WI{name="inputnumber";style=l2;classes=O3;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var s2=new I$1("INPUTNUMBER_INSTANCE"),B3={provide:q4$1,useExisting:Ha$1(()=>qt),multi:true},qt=(()=>{class t extends Qr$1{componentName="InputNumber";$pcInputNumber=g(s2,{optional:true,skipSelf:true})??void 0;_componentStyle=g(r2);bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}showButtons=mu$1(false,{transform:yn});format=mu$1(true,{transform:yn});buttonLayout=mu$1("stacked");inputId=mu$1();placeholder=mu$1();tabindex=mu$1(void 0,{transform:Bp$1});title=mu$1();ariaLabelledBy=mu$1();ariaDescribedBy=mu$1();ariaLabel=mu$1();ariaRequired=mu$1(void 0,{transform:yn});autocomplete=mu$1();incrementButtonClass=mu$1();decrementButtonClass=mu$1();incrementButtonIcon=mu$1();decrementButtonIcon=mu$1();readonly=mu$1(void 0,{transform:yn});allowEmpty=mu$1(true,{transform:yn});locale=mu$1();localeMatcher=mu$1();mode=mu$1("decimal");currency=mu$1();currencyDisplay=mu$1();useGrouping=mu$1(true,{transform:yn});minFractionDigits=mu$1(void 0,{transform:e=>Bp$1(e,void 0)});maxFractionDigits=mu$1(void 0,{transform:e=>Bp$1(e,void 0)});prefix=mu$1();suffix=mu$1();inputStyle=mu$1();inputStyleClass=mu$1();showClear=mu$1(false,{transform:yn});autofocus=mu$1(void 0,{transform:yn});onInput=sz();onFocus=sz();onBlur=sz();onKeyDown=sz();onClear=sz();clearIconTemplate=uz("clearicon",{descendants:false});incrementButtonIconTemplate=uz("incrementbuttonicon",{descendants:false});decrementButtonIconTemplate=uz("decrementbuttonicon",{descendants:false});input=cz.required("input");requiredAttr=gs$1(()=>this.required()?"":void 0);readonlyAttr=gs$1(()=>this.readonly()?"":void 0);disabledAttr=gs$1(()=>this.$disabled()?"":void 0);get showClearIcon(){return this.buttonLayout()!=="vertical"&&this.showClear()&&this.value!=null}showStackedButtons=gs$1(()=>this.showButtons()&&this.buttonLayout()==="stacked");showNonStackedButtons=gs$1(()=>this.showButtons()&&this.buttonLayout()!=="stacked");hasIncrementButtonIcon=gs$1(()=>!!this.incrementButtonIcon());hasDecrementButtonIcon=gs$1(()=>!!this.decrementButtonIcon());parserConfig=gs$1(()=>({locale:this.locale(),localeMatcher:this.localeMatcher(),mode:this.mode(),currency:this.currency(),currencyDisplay:this.currencyDisplay(),useGrouping:this.useGrouping(),minFractionDigits:this.minFractionDigits(),maxFractionDigits:this.maxFractionDigits(),prefix:this.prefix(),suffix:this.suffix()}));constructor(){super(),Ui(()=>{this.parserConfig(),this.updateConstructParser();});}_injector=g(Ie);value;focused;initialized;groupChar="";prefixChar="";suffixChar="";isSpecialChar;timer=null;lastValue;_numeral=/./g;numberFormat=null;_decimal=/./g;_decimalChar="";_group=/./g;_minusSign=/./g;_currency;_prefix;_suffix;_index=()=>{};ngControl=null;onInit(){this.ngControl=this._injector.get(v2$1,null,{optional:true}),this.constructParser(),this.initialized=true;}getOptions(){let e=(r,u,M)=>{if(!(r==null||isNaN(r)||!isFinite(r)))return Math.max(u,Math.min(M,Math.floor(r)))},i=e(this.minFractionDigits(),0,20),n=e(this.maxFractionDigits(),0,100),o=i!=null&&n!=null&&i>n?n:i;return {localeMatcher:this.localeMatcher(),style:this.mode(),currency:this.currency(),currencyDisplay:this.currencyDisplay(),useGrouping:this.useGrouping(),minimumFractionDigits:o,maximumFractionDigits:n}}constructParser(){let e=this.getOptions(),i=Object.fromEntries(Object.entries(e).filter(([r,u])=>u!==void 0));this.numberFormat=new Intl.NumberFormat(this.locale(),i);let n=[...new Intl.NumberFormat(this.locale(),{useGrouping:false}).format(9876543210)].reverse(),o=new Map(n.map((r,u)=>[r,u]));this._numeral=new RegExp(`[${n.join("")}]`,"g"),this._group=this.getGroupingExpression(),this._minusSign=this.getMinusSignExpression(),this._currency=this.getCurrencyExpression(),this._decimal=this.getDecimalExpression(),this._decimalChar=this.getDecimalChar(),this._suffix=this.getSuffixExpression(),this._prefix=this.getPrefixExpression(),this._index=r=>o.get(r);}updateConstructParser(){this.initialized&&this.constructParser();}escapeRegExp(e){return e.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")}getDecimalExpression(){let e=this.getDecimalChar();return new RegExp(`[${e}]`,"g")}getDecimalChar(){return new Intl.NumberFormat(this.locale(),m(l$1({},this.getOptions()),{useGrouping:false})).format(1.1).replace(this._currency,"").trim().replace(this._numeral,"")}getGroupingExpression(){let e=new Intl.NumberFormat(this.locale(),{useGrouping:true});return this.groupChar=e.format(1e6).trim().replace(this._numeral,"").charAt(0),new RegExp(`[${this.groupChar}]`,"g")}getMinusSignExpression(){let e=new Intl.NumberFormat(this.locale(),{useGrouping:false});return new RegExp(`[${e.format(-1).trim().replace(this._numeral,"")}]`,"g")}getCurrencyExpression(){if(this.currency()){let e=new Intl.NumberFormat(this.locale(),{style:"currency",currency:this.currency(),currencyDisplay:this.currencyDisplay(),minimumFractionDigits:0,maximumFractionDigits:0});return new RegExp(`[${e.format(1).replace(/\s/g,"").replace(this._numeral,"").replace(this._group,"")}]`,"g")}return new RegExp("[]","g")}getPrefixExpression(){let e=this.prefix();if(e)this.prefixChar=e;else {let i=new Intl.NumberFormat(this.locale(),{style:this.mode(),currency:this.currency(),currencyDisplay:this.currencyDisplay()});this.prefixChar=i.format(1).split("1")[0];}return new RegExp(`${this.escapeRegExp(this.prefixChar||"")}`,"g")}getSuffixExpression(){let e=this.suffix();if(e)this.suffixChar=e;else {let i=new Intl.NumberFormat(this.locale(),{style:this.mode(),currency:this.currency(),currencyDisplay:this.currencyDisplay(),minimumFractionDigits:0,maximumFractionDigits:0});this.suffixChar=i.format(1).split("1")[1];}return new RegExp(`${this.escapeRegExp(this.suffixChar||"")}`,"g")}formatValue(e){if(e!=null){if(e==="-")return e;let i=this.prefix(),n=this.suffix();if(this.format()){let r=new Intl.NumberFormat(this.locale(),this.getOptions()).format(e);return i&&e!=i&&(r=i+r),n&&e!=n&&(r=r+n),r}return e.toString()}return ""}parseValue(e){let i=this._suffix?new RegExp(this._suffix,""):/(?:)/,n=this._prefix?new RegExp(this._prefix,""):/(?:)/,o=this._currency?new RegExp(this._currency,""):/(?:)/,r=e.replace(i,"").replace(n,"").trim().replace(/\s/g,"").replace(o,"").replace(this._group,"").replace(this._minusSign,"-").replace(this._decimal,".").replace(this._numeral,this._index);if(r){if(r==="-")return r;let u=+r;return isNaN(u)?null:u}return null}repeat(e,i,n){if(this.readonly())return;let o=i||500;this.clearTimer(),this.timer=setTimeout(()=>{this.repeat(e,40,n);},o),this.spin(e,n);}spin(e,i){let n=(this.step()??1)*i,o=this.parseValue(this.input()?.nativeElement.value)||0,r=this.validateValue(o+n),u=this.maxlength();u&&u=0;u--)if(this.isNumeralChar(o.charAt(u))){this.input().nativeElement.setSelectionRange(u,u);break}break;case "Tab":case "Enter":r=this.validateValue(this.parseValue(this.input().nativeElement.value)),this.input().nativeElement.value=this.formatValue(r),this.input().nativeElement.setAttribute("aria-valuenow",r),this.updateModel(e,r);break;case "Backspace":{if(e.preventDefault(),i===n){if(i==1&&this.prefix()||i==o.length&&this.suffix())break;let u=o.charAt(i-1),{decimalCharIndex:M,decimalCharIndexWithoutPrefix:z}=this.getDecimalCharIndexes(o);if(this.isNumeralChar(u)){let T=this.getDecimalLength(o);if(this._group.test(u))this._group.lastIndex=0,r=o.slice(0,i-2)+o.slice(i-1);else if(this._decimal.test(u))this._decimal.lastIndex=0,T?this.input()?.nativeElement.setSelectionRange(i-1,i-1):r=o.slice(0,i-1)+o.slice(i);else if(M>0&&i>M){let L=this.isDecimalMode()&&(this.minFractionDigits()||0)0?r:""):r=o.slice(0,i-1)+o.slice(i);}else this.mode()==="currency"&&this._currency&&u.search(this._currency)!=-1&&(r=o.slice(1));this.updateValue(e,r,null,"delete-single");}else r=this.deleteRange(o,i,n),this.updateValue(e,r,null,"delete-range");break}case "Delete":if(e.preventDefault(),i===n){if(i==0&&this.prefix()||i==o.length-1&&this.suffix())break;let u=o.charAt(i),{decimalCharIndex:M,decimalCharIndexWithoutPrefix:z}=this.getDecimalCharIndexes(o);if(this.isNumeralChar(u)){let T=this.getDecimalLength(o);if(this._group.test(u))this._group.lastIndex=0,r=o.slice(0,i)+o.slice(i+2);else if(this._decimal.test(u))this._decimal.lastIndex=0,T?this.input()?.nativeElement.setSelectionRange(i+1,i+1):r=o.slice(0,i)+o.slice(i+1);else if(M>0&&i>M){let L=this.isDecimalMode()&&(this.minFractionDigits()||0)0?r:""):r=o.slice(0,i)+o.slice(i+1);}this.updateValue(e,r,null,"delete-back-single");}else r=this.deleteRange(o,i,n),this.updateValue(e,r,null,"delete-range");break;case "Home":this.min()&&(this.updateModel(e,this.min()),e.preventDefault());break;case "End":this.max()&&(this.updateModel(e,this.max()),e.preventDefault());break;}this.onKeyDown.emit(e);}onInputKeyPress(e){if(this.readonly())return;let i=e.which||e.keyCode,n=String.fromCharCode(i),o=this.isDecimalSign(n),r=this.isMinusSign(n);i!=13&&e.preventDefault(),!o&&e.code==="NumpadDecimal"&&(o=true,n=this._decimalChar,i=n.charCodeAt(0));let{value:u,selectionStart:M,selectionEnd:z}=this.input().nativeElement,T=this.parseValue(u+n),L=T!=null?T.toString():"",K=u.substring(M,z),$=this.parseValue(K),G=$!=null?$.toString():"";if(M!==z&&G.length>0){this.insert(e,n,{isDecimalSign:o,isMinusSign:r});return}let j=this.maxlength();j&&L.length>j||(48<=i&&i<=57||r||o)&&this.insert(e,n,{isDecimalSign:o,isMinusSign:r});}onPaste(e){if(!this.$disabled()&&!this.readonly()){e.preventDefault();let i=(e.clipboardData||this.document.defaultView.clipboardData).getData("Text");if(this.inputId()==="integeronly"&&/[^\d-]/.test(i))return;if(i){this.maxlength()&&(i=i.toString().substring(0,this.maxlength()));let n=this.parseValue(i);n!=null&&this.insert(e,n.toString());}}}allowMinusSign(){let e=this.min();return e==null||e<0}isMinusSign(e){return this._minusSign.test(e)||e==="-"?(this._minusSign.lastIndex=0,true):false}isDecimalSign(e){return this._decimal.test(e)?(this._decimal.lastIndex=0,true):false}isDecimalMode(){return this.mode()==="decimal"}getDecimalCharIndexes(e){let i=e.search(this._decimal);this._decimal.lastIndex=0;let o=e.replace(this._prefix,"").trim().replace(/\s/g,"").replace(this._currency,"").search(this._decimal);return this._decimal.lastIndex=0,{decimalCharIndex:i,decimalCharIndexWithoutPrefix:o}}getCharIndexes(e){let i=e.search(this._decimal);this._decimal.lastIndex=0;let n=e.search(this._minusSign);this._minusSign.lastIndex=0;let o=e.search(this._suffix);this._suffix.lastIndex=0;let r=e.search(this._currency);return this._currency.lastIndex=0,{decimalCharIndex:i,minusCharIndex:n,suffixCharIndex:o,currencyCharIndex:r}}insert(e,i,n={isDecimalSign:false,isMinusSign:false}){let o=i.search(this._minusSign);if(this._minusSign.lastIndex=0,!this.allowMinusSign()&&o!==-1)return;let r=this.input()?.nativeElement.selectionStart??0,u=this.input()?.nativeElement.selectionEnd??0,M=this.input()?.nativeElement.value.trim(),{decimalCharIndex:z,minusCharIndex:T,suffixCharIndex:L,currencyCharIndex:K}=this.getCharIndexes(M),$;if(n.isMinusSign)r===0&&($=M,(T===-1||u!==0)&&($=this.insertText(M,i,0,u)),this.updateValue(e,$,i,"insert"));else if(n.isDecimalSign)z>0&&r===z?this.updateValue(e,M,i,"insert"):z>r&&z0&&r>z){if(r+i.length-(z+1)<=G){let Y=K>=r?K-1:L>=r?L:M.length;$=M.slice(0,r)+i+M.slice(r+i.length,Y)+M.slice(Y),this.updateValue(e,$,i,j);}}else $=this.insertText(M,i,r,u),this.updateValue(e,$,i,j);}}insertText(e,i,n,o){if((i==="."?i:i.split(".")).length===2){let u=e.slice(n,o).search(this._decimal);return this._decimal.lastIndex=0,u>0?e.slice(0,n)+this.formatValue(i)+e.slice(o):e||this.formatValue(i)}else return o-n===e.length?this.formatValue(i):n===0?i+e.slice(o):o===e.length?e.slice(0,n)+i:e.slice(0,n)+i+e.slice(o)}deleteRange(e,i,n){let o;return n-i===e.length?o="":i===0?o=e.slice(n):n===e.length?o=e.slice(0,i):o=e.slice(0,i)+e.slice(n),o}initCursor(){let e=this.input()?.nativeElement.selectionStart??0,i=this.input()?.nativeElement.selectionEnd??0,n=this.input()?.nativeElement.value,o=n.length,r=null,u=(this.prefixChar||"").length;n=n.replace(this._prefix,""),(e===i||e!==0||i=0;)if(M=n.charAt(z),this.isNumeralChar(M)){r=z+u;break}else z--;if(r!==null)this.input()?.nativeElement.setSelectionRange(r+1,r+1);else {for(z=e;zn?n:e}updateInput(e,i,n,o){i=i||"";let r=this.input()?.nativeElement.value,u=this.formatValue(e),M=r.length;if(u!==o&&(u=this.concatValues(u,o)),M===0){this.input().nativeElement.value=u,this.input().nativeElement.setSelectionRange(0,0);let T=this.initCursor()+i.length;this.input().nativeElement.setSelectionRange(T,T);}else {let z=this.input().nativeElement.selectionStart??0,T=this.input().nativeElement.selectionEnd??0,L=this.maxlength();if(L&&u.length>L&&(u=u.slice(0,L),z=Math.min(z,L),T=Math.min(T,L)),L&&L{class t{static \u0275fac=function(i){return new(i||t)};static \u0275mod=mn({type:t});static \u0275inj=$t({imports:[qt,iq,iq]})}return t})();var P3=(t,a)=>a[1].key||t;function R3(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function A3(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function H3(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function $3(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function G3(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function U3(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function K3(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function q3(t,a){if(t&1&&rM(0,R3,1,9,":svg:path")(1,A3,1,6,":svg:circle")(2,H3,1,9,":svg:rect")(3,$3,1,7,":svg:line")(4,G3,1,4,":svg:polyline")(5,U3,1,4,":svg:polygon")(6,K3,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var F1=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$4;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","chevron-down"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,q3,7,1,null,null,P3),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var j3=(t,a)=>a[1].key||t;function W3(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Y3(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Z3(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Q3(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function X3(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function J3(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function er(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function tr(t,a){if(t&1&&rM(0,W3,1,9,":svg:path")(1,Y3,1,6,":svg:circle")(2,Z3,1,9,":svg:rect")(3,Q3,1,7,":svg:line")(4,X3,1,4,":svg:polyline")(5,J3,1,4,":svg:polygon")(6,er,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var c2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$3;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","search"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,tr,7,1,null,null,j3),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var d2=["content"],ir=["item"],nr=["loader"],or=["loadericon"],ar=["element"],lr=["*"];function rr(t,a){return this._trackBy()?this._trackBy()(t,a):t}function sr(t,a){t&1&&qE(0);}function cr(t,a){if(t&1&&VE(0,sr,1,0,"ng-container",6),t&2){let e=EM(2);zE("ngTemplateOutlet",e.contentTemplate())("ngTemplateOutletContext",e.getContentTemplateContext());}}function dr(t,a){t&1&&qE(0);}function pr(t,a){if(t&1&&VE(0,dr,1,0,"ng-container",6),t&2){let e=a.$implicit,i=a.$index,n=EM(3);zE("ngTemplateOutlet",n.itemTemplate())("ngTemplateOutletContext",n.getItemTemplateContext(e,i));}}function ur(t,a){if(t&1&&(Bc$1(0,"div",7,1),aM(2,pr,1,2,"ng-container",null,rr,true),bp$1()),t&2){let e=EM(2);PM(e.contentStyle),jM(e.cn(e.cx("content"),e.contentStyleClass())),zE("pBind",e.ptm("content")),n_(2),cM(e.loadedItems);}}function mr(t,a){if(t&1&&au$1(0,"div",7),t&2){let e=EM(2);PM(e.spacerStyle),jM(e.cx("spacer")),zE("pBind",e.ptm("spacer"));}}function fr(t,a){t&1&&qE(0);}function hr(t,a){if(t&1&&VE(0,fr,1,0,"ng-container",6),t&2){let e=a.$index,i=EM(4);zE("ngTemplateOutlet",i.loaderTemplate())("ngTemplateOutletContext",i.getLoaderTemplateContext(e));}}function gr(t,a){if(t&1&&aM(0,hr,1,2,"ng-container",null,iM),t&2){let e=EM(3);cM(e.loaderArr);}}function br(t,a){t&1&&qE(0);}function _r(t,a){if(t&1&&VE(0,br,1,0,"ng-container",6),t&2){let e=EM(4);zE("ngTemplateOutlet",e.loaderIconTemplate())("ngTemplateOutletContext",e.loaderIconContext);}}function yr(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",9)),t&2){let e=EM(4);jM(e.cn(e.cx("loadingIcon"),"animate-spin")),zE("pBind",e.ptm("loadingIcon"));}}function vr(t,a){if(t&1&&rM(0,_r,1,2,"ng-container")(1,yr,1,3,":svg:svg",8),t&2){let e=EM(3);oM(e.loaderIconTemplate()?0:1);}}function xr(t,a){if(t&1&&(Bc$1(0,"div",7),rM(1,gr,2,0)(2,vr,2,1),bp$1()),t&2){let e=EM(2);jM(e.cx("loader")),zE("pBind",e.ptm("loader")),n_(),oM(e.loaderTemplate()?1:2);}}function Cr(t,a){if(t&1){let e=hM();Bc$1(0,"div",3,0),cu$1("scroll",function(n){Rm$1(e);let o=EM();return xm$1(o.onContainerScroll(n))}),rM(2,cr,1,2,"ng-container")(3,ur,4,5,"div",4),rM(4,mr,1,5,"div",4),rM(5,xr,3,4,"div",5),bp$1();}if(t&2){let e=EM();PM(e._style()),jM(e.cn(e.cx("root"),e._styleClass())),zE("pBind",e.ptm("root")),su$1("id",e._id())("tabindex",e._tabindex()),n_(2),oM(e.contentTemplate()?2:3),n_(2),oM(e._showSpacer()?4:-1),n_(),oM(!e._loaderDisabled()&&e._showLoader()&&e.d_loading?5:-1);}}function Mr(t,a){t&1&&qE(0);}function wr(t,a){if(t&1&&VE(0,Mr,1,0,"ng-container",6),t&2){let e=EM(2);zE("ngTemplateOutlet",e.contentTemplate())("ngTemplateOutletContext",e.getDisabledContentTemplateContext());}}function zr(t,a){if(t&1&&(lu$1(0),rM(1,wr,1,2,"ng-container")),t&2){let e=EM();n_(),oM(e.contentTemplate()?1:-1);}}var kr=` +.p-virtualscroller { + position: relative; + overflow: auto; + contain: strict; + transform: translateZ(0); + will-change: scroll-position; + outline: 0 none; +} + +.p-virtualscroller-content { + position: absolute; + top: 0; + left: 0; + min-height: 100%; + min-width: 100%; + will-change: transform; +} + +.p-virtualscroller-spacer { + position: absolute; + top: 0; + left: 0; + height: 1px; + width: 1px; + transform-origin: 0 0; + pointer-events: none; +} + +.p-virtualscroller-loader { + position: sticky; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: dt('virtualscroller.loader.mask.background'); + color: dt('virtualscroller.loader.mask.color'); +} + +.p-virtualscroller-loader-mask { + display: flex; + align-items: center; + justify-content: center; +} + +.p-virtualscroller-loading-icon { + font-size: dt('virtualscroller.loader.icon.size'); + width: dt('virtualscroller.loader.icon.size'); + height: dt('virtualscroller.loader.icon.size'); +} + +.p-virtualscroller-horizontal > .p-virtualscroller-content { + display: flex; +} + +.p-virtualscroller-inline .p-virtualscroller-content { + position: static; +} +`,Tr={root:({instance:t})=>["p-virtualscroller",{"p-virtualscroller-inline":t.inline(),"p-virtualscroller-both p-both-scroll":t.both(),"p-virtualscroller-horizontal p-horizontal-scroll":t.horizontal()}],content:"p-virtualscroller-content",spacer:"p-virtualscroller-spacer",loader:({instance:t})=>["p-virtualscroller-loader",{"p-virtualscroller-loader-mask":!t.loaderTemplate()}],loadingIcon:"p-virtualscroller-loading-icon"},p2=(()=>{class t extends WI{name="virtualscroller";css=kr;classes=Tr;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var u2=new I$1("SCROLLER_INSTANCE"),u1=(()=>{class t extends I{componentName="VirtualScroller";bindDirectiveInstance=g(L,{self:true});$pcScroller=g(u2,{optional:true,skipSelf:true})??void 0;hostName=mu$1("");id=mu$1();style=mu$1();styleClass=mu$1();tabindex=mu$1(0);items=mu$1();itemSize=mu$1(0);scrollHeight=mu$1();scrollWidth=mu$1();orientation=mu$1("vertical");step=mu$1(0);delay=mu$1(0);resizeDelay=mu$1(10);appendOnly=mu$1(false);inline=mu$1(false);lazy=mu$1(false);disabled=mu$1(false);loaderDisabled=mu$1(false);columns=mu$1();showSpacer=mu$1(true);showLoader=mu$1(false);numToleratedItems=mu$1();loading=mu$1();autoSize=mu$1(false);trackBy=mu$1();options=mu$1();_id=gs$1(()=>this.options()?.id??this.id());_style=gs$1(()=>this.options()?.style??this.style());_styleClass=gs$1(()=>this.options()?.styleClass??this.styleClass());_tabindex=gs$1(()=>this.options()?.tabindex??this.tabindex());_items=gs$1(()=>this.options()?.items??this.items());_itemSize=gs$1(()=>this.options()?.itemSize??this.itemSize());_scrollHeight=gs$1(()=>this.options()?.scrollHeight??this.scrollHeight());_scrollWidth=gs$1(()=>this.options()?.scrollWidth??this.scrollWidth());_orientation=gs$1(()=>this.options()?.orientation??this.orientation());_step=gs$1(()=>this.options()?.step??this.step());_delay=gs$1(()=>this.options()?.delay??this.delay());_resizeDelay=gs$1(()=>this.options()?.resizeDelay??this.resizeDelay());_appendOnly=gs$1(()=>this.options()?.appendOnly??this.appendOnly());_inline=gs$1(()=>this.options()?.inline??this.inline());_lazy=gs$1(()=>this.options()?.lazy??this.lazy());_disabled=gs$1(()=>this.options()?.disabled??this.disabled());_loaderDisabled=gs$1(()=>this.options()?.loaderDisabled??this.loaderDisabled());_columns=gs$1(()=>this.options()?.columns??this.columns());_showSpacer=gs$1(()=>this.options()?.showSpacer??this.showSpacer());_showLoader=gs$1(()=>this.options()?.showLoader??this.showLoader());_numToleratedItems=gs$1(()=>this.options()?.numToleratedItems??this.numToleratedItems());_loading=gs$1(()=>this.options()?.loading??this.loading());_autoSize=gs$1(()=>this.options()?.autoSize??this.autoSize());_trackBy=gs$1(()=>this.options()?.trackBy??this.trackBy());contentStyleClass=gs$1(()=>this.options()?.contentStyleClass);onLazyLoad=sz();onScroll=sz();onScrollIndexChange=sz();elementViewChild=cz("element");contentViewChild=cz("content");hostHeight=U(void 0);contentTemplate=uz("content",{descendants:false});itemTemplate=uz("item",{descendants:false});loaderTemplate=uz("loader",{descendants:false});loaderIconTemplate=uz("loadericon",{descendants:false});d_loading=false;d_numToleratedItems;contentEl;vertical=gs$1(()=>this._orientation()==="vertical");horizontal=gs$1(()=>this._orientation()==="horizontal");both=gs$1(()=>this._orientation()==="both");get loadedItems(){let e=this._items();return e&&!this.d_loading?this.both()?e.slice(this._appendOnly()?0:this.first.rows,this.last.rows).map(i=>this._columns()?i:Array.isArray(i)?i.slice(this._appendOnly()?0:this.first.cols,this.last.cols):i):this.horizontal()&&this._columns()?e:e.slice(this._appendOnly()?0:this.first,this.last):[]}get loadedRows(){return this.d_loading?this._loaderDisabled()?this.loaderArr:[]:this.loadedItems}get loadedColumns(){let e=this._columns();return e&&(this.both()||this.horizontal())?this.d_loading&&this._loaderDisabled()?this.both()?this.loaderArr[0]:this.loaderArr:e.slice(this.both()?this.first.cols:this.first,this.both()?this.last.cols:this.last):e}first=0;last=0;page=0;isRangeChanged=false;numItemsInViewport=0;lastScrollPos=0;lazyLoadState={};loaderArr=[];spacerStyle;contentStyle;scrollTimeout;resizeTimeout;_destroyed=false;initialized=false;windowResizeListener;defaultWidth;defaultHeight;defaultContentWidth;defaultContentHeight;_componentStyle=g(p2);constructor(){super(),Ui(()=>{this._scrollHeight()==="100%"&&this.hostHeight.set("100%");}),Ui(()=>{let e=this._loading();J(()=>{this._lazy()&&e!==void 0&&e!==this.d_loading&&(this.d_loading=e);});}),Ui(()=>{this._orientation(),J(()=>{this.lastScrollPos=this.both()?{top:0,left:0}:0;});}),Ui(()=>{let e=this._numToleratedItems();J(()=>{e!==void 0&&e!==this.d_numToleratedItems&&(this.d_numToleratedItems=e);});}),Ui(()=>{this._itemSize(),this._scrollHeight(),this._scrollWidth(),J(()=>{this.initialized&&(this.init(),this.calculateAutoSize());});}),Ui(()=>{this._items(),J(()=>{this.initialized&&!this._lazy()&&this.init();});}),Ui(()=>{let e=this.options();J(()=>{e?.contentStyle!==void 0&&(this.contentStyle=e.contentStyle);});});}onInit(){this.setInitialState();}onAfterViewInit(){Promise.resolve().then(()=>{this.viewInit();});}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("host")),this.initialized||this.viewInit();}onDestroy(){this._destroyed=true,this.unbindResizeListener(),this.scrollTimeout&&clearTimeout(this.scrollTimeout),this.resizeTimeout&&clearTimeout(this.resizeTimeout),this.contentEl=null,this.initialized=false;}viewInit(){BG(this.platformId)&&!this.initialized&&U4$1(this.elementViewChild()?.nativeElement)&&(this.setInitialState(),this.setContentEl(this.contentEl),this.init(),this.defaultWidth=F4$1(this.elementViewChild()?.nativeElement),this.defaultHeight=x4$1(this.elementViewChild()?.nativeElement),this.defaultContentWidth=F4$1(this.contentEl),this.defaultContentHeight=x4$1(this.contentEl),this.initialized=true);}init(){this._disabled()||(this.bindResizeListener(),setTimeout(()=>{this.setSpacerSize(),this.setSize(),this.calculateOptions(),this.calculateAutoSize(),this.cd.detectChanges();},1));}setContentEl(e){this.contentEl=e||this.contentViewChild()?.nativeElement||M4$1(this.elementViewChild()?.nativeElement,".p-virtualscroller-content");}setInitialState(){this.first=this.both()?{rows:0,cols:0}:0,this.last=this.both()?{rows:0,cols:0}:0,this.numItemsInViewport=this.both()?{rows:0,cols:0}:0,this.lastScrollPos=this.both()?{top:0,left:0}:0,(this.d_loading===void 0||this.d_loading===false)&&(this.d_loading=this._loading()||false),this.d_numToleratedItems=this._numToleratedItems(),this.loaderArr=this.loaderArr.length>0?this.loaderArr:[];}getElementRef(){return this.elementViewChild()}getPageByFirst(e){return Math.floor(((e??this.first)+this.d_numToleratedItems*4)/(this._step()||1))}isPageChanged(e){return this._step()?this.page!==this.getPageByFirst(e??this.first):true}scrollTo(e){this.elementViewChild()?.nativeElement?.scrollTo(e);}scrollToIndex(e,i="auto"){if(this.both()?e.every(o=>o>-1):e>-1){let o=this.first,{scrollTop:r=0,scrollLeft:u=0}=this.elementViewChild()?.nativeElement,{numToleratedItems:M}=this.calculateNumItems(),z=this.getContentPosition(),T=this._itemSize(),L=(_e=0,Me)=>_e<=Me?0:_e,K=(_e,Me,Ee)=>_e*Me+Ee,$=(_e=0,Me=0)=>this.scrollTo({left:_e,top:Me,behavior:i}),G=this.both()?{rows:0,cols:0}:0,j=false,Y=false;this.both()?(G={rows:L(e[0],M[0]),cols:L(e[1],M[1])},$(K(G.cols,T[1],z.left),K(G.rows,T[0],z.top)),Y=this.lastScrollPos.top!==r||this.lastScrollPos.left!==u,j=G.rows!==o.rows||G.cols!==o.cols):(G=L(e,M),this.horizontal()?$(K(G,T,z.left),r):$(u,K(G,T,z.top)),Y=this.lastScrollPos!==(this.horizontal()?u:r),j=G!==o),this.isRangeChanged=j,Y&&(this.first=G);}}scrollInView(e,i,n="auto"){if(i){let{first:o,viewport:r}=this.getRenderedRange(),u=(T=0,L=0)=>this.scrollTo({left:T,top:L,behavior:n}),M=i==="to-start",z=i==="to-end";if(M){if(this.both())r.first.rows-o.rows>e[0]?u(r.first.cols*this._itemSize()[1],(r.first.rows-1)*this._itemSize()[0]):r.first.cols-o.cols>e[1]&&u((r.first.cols-1)*this._itemSize()[1],r.first.rows*this._itemSize()[0]);else if(r.first-o>e){let T=(r.first-1)*this._itemSize();this.horizontal()?u(T,0):u(0,T);}}else if(z){if(this.both())r.last.rows-o.rows<=e[0]+1?u(r.first.cols*this._itemSize()[1],(r.first.rows+1)*this._itemSize()[0]):r.last.cols-o.cols<=e[1]+1&&u((r.first.cols+1)*this._itemSize()[1],r.first.rows*this._itemSize()[0]);else if(r.last-o<=e+1){let T=(r.first+1)*this._itemSize();this.horizontal()?u(T,0):u(0,T);}}}else this.scrollToIndex(e,n);}getRenderedRange(){let e=(r,u)=>u||r?Math.floor(r/(u||r)):0,i=this.first,n=0,o=this.elementViewChild()?.nativeElement;if(o){let{scrollTop:r,scrollLeft:u}=o;if(this.both())i={rows:e(r,this._itemSize()[0]),cols:e(u,this._itemSize()[1])},n={rows:i.rows+this.numItemsInViewport.rows,cols:i.cols+this.numItemsInViewport.cols};else {let M=this.horizontal()?u:r;i=e(M,this._itemSize()),n=i+this.numItemsInViewport;}}return {first:this.first,last:this.last,viewport:{first:i,last:n}}}calculateNumItems(){let e=this.getContentPosition(),i=this.elementViewChild()?.nativeElement,n=(i?i.offsetWidth-e.left:0)||0,o=(i?i.offsetHeight-e.top:0)||0,r=(T,L)=>L||T?Math.ceil(T/(L||T)):0,u=T=>Math.ceil(T/2),M=this.both()?{rows:r(o,this._itemSize()[0]),cols:r(n,this._itemSize()[1])}:r(this.horizontal()?n:o,this._itemSize()),z=this.d_numToleratedItems||(this.both()?[u(M.rows),u(M.cols)]:u(M));return {numItemsInViewport:M,numToleratedItems:z}}calculateOptions(){let{numItemsInViewport:e,numToleratedItems:i}=this.calculateNumItems(),n=(u,M,z,T=false)=>this.getLast(u+M+(uArray.from({length:e.cols})):Array.from({length:e})),this._lazy()&&Promise.resolve().then(()=>{this.lazyLoadState={first:this._step()?this.both()?{rows:0,cols:o.cols}:0:o,last:Math.min(this._step()?this._step():this.last,this._items().length)},this.handleEvents("onLazyLoad",this.lazyLoadState);});}calculateAutoSize(){this._autoSize()&&!this.d_loading&&Promise.resolve().then(()=>{if(this.contentEl){this.contentEl.style.minHeight=this.contentEl.style.minWidth="auto",this.contentEl.style.position="relative",this.elementViewChild().nativeElement.style.contain="none";let[e,i]=[F4$1(this.contentEl),x4$1(this.contentEl)];e!==this.defaultContentWidth&&(this.elementViewChild().nativeElement.style.width=""),i!==this.defaultContentHeight&&(this.elementViewChild().nativeElement.style.height="");let[n,o]=[F4$1(this.elementViewChild().nativeElement),x4$1(this.elementViewChild().nativeElement)];(this.both()||this.horizontal())&&(this.elementViewChild().nativeElement.style.width=ne.style[L]=K;this.both()||this.horizontal()?(T("height",z),T("width",r)):T("height",z);}}setSpacerSize(){let e=this._items();if(e){let i=this.getContentPosition(),n=(o,r,u,M=0)=>this.spacerStyle=m(l$1({},this.spacerStyle),{[`${o}`]:(r||[]).length*u+M+"px"});this.both()?(n("height",e,this._itemSize()[0],i.y),n("width",this._columns()||e[1],this._itemSize()[1],i.x)):this.horizontal()?n("width",this._columns()||e,this._itemSize(),i.x):n("height",e,this._itemSize(),i.y);}}setContentPosition(e){if(this.contentEl&&!this._appendOnly()){let i=e?e.first:this.first,n=(r,u)=>r*u,o=(r=0,u=0)=>this.contentStyle=m(l$1({},this.contentStyle),{transform:`translate3d(${r}px, ${u}px, 0)`});if(this.both())o(n(i.cols,this._itemSize()[1]),n(i.rows,this._itemSize()[0]));else {let r=n(i,this._itemSize());this.horizontal()?o(r,0):o(0,r);}}}onScrollPositionChange(e){let i=e.target;if(!i)throw new Error("Event target is null");let n=this.getContentPosition(),o=(Y,_e)=>Y?Y>_e?Y-_e:Y:0,r=(Y,_e)=>_e||Y?Math.floor(Y/(_e||Y)):0,u=(Y,_e,Me,Ee,Ae,Ye)=>Y<=Ae?Ae:Ye?Me-Ee-Ae:_e+Ae-1,M=(Y,_e,Me,Ee,Ae,Ye,nt)=>Y<=Ye?0:Math.max(0,nt?Y<_e?Me:Y-Ye:Y>_e?Me:Y-2*Ye),z=(Y,_e,Me,Ee,Ae,Ye=false)=>{let nt=_e+Ee+2*Ae;return Y>=Ae&&(nt+=Ae+1),this.getLast(nt,Ye)},T=o(i.scrollTop,n.top),L=o(i.scrollLeft,n.left),K=this.both()?{rows:0,cols:0}:0,$=this.last,G=false,j=this.lastScrollPos;if(this.both()){let Y=this.lastScrollPos.top<=T,_e=this.lastScrollPos.left<=L;if(!this._appendOnly()||this._appendOnly()&&(Y||_e)){let Me={rows:r(T,this._itemSize()[0]),cols:r(L,this._itemSize()[1])},Ee={rows:u(Me.rows,this.first.rows,this.last.rows,this.numItemsInViewport.rows,this.d_numToleratedItems[0],Y),cols:u(Me.cols,this.first.cols,this.last.cols,this.numItemsInViewport.cols,this.d_numToleratedItems[1],_e)};K={rows:M(Me.rows,Ee.rows,this.first.rows,this.last.rows,this.numItemsInViewport.rows,this.d_numToleratedItems[0],Y),cols:M(Me.cols,Ee.cols,this.first.cols,this.last.cols,this.numItemsInViewport.cols,this.d_numToleratedItems[1],_e)},$={rows:z(Me.rows,K.rows,this.last.rows,this.numItemsInViewport.rows,this.d_numToleratedItems[0]),cols:z(Me.cols,K.cols,this.last.cols,this.numItemsInViewport.cols,this.d_numToleratedItems[1],true)},G=K.rows!==this.first.rows||$.rows!==this.last.rows||K.cols!==this.first.cols||$.cols!==this.last.cols||this.isRangeChanged,j={top:T,left:L};}}else {let Y=this.horizontal()?L:T,_e=this.lastScrollPos<=Y;if(!this._appendOnly()||this._appendOnly()&&_e){let Me=r(Y,this._itemSize()),Ee=u(Me,this.first,this.last,this.numItemsInViewport,this.d_numToleratedItems,_e);K=M(Me,Ee,this.first,this.last,this.numItemsInViewport,this.d_numToleratedItems,_e),$=z(Me,K,this.last,this.numItemsInViewport,this.d_numToleratedItems),G=K!==this.first||$!==this.last||this.isRangeChanged,j=Y;}}return {first:K,last:$,isRangeChanged:G,scrollPos:j}}onScrollChange(e){let{first:i,last:n,isRangeChanged:o,scrollPos:r}=this.onScrollPositionChange(e);if(o){let u={first:i,last:n};if(this.setContentPosition(u),this.first=i,this.last=n,this.lastScrollPos=r,this.handleEvents("onScrollIndexChange",u),this._lazy()&&this.isPageChanged(i)){let M={first:this._step()?Math.min(this.getPageByFirst(i)*this._step(),this._items().length-this._step()):i,last:Math.min(this._step()?(this.getPageByFirst(i)+1)*this._step():n,this._items().length)};(this.lazyLoadState.first!==M.first||this.lazyLoadState.last!==M.last)&&this.handleEvents("onLazyLoad",M),this.lazyLoadState=M;}}}onContainerScroll(e){if(this.handleEvents("onScroll",{originalEvent:e}),this._delay()){if(this.scrollTimeout&&clearTimeout(this.scrollTimeout),!this.d_loading&&this._showLoader()){let{isRangeChanged:i}=this.onScrollPositionChange(e);(i||this._step()&&this.isPageChanged())&&(this.d_loading=true,this.cd.detectChanges());}this.scrollTimeout=setTimeout(()=>{this.onScrollChange(e),this.d_loading&&this._showLoader()&&(!this._lazy()||this._loading()===void 0)&&(this.d_loading=false,this.page=this.getPageByFirst()),this.cd.detectChanges();},this._delay());}else !this.d_loading&&this.onScrollChange(e);}bindResizeListener(){if(BG(this.platformId)&&!this.windowResizeListener){let e=this.document.defaultView,i=H4$1()?"orientationchange":"resize";this.windowResizeListener=this.renderer.listen(e,i,this.onWindowResize.bind(this));}}unbindResizeListener(){this.windowResizeListener&&(this.windowResizeListener(),this.windowResizeListener=null);}onWindowResize(){this.resizeTimeout&&clearTimeout(this.resizeTimeout),this.resizeTimeout=setTimeout(()=>{if(U4$1(this.elementViewChild()?.nativeElement)){let[e,i]=[F4$1(this.elementViewChild()?.nativeElement),x4$1(this.elementViewChild()?.nativeElement)],[n,o]=[e!==this.defaultWidth,i!==this.defaultHeight];(this.both()?n||o:this.horizontal()?n:this.vertical()&&o)&&(this.d_numToleratedItems=this._numToleratedItems(),this.defaultWidth=e,this.defaultHeight=i,this.defaultContentWidth=F4$1(this.contentEl),this.defaultContentHeight=x4$1(this.contentEl),this.init());}},this._resizeDelay());}handleEvents(e,i){if(this._destroyed)return;let n=this.options();return n&&n[e]?n[e](i):this[e].emit(i)}loaderIconContext={options:{styleClass:"p-virtualscroller-loading-icon"}};getContentTemplateContext(){return {$implicit:this.loadedItems,options:this.getContentOptions()}}getItemTemplateContext(e,i){return {$implicit:e,options:this.getOptions(i)}}getLoaderTemplateContext(e){return {options:this.getLoaderOptions(e,this.both()&&{numCols:this.numItemsInViewport.cols})}}getDisabledContentTemplateContext(){return {$implicit:this.items(),options:{rows:this._items(),columns:this.loadedColumns}}}getContentOptions(){return {contentStyleClass:`p-virtualscroller-content ${this.d_loading?"p-virtualscroller-loading":""}`,items:this.loadedItems,getItemOptions:e=>this.getOptions(e),loading:this.d_loading,getLoaderOptions:(e,i)=>this.getLoaderOptions(e,i),itemSize:this._itemSize(),rows:this.loadedRows,columns:this.loadedColumns,spacerStyle:this.spacerStyle,contentStyle:this.contentStyle,vertical:this.vertical(),horizontal:this.horizontal(),both:this.both(),scrollTo:this.scrollTo.bind(this),scrollToIndex:this.scrollToIndex.bind(this),orientation:this._orientation(),scrollableElement:this.elementViewChild()?.nativeElement}}getOptions(e){let i=(this._items()||[]).length,n=this.both()?this.first.rows+e:this.first+e;return {index:n,count:i,first:n===0,last:n===i-1,even:n%2===0,odd:n%2!==0}}getLoaderOptions(e,i){let n=this.loaderArr.length;return l$1({index:e,count:n,first:e===0,last:e===n-1,even:e%2===0,odd:e%2!==0,loading:this.d_loading},i)}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-scroller"],["p-virtualscroller"],["p-virtual-scroller"]],contentQueries:function(i,n,o){i&1&&QE(o,n.contentTemplate,d2,4)(o,n.itemTemplate,ir,4)(o,n.loaderTemplate,nr,4)(o,n.loaderIconTemplate,or,4),i&2&&IM(4);},viewQuery:function(i,n){i&1&&XE(n.elementViewChild,ar,5)(n.contentViewChild,d2,5),i&2&&IM(2);},hostVars:2,hostBindings:function(i,n){i&2&&fu$1("height",n.hostHeight());},inputs:{hostName:[1,"hostName"],id:[1,"id"],style:[1,"style"],styleClass:[1,"styleClass"],tabindex:[1,"tabindex"],items:[1,"items"],itemSize:[1,"itemSize"],scrollHeight:[1,"scrollHeight"],scrollWidth:[1,"scrollWidth"],orientation:[1,"orientation"],step:[1,"step"],delay:[1,"delay"],resizeDelay:[1,"resizeDelay"],appendOnly:[1,"appendOnly"],inline:[1,"inline"],lazy:[1,"lazy"],disabled:[1,"disabled"],loaderDisabled:[1,"loaderDisabled"],columns:[1,"columns"],showSpacer:[1,"showSpacer"],showLoader:[1,"showLoader"],numToleratedItems:[1,"numToleratedItems"],loading:[1,"loading"],autoSize:[1,"autoSize"],trackBy:[1,"trackBy"],options:[1,"options"]},outputs:{onLazyLoad:"onLazyLoad",onScroll:"onScroll",onScrollIndexChange:"onScrollIndexChange"},features:[nN([p2,{provide:u2,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:lr,decls:2,vars:1,consts:[["element",""],["content",""],[3,"style","class","pBind"],[3,"scroll","pBind"],[3,"class","style","pBind"],[3,"class","pBind"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"pBind"],["data-p-icon","spinner",3,"class","pBind"],["data-p-icon","spinner",3,"pBind"]],template:function(i,n){i&1&&(uu$1(),rM(0,Cr,6,10,"div",2)(1,zr,2,1)),i&2&&oM(n._disabled()?1:0);},dependencies:[cA,Q8$1,L],encapsulation:2,changeDetection:1})}return t})(),ri=(()=>{class t{static \u0275fac=function(i){return new(i||t)};static \u0275mod=mn({type:t});static \u0275inj=$t({imports:[u1]})}return t})();var Sr=(t,a)=>a[1].key||t;function Ir(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Er(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Nr(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Lr(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Fr(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Or(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Br(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Vr(t,a){if(t&1&&rM(0,Ir,1,9,":svg:path")(1,Er,1,6,":svg:circle")(2,Nr,1,9,":svg:rect")(3,Lr,1,7,":svg:line")(4,Fr,1,4,":svg:polyline")(5,Or,1,4,":svg:polygon")(6,Br,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var O1=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$2;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","check"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,Vr,7,1,null,null,Sr),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var Pr=(t,a)=>a[1].key||t;function Rr(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Ar(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Hr(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function $r(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Gr(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Ur(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Kr(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function qr(t,a){if(t&1&&rM(0,Rr,1,9,":svg:path")(1,Ar,1,6,":svg:circle")(2,Hr,1,9,":svg:rect")(3,$r,1,7,":svg:line")(4,Gr,1,4,":svg:polyline")(5,Ur,1,4,":svg:polygon")(6,Kr,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var m2=(()=>{class t extends M4$2{constructor(){super(),this._icon=t$2;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","blank"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,qr,7,1,null,null,Pr),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var f2=` + .p-select { + display: inline-flex; + cursor: pointer; + position: relative; + user-select: none; + background: dt('select.background'); + border: 1px solid dt('select.border.color'); + transition: + background dt('select.transition.duration'), + color dt('select.transition.duration'), + border-color dt('select.transition.duration'), + outline-color dt('select.transition.duration'), + box-shadow dt('select.transition.duration'); + border-radius: dt('select.border.radius'); + outline-color: transparent; + box-shadow: dt('select.shadow'); + } + + .p-select:not(.p-disabled):hover { + border-color: dt('select.hover.border.color'); + } + + .p-select:not(.p-disabled).p-focus { + border-color: dt('select.focus.border.color'); + box-shadow: dt('select.focus.ring.shadow'); + outline: dt('select.focus.ring.width') dt('select.focus.ring.style') dt('select.focus.ring.color'); + outline-offset: dt('select.focus.ring.offset'); + } + + .p-select.p-variant-filled { + background: dt('select.filled.background'); + } + + .p-select.p-variant-filled:not(.p-disabled):hover { + background: dt('select.filled.hover.background'); + } + + .p-select.p-variant-filled:not(.p-disabled).p-focus { + background: dt('select.filled.focus.background'); + } + + .p-select.p-invalid { + border-color: dt('select.invalid.border.color'); + } + + .p-select.p-disabled { + opacity: 1; + background: dt('select.disabled.background'); + } + + .p-select-clear-icon { + align-self: center; + color: dt('select.clear.icon.color'); + inset-inline-end: dt('select.dropdown.width'); + } + + .p-select-dropdown { + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 0; + background: transparent; + color: dt('select.dropdown.color'); + width: dt('select.dropdown.width'); + border-start-end-radius: dt('select.border.radius'); + border-end-end-radius: dt('select.border.radius'); + } + + .p-select-label { + display: block; + white-space: nowrap; + overflow: hidden; + flex: 1 1 auto; + width: 1%; + padding: dt('select.padding.y') dt('select.padding.x'); + text-overflow: ellipsis; + cursor: pointer; + color: dt('select.color'); + background: transparent; + border: 0 none; + outline: 0 none; + font-weight: dt('select.font.weight'); + font-size: dt('select.font.size'); + } + + .p-select-label.p-placeholder { + color: dt('select.placeholder.color'); + } + + .p-select.p-invalid .p-select-label.p-placeholder { + color: dt('select.invalid.placeholder.color'); + } + + .p-select.p-disabled .p-select-label { + color: dt('select.disabled.color'); + } + + .p-select-label-empty { + overflow: hidden; + opacity: 0; + } + + input.p-select-label { + cursor: default; + } + + .p-select-overlay { + position: absolute; + top: 0; + left: 0; + background: dt('select.overlay.background'); + color: dt('select.overlay.color'); + border: 1px solid dt('select.overlay.border.color'); + border-radius: dt('select.overlay.border.radius'); + box-shadow: dt('select.overlay.shadow'); + min-width: 100%; + transform-origin: inherit; + will-change: transform; + } + + .p-select-header { + padding: dt('select.list.header.padding'); + } + + .p-select-filter { + width: 100%; + } + + .p-select-list-container { + overflow: auto; + } + + .p-select-option-group { + cursor: auto; + margin: 0; + padding: dt('select.option.group.padding'); + background: dt('select.option.group.background'); + color: dt('select.option.group.color'); + font-weight: dt('select.option.group.font.weight'); + font-size: dt('select.option.group.font.size'); + } + + .p-select-list { + margin: 0; + padding: 0; + list-style-type: none; + padding: dt('select.list.padding'); + gap: dt('select.list.gap'); + display: flex; + flex-direction: column; + } + + .p-select-option { + cursor: pointer; + font-weight: dt('select.option.font.weight'); + font-size: dt('select.option.font.size'); + white-space: nowrap; + position: relative; + overflow: hidden; + display: flex; + align-items: center; + padding: dt('select.option.padding'); + border: 0 none; + color: dt('select.option.color'); + background: transparent; + transition: + background dt('list.option.transition.duration'), + color dt('list.option.transition.duration'), + border-color dt('list.option.transition.duration'), + box-shadow dt('list.option.transition.duration'), + outline-color dt('list.option.transition.duration'); + border-radius: dt('list.option.border.radius'); + } + + .p-select-option:not(.p-select-option-selected):not(.p-disabled).p-focus { + background: dt('select.option.focus.background'); + color: dt('select.option.focus.color'); + } + + .p-select-option:not(.p-select-option-selected):not(.p-disabled):hover { + background: dt('select.option.focus.background'); + color: dt('select.option.focus.color'); + } + + .p-select-option.p-select-option-selected { + background: dt('select.option.selected.background'); + color: dt('select.option.selected.color'); + font-weight: dt('select.option.selected.font.weight'); + } + + .p-select-option.p-select-option-selected.p-focus { + background: dt('select.option.selected.focus.background'); + color: dt('select.option.selected.focus.color'); + } + + .p-select-option-blank-icon { + flex-shrink: 0; + } + + .p-select-option-check-icon { + position: relative; + flex-shrink: 0; + margin-inline-start: dt('select.checkmark.gutter.start'); + margin-inline-end: dt('select.checkmark.gutter.end'); + color: dt('select.checkmark.color'); + } + + .p-select-empty-message { + padding: dt('select.empty.message.padding'); + font-weight: dt('select.option.font.weight'); + font-size: dt('select.option.font.size'); + } + + .p-select-fluid { + display: flex; + width: 100%; + } + + .p-select-sm .p-select-label { + font-size: dt('select.sm.font.size'); + padding-block: dt('select.sm.padding.y'); + padding-inline: dt('select.sm.padding.x'); + } + + .p-select-sm .p-select-dropdown .p-icon { + font-size: dt('select.sm.font.size'); + width: dt('select.sm.font.size'); + height: dt('select.sm.font.size'); + } + + .p-select-lg .p-select-label { + font-size: dt('select.lg.font.size'); + padding-block: dt('select.lg.padding.y'); + padding-inline: dt('select.lg.padding.x'); + } + + .p-select-lg .p-select-dropdown .p-icon { + font-size: dt('select.lg.font.size'); + width: dt('select.lg.font.size'); + height: dt('select.lg.font.size'); + } + + .p-floatlabel-in .p-select-filter { + padding-block-start: dt('select.padding.y'); + padding-block-end: dt('select.padding.y'); + } +`;function jr(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",5)),t&2){let e=EM(2);jM(e.cx("optionCheckIcon")),zE("pBind",e.$pcSelect?.ptm("optionCheckIcon"));}}function Wr(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",6)),t&2){let e=EM(2);jM(e.cx("optionBlankIcon")),zE("pBind",e.$pcSelect?.ptm("optionBlankIcon"));}}function Yr(t,a){if(t&1&&rM(0,jr,1,3,":svg:svg",3)(1,Wr,1,3,":svg:svg",4),t&2){let e=EM();oM(e.selected()?0:1);}}function Zr(t,a){if(t&1&&(Bc$1(0,"span",1),YM(1),bp$1()),t&2){let e=EM();zE("pBind",e.$pcSelect?.ptm("optionLabel")),n_(),fD(e.label()??"empty");}}function Qr(t,a){t&1&&qE(0);}var Xr=["item"],Jr=["group"],es=["loader"],ts=["selectedItem"],is=["header"],h2=["filter"],ns=["footer"],os=["emptyfilter"],as=["empty"],ls=["dropdownicon"],rs=["loadingicon"],ss=["clearicon"],cs=["filtericon"],ds=["onicon"],ps=["officon"],us=["cancelicon"],ms=["focusInput"],fs=["editableInput"],hs=["items"],gs=["scroller"],bs=["overlay"],_s=["firstHiddenFocusableEl"],ys=["lastHiddenFocusableEl"],vs=t=>({class:t}),xs=t=>({height:t});function Cs(t,a){return this.trackOption(a,t)}function Ms(t,a){if(t&1&&YM(0),t&2){let e=EM(2);xp$1(" ",e.label()==="p-emptylabel"?"\xA0":e.label()," ");}}function ws(t,a){if(t&1&&(Bc$1(0,"span"),YM(1),bp$1()),t&2){let e=EM(3);n_(),fD(e.label()==="p-emptylabel"?"\xA0":e.label());}}function zs(t,a){t&1&&qE(0);}function ks(t,a){if(t&1&&VE(0,zs,1,0,"ng-container",16),t&2){let e=EM(3);zE("ngTemplateOutlet",e.selectedItemTemplate())("ngTemplateOutletContext",e.selectedItemContext);}}function Ts(t,a){if(t&1&&rM(0,ws,2,1,"span")(1,ks,1,2,"ng-container"),t&2){let e=EM(2);oM(e.isSelectedOptionEmpty()?0:1);}}function Ds(t,a){if(t&1){let e=hM();Bc$1(0,"span",15,2),cu$1("focus",function(n){Rm$1(e);let o=EM();return xm$1(o.onInputFocus(n))})("blur",function(n){Rm$1(e);let o=EM();return xm$1(o.onInputBlur(n))})("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onKeyDown(n))}),rM(2,Ms,1,1)(3,Ts,2,1),bp$1();}if(t&2){let e=EM();jM(e.cx("label")),zE("pBind",e.ptm("label"))("pTooltip",e.tooltip())("pTooltipUnstyled",e.unstyled())("tooltipPosition",e.tooltipPosition())("positionStyle",e.tooltipPositionStyle())("tooltipStyleClass",e.tooltipStyleClass())("pAutoFocus",e.autofocus()),su$1("aria-disabled",e.$disabled())("id",e.inputId())("aria-label",e.$ariaLabel())("aria-labelledby",e.ariaLabelledBy())("aria-haspopup","listbox")("aria-expanded",e.$ariaExpanded)("aria-multiselectable",e.$ariaMultiselectable())("aria-controls",e.$ariaControls())("tabindex",e.$tabindex())("aria-activedescendant",e.$ariaActivedescendant)("aria-required",e.required())("required",e.$required())("disabled",e.$disabledAttr())("data-p",e.labelDataP),n_(2),oM(e.selectedItemTemplate()?3:2);}}function Ss(t,a){if(t&1){let e=hM();Bc$1(0,"input",17,3),cu$1("input",function(n){Rm$1(e);let o=EM();return xm$1(o.onEditableInput(n))})("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onKeyDown(n))})("focus",function(n){Rm$1(e);let o=EM();return xm$1(o.onInputFocus(n))})("blur",function(n){Rm$1(e);let o=EM();return xm$1(o.onInputBlur(n))}),bp$1();}if(t&2){let e=EM();jM(e.cx("label")),zE("pBind",e.ptm("label"))("pAutoFocus",e.autofocus()),su$1("id",e.inputId())("aria-haspopup","listbox")("placeholder",e.$placeholder())("aria-label",e.$ariaLabel())("aria-activedescendant",e.$ariaActivedescendant)("name",e.name())("minlength",e.minlength())("min",e.min())("max",e.max())("pattern",e.$pattern())("size",e.inputSize())("maxlength",e.maxlength())("required",e.$required())("readonly",e.$readonly())("disabled",e.$disabledAttr())("data-p",e.labelDataP);}}function Is(t,a){if(t&1){let e=hM();Gm$1(),Bc$1(0,"svg",20),cu$1("click",function(n){Rm$1(e);let o=EM(2);return xm$1(o.clear(n))}),bp$1();}if(t&2){let e=EM(2);jM(e.cx("clearIcon")),zE("pBind",e.ptm("clearIcon")),su$1("data-pc-section","clearicon");}}function Es(t,a){}function Ns(t,a){t&1&&VE(0,Es,0,0,"ng-template");}function Ls(t,a){if(t&1){let e=hM();Bc$1(0,"span",21),cu$1("click",function(n){Rm$1(e);let o=EM(2);return xm$1(o.clear(n))}),VE(1,Ns,1,0,null,16),bp$1();}if(t&2){let e=EM(2);jM(e.cx("clearIcon")),zE("pBind",e.ptm("clearIcon")),su$1("data-pc-section","clearicon"),n_(),zE("ngTemplateOutlet",e.clearIconTemplate())("ngTemplateOutletContext",e.clearIconContext);}}function Fs(t,a){if(t&1&&rM(0,Is,1,4,":svg:svg",18)(1,Ls,2,6,"span",19),t&2){let e=EM();oM(e.clearIconTemplate()?1:0);}}function Os(t,a){t&1&&qE(0);}function Bs(t,a){if(t&1&&VE(0,Os,1,0,"ng-container",22),t&2){let e=EM(2);zE("ngTemplateOutlet",e.loadingIconTemplate());}}function Vs(t,a){if(t&1&&au$1(0,"span",24),t&2){let e=EM(3);jM(e.cn(e.cx("loadingIcon"),"pi-spin"+e.loadingIcon())),zE("pBind",e.ptm("loadingIcon"));}}function Ps(t,a){if(t&1&&au$1(0,"span",24),t&2){let e=EM(3);jM(e.cn(e.cx("loadingIcon"),"pi pi-spinner pi-spin")),zE("pBind",e.ptm("loadingIcon"));}}function Rs(t,a){if(t&1&&rM(0,Vs,1,3,"span",23)(1,Ps,1,3,"span",23),t&2){let e=EM(2);oM(e.loadingIcon()?0:1);}}function As(t,a){if(t&1&&rM(0,Bs,1,1,"ng-container")(1,Rs,2,1),t&2){let e=EM();oM(e.loadingIconTemplate()?0:1);}}function Hs(t,a){if(t&1&&au$1(0,"span",26),t&2){let e=EM(3);jM(e.cn(e.cx("dropdownIcon"),e.dropdownIcon())),zE("pBind",e.ptm("dropdownIcon"));}}function $s(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",27)),t&2){let e=EM(3);jM(e.cx("dropdownIcon")),zE("pBind",e.ptm("dropdownIcon"));}}function Gs(t,a){if(t&1&&rM(0,Hs,1,3,"span",19)(1,$s,1,3,":svg:svg",25),t&2){let e=EM(2);oM(e.dropdownIcon()?0:1);}}function Us(t,a){}function Ks(t,a){t&1&&VE(0,Us,0,0,"ng-template");}function qs(t,a){if(t&1&&(Bc$1(0,"span",26),VE(1,Ks,1,0,null,16),bp$1()),t&2){let e=EM(2);jM(e.cx("dropdownIcon")),zE("pBind",e.ptm("dropdownIcon")),n_(),zE("ngTemplateOutlet",e.dropdownIconTemplate())("ngTemplateOutletContext",e.dropdownIconContext);}}function js(t,a){if(t&1&&rM(0,Gs,2,1)(1,qs,2,5,"span",19),t&2){let e=EM();oM(e.dropdownIconTemplate()?1:0);}}function Ws(t,a){t&1&&qE(0);}function Ys(t,a){t&1&&qE(0);}function Zs(t,a){if(t&1&&VE(0,Ys,1,0,"ng-container",16),t&2){let e=EM(3);zE("ngTemplateOutlet",e.filterTemplate())("ngTemplateOutletContext",e.filterTemplateContext);}}function Qs(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",32)),t&2){let e=EM(4);zE("pBind",e.ptm("filterIcon"));}}function Xs(t,a){}function Js(t,a){t&1&&VE(0,Xs,0,0,"ng-template");}function e4(t,a){if(t&1&&(Bc$1(0,"span",26),VE(1,Js,1,0,null,22),bp$1()),t&2){let e=EM(4);zE("pBind",e.ptm("filterIcon")),n_(),zE("ngTemplateOutlet",e.filterIconTemplate());}}function t4(t,a){if(t&1){let e=hM();Bc$1(0,"p-iconfield",30)(1,"input",31,7),cu$1("input",function(n){Rm$1(e);let o=EM(3);return xm$1(o.onFilterInputChange(n))})("keydown",function(n){Rm$1(e);let o=EM(3);return xm$1(o.onFilterKeyDown(n))})("blur",function(n){Rm$1(e);let o=EM(3);return xm$1(o.onFilterBlur(n))}),bp$1(),Bc$1(3,"p-inputicon",30),rM(4,Qs,1,1,":svg:svg",32)(5,e4,2,2,"span",26),bp$1()();}if(t&2){let e=EM(3);zE("pt",e.ptm("pcFilterContainer"))("unstyled",e.unstyled()),n_(),jM(e.cx("pcFilter")),zE("pSize",e.size())("value",e.filterInputValue())("variant",e.$variant())("pt",e.ptm("pcFilter"))("unstyled",e.unstyled()),su$1("placeholder",e.filterPlaceholder())("aria-owns",e.$ariaOwns())("aria-label",e.ariaFilterLabel())("aria-activedescendant",e.focusedOptionId()),n_(2),zE("pt",e.ptm("pcFilterIconContainer"))("unstyled",e.unstyled()),n_(),oM(e.filterIconTemplate()?5:4);}}function i4(t,a){if(t&1&&(Bc$1(0,"div",21),cu$1("click",function(i){return i.stopPropagation()}),rM(1,Zs,1,2,"ng-container")(2,t4,6,16,"p-iconfield",30),bp$1()),t&2){let e=EM(2);jM(e.cx("header")),zE("pBind",e.ptm("header")),n_(),oM(e.filterTemplate()?1:2);}}function n4(t,a){t&1&&qE(0);}function o4(t,a){if(t&1&&VE(0,n4,1,0,"ng-container",16),t&2){let e=a.$implicit,i=a.options;EM(2);let n=CM(9),o=EM();zE("ngTemplateOutlet",n)("ngTemplateOutletContext",o.getBuildInItemsContext(e,i));}}function a4(t,a){t&1&&qE(0);}function l4(t,a){if(t&1&&VE(0,a4,1,0,"ng-container",16),t&2){let e=a.options,i=EM(4);zE("ngTemplateOutlet",i.loaderTemplate())("ngTemplateOutletContext",i.getLoaderContext(e));}}function r4(t,a){t&1&&VE(0,l4,1,2,"ng-template",null,9,pN);}function s4(t,a){if(t&1){let e=hM();Bc$1(0,"p-scroller",33,8),cu$1("onLazyLoad",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onLazyLoad.emit(n))}),VE(2,o4,1,2,"ng-template",null,1,pN),rM(4,r4,2,0),bp$1();}if(t&2){let e=EM(2);PM(oN(9,xs,e.scrollHeight())),zE("items",e.visibleOptions())("itemSize",e.virtualScrollItemSize())("autoSize",true)("lazy",e.lazy())("options",e.virtualScrollOptions())("pt",e.ptm("virtualScroller")),n_(4),oM(e.loaderTemplate()?4:-1);}}function c4(t,a){t&1&&qE(0);}function d4(t,a){if(t&1&&VE(0,c4,1,0,"ng-container",16),t&2){EM();let e=CM(9),i=EM();zE("ngTemplateOutlet",e)("ngTemplateOutletContext",i.defaultBuildInItemsContext);}}function p4(t,a){if(t&1&&(Bc$1(0,"span",26),YM(1),bp$1()),t&2){let e=EM(2).$implicit,i=EM(3);jM(i.cx("optionGroupLabel")),zE("pBind",i.ptm("optionGroupLabel")),n_(),fD(i.getOptionGroupLabel(e.optionGroup));}}function u4(t,a){t&1&&qE(0);}function m4(t,a){if(t&1&&(Bc$1(0,"li",37),rM(1,p4,2,4,"span",19),VE(2,u4,1,0,"ng-container",16),bp$1()),t&2){let e=EM(),i=e.$implicit,n=e.$index,o=EM().options,r=EM(2);PM(r.getItemSizeStyle(o)),jM(r.cx("optionGroup")),zE("pBind",r.ptm("optionGroup")),su$1("id",r.$id()+"_"+r.getOptionIndex(n,o)),n_(),oM(r.groupTemplate()?-1:1),n_(),zE("ngTemplateOutlet",r.groupTemplate())("ngTemplateOutletContext",r.getGroupContext(i.optionGroup));}}function f4(t,a){if(t&1){let e=hM();Bc$1(0,"p-select-item",38),cu$1("onClick",function(n){Rm$1(e);let o=EM().$implicit,r=EM(3);return xm$1(r.onOptionSelect(n,o))})("onMouseEnter",function(n){Rm$1(e);let o=EM().$index,r=EM().options,u=EM(2);return xm$1(u.onOptionMouseEnter(n,u.getOptionIndex(o,r)))}),bp$1();}if(t&2){let e=EM(),i=e.$implicit,n=e.$index,o=EM().options,r=EM(2);zE("id",r.$id()+"_"+r.getOptionIndex(n,o))("option",i)("checkmark",r.checkmark())("selected",r.isSelected(i))("label",r.getOptionLabel(i))("disabled",r.isOptionDisabled(i))("template",r.itemTemplate())("focused",r.isOptionFocused(n,o))("ariaPosInset",r.getAriaPosInset(r.getOptionIndex(n,o)))("ariaSetSize",r.ariaSetSize)("index",n)("unstyled",r.unstyled())("scrollerOptions",o);}}function h4(t,a){if(t&1&&rM(0,m4,3,9,"li",35)(1,f4,1,13,"p-select-item",36),t&2){let e=a.$implicit,i=EM(3);oM(i.isOptionGroup(e)?0:1);}}function g4(t,a){if(t&1&&YM(0),t&2){let e=EM(4);xp$1(" ",e.emptyFilterMessageLabel()," ");}}function b4(t,a){t&1&&qE(0);}function _4(t,a){if(t&1&&VE(0,b4,1,0,"ng-container",22),t&2){let e=EM(4);zE("ngTemplateOutlet",e.hasEmptyTemplate());}}function y4(t,a){if(t&1&&(Bc$1(0,"li",37),rM(1,g4,1,1)(2,_4,1,1,"ng-container"),bp$1()),t&2){let e=EM().options,i=EM(2);PM(i.getItemSizeStyle(e)),jM(i.cx("emptyMessage")),zE("pBind",i.ptm("emptyMessage")),n_(),oM(i.hasEmptyTemplate()?2:1);}}function v4(t,a){if(t&1&&YM(0),t&2){let e=EM(4);xp$1(" ",e.emptyMessageLabel()||e.emptyFilterMessageLabel()," ");}}function x4(t,a){t&1&&qE(0);}function C4(t,a){if(t&1&&VE(0,x4,1,0,"ng-container",22),t&2){let e=EM(4);zE("ngTemplateOutlet",e.emptyTemplate());}}function M4(t,a){if(t&1&&(Bc$1(0,"li",37),rM(1,v4,1,1)(2,C4,1,1,"ng-container"),bp$1()),t&2){let e=EM().options,i=EM(2);PM(i.getItemSizeStyle(e)),jM(i.cx("emptyMessage")),zE("pBind",i.ptm("emptyMessage")),n_(),oM(i.emptyTemplate()?2:1);}}function w4(t,a){if(t&1&&(Bc$1(0,"ul",34,10),aM(2,h4,2,1,null,null,Cs,true),rM(4,y4,3,6,"li",35),rM(5,M4,3,6,"li",35),bp$1()),t&2){let e=a.$implicit,i=a.options,n=EM(2);PM(i.contentStyle),jM(n.cn(n.cx("list"),i.contentStyleClass)),zE("pBind",n.ptm("list")),su$1("id",n.$id()+"_list")("aria-label",n.listLabel),n_(2),cM(e),n_(2),oM(n.showEmptyFilterMessage()?4:-1),n_(),oM(n.showEmptyMessage()?5:-1);}}function z4(t,a){t&1&&qE(0);}function k4(t,a){if(t&1){let e=hM();Bc$1(0,"div",26)(1,"span",28,4),cu$1("focus",function(n){Rm$1(e);let o=EM();return xm$1(o.onFirstHiddenFocus(n))}),bp$1(),VE(3,Ws,1,0,"ng-container",16),rM(4,i4,3,4,"div",19),Bc$1(5,"div",26),rM(6,s4,5,11,"p-scroller",29)(7,d4,1,2,"ng-container"),VE(8,w4,6,9,"ng-template",null,5,pN),bp$1(),VE(10,z4,1,0,"ng-container",22),Bc$1(11,"span",28,6),cu$1("focus",function(n){Rm$1(e);let o=EM();return xm$1(o.onLastHiddenFocus(n))}),bp$1()();}if(t&2){let e=EM();PM(e.panelStyle()),jM(e.cn(e.cx("overlay"),e.panelStyleClass())),zE("pBind",e.ptm("overlay")),su$1("data-p",e.overlayDataP),n_(),zE("pBind",e.ptm("hiddenFirstFocusableEl")),su$1("tabindex",0)("data-p-hidden-accessible",true)("data-p-hidden-focusable",true),n_(2),zE("ngTemplateOutlet",e.headerTemplate())("ngTemplateOutletContext",oN(24,vs,e.cx("header"))),n_(),oM(e.filter()?4:-1),n_(),jM(e.cx("listContainer")),fu$1("max-height",e.virtualScroll()?"auto":e.scrollHeight()||"auto"),zE("pBind",e.ptm("listContainer")),n_(),oM(e.virtualScroll()?6:7),n_(4),zE("ngTemplateOutlet",e.footerTemplate()),n_(),zE("pBind",e.ptm("hiddenLastFocusableEl")),su$1("tabindex",0)("data-p-hidden-accessible",true)("data-p-hidden-focusable",true);}}var g2=new I$1("SELECT_INSTANCE"),T4=new I$1("SELECT_ITEM_INSTANCE"),D4={root:({instance:t})=>["p-select p-component p-inputwrapper",{"p-disabled":t.$disabled(),"p-invalid":t.invalid(),"p-variant-filled":t.$variant()==="filled","p-focus":t.focused(),"p-inputwrapper-filled":t.$filled(),"p-inputwrapper-focus":t.focused()||t.overlayVisible(),"p-select-open":t.overlayVisible(),"p-select-fluid":t.hasFluid,"p-select-sm p-inputfield-sm":t.size()==="small","p-select-lg p-inputfield-lg":t.size()==="large"}],label:({instance:t})=>["p-select-label",{"p-placeholder":t.placeholder()&&t.label()===t.placeholder(),"p-select-label-empty":!t.editable()&&!t.selectedItemTemplate()&&(t.label()===void 0||t.label()===null||t.label()==="p-emptylabel"||t.label().length===0)}],clearIcon:"p-select-clear-icon",dropdown:"p-select-dropdown",loadingIcon:"p-select-loading-icon",dropdownIcon:"p-select-dropdown-icon",overlay:"p-select-overlay p-component-overlay p-component",header:"p-select-header",pcFilter:"p-select-filter",listContainer:"p-select-list-container",list:"p-select-list",optionGroup:"p-select-option-group",optionGroupLabel:"p-select-option-group-label",option:({instance:t})=>["p-select-option",{"p-select-option-selected":t.selected()&&!t.checkmark(),"p-disabled":t.disabled(),"p-focus":t.focused()}],optionLabel:"p-select-option-label",optionCheckIcon:"p-select-option-check-icon",optionBlankIcon:"p-select-option-blank-icon",emptyMessage:"p-select-empty-message"},B1=(()=>{class t extends WI{name="select";style=f2;classes=D4;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var S4=(()=>{class t extends I{hostName="select";$pcSelectItem=g(T4,{optional:true,skipSelf:true})??void 0;$pcSelect=g(g2,{optional:true,skipSelf:true});id=mu$1();option=mu$1();selected=mu$1(void 0,{transform:yn});focused=mu$1(void 0,{transform:yn});label=mu$1();disabled=mu$1(void 0,{transform:yn});visible=mu$1(void 0,{transform:yn});itemSize=mu$1(void 0,{transform:Bp$1});ariaPosInset=mu$1();ariaSetSize=mu$1();template=mu$1();checkmark=mu$1(false,{transform:yn});index=mu$1();scrollerOptions=mu$1();templateContext=gs$1(()=>({$implicit:this.option()}));itemSizeStyle=gs$1(()=>({height:this.scrollerOptions()?.itemSize+"px"}));onClick=sz();onMouseEnter=sz();_componentStyle=g(B1);onOptionClick(e){this.onClick.emit(e);}onOptionMouseEnter(e){this.onMouseEnter.emit(e);}getPTOptions(){return this.$pcSelect?.getPTItemOptions?.(this.option(),this.scrollerOptions(),this.index()??0,"option")??this.$pcSelect?.ptm("option",{context:{option:this.option(),selected:this.selected(),focused:this.focused(),disabled:this.disabled()}})}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-select-item"]],inputs:{id:[1,"id"],option:[1,"option"],selected:[1,"selected"],focused:[1,"focused"],label:[1,"label"],disabled:[1,"disabled"],visible:[1,"visible"],itemSize:[1,"itemSize"],ariaPosInset:[1,"ariaPosInset"],ariaSetSize:[1,"ariaSetSize"],template:[1,"template"],checkmark:[1,"checkmark"],index:[1,"index"],scrollerOptions:[1,"scrollerOptions"]},outputs:{onClick:"onClick",onMouseEnter:"onMouseEnter"},features:[nN([B1,{provide:W,useExisting:t}]),BE],decls:4,vars:18,consts:[["role","option","pRipple","",3,"click","mouseenter","id","pBind"],[3,"pBind"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],["data-p-icon","check",3,"class","pBind"],["data-p-icon","blank",3,"class","pBind"],["data-p-icon","check",3,"pBind"],["data-p-icon","blank",3,"pBind"]],template:function(i,n){i&1&&(Bc$1(0,"li",0),cu$1("click",function(r){return n.onOptionClick(r)})("mouseenter",function(r){return n.onOptionMouseEnter(r)}),rM(1,Yr,2,1),rM(2,Zr,2,2,"span",1),VE(3,Qr,1,0,"ng-container",2),bp$1()),i&2&&(PM(n.itemSizeStyle()),jM(n.cx("option")),zE("id",n.id())("pBind",n.getPTOptions()),su$1("aria-label",n.label())("aria-setsize",n.ariaSetSize())("aria-posinset",n.ariaPosInset())("aria-selected",n.selected())("data-p-focused",n.focused())("data-p-highlight",n.selected())("data-p-selected",n.selected())("data-p-disabled",n.disabled()),n_(),oM(n.checkmark()?1:-1),n_(),oM(n.template()?-1:2),n_(),zE("ngTemplateOutlet",n.template())("ngTemplateOutletContext",n.templateContext()));},dependencies:[cA,iq,z4$2,O1,m2,o1,L],encapsulation:2})}return t})(),I4={provide:q4$1,useExisting:Ha$1(()=>jt),multi:true},jt=(()=>{class t extends Qr$1{componentName="Select";bindDirectiveInstance=g(L,{self:true});filterService=g(eq);id=mu$1();_internalId=j8$1("pn_id_");$id=gs$1(()=>this.id()||this._internalId);scrollHeight=mu$1("200px");filter=mu$1(void 0,{transform:yn});panelStyle=mu$1();panelStyleClass=mu$1();readonly=mu$1(void 0,{transform:yn});editable=mu$1(void 0,{transform:yn});tabindex=mu$1(0,{transform:Bp$1});placeholder=mu$1();loadingIcon=mu$1();filterPlaceholder=mu$1();filterLocale=mu$1();inputId=mu$1();dataKey=mu$1();filterBy=mu$1();filterFields=mu$1();autofocus=mu$1(void 0,{transform:yn});resetFilterOnHide=mu$1(false,{transform:yn});checkmark=mu$1(false,{transform:yn});dropdownIcon=mu$1();loading=mu$1(false,{transform:yn});optionLabel=mu$1();optionValue=mu$1();optionDisabled=mu$1();optionGroupLabel=mu$1("label");optionGroupChildren=mu$1("items");group=mu$1(void 0,{transform:yn});showClear=mu$1(void 0,{transform:yn});emptyFilterMessage=mu$1("");emptyMessage=mu$1("");lazy=mu$1(false,{transform:yn});virtualScroll=mu$1(void 0,{transform:yn});virtualScrollItemSize=mu$1(void 0,{transform:Bp$1});virtualScrollOptions=mu$1();overlayOptions=mu$1();ariaFilterLabel=mu$1();ariaLabel=mu$1();ariaLabelledBy=mu$1();filterMatchMode=mu$1("contains");tooltip=mu$1("");tooltipPosition=mu$1("right");tooltipPositionStyle=mu$1("absolute");tooltipStyleClass=mu$1();focusOnHover=mu$1(true,{transform:yn});selectOnFocus=mu$1(false,{transform:yn});multiple=mu$1(false,{transform:yn});autoOptionFocus=mu$1(false,{transform:yn});autofocusFilter=mu$1(true,{transform:yn});filterValue=mu$1();options=mu$1();appendTo=mu$1(void 0);motionOptions=mu$1(void 0);onChange=sz();onFilter=sz();onFocus=sz();onBlur=sz();onClick=sz();onShow=sz();onHide=sz();onClear=sz();onLazyLoad=sz();_componentStyle=g(B1);filterViewChild=cz("filter");focusInputViewChild=cz("focusInput");editableInputViewChild=cz("editableInput");itemsViewChild=cz("items");scroller=cz("scroller");overlayViewChild=cz("overlay");firstHiddenFocusableElementOnOverlay=cz("firstHiddenFocusableEl");lastHiddenFocusableElementOnOverlay=cz("lastHiddenFocusableEl");itemsWrapper;$appendTo=gs$1(()=>this.appendTo()||this.config.overlayAppendTo());itemTemplate=uz("item",{descendants:false});groupTemplate=uz("group",{descendants:false});loaderTemplate=uz("loader",{descendants:false});selectedItemTemplate=uz("selectedItem",{descendants:false});headerTemplate=uz("header",{descendants:false});filterTemplate=uz("filter",{descendants:false});footerTemplate=uz("footer",{descendants:false});emptyFilterTemplate=uz("emptyfilter",{descendants:false});emptyTemplate=uz("empty",{descendants:false});dropdownIconTemplate=uz("dropdownicon",{descendants:false});loadingIconTemplate=uz("loadingicon",{descendants:false});clearIconTemplate=uz("clearicon",{descendants:false});filterIconTemplate=uz("filtericon",{descendants:false});onIconTemplate=uz("onicon",{descendants:false});offIconTemplate=uz("officon",{descendants:false});cancelIconTemplate=uz("cancelicon",{descendants:false});filterOptions;_filterValue=U(null);_placeholder=U(void 0);_options=U(null);value;hover;focused=U(false);overlayVisible=U(false);optionsChanged;panel;dimensionsUpdated;hoveredItem;selectedOptionUpdated;searchValue;searchIndex;searchTimeout;previousSearchChar;currentSearchChar;preventModelTouched;focusedOptionIndex=U(-1);labelId;listId;clicked=U(false);emptyMessageLabel=gs$1(()=>this.emptyMessage()||this.translate(sq.EMPTY_MESSAGE));emptyFilterMessageLabel=gs$1(()=>this.emptyFilterMessage()||this.translate(sq.EMPTY_FILTER_MESSAGE));isVisibleClearIcon=gs$1(()=>{if(!this.showClear()||this.$disabled())return false;let e=this.modelValue();return this.multiple()?Array.isArray(e)&&e.length>0:e!=null&&this.hasSelectedOption()});get listLabel(){return this.translate(sq.ARIA,"listLabel")}focusedOptionId=gs$1(()=>this.focusedOptionIndex()!==-1?`${this.$id()}_${this.focusedOptionIndex()}`:null);visibleOptions=gs$1(()=>{let e=this.getAllVisibleAndNonVisibleOptions();if(this._filterValue()){let n=!(this.filterBy()||this.optionLabel())&&!this.filterFields()&&!this.optionValue()?this._options()?.filter(o=>o.label?o.label.toString().toLowerCase().indexOf(this._filterValue().toLowerCase().trim())!==-1:o.toString().toLowerCase().indexOf(this._filterValue().toLowerCase().trim())!==-1):this.filterService.filter(e,this.searchFields(),this._filterValue().trim(),this.filterMatchMode(),this.filterLocale());if(this.group()){let o=this._options()||[],r=[];return o.forEach(u=>{let z=this.getOptionGroupChildren(u).filter(T=>n?.includes(T));z.length>0&&r.push(m(l$1({},u),{[typeof this.optionGroupChildren()=="string"?this.optionGroupChildren():"items"]:[...z]}));}),this.flatOptions(r)}return n}return e});label=gs$1(()=>{if(this.multiple()){let n=this.modelValue();if(!Array.isArray(n)||n.length===0)return this.placeholder()||"p-emptylabel";let o=this.getAllVisibleAndNonVisibleOptions();return n.map(u=>{let M=o.find(z=>!this.isOptionGroup(z)&&zh(u,this.getOptionValue(z),this.equalityKey()));return M?this.getOptionLabel(M):String(u)}).filter(Boolean).join(", ")}let e=this.getAllVisibleAndNonVisibleOptions(),i=e.findIndex(n=>this.isOptionValueEqualsModelValue(n));if(i!==-1){let n=e[i];return this.getOptionLabel(n)}return this.placeholder()||"p-emptylabel"});$ariaLabel=gs$1(()=>this.ariaLabel()||(this.label()==="p-emptylabel"?void 0:this.label()));$ariaMultiselectable=gs$1(()=>this.multiple()||void 0);$placeholder=gs$1(()=>{let e=this.modelValue();return e==null?this.placeholder()||this._placeholder():void 0});$required=gs$1(()=>this.required()?"":void 0);$readonly=gs$1(()=>this.readonly()?"":void 0);$disabledAttr=gs$1(()=>this.$disabled()?"":void 0);$tabindex=gs$1(()=>this.$disabled()?-1:this.tabindex());filterInputValue=gs$1(()=>this._filterValue()||"");get $ariaActivedescendant(){return this.focused()?this.focusedOptionId():void 0}get $ariaExpanded(){return this.overlayVisible()}$ariaControls=gs$1(()=>this.overlayVisible()?this.$id()+"_list":null);showEmptyFilterMessage=gs$1(()=>this._filterValue()&&this.isEmpty());showEmptyMessage=gs$1(()=>!this._filterValue()&&this.isEmpty());hasEmptyTemplate=gs$1(()=>this.emptyFilterTemplate()||this.emptyTemplate());$ariaOwns=gs$1(()=>this.$id()+"_list");get selectedItemContext(){return {$implicit:this.selectedOption()}}get clearIconContext(){return {class:this.cx("clearIcon")??""}}get dropdownIconContext(){return {class:this.cx("dropdownIcon")??""}}get filterTemplateContext(){return {options:this.filterOptions??{}}}get defaultBuildInItemsContext(){return {$implicit:this.visibleOptions(),options:{}}}getBuildInItemsContext(e,i){return {$implicit:e,options:i}}getLoaderContext(e){return {options:e}}getItemSizeStyle(e){return {height:e.itemSize+"px"}}getGroupContext(e){return {$implicit:e}}selectedOption=U(null);constructor(){super(),Ui(()=>{let e=this.modelValue(),i=this.visibleOptions();if(i&&oe(i)){let n=this.findSelectedOptionIndex();if(n!==-1||e===void 0||typeof e=="string"&&e.length===0||this.isModelValueNotSet()||this.editable())this.selectedOption.set(i[n]);else {let o=i.findIndex(r=>this.isSelected(r));o!==-1&&this.selectedOption.set(i[o]);}}Gs$1(i)&&(e===void 0||this.isModelValueNotSet())&&oe(this.selectedOption())&&this.selectedOption.set(null),e!==void 0&&this.editable()&&this.updateEditableLabel();}),Ui(()=>{let e=this.filterValue();e!==void 0&&this._filterValue.set(e);}),Ui(()=>{let e=this.options();Jx(e,this._options())||(this._options.set(e??null),this.optionsChanged=true);});}isModelValueNotSet(){return this.modelValue()===null&&!this.isOptionValueEqualsModelValue(this.selectedOption())}getAllVisibleAndNonVisibleOptions(){return this.group()?this.flatOptions(this._options()):this._options()||[]}onInit(){this.autoUpdateModel(),this.filterBy()&&(this.filterOptions={filter:e=>this.onFilterInputChange(e),reset:()=>this.resetFilter()});}onAfterViewChecked(){if(this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"])),this.optionsChanged&&this.overlayVisible()&&(this.optionsChanged=false,setTimeout(()=>{this.overlayViewChild()&&this.overlayViewChild()?.alignOverlay();},1)),this.selectedOptionUpdated&&this.itemsWrapper){let e=M4$1(this.overlayViewChild()?.overlayViewChild()?.nativeElement,'li[data-p-selected="true"]');e&&G4$1(this.itemsWrapper,e),this.selectedOptionUpdated=false;}}flatOptions(e){return (e||[]).reduce((i,n,o)=>{i.push({optionGroup:n,group:true,index:o});let r=this.getOptionGroupChildren(n);return r&&r.forEach(u=>i.push(u)),i},[])}autoUpdateModel(){this.selectOnFocus()&&this.autoOptionFocus()&&!this.hasSelectedOption()&&(this.focusedOptionIndex.set(this.findFirstFocusedOptionIndex()),this.onOptionSelect(null,this.visibleOptions()[this.focusedOptionIndex()],false));}onOptionSelect(e,i,n=true,o=false){if(!this.isOptionDisabled(i)){if(this.multiple()){this.onOptionSelectMultiple(e,i,o);return}if(!this.isSelected(i)){let r=this.getOptionValue(i);this.updateModel(r,e),this.focusedOptionIndex.set(this.findSelectedOptionIndex()),o===false&&this.onChange.emit({originalEvent:e,value:r});}n&&this.hide(true);}}onOptionSelectMultiple(e,i,n=false){let o=this.getOptionValue(i),r=this.modelValue()??[],u=this.isSelected(i)?r.filter(M=>!zh(M,o,this.equalityKey())):[...r,o];this.updateModel(u,e),n===false&&this.onChange.emit({originalEvent:e,value:u});}onOptionMouseEnter(e,i){this.focusOnHover()&&this.changeFocusedOptionIndex(e,i);}updateModel(e,i){this.value=e,this.onModelChange(e),this.writeModelValue(e),this.selectedOptionUpdated=true;}allowModelChange(){return !!this.modelValue()&&!this.placeholder()&&(this.modelValue()===void 0||this.modelValue()===null)&&!this.editable()&&this._options()&&this._options().length}isSelected(e){if(this.multiple()){let i=this.modelValue();if(!Array.isArray(i))return false;let n=this.getOptionValue(e);return i.some(o=>zh(o,n,this.equalityKey()))}return this.isOptionValueEqualsModelValue(e)}isOptionValueEqualsModelValue(e){return e!=null&&!this.isOptionGroup(e)&&zh(this.modelValue(),this.getOptionValue(e),this.equalityKey())}onAfterViewInit(){this.editable()&&this.updateEditableLabel(),this.updatePlaceHolderForFloatingLabel();}updatePlaceHolderForFloatingLabel(){let e=this.el.nativeElement.parentElement,i=e?.classList.contains("p-float-label");if(e&&i&&!this.selectedOption()){let n=e.querySelector("label");n&&this._placeholder.set(n.textContent);}}updateEditableLabel(){this.editableInputViewChild()&&(this.editableInputViewChild().nativeElement.value=this.getOptionLabel(this.selectedOption())||this.modelValue()||"");}clearEditableLabel(){this.editableInputViewChild()&&(this.editableInputViewChild().nativeElement.value="");}getOptionIndex(e,i){return this.virtualScrollerDisabled()?e:i&&i.getItemOptions(e).index}getOptionLabel(e){return this.optionLabel()!==void 0&&this.optionLabel()!==null?hl$1(e,this.optionLabel()):e&&e.label!==void 0?e.label:e}getOptionValue(e){return this.optionValue()&&this.optionValue()!==null?hl$1(e,this.optionValue()):!this.optionLabel()&&e&&e.value!==void 0?e.value:e}getPTItemOptions(e,i,n,o){return this.ptm(o,{context:{option:e,index:n,selected:this.isSelected(e),focused:this.focusedOptionIndex()===this.getOptionIndex(n,i),disabled:this.isOptionDisabled(e)}})}isSelectedOptionEmpty(){if(this.multiple()){let e=this.modelValue();return !Array.isArray(e)||e.length===0}return Gs$1(this.selectedOption())}isOptionDisabled(e){return this.optionDisabled()?hl$1(e,this.optionDisabled()):e&&e.disabled!==void 0?e.disabled:false}getOptionGroupLabel(e){return this.optionGroupLabel()!==void 0&&this.optionGroupLabel()!==null?hl$1(e,this.optionGroupLabel()):e&&e.label!==void 0?e.label:e}getOptionGroupChildren(e){return this.optionGroupChildren()!==void 0&&this.optionGroupChildren()!==null?hl$1(e,this.optionGroupChildren()):e.items}getAriaPosInset(e){return (this.optionGroupLabel()?e-this.visibleOptions().slice(0,e).filter(i=>this.isOptionGroup(i)).length:e)+1}get ariaSetSize(){return this.visibleOptions().filter(e=>!this.isOptionGroup(e)).length}resetFilter(){this._filterValue.set(null),this.filterViewChild()&&this.filterViewChild().nativeElement&&(this.filterViewChild().nativeElement.value="");}onContainerClick(e){this.$disabled()||this.readonly()||this.loading()||e.target.tagName==="INPUT"||e.target.getAttribute("data-pc-section")==="clearicon"||e.target.closest('[data-pc-section="clearicon"]')||((!this.overlayViewChild()||!this.overlayViewChild().el.nativeElement.contains(e.target))&&(this.overlayVisible()?this.hide(true):this.show(true)),this.focusInputViewChild()?.nativeElement.focus({preventScroll:true}),this.onClick.emit(e),this.clicked.set(true));}isEmpty(){return !this._options()||this.visibleOptions()&&this.visibleOptions().length===0}onEditableInput(e){let i=e.target.value;this.searchValue="",!this.searchOptions(e,i)&&this.focusedOptionIndex.set(-1),this.onModelChange(i),this.updateModel(i||null,e),setTimeout(()=>{this.onChange.emit({originalEvent:e,value:i});},1),!this.overlayVisible()&&oe(i)&&this.show();}show(e){this.overlayVisible.set(true),this.focusedOptionIndex.set(this.focusedOptionIndex()!==-1?this.focusedOptionIndex():this.autoOptionFocus()?this.findFirstFocusedOptionIndex():this.editable()?-1:this.findSelectedOptionIndex()),e&&N4$2(this.focusInputViewChild()?.nativeElement);}onOverlayBeforeEnter(e){if(this.itemsWrapper=M4$1(this.overlayViewChild()?.overlayViewChild()?.nativeElement,this.virtualScroll()?'[data-pc-name="virtualscroller"]':'[data-pc-section="listcontainer"]'),this.virtualScroll()&&this.scroller()?.setContentEl(this.itemsViewChild()?.nativeElement),this._options()&&this._options().length)if(this.virtualScroll()){let i=this.modelValue()?this.focusedOptionIndex():-1;i!==-1&&setTimeout(()=>{this.scroller()?.scrollToIndex(i);},10);}else {let i=M4$1(this.itemsWrapper,'[data-p-selected="true"]');i&&i.scrollIntoView({block:"nearest",inline:"nearest"});}this.filterViewChild()&&this.filterViewChild().nativeElement&&(this.preventModelTouched=true,this.autofocusFilter()&&!this.editable()&&this.filterViewChild().nativeElement.focus()),this.onShow.emit(e);}onOverlayAfterLeave(e){this.itemsWrapper=null,this.onModelTouched(),this.onHide.emit(e);}hide(e){this.overlayVisible.set(false),this.focusedOptionIndex.set(-1),this.clicked.set(false),this.searchValue="",this.overlayOptions()?.mode==="modal"&&Y9$1(),this.filter()&&this.resetFilterOnHide()&&this.resetFilter(),e&&(this.focusInputViewChild()&&N4$2(this.focusInputViewChild()?.nativeElement),this.editable()&&this.editableInputViewChild()&&N4$2(this.editableInputViewChild()?.nativeElement));}onInputFocus(e){if(this.$disabled())return;this.focused.set(true);let i=this.focusedOptionIndex()!==-1?this.focusedOptionIndex():this.overlayVisible()&&this.autoOptionFocus()?this.findFirstFocusedOptionIndex():-1;this.focusedOptionIndex.set(i),this.overlayVisible()&&this.scrollInView(this.focusedOptionIndex()),this.onFocus.emit(e);}onInputBlur(e){this.focused.set(false),this.onBlur.emit(e),!this.preventModelTouched&&!this.overlayVisible()&&this.onModelTouched(),this.preventModelTouched=false;}onKeyDown(e,i=false){if(!(this.$disabled()||this.readonly()||this.loading())){switch(e.code){case "ArrowDown":this.onArrowDownKey(e);break;case "ArrowUp":this.onArrowUpKey(e,this.editable());break;case "ArrowLeft":case "ArrowRight":this.onArrowLeftKey(e,this.editable());break;case "Delete":this.onDeleteKey(e);break;case "Home":this.onHomeKey(e,this.editable());break;case "End":this.onEndKey(e,this.editable());break;case "PageDown":this.onPageDownKey(e);break;case "PageUp":this.onPageUpKey(e);break;case "Space":this.onSpaceKey(e,i);break;case "Enter":case "NumpadEnter":this.onEnterKey(e);break;case "Escape":this.onEscapeKey(e);break;case "Tab":this.onTabKey(e);break;case "Backspace":this.onBackspaceKey(e,this.editable());break;case "ShiftLeft":case "ShiftRight":break;default:!e.metaKey&&g4$1(e.key)&&(!this.overlayVisible()&&this.show(),!this.editable()&&this.searchOptions(e,e.key));break}this.clicked.set(false);}}onFilterKeyDown(e){switch(e.code){case "ArrowDown":this.onArrowDownKey(e);break;case "ArrowUp":this.onArrowUpKey(e,true);break;case "ArrowLeft":case "ArrowRight":this.onArrowLeftKey(e,true);break;case "Home":this.onHomeKey(e,true);break;case "End":this.onEndKey(e,true);break;case "Enter":case "NumpadEnter":this.onEnterKey(e,true);break;case "Escape":this.onEscapeKey(e);break;case "Tab":this.onTabKey(e,true);break;}}onFilterBlur(e){this.focusedOptionIndex.set(-1);}onArrowDownKey(e){if(!this.overlayVisible())this.show(),this.editable()&&this.changeFocusedOptionIndex(e,this.findSelectedOptionIndex());else {let i=this.focusedOptionIndex()!==-1?this.findNextOptionIndex(this.focusedOptionIndex()):this.clicked()?this.findFirstOptionIndex():this.findFirstFocusedOptionIndex();this.changeFocusedOptionIndex(e,i);}e.preventDefault(),e.stopPropagation();}changeFocusedOptionIndex(e,i){if(this.focusedOptionIndex()!==i&&(this.focusedOptionIndex.set(i),this.scrollInView(),this.selectOnFocus()&&!this.multiple())){let n=this.visibleOptions()[i];this.onOptionSelect(e,n,false);}}virtualScrollerDisabled=gs$1(()=>!this.virtualScroll());scrollInView(e=-1){let i=e!==-1?`${this.$id()}_${e}`:this.focusedOptionId();if(this.itemsViewChild()&&this.itemsViewChild().nativeElement){let n=M4$1(this.itemsViewChild().nativeElement,`li[id="${i}"]`);n?n.scrollIntoView&&n.scrollIntoView({block:"nearest",inline:"nearest"}):this.virtualScrollerDisabled()||setTimeout(()=>{this.virtualScroll()&&this.scroller()?.scrollToIndex(e!==-1?e:this.focusedOptionIndex());},0);}}hasSelectedOption(){return this.modelValue()!==void 0}isValidSelectedOption(e){return this.isValidOption(e)&&this.isSelected(e)}equalityKey(){return this.optionValue()?void 0:this.dataKey()}findFirstFocusedOptionIndex(){let e=this.findSelectedOptionIndex();return e<0?this.findFirstOptionIndex():e}findFirstOptionIndex(){return this.visibleOptions().findIndex(e=>this.isValidOption(e))}findSelectedOptionIndex(){return this.hasSelectedOption()?this.visibleOptions().findIndex(e=>this.isValidSelectedOption(e)):-1}findNextOptionIndex(e){let i=ethis.isValidOption(n)):-1;return i>-1?i+e+1:e}findPrevOptionIndex(e){let i=e>0?p4$1(this.visibleOptions().slice(0,e),n=>this.isValidOption(n)):-1;return i>-1?i:e}findLastOptionIndex(){return p4$1(this.visibleOptions(),e=>this.isValidOption(e))}findLastFocusedOptionIndex(){let e=this.findSelectedOptionIndex();return e<0?this.findLastOptionIndex():e}isValidOption(e){return e!=null&&!(this.isOptionDisabled(e)||this.isOptionGroup(e))}isOptionGroup(e){return this.optionGroupLabel()!==void 0&&this.optionGroupLabel()!==null&&e.optionGroup!==void 0&&e.optionGroup!==null&&e.group}isOptionFocused(e,i){return this.focusedOptionIndex()===this.getOptionIndex(e,i)}trackOption(e,i){if(this.isOptionGroup(e))return `group_${e.index}`;let n=this.dataKey();return n?hl$1(e,n):this.getOptionValue(e)}onArrowUpKey(e,i=false){if(e.altKey&&!i){if(this.focusedOptionIndex()!==-1){let n=this.visibleOptions()[this.focusedOptionIndex()];this.onOptionSelect(e,n);}!this.multiple()&&this.overlayVisible()&&this.hide();}else {let n=this.focusedOptionIndex()!==-1?this.findPrevOptionIndex(this.focusedOptionIndex()):this.clicked()?this.findLastOptionIndex():this.findLastFocusedOptionIndex();this.changeFocusedOptionIndex(e,n),!this.overlayVisible()&&this.show();}e.preventDefault(),e.stopPropagation();}onArrowLeftKey(e,i=false){i&&this.focusedOptionIndex.set(-1);}onDeleteKey(e){this.showClear()&&(this.clear(e),e.preventDefault());}onHomeKey(e,i=false){if(i&&e.currentTarget&&e.currentTarget.setSelectionRange){let n=e.currentTarget;e.shiftKey?n.setSelectionRange(0,n.value.length):(n.setSelectionRange(0,0),this.focusedOptionIndex.set(-1));}else this.changeFocusedOptionIndex(e,this.findFirstOptionIndex()),!this.overlayVisible()&&this.show();e.preventDefault();}onEndKey(e,i=false){if(i&&e.currentTarget&&e.currentTarget.setSelectionRange){let n=e.currentTarget;if(e.shiftKey)n.setSelectionRange(0,n.value.length);else {let o=n.value.length;n.setSelectionRange(o,o),this.focusedOptionIndex.set(-1);}}else this.changeFocusedOptionIndex(e,this.findLastOptionIndex()),!this.overlayVisible()&&this.show();e.preventDefault();}onPageDownKey(e){this.scrollInView(this.visibleOptions().length-1),e.preventDefault();}onPageUpKey(e){this.scrollInView(0),e.preventDefault();}onSpaceKey(e,i=false){!this.editable()&&!i&&this.onEnterKey(e);}onEnterKey(e,i=false){if(!this.overlayVisible())this.focusedOptionIndex.set(-1),this.onArrowDownKey(e);else {if(this.focusedOptionIndex()!==-1){let n=this.visibleOptions()[this.focusedOptionIndex()];this.onOptionSelect(e,n);}!i&&!this.multiple()&&this.hide();}e.preventDefault();}onEscapeKey(e){this.overlayVisible()&&(this.hide(true),e.preventDefault(),e.stopPropagation());}onTabKey(e,i=false){if(!i)if(this.overlayVisible()&&this.hasFocusableElements())N4$2(e.shiftKey?this.lastHiddenFocusableElementOnOverlay()?.nativeElement:this.firstHiddenFocusableElementOnOverlay()?.nativeElement),e.preventDefault();else {if(this.focusedOptionIndex()!==-1&&this.overlayVisible()){let n=this.visibleOptions()[this.focusedOptionIndex()];this.onOptionSelect(e,n);}this.overlayVisible()&&this.hide(this.filter());}e.stopPropagation();}onFirstHiddenFocus(e){let i=e.relatedTarget===this.focusInputViewChild()?.nativeElement?R4$1(this.overlayViewChild()?.el?.nativeElement,':not([data-p-hidden-focusable="true"])'):this.focusInputViewChild()?.nativeElement;N4$2(i);}onLastHiddenFocus(e){let i=e.relatedTarget===this.focusInputViewChild()?.nativeElement?L4$1(this.overlayViewChild()?.overlayViewChild()?.nativeElement,':not([data-p-hidden-focusable="true"])'):this.focusInputViewChild()?.nativeElement;N4$2(i);}hasFocusableElements(){return kI(this.overlayViewChild()?.overlayViewChild()?.nativeElement,':not([data-p-hidden-focusable="true"])').length>0}onBackspaceKey(e,i=false){i&&!this.overlayVisible()&&this.show();}searchFields(){return this.filterBy()?.split(",")||this.filterFields()||[this.optionLabel()]}searchOptions(e,i){this.searchValue=(this.searchValue||"")+i;let n=-1,o=false;return n=this.visibleOptions().findIndex(r=>this.isOptionMatched(r)),n!==-1&&(o=true),n===-1&&this.focusedOptionIndex()===-1&&(n=this.findFirstFocusedOptionIndex()),n!==-1&&setTimeout(()=>{this.changeFocusedOptionIndex(e,n);}),this.searchTimeout&&clearTimeout(this.searchTimeout),this.searchTimeout=setTimeout(()=>{this.searchValue="",this.searchTimeout=null;},500),o}isOptionMatched(e){return this.isValidOption(e)&&this.getOptionLabel(e).toString().toLocaleLowerCase(this.filterLocale()).startsWith(this.searchValue?.toLocaleLowerCase(this.filterLocale()))}onFilterInputChange(e){let i=e.target.value;this._filterValue.set(i),this.focusedOptionIndex.set(-1),this.onFilter.emit({originalEvent:e,filter:this._filterValue()}),!this.virtualScrollerDisabled()&&this.scroller()?.scrollToIndex(0),setTimeout(()=>{this.overlayViewChild()?.alignOverlay();});}applyFocus(){this.editable()?M4$1(this.el.nativeElement,'[data-pc-section="label"]').focus():N4$2(this.focusInputViewChild()?.nativeElement);}focus(){this.applyFocus();}clear(e){this.updateModel(this.multiple()?[]:null,e),this.clearEditableLabel(),this.onModelTouched(),this.onChange.emit({originalEvent:e,value:this.value}),this.onClear.emit(e),this.resetFilter();}writeControlValue(e,i){this.filter()&&this.resetFilter(),this.value=e,this.allowModelChange()&&this.onModelChange(e),i(this.value),this.updateEditableLabel();}get containerDataP(){return this.cn({invalid:this.invalid(),disabled:this.$disabled(),focus:this.focused(),fluid:this.hasFluid,filled:this.$variant()==="filled",[this.size()]:this.size()})}get labelDataP(){return this.cn({placeholder:this.label()===this.placeholder(),clearable:this.showClear(),disabled:this.$disabled(),[this.size()]:this.size(),empty:!this.editable()&&!this.selectedItemTemplate()&&(!this.label()||this.label()==="p-emptylabel"||this.label().length===0)})}get dropdownIconDataP(){return this.cn({[this.size()]:this.size()})}get overlayDataP(){return this.cn({["overlay-"+this.$appendTo()]:"overlay-"+this.$appendTo()})}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-select"]],contentQueries:function(i,n,o){i&1&&QE(o,n.itemTemplate,Xr,4)(o,n.groupTemplate,Jr,4)(o,n.loaderTemplate,es,4)(o,n.selectedItemTemplate,ts,4)(o,n.headerTemplate,is,4)(o,n.filterTemplate,h2,4)(o,n.footerTemplate,ns,4)(o,n.emptyFilterTemplate,os,4)(o,n.emptyTemplate,as,4)(o,n.dropdownIconTemplate,ls,4)(o,n.loadingIconTemplate,rs,4)(o,n.clearIconTemplate,ss,4)(o,n.filterIconTemplate,cs,4)(o,n.onIconTemplate,ds,4)(o,n.offIconTemplate,ps,4)(o,n.cancelIconTemplate,us,4),i&2&&IM(16);},viewQuery:function(i,n){i&1&&XE(n.filterViewChild,h2,5)(n.focusInputViewChild,ms,5)(n.editableInputViewChild,fs,5)(n.itemsViewChild,hs,5)(n.scroller,gs,5)(n.overlayViewChild,bs,5)(n.firstHiddenFocusableElementOnOverlay,_s,5)(n.lastHiddenFocusableElementOnOverlay,ys,5),i&2&&IM(8);},hostVars:4,hostBindings:function(i,n){i&1&&cu$1("click",function(r){return n.onContainerClick(r)}),i&2&&(su$1("id",n.$id())("data-p",n.containerDataP),jM(n.cx("root")));},inputs:{id:[1,"id"],scrollHeight:[1,"scrollHeight"],filter:[1,"filter"],panelStyle:[1,"panelStyle"],panelStyleClass:[1,"panelStyleClass"],readonly:[1,"readonly"],editable:[1,"editable"],tabindex:[1,"tabindex"],placeholder:[1,"placeholder"],loadingIcon:[1,"loadingIcon"],filterPlaceholder:[1,"filterPlaceholder"],filterLocale:[1,"filterLocale"],inputId:[1,"inputId"],dataKey:[1,"dataKey"],filterBy:[1,"filterBy"],filterFields:[1,"filterFields"],autofocus:[1,"autofocus"],resetFilterOnHide:[1,"resetFilterOnHide"],checkmark:[1,"checkmark"],dropdownIcon:[1,"dropdownIcon"],loading:[1,"loading"],optionLabel:[1,"optionLabel"],optionValue:[1,"optionValue"],optionDisabled:[1,"optionDisabled"],optionGroupLabel:[1,"optionGroupLabel"],optionGroupChildren:[1,"optionGroupChildren"],group:[1,"group"],showClear:[1,"showClear"],emptyFilterMessage:[1,"emptyFilterMessage"],emptyMessage:[1,"emptyMessage"],lazy:[1,"lazy"],virtualScroll:[1,"virtualScroll"],virtualScrollItemSize:[1,"virtualScrollItemSize"],virtualScrollOptions:[1,"virtualScrollOptions"],overlayOptions:[1,"overlayOptions"],ariaFilterLabel:[1,"ariaFilterLabel"],ariaLabel:[1,"ariaLabel"],ariaLabelledBy:[1,"ariaLabelledBy"],filterMatchMode:[1,"filterMatchMode"],tooltip:[1,"tooltip"],tooltipPosition:[1,"tooltipPosition"],tooltipPositionStyle:[1,"tooltipPositionStyle"],tooltipStyleClass:[1,"tooltipStyleClass"],focusOnHover:[1,"focusOnHover"],selectOnFocus:[1,"selectOnFocus"],multiple:[1,"multiple"],autoOptionFocus:[1,"autoOptionFocus"],autofocusFilter:[1,"autofocusFilter"],filterValue:[1,"filterValue"],options:[1,"options"],appendTo:[1,"appendTo"],motionOptions:[1,"motionOptions"]},outputs:{onChange:"onChange",onFilter:"onFilter",onFocus:"onFocus",onBlur:"onBlur",onClick:"onClick",onShow:"onShow",onHide:"onHide",onClear:"onClear",onLazyLoad:"onLazyLoad"},features:[nN([I4,B1,{provide:g2,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],decls:10,vars:16,consts:[["overlay",""],["content",""],["focusInput",""],["editableInput",""],["firstHiddenFocusableEl",""],["buildInItems",""],["lastHiddenFocusableEl",""],["filter",""],["scroller",""],["loader",""],["items",""],["role","combobox",3,"class","pBind","pTooltip","pTooltipUnstyled","tooltipPosition","positionStyle","tooltipStyleClass","pAutoFocus"],["type","text",3,"class","pBind","pAutoFocus"],["role","button","aria-label","dropdown trigger","aria-haspopup","listbox",3,"pBind"],[3,"visibleChange","onBeforeEnter","onAfterLeave","onHide","hostAttrSelector","visible","options","target","appendTo","unstyled","pt","motionOptions"],["role","combobox",3,"focus","blur","keydown","pBind","pTooltip","pTooltipUnstyled","tooltipPosition","positionStyle","tooltipStyleClass","pAutoFocus"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],["type","text",3,"input","keydown","focus","blur","pBind","pAutoFocus"],["data-p-icon","times",3,"class","pBind"],[3,"class","pBind"],["data-p-icon","times",3,"click","pBind"],[3,"click","pBind"],[4,"ngTemplateOutlet"],["aria-hidden","true",3,"class","pBind"],["aria-hidden","true",3,"pBind"],["data-p-icon","chevron-down",3,"class","pBind"],[3,"pBind"],["data-p-icon","chevron-down",3,"pBind"],["role","presentation",1,"p-hidden-accessible","p-hidden-focusable",3,"focus","pBind"],["hostName","select",3,"items","style","itemSize","autoSize","lazy","options","pt"],[3,"pt","unstyled"],["pInputText","","type","text","role","searchbox","autocomplete","off",3,"input","keydown","blur","pSize","value","variant","pt","unstyled"],["data-p-icon","search",3,"pBind"],["hostName","select",3,"onLazyLoad","items","itemSize","autoSize","lazy","options","pt"],["role","listbox",3,"pBind"],["role","option",3,"class","style","pBind"],[3,"id","option","checkmark","selected","label","disabled","template","focused","ariaPosInset","ariaSetSize","index","unstyled","scrollerOptions"],["role","option",3,"pBind"],[3,"onClick","onMouseEnter","id","option","checkmark","selected","label","disabled","template","focused","ariaPosInset","ariaSetSize","index","unstyled","scrollerOptions"]],template:function(i,n){i&1&&(rM(0,Ds,4,24,"span",11)(1,Ss,2,20,"input",12),rM(2,Fs,2,1),Bc$1(3,"div",13),rM(4,As,2,1)(5,js,2,1),bp$1(),Bc$1(6,"p-overlay",14,0),cu$1("visibleChange",function(r){return n.overlayVisible.set(r)})("onBeforeEnter",function(r){return n.onOverlayBeforeEnter(r)})("onAfterLeave",function(r){return n.onOverlayAfterLeave(r)})("onHide",function(){return n.hide()}),VE(8,k4,13,26,"ng-template",null,1,pN),bp$1()),i&2&&(oM(n.editable()?1:0),n_(2),oM(n.isVisibleClearIcon()?2:-1),n_(),jM(n.cx("dropdown")),zE("pBind",n.ptm("dropdown")),su$1("aria-expanded",n.$ariaExpanded)("data-pc-section","trigger"),n_(),oM(n.loading()?4:5),n_(2),zE("hostAttrSelector",n.$attrSelector)("visible",n.overlayVisible())("options",n.overlayOptions())("target","@parent")("appendTo",n.$appendTo())("unstyled",n.unstyled())("pt",n.ptm("pcOverlay"))("motionOptions",n.motionOptions()));},dependencies:[cA,S4,Oo$1,Kt,Z8$1,co$1,F1,c2,ar$1,Hr$1,kr$1,u1,iq,o1,L],encapsulation:2})}return t})(),b2=(()=>{class t{static \u0275fac=function(i){return new(i||t)};static \u0275mod=mn({type:t});static \u0275inj=$t({imports:[jt,iq,iq]})}return t})();var _2=` + .p-paginator { + display: flex; + align-items: center; + justify-content: center; + flex-wrap: wrap; + background: dt('paginator.background'); + color: dt('paginator.color'); + padding: dt('paginator.padding'); + border-radius: dt('paginator.border.radius'); + gap: dt('paginator.gap'); + } + + .p-paginator-content { + display: flex; + align-items: center; + justify-content: center; + flex-wrap: wrap; + gap: dt('paginator.gap'); + } + + .p-paginator-content-start { + margin-inline-end: auto; + } + + .p-paginator-content-end { + margin-inline-start: auto; + } + + .p-paginator-page, + .p-paginator-next, + .p-paginator-last, + .p-paginator-first, + .p-paginator-prev { + cursor: pointer; + display: inline-flex; + align-items: center; + justify-content: center; + user-select: none; + overflow: hidden; + position: relative; + background: dt('paginator.nav.button.background'); + border: 0 none; + color: dt('paginator.nav.button.color'); + min-width: dt('paginator.nav.button.width'); + height: dt('paginator.nav.button.height'); + font-weight: dt('paginator.nav.button.font.weight'); + font-size: dt('paginator.nav.button.font.size'); + transition: + background dt('paginator.transition.duration'), + color dt('paginator.transition.duration'), + outline-color dt('paginator.transition.duration'), + box-shadow dt('paginator.transition.duration'); + border-radius: dt('paginator.nav.button.border.radius'); + padding: 0; + margin: 0; + } + + .p-paginator-page:focus-visible, + .p-paginator-next:focus-visible, + .p-paginator-last:focus-visible, + .p-paginator-first:focus-visible, + .p-paginator-prev:focus-visible { + box-shadow: dt('paginator.nav.button.focus.ring.shadow'); + outline: dt('paginator.nav.button.focus.ring.width') dt('paginator.nav.button.focus.ring.style') dt('paginator.nav.button.focus.ring.color'); + outline-offset: dt('paginator.nav.button.focus.ring.offset'); + } + + .p-paginator-page:not(.p-disabled):not(.p-paginator-page-selected):hover, + .p-paginator-first:not(.p-disabled):hover, + .p-paginator-prev:not(.p-disabled):hover, + .p-paginator-next:not(.p-disabled):hover, + .p-paginator-last:not(.p-disabled):hover { + background: dt('paginator.nav.button.hover.background'); + color: dt('paginator.nav.button.hover.color'); + } + + .p-paginator-page.p-paginator-page-selected { + background: dt('paginator.nav.button.selected.background'); + color: dt('paginator.nav.button.selected.color'); + } + + .p-paginator-current { + color: dt('paginator.current.page.report.color'); + font-weight: dt('paginator.current.page.report.font.weight'); + font-size: dt('paginator.current.page.report.font.size'); + } + + .p-paginator-pages { + display: flex; + align-items: center; + gap: dt('paginator.gap'); + } + + .p-paginator-jtp-input .p-inputtext { + max-width: dt('paginator.jump.to.page.input.max.width'); + } + + .p-paginator-first:dir(rtl), + .p-paginator-prev:dir(rtl), + .p-paginator-next:dir(rtl), + .p-paginator-last:dir(rtl) { + transform: rotate(180deg); + } +`;var N4=["dropdownicon"],L4=["firstpagelinkicon"],F4=["previouspagelinkicon"],O4=["lastpagelinkicon"],B4=["nextpagelinkicon"],V1=t=>({$implicit:t}),V4=t=>({pageLink:t});function P4(t,a){t&1&&qE(0);}function R4(t,a){if(t&1&&(Bc$1(0,"div",13),VE(1,P4,1,0,"ng-container",14),bp$1()),t&2){let e=EM();jM(e.cx("contentStart")),zE("pBind",e.ptm("contentStart")),n_(),zE("ngTemplateOutlet",e.templateLeft())("ngTemplateOutletContext",oN(5,V1,e.paginatorState()));}}function A4(t,a){if(t&1&&(Bc$1(0,"span",13),YM(1),bp$1()),t&2){let e=EM();jM(e.cx("current")),zE("pBind",e.ptm("current")),n_(),fD(e.currentPageReport);}}function H4(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",17)),t&2){let e=EM(2);jM(e.cx("firstIcon")),zE("pBind",e.ptm("firstIcon"));}}function $4(t,a){}function G4(t,a){t&1&&VE(0,$4,0,0,"ng-template");}function U4(t,a){if(t&1&&(Bc$1(0,"span"),VE(1,G4,1,0,null,18),bp$1()),t&2){let e=EM(2);jM(e.cx("firstIcon")),n_(),zE("ngTemplateOutlet",e.firstPageLinkIconTemplate());}}function K4(t,a){if(t&1){let e=hM();Bc$1(0,"button",15),cu$1("click",function(n){Rm$1(e);let o=EM();return xm$1(o.changePageToFirst(n))}),rM(1,H4,1,3,":svg:svg",16)(2,U4,2,3,"span",7),bp$1();}if(t&2){let e=EM();jM(e.cx("first")),zE("pBind",e.ptm("first")),su$1("aria-label",e.getAriaLabel("firstPageLabel")),n_(),oM(e.firstPageLinkIconTemplate()?2:1);}}function q4(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",19)),t&2){let e=EM();jM(e.cx("prevIcon")),zE("pBind",e.ptm("prevIcon"));}}function j4(t,a){}function W4(t,a){t&1&&VE(0,j4,0,0,"ng-template");}function Y4(t,a){if(t&1&&(Bc$1(0,"span"),VE(1,W4,1,0,null,18),bp$1()),t&2){let e=EM();jM(e.cx("prevIcon")),n_(),zE("ngTemplateOutlet",e.previousPageLinkIconTemplate());}}function Z4(t,a){if(t&1){let e=hM();Bc$1(0,"button",15),cu$1("click",function(n){let o=Rm$1(e).$implicit,r=EM(2);return xm$1(r.onPageLinkClick(n,o-1))}),YM(1),bp$1();}if(t&2){let e=a.$implicit,i=EM(2);jM(i.cx("page",oN(6,V4,e))),zE("pBind",i.ptm("page")),su$1("aria-label",i.getPageAriaLabel(e))("aria-current",e-1==i.getPage()?"page":void 0),n_(),xp$1(" ",i.getLocalization(e)," ");}}function Q4(t,a){if(t&1&&(Bc$1(0,"span",13),aM(1,Z4,2,8,"button",4,iM),bp$1()),t&2){let e=EM();jM(e.cx("pages")),zE("pBind",e.ptm("pages")),n_(),cM(e.pageLinks());}}function X4(t,a){if(t&1&&YM(0),t&2){let e=EM(2);fD(e.currentPageReport);}}function J4(t,a){t&1&&qE(0);}function e0(t,a){if(t&1&&VE(0,J4,1,0,"ng-container",14),t&2){let e=a.$implicit,i=EM(3);zE("ngTemplateOutlet",i.jumpToPageItemTemplate())("ngTemplateOutletContext",oN(2,V1,e));}}function t0(t,a){t&1&&VE(0,e0,1,4,"ng-template",null,1,pN);}function i0(t,a){t&1&&qE(0);}function n0(t,a){if(t&1&&VE(0,i0,1,0,"ng-container",18),t&2){let e=EM(3);zE("ngTemplateOutlet",e.dropdownIconTemplate());}}function o0(t,a){t&1&&VE(0,n0,1,1,"ng-template",null,2,pN);}function a0(t,a){if(t&1){let e=hM();Bc$1(0,"p-select",20),cu$1("onChange",function(n){Rm$1(e);let o=EM();return xm$1(o.onPageDropdownChange(n))}),VE(1,X4,1,1,"ng-template",null,0,pN),rM(3,t0,2,0),rM(4,o0,2,0),bp$1(),z_();}if(t&2){let e=EM();jM(e.cx("pcJumpToPageDropdown")),zE("options",e.pageItems())("ngModel",e.getPage())("disabled",e.empty())("appendTo",e.$appendTo())("scrollHeight",e.dropdownScrollHeight())("pt",e.ptm("pcJumpToPageDropdown"))("unstyled",e.unstyled()),su$1("aria-label",e.getAriaLabel("jumpToPageDropdownLabel")),W_(),n_(3),oM(e.jumpToPageItemTemplate()?3:-1),n_(),oM(e.dropdownIconTemplate()?4:-1);}}function l0(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",21)),t&2){let e=EM();jM(e.cx("nextIcon")),zE("pBind",e.ptm("nextIcon"));}}function r0(t,a){}function s0(t,a){t&1&&VE(0,r0,0,0,"ng-template");}function c0(t,a){if(t&1&&(Bc$1(0,"span"),VE(1,s0,1,0,null,18),bp$1()),t&2){let e=EM();jM(e.cx("nextIcon")),n_(),zE("ngTemplateOutlet",e.nextPageLinkIconTemplate());}}function d0(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",23)),t&2){let e=EM(2);jM(e.cx("lastIcon")),zE("pBind",e.ptm("lastIcon"));}}function p0(t,a){}function u0(t,a){t&1&&VE(0,p0,0,0,"ng-template");}function m0(t,a){if(t&1&&(Bc$1(0,"span"),VE(1,u0,1,0,null,18),bp$1()),t&2){let e=EM(2);jM(e.cx("lastIcon")),n_(),zE("ngTemplateOutlet",e.lastPageLinkIconTemplate());}}function f0(t,a){if(t&1){let e=hM();Bc$1(0,"button",5),cu$1("click",function(n){Rm$1(e);let o=EM();return xm$1(o.changePageToLast(n))}),rM(1,d0,1,3,":svg:svg",22)(2,m0,2,3,"span",7),bp$1();}if(t&2){let e=EM();jM(e.cx("last")),zE("pBind",e.ptm("last"))("disabled",e.isLastPage()||e.empty()),su$1("aria-label",e.getAriaLabel("lastPageLabel")),n_(),oM(e.lastPageLinkIconTemplate()?2:1);}}function h0(t,a){if(t&1){let e=hM();Bc$1(0,"p-inputnumber",24),cu$1("ngModelChange",function(n){Rm$1(e);let o=EM();return xm$1(o.changePage(n-1))}),bp$1(),z_();}if(t&2){let e=EM();jM(e.cx("pcJumpToPageInput")),zE("pt",e.ptm("pcJumpToPageInput"))("ngModel",e.currentPage())("disabled",e.empty())("unstyled",e.unstyled()),W_();}}function g0(t,a){t&1&&qE(0);}function b0(t,a){if(t&1&&VE(0,g0,1,0,"ng-container",14),t&2){let e=a.$implicit,i=EM(3);zE("ngTemplateOutlet",i.dropdownItemTemplate())("ngTemplateOutletContext",oN(2,V1,e));}}function _0(t,a){t&1&&VE(0,b0,1,4,"ng-template",null,1,pN);}function y0(t,a){t&1&&qE(0);}function v0(t,a){if(t&1&&VE(0,y0,1,0,"ng-container",18),t&2){let e=EM(3);zE("ngTemplateOutlet",e.dropdownIconTemplate());}}function x0(t,a){t&1&&VE(0,v0,1,1,"ng-template",null,2,pN);}function C0(t,a){if(t&1){let e=hM();Bc$1(0,"p-select",25),cu$1("ngModelChange",function(n){Rm$1(e);let o=EM();return xm$1(o.rows.set(n))})("onChange",function(n){Rm$1(e);let o=EM();return xm$1(o.onRppChange(n))}),rM(1,_0,2,0),rM(2,x0,2,0),bp$1(),z_();}if(t&2){let e=EM();jM(e.cx("pcRowPerPageDropdown")),zE("options",e.rowsPerPageItems())("ngModel",e.rows())("disabled",e.empty())("appendTo",e.$appendTo())("scrollHeight",e.dropdownScrollHeight())("ariaLabel",e.getAriaLabel("rowsPerPageLabel"))("pt",e.ptm("pcRowPerPageDropdown"))("unstyled",e.unstyled()),W_(),n_(),oM(e.dropdownItemTemplate()?1:-1),n_(),oM(e.dropdownIconTemplate()?2:-1);}}function M0(t,a){t&1&&qE(0);}function w0(t,a){if(t&1&&(Bc$1(0,"div",13),VE(1,M0,1,0,"ng-container",14),bp$1()),t&2){let e=EM();jM(e.cx("contentEnd")),zE("pBind",e.ptm("contentEnd")),n_(),zE("ngTemplateOutlet",e.templateRight())("ngTemplateOutletContext",oN(5,V1,e.paginatorState()));}}var z0={paginator:({instance:t})=>["p-paginator p-component"],content:"p-paginator-content",contentStart:"p-paginator-content-start",contentEnd:"p-paginator-content-end",first:({instance:t})=>["p-paginator-first",{"p-disabled":t.isFirstPage()||t.empty()}],firstIcon:"p-paginator-first-icon",prev:({instance:t})=>["p-paginator-prev",{"p-disabled":t.isFirstPage()||t.empty()}],prevIcon:"p-paginator-prev-icon",next:({instance:t})=>["p-paginator-next",{"p-disabled":t.isLastPage()||t.empty()}],nextIcon:"p-paginator-next-icon",last:({instance:t})=>["p-paginator-last",{"p-disabled":t.isLastPage()||t.empty()}],lastIcon:"p-paginator-last-icon",pages:"p-paginator-pages",page:({instance:t,pageLink:a})=>["p-paginator-page",{"p-paginator-page-selected":a-1==t.getPage()}],current:"p-paginator-current",pcRowPerPageDropdown:"p-paginator-rpp-dropdown",pcJumpToPageDropdown:"p-paginator-jtp-dropdown",pcJumpToPageInput:"p-paginator-jtp-input"},y2=(()=>{class t extends WI{name="paginator";style=_2;classes=z0;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var v2=new I$1("PAGINATOR_INSTANCE"),si=(()=>{class t extends I{componentName="Paginator";bindDirectiveInstance=g(L,{self:true});$pcPaginator=g(v2,{optional:true,skipSelf:true})??void 0;onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}pageLinkSize=mu$1(5,{transform:Bp$1});alwaysShow=mu$1(true,{transform:yn});templateLeft=mu$1();templateRight=mu$1();dropdownScrollHeight=mu$1("200px");currentPageReportTemplate=mu$1("{currentPage} of {totalPages}");showCurrentPageReport=mu$1(false,{transform:yn});showFirstLastIcon=mu$1(true,{transform:yn});totalRecords=mu$1(0,{transform:Bp$1});rows=az(0);first=az(0);rowsPerPageOptions=mu$1();showJumpToPageDropdown=mu$1(false,{transform:yn});showJumpToPageInput=mu$1(false,{transform:yn});jumpToPageItemTemplate=mu$1();showPageLinks=mu$1(true,{transform:yn});locale=mu$1();dropdownItemTemplate=mu$1();appendTo=mu$1(void 0);onPageChange=sz();dropdownIconTemplate=uz("dropdownicon",{descendants:false});firstPageLinkIconTemplate=uz("firstpagelinkicon",{descendants:false});previousPageLinkIconTemplate=uz("previouspagelinkicon",{descendants:false});lastPageLinkIconTemplate=uz("lastpagelinkicon",{descendants:false});nextPageLinkIconTemplate=uz("nextpagelinkicon",{descendants:false});_componentStyle=g(y2);$appendTo=gs$1(()=>this.appendTo()||this.config.overlayAppendTo());pageLinks=gs$1(()=>{let e=this.getPageCount(),i=Math.min(this.pageLinkSize(),e),n=this.getPage(),o=Math.max(0,Math.ceil(n-i/2)),r=Math.min(e-1,o+i-1),u=this.pageLinkSize()-(r-o+1);o=Math.max(0,o-u);let M=[];for(let z=o;z<=r;z++)M.push(z+1);return M});pageItems=gs$1(()=>{if(!this.showJumpToPageDropdown())return [];let e=[];for(let i=0;i{let e=this.rowsPerPageOptions();if(!e)return [];let i=[],n=null;for(let o of e)typeof o=="object"&&o.showAll?n={label:o.showAll,value:this.totalRecords()}:i.push({label:String(this.getLocalization(o)),value:o});return n&&i.push(n),i});paginatorState=gs$1(()=>({page:this.getPage(),pageCount:this.getPageCount(),rows:this.rows(),first:this.first(),totalRecords:this.totalRecords()}));hostDisplay=gs$1(()=>this.alwaysShow()||this.pageLinks().length>1?null:"none");constructor(){super(),Ui(()=>{let e=this.totalRecords();J(()=>{let i=this.getPage();i>0&&e&&this.first()>=e&&Promise.resolve(null).then(()=>this.changePage(i-1));});});}getAriaLabel(e){return this.config.translation.aria?this.config.translation.aria[e]:void 0}getPageAriaLabel(e){return this.config.translation.aria?this.config.translation.aria.pageLabel?.replace(/{page}/g,`${e}`):void 0}getLocalization(e){let i=[...new Intl.NumberFormat(this.locale(),{useGrouping:false}).format(9876543210)].reverse(),n=new Map(i.map((o,r)=>[r,o]));return e>9?String(e).split("").map(r=>n.get(Number(r))).join(""):n.get(e)}isFirstPage(){return this.getPage()===0}isLastPage(){return this.getPage()===this.getPageCount()-1}getPageCount(){return Math.ceil(this.totalRecords()/this.rows())}getPage(){return Math.floor(this.first()/this.rows())}currentPage(){return this.getPageCount()>0?this.getPage()+1:0}get currentPageReport(){return this.currentPageReportTemplate().replace("{currentPage}",String(this.currentPage())).replace("{totalPages}",String(this.getPageCount())).replace("{first}",String(this.totalRecords()>0?this.first()+1:0)).replace("{last}",String(Math.min(this.first()+this.rows(),this.totalRecords()))).replace("{rows}",String(this.rows())).replace("{totalRecords}",String(this.totalRecords()))}changePage(e){let i=this.getPageCount();e>=0&&e{class t{static \u0275fac=function(i){return new(i||t)};static \u0275mod=mn({type:t});static \u0275inj=$t({imports:[si]})}return t})();var T0=(t,a)=>a[1].key||t;function D0(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function S0(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function I0(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function E0(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function N0(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function L0(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function F0(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function O0(t,a){if(t&1&&rM(0,D0,1,9,":svg:path")(1,S0,1,6,":svg:circle")(2,I0,1,9,":svg:rect")(3,E0,1,7,":svg:line")(4,N0,1,4,":svg:polyline")(5,L0,1,4,":svg:polygon")(6,F0,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var M2=(()=>{class t extends M4$2{constructor(){super(),this._icon=o;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","arrow-down"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,O0,7,1,null,null,T0),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var B0=(t,a)=>a[1].key||t;function V0(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function P0(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function R0(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function A0(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function H0(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function $0(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function G0(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function U0(t,a){if(t&1&&rM(0,V0,1,9,":svg:path")(1,P0,1,6,":svg:circle")(2,R0,1,9,":svg:rect")(3,A0,1,7,":svg:line")(4,H0,1,4,":svg:polyline")(5,$0,1,4,":svg:polygon")(6,G0,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var w2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$b;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","arrow-up"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,U0,7,1,null,null,B0),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();function _t(t){t||(t=g(_e$1));let a=new P(e=>{if(t.destroyed){e.next();return}return t.onDestroy(e.next.bind(e))});return e=>e.pipe(vi(a))}var K0=(t,a)=>a[1].key||t;function q0(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function j0(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function W0(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Y0(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Z0(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Q0(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function X0(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function J0(t,a){if(t&1&&rM(0,q0,1,9,":svg:path")(1,j0,1,6,":svg:circle")(2,W0,1,9,":svg:rect")(3,Y0,1,7,":svg:line")(4,Z0,1,4,":svg:polyline")(5,Q0,1,4,":svg:polygon")(6,X0,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var z2=(()=>{class t extends M4$2{constructor(){super(),this._icon=C$2;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","sort-alt"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,J0,7,1,null,null,K0),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var ec=(t,a)=>a[1].key||t;function tc(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function ic(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function nc(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function oc(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function ac(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function lc(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function rc(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function sc(t,a){if(t&1&&rM(0,tc,1,9,":svg:path")(1,ic,1,6,":svg:circle")(2,nc,1,9,":svg:rect")(3,oc,1,7,":svg:line")(4,ac,1,4,":svg:polyline")(5,lc,1,4,":svg:polygon")(6,rc,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var k2=(()=>{class t extends M4$2{constructor(){super(),this._icon=C$1;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","sort-amount-down"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,sc,7,1,null,null,ec),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var cc=(t,a)=>a[1].key||t;function dc(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function pc(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function uc(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function mc(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function fc(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function hc(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function gc(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function bc(t,a){if(t&1&&rM(0,dc,1,9,":svg:path")(1,pc,1,6,":svg:circle")(2,uc,1,9,":svg:rect")(3,mc,1,7,":svg:line")(4,fc,1,4,":svg:polyline")(5,hc,1,4,":svg:polygon")(6,gc,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var T2=(()=>{class t extends M4$2{constructor(){super(),this._icon=C;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","sort-amount-up-alt"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,bc,7,1,null,null,cc),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var D2=` + .p-radiobutton { + position: relative; + display: inline-flex; + user-select: none; + vertical-align: bottom; + width: dt('radiobutton.width'); + height: dt('radiobutton.height'); + } + + .p-radiobutton-input { + cursor: pointer; + appearance: none; + position: absolute; + top: 0; + inset-inline-start: 0; + width: 100%; + height: 100%; + padding: 0; + margin: 0; + opacity: 0; + z-index: 1; + outline: 0 none; + border: 1px solid transparent; + border-radius: 50%; + } + + .p-radiobutton-box { + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + border: 1px solid dt('radiobutton.border.color'); + background: dt('radiobutton.background'); + width: dt('radiobutton.width'); + height: dt('radiobutton.height'); + transition: + background dt('radiobutton.transition.duration'), + color dt('radiobutton.transition.duration'), + border-color dt('radiobutton.transition.duration'), + box-shadow dt('radiobutton.transition.duration'), + outline-color dt('radiobutton.transition.duration'); + outline-color: transparent; + box-shadow: dt('radiobutton.shadow'); + } + + .p-radiobutton-icon { + transition-duration: dt('radiobutton.transition.duration'); + background: transparent; + font-size: dt('radiobutton.icon.size'); + width: dt('radiobutton.icon.size'); + height: dt('radiobutton.icon.size'); + border-radius: 50%; + backface-visibility: hidden; + transform: translateZ(0) scale(0.1); + } + + .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box { + border-color: dt('radiobutton.hover.border.color'); + } + + .p-radiobutton-checked .p-radiobutton-box { + border-color: dt('radiobutton.checked.border.color'); + background: dt('radiobutton.checked.background'); + } + + .p-radiobutton-checked .p-radiobutton-box .p-radiobutton-icon { + background: dt('radiobutton.icon.checked.color'); + transform: translateZ(0) scale(1, 1); + visibility: visible; + } + + .p-radiobutton-checked:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box { + border-color: dt('radiobutton.checked.hover.border.color'); + background: dt('radiobutton.checked.hover.background'); + } + + .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-radiobutton-checked .p-radiobutton-box .p-radiobutton-icon { + background: dt('radiobutton.icon.checked.hover.color'); + } + + .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:focus-visible) .p-radiobutton-box { + border-color: dt('radiobutton.focus.border.color'); + box-shadow: dt('radiobutton.focus.ring.shadow'); + outline: dt('radiobutton.focus.ring.width') dt('radiobutton.focus.ring.style') dt('radiobutton.focus.ring.color'); + outline-offset: dt('radiobutton.focus.ring.offset'); + } + + .p-radiobutton-checked:not(.p-disabled):has(.p-radiobutton-input:focus-visible) .p-radiobutton-box { + border-color: dt('radiobutton.checked.focus.border.color'); + } + + .p-radiobutton.p-invalid > .p-radiobutton-box { + border-color: dt('radiobutton.invalid.border.color'); + } + + .p-radiobutton.p-variant-filled .p-radiobutton-box { + background: dt('radiobutton.filled.background'); + } + + .p-radiobutton.p-variant-filled.p-radiobutton-checked .p-radiobutton-box { + background: dt('radiobutton.checked.background'); + } + + .p-radiobutton.p-variant-filled:not(.p-disabled):has(.p-radiobutton-input:hover).p-radiobutton-checked .p-radiobutton-box { + background: dt('radiobutton.checked.hover.background'); + } + + .p-radiobutton.p-disabled { + opacity: 1; + } + + .p-radiobutton.p-disabled .p-radiobutton-box { + background: dt('radiobutton.disabled.background'); + border-color: dt('radiobutton.checked.disabled.border.color'); + } + + .p-radiobutton-checked.p-disabled .p-radiobutton-box .p-radiobutton-icon { + background: dt('radiobutton.icon.disabled.color'); + } + + .p-radiobutton-sm, + .p-radiobutton-sm .p-radiobutton-box { + width: dt('radiobutton.sm.width'); + height: dt('radiobutton.sm.height'); + } + + .p-radiobutton-sm .p-radiobutton-icon { + font-size: dt('radiobutton.icon.sm.size'); + width: dt('radiobutton.icon.sm.size'); + height: dt('radiobutton.icon.sm.size'); + } + + .p-radiobutton-lg, + .p-radiobutton-lg .p-radiobutton-box { + width: dt('radiobutton.lg.width'); + height: dt('radiobutton.lg.height'); + } + + .p-radiobutton-lg .p-radiobutton-icon { + font-size: dt('radiobutton.icon.lg.size'); + width: dt('radiobutton.icon.lg.size'); + height: dt('radiobutton.icon.lg.size'); + } +`;var _c=["input"],yc={root:({instance:t})=>["p-radiobutton p-component",{"p-radiobutton-checked":t.checked(),"p-disabled":t.$disabled(),"p-invalid":t.invalid(),"p-variant-filled":t.$variant()==="filled","p-radiobutton-sm p-inputfield-sm":t.size()==="small","p-radiobutton-lg p-inputfield-lg":t.size()==="large"}],box:"p-radiobutton-box",input:"p-radiobutton-input",icon:"p-radiobutton-icon"},S2=(()=>{class t extends WI{name="radiobutton";style=D2;classes=yc;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var I2=new I$1("RADIOBUTTON_INSTANCE"),vc={provide:q4$1,useExisting:Ha$1(()=>P1),multi:true},xc=(()=>{class t{accessors=[];add(e,i){this.accessors.push([e,i]);}remove(e){this.accessors=this.accessors.filter(i=>i[1]!==e);}select(e){this.accessors.forEach(i=>{this.isSameGroup(i,e)&&i[1]!==e&&i[1].writeValue(e.value());});}isSameGroup(e,i){return e[0].control?e[0].control.root===i.control.control.root&&e[1].name()===i.name():false}static \u0275fac=function(i){return new(i||t)};static \u0275prov=b({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})(),P1=(()=>{class t extends be{componentName="RadioButton";$pcRadioButton=g(I2,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}value=mu$1();tabindex=mu$1();inputId=mu$1();ariaLabelledBy=mu$1();ariaLabel=mu$1();autofocus=mu$1(false,{transform:yn});binary=mu$1(false,{transform:yn});variant=mu$1();size=mu$1();onClick=sz();onFocus=sz();onBlur=sz();inputViewChild=cz.required("input");$variant=gs$1(()=>this.variant()||this.config.inputVariant());attrRequired=gs$1(()=>this.required()?"":void 0);attrDisabled=gs$1(()=>this.$disabled()?"":void 0);dataP=gs$1(()=>this.cn({invalid:this.invalid(),checked:this.checked(),disabled:this.$disabled(),filled:this.$variant()==="filled",[this.size()]:this.size()}));checked=U(null);focused;control;_componentStyle=g(S2);injector=g(Ie);registry=g(xc);onInit(){this.control=this.injector.get(v2$1),this.registry.add(this.control,this);}onChange(e){this.$disabled()||this.select(e);}select(e){this.$disabled()||(this.checked.set(true),this.writeModelValue(this.checked()),this.onModelChange(this.value()),this.registry.select(this),this.onClick.emit({originalEvent:e,value:this.value()}));}onInputFocus(e){this.focused=true,this.onFocus.emit(e);}onInputBlur(e){this.focused=false,this.onModelTouched(),this.onBlur.emit(e);}focus(){this.inputViewChild().nativeElement.focus();}writeControlValue(e,i){this.checked.set(this.binary()?!!e:e==this.value()),i(this.checked());}onDestroy(){this.registry.remove(this);}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-radiobutton"],["p-radio-button"]],viewQuery:function(i,n){i&1&&XE(n.inputViewChild,_c,5),i&2&&IM();},hostVars:5,hostBindings:function(i,n){i&2&&(su$1("data-p-disabled",n.$disabled())("data-p-checked",n.checked())("data-p",n.dataP()),jM(n.cx("root")));},inputs:{value:[1,"value"],tabindex:[1,"tabindex"],inputId:[1,"inputId"],ariaLabelledBy:[1,"ariaLabelledBy"],ariaLabel:[1,"ariaLabel"],autofocus:[1,"autofocus"],binary:[1,"binary"],variant:[1,"variant"],size:[1,"size"]},outputs:{onClick:"onClick",onFocus:"onFocus",onBlur:"onBlur"},features:[nN([vc,S2,{provide:I2,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],decls:4,vars:20,consts:[["input",""],["type","radio",3,"focus","blur","change","checked","pAutoFocus","pBind"],[3,"pBind"]],template:function(i,n){i&1&&(Bc$1(0,"input",1,0),cu$1("focus",function(r){return n.onInputFocus(r)})("blur",function(r){return n.onInputBlur(r)})("change",function(r){return n.onChange(r)}),bp$1(),Bc$1(2,"div",2),au$1(3,"div",2),bp$1()),i&2&&(jM(n.cx("input")),zE("checked",n.checked())("pAutoFocus",n.autofocus())("pBind",n.ptm("input")),su$1("id",n.inputId())("name",n.name())("required",n.attrRequired())("disabled",n.attrDisabled())("value",n.modelValue())("aria-labelledby",n.ariaLabelledBy())("aria-label",n.ariaLabel())("aria-checked",n.checked())("tabindex",n.tabindex()),n_(2),jM(n.cx("box")),zE("pBind",n.ptm("box")),n_(),jM(n.cx("icon")),zE("pBind",n.ptm("icon")));},dependencies:[Z8$1,iq,o1,L],encapsulation:2})}return t})(),E2=(()=>{class t{static \u0275fac=function(i){return new(i||t)};static \u0275mod=mn({type:t});static \u0275inj=$t({imports:[P1,iq,iq]})}return t})();var Mc=(t,a)=>a[1].key||t;function wc(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function zc(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function kc(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Tc(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Dc(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Sc(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Ic(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Ec(t,a){if(t&1&&rM(0,wc,1,9,":svg:path")(1,zc,1,6,":svg:circle")(2,kc,1,9,":svg:rect")(3,Tc,1,7,":svg:line")(4,Dc,1,4,":svg:polyline")(5,Sc,1,4,":svg:polygon")(6,Ic,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var N2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$a;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","minus"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,Ec,7,1,null,null,Mc),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var L2=` + .p-checkbox { + position: relative; + display: inline-flex; + user-select: none; + vertical-align: bottom; + width: dt('checkbox.width'); + height: dt('checkbox.height'); + } + + .p-checkbox-input { + cursor: pointer; + appearance: none; + position: absolute; + inset-block-start: 0; + inset-inline-start: 0; + width: 100%; + height: 100%; + padding: 0; + margin: 0; + opacity: 0; + z-index: 1; + outline: 0 none; + border: 1px solid transparent; + border-radius: dt('checkbox.border.radius'); + } + + .p-checkbox-box { + display: flex; + justify-content: center; + align-items: center; + border-radius: dt('checkbox.border.radius'); + border: 1px solid dt('checkbox.border.color'); + background: dt('checkbox.background'); + color: dt('checkbox.icon.color'); + width: dt('checkbox.width'); + height: dt('checkbox.height'); + transition: + background dt('checkbox.transition.duration'), + border-color dt('checkbox.transition.duration'), + box-shadow dt('checkbox.transition.duration'), + outline-color dt('checkbox.transition.duration'); + outline-color: transparent; + box-shadow: dt('checkbox.shadow'); + } + + .p-checkbox-indicator { + display: flex; + justify-content: center; + align-items: center; + } + + .p-checkbox-icon, + .p-checkbox-indicator svg, + .p-checkbox-indicator i { + width: dt('checkbox.icon.size'); + height: dt('checkbox.icon.size'); + font-size: dt('checkbox.icon.size'); + transition-duration: dt('checkbox.transition.duration'); + } + + .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box { + border-color: dt('checkbox.hover.border.color'); + } + + .p-checkbox-checked .p-checkbox-box { + border-color: dt('checkbox.checked.border.color'); + background: dt('checkbox.checked.background'); + color: dt('checkbox.icon.checked.color'); + } + + .p-checkbox-checked:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box { + background: dt('checkbox.checked.hover.background'); + border-color: dt('checkbox.checked.hover.border.color'); + color: dt('checkbox.icon.checked.hover.color'); + } + + .p-checkbox:not(.p-disabled):has(.p-checkbox-input:focus-visible) .p-checkbox-box { + border-color: dt('checkbox.focus.border.color'); + box-shadow: dt('checkbox.focus.ring.shadow'); + outline: dt('checkbox.focus.ring.width') dt('checkbox.focus.ring.style') dt('checkbox.focus.ring.color'); + outline-offset: dt('checkbox.focus.ring.offset'); + } + + .p-checkbox-checked:not(.p-disabled):has(.p-checkbox-input:focus-visible) .p-checkbox-box { + border-color: dt('checkbox.checked.focus.border.color'); + } + + .p-checkbox.p-invalid > .p-checkbox-box { + border-color: dt('checkbox.invalid.border.color'); + } + + .p-checkbox.p-variant-filled .p-checkbox-box { + background: dt('checkbox.filled.background'); + } + + .p-checkbox-checked.p-variant-filled .p-checkbox-box { + background: dt('checkbox.checked.background'); + } + + .p-checkbox-checked.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box { + background: dt('checkbox.checked.hover.background'); + } + + .p-checkbox.p-disabled { + opacity: 1; + } + + .p-checkbox.p-disabled .p-checkbox-box { + background: dt('checkbox.disabled.background'); + border-color: dt('checkbox.checked.disabled.border.color'); + color: dt('checkbox.icon.disabled.color'); + } + + .p-checkbox-sm, + .p-checkbox-sm .p-checkbox-box { + width: dt('checkbox.sm.width'); + height: dt('checkbox.sm.height'); + } + + .p-checkbox-sm .p-checkbox-icon, + .p-checkbox-sm .p-checkbox-indicator svg, + .p-checkbox-sm .p-checkbox-indicator i { + font-size: dt('checkbox.icon.sm.size'); + width: dt('checkbox.icon.sm.size'); + height: dt('checkbox.icon.sm.size'); + } + + .p-checkbox-lg, + .p-checkbox-lg .p-checkbox-box { + width: dt('checkbox.lg.width'); + height: dt('checkbox.lg.height'); + } + + .p-checkbox-lg .p-checkbox-icon, + .p-checkbox-lg .p-checkbox-indicator svg, + .p-checkbox-lg .p-checkbox-indicator i { + font-size: dt('checkbox.icon.lg.size'); + width: dt('checkbox.icon.lg.size'); + height: dt('checkbox.icon.lg.size'); + } +`;var Nc=["icon"],Lc=["input"];function Fc(t,a){if(t&1&&au$1(0,"span",2),t&2){let e=EM(3);jM(e.cn(e.cx("icon"),e.checkboxIcon())),zE("pBind",e.ptm("icon")),su$1("data-p",e.dataP());}}function Oc(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",5)),t&2){let e=EM(3);jM(e.cx("icon")),zE("pBind",e.ptm("icon")),su$1("data-p",e.dataP());}}function Bc(t,a){if(t&1&&(Bc$1(0,"span",2),rM(1,Fc,1,4,"span",3)(2,Oc,1,4,":svg:svg",4),bp$1()),t&2){let e=EM(2);jM(e.cx("indicator")),zE("pBind",e.ptm("indicator")),n_(),oM(e.checkboxIcon()?1:2);}}function Vc(t,a){if(t&1&&(Bc$1(0,"span",2),Gm$1(),au$1(1,"svg",6),bp$1()),t&2){let e=EM(2);jM(e.cx("indicator")),zE("pBind",e.ptm("indicator")),n_(),jM(e.cx("icon")),zE("pBind",e.ptm("icon")),su$1("data-p",e.dataP());}}function Pc(t,a){if(t&1&&(rM(0,Bc,3,4,"span",3),rM(1,Vc,2,7,"span",3)),t&2){let e=EM();oM(e.checked()?0:-1),n_(),oM(e._indeterminate()?1:-1);}}function Rc(t,a){t&1&&qE(0);}function Ac(t,a){if(t&1&&VE(0,Rc,1,0,"ng-container",7),t&2){let e=EM();zE("ngTemplateOutlet",e.iconTemplate())("ngTemplateOutletContext",e.iconTemplateContext());}}var Hc={root:({instance:t})=>["p-checkbox p-component",{"p-checkbox-checked":t.checked(),"p-disabled":t.$disabled(),"p-invalid":t.invalid(),"p-variant-filled":t.$variant()==="filled","p-checkbox-sm p-inputfield-sm":t.size()==="small","p-checkbox-lg p-inputfield-lg":t.size()==="large"}],box:"p-checkbox-box",input:"p-checkbox-input",indicator:"p-checkbox-indicator",icon:"p-checkbox-icon"},F2=(()=>{class t extends WI{name="checkbox";style=L2;classes=Hc;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var O2=new I$1("CHECKBOX_INSTANCE"),$c={provide:q4$1,useExisting:Ha$1(()=>Wt),multi:true},Wt=(()=>{class t extends be{componentName="Checkbox";value=mu$1();binary=mu$1(false,{transform:yn});ariaLabelledBy=mu$1();ariaLabel=mu$1();tabindex=mu$1();inputId=mu$1();inputStyle=mu$1();inputClass=mu$1();indeterminate=mu$1(false,{transform:yn});formControl=mu$1();checkboxIcon=mu$1();readonly=mu$1(false,{transform:yn});autofocus=mu$1(false,{transform:yn});trueValue=mu$1(true);falseValue=mu$1(false);variant=mu$1();size=mu$1();onChange=sz();onFocus=sz();onBlur=sz();inputViewChild=cz("input");iconTemplate=uz("icon",{descendants:false});_indeterminate=U(false);focused=U(false);_componentStyle=g(F2);bindDirectiveInstance=g(L,{self:true});$pcCheckbox=g(O2,{optional:true,skipSelf:true})??void 0;$variant=gs$1(()=>this.variant()||this.config.inputVariant());requiredAttr=gs$1(()=>this.required()?"":void 0);readonlyAttr=gs$1(()=>this.readonly()?"":void 0);disabledAttr=gs$1(()=>this.$disabled()?"":void 0);checked=gs$1(()=>this._indeterminate()?false:this.binary()?this.modelValue()===this.trueValue():f4$1(this.value(),this.modelValue()));iconTemplateContext=gs$1(()=>({checked:this.checked(),class:this.cx("icon"),dataP:this.dataP()}));dataP=gs$1(()=>this.cn({invalid:this.invalid(),checked:this.checked(),disabled:this.$disabled(),filled:this.$variant()==="filled",[this.size()]:this.size()}));constructor(){super(),Ui(()=>{let e=this.indeterminate();this._indeterminate.set(e);});}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}updateModel(e){let i,n=this.injector.get(v2$1,null,{optional:true,self:true}),o=n&&!this.formControl()?n.value:this.modelValue();if(this.binary())i=this._indeterminate()?this.trueValue():this.checked()?this.falseValue():this.trueValue(),this.writeModelValue(i),this.onModelChange(i);else {this.checked()||this._indeterminate()?i=o.filter(u=>!zh(u,this.value())):i=o?[...o,this.value()]:[this.value()],this.onModelChange(i),this.writeModelValue(i);let r=this.formControl();r&&r.setValue(i);}this._indeterminate()&&this._indeterminate.set(false),this.onChange.emit({checked:i,originalEvent:e});}handleChange(e){this.readonly()||this.updateModel(e);}onInputFocus(e){this.focused.set(true),this.onFocus.emit(e);}onInputBlur(e){this.focused.set(false),this.onBlur.emit(e),this.onModelTouched();}focus(){this.inputViewChild()?.nativeElement.focus();}writeControlValue(e,i){i(e);}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-checkbox"],["p-check-box"]],contentQueries:function(i,n,o){i&1&&QE(o,n.iconTemplate,Nc,4),i&2&&IM();},viewQuery:function(i,n){i&1&&XE(n.inputViewChild,Lc,5),i&2&&IM();},hostVars:6,hostBindings:function(i,n){i&2&&(su$1("data-p-highlight",n.checked())("data-p-checked",n.checked())("data-p-disabled",n.$disabled())("data-p",n.dataP()),jM(n.cx("root")));},inputs:{value:[1,"value"],binary:[1,"binary"],ariaLabelledBy:[1,"ariaLabelledBy"],ariaLabel:[1,"ariaLabel"],tabindex:[1,"tabindex"],inputId:[1,"inputId"],inputStyle:[1,"inputStyle"],inputClass:[1,"inputClass"],indeterminate:[1,"indeterminate"],formControl:[1,"formControl"],checkboxIcon:[1,"checkboxIcon"],readonly:[1,"readonly"],autofocus:[1,"autofocus"],trueValue:[1,"trueValue"],falseValue:[1,"falseValue"],variant:[1,"variant"],size:[1,"size"]},outputs:{onChange:"onChange",onFocus:"onFocus",onBlur:"onBlur"},features:[nN([$c,F2,{provide:O2,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],decls:5,vars:20,consts:[["input",""],["type","checkbox",3,"focus","blur","change","checked","pBind"],[3,"pBind"],[3,"class","pBind"],["data-p-icon","check",3,"class","pBind"],["data-p-icon","check",3,"pBind"],["data-p-icon","minus",3,"pBind"],[4,"ngTemplateOutlet","ngTemplateOutletContext"]],template:function(i,n){i&1&&(Bc$1(0,"input",1,0),cu$1("focus",function(r){return n.onInputFocus(r)})("blur",function(r){return n.onInputBlur(r)})("change",function(r){return n.handleChange(r)}),bp$1(),Bc$1(2,"div",2),rM(3,Pc,2,2)(4,Ac,1,2,"ng-container"),bp$1()),i&2&&(PM(n.inputStyle()),jM(n.cn(n.cx("input"),n.inputClass())),zE("checked",n.checked())("pBind",n.ptm("input")),su$1("id",n.inputId())("value",n.value())("name",n.name())("tabindex",n.tabindex())("required",n.requiredAttr())("readonly",n.readonlyAttr())("disabled",n.disabledAttr())("aria-labelledby",n.ariaLabelledBy())("aria-label",n.ariaLabel()),n_(2),jM(n.cx("box")),zE("pBind",n.ptm("box")),su$1("data-p",n.dataP()),n_(),oM(n.iconTemplate()?4:3));},dependencies:[cA,iq,O1,N2,o1,L],encapsulation:2})}return t})(),m1=(()=>{class t{static \u0275fac=function(i){return new(i||t)};static \u0275mod=mn({type:t});static \u0275inj=$t({imports:[Wt,iq,iq]})}return t})();var Uc=(t,a)=>a[1].key||t;function Kc(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function qc(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function jc(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Wc(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Yc(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Zc(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Qc(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Xc(t,a){if(t&1&&rM(0,Kc,1,9,":svg:path")(1,qc,1,6,":svg:circle")(2,jc,1,9,":svg:rect")(3,Wc,1,7,":svg:line")(4,Yc,1,4,":svg:polyline")(5,Zc,1,4,":svg:polygon")(6,Qc,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var B2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$9;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","filter"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,Xc,7,1,null,null,Uc),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var Jc=(t,a)=>a[1].key||t;function e5(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function t5(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function i5(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function n5(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function o5(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function a5(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function l5(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function r5(t,a){if(t&1&&rM(0,e5,1,9,":svg:path")(1,t5,1,6,":svg:circle")(2,i5,1,9,":svg:rect")(3,n5,1,7,":svg:line")(4,o5,1,4,":svg:polyline")(5,a5,1,4,":svg:polygon")(6,l5,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var V2=(()=>{class t extends M4$2{constructor(){super(),this._icon=l;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","filter-fill"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,r5,7,1,null,null,Jc),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var s5=(t,a)=>a[1].key||t;function c5(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function d5(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function p5(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function u5(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function m5(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function f5(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function h5(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function g5(t,a){if(t&1&&rM(0,c5,1,9,":svg:path")(1,d5,1,6,":svg:circle")(2,p5,1,9,":svg:rect")(3,u5,1,7,":svg:line")(4,m5,1,4,":svg:polyline")(5,f5,1,4,":svg:polygon")(6,h5,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var P2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$g;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","plus"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,g5,7,1,null,null,s5),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var b5=(t,a)=>a[1].key||t;function _5(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function y5(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function v5(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function x5(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function C5(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function M5(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function w5(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function z5(t,a){if(t&1&&rM(0,_5,1,9,":svg:path")(1,y5,1,6,":svg:circle")(2,v5,1,9,":svg:rect")(3,x5,1,7,":svg:line")(4,C5,1,4,":svg:polyline")(5,M5,1,4,":svg:polygon")(6,w5,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var R2=(()=>{class t extends M4$2{constructor(){super(),this._icon=C$3;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","trash"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,z5,7,1,null,null,b5),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var k5=(t,a)=>a[1].key||t;function T5(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function D5(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function S5(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function I5(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function E5(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function N5(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function L5(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function F5(t,a){if(t&1&&rM(0,T5,1,9,":svg:path")(1,D5,1,6,":svg:circle")(2,S5,1,9,":svg:rect")(3,I5,1,7,":svg:line")(4,E5,1,4,":svg:polyline")(5,N5,1,4,":svg:polygon")(6,L5,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var A2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$f;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","calendar"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,F5,7,1,null,null,k5),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var O5=(t,a)=>a[1].key||t;function B5(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function V5(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function P5(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function R5(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function A5(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function H5(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function $5(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function G5(t,a){if(t&1&&rM(0,B5,1,9,":svg:path")(1,V5,1,6,":svg:circle")(2,P5,1,9,":svg:rect")(3,R5,1,7,":svg:line")(4,A5,1,4,":svg:polyline")(5,H5,1,4,":svg:polygon")(6,$5,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var H2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$e;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","chevron-left"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,G5,7,1,null,null,O5),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var U5=(t,a)=>a[1].key||t;function K5(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function q5(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function j5(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function W5(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Y5(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Z5(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Q5(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function X5(t,a){if(t&1&&rM(0,K5,1,9,":svg:path")(1,q5,1,6,":svg:circle")(2,j5,1,9,":svg:rect")(3,W5,1,7,":svg:line")(4,Y5,1,4,":svg:polyline")(5,Z5,1,4,":svg:polygon")(6,Q5,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var $2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$d;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","chevron-right"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,X5,7,1,null,null,U5),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var J5=(t,a)=>a[1].key||t;function e6(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function t6(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function i6(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function n6(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function o6(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function a6(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function l6(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function r6(t,a){if(t&1&&rM(0,e6,1,9,":svg:path")(1,t6,1,6,":svg:circle")(2,i6,1,9,":svg:rect")(3,n6,1,7,":svg:line")(4,o6,1,4,":svg:polyline")(5,a6,1,4,":svg:polygon")(6,l6,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var G2=(()=>{class t extends M4$2{constructor(){super(),this._icon=e$c;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","chevron-up"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,r6,7,1,null,null,J5),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var U2=` + .p-datepicker { + display: inline-flex; + max-width: 100%; + } + + .p-datepicker:has(.p-datepicker-dropdown) .p-datepicker-input { + border-start-end-radius: 0; + border-end-end-radius: 0; + } + + .p-datepicker-input { + flex: 1 1 auto; + width: 1%; + } + + .p-datepicker-dropdown { + cursor: pointer; + display: inline-flex; + user-select: none; + align-items: center; + justify-content: center; + overflow: hidden; + position: relative; + width: dt('datepicker.dropdown.width'); + border-start-end-radius: dt('datepicker.dropdown.border.radius'); + border-end-end-radius: dt('datepicker.dropdown.border.radius'); + background: dt('datepicker.dropdown.background'); + border: 1px solid dt('datepicker.dropdown.border.color'); + border-inline-start: 0 none; + color: dt('datepicker.dropdown.color'); + transition: + background dt('datepicker.transition.duration'), + color dt('datepicker.transition.duration'), + border-color dt('datepicker.transition.duration'), + outline-color dt('datepicker.transition.duration'); + outline-color: transparent; + } + + .p-datepicker-dropdown:not(:disabled):hover { + background: dt('datepicker.dropdown.hover.background'); + border-color: dt('datepicker.dropdown.hover.border.color'); + color: dt('datepicker.dropdown.hover.color'); + } + + .p-datepicker-dropdown:not(:disabled):active { + background: dt('datepicker.dropdown.active.background'); + border-color: dt('datepicker.dropdown.active.border.color'); + color: dt('datepicker.dropdown.active.color'); + } + + .p-datepicker-dropdown:focus-visible { + box-shadow: dt('datepicker.dropdown.focus.ring.shadow'); + outline: dt('datepicker.dropdown.focus.ring.width') dt('datepicker.dropdown.focus.ring.style') dt('datepicker.dropdown.focus.ring.color'); + outline-offset: dt('datepicker.dropdown.focus.ring.offset'); + } + + .p-datepicker:has(.p-datepicker-input-icon-container) { + position: relative; + } + + .p-datepicker:has(.p-datepicker-input-icon-container) .p-datepicker-input { + padding-inline-end: calc((dt('form.field.padding.x') * 2) + dt('icon.size')); + } + + .p-datepicker-input-icon-container { + cursor: pointer; + position: absolute; + top: 50%; + inset-inline-end: dt('form.field.padding.x'); + margin-block-start: calc(-1 * (dt('icon.size') / 2)); + color: dt('datepicker.input.icon.color'); + line-height: 1; + z-index: 1; + } + + .p-datepicker:has(.p-datepicker-input:disabled) .p-datepicker-input-icon-container { + cursor: default; + } + + .p-datepicker-fluid { + display: flex; + } + + .p-datepicker .p-datepicker-panel { + min-width: 100%; + } + + .p-datepicker-panel { + width: auto; + padding: dt('datepicker.panel.padding'); + background: dt('datepicker.panel.background'); + color: dt('datepicker.panel.color'); + border: 1px solid dt('datepicker.panel.border.color'); + border-radius: dt('datepicker.panel.border.radius'); + box-shadow: dt('datepicker.panel.shadow'); + } + + .p-datepicker-panel-inline { + display: inline-block; + overflow-x: auto; + box-shadow: none; + } + + .p-datepicker-header { + display: flex; + align-items: center; + justify-content: space-between; + padding: dt('datepicker.header.padding'); + background: dt('datepicker.header.background'); + color: dt('datepicker.header.color'); + border-block-end: 1px solid dt('datepicker.header.border.color'); + } + + .p-datepicker-next-button:dir(rtl) { + order: -1; + } + + .p-datepicker-prev-button:dir(rtl) { + order: 1; + } + + .p-datepicker-title { + display: flex; + align-items: center; + justify-content: space-between; + gap: dt('datepicker.title.gap'); + font-weight: dt('datepicker.title.font.weight'); + font-size: dt('datepicker.title.font.size'); + } + + .p-datepicker-select-year, + .p-datepicker-select-month { + border: none; + background: transparent; + margin: 0; + cursor: pointer; + font-weight: inherit; + transition: + background dt('datepicker.transition.duration'), + color dt('datepicker.transition.duration'), + border-color dt('datepicker.transition.duration'), + outline-color dt('datepicker.transition.duration'), + box-shadow dt('datepicker.transition.duration'); + } + + .p-datepicker-select-month { + padding: dt('datepicker.select.month.padding'); + color: dt('datepicker.select.month.color'); + border-radius: dt('datepicker.select.month.border.radius'); + font-weight: dt('datepicker.select.month.font.weight'); + font-size: dt('datepicker.select.month.font.size'); + } + + .p-datepicker-select-year { + padding: dt('datepicker.select.year.padding'); + color: dt('datepicker.select.year.color'); + border-radius: dt('datepicker.select.year.border.radius'); + font-weight: dt('datepicker.select.year.font.weight'); + font-size: dt('datepicker.select.year.font.size'); + } + + .p-datepicker-select-month:enabled:hover { + background: dt('datepicker.select.month.hover.background'); + color: dt('datepicker.select.month.hover.color'); + } + + .p-datepicker-select-year:enabled:hover { + background: dt('datepicker.select.year.hover.background'); + color: dt('datepicker.select.year.hover.color'); + } + + .p-datepicker-select-month:focus-visible, + .p-datepicker-select-year:focus-visible { + box-shadow: dt('datepicker.date.focus.ring.shadow'); + outline: dt('datepicker.date.focus.ring.width') dt('datepicker.date.focus.ring.style') dt('datepicker.date.focus.ring.color'); + outline-offset: dt('datepicker.date.focus.ring.offset'); + } + + .p-datepicker-calendar-container { + display: flex; + } + + .p-datepicker-calendar-container .p-datepicker-calendar { + flex: 1 1 auto; + border-inline-start: 1px solid dt('datepicker.group.border.color'); + padding-inline-end: dt('datepicker.group.gap'); + padding-inline-start: dt('datepicker.group.gap'); + } + + .p-datepicker-calendar-container .p-datepicker-calendar:first-child { + padding-inline-start: 0; + border-inline-start: 0 none; + } + + .p-datepicker-calendar-container .p-datepicker-calendar:last-child { + padding-inline-end: 0; + } + + .p-datepicker-day-view { + width: 100%; + border-collapse: collapse; + font-size: 1rem; + margin: dt('datepicker.day.view.margin'); + } + + .p-datepicker-weekday-cell { + padding: dt('datepicker.week.day.padding'); + } + + .p-datepicker-weekday { + font-weight: dt('datepicker.week.day.font.weight'); + font-size: dt('datepicker.week.day.font.size'); + color: dt('datepicker.week.day.color'); + } + + .p-datepicker-day-cell { + padding: dt('datepicker.date.padding'); + } + + .p-datepicker-day { + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + margin: 0 auto; + overflow: hidden; + position: relative; + width: dt('datepicker.date.width'); + height: dt('datepicker.date.height'); + border-radius: dt('datepicker.date.border.radius'); + transition: + background dt('datepicker.transition.duration'), + color dt('datepicker.transition.duration'), + border-color dt('datepicker.transition.duration'), + box-shadow dt('datepicker.transition.duration'), + outline-color dt('datepicker.transition.duration'); + border: 1px solid transparent; + outline-color: transparent; + color: dt('datepicker.date.color'); + font-weight: dt('datepicker.date.font.weight'); + font-size: dt('datepicker.date.font.size'); + } + + .p-datepicker-day:not(.p-datepicker-day-selected):not(.p-disabled):hover { + background: dt('datepicker.date.hover.background'); + color: dt('datepicker.date.hover.color'); + } + + .p-datepicker-day:focus-visible { + box-shadow: dt('datepicker.date.focus.ring.shadow'); + outline: dt('datepicker.date.focus.ring.width') dt('datepicker.date.focus.ring.style') dt('datepicker.date.focus.ring.color'); + outline-offset: dt('datepicker.date.focus.ring.offset'); + } + + .p-datepicker-day-selected { + background: dt('datepicker.date.selected.background'); + color: dt('datepicker.date.selected.color'); + } + + .p-datepicker-day-selected-range { + background: dt('datepicker.date.range.selected.background'); + color: dt('datepicker.date.range.selected.color'); + } + + .p-datepicker-today > .p-datepicker-day { + background: dt('datepicker.today.background'); + color: dt('datepicker.today.color'); + } + + .p-datepicker-today > .p-datepicker-day-selected { + background: dt('datepicker.date.selected.background'); + color: dt('datepicker.date.selected.color'); + } + + .p-datepicker-today > .p-datepicker-day-selected-range { + background: dt('datepicker.date.range.selected.background'); + color: dt('datepicker.date.range.selected.color'); + } + + .p-datepicker-weeknumber { + text-align: center; + } + + .p-datepicker-month-view { + margin: dt('datepicker.month.view.margin'); + } + + .p-datepicker-month { + width: 33.3%; + display: inline-flex; + align-items: center; + justify-content: center; + cursor: pointer; + overflow: hidden; + position: relative; + padding: dt('datepicker.month.padding'); + transition: + background dt('datepicker.transition.duration'), + color dt('datepicker.transition.duration'), + border-color dt('datepicker.transition.duration'), + box-shadow dt('datepicker.transition.duration'), + outline-color dt('datepicker.transition.duration'); + border-radius: dt('datepicker.month.border.radius'); + outline-color: transparent; + color: dt('datepicker.date.color'); + font-weight: dt('datepicker.date.font.weight'); + font-size: dt('datepicker.date.font.size'); + } + + .p-datepicker-month:not(.p-disabled):not(.p-datepicker-month-selected):hover { + color: dt('datepicker.date.hover.color'); + background: dt('datepicker.date.hover.background'); + } + + .p-datepicker-month-selected { + color: dt('datepicker.date.selected.color'); + background: dt('datepicker.date.selected.background'); + } + + .p-datepicker-month:not(.p-disabled):focus-visible { + box-shadow: dt('datepicker.date.focus.ring.shadow'); + outline: dt('datepicker.date.focus.ring.width') dt('datepicker.date.focus.ring.style') dt('datepicker.date.focus.ring.color'); + outline-offset: dt('datepicker.date.focus.ring.offset'); + } + + .p-datepicker-year-view { + margin: dt('datepicker.year.view.margin'); + } + + .p-datepicker-year { + width: 50%; + display: inline-flex; + align-items: center; + justify-content: center; + cursor: pointer; + overflow: hidden; + position: relative; + padding: dt('datepicker.year.padding'); + transition: + background dt('datepicker.transition.duration'), + color dt('datepicker.transition.duration'), + border-color dt('datepicker.transition.duration'), + box-shadow dt('datepicker.transition.duration'), + outline-color dt('datepicker.transition.duration'); + border-radius: dt('datepicker.year.border.radius'); + outline-color: transparent; + color: dt('datepicker.date.color'); + font-weight: dt('datepicker.date.font.weight'); + font-size: dt('datepicker.date.font.size'); + } + + .p-datepicker-year:not(.p-disabled):not(.p-datepicker-year-selected):hover { + color: dt('datepicker.date.hover.color'); + background: dt('datepicker.date.hover.background'); + } + + .p-datepicker-year-selected { + color: dt('datepicker.date.selected.color'); + background: dt('datepicker.date.selected.background'); + } + + .p-datepicker-year:not(.p-disabled):focus-visible { + box-shadow: dt('datepicker.date.focus.ring.shadow'); + outline: dt('datepicker.date.focus.ring.width') dt('datepicker.date.focus.ring.style') dt('datepicker.date.focus.ring.color'); + outline-offset: dt('datepicker.date.focus.ring.offset'); + } + + .p-datepicker-buttonbar { + display: flex; + justify-content: space-between; + align-items: center; + padding: dt('datepicker.buttonbar.padding'); + border-block-start: 1px solid dt('datepicker.buttonbar.border.color'); + } + + .p-datepicker-buttonbar .p-button { + width: auto; + } + + .p-datepicker-time-picker { + display: flex; + justify-content: center; + align-items: center; + border-block-start: 1px solid dt('datepicker.time.picker.border.color'); + padding: 0; + gap: dt('datepicker.time.picker.gap'); + } + + .p-datepicker-calendar-container + .p-datepicker-time-picker { + padding: dt('datepicker.time.picker.padding'); + margin-block-start: dt('datepicker.time.picker.gap'); + } + + .p-datepicker-time-picker > div { + display: flex; + align-items: center; + flex-direction: column; + gap: dt('datepicker.time.picker.button.gap'); + } + + .p-datepicker-time-picker span { + color: dt('datepicker.time.picker.color'); + font-weight: dt('datepicker.time.picker.font.weight'); + font-size: dt('datepicker.time.picker.font.size'); + } + + .p-datepicker-timeonly .p-datepicker-time-picker { + border-block-start: 0 none; + } + + .p-datepicker-time-picker:dir(rtl) { + flex-direction: row-reverse; + } + + .p-datepicker:has(.p-inputtext-sm) .p-datepicker-dropdown { + width: dt('datepicker.dropdown.sm.width'); + } + + .p-datepicker:has(.p-inputtext-sm) .p-datepicker-dropdown .p-icon, + .p-datepicker:has(.p-inputtext-sm) .p-datepicker-input-icon { + font-size: dt('form.field.sm.font.size'); + width: dt('form.field.sm.font.size'); + height: dt('form.field.sm.font.size'); + } + + .p-datepicker:has(.p-inputtext-lg) .p-datepicker-dropdown { + width: dt('datepicker.dropdown.lg.width'); + } + + .p-datepicker:has(.p-inputtext-lg) .p-datepicker-dropdown .p-icon, + .p-datepicker:has(.p-inputtext-lg) .p-datepicker-input-icon { + font-size: dt('form.field.lg.font.size'); + width: dt('form.field.lg.font.size'); + height: dt('form.field.lg.font.size'); + } + + .p-datepicker-clear-icon { + position: absolute; + top: 50%; + margin-top: calc(-1 * dt('icon.size') / 2); + cursor: pointer; + color: dt('form.field.icon.color'); + inset-inline-end: dt('form.field.padding.x'); + } + + .p-datepicker:has(.p-datepicker-dropdown) .p-datepicker-clear-icon { + inset-inline-end: calc(dt('datepicker.dropdown.width') + dt('form.field.padding.x')); + } + + .p-datepicker:has(.p-datepicker-input-icon-container) .p-datepicker-clear-icon { + inset-inline-end: calc((dt('form.field.padding.x') * 2) + dt('icon.size')); + } + + .p-datepicker:has(.p-datepicker-clear-icon) .p-datepicker-input { + padding-inline-end: calc((dt('form.field.padding.x') * 2) + dt('icon.size')); + } + + .p-datepicker:has(.p-datepicker-input-icon-container):has(.p-datepicker-clear-icon) .p-datepicker-input { + padding-inline-end: calc((dt('form.field.padding.x') * 3) + calc(dt('icon.size') * 2)); + } + + .p-inputgroup .p-datepicker-dropdown { + border-radius: 0; + } + + .p-inputgroup > .p-datepicker:last-child:has(.p-datepicker-dropdown) > .p-datepicker-input { + border-start-end-radius: 0; + border-end-end-radius: 0; + } + + .p-inputgroup > .p-datepicker:last-child .p-datepicker-dropdown { + border-start-end-radius: dt('datepicker.dropdown.border.radius'); + border-end-end-radius: dt('datepicker.dropdown.border.radius'); + } +`;var s6=["date"],c6=["header"],d6=["footer"],p6=["disabledDate"],u6=["decade"],m6=["previousicon"],f6=["nexticon"],h6=["triggericon"],g6=["clearicon"],b6=["decrementicon"],_6=["incrementicon"],y6=["inputicon"],v6=["buttonbar"],x6=["inputfield"],C6=["contentWrapper"],M6=[[["p-header"]],[["p-footer"]]],w6=["p-header","p-footer"],z6=t=>({date:t}),k6=(t,a)=>({month:t,index:a}),T6=t=>({year:t}),D6=(t,a)=>a.day;function S6(t,a){if(t&1){let e=hM();Gm$1(),Bc$1(0,"svg",9),cu$1("click",function(){Rm$1(e);let n=EM(3);return xm$1(n.clear())}),bp$1();}if(t&2){let e=EM(3);jM(e.cx("clearIcon")),zE("pBind",e.ptm("inputIcon"));}}function I6(t,a){}function E6(t,a){t&1&&VE(0,I6,0,0,"ng-template");}function N6(t,a){if(t&1){let e=hM();Bc$1(0,"span",3),cu$1("click",function(){Rm$1(e);let n=EM(3);return xm$1(n.clear())}),VE(1,E6,1,0,null,4),bp$1();}if(t&2){let e=EM(3);jM(e.cx("clearIcon")),zE("pBind",e.ptm("inputIcon")),n_(),zE("ngTemplateOutlet",e.clearIconTemplate());}}function L6(t,a){if(t&1&&rM(0,S6,1,3,":svg:svg",8)(1,N6,2,4,"span",5),t&2){let e=EM(2);oM(e.clearIconTemplate()?1:0);}}function F6(t,a){if(t&1&&au$1(0,"span",11),t&2){let e=EM(3);jM(e.icon()),zE("pBind",e.ptm("dropdownIcon"));}}function O6(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",12)),t&2){let e=EM(4);zE("pBind",e.ptm("dropdownIcon"));}}function B6(t,a){}function V6(t,a){t&1&&VE(0,B6,0,0,"ng-template");}function P6(t,a){if(t&1&&(rM(0,O6,1,1,":svg:svg",12),VE(1,V6,1,0,null,4)),t&2){let e=EM(3);oM(e.triggerIconTemplate()?-1:0),n_(),zE("ngTemplateOutlet",e.triggerIconTemplate());}}function R6(t,a){if(t&1){let e=hM();Bc$1(0,"button",10),cu$1("click",function(n){Rm$1(e),EM();let o=CM(1),r=EM();return xm$1(r.onButtonClick(n,o))}),rM(1,F6,1,3,"span",5)(2,P6,2,2),bp$1();}if(t&2){let e=EM(2);jM(e.cx("dropdown")),zE("disabled",e.$disabled())("pBind",e.ptm("dropdown")),su$1("aria-label",e.iconButtonAriaLabel)("aria-expanded",e.overlayVisible())("aria-controls",e.ariaControlsAttr()),n_(),oM(e.icon()?1:2);}}function A6(t,a){if(t&1){let e=hM();Gm$1(),Bc$1(0,"svg",15),cu$1("click",function(n){Rm$1(e);let o=EM(3);return xm$1(o.onButtonClick(n))}),bp$1();}if(t&2){let e=EM(3);jM(e.cx("inputIcon")),zE("pBind",e.ptm("inputIcon"));}}function H6(t,a){t&1&&qE(0);}function $6(t,a){if(t&1&&(Bc$1(0,"span",11),rM(1,A6,1,3,":svg:svg",13),VE(2,H6,1,0,"ng-container",14),bp$1()),t&2){let e=EM(2);jM(e.cx("inputIconContainer")),zE("pBind",e.ptm("inputIconContainer")),su$1("data-p",e.inputIconDataP),n_(),oM(e.inputIconTemplate()?-1:1),n_(),zE("ngTemplateOutlet",e.inputIconTemplate())("ngTemplateOutletContext",e.inputIconTemplateContext());}}function G6(t,a){if(t&1){let e=hM();Bc$1(0,"input",6,1),cu$1("focus",function(n){Rm$1(e);let o=EM();return xm$1(o.onInputFocus(n))})("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onInputKeydown(n))})("click",function(){Rm$1(e);let n=EM();return xm$1(n.onInputClick())})("blur",function(n){Rm$1(e);let o=EM();return xm$1(o.onInputBlur(n))})("input",function(n){Rm$1(e);let o=EM();return xm$1(o.onUserInput(n))}),bp$1(),rM(2,L6,2,1),rM(3,R6,3,8,"button",7),rM(4,$6,3,7,"span",5);}if(t&2){let e=EM();PM(e.inputStyle()),jM(e.cn(e.cx("pcInputText"),e.inputStyleClass())),zE("pSize",e.size())("value",e.inputFieldValue())("pAutoFocus",e.autofocus())("variant",e.$variant())("fluid",e.hasFluid)("invalid",e.invalid())("pt",e.ptm("pcInputText"))("unstyled",e.unstyled()),su$1("size",e.inputSize())("id",e.inputId())("name",e.name())("aria-required",e.required())("aria-expanded",e.overlayVisible())("aria-controls",e.ariaControlsAttr())("aria-labelledby",e.ariaLabelledBy())("aria-label",e.ariaLabel())("required",e.requiredAttr())("readonly",e.readonlyAttr())("disabled",e.disabledAttr())("placeholder",e.placeholder())("tabindex",e.tabindex())("inputmode",e.inputModeAttr()),n_(2),oM(e.showClearIcon()?2:-1),n_(),oM(e.showIconButton()?3:-1),n_(),oM(e.showInputIcon()?4:-1);}}function U6(t,a){t&1&&qE(0);}function K6(t,a){t&1&&(Gm$1(),au$1(0,"svg",17));}function q6(t,a){}function j6(t,a){t&1&&VE(0,q6,0,0,"ng-template");}function W6(t,a){if(t&1&&(Bc$1(0,"span"),VE(1,j6,1,0,null,4),bp$1()),t&2){let e=EM(3);n_(),zE("ngTemplateOutlet",e.previousIconTemplate());}}function Y6(t,a){if(t&1){let e=hM();Bc$1(0,"button",21),cu$1("click",function(n){Rm$1(e);let o=EM(3);return xm$1(o.switchToMonthView(n))})("keydown",function(n){Rm$1(e);let o=EM(3);return xm$1(o.onContainerButtonKeydown(n))}),YM(1),bp$1();}if(t&2){let e=EM().$implicit,i=EM(2);jM(i.cx("selectMonth")),zE("pBind",i.ptm("selectMonth")),su$1("disabled",i.switchViewButtonDisabledAttr())("aria-label",i.translate("chooseMonth"))("data-pc-group-section","navigator"),n_(),xp$1(" ",i.getMonthName(e.month)," ");}}function Z6(t,a){if(t&1){let e=hM();Bc$1(0,"button",21),cu$1("click",function(n){Rm$1(e);let o=EM(3);return xm$1(o.switchToYearView(n))})("keydown",function(n){Rm$1(e);let o=EM(3);return xm$1(o.onContainerButtonKeydown(n))}),YM(1),bp$1();}if(t&2){let e=EM().$implicit,i=EM(2);jM(i.cx("selectYear")),zE("pBind",i.ptm("selectYear")),su$1("disabled",i.switchViewButtonDisabledAttr())("aria-label",i.translate("chooseYear"))("data-pc-group-section","navigator"),n_(),xp$1(" ",i.getYear(e)," ");}}function Q6(t,a){if(t&1&&YM(0),t&2){let e=EM(4);pD(" ",e.yearPickerValues()[0]," - ",e.yearPickerValues()[e.yearPickerValues().length-1]," ");}}function X6(t,a){t&1&&qE(0);}function J6(t,a){if(t&1&&(Bc$1(0,"span",11),rM(1,Q6,1,2),VE(2,X6,1,0,"ng-container",14),bp$1()),t&2){let e=EM(3);jM(e.cx("decade")),zE("pBind",e.ptm("decade")),n_(),oM(e.decadeTemplate()?-1:1),n_(),zE("ngTemplateOutlet",e.decadeTemplate())("ngTemplateOutletContext",e.decadeTemplateContext());}}function ed(t,a){t&1&&(Gm$1(),au$1(0,"svg",19));}function td(t,a){}function id(t,a){t&1&&VE(0,td,0,0,"ng-template");}function nd(t,a){if(t&1&&VE(0,id,1,0,null,4),t&2){let e=EM(3);zE("ngTemplateOutlet",e.nextIconTemplate());}}function od(t,a){if(t&1&&(Bc$1(0,"th",11)(1,"span",11),YM(2),bp$1()()),t&2){let e=EM(4);jM(e.cx("weekHeader")),zE("pBind",e.ptm("weekHeader")),n_(),zE("pBind",e.ptm("weekHeaderLabel")),n_(),fD(e.translate("weekHeader"));}}function ad(t,a){if(t&1&&(Bc$1(0,"th",24)(1,"span",11),YM(2),bp$1()()),t&2){let e=a.$implicit,i=EM(4);jM(i.cx("weekDayCell")),zE("pBind",i.ptm("weekDayCell")),n_(),jM(i.cx("weekDay")),zE("pBind",i.ptm("weekDay")),n_(),fD(e);}}function ld(t,a){if(t&1&&(Bc$1(0,"td",11)(1,"span",11),YM(2),bp$1()()),t&2){let e=EM().$index,i=EM(2).$implicit,n=EM(2);jM(n.cx("weekNumber")),zE("pBind",n.ptm("weekNumber")),n_(),jM(n.cx("weekLabelContainer")),zE("pBind",n.ptm("weekLabelContainer")),n_(),xp$1(" ",i.weekNumbers[e]," ");}}function rd(t,a){if(t&1&&YM(0),t&2){let e=EM(2).$implicit;xp$1(" ",e.day," ");}}function sd(t,a){t&1&&qE(0);}function cd(t,a){if(t&1&&VE(0,sd,1,0,"ng-container",14),t&2){let e=EM(2).$implicit,i=EM(5);zE("ngTemplateOutlet",i.dateTemplate())("ngTemplateOutletContext",i.getDateTemplateContext(e));}}function dd(t,a){t&1&&qE(0);}function pd(t,a){if(t&1&&VE(0,dd,1,0,"ng-container",14),t&2){let e=EM(2).$implicit,i=EM(5);zE("ngTemplateOutlet",i.disabledDateTemplate())("ngTemplateOutletContext",i.getDateTemplateContext(e));}}function ud(t,a){if(t&1&&(Bc$1(0,"div",26),YM(1),bp$1()),t&2){let e=EM(2).$implicit;n_(),xp$1(" ",e.day," ");}}function md(t,a){if(t&1){let e=hM();Bc$1(0,"span",25),cu$1("click",function(n){Rm$1(e);let o=EM().$implicit,r=EM(5);return xm$1(r.onDateSelect(n,o))})("keydown",function(n){Rm$1(e);let o=EM().$implicit,r=EM(3).$index,u=EM(2);return xm$1(u.onDateCellKeydown(n,o,r))}),rM(1,rd,1,1),rM(2,cd,1,2,"ng-container"),rM(3,pd,1,2,"ng-container"),bp$1(),rM(4,ud,2,1,"div",26);}if(t&2){let e=EM().$implicit,i=EM(5);jM(i.dayClass(e)),zE("pBind",i.ptm("day")),su$1("data-date",i.formatDateKey(i.formatDateMetaToDate(e))),n_(),oM(!i.dateTemplate()&&(e.selectable||!i.disabledDateTemplate())?1:-1),n_(),oM(e.selectable||!i.disabledDateTemplate()?2:-1),n_(),oM(e.selectable?-1:3),n_(),oM(i.isSelected(e)?4:-1);}}function fd(t,a){if(t&1&&(Bc$1(0,"td",11),rM(1,md,5,8),bp$1()),t&2){let e=a.$implicit,i=EM(5);jM(i.cx("dayCell",oN(5,z6,e))),zE("pBind",i.ptm("dayCell")),su$1("aria-label",e.day),n_(),oM(!e.otherMonth||i.showOtherMonths()?1:-1);}}function hd(t,a){if(t&1&&(Bc$1(0,"tr",11),rM(1,ld,3,7,"td",5),aM(2,fd,2,7,"td",5,D6),bp$1()),t&2){let e=a.$implicit,i=EM(4);zE("pBind",i.ptm("tableBodyRow")),n_(),oM(i.showWeek()?1:-1),n_(),cM(e);}}function gd(t,a){if(t&1&&(Bc$1(0,"table",22)(1,"thead",11)(2,"tr",11),rM(3,od,3,5,"th",5),aM(4,ad,3,7,"th",23,sM),bp$1()(),Bc$1(6,"tbody",11),aM(7,hd,4,2,"tr",11,iM),bp$1()()),t&2){let e=EM().$implicit,i=EM(2);jM(i.cx("dayView")),zE("pBind",i.ptm("table")),n_(),zE("pBind",i.ptm("tableHeader")),n_(),zE("pBind",i.ptm("tableHeaderRow")),n_(),oM(i.showWeek()?3:-1),n_(),cM(i.weekDays()),n_(2),zE("pBind",i.ptm("tableBody")),n_(),cM(e.dates);}}function bd(t,a){if(t&1){let e=hM();Bc$1(0,"div",11)(1,"div",11)(2,"button",16),cu$1("keydown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onContainerButtonKeydown(n))})("click",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onPrevButtonClick(n))}),rM(3,K6,1,0,":svg:svg",17)(4,W6,2,1,"span"),bp$1(),Bc$1(5,"div",11),rM(6,Y6,2,7,"button",18),rM(7,Z6,2,7,"button",18),rM(8,J6,3,6,"span",5),bp$1(),Bc$1(9,"button",16),cu$1("keydown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onContainerButtonKeydown(n))})("click",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onNextButtonClick(n))}),rM(10,ed,1,0,":svg:svg",19)(11,nd,1,1),bp$1()(),rM(12,gd,9,7,"table",20),bp$1();}if(t&2){let e=a.$index,i=EM(2);jM(i.cx("calendar")),zE("pBind",i.ptm("calendar")),n_(),jM(i.cx("header")),zE("pBind",i.ptm("header")),n_(),PM(i.getPrevButtonStyle(e)),jM(i.cx("pcPrevButton")),zE("pButtonPT",i.ptm("pcPrevButton")),su$1("aria-label",i.prevIconAriaLabel)("data-pc-group-section","navigator"),n_(),oM(i.previousIconTemplate()?4:3),n_(2),jM(i.cx("title")),zE("pBind",i.ptm("title")),n_(),oM(i.currentView()==="date"?6:-1),n_(),oM(i.currentView()!=="year"?7:-1),n_(),oM(i.currentView()==="year"?8:-1),n_(),PM(i.getNextButtonStyle(e)),jM(i.cx("pcNextButton")),zE("pButtonPT",i.ptm("pcNextButton")),su$1("aria-label",i.nextIconAriaLabel)("data-pc-group-section","navigator"),n_(),oM(i.nextIconTemplate()?11:10),n_(2),oM(i.currentView()==="date"?12:-1);}}function _d(t,a){if(t&1&&(Bc$1(0,"div",26),YM(1),bp$1()),t&2){let e=EM().$implicit;n_(),xp$1(" ",e," ");}}function yd(t,a){if(t&1){let e=hM();Bc$1(0,"span",28),cu$1("click",function(n){let o=Rm$1(e).$index,r=EM(3);return xm$1(r.onMonthSelect(n,o))})("keydown",function(n){let o=Rm$1(e).$index,r=EM(3);return xm$1(r.onMonthCellKeydown(n,o))}),YM(1),rM(2,_d,2,1,"div",26),bp$1();}if(t&2){let e=a.$implicit,i=a.$index,n=EM(3);jM(n.cx("month",iN(5,k6,e,i))),zE("pBind",n.ptm("month")),n_(),xp$1(" ",e," "),n_(),oM(n.isMonthSelected(i)?2:-1);}}function vd(t,a){if(t&1&&(Bc$1(0,"div",11),aM(1,yd,3,8,"span",27,sM),bp$1()),t&2){let e=EM(2);jM(e.cx("monthView")),zE("pBind",e.ptm("monthView")),n_(),cM(e.monthPickerValues());}}function xd(t,a){if(t&1&&(Bc$1(0,"div",26),YM(1),bp$1()),t&2){let e=EM().$implicit;n_(),xp$1(" ",e," ");}}function Cd(t,a){if(t&1){let e=hM();Bc$1(0,"span",28),cu$1("click",function(n){let o=Rm$1(e).$implicit,r=EM(3);return xm$1(r.onYearSelect(n,o))})("keydown",function(n){let o=Rm$1(e).$implicit,r=EM(3);return xm$1(r.onYearCellKeydown(n,o))}),YM(1),rM(2,xd,2,1,"div",26),bp$1();}if(t&2){let e=a.$implicit,i=EM(3);jM(i.cx("year",oN(5,T6,e))),zE("pBind",i.ptm("year")),n_(),xp$1(" ",e," "),n_(),oM(i.isYearSelected(e)?2:-1);}}function Md(t,a){if(t&1&&(Bc$1(0,"div",11),aM(1,Cd,3,7,"span",27,iM),bp$1()),t&2){let e=EM(2);jM(e.cx("yearView")),zE("pBind",e.ptm("yearView")),n_(),cM(e.yearPickerValues());}}function wd(t,a){if(t&1&&(Bc$1(0,"div",11),aM(1,bd,13,29,"div",5,iM),bp$1(),rM(3,vd,3,3,"div",5),rM(4,Md,3,3,"div",5)),t&2){let e=EM();jM(e.cx("calendarContainer")),zE("pBind",e.ptm("calendarContainer")),n_(),cM(e.months()),n_(2),oM(e.currentView()==="month"?3:-1),n_(),oM(e.currentView()==="year"?4:-1);}}function zd(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",30)),t&2){let e=EM(2);zE("pBind",e.ptm("pcIncrementButton").icon);}}function kd(t,a){}function Td(t,a){t&1&&VE(0,kd,0,0,"ng-template");}function Dd(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",31)),t&2){let e=EM(2);zE("pBind",e.ptm("pcDecrementButton").icon);}}function Sd(t,a){}function Id(t,a){t&1&&VE(0,Sd,0,0,"ng-template");}function Ed(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",30)),t&2){let e=EM(2);zE("pBind",e.ptm("pcIncrementButton").icon);}}function Nd(t,a){}function Ld(t,a){t&1&&VE(0,Nd,0,0,"ng-template");}function Fd(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",31)),t&2){let e=EM(2);zE("pBind",e.ptm("pcDecrementButton").icon);}}function Od(t,a){}function Bd(t,a){t&1&&VE(0,Od,0,0,"ng-template");}function Vd(t,a){if(t&1&&(Bc$1(0,"div",11)(1,"span",11),YM(2),bp$1()()),t&2){let e=EM(2);jM(e.cx("separator")),zE("pBind",e.ptm("separatorContainer")),n_(),zE("pBind",e.ptm("separator")),n_(),fD(e.timeSeparator());}}function Pd(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",30)),t&2){let e=EM(3);zE("pBind",e.ptm("pcIncrementButton").icon);}}function Rd(t,a){}function Ad(t,a){t&1&&VE(0,Rd,0,0,"ng-template");}function Hd(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",31)),t&2){let e=EM(3);zE("pBind",e.ptm("pcDecrementButton").icon);}}function $d(t,a){}function Gd(t,a){t&1&&VE(0,$d,0,0,"ng-template");}function Ud(t,a){if(t&1){let e=hM();Bc$1(0,"div",11)(1,"button",29),cu$1("keydown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onContainerButtonKeydown(n))})("keydown.enter",function(n){Rm$1(e);let o=EM(2);return xm$1(o.incrementSecond(n))})("keydown.space",function(n){Rm$1(e);let o=EM(2);return xm$1(o.incrementSecond(n))})("mousedown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onTimePickerElementMouseDown(n,2,1))})("mouseup",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.enter",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.space",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onTimePickerElementMouseUp(n))})("mouseleave",function(){Rm$1(e);let n=EM(2);return xm$1(n.onTimePickerElementMouseLeave())}),rM(2,Pd,1,1,":svg:svg",30),VE(3,Ad,1,0,null,4),bp$1(),Bc$1(4,"span",11),YM(5),bp$1(),Bc$1(6,"button",29),cu$1("keydown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onContainerButtonKeydown(n))})("keydown.enter",function(n){Rm$1(e);let o=EM(2);return xm$1(o.decrementSecond(n))})("keydown.space",function(n){Rm$1(e);let o=EM(2);return xm$1(o.decrementSecond(n))})("mousedown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onTimePickerElementMouseDown(n,2,-1))})("mouseup",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.enter",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.space",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onTimePickerElementMouseUp(n))})("mouseleave",function(){Rm$1(e);let n=EM(2);return xm$1(n.onTimePickerElementMouseLeave())}),rM(7,Hd,1,1,":svg:svg",31),VE(8,Gd,1,0,null,4),bp$1()();}if(t&2){let e=EM(2);jM(e.cx("secondPicker")),zE("pBind",e.ptm("secondPicker")),n_(),jM(e.cx("pcIncrementButton")),zE("pButtonPT",e.ptm("pcIncrementButton")),su$1("aria-label",e.translate("nextSecond"))("data-pc-group-section","timepickerbutton"),n_(),oM(e.incrementIconTemplate()?-1:2),n_(),zE("ngTemplateOutlet",e.incrementIconTemplate()),n_(),zE("pBind",e.ptm("second")),n_(),fD(e.formattedSecond()),n_(),jM(e.cx("pcDecrementButton")),zE("pButtonPT",e.ptm("pcDecrementButton")),su$1("aria-label",e.translate("prevSecond"))("data-pc-group-section","timepickerbutton"),n_(),oM(e.decrementIconTemplate()?-1:7),n_(),zE("ngTemplateOutlet",e.decrementIconTemplate());}}function Kd(t,a){if(t&1&&(Bc$1(0,"div",11)(1,"span",11),YM(2),bp$1()()),t&2){let e=EM(2);jM(e.cx("separator")),zE("pBind",e.ptm("separatorContainer")),n_(),zE("pBind",e.ptm("separator")),n_(),fD(e.timeSeparator());}}function qd(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",30)),t&2){let e=EM(3);zE("pBind",e.ptm("pcIncrementButton").icon);}}function jd(t,a){}function Wd(t,a){t&1&&VE(0,jd,0,0,"ng-template");}function Yd(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",31)),t&2){let e=EM(3);zE("pBind",e.ptm("pcDecrementButton").icon);}}function Zd(t,a){}function Qd(t,a){t&1&&VE(0,Zd,0,0,"ng-template");}function Xd(t,a){if(t&1){let e=hM();Bc$1(0,"div",11)(1,"button",33),cu$1("keydown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onContainerButtonKeydown(n))})("click",function(n){Rm$1(e);let o=EM(2);return xm$1(o.toggleAMPM(n))})("keydown.enter",function(n){Rm$1(e);let o=EM(2);return xm$1(o.toggleAMPM(n))}),rM(2,qd,1,1,":svg:svg",30),VE(3,Wd,1,0,null,4),bp$1(),Bc$1(4,"span",11),YM(5),bp$1(),Bc$1(6,"button",33),cu$1("keydown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onContainerButtonKeydown(n))})("click",function(n){Rm$1(e);let o=EM(2);return xm$1(o.toggleAMPM(n))})("keydown.enter",function(n){Rm$1(e);let o=EM(2);return xm$1(o.toggleAMPM(n))}),rM(7,Yd,1,1,":svg:svg",31),VE(8,Qd,1,0,null,4),bp$1()();}if(t&2){let e=EM(2);jM(e.cx("ampmPicker")),zE("pBind",e.ptm("ampmPicker")),n_(),jM(e.cx("pcIncrementButton")),zE("pButtonPT",e.ptm("pcIncrementButton")),su$1("aria-label",e.translate("am"))("data-pc-group-section","timepickerbutton"),n_(),oM(e.incrementIconTemplate()?-1:2),n_(),zE("ngTemplateOutlet",e.incrementIconTemplate()),n_(),zE("pBind",e.ptm("ampm")),n_(),fD(e.ampmLabel()),n_(),jM(e.cx("pcDecrementButton")),zE("pButtonPT",e.ptm("pcDecrementButton")),su$1("aria-label",e.translate("pm"))("data-pc-group-section","timepickerbutton"),n_(),oM(e.decrementIconTemplate()?-1:7),n_(),zE("ngTemplateOutlet",e.decrementIconTemplate());}}function Jd(t,a){if(t&1){let e=hM();Bc$1(0,"div",11)(1,"div",11)(2,"button",29),cu$1("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onContainerButtonKeydown(n))})("keydown.enter",function(n){Rm$1(e);let o=EM();return xm$1(o.incrementHour(n))})("keydown.space",function(n){Rm$1(e);let o=EM();return xm$1(o.incrementHour(n))})("mousedown",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseDown(n,0,1))})("mouseup",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.enter",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.space",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("mouseleave",function(){Rm$1(e);let n=EM();return xm$1(n.onTimePickerElementMouseLeave())}),rM(3,zd,1,1,":svg:svg",30),VE(4,Td,1,0,null,4),bp$1(),Bc$1(5,"span",11),YM(6),bp$1(),Bc$1(7,"button",29),cu$1("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onContainerButtonKeydown(n))})("keydown.enter",function(n){Rm$1(e);let o=EM();return xm$1(o.decrementHour(n))})("keydown.space",function(n){Rm$1(e);let o=EM();return xm$1(o.decrementHour(n))})("mousedown",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseDown(n,0,-1))})("mouseup",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.enter",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.space",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("mouseleave",function(){Rm$1(e);let n=EM();return xm$1(n.onTimePickerElementMouseLeave())}),rM(8,Dd,1,1,":svg:svg",31),VE(9,Id,1,0,null,4),bp$1()(),Bc$1(10,"div",32)(11,"span",11),YM(12),bp$1()(),Bc$1(13,"div",11)(14,"button",29),cu$1("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onContainerButtonKeydown(n))})("keydown.enter",function(n){Rm$1(e);let o=EM();return xm$1(o.incrementMinute(n))})("keydown.space",function(n){Rm$1(e);let o=EM();return xm$1(o.incrementMinute(n))})("mousedown",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseDown(n,1,1))})("mouseup",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.enter",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.space",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("mouseleave",function(){Rm$1(e);let n=EM();return xm$1(n.onTimePickerElementMouseLeave())}),rM(15,Ed,1,1,":svg:svg",30),VE(16,Ld,1,0,null,4),bp$1(),Bc$1(17,"span",11),YM(18),bp$1(),Bc$1(19,"button",29),cu$1("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onContainerButtonKeydown(n))})("keydown.enter",function(n){Rm$1(e);let o=EM();return xm$1(o.decrementMinute(n))})("keydown.space",function(n){Rm$1(e);let o=EM();return xm$1(o.decrementMinute(n))})("mousedown",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseDown(n,1,-1))})("mouseup",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.enter",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("keyup.space",function(n){Rm$1(e);let o=EM();return xm$1(o.onTimePickerElementMouseUp(n))})("mouseleave",function(){Rm$1(e);let n=EM();return xm$1(n.onTimePickerElementMouseLeave())}),rM(20,Fd,1,1,":svg:svg",31),VE(21,Bd,1,0,null,4),bp$1()(),rM(22,Vd,3,5,"div",5),rM(23,Ud,9,19,"div",5),rM(24,Kd,3,5,"div",5),rM(25,Xd,9,19,"div",5),bp$1();}if(t&2){let e=EM();jM(e.cx("timePicker")),zE("pBind",e.ptm("timePicker")),n_(),jM(e.cx("hourPicker")),zE("pBind",e.ptm("hourPicker")),n_(),jM(e.cx("pcIncrementButton")),zE("pButtonPT",e.ptm("pcIncrementButton")),su$1("aria-label",e.translate("nextHour"))("data-pc-group-section","timepickerbutton"),n_(),oM(e.incrementIconTemplate()?-1:3),n_(),zE("ngTemplateOutlet",e.incrementIconTemplate()),n_(),zE("pBind",e.ptm("hour")),n_(),fD(e.formattedHour()),n_(),jM(e.cx("pcDecrementButton")),zE("pButtonPT",e.ptm("pcDecrementButton")),su$1("aria-label",e.translate("prevHour"))("data-pc-group-section","timepickerbutton"),n_(),oM(e.decrementIconTemplate()?-1:8),n_(),zE("ngTemplateOutlet",e.decrementIconTemplate()),n_(),zE("pBind",e.ptm("separatorContainer")),n_(),zE("pBind",e.ptm("separator")),n_(),fD(e.timeSeparator()),n_(),jM(e.cx("minutePicker")),zE("pBind",e.ptm("minutePicker")),n_(),jM(e.cx("pcIncrementButton")),zE("pButtonPT",e.ptm("pcIncrementButton")),su$1("aria-label",e.translate("nextMinute"))("data-pc-group-section","timepickerbutton"),n_(),oM(e.incrementIconTemplate()?-1:15),n_(),zE("ngTemplateOutlet",e.incrementIconTemplate()),n_(),zE("pBind",e.ptm("minute")),n_(),fD(e.formattedMinute()),n_(),jM(e.cx("pcDecrementButton")),zE("pButtonPT",e.ptm("pcDecrementButton")),su$1("aria-label",e.translate("prevMinute"))("data-pc-group-section","timepickerbutton"),n_(),oM(e.decrementIconTemplate()?-1:20),n_(),zE("ngTemplateOutlet",e.decrementIconTemplate()),n_(),oM(e.showSeconds()?22:-1),n_(),oM(e.showSeconds()?23:-1),n_(),oM(e.isHourFormat12()?24:-1),n_(),oM(e.isHourFormat12()?25:-1);}}function e8(t,a){t&1&&qE(0);}function t8(t,a){if(t&1&&VE(0,e8,1,0,"ng-container",14),t&2){let e=EM(2);zE("ngTemplateOutlet",e.buttonBarTemplate())("ngTemplateOutletContext",e.buttonBarTemplateContext());}}function i8(t,a){if(t&1){let e=hM();Bc$1(0,"button",34),cu$1("keydown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onContainerButtonKeydown(n))})("click",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onTodayButtonClick(n))}),YM(1),bp$1(),Bc$1(2,"button",34),cu$1("keydown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onContainerButtonKeydown(n))})("click",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onClearButtonClick(n))}),YM(3),bp$1();}if(t&2){let e=EM(2);jM(e.cn(e.cx("pcTodayButton"),e.todayButtonStyleClass())),zE("pButtonPT",e.ptm("pcTodayButton")),su$1("data-pc-group-section","button"),n_(),xp$1(" ",e.translate("today")," "),n_(),jM(e.cn(e.cx("pcClearButton"),e.clearButtonStyleClass())),zE("pButtonPT",e.ptm("pcClearButton")),su$1("data-pc-group-section","button"),n_(),xp$1(" ",e.translate("clear")," ");}}function n8(t,a){if(t&1&&(Bc$1(0,"div",11),rM(1,t8,1,2,"ng-container")(2,i8,4,10),bp$1()),t&2){let e=EM();jM(e.cx("buttonbar")),zE("pBind",e.ptm("buttonbar")),n_(),oM(e.buttonBarTemplate()?1:2);}}function o8(t,a){t&1&&qE(0);}var a8={root:()=>({position:"relative"})},l8={root:({instance:t})=>["p-datepicker p-component p-inputwrapper",{"p-invalid":t.invalid(),"p-inputwrapper-filled":t.$filled(),"p-inputwrapper-focus":t.focus()||t.overlayVisible(),"p-focus":t.focus()||t.overlayVisible(),"p-datepicker-fluid":t.hasFluid}],pcInputText:"p-datepicker-input",clearIcon:"p-datepicker-clear-icon",dropdown:"p-datepicker-dropdown",inputIconContainer:"p-datepicker-input-icon-container",inputIcon:"p-datepicker-input-icon",panel:({instance:t})=>["p-datepicker-panel p-component",{"p-datepicker-panel p-component":true,"p-datepicker-panel-inline":t.inline(),"p-disabled":t.$disabled(),"p-datepicker-timeonly":t.timeOnly()}],calendarContainer:"p-datepicker-calendar-container",calendar:"p-datepicker-calendar",header:"p-datepicker-header",pcPrevButton:"p-datepicker-prev-button",title:"p-datepicker-title",selectMonth:"p-datepicker-select-month",selectYear:"p-datepicker-select-year",decade:"p-datepicker-decade",pcNextButton:"p-datepicker-next-button",dayView:"p-datepicker-day-view",weekHeader:"p-datepicker-weekheader p-disabled",weekNumber:"p-datepicker-weeknumber",weekLabelContainer:"p-datepicker-weeklabel-container p-disabled",weekDayCell:"p-datepicker-weekday-cell",weekDay:"p-datepicker-weekday",dayCell:({date:t})=>["p-datepicker-day-cell",{"p-datepicker-other-month":t.otherMonth,"p-datepicker-today":t.today}],day:({instance:t,date:a})=>{let e="";if(t.isRangeSelection()&&t.isSelected(a)&&a.selectable){let i=t.value[0],n=t.value[1],o=i&&a.year===i.getFullYear()&&a.month===i.getMonth()&&a.day===i.getDate(),r=n&&a.year===n.getFullYear()&&a.month===n.getMonth()&&a.day===n.getDate();e=o||r?"p-datepicker-day-selected":"p-datepicker-day-selected-range";}return {"p-datepicker-day":true,"p-datepicker-day-selected":!t.isRangeSelection()&&t.isSelected(a)&&a.selectable,"p-disabled":t.$disabled()||!a.selectable,[e]:true}},monthView:"p-datepicker-month-view",month:({instance:t,index:a})=>["p-datepicker-month",{"p-datepicker-month-selected":t.isMonthSelected(a),"p-disabled":t.isMonthDisabled(a)}],yearView:"p-datepicker-year-view",year:({instance:t,year:a})=>["p-datepicker-year",{"p-datepicker-year-selected":t.isYearSelected(a),"p-disabled":t.isYearDisabled(a)}],timePicker:"p-datepicker-time-picker",hourPicker:"p-datepicker-hour-picker",pcIncrementButton:"p-datepicker-increment-button",pcDecrementButton:"p-datepicker-decrement-button",separator:"p-datepicker-separator",minutePicker:"p-datepicker-minute-picker",secondPicker:"p-datepicker-second-picker",ampmPicker:"p-datepicker-ampm-picker",buttonbar:"p-datepicker-buttonbar",pcTodayButton:"p-datepicker-today-button",pcClearButton:"p-datepicker-clear-button"},K2=(()=>{class t extends WI{name="datepicker";style=U2;classes=l8;inlineStyles=a8;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var r8={provide:q4$1,useExisting:Ha$1(()=>R1),multi:true},q2=new I$1("DATEPICKER_INSTANCE"),R1=(()=>{class t extends Qr$1{componentName="DatePicker";bindDirectiveInstance=g(L,{self:true});$pcDatePicker=g(q2,{optional:true,skipSelf:true})??void 0;iconDisplay=mu$1("button");inputStyle=mu$1();inputId=mu$1();inputStyleClass=mu$1();placeholder=mu$1();ariaLabelledBy=mu$1();ariaLabel=mu$1();iconAriaLabel=mu$1();dateFormat=mu$1();multipleSeparator=mu$1(",");rangeSeparator=mu$1("-");inline=mu$1(false,{transform:yn});showOtherMonths=mu$1(true,{transform:yn});selectOtherMonths=mu$1(void 0,{transform:yn});showIcon=mu$1(void 0,{transform:yn});icon=mu$1();readonlyInput=mu$1(void 0,{transform:yn});shortYearCutoff=mu$1("+10");hourFormat=mu$1("24");timeOnly=mu$1(void 0,{transform:yn});stepHour=mu$1(1,{transform:Bp$1});stepMinute=mu$1(1,{transform:Bp$1});stepSecond=mu$1(1,{transform:Bp$1});showSeconds=mu$1(false,{transform:yn});showOnFocus=mu$1(true,{transform:yn});showWeek=mu$1(false,{transform:yn});startWeekFromFirstDayOfYear=mu$1(false,{transform:yn});showClear=mu$1(false,{transform:yn});dataType=mu$1("date");selectionMode=mu$1("single");maxDateCount=mu$1(void 0,{transform:Bp$1});showButtonBar=mu$1(void 0,{transform:yn});todayButtonStyleClass=mu$1();clearButtonStyleClass=mu$1();autofocus=mu$1(void 0,{transform:yn});autoZIndex=mu$1(true,{transform:yn});baseZIndex=mu$1(0,{transform:Bp$1});panelStyleClass=mu$1();panelStyle=mu$1();keepInvalid=mu$1(false,{transform:yn});hideOnDateTimeSelect=mu$1(true,{transform:yn});touchUI=mu$1(void 0,{transform:yn});timeSeparator=mu$1(":");focusTrap=mu$1(true,{transform:yn});tabindex=mu$1(void 0,{transform:Bp$1});minDate=mu$1();maxDate=mu$1();disabledDates=mu$1();disabledDays=mu$1();showTime=mu$1(false,{transform:yn});responsiveOptions=mu$1();numberOfMonths=mu$1(1,{transform:Bp$1});firstDayOfWeek=mu$1(void 0,{transform:Bp$1});view=mu$1("date");defaultDate=mu$1();appendTo=mu$1(void 0);motionOptions=mu$1(void 0);computedMotionOptions=gs$1(()=>l$1(l$1({},this.ptm("motion")),this.motionOptions()));onFocus=sz();onBlur=sz();onClose=sz();onSelect=sz();onClear=sz();onInput=sz();onTodayClick=sz();onClearClick=sz();onMonthChange=sz();onYearChange=sz();onClickOutside=sz();onShow=sz();inputfieldViewChild=cz("inputfield");contentWrapperViewChild=cz("contentWrapper");_componentStyle=g(K2);contentViewChild=gs$1(()=>this.contentWrapperViewChild());value;dates;months=U([]);weekDays=U([]);currentMonth;currentYear;currentHour=U(null);currentMinute=U(null);currentSecond=U(null);formattedHour=gs$1(()=>String(this.currentHour()??0).padStart(2,"0"));formattedMinute=gs$1(()=>String(this.currentMinute()??0).padStart(2,"0"));formattedSecond=gs$1(()=>String(this.currentSecond()??0).padStart(2,"0"));onButtonClickCallback=this.onButtonClick.bind(this);onTodayButtonClickCallback=this.onTodayButtonClick.bind(this);onClearButtonClickCallback=this.onClearButtonClick.bind(this);inputIconTemplateContext=gs$1(()=>({clickCallBack:this.onButtonClickCallback}));decadeTemplateContext=gs$1(()=>({$implicit:this.yearPickerValues}));buttonBarTemplateContext=gs$1(()=>({todayCallback:this.onTodayButtonClickCallback,clearCallback:this.onClearButtonClickCallback}));getDateTemplateContext(e){return {$implicit:e,selected:!!this.isSelected(e)}}pm=U(null);mask;maskClickListener;overlay;responsiveStyleElement;overlayVisible=U(false);overlayMinWidth;$appendTo=gs$1(()=>this.appendTo()||this.config.overlayAppendTo());calendarElement;timePickerTimer;documentClickListener;animationEndListener;ticksTo1970;yearOptions;focus=U(false);isKeydown;preventDocumentListener;requiredAttr=gs$1(()=>this.required()?"":void 0);readonlyAttr=gs$1(()=>this.readonlyInput()?"":void 0);disabledAttr=gs$1(()=>this.$disabled()?"":void 0);switchViewButtonDisabledAttr=gs$1(()=>this.switchViewButtonDisabled()?"":void 0);inputModeAttr=gs$1(()=>this.touchUI()?"off":null);showClearIcon=gs$1(()=>this.showClear()&&!this.$disabled()&&!!this.inputFieldValue());showIconButton=gs$1(()=>this.showIcon()&&this.iconDisplay()==="button");showInputIcon=gs$1(()=>this.iconDisplay()==="input"&&this.showIcon());showTimePicker=gs$1(()=>(this.showTime()||this.timeOnly())&&this.currentView()==="date");isHourFormat12=gs$1(()=>this.hourFormat()=="12");ariaControlsAttr=gs$1(()=>this.overlayVisible()?this.panelId:null);isOverlayVisible=gs$1(()=>this.inline()||this.overlayVisible());roleAttr=gs$1(()=>this.inline()?null:"dialog");ariaModalAttr=gs$1(()=>this.inline()?null:"true");ampmLabel=gs$1(()=>this.pm()?"PM":"AM");dayClass(e){return this._componentStyle.classes.day({instance:this,date:e})}getPrevButtonStyle(e){return {visibility:e===0?"visible":"hidden"}}getNextButtonStyle(e){return {visibility:e===this.months().length-1?"visible":"hidden"}}dateTemplate=uz("date",{descendants:false});headerTemplate=uz("header",{descendants:false});footerTemplate=uz("footer",{descendants:false});disabledDateTemplate=uz("disabledDate",{descendants:false});decadeTemplate=uz("decade",{descendants:false});previousIconTemplate=uz("previousicon",{descendants:false});nextIconTemplate=uz("nexticon",{descendants:false});triggerIconTemplate=uz("triggericon",{descendants:false});clearIconTemplate=uz("clearicon",{descendants:false});decrementIconTemplate=uz("decrementicon",{descendants:false});incrementIconTemplate=uz("incrementicon",{descendants:false});inputIconTemplate=uz("inputicon",{descendants:false});buttonBarTemplate=uz("buttonbar",{descendants:false});selectElement;todayElement;focusElement;scrollHandler;documentResizeListener;navigationState=null;isMonthNavigate;initialized;translationSubscription;_locale;currentView=U(null);attributeSelector;panelId;preventFocus;_focusKey=null;window;get locale(){return this._locale}get iconButtonAriaLabel(){return this.iconAriaLabel()?this.iconAriaLabel():this.translate("chooseDate")}get prevIconAriaLabel(){return this.currentView()==="year"?this.translate("prevDecade"):this.currentView()==="month"?this.translate("prevYear"):this.translate("prevMonth")}get nextIconAriaLabel(){return this.currentView()==="year"?this.translate("nextDecade"):this.currentView()==="month"?this.translate("nextYear"):this.translate("nextMonth")}overlayService=g(nq);constructor(){super(),this.window=this.document.defaultView,Ui(()=>{this.dateFormat(),this.initialized&&this.updateInputfield();}),Ui(()=>{this.hourFormat(),this.initialized&&this.updateInputfield();}),Ui(()=>{this.minDate(),this.maxDate(),this.disabledDates(),this.disabledDays(),this.currentMonth!=null&&this.currentMonth!=null&&this.currentYear&&this.createMonths(this.currentMonth,this.currentYear);}),Ui(()=>{this.showTime()&&(J(()=>this.currentHour())===null&&this.initTime(this.value||new Date),this.updateInputfield());}),Ui(()=>{this.responsiveOptions(),this.numberOfMonths(),this.destroyResponsiveStyleElement(),this.createResponsiveStyle();}),Ui(()=>{this.firstDayOfWeek(),this.initialized&&this.createWeekDays();}),Ui(()=>{let e=this.view();this.currentView.set(e);}),Ui(()=>{let e=this.defaultDate();if(this.initialized&&e!==void 0){let i=e||new Date;this.currentMonth=i.getMonth(),this.currentYear=i.getFullYear(),this.initTime(i),this.createMonths(this.currentMonth,this.currentYear);}}),Ui(()=>{this.contentWrapperViewChild()&&this.overlay&&(this.isMonthNavigate?(Promise.resolve(null).then(()=>this.updateFocus()),this.isMonthNavigate=false):!J(()=>this.focus())&&!J(()=>this.inline())&&this.initFocusableCell());});}onInit(){this.attributeSelector=j8$1("pn_id_"),this.panelId=this.attributeSelector+"_panel";let e=this.defaultDate()||new Date;this.createResponsiveStyle(),this.currentMonth=e.getMonth(),this.currentYear=e.getFullYear(),this.yearOptions=[],this.currentView.set(this.view()),this.view()==="date"&&(this.createWeekDays(),this.initTime(e),this.createMonths(this.currentMonth,this.currentYear),this.ticksTo1970=(1969*365+Math.floor(1970/4)-Math.floor(1970/100)+Math.floor(1970/400))*24*60*60*1e7),this.translationSubscription=this.config.translationObserver.subscribe(()=>{this.createWeekDays();}),this.initialized=true;}onAfterViewInit(){this.inline()?this.contentViewChild()&&this.contentViewChild().nativeElement.setAttribute(this.attributeSelector,""):!this.$disabled()&&this.overlay&&(this.initFocusableCell(),this.numberOfMonths()===1&&this.contentViewChild()&&this.contentViewChild().nativeElement&&(this.contentViewChild().nativeElement.style.width=I4$1(this.el?.nativeElement)+"px"));}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}populateYearOptions(e,i){this.yearOptions=[];for(let n=e;n<=i;n++)this.yearOptions.push(n);}createWeekDays(){let e=[],i=this.getFirstDateOfWeek(),n=this.translate(sq.DAY_NAMES_MIN);for(let o=0;o<7;o++)e.push(n[i]),i=i==6?0:++i;this.weekDays.set(e);}monthPickerValues(){let e=[];for(let i=0;i<=11;i++)e.push(this.translate("monthNamesShort")[i]);return e}yearPickerValues(){let e=[],i=this.currentYear-this.currentYear%10;for(let n=0;n<10;n++)e.push(i+n);return e}createMonths(e,i){let n=[];for(let o=0;o11&&(r=r%12,u=i+Math.floor((e+o)/12)),n.push(this.createMonth(r,u));}this.months.set(n);}getWeekNumber(e){let i=new Date(e.getTime());if(this.startWeekFromFirstDayOfYear()){let o=+this.getFirstDateOfWeek();i.setDate(i.getDate()+6+o-i.getDay());}else i.setDate(i.getDate()+4-(i.getDay()||7));let n=i.getTime();return i.setMonth(0),i.setDate(1),Math.floor(Math.round((n-i.getTime())/864e5)/7)+1}createMonth(e,i){let n=[],o=this.getFirstDayOfMonthIndex(e,i),r=this.getDaysCountInMonth(e,i),u=this.getDaysCountInPrevMonth(e,i),M=1,z=new Date,T=[],L=Math.ceil((r+o)/7);for(let K=0;Kr){let j=this.getNextMonthAndYear(e,i);$.push({day:M-r,month:j.month,year:j.year,otherMonth:true,today:this.isToday(z,M-r,j.month,j.year),selectable:this.isSelectable(M-r,j.month,j.year,true)});}else $.push({day:M,month:e,year:i,today:this.isToday(z,M,e,i),selectable:this.isSelectable(M,e,i,false)});M++;}T.push(this.getWeekNumber(new Date($[0].year,$[0].month,$[0].day))),n.push($);}return {month:e,year:i,dates:n,weekNumbers:T}}initTime(e){this.pm.set(e.getHours()>11),this.showTime()?(this.currentMinute.set(e.getMinutes()),this.currentSecond.set(this.showSeconds()?e.getSeconds():0),this.setCurrentHourPM(e.getHours())):this.timeOnly()&&(this.currentMinute.set(0),this.currentHour.set(0),this.currentSecond.set(0));}navBackward(e){if(this.$disabled()){e.preventDefault();return}this.isMonthNavigate=true,this.currentView()==="month"?(this.decrementYear(),setTimeout(()=>{this.updateFocus();},1),this.onYearChange.emit({month:this.currentMonth+1,year:this.currentYear})):this.currentView()==="year"?(this.decrementDecade(),setTimeout(()=>{this.updateFocus();},1)):(this.currentMonth===0?(this.currentMonth=11,this.decrementYear()):this.currentMonth--,this.onMonthChange.emit({month:this.currentMonth+1,year:this.currentYear}),this.createMonths(this.currentMonth,this.currentYear));}navForward(e){if(this.$disabled()){e.preventDefault();return}this.isMonthNavigate=true,this.currentView()==="month"?(this.incrementYear(),setTimeout(()=>{this.updateFocus();},1),this.onYearChange.emit({month:this.currentMonth+1,year:this.currentYear})):this.currentView()==="year"?(this.incrementDecade(),setTimeout(()=>{this.updateFocus();},1)):(this.currentMonth===11?(this.currentMonth=0,this.incrementYear()):this.currentMonth++,this.onMonthChange.emit({month:this.currentMonth+1,year:this.currentYear}),this.createMonths(this.currentMonth,this.currentYear));}decrementYear(){this.currentYear--;let e=this.yearOptions;if(this.currentYeare[e.length-1]){let i=e[e.length-1]-e[0];this.populateYearOptions(e[0]+i,e[e.length-1]+i);}}switchToMonthView(e){this.setCurrentView("month"),e.preventDefault();}switchToYearView(e){this.setCurrentView("year"),e.preventDefault();}onDateSelect(e,i){if(this.$disabled()||!i.selectable){e.preventDefault();return}this.isMultipleSelection()&&this.isSelected(i)?(this.value=this.value.filter((n,o)=>!this.isDateEquals(n,i)),this.value.length===0&&(this.value=null),this.updateModel(this.value)):this.shouldSelectDate(i)&&this.selectDate(i),this.hideOnDateTimeSelect()&&(this.isSingleSelection()||this.isRangeSelection()&&this.value[1])&&setTimeout(()=>{e.preventDefault(),this.hideOverlay(),this.mask&&this.disableModality();},150),this.updateInputfield(),e.preventDefault();}shouldSelectDate(e){return this.isMultipleSelection()&&this.maxDateCount()!=null?this.maxDateCount()>(this.value?this.value.length:0):true}onMonthSelect(e,i){this.view()==="month"?this.onDateSelect(e,{year:this.currentYear,month:i,day:1,selectable:true}):(this.currentMonth=i,this.createMonths(this.currentMonth,this.currentYear),this.setCurrentView("date"),this.onMonthChange.emit({month:this.currentMonth+1,year:this.currentYear}));}onYearSelect(e,i){this.view()==="year"?this.onDateSelect(e,{year:i,month:0,day:1,selectable:true}):(this.currentYear=i,this.setCurrentView("month"),this.onYearChange.emit({month:this.currentMonth+1,year:this.currentYear}));}updateInputfield(){let e="";if(this.value){if(this.isSingleSelection())e=this.formatDateTime(this.value);else if(this.isMultipleSelection())for(let n=0;n11),e>=12?this.currentHour.set(e==12?12:e-12):this.currentHour.set(e==0?12:e)):this.currentHour.set(e);}setCurrentView(e){this.currentView.set(e),this.alignOverlay();}selectDate(e){let i=this.formatDateMetaToDate(e);if(this.showTime()&&(this.hourFormat()=="12"?this.currentHour()===12?i.setHours(this.pm()?12:0):i.setHours(this.pm()?this.currentHour()+12:this.currentHour()):i.setHours(this.currentHour()),i.setMinutes(this.currentMinute()),i.setSeconds(this.currentSecond())),this.minDate()&&this.minDate()>i&&(i=this.minDate(),this.setCurrentHourPM(i.getHours()),this.currentMinute.set(i.getMinutes()),this.currentSecond.set(i.getSeconds())),this.maxDate()&&this.maxDate()=n.getTime()?o=i:(n=i,o=null),this.updateModel([n,o]);}else this.updateModel([i,null]);this.onSelect.emit(i);}updateModel(e){if(this.value=e,this.dataType()=="date")this.writeModelValue(this.value),this.onModelChange(this.value);else if(this.dataType()=="string")if(this.isSingleSelection())this.onModelChange(this.formatDateTime(this.value));else {let i=null;Array.isArray(this.value)&&(i=this.value.map(n=>this.formatDateTime(n))),this.writeModelValue(i),this.onModelChange(i);}}getFirstDayOfMonthIndex(e,i){let n=new Date;n.setDate(1),n.setMonth(e),n.setFullYear(i);let o=n.getDay()+this.getSundayIndex();return o>=7?o-7:o}getDaysCountInMonth(e,i){return 32-this.daylightSavingAdjust(new Date(i,e,32)).getDate()}getDaysCountInPrevMonth(e,i){let n=this.getPreviousMonthAndYear(e,i);return this.getDaysCountInMonth(n.month,n.year)}getPreviousMonthAndYear(e,i){let n,o;return e===0?(n=11,o=i-1):(n=e-1,o=i),{month:n,year:o}}getNextMonthAndYear(e,i){let n,o;return e===11?(n=0,o=i+1):(n=e+1,o=i),{month:n,year:o}}getSundayIndex(){let e=this.getFirstDateOfWeek();return e>0?7-e:0}isSelected(e){if(this.value){if(this.isSingleSelection())return this.isDateEquals(this.value,e);if(this.isMultipleSelection()){let i=false;for(let n of this.value)if(i=this.isDateEquals(n,e),i)break;return i}else if(this.isRangeSelection())return this.value[1]?this.isDateEquals(this.value[0],e)||this.isDateEquals(this.value[1],e)||this.isDateBetween(this.value[0],this.value[1],e):this.isDateEquals(this.value[0],e)}else return false}isComparable(){return this.value!=null&&typeof this.value!="string"}isMonthSelected(e){if(!this.isComparable())return false;if(this.isMultipleSelection())return this.value.some(i=>i?.getMonth()===e&&i?.getFullYear()===this.currentYear);if(this.isRangeSelection())if(this.value[1])if(this.value[0]){let i=new Date(this.currentYear,e,1),n=new Date(this.value[0].getFullYear(),this.value[0].getMonth(),1),o=new Date(this.value[1].getFullYear(),this.value[1].getMonth(),1);return i>=n&&i<=o}else return false;else return this.value[0]?.getFullYear()===this.currentYear&&this.value[0]?.getMonth()===e;else return this.value?.getMonth()===e&&this.value?.getFullYear()===this.currentYear}isMonthDisabled(e,i){let n=i??this.currentYear;for(let o=1;othis.isMonthDisabled(n,e))}isYearSelected(e){if(!this.isComparable()||this.isMultipleSelection())return false;let i=this.isRangeSelection()?this.value[0]:this.value;return i?i.getFullYear()===e:false}isDateEquals(e,i){return e&&h4$1(e)?e.getDate()===i.day&&e.getMonth()===i.month&&e.getFullYear()===i.year:false}isDateBetween(e,i,n){let o=false;if(h4$1(e)&&h4$1(i)){let r=this.formatDateMetaToDate(n);return e.getTime()<=r.getTime()&&i.getTime()>=r.getTime()}return o}isSingleSelection(){return this.selectionMode()==="single"}isRangeSelection(){return this.selectionMode()==="range"}isMultipleSelection(){return this.selectionMode()==="multiple"}isToday(e,i,n,o){return e.getDate()===i&&e.getMonth()===n&&e.getFullYear()===o}isSelectable(e,i,n,o){let r=true,u=true,M=true,z=true;if(o&&!this.selectOtherMonths())return false;let T=this.minDate();T&&(T.getFullYear()>n||T.getFullYear()===n&&this.currentView()!="year"&&(T.getMonth()>i||T.getMonth()===i&&T.getDate()>e))&&(r=false);let L=this.maxDate();return L&&(L.getFullYear()1||this.$disabled()}onPrevButtonClick(e){this.navigationState={backward:true,button:true},this.navBackward(e);}onNextButtonClick(e){this.navigationState={backward:false,button:true},this.navForward(e);}onContainerButtonKeydown(e){switch(e.which){case 9:if(this.inline()||this.trapFocus(e),this.inline()){let i=M4$1(this.el?.nativeElement,".p-datepicker-header"),n=e.target;if(this.timeOnly())return;n==i?.children[i?.children?.length-1]&&this.initFocusableCell();}break;case 27:this.inputfieldViewChild()?.nativeElement.focus(),this.overlayVisible.set(false),e.preventDefault();break;}}onInputKeydown(e){this.isKeydown=true,e.keyCode===40&&this.contentViewChild()?this.trapFocus(e):e.keyCode===27?this.overlayVisible()&&(this.inputfieldViewChild()?.nativeElement.focus(),this.overlayVisible.set(false),e.preventDefault()):e.keyCode===13?this.overlayVisible()&&(this.overlayVisible.set(false),e.preventDefault()):e.keyCode===9&&this.contentViewChild()&&(kI(this.contentViewChild().nativeElement).forEach(i=>i.tabIndex="-1"),this.overlayVisible()&&this.overlayVisible.set(false));}onDateCellKeydown(e,i,n){let o=e.currentTarget,r=o.parentElement,u=this.formatDateMetaToDate(i);switch(e.which){case 40:{o.tabIndex="-1";let G=O4$1(r),j=r.parentElement.nextElementSibling;if(j){let Y=j.children[G].children[0];tO(Y,"p-disabled")?(this.navigationState={backward:false},this.navForward(e)):(j.children[G].children[0].tabIndex="0",j.children[G].children[0].focus());}else this.navigationState={backward:false},this.navForward(e);e.preventDefault();break}case 38:{o.tabIndex="-1";let G=O4$1(r),j=r.parentElement.previousElementSibling;if(j){let Y=j.children[G].children[0];tO(Y,"p-disabled")?(this.navigationState={backward:true},this.navBackward(e)):(Y.tabIndex="0",Y.focus());}else this.navigationState={backward:true},this.navBackward(e);e.preventDefault();break}case 37:{o.tabIndex="-1";let G=r.previousElementSibling;if(G){let j=G.children[0];tO(j,"p-disabled")||tO(j.parentElement,"p-datepicker-weeknumber")?this.navigateToMonth(true,n):(j.tabIndex="0",j.focus());}else this.navigateToMonth(true,n);e.preventDefault();break}case 39:{o.tabIndex="-1";let G=r.nextElementSibling;if(G){let j=G.children[0];tO(j,"p-disabled")?this.navigateToMonth(false,n):(j.tabIndex="0",j.focus());}else this.navigateToMonth(false,n);e.preventDefault();break}case 13:case 32:{this.onDateSelect(e,i),e.preventDefault();break}case 27:{this.inputfieldViewChild()?.nativeElement.focus(),this.overlayVisible.set(false),e.preventDefault();break}case 9:{this.inline()||this.trapFocus(e);break}case 33:{o.tabIndex="-1";let G=new Date(u.getFullYear(),u.getMonth()-1,u.getDate()),j=this.formatDateKey(G);this.navigateToMonth(true,n,`span[data-date='${j}']:not(.p-disabled):not(.p-ink)`),e.preventDefault();break}case 34:{o.tabIndex="-1";let G=new Date(u.getFullYear(),u.getMonth()+1,u.getDate()),j=this.formatDateKey(G);this.navigateToMonth(false,n,`span[data-date='${j}']:not(.p-disabled):not(.p-ink)`),e.preventDefault();break}case 36:o.tabIndex="-1";let M=new Date(u.getFullYear(),u.getMonth(),1),z=this.formatDateKey(M),T=M4$1(o.offsetParent,`span[data-date='${z}']:not(.p-disabled):not(.p-ink)`);T&&(T.tabIndex="0",T.focus()),e.preventDefault();break;case 35:o.tabIndex="-1";let L=new Date(u.getFullYear(),u.getMonth()+1,0),K=this.formatDateKey(L),$=M4$1(o.offsetParent,`span[data-date='${K}']:not(.p-disabled):not(.p-ink)`);L&&($.tabIndex="0",$.focus()),e.preventDefault();break;}}onMonthCellKeydown(e,i){let n=e.currentTarget;switch(e.which){case 38:case 40:{n.tabIndex="-1";var o=n.parentElement.children,r=O4$1(n);let u=o[e.which===40?r+3:r-3];u&&(u.tabIndex="0",u.focus()),e.preventDefault();break}case 37:{n.tabIndex="-1";let u=n.previousElementSibling;u?(u.tabIndex="0",u.focus()):(this.navigationState={backward:true},this.navBackward(e)),e.preventDefault();break}case 39:{n.tabIndex="-1";let u=n.nextElementSibling;u?(u.tabIndex="0",u.focus()):(this.navigationState={backward:false},this.navForward(e)),e.preventDefault();break}case 13:case 32:{this.onMonthSelect(e,i),e.preventDefault();break}case 27:{this.inputfieldViewChild()?.nativeElement.focus(),this.overlayVisible.set(false),e.preventDefault();break}case 9:{this.inline()||this.trapFocus(e);break}}}onYearCellKeydown(e,i){let n=e.currentTarget;switch(e.which){case 38:case 40:{n.tabIndex="-1";var o=n.parentElement.children,r=O4$1(n);let u=o[e.which===40?r+2:r-2];u&&(u.tabIndex="0",u.focus()),e.preventDefault();break}case 37:{n.tabIndex="-1";let u=n.previousElementSibling;u?(u.tabIndex="0",u.focus()):(this.navigationState={backward:true},this.navBackward(e)),e.preventDefault();break}case 39:{n.tabIndex="-1";let u=n.nextElementSibling;u?(u.tabIndex="0",u.focus()):(this.navigationState={backward:false},this.navForward(e)),e.preventDefault();break}case 13:case 32:{this.onYearSelect(e,i),e.preventDefault();break}case 27:{this.inputfieldViewChild()?.nativeElement.focus(),this.overlayVisible.set(false),e.preventDefault();break}case 9:{this.trapFocus(e);break}}}navigateToMonth(e,i,n){if(e)if(this.numberOfMonths()===1||i===0)this.navigationState={backward:true},this._focusKey=n,this.navBackward(event);else {let o=this.contentViewChild().nativeElement.children[i-1];if(n){let r=M4$1(o,n);r.tabIndex="0",r.focus();}else {let r=cO(o,".p-datepicker-calendar td span:not(.p-disabled):not(.p-ink)"),u=r[r.length-1];u.tabIndex="0",u.focus();}}else if(this.numberOfMonths()===1||i===this.numberOfMonths()-1)this.navigationState={backward:false},this._focusKey=n,this.navForward(event);else {let o=this.contentViewChild().nativeElement.children[i+1];if(n){let r=M4$1(o,n);r.tabIndex="0",r.focus();}else {let r=M4$1(o,".p-datepicker-calendar td span:not(.p-disabled):not(.p-ink)");r.tabIndex="0",r.focus();}}}updateFocus(){let e;if(this.navigationState){if(this.navigationState.button)this.initFocusableCell(),this.navigationState.backward?M4$1(this.contentViewChild().nativeElement,".p-datepicker-prev-button").focus():M4$1(this.contentViewChild().nativeElement,".p-datepicker-next-button").focus();else {if(this.navigationState.backward){let i;this.currentView()==="month"?i=cO(this.contentViewChild().nativeElement,".p-datepicker-month-view .p-datepicker-month:not(.p-disabled)"):this.currentView()==="year"?i=cO(this.contentViewChild().nativeElement,".p-datepicker-year-view .p-datepicker-year:not(.p-disabled)"):i=cO(this.contentViewChild().nativeElement,this._focusKey||".p-datepicker-calendar td span:not(.p-disabled):not(.p-ink)"),i&&i.length>0&&(e=i[i.length-1]);}else this.currentView()==="month"?e=M4$1(this.contentViewChild().nativeElement,".p-datepicker-month-view .p-datepicker-month:not(.p-disabled)"):this.currentView()==="year"?e=M4$1(this.contentViewChild().nativeElement,".p-datepicker-year-view .p-datepicker-year:not(.p-disabled)"):e=M4$1(this.contentViewChild().nativeElement,this._focusKey||".p-datepicker-calendar td span:not(.p-disabled):not(.p-ink)");e&&(e.tabIndex="0",e.focus());}this.navigationState=null,this._focusKey=null;}else this.initFocusableCell();}initFocusableCell(){let e=this.contentViewChild()?.nativeElement,i;if(this.currentView()==="month"){let n=cO(e,".p-datepicker-month-view .p-datepicker-month:not(.p-disabled)"),o=M4$1(e,".p-datepicker-month-view .p-datepicker-month.p-highlight");n.forEach(r=>r.tabIndex=-1),i=o||n[0],n.length===0&&cO(e,'.p-datepicker-month-view .p-datepicker-month.p-disabled[tabindex = "0"]').forEach(u=>u.tabIndex=-1);}else if(this.currentView()==="year"){let n=cO(e,".p-datepicker-year-view .p-datepicker-year:not(.p-disabled)"),o=M4$1(e,".p-datepicker-year-view .p-datepicker-year.p-highlight");n.forEach(r=>r.tabIndex=-1),i=o||n[0],n.length===0&&cO(e,'.p-datepicker-year-view .p-datepicker-year.p-disabled[tabindex = "0"]').forEach(u=>u.tabIndex=-1);}else if(i=M4$1(e,"span.p-highlight"),!i){let n=M4$1(e,"td.p-datepicker-today span:not(.p-disabled):not(.p-ink)");n?i=n:i=M4$1(e,".p-datepicker-calendar td span:not(.p-disabled):not(.p-ink)");}i&&(i.tabIndex="0",!this.preventFocus&&(!this.navigationState||!this.navigationState.button)&&setTimeout(()=>{this.$disabled()||i.focus();},1),this.preventFocus=false);}trapFocus(e){let i=kI(this.contentViewChild().nativeElement);if(i&&i.length>0)if(!i[0].ownerDocument.activeElement)i[0].focus();else {let n=i.indexOf(i[0].ownerDocument.activeElement);if(e.shiftKey)if(n==-1||n===0)if(this.focusTrap())i[i.length-1].focus();else {if(n===-1)return this.hideOverlay();if(n===0)return}else i[n-1].focus();else if(n==-1)if(this.timeOnly())i[0].focus();else {let o=0;for(let r=0;r=12),true){case(G&&u&&this.minDate().getHours()===12&&this.minDate().getHours()>z):r[0]=11;case(G&&this.minDate().getHours()===z&&this.minDate().getMinutes()>i):r[1]=this.minDate().getMinutes();case(G&&this.minDate().getHours()===z&&this.minDate().getMinutes()===i&&this.minDate().getSeconds()>n):r[2]=this.minDate().getSeconds();break;case(G&&!u&&this.minDate().getHours()-1===z&&this.minDate().getHours()>z):r[0]=11,this.pm.set(true);case(G&&this.minDate().getHours()===z&&this.minDate().getMinutes()>i):r[1]=this.minDate().getMinutes();case(G&&this.minDate().getHours()===z&&this.minDate().getMinutes()===i&&this.minDate().getSeconds()>n):r[2]=this.minDate().getSeconds();break;case(G&&u&&this.minDate().getHours()>z&&z!==12):this.setCurrentHourPM(this.minDate().getHours()),r[0]=this.currentHour()||0;case(G&&this.minDate().getHours()===z&&this.minDate().getMinutes()>i):r[1]=this.minDate().getMinutes();case(G&&this.minDate().getHours()===z&&this.minDate().getMinutes()===i&&this.minDate().getSeconds()>n):r[2]=this.minDate().getSeconds();break;case(G&&this.minDate().getHours()>z):r[0]=this.minDate().getHours();case(G&&this.minDate().getHours()===z&&this.minDate().getMinutes()>i):r[1]=this.minDate().getMinutes();case(G&&this.minDate().getHours()===z&&this.minDate().getMinutes()===i&&this.minDate().getSeconds()>n):r[2]=this.minDate().getSeconds();break;case(j&&this.maxDate().getHours()=24?n-24:n:this.hourFormat()=="12"&&(i<12&&n>11&&(o=!this.pm()),n=n>=13?n-12:n),this.toggleAMPMIfNotMinDate(o);let[r,u,M]=this.constrainTime(n,this.currentMinute(),this.currentSecond(),o);this.currentHour.set(r),this.currentMinute.set(u),this.currentSecond.set(M),e.preventDefault();}toggleAMPMIfNotMinDate(e){let i=this.value,n=i?i.toDateString():null;this.minDate()&&n&&this.minDate().toDateString()===n&&this.minDate().getHours()>=12?this.pm.set(true):this.pm.set(e);}onTimePickerElementMouseDown(e,i,n){this.$disabled()||(this.repeat(e,null,i,n),e.preventDefault());}onTimePickerElementMouseUp(e){this.$disabled()||(this.clearTimePickerTimer(),this.updateTime());}onTimePickerElementMouseLeave(){!this.$disabled()&&this.timePickerTimer&&(this.clearTimePickerTimer(),this.updateTime());}repeat(e,i,n,o){let r=i||500;switch(this.clearTimePickerTimer(),this.timePickerTimer=setTimeout(()=>{this.repeat(e,100,n,o);},r),n){case 0:o===1?this.incrementHour(e):this.decrementHour(e);break;case 1:o===1?this.incrementMinute(e):this.decrementMinute(e);break;case 2:o===1?this.incrementSecond(e):this.decrementSecond(e);break}this.updateInputfield();}clearTimePickerTimer(){this.timePickerTimer&&(clearTimeout(this.timePickerTimer),this.timePickerTimer=null);}decrementHour(e){let i=(this.currentHour()??0)-this.stepHour(),n=this.pm();this.hourFormat()=="24"?i=i<0?24+i:i:this.hourFormat()=="12"&&(this.currentHour()===12&&(n=!this.pm()),i=i<=0?12+i:i),this.toggleAMPMIfNotMinDate(n);let[o,r,u]=this.constrainTime(i,this.currentMinute(),this.currentSecond(),n);this.currentHour.set(o),this.currentMinute.set(r),this.currentSecond.set(u),e.preventDefault();}incrementMinute(e){let i=(this.currentMinute()??0)+this.stepMinute();i=i>59?i-60:i;let[n,o,r]=this.constrainTime(this.currentHour()||0,i,this.currentSecond(),this.pm());this.currentHour.set(n),this.currentMinute.set(o),this.currentSecond.set(r),e.preventDefault();}decrementMinute(e){let i=(this.currentMinute()??0)-this.stepMinute();i=i<0?60+i:i;let[n,o,r]=this.constrainTime(this.currentHour()||0,i,this.currentSecond()||0,this.pm());this.currentHour.set(n),this.currentMinute.set(o),this.currentSecond.set(r),e.preventDefault();}incrementSecond(e){let i=this.currentSecond()+this.stepSecond();i=i>59?i-60:i;let[n,o,r]=this.constrainTime(this.currentHour()||0,this.currentMinute()||0,i,this.pm());this.currentHour.set(n),this.currentMinute.set(o),this.currentSecond.set(r),e.preventDefault();}decrementSecond(e){let i=this.currentSecond()-this.stepSecond();i=i<0?60+i:i;let[n,o,r]=this.constrainTime(this.currentHour()||0,this.currentMinute()||0,i,this.pm());this.currentHour.set(n),this.currentMinute.set(o),this.currentSecond.set(r),e.preventDefault();}updateTime(){let e=this.value;this.isRangeSelection()&&(e=this.value[1]||this.value[0]),this.isMultipleSelection()&&(e=this.value[this.value.length-1]),e=e?new Date(e.getTime()):new Date,this.hourFormat()=="12"?this.currentHour()===12?e.setHours(this.pm()?12:0):e.setHours(this.pm()?this.currentHour()+12:this.currentHour()):e.setHours(this.currentHour()),e.setMinutes(this.currentMinute()),e.setSeconds(this.currentSecond()),this.isRangeSelection()&&(this.value[1]?e=[this.value[0],e]:e=[e,null]),this.isMultipleSelection()&&(e=[...this.value.slice(0,-1),e]),this.updateModel(e),this.onSelect.emit(e),this.updateInputfield();}toggleAMPM(e){let i=!this.pm();this.pm.set(i);let[n,o,r]=this.constrainTime(this.currentHour()||0,this.currentMinute()||0,this.currentSecond()||0,i);this.currentHour.set(n),this.currentMinute.set(o),this.currentSecond.set(r),this.updateTime(),e.preventDefault();}onUserInput(e){if(!this.isKeydown)return;this.isKeydown=false;let i=e.target.value;try{let n=this.parseValueFromString(i);this.isValidSelection(n)?(this.updateModel(n),this.updateUI()):this.keepInvalid()&&this.updateModel(n);}catch{let o=this.keepInvalid()?i:null;this.updateModel(o);}this.onInput.emit(e);}isValidSelection(e){if(this.isSingleSelection())return this.isSelectable(e.getDate(),e.getMonth(),e.getFullYear(),false);let i=e.every(n=>this.isSelectable(n.getDate(),n.getMonth(),n.getFullYear(),false));return i&&this.isRangeSelection()&&(i=e.length===1||e.length>1&&e[1]>=e[0]),i}parseValueFromString(e){if(!e||e.trim().length===0)return null;let i;if(this.isSingleSelection())i=this.parseDateTime(e);else if(this.isMultipleSelection()){let n=e.split(this.multipleSeparator());i=[];for(let o of n)i.push(this.parseDateTime(o.trim()));}else if(this.isRangeSelection()){let n=e.split(" "+this.rangeSeparator()+" ");i=[];for(let o=0;o{this.disableModality(),this.overlayVisible.set(false);}),this.renderer.appendChild(this.document.body,this.mask),X9$1());}disableModality(){this.mask&&(AI(this.mask,"p-overlay-mask-leave"),this.animationEndListener||(this.animationEndListener=this.renderer.listen(this.mask,"animationend",this.destroyMask.bind(this))));}destroyMask(){if(!this.mask)return;this.renderer.removeChild(this.document.body,this.mask);let e=this.document.body.children,i;for(let n=0;n{let L=n+1{let $=""+L;if(o(T))for(;$.lengtho(T)?$[L]:K[L],M="",z=false;if(e)for(n=0;n11&&n!=12&&(n-=12),this.hourFormat()=="12"?i+=n===0?12:n<10?"0"+n:n:i+=n<10?"0"+n:n,i+=":",i+=o<10?"0"+o:o,this.showSeconds()&&(i+=":",i+=r<10?"0"+r:r),this.hourFormat()=="12"&&(i+=e.getHours()>11?" PM":" AM"),i}parseTime(e){let i=e.split(":"),n=this.showSeconds()?3:2;if(i.length!==n)throw "Invalid time";let o=parseInt(i[0]),r=parseInt(i[1]),u=this.showSeconds()?parseInt(i[2]):null;if(isNaN(o)||isNaN(r)||o>23||r>59||this.hourFormat()=="12"&&o>12||this.showSeconds()&&(isNaN(u)||u>59))throw "Invalid time";return this.hourFormat()=="12"&&(o!==12&&this.pm()?o+=12:!this.pm()&&o===12&&(o-=12)),{hour:o,minute:r,second:u}}parseDate(e,i){if(i==null||e==null)throw "Invalid arguments";if(e=typeof e=="object"?e.toString():e+"",e==="")return null;let n,o,r,u=0,M=typeof this.shortYearCutoff()!="string"?this.shortYearCutoff():new Date().getFullYear()%100+parseInt(this.shortYearCutoff(),10),z=-1,T=-1,L=-1,K=-1,$=false,G,j=Ee=>{let Ae=n+1{let Ae=j(Ee),Ye=Ee==="@"?14:Ee==="!"?20:Ee==="y"&&Ae?4:Ee==="o"?3:2,nt=Ee==="y"?Ye:1,g1=new RegExp("^\\d{"+nt+","+Ye+"}"),ht=e.substring(u).match(g1);if(!ht)throw "Missing number at position "+u;return u+=ht[0].length,parseInt(ht[0],10)},_e=(Ee,Ae,Ye)=>{let nt=-1,g1=j(Ee)?Ye:Ae,ht=[];for(let tt=0;tt-(tt[1].length-Zt[1].length));for(let tt=0;tt{if(e.charAt(u)!==i.charAt(n))throw "Unexpected literal at position "+u;u++;};for(this.view()==="month"&&(L=1),n=0;n-1){T=1,L=K;do{if(o=this.getDaysCountInMonth(z,T-1),L<=o)break;T++,L-=o;}while(true)}if(this.view()==="year"&&(T=T===-1?1:T,L=L===-1?1:L),G=this.daylightSavingAdjust(new Date(z,T-1,L)),G.getFullYear()!==z||G.getMonth()+1!==T||G.getDate()!==L)throw "Invalid date";return G}daylightSavingAdjust(e){return e?(e.setHours(e.getHours()>12?e.getHours()+2:0),e):null}isValidDateForTimeConstraints(e){return this.keepInvalid()?true:(!this.minDate()||e>=this.minDate())&&(!this.maxDate()||e<=this.maxDate())}onTodayButtonClick(e){let i=new Date,n={day:i.getDate(),month:i.getMonth(),year:i.getFullYear(),otherMonth:i.getMonth()!==this.currentMonth||i.getFullYear()!==this.currentYear,today:true,selectable:true};this.createMonths(i.getMonth(),i.getFullYear()),this.onDateSelect(e,n),this.onTodayClick.emit(i);}onClearButtonClick(e){this.updateModel(null),this.updateInputfield(),this.hideOverlay(),this.onClearClick.emit(e);}createResponsiveStyle(){if(this.numberOfMonths()>1&&this.responsiveOptions()){this.responsiveStyleElement||(this.responsiveStyleElement=this.renderer.createElement("style"),this.responsiveStyleElement.type="text/css",PI(this.responsiveStyleElement,"nonce",this.config?.csp()?.nonce),this.renderer.appendChild(this.document.body,this.responsiveStyleElement));let e="";if(this.responsiveOptions()){let i=[...this.responsiveOptions()||[]].filter(n=>!!(n.breakpoint&&n.numMonths)).sort((n,o)=>-1*n.breakpoint.localeCompare(o.breakpoint,void 0,{numeric:true}));for(let n=0;n{this.isOutsideClicked(i)&&this.overlayVisible()&&(this.hideOverlay(),this.onClickOutside.emit(i));});}}unbindDocumentClickListener(){this.documentClickListener&&(this.documentClickListener(),this.documentClickListener=null);}bindDocumentResizeListener(){!this.documentResizeListener&&!this.touchUI()&&(this.documentResizeListener=this.renderer.listen(this.window,"resize",this.onWindowResize.bind(this)));}unbindDocumentResizeListener(){this.documentResizeListener&&(this.documentResizeListener(),this.documentResizeListener=null);}bindScrollListener(){this.scrollHandler||(this.scrollHandler=new b4$2(this.el?.nativeElement,()=>{this.overlayVisible()&&this.hideOverlay();})),this.scrollHandler.bindScrollListener();}unbindScrollListener(){this.scrollHandler&&this.scrollHandler.unbindScrollListener();}isOutsideClicked(e){return !(this.el.nativeElement.isSameNode(e.target)||this.isNavIconClicked(e)||this.el.nativeElement.contains(e.target)||this.overlay&&this.overlay.contains(e.target))}isNavIconClicked(e){return tO(e.target,"p-datepicker-prev-button")||tO(e.target,"p-datepicker-prev-icon")||tO(e.target,"p-datepicker-next-button")||tO(e.target,"p-datepicker-next-icon")}onWindowResize(){this.overlayVisible()&&!H4$1()&&this.hideOverlay();}onOverlayHide(){this.currentView.set(this.view()),this.mask&&this.destroyMask(),this.unbindDocumentClickListener(),this.unbindDocumentResizeListener(),this.unbindScrollListener(),this.overlay=null;}writeControlValue(e){if(this.value=e,this.value&&typeof this.value=="string")try{this.value=this.parseValueFromString(this.value);}catch{this.keepInvalid()&&(this.value=e);}this.updateInputfield(),this.updateUI();}onDestroy(){this.scrollHandler&&(this.scrollHandler.destroy(),this.scrollHandler=null),this.translationSubscription&&this.translationSubscription.unsubscribe(),this.overlay&&this.autoZIndex()&&N4$1.clear(this.overlay),this.destroyResponsiveStyleElement(),this.clearTimePickerTimer(),this.restoreOverlayAppend(),this.onOverlayHide();}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-datepicker"],["p-date-picker"]],contentQueries:function(i,n,o){i&1&&QE(o,n.dateTemplate,s6,4)(o,n.headerTemplate,c6,4)(o,n.footerTemplate,d6,4)(o,n.disabledDateTemplate,p6,4)(o,n.decadeTemplate,u6,4)(o,n.previousIconTemplate,m6,4)(o,n.nextIconTemplate,f6,4)(o,n.triggerIconTemplate,h6,4)(o,n.clearIconTemplate,g6,4)(o,n.decrementIconTemplate,b6,4)(o,n.incrementIconTemplate,_6,4)(o,n.inputIconTemplate,y6,4)(o,n.buttonBarTemplate,v6,4),i&2&&IM(13);},viewQuery:function(i,n){i&1&&XE(n.inputfieldViewChild,x6,5)(n.contentWrapperViewChild,C6,5),i&2&&IM(2);},hostVars:4,hostBindings:function(i,n){i&2&&(PM(n.sx("root")),jM(n.cx("root")));},inputs:{iconDisplay:[1,"iconDisplay"],inputStyle:[1,"inputStyle"],inputId:[1,"inputId"],inputStyleClass:[1,"inputStyleClass"],placeholder:[1,"placeholder"],ariaLabelledBy:[1,"ariaLabelledBy"],ariaLabel:[1,"ariaLabel"],iconAriaLabel:[1,"iconAriaLabel"],dateFormat:[1,"dateFormat"],multipleSeparator:[1,"multipleSeparator"],rangeSeparator:[1,"rangeSeparator"],inline:[1,"inline"],showOtherMonths:[1,"showOtherMonths"],selectOtherMonths:[1,"selectOtherMonths"],showIcon:[1,"showIcon"],icon:[1,"icon"],readonlyInput:[1,"readonlyInput"],shortYearCutoff:[1,"shortYearCutoff"],hourFormat:[1,"hourFormat"],timeOnly:[1,"timeOnly"],stepHour:[1,"stepHour"],stepMinute:[1,"stepMinute"],stepSecond:[1,"stepSecond"],showSeconds:[1,"showSeconds"],showOnFocus:[1,"showOnFocus"],showWeek:[1,"showWeek"],startWeekFromFirstDayOfYear:[1,"startWeekFromFirstDayOfYear"],showClear:[1,"showClear"],dataType:[1,"dataType"],selectionMode:[1,"selectionMode"],maxDateCount:[1,"maxDateCount"],showButtonBar:[1,"showButtonBar"],todayButtonStyleClass:[1,"todayButtonStyleClass"],clearButtonStyleClass:[1,"clearButtonStyleClass"],autofocus:[1,"autofocus"],autoZIndex:[1,"autoZIndex"],baseZIndex:[1,"baseZIndex"],panelStyleClass:[1,"panelStyleClass"],panelStyle:[1,"panelStyle"],keepInvalid:[1,"keepInvalid"],hideOnDateTimeSelect:[1,"hideOnDateTimeSelect"],touchUI:[1,"touchUI"],timeSeparator:[1,"timeSeparator"],focusTrap:[1,"focusTrap"],tabindex:[1,"tabindex"],minDate:[1,"minDate"],maxDate:[1,"maxDate"],disabledDates:[1,"disabledDates"],disabledDays:[1,"disabledDays"],showTime:[1,"showTime"],responsiveOptions:[1,"responsiveOptions"],numberOfMonths:[1,"numberOfMonths"],firstDayOfWeek:[1,"firstDayOfWeek"],view:[1,"view"],defaultDate:[1,"defaultDate"],appendTo:[1,"appendTo"],motionOptions:[1,"motionOptions"]},outputs:{onFocus:"onFocus",onBlur:"onBlur",onClose:"onClose",onSelect:"onSelect",onClear:"onClear",onInput:"onInput",onTodayClick:"onTodayClick",onClearClick:"onClearClick",onMonthChange:"onMonthChange",onYearChange:"onYearChange",onClickOutside:"onClickOutside",onShow:"onShow"},features:[nN([r8,K2,{provide:q2,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:w6,decls:11,vars:18,consts:[["contentWrapper",""],["inputfield",""],["name","p-anchored-overlay",3,"onBeforeEnter","onAfterLeave","visible","appear","options"],[3,"click","pBind"],[4,"ngTemplateOutlet"],[3,"class","pBind"],["pInputText","","data-p-maskable","","type","text","role","combobox","aria-autocomplete","none","aria-haspopup","dialog","autocomplete","off",3,"focus","keydown","click","blur","input","pSize","value","pAutoFocus","variant","fluid","invalid","pt","unstyled"],["type","button","aria-haspopup","dialog","tabindex","0",3,"class","disabled","pBind"],["data-p-icon","times",3,"class","pBind"],["data-p-icon","times",3,"click","pBind"],["type","button","aria-haspopup","dialog","tabindex","0",3,"click","disabled","pBind"],[3,"pBind"],["data-p-icon","calendar",3,"pBind"],["data-p-icon","calendar",3,"class","pBind"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],["data-p-icon","calendar",3,"click","pBind"],["type","button","pButton","","rounded","","variant","text","severity","secondary",3,"keydown","click","pButtonPT"],["data-p-icon","chevron-left"],["type","button","pRipple","",3,"class","pBind"],["data-p-icon","chevron-right"],["role","grid",3,"class","pBind"],["type","button","pRipple","",3,"click","keydown","pBind"],["role","grid",3,"pBind"],["scope","col",3,"class","pBind"],["scope","col",3,"pBind"],["draggable","false","pRipple","",3,"click","keydown","pBind"],["aria-live","polite",1,"p-hidden-accessible"],["pRipple","",3,"class","pBind"],["pRipple","",3,"click","keydown","pBind"],["type","button","pButton","","rounded","","variant","text","severity","secondary",3,"keydown","keydown.enter","keydown.space","mousedown","mouseup","keyup.enter","keyup.space","mouseleave","pButtonPT"],["data-p-icon","chevron-up",3,"pBind"],["data-p-icon","chevron-down",3,"pBind"],[1,"p-datepicker-separator",3,"pBind"],["type","button","pButton","","text","","rounded","","severity","secondary",3,"keydown","click","keydown.enter","pButtonPT"],["type","button","pButton","","severity","secondary","variant","text","size","small",3,"keydown","click","pButtonPT"]],template:function(i,n){i&1&&(uu$1(M6),rM(0,G6,5,29),Bc$1(1,"p-motion",2),cu$1("onBeforeEnter",function(r){return n.onOverlayBeforeEnter(r)})("onAfterLeave",function(r){return n.onOverlayAfterLeave(r)}),Bc$1(2,"div",3,0),cu$1("click",function(r){return n.onOverlayClick(r)}),lu$1(4),VE(5,U6,1,0,"ng-container",4),rM(6,wd,5,5),rM(7,Jd,26,48,"div",5),rM(8,n8,3,4,"div",5),lu$1(9,1),VE(10,o8,1,0,"ng-container",4),bp$1()()),i&2&&(oM(n.inline()?-1:0),n_(),zE("visible",n.isOverlayVisible())("appear",!n.inline())("options",n.computedMotionOptions()),n_(),PM(n.panelStyle()),jM(n.cn(n.cx("panel"),n.panelStyleClass())),zE("pBind",n.ptm("panel")),su$1("id",n.panelId)("aria-label",n.translate("chooseDate"))("role",n.roleAttr())("aria-modal",n.ariaModalAttr()),n_(3),zE("ngTemplateOutlet",n.headerTemplate()),n_(),oM(n.timeOnly()?-1:6),n_(),oM(n.showTimePicker()?7:-1),n_(),oM(n.showButtonBar()?8:-1),n_(2),zE("ngTemplateOutlet",n.footerTemplate()));},dependencies:[cA,Ei,z4$2,H2,$2,G2,F1,co$1,A2,Z8$1,ar$1,iq,o1,L,De,R3$1],encapsulation:2})}return t})(),ci=(()=>{class t{static \u0275fac=function(i){return new(i||t)};static \u0275mod=mn({type:t});static \u0275inj=$t({imports:[R1,iq,iq]})}return t})();var di=(t,a,e,i,n)=>({$implicit:t,rowIndex:a,columns:e,editing:i,frozen:n}),d8=(t,a,e,i,n,o,r)=>({$implicit:t,rowIndex:a,columns:e,editing:i,frozen:n,rowgroup:o,rowspan:r}),H1=(t,a,e,i,n,o)=>({$implicit:t,rowIndex:a,columns:e,expanded:i,editing:n,frozen:o}),j2=(t,a,e,i)=>({$implicit:t,rowIndex:a,columns:e,frozen:i});function pi(t,a){return this.dataTable.rowTrackBy()(t,a)}function p8(t,a){t&1&&qE(0);}function u8(t,a){if(t&1&&(Mp$1(0,0),VE(1,p8,1,0,"ng-container",1),Np$1()),t&2){let e=EM(),i=e.$implicit,n=e.$index,o=EM(2);n_(),zE("ngTemplateOutlet",o.dataTable.groupHeaderTemplate())("ngTemplateOutletContext",aN(2,di,i,o.getRowIndex(n),o.columns(),o.dataTable.editMode()==="row"&&o.dataTable.isRowEditing(i),o.frozen()));}}function m8(t,a){t&1&&qE(0);}function f8(t,a){if(t&1&&VE(0,m8,1,0,"ng-container",1),t&2){let e=EM(),i=e.$implicit,n=e.$index,o=EM(2);zE("ngTemplateOutlet",i?o.template():o.dataTable.loadingBodyTemplate())("ngTemplateOutletContext",aN(2,di,i,o.getRowIndex(n),o.columns(),o.dataTable.editMode()==="row"&&o.dataTable.isRowEditing(i),o.frozen()));}}function h8(t,a){t&1&&qE(0);}function g8(t,a){if(t&1&&VE(0,h8,1,0,"ng-container",1),t&2){let e=EM(),i=e.$implicit,n=e.$index,o=EM(2);zE("ngTemplateOutlet",i?o.template():o.dataTable.loadingBodyTemplate())("ngTemplateOutletContext",uN(2,d8,i,o.getRowIndex(n),o.columns(),o.dataTable.editMode()==="row"&&o.dataTable.isRowEditing(i),o.frozen(),o.shouldRenderRowspan(o.value(),i,n),o.calculateRowGroupSize(o.value(),i,n)));}}function b8(t,a){t&1&&qE(0);}function _8(t,a){if(t&1&&(Mp$1(0,0),VE(1,b8,1,0,"ng-container",1),Np$1()),t&2){let e=EM(),i=e.$implicit,n=e.$index,o=EM(2);n_(),zE("ngTemplateOutlet",o.dataTable.groupFooterTemplate())("ngTemplateOutletContext",aN(2,di,i,o.getRowIndex(n),o.columns(),o.dataTable.editMode()==="row"&&o.dataTable.isRowEditing(i),o.frozen()));}}function y8(t,a){if(t&1&&(rM(0,u8,2,8,"ng-container",0),rM(1,f8,1,8,"ng-container"),rM(2,g8,1,10,"ng-container"),rM(3,_8,2,8,"ng-container",0)),t&2){let e=a.$implicit,i=a.$index,n=EM(2);oM(n.dataTable.groupHeaderTemplate()&&!n.dataTable.virtualScroll()&&n.dataTable.rowGroupMode()==="subheader"&&n.shouldRenderRowGroupHeader(n.value(),e,n.getRowIndex(i))?0:-1),n_(),oM(n.dataTable.rowGroupMode()!=="rowspan"?1:-1),n_(),oM(n.dataTable.rowGroupMode()==="rowspan"?2:-1),n_(),oM(n.dataTable.groupFooterTemplate()&&!n.dataTable.virtualScroll()&&n.dataTable.rowGroupMode()==="subheader"&&n.shouldRenderRowGroupFooter(n.value(),e,n.getRowIndex(i))?3:-1);}}function v8(t,a){if(t&1&&aM(0,y8,4,4,null,null,pi,true),t&2){let e=EM();cM(e.value());}}function x8(t,a){t&1&&qE(0);}function C8(t,a){if(t&1&&VE(0,x8,1,0,"ng-container",1),t&2){let e=EM(),i=e.$implicit,n=e.$index,o=EM(2);zE("ngTemplateOutlet",o.template())("ngTemplateOutletContext",cN(2,H1,i,o.getRowIndex(n),o.columns(),o.dataTable.isRowExpanded(i),o.dataTable.editMode()==="row"&&o.dataTable.isRowEditing(i),o.frozen()));}}function M8(t,a){t&1&&qE(0);}function w8(t,a){if(t&1&&(Mp$1(0,0),VE(1,M8,1,0,"ng-container",1),Np$1()),t&2){let e=EM(),i=e.$implicit,n=e.$index,o=EM(2);n_(),zE("ngTemplateOutlet",o.dataTable.groupHeaderTemplate())("ngTemplateOutletContext",cN(2,H1,i,o.getRowIndex(n),o.columns(),o.dataTable.isRowExpanded(i),o.dataTable.editMode()==="row"&&o.dataTable.isRowEditing(i),o.frozen()));}}function z8(t,a){t&1&&qE(0);}function k8(t,a){t&1&&qE(0);}function T8(t,a){if(t&1&&(Mp$1(0,0),VE(1,k8,1,0,"ng-container",1),Np$1()),t&2){let e=EM(2),i=e.$implicit,n=e.$index,o=EM(2);n_(),zE("ngTemplateOutlet",o.dataTable.groupFooterTemplate())("ngTemplateOutletContext",cN(2,H1,i,o.getRowIndex(n),o.columns(),o.dataTable.isRowExpanded(i),o.dataTable.editMode()==="row"&&o.dataTable.isRowEditing(i),o.frozen()));}}function D8(t,a){if(t&1&&(VE(0,z8,1,0,"ng-container",1),rM(1,T8,2,9,"ng-container",0)),t&2){let e=EM(),i=e.$implicit,n=e.$index,o=EM(2);zE("ngTemplateOutlet",o.dataTable.expandedRowTemplate())("ngTemplateOutletContext",sN(3,j2,i,o.getRowIndex(n),o.columns(),o.frozen())),n_(),oM(o.dataTable.groupFooterTemplate()&&o.dataTable.rowGroupMode()==="subheader"&&o.shouldRenderRowGroupFooter(o.value(),i,o.getRowIndex(n))?1:-1);}}function S8(t,a){if(t&1&&(rM(0,C8,1,9,"ng-container"),rM(1,w8,2,9,"ng-container",0),rM(2,D8,2,8)),t&2){let e=a.$implicit,i=a.$index,n=EM(2);oM(n.dataTable.groupHeaderTemplate()?-1:0),n_(),oM(n.dataTable.groupHeaderTemplate()&&n.dataTable.rowGroupMode()==="subheader"&&n.shouldRenderRowGroupHeader(n.value(),e,n.getRowIndex(i))?1:-1),n_(),oM(n.dataTable.isRowExpanded(e)?2:-1);}}function I8(t,a){if(t&1&&aM(0,S8,3,3,null,null,pi,true),t&2){let e=EM();cM(e.value());}}function E8(t,a){t&1&&qE(0);}function N8(t,a){t&1&&qE(0);}function L8(t,a){if(t&1&&VE(0,N8,1,0,"ng-container",1),t&2){let e=EM(),i=e.$implicit,n=e.$index,o=EM(2);zE("ngTemplateOutlet",o.dataTable.frozenExpandedRowTemplate())("ngTemplateOutletContext",sN(2,j2,i,o.getRowIndex(n),o.columns(),o.frozen()));}}function F8(t,a){if(t&1&&(VE(0,E8,1,0,"ng-container",1),rM(1,L8,1,7,"ng-container")),t&2){let e=a.$implicit,i=a.$index,n=EM(2);zE("ngTemplateOutlet",n.template())("ngTemplateOutletContext",cN(3,H1,e,n.getRowIndex(i),n.columns(),n.dataTable.isRowExpanded(e),n.dataTable.editMode()==="row"&&n.dataTable.isRowEditing(e),n.frozen())),n_(),oM(n.dataTable.isRowExpanded(e)?1:-1);}}function O8(t,a){if(t&1&&aM(0,F8,2,10,null,null,pi,true),t&2){let e=EM();cM(e.value());}}function B8(t,a){t&1&&qE(0);}function V8(t,a){if(t&1&&VE(0,B8,1,0,"ng-container",1),t&2){let e=EM();zE("ngTemplateOutlet",e.dataTable.loadingBodyTemplate())("ngTemplateOutletContext",e.bodyContext());}}function P8(t,a){t&1&&qE(0);}function R8(t,a){if(t&1&&VE(0,P8,1,0,"ng-container",1),t&2){let e=EM();zE("ngTemplateOutlet",e.dataTable.emptyMessageTemplate())("ngTemplateOutletContext",e.bodyContext());}}var W2=["header"],A8=["headergrouped"],H8=["body"],$8=["loadingbody"],G8=["caption"],Y2=["footer"],U8=["footergrouped"],K8=["summary"],q8=["colgroup"],j8=["expandedrow"],W8=["groupheader"],Y8=["groupfooter"],Z8=["frozenexpandedrow"],Q8=["frozenheader"],X8=["frozenbody"],J8=["frozenfooter"],e7=["frozencolgroup"],t7=["emptymessage"],i7=["paginatorleft"],n7=["paginatorright"],o7=["paginatordropdownitem"],a7=["loadingicon"],l7=["reorderindicatorupicon"],r7=["reorderindicatordownicon"],s7=["sorticon"],c7=["checkboxicon"],d7=["headercheckboxicon"],p7=["paginatordropdownicon"],u7=["paginatorfirstpagelinkicon"],m7=["paginatorlastpagelinkicon"],f7=["paginatorpreviouspagelinkicon"],h7=["paginatornextpagelinkicon"],g7=["resizeHelper"],b7=["reorderIndicatorUp"],_7=["reorderIndicatorDown"],y7=["wrapper"],v7=["table"],x7=["thead"],C7=["tfoot"],M7=["scroller"],Z2=(t,a)=>({$implicit:t,options:a}),w7=t=>({columns:t}),wt=t=>({$implicit:t});function z7(t,a){if(t&1&&au$1(0,"i",17),t&2){let e=EM(2);jM(e.cn(e.cx("loadingIcon"),e.loadingIcon())),zE("pBind",e.ptm("loadingIcon"));}}function k7(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",21)),t&2){let e=EM(3);jM(e.cn(e.cx("loadingIcon"),"animate-spin")),zE("pBind",e.ptm("loadingIcon"));}}function T7(t,a){}function D7(t,a){t&1&&VE(0,T7,0,0,"ng-template");}function S7(t,a){if(t&1&&(Bc$1(0,"span",17),VE(1,D7,1,0,null,22),bp$1()),t&2){let e=EM(3);jM(e.cx("loadingIcon")),zE("pBind",e.ptm("loadingIcon")),n_(),zE("ngTemplateOutlet",e.loadingIconTemplate());}}function I7(t,a){if(t&1&&(rM(0,k7,1,3,":svg:svg",20),rM(1,S7,2,4,"span",15)),t&2){let e=EM(2);oM(e.loadingIconTemplate()?-1:0),n_(),oM(e.loadingIconTemplate()?1:-1);}}function E7(t,a){if(t&1&&(Bc$1(0,"div",17),wc$1("p-overlay-mask-leave-active"),Dc$1("p-overlay-mask-enter-active"),rM(1,z7,1,3,"i",15),rM(2,I7,2,2),bp$1()),t&2){let e=EM();jM(e.cx("mask")),zE("pBind",e.ptm("mask")),n_(),oM(e.loadingIcon()?1:-1),n_(),oM(e.loadingIcon()?-1:2);}}function N7(t,a){t&1&&qE(0);}function L7(t,a){if(t&1&&(Bc$1(0,"div",17),VE(1,N7,1,0,"ng-container",22),bp$1()),t&2){let e=EM();jM(e.cx("header")),zE("pBind",e.ptm("header")),n_(),zE("ngTemplateOutlet",e.captionTemplate());}}function F7(t,a){t&1&&qE(0);}function O7(t,a){if(t&1&&VE(0,F7,1,0,"ng-container",22),t&2){let e=EM(3);zE("ngTemplateOutlet",e.paginatorDropdownIconTemplate());}}function B7(t,a){t&1&&VE(0,O7,1,1,"ng-template",null,2,pN);}function V7(t,a){t&1&&qE(0);}function P7(t,a){if(t&1&&VE(0,V7,1,0,"ng-container",22),t&2){let e=EM(3);zE("ngTemplateOutlet",e.paginatorFirstPageLinkIconTemplate());}}function R7(t,a){t&1&&VE(0,P7,1,1,"ng-template",null,3,pN);}function A7(t,a){t&1&&qE(0);}function H7(t,a){if(t&1&&VE(0,A7,1,0,"ng-container",22),t&2){let e=EM(3);zE("ngTemplateOutlet",e.paginatorPreviousPageLinkIconTemplate());}}function $7(t,a){t&1&&VE(0,H7,1,1,"ng-template",null,4,pN);}function G7(t,a){t&1&&qE(0);}function U7(t,a){if(t&1&&VE(0,G7,1,0,"ng-container",22),t&2){let e=EM(3);zE("ngTemplateOutlet",e.paginatorLastPageLinkIconTemplate());}}function K7(t,a){t&1&&VE(0,U7,1,1,"ng-template",null,5,pN);}function q7(t,a){t&1&&qE(0);}function j7(t,a){if(t&1&&VE(0,q7,1,0,"ng-container",22),t&2){let e=EM(3);zE("ngTemplateOutlet",e.paginatorNextPageLinkIconTemplate());}}function W7(t,a){t&1&&VE(0,j7,1,1,"ng-template",null,6,pN);}function Y7(t,a){if(t&1){let e=hM();Bc$1(0,"p-paginator",23),cu$1("onPageChange",function(n){Rm$1(e);let o=EM();return xm$1(o.onPageChange(n))}),rM(1,B7,2,0),rM(2,R7,2,0),rM(3,$7,2,0),rM(4,K7,2,0),rM(5,W7,2,0),bp$1();}if(t&2){let e=EM();jM(e.cn(e.cx("pcPaginator"),e.paginatorStyleClass())),zE("rows",e.rows())("first",e.first())("totalRecords",e.totalRecords())("pageLinkSize",e.pageLinks())("alwaysShow",e.alwaysShowPaginator())("rowsPerPageOptions",e.rowsPerPageOptions())("templateLeft",e.paginatorLeftTemplate())("templateRight",e.paginatorRightTemplate())("appendTo",e.paginatorDropdownAppendTo())("dropdownScrollHeight",e.paginatorDropdownScrollHeight())("currentPageReportTemplate",e.currentPageReportTemplate())("showFirstLastIcon",e.showFirstLastIcon())("dropdownItemTemplate",e.paginatorDropdownItemTemplate())("showCurrentPageReport",e.showCurrentPageReport())("showJumpToPageDropdown",e.showJumpToPageDropdown())("showJumpToPageInput",e.showJumpToPageInput())("showPageLinks",e.showPageLinks())("locale",e.paginatorLocale())("pt",e.ptm("pcPaginator"))("unstyled",e.unstyled()),n_(),oM(e.paginatorDropdownIconTemplate()?1:-1),n_(),oM(e.paginatorFirstPageLinkIconTemplate()?2:-1),n_(),oM(e.paginatorPreviousPageLinkIconTemplate()?3:-1),n_(),oM(e.paginatorLastPageLinkIconTemplate()?4:-1),n_(),oM(e.paginatorNextPageLinkIconTemplate()?5:-1);}}function Z7(t,a){t&1&&qE(0);}function Q7(t,a){if(t&1&&VE(0,Z7,1,0,"ng-container",25),t&2){let e=a.$implicit,i=a.options;EM(2);let n=CM(8);zE("ngTemplateOutlet",n)("ngTemplateOutletContext",iN(2,Z2,e,i));}}function X7(t,a){if(t&1){let e=hM();Bc$1(0,"p-scroller",24,7),cu$1("onLazyLoad",function(n){Rm$1(e);let o=EM();return xm$1(o.onLazyItemLoad(n))}),VE(2,Q7,1,5,"ng-template",null,8,pN),bp$1();}if(t&2){let e=EM();PM(e.scrollerStyle()),zE("items",e.processedData)("columns",e.columns)("scrollHeight",e.scrollerScrollHeight())("itemSize",e.virtualScrollItemSize())("step",e.rows())("delay",e.scrollerDelay())("inline",true)("autoSize",true)("lazy",e.lazy())("loaderDisabled",true)("showSpacer",false)("showLoader",e.loadingBodyTemplate())("options",e.virtualScrollOptions())("pt",e.ptm("virtualScroller"));}}function J7(t,a){t&1&&qE(0);}function e9(t,a){if(t&1&&VE(0,J7,1,0,"ng-container",25),t&2){let e=EM(),i=CM(8);zE("ngTemplateOutlet",i)("ngTemplateOutletContext",iN(4,Z2,e.processedData,oN(2,w7,e.columns)));}}function t9(t,a){t&1&&qE(0);}function i9(t,a){t&1&&qE(0);}function n9(t,a){if(t&1&&au$1(0,"tbody",32),t&2){let e=EM().options,i=EM();jM(i.cx("tbody")),zE("pBind",i.ptm("tbody"))("value",i.frozenValue())("frozenRows",true)("pTableBody",e.columns)("pTableBodyTemplate",i.frozenBodyTemplate())("unstyled",i.unstyled())("frozen",true),su$1("data-p-virtualscroll",i.virtualScroll());}}function o9(t,a){if(t&1&&au$1(0,"tbody",27),t&2){let e=EM().options,i=EM();PM(i.getVirtualScrollerSpacerStyle(e)),jM(i.cx("virtualScrollerSpacer")),zE("pBind",i.ptm("virtualScrollerSpacer"));}}function a9(t,a){t&1&&qE(0);}function l9(t,a){if(t&1&&(Bc$1(0,"tfoot",27,11),VE(2,a9,1,0,"ng-container",25),bp$1()),t&2){let e=EM().options,i=EM();PM(i.sx("tfoot")),jM(i.cx("footer")),zE("pBind",i.ptm("tfoot")),n_(2),zE("ngTemplateOutlet",i.footerGroupedTemplate()||i.footerTemplate())("ngTemplateOutletContext",oN(7,wt,e.columns));}}function r9(t,a){if(t&1&&(Bc$1(0,"table",26,9),VE(2,t9,1,0,"ng-container",25),Bc$1(3,"thead",27,10),VE(5,i9,1,0,"ng-container",25),bp$1(),rM(6,n9,1,10,"tbody",28),au$1(7,"tbody",29),rM(8,o9,1,5,"tbody",30),rM(9,l9,3,9,"tfoot",31),bp$1()),t&2){let e=a.options,i=EM();PM(i.tableStyle()),jM(i.cn(i.cx("table"),i.tableStyleClass())),zE("pBind",i.ptm("table")),su$1("id",i.id+"-table"),n_(2),zE("ngTemplateOutlet",i.colGroupTemplate())("ngTemplateOutletContext",oN(29,wt,e.columns)),n_(),PM(i.sx("thead")),jM(i.cx("thead")),zE("pBind",i.ptm("thead")),n_(2),zE("ngTemplateOutlet",i.headerGroupedTemplate()||i.headerTemplate())("ngTemplateOutletContext",oN(31,wt,e.columns)),n_(),oM(i.showFrozenBody()?6:-1),n_(),PM(e.contentStyle),jM(i.cn(i.cx("tbody"),e.contentStyleClass)),zE("pBind",i.ptm("tbody"))("value",i.dataToRender(e.rows))("pTableBody",e.columns)("pTableBodyTemplate",i.bodyTemplate())("scrollerOptions",e)("unstyled",i.unstyled()),su$1("data-p-virtualscroll",i.virtualScroll()),n_(),oM(e.spacerStyle?8:-1),n_(),oM(i.showFooter()?9:-1);}}function s9(t,a){t&1&&qE(0);}function c9(t,a){if(t&1&&VE(0,s9,1,0,"ng-container",22),t&2){let e=EM(3);zE("ngTemplateOutlet",e.paginatorDropdownIconTemplate());}}function d9(t,a){t&1&&VE(0,c9,1,1,"ng-template",null,2,pN);}function p9(t,a){t&1&&qE(0);}function u9(t,a){if(t&1&&VE(0,p9,1,0,"ng-container",22),t&2){let e=EM(3);zE("ngTemplateOutlet",e.paginatorFirstPageLinkIconTemplate());}}function m9(t,a){t&1&&VE(0,u9,1,1,"ng-template",null,3,pN);}function f9(t,a){t&1&&qE(0);}function h9(t,a){if(t&1&&VE(0,f9,1,0,"ng-container",22),t&2){let e=EM(3);zE("ngTemplateOutlet",e.paginatorPreviousPageLinkIconTemplate());}}function g9(t,a){t&1&&VE(0,h9,1,1,"ng-template",null,4,pN);}function b9(t,a){t&1&&qE(0);}function _9(t,a){if(t&1&&VE(0,b9,1,0,"ng-container",22),t&2){let e=EM(3);zE("ngTemplateOutlet",e.paginatorLastPageLinkIconTemplate());}}function y9(t,a){t&1&&VE(0,_9,1,1,"ng-template",null,5,pN);}function v9(t,a){t&1&&qE(0);}function x9(t,a){if(t&1&&VE(0,v9,1,0,"ng-container",22),t&2){let e=EM(3);zE("ngTemplateOutlet",e.paginatorNextPageLinkIconTemplate());}}function C9(t,a){t&1&&VE(0,x9,1,1,"ng-template",null,6,pN);}function M9(t,a){if(t&1){let e=hM();Bc$1(0,"p-paginator",23),cu$1("onPageChange",function(n){Rm$1(e);let o=EM();return xm$1(o.onPageChange(n))}),rM(1,d9,2,0),rM(2,m9,2,0),rM(3,g9,2,0),rM(4,y9,2,0),rM(5,C9,2,0),bp$1();}if(t&2){let e=EM();jM(e.cn(e.cx("pcPaginator"),e.paginatorStyleClass())),zE("rows",e.rows())("first",e.first())("totalRecords",e.totalRecords())("pageLinkSize",e.pageLinks())("alwaysShow",e.alwaysShowPaginator())("rowsPerPageOptions",e.rowsPerPageOptions())("templateLeft",e.paginatorLeftTemplate())("templateRight",e.paginatorRightTemplate())("appendTo",e.paginatorDropdownAppendTo())("dropdownScrollHeight",e.paginatorDropdownScrollHeight())("currentPageReportTemplate",e.currentPageReportTemplate())("showFirstLastIcon",e.showFirstLastIcon())("dropdownItemTemplate",e.paginatorDropdownItemTemplate())("showCurrentPageReport",e.showCurrentPageReport())("showJumpToPageDropdown",e.showJumpToPageDropdown())("showJumpToPageInput",e.showJumpToPageInput())("showPageLinks",e.showPageLinks())("locale",e.paginatorLocale())("pt",e.ptm("pcPaginator"))("unstyled",e.unstyled()),n_(),oM(e.paginatorDropdownIconTemplate()?1:-1),n_(),oM(e.paginatorFirstPageLinkIconTemplate()?2:-1),n_(),oM(e.paginatorPreviousPageLinkIconTemplate()?3:-1),n_(),oM(e.paginatorLastPageLinkIconTemplate()?4:-1),n_(),oM(e.paginatorNextPageLinkIconTemplate()?5:-1);}}function w9(t,a){t&1&&qE(0);}function z9(t,a){if(t&1&&(Bc$1(0,"div",17),VE(1,w9,1,0,"ng-container",22),bp$1()),t&2){let e=EM();jM(e.cx("footer")),zE("pBind",e.ptm("footer")),n_(),zE("ngTemplateOutlet",e.summaryTemplate());}}function k9(t,a){if(t&1&&au$1(0,"div",17,12),t&2){let e=EM();jM(e.cx("columnResizeIndicator")),fu$1("display","none"),zE("pBind",e.ptm("columnResizeIndicator"));}}function T9(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",33)),t&2){let e=EM(2);zE("pBind",e.ptm("rowReorderIndicatorUp").icon);}}function D9(t,a){}function S9(t,a){t&1&&VE(0,D9,0,0,"ng-template");}function I9(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",34)),t&2){let e=EM(2);zE("pBind",e.ptm("rowReorderIndicatorDown").icon);}}function E9(t,a){}function N9(t,a){t&1&&VE(0,E9,0,0,"ng-template");}function L9(t,a){if(t&1&&(Bc$1(0,"span",17,13),rM(2,T9,1,1,":svg:svg",33),VE(3,S9,1,0,null,22),bp$1(),Bc$1(4,"span",17,14),rM(6,I9,1,1,":svg:svg",34),VE(7,N9,1,0,null,22),bp$1()),t&2){let e=EM();jM(e.cx("rowReorderIndicatorUp")),fu$1("display","none"),zE("pBind",e.ptm("rowReorderIndicatorUp")),n_(2),oM(e.reorderIndicatorUpIconTemplate()?-1:2),n_(),zE("ngTemplateOutlet",e.reorderIndicatorUpIconTemplate()),n_(),jM(e.cx("rowReorderIndicatorDown")),fu$1("display","none"),zE("pBind",e.ptm("rowReorderIndicatorDown")),n_(2),oM(e.reorderIndicatorDownIconTemplate()?-1:6),n_(),zE("ngTemplateOutlet",e.reorderIndicatorDownIconTemplate());}}function F9(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",5)),t&2){let e=EM(2);jM(e.cx("sortableColumnIcon"));}}function O9(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",6)),t&2){let e=EM(2);jM(e.cx("sortableColumnIcon"));}}function B9(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",7)),t&2){let e=EM(2);jM(e.cx("sortableColumnIcon"));}}function V9(t,a){if(t&1&&(rM(0,F9,1,2,":svg:svg",2),rM(1,O9,1,2,":svg:svg",3),rM(2,B9,1,2,":svg:svg",4)),t&2){let e=EM();oM(e.sortOrder()===0?0:-1),n_(),oM(e.sortOrder()===1?1:-1),n_(),oM(e.sortOrder()===-1?2:-1);}}function P9(t,a){}function R9(t,a){t&1&&VE(0,P9,0,0,"ng-template");}function A9(t,a){if(t&1&&(Bc$1(0,"span"),VE(1,R9,1,0,null,8),bp$1()),t&2){let e=EM();jM(e.cx("sortableColumnIcon")),n_(),zE("ngTemplateOutlet",e.dataTable.sortIconTemplate())("ngTemplateOutletContext",oN(4,wt,e.sortOrder()));}}function H9(t,a){if(t&1&&au$1(0,"p-badge",9),t&2){let e=EM();jM(e.cx("sortableColumnBadge")),zE("value",e.getBadgeValue());}}var $9=["rb"];function G9(t,a){}function U9(t,a){t&1&&VE(0,G9,0,0,"ng-template");}function K9(t,a){if(t&1&&VE(0,U9,1,0,null,2),t&2){let e=EM(),i=EM();zE("ngTemplateOutlet",e)("ngTemplateOutletContext",oN(2,wt,i.checked()));}}function q9(t,a){t&1&&VE(0,K9,1,4,"ng-template",null,0,pN);}function j9(t,a){}function W9(t,a){t&1&&VE(0,j9,0,0,"ng-template");}function Y9(t,a){if(t&1&&VE(0,W9,1,0,null,2),t&2){let e=EM(),i=EM();zE("ngTemplateOutlet",e)("ngTemplateOutletContext",oN(2,wt,i.checked));}}function Z9(t,a){t&1&&VE(0,Y9,1,4,"ng-template",null,0,pN);}function Q9(t,a){t&1&&qE(0);}function X9(t,a){if(t&1&&VE(0,Q9,1,0,"ng-container",0),t&2){let e=EM();zE("ngTemplateOutlet",e.filterTemplate())("ngTemplateOutletContext",e.filterTemplateContext());}}function J9(t,a){if(t&1){let e=hM();Bc$1(0,"input",5),cu$1("input",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onModelChange(n.target.value))})("keydown.enter",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onTextInputEnterKeyDown(n))}),bp$1();}if(t&2){let e=EM(2);zE("ariaLabel",e.ariaLabel())("pt",e.ptm("pcFilterInputText"))("value",e.filterConstraint()?.value)("unstyled",e.unstyled()),su$1("placeholder",e.placeholder());}}function ep(t,a){if(t&1){let e=hM();Bc$1(0,"p-input-number",6),cu$1("ngModelChange",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onModelChange(n))})("onKeyDown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onNumericInputKeyDown(n))}),bp$1(),z_();}if(t&2){let e=EM(2);zE("ngModel",e.filterConstraint()?.value)("showButtons",e.showButtons())("minFractionDigits",e.minFractionDigits())("maxFractionDigits",e.maxFractionDigits())("ariaLabel",e.ariaLabel())("prefix",e.prefix())("suffix",e.suffix())("placeholder",e.placeholder())("mode",e.currency()?"currency":"decimal")("locale",e.locale())("localeMatcher",e.localeMatcher())("currency",e.currency())("currencyDisplay",e.currencyDisplay())("useGrouping",e.useGrouping())("pt",e.ptm("pcFilterInputNumber"))("unstyled",e.unstyled()),W_();}}function tp(t,a){if(t&1){let e=hM();Bc$1(0,"p-checkbox",7),cu$1("ngModelChange",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onModelChange(n))}),bp$1(),z_();}if(t&2){let e=EM(2);zE("pt",e.ptm("pcFilterCheckbox"))("indeterminate",e.filterConstraint()?.value===null)("binary",true)("ngModel",e.filterConstraint()?.value)("unstyled",e.unstyled()),W_();}}function ip(t,a){if(t&1){let e=hM();Bc$1(0,"p-datepicker",8),cu$1("ngModelChange",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onModelChange(n))}),bp$1(),z_();}if(t&2){let e=EM(2);zE("pt",e.ptm("pcFilterDatePicker"))("ariaLabel",e.ariaLabel())("placeholder",e.placeholder())("ngModel",e.filterConstraint()?.value)("unstyled",e.unstyled()),W_();}}function np(t,a){if(t&1&&rM(0,J9,1,5,"input",1)(1,ep,1,16,"p-input-number",2)(2,tp,1,5,"p-checkbox",3)(3,ip,1,5,"p-datepicker",4),t&2){let e,i=EM();oM((e=i.type())==="text"?0:e==="numeric"?1:e==="boolean"?2:e==="date"?3:-1);}}var op=["filter"],ap=["filtericon"],lp=["removeruleicon"],rp=["addruleicon"],sp=["menuButton"],cp=["clearBtn"],dp=t=>({hasFilter:t}),pp=(t,a)=>a.value;function up(t,a){if(t&1&&au$1(0,"p-column-filter-form-element",5),t&2){let e=EM();jM(e.cx("filterElementContainer")),zE("type",e.type())("field",e.field())("ariaLabel",e.ariaLabel())("filterConstraint",e.dataTable.filters[e.field()])("filterTemplate",e.filterTemplate())("placeholder",e.placeholder())("minFractionDigits",e.minFractionDigits())("maxFractionDigits",e.maxFractionDigits())("prefix",e.prefix())("suffix",e.suffix())("locale",e.locale())("localeMatcher",e.localeMatcher())("currency",e.currency())("currencyDisplay",e.currencyDisplay())("useGrouping",e.useGrouping())("filterOn",e.filterOn())("pt",e.pt())("unstyled",e.unstyled());}}function mp(t,a){}function fp(t,a){t&1&&VE(0,mp,0,0,"ng-template");}function hp(t,a){if(t&1&&(Bc$1(0,"span",7),VE(1,fp,1,0,null,10),bp$1()),t&2){let e=EM(2);zE("pBind",e.ptm("pcColumnFilterButton").icon),su$1("data-pc-section","columnfilterbuttonicon"),n_(),zE("ngTemplateOutlet",e.filterIconTemplate())("ngTemplateOutletContext",oN(4,dp,e.hasFilter));}}function gp(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",8)),t&2){let e=EM(2);zE("pBind",e.ptm("pcColumnFilterButton").icon);}}function bp(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",9)),t&2){let e=EM(2);zE("pBind",e.ptm("pcColumnFilterButton").icon);}}function _p(t,a){if(t&1){let e=hM();Bc$1(0,"button",6,0),cu$1("click",function(n){Rm$1(e);let o=EM();return xm$1(o.toggleMenu(n))})("keydown",function(n){Rm$1(e);let o=EM();return xm$1(o.onToggleButtonKeyDown(n))}),rM(2,hp,2,6,"span",7)(3,gp,1,1,":svg:svg",8)(4,bp,1,1,":svg:svg",9),bp$1();}if(t&2){let e=EM();jM(e.cx("pcColumnFilterButton")),zE("pButton",e.filterButtonProps()?.filter)("pButtonPT",e.ptm("pcColumnFilterButton"))("pButtonUnstyled",e.unstyled()),su$1("aria-haspopup",true)("aria-label",e.filterMenuButtonAriaLabel)("aria-controls",e.overlayVisible?e.overlayId:null)("aria-expanded",e.overlayVisible??false),n_(2),oM(e.filterIconTemplate()?2:e.hasFilter?3:4);}}function yp(t,a){t&1&&qE(0);}function vp(t,a){if(t&1){let e=hM();Bc$1(0,"li",14),cu$1("click",function(){let n=Rm$1(e).$implicit,o=EM(3);return xm$1(o.onRowMatchModeChange(n.value))})("keydown",function(n){Rm$1(e);let o=EM(3);return xm$1(o.onRowMatchModeKeyDown(n))})("keydown.enter",function(){let n=Rm$1(e).$implicit,o=EM(3);return xm$1(o.onRowMatchModeChange(n.value))}),YM(1),bp$1();}if(t&2){let e=a.$implicit,i=a.$index,n=EM(3);jM(n.cx("filterConstraint")),rD("p-datatable-filter-constraint-selected",n.isRowMatchModeSelected(e.value)),zE("pBind",n.ptm("filterConstraint",n.ptmFilterConstraintOptions(e))),su$1("tabindex",i===0?"0":null),n_(),xp$1(" ",e.label," ");}}function xp(t,a){if(t&1){let e=hM();Bc$1(0,"ul",7),aM(1,vp,2,7,"li",13,pp),au$1(3,"li",7),Bc$1(4,"li",14),cu$1("click",function(){Rm$1(e);let n=EM(2);return xm$1(n.onRowClearItemClick())})("keydown",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onRowMatchModeKeyDown(n))})("keydown.enter",function(){Rm$1(e);let n=EM(2);return xm$1(n.onRowClearItemClick())}),YM(5),bp$1()();}if(t&2){let e=EM(2);jM(e.cx("filterConstraintList")),zE("pBind",e.ptm("filterConstraintList")),n_(),cM(e.matchModes),n_(2),jM(e.cx("filterConstraintSeparator")),zE("pBind",e.ptm("filterConstraintSeparator")),n_(),jM(e.cx("filterConstraint")),zE("pBind",e.ptm("emtpyFilterLabel")),n_(),xp$1(" ",e.noFilterLabel," ");}}function Cp(t,a){if(t&1){let e=hM();Bc$1(0,"div",7)(1,"p-select",18),cu$1("ngModelChange",function(n){Rm$1(e);let o=EM(3);return xm$1(o.onOperatorChange(n))}),bp$1(),z_(),bp$1();}if(t&2){let e=EM(3);jM(e.cx("filterOperator")),zE("pBind",e.ptm("filterOperator")),n_(),jM(e.cx("pcFilterOperatorDropdown")),zE("options",e.operatorOptions)("pt",e.ptm("pcFilterOperatorDropdown"))("ngModel",e.operator())("unstyled",e.unstyled()),W_();}}function Mp(t,a){if(t&1){let e=hM();Bc$1(0,"p-select",22),cu$1("ngModelChange",function(n){Rm$1(e);let o=EM().$implicit,r=EM(3);return xm$1(r.onMenuMatchModeChange(n,o))}),bp$1(),z_();}if(t&2){let e=EM().$implicit,i=EM(3);zE("options",i.matchModes)("ngModel",e.matchMode)("styleClass",i.cx("pcFilterConstraintDropdown"))("pt",i.ptm("pcFilterConstraintDropdown"))("unstyled",i.unstyled()),W_();}}function wp(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",24)),t&2){let e=EM(5);zE("pBind",e.ptm("pcFilterRemoveRuleButton").icon);}}function zp(t,a){}function kp(t,a){t&1&&VE(0,zp,0,0,"ng-template");}function Tp(t,a){if(t&1){let e=hM();Bc$1(0,"button",23),cu$1("click",function(){Rm$1(e);let n=EM().$implicit,o=EM(3);return xm$1(o.removeConstraint(n))}),rM(1,wp,1,1,":svg:svg",24),VE(2,kp,1,0,null,25),YM(3),bp$1();}if(t&2){let e=EM(4);jM(e.cx("pcFilterRemoveRuleButton")),zE("pButton",e.filterButtonProps()?.popover?.removeRule)("pButtonPT",e.ptm("pcFilterRemoveRuleButton"))("pButtonUnstyled",e.unstyled()),su$1("aria-label",e.removeRuleButtonLabel),n_(),oM(e.removeRuleIconTemplate()?-1:1),n_(),zE("ngTemplateOutlet",e.removeRuleIconTemplate()),n_(),xp$1(" ",e.removeRuleButtonLabel," ");}}function Dp(t,a){if(t&1&&(Bc$1(0,"div",7),rM(1,Mp,1,5,"p-select",19),au$1(2,"p-column-filter-form-element",20),Bc$1(3,"div"),rM(4,Tp,4,9,"button",21),bp$1()()),t&2){let e=a.$implicit,i=EM(3);jM(i.cx("filterRule")),zE("pBind",i.ptm("filterRule")),n_(),oM(i.showMatchModes()&&i.matchModes?1:-1),n_(),zE("type",i.type())("field",i.field())("filterConstraint",e)("filterTemplate",i.filterTemplate())("placeholder",i.placeholder())("minFractionDigits",i.minFractionDigits())("maxFractionDigits",i.maxFractionDigits())("prefix",i.prefix())("suffix",i.suffix())("locale",i.locale())("localeMatcher",i.localeMatcher())("currency",i.currency())("currencyDisplay",i.currencyDisplay())("useGrouping",i.useGrouping())("filterOn",i.filterOn())("pt",i.pt())("unstyled",i.unstyled()),n_(2),oM(i.showRemoveIcon?4:-1);}}function Sp(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",27)),t&2){let e=EM(4);zE("pBind",e.ptm("pcAddRuleButtonLabel").icon);}}function Ip(t,a){}function Ep(t,a){t&1&&VE(0,Ip,0,0,"ng-template");}function Np(t,a){if(t&1){let e=hM();Bc$1(0,"button",26),cu$1("click",function(){Rm$1(e);let n=EM(3);return xm$1(n.addConstraint())}),rM(1,Sp,1,1,":svg:svg",27),VE(2,Ep,1,0,null,25),YM(3),bp$1();}if(t&2){let e=EM(3);jM(e.cx("pcFilterAddRuleButton")),zE("pButton",e.filterButtonProps()?.popover?.addRule)("pButtonPT",e.ptm("pcAddRuleButtonLabel"))("pButtonUnstyled",e.unstyled()),su$1("aria-label",e.addRuleButtonLabel),n_(),oM(e.addRuleIconTemplate()?-1:1),n_(),zE("ngTemplateOutlet",e.addRuleIconTemplate()),n_(),xp$1(" ",e.addRuleButtonLabel," ");}}function Lp(t,a){if(t&1){let e=hM();Bc$1(0,"button",28,1),cu$1("click",function(){Rm$1(e);let n=EM(3);return xm$1(n.clearFilter())}),YM(2),bp$1();}if(t&2){let e=EM(3);zE("pButton",e.filterButtonProps()?.popover?.clear)("pButtonPT",e.ptm("pcFilterClearButton"))("pButtonUnstyled",e.unstyled()),su$1("aria-label",e.clearButtonLabel),n_(2),xp$1(" ",e.clearButtonLabel," ");}}function Fp(t,a){if(t&1){let e=hM();Bc$1(0,"button",29),cu$1("click",function(){Rm$1(e);let n=EM(3);return xm$1(n.applyFilter())}),YM(1),bp$1();}if(t&2){let e=EM(3);zE("pButton",e.filterButtonProps()?.popover?.apply)("pButtonPT",e.ptm("pcFilterApplyButton"))("pButtonUnstyled",e.unstyled()),su$1("aria-label",e.applyButtonLabel),n_(),xp$1(" ",e.applyButtonLabel," ");}}function Op(t,a){if(t&1&&(rM(0,Cp,2,9,"div",12),Bc$1(1,"div",7),aM(2,Dp,5,22,"div",12,iM),bp$1(),rM(4,Np,4,9,"button",15),Bc$1(5,"div",7),rM(6,Lp,3,5,"button",16),rM(7,Fp,2,5,"button",17),bp$1()),t&2){let e=EM(2);oM(e.isShowOperator?0:-1),n_(),jM(e.cx("filterRuleList")),zE("pBind",e.ptm("filterRuleList")),n_(),cM(e.fieldConstraints),n_(2),oM(e.isShowAddConstraint?4:-1),n_(),jM(e.cx("filterButtonbar")),zE("pBind",e.ptm("filterButtonBar")),n_(),oM(e.showClearButton()?6:-1),n_(),oM(e.showApplyButton()?7:-1);}}function Bp(t,a){t&1&&qE(0);}function Vp(t,a){if(t&1){let e=hM();Bc$1(0,"div",11),cu$1("pMotionOnBeforeEnter",function(n){Rm$1(e);let o=EM();return xm$1(o.onOverlayBeforeEnter(n))})("pMotionOnAfterLeave",function(n){Rm$1(e);let o=EM();return xm$1(o.onOverlayAnimationAfterLeave(n))})("click",function(){Rm$1(e);let n=EM();return xm$1(n.onContentClick())})("keydown.escape",function(){Rm$1(e);let n=EM();return xm$1(n.onEscape())}),VE(1,yp,1,0,"ng-container",10),rM(2,xp,6,10,"ul",12)(3,Op,8,10),VE(4,Bp,1,0,"ng-container",10),bp$1();}if(t&2){let e=EM();jM(e.cx("filterOverlay")),zE("pMotion",e.showMenu()&&e.overlayVisible)("pMotionAppear",true)("pMotionOptions",e.computedMotionOptions())("pBind",e.ptm("filterOverlay"))("id",e.overlayId),su$1("aria-modal",true),n_(),zE("ngTemplateOutlet",e.headerTemplate())("ngTemplateOutletContext",oN(13,wt,e.field())),n_(),oM(e.display()==="row"?2:3),n_(2),zE("ngTemplateOutlet",e.footerTemplate())("ngTemplateOutletContext",oN(15,wt,e.field()));}}var Pp=` +${t2} + +/* For PrimeNG */ +.p-datatable-scrollable-table > .p-datatable-thead { + top: 0; + z-index: 2; +} + +.p-datatable-scrollable-table > .p-datatable-frozen-tbody { + position: sticky; + z-index: 2; +} + +.p-datatable-scrollable-table > .p-datatable-frozen-tbody + .p-datatable-frozen-tbody { + z-index: 1; +} + +.p-datatable-mask.p-overlay-mask { + position: absolute; + display: flex; + align-items: center; + justify-content: center; + z-index: 3; +} + +.p-datatable-filter-overlay { + position: absolute; + background: dt('datatable.filter.overlay.select.background'); + color: dt('datatable.filter.overlay.select.color'); + border: 1px solid dt('datatable.filter.overlay.select.border.color'); + border-radius: dt('datatable.filter.overlay.select.border.radius'); + box-shadow: dt('datatable.filter.overlay.select.shadow'); + min-width: 12.5rem; +} + +.p-datatable-filter-rule { + border-bottom: 1px solid dt('datatable.filter.rule.border.color'); +} + +.p-datatable-filter-rule:last-child { + border-bottom: 0 none; +} + +.p-datatable-filter-add-rule-button, +.p-datatable-filter-remove-rule-button { + width: 100%; +} + +.p-datatable-filter-remove-button { + width: 100%; +} + +.p-datatable-thead > tr > th { + padding: dt('datatable.header.cell.padding'); + background: dt('datatable.header.cell.background'); + border-color: dt('datatable.header.cell.border.color'); + border-style: solid; + border-width: 0 0 1px 0; + color: dt('datatable.header.cell.color'); + font-weight: dt('datatable.column.title.font.weight'); + text-align: start; + transition: + background dt('datatable.transition.duration'), + color dt('datatable.transition.duration'), + border-color dt('datatable.transition.duration'), + outline-color dt('datatable.transition.duration'), + box-shadow dt('datatable.transition.duration'); +} + +.p-datatable-thead > tr > th p-column-filter, +.p-datatable-thead > tr > th p-columnfilter { + font-weight: normal; +} + +.p-datatable-thead > tr > th, +.p-datatable-sort-icon, +.p-datatable-sort-badge { + vertical-align: middle; +} + +.p-datatable-thead > tr > th.p-datatable-column-sorted { + background: dt('datatable.header.cell.selected.background'); + color: dt('datatable.header.cell.selected.color'); +} + +.p-datatable-thead > tr > th.p-datatable-column-sorted .p-datatable-sort-icon { + color: dt('datatable.header.cell.selected.color'); +} + +.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(odd) { + background: dt('datatable.row.striped.background'); +} + +.p-datatable.p-datatable-striped .p-datatable-tbody > tr:nth-child(odd).p-datatable-row-selected { + background: dt('datatable.row.selected.background'); + color: dt('datatable.row.selected.color'); +} + +p-sort-icon, p-sorticon { + display: inline-flex; + align-items: center; + gap: dt('datatable.header.cell.gap'); +} + +.p-datatable .p-editable-column.p-cell-editing { + padding: 0; +} + +.p-datatable .p-editable-column.p-cell-editing p-cell-editor, +.p-datatable .p-editable-column.p-cell-editing p-celleditor { + display: block; + width: 100%; +} +`,Rp={root:({instance:t})=>["p-datatable p-component",{"p-datatable-hoverable":t.rowHover()||t.selectionMode(),"p-datatable-resizable":t.resizableColumns(),"p-datatable-resizable-fit":t.resizableColumns()&&t.columnResizeMode()==="fit","p-datatable-scrollable":t.scrollable(),"p-datatable-flex-scrollable":t.scrollable()&&t.scrollHeight()==="flex","p-datatable-striped":t.stripedRows(),"p-datatable-gridlines":t.showGridlines(),"p-datatable-sm":t.size()==="small","p-datatable-lg":t.size()==="large"}],mask:"p-datatable-mask p-overlay-mask",loadingIcon:"p-datatable-loading-icon",header:"p-datatable-header",pcPaginator:({instance:t})=>"p-datatable-paginator-"+t.paginatorPosition(),tableContainer:"p-datatable-table-container",table:({instance:t})=>["p-datatable-table",{"p-datatable-scrollable-table":t.scrollable(),"p-datatable-resizable-table":t.resizableColumns(),"p-datatable-resizable-table-fit":t.resizableColumns()&&t.columnResizeMode()==="fit"}],thead:"p-datatable-thead",columnResizer:"p-datatable-column-resizer",columnHeaderContent:"p-datatable-column-header-content",columnTitle:"p-datatable-column-title",columnFooter:"p-datatable-column-footer",sortIcon:"p-datatable-sort-icon",pcSortBadge:"p-datatable-sort-badge",filter:({instance:t})=>({"p-datatable-filter":true,"p-datatable-inline-filter":t.display()==="row","p-datatable-popover-filter":t.display()==="menu"}),filterElementContainer:"p-datatable-filter-element-container",pcColumnFilterButton:"p-datatable-column-filter-button",pcColumnFilterClearButton:"p-datatable-column-filter-clear-button",filterOverlay:({instance:t})=>({"p-datatable-filter-overlay p-component":true,"p-datatable-filter-overlay-popover":t.display()==="menu"}),filterConstraintList:"p-datatable-filter-constraint-list",filterConstraint:({selected:t})=>({"p-datatable-filter-constraint":true,"p-datatable-filter-constraint-selected":t}),filterConstraintSeparator:"p-datatable-filter-constraint-separator",filterOperator:"p-datatable-filter-operator",pcFilterOperatorDropdown:"p-datatable-filter-operator-dropdown",filterRuleList:"p-datatable-filter-rule-list",filterRule:"p-datatable-filter-rule",pcFilterConstraintDropdown:"p-datatable-filter-constraint-dropdown",pcFilterRemoveRuleButton:"p-datatable-filter-remove-rule-button",pcFilterAddRuleButton:"p-datatable-filter-add-rule-button",filterButtonbar:"p-datatable-filter-buttonbar",pcFilterClearButton:"p-datatable-filter-clear-button",pcFilterApplyButton:"p-datatable-filter-apply-button",tbody:({instance:t})=>({"p-datatable-tbody":true,"p-datatable-frozen-tbody":t.frozenValue()||t.frozenBodyTemplate(),"p-virtualscroller-content":t.virtualScroll()}),rowGroupHeader:"p-datatable-row-group-header",rowToggleButton:"p-datatable-row-toggle-button",rowToggleIcon:"p-datatable-row-toggle-icon",rowExpansion:"p-datatable-row-expansion",rowGroupFooter:"p-datatable-row-group-footer",emptyMessage:"p-datatable-empty-message",bodyCell:({instance:t})=>({"p-datatable-frozen-column":t.columnProp("frozen")}),reorderableRowHandle:"p-datatable-reorderable-row-handle",pcRowEditorInit:"p-datatable-row-editor-init",pcRowEditorSave:"p-datatable-row-editor-save",pcRowEditorCancel:"p-datatable-row-editor-cancel",tfoot:"p-datatable-tfoot",footerCell:({instance:t})=>({"p-datatable-frozen-column":t.columnProp("frozen")}),virtualScrollerSpacer:"p-datatable-virtualscroller-spacer",footer:"p-datatable-tfoot",columnResizeIndicator:"p-datatable-column-resize-indicator",rowReorderIndicatorUp:"p-datatable-row-reorder-indicator-up",rowReorderIndicatorDown:"p-datatable-row-reorder-indicator-down",sortableColumn:({instance:t})=>({"p-datatable-sortable-column":t.isEnabled()," p-datatable-column-sorted":t.sorted()}),sortableColumnIcon:"p-datatable-sort-icon",sortableColumnBadge:"p-sortable-column-badge",selectableRow:({instance:t})=>({"p-datatable-selectable-row":t.isEnabled(),"p-datatable-row-selected":t.selected}),resizableColumn:"p-datatable-resizable-column",reorderableColumn:"p-datatable-reorderable-column",rowEditorCancel:"p-datatable-row-editor-cancel",frozenColumn:({instance:t})=>({"p-datatable-frozen-column":t.frozen(),"p-datatable-frozen-column-left":t.alignFrozen()==="left"}),contextMenuRowSelected:({instance:t})=>({"p-datatable-contextmenu-row-selected":t.selected})},Ap={tableContainer:({instance:t})=>({"max-height":t.virtualScroll()?"":t.scrollHeight(),overflow:"auto"}),thead:{position:"sticky"},tfoot:{position:"sticky"},rowGroupHeader:({instance:t})=>({top:t.getFrozenRowGroupHeaderStickyPosition})},et=(()=>{class t extends WI{name="datatable";style=Pp;classes=Rp;inlineStyles=Ap;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var ft=new I$1("TABLE_INSTANCE"),Q2=new I$1("COLUMN_FILTER_INSTANCE"),A1=(()=>{class t{sortSource=new Y;selectionSource=new Y;contextMenuSource=new Y;valueSource=new Y;columnsSource=new Y;sortSource$=this.sortSource.asObservable();selectionSource$=this.selectionSource.asObservable();contextMenuSource$=this.contextMenuSource.asObservable();valueSource$=this.valueSource.asObservable();columnsSource$=this.columnsSource.asObservable();onSort(e){this.sortSource.next(e);}onSelectionChange(){this.selectionSource.next(null);}onContextMenu(e){this.contextMenuSource.next(e);}onValueChange(e){this.valueSource.next(e);}onColumnsChange(e){this.columnsSource.next(e);}static \u0275fac=function(i){return new(i||t)};static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})(),Hp=(()=>{class t extends I{hostName="Table";columns=mu$1(void 0,{alias:"pTableBody"});template=mu$1(void 0,{alias:"pTableBodyTemplate"});value=mu$1();frozen=mu$1(void 0,{transform:yn});frozenRows=mu$1(void 0,{transform:yn});scrollerOptions=mu$1();dataTable=g(ft);bodyContext=gs$1(()=>({$implicit:this.columns(),frozen:this.frozen()}));constructor(){super(),Ui(()=>{this.value()!==void 0&&(this.frozenRows()&&this.updateFrozenRowStickyPosition(),this.dataTable.scrollable()&&this.dataTable.rowGroupMode()==="subheader"&&this.updateFrozenRowGroupHeaderStickyPosition());});}onAfterViewInit(){this.frozenRows()&&this.updateFrozenRowStickyPosition(),this.dataTable.scrollable()&&this.dataTable.rowGroupMode()==="subheader"&&this.updateFrozenRowGroupHeaderStickyPosition();}shouldRenderRowGroupHeader(e,i,n){let o=_e.resolveFieldData(i,this.dataTable?.groupRowsBy()||""),r=e[n-(this.dataTable?.first()||0)-1];if(r){let u=_e.resolveFieldData(r,this.dataTable?.groupRowsBy()||"");return o!==u}else return true}shouldRenderRowGroupFooter(e,i,n){let o=_e.resolveFieldData(i,this.dataTable?.groupRowsBy()||""),r=e[n-(this.dataTable?.first()||0)+1];if(r){let u=_e.resolveFieldData(r,this.dataTable?.groupRowsBy()||"");return o!==u}else return true}shouldRenderRowspan(e,i,n){let o=_e.resolveFieldData(i,this.dataTable?.groupRowsBy()),r=e[n-1];if(r){let u=_e.resolveFieldData(r,this.dataTable?.groupRowsBy()||"");return o!==u}else return true}calculateRowGroupSize(e,i,n){let o=_e.resolveFieldData(i,this.dataTable?.groupRowsBy()),r=o,u=0;for(;o===r;){u++;let M=e[++n];if(M)r=_e.resolveFieldData(M,this.dataTable?.groupRowsBy()||"");else break}return u===1?null:u}updateFrozenRowStickyPosition(){this.el.nativeElement.style.top=B3$1.getOuterHeight(this.el.nativeElement.previousElementSibling)+"px";}updateFrozenRowGroupHeaderStickyPosition(){if(this.el.nativeElement.previousElementSibling){let e=B3$1.getOuterHeight(this.el.nativeElement.previousElementSibling);this.dataTable.rowGroupHeaderStyleObject.top=e+"px";}}getScrollerOption(e,i){return this.dataTable.virtualScroll()?(i=i||this.scrollerOptions(),i?i[e]:null):null}getRowIndex(e){let i=this.dataTable.paginator()?this.dataTable.first()+e:e,n=this.getScrollerOption("getItemOptions");return n?n(i).index:i}dataP=gs$1(()=>this.cn({hoverable:this.dataTable.rowHover()||this.dataTable.selectionMode(),frozen:this.frozen()}));static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["","pTableBody",""]],hostVars:1,hostBindings:function(i,n){i&2&&su$1("data-p",n.dataP());},inputs:{columns:[1,"pTableBody","columns"],template:[1,"pTableBodyTemplate","template"],value:[1,"value"],frozen:[1,"frozen"],frozenRows:[1,"frozenRows"],scrollerOptions:[1,"scrollerOptions"]},features:[BE],decls:5,vars:5,consts:[["role","row"],[4,"ngTemplateOutlet","ngTemplateOutletContext"]],template:function(i,n){i&1&&(rM(0,v8,2,0),rM(1,I8,2,0),rM(2,O8,2,0),rM(3,V8,1,2,"ng-container"),rM(4,R8,1,2,"ng-container")),i&2&&(oM(n.dataTable.expandedRowTemplate()?-1:0),n_(),oM(n.dataTable.expandedRowTemplate()&&!(n.frozen()&&n.dataTable.frozenExpandedRowTemplate())?1:-1),n_(),oM(n.dataTable.frozenExpandedRowTemplate()&&n.frozen()?2:-1),n_(),oM(n.dataTable.loading()?3:-1),n_(),oM(n.dataTable.isEmpty()&&!n.dataTable.loading()?4:-1));},dependencies:[cA],encapsulation:2,changeDetection:1})}return t})(),ui=(()=>{class t extends I{componentName="DataTable";frozenColumns=mu$1();frozenValue=mu$1();tableStyle=mu$1();tableStyleClass=mu$1();paginator=mu$1(void 0,{transform:yn});pageLinks=mu$1(5,{transform:Bp$1});rowsPerPageOptions=mu$1();alwaysShowPaginator=mu$1(true,{transform:yn});paginatorPosition=mu$1("bottom");paginatorStyleClass=mu$1();paginatorDropdownAppendTo=mu$1();paginatorDropdownScrollHeight=mu$1("200px");currentPageReportTemplate=mu$1("{currentPage} of {totalPages}");showCurrentPageReport=mu$1(void 0,{transform:yn});showJumpToPageDropdown=mu$1(void 0,{transform:yn});showJumpToPageInput=mu$1(void 0,{transform:yn});showFirstLastIcon=mu$1(true,{transform:yn});showPageLinks=mu$1(true,{transform:yn});defaultSortOrder=mu$1(1,{transform:Bp$1});sortMode=mu$1("single");resetPageOnSort=mu$1(true,{transform:yn});selectionMode=mu$1();selectionPageOnly=mu$1(void 0,{transform:yn});contextMenuSelectionInput=mu$1(void 0,{alias:"contextMenuSelection"});contextMenuSelection;contextMenuSelectionChange=sz();dataKey=mu$1();metaKeySelection=mu$1(false,{transform:yn});rowSelectable=mu$1();rowTrackBy=mu$1((e,i)=>i??e);lazy=mu$1(false,{transform:yn});lazyLoadOnInit=mu$1(true,{transform:yn});compareSelectionBy=mu$1("deepEquals");csvSeparator=mu$1(",");exportFilename=mu$1("download");filtersInput=mu$1({},{alias:"filters"});filters={};globalFilterFields=mu$1();filterDelay=mu$1(300,{transform:Bp$1});filterLocale=mu$1();expandedRowKeysInput=mu$1({},{alias:"expandedRowKeys"});expandedRowKeys={};editingRowKeysInput=mu$1({},{alias:"editingRowKeys"});_editingRowKeys=U({});get editingRowKeys(){return this._editingRowKeys()}set editingRowKeys(e){this._editingRowKeys.set(e);}rowExpandMode=mu$1("multiple");scrollable=mu$1(void 0,{transform:yn});rowGroupMode=mu$1();scrollHeight=mu$1();virtualScroll=mu$1(void 0,{transform:yn});virtualScrollItemSize=mu$1(void 0,{transform:e=>Bp$1(e,void 0)});virtualScrollOptions=mu$1();virtualScrollDelay=mu$1(250,{transform:Bp$1});frozenWidth=mu$1();contextMenu=mu$1();resizableColumns=mu$1(void 0,{transform:yn});columnResizeMode=mu$1("fit");reorderableColumns=mu$1(void 0,{transform:yn});loading=mu$1(void 0,{transform:yn});loadingIcon=mu$1();showLoader=mu$1(true,{transform:yn});rowHover=mu$1(void 0,{transform:yn});customSort=mu$1(void 0,{transform:yn});showInitialSortBadge=mu$1(true,{transform:yn});exportFunction=mu$1();exportHeader=mu$1();stateKey=mu$1();stateStorage=mu$1("session");editMode=mu$1("cell");groupRowsBy=mu$1();size=mu$1();showGridlines=mu$1(void 0,{transform:yn});stripedRows=mu$1(void 0,{transform:yn});groupRowsByOrder=mu$1(1,{transform:Bp$1});paginatorLocale=mu$1();valueInput=mu$1(void 0,{alias:"value"});columnsInput=mu$1(void 0,{alias:"columns"});first=az(0);rows=az();totalRecords=az(0);sortFieldInput=mu$1(void 0,{alias:"sortField"});sortOrderInput=mu$1(1,{alias:"sortOrder"});multiSortMetaInput=mu$1(void 0,{alias:"multiSortMeta"});selection=az();selectAllInput=mu$1(null,{alias:"selectAll"});selectAllChange=sz();onRowSelect=sz();onRowUnselect=sz();onPage=sz();onSort=sz();onFilter=sz();onLazyLoad=sz();onRowExpand=sz();onRowCollapse=sz();onContextMenuSelect=sz();onColResize=sz();onColReorder=sz();onRowReorder=sz();onEditInit=sz();onEditComplete=sz();onEditCancel=sz();onHeaderCheckboxToggle=sz();sortFunction=sz();onStateSave=sz();onStateRestore=sz();resizeHelperViewChild=cz("resizeHelper");reorderIndicatorUpViewChild=cz("reorderIndicatorUp");reorderIndicatorDownViewChild=cz("reorderIndicatorDown");wrapperViewChild=cz("wrapper");tableViewChild=cz("table");tableHeaderViewChild=cz("thead");tableFooterViewChild=cz("tfoot");scroller=cz("scroller");value=[];columns;filteredValue;headerTemplate=uz("header",{descendants:false});headerGroupedTemplate=uz("headergrouped",{descendants:false});bodyTemplate=uz("body",{descendants:false});loadingBodyTemplate=uz("loadingbody",{descendants:false});captionTemplate=uz("caption",{descendants:false});footerTemplate=uz("footer",{descendants:false});footerGroupedTemplate=uz("footergrouped",{descendants:false});summaryTemplate=uz("summary",{descendants:false});colGroupTemplate=uz("colgroup",{descendants:false});expandedRowTemplate=uz("expandedrow",{descendants:false});groupHeaderTemplate=uz("groupheader",{descendants:false});groupFooterTemplate=uz("groupfooter",{descendants:false});frozenExpandedRowTemplate=uz("frozenexpandedrow",{descendants:false});frozenHeaderTemplate=uz("frozenheader",{descendants:false});frozenBodyTemplate=uz("frozenbody",{descendants:false});frozenFooterTemplate=uz("frozenfooter",{descendants:false});frozenColGroupTemplate=uz("frozencolgroup",{descendants:false});emptyMessageTemplate=uz("emptymessage",{descendants:false});paginatorLeftTemplate=uz("paginatorleft",{descendants:false});paginatorRightTemplate=uz("paginatorright",{descendants:false});paginatorDropdownItemTemplate=uz("paginatordropdownitem",{descendants:false});loadingIconTemplate=uz("loadingicon",{descendants:false});reorderIndicatorUpIconTemplate=uz("reorderindicatorupicon",{descendants:false});reorderIndicatorDownIconTemplate=uz("reorderindicatordownicon",{descendants:false});sortIconTemplate=uz("sorticon",{descendants:false});checkboxIconTemplate=uz("checkboxicon",{descendants:false});headerCheckboxIconTemplate=uz("headercheckboxicon",{descendants:false});paginatorDropdownIconTemplate=uz("paginatordropdownicon",{descendants:false});paginatorFirstPageLinkIconTemplate=uz("paginatorfirstpagelinkicon",{descendants:false});paginatorLastPageLinkIconTemplate=uz("paginatorlastpagelinkicon",{descendants:false});paginatorPreviousPageLinkIconTemplate=uz("paginatorpreviouspagelinkicon",{descendants:false});paginatorNextPageLinkIconTemplate=uz("paginatornextpagelinkicon",{descendants:false});showLoadingMask=gs$1(()=>this.loading()&&this.showLoader());showTopPaginator=gs$1(()=>this.paginator()&&(this.paginatorPosition()==="top"||this.paginatorPosition()==="both"));showBottomPaginator=gs$1(()=>this.paginator()&&(this.paginatorPosition()==="bottom"||this.paginatorPosition()==="both"));showFrozenBody=gs$1(()=>!!(this.frozenValue()||this.frozenBodyTemplate()));showFooter=gs$1(()=>!!(this.footerGroupedTemplate()||this.footerTemplate()));scrollerStyle=gs$1(()=>({height:this.scrollHeight()!=="flex"?this.scrollHeight():void 0}));scrollerScrollHeight=gs$1(()=>this.scrollHeight()!=="flex"?void 0:"100%");scrollerDelay=gs$1(()=>this.lazy()?this.virtualScrollDelay():0);selectionKeys={};disabledSelectionKeys=new Set;lastResizerHelperX;reorderIconWidth;reorderIconHeight;draggedColumn;draggedRowIndex;droppedRowIndex;rowDragging;dropPosition;_editingCell=U(null);get editingCell(){return this._editingCell()}set editingCell(e){this._editingCell.set(e);}editingCellData;editingCellField;editingCellRowIndex;selfClick;documentEditListener;multiSortMeta;sortField;sortOrder=1;preventSelectionSetterPropagation;_selectAll=null;anchorRowIndex;rangeRowIndex;filterTimeout;initialized;rowTouched;restoringSort;restoringFilter;stateRestored;columnOrderStateRestored;columnWidthsState;tableWidthState;overlaySubscription;resizeColumnElement;columnResizing=false;rowGroupHeaderStyleObject={};id=Lo$1();styleElement;overlayService=g(nq);filterService=g(eq);tableService=g(A1);_componentStyle=g(et);bindDirectiveInstance=g(L,{self:true});constructor(){super(),Ui(()=>{let e=this.rows();J(()=>{this._defaultRows===void 0&&e!==void 0&&(this._defaultRows=e);});}),Ui(()=>{let e=this.valueInput();J(()=>{e!==void 0&&(this.isStateful()&&!this.stateRestored&&BG(this.platformId)&&this.restoreState(),this.value=e,this.lazy()||(this.totalRecords.set(this.totalRecords()===0&&this.value?this.value.length:this.totalRecords()??0),this.sortMode()=="single"&&(this.sortField||this.groupRowsBy())?this.sortSingle():this.sortMode()=="multiple"&&(this.multiSortMeta||this.groupRowsBy())?this.sortMultiple():this.hasFilter()&&this._filter()),this.tableService.onValueChange(e));});}),Ui(()=>{let e=this.columnsInput();J(()=>{e!==void 0&&(this.isStateful()||(this.columns=e,this.tableService.onColumnsChange(e)),this.columns&&this.isStateful()&&this.reorderableColumns()&&!this.columnOrderStateRestored&&(this.restoreColumnOrder(),this.tableService.onColumnsChange(this.columns)));});}),Ui(()=>{let e=this.sortFieldInput();J(()=>{e!==void 0&&(this.sortField=e,(!this.lazy()||this.initialized)&&this.sortMode()==="single"&&this.sortSingle());});}),Ui(()=>{this.groupRowsBy(),J(()=>{(!this.lazy()||this.initialized)&&this.sortMode()==="single"&&this.sortSingle();});}),Ui(()=>{let e=this.sortOrderInput();J(()=>{this.sortOrder=e,(!this.lazy()||this.initialized)&&this.sortMode()==="single"&&this.sortSingle();});}),Ui(()=>{this.groupRowsByOrder(),J(()=>{(!this.lazy()||this.initialized)&&this.sortMode()==="single"&&this.sortSingle();});}),Ui(()=>{let e=this.multiSortMetaInput();J(()=>{e!==void 0&&(this.multiSortMeta=e,this.sortMode()==="multiple"&&(this.initialized||!this.lazy()&&!this.virtualScroll())&&this.sortMultiple());});}),Ui(()=>{let e=this.selection();J(()=>{e!==void 0&&(this.preventSelectionSetterPropagation||(this.updateSelectionKeys(),this.tableService.onSelectionChange()),this.preventSelectionSetterPropagation=false);});}),Ui(()=>{let e=this.selectAllInput();J(()=>{e!==null&&(this._selectAll=e,this.preventSelectionSetterPropagation||(this.updateSelectionKeys(),this.tableService.onSelectionChange(),this.isStateful()&&this.saveState()),this.preventSelectionSetterPropagation=false);});}),Ui(()=>{let e=this.contextMenuSelectionInput();e!==void 0&&(this.contextMenuSelection=e);}),Ui(()=>{let e=this.filtersInput();this.filters=e??{};}),Ui(()=>{let e=this.expandedRowKeysInput();this.expandedRowKeys=e??{};}),Ui(()=>{let e=this.editingRowKeysInput();this.editingRowKeys=e??{};});}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}onInit(){this.lazy()&&this.lazyLoadOnInit()&&(this.virtualScroll()||this.onLazyLoad.emit(this.createLazyLoadMetadata()),this.restoringFilter&&(this.restoringFilter=false)),this.initialized=true;}onAfterViewInit(){BG(this.platformId)&&this.isStateful()&&this.resizableColumns()&&this.restoreColumnWidths();}get processedData(){return this.filteredValue||this.value||[]}_initialColWidths;_defaultRows;dataToRender(e){let i=e||this.processedData;if(i&&this.paginator()){let n=this.lazy()?0:this.first();return i.slice(n,n+this.rows())}return i}updateSelectionKeys(){if(this.dataKey()&&this.selection())if(this.selectionKeys={},Array.isArray(this.selection()))for(let e of this.selection())this.selectionKeys[String(_e.resolveFieldData(e,this.dataKey()))]=1;else this.selectionKeys[String(_e.resolveFieldData(this.selection(),this.dataKey()))]=1;}onPageChange(e){this.first.set(e.first),this.rows.set(e.rows),this.onPage.emit({first:this.first(),rows:this.rows()}),this.lazy()&&this.onLazyLoad.emit(this.createLazyLoadMetadata()),this.tableService.onValueChange(this.value),this.isStateful()&&this.saveState(),this.anchorRowIndex=null,this.scrollable()&&this.resetScrollTop();}sort(e){let i=e.originalEvent;if(this.sortMode()==="single"&&(this.sortOrder=this.sortField===e.field?this.sortOrder*-1:this.defaultSortOrder(),this.sortField=e.field,this.resetPageOnSort()&&(this.first.set(0),this.scrollable()&&this.resetScrollTop()),this.sortSingle()),this.sortMode()==="multiple"){let n=i.metaKey||i.ctrlKey,o=this.getSortMeta(e.field);o?n?o.order=o.order*-1:(this.multiSortMeta=[{field:e.field,order:o.order*-1}],this.resetPageOnSort()&&(this.first.set(0),this.scrollable()&&this.resetScrollTop())):((!n||!this.multiSortMeta)&&(this.multiSortMeta=[],this.resetPageOnSort()&&this.first.set(0)),this.multiSortMeta.push({field:e.field,order:this.defaultSortOrder()})),this.sortMultiple();}this.isStateful()&&this.saveState(),this.anchorRowIndex=null;}sortSingle(){let e=this.sortField||this.groupRowsBy(),i=this.sortField?this.sortOrder:this.groupRowsByOrder();if(this.groupRowsBy()&&this.sortField&&this.groupRowsBy()!==this.sortField){this.multiSortMeta=[this.getGroupRowsMeta(),{field:this.sortField,order:this.sortOrder}],this.sortMultiple();return}if(e&&i){this.restoringSort&&(this.restoringSort=false),this.lazy()?this.onLazyLoad.emit(this.createLazyLoadMetadata()):this.value&&(this.customSort()?this.sortFunction.emit({data:this.value,mode:this.sortMode(),field:e,order:i}):(this.value.sort((o,r)=>{let u=_e.resolveFieldData(o,e),M=_e.resolveFieldData(r,e),z=null;return u==null&&M!=null?z=-1:u!=null&&M==null?z=1:u==null&&M==null?z=0:typeof u=="string"&&typeof M=="string"?z=u.localeCompare(M):z=uM?1:0,i*(z||0)}),this.value=[...this.value]),this.hasFilter()&&this._filter());let n={field:e,order:i};this.onSort.emit(n),this.tableService.onSort(n);}}sortMultiple(){this.groupRowsBy()&&(this.multiSortMeta?this.multiSortMeta[0].field!==this.groupRowsBy()&&(this.multiSortMeta=[this.getGroupRowsMeta(),...this.multiSortMeta]):this.multiSortMeta=[this.getGroupRowsMeta()]),this.multiSortMeta&&(this.lazy()?this.onLazyLoad.emit(this.createLazyLoadMetadata()):this.value&&(this.customSort()?this.sortFunction.emit({data:this.value,mode:this.sortMode(),multiSortMeta:this.multiSortMeta}):(this.value.sort((e,i)=>this.multisortField(e,i,this.multiSortMeta,0)),this.value=[...this.value]),this.hasFilter()&&this._filter()),this.onSort.emit({multisortmeta:this.multiSortMeta}),this.tableService.onSort(this.multiSortMeta));}multisortField(e,i,n,o){let r=_e.resolveFieldData(e,n[o].field),u=_e.resolveFieldData(i,n[o].field);return _e.compare(r,u,this.filterLocale())===0?n.length-1>o?this.multisortField(e,i,n,o+1):0:this.compareValuesOnSort(r,u,n[o].order)}compareValuesOnSort(e,i,n){return _e.sort(e,i,n,this.filterLocale(),this.sortOrder)}getSortMeta(e){if(this.multiSortMeta&&this.multiSortMeta.length){for(let i=0;iG!=K)),T&&delete this.selectionKeys[T];}this.onRowUnselect.emit({originalEvent:e.originalEvent,data:r,type:"row"});}else this.isSingleSelectionMode()?(this.selection.set(r),T&&(this.selectionKeys={},this.selectionKeys[T]=1)):this.isMultipleSelectionMode()&&(L?this.selection.set(this.selection()||[]):(this.selection.set([]),this.selectionKeys={}),this.selection.set([...this.selection(),r]),T&&(this.selectionKeys[T]=1)),this.onRowSelect.emit({originalEvent:e.originalEvent,data:r,type:"row",index:u});}else if(this.selectionMode()==="single")M?(this.selection.set(null),this.selectionKeys={},this.onRowUnselect.emit({originalEvent:e.originalEvent,data:r,type:"row",index:u})):(this.selection.set(r),this.onRowSelect.emit({originalEvent:e.originalEvent,data:r,type:"row",index:u}),T&&(this.selectionKeys={},this.selectionKeys[T]=1));else if(this.selectionMode()==="multiple")if(M){let L=this.findIndexInSelection(r);this.selection.set(this.selection().filter((K,$)=>$!=L)),this.onRowUnselect.emit({originalEvent:e.originalEvent,data:r,type:"row",index:u}),T&&delete this.selectionKeys[T];}else this.selection.set(this.selection()?[...this.selection(),r]:[r]),this.onRowSelect.emit({originalEvent:e.originalEvent,data:r,type:"row",index:u}),T&&(this.selectionKeys[T]=1);}this.tableService.onSelectionChange(),this.isStateful()&&this.saveState();}this.rowTouched=false;}}handleRowTouchEnd(e){this.rowTouched=true;}handleRowRightClick(e){if(this.contextMenu()){let i=e.rowData;e.rowIndex;let o=()=>{this.contextMenu().show(e.originalEvent),this.contextMenu().hideCallback=()=>{this.contextMenuSelection=null,this.contextMenuSelectionChange.emit(null),this.tableService.onContextMenu(null);};};this.contextMenuSelection=i,this.contextMenuSelectionChange.emit(i),this.tableService.onContextMenu(i),o(),this.onContextMenuSelect.emit({originalEvent:e.originalEvent,data:i,index:e.rowIndex});}}selectRange(e,i,n){let o,r;this.anchorRowIndex>i?(o=i,r=this.anchorRowIndex):this.anchorRowIndex0&&this.selection.set([...this.selection(),...u]),this.onRowSelect.emit({originalEvent:e,data:u,type:"row"});}clearSelectionRange(e){let i,n,o=this.rangeRowIndex,r=this.anchorRowIndex;o>r?(i=this.anchorRowIndex,n=this.rangeRowIndex):o!u.has(z)));}isSelected(e){return e&&this.selection()?this.dataKey()?this.selectionKeys[_e.resolveFieldData(e,this.dataKey())]!==void 0:Array.isArray(this.selection())?this.findIndexInSelection(e)>-1:this.equals(e,this.selection()):false}findIndexInSelection(e){let i=-1,n=this.selection();if(n&&n.length){for(let o=0;oM!=r)),this.onRowUnselect.emit({originalEvent:e.originalEvent,index:e.rowIndex,data:i,type:"checkbox"}),o&&delete this.selectionKeys[o];}else {if(!this.isRowSelectable(i,e.rowIndex))return;this.selection.set(this.selection()?[...this.selection(),i]:[i]),this.onRowSelect.emit({originalEvent:e.originalEvent,index:e.rowIndex,data:i,type:"checkbox"}),o&&(this.selectionKeys[o]=1);}this.tableService.onSelectionChange(),this.isStateful()&&this.saveState();}toggleRowsWithCheckbox({originalEvent:e},i){if(this._selectAll!==null)this.selectAllChange.emit({originalEvent:e,checked:i});else {let n=this.selectionPageOnly()?this.dataToRender(this.processedData):this.processedData,o=this.selectionPageOnly()&&this.selection()?this.selection().filter(L=>!n.some(K=>this.equals(L,K))):[],r=(L,K)=>(!this.rowSelectable()||this.rowSelectable()({data:L,index:K}))&&!this.isRowCheckboxDisabled(L);i&&(o=this.frozenValue()?[...o,...this.frozenValue(),...n]:[...o,...n],o=o.filter((L,K)=>r(L,K)));let u=this.selection()||[],M=new Set(u.map(L=>this.getSelectionKey(L))),z=new Set(o.map(L=>this.getSelectionKey(L)));(this.frozenValue()?[...this.frozenValue(),...n]:n).forEach((L,K)=>{let $=this.getSelectionKey(L);!r(L,K)&&M.has($)&&!z.has($)&&(o.push(L),z.add($));}),this.preventSelectionSetterPropagation=true,this.selection.set(o),this.updateSelectionKeys(),this.tableService.onSelectionChange(),this.onHeaderCheckboxToggle.emit({originalEvent:e,checked:i}),this.isStateful()&&this.saveState();}}equals(e,i){return this.compareSelectionBy()==="equals"?e===i:_e.equals(e,i,this.dataKey())}getSelectionKey(e){return this.dataKey()&&this.compareSelectionBy()!=="equals"?String(_e.resolveFieldData(e,this.dataKey())):e}setRowCheckboxDisabled(e,i){let n=this.getSelectionKey(e);i?this.disabledSelectionKeys.add(n):this.disabledSelectionKeys.delete(n);}isRowCheckboxDisabled(e){return this.disabledSelectionKeys.has(this.getSelectionKey(e))}filter(e,i,n){this.filterTimeout&&clearTimeout(this.filterTimeout),this.isFilterBlank(e)?this.filters[i]&&delete this.filters[i]:this.filters[i]={value:e,matchMode:n,applyFilter:true},this.filterTimeout=setTimeout(()=>{this._filter(),this.filterTimeout=null;},this.filterDelay()),this.anchorRowIndex=null;}filterGlobal(e,i){this.filter(e,"global",i);}isFilterBlank(e){return e!=null?!!(typeof e=="string"&&e.trim().length==0||Array.isArray(e)&&e.length==0):true}_filter(){if(this.restoringFilter||this.first.set(0),this.lazy())this.onLazyLoad.emit(this.createLazyLoadMetadata());else {if(!this.value)return;if(!this.hasFilter())this.filteredValue=null,this.paginator()&&this.totalRecords.set(this.totalRecords()===0&&this.value?this.value.length:this.totalRecords());else {let e;if(this.filters.global){if(!this.columns&&!this.globalFilterFields())throw new Error("Global filtering requires dynamic columns or globalFilterFields to be defined.");e=this.globalFilterFields()||this.columns;}this.filteredValue=[];for(let i=0;ithis.cd.detectChanges()}}clear(){this.sortField=null,this.sortOrder=this.defaultSortOrder(),this.multiSortMeta=null,this.tableService.onSort(null),this.clearFilterValues(),this.filteredValue=null,this.first.set(0),this._defaultRows!==void 0&&this.rows()!==this._defaultRows&&this.rows.set(this._defaultRows),this.lazy()?this.onLazyLoad.emit(this.createLazyLoadMetadata()):this.totalRecords.set(this.totalRecords()===0&&this.value?this.value.length:this.totalRecords()??0),this.tableService.onValueChange(this.value);}clearFilterValues(){for(let[,e]of Object.entries(this.filters))if(Array.isArray(e))for(let i of e)i.value=null;else e&&(e.value=null);}reset(){this.clear();}getExportHeader(e){return e[this.exportHeader()]||e.header||e.field}exportCSV(e){let i,n="",o=this.columns;e&&e.selectionOnly?i=this.selection()||[]:e&&e.allValues?i=this.value||[]:(i=this.filteredValue||this.value,this.frozenValue()&&(i=i?[...this.frozenValue(),...i]:this.frozenValue()));let r=o.filter(T=>T.exportable!==false&&T.field);n+=r.map(T=>'"'+this.getExportHeader(T)+'"').join(this.csvSeparator());let u=i.map(T=>r.map(L=>{let K=_e.resolveFieldData(T,L.field);return K!=null?this.exportFunction()?K=this.exportFunction()({data:K,field:L.field}):K=String(K).replace(/"/g,'""'):K="",'"'+K+'"'}).join(this.csvSeparator())).join(` +`);u.length&&(n+=` +`+u);let M=new Blob([new Uint8Array([239,187,191]),n],{type:"text/csv;charset=utf-8;"}),z=this.renderer.createElement("a");z.style.display="none",this.renderer.appendChild(this.document.body,z),z.download!==void 0?(z.setAttribute("href",URL.createObjectURL(M)),z.setAttribute("download",this.exportFilename()+".csv"),z.click()):(n="data:text/csv;charset=utf-8,"+n,this.document.defaultView?.open(encodeURI(n))),this.renderer.removeChild(this.document.body,z);}onLazyItemLoad(e){this.onLazyLoad.emit(m(l$1(l$1({},this.createLazyLoadMetadata()),e),{rows:e.last-e.first}));}resetScrollTop(){this.virtualScroll()?this.scrollToVirtualIndex(0):this.scrollTo({top:0});}scrollToVirtualIndex(e){this.scroller()?.scrollToIndex(e);}scrollTo(e){this.virtualScroll()?this.scroller()?.scrollTo(e):this.wrapperViewChild()?.nativeElement&&(this.wrapperViewChild().nativeElement.scrollTo?this.wrapperViewChild().nativeElement.scrollTo(e):(this.wrapperViewChild().nativeElement.scrollLeft=e.left,this.wrapperViewChild().nativeElement.scrollTop=e.top));}updateEditingCell(e,i,n,o){this.editingCell=e,this.editingCellData=i,this.editingCellField=n,this.editingCellRowIndex=o,this.bindDocumentEditListener();}isEditingCellValid(){return this.editingCell&&B3$1.find(this.editingCell,".ng-invalid.ng-dirty").length===0}bindDocumentEditListener(){this.documentEditListener||(this.documentEditListener=this.renderer.listen(this.document,"click",e=>{this.editingCell&&!this.selfClick&&this.isEditingCellValid()&&(!this.$unstyled()&&B3$1.removeClass(this.editingCell,"p-cell-editing"),PI(this.editingCell,"data-p-cell-editing","false"),this.editingCell=null,this.onEditComplete.emit({field:this.editingCellField,data:this.editingCellData,originalEvent:e,index:this.editingCellRowIndex}),this.editingCellField=null,this.editingCellData=null,this.editingCellRowIndex=null,this.unbindDocumentEditListener(),this.cd.markForCheck(),this.overlaySubscription&&this.overlaySubscription.unsubscribe()),this.selfClick=false;}));}unbindDocumentEditListener(){this.documentEditListener&&(this.documentEditListener(),this.documentEditListener=null);}initRowEdit(e){let i=String(_e.resolveFieldData(e,this.dataKey()));this.editingRowKeys=m(l$1({},this.editingRowKeys),{[i]:true});}saveRowEdit(e,i){if(B3$1.find(i,".ng-invalid.ng-dirty").length===0){let o=String(_e.resolveFieldData(e,this.dataKey())),n$1=this.editingRowKeys,{[o]:r}=n$1,u=o$1(n$1,[n(o)]);this.editingRowKeys=u;}}cancelRowEdit(e){let i=String(_e.resolveFieldData(e,this.dataKey())),r=this.editingRowKeys,{[i]:n$1}=r,o=o$1(r,[n(i)]);this.editingRowKeys=o;}toggleRow(e,i){if(!this.dataKey()&&!this.groupRowsBy())throw new Error("dataKey or groupRowsBy must be defined to use row expansion");let n=this.groupRowsBy()?String(_e.resolveFieldData(e,this.groupRowsBy())):String(_e.resolveFieldData(e,this.dataKey()));this.expandedRowKeys[n]!=null?(delete this.expandedRowKeys[n],this.onRowCollapse.emit({originalEvent:i,data:e})):(this.rowExpandMode()==="single"&&(this.expandedRowKeys={}),this.expandedRowKeys[n]=true,this.onRowExpand.emit({originalEvent:i,data:e})),i&&i.preventDefault(),this.isStateful()&&this.saveState();}isRowExpanded(e){return this.groupRowsBy()?this.expandedRowKeys[String(_e.resolveFieldData(e,this.groupRowsBy()))]===true:this.expandedRowKeys[String(_e.resolveFieldData(e,this.dataKey()))]===true}isRowEditing(e){return this.editingRowKeys[String(_e.resolveFieldData(e,this.dataKey()))]===true}isSingleSelectionMode(){return this.selectionMode()==="single"}isMultipleSelectionMode(){return this.selectionMode()==="multiple"}onColumnResizeBegin(e){let i=B3$1.getOffset(this.el?.nativeElement).left;this.resizeColumnElement=e.target.closest("th"),this.columnResizing=true,e.type=="touchstart"?this.lastResizerHelperX=e.changedTouches[0].clientX-i+this.el?.nativeElement.scrollLeft:this.lastResizerHelperX=e.pageX-i+this.el?.nativeElement.scrollLeft,this.onColumnResize(e),e.preventDefault();}onColumnResize(e){let i=B3$1.getOffset(this.el?.nativeElement).left;!this.$unstyled()&&B3$1.addClass(this.el?.nativeElement,"p-unselectable-text"),this.resizeHelperViewChild().nativeElement.style.height=this.el?.nativeElement.offsetHeight+"px",this.resizeHelperViewChild().nativeElement.style.top="0px",e.type=="touchmove"?this.resizeHelperViewChild().nativeElement.style.left=e.changedTouches[0].clientX-i+this.el?.nativeElement.scrollLeft+"px":this.resizeHelperViewChild().nativeElement.style.left=e.pageX-i+this.el?.nativeElement.scrollLeft+"px",this.resizeHelperViewChild().nativeElement.style.display="block";}onColumnResizeEnd(){let e=getComputedStyle(this.el?.nativeElement??document.documentElement).direction==="rtl",i=this.resizeHelperViewChild()?.nativeElement.offsetLeft-this.lastResizerHelperX,n=e?-i:i,r=this.resizeColumnElement.offsetWidth+n,u=this.resizeColumnElement.style.minWidth.replace(/[^\d.]/g,""),M=u?parseFloat(u):15;if(r>=M){if(this.columnResizeMode()==="fit"){let T=this.resizeColumnElement.nextElementSibling.offsetWidth-n;r>15&&T>15&&this.resizeTableCells(r,T);}else if(this.columnResizeMode()==="expand"){this._initialColWidths=this._totalTableWidth();let z=this.tableViewChild()?.nativeElement.offsetWidth+n;this.setResizeTableWidth(z+"px"),this.resizeTableCells(r,null);}this.onColResize.emit({element:this.resizeColumnElement,delta:n}),this.isStateful()&&this.saveState();}this.resizeHelperViewChild().nativeElement.style.display="none",B3$1.removeClass(this.el?.nativeElement,"p-unselectable-text");}_totalTableWidth(){let e=[],i=B3$1.findSingle(this.el.nativeElement,'[data-pc-section="thead"]');return B3$1.find(i,"tr > th").forEach(o=>e.push(B3$1.getOuterWidth(o))),e}onColumnDragStart(e,i){this.reorderIconWidth=B3$1.getHiddenElementOuterWidth(this.reorderIndicatorUpViewChild()?.nativeElement),this.reorderIconHeight=B3$1.getHiddenElementOuterHeight(this.reorderIndicatorDownViewChild()?.nativeElement),this.draggedColumn=i,e.dataTransfer.setData("text","b");}onColumnDragEnter(e,i){this.reorderableColumns()&&this.draggedColumn&&i&&e.preventDefault();}onColumnDragOver(e,i){if(this.reorderableColumns()&&this.draggedColumn&&i){e.preventDefault();let n=B3$1.getOffset(this.el?.nativeElement),o=B3$1.getOffset(i);if(this.draggedColumn!=i){let r=o.left-n.left,u=o.left+i.offsetWidth/2;this.reorderIndicatorUpViewChild().nativeElement.style.top=o.top-n.top-(this.reorderIconHeight-1)+"px",this.reorderIndicatorDownViewChild().nativeElement.style.top=o.top-n.top+i.offsetHeight+"px",e.pageX>u?(this.reorderIndicatorUpViewChild().nativeElement.style.left=r+i.offsetWidth-Math.ceil(this.reorderIconWidth/2)+"px",this.reorderIndicatorDownViewChild().nativeElement.style.left=r+i.offsetWidth-Math.ceil(this.reorderIconWidth/2)+"px",this.dropPosition=1):(this.reorderIndicatorUpViewChild().nativeElement.style.left=r-Math.ceil(this.reorderIconWidth/2)+"px",this.reorderIndicatorDownViewChild().nativeElement.style.left=r-Math.ceil(this.reorderIconWidth/2)+"px",this.dropPosition=-1),this.reorderIndicatorUpViewChild().nativeElement.style.display="block",this.reorderIndicatorDownViewChild().nativeElement.style.display="block";}else e.dataTransfer.dropEffect="none";}}onColumnDragLeave(e){this.reorderableColumns()&&this.draggedColumn&&(e.preventDefault(),this.reorderIndicatorUpViewChild().nativeElement.style.display="none",this.reorderIndicatorDownViewChild().nativeElement.style.display="none");}onColumnDragEnd(e){this.reorderableColumns()&&this.draggedColumn&&(this.reorderIndicatorUpViewChild().nativeElement.style.display="none",this.reorderIndicatorDownViewChild().nativeElement.style.display="none",this.draggedColumn.draggable=false,this.draggedColumn=null,this.dropPosition=null);}onColumnDrop(e,i){if(e.preventDefault(),this.draggedColumn){let n=B3$1.indexWithinGroup(this.draggedColumn,"preorderablecolumn"),o=B3$1.indexWithinGroup(i,"preorderablecolumn"),r=n!=o;if(r&&(o-n==1&&this.dropPosition===-1||n-o==1&&this.dropPosition===1)&&(r=false),r&&on&&this.dropPosition===-1&&(o=o-1),r&&(_e.reorderArray(this.columns,n,o),this.onColReorder.emit({dragIndex:n,dropIndex:o,columns:this.columns}),this.isStateful()&&setTimeout(()=>{this.saveState();})),this.resizableColumns()&&this.resizeColumnElement){let u=this.columnResizeMode()==="expand"?this._initialColWidths:this._totalTableWidth();_e.reorderArray(u,n+1,o+1),this.updateStyleElement(u,n,0,0);}this.reorderIndicatorUpViewChild().nativeElement.style.display="none",this.reorderIndicatorDownViewChild().nativeElement.style.display="none",this.draggedColumn.draggable=false,this.draggedColumn=null,this.dropPosition=null;}}resizeTableCells(e,i){let n=B3$1.index(this.resizeColumnElement),o=this.columnResizeMode()==="expand"?this._initialColWidths:this._totalTableWidth();this.updateStyleElement(o,n,e,i);}updateStyleElement(e,i,n,o){this.destroyStyleElement(),this.createStyleElement();let r="";e.forEach((u,M)=>{let z=M===i?n:o&&M===i+1?o:u,T=`width: ${z}px !important; max-width: ${z}px !important;`;r+=` + #${this.id}-table > .p-datatable-thead > tr > th:nth-child(${M+1}), + #${this.id}-table > .p-datatable-tbody > tr > td:nth-child(${M+1}), + #${this.id}-table > .p-datatable-tfoot > tr > td:nth-child(${M+1}) { + ${T} + } + `;}),this.renderer.setProperty(this.styleElement,"innerHTML",r);}onRowDragStart(e,i){this.rowDragging=true,this.draggedRowIndex=i,e.dataTransfer.setData("text","b");}onRowDragOver(e,i,n){if(this.rowDragging&&this.draggedRowIndex!==i){let o=B3$1.getOffset(n).top,r=e.pageY,u=o+B3$1.getOuterHeight(n)/2,M=n.previousElementSibling;rthis.droppedRowIndex?this.droppedRowIndex:this.droppedRowIndex===0?0:this.droppedRowIndex-1;_e.reorderArray(this.value,this.draggedRowIndex,n),this.virtualScroll()&&(this.value=[...this.value]),this.onRowReorder.emit({dragIndex:this.draggedRowIndex,dropIndex:n});}this.onRowDragLeave(e,i),this.onRowDragEnd(e);}isEmpty(){let e=this.filteredValue||this.value;return e==null||e.length==0}getVirtualScrollerSpacerStyle(e){return `height: calc(${e.spacerStyle.height} - ${e.rows.length*e.itemSize}px)`}getBlockableElement(){return this.el.nativeElement.children[0]}getStorage(){if(BG(this.platformId))switch(this.stateStorage()){case "local":return window.localStorage;case "session":return window.sessionStorage;default:throw new Error(this.stateStorage()+' is not a valid value for the state storage, supported values are "local" and "session".')}else throw new Error("Browser storage is not available in the server side.")}isStateful(){return this.stateKey()!=null}saveState(){let e=this.getStorage(),i={};this.paginator()&&(i.first=this.first(),i.rows=this.rows()),this.sortField&&(i.sortField=this.sortField,i.sortOrder=this.sortOrder),this.multiSortMeta&&(i.multiSortMeta=this.multiSortMeta),this.hasFilter()&&(i.filters=this.filters),this.resizableColumns()&&this.saveColumnWidths(i),this.reorderableColumns()&&this.saveColumnOrder(i),this.selection()&&(i.selection=this.selection()),Object.keys(this.expandedRowKeys).length&&(i.expandedRowKeys=this.expandedRowKeys),e.setItem(this.stateKey(),JSON.stringify(i)),this.onStateSave.emit(i);}clearState(){let e=this.getStorage();this.stateKey()&&e.removeItem(this.stateKey());}restoreState(){let i=this.getStorage().getItem(this.stateKey()),n=/\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z/,o=function(r,u){return typeof u=="string"&&n.test(u)?new Date(u):u};if(i){let r=JSON.parse(i,o);if(this.paginator()&&(this.first()!==void 0&&this.first.set(r.first),this.rows()!==void 0&&this.rows.set(r.rows)),r.sortField&&(this.restoringSort=true,this.sortField=r.sortField,this.sortOrder=r.sortOrder),r.multiSortMeta&&(this.restoringSort=true,this.multiSortMeta=r.multiSortMeta),r.filters){this.restoringFilter=true;for(let u in r.filters)r.filters.hasOwnProperty(u)&&(r.filters[u].value||r.filters[u][0].value)&&(Array.isArray(r.filters[u])?r.filters[u][0].applyFilter=true:r.filters[u].applyFilter=true);this.filters=r.filters;}this.resizableColumns()&&(this.columnWidthsState=r.columnWidths,this.tableWidthState=r.tableWidth),r.expandedRowKeys&&(this.expandedRowKeys=r.expandedRowKeys),r.selection&&Promise.resolve(null).then(()=>this.selection.set(r.selection)),this.stateRestored=true,this.onStateRestore.emit(r);}}saveColumnWidths(e){let i=[],n=[],o=this.el?.nativeElement;o&&(n=B3$1.find(o,'[data-pc-section="thead"] > tr > th')),n.forEach(r=>i.push(B3$1.getOuterWidth(r))),e.columnWidths=i.join(","),this.columnResizeMode()==="expand"&&this.tableViewChild()&&(e.tableWidth=B3$1.getOuterWidth(this.tableViewChild().nativeElement));}setResizeTableWidth(e){this.tableViewChild().nativeElement.style.width=e,this.tableViewChild().nativeElement.style.minWidth=e;}restoreColumnWidths(){if(this.columnWidthsState){let e=this.columnWidthsState.split(",");if(this.columnResizeMode()==="expand"&&this.tableWidthState&&this.setResizeTableWidth(this.tableWidthState+"px"),_e.isNotEmpty(e)){this.createStyleElement();let i="";e.forEach((n,o)=>{let r=`width: ${n}px !important; max-width: ${n}px !important`;i+=` + #${this.id}-table > .p-datatable-thead > tr > th:nth-child(${o+1}), + #${this.id}-table > .p-datatable-tbody > tr > td:nth-child(${o+1}), + #${this.id}-table > .p-datatable-tfoot > tr > td:nth-child(${o+1}) { + ${r} + } + `;}),this.styleElement.innerHTML=i;}}}saveColumnOrder(e){if(this.columns){let i=[];this.columns.map(n=>{i.push(n.field||n.key);}),e.columnOrder=i;}}restoreColumnOrder(){let i=this.getStorage().getItem(this.stateKey());if(i){let o=JSON.parse(i).columnOrder;if(o){let r=[];o.map(u=>{let M=this.findColumnByKey(u);M&&r.push(M);}),this.columnOrderStateRestored=true,this.columns=r;}}}findColumnByKey(e){if(this.columns){for(let i of this.columns)if(i.key===e||i.field===e)return i}else return null}createStyleElement(){this.styleElement=this.renderer.createElement("style"),this.styleElement.type="text/css",B3$1.setAttribute(this.styleElement,"nonce",this.config?.csp()?.nonce),this.renderer.appendChild(this.document.head,this.styleElement),B3$1.setAttribute(this.styleElement,"nonce",this.config?.csp()?.nonce);}getGroupRowsMeta(){return {field:this.groupRowsBy(),order:this.groupRowsByOrder()}}destroyStyleElement(){this.styleElement&&(this.renderer.removeChild(this.document.head,this.styleElement),this.styleElement=null);}ngAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}onDestroy(){this.unbindDocumentEditListener(),this.editingCell=null,this.initialized=null,this.destroyStyleElement();}get dataP(){return this.cn({scrollable:this.scrollable(),"flex-scrollable":this.scrollable()&&this.scrollHeight()==="flex",[this.size()]:this.size(),loading:this.loading(),empty:this.isEmpty()})}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-table"]],contentQueries:function(i,n,o){i&1&&QE(o,n.headerTemplate,W2,4)(o,n.headerGroupedTemplate,A8,4)(o,n.bodyTemplate,H8,4)(o,n.loadingBodyTemplate,$8,4)(o,n.captionTemplate,G8,4)(o,n.footerTemplate,Y2,4)(o,n.footerGroupedTemplate,U8,4)(o,n.summaryTemplate,K8,4)(o,n.colGroupTemplate,q8,4)(o,n.expandedRowTemplate,j8,4)(o,n.groupHeaderTemplate,W8,4)(o,n.groupFooterTemplate,Y8,4)(o,n.frozenExpandedRowTemplate,Z8,4)(o,n.frozenHeaderTemplate,Q8,4)(o,n.frozenBodyTemplate,X8,4)(o,n.frozenFooterTemplate,J8,4)(o,n.frozenColGroupTemplate,e7,4)(o,n.emptyMessageTemplate,t7,4)(o,n.paginatorLeftTemplate,i7,4)(o,n.paginatorRightTemplate,n7,4)(o,n.paginatorDropdownItemTemplate,o7,4)(o,n.loadingIconTemplate,a7,4)(o,n.reorderIndicatorUpIconTemplate,l7,4)(o,n.reorderIndicatorDownIconTemplate,r7,4)(o,n.sortIconTemplate,s7,4)(o,n.checkboxIconTemplate,c7,4)(o,n.headerCheckboxIconTemplate,d7,4)(o,n.paginatorDropdownIconTemplate,p7,4)(o,n.paginatorFirstPageLinkIconTemplate,u7,4)(o,n.paginatorLastPageLinkIconTemplate,m7,4)(o,n.paginatorPreviousPageLinkIconTemplate,f7,4)(o,n.paginatorNextPageLinkIconTemplate,h7,4),i&2&&IM(32);},viewQuery:function(i,n){i&1&&XE(n.resizeHelperViewChild,g7,5)(n.reorderIndicatorUpViewChild,b7,5)(n.reorderIndicatorDownViewChild,_7,5)(n.wrapperViewChild,y7,5)(n.tableViewChild,v7,5)(n.tableHeaderViewChild,x7,5)(n.tableFooterViewChild,C7,5)(n.scroller,M7,5),i&2&&IM(8);},hostVars:3,hostBindings:function(i,n){i&2&&(su$1("data-p",n.dataP),jM(n.cx("root")));},inputs:{frozenColumns:[1,"frozenColumns"],frozenValue:[1,"frozenValue"],tableStyle:[1,"tableStyle"],tableStyleClass:[1,"tableStyleClass"],paginator:[1,"paginator"],pageLinks:[1,"pageLinks"],rowsPerPageOptions:[1,"rowsPerPageOptions"],alwaysShowPaginator:[1,"alwaysShowPaginator"],paginatorPosition:[1,"paginatorPosition"],paginatorStyleClass:[1,"paginatorStyleClass"],paginatorDropdownAppendTo:[1,"paginatorDropdownAppendTo"],paginatorDropdownScrollHeight:[1,"paginatorDropdownScrollHeight"],currentPageReportTemplate:[1,"currentPageReportTemplate"],showCurrentPageReport:[1,"showCurrentPageReport"],showJumpToPageDropdown:[1,"showJumpToPageDropdown"],showJumpToPageInput:[1,"showJumpToPageInput"],showFirstLastIcon:[1,"showFirstLastIcon"],showPageLinks:[1,"showPageLinks"],defaultSortOrder:[1,"defaultSortOrder"],sortMode:[1,"sortMode"],resetPageOnSort:[1,"resetPageOnSort"],selectionMode:[1,"selectionMode"],selectionPageOnly:[1,"selectionPageOnly"],contextMenuSelectionInput:[1,"contextMenuSelection","contextMenuSelectionInput"],dataKey:[1,"dataKey"],metaKeySelection:[1,"metaKeySelection"],rowSelectable:[1,"rowSelectable"],rowTrackBy:[1,"rowTrackBy"],lazy:[1,"lazy"],lazyLoadOnInit:[1,"lazyLoadOnInit"],compareSelectionBy:[1,"compareSelectionBy"],csvSeparator:[1,"csvSeparator"],exportFilename:[1,"exportFilename"],filtersInput:[1,"filters","filtersInput"],globalFilterFields:[1,"globalFilterFields"],filterDelay:[1,"filterDelay"],filterLocale:[1,"filterLocale"],expandedRowKeysInput:[1,"expandedRowKeys","expandedRowKeysInput"],editingRowKeysInput:[1,"editingRowKeys","editingRowKeysInput"],rowExpandMode:[1,"rowExpandMode"],scrollable:[1,"scrollable"],rowGroupMode:[1,"rowGroupMode"],scrollHeight:[1,"scrollHeight"],virtualScroll:[1,"virtualScroll"],virtualScrollItemSize:[1,"virtualScrollItemSize"],virtualScrollOptions:[1,"virtualScrollOptions"],virtualScrollDelay:[1,"virtualScrollDelay"],frozenWidth:[1,"frozenWidth"],contextMenu:[1,"contextMenu"],resizableColumns:[1,"resizableColumns"],columnResizeMode:[1,"columnResizeMode"],reorderableColumns:[1,"reorderableColumns"],loading:[1,"loading"],loadingIcon:[1,"loadingIcon"],showLoader:[1,"showLoader"],rowHover:[1,"rowHover"],customSort:[1,"customSort"],showInitialSortBadge:[1,"showInitialSortBadge"],exportFunction:[1,"exportFunction"],exportHeader:[1,"exportHeader"],stateKey:[1,"stateKey"],stateStorage:[1,"stateStorage"],editMode:[1,"editMode"],groupRowsBy:[1,"groupRowsBy"],size:[1,"size"],showGridlines:[1,"showGridlines"],stripedRows:[1,"stripedRows"],groupRowsByOrder:[1,"groupRowsByOrder"],paginatorLocale:[1,"paginatorLocale"],valueInput:[1,"value","valueInput"],columnsInput:[1,"columns","columnsInput"],first:[1,"first"],rows:[1,"rows"],totalRecords:[1,"totalRecords"],sortFieldInput:[1,"sortField","sortFieldInput"],sortOrderInput:[1,"sortOrder","sortOrderInput"],multiSortMetaInput:[1,"multiSortMeta","multiSortMetaInput"],selection:[1,"selection"],selectAllInput:[1,"selectAll","selectAllInput"]},outputs:{contextMenuSelectionChange:"contextMenuSelectionChange",first:"firstChange",rows:"rowsChange",totalRecords:"totalRecordsChange",selection:"selectionChange",selectAllChange:"selectAllChange",onRowSelect:"onRowSelect",onRowUnselect:"onRowUnselect",onPage:"onPage",onSort:"onSort",onFilter:"onFilter",onLazyLoad:"onLazyLoad",onRowExpand:"onRowExpand",onRowCollapse:"onRowCollapse",onContextMenuSelect:"onContextMenuSelect",onColResize:"onColResize",onColReorder:"onColReorder",onRowReorder:"onRowReorder",onEditInit:"onEditInit",onEditComplete:"onEditComplete",onEditCancel:"onEditCancel",onHeaderCheckboxToggle:"onHeaderCheckboxToggle",sortFunction:"sortFunction",onStateSave:"onStateSave",onStateRestore:"onStateRestore"},features:[nN([A1,et,{provide:ft,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],decls:13,vars:15,consts:[["wrapper",""],["buildInTable",""],["dropdownicon",""],["firstpagelinkicon",""],["previouspagelinkicon",""],["lastpagelinkicon",""],["nextpagelinkicon",""],["scroller",""],["content",""],["table",""],["thead",""],["tfoot",""],["resizeHelper",""],["reorderIndicatorUp",""],["reorderIndicatorDown",""],[3,"class","pBind"],[3,"rows","first","totalRecords","pageLinkSize","alwaysShow","rowsPerPageOptions","templateLeft","templateRight","appendTo","dropdownScrollHeight","currentPageReportTemplate","showFirstLastIcon","dropdownItemTemplate","showCurrentPageReport","showJumpToPageDropdown","showJumpToPageInput","showPageLinks","class","locale","pt","unstyled"],[3,"pBind"],[3,"items","columns","style","scrollHeight","itemSize","step","delay","inline","autoSize","lazy","loaderDisabled","showSpacer","showLoader","options","pt"],[3,"class","pBind","display"],["data-p-icon","spinner",3,"class","pBind"],["data-p-icon","spinner",3,"pBind"],[4,"ngTemplateOutlet"],[3,"onPageChange","rows","first","totalRecords","pageLinkSize","alwaysShow","rowsPerPageOptions","templateLeft","templateRight","appendTo","dropdownScrollHeight","currentPageReportTemplate","showFirstLastIcon","dropdownItemTemplate","showCurrentPageReport","showJumpToPageDropdown","showJumpToPageInput","showPageLinks","locale","pt","unstyled"],[3,"onLazyLoad","items","columns","scrollHeight","itemSize","step","delay","inline","autoSize","lazy","loaderDisabled","showSpacer","showLoader","options","pt"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],["role","table",3,"pBind"],["role","rowgroup",3,"pBind"],["role","rowgroup",3,"class","pBind","value","frozenRows","pTableBody","pTableBodyTemplate","unstyled","frozen"],["role","rowgroup",3,"pBind","value","pTableBody","pTableBodyTemplate","scrollerOptions","unstyled"],["role","rowgroup",3,"style","class","pBind"],["role","rowgroup",3,"class","style","pBind"],["role","rowgroup",3,"pBind","value","frozenRows","pTableBody","pTableBodyTemplate","unstyled","frozen"],["data-p-icon","arrow-down",3,"pBind"],["data-p-icon","arrow-up",3,"pBind"]],template:function(i,n){i&1&&(rM(0,E7,3,5,"div",15),rM(1,L7,2,4,"div",15),rM(2,Y7,6,27,"p-paginator",16),Bc$1(3,"div",17,0),rM(5,X7,4,16,"p-scroller",18),rM(6,e9,1,7,"ng-container"),VE(7,r9,10,33,"ng-template",null,1,pN),bp$1(),rM(9,M9,6,27,"p-paginator",16),rM(10,z9,2,4,"div",15),rM(11,k9,2,5,"div",19),rM(12,L9,8,14)),i&2&&(oM(n.showLoadingMask()?0:-1),n_(),oM(n.captionTemplate()?1:-1),n_(),oM(n.showTopPaginator()?2:-1),n_(),PM(n.sx("tableContainer")),jM(n.cx("tableContainer")),zE("pBind",n.ptm("tableContainer")),su$1("data-p",n.dataP),n_(2),oM(n.virtualScroll()?5:-1),n_(),oM(n.virtualScroll()?-1:6),n_(3),oM(n.showBottomPaginator()?9:-1),n_(),oM(n.summaryTemplate()?10:-1),n_(),oM(n.resizableColumns()?11:-1),n_(),oM(n.reorderableColumns()?12:-1));},dependencies:[cA,C2,si,ri,u1,nn,o1,L,Q8$1,M2,w2,Hp],encapsulation:2,changeDetection:1})}return t})();var X2=(()=>{class t extends I{field=mu$1(void 0,{alias:"pSortableColumn"});pSortableColumnDisabled=mu$1(void 0,{transform:yn});role=this.el.nativeElement?.tagName!=="TH"?"columnheader":null;sorted=U(false);sortOrder=U(0);$tabindex=gs$1(()=>this.isEnabled()?"0":null);ariaSort=gs$1(()=>{let e=this.sorted(),i=this.sortOrder();return e?i===1?"ascending":"descending":"none"});_componentStyle=g(et);dataTable=g(ft);constructor(){super(),this.isEnabled()&&this.dataTable.tableService.sortSource$.pipe(_t()).subscribe(()=>{this.updateSortState();});}onInit(){this.isEnabled()&&this.updateSortState();}updateSortState(){let e=false,i=0;if(this.dataTable.sortMode()==="single")e=this.dataTable.isSorted(this.field()),i=this.dataTable.sortOrder;else if(this.dataTable.sortMode()==="multiple"){let n=this.dataTable.getSortMeta(this.field());e=!!n,i=n?n.order:0;}this.sorted.set(e),this.sortOrder.set(i);}onClick(e){this.isEnabled()&&!this.isFilterElement(e.target)&&(this.updateSortState(),this.dataTable.sort({originalEvent:e,field:this.field()}),B3$1.clearSelection());}onEnterKey(e){this.onClick(e),e.preventDefault();}isEnabled(){return this.pSortableColumnDisabled()!==true}isFilterElement(e){return this.isFilterElementIconOrButton(e)||this.isFilterElementIconOrButton(e?.parentElement?.parentElement)}isFilterElementIconOrButton(e){return A4$1(e,'[data-pc-name="pccolumnfilterbutton"]')||A4$1(e,'[data-pc-section="columnfilterbuttonicon"]')}static \u0275fac=function(i){return new(i||t)};static \u0275dir=xt({type:t,selectors:[["","pSortableColumn",""]],hostAttrs:["role","columnheader"],hostVars:4,hostBindings:function(i,n){i&1&&cu$1("click",function(r){return n.onClick(r)})("keydown.space",function(r){return n.onEnterKey(r)})("keydown.enter",function(r){return n.onEnterKey(r)}),i&2&&(YE("tabIndex",n.$tabindex()),su$1("aria-sort",n.ariaSort()),jM(n.cx("sortableColumn")));},inputs:{field:[1,"pSortableColumn","field"],pSortableColumnDisabled:[1,"pSortableColumnDisabled"]},features:[nN([et]),BE]})}return t})();var J2=(()=>{class t extends I{pResizableColumnDisabled=mu$1(void 0,{transform:yn});resizer;resizerMouseDownListener;resizerTouchStartListener;resizerTouchMoveListener;resizerTouchEndListener;documentMouseMoveListener;documentMouseUpListener;_componentStyle=g(et);dataTable=g(ft);onAfterViewInit(){BG(this.platformId)&&this.isEnabled()&&(this.resizer=this.renderer.createElement("span"),PI(this.resizer,"data-pc-column-resizer","true"),!this.$unstyled()&&this.renderer.addClass(this.resizer,"p-datatable-column-resizer"),this.renderer.appendChild(this.el.nativeElement,this.resizer),this.resizerMouseDownListener=this.renderer.listen(this.resizer,"mousedown",this.onMouseDown.bind(this)),this.resizerTouchStartListener=this.renderer.listen(this.resizer,"touchstart",this.onTouchStart.bind(this)));}bindDocumentEvents(){this.documentMouseMoveListener=this.renderer.listen(this.document,"mousemove",this.onDocumentMouseMove.bind(this)),this.documentMouseUpListener=this.renderer.listen(this.document,"mouseup",this.onDocumentMouseUp.bind(this)),this.resizerTouchMoveListener=this.renderer.listen(this.resizer,"touchmove",this.onTouchMove.bind(this)),this.resizerTouchEndListener=this.renderer.listen(this.resizer,"touchend",this.onTouchEnd.bind(this));}unbindDocumentEvents(){this.documentMouseMoveListener&&(this.documentMouseMoveListener(),this.documentMouseMoveListener=null),this.documentMouseUpListener&&(this.documentMouseUpListener(),this.documentMouseUpListener=null),this.resizerTouchMoveListener&&(this.resizerTouchMoveListener(),this.resizerTouchMoveListener=null),this.resizerTouchEndListener&&(this.resizerTouchEndListener(),this.resizerTouchEndListener=null);}onMouseDown(e){this.dataTable.onColumnResizeBegin(e),this.bindDocumentEvents();}onTouchStart(e){this.dataTable.onColumnResizeBegin(e),this.bindDocumentEvents();}onTouchMove(e){this.dataTable.onColumnResize(e);}onDocumentMouseMove(e){this.dataTable.onColumnResize(e);}onDocumentMouseUp(e){this.dataTable.onColumnResizeEnd(),this.unbindDocumentEvents();}onTouchEnd(e){this.dataTable.onColumnResizeEnd(),this.unbindDocumentEvents();}isEnabled(){return this.pResizableColumnDisabled()!==true}onDestroy(){this.resizerMouseDownListener&&(this.resizerMouseDownListener(),this.resizerMouseDownListener=null),this.unbindDocumentEvents();}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275dir=xt({type:t,selectors:[["","pResizableColumn",""]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("resizableColumn"));},inputs:{pResizableColumnDisabled:[1,"pResizableColumnDisabled"]},features:[nN([et]),BE]})}return t})();var mi=(()=>{class t extends I{field=mu$1();sortOrder=U(0);_componentStyle=g(et);dataTable=g(ft);constructor(){super(),this.dataTable.tableService.sortSource$.pipe(_t()).subscribe(()=>{this.updateSortState();});}onInit(){this.updateSortState();}onClick(e){e.preventDefault();}updateSortState(){if(this.dataTable.sortMode()==="single")this.sortOrder.set(this.dataTable.isSorted(this.field())?this.dataTable.sortOrder:0);else if(this.dataTable.sortMode()==="multiple"){let e=this.dataTable.getSortMeta(this.field());this.sortOrder.set(e?e.order:0);}}getMultiSortMetaIndex(){let e=this.dataTable.multiSortMeta,i=-1;if(e&&this.dataTable.sortMode()==="multiple"&&this.dataTable.showInitialSortBadge()&&e.length>1)for(let n=0;n-1?e:e+1}isMultiSorted(){return this.dataTable.sortMode()==="multiple"&&this.getMultiSortMetaIndex()>-1}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-sort-icon"],["p-sorticon"]],inputs:{field:[1,"field"]},features:[nN([et]),BE],decls:3,vars:3,consts:[[3,"class"],["size","small",3,"class","value"],["data-p-icon","sort-alt",3,"class"],["data-p-icon","sort-amount-up-alt",3,"class"],["data-p-icon","sort-amount-down",3,"class"],["data-p-icon","sort-alt"],["data-p-icon","sort-amount-up-alt"],["data-p-icon","sort-amount-down"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],["size","small",3,"value"]],template:function(i,n){i&1&&(rM(0,V9,3,3),rM(1,A9,2,6,"span",0),rM(2,H9,1,3,"p-badge",1)),i&2&&(oM(n.dataTable.sortIconTemplate()?-1:0),n_(),oM(n.dataTable.sortIconTemplate()?1:-1),n_(),oM(n.isMultiSorted()?2:-1));},dependencies:[cA,ce,I3$1,z2,T2,k2],encapsulation:2})}return t})();var $p=(()=>{class t extends I{value=mu$1();disabled=mu$1(void 0,{transform:yn});index=mu$1(void 0,{transform:Bp$1});inputId=mu$1();name=mu$1();ariaLabel=mu$1();inputViewChild=cz("rb");checked=U(false);dataTable=g(ft);get aria(){return this.dataTable.config.translation.aria}resolvedAriaLabel=gs$1(()=>{let e=this.checked();return this.ariaLabel()||(this.aria?e?this.aria.selectRow:this.aria.unselectRow:void 0)});constructor(){super(),this.dataTable.tableService.selectionSource$.pipe(_t()).subscribe(()=>{this.checked.set(this.dataTable.isSelected(this.value()));});}onInit(){this.checked.set(this.dataTable.isSelected(this.value()));}onClick(e){this.disabled()||(this.dataTable.toggleRowWithRadio({originalEvent:e.originalEvent,rowIndex:this.index()},this.value()),this.inputViewChild()?.inputViewChild().nativeElement?.focus()),B3$1.clearSelection();}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-table-radio-button"],["p-tableradiobutton"]],viewQuery:function(i,n){i&1&&XE(n.inputViewChild,$9,5),i&2&&IM();},inputs:{value:[1,"value"],disabled:[1,"disabled"],index:[1,"index"],inputId:[1,"inputId"],name:[1,"name"],ariaLabel:[1,"ariaLabel"]},features:[BE],decls:2,vars:8,consts:[["rb",""],[3,"ngModelChange","onClick","ngModel","disabled","inputId","name","ariaLabel","binary","value","unstyled"]],template:function(i,n){i&1&&(Bc$1(0,"p-radiobutton",1,0),cu$1("ngModelChange",function(r){return n.checked.set(r)})("onClick",function(r){return n.onClick(r)}),bp$1(),z_()),i&2&&(zE("ngModel",n.checked())("disabled",n.disabled())("inputId",n.inputId())("name",n.name())("ariaLabel",n.resolvedAriaLabel())("binary",true)("value",n.value())("unstyled",n.unstyled()),W_());},dependencies:[E2,P1,nn,an,L5$1],encapsulation:2})}return t})(),Gp=(()=>{class t extends I{value=mu$1();disabled=mu$1(void 0,{transform:yn});required=mu$1(void 0,{transform:yn});index=mu$1(void 0,{transform:Bp$1});inputId=mu$1();name=mu$1();ariaLabel=mu$1();checked=U(false);dataTable=g(ft);get aria(){return this.dataTable.config.translation.aria}resolvedAriaLabel=gs$1(()=>{let e=this.checked();return this.ariaLabel()||(this.aria?e?this.aria.selectRow:this.aria.unselectRow:void 0)});tableService=g(A1);constructor(){super(),this.dataTable.tableService.selectionSource$.pipe(_t()).subscribe(()=>{this.checked.set(this.dataTable.isSelected(this.value()));}),Ui(e=>{let i=this.value();this.dataTable.setRowCheckboxDisabled(i,!!this.disabled()),e(()=>this.dataTable.setRowCheckboxDisabled(i,false));});}onInit(){this.checked.set(this.dataTable.isSelected(this.value()));}onClick({originalEvent:e}){this.disabled()||this.dataTable.toggleRowWithCheckbox({originalEvent:e,rowIndex:this.index()||0},this.value()),B3$1.clearSelection();}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-table-checkbox"],["p-tablecheckbox"]],inputs:{value:[1,"value"],disabled:[1,"disabled"],required:[1,"required"],index:[1,"index"],inputId:[1,"inputId"],name:[1,"name"],ariaLabel:[1,"ariaLabel"]},features:[BE],decls:2,vars:9,consts:[["icon",""],[3,"ngModelChange","onChange","ngModel","binary","required","disabled","inputId","name","ariaLabel","unstyled"],[4,"ngTemplateOutlet","ngTemplateOutletContext"]],template:function(i,n){if(i&1&&(Bc$1(0,"p-checkbox",1),cu$1("ngModelChange",function(r){return n.checked.set(r)})("onChange",function(r){return n.onClick(r)}),rM(1,q9,2,0),bp$1(),z_()),i&2){let o;zE("ngModel",n.checked())("binary",true)("required",n.required())("disabled",n.disabled())("inputId",n.inputId())("name",n.name())("ariaLabel",n.resolvedAriaLabel())("unstyled",n.unstyled()),W_(),n_(),oM((o=n.dataTable.checkboxIconTemplate())?1:-1,o);}},dependencies:[cA,m1,Wt,nn,an,q0$1,L5$1],encapsulation:2})}return t})(),Up=(()=>{class t extends I{hostName="Table";bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("headerCheckbox"));}disabled=mu$1(void 0,{transform:yn});inputId=mu$1();name=mu$1();ariaLabel=mu$1();checked;resolvedAriaLabel;dataTable=g(ft);tableService=g(A1);get aria(){return this.dataTable.config.translation.aria}constructor(){super(),this.dataTable.tableService.valueSource$.pipe(_t()).subscribe(()=>{this.checked=this.updateCheckedState(),this.resolvedAriaLabel=this.ariaLabel()||(this.aria?this.checked?this.aria.selectAll:this.aria.unselectAll:void 0);}),this.dataTable.tableService.selectionSource$.pipe(_t()).subscribe(()=>{this.checked=this.updateCheckedState();});}onInit(){this.checked=this.updateCheckedState();}onClick(e){this.disabled()||this.dataTable.value&&this.dataTable.value.length>0&&this.dataTable.toggleRowsWithCheckbox(e,this.checked||false),B3$1.clearSelection();}isDisabled(){return this.disabled()||!this.dataTable.value||!this.dataTable.value.length}updateCheckedState(){if(this.cd.markForCheck(),this.dataTable._selectAll!==null)return this.dataTable._selectAll;{let e=this.dataTable.selectionPageOnly()?this.dataTable.dataToRender(this.dataTable.processedData):this.dataTable.processedData,n=(this.dataTable.frozenValue()?[...this.dataTable.frozenValue(),...e]:e).filter((r,u)=>(!this.dataTable.rowSelectable()||this.dataTable.rowSelectable()({data:r,index:u}))&&!this.dataTable.isRowCheckboxDisabled(r)),o=this.dataTable.compareSelectionBy()==="equals"?r=>this.dataTable.selection().some(u=>this.dataTable.equals(r,u)):r=>this.dataTable.isSelected(r);return _e.isNotEmpty(n)&&_e.isNotEmpty(this.dataTable.selection())&&n.every(o)}}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-table-header-checkbox"],["p-tableheadercheckbox"]],inputs:{disabled:[1,"disabled"],inputId:[1,"inputId"],name:[1,"name"],ariaLabel:[1,"ariaLabel"]},features:[j0$1([L]),BE],decls:2,vars:9,consts:[["icon",""],[3,"ngModelChange","onChange","pt","ngModel","binary","disabled","inputId","name","ariaLabel","unstyled"],[4,"ngTemplateOutlet","ngTemplateOutletContext"]],template:function(i,n){if(i&1&&(Bc$1(0,"p-checkbox",1),mD("ngModelChange",function(r){return QM(n.checked,r)||(n.checked=r),r}),cu$1("onChange",function(r){return n.onClick(r)}),rM(1,Z9,2,0),bp$1(),z_()),i&2){let o;zE("pt",n.ptm("pcCheckbox")),gD("ngModel",n.checked),zE("binary",true)("disabled",n.isDisabled())("inputId",n.inputId())("name",n.name())("ariaLabel",n.resolvedAriaLabel)("unstyled",n.unstyled()),W_(),n_(),oM((o=n.dataTable.headerCheckboxIconTemplate())?1:-1,o);}},dependencies:[cA,m1,Wt,nn,an,L5$1],encapsulation:2})}return t})(),eo=(()=>{class t extends I{hostName="Table";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(et);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("columnFilterFormElement"));}field=mu$1();type=mu$1();filterConstraint=mu$1();filterTemplate=mu$1();placeholder=mu$1();minFractionDigits=mu$1(void 0,{transform:e=>Bp$1(e,void 0)});maxFractionDigits=mu$1(void 0,{transform:e=>Bp$1(e,void 0)});prefix=mu$1();suffix=mu$1();locale=mu$1();localeMatcher=mu$1();currency=mu$1();currencyDisplay=mu$1();useGrouping=mu$1(true,{transform:yn});ariaLabel=mu$1();filterOn=mu$1();showButtons=gs$1(()=>this.colFilter.showButtons());onFilterCallback=(e=>{let i=this.filterConstraint();i&&(i.value=e),this.colFilter.setHasFilter(true),this.dataTable._filter();}).bind(this);filterTemplateContext=gs$1(()=>({$implicit:this.filterConstraint()?.value,filterCallback:this.onFilterCallback,type:this.type(),field:this.field(),filterConstraint:this.filterConstraint(),placeholder:this.placeholder(),minFractionDigits:this.minFractionDigits(),maxFractionDigits:this.maxFractionDigits(),prefix:this.prefix(),suffix:this.suffix(),locale:this.locale(),localeMatcher:this.localeMatcher(),currency:this.currency(),currencyDisplay:this.currencyDisplay(),useGrouping:this.useGrouping(),showButtons:this.showButtons()}));dataTable=g(ft);colFilter=g(Q2);onModelChange(e){let i=this.filterConstraint();i&&(i.value=e);let n=this.showButtons()&&this.colFilter.showApplyButton();(this.type()==="boolean"||this.type()==="date"&&!n||(this.type()==="text"||this.type()==="numeric")&&this.filterOn()==="input"||this.dataTable.isFilterBlank(e))&&(this.colFilter.setHasFilter(true),this.dataTable._filter());}onTextInputEnterKeyDown(e){this.colFilter.setHasFilter(true),this.dataTable._filter(),e.preventDefault();}onNumericInputKeyDown(e){e.key==="Enter"&&(this.dataTable._filter(),e.preventDefault());}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-column-filter-form-element"],["p-columnfilterformelement"]],inputs:{field:[1,"field"],type:[1,"type"],filterConstraint:[1,"filterConstraint"],filterTemplate:[1,"filterTemplate"],placeholder:[1,"placeholder"],minFractionDigits:[1,"minFractionDigits"],maxFractionDigits:[1,"maxFractionDigits"],prefix:[1,"prefix"],suffix:[1,"suffix"],locale:[1,"locale"],localeMatcher:[1,"localeMatcher"],currency:[1,"currency"],currencyDisplay:[1,"currencyDisplay"],useGrouping:[1,"useGrouping"],ariaLabel:[1,"ariaLabel"],filterOn:[1,"filterOn"]},features:[nN([et]),j0$1([L]),BE],decls:2,vars:1,consts:[[4,"ngTemplateOutlet","ngTemplateOutletContext"],["type","text","pInputText","",3,"ariaLabel","pt","value","unstyled"],[3,"ngModel","showButtons","minFractionDigits","maxFractionDigits","ariaLabel","prefix","suffix","placeholder","mode","locale","localeMatcher","currency","currencyDisplay","useGrouping","pt","unstyled"],[3,"pt","indeterminate","binary","ngModel","unstyled"],["appendTo","body",3,"pt","ariaLabel","placeholder","ngModel","unstyled"],["type","text","pInputText","",3,"input","keydown.enter","ariaLabel","pt","value","unstyled"],[3,"ngModelChange","onKeyDown","ngModel","showButtons","minFractionDigits","maxFractionDigits","ariaLabel","prefix","suffix","placeholder","mode","locale","localeMatcher","currency","currencyDisplay","useGrouping","pt","unstyled"],[3,"ngModelChange","pt","indeterminate","binary","ngModel","unstyled"],["appendTo","body",3,"ngModelChange","pt","ariaLabel","placeholder","ngModel","unstyled"]],template:function(i,n){i&1&&rM(0,X9,1,2,"ng-container")(1,np,4,1),i&2&&oM(n.filterTemplate()?0:1);},dependencies:[cA,nn,an,L5$1,cr$1,ar$1,li,qt,m1,Wt,ci,R1,o1],encapsulation:2})}return t})(),Kp=(()=>{class t extends I{hostName="Table";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(et);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("columnFilter"));}ptmFilterConstraintOptions(e){return {context:{highlighted:e&&this.isRowMatchModeSelected(e.value)}}}field=mu$1();type=mu$1("text");display=mu$1("row");showMenu=mu$1(true,{transform:yn});matchMode=mu$1();operator=az(J4$1.AND);showOperator=mu$1(true,{transform:yn});showClearButton=mu$1(true,{transform:yn});showApplyButton=mu$1(true,{transform:yn});showMatchModes=mu$1(true,{transform:yn});showAddButton=mu$1(true,{transform:yn});hideOnClear=mu$1(true,{transform:yn});placeholder=mu$1();matchModeOptions=mu$1();maxConstraints=mu$1(2,{transform:Bp$1});minFractionDigits=mu$1(void 0,{transform:e=>Bp$1(e,void 0)});maxFractionDigits=mu$1(void 0,{transform:e=>Bp$1(e,void 0)});prefix=mu$1();suffix=mu$1();locale=mu$1();localeMatcher=mu$1();currency=mu$1();currencyDisplay=mu$1();filterOn=mu$1("enter");useGrouping=mu$1(true,{transform:yn});showButtons=mu$1(true,{transform:yn});ariaLabel=mu$1();filterButtonProps=mu$1({filter:{severity:"secondary",variant:"text",rounded:true},inline:{clear:{severity:"secondary",variant:"text",rounded:true}},popover:{addRule:{severity:"info",variant:"text",size:"small"},removeRule:{severity:"danger",variant:"text",size:"small"},apply:{size:"small"},clear:{variant:"outlined",size:"small"}}});motionOptions=mu$1(void 0);computedMotionOptions=gs$1(()=>l$1(l$1({},this.ptm("motion")),this.motionOptions()));onShow=sz();onHide=sz();icon=cz("menuButton",{read:Rt});clearButtonViewChild=cz("clearBtn");overlaySubscription;renderOverlay=U(false);headerTemplate=uz("header",{descendants:false});filterTemplate=uz("filter",{descendants:false});footerTemplate=uz("footer",{descendants:false});filterIconTemplate=uz("filtericon",{descendants:false});removeRuleIconTemplate=uz("removeruleicon",{descendants:false});addRuleIconTemplate=uz("addruleicon",{descendants:false});operatorOptions;overlayVisible;overlay;scrollHandler;documentClickListener;documentResizeListener;matchModes;selfClick;overlayEventListener;overlayId;filterApplied=false;get fieldConstraints(){return this.dataTable.filters?this.dataTable.filters[this.field()]:null}get showRemoveIcon(){return this.fieldConstraints?this.fieldConstraints.length>1:false}get showMenuButton(){return this.showMenu()&&(this.display()==="row"?this.type()!=="boolean":true)}get isShowOperator(){return this.showOperator()&&this.type()!=="boolean"}get isShowAddConstraint(){return this.showAddButton()&&this.type()!=="boolean"&&this.fieldConstraints&&this.fieldConstraints.length{this.generateMatchModeOptions(),this.generateOperatorOptions();}),this.dataTable.tableService.valueSource$.pipe(_t()).subscribe(()=>{this.setHasFilter(true),this.cd.markForCheck();});}onInit(){this.overlayId=Lo$1(),this.dataTable.filters[this.field()]||this.initFieldFilterConstraint(),this.generateMatchModeOptions(),this.generateOperatorOptions();}generateMatchModeOptions(){this.matchModes=this.matchModeOptions()||this.config.filterMatchModeOptions[this.type()]?.map(e=>({label:this.translate(e),value:e}));}generateOperatorOptions(){this.operatorOptions=[{label:this.translate(sq.MATCH_ALL),value:J4$1.AND},{label:this.translate(sq.MATCH_ANY),value:J4$1.OR}];}initFieldFilterConstraint(){let e=this.getDefaultMatchMode();this.dataTable.filters[this.field()]=this.display()=="row"?{value:null,matchMode:e}:[{value:null,matchMode:e,operator:this.operator()}];}onMenuMatchModeChange(e,i){i.matchMode=e,this.showApplyButton()||this.dataTable._filter();}onRowMatchModeChange(e){let i=this.dataTable.filters[this.field()];i.matchMode=e,this.dataTable.isFilterBlank(i.value)||this.dataTable._filter(),this.hide();}onRowMatchModeKeyDown(e){let i=e.target;switch(e.key){case "ArrowDown":var n=this.findNextItem(i);n&&(i.removeAttribute("tabindex"),n.tabIndex="0",n.focus()),e.preventDefault();break;case "ArrowUp":var o=this.findPrevItem(i);o&&(i.removeAttribute("tabindex"),o.tabIndex="0",o.focus()),e.preventDefault();break}}onRowClearItemClick(){this.clearFilter(),this.hide();}isRowMatchModeSelected(e){return this.dataTable.filters[this.field()].matchMode===e}addConstraint(){this.dataTable.filters[this.field()].push({value:null,matchMode:this.getDefaultMatchMode(),operator:this.getDefaultOperator()}),B3$1.focus(this.clearButtonViewChild()?.nativeElement);}removeConstraint(e){this.dataTable.filters[this.field()]=this.dataTable.filters[this.field()].filter(i=>i!==e),this.showApplyButton()||this.dataTable._filter(),B3$1.focus(this.clearButtonViewChild()?.nativeElement);}onOperatorChange(e){this.dataTable.filters[this.field()].forEach(i=>{i.operator=e,this.operator.set(e);}),this.showApplyButton()||this.dataTable._filter();}toggleMenu(e){this.overlayVisible=!this.overlayVisible,this.overlayVisible&&this.renderOverlay.set(true),e.stopPropagation();}onToggleButtonKeyDown(e){switch(e.key){case "Escape":case "Tab":this.overlayVisible=false;break;case "ArrowDown":if(this.overlayVisible){let i=B3$1.getFocusableElements(this.overlay);i&&i[0].focus(),e.preventDefault();}else e.altKey&&(this.overlayVisible=true,e.preventDefault());break;case "Enter":this.toggleMenu(e),e.preventDefault();break}}onEscape(){this.overlayVisible=false,this.icon()?.nativeElement.focus();}findNextItem(e){let i=e.nextElementSibling;return i?cO(i,'[data-pc-section="filterconstraintseparator"]')?this.findNextItem(i):i:e.parentElement?.firstElementChild}findPrevItem(e){let i=e.previousElementSibling;return i?cO(i,'[data-pc-section="filterconstraintseparator"]')?this.findPrevItem(i):i:e.parentElement?.lastElementChild}onContentClick(){this.selfClick=true;}onOverlayBeforeEnter(e){if(this.overlay=e.element,this.overlay&&this.overlay.parentElement!==this.document.body){let i=M4$1(this.el.nativeElement,'[data-pc-name="pccolumnfilterbutton"]');b4$1(this.document.body,this.overlay),w4$1(this.overlay,{position:"absolute",top:"0"}),D4$1(this.overlay,i),N4$1.set("overlay",this.overlay,this.config.zIndex.overlay);}this.bindDocumentClickListener(),this.bindDocumentResizeListener(),this.bindScrollListener(),this.overlayEventListener=i=>{this.overlay&&this.overlay.contains(i.target)&&(this.selfClick=true);},this.overlaySubscription=this.overlayService.clickObservable.subscribe(this.overlayEventListener),this.onShow.emit({originalEvent:e}),this.focusOnFirstElement();}onOverlayAnimationAfterLeave(e){let i=this.overlay;this.restoreOverlayAppend(),this.onOverlayHide(),this.renderOverlay.set(false),this.overlaySubscription&&this.overlaySubscription.unsubscribe(),N4$1.clear(i),this.onHide.emit({originalEvent:e});}restoreOverlayAppend(){this.overlay&&this.el.nativeElement.appendChild(this.overlay);}focusOnFirstElement(){this.overlay&&B3$1.focus(B3$1.getFirstFocusableElement(this.overlay,""));}getDefaultMatchMode(){return this.matchMode()?this.matchMode():this.type()==="text"?Me.STARTS_WITH:this.type()==="numeric"?Me.EQUALS:this.type()==="date"?Me.DATE_IS:Me.CONTAINS}getDefaultOperator(){return this.dataTable.filters?this.dataTable.filters[this.field()][0].operator:this.operator()}hasRowFilter(){return this.dataTable.filters[this.field()]&&!this.dataTable.isFilterBlank(this.dataTable.filters[this.field()].value)}setHasFilter(e){let i=this.dataTable.filters[this.field()];i&&e?Array.isArray(i)?this.filterApplied=!this.dataTable.isFilterBlank(i[0].value):this.filterApplied=!this.dataTable.isFilterBlank(i.value):this.filterApplied=false;}get hasFilter(){return !Array.isArray(this.fieldConstraints)&&this.fieldConstraints?.applyFilter?(delete this.fieldConstraints.applyFilter,this.setHasFilter(true)):Array.isArray(this.fieldConstraints)&&this.fieldConstraints[0]?.applyFilter&&(delete this.fieldConstraints[0].applyFilter,this.setHasFilter(true)),this.filterApplied?(this.setHasFilter(true),this.filterApplied):false}isOutsideClicked(e){return !(M4$1(this.overlay.nextElementSibling,'[data-pc-section="filteroverlay"]')||M4$1(this.overlay.nextElementSibling,'[data-pc-name="popover"]')||this.overlay?.isSameNode(e.target)||this.overlay?.contains(e.target)||this.icon()?.nativeElement.isSameNode(e.target)||this.icon()?.nativeElement.contains(e.target)||M4$1(e.target,'[data-pc-name="pcaddrulebuttonlabel"]')||M4$1(e.target.parentElement,'[data-pc-name="pcaddrulebuttonlabel"]')||M4$1(e.target,'[data-pc-name="pcfilterremoverulebutton"]')||M4$1(e.target.parentElement,'[data-pc-name="pcfilterremoverulebutton"]'))}bindDocumentClickListener(){if(!this.documentClickListener){let e=this.el?this.el.nativeElement.ownerDocument:"document";this.documentClickListener=this.renderer.listen(e,"mousedown",i=>{let n=document.querySelectorAll('[role="dialog"]'),o=i.target.closest('[data-pc-name="pccolumnfilterbutton"]');this.overlayVisible&&this.isOutsideClicked(i)&&(o||n?.length<=1)&&this.hide(),this.selfClick=false;});}}unbindDocumentClickListener(){this.documentClickListener&&(this.documentClickListener(),this.documentClickListener=null,this.selfClick=false);}bindDocumentResizeListener(){this.documentResizeListener||(this.documentResizeListener=this.renderer.listen(this.document.defaultView,"resize",e=>{this.overlayVisible&&!B3$1.isTouchDevice()&&this.hide();}));}unbindDocumentResizeListener(){this.documentResizeListener&&(this.documentResizeListener(),this.documentResizeListener=null);}bindScrollListener(){this.scrollHandler||(this.scrollHandler=new b4$2(this.icon()?.nativeElement,()=>{this.overlayVisible&&this.hide();})),this.scrollHandler.bindScrollListener();}unbindScrollListener(){this.scrollHandler&&this.scrollHandler.unbindScrollListener();}hide(){this.overlayVisible=false,this.overlay&&N4$1.revertZIndex(N4$1.get(this.overlay)),this.cd.markForCheck();}onOverlayHide(){this.unbindDocumentClickListener(),this.unbindDocumentResizeListener(),this.unbindScrollListener(),this.overlay=null;}clearFilter(){this.initFieldFilterConstraint(),this.setHasFilter(false),this.dataTable._filter(),this.hideOnClear()&&this.hide();}applyFilter(){this.setHasFilter(true),this.dataTable._filter(),this.hide();}onDestroy(){this.overlay&&(this.restoreOverlayAppend(),N4$1.clear(this.overlay),this.onOverlayHide()),this.overlaySubscription&&this.overlaySubscription.unsubscribe();}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-column-filter"],["p-columnfilter"]],contentQueries:function(i,n,o){i&1&&QE(o,n.headerTemplate,W2,4)(o,n.filterTemplate,op,4)(o,n.footerTemplate,Y2,4)(o,n.filterIconTemplate,ap,4)(o,n.removeRuleIconTemplate,lp,4)(o,n.addRuleIconTemplate,rp,4),i&2&&IM(6);},viewQuery:function(i,n){i&1&&XE(n.icon,sp,5,Rt)(n.clearButtonViewChild,cp,5),i&2&&IM(2);},inputs:{field:[1,"field"],type:[1,"type"],display:[1,"display"],showMenu:[1,"showMenu"],matchMode:[1,"matchMode"],operator:[1,"operator"],showOperator:[1,"showOperator"],showClearButton:[1,"showClearButton"],showApplyButton:[1,"showApplyButton"],showMatchModes:[1,"showMatchModes"],showAddButton:[1,"showAddButton"],hideOnClear:[1,"hideOnClear"],placeholder:[1,"placeholder"],matchModeOptions:[1,"matchModeOptions"],maxConstraints:[1,"maxConstraints"],minFractionDigits:[1,"minFractionDigits"],maxFractionDigits:[1,"maxFractionDigits"],prefix:[1,"prefix"],suffix:[1,"suffix"],locale:[1,"locale"],localeMatcher:[1,"localeMatcher"],currency:[1,"currency"],currencyDisplay:[1,"currencyDisplay"],filterOn:[1,"filterOn"],useGrouping:[1,"useGrouping"],showButtons:[1,"showButtons"],ariaLabel:[1,"ariaLabel"],filterButtonProps:[1,"filterButtonProps"],motionOptions:[1,"motionOptions"]},outputs:{operator:"operatorChange",onShow:"onShow",onHide:"onHide"},features:[nN([et,{provide:Q2,useExisting:t}]),j0$1([L]),BE],decls:4,vars:5,consts:[["menuButton",""],["clearBtn",""],[3,"class","type","field","ariaLabel","filterConstraint","filterTemplate","placeholder","minFractionDigits","maxFractionDigits","prefix","suffix","locale","localeMatcher","currency","currencyDisplay","useGrouping","filterOn","pt","unstyled"],["type","button","iconOnly","",3,"pButton","class","pButtonPT","pButtonUnstyled"],["pMotionName","p-anchored-overlay","role","dialog",3,"pMotion","pMotionAppear","pMotionOptions","class","pBind","id"],[3,"type","field","ariaLabel","filterConstraint","filterTemplate","placeholder","minFractionDigits","maxFractionDigits","prefix","suffix","locale","localeMatcher","currency","currencyDisplay","useGrouping","filterOn","pt","unstyled"],["type","button","iconOnly","",3,"click","keydown","pButton","pButtonPT","pButtonUnstyled"],[3,"pBind"],["data-p-icon","filter-fill",3,"pBind"],["data-p-icon","filter",3,"pBind"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],["pMotionName","p-anchored-overlay","role","dialog",3,"pMotionOnBeforeEnter","pMotionOnAfterLeave","click","keydown.escape","pMotion","pMotionAppear","pMotionOptions","pBind","id"],[3,"class","pBind"],[3,"class","pBind","p-datatable-filter-constraint-selected"],[3,"click","keydown","keydown.enter","pBind"],["type","button","text","","size","small",3,"pButton","class","pButtonPT","pButtonUnstyled"],["type","button","outlined","",3,"pButton","pButtonPT","pButtonUnstyled"],["type","button","size","small",3,"pButton","pButtonPT","pButtonUnstyled"],[3,"ngModelChange","options","pt","ngModel","unstyled"],[3,"options","ngModel","styleClass","pt","unstyled"],[3,"type","field","filterConstraint","filterTemplate","placeholder","minFractionDigits","maxFractionDigits","prefix","suffix","locale","localeMatcher","currency","currencyDisplay","useGrouping","filterOn","pt","unstyled"],["type","button","text","","severity","danger","size","small",3,"pButton","class","pButtonPT","pButtonUnstyled"],[3,"ngModelChange","options","ngModel","styleClass","pt","unstyled"],["type","button","text","","severity","danger","size","small",3,"click","pButton","pButtonPT","pButtonUnstyled"],["data-p-icon","trash",3,"pBind"],[4,"ngTemplateOutlet"],["type","button","text","","size","small",3,"click","pButton","pButtonPT","pButtonUnstyled"],["data-p-icon","plus",3,"pBind"],["type","button","outlined","",3,"click","pButton","pButtonPT","pButtonUnstyled"],["type","button","size","small",3,"click","pButton","pButtonPT","pButtonUnstyled"]],template:function(i,n){i&1&&(Bc$1(0,"div"),rM(1,up,1,20,"p-column-filter-form-element",2),rM(2,_p,5,10,"button",3),rM(3,Vp,5,17,"div",4),bp$1()),i&2&&(jM(n.cx("filter")),n_(),oM(n.display()==="row"?1:-1),n_(),oM(n.showMenuButton?2:-1),n_(),oM(n.renderOverlay()?3:-1));},dependencies:[cA,nn,an,L5$1,Pi,Ei,b2,jt,cr$1,li,m1,ci,o1,L,De,Mo$1,B2,V2,R2,P2,eo],encapsulation:2})}return t})(),to=(()=>{class t{static \u0275fac=function(i){return new(i||t)};static \u0275mod=mn({type:t});static \u0275inj=$t({imports:[ui,mi,$p,Gp,Up,Kp,eo,iq,ri]})}return t})();var io=` + .p-tag { + display: inline-flex; + align-items: center; + justify-content: center; + background: dt('tag.primary.background'); + color: dt('tag.primary.color'); + font-size: dt('tag.font.size'); + font-weight: dt('tag.font.weight'); + padding: dt('tag.padding'); + border-radius: dt('tag.border.radius'); + gap: dt('tag.gap'); + } + + .p-tag-icon { + font-size: dt('tag.icon.size'); + width: dt('tag.icon.size'); + height: dt('tag.icon.size'); + } + + .p-tag-rounded { + border-radius: dt('tag.rounded.border.radius'); + } + + .p-tag-success { + background: dt('tag.success.background'); + color: dt('tag.success.color'); + } + + .p-tag-info { + background: dt('tag.info.background'); + color: dt('tag.info.color'); + } + + .p-tag-warn { + background: dt('tag.warn.background'); + color: dt('tag.warn.color'); + } + + .p-tag-danger { + background: dt('tag.danger.background'); + color: dt('tag.danger.color'); + } + + .p-tag-secondary { + background: dt('tag.secondary.background'); + color: dt('tag.secondary.color'); + } + + .p-tag-contrast { + background: dt('tag.contrast.background'); + color: dt('tag.contrast.color'); + } +`;var jp=["icon"],Wp=["*"];function Yp(t,a){if(t&1&&au$1(0,"span",1),t&2){let e=EM(2);jM(e.cn(e.cx("icon"),e.icon())),zE("pBind",e.ptm("icon"));}}function Zp(t,a){if(t&1&&rM(0,Yp,1,3,"span",0),t&2){let e=EM();oM(e.icon()?0:-1);}}function Qp(t,a){if(t&1&&(Bc$1(0,"span",1),qE(1,2),bp$1()),t&2){let e=EM();jM(e.cx("icon")),zE("pBind",e.ptm("icon")),n_(),zE("ngTemplateOutlet",e.iconTemplate());}}var Xp={root:({instance:t})=>{let a=t.severity(),e=t.rounded();return ["p-tag p-component",{"p-tag-info":a==="info","p-tag-success":a==="success","p-tag-warn":a==="warn","p-tag-danger":a==="danger","p-tag-secondary":a==="secondary","p-tag-contrast":a==="contrast","p-tag-rounded":e}]},icon:"p-tag-icon",label:"p-tag-label"},no=(()=>{class t extends WI{name="tag";style=io;classes=Xp;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var oo=new I$1("TAG_INSTANCE"),Jp=(()=>{class t extends I{componentName="Tag";$pcTag=g(oo,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});severity=mu$1();value=mu$1();icon=mu$1();rounded=mu$1(false,{transform:yn});iconTemplate=uz("icon",{descendants:false});_componentStyle=g(no);dataP=gs$1(()=>{let e=this.severity(),i=this.rounded();return this.cn({rounded:i,[e]:e})});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-tag"]],contentQueries:function(i,n,o){i&1&&QE(o,n.iconTemplate,jp,4),i&2&&IM();},hostVars:3,hostBindings:function(i,n){i&2&&(su$1("data-p",n.dataP()),jM(n.cx("root")));},inputs:{severity:[1,"severity"],value:[1,"value"],icon:[1,"icon"],rounded:[1,"rounded"]},features:[nN([no,{provide:oo,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:Wp,decls:5,vars:5,consts:[[3,"class","pBind"],[3,"pBind"],[3,"ngTemplateOutlet"]],template:function(i,n){i&1&&(uu$1(),lu$1(0),rM(1,Zp,1,1)(2,Qp,2,4,"span",0),Bc$1(3,"span",1),YM(4),bp$1()),i&2&&(n_(),oM(n.iconTemplate()?2:1),n_(2),jM(n.cx("label")),zE("pBind",n.ptm("label")),n_(),fD(n.value()));},dependencies:[cA,iq,L],encapsulation:2})}return t})(),ao=(()=>{class t{static \u0275fac=function(i){return new(i||t)};static \u0275mod=mn({type:t});static \u0275inj=$t({imports:[Jp,iq,iq]})}return t})();var $1=class t{http=g(vw);api=a.api.replace("${BASE_URL}",window.location.origin);getUsers(){return this.http.get(`${this.api}/Users`)}patchUser(a){return this.http.patch(`${this.api}/Users`,a)}deleteUser(a){return this.http.delete(`${this.api}/Users/${a.Uid}`)}static \u0275fac=function(e){return new(e||t)};static \u0275prov=b({token:t,factory:t.\u0275fac,providedIn:"root"})};function G1(t){if(!t?.trim())return [];try{let a=JSON.parse(t);return Array.isArray(a)?a.filter(e=>eu(e)).map(e=>new it(e.Key,e.Value)):[]}catch{return []}}function eu(t){if(!t||typeof t!="object")return false;let a=t;return typeof a.Key=="string"&&typeof a.Value=="string"}var it=class t{constructor(a,e){this.Key=a;this.Value=e;}Key;Value;static empty(){return new t("","")}},Ot=class t{constructor(a,e,i,n,o){this.Uid=a;this.ClientToken=e;this.DeviceToken=i;this.GotifyUrl=n;this.Headers=o;}Uid;ClientToken;DeviceToken;GotifyUrl;Headers;_Headers=[];get GotifyHeaders(){return this.Headers!=null&&this.Headers.length>0&&(this._Headers=G1(this.Headers)),this._Headers}set GotifyHeaders(a){this._Headers=a,this.Headers=JSON.stringify(a);}static empty(){return new t(0,"","","","")}},Yt=class{constructor(a,e,i,n,o,r,u){this.label=a;this.isActive=e;this.badge=i;this.link=n;this.route=o;this.faIcon=r;this.subItems=u;}label;isActive;badge;link;route;faIcon;subItems;id=crypto.randomUUID()},f1=class{constructor(a,e){this.label=a;this.items=e;}label;items;id=crypto.randomUUID()};var lo=` + .p-toast { + width: dt('toast.width'); + white-space: pre-line; + word-break: break-word; + } + + .p-toast-message { + --px-offset-y: calc(var(--px-swipe-amount-y) + (var(--px-toast-offset) + var(--px-toast-index) * var(--px-gap)) * var(--px-raise-factor)); + --px-offset-x: var(--px-swipe-amount-x); + width: 100%; + outline: none; + position: absolute; + touch-action: none; + opacity: 0; + transform: translateX(var(--px-offset-x)) translateY(calc(100% * var(--px-raise-factor) * -1)); + z-index: var(--px-toast-z-index); + transition: transform dt('toast.transition.duration'), opacity dt('toast.transition.duration'), height dt('toast.transition.duration'); + } + + .p-toast-message:focus-visible { + box-shadow: dt('toast.focus.ring.shadow'); + outline: dt('toast.focus.ring.width') dt('toast.focus.ring.style') dt('focus.ring.color'); + outline-offset: dt('toast.focus.ring.offset'); + } + + .p-toast-message[data-mounted] { + opacity: 1; + transform: translateY(0); + } + + .p-toast-message:not([data-expanded]):not([data-front]) { + overflow: hidden; + height: var(--px-front-toast-height); + transform: translateX(var(--px-offset-x)) translateY(calc(var(--px-raise-factor) * var(--px-toast-index) * var(--px-gap))) scale(calc(var(--px-toast-index) * -0.05 + 1)); + } + + .p-toast-message[data-mounted][data-expanded] { + height: var(--px-initial-height); + transform: translateX(var(--px-offset-x)) translateY(var(--px-offset-y)); + } + + .p-toast-message[data-expanded]::after { + content: ""; + position: absolute; + left: 0; + height: calc(var(--px-gap) + 1px); + width: 100%; + bottom: 100%; + } + + .p-toast-message:not([data-visible]) { + opacity: 0; + pointer-events: none; + user-select: none; + } + + .p-toast-message[data-removed][data-front]:not([data-swipe-out]) { + opacity: 0; + transform: translateX(var(--px-offset-x)) translateY(calc(var(--px-raise-factor) * -100%)); + } + + .p-toast-message[data-removed]:not([data-front]):not([data-swipe-out])[data-expanded] { + opacity: 0; + transform: translateX(var(--px-offset-x)) translateY(calc((var(--px-offset-y)) + (var(--px-raise-factor) * -100%))); + } + + .p-toast-message[data-removed]:not([data-front]):not([data-swipe-out]):not([data-expanded]) { + opacity: 0; + transform: translateX(var(--px-offset-x)) translateY(calc(var(--px-raise-factor) * 40% * -1)); + transition: + transform 500ms, + opacity 200ms; + } + + .p-toast-message[data-swiping] { + transition: none; + transform: translateX(var(--px-offset-x)) translateY(var(--px-offset-y)) !important; + } + + .p-toast-message[data-swiped] { + -webkit-user-select: none; + user-select: none; + } + + .p-toast-message[data-swipe-out][data-swipe-direction="up"] { + opacity: 0; + transform: translateX(var(--px-offset-x)) translateY(calc(var(--px-offset-y) - 100%)) !important; + } + + .p-toast-message[data-swipe-out][data-swipe-direction="down"] { + opacity: 0; + transform: translateX(var(--px-offset-x)) translateY(calc(var(--px-offset-y) + 100%)) !important; + } + + .p-toast-message[data-swipe-out][data-swipe-direction="left"] { + opacity: 0; + transform: translateX(calc(var(--px-offset-x) - 100%)) translateY(var(--px-offset-y)) !important; + } + + .p-toast-message[data-swipe-out][data-swipe-direction="right"] { + opacity: 0; + transform: translateX(calc(var(--px-offset-x) + 100%)) translateY(var(--px-offset-y)) !important; + transition: + transform 500ms, + opacity 200ms; + } + + .p-toast-message-icon, + .p-toast-message-icon svg, + .p-toast-message-icon i { + flex-shrink: 0; + font-size: dt('toast.icon.size'); + width: dt('toast.icon.size'); + height: dt('toast.icon.size'); + margin: dt('toast.icon.margin'); + } + + .p-toast-message-content { + display: flex; + align-items: flex-start; + padding: dt('toast.content.padding'); + gap: dt('toast.content.gap'); + min-height: 0; + overflow: hidden; + transition: padding 250ms ease-in; + } + + .p-toast-message-text { + flex: 1 1 auto; + display: flex; + flex-direction: column; + gap: dt('toast.text.gap'); + } + + .p-toast-summary { + font-weight: dt('toast.summary.font.weight'); + font-size: dt('toast.summary.font.size'); + } + + .p-toast-detail { + font-weight: dt('toast.detail.font.weight'); + font-size: dt('toast.detail.font.size'); + } + + .p-toast-close-button { + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; + position: absolute; + cursor: pointer; + background: transparent; + transition: + background dt('toast.transition.duration'), + color dt('toast.transition.duration'), + outline-color dt('toast.transition.duration'), + box-shadow dt('toast.transition.duration'); + outline-color: transparent; + color: inherit; + width: dt('toast.close.button.width'); + height: dt('toast.close.button.height'); + border-radius: dt('toast.close.button.border.radius'); + margin: 0; + top: 0.25rem; + right: 0.25rem; + padding: 0; + border: none; + user-select: none; + } + + .p-toast-close-button:dir(rtl) { + left: 0.25rem; + right: auto; + } + + .p-toast-message-normal, + .p-toast-message-info, + .p-toast-message-success, + .p-toast-message-warn, + .p-toast-message-error, + .p-toast-message-secondary, + .p-toast-message-contrast { + border-width: dt('toast.border.width'); + border-style: solid; + backdrop-filter: blur(dt('toast.blur')); + border-radius: dt('toast.border.radius'); + } + + .p-toast-close-icon, + .p-toast-close-icon svg, + .p-toast-close-icon i { + font-size: dt('toast.close.icon.size'); + width: dt('toast.close.icon.size'); + height: dt('toast.close.icon.size'); + } + + .p-toast-close-button:focus-visible { + outline-width: dt('focus.ring.width'); + outline-style: dt('focus.ring.style'); + outline-offset: dt('focus.ring.offset'); + } + + .p-toast-message-normal { + background: dt('toast.normal.background'); + border-color: dt('toast.normal.border.color'); + color: dt('toast.normal.color'); + box-shadow: dt('toast.normal.shadow'); + } + + .p-toast-message-normal .p-toast-detail { + color: dt('toast.normal.detail.color'); + } + + .p-toast-message-normal .p-toast-close-button:focus-visible { + outline-color: dt('toast.normal.close.button.focus.ring.color'); + box-shadow: dt('toast.normal.close.button.focus.ring.shadow'); + } + + .p-toast-message-normal .p-toast-close-button:hover { + background: dt('toast.normal.close.button.hover.background'); + } + + .p-toast-message-info { + background: dt('toast.info.background'); + border-color: dt('toast.info.border.color'); + color: dt('toast.info.color'); + box-shadow: dt('toast.info.shadow'); + } + + .p-toast-message-info .p-toast-detail { + color: dt('toast.info.detail.color'); + } + + .p-toast-message-info .p-toast-close-button:focus-visible { + outline-color: dt('toast.info.close.button.focus.ring.color'); + box-shadow: dt('toast.info.close.button.focus.ring.shadow'); + } + + .p-toast-message-info .p-toast-close-button:hover { + background: dt('toast.info.close.button.hover.background'); + } + + .p-toast-message-success { + background: dt('toast.success.background'); + border-color: dt('toast.success.border.color'); + color: dt('toast.success.color'); + box-shadow: dt('toast.success.shadow'); + } + + .p-toast-message-success .p-toast-detail { + color: dt('toast.success.detail.color'); + } + + .p-toast-message-success .p-toast-close-button:focus-visible { + outline-color: dt('toast.success.close.button.focus.ring.color'); + box-shadow: dt('toast.success.close.button.focus.ring.shadow'); + } + + .p-toast-message-success .p-toast-close-button:hover { + background: dt('toast.success.close.button.hover.background'); + } + + .p-toast-message-warn { + background: dt('toast.warn.background'); + border-color: dt('toast.warn.border.color'); + color: dt('toast.warn.color'); + box-shadow: dt('toast.warn.shadow'); + } + + .p-toast-message-warn .p-toast-detail { + color: dt('toast.warn.detail.color'); + } + + .p-toast-message-warn .p-toast-close-button:focus-visible { + outline-color: dt('toast.warn.close.button.focus.ring.color'); + box-shadow: dt('toast.warn.close.button.focus.ring.shadow'); + } + + .p-toast-message-warn .p-toast-close-button:hover { + background: dt('toast.warn.close.button.hover.background'); + } + + .p-toast-message-error { + background: dt('toast.error.background'); + border-color: dt('toast.error.border.color'); + color: dt('toast.error.color'); + box-shadow: dt('toast.error.shadow'); + } + + .p-toast-message-error .p-toast-detail { + color: dt('toast.error.detail.color'); + } + + .p-toast-message-error .p-toast-close-button:focus-visible { + outline-color: dt('toast.error.close.button.focus.ring.color'); + box-shadow: dt('toast.error.close.button.focus.ring.shadow'); + } + + .p-toast-message-error .p-toast-close-button:hover { + background: dt('toast.error.close.button.hover.background'); + } + + .p-toast-message-secondary { + background: dt('toast.secondary.background'); + border-color: dt('toast.secondary.border.color'); + color: dt('toast.secondary.color'); + box-shadow: dt('toast.secondary.shadow'); + } + + .p-toast-message-secondary .p-toast-detail { + color: dt('toast.secondary.detail.color'); + } + + .p-toast-message-secondary .p-toast-close-button:focus-visible { + outline-color: dt('toast.secondary.close.button.focus.ring.color'); + box-shadow: dt('toast.secondary.close.button.focus.ring.shadow'); + } + + .p-toast-message-secondary .p-toast-close-button:hover { + background: dt('toast.secondary.close.button.hover.background'); + } + + .p-toast-message-contrast { + background: dt('toast.contrast.background'); + border-color: dt('toast.contrast.border.color'); + color: dt('toast.contrast.color'); + box-shadow: dt('toast.contrast.shadow'); + } + + .p-toast-message-contrast .p-toast-detail { + color: dt('toast.contrast.detail.color'); + } + + .p-toast-message-contrast .p-toast-close-button:focus-visible { + outline-color: dt('toast.contrast.close.button.focus.ring.color'); + box-shadow: dt('toast.contrast.close.button.focus.ring.shadow'); + } + + .p-toast-message-contrast .p-toast-close-button:hover { + background: dt('toast.contrast.close.button.hover.background'); + } + + .p-toast { + position: fixed; + width: 18.75rem; + z-index: 2000; + } + + .p-toast-center { + left: 50%; + transform: translateX(-50%) translateY(-50%); + top: 50%; + } + + .p-toast-bottom-right { + right: 2rem; + bottom: 2rem; + } + + .p-toast-bottom-center { + bottom: 2rem; + left: 50%; + transform: translateX(-50%); + } + + .p-toast-bottom-left { + left: 2rem; + bottom: 2rem; + } + + .p-toast-top-right { + right: 2rem; + top: 2rem; + } + + .p-toast-top-center { + left: 50%; + transform: translateX(-50%); + top: 2rem; + } + + .p-toast-top-left { + left: 2rem; + top: 2rem; + } + + .p-toast-bottom-right .p-toast-message{ + --px-raise-factor: -1; + bottom: 0; + right: 0; + } + + .p-toast-bottom-center .p-toast-message{ + --px-raise-factor: -1; + bottom: 0; + } + + .p-toast[data-position="bottom-left"] .p-toast-message{ + --px-raise-factor: -1; + bottom: 0; + left: 0; + } + + .p-toast[data-position="top-right"] .p-toast-message{ + --px-raise-factor: 1; + top: 0; + right: 0; + } + + .p-toast[data-position="top-center"] .p-toast-message{ + --px-raise-factor: 1; + top: 0; + } + + .p-toast[data-position="top-left"] .p-toast-message{ + --px-raise-factor: 1; + top: 0; + left: 0; + } + + .p-toast[data-position="center"] .p-toast-message{ + --px-raise-factor: 1; + top: 0; + } +`;var ro={"address-book":()=>import('./chunk-CYM_wo41.js').then(t=>t.addressBook),"align-center":()=>import('./chunk-CXC50BBV.js').then(t=>t.alignCenter),"align-justify":()=>import('./chunk-Dhir-ebt.js').then(t=>t.alignJustify),"align-left":()=>import('./chunk-DiZQ-0PM.js').then(t=>t.alignLeft),"align-right":()=>import('./chunk-C_gvazXp.js').then(t=>t.alignRight),amazon:()=>import('./chunk-CKd1xF6Q.js').then(t=>t.amazon),android:()=>import('./chunk-B1Fg5m07.js').then(t=>t.android),"angle-double-down":()=>import('./chunk-DUfH9fvd.js').then(t=>t.angleDoubleDown),"angle-double-left":()=>Promise.resolve().then(function(){return chunkLHX5JTEI}).then(t=>t.angleDoubleLeft),"angle-double-right":()=>Promise.resolve().then(function(){return chunkFXBNLRYR}).then(t=>t.angleDoubleRight),"angle-double-up":()=>import('./chunk-n8HB7Wcb.js').then(t=>t.angleDoubleUp),"angle-down":()=>Promise.resolve().then(function(){return chunkVLDSKJMQ}).then(t=>t.angleDown),"angle-left":()=>Promise.resolve().then(function(){return chunkAU2VBYH5}).then(t=>t.angleLeft),"angle-right":()=>Promise.resolve().then(function(){return chunkMELZM5H5}).then(t=>t.angleRight),"angle-up":()=>Promise.resolve().then(function(){return chunkIBX6KQOS}).then(t=>t.angleUp),apple:()=>import('./chunk-ZOeRqZOs.js').then(t=>t.apple),"arrow-circle-down":()=>import('./chunk-D-ERgB9i.js').then(t=>t.arrowCircleDown),"arrow-circle-left":()=>import('./chunk-Kg0ZcSF7.js').then(t=>t.arrowCircleLeft),"arrow-circle-right":()=>import('./chunk-DT4TZFr-.js').then(t=>t.arrowCircleRight),"arrow-circle-up":()=>import('./chunk-LsVw3xBU.js').then(t=>t.arrowCircleUp),"arrow-down-left-and-arrow-up-right-to-center":()=>import('./chunk-CMjDv-CI.js').then(t=>t.arrowDownLeftAndArrowUpRightToCenter),"arrow-down-left":()=>import('./chunk-D3cSrslD.js').then(t=>t.arrowDownLeft),"arrow-down-right":()=>import('./chunk-VfxUxs1J.js').then(t=>t.arrowDownRight),"arrow-down":()=>Promise.resolve().then(function(){return chunk5DM6NLVR}).then(t=>t.arrowDown),"arrow-left":()=>import('./chunk-C1HAnR8M.js').then(t=>t.arrowLeft),"arrow-right-arrow-left":()=>import('./chunk-CW4oHvvn.js').then(t=>t.arrowRightArrowLeft),"arrow-right":()=>import('./chunk-CsY8qFwP.js').then(t=>t.arrowRight),"arrow-u-turn-up-left":()=>import('./chunk-olXo5TuC.js').then(t=>t.arrowUTurnUpLeft),"arrow-u-turn-up-right":()=>import('./chunk-B7BL3zbf.js').then(t=>t.arrowUTurnUpRight),"arrow-up-left":()=>import('./chunk-_fgp-_Im.js').then(t=>t.arrowUpLeft),"arrow-up-right-and-arrow-down-left-from-center":()=>import('./chunk-Cwvd_1TK.js').then(t=>t.arrowUpRightAndArrowDownLeftFromCenter),"arrow-up-right":()=>import('./chunk-CqvXs5Pn.js').then(t=>t.arrowUpRight),"arrow-up":()=>Promise.resolve().then(function(){return chunkXIABKHYL}).then(t=>t.arrowUp),"arrows-alt":()=>import('./chunk-CSjcPLJv.js').then(t=>t.arrowsAlt),"arrows-h":()=>import('./chunk-DCbCdtHO.js').then(t=>t.arrowsH),"arrows-v":()=>import('./chunk-Bid0rLxv.js').then(t=>t.arrowsV),asterisk:()=>import('./chunk-CMaAFeKd.js').then(t=>t.asterisk),at:()=>import('./chunk-0CpHZmKW.js').then(t=>t.at),backward:()=>import('./chunk-DRmVYy8_.js').then(t=>t.backward),ban:()=>import('./chunk-Bf6h-MYj.js').then(t=>t.ban),barcode:()=>import('./chunk-DTxLHHml.js').then(t=>t.barcode),bars:()=>Promise.resolve().then(function(){return chunkXPWMSYKK}).then(t=>t.bars),"bell-slash":()=>import('./chunk-DIHtQ23D.js').then(t=>t.bellSlash),bell:()=>import('./chunk-Di_IuTXY.js').then(t=>t.bell),bitcoin:()=>import('./chunk-Df2sZbt9.js').then(t=>t.bitcoin),blank:()=>Promise.resolve().then(function(){return chunkQLXOUPAK}).then(t=>t.blank),"block-quote":()=>import('./chunk-D0KWT5vs.js').then(t=>t.blockQuote),bold:()=>import('./chunk-C3sucAnF.js').then(t=>t.bold),bolt:()=>import('./chunk-BMjBqw4k.js').then(t=>t.bolt),book:()=>import('./chunk-Cy69gECC.js').then(t=>t.book),"bookmark-fill":()=>import('./chunk-VvX1PNil.js').then(t=>t.bookmarkFill),bookmark:()=>import('./chunk-DGyB-2eO.js').then(t=>t.bookmark),box:()=>import('./chunk-MjXr93-B.js').then(t=>t.box),briefcase:()=>import('./chunk-CMIRZ0nJ.js').then(t=>t.briefcase),"building-columns":()=>import('./chunk-guzEECZJ.js').then(t=>t.buildingColumns),building:()=>import('./chunk-BdOmJGRT.js').then(t=>t.building),bullseye:()=>import('./chunk-DsRk4CXB.js').then(t=>t.bullseye),calculator:()=>import('./chunk-CpycRTiG.js').then(t=>t.calculator),"calendar-clock":()=>import('./chunk-BwcvZgHZ.js').then(t=>t.calendarClock),"calendar-minus":()=>import('./chunk-C4Y6Nmaz.js').then(t=>t.calendarMinus),"calendar-plus":()=>import('./chunk-C-8g8p0O.js').then(t=>t.calendarPlus),"calendar-times":()=>import('./chunk-C1L8mJC5.js').then(t=>t.calendarTimes),calendar:()=>Promise.resolve().then(function(){return chunk4OUND4N4}).then(t=>t.calendar),camera:()=>import('./chunk-CKu-OKr8.js').then(t=>t.camera),car:()=>import('./chunk-DhUq_2MX.js').then(t=>t.car),"caret-down":()=>import('./chunk-CK3HzLAP.js').then(t=>t.caretDown),"caret-left":()=>import('./chunk-BMt4SNF3.js').then(t=>t.caretLeft),"caret-right":()=>import('./chunk-JTJMG7yd.js').then(t=>t.caretRight),"caret-up":()=>import('./chunk-B2TUx5gh.js').then(t=>t.caretUp),"cart-arrow-down":()=>import('./chunk-CAkA4Jav.js').then(t=>t.cartArrowDown),"cart-minus":()=>import('./chunk-BUv4TMSF.js').then(t=>t.cartMinus),"cart-plus":()=>import('./chunk-fdVMa7yg.js').then(t=>t.cartPlus),"case-sensitive":()=>import('./chunk-DmUWMOMy.js').then(t=>t.caseSensitive),"chart-bar":()=>import('./chunk-FjNu0xvy.js').then(t=>t.chartBar),"chart-line":()=>import('./chunk-LvUwGmc5.js').then(t=>t.chartLine),"chart-pie":()=>import('./chunk-BiI0OCvF.js').then(t=>t.chartPie),"chart-scatter":()=>import('./chunk-Bd92eCxz.js').then(t=>t.chartScatter),"check-circle":()=>import('./chunk-CzJQMox7.js').then(t=>t.checkCircle),"check-square":()=>import('./chunk-XZxkDu_O.js').then(t=>t.checkSquare),check:()=>Promise.resolve().then(function(){return chunkHPX7ZEWF}).then(t=>t.check),"chevron-circle-down":()=>import('./chunk-Ct3VDrkk.js').then(t=>t.chevronCircleDown),"chevron-circle-left":()=>import('./chunk-V7rQGa3P.js').then(t=>t.chevronCircleLeft),"chevron-circle-right":()=>import('./chunk-D1A2XyU2.js').then(t=>t.chevronCircleRight),"chevron-circle-up":()=>import('./chunk-ScKTfEtG.js').then(t=>t.chevronCircleUp),"chevron-down":()=>Promise.resolve().then(function(){return chunk4OZRW7SA}).then(t=>t.chevronDown),"chevron-left":()=>Promise.resolve().then(function(){return chunkR7E2IGWX}).then(t=>t.chevronLeft),"chevron-right":()=>Promise.resolve().then(function(){return chunkFA6BND6Z}).then(t=>t.chevronRight),"chevron-up":()=>Promise.resolve().then(function(){return chunkA2B43NV3}).then(t=>t.chevronUp),"circle-fill":()=>import('./chunk-DXGqBaiV.js').then(t=>t.circleFill),circle:()=>import('./chunk-B32pMA-x.js').then(t=>t.circle),clipboard:()=>import('./chunk-uQBNLG_e.js').then(t=>t.clipboard),clock:()=>import('./chunk-DxNlnnsq.js').then(t=>t.clock),clone:()=>import('./chunk-Dojkp9iH.js').then(t=>t.clone),"cloud-download":()=>import('./chunk-CtiF6_BF.js').then(t=>t.cloudDownload),"cloud-upload":()=>import('./chunk-quxW84_w.js').then(t=>t.cloudUpload),cloud:()=>import('./chunk-wW_i9q99.js').then(t=>t.cloud),"code-branch":()=>import('./chunk-CVWfWsz_.js').then(t=>t.codeBranch),code:()=>import('./chunk--N7TDTLb.js').then(t=>t.code),cog:()=>import('./chunk-2j1JVK7Q.js').then(t=>t.cog),"columns-2":()=>import('./chunk-Dz1uAcbR.js').then(t=>t.columns2),comment:()=>import('./chunk-rTvoLk5q.js').then(t=>t.comment),comments:()=>import('./chunk-BdBzonGf.js').then(t=>t.comments),compass:()=>import('./chunk-fdepd8SS.js').then(t=>t.compass),compress:()=>import('./chunk-DIayUssK.js').then(t=>t.compress),copy:()=>import('./chunk-BiY_D0pV.js').then(t=>t.copy),"credit-card":()=>import('./chunk-VNIMy3Ze.js').then(t=>t.creditCard),crown:()=>import('./chunk-vwgC7zu4.js').then(t=>t.crown),database:()=>import('./chunk-VY-KOt6k.js').then(t=>t.database),"delete-left":()=>import('./chunk-ezNq0ua9.js').then(t=>t.deleteLeft),desktop:()=>import('./chunk-sPh8c7xs.js').then(t=>t.desktop),"directions-alt":()=>import('./chunk-D5jzwqjX.js').then(t=>t.directionsAlt),directions:()=>import('./chunk-DZp8fP-w.js').then(t=>t.directions),discord:()=>import('./chunk-CMXNn6fK.js').then(t=>t.discord),dollar:()=>import('./chunk-BC8lBI2r.js').then(t=>t.dollar),dot:()=>import('./chunk-BQfQemsJ.js').then(t=>t.dot),download:()=>import('./chunk-eJsK3p_u.js').then(t=>t.download),eject:()=>import('./chunk-DTLwgzmg.js').then(t=>t.eject),"ellipsis-h":()=>import('./chunk-CNhspLoj.js').then(t=>t.ellipsisH),"ellipsis-v":()=>import('./chunk-0g2a9Jlq.js').then(t=>t.ellipsisV),envelope:()=>import('./chunk-CjjZoW6P.js').then(t=>t.envelope),equals:()=>import('./chunk-BeHgAqHM.js').then(t=>t.equals),eraser:()=>import('./chunk-B6e7dF8L.js').then(t=>t.eraser),ethereum:()=>import('./chunk-C9MZNswu.js').then(t=>t.ethereum),euro:()=>import('./chunk-C4lgb4Kh.js').then(t=>t.euro),"exclamation-circle":()=>import('./chunk-lMIyKq5U.js').then(t=>t.exclamationCircle),"exclamation-triangle":()=>import('./chunk-0x3m7KuF.js').then(t=>t.exclamationTriangle),expand:()=>import('./chunk-B4IpSLza.js').then(t=>t.expand),"external-link":()=>import('./chunk-SOsl03hG.js').then(t=>t.externalLink),"eye-dropper":()=>import('./chunk-C5_Z_5cM.js').then(t=>t.eyeDropper),"eye-slash":()=>import('./chunk-BYlnnID-.js').then(t=>t.eyeSlash),eye:()=>import('./chunk-DqmIZI_F.js').then(t=>t.eye),"face-smile":()=>import('./chunk-Dx-iC3qp.js').then(t=>t.faceSmile),facebook:()=>import('./chunk-Dtbj3FiL.js').then(t=>t.facebook),"fast-backward":()=>import('./chunk-CaGZEDh5.js').then(t=>t.fastBackward),"fast-forward":()=>import('./chunk-BGa60lkb.js').then(t=>t.fastForward),"file-arrow-up":()=>import('./chunk-GENJAxyD.js').then(t=>t.fileArrowUp),"file-check":()=>import('./chunk-JfIAHQHT.js').then(t=>t.fileCheck),"file-edit":()=>import('./chunk-TBs5TgSJ.js').then(t=>t.fileEdit),"file-excel":()=>import('./chunk-QKeHKMlu.js').then(t=>t.fileExcel),"file-export":()=>import('./chunk-Cyy7jTkC.js').then(t=>t.fileExport),"file-import":()=>import('./chunk-lXZAXOGo.js').then(t=>t.fileImport),"file-o":()=>import('./chunk-0u1HFdKh.js').then(t=>t.fileO),"file-pdf":()=>import('./chunk-CtQR2CoU.js').then(t=>t.filePdf),"file-plus":()=>import('./chunk-DVnGGRAh.js').then(t=>t.filePlus),"file-word":()=>import('./chunk-CX-xfH5L.js').then(t=>t.fileWord),file:()=>import('./chunk-BgXspcqu.js').then(t=>t.file),"filter-fill":()=>Promise.resolve().then(function(){return chunkVCWOSUJK}).then(t=>t.filterFill),"filter-slash":()=>import('./chunk-BvE4mVBA.js').then(t=>t.filterSlash),filter:()=>Promise.resolve().then(function(){return chunkDTHZPJHA}).then(t=>t.filter),"flag-fill":()=>import('./chunk-CwqXFDqP.js').then(t=>t.flagFill),flag:()=>import('./chunk-BCCfqxL2.js').then(t=>t.flag),"folder-open":()=>import('./chunk-B9TmWO65.js').then(t=>t.folderOpen),"folder-plus":()=>import('./chunk-HGJwmHfV.js').then(t=>t.folderPlus),folder:()=>import('./chunk-C7S9pDCz.js').then(t=>t.folder),forward:()=>import('./chunk-DVS8TMQt.js').then(t=>t.forward),gauge:()=>import('./chunk-DRIsWFeJ.js').then(t=>t.gauge),gift:()=>import('./chunk-Cw1YnIrA.js').then(t=>t.gift),github:()=>import('./chunk-BvRYcbeE.js').then(t=>t.github),globe:()=>import('./chunk-0M221H8F.js').then(t=>t.globe),google:()=>import('./chunk-DnFqwJx2.js').then(t=>t.google),"graduation-cap":()=>import('./chunk-BqboFAtO.js').then(t=>t.graduationCap),"grid-2":()=>import('./chunk-CVkqnXWK.js').then(t=>t.grid2),"grip-horizontal":()=>import('./chunk-DK9kBcCb.js').then(t=>t.gripHorizontal),"grip-vertical":()=>import('./chunk-SwTArhR9.js').then(t=>t.gripVertical),grip:()=>import('./chunk-DZNgYM7V.js').then(t=>t.grip),hammer:()=>import('./chunk-BQPXz2ow.js').then(t=>t.hammer),hashtag:()=>import('./chunk-C0hWobdV.js').then(t=>t.hashtag),"heading-1":()=>import('./chunk-rukkHJqF.js').then(t=>t.heading1),"heading-2":()=>import('./chunk-DdNGDl7X.js').then(t=>t.heading2),"heading-3":()=>import('./chunk-D9BfBlaE.js').then(t=>t.heading3),"heading-4":()=>import('./chunk-BXxllqxh.js').then(t=>t.heading4),"heading-5":()=>import('./chunk-gdakxr4X.js').then(t=>t.heading5),"heading-6":()=>import('./chunk-BHmq3J-Z.js').then(t=>t.heading6),heading:()=>import('./chunk-BwUVHSLd.js').then(t=>t.heading),headphones:()=>import('./chunk-C6JmmVH1.js').then(t=>t.headphones),"heart-fill":()=>import('./chunk-DwGN56fM.js').then(t=>t.heartFill),heart:()=>import('./chunk-BGL7AhjT.js').then(t=>t.heart),highlighter:()=>import('./chunk-xXJ24mOD.js').then(t=>t.highlighter),history:()=>import('./chunk-CWgO16Vu.js').then(t=>t.history),home:()=>import('./chunk-XA_3gkgl.js').then(t=>t.home),"horizontal-rule":()=>import('./chunk-CguDLXJM.js').then(t=>t.horizontalRule),hourglass:()=>import('./chunk-B4g_nH4g.js').then(t=>t.hourglass),"id-card":()=>import('./chunk-BFHBmffg.js').then(t=>t.idCard),image:()=>import('./chunk-CDQKZBpH.js').then(t=>t.image),images:()=>import('./chunk-viad0BuU.js').then(t=>t.images),inbox:()=>import('./chunk-DoP3jJhb.js').then(t=>t.inbox),indent:()=>import('./chunk-DWAiXvg2.js').then(t=>t.indent),"indian-rupee":()=>import('./chunk-65-R5k0e.js').then(t=>t.indianRupee),"info-circle":()=>import('./chunk-CAQ2W4Ck.js').then(t=>t.infoCircle),info:()=>import('./chunk-D4IZNX_N.js').then(t=>t.info),instagram:()=>import('./chunk-B_vEGFq_.js').then(t=>t.instagram),italic:()=>import('./chunk-BFLYyYKm.js').then(t=>t.italic),key:()=>import('./chunk-B9Vc_lY6.js').then(t=>t.key),language:()=>import('./chunk-CmhdJqvT.js').then(t=>t.language),lightbulb:()=>import('./chunk-T-_fYD-A.js').then(t=>t.lightbulb),link:()=>import('./chunk-Dbnmmimc.js').then(t=>t.link),linkedin:()=>import('./chunk-DcNGgCqF.js').then(t=>t.linkedin),"list-check":()=>import('./chunk-Da-vA3yJ.js').then(t=>t.listCheck),"list-ol":()=>import('./chunk-CHFb1sNc.js').then(t=>t.listOl),"list-tree":()=>import('./chunk-BHSiIEz-.js').then(t=>t.listTree),list:()=>import('./chunk-D_ddgeG2.js').then(t=>t.list),"lock-open":()=>import('./chunk-CgFYbIID.js').then(t=>t.lockOpen),lock:()=>import('./chunk-BjStHNJA.js').then(t=>t.lock),"map-marker":()=>import('./chunk-DUlO0Koz.js').then(t=>t.mapMarker),map:()=>import('./chunk-DTbbzIa5.js').then(t=>t.map),mars:()=>import('./chunk-BGJhCZji.js').then(t=>t.mars),megaphone:()=>import('./chunk-DIttLeyh.js').then(t=>t.megaphone),"microchip-ai":()=>import('./chunk-DrAthvAC.js').then(t=>t.microchipAi),microchip:()=>import('./chunk-BMJo6CoG.js').then(t=>t.microchip),microphone:()=>import('./chunk-D_PbJFgi.js').then(t=>t.microphone),microsoft:()=>import('./chunk-atguE-R9.js').then(t=>t.microsoft),"minus-circle":()=>import('./chunk-DxAgYNcA.js').then(t=>t.minusCircle),minus:()=>Promise.resolve().then(function(){return chunkCMFLPNUQ}).then(t=>t.minus),mobile:()=>import('./chunk-C-ZnT4I5.js').then(t=>t.mobile),"money-bill":()=>import('./chunk-nO-6-QS7.js').then(t=>t.moneyBill),moon:()=>import('./chunk-JTYJStvu.js').then(t=>t.moon),"note-sticky":()=>import('./chunk-BrWkzAmi.js').then(t=>t.noteSticky),"objects-column":()=>import('./chunk-BGQsA6xm.js').then(t=>t.objectsColumn),outdent:()=>import('./chunk-DeW7FRwx.js').then(t=>t.outdent),palette:()=>import('./chunk-DD7AbCVk.js').then(t=>t.palette),paperclip:()=>import('./chunk-kkZhZGQs.js').then(t=>t.paperclip),"paragraph-left":()=>import('./chunk-CG8Y9LBo.js').then(t=>t.paragraphLeft),"paragraph-right":()=>import('./chunk-DjJUno24.js').then(t=>t.paragraphRight),"pause-circle":()=>import('./chunk-BNZ57oy-.js').then(t=>t.pauseCircle),pause:()=>import('./chunk-B4QFVk3n.js').then(t=>t.pause),paypal:()=>import('./chunk-DGPYjotC.js').then(t=>t.paypal),"pen-line":()=>import('./chunk-DR5yziHU.js').then(t=>t.penLine),"pen-to-square":()=>import('./chunk-CACXmwDo.js').then(t=>t.penToSquare),pencil:()=>import('./chunk-D-Sc8v8N.js').then(t=>t.pencil),percentage:()=>import('./chunk-_V3n7xDN.js').then(t=>t.percentage),phone:()=>import('./chunk-DHvCdaeq.js').then(t=>t.phone),pinterest:()=>import('./chunk-D8yqOHRF.js').then(t=>t.pinterest),"play-circle":()=>import('./chunk-Bivg4anJ.js').then(t=>t.playCircle),play:()=>import('./chunk-C3SoKzdM.js').then(t=>t.play),"plus-circle":()=>import('./chunk-Cz4rCPi7.js').then(t=>t.plusCircle),plus:()=>Promise.resolve().then(function(){return chunkSTHBIG2B}).then(t=>t.plus),pound:()=>import('./chunk-Cll8LZqw.js').then(t=>t.pound),"power-off":()=>import('./chunk-Mo5qeugm.js').then(t=>t.powerOff),prime:()=>import('./chunk-DDRLP5vJ.js').then(t=>t.prime),print:()=>import('./chunk-C2rOUNbT.js').then(t=>t.print),qrcode:()=>import('./chunk-kuD6LHz5.js').then(t=>t.qrcode),"question-circle":()=>import('./chunk-gbvE5VLF.js').then(t=>t.questionCircle),question:()=>import('./chunk-CZ6NLRQ2.js').then(t=>t.question),receipt:()=>import('./chunk-8XukwsUq.js').then(t=>t.receipt),"rectangle-xmark":()=>import('./chunk-D6BGiQpf.js').then(t=>t.rectangleXmark),reddit:()=>import('./chunk-DBEDHHpy.js').then(t=>t.reddit),refresh:()=>import('./chunk-Cd3_n9AN.js').then(t=>t.refresh),replay:()=>import('./chunk-DyjsVo0K.js').then(t=>t.replay),reply:()=>import('./chunk-CwsZvoEy.js').then(t=>t.reply),"rows-2":()=>import('./chunk-CCzM2oTx.js').then(t=>t.rows2),save:()=>import('./chunk-5BNEAk67.js').then(t=>t.save),"search-minus":()=>import('./chunk-C71VW9ix.js').then(t=>t.searchMinus),"search-plus":()=>import('./chunk-x0V2gKiO.js').then(t=>t.searchPlus),search:()=>Promise.resolve().then(function(){return chunkYFZFGC5I}).then(t=>t.search),send:()=>import('./chunk-RlVQ9Dv5.js').then(t=>t.send),server:()=>import('./chunk-DpCzRGKD.js').then(t=>t.server),"share-alt":()=>import('./chunk-DOvfNwit.js').then(t=>t.shareAlt),shield:()=>import('./chunk-ByNlNAoF.js').then(t=>t.shield),shop:()=>import('./chunk-D9YZkVt8.js').then(t=>t.shop),"shopping-bag":()=>import('./chunk-ChmAuL4M.js').then(t=>t.shoppingBag),"shopping-cart":()=>import('./chunk-DEk7Xv17.js').then(t=>t.shoppingCart),sidebar:()=>import('./chunk-DzyHNRwy.js').then(t=>t.sidebar),"sign-in":()=>import('./chunk-cd5BPHHE.js').then(t=>t.signIn),"sign-out":()=>import('./chunk-D9DC4dfy.js').then(t=>t.signOut),signature:()=>import('./chunk-CMDwvy6C.js').then(t=>t.signature),sitemap:()=>import('./chunk-DJQmKxlw.js').then(t=>t.sitemap),slack:()=>import('./chunk-B1zpbnxk.js').then(t=>t.slack),slash:()=>import('./chunk-CJypuhm-.js').then(t=>t.slash),"sliders-h":()=>import('./chunk-CneK9XIV.js').then(t=>t.slidersH),"sliders-v":()=>import('./chunk-BnC2V6PB.js').then(t=>t.slidersV),"sort-alpha-down-alt":()=>import('./chunk-BvC4w5r3.js').then(t=>t.sortAlphaDownAlt),"sort-alpha-down":()=>import('./chunk-DhmztRen.js').then(t=>t.sortAlphaDown),"sort-alpha-up-alt":()=>import('./chunk-Dfq4aNrh.js').then(t=>t.sortAlphaUpAlt),"sort-alpha-up":()=>import('./chunk-BFHotWUx.js').then(t=>t.sortAlphaUp),"sort-alt-slash":()=>import('./chunk-D1A1UaQM.js').then(t=>t.sortAltSlash),"sort-alt":()=>Promise.resolve().then(function(){return chunkOMOCQTHI}).then(t=>t.sortAlt),"sort-amount-down-alt":()=>import('./chunk-D2bnwAae.js').then(t=>t.sortAmountDownAlt),"sort-amount-down":()=>Promise.resolve().then(function(){return chunkB6BTKI2D}).then(t=>t.sortAmountDown),"sort-amount-up-alt":()=>Promise.resolve().then(function(){return chunkLDTHEJWZ}).then(t=>t.sortAmountUpAlt),"sort-amount-up":()=>import('./chunk-DcV3wrkk.js').then(t=>t.sortAmountUp),"sort-down-fill":()=>import('./chunk-XOZrc7dX.js').then(t=>t.sortDownFill),"sort-down":()=>import('./chunk-CRi0OPFY.js').then(t=>t.sortDown),"sort-numeric-down-alt":()=>import('./chunk-DF0TkW10.js').then(t=>t.sortNumericDownAlt),"sort-numeric-down":()=>import('./chunk-BIhv3LFO.js').then(t=>t.sortNumericDown),"sort-numeric-up-alt":()=>import('./chunk-Dy49cLcH.js').then(t=>t.sortNumericUpAlt),"sort-numeric-up":()=>import('./chunk-D3cDykbq.js').then(t=>t.sortNumericUp),"sort-up-fill":()=>import('./chunk-B7xoC2Vs.js').then(t=>t.sortUpFill),"sort-up":()=>import('./chunk-Drt6OBoJ.js').then(t=>t.sortUp),sort:()=>import('./chunk-D056fGk8.js').then(t=>t.sort),sparkles:()=>import('./chunk-CLGfo1mj.js').then(t=>t.sparkles),"spinner-dotted":()=>import('./chunk-BeIwkcK6.js').then(t=>t.spinnerDotted),spinner:()=>Promise.resolve().then(function(){return chunkHWXNQUFY}).then(t=>t.spinner),square:()=>import('./chunk-DSu3N7bJ.js').then(t=>t.square),stamp:()=>import('./chunk-Dlsc2WSQ.js').then(t=>t.stamp),"star-fill":()=>import('./chunk-DNm3PJ9z.js').then(t=>t.starFill),"star-half-fill":()=>import('./chunk-B87MtNIR.js').then(t=>t.starHalfFill),"star-half":()=>import('./chunk-UF4Lczch.js').then(t=>t.starHalf),star:()=>import('./chunk-DeVIs9-9.js').then(t=>t.star),"step-backward-alt":()=>import('./chunk-Djkve6Lz.js').then(t=>t.stepBackwardAlt),"step-backward":()=>import('./chunk-DgUVX8lF.js').then(t=>t.stepBackward),"step-forward-alt":()=>import('./chunk-D3HZA0mb.js').then(t=>t.stepForwardAlt),"step-forward":()=>import('./chunk-CLQ3kvhm.js').then(t=>t.stepForward),"stop-circle":()=>import('./chunk-hV2xIBFh.js').then(t=>t.stopCircle),stop:()=>import('./chunk-JhQNSD5G.js').then(t=>t.stop),stopwatch:()=>import('./chunk-C8xAjk-l.js').then(t=>t.stopwatch),strikethrough:()=>import('./chunk-D0aBm9Pk.js').then(t=>t.strikethrough),subscript:()=>import('./chunk-5LcnwngY.js').then(t=>t.subscript),sun:()=>import('./chunk-DOKMSt6T.js').then(t=>t.sun),superscript:()=>import('./chunk-xdujflxH.js').then(t=>t.superscript),sync:()=>import('./chunk-BCve8E0Y.js').then(t=>t.sync),table:()=>import('./chunk-D80AK8a3.js').then(t=>t.table),tablet:()=>import('./chunk-DFShI0RF.js').then(t=>t.tablet),tag:()=>import('./chunk-BHhvbblE.js').then(t=>t.tag),tags:()=>import('./chunk-r0_gFg4R.js').then(t=>t.tags),telegram:()=>import('./chunk-APEEp2se.js').then(t=>t.telegram),"text-color":()=>import('./chunk-Ek0JXD_m.js').then(t=>t.textColor),text:()=>import('./chunk-BvLTtEI_.js').then(t=>t.text),"th-large":()=>import('./chunk-BzD-5Uny.js').then(t=>t.thLarge),"thumbs-down-fill":()=>import('./chunk-C3bIvUKi.js').then(t=>t.thumbsDownFill),"thumbs-down":()=>import('./chunk-djEMptga.js').then(t=>t.thumbsDown),"thumbs-up-fill":()=>import('./chunk-0hK2w8Hx.js').then(t=>t.thumbsUpFill),"thumbs-up":()=>import('./chunk-DDWCmmhF.js').then(t=>t.thumbsUp),thumbtack:()=>import('./chunk-B6lZiRFI.js').then(t=>t.thumbtack),ticket:()=>import('./chunk-slt1IJib.js').then(t=>t.ticket),tiktok:()=>import('./chunk-Dc8HEAs0.js').then(t=>t.tiktok),"times-circle":()=>import('./chunk-BcKJx9ih.js').then(t=>t.timesCircle),times:()=>Promise.resolve().then(function(){return chunkD4NY5UYT}).then(t=>t.times),trash:()=>Promise.resolve().then(function(){return chunkAQMWGJOV}).then(t=>t.trash),trophy:()=>import('./chunk-1yWJF10n.js').then(t=>t.trophy),truck:()=>import('./chunk-CTuNXAWt.js').then(t=>t.truck),"turkish-lira":()=>import('./chunk-DNyehYKI.js').then(t=>t.turkishLira),twitch:()=>import('./chunk-DaRui4BO.js').then(t=>t.twitch),twitter:()=>import('./chunk-BV-ol2QB.js').then(t=>t.twitter),underline:()=>import('./chunk-ClbZz2dV.js').then(t=>t.underline),undo:()=>import('./chunk-BTG5G4zd.js').then(t=>t.undo),unlock:()=>import('./chunk-iRP_lGUj.js').then(t=>t.unlock),upload:()=>import('./chunk-DmwkJaUI.js').then(t=>t.upload),"user-edit":()=>import('./chunk-CmIx_tQS.js').then(t=>t.userEdit),"user-minus":()=>import('./chunk-Dwl0dpHf.js').then(t=>t.userMinus),"user-plus":()=>import('./chunk-CYepWBv0.js').then(t=>t.userPlus),user:()=>import('./chunk-Bjbc6xom.js').then(t=>t.user),users:()=>import('./chunk-B35U5OW_.js').then(t=>t.users),venus:()=>import('./chunk-CixW3-s0.js').then(t=>t.venus),verified:()=>import('./chunk-BEhxoQU3.js').then(t=>t.verified),video:()=>import('./chunk-KIN6bPyI.js').then(t=>t.video),vimeo:()=>import('./chunk-BFOrGqTe.js').then(t=>t.vimeo),"volume-down":()=>import('./chunk-Du5yLzP1.js').then(t=>t.volumeDown),"volume-off":()=>import('./chunk-D3I6LGNP.js').then(t=>t.volumeOff),"volume-up":()=>import('./chunk-C_dmQLy0.js').then(t=>t.volumeUp),wallet:()=>import('./chunk-0PdyW8jb.js').then(t=>t.wallet),warehouse:()=>import('./chunk-Q-k-FXvL.js').then(t=>t.warehouse),"wave-pulse":()=>import('./chunk-B8jc3gjs.js').then(t=>t.wavePulse),whatsapp:()=>import('./chunk-BAPPY9P4.js').then(t=>t.whatsapp),wifi:()=>import('./chunk-nTniKDTt.js').then(t=>t.wifi),"window-maximize":()=>Promise.resolve().then(function(){return chunkBNNNOWNN}).then(t=>t.windowMaximize),"window-minimize":()=>Promise.resolve().then(function(){return chunkSWGQHCFW}).then(t=>t.windowMinimize),wrench:()=>import('./chunk-COTxONT4.js').then(t=>t.wrench),youtube:()=>import('./chunk-Ca__ZFu1.js').then(t=>t.youtube)};var tu=(t,a)=>a[1].key||t;function iu(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function nu(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function ou(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function au(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function lu(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function ru(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function su(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function cu(t,a){if(t&1&&rM(0,iu,1,9,":svg:path")(1,nu,1,6,":svg:circle")(2,ou,1,9,":svg:rect")(3,au,1,7,":svg:line")(4,lu,1,4,":svg:polyline")(5,ru,1,4,":svg:polygon")(6,su,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var so=(()=>{class t extends M4$2{pIcon=mu$1(void 0);constructor(){super(),Ui(async()=>{let e=this.pIcon();if(!e){this._icon=null;return}let i=ro[e];if(!i){console.warn(`[PIcon] Unknown icon: "${e}"`),this._icon=null;return}try{this._icon=await i();}catch(n){console.error(`[PIcon] Failed to load icon "${e}":`,n),this._icon=null;}});}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","pIcon",""]],inputs:{pIcon:[1,"pIcon"]},features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,cu,7,1,null,null,tu),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();function du(t,a){t&1&&qE(0);}function pu(t,a){if(t&1&&VE(0,du,1,0,"ng-container",3),t&2){let e=EM();zE("ngTemplateOutlet",e.headlessTemplate())("ngTemplateOutletContext",e.headlessContext());}}function uu(t,a){if(t&1&&au$1(0,"span",4),t&2){let e=EM(3);jM(e.cn(e.cx("messageIcon"),e.message()?.icon)),zE("pBind",e.ptm("messageIcon"));}}function mu(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",6)),t&2){let e=EM(3);jM(e.cx("messageIcon")),zE("pIcon",e.severityIcon())("pBind",e.ptm("messageIcon")),su$1("aria-hidden",true);}}function fu(t,a){if(t&1&&(rM(0,uu,1,3,"span",2)(1,mu,1,5,":svg:svg",5),Bc$1(2,"div",4)(3,"div",4),YM(4),bp$1(),Bc$1(5,"div",4),YM(6),bp$1()()),t&2){let e=EM(2);oM(e.message()?.icon?0:e.severityIcon()?1:-1),n_(2),jM(e.cx("messageText")),zE("pBind",e.ptm("messageText")),su$1("data-p",e.dataP()),n_(),jM(e.cx("summary")),zE("pBind",e.ptm("summary")),su$1("data-p",e.dataP()),n_(),xp$1(" ",e.message()?.summary," "),n_(),jM(e.cx("detail")),zE("pBind",e.ptm("detail")),su$1("data-p",e.dataP()),n_(),fD(e.message()?.detail);}}function hu(t,a){t&1&&qE(0);}function gu(t,a){if(t&1&&VE(0,hu,1,0,"ng-container",3),t&2){let e=EM(2);zE("ngTemplateOutlet",e.template())("ngTemplateOutletContext",e.messageContext());}}function bu(t,a){if(t&1&&au$1(0,"span",4),t&2){let e=EM(3);jM(e.cn(e.cx("closeIcon"),e.message()?.closeIcon)),zE("pBind",e.ptm("closeIcon"));}}function _u(t,a){if(t&1&&(Gm$1(),au$1(0,"svg",9)),t&2){let e=EM(3);jM(e.cx("closeIcon")),zE("pBind",e.ptm("closeIcon")),su$1("aria-hidden",true);}}function yu(t,a){if(t&1){let e=hM();Bc$1(0,"div")(1,"button",7),cu$1("click",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onCloseIconClick(n))})("keydown.enter",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onCloseIconClick(n))}),rM(2,bu,1,3,"span",2)(3,_u,1,4,":svg:svg",8),bp$1()();}if(t&2){let e=EM(2);n_(),zE("pBind",e.ptm("closeButton")),su$1("class",e.cx("closeButton"))("aria-label",e.closeAriaLabel)("data-p",e.dataP()),n_(),oM(e.message()?.closeIcon?2:3);}}function vu(t,a){if(t&1&&(Bc$1(0,"div",4),rM(1,fu,7,15),rM(2,gu,1,2,"ng-container"),rM(3,yu,4,5,"div"),bp$1()),t&2){let e=EM();jM(e.cn(e.cx("messageContent"),e.message()?.contentStyleClass)),zE("pBind",e.ptm("messageContent")),n_(),oM(e.template()?-1:1),n_(),oM(e.template()?2:-1),n_(),oM(e.showCloseButton()?3:-1);}}var xu=["message"],Cu=["headless"];function Mu(t,a){if(t&1){let e=hM();Bc$1(0,"p-toast-item",1),cu$1("onClose",function(n){Rm$1(e);let o=EM();return xm$1(o.onMessageClose(n))})("onAnimationEnd",function(){Rm$1(e);let n=EM();return xm$1(n.onAnimationEnd())})("onAnimationStart",function(){Rm$1(e);let n=EM();return xm$1(n.onAnimationStart())})("onHeightChange",function(n){Rm$1(e);let o=EM();return xm$1(o.onItemHeightChange(n))}),bp$1();}if(t&2){let e=a.$implicit,i=a.$index,n=EM();zE("message",e)("index",i)("life",n.life())("clearAll",n.clearAllTrigger())("template",n.messageTemplate())("headlessTemplate",n.headlessTemplate())("pt",n.pt)("unstyled",n.unstyled())("motionOptions",n.computedMotionOptions())("stackExpanded",n.isExpanded())("stackIsHovered",n.hovered())("stackIsInteracting",n.isInteracting())("stackIndex",n.getStackIndex(i))("stackTotal",n.stackTotal())("stackOffset",n.getStackOffset(i))("stackIsVisible",n.isStackVisible(i))("position",n.position());}}var wu={root:({instance:t})=>{let a=t.position();return {position:"fixed",top:a==="top-right"||a==="top-left"||a==="top-center"?"20px":a==="center"?"50%":null,right:(a==="top-right"||a==="bottom-right")&&"20px",bottom:(a==="bottom-left"||a==="bottom-right"||a==="bottom-center")&&"20px",left:a==="top-left"||a==="bottom-left"?"20px":a==="center"||a==="top-center"||a==="bottom-center"?"50%":null}}},zu={root:({instance:t})=>["p-toast p-component",`p-toast-${t.position()}`],message:({instance:t})=>({"p-toast-message":true,"p-toast-message-normal":t.message().severity==="normal"||t.message().severity===void 0,"p-toast-message-info":t.message().severity==="info","p-toast-message-warn":t.message().severity==="warn","p-toast-message-error":t.message().severity==="error","p-toast-message-success":t.message().severity==="success","p-toast-message-secondary":t.message().severity==="secondary","p-toast-message-contrast":t.message().severity==="contrast"}),messageContent:"p-toast-message-content",messageIcon:({instance:t})=>({"p-toast-message-icon":true,[`pi ${t.message().icon}`]:!!t.message().icon}),messageText:"p-toast-message-text",summary:"p-toast-summary",detail:"p-toast-detail",closeButton:"p-toast-close-button",closeIcon:({instance:t})=>({"p-toast-close-icon":true,[`pi ${t.message().closeIcon}`]:!!t.message().closeIcon})},U1=(()=>{class t extends WI{name="toast";style=lo;classes=zu;inlineStyles=wu;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var ku=50,Tu=.11,Du=500,Su=(()=>{class t extends I{message=mu$1();index=mu$1(void 0,{transform:Bp$1});life=mu$1(void 0,{transform:Bp$1});template=mu$1();headlessTemplate=mu$1();motionOptions=mu$1();clearAll=mu$1(null);stackExpanded=mu$1(false);stackIsHovered=mu$1(false);stackIndex=mu$1(0,{transform:Bp$1});stackTotal=mu$1(0,{transform:Bp$1});stackOffset=mu$1(0,{transform:Bp$1});stackIsVisible=mu$1(false);stackIsInteracting=mu$1(false);position=mu$1("top-right");onAnimationStart=sz();onAnimationEnd=sz();onClose=sz();onHeightChange=sz();_componentStyle=g(U1);timeout=null;visible=U(void 0);showCloseButton=gs$1(()=>this.message()?.closable!==false);static severityIcons={success:"check",info:"info-circle",error:"times-circle",warn:"exclamation-triangle",secondary:"info-circle",contrast:"info-circle"};severityIcon=gs$1(()=>t.severityIcons[this.message()?.severity]??null);isDestroyed=false;mounted=U(false);measuredHeight=U(0);removed=U(false);offsetBeforeRemove=U(0);swiping=U(false);isSwiped=U(false);swipeOut=U(false);swipeDirection=U(null);swipeOutDirection=U(null);swipeAmountX=U(0);swipeAmountY=U(0);pointerStartPosition=null;swipeStartTime=0;dataMounted=gs$1(()=>this.mounted()?"":null);dataFront=gs$1(()=>this.stackIndex()===0?"":null);dataExpanded=gs$1(()=>this.stackExpanded()?"":null);dataVisible=gs$1(()=>this.stackIsVisible()?"":null);dataRemoved=gs$1(()=>this.removed()?"":null);dataSwiping=gs$1(()=>this.swiping()?"":null);dataSwiped=gs$1(()=>this.isSwiped()?"":null);dataSwipeOut=gs$1(()=>this.swipeOut()?"":null);dataSwipeDirection=gs$1(()=>this.swipeOutDirection()?this.swipeOutDirection():null);dataDismissible=gs$1(()=>String(this.message()?.closable!==false));stackStyles=gs$1(()=>{let e=this.stackIndex(),i=this.stackTotal();return {"--px-toast-index":this.removed()?this.stackIndex():e,"--px-toast-z-index":i-e,"--px-initial-height":this.measuredHeight()+"px","--px-toast-offset":(this.removed()?this.offsetBeforeRemove():this.stackOffset())+"px","--px-swipe-amount-x":this.swipeAmountX()+"px","--px-swipe-amount-y":this.swipeAmountY()+"px","z-index":i-e}});constructor(){super(),Ui(()=>{this.clearAll()&&this.visible.set(false);}),Ui(()=>{let e=this.stackIsHovered(),i=this.stackIsInteracting(),n=this.swiping();e||i||n?this.pauseStackTimer():this.startStackTimer();});}onBeforeEnter(e){this.onAnimationStart.emit(e.element);}onAfterEnter(){this.measureStackHeight();}onAfterLeave(e){!this.visible()&&!this.isDestroyed&&(this.onClose.emit({index:this.index(),message:this.message()}),this.isDestroyed||this.onAnimationEnd.emit(e.element));}onAfterViewInit(){this.visible.set(true),this.measureStackHeight();}measureStackHeight(){if(this.mounted())return;let e=this.el.nativeElement.querySelector("[data-stack]");if(!e)return;let i=e.style.height;e.style.height="auto";let n=e.getBoundingClientRect().height;e.style.height=i,this.measuredHeight.set(n),this.onHeightChange.emit({index:this.index(),height:n}),this.mounted.set(true);}remainingTime=0;timerStartTime=0;startStackTimer(){let e=this.message();e?.sticky||(this.clearTimeout(),this.remainingTime<=0&&(this.remainingTime=e?.life||this.life()||3e3),this.timerStartTime=Date.now(),this.timeout=setTimeout(()=>{this.handleFocusOnRemove(),this.closeStack();},this.remainingTime));}pauseStackTimer(){if(this.timerStartTime>0&&this.timeout){let e=Date.now()-this.timerStartTime;this.remainingTime=Math.max(0,this.remainingTime-e);}this.clearTimeout();}clearTimeout(){this.timeout&&(clearTimeout(this.timeout),this.timeout=null);}onCloseIconClick=e=>{this.clearTimeout(),this.handleFocusOnRemove(),this.closeStack(),e?.preventDefault();};closeStack(){this.markRemoved(),this.visible.set(false);}isDismissible(){return this.message()?.closable!==false}markRemoved(){this.isDestroyed||(this.offsetBeforeRemove.set(this.stackOffset()),this.removed.set(true),this.onHeightChange.emit({index:this.index(),height:0,removed:true}));}onPointerDown=e=>{if(e.button===0&&this.isDismissible()){this.swipeStartTime=Date.now(),this.offsetBeforeRemove.set(this.stackOffset());try{e.target.setPointerCapture(e.pointerId);}catch{}this.swiping.set(true),this.pointerStartPosition={x:e.clientX,y:e.clientY};}};onPointerMove=e=>{if(!this.pointerStartPosition||!this.isDismissible()||(window.getSelection()?.toString().length??0)>0)return;let i=e.clientY-this.pointerStartPosition.y,n=e.clientX-this.pointerStartPosition.x,o=Math.abs(n)>1||Math.abs(i)>1,r=(this.position()??"top-right").split("-"),u=r[0],M=r[1];!this.swipeDirection()&&o&&this.swipeDirection.set(Math.abs(n)>Math.abs(i)?"x":"y");let z=0,T=0;this.swipeDirection()==="x"?z=M==="left"&&n<0||M==="right"&&n>0?n:this.applyDampening(n):this.swipeDirection()==="y"&&(T=u==="top"&&i<0||u==="bottom"&&i>0?i:this.applyDampening(i)),(Math.abs(z)>0||Math.abs(T)>0)&&this.isSwiped.set(true),this.swipeAmountX.set(z),this.swipeAmountY.set(T);};onPointerUp=()=>{if(this.swipeOut()||!this.isDismissible())return;this.swiping.set(false),this.pointerStartPosition=null;let e=this.swipeDirection()==="x"?this.swipeAmountX():this.swipeAmountY(),i=Date.now()-(this.swipeStartTime||Date.now()),n=i>0?Math.abs(e)/i:0;if(Math.abs(e)>=ku||n>Tu){this.offsetBeforeRemove.set(this.stackOffset()),this.swipeDirection()==="x"?this.swipeOutDirection.set(this.swipeAmountX()>0?"right":"left"):this.swipeOutDirection.set(this.swipeAmountY()>0?"down":"up"),this.swipeOut.set(true),this.markRemoved(),this.scheduleSwipeOutClose();return}this.swipeAmountX.set(0),this.swipeAmountY.set(0),this.isSwiped.set(false),this.swipeDirection.set(null);};onDragEnd=()=>{this.swiping.set(false),this.swipeDirection.set(null),this.pointerStartPosition=null;};applyDampening(e){let i=Math.abs(e)/20,n=e*(1/(1.5+i));return Math.abs(n){this.visible.set(false);},Du);}handleFocusOnRemove(){let e=this.el.nativeElement,i=this.document.activeElement;if(!e?.contains(i))return;let n=e.nextElementSibling?.querySelector('[data-pc-section="closebutton"]'),o=e.previousElementSibling?.querySelector('[data-pc-section="closebutton"]');requestAnimationFrame(()=>{n?n.focus({preventScroll:true}):o&&o.focus({preventScroll:true});});}get closeAriaLabel(){return this.config.translation.aria?this.config.translation.aria.close:void 0}onDestroy(){this.isDestroyed=true,this.clearTimeout(),this.visible.set(false);}headlessContext=gs$1(()=>({$implicit:this.message(),closeFn:this.onCloseIconClick}));messageContext=gs$1(()=>({$implicit:this.message(),closeFn:this.onCloseIconClick}));dataP=gs$1(()=>{let e=this.message();return this.cn({[e?.severity]:e?.severity})});static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-toast-item"]],inputs:{message:[1,"message"],index:[1,"index"],life:[1,"life"],template:[1,"template"],headlessTemplate:[1,"headlessTemplate"],motionOptions:[1,"motionOptions"],clearAll:[1,"clearAll"],stackExpanded:[1,"stackExpanded"],stackIsHovered:[1,"stackIsHovered"],stackIndex:[1,"stackIndex"],stackTotal:[1,"stackTotal"],stackOffset:[1,"stackOffset"],stackIsVisible:[1,"stackIsVisible"],stackIsInteracting:[1,"stackIsInteracting"],position:[1,"position"]},outputs:{onAnimationStart:"onAnimationStart",onAnimationEnd:"onAnimationEnd",onClose:"onClose",onHeightChange:"onHeightChange"},features:[nN([U1]),BE],decls:4,vars:21,consts:[["container",""],["role","alert","aria-live","assertive","aria-atomic","true","data-stack","",3,"pMotionOnBeforeEnter","pMotionOnAfterEnter","pMotionOnAfterLeave","pointerdown","pointermove","pointerup","dragend","pMotion","pMotionAppear","pMotionOptions","pBind"],[3,"pBind","class"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"pBind"],[3,"pIcon","pBind","class"],[3,"pIcon","pBind"],["type","button","autofocus","",3,"click","keydown.enter","pBind"],["data-p-icon","times",3,"pBind","class"],["data-p-icon","times",3,"pBind"]],template:function(i,n){i&1&&(Bc$1(0,"div",1,0),cu$1("pMotionOnBeforeEnter",function(r){return n.onBeforeEnter(r)})("pMotionOnAfterEnter",function(){return n.onAfterEnter()})("pMotionOnAfterLeave",function(r){return n.onAfterLeave(r)})("pointerdown",function(r){return n.onPointerDown(r)})("pointermove",function(r){return n.onPointerMove(r)})("pointerup",function(){return n.onPointerUp()})("dragend",function(){return n.onDragEnd()}),rM(2,pu,1,2,"ng-container")(3,vu,4,6,"div",2),bp$1()),i&2&&(PM(n.stackStyles()),jM(n.cn(n.cx("message"),n.message()?.styleClass)),zE("pMotion",n.visible())("pMotionAppear",true)("pMotionOptions",n.motionOptions())("pBind",n.ptm("message")),su$1("id",n.message()?.id)("data-p",n.dataP())("data-mounted",n.dataMounted())("data-removed",n.dataRemoved())("data-front",n.dataFront())("data-expanded",n.dataExpanded())("data-visible",n.dataVisible())("data-swiping",n.dataSwiping())("data-swiped",n.dataSwiped())("data-swipe-out",n.dataSwipeOut())("data-swipe-direction",n.dataSwipeDirection())("data-dismissible",n.dataDismissible()),n_(2),oM(n.headlessTemplate()?2:3));},dependencies:[cA,so,co$1,iq,L,De,Mo$1],encapsulation:2})}return t})(),co=new I$1("TOAST_INSTANCE"),po=(()=>{class t extends I{componentName="Toast";$pcToast=g(co,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}key=mu$1();autoZIndex=mu$1(true,{transform:yn});baseZIndex=mu$1(0,{transform:Bp$1});life=mu$1(3e3,{transform:Bp$1});position=mu$1("top-right");mode=mu$1("stacked");stackGap=mu$1(8,{transform:Bp$1});stackVisibleLimit=mu$1(3,{transform:Bp$1});preventOpenDuplicates=mu$1(false,{transform:yn});preventDuplicates=mu$1(false,{transform:yn});motionOptions=mu$1();computedMotionOptions=gs$1(()=>l$1(l$1({},this.ptm("motion")),this.motionOptions()));breakpoints=mu$1();onClose=sz();messageTemplate=uz("message",{descendants:false});headlessTemplate=uz("headless",{descendants:false});messageSubscription;clearSubscription;messages;messageArchive;messageService=g(tq);_componentStyle=g(U1);styleElement=null;id=j8$1("pn_id_");clearAllTrigger=U(null);hovered=U(false);isInteracting=U(false);heights=U([]);sortedHeights=gs$1(()=>[...this.heights()].sort((e,i)=>i.index-e.index));frontToastHeight=gs$1(()=>this.sortedHeights()[0]?.height??0);stackOffsets=gs$1(()=>{let e=this.sortedHeights(),i=[0];for(let n=1;n{let e=new Map;return this.sortedHeights().forEach((i,n)=>e.set(i.index,n)),e});visibleIndices=gs$1(()=>new Set(this.sortedHeights().slice(0,this.stackVisibleLimit()).map(e=>e.index)));raiseFactor=gs$1(()=>this.position().startsWith("bottom")?-1:1);isExpanded=gs$1(()=>this.mode()==="expanded"||this.hovered());hostDataExpanded=gs$1(()=>this.isExpanded()?"":null);stackTotal=gs$1(()=>this.messages?.length??0);getStackIndex(e){return this.visualStackIndices().get(e)??(this.messages?.length??0)-1-e}getStackOffset(e){let i=this.visualStackIndices().get(e)??0;return this.stackOffsets()[i]??0}isStackVisible(e){return this.visibleIndices().has(e)}dataP=gs$1(()=>{let e=this.position();return this.cn({[e]:e})});onInit(){this.messageSubscription=this.messageService.messageObserver.subscribe(e=>{if(e)if(Array.isArray(e)){let i=e.filter(n=>this.canAdd(n));this.add(i);}else this.canAdd(e)&&this.add([e]);}),this.clearSubscription=this.messageService.clearObserver.subscribe(e=>{e?this.key()===e&&this.clearAll():this.clearAll(),this.cd.markForCheck();});}clearAll(){this.clearAllTrigger.set({}),this.heights.set([]),this.hovered.set(false),this.isInteracting.set(false),this.messageArchive=void 0;}onAfterViewInit(){this.breakpoints()&&this.createStyle();}add(e){this.messages=this.messages?[...this.messages,...e]:[...e],this.preventDuplicates()&&(this.messageArchive=this.messageArchive?[...this.messageArchive,...e]:[...e]),this.cd.markForCheck();}canAdd(e){let i=this.key()===e.key;return i&&this.preventOpenDuplicates()&&(i=!this.containsMessage(this.messages??[],e)),i&&this.preventDuplicates()&&(i=!this.containsMessage(this.messageArchive??[],e)),i}containsMessage(e,i){return e?e.find(n=>n.summary===i.summary&&n.detail==i.detail&&n.severity===i.severity)!=null:false}onMessageClose(e){this.messages?.splice(e.index,1),this.heights.update(i=>i.filter(n=>n.index!==e.index).map(n=>n.index>e.index?m(l$1({},n),{index:n.index-1}):n)),(this.messages?.length??0)<=1&&this.hovered.set(false),this.onClose.emit({message:e.message}),this.onAnimationEnd(),this.cd.detectChanges();}onAnimationStart(){this.renderer.setAttribute(this.el?.nativeElement,this.id,""),this.autoZIndex()&&this.el?.nativeElement.style.zIndex===""&&N4$1.set("modal",this.el?.nativeElement,this.baseZIndex()||this.config.zIndex.modal);}onAnimationEnd(){this.autoZIndex()&&Gs$1(this.messages)&&N4$1.clear(this.el?.nativeElement);}onContainerMouseEnter(){this.hovered.set(true);}onContainerMouseLeave(e){if(this.isInteracting())return;let i=this.el?.nativeElement,n=e.relatedTarget;n&&i?.contains(n)||this.hovered.set(false);}onContainerPointerDown(e){let i=e.target;i&&i.closest('[data-dismissible="false"]')||this.isInteracting.set(true);}onContainerPointerUp(){this.isInteracting.set(false);}onItemHeightChange(e){if(e.removed){this.heights.update(i=>i.filter(n=>n.index!==e.index));return}this.heights.update(i=>{let n=i.findIndex(o=>o.index===e.index);if(n>=0){let o=[...i];return o[n]=e,o}return [...i,e].sort((o,r)=>o.index-r.index)});}createStyle(){let e=this.breakpoints();if(!this.styleElement){let i=this.renderer.createElement("style");PI(i,"nonce",this.config?.csp()?.nonce),this.renderer.appendChild(this.document.head,i);let n="";for(let o in e){let r="";for(let u in e[o])r+=u+":"+e[o][u]+" !important;";n+=` + @media screen and (max-width: ${o}) { + .p-toast[${this.id}] { + ${r} + } + } + `;}this.renderer.setProperty(i,"innerHTML",n),PI(i,"nonce",this.config?.csp()?.nonce),this.styleElement=i;}}destroyStyle(){this.styleElement&&(this.renderer.removeChild(this.document.head,this.styleElement),this.styleElement=null);}onDestroy(){this.messageSubscription&&this.messageSubscription.unsubscribe(),this.el&&this.autoZIndex()&&N4$1.clear(this.el.nativeElement),this.clearSubscription&&this.clearSubscription.unsubscribe(),this.destroyStyle();}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-toast"]],contentQueries:function(i,n,o){i&1&&QE(o,n.messageTemplate,xu,4)(o,n.headlessTemplate,Cu,4),i&2&&IM(2);},hostVars:13,hostBindings:function(i,n){i&1&&cu$1("mouseenter",function(){return n.onContainerMouseEnter()})("mouseleave",function(r){return n.onContainerMouseLeave(r)})("pointerdown",function(r){return n.onContainerPointerDown(r)})("pointerup",function(){return n.onContainerPointerUp()}),i&2&&(su$1("data-p",n.dataP())("data-position",n.position())("data-expanded",n.hostDataExpanded()),PM(n.sx("root")),jM(n.cx("root")),fu$1("--px-gap",n.stackGap(),"px")("--px-front-toast-height",n.frontToastHeight(),"px")("--px-raise-factor",n.raiseFactor()));},inputs:{key:[1,"key"],autoZIndex:[1,"autoZIndex"],baseZIndex:[1,"baseZIndex"],life:[1,"life"],position:[1,"position"],mode:[1,"mode"],stackGap:[1,"stackGap"],stackVisibleLimit:[1,"stackVisibleLimit"],preventOpenDuplicates:[1,"preventOpenDuplicates"],preventDuplicates:[1,"preventDuplicates"],motionOptions:[1,"motionOptions"],breakpoints:[1,"breakpoints"]},outputs:{onClose:"onClose"},features:[nN([U1,{provide:co,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],decls:2,vars:0,consts:[[3,"message","index","life","clearAll","template","headlessTemplate","pt","unstyled","motionOptions","stackExpanded","stackIsHovered","stackIsInteracting","stackIndex","stackTotal","stackOffset","stackIsVisible","position"],[3,"onClose","onAnimationEnd","onAnimationStart","onHeightChange","message","index","life","clearAll","template","headlessTemplate","pt","unstyled","motionOptions","stackExpanded","stackIsHovered","stackIsInteracting","stackIndex","stackTotal","stackOffset","stackIsVisible","position"]],template:function(i,n){i&1&&aM(0,Mu,1,17,"p-toast-item",0,sM),i&2&&cM(n.messages);},dependencies:[Su,iq],encapsulation:2})}return t})();var uo=(()=>{class t extends I{pFocusTrapDisabled=mu$1(false,{transform:yn});firstHiddenFocusableElement;lastHiddenFocusableElement;constructor(){super(),Ui(()=>{let e=this.pFocusTrapDisabled();BG(this.platformId)&&(e?this.removeHiddenFocusableElements():!this.firstHiddenFocusableElement&&!this.lastHiddenFocusableElement&&this.createHiddenFocusableElements());});}onInit(){BG(this.platformId)&&!this.pFocusTrapDisabled()&&!this.firstHiddenFocusableElement&&!this.lastHiddenFocusableElement&&this.createHiddenFocusableElements();}removeHiddenFocusableElements(){this.firstHiddenFocusableElement&&this.firstHiddenFocusableElement.parentNode&&this.firstHiddenFocusableElement.parentNode.removeChild(this.firstHiddenFocusableElement),this.lastHiddenFocusableElement&&this.lastHiddenFocusableElement.parentNode&&this.lastHiddenFocusableElement.parentNode.removeChild(this.lastHiddenFocusableElement),this.firstHiddenFocusableElement=null,this.lastHiddenFocusableElement=null;}getComputedSelector(e){return `:not(.p-hidden-focusable):not([data-p-hidden-focusable="true"])${e??""}`}createHiddenFocusableElements(){let i=n=>T4$1("span",{class:"p-hidden-accessible p-hidden-focusable",tabindex:"0",role:"presentation","aria-hidden":true,"data-p-hidden-accessible":true,"data-p-hidden-focusable":true,onFocus:n?.bind(this)});this.firstHiddenFocusableElement=i(this.onFirstHiddenElementFocus),this.lastHiddenFocusableElement=i(this.onLastHiddenElementFocus),this.firstHiddenFocusableElement.setAttribute("data-pc-section","firstfocusableelement"),this.lastHiddenFocusableElement.setAttribute("data-pc-section","lastfocusableelement"),this.el.nativeElement.prepend(this.firstHiddenFocusableElement),this.el.nativeElement.append(this.lastHiddenFocusableElement);}onFirstHiddenElementFocus(e){let{currentTarget:i,relatedTarget:n}=e,o=n===this.lastHiddenFocusableElement||!this.el.nativeElement?.contains(n)?R4$1(i.parentElement,":not(.p-hidden-focusable)"):this.lastHiddenFocusableElement;N4$2(o);}onLastHiddenElementFocus(e){let{currentTarget:i,relatedTarget:n}=e,o=n===this.firstHiddenFocusableElement||!this.el.nativeElement?.contains(n)?L4$1(i.parentElement,":not(.p-hidden-focusable)"):this.firstHiddenFocusableElement;N4$2(o);}static \u0275fac=function(i){return new(i||t)};static \u0275dir=xt({type:t,selectors:[["","pFocusTrap",""]],inputs:{pFocusTrapDisabled:[1,"pFocusTrapDisabled"]},features:[BE]})}return t})();var Iu=(t,a)=>a[1].key||t;function Eu(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Nu(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Lu(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Fu(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Ou(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Bu(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Vu(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Pu(t,a){if(t&1&&rM(0,Eu,1,9,":svg:path")(1,Nu,1,6,":svg:circle")(2,Lu,1,9,":svg:rect")(3,Fu,1,7,":svg:line")(4,Ou,1,4,":svg:polyline")(5,Bu,1,4,":svg:polygon")(6,Vu,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var mo=(()=>{class t extends M4$2{constructor(){super(),this._icon=C$5;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","window-maximize"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,Pu,7,1,null,null,Iu),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var Ru=(t,a)=>a[1].key||t;function Au(t,a){if(t&1&&(Gm$1(),GE(0,"path")),t&2){let e=EM().$implicit;su$1("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Hu(t,a){if(t&1&&(Gm$1(),GE(0,"circle")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function $u(t,a){if(t&1&&(Gm$1(),GE(0,"rect")),t&2){let e=EM().$implicit;su$1("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Gu(t,a){if(t&1&&(Gm$1(),GE(0,"line")),t&2){let e=EM().$implicit;su$1("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Uu(t,a){if(t&1&&(Gm$1(),GE(0,"polyline")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Ku(t,a){if(t&1&&(Gm$1(),GE(0,"polygon")),t&2){let e=EM().$implicit;su$1("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function qu(t,a){if(t&1&&(Gm$1(),GE(0,"ellipse")),t&2){let e=EM().$implicit;su$1("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function ju(t,a){if(t&1&&rM(0,Au,1,9,":svg:path")(1,Hu,1,6,":svg:circle")(2,$u,1,9,":svg:rect")(3,Gu,1,7,":svg:line")(4,Uu,1,4,":svg:polyline")(5,Ku,1,4,":svg:polygon")(6,qu,1,7,":svg:ellipse"),t&2){let e,i=a.$implicit;oM((e=i[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var fo=(()=>{class t extends M4$2{constructor(){super(),this._icon=C$4;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["svg","data-p-icon","window-minimize"]],features:[BE],decls:2,vars:0,template:function(i,n){i&1&&aM(0,ju,7,1,null,null,Ru),i&2&&cM(n.iconNodes());},encapsulation:2,changeDetection:1})}return t})();var ho=` + .p-dialog { + max-height: 90%; + transform: scale(1); + border-radius: dt('dialog.border.radius'); + box-shadow: dt('dialog.shadow'); + background: dt('dialog.background'); + border: 1px solid dt('dialog.border.color'); + color: dt('dialog.color'); + will-change: transform; + } + + .p-dialog-content { + overflow-y: auto; + padding: dt('dialog.content.padding'); + flex-grow: 1; + } + + .p-dialog-header { + display: flex; + align-items: center; + justify-content: space-between; + flex-shrink: 0; + padding: dt('dialog.header.padding'); + } + + .p-dialog-title { + font-weight: dt('dialog.title.font.weight'); + font-size: dt('dialog.title.font.size'); + } + + .p-dialog-footer { + flex-shrink: 0; + padding: dt('dialog.footer.padding'); + display: flex; + justify-content: flex-end; + gap: dt('dialog.footer.gap'); + } + + .p-dialog-header-actions { + display: flex; + align-items: center; + gap: dt('dialog.header.gap'); + } + + .p-dialog-top .p-dialog, + .p-dialog-bottom .p-dialog, + .p-dialog-left .p-dialog, + .p-dialog-right .p-dialog, + .p-dialog-topleft .p-dialog, + .p-dialog-topright .p-dialog, + .p-dialog-bottomleft .p-dialog, + .p-dialog-bottomright .p-dialog { + margin: 1rem; + } + + .p-dialog-maximized { + width: 100vw !important; + height: 100vh !important; + top: 0px !important; + left: 0px !important; + max-height: 100%; + height: 100%; + border-radius: 0; + } + + .p-dialog .p-resizable-handle { + position: absolute; + font-size: 0.1px; + display: block; + cursor: se-resize; + width: 12px; + height: 12px; + right: 1px; + bottom: 1px; + } + + .p-dialog-enter-active { + animation: p-animate-dialog-enter 300ms cubic-bezier(.19,1,.22,1); + } + + .p-dialog-leave-active { + animation: p-animate-dialog-leave 300ms cubic-bezier(.19,1,.22,1); + } + + @keyframes p-animate-dialog-enter { + from { + opacity: 0; + transform: scale(0.93); + } + } + + @keyframes p-animate-dialog-leave { + to { + opacity: 0; + transform: scale(0.93); + } + } +`;var Wu=["header"],go=["content"],bo=["footer"],Yu=["closeicon"],Zu=["maximizeicon"],Qu=["minimizeicon"],Xu=["headless"],Ju=["titlebar"],em=["*",[["p-footer"]]],tm=["*","p-footer"];function im(t,a){t&1&&qE(0);}function nm(t,a){if(t&1&&VE(0,im,1,0,"ng-container",8),t&2){let e=EM(3);zE("ngTemplateOutlet",e.headlessTemplate());}}function om(t,a){if(t&1){let e=hM();Bc$1(0,"div",12),cu$1("mousedown",function(n){Rm$1(e);let o=EM(4);return xm$1(o.initResize(n))}),bp$1();}if(t&2){let e=EM(4);jM(e.cx("resizeHandle")),fu$1("z-index",90),zE("pBind",e.ptm("resizeHandle"));}}function am(t,a){if(t&1&&(Bc$1(0,"span",16),YM(1),bp$1()),t&2){let e=EM(5);jM(e.cx("title")),zE("id",e.ariaLabelledBy())("pBind",e.ptm("title")),n_(),fD(e.header());}}function lm(t,a){t&1&&qE(0);}function rm(t,a){if(t&1&&au$1(0,"span"),t&2){let e=EM(6);jM(e.toggleIcon());}}function sm(t,a){t&1&&(Gm$1(),au$1(0,"svg",19));}function cm(t,a){t&1&&(Gm$1(),au$1(0,"svg",20));}function dm(t,a){if(t&1&&(rM(0,sm,1,0,":svg:svg",19),rM(1,cm,1,0,":svg:svg",20)),t&2){let e=EM(6);oM(e.showMaximizeSvg()?0:-1),n_(),oM(e.showMinimizeSvg()?1:-1);}}function pm(t,a){t&1&&qE(0);}function um(t,a){if(t&1&&VE(0,pm,1,0,"ng-container",8),t&2){let e=EM(6);zE("ngTemplateOutlet",e.maximizeIconTemplate());}}function mm(t,a){t&1&&qE(0);}function fm(t,a){if(t&1&&VE(0,mm,1,0,"ng-container",8),t&2){let e=EM(6);zE("ngTemplateOutlet",e.minimizeIconTemplate());}}function hm(t,a){if(t&1){let e=hM();Bc$1(0,"button",17),cu$1("click",function(){Rm$1(e);let n=EM(5);return xm$1(n.maximize())})("keydown.enter",function(){Rm$1(e);let n=EM(5);return xm$1(n.maximize())}),rM(1,rm,1,2,"span",18),rM(2,dm,2,2),rM(3,um,1,1,"ng-container"),rM(4,fm,1,1,"ng-container"),bp$1();}if(t&2){let e=EM(5);jM(e.cx("pcMaximizeButton")),zE("pButton",e.maximizeButtonProps())("tabindex",e.maximizeButtonTabindex())("pButtonPT",e.ptm("pcMaximizeButton"))("pButtonUnstyled",e.unstyled()),su$1("aria-label",e.maximizeButtonAriaLabel())("data-pc-group-section","headericon"),n_(),oM(e.showToggleIcon()?1:-1),n_(),oM(e.showDefaultMaximizeIcon()?2:-1),n_(),oM(e.showMaximizeIconTemplate()?3:-1),n_(),oM(e.showMinimizeIconTemplate()?4:-1);}}function gm(t,a){if(t&1&&au$1(0,"span"),t&2){let e=EM(7);jM(e.closeIcon());}}function bm(t,a){t&1&&(Gm$1(),au$1(0,"svg",21));}function _m(t,a){if(t&1&&rM(0,gm,1,2,"span",18)(1,bm,1,0,":svg:svg",21),t&2){let e=EM(6);oM(e.closeIcon()?0:1);}}function ym(t,a){t&1&&qE(0);}function vm(t,a){if(t&1&&VE(0,ym,1,0,"ng-container",8),t&2){let e=EM(6);zE("ngTemplateOutlet",e.closeIconTemplate());}}function xm(t,a){if(t&1){let e=hM();Bc$1(0,"button",17),cu$1("click",function(n){Rm$1(e);let o=EM(5);return xm$1(o.close(n))})("keydown.enter",function(n){Rm$1(e);let o=EM(5);return xm$1(o.close(n))}),rM(1,_m,2,1),rM(2,vm,1,1,"ng-container"),bp$1();}if(t&2){let e=EM(5);jM(e.cx("pcCloseButton")),zE("pButton",e.closeButtonProps())("tabindex",e.closeTabindex())("pButtonPT",e.ptm("pcCloseButton"))("pButtonUnstyled",e.unstyled()),su$1("aria-label",e.closeAriaLabel())("data-pc-group-section","headericon"),n_(),oM(e.showDefaultCloseIcon?1:-1),n_(),oM(e.closeIconTemplate()?2:-1);}}function Cm(t,a){if(t&1){let e=hM();Bc$1(0,"div",12,2),cu$1("mousedown",function(n){Rm$1(e);let o=EM(4);return xm$1(o.initDrag(n))}),rM(2,am,2,5,"span",13),VE(3,lm,1,0,"ng-container",14),Bc$1(4,"div",11),rM(5,hm,5,12,"button",15),rM(6,xm,3,10,"button",15),bp$1()();}if(t&2){let e=EM(4);jM(e.cx("header")),zE("pBind",e.ptm("header")),n_(2),oM(e.headerTemplate()?-1:2),n_(),zE("ngTemplateOutlet",e.headerTemplate())("ngTemplateOutletContext",e.headerTemplateContext()),n_(),jM(e.cx("headerActions")),zE("pBind",e.ptm("headerActions")),n_(),oM(e.maximizable()?5:-1),n_(),oM(e.closable()?6:-1);}}function Mm(t,a){t&1&&qE(0);}function wm(t,a){if(t&1&&VE(0,Mm,1,0,"ng-container",8),t&2){let e=EM(4);zE("ngTemplateOutlet",e.contentTemplate());}}function zm(t,a){t&1&&qE(0);}function km(t,a){if(t&1&&(Bc$1(0,"div",11,3),lu$1(2,1),VE(3,zm,1,0,"ng-container",8),bp$1()),t&2){let e=EM(4);jM(e.cx("footer")),zE("pBind",e.ptm("footer")),n_(3),zE("ngTemplateOutlet",e.footerTemplate());}}function Tm(t,a){if(t&1&&(rM(0,om,1,5,"div",9),rM(1,Cm,7,11,"div",10),Bc$1(2,"div",11,1),lu$1(4),rM(5,wm,1,1,"ng-container"),bp$1(),rM(6,km,4,4,"div",10)),t&2){let e=EM(3);oM(e.resizable()?0:-1),n_(),oM(e.showHeader()?1:-1),n_(),PM(e.contentStyle()),jM(e.cn(e.cx("content"),e.contentStyleClass())),zE("pBind",e.ptm("content")),n_(3),oM(e.contentTemplate()?5:-1),n_(),oM(e.footerTemplate()?6:-1);}}function Dm(t,a){if(t&1){let e=hM();Bc$1(0,"div",7,0),cu$1("pMotionOnBeforeEnter",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onBeforeEnter(n))})("pMotionOnAfterEnter",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onAfterEnter(n))})("pMotionOnBeforeLeave",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onBeforeLeave(n))})("pMotionOnAfterLeave",function(n){Rm$1(e);let o=EM(2);return xm$1(o.onAfterLeave(n))}),rM(2,nm,1,1,"ng-container")(3,Tm,7,9),bp$1();}if(t&2){let e=EM(2);PM(e.sx("root")),jM(e.cn(e.cx("root"),e.styleClass())),zE("pBind",e.ptm("root"))("pFocusTrapDisabled",e.focusTrapDisabled())("pMotion",e.visible())("pMotionAppear",true)("pMotionName","p-dialog")("pMotionOptions",e.computedMotionOptions()),su$1("role",e.role())("aria-labelledby",e.ariaLabelledBy())("aria-modal",true)("data-p",e.dataP()),n_(2),oM(e.headlessTemplate()?2:3);}}function Sm(t,a){if(t&1){let e=hM();Bc$1(0,"div",5),cu$1("pMotionOnAfterLeave",function(){Rm$1(e);let n=EM();return xm$1(n.onMaskAfterLeave())}),rM(1,Dm,4,15,"div",6),bp$1();}if(t&2){let e=EM();PM(e.sx("mask")),jM(e.cn(e.cx("mask"),e.maskStyleClass())),zE("pBind",e.ptm("mask"))("pMotion",e.maskVisible)("pMotionAppear",true)("pMotionEnterActiveClass",e.maskEnterActiveClass())("pMotionLeaveActiveClass",e.maskLeaveActiveClass())("pMotionOptions",e.computedMaskMotionOptions()),su$1("data-p-scrollblocker-active",e.scrollBlockerActive())("data-p",e.dataP()),n_(),oM(e.renderDialog()?1:-1);}}var Im={mask:({instance:t})=>{let a=t.position(),e=t.modal(),i=t.maskStyle();return l$1({position:"fixed",height:"100%",width:"100%",left:0,top:0,display:"flex",justifyContent:a==="left"||a==="topleft"||a==="bottomleft"?"flex-start":a==="right"||a==="topright"||a==="bottomright"?"flex-end":"center",alignItems:a==="top"||a==="topleft"||a==="topright"?"flex-start":a==="bottom"||a==="bottomleft"||a==="bottomright"?"flex-end":"center",pointerEvents:e?"auto":"none"},i)},root:({instance:t})=>{let a=t.style();return l$1({display:"flex",flexDirection:"column",pointerEvents:"auto"},a)}},Em={mask:({instance:t})=>{let a=["left","right","top","topleft","topright","bottom","bottomleft","bottomright"],e=t.position(),i=a.find(n=>n===e);return ["p-dialog-mask",{"p-overlay-mask":t.modal()},i?`p-dialog-${i}`:""]},root:({instance:t})=>["p-dialog p-component",{"p-dialog-maximized":t.maximizable()&&t.maximized()}],header:"p-dialog-header",title:"p-dialog-title",resizeHandle:"p-resizable-handle",headerActions:"p-dialog-header-actions",pcMaximizeButton:"p-dialog-maximize-button",pcCloseButton:"p-dialog-close-button",content:()=>["p-dialog-content"],footer:"p-dialog-footer"},_o=(()=>{class t extends WI{name="dialog";style=ho;classes=Em;inlineStyles=Im;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var yo=new I$1("DIALOG_INSTANCE"),K1=(()=>{class t extends I{componentName="Dialog";hostName=mu$1("");$pcDialog=g(yo,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("host"));}header=mu$1();draggable=mu$1(true,{transform:yn});resizable=mu$1(true,{transform:yn});contentStyle=mu$1();contentStyleClass=mu$1();modal=mu$1(false,{transform:yn});closeOnEscape=mu$1(true,{transform:yn});dismissableMask=mu$1(false,{transform:yn});rtl=mu$1(false,{transform:yn});closable=mu$1(true,{transform:yn});breakpoints=mu$1();styleClass=mu$1();maskStyleClass=mu$1();maskStyle=mu$1();showHeader=mu$1(true,{transform:yn});blockScroll=mu$1(false,{transform:yn});autoZIndex=mu$1(true,{transform:yn});baseZIndex=mu$1(0,{transform:Bp$1});minX=mu$1(0,{transform:Bp$1});minY=mu$1(0,{transform:Bp$1});focusOnShow=mu$1(true,{transform:yn});maximizable=mu$1(false,{transform:yn});keepInViewport=mu$1(true,{transform:yn});focusTrap=mu$1(true,{transform:yn});maskMotionOptions=mu$1(void 0);computedMaskMotionOptions=gs$1(()=>l$1(l$1({},this.ptm("maskMotion")),this.maskMotionOptions()));maskEnterActiveClass=gs$1(()=>this.modal()?"p-overlay-mask-enter-active":"");maskLeaveActiveClass=gs$1(()=>this.modal()?"p-overlay-mask-leave-active":"");motionOptions=mu$1(void 0);computedMotionOptions=gs$1(()=>l$1(l$1({},this.ptm("motion")),this.motionOptions()));closeIcon=mu$1();closeAriaLabel=mu$1();closeTabindex=mu$1("0");minimizeIcon=mu$1();maximizeIcon=mu$1();closeButtonProps=mu$1({severity:"secondary",variant:"text",rounded:true});maximizeButtonProps=mu$1({severity:"secondary",variant:"text",rounded:true});visible=az(false);style=mu$1();position=mu$1();role=mu$1("dialog");appendTo=mu$1(void 0);onShow=sz();onHide=sz();onResizeInit=sz();onResizeEnd=sz();onDragStart=sz();onDragEnd=sz();onMaximize=sz();headerViewChild=cz("titlebar");contentViewChild=cz("content");footerViewChild=cz("footer");headerTemplate=uz("header",{descendants:false});contentTemplate=uz("content",{descendants:false});footerTemplate=uz("footer",{descendants:false});closeIconTemplate=uz("closeicon",{descendants:false});maximizeIconTemplate=uz("maximizeicon",{descendants:false});minimizeIconTemplate=uz("minimizeicon",{descendants:false});headlessTemplate=uz("headless",{descendants:false});$appendTo=gs$1(()=>this.appendTo()||this.config.overlayAppendTo());renderMask=U(false);renderDialog=U(false);maskVisible;container=U(null);wrapper;dragging;ariaId=j8$1("pn_id_")+"_header";ariaLabelledBy=gs$1(()=>this.header()!==null?this.ariaId:null);headerTemplateContext=gs$1(()=>({ariaLabelledBy:this.ariaLabelledBy()}));documentDragListener;documentDragEndListener;resizing;documentResizeListener;documentResizeEndListener;documentEscapeListener;maskClickListener;lastPageX;lastPageY;preventVisibleChangePropagation;maximized=U(false);preMaximizeContentHeight;preMaximizeContainerWidth;preMaximizeContainerHeight;preMaximizePageX;preMaximizePageY;id=j8$1("pn_id_");_style={};originalStyle;styleElement=null;_componentStyle=g(_o);overlayService=g(nq);zIndexForLayering;get maximizeLabel(){return this.translate(sq.ARIA,"maximizeLabel")}get minimizeLabel(){return this.translate(sq.ARIA,"minimizeLabel")}maximizeButtonAriaLabel=gs$1(()=>this.maximized()?this.minimizeLabel:this.maximizeLabel);maximizeButtonTabindex=gs$1(()=>this.maximizable()?"0":"-1");toggleIcon=gs$1(()=>this.maximized()?this.minimizeIcon():this.maximizeIcon());showToggleIcon=gs$1(()=>!!this.maximizeIcon()&&!this.maximizeIconTemplate()&&!this.minimizeIconTemplate());showDefaultMaximizeIcon=gs$1(()=>!this.maximizeIcon());showMaximizeSvg=gs$1(()=>!this.maximized()&&!this.maximizeIconTemplate());showMinimizeSvg=gs$1(()=>this.maximized()&&!this.minimizeIconTemplate());showMaximizeIconTemplate=gs$1(()=>!this.maximized()&&!!this.maximizeIconTemplate());showMinimizeIconTemplate=gs$1(()=>this.maximized()&&!!this.minimizeIconTemplate());showDefaultCloseIcon=gs$1(()=>!this.closeIconTemplate());scrollBlockerActive=gs$1(()=>this.modal()||this.blockScroll());focusTrapDisabled=gs$1(()=>this.focusTrap()===false);constructor(){super(),Ui(()=>{let e=this.visible();J(()=>{e&&!this.maskVisible&&(this.maskVisible=true,this.renderMask.set(true),this.renderDialog.set(true));});});}onInit(){this.breakpoints()&&this.createStyle();}_focus(e){if(e){let i=B3$1.getFocusableElements(e);if(i&&i.length>0)return i[0].focus(),true}return false}focus(e){let i=e??this.contentViewChild()?.nativeElement,n=this._focus(i);n||(n=this._focus(this.footerViewChild()?.nativeElement),n||(n=this._focus(this.headerViewChild()?.nativeElement),n||this._focus(this.contentViewChild()?.nativeElement)));}close(e){this.visible.set(false),e.preventDefault();}enableModality(){this.closable()&&this.dismissableMask()&&(this.maskClickListener=this.renderer.listen(this.wrapper,"mousedown",e=>{this.wrapper&&this.wrapper.isSameNode(e.target)&&this.close(e);})),this.modal()&&X9$1();}disableModality(){if(this.wrapper){this.dismissableMask()&&this.unbindMaskClickListener();let e=document.querySelectorAll('[data-p-scrollblocker-active="true"]');this.modal()&&e&&e.length==1&&Y9$1(),this.cd.destroyed||this.cd.detectChanges();}}maximize(){this.maximized.update(e=>!e),!this.modal()&&!this.blockScroll()&&(this.maximized()?X9$1():Y9$1()),this.onMaximize.emit({maximized:this.maximized()});}unbindMaskClickListener(){this.maskClickListener&&(this.maskClickListener(),this.maskClickListener=null);}moveOnTop(){this.autoZIndex()?(N4$1.set("modal",this.container(),this.baseZIndex()+this.config.zIndex.modal),this.wrapper.style.zIndex=String(parseInt(this.container().style.zIndex,10)-1)):this.zIndexForLayering=N4$1.generateZIndex("modal",(this.baseZIndex()??0)+this.config.zIndex.modal);}createStyle(){if(BG(this.platformId)&&!this.styleElement&&!this.$unstyled()){let e=this.renderer.createElement("style");PI(e,"nonce",this.config?.csp()?.nonce),this.renderer.appendChild(this.document.head,e);let i="";for(let n in this.breakpoints())i+=` + @media screen and (max-width: ${n}) { + .p-dialog[${this.id}]:not(.p-dialog-maximized) { + width: ${this.breakpoints()[n]} !important; + } + } + `;this.renderer.setProperty(e,"innerHTML",i),PI(e,"nonce",this.config?.csp()?.nonce),this.styleElement=e;}}initDrag(e){e.target.closest("div")?.getAttribute("data-pc-section")!=="headeractions"&&this.draggable()&&(this.dragging=true,this.lastPageX=e.pageX,this.lastPageY=e.pageY,this.container().style.margin="0",this.document.body.setAttribute("data-p-unselectable-text","true"),!this.$unstyled()&&w4$1(this.document.body,{"user-select":"none"}),this.onDragStart.emit(e));}onDrag(e){if(this.dragging&&this.container()){let i=I4$1(this.container()),n=uO(this.container()),o=e.pageX-this.lastPageX,r=e.pageY-this.lastPageY,u=this.container().getBoundingClientRect(),M=getComputedStyle(this.container()),z=parseFloat(M.marginLeft),T=parseFloat(M.marginTop),L=u.left+o-z,K=u.top+r-T,$=OI();this.container().style.position="fixed",this.keepInViewport()?(L>=this.minX()&&L+i<$.width&&(this._style.left=`${L}px`,this.lastPageX=e.pageX,this.container().style.left=`${L}px`),K>=this.minY()&&K+n<$.height&&(this._style.top=`${K}px`,this.lastPageY=e.pageY,this.container().style.top=`${K}px`)):(this.lastPageX=e.pageX,this.container().style.left=`${L}px`,this.lastPageY=e.pageY,this.container().style.top=`${K}px`),this.overlayService.emitParentDrag(this.container());}}endDrag(e){this.dragging&&(this.dragging=false,this.document.body.removeAttribute("data-p-unselectable-text"),!this.$unstyled()&&(this.document.body.style["user-select"]=""),this.cd.detectChanges(),this.onDragEnd.emit(e));}resetPosition(){this.container().style.position="",this.container().style.left="",this.container().style.top="",this.container().style.margin="";}center(){this.resetPosition();}initResize(e){this.resizable()&&(this.resizing=true,this.lastPageX=e.pageX,this.lastPageY=e.pageY,this.document.body.setAttribute("data-p-unselectable-text","true"),!this.$unstyled()&&w4$1(this.document.body,{"user-select":"none"}),this.onResizeInit.emit(e));}onResize(e){if(this.resizing){let i=e.pageX-this.lastPageX,n=e.pageY-this.lastPageY,o=I4$1(this.container()),r=uO(this.container()),u=uO(this.contentViewChild()?.nativeElement),M=o+i,z=r+n,T=this.container().style.minWidth,L=this.container().style.minHeight,K=this.container().getBoundingClientRect(),$=OI();(!parseInt(this.container().style.top)||!parseInt(this.container().style.left))&&(M+=i,z+=n),(!T||M>parseInt(T))&&K.left+M<$.width&&(this._style.width=M+"px",this.container().style.width=this._style.width),(!L||z>parseInt(L))&&K.top+z<$.height&&(this.contentViewChild().nativeElement.style.height=u+z-r+"px",this._style.height&&(this._style.height=z+"px",this.container().style.height=this._style.height)),this.lastPageX=e.pageX,this.lastPageY=e.pageY;}}resizeEnd(e){this.resizing&&(this.resizing=false,this.document.body.removeAttribute("data-p-unselectable-text"),!this.$unstyled()&&(this.document.body.style["user-select"]=""),this.onResizeEnd.emit(e));}bindGlobalListeners(){this.draggable()&&(this.bindDocumentDragListener(),this.bindDocumentDragEndListener()),this.resizable()&&this.bindDocumentResizeListeners(),this.closeOnEscape()&&this.closable()&&this.bindDocumentEscapeListener();}unbindGlobalListeners(){this.unbindDocumentDragListener(),this.unbindDocumentDragEndListener(),this.unbindDocumentResizeListeners(),this.unbindDocumentEscapeListener();}bindDocumentDragListener(){this.documentDragListener||(this.documentDragListener=this.renderer.listen(this.document.defaultView,"mousemove",this.onDrag.bind(this)));}unbindDocumentDragListener(){this.documentDragListener&&(this.documentDragListener(),this.documentDragListener=null);}bindDocumentDragEndListener(){this.documentDragEndListener||(this.documentDragEndListener=this.renderer.listen(this.document.defaultView,"mouseup",this.endDrag.bind(this)));}unbindDocumentDragEndListener(){this.documentDragEndListener&&(this.documentDragEndListener(),this.documentDragEndListener=null);}bindDocumentResizeListeners(){!this.documentResizeListener&&!this.documentResizeEndListener&&(this.documentResizeListener=this.renderer.listen(this.document.defaultView,"mousemove",this.onResize.bind(this)),this.documentResizeEndListener=this.renderer.listen(this.document.defaultView,"mouseup",this.resizeEnd.bind(this)));}unbindDocumentResizeListeners(){this.documentResizeListener&&this.documentResizeEndListener&&(this.documentResizeListener(),this.documentResizeEndListener(),this.documentResizeListener=null,this.documentResizeEndListener=null);}bindDocumentEscapeListener(){let e=this.el?this.el.nativeElement.ownerDocument:this.document;this.documentEscapeListener=this.renderer.listen(e,"keydown",i=>{if(i.key=="Escape"){let n=this.container();if(!n)return;let o=N4$1.getCurrent();(parseInt(n.style.zIndex)==o||this.zIndexForLayering==o)&&this.close(i);}});}unbindDocumentEscapeListener(){this.documentEscapeListener&&(this.documentEscapeListener(),this.documentEscapeListener=null);}appendContainer(){this.$appendTo()!=="self"&&b4$1(this.document.body,this.wrapper);}restoreAppend(){this.container()&&this.$appendTo()!=="self"&&this.renderer.appendChild(this.el.nativeElement,this.wrapper);}onBeforeEnter(e){this.container.set(e.element),this.wrapper=this.container()?.parentElement,this.$attrSelector&&this.container()?.setAttribute(this.$attrSelector,""),this.appendContainer(),this.moveOnTop(),this.bindGlobalListeners(),this.container()?.setAttribute(this.id,""),this.modal()&&this.enableModality();}onAfterEnter(){this.focusOnShow()&&this.focus(),this.onShow.emit({});}onBeforeLeave(){this.modal()&&(this.maskVisible=false);}onAfterLeave(){this.onContainerDestroy(),this.renderDialog.set(false),this.modal()?this.renderMask.set(false):this.maskVisible=false,this.onHide.emit({});}onMaskAfterLeave(){this.renderDialog()||this.renderMask.set(false);}onContainerDestroy(){this.unbindGlobalListeners(),this.dragging=false,this.maximized()&&(RI(this.document.body,"p-overflow-hidden"),this.document.body.style.removeProperty("--px-scrollbar-width"),this.maximized.set(false)),this.modal()&&this.disableModality(),this.document.querySelectorAll('[data-p-scrollblocker-active="true"]').length<=1&&tO(this.document.body,"p-overflow-hidden")&&RI(this.document.body,"p-overflow-hidden"),this.container()&&this.autoZIndex()&&N4$1.clear(this.container()),this.zIndexForLayering&&N4$1.revertZIndex(this.zIndexForLayering),this.container.set(null),this.wrapper=null,this._style=this.originalStyle?l$1({},this.originalStyle):{};}destroyStyle(){this.styleElement&&(this.renderer.removeChild(this.document.head,this.styleElement),this.styleElement=null);}onDestroy(){this.container()&&(this.restoreAppend(),this.onContainerDestroy()),this.destroyStyle();}dataP=gs$1(()=>this.cn({maximized:this.maximized(),modal:this.modal()}));static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-dialog"]],contentQueries:function(i,n,o){i&1&&QE(o,n.headerTemplate,Wu,4)(o,n.contentTemplate,go,4)(o,n.footerTemplate,bo,4)(o,n.closeIconTemplate,Yu,4)(o,n.maximizeIconTemplate,Zu,4)(o,n.minimizeIconTemplate,Qu,4)(o,n.headlessTemplate,Xu,4),i&2&&IM(7);},viewQuery:function(i,n){i&1&&XE(n.headerViewChild,Ju,5)(n.contentViewChild,go,5)(n.footerViewChild,bo,5),i&2&&IM(3);},inputs:{hostName:[1,"hostName"],header:[1,"header"],draggable:[1,"draggable"],resizable:[1,"resizable"],contentStyle:[1,"contentStyle"],contentStyleClass:[1,"contentStyleClass"],modal:[1,"modal"],closeOnEscape:[1,"closeOnEscape"],dismissableMask:[1,"dismissableMask"],rtl:[1,"rtl"],closable:[1,"closable"],breakpoints:[1,"breakpoints"],styleClass:[1,"styleClass"],maskStyleClass:[1,"maskStyleClass"],maskStyle:[1,"maskStyle"],showHeader:[1,"showHeader"],blockScroll:[1,"blockScroll"],autoZIndex:[1,"autoZIndex"],baseZIndex:[1,"baseZIndex"],minX:[1,"minX"],minY:[1,"minY"],focusOnShow:[1,"focusOnShow"],maximizable:[1,"maximizable"],keepInViewport:[1,"keepInViewport"],focusTrap:[1,"focusTrap"],maskMotionOptions:[1,"maskMotionOptions"],motionOptions:[1,"motionOptions"],closeIcon:[1,"closeIcon"],closeAriaLabel:[1,"closeAriaLabel"],closeTabindex:[1,"closeTabindex"],minimizeIcon:[1,"minimizeIcon"],maximizeIcon:[1,"maximizeIcon"],closeButtonProps:[1,"closeButtonProps"],maximizeButtonProps:[1,"maximizeButtonProps"],visible:[1,"visible"],style:[1,"style"],position:[1,"position"],role:[1,"role"],appendTo:[1,"appendTo"]},outputs:{visible:"visibleChange",onShow:"onShow",onHide:"onHide",onResizeInit:"onResizeInit",onResizeEnd:"onResizeEnd",onDragStart:"onDragStart",onDragEnd:"onDragEnd",onMaximize:"onMaximize"},features:[nN([_o,{provide:yo,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:tm,decls:1,vars:1,consts:[["container",""],["content",""],["titlebar",""],["footer",""],[3,"class","style","pBind","pMotion","pMotionAppear","pMotionEnterActiveClass","pMotionLeaveActiveClass","pMotionOptions"],[3,"pMotionOnAfterLeave","pBind","pMotion","pMotionAppear","pMotionEnterActiveClass","pMotionLeaveActiveClass","pMotionOptions"],["pFocusTrap","",3,"class","style","pBind","pFocusTrapDisabled","pMotion","pMotionAppear","pMotionName","pMotionOptions"],["pFocusTrap","",3,"pMotionOnBeforeEnter","pMotionOnAfterEnter","pMotionOnBeforeLeave","pMotionOnAfterLeave","pBind","pFocusTrapDisabled","pMotion","pMotionAppear","pMotionName","pMotionOptions"],[4,"ngTemplateOutlet"],[3,"class","pBind","z-index"],[3,"class","pBind"],[3,"pBind"],[3,"mousedown","pBind"],[3,"id","class","pBind"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],["type","button","iconOnly","",3,"pButton","class","tabindex","pButtonPT","pButtonUnstyled"],[3,"id","pBind"],["type","button","iconOnly","",3,"click","keydown.enter","pButton","tabindex","pButtonPT","pButtonUnstyled"],[3,"class"],["data-p-icon","window-maximize"],["data-p-icon","window-minimize"],["data-p-icon","times"]],template:function(i,n){i&1&&(uu$1(em),rM(0,Sm,2,13,"div",4)),i&2&&oM(n.renderMask()?0:-1);},dependencies:[cA,Ei,uo,co$1,mo,fo,iq,L,De,Mo$1],encapsulation:2})}return t})();var vo=` + .p-confirmdialog .p-dialog-content { + display: flex; + align-items: center; + gap: dt('confirmdialog.content.gap'); + } + + .p-confirmdialog-icon { + color: dt('confirmdialog.icon.color'); + font-size: dt('confirmdialog.icon.size'); + width: dt('confirmdialog.icon.size'); + height: dt('confirmdialog.icon.size'); + } + + .p-confirmdialog-message { + color: dt('confirmdialog.message.color'); + font-weight: dt('confirmdialog.message.font.weight'); + font-size: dt('confirmdialog.message.font.size'); + } +`;var Nm=["header"],Lm=["footer"],Fm=["rejecticon"],Om=["accepticon"],Bm=["message"],Vm=["icon"],Pm=["headless"],Rm=[[["p-footer"]]],Am=["p-footer"];function Hm(t,a){t&1&&qE(0);}function $m(t,a){if(t&1&&VE(0,Hm,1,0,"ng-container",6),t&2){let e=EM(2);zE("ngTemplateOutlet",e.headlessTemplate())("ngTemplateOutletContext",e.headlessContext());}}function Gm(t,a){t&1&&VE(0,$m,1,2,"ng-template",null,2,pN);}function Um(t,a){t&1&&qE(0);}function Km(t,a){if(t&1&&VE(0,Um,1,0,"ng-container",7),t&2){let e=EM(3);zE("ngTemplateOutlet",e.headerTemplate());}}function qm(t,a){t&1&&VE(0,Km,1,1,"ng-template",null,4,pN);}function jm(t,a){t&1&&qE(0);}function Wm(t,a){if(t&1&&VE(0,jm,1,0,"ng-container",7),t&2){let e=EM(3);zE("ngTemplateOutlet",e.iconTemplate());}}function Ym(t,a){if(t&1&&au$1(0,"i",10),t&2){let e=EM(4);jM(e.cn(e.cx("icon"),e.option("icon"))),zE("pBind",e.ptm("icon"));}}function Zm(t,a){if(t&1&&rM(0,Ym,1,3,"i",9),t&2){let e=EM(3);oM(e.option("icon")?0:-1);}}function Qm(t,a){t&1&&qE(0);}function Xm(t,a){if(t&1&&VE(0,Qm,1,0,"ng-container",6),t&2){let e=EM(3);zE("ngTemplateOutlet",e.messageTemplate())("ngTemplateOutletContext",e.messageContext());}}function Jm(t,a){if(t&1&&au$1(0,"span",11),t&2){let e=EM(3);jM(e.cx("message")),zE("pBind",e.ptm("message"))("innerHTML",e.option("message"),aT);}}function ef(t,a){if(t&1&&(rM(0,Wm,1,1,"ng-container")(1,Zm,1,1),rM(2,Xm,1,2,"ng-container")(3,Jm,1,4,"span",8)),t&2){let e=EM(2);oM(e.iconTemplate()?0:!e.iconTemplate()&&!e.messageTemplate()?1:-1),n_(2),oM(e.messageTemplate()?2:3);}}function tf(t,a){if(t&1&&(rM(0,qm,2,0),VE(1,ef,4,2,"ng-template",null,3,pN)),t&2){let e=EM();oM(e.headerTemplate()?0:-1);}}function nf(t,a){t&1&&qE(0);}function of(t,a){if(t&1&&(lu$1(0),VE(1,nf,1,0,"ng-container",7)),t&2){let e=EM(2);n_(),zE("ngTemplateOutlet",e.footerTemplate());}}function af(t,a){if(t&1&&au$1(0,"i",10),t&2){let e=EM(5);jM(e.option("rejectIcon")),zE("pBind",e.ptm("pcRejectButton").icon);}}function lf(t,a){if(t&1&&rM(0,af,1,3,"i",9),t&2){let e=EM(4);oM(e.option("rejectIcon")?0:-1);}}function rf(t,a){t&1&&qE(0);}function sf(t,a){if(t&1&&VE(0,rf,1,0,"ng-container",7),t&2){let e=EM(4);zE("ngTemplateOutlet",e.rejectIconTemplate());}}function cf(t,a){if(t&1){let e=hM();Bc$1(0,"button",13),cu$1("click",function(){Rm$1(e);let n=EM(3);return xm$1(n.onReject())}),rM(1,lf,1,1),rM(2,sf,1,1,"ng-container"),YM(3),bp$1();}if(t&2){let e=EM(3);jM(e.getButtonStyleClass("pcRejectButton","rejectButtonStyleClass")),zE("pButton",e.getRejectButtonProps())("pAutoFocus",e.autoFocusReject)("pButtonPT",e.ptm("pcRejectButton"))("pButtonUnstyled",e.unstyled()),su$1("aria-label",e.option("rejectButtonProps","ariaLabel")),n_(),oM(e.rejectIcon()&&!e.rejectIconTemplate()?1:-1),n_(),oM(e.rejectIconTemplate()?2:-1),n_(),xp$1(" ",e.rejectButtonLabel," ");}}function df(t,a){if(t&1&&au$1(0,"i",10),t&2){let e=EM(5);jM(e.option("acceptIcon")),zE("pBind",e.ptm("pcAcceptButton").icon);}}function pf(t,a){if(t&1&&rM(0,df,1,3,"i",9),t&2){let e=EM(4);oM(e.option("acceptIcon")?0:-1);}}function uf(t,a){t&1&&qE(0);}function mf(t,a){if(t&1&&VE(0,uf,1,0,"ng-container",7),t&2){let e=EM(4);zE("ngTemplateOutlet",e.acceptIconTemplate());}}function ff(t,a){if(t&1){let e=hM();Bc$1(0,"button",13),cu$1("click",function(){Rm$1(e);let n=EM(3);return xm$1(n.onAccept())}),rM(1,pf,1,1),rM(2,mf,1,1,"ng-container"),YM(3),bp$1();}if(t&2){let e=EM(3);jM(e.getButtonStyleClass("pcAcceptButton","acceptButtonStyleClass")),zE("pButton",e.getAcceptButtonProps())("pAutoFocus",e.autoFocusAccept)("pButtonPT",e.ptm("pcAcceptButton"))("pButtonUnstyled",e.unstyled()),su$1("aria-label",e.option("acceptButtonProps","ariaLabel")),n_(),oM(e.acceptIcon()&&!e.acceptIconTemplate()?1:-1),n_(),oM(e.acceptIconTemplate()?2:-1),n_(),xp$1(" ",e.acceptButtonLabel," ");}}function hf(t,a){if(t&1&&(rM(0,cf,4,10,"button",12),rM(1,ff,4,10,"button",12)),t&2){let e=EM(2);oM(e.option("rejectVisible")?0:-1),n_(),oM(e.option("acceptVisible")?1:-1);}}function gf(t,a){if(t&1&&(rM(0,of,2,1),rM(1,hf,2,2)),t&2){let e=EM();oM(e.footerTemplate()?0:-1),n_(),oM(e.footerTemplate()?-1:1);}}var bf={root:"p-confirmdialog",icon:"p-confirmdialog-icon",message:"p-confirmdialog-message",pcRejectButton:"p-confirmdialog-reject-button",pcAcceptButton:"p-confirmdialog-accept-button"},xo=(()=>{class t extends WI{name="confirmdialog";style=vo;classes=bf;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var Co=new I$1("CONFIRMDIALOG_INSTANCE"),Mo=(()=>{class t extends I{componentName="ConfirmDialog";$pcConfirmDialog=g(Co,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("host"));}header=mu$1();icon=mu$1();message=mu$1();style=mu$1();styleClass=mu$1();maskStyleClass=mu$1();acceptIcon=mu$1();acceptLabel=mu$1();closeAriaLabel=mu$1();acceptAriaLabel=mu$1();acceptVisible=mu$1(true,{transform:yn});rejectIcon=mu$1();rejectLabel=mu$1();rejectAriaLabel=mu$1();rejectVisible=mu$1(true,{transform:yn});acceptButtonStyleClass=mu$1();rejectButtonStyleClass=mu$1();closeOnEscape=mu$1(true,{transform:yn});dismissableMask=mu$1(void 0,{transform:yn});blockScroll=mu$1(true,{transform:yn});rtl=mu$1(false,{transform:yn});closable=mu$1(true,{transform:yn});appendTo=mu$1("body");key=mu$1();autoZIndex=mu$1(true,{transform:yn});baseZIndex=mu$1(0,{transform:Bp$1});motionOptions=mu$1();maskMotionOptions=mu$1();focusTrap=mu$1(true,{transform:yn});defaultFocus=mu$1("accept");breakpoints=mu$1();modal=mu$1(true,{transform:yn});visible=az(false);position=mu$1("center");draggable=mu$1(true,{transform:yn});onHide=sz();footer=uz(oq,{descendants:false});_componentStyle=g(xo);headerTemplate=uz("header",{descendants:false});footerTemplate=uz("footer",{descendants:false});rejectIconTemplate=uz("rejecticon",{descendants:false});acceptIconTemplate=uz("accepticon",{descendants:false});messageTemplate=uz("message",{descendants:false});iconTemplate=uz("icon",{descendants:false});headlessTemplate=uz("headless",{descendants:false});onAcceptCallback=this.onAccept.bind(this);onRejectCallback=this.onReject.bind(this);headlessContext=gs$1(()=>({$implicit:this.confirmation(),onAccept:this.onAcceptCallback,onReject:this.onRejectCallback}));messageContext=gs$1(()=>({$implicit:this.confirmation()}));$appendTo=gs$1(()=>this.appendTo()||this.config.overlayAppendTo());computedMotionOptions=gs$1(()=>l$1(l$1({},this.ptm("motion")),this.motionOptions()));computedMaskMotionOptions=gs$1(()=>l$1(l$1({},this.ptm("maskMotion")),this.maskMotionOptions()));get focusTarget(){return this.option("defaultFocus")??this.defaultFocus()}get autoFocusAccept(){return this.focusTarget==="accept"}get autoFocusReject(){return this.focusTarget==="reject"}confirmation=U(null);maskVisible=U(false);dialog;wrapper;contentContainer;subscription;preWidth;styleElement=null;id=j8$1("pn_id_");ariaLabelledBy=this.getAriaLabelledBy();translationSubscription;confirmationService=g(X4$1);constructor(){super(),Ui(()=>{this.visible()&&!this.maskVisible()&&this.maskVisible.set(true);}),this.subscription=this.confirmationService.requireConfirmation$.subscribe(e=>{if(!e){this.hide();return}e.key===this.key()&&(this.confirmation.set(e),this.visible.set(true),e.accept&&(e.acceptEvent=new Ae,e.acceptEvent.subscribe(e.accept)),e.reject&&(e.rejectEvent=new Ae,e.rejectEvent.subscribe(e.reject)));});}onInit(){this.breakpoints()&&this.createStyle();}getAriaLabelledBy(){return this.option("header")?j8$1("pn_id_")+"_header":null}option(e,i){let n=this.confirmation();if(n&&n.hasOwnProperty(e))return i?n[i]:n[e];let o=this;if(o.hasOwnProperty(e)){let r=i?o[i]:o[e];return typeof r=="function"?r():r}}getButtonStyleClass(e,i){let n=this.cx(e),o=this.option(i);return [n,o].filter(Boolean).join(" ")}createStyle(){if(!this.styleElement){this.styleElement=this.document.createElement("style"),this.styleElement.type="text/css",PI(this.styleElement,"nonce",this.config?.csp()?.nonce),this.document.head.appendChild(this.styleElement);let e="";for(let i in this.breakpoints)e+=` + @media screen and (max-width: ${i}) { + .p-dialog[${this.id}] { + width: ${this.breakpoints[i]} !important; + } + } + `;this.styleElement.innerHTML=e,PI(this.styleElement,"nonce",this.config?.csp()?.nonce);}}close(){this.confirmation()?.rejectEvent?.emit(lO.CANCEL),this.hide(lO.CANCEL);}hide(e){this.onHide.emit(e),this.visible.set(false),this.unsubscribeConfirmationEvents();}onDialogHide(){this.confirmation.set(null);}destroyStyle(){this.styleElement&&(this.document.head.removeChild(this.styleElement),this.styleElement=null);}onDestroy(){this.subscription.unsubscribe(),this.unsubscribeConfirmationEvents(),this.translationSubscription&&this.translationSubscription.unsubscribe(),this.destroyStyle();}onVisibleChange(e){e?this.visible.set(e):this.close();}onAccept(){this.confirmation()?.acceptEvent?.emit(),this.hide(lO.ACCEPT);}onReject(){this.confirmation()?.rejectEvent?.emit(lO.REJECT),this.hide(lO.REJECT);}unsubscribeConfirmationEvents(){this.confirmation()?.acceptEvent?.unsubscribe(),this.confirmation()?.rejectEvent?.unsubscribe();}get acceptButtonLabel(){return this.option("acceptLabel")||this.getAcceptButtonProps()?.label||this.translate(sq.ACCEPT)}get rejectButtonLabel(){return this.option("rejectLabel")||this.getRejectButtonProps()?.label||this.translate(sq.REJECT)}getAcceptButtonProps(){return this.option("acceptButtonProps")}getRejectButtonProps(){return this.option("rejectButtonProps")}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-confirmdialog"],["p-confirm-dialog"]],contentQueries:function(i,n,o){i&1&&QE(o,n.footer,oq,4)(o,n.headerTemplate,Nm,4)(o,n.footerTemplate,Lm,4)(o,n.rejectIconTemplate,Fm,4)(o,n.acceptIconTemplate,Om,4)(o,n.messageTemplate,Bm,4)(o,n.iconTemplate,Vm,4)(o,n.headlessTemplate,Pm,4),i&2&&IM(8);},inputs:{header:[1,"header"],icon:[1,"icon"],message:[1,"message"],style:[1,"style"],styleClass:[1,"styleClass"],maskStyleClass:[1,"maskStyleClass"],acceptIcon:[1,"acceptIcon"],acceptLabel:[1,"acceptLabel"],closeAriaLabel:[1,"closeAriaLabel"],acceptAriaLabel:[1,"acceptAriaLabel"],acceptVisible:[1,"acceptVisible"],rejectIcon:[1,"rejectIcon"],rejectLabel:[1,"rejectLabel"],rejectAriaLabel:[1,"rejectAriaLabel"],rejectVisible:[1,"rejectVisible"],acceptButtonStyleClass:[1,"acceptButtonStyleClass"],rejectButtonStyleClass:[1,"rejectButtonStyleClass"],closeOnEscape:[1,"closeOnEscape"],dismissableMask:[1,"dismissableMask"],blockScroll:[1,"blockScroll"],rtl:[1,"rtl"],closable:[1,"closable"],appendTo:[1,"appendTo"],key:[1,"key"],autoZIndex:[1,"autoZIndex"],baseZIndex:[1,"baseZIndex"],motionOptions:[1,"motionOptions"],maskMotionOptions:[1,"maskMotionOptions"],focusTrap:[1,"focusTrap"],defaultFocus:[1,"defaultFocus"],breakpoints:[1,"breakpoints"],modal:[1,"modal"],visible:[1,"visible"],position:[1,"position"],draggable:[1,"draggable"]},outputs:{visible:"visibleChange",onHide:"onHide"},features:[nN([xo,{provide:Co,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:Am,decls:6,vars:22,consts:[["dialog",""],["footer",""],["headless",""],["content",""],["header",""],["role","alertdialog",3,"visibleChange","onHide","pt","visible","closable","styleClass","modal","header","closeOnEscape","blockScroll","appendTo","position","dismissableMask","draggable","baseZIndex","autoZIndex","focusOnShow","motionOptions","maskMotionOptions","maskStyleClass","unstyled"],[4,"ngTemplateOutlet","ngTemplateOutletContext"],[4,"ngTemplateOutlet"],[3,"class","pBind","innerHTML"],[3,"class","pBind"],[3,"pBind"],[3,"pBind","innerHTML"],["type","button",3,"pButton","class","pAutoFocus","pButtonPT","pButtonUnstyled"],["type","button",3,"click","pButton","pAutoFocus","pButtonPT","pButtonUnstyled"]],template:function(i,n){i&1&&(uu$1(Rm),Bc$1(0,"p-dialog",5,0),cu$1("visibleChange",function(r){return n.onVisibleChange(r)})("onHide",function(){return n.onDialogHide()}),rM(2,Gm,2,0)(3,tf,3,1),VE(4,gf,2,2,"ng-template",null,1,pN),bp$1()),i&2&&(PM(n.style()),zE("pt",n.pt)("visible",n.visible())("closable",n.option("closable"))("styleClass",n.cn(n.cx("root"),n.styleClass()))("modal",n.option("modal"))("header",n.option("header"))("closeOnEscape",n.option("closeOnEscape"))("blockScroll",n.option("blockScroll"))("appendTo",n.$appendTo())("position",n.position())("dismissableMask",n.dismissableMask())("draggable",n.draggable())("baseZIndex",n.baseZIndex())("autoZIndex",n.autoZIndex())("focusOnShow",false)("motionOptions",n.computedMotionOptions())("maskMotionOptions",n.computedMaskMotionOptions())("maskStyleClass",n.cn(n.cx("mask"),n.maskStyleClass()))("unstyled",n.unstyled()),n_(2),oM(n.headlessTemplate()?2:3));},dependencies:[cA,Ei,Z8$1,K1,iq,L],encapsulation:2})}return t})();var fi=class{_document;_textarea;constructor(a,e){this._document=e;let i=this._textarea=this._document.createElement("textarea"),n=i.style;n.position="fixed",n.top=n.opacity="0",n.left="-999em",i.setAttribute("aria-hidden","true"),i.value=a,i.readOnly=true,(this._document.fullscreenElement||this._document.body).appendChild(i);}copy(){let a=this._textarea,e=false;try{if(a){let i=this._document.activeElement;a.select(),a.setSelectionRange(0,a.value.length),e=this._document.execCommand("copy"),i&&i.focus();}}catch{}return e}destroy(){let a=this._textarea;a&&(a.remove(),this._textarea=void 0);}},_f=(()=>{class t{_document=g(G);copy(e){let i=this.beginCopy(e),n=i.copy();return i.destroy(),n}beginCopy(e){return new fi(e,this._document)}static \u0275fac=function(i){return new(i||t)};static \u0275prov=K({token:t,factory:t.\u0275fac})}return t})(),yf=new I$1("CDK_COPY_TO_CLIPBOARD_CONFIG"),wo=(()=>{class t{_clipboard=g(_f);_ngZone=g(de);text="";attempts=1;copied=new Ae;_pending=new Set;_destroyed=false;_currentTimeout;constructor(){let e=g(yf,{optional:true});e&&e.attempts!=null&&(this.attempts=e.attempts);}copy(e=this.attempts){if(e=Math.min(e,50),e>1){let i=e,n=this._clipboard.beginCopy(this.text);this._pending.add(n);let o=()=>{let r=n.copy();!r&&--i&&!this._destroyed?this._currentTimeout=this._ngZone.runOutsideAngular(()=>setTimeout(o,1)):(this._currentTimeout=null,this._pending.delete(n),n.destroy(),this.copied.emit(r));};o();}else this.copied.emit(this._clipboard.copy(this.text));}ngOnDestroy(){this._currentTimeout&&clearTimeout(this._currentTimeout),this._pending.forEach(e=>e.destroy()),this._pending.clear(),this._destroyed=true;}static \u0275fac=function(i){return new(i||t)};static \u0275dir=xt({type:t,selectors:[["","cdkCopyToClipboard",""]],hostBindings:function(i,n){i&1&&cu$1("click",function(){return n.copy()});},inputs:{text:[0,"cdkCopyToClipboard","text"],attempts:[0,"cdkCopyToClipboardAttempts","attempts"]},outputs:{copied:"cdkCopyToClipboardCopied"}})}return t})();var zo=(()=>{class t{el=g(Rt);renderer=g(jr$1);selector=mu$1(void 0,{alias:"pStyleClass"});enterFromClass=mu$1();enterActiveClass=mu$1();enterToClass=mu$1();leaveFromClass=mu$1();leaveActiveClass=mu$1();leaveToClass=mu$1();hideOnOutsideClick=mu$1(void 0,{transform:yn});toggleClass=mu$1();hideOnEscape=mu$1(void 0,{transform:yn});hideOnResize=mu$1(void 0,{transform:yn});resizeSelector=mu$1();eventListener;documentClickListener;documentKeydownListener;windowResizeListener;resizeObserver;target;enterListener;leaveListener;animating;_enterClass;_leaveClass;_resizeTarget;clickListener(){this.target||=aO(this.selector(),this.el.nativeElement),this.toggleClass()?this.toggle():this.target?.offsetParent===null?this.enter():this.leave();}toggle(){let e=this.toggleClass();tO(this.target,e)?RI(this.target,e):AI(this.target,e);}enter(){let e=this.enterActiveClass(),i=this.enterFromClass(),n=this.enterToClass();e?this.animating||(this.animating=true,e.includes("slidedown")&&(this.target.style.height="0px",RI(this.target,i||"hidden"),this.target.style.maxHeight=this.target.scrollHeight+"px",AI(this.target,i||"hidden"),this.target.style.height=""),AI(this.target,e),i&&RI(this.target,i),this.enterListener=this.renderer.listen(this.target,"animationend",()=>{RI(this.target,e),n&&AI(this.target,n),this.enterListener&&this.enterListener(),e.includes("slidedown")&&(this.target.style.maxHeight=""),this.animating=false;})):(i&&RI(this.target,i),n&&AI(this.target,n)),this.hideOnOutsideClick()&&this.bindDocumentClickListener(),this.hideOnEscape()&&this.bindDocumentKeydownListener(),this.hideOnResize()&&this.bindResizeListener();}leave(){let e=this.leaveActiveClass(),i=this.leaveFromClass(),n=this.leaveToClass();e?this.animating||(this.animating=true,AI(this.target,e),i&&RI(this.target,i),this.leaveListener=this.renderer.listen(this.target,"animationend",()=>{RI(this.target,e),n&&AI(this.target,n),this.leaveListener&&this.leaveListener(),this.animating=false;})):(i&&RI(this.target,i),n&&AI(this.target,n)),this.hideOnOutsideClick()&&this.unbindDocumentClickListener(),this.hideOnEscape()&&this.unbindDocumentKeydownListener(),this.hideOnResize()&&this.unbindResizeListener();}bindDocumentClickListener(){this.documentClickListener||(this.documentClickListener=this.renderer.listen(this.el.nativeElement.ownerDocument,"click",e=>{!this.isVisible()||getComputedStyle(this.target).getPropertyValue("position")==="static"?this.unbindDocumentClickListener():this.isOutsideClick(e)&&this.leave();}));}bindDocumentKeydownListener(){this.documentKeydownListener||(this.documentKeydownListener=this.renderer.listen(this.el.nativeElement.ownerDocument,"keydown",e=>{let{key:i,keyCode:n,which:o}=e;(!this.isVisible()||getComputedStyle(this.target).getPropertyValue("position")==="static")&&this.unbindDocumentKeydownListener(),this.isVisible()&&i==="Escape"&&n===27&&o===27&&this.leave();}));}isVisible(){return this.target.offsetParent!==null}isOutsideClick(e){return !this.el.nativeElement.isSameNode(e.target)&&!this.el.nativeElement.contains(e.target)&&!this.target.contains(e.target)}unbindDocumentClickListener(){this.documentClickListener&&(this.documentClickListener(),this.documentClickListener=null);}unbindDocumentKeydownListener(){this.documentKeydownListener&&(this.documentKeydownListener(),this.documentKeydownListener=null);}bindResizeListener(){this._resizeTarget=aO(this.resizeSelector()),Kr$1(this._resizeTarget)?this.bindElementResizeListener():this.bindWindowResizeListener();}unbindResizeListener(){this.unbindWindowResizeListener(),this.unbindElementResizeListener();}bindWindowResizeListener(){this.windowResizeListener||(this.windowResizeListener=this.renderer.listen(window,"resize",()=>{this.isVisible()?this.leave():this.unbindWindowResizeListener();}));}unbindWindowResizeListener(){this.windowResizeListener&&(this.windowResizeListener(),this.windowResizeListener=null);}bindElementResizeListener(){if(!this.resizeObserver&&this._resizeTarget){let e=true;this.resizeObserver=new ResizeObserver(()=>{if(e){e=false;return}this.isVisible()&&this.leave();}),this.resizeObserver.observe(this._resizeTarget);}}unbindElementResizeListener(){this.resizeObserver&&(this.resizeObserver.disconnect(),this.resizeObserver=void 0);}ngOnDestroy(){this.target=null,this._resizeTarget=null,this.eventListener&&this.eventListener(),this.unbindDocumentClickListener(),this.unbindDocumentKeydownListener(),this.unbindResizeListener();}static \u0275fac=function(i){return new(i||t)};static \u0275dir=xt({type:t,selectors:[["","pStyleClass",""]],hostBindings:function(i,n){i&1&&cu$1("click",function(){return n.clickListener()});},inputs:{selector:[1,"pStyleClass","selector"],enterFromClass:[1,"enterFromClass"],enterActiveClass:[1,"enterActiveClass"],enterToClass:[1,"enterToClass"],leaveFromClass:[1,"leaveFromClass"],leaveActiveClass:[1,"leaveActiveClass"],leaveToClass:[1,"leaveToClass"],hideOnOutsideClick:[1,"hideOnOutsideClick"],toggleClass:[1,"toggleClass"],hideOnEscape:[1,"hideOnEscape"],hideOnResize:[1,"hideOnResize"],resizeSelector:[1,"resizeSelector"]}})}return t})();var ko={prefix:"fab",iconName:"paypal",icon:[384,512,[],"f1ed","M111.9 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5l-74.6 0c-7.6 0-13.1-6.6-12.1-13.9L59.3 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4 .7-69.5-7-75.3 24.2zM357.6 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9l63.5 0c8.6 0 15.7-6.3 17.4-14.9 .7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z"]};var To={prefix:"fab",iconName:"github",icon:[512,512,[],"f09b","M216.5 362.5c-66-8-112.5-55.5-112.5-117 0-25 9-52 24-70-6.5-16.5-5.5-51.5 2-66 20-2.5 47 8 63 22.5 19-6 39-9 63.5-9s44.5 3 62.5 8.5c15.5-14 43-24.5 63-22 7 13.5 8 48.5 1.5 65.5 16 19 24.5 44.5 24.5 70.5 0 61.5-46.5 108-113.5 116.5 17 11 28.5 35 28.5 62.5l0 52C323 491.5 335.5 500 350.5 494 441 459.5 512 369 512 257 512 115.5 397 0 255.5 0S0 115.5 0 257c0 111 70.5 203 165.5 237.5 13.5 5 26.5-4 26.5-17.5l0-40c-7 3-16 5-24 5-33 0-52.5-18-66.5-51.5-5.5-13.5-11.5-21.5-23-23-6-.5-8-3-8-6 0-6 10-10.5 20-10.5 14.5 0 27 9 40 27.5 10 14.5 20.5 21 33 21s20.5-4.5 32-16c8.5-8.5 15-16 21-21z"]};var Do=` + .p-sidebar-layout { + display: flex; + width: 100%; + min-height: 100svh; + background: dt('sidebar.layout.background'); + } + + .p-sidebar { + display: block; + position: relative; + z-index: 20; + } + + .p-sidebar-backdrop { + z-index: 15; + } + + .p-sidebar[data-overlay] { + z-index: 30; + } + + .p-sidebar[data-collapsible-mode="none"] { + display: flex; + width: var(--px-sidebar-width); + flex-direction: column; + } + + .p-sidebar-spacer { + display: block; + position: relative; + flex-shrink: 0; + background: transparent; + transition: width 250ms cubic-bezier(.4, 0, .2, 1); + } + + .p-sidebar:not([data-overlay]) > .p-sidebar-spacer { + width: var(--px-sidebar-width); + } + + .p-sidebar[data-collapsible="offcanvas"]:not([data-overlay]) > .p-sidebar-spacer { + width: 0; + } + + .p-sidebar[data-collapsible="icon"]:not([data-overlay])>.p-sidebar-spacer { + width: var(--px-sidebar-width-icon); + } + + .p-sidebar[data-variant="floating"][data-collapsible="icon"]:not([data-overlay])>.p-sidebar-spacer { + width: calc(var(--px-sidebar-width-icon) + 1rem + 2px); + } + + .p-sidebar[data-variant="inset"][data-collapsible="icon"]:not([data-overlay])>.p-sidebar-spacer { + width: calc(var(--px-sidebar-width-icon) + 0.5rem); + } + + .p-sidebar[data-collapsible-mode="offcanvas"][data-overlay]>.p-sidebar-spacer { + width: 0; + } + + .p-sidebar[data-overlay]:not([data-collapsible-mode="offcanvas"])>.p-sidebar-spacer { + width: var(--px-sidebar-width-icon); + } + + .p-sidebar[data-overlay][data-variant="floating"]:not([data-collapsible-mode="offcanvas"])>.p-sidebar-spacer { + width: calc(var(--px-sidebar-width-icon) + 1rem + 2px); + } + + .p-sidebar[data-overlay][data-variant="inset"]:not([data-collapsible-mode="offcanvas"])>.p-sidebar-spacer { + width: calc(var(--px-sidebar-width-icon) + 0.5rem); + } + + .p-sidebar[data-side="right"]>.p-sidebar-spacer { + transform: rotate(180deg); + } + + .p-sidebar-aside { + position: absolute; + inset-block: 0; + z-index: 10; + display: flex; + height: 100%; + width: var(--px-sidebar-width); + transition: left 250ms cubic-bezier(.4, 0, .2, 1), right 250ms cubic-bezier(.4, 0, .2, 1), width 250ms cubic-bezier(.4, 0, .2, 1); + } + + .p-sidebar[data-overlay] .p-sidebar-aside { + z-index: 20; + } + + .p-sidebar[data-side="left"] .p-sidebar-aside { + left: 0; + } + + .p-sidebar[data-side="left"][data-collapsible="offcanvas"] .p-sidebar-aside { + left: calc(var(--px-sidebar-width) * -1); + } + + .p-sidebar[data-side="right"] .p-sidebar-aside { + right: 0; + } + + .p-sidebar[data-side="right"][data-collapsible="offcanvas"] .p-sidebar-aside { + right: calc(var(--px-sidebar-width) * -1); + } + + .p-sidebar[data-variant="floating"] .p-sidebar-aside { + padding: dt('sidebar.aside.padding'); + } + + .p-sidebar[data-variant="inset"] .p-sidebar-aside { + padding: dt('sidebar.aside.padding'); + } + + .p-sidebar[data-variant="inset"][data-side="left"] .p-sidebar-aside { + padding-right: 0; + } + + .p-sidebar[data-variant="inset"][data-side="right"] .p-sidebar-aside { + padding-left: 0; + } + + .p-sidebar[data-variant="floating"][data-collapsible="icon"] .p-sidebar-aside { + width: calc(var(--px-sidebar-width-icon) + 1rem + 2px); + } + + .p-sidebar[data-variant="inset"][data-collapsible="icon"] .p-sidebar-aside { + width: calc(var(--px-sidebar-width-icon) + 0.5rem); + } + + .p-sidebar[data-variant="sidebar"][data-collapsible="icon"] .p-sidebar-aside { + width: calc(var(--px-sidebar-width-icon)); + } + + .p-sidebar[data-variant="sidebar"][data-side="left"] .p-sidebar-aside { + border-right: 1px solid dt('sidebar.border.color'); + } + + .p-sidebar[data-variant="sidebar"][data-side="right"] .p-sidebar-aside { + border-left: 1px solid dt('sidebar.border.color'); + } + + .p-sidebar-panel { + display: flex; + width: 100%; + height: 100%; + flex-direction: column; + overflow: hidden; + color: dt('sidebar.panel.color'); + } + + .p-sidebar[data-variant="sidebar"] .p-sidebar-panel { + background: dt('sidebar.panel.background'); + } + + .p-sidebar[data-variant="floating"] .p-sidebar-panel { + background: dt('sidebar.panel.background'); + border-radius: dt('sidebar.panel.floating.border.radius'); + border: 1px solid dt('sidebar.border.color'); + box-shadow: dt('sidebar.panel.floating.shadow'); + } + + .p-sidebar[data-variant="inset"] .p-sidebar-panel { + background: dt('sidebar.layout.background'); + } + + .p-sidebar-header { + display: flex; + flex-direction: column; + gap: dt('sidebar.header.gap'); + padding: dt('sidebar.header.padding'); + } + + .p-sidebar-footer { + display: flex; + flex-direction: column; + gap: dt('sidebar.footer.gap'); + padding: dt('sidebar.footer.padding'); + } + + .p-sidebar-content { + display: flex; + min-height: 0; + flex: 1; + flex-direction: column; + gap: dt('sidebar.content.gap'); + overflow: auto; + scrollbar-width: none; + } + + .p-sidebar[data-collapsible="icon"] .p-sidebar-content { + overflow: auto; + scrollbar-width: none; + } + + .p-sidebar-group { + position: relative; + display: flex; + width: 100%; + min-width: 0; + flex-direction: column; + padding: dt('sidebar.group.padding'); + } + + .p-sidebar-group-label { + display: flex; + flex-shrink: 0; + align-items: center; + outline: none; + height: dt('sidebar.group.label.height'); + border-radius: dt('sidebar.group.label.border.radius'); + padding: dt('sidebar.group.label.padding'); + font-size: dt('sidebar.group.label.font.size'); + font-weight: dt('sidebar.group.label.font.weight'); + color: dt('sidebar.group.label.color'); + transition: translate 250ms cubic-bezier(.4, 0, .2, 1), opacity 250ms cubic-bezier(.4, 0, .2, 1); + } + + .p-sidebar-group-label:focus-visible { + outline: dt('sidebar.focus.ring.width') dt('sidebar.focus.ring.style') dt('sidebar.focus.ring.color'); + outline-offset: dt('sidebar.focus.ring.offset'); + box-shadow: dt('sidebar.focus.ring.shadow'); + } + + .p-sidebar[data-collapsible="icon"] .p-sidebar-group-label { + translate: 0 -0.375rem; + opacity: 0; + } + + .p-sidebar-group-action { + position: absolute; + display: flex; + aspect-ratio: 1; + align-items: center; + justify-content: center; + padding: 0; + border: none; + background: none; + outline: none; + cursor: pointer; + top: dt('sidebar.group.action.top'); + right: dt('sidebar.group.action.right'); + width: dt('sidebar.group.action.size'); + height: dt('sidebar.group.action.size'); + border-radius: dt('sidebar.group.action.border.radius'); + color: dt('sidebar.group.action.color'); + transition: background 150ms, color 150ms; + } + + .p-sidebar-group-action svg { + font-weight: dt('sidebar.group.action.icon.size'); + width: dt('sidebar.group.action.icon.size'); + height: dt('sidebar.group.action.icon.size'); + flex-shrink: 0; + } + + .p-sidebar-group-action:hover { + background: dt('sidebar.group.action.focus.background'); + color: dt('sidebar.group.action.focus.color'); + } + + .p-sidebar-group-action:focus-visible { + outline: dt('sidebar.focus.ring.width') dt('sidebar.focus.ring.style') dt('sidebar.focus.ring.color'); + outline-offset: dt('sidebar.focus.ring.offset'); + box-shadow: dt('sidebar.focus.ring.shadow'); + } + + .p-sidebar[data-collapsible="icon"] .p-sidebar-group-action { + display: none; + } + + .p-sidebar-group-content { + display: block; + width: 100%; + font-size: 0.875rem; + } + + .p-sidebar-menu { + display: flex; + width: 100%; + min-width: 0; + flex-direction: column; + list-style: none; + padding: 0; + margin: 0; + gap: dt('sidebar.menu.gap'); + } + + .p-sidebar-menu-item { + display: block; + position: relative; + list-style: none; + } + + .p-sidebar-menu-button { + display: flex; + width: 100%; + align-items: center; + overflow: hidden; + border: none; + text-align: left; + background: none; + outline: none; + cursor: pointer; + padding: dt('sidebar.menu.button.padding'); + gap: dt('sidebar.menu.button.gap'); + height: dt('sidebar.menu.button.height'); + border-radius: dt('sidebar.menu.button.border.radius'); + font-size: dt('sidebar.menu.button.font.size'); + font-weight: dt('sidebar.menu.button.font.weight'); + color: dt('sidebar.menu.button.color'); + transition: width 250ms cubic-bezier(.4, 0, .2, 1), height 250ms cubic-bezier(.4, 0, .2, 1), padding 250ms cubic-bezier(.4, 0, .2, 1), background 250ms cubic-bezier(.4, 0, .2, 1), color 250ms cubic-bezier(.4, 0, .2, 1); + } + + .p-sidebar-menu-button svg { + color: dt('sidebar.menu.button.icon.color'); + font-weight: dt('sidebar.menu.button.icon.size'); + width: dt('sidebar.menu.button.icon.size'); + height: dt('sidebar.menu.button.icon.size'); + flex-shrink: 0; + } + + .p-sidebar-menu-button>span:last-child { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .p-sidebar-menu-item:has(> .p-sidebar-menu-action)>.p-sidebar-menu-button { + padding-inline-end: dt('sidebar.menu.button.with.action.padding.end'); + } + + .p-sidebar[data-collapsible="icon"] .p-sidebar-menu-button { + width: dt('sidebar.menu.button.icon.only.width'); + height: dt('sidebar.menu.button.icon.only.width'); + padding: dt('sidebar.menu.button.padding'); + } + + .p-sidebar-menu-button:hover svg { + color: dt('sidebar.menu.button.icon.focus.color'); + } + + .p-sidebar-menu-button:hover { + background: dt('sidebar.menu.button.focus.background'); + color: dt('sidebar.menu.button.focus.color'); + } + + .p-sidebar-menu-button:focus-visible { + outline: dt('sidebar.focus.ring.width') dt('sidebar.focus.ring.style') dt('sidebar.focus.ring.color'); + outline-offset: dt('sidebar.focus.ring.offset'); + box-shadow: dt('sidebar.focus.ring.shadow'); + } + + .p-sidebar-menu-button:active { + background: dt('sidebar.menu.button.focus.background'); + color: dt('sidebar.menu.button.focus.color'); + } + + .p-sidebar-menu-button:disabled, + .p-sidebar-menu-button[aria-disabled="true"] { + pointer-events: none; + opacity: 0.5; + } + + .p-sidebar-menu-button[data-active="true"] { + background: dt('sidebar.menu.button.active.background'); + font-weight: dt('sidebar.menu.button.font.weight'); + color: dt('sidebar.menu.button.active.color'); + } + + .p-sidebar-menu-action { + position: absolute; + display: flex; + aspect-ratio: 1; + align-items: center; + justify-content: center; + padding: 0; + border: none; + background: none; + outline: none; + cursor: pointer; + top: dt('sidebar.menu.action.top'); + right: dt('sidebar.menu.action.right'); + width: dt('sidebar.menu.action.width'); + border-radius: dt('sidebar.menu.action.border.radius'); + color: dt('sidebar.menu.action.color'); + transition: opacity 150ms, color 150ms, background 150ms; + } + + .p-sidebar-menu-action svg { + font-weight: dt('sidebar.menu.action.icon.size'); + width: dt('sidebar.menu.action.icon.size'); + height: dt('sidebar.menu.action.icon.size'); + flex-shrink: 0; + } + + .p-sidebar-menu-action:hover { + background: dt('sidebar.menu.action.focus.background'); + color: dt('sidebar.menu.action.focus.color'); + } + + .p-sidebar-menu-action:focus-visible { + outline: dt('sidebar.focus.ring.width') dt('sidebar.focus.ring.style') dt('sidebar.focus.ring.color'); + outline-offset: dt('sidebar.focus.ring.offset'); + box-shadow: dt('sidebar.focus.ring.shadow'); + } + + .p-sidebar[data-collapsible="icon"] .p-sidebar-menu-action { + display: none; + } + + .p-sidebar-menu-action[data-show-on-hover] { + opacity: 0; + } + + .p-sidebar-menu-item:hover>.p-sidebar-menu-action[data-show-on-hover], + .p-sidebar-menu-item:focus-within>.p-sidebar-menu-action[data-show-on-hover] { + opacity: 1; + } + + .p-sidebar-menu-badge { + pointer-events: none; + position: absolute; + display: flex; + align-items: center; + justify-content: center; + font-variant-numeric: tabular-nums; + user-select: none; + top: dt('sidebar.menu.badge.top'); + right: dt('sidebar.menu.badge.right'); + height: dt('sidebar.menu.badge.height'); + min-width: dt('sidebar.menu.badge.min.width'); + border-radius: dt('sidebar.menu.badge.border.radius'); + padding: dt('sidebar.menu.badge.padding'); + font-size: dt('sidebar.menu.badge.font.size'); + font-weight: dt('sidebar.menu.badge.font.weight'); + background: dt('sidebar.menu.badge.background'); + border: 1px solid dt('sidebar.menu.badge.border.color'); + color: dt('sidebar.menu.badge.color'); + } + + .p-sidebar[data-collapsible="icon"] .p-sidebar-menu-badge { + display: none; + } + + .p-sidebar-menu-sub { + display: flex; + min-width: 0; + width: 100%; + flex-direction: column; + list-style: none; + padding-inline: 0; + margin: 0; + gap: dt('sidebar.menu.sub.gap'); + padding-block: dt('sidebar.menu.sub.padding.block'); + } + + .p-sidebar[data-collapsible="icon"] .p-sidebar-menu-sub { + display: none; + } + + .p-sidebar-menu-item:not([data-collapsible])>.p-sidebar-menu-sub, + .p-sidebar-menu-item:not([data-collapsible])>.p-sidebar-menu-sub-content-container>.p-sidebar-menu-sub-content-wrapper>.p-sidebar-menu-sub { + transform: translateX(1px); + margin-inline: dt('sidebar.menu.sub.indent.margin'); + padding-inline: dt('sidebar.menu.sub.indent.padding'); + border-left: 1px solid dt('sidebar.border.color'); + } + + .p-sidebar-menu-item[data-collapsible]>.p-sidebar-menu-sub, + .p-sidebar-menu-item[data-collapsible]>.p-sidebar-menu-sub-content-container>.p-sidebar-menu-sub-content-wrapper>.p-sidebar-menu-sub { + padding-left: dt('sidebar.menu.sub.collapsible.indent'); + padding-block: 0; + margin-top: dt('sidebar.menu.sub.collapsible.top.margin'); + border-radius: dt('sidebar.menu.sub.collapsible.border.radius'); + overflow: hidden; + } + + .p-sidebar-menu-sub-item { + display: block; + position: relative; + width: 100%; + list-style: none; + } + + .p-sidebar-menu-sub-button { + display: flex; + min-width: 0; + width: 100%; + transform: translateX(-1px); + align-items: center; + overflow: hidden; + border: none; + background: none; + outline: none; + cursor: pointer; + height: dt('sidebar.menu.sub.button.height'); + gap: dt('sidebar.menu.sub.button.gap'); + padding: dt('sidebar.menu.sub.button.padding'); + border-radius: dt('sidebar.menu.sub.button.border.radius'); + font-size: dt('sidebar.menu.sub.button.font.size'); + font-weight: dt('sidebar.menu.sub.button.font.weight'); + color: dt('sidebar.menu.sub.button.color'); + transition: background 150ms, color 150ms; + } + + .p-sidebar-menu-sub-button>span:last-child { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .p-sidebar-menu-sub-button svg { + color: dt('sidebar.menu.sub.button.icon.color'); + font-weight: dt('sidebar.menu.sub.button.icon.size'); + width: dt('sidebar.menu.sub.button.icon.size'); + height: dt('sidebar.menu.sub.button.icon.size'); + flex-shrink: 0; + } + + .p-sidebar-menu-sub-button:hover { + background: dt('sidebar.menu.sub.button.focus.background'); + color: dt('sidebar.menu.sub.button.focus.color'); + } + + .p-sidebar-menu-sub-button:hover svg { + color: dt('sidebar.menu.sub.button.icon.focus.color'); + } + + .p-sidebar-menu-sub-button:focus-visible { + outline: dt('sidebar.focus.ring.width') dt('sidebar.focus.ring.style') dt('sidebar.focus.ring.color'); + outline-offset: dt('sidebar.focus.ring.offset'); + box-shadow: dt('sidebar.focus.ring.shadow'); + } + + .p-sidebar-menu-sub-button:active { + background: dt('sidebar.menu.sub.button.active.background'); + color: dt('sidebar.menu.sub.button.active.color'); + } + + .p-sidebar-menu-sub-button:disabled, + .p-sidebar-menu-sub-button[aria-disabled="true"] { + pointer-events: none; + opacity: 0.5; + } + + .p-sidebar-menu-sub-button[data-active="true"] { + background: dt('sidebar.menu.sub.button.active.background'); + color: dt('sidebar.menu.sub.button.active.color'); + } + + .p-sidebar[data-collapsible="icon"] .p-sidebar-menu-sub-button { + display: none; + } + + .p-sidebar-rail { + position: absolute; + inset-block: 0; + z-index: 20; + display: none; + border: none; + background: none; + padding: 0; + cursor: pointer; + width: 1px; + transition: background 50ms cubic-bezier(.4, 0, .2, 1) 75ms; + } + + @media (min-width: 640px) { + .p-sidebar-rail { + display: flex; + } + } + + .p-sidebar-rail::after { + content: ''; + position: absolute; + inset-block: 0; + left: 50%; + transform: translateX(-50%); + width: 0.5rem; + } + + .p-sidebar[data-side="left"] .p-sidebar-rail { + right: 0; + cursor: w-resize; + } + + .p-sidebar[data-side="left"][data-state="collapsed"] .p-sidebar-rail { + cursor: e-resize; + } + + .p-sidebar[data-side="right"] .p-sidebar-rail { + left: 0; + cursor: e-resize; + } + + .p-sidebar[data-side="right"][data-state="collapsed"] .p-sidebar-rail { + cursor: w-resize; + } + + .p-sidebar[data-collapsible="offcanvas"] { + overflow: visible; + } + + .p-sidebar[data-collapsible="offcanvas"] .p-sidebar-aside { + overflow: visible; + } + + .p-sidebar[data-collapsible="offcanvas"] .p-sidebar-content { + overflow: visible; + } + + .p-sidebar[data-collapsible="offcanvas"] .p-sidebar-rail { + opacity: 0; + background: dt('sidebar.rail.background'); + transition: opacity 50ms cubic-bezier(.4, 0, .2, 1) 75ms; + } + + .p-sidebar[data-collapsible="offcanvas"] .p-sidebar-rail:hover { + opacity: 1; + } + + .p-sidebar[data-side="left"][data-collapsible="offcanvas"] .p-sidebar-rail { + right: -1.5px; + } + + .p-sidebar[data-side="left"][data-collapsible="offcanvas"] .p-sidebar-rail::after { + left: 100%; + transform: none; + } + + .p-sidebar[data-side="right"][data-collapsible="offcanvas"] .p-sidebar-rail { + left: -1.5px; + } + + .p-sidebar[data-side="right"][data-collapsible="offcanvas"] .p-sidebar-rail::after { + left: auto; + right: 100%; + transform: none; + } + + .p-sidebar-main { + position: relative; + display: flex; + width: 100%; + flex: 1; + flex-direction: column; + background: dt('sidebar.main.background'); + } + + .p-sidebar[data-variant="floating"]~.p-sidebar-main { + background: dt('sidebar.main.floating.background'); + } + + .p-sidebar[data-variant="inset"]~.p-sidebar-main, + .p-sidebar-main:has(~ .p-sidebar[data-variant="inset"]) { + background: dt('sidebar.main.inset.background'); + margin: dt('sidebar.main.margin'); + border-radius: dt('sidebar.main.border.radius'); + box-shadow: dt('sidebar.main.shadow'); + } +`;var je=["*"],hi=new I$1("SIDEBAR_INSTANCE"),h1=new I$1("SIDEBAR_LAYOUT_INSTANCE"),vf=new I$1("SIDEBAR_ASIDE_INSTANCE"),xf=new I$1("SIDEBAR_CONTENT_INSTANCE"),Cf=new I$1("SIDEBAR_HEADER_INSTANCE"),Mf=new I$1("SIDEBAR_PANEL_INSTANCE"),wf=new I$1("SIDEBAR_FOOTER_INSTANCE"),zf=new I$1("SIDEBAR_GROUP_INSTANCE"),kf=new I$1("SIDEBAR_MENU_INSTANCE"),So=new I$1("SIDEBAR_MENU_ITEM_INSTANCE");var Tf=` +${Do} + +/* For PrimeNG */ +.p-sidebar-backdrop { + display: block; + position: fixed; + inset: 0; + z-index: 15; + background-color: rgb(0 0 0 / 0.4); +} + +/* NG uses extra DOM wrappers around .p-sidebar-menu-sub for the Angular animation system */ +.p-sidebar-menu-sub-content-container { + display: grid; + grid-template-rows: 1fr; +} + +.p-sidebar-menu-sub-content-wrapper { + min-height: 0; +} + +.p-sidebar[data-collapsible="icon"] .p-sidebar-menu-item[data-collapsible]>.p-sidebar-menu-sub-content-container { + display: none; +} + +.p-sidebar-menu-sub-enter-from, +.p-sidebar-menu-sub-leave-to { + height: 0 !important; + opacity: 0; +} + +.p-sidebar-menu-sub-enter-to, +.p-sidebar-menu-sub-leave-from { + height: var(--pui-motion-height); + opacity: 1; +} + +.p-sidebar-menu-sub-enter-active, +.p-sidebar-menu-sub-leave-active { + transition: height 200ms ease-out, opacity 200ms ease-out; + overflow: hidden; +} +`,Df={root:"p-sidebar p-component",layout:"p-sidebar-layout",spacer:"p-sidebar-spacer",aside:"p-sidebar-aside",panel:"p-sidebar-panel",header:"p-sidebar-header",content:"p-sidebar-content",footer:"p-sidebar-footer",group:"p-sidebar-group",groupLabel:"p-sidebar-group-label",groupAction:"p-sidebar-group-action",groupContent:"p-sidebar-group-content",menu:"p-sidebar-menu",menuItem:"p-sidebar-menu-item",menuButton:"p-sidebar-menu-button",menuAction:"p-sidebar-menu-action",menuBadge:"p-sidebar-menu-badge",menuSub:"p-sidebar-menu-sub",menuSubItem:"p-sidebar-menu-sub-item",menuSubButton:"p-sidebar-menu-sub-button",trigger:"p-sidebar-trigger",rail:"p-sidebar-rail",main:"p-sidebar-main",backdrop:"p-sidebar-backdrop"},fe=(()=>{class t extends WI{name="sidebar";style=Tf;classes=Df;static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275prov=b({token:t,factory:t.\u0275fac})}return t})();var Io=(()=>{class t extends I{componentName="SidebarBackdrop";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);pcSidebar=g(hi,{optional:true});layout=g(h1,{optional:true});visible=gs$1(()=>this.pcSidebar?this.pcSidebar.open():!!this.layout?.isAnyOpen());motion;isInitialMount=true;constructor(){super(),Ui(()=>{let e=this.visible();if(!BG(this.platformId))return;let i=this.el?.nativeElement;i&&(this.motion||(this.motion=V3(i,{name:"p-overlay-mask",autoHeight:false,autoWidth:false})),e?(i.style.removeProperty("display"),i.classList.add("p-overlay-mask"),this.motion.enter()):this.isInitialMount?i.style.display="none":this.motion.leave().then(()=>{!this.visible()&&this.el?.nativeElement&&(this.el.nativeElement.style.display="none",this.el.nativeElement.classList.remove("p-overlay-mask"));}),this.isInitialMount=false);});}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}onClick(e){this.pcSidebar?this.pcSidebar.dismissable()&&this.pcSidebar.collapse(e):this.layout?.collapseAll(e);}onDestroy(){this.motion?.cancel(),this.motion=void 0;}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-backdrop"]],hostVars:2,hostBindings:function(i,n){i&1&&cu$1("click",function(r){return n.onClick(r)}),i&2&&jM(n.cx("backdrop"));},features:[nN([fe,{provide:W,useExisting:t}]),j0$1([L]),BE],decls:0,vars:0,template:function(i,n){},dependencies:[o1],encapsulation:2})}return t})(),Eo=(()=>{class t extends I{componentName="SidebarContent";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-content"]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("content"));},features:[nN([fe,{provide:xf,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})(),No=(()=>{class t extends I{componentName="SidebarFooter";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-footer"]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("footer"));},features:[nN([fe,{provide:wf,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})(),Lo=(()=>{class t extends I{componentName="SidebarGroup";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-group"]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("group"));},features:[nN([fe,{provide:zf,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})();var Fo=(()=>{class t extends I{componentName="SidebarGroupContent";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-group-content"]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("groupContent"));},features:[nN([fe,{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})(),Oo=(()=>{class t extends I{componentName="SidebarGroupLabel";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-group-label"]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("groupLabel"));},features:[nN([fe,{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})(),Bo=(()=>{class t extends I{componentName="SidebarHeader";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-header"]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("header"));},features:[nN([fe,{provide:Cf,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})(),Vo=(()=>{class t extends I{componentName="SidebarMain";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);layout=g(h1,{optional:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}onClick(e){this.layout?.onMainClick(e);}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-main"]],hostVars:2,hostBindings:function(i,n){i&1&&cu$1("click",function(r){return n.onClick(r)}),i&2&&jM(n.cx("main"));},features:[nN([fe,{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})(),Po=(()=>{class t extends I{componentName="SidebarLayout";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);sidebars=new Map;version=U(0);isAnyOpen=gs$1(()=>{this.version();let e=false;return this.sidebars.forEach(i=>{i.open()&&(e=true);}),e});registerSidebar(e,i){this.sidebars.set(e,i),this.version.update(n=>n+1);}unregisterSidebar(e){this.sidebars.delete(e),this.version.update(i=>i+1);}getSidebar(e){return this.sidebars.get(e)}toggle(e,i){if(e){this.sidebars.get(e)?.toggle(i);return}this.sidebars.size===1&&this.sidebars.values().next().value?.toggle(i);}collapseAll(e){this.sidebars.forEach(i=>i.collapse(e));}onMainClick(e){e.target?.closest('[data-scope="sidebar"][data-part="trigger"]')||this.sidebars.forEach(n=>{n.open()&&n.overlay()&&n.hideOnOutsideClick()&&n.collapse(e);});}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-layout"]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("layout"));},features:[nN([fe,{provide:h1,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})(),Ro=(()=>{class t extends I{componentName="SidebarMenu";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-menu"]],hostAttrs:["role","list"],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("menu"));},features:[nN([fe,{provide:kf,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})();var Ao=(()=>{class t extends I{componentName="SidebarMenuBadge";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-menu-badge"]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("menuBadge"));},features:[nN([fe,{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})(),Ho=(()=>{class t extends I{componentName="SidebarMenuButton";bindDirectiveInstance=g(L,{optional:true,self:true})??void 0;_componentStyle=g(fe);pcMenuItem=g(So,{optional:true})??void 0;isActive=mu$1(false,{transform:yn});dataActive=gs$1(()=>this.isActive()?"true":null);onAfterViewChecked(){this.bindDirectiveInstance?.setAttrs(this.ptm("root"));}onClick(e){this.pcMenuItem?.collapsible()&&this.pcMenuItem.toggle();}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275dir=xt({type:t,selectors:[["","pSidebarMenuButton",""]],hostVars:3,hostBindings:function(i,n){i&1&&cu$1("click",function(r){return n.onClick(r)}),i&2&&(su$1("data-active",n.dataActive()),jM(n.cx("menuButton")));},inputs:{isActive:[1,"isActive"]},features:[nN([fe,{provide:W,useExisting:t}]),BE]})}return t})(),$o=(()=>{class t extends I{componentName="SidebarMenuItem";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);collapsible=mu$1(false,{transform:yn});open=az(false);defaultOpen=mu$1(void 0);disabled=mu$1(false,{transform:yn});isOpen=gs$1(()=>this.collapsible()&&this.open());dataCollapsible=gs$1(()=>this.collapsible()?"":null);dataOpen=gs$1(()=>this.collapsible()&&this.open()?"":null);dataDisabled=gs$1(()=>this.disabled()?"":null);constructor(){super(),Ui(()=>{let e=this.defaultOpen();e!==void 0&&!this.defaultApplied&&(this.defaultApplied=true,this.open.set(e));});}defaultApplied=false;toggle(){this.collapsible()&&!this.disabled()&&this.open.set(!this.open());}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-menu-item"]],hostAttrs:["role","listitem"],hostVars:5,hostBindings:function(i,n){i&2&&(su$1("data-collapsible",n.dataCollapsible())("data-open",n.dataOpen())("data-disabled",n.dataDisabled()),jM(n.cx("menuItem")));},inputs:{collapsible:[1,"collapsible"],open:[1,"open"],defaultOpen:[1,"defaultOpen"],disabled:[1,"disabled"]},outputs:{open:"openChange"},features:[nN([fe,{provide:So,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})();var Go=(()=>{class t extends I{componentName="SidebarAside";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-aside"]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("aside"));},features:[nN([fe,{provide:vf,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})(),Uo=(()=>{class t extends I{componentName="SidebarPanel";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-panel"]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("panel"));},features:[nN([fe,{provide:Mf,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})();var Ko=(()=>{class t extends I{componentName="SidebarSpacer";bindDirectiveInstance=g(L,{self:true});_componentStyle=g(fe);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar-spacer"]],hostVars:2,hostBindings:function(i,n){i&2&&jM(n.cx("spacer"));},features:[nN([fe,{provide:W,useExisting:t}]),j0$1([L]),BE],decls:0,vars:0,template:function(i,n){},dependencies:[o1],encapsulation:2})}return t})(),qo=(()=>{class t extends I{componentName="SidebarTrigger";bindDirectiveInstance=g(L,{optional:true,self:true})??void 0;_componentStyle=g(fe);layout=g(h1,{optional:true});ancestorSidebar=g(hi,{optional:true});target=mu$1();onAfterViewChecked(){this.bindDirectiveInstance?.setAttrs(this.ptm("root"));}resolveTarget(){let e=this.target();return e?this.layout?.getSidebar(e):this.ancestorSidebar}onClick(e){this.resolveTarget()?.toggle(e);}static \u0275fac=(()=>{let e;return function(n){return (e||(e=Vc$1(t)))(n||t)}})();static \u0275dir=xt({type:t,selectors:[["","pSidebarTrigger",""]],hostAttrs:["data-scope","sidebar","data-part","trigger"],hostVars:4,hostBindings:function(i,n){i&1&&cu$1("click",function(r){return n.onClick(r)}),i&2&&(su$1("aria-controls",n.resolveTarget()?.id())("aria-expanded",n.resolveTarget()?.open()),jM(n.cx("trigger")));},inputs:{target:[1,"target"]},features:[nN([fe,{provide:W,useExisting:t}]),BE]})}return t})(),jo=(()=>{class t extends I{componentName="Sidebar";bindDirectiveInstance=g(L,{self:true});layout=g(h1,{optional:true});open=az(true);side=mu$1("left");variant=mu$1("sidebar");collapsible=mu$1("icon");overlay=mu$1(false);dismissable=mu$1(true);hideOnOutsideClick=mu$1(true);width=mu$1("16rem");iconWidth=mu$1("3rem");openOnHover=mu$1(false);hoverOpenDelay=mu$1(50);hoverCloseDelay=mu$1(100);id=mu$1(j8$1("p-sidebar-"));displayState=gs$1(()=>this.open()?"expanded":"collapsed");dataCollapsible=gs$1(()=>this.displayState()==="collapsed"?this.collapsible():null);dataOverlay=gs$1(()=>this.overlay()?"":null);_componentStyle=g(fe);hoverTimer=null;constructor(){super(),Ui(e=>{let i=this.id();this.layout?.registerSidebar(i,this),e(()=>this.layout?.unregisterSidebar(i));});}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}toggle(e){this.collapsible()!=="none"&&this.open.set(!this.open());}expand(e){this.open.set(true);}collapse(e){this.collapsible()!=="none"&&this.open.set(false);}onPointerEnter(e){this.openOnHover()&&(this.clearHoverTimer(),this.hoverTimer=setTimeout(()=>this.expand(e),this.hoverOpenDelay()));}onPointerLeave(e){this.openOnHover()&&(this.clearHoverTimer(),this.hoverTimer=setTimeout(()=>this.collapse(e),this.hoverCloseDelay()));}clearHoverTimer(){this.hoverTimer&&(clearTimeout(this.hoverTimer),this.hoverTimer=null);}onDestroy(){this.clearHoverTimer();}onEscape(){this.overlay()&&this.dismissable()&&this.open()&&this.collapse();}static \u0275fac=function(i){return new(i||t)};static \u0275cmp=Uo$1({type:t,selectors:[["p-sidebar"]],hostVars:12,hostBindings:function(i,n){i&1&&cu$1("pointerenter",function(r){return n.onPointerEnter(r)})("pointerleave",function(r){return n.onPointerLeave(r)})("keydown.escape",function(){return n.onEscape()}),i&2&&(su$1("data-side",n.side())("data-variant",n.variant())("data-collapsible",n.dataCollapsible())("data-collapsible-mode",n.collapsible())("data-overlay",n.dataOverlay())("data-state",n.displayState()),jM(n.cx("root")),fu$1("--px-sidebar-width",n.width())("--px-sidebar-width-icon",n.iconWidth()));},inputs:{open:[1,"open"],side:[1,"side"],variant:[1,"variant"],collapsible:[1,"collapsible"],overlay:[1,"overlay"],dismissable:[1,"dismissable"],hideOnOutsideClick:[1,"hideOnOutsideClick"],width:[1,"width"],iconWidth:[1,"iconWidth"],openOnHover:[1,"openOnHover"],hoverOpenDelay:[1,"hoverOpenDelay"],hoverCloseDelay:[1,"hoverCloseDelay"],id:[1,"id"]},outputs:{open:"openChange"},features:[nN([fe,{provide:hi,useExisting:t},{provide:W,useExisting:t}]),j0$1([L]),BE],ngContentSelectors:je,decls:1,vars:0,template:function(i,n){i&1&&(uu$1(),lu$1(0));},dependencies:[o1],encapsulation:2})}return t})();var Sf=()=>({"min-width":"44rem"}),Wo=()=>({width:"50rem"}),Yo=()=>({"1199px":"75vw","575px":"90vw"}),If=()=>["Key","Value"],Qo=(t,a)=>a.id;function Ef(t,a){t&1&&au$1(0,"p-sidebar-backdrop",7);}function Nf(t,a){if(t&1&&au$1(0,"fa-icon",13),t&2){let e=EM().$implicit;zE("icon",e.faIcon);}}function Lf(t,a){if(t&1&&(Bc$1(0,"p-sidebar-menu-badge"),YM(1),bp$1()),t&2){let e=EM().$implicit;n_(),fD(e.badge);}}function Ff(t,a){if(t&1){let e=hM();Bc$1(0,"p-sidebar-menu-item")(1,"button",34),cu$1("click",function(){let n=Rm$1(e).$implicit,o=EM(2);return xm$1(o.sidebarMenuClick(n))}),rM(2,Nf,1,1,"fa-icon",13),Bc$1(3,"span"),YM(4),bp$1()(),rM(5,Lf,2,1,"p-sidebar-menu-badge"),bp$1();}if(t&2){let e=a.$implicit;n_(),zE("isActive",e.isActive),n_(),oM(e.faIcon?2:-1),n_(2),fD(e.label),n_(),oM(e.badge?5:-1);}}function Of(t,a){if(t&1&&(Bc$1(0,"p-sidebar-group")(1,"p-sidebar-group-label"),YM(2),bp$1(),Bc$1(3,"p-sidebar-group-content")(4,"p-sidebar-menu"),aM(5,Ff,6,4,"p-sidebar-menu-item",null,Qo),bp$1()()()),t&2){let e=a.$implicit;n_(2),fD(e.label),n_(3),cM(e.items);}}function Bf(t,a){t&1&&(Bc$1(0,"tr")(1,"th",35),YM(2,"ID"),bp$1(),Bc$1(3,"th",36),YM(4,"GotifyUrl"),bp$1(),Bc$1(5,"th",37),YM(6,"ClientToken"),bp$1(),Bc$1(7,"th",38),YM(8,"DeviceToken"),bp$1(),Bc$1(9,"th",35),YM(10,"Headers"),bp$1(),au$1(11,"th",35),bp$1());}function Vf(t,a){if(t&1){let e=hM();Bc$1(0,"tr")(1,"td"),YM(2),bp$1(),Bc$1(3,"td"),YM(4),bp$1(),Bc$1(5,"td"),YM(6),Bc$1(7,"button",39),cu$1("cdkCopyToClipboardCopied",function(){Rm$1(e);let n=EM();return xm$1(n.showCopyToast())}),au$1(8,"fa-icon",13),bp$1()(),Bc$1(9,"td"),YM(10),Bc$1(11,"button",39),cu$1("cdkCopyToClipboardCopied",function(){Rm$1(e);let n=EM();return xm$1(n.showCopyToast())}),au$1(12,"fa-icon",13),bp$1()(),Bc$1(13,"td"),YM(14),bp$1(),Bc$1(15,"td")(16,"button",40),cu$1("click",function(){let n=Rm$1(e).$implicit,o=EM();return xm$1(o.editItem(n))}),au$1(17,"fa-icon",13),bp$1(),Bc$1(18,"button",41),cu$1("click",function(n){let o=Rm$1(e).$implicit,r=EM();return xm$1(r.deleteNg(n,o))}),au$1(19,"fa-icon",13),bp$1()()();}if(t&2){let e=a.$implicit,i=EM();n_(2),fD(e.Uid),n_(2),fD(e.GotifyUrl),n_(2),xp$1(" ",i.maskString(4,3,e.ClientToken)," "),n_(),zE("cdkCopyToClipboard",e.ClientToken)("text",true),n_(),zE("icon",i.faCopy),n_(2),xp$1(" ",i.maskString(21,6,e.DeviceToken)," "),n_(),zE("cdkCopyToClipboard",e.DeviceToken)("text",true),n_(),zE("icon",i.faCopy),n_(2),fD(i.hasHeaders(e)?"yes":"no"),n_(3),zE("icon",i.faEdit),n_(2),zE("icon",i.faTrash);}}function Pf(t,a){t&1&&(Bc$1(0,"tr")(1,"td",42),YM(2,"No devices found!"),bp$1()());}function Rf(t,a){if(t&1){let e=hM();Bc$1(0,"div",43)(1,"button",44),cu$1("click",function(){Rm$1(e);let n=EM();return xm$1(n.createHeader())}),au$1(2,"fa-icon",13),YM(3," New Header "),bp$1()();}if(t&2){let e=EM();n_(2),zE("icon",e.faPlus);}}function Af(t,a){t&1&&(Bc$1(0,"tr")(1,"th",45),YM(2," Key "),au$1(3,"p-sort-icon",46),bp$1(),Bc$1(4,"th",47),YM(5,"Value"),bp$1(),au$1(6,"th"),bp$1());}function Hf(t,a){if(t&1){let e=hM();Bc$1(0,"tr")(1,"td"),YM(2),bp$1(),Bc$1(3,"td"),YM(4),bp$1(),Bc$1(5,"td")(6,"div")(7,"button",48),cu$1("click",function(n){let o=Rm$1(e).$implicit,r=EM();return xm$1(r.deleteNgHeader(n,o))}),au$1(8,"fa-icon",13),bp$1()()()();}if(t&2){let e=a.$implicit,i=EM();n_(2),fD(e.Key),n_(2),fD(e.Value),n_(4),zE("icon",i.faTrash);}}function $f(t,a){t&1&&(Bc$1(0,"tr")(1,"td",49),YM(2,"No headers found!"),bp$1()());}function Gf(t,a){if(t&1){let e=hM();Bc$1(0,"div",50)(1,"button",51),cu$1("click",function(){Rm$1(e);let n=EM();return xm$1(n.cancel())}),YM(2,"Cancel"),bp$1(),Bc$1(3,"button",52),cu$1("click",function(){Rm$1(e);let n=EM();return xm$1(n.updateUser())}),YM(4,"Save"),bp$1()();}}function Uf(t,a){if(t&1){let e=hM();Bc$1(0,"div",50)(1,"button",51),cu$1("click",function(){Rm$1(e);let n=EM();return xm$1(n.cancel(true))}),YM(2,"Cancel"),bp$1(),Bc$1(3,"button",53),cu$1("click",function(){Rm$1(e);let n=EM();return xm$1(n.updateHeader())}),YM(4,"Save "),bp$1()();}if(t&2){let e=EM();n_(3),zE("disabled",e.headerForm.invalid||!e.headerForm.controls.key.value.trim()||!e.headerForm.controls.value.value.trim());}}var Zo=class t{isMobile=U(false);userList=U([]);sidebarNavGroupList=U([]);showEditDialog=U(false);showHeaderDialog=U(false);selectedUser=U(Ot.empty());selectedHeader=U(it.empty());selectedHeaders=U([]);faRightFromBracket=Rn;faEdit=On;faTrash=In;faCopy=$n;faPlus=Hn;faBars=jn$1;editUserForm=new e4$1({gotifyUrl:new M5$1("",{nonNullable:true})});headerForm=new e4$1({key:new M5$1("",{nonNullable:true,validators:[$4$1.required]}),value:new M5$1("",{nonNullable:true,validators:[$4$1.required]})});api=g($1);router=g(Ft);maskDataPipe=g(c);confirmationService=g(X4$1);messageService=g(tq);constructor(){if(typeof window>"u")return;let a=window.matchMedia("(max-width: 1023px)");this.isMobile.set(a.matches),a.addEventListener("change",e=>this.isMobile.set(e.matches)),this.createMenu();}ngOnInit(){(localStorage.getItem("APIKEY")??void 0)||this.logout(),this.loadData();}createMenu(){let a=[new Yt("Connected",true,void 0,void 0,"/dashboard",Pn)],e=new f1("Devices",a),i=[new Yt("GitHub",false,void 0,"https://github.com/androidseb25/iGotify-Notification-Assistent",void 0,To),new Yt("Donate",false,void 0,"https://www.paypal.com/donate/?hosted_button_id=VFSL9ZECRD6D6",void 0,ko)],n=new f1("Other",i);this.sidebarNavGroupList().push(e),this.sidebarNavGroupList().push(n),console.log(this.sidebarNavGroupList());}loadData(){this.api.getUsers().subscribe({next:a=>{this.userList.set(a.Data);},error:a=>{a.status===401&&this.logout();}});}editItem(a){let e=Ot.empty();this.selectedUser.set(Object.assign(e,a)),this.editUserForm.setValue({gotifyUrl:this.selectedUser().GotifyUrl}),this.selectedHeaders.set(this.selectedUser().GotifyHeaders),this.showEditDialog.set(true);}updateUser(a=false){this.selectedUser().GotifyUrl=this.editUserForm.controls.gotifyUrl.value.trim(),this.selectedUser().GotifyHeaders=this.selectedHeaders(),this.api.patchUser(this.selectedUser()).subscribe({next:()=>{this.loadData(),a||this.cancel();},error:e=>{console.log(e);}});}cancel(a=false){if(a){let e=it.empty();this.selectedHeader.set(Object.assign(e,it.empty())),this.headerForm.reset({key:"",value:""}),this.showHeaderDialog.set(false);}else {let e=Ot.empty();this.selectedUser.set(Object.assign(e,Ot.empty())),this.selectedHeaders.set([]),this.editUserForm.reset({gotifyUrl:""}),this.showEditDialog.set(false);}}deleteNgHeader(a,e){this.confirmationService.confirm({target:a.target,message:"Do you want to delete this header?",header:"Danger Zone",rejectButtonProps:{label:"Cancel",severity:"secondary",outlined:true},acceptButtonProps:{label:"Delete",severity:"danger"},accept:()=>{let i=this.selectedHeaders().findIndex(n=>n.Key===e.Key);this.selectedHeaders.set(this.selectedHeaders().filter((n,o)=>o!==i)),this.selectedUser().GotifyHeaders=this.selectedHeaders(),this.selectedHeaders.set(this.selectedUser().GotifyHeaders),this.updateUser(true);},reject:()=>{}});}deleteNg(a,e){this.confirmationService.confirm({target:a.target,message:"Do you want to delete this record?",header:"Danger Zone",rejectButtonProps:{label:"Cancel",severity:"secondary",outlined:true},acceptButtonProps:{label:"Delete",severity:"danger"},accept:()=>{this.api.deleteUser(e).subscribe({next:i=>{i.Message=="User successfully deleted!"?(this.messageService.add({severity:"success",summary:"Successfully deleted",detail:"Device successfully deleted!",key:"br",life:3e3}),this.loadData()):this.messageService.add({severity:"error",summary:"Error",detail:i.Message.replace("User","Device"),key:"br",life:3e3});},error:i=>{this.messageService.add({severity:"error",summary:"Error",detail:i,key:"br",life:3e3});}});},reject:()=>{}});}createHeader(){let a=it.empty();this.selectedHeader.set(Object.assign(a,it.empty())),this.headerForm.reset({key:"",value:""}),this.showHeaderDialog.set(true);}updateHeader(){let a=this.headerForm.controls.key.value.trim(),e=this.headerForm.controls.value.value.trim();if(this.headerForm.invalid||!a||!e)return;let i=new it(a,e);this.selectedHeaders.set([...this.selectedHeaders(),i]),this.selectedUser().GotifyHeaders=this.selectedHeaders(),this.cancel(true);}maskString(a,e,i){return this.maskDataPipe.transform(i,"*",a,i.length-e)}hasHeaders(a){return G1(a.Headers).length>0}showCopyToast(){this.messageService.add({severity:"success",summary:"Success",detail:"Copied to clipboard",key:"br",life:3e3});}logout(){localStorage.removeItem("APIKEY"),this.router.navigateByUrl("/login");}async sidebarMenuClick(a){a.route?await this.router.navigateByUrl(a.route):a.link&&window.open(a.link,"_blank");}static \u0275fac=function(e){return new(e||t)};static \u0275cmp=Uo$1({type:t,selectors:[["app-dashboard"]],decls:75,vars:38,consts:[["header",""],["body",""],["emptymessage",""],["dtDialog",""],["caption",""],["footer",""],[1,"relative!"],[1,"absolute!"],["id","mobile-nav","width","18rem",3,"collapsible","open","overlay"],["pSidebarMenuButton","",1,"p-1!","brand"],["alt","logo","height","42","ngSrc","/gotify-logo.svg","priority","","width","42"],[1,"font-semibold","text-sm"],["pSidebarMenuButton","",3,"click"],[3,"icon"],[1,"dashboard-page"],[1,"page-header"],["pButton","","pSidebarTrigger","","severity","secondary","target","mobile-nav","text",""],[1,"text-2xl"],[3,"paginator","rows","stripedRows","tableStyle","value"],[3,"visibleChange","visible","breakpoints","modal","header"],[1,"mt-2"],["pStyleClass","w-full","variant","in"],["autocomplete","off","id","in_label","pInputText","",1,"w-full",3,"formControl"],["for","in_label"],["scrollHeight","83vh","sortField","Key","stripedRows","",1,"mt-2",3,"globalFilterFields","paginator","rows","scrollable","sortOrder","value"],["header","Create new Header",3,"visibleChange","visible","breakpoints","modal"],[1,"mt-2","flex","w-full"],[1,"w-full","mr-1"],["autocomplete","off","id","headerKey","pInputText","",1,"w-full",3,"formControl"],["for","headerKey"],[1,"w-full","ml-1"],["autocomplete","off","id","headerValue","pInputText","",1,"w-full",3,"formControl"],["for","headerValue"],["key","br","position","bottom-right"],["pSidebarMenuButton","",3,"click","isActive"],[1,"min-w-28"],[1,"min-w-3xs"],[1,"min-w-48"],[1,"min-w-xl"],["pButton","","size","small",1,"ml-2",3,"cdkCopyToClipboardCopied","cdkCopyToClipboard","text"],["pButton","","pTooltip","Edit","severity","help","tooltipPosition","left",1,"miniBtn","mr-2",3,"click"],["pButton","","pTooltip","Delete","severity","danger","tooltipPosition","left",1,"miniBtn",3,"click"],["colspan","6"],[1,"flex","w-full"],["pButton","",1,"ml-auto","mr-0","small-button","pointer",3,"click"],["pResizableColumn","","pSortableColumn","Key"],["field","Key",1,"ml-auto"],["pResizableColumn",""],["pButton","","pTooltip","Delete","severity","danger","size","small","tooltipPosition","top",1,"miniBtn",3,"click"],["colspan","4"],[1,"flex","justify-end","gap-2","mt-4"],["pButton","","severity","secondary",3,"click"],["pButton","",3,"click"],["pButton","",3,"click","disabled"]],template:function(e,i){if(e&1){let n=hM();Bc$1(0,"p-sidebar-layout",6),rM(1,Ef,1,0,"p-sidebar-backdrop",7),Bc$1(2,"p-sidebar",8),au$1(3,"p-sidebar-spacer"),Bc$1(4,"p-sidebar-aside")(5,"p-sidebar-panel")(6,"p-sidebar-header")(7,"p-sidebar-menu")(8,"p-sidebar-menu-item")(9,"button",9),au$1(10,"img",10),Bc$1(11,"span",11),YM(12,"iGotify Assistent UI"),bp$1()()()()(),Bc$1(13,"p-sidebar-content"),aM(14,Of,7,1,"p-sidebar-group",null,Qo),bp$1(),Bc$1(16,"p-sidebar-footer")(17,"p-sidebar-menu")(18,"p-sidebar-menu-item")(19,"button",12),cu$1("click",function(){return i.logout()}),au$1(20,"fa-icon",13),Bc$1(21,"span"),YM(22,"Logout"),bp$1()()()()()()()(),Bc$1(23,"p-sidebar-main")(24,"div",14)(25,"div")(26,"header",15)(27,"button",16),au$1(28,"fa-icon",13),bp$1(),Bc$1(29,"div",17),YM(30,"Connected devices"),bp$1()(),Bc$1(31,"p-table",18),VE(32,Bf,12,0,"ng-template",null,0,pN)(34,Vf,20,13,"ng-template",null,1,pN)(36,Pf,3,0,"ng-template",null,2,pN),bp$1()()()()(),Bc$1(38,"p-dialog",19),mD("visibleChange",function(r){return Rm$1(n),QM(i.showEditDialog,r)||(i.showEditDialog=r),xm$1(r)}),Bc$1(39,"div")(40,"div",20)(41,"p-floatlabel",21),au$1(42,"input",22),z_(),Bc$1(43,"label",23),YM(44,"Gotify Url"),bp$1()()(),Bc$1(45,"div")(46,"p-table",24,3),VE(48,Rf,4,1,"ng-template",null,4,pN)(50,Af,7,0,"ng-template",null,0,pN)(52,Hf,9,3,"ng-template",null,1,pN)(54,$f,3,0,"ng-template",null,2,pN),bp$1()()(),VE(56,Gf,5,0,"ng-template",null,5,pN),bp$1(),Bc$1(58,"p-dialog",25),mD("visibleChange",function(r){return Rm$1(n),QM(i.showHeaderDialog,r)||(i.showHeaderDialog=r),xm$1(r)}),Bc$1(59,"div")(60,"div",26)(61,"div",27)(62,"p-floatlabel",21),au$1(63,"input",28),z_(),Bc$1(64,"label",29),YM(65,"Key"),bp$1()()(),Bc$1(66,"div",30)(67,"p-floatlabel",21),au$1(68,"input",31),z_(),Bc$1(69,"label",32),YM(70,"Value"),bp$1()()()()(),VE(71,Uf,5,1,"ng-template",null,5,pN),bp$1(),au$1(73,"p-toast",33)(74,"p-confirm-dialog");}e&2&&(n_(),oM(i.isMobile()?1:-1),n_(),zE("collapsible",i.isMobile()?"offcanvas":"icon")("open",!i.isMobile())("overlay",i.isMobile()),n_(12),cM(i.sidebarNavGroupList()),n_(6),zE("icon",i.faRightFromBracket),n_(8),zE("icon",i.faBars),n_(3),zE("paginator",true)("rows",5)("stripedRows",true)("tableStyle",rN(32,Sf))("value",i.userList()),n_(7),PM(rN(33,Wo)),zE("header",XM("Client Token: ",i.selectedUser().ClientToken)),gD("visible",i.showEditDialog),zE("breakpoints",rN(34,Yo))("modal",true),n_(4),zE("formControl",i.editUserForm.controls.gotifyUrl),W_(),n_(4),zE("globalFilterFields",rN(35,If))("paginator",true)("rows",6)("scrollable",true)("sortOrder",1)("value",i.selectedHeaders()),n_(12),PM(rN(36,Wo)),gD("visible",i.showHeaderDialog),zE("breakpoints",rN(37,Yo))("modal",true),n_(5),zE("formControl",i.headerForm.controls.key),W_(),n_(5),zE("formControl",i.headerForm.controls.value),W_());},dependencies:[Pi,Ei,Fn,_n,e2,to,ui,X2,J2,mi,ao,Kt,po,Mo,wo,K1,vr$1,rn,T0$1,an,y5$1,ar$1,zo,VG,Po,jo,Ko,Go,Uo,Bo,Ro,$o,Ho,Eo,Lo,Oo,Fo,Ao,No,Vo,Io,qo],styles:["[_nghost-%COMP%]{display:block;min-height:100dvh}.dashboard-page[_ngcontent-%COMP%]{min-height:100dvh;padding:1rem;align-items:center;background:linear-gradient(135deg,color-mix(in srgb,var(--p-primary-color) 16%,transparent),transparent 38%),linear-gradient(315deg,color-mix(in srgb,transparent 42%,transparent),transparent 34%),transparent}.brand[_ngcontent-%COMP%]{height:48px}.brand[_ngcontent-%COMP%] img[_ngcontent-%COMP%]{margin-top:calc(var(--spacing) * -1)}.nav-icon[_ngcontent-%COMP%]{color:var(--p-menubar-item-icon-color);width:1rem}.page-header[_ngcontent-%COMP%]{align-items:center;display:flex;gap:1rem;margin-bottom:1rem}"]})}; +var chunkLHX5JTEI=/*#__PURE__*/Object.freeze({__proto__:null,angleDoubleLeft:e$8});var chunkFXBNLRYR=/*#__PURE__*/Object.freeze({__proto__:null,angleDoubleRight:e$7});var chunkVLDSKJMQ=/*#__PURE__*/Object.freeze({__proto__:null,angleDown:e});var chunkAU2VBYH5=/*#__PURE__*/Object.freeze({__proto__:null,angleLeft:e$6});var chunkMELZM5H5=/*#__PURE__*/Object.freeze({__proto__:null,angleRight:t$1});var chunkIBX6KQOS=/*#__PURE__*/Object.freeze({__proto__:null,angleUp:e$5});var chunk5DM6NLVR=/*#__PURE__*/Object.freeze({__proto__:null,arrowDown:o});var chunkXIABKHYL=/*#__PURE__*/Object.freeze({__proto__:null,arrowUp:e$b});var chunkXPWMSYKK=/*#__PURE__*/Object.freeze({__proto__:null,bars:e$1});var chunkQLXOUPAK=/*#__PURE__*/Object.freeze({__proto__:null,blank:t$2});var chunk4OUND4N4=/*#__PURE__*/Object.freeze({__proto__:null,calendar:e$f});var chunkHPX7ZEWF=/*#__PURE__*/Object.freeze({__proto__:null,check:e$2});var chunk4OZRW7SA=/*#__PURE__*/Object.freeze({__proto__:null,chevronDown:e$4});var chunkR7E2IGWX=/*#__PURE__*/Object.freeze({__proto__:null,chevronLeft:e$e});var chunkFA6BND6Z=/*#__PURE__*/Object.freeze({__proto__:null,chevronRight:e$d});var chunkA2B43NV3=/*#__PURE__*/Object.freeze({__proto__:null,chevronUp:e$c});var chunkVCWOSUJK=/*#__PURE__*/Object.freeze({__proto__:null,filterFill:l});var chunkDTHZPJHA=/*#__PURE__*/Object.freeze({__proto__:null,filter:e$9});var chunkCMFLPNUQ=/*#__PURE__*/Object.freeze({__proto__:null,minus:e$a});var chunkSTHBIG2B=/*#__PURE__*/Object.freeze({__proto__:null,plus:e$g});var chunkYFZFGC5I=/*#__PURE__*/Object.freeze({__proto__:null,search:e$3});var chunkOMOCQTHI=/*#__PURE__*/Object.freeze({__proto__:null,sortAlt:C$2});var chunkB6BTKI2D=/*#__PURE__*/Object.freeze({__proto__:null,sortAmountDown:C$1});var chunkLDTHEJWZ=/*#__PURE__*/Object.freeze({__proto__:null,sortAmountUpAlt:C});var chunkHWXNQUFY=/*#__PURE__*/Object.freeze({__proto__:null,spinner:e$h});var chunkD4NY5UYT=/*#__PURE__*/Object.freeze({__proto__:null,times:e$i});var chunkAQMWGJOV=/*#__PURE__*/Object.freeze({__proto__:null,trash:C$3});var chunkBNNNOWNN=/*#__PURE__*/Object.freeze({__proto__:null,windowMaximize:C$5});var chunkSWGQHCFW=/*#__PURE__*/Object.freeze({__proto__:null,windowMinimize:C$4});export{Zo as Dashboard}; \ No newline at end of file diff --git a/wwwroot/chunk-C_dmQLy0.js b/wwwroot/chunk-C_dmQLy0.js new file mode 100644 index 0000000..30d58a5 --- /dev/null +++ b/wwwroot/chunk-C_dmQLy0.js @@ -0,0 +1,2 @@ +var C={name:"volume-up",meta:{tags:["volume-up","loud","increase-sound","high-volume","louder"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.5312 2.41404C10.7564 2.23394 11.0653 2.19931 11.3252 2.3242C11.5849 2.44915 11.75 2.7118 11.75 2.99998V17C11.75 17.2882 11.5849 17.5508 11.3252 17.6758C11.0654 17.8006 10.7564 17.766 10.5312 17.5859L5.73633 13.75H1C0.585793 13.75 0.250011 13.4142 0.25 13V6.99998C0.25 6.58577 0.585786 6.24998 1 6.24998H5.73633L10.5312 2.41404ZM15.9639 4.11717C16.2743 3.84347 16.7484 3.87338 17.0225 4.18357C19.9929 7.54757 19.9912 12.4525 17.0225 15.8252C16.7488 16.1359 16.2757 16.166 15.9648 15.8926C15.654 15.6189 15.6238 15.1448 15.8975 14.834C18.3681 12.0268 18.3665 7.97156 15.8975 5.17576C15.6237 4.86528 15.6536 4.39121 15.9639 4.11717ZM6.46875 7.58592C6.33577 7.6923 6.1703 7.74998 6 7.74998H1.75V12.25H6C6.1703 12.25 6.33576 12.3077 6.46875 12.414L10.25 15.4385V4.56053L6.46875 7.58592ZM13.6602 6.77049C13.9912 6.52209 14.4612 6.58896 14.71 6.9199C16.0908 8.75756 16.0888 11.2339 14.7109 13.0791C14.4631 13.4106 13.9929 13.479 13.6611 13.2314C13.3293 12.9836 13.262 12.5135 13.5098 12.1816C14.4914 10.867 14.4893 9.12246 13.5107 7.82029C13.2621 7.48919 13.3291 7.01928 13.6602 6.77049Z",fill:"currentColor",key:"asplmi"}]]}; +export{C as volumeUp}; \ No newline at end of file diff --git a/wwwroot/chunk-C_gvazXp.js b/wwwroot/chunk-C_gvazXp.js new file mode 100644 index 0000000..f95e184 --- /dev/null +++ b/wwwroot/chunk-C_gvazXp.js @@ -0,0 +1,2 @@ +var t={name:"align-right",meta:{tags:["align-right","text-alignment","right-aligned","end-alignment","text-flush-right"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.9297 15.25C18.3439 15.25 18.6797 15.5858 18.6797 16C18.6797 16.4142 18.3439 16.75 17.9297 16.75H7.92969C7.51561 16.7498 7.17969 16.4141 7.17969 16C7.17969 15.5859 7.51561 15.2502 7.92969 15.25H17.9297ZM18 11.25C18.4142 11.25 18.75 11.5858 18.75 12C18.75 12.4142 18.4142 12.75 18 12.75H2C1.58579 12.75 1.25 12.4142 1.25 12C1.25 11.5858 1.58579 11.25 2 11.25H18ZM17.9297 7.25C18.3439 7.25 18.6797 7.58579 18.6797 8C18.6797 8.41421 18.3439 8.75 17.9297 8.75H7.92969C7.51561 8.74984 7.17969 8.41411 7.17969 8C7.17969 7.58589 7.51561 7.25016 7.92969 7.25H17.9297ZM18 3.25C18.4142 3.25 18.75 3.58579 18.75 4C18.75 4.41421 18.4142 4.75 18 4.75H2C1.58579 4.75 1.25 4.41421 1.25 4C1.25 3.58579 1.58579 3.25 2 3.25H18Z",fill:"currentColor",key:"3rqw2s"}]]}; +export{t as alignRight}; \ No newline at end of file diff --git a/wwwroot/chunk-CaGZEDh5.js b/wwwroot/chunk-CaGZEDh5.js new file mode 100644 index 0000000..4fa8f00 --- /dev/null +++ b/wwwroot/chunk-CaGZEDh5.js @@ -0,0 +1,2 @@ +var a={name:"fast-backward",meta:{tags:["fast-backward","previous","speed","quick","past"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M2 2.24994C2.41411 2.24994 2.74983 2.58587 2.75 2.99994V9.18943L9.46973 2.46967C9.68418 2.25534 10.007 2.19063 10.2871 2.30658C10.5673 2.42262 10.7499 2.69672 10.75 2.99994V9.18943L17.4697 2.46967C17.6842 2.25534 18.007 2.19063 18.2871 2.30658C18.5673 2.42262 18.7499 2.69672 18.75 2.99994V17C18.75 17.3033 18.5673 17.5773 18.2871 17.6934C18.0069 17.8094 17.6842 17.7448 17.4697 17.5303L10.75 10.8105V17C10.75 17.3033 10.5673 17.5773 10.2871 17.6934C10.0069 17.8094 9.68421 17.7448 9.46973 17.5303L2.75 10.8105V17C2.75 17.4142 2.41421 17.75 2 17.75C1.58579 17.75 1.25 17.4142 1.25 17V2.99994C1.25017 2.58587 1.58589 2.24994 2 2.24994ZM4.06055 9.99998L9.25 15.1895V4.8105L4.06055 9.99998ZM12.0605 9.99998L17.25 15.1895V4.8105L12.0605 9.99998Z",fill:"currentColor",key:"a2suf3"}]]}; +export{a as fastBackward}; \ No newline at end of file diff --git a/wwwroot/chunk-Ca__ZFu1.js b/wwwroot/chunk-Ca__ZFu1.js new file mode 100644 index 0000000..8534cb8 --- /dev/null +++ b/wwwroot/chunk-Ca__ZFu1.js @@ -0,0 +1,2 @@ +var e={name:"youtube",meta:{tags:["youtube","video","sharing","music","clip","vlog"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.67 6.14001C17.49 5.45001 16.94 4.89997 16.26 4.71997C15.01 4.37997 10.01 4.38 10.01 4.38C10.01 4.38 5.01004 4.37997 3.76004 4.71997C3.07004 4.90997 2.53004 5.45001 2.35004 6.14001C2.02004 7.40001 2.02002 10.02 2.02002 10.02C2.02002 10.02 2.02004 12.64 2.35004 13.9C2.53004 14.59 3.08004 15.12 3.76004 15.3C5.01004 15.64 10.01 15.64 10.01 15.64C10.01 15.64 15.01 15.64 16.26 15.3C16.95 15.11 17.49 14.59 17.67 13.9C18 12.64 18 10.02 18 10.02C18 10.02 18 7.40001 17.67 6.14001ZM8.36002 12.39V7.63L12.54 10.01L8.36002 12.39Z",fill:"currentColor",key:"e72ceb"}]]}; +export{e as youtube}; \ No newline at end of file diff --git a/wwwroot/chunk-Cd3_n9AN.js b/wwwroot/chunk-Cd3_n9AN.js new file mode 100644 index 0000000..315b1e2 --- /dev/null +++ b/wwwroot/chunk-Cd3_n9AN.js @@ -0,0 +1,2 @@ +var e={name:"refresh",meta:{tags:["refresh","update","reload","renew","repeat"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.46973 1.46973C9.76262 1.17684 10.2374 1.17684 10.5303 1.46973L13.5303 4.46973C13.8231 4.76263 13.8232 5.23739 13.5303 5.53028L10.5303 8.53028C10.2374 8.82313 9.76261 8.82313 9.46973 8.53028C9.17684 8.23739 9.17686 7.76263 9.46973 7.46973L11.1895 5.75H10C6.82421 5.75 4.25 8.32422 4.25 11.5C4.25003 14.6758 6.82423 17.25 10 17.25C13.1758 17.25 15.75 14.6758 15.75 11.5C15.75 11.0858 16.0858 10.75 16.5 10.75C16.9142 10.75 17.25 11.0858 17.25 11.5C17.25 15.5042 14.0042 18.75 10 18.75C5.99581 18.75 2.75003 15.5042 2.75 11.5C2.75 7.49579 5.99579 4.25 10 4.25H11.1895L9.46973 2.53028C9.17684 2.23739 9.17686 1.76263 9.46973 1.46973Z",fill:"currentColor",key:"9h86tx"}]]}; +export{e as refresh}; \ No newline at end of file diff --git a/wwwroot/chunk-CgFYbIID.js b/wwwroot/chunk-CgFYbIID.js new file mode 100644 index 0000000..64ee576 --- /dev/null +++ b/wwwroot/chunk-CgFYbIID.js @@ -0,0 +1,2 @@ +var o={name:"lock-open",meta:{tags:["lock-open","unlock","access","open","unchain"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.5 1.25C17.1242 1.25 19.25 3.37579 19.25 6C19.25 6.41421 18.9142 6.75 18.5 6.75C18.0858 6.75 17.75 6.41421 17.75 6C17.75 4.20421 16.2958 2.75 14.5 2.75C12.7042 2.75 11.25 4.20421 11.25 6V8.25H11.5C13.0188 8.25 14.25 9.48122 14.25 11V16C14.25 17.5188 13.0188 18.75 11.5 18.75H4.5C2.98122 18.75 1.75 17.5188 1.75 16V11C1.75 9.48122 2.98122 8.25 4.5 8.25H9.75V6C9.75 3.37579 11.8758 1.25 14.5 1.25ZM4.5 9.75C3.80964 9.75 3.25 10.3096 3.25 11V16C3.25 16.6904 3.80964 17.25 4.5 17.25H11.5C12.1904 17.25 12.75 16.6904 12.75 16V11C12.75 10.3096 12.1904 9.75 11.5 9.75H4.5Z",fill:"currentColor",key:"simlhy"}]]}; +export{o as lockOpen}; \ No newline at end of file diff --git a/wwwroot/chunk-CguDLXJM.js b/wwwroot/chunk-CguDLXJM.js new file mode 100644 index 0000000..112a955 --- /dev/null +++ b/wwwroot/chunk-CguDLXJM.js @@ -0,0 +1,2 @@ +var e={name:"horizontal-rule",meta:{tags:["divider","separator","line","section break","horizontal-rule"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 9.25C17.4142 9.25 17.75 9.58579 17.75 10C17.75 10.4142 17.4142 10.75 17 10.75H3C2.58579 10.75 2.25 10.4142 2.25 10C2.25 9.58579 2.58579 9.25 3 9.25H17Z",fill:"currentColor",key:"iu8x2q"}]]}; +export{e as horizontalRule}; \ No newline at end of file diff --git a/wwwroot/chunk-ChmAuL4M.js b/wwwroot/chunk-ChmAuL4M.js new file mode 100644 index 0000000..7f9346b --- /dev/null +++ b/wwwroot/chunk-ChmAuL4M.js @@ -0,0 +1,2 @@ +var C={name:"shopping-bag",meta:{tags:["shopping-bag","retail","purchase","buy","shop"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1.25C12.4842 1.25 14.5 3.26579 14.5 5.75V6.25H17.5C18.1942 6.25 18.75 6.80579 18.75 7.5V16C18.75 17.5142 17.5142 18.75 16 18.75H4C2.48579 18.75 1.25 17.5142 1.25 16V7.5C1.25 6.80579 1.80579 6.25 2.5 6.25H5.5V5.75C5.5 3.26579 7.51579 1.25 10 1.25ZM2.75 16C2.75 16.6858 3.31421 17.25 4 17.25H16C16.6858 17.25 17.25 16.6858 17.25 16V7.75H14.5V10C14.5 10.4142 14.1642 10.75 13.75 10.75C13.3358 10.75 13 10.4142 13 10V7.75H7V10C7 10.4142 6.66421 10.75 6.25 10.75C5.83579 10.75 5.5 10.4142 5.5 10V7.75H2.75V16ZM10 2.75C8.34421 2.75 7 4.09421 7 5.75V6.25H13V5.75C13 4.09421 11.6558 2.75 10 2.75Z",fill:"currentColor",key:"qfl9f5"}]]}; +export{C as shoppingBag}; \ No newline at end of file diff --git a/wwwroot/chunk-CixW3-s0.js b/wwwroot/chunk-CixW3-s0.js new file mode 100644 index 0000000..8859163 --- /dev/null +++ b/wwwroot/chunk-CixW3-s0.js @@ -0,0 +1,2 @@ +var e={name:"venus",meta:{tags:["venus","female","women","gender"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.25 7.00006C15.25 4.10057 12.8995 1.75006 10 1.75006C7.10051 1.75006 4.75 4.10057 4.75 7.00006C4.75 9.89956 7.10051 12.2501 10 12.2501C12.8995 12.2501 15.25 9.89956 15.25 7.00006ZM16.75 7.00006C16.75 10.4744 14.1249 13.3339 10.75 13.7071V15.7501H13C13.4142 15.7501 13.75 16.0858 13.75 16.5001C13.75 16.9143 13.4142 17.2501 13 17.2501H10.75V19.0001C10.75 19.4143 10.4142 19.7501 10 19.7501C9.58579 19.7501 9.25 19.4143 9.25 19.0001V17.2501H7C6.58579 17.2501 6.25 16.9143 6.25 16.5001C6.25 16.0858 6.58579 15.7501 7 15.7501H9.25V13.7071C5.87513 13.3339 3.25 10.4744 3.25 7.00006C3.25 3.27214 6.27208 0.250061 10 0.250061C13.7279 0.250061 16.75 3.27214 16.75 7.00006Z",fill:"currentColor",key:"npqmfl"}]]}; +export{e as venus}; \ No newline at end of file diff --git a/wwwroot/chunk-CjjZoW6P.js b/wwwroot/chunk-CjjZoW6P.js new file mode 100644 index 0000000..7692665 --- /dev/null +++ b/wwwroot/chunk-CjjZoW6P.js @@ -0,0 +1,2 @@ +var e={name:"envelope",meta:{tags:["envelope","email","letter","mail","message"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 2.25C17.9665 2.25 18.75 3.0335 18.75 4V16C18.75 16.9665 17.9665 17.75 17 17.75H3C2.0335 17.75 1.25 16.9665 1.25 16V4C1.25 3.0335 2.0335 2.25 3 2.25H17ZM10.335 10.6709C10.124 10.7762 9.87597 10.7762 9.66504 10.6709L2.75 7.21289V16C2.75 16.1381 2.86193 16.25 3 16.25H17C17.1381 16.25 17.25 16.1381 17.25 16V7.21289L10.335 10.6709ZM3 3.75C2.86193 3.75 2.75 3.86193 2.75 4V5.53613L10 9.16113L17.25 5.53613V4C17.25 3.86193 17.1381 3.75 17 3.75H3Z",fill:"currentColor",key:"cj1d87"}]]}; +export{e as envelope}; \ No newline at end of file diff --git a/wwwroot/chunk-ClbZz2dV.js b/wwwroot/chunk-ClbZz2dV.js new file mode 100644 index 0000000..ed524e9 --- /dev/null +++ b/wwwroot/chunk-ClbZz2dV.js @@ -0,0 +1,2 @@ +var e={name:"underline",meta:{tags:["text formatting","underscore","highlight","emphasis","underline"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18 17.25C18.4142 17.25 18.75 17.5858 18.75 18C18.75 18.4142 18.4142 18.75 18 18.75H2C1.58579 18.75 1.25 18.4142 1.25 18C1.25 17.5858 1.58579 17.25 2 17.25H18ZM16 1.25C16.4142 1.25 16.75 1.58579 16.75 2V8.46191C16.7499 10.1498 16.0225 11.755 14.751 12.9287C13.4814 14.1006 11.7717 14.75 10 14.75C8.22834 14.75 6.51864 14.1006 5.24902 12.9287C3.97747 11.755 3.25011 10.1498 3.25 8.46191V2C3.25 1.58579 3.58579 1.25 4 1.25C4.41421 1.25 4.75 1.58579 4.75 2V8.46191C4.75011 9.7115 5.28695 10.9237 6.26562 11.8271C7.24643 12.7325 8.5891 13.25 10 13.25C11.4109 13.25 12.7536 12.7325 13.7344 11.8271C14.7131 10.9237 15.2499 9.7115 15.25 8.46191V2C15.25 1.58579 15.5858 1.25 16 1.25Z",fill:"currentColor",key:"x4j81c"}]]}; +export{e as underline}; \ No newline at end of file diff --git a/wwwroot/chunk-Cll8LZqw.js b/wwwroot/chunk-Cll8LZqw.js new file mode 100644 index 0000000..b454d9a --- /dev/null +++ b/wwwroot/chunk-Cll8LZqw.js @@ -0,0 +1,2 @@ +var C={name:"pound",meta:{tags:["pound","money","currency","sterling","uk"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12.167 1.25586C13.38 1.3109 14.5008 1.73928 15.3389 2.5459C16.2385 3.41184 16.75 4.65435 16.75 6.16016V7.12012C16.7499 7.53421 16.4141 7.87002 16 7.87012C15.5859 7.87001 15.2501 7.53421 15.25 7.12012V6.16016C15.25 5.0062 14.8665 4.1735 14.2988 3.62695C13.7253 3.07495 12.9008 2.75435 11.917 2.75C10.0659 2.75156 8.75846 4.10252 8.75 6.00293V9.25H12C12.4142 9.25 12.75 9.58579 12.75 10C12.75 10.4142 12.4142 10.75 12 10.75H8.75V14C8.75 14.1538 8.70242 14.3037 8.61426 14.4297L6.64063 17.25H16.0801C16.4942 17.2501 16.8301 17.5858 16.8301 18C16.8301 18.4142 16.4942 18.7499 16.0801 18.75H5.2002C4.92069 18.75 4.66437 18.5945 4.53516 18.3467C4.40604 18.0987 4.42569 17.7994 4.58594 17.5703L7.25 13.7637V10.75H5C4.58579 10.75 4.25 10.4142 4.25 10C4.25 9.58579 4.58579 9.25 5 9.25H7.25V5.99707C7.2617 3.31884 9.19294 1.25014 11.9199 1.25H11.9238L12.167 1.25586Z",fill:"currentColor",key:"5yvkio"}]]}; +export{C as pound}; \ No newline at end of file diff --git a/wwwroot/chunk-CmIx_tQS.js b/wwwroot/chunk-CmIx_tQS.js new file mode 100644 index 0000000..8143953 --- /dev/null +++ b/wwwroot/chunk-CmIx_tQS.js @@ -0,0 +1,2 @@ +var C={name:"user-edit",meta:{tags:["user-edit","change-profile","user-modification","edit-user","update-details"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.2197 8.37109C17.7008 8.38044 18.2244 8.55471 18.6064 8.94531C18.9691 9.31621 19.1568 9.81564 19.1777 10.2959C19.1987 10.7777 19.0528 11.3176 18.6445 11.7168L18.6436 11.7158L13.1309 17.2305C13.0073 17.3541 12.8439 17.431 12.6699 17.4473L10.7295 17.627C10.5093 17.6474 10.2913 17.5693 10.1338 17.4141C9.97632 17.2588 9.89489 17.0417 9.91211 16.8213L10.0625 14.9014C10.0765 14.7233 10.154 14.556 10.2803 14.4297L15.7998 8.91016C15.8356 8.87434 15.8754 8.84297 15.917 8.81543C16.2977 8.49317 16.7807 8.3626 17.2197 8.37109ZM8.56055 11.3701C9.22549 11.3701 9.87245 11.3905 10.4902 11.4316C10.9033 11.4594 11.216 11.8173 11.1885 12.2305C11.1607 12.6434 10.8036 12.956 10.3906 12.9287C9.80878 12.8899 9.19518 12.8701 8.56055 12.8701C6.57127 12.8701 4.96715 13.0474 3.87891 13.5576C3.35158 13.8049 2.97232 14.1189 2.7207 14.5068C2.46997 14.8937 2.31055 15.4092 2.31055 16.1201C2.31055 16.5342 1.97454 16.8699 1.56055 16.8701C1.14633 16.8701 0.80957 16.5343 0.80957 16.1201C0.80957 15.1762 1.02622 14.3639 1.46289 13.6904C1.89875 13.0185 2.51984 12.539 3.24219 12.2002C4.6539 11.5382 6.55027 11.3701 8.56055 11.3701ZM17.1904 9.87109C17.0262 9.86797 16.9165 9.92441 16.8701 9.9707C16.8535 9.9873 16.8334 9.99981 16.8154 10.0146L11.5352 15.2949L11.4766 16.0508L12.2617 15.9775L17.5957 10.6436C17.6373 10.6027 17.6862 10.5118 17.6797 10.3613C17.6731 10.2093 17.6114 10.0731 17.5342 9.99414C17.4763 9.93496 17.3542 9.87429 17.1904 9.87109ZM8.56055 2.37012C10.6314 2.37038 12.3105 4.04921 12.3105 6.12012C12.3105 8.19102 10.6314 9.86985 8.56055 9.87012C6.48948 9.87012 4.81055 8.19119 4.81055 6.12012C4.81055 4.04905 6.48948 2.37012 8.56055 2.37012ZM8.56055 3.87012C7.31791 3.87012 6.31055 4.87748 6.31055 6.12012C6.31055 7.36276 7.31791 8.37012 8.56055 8.37012C9.80296 8.36985 10.8105 7.3626 10.8105 6.12012C10.8105 4.87764 9.80296 3.87038 8.56055 3.87012Z",fill:"currentColor",key:"ddowyq"}]]}; +export{C as userEdit}; \ No newline at end of file diff --git a/wwwroot/chunk-CmhdJqvT.js b/wwwroot/chunk-CmhdJqvT.js new file mode 100644 index 0000000..c66cc6a --- /dev/null +++ b/wwwroot/chunk-CmhdJqvT.js @@ -0,0 +1,2 @@ +var C={name:"language",meta:{tags:["language","linguistics","words","communication","dialect"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.3799 8.12793C14.8792 8.12794 15.2896 8.41973 15.5156 8.83691L15.6006 9.02246L15.6064 9.03809L18.5859 17.3779C18.725 17.7679 18.5218 18.1976 18.1318 18.3369C17.7421 18.4757 17.3133 18.2723 17.1738 17.8828L16.5508 16.1396H12.209L11.5859 17.8828C11.4464 18.2723 11.0177 18.4759 10.6279 18.3369C10.238 18.1976 10.0348 17.7679 10.1738 17.3779L13.1533 9.03809L13.1592 9.02246C13.3554 8.509 13.8095 8.12798 14.3799 8.12793ZM12.7451 14.6396H16.0146L14.3799 10.0645L12.7451 14.6396ZM6.62988 1.62988C7.0441 1.62988 7.37988 1.96567 7.37988 2.37988V4.34961H11.1299C11.544 4.34961 11.8798 4.68551 11.8799 5.09961C11.8799 5.51382 11.5441 5.84961 11.1299 5.84961H10.1943C8.06648 9.22114 6.04629 11.4831 3.40723 13.0176C3.04925 13.2257 2.59012 13.1049 2.38184 12.7471C2.17374 12.389 2.29539 11.9299 2.65332 11.7217C4.80278 10.4719 6.54571 8.65613 8.4082 5.84961H2.12988C1.71573 5.84954 1.37988 5.51378 1.37988 5.09961C1.38001 4.68555 1.71581 4.34968 2.12988 4.34961H5.87988V2.37988C5.87988 1.96571 6.21573 1.62995 6.62988 1.62988ZM7.82812 10.7314C8.07563 10.3996 8.54593 10.331 8.87793 10.5781C9.44716 11.0026 10.0223 11.3858 10.6025 11.7188C10.9618 11.9249 11.086 12.3839 10.8799 12.7432C10.6737 13.1021 10.2156 13.2265 9.85645 13.0205C9.21709 12.6536 8.59179 12.2364 7.98145 11.7812C7.64972 11.5336 7.58078 11.0634 7.82812 10.7314Z",fill:"currentColor",key:"fj71ya"}]]}; +export{C as language}; \ No newline at end of file diff --git a/wwwroot/chunk-CneK9XIV.js b/wwwroot/chunk-CneK9XIV.js new file mode 100644 index 0000000..30784b3 --- /dev/null +++ b/wwwroot/chunk-CneK9XIV.js @@ -0,0 +1,2 @@ +var C={name:"sliders-h",meta:{tags:["sliders-h","controls","adjustments","sliders","settings"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8 12.25C8.41421 12.25 8.75 12.5858 8.75 13V16C8.75 16.4142 8.41421 16.75 8 16.75C7.58579 16.75 7.25 16.4142 7.25 16V15.25H3C2.58579 15.25 2.25 14.9142 2.25 14.5C2.25 14.0858 2.58579 13.75 3 13.75H7.25V13C7.25 12.5858 7.58579 12.25 8 12.25ZM17 13.75C17.4142 13.75 17.75 14.0858 17.75 14.5C17.75 14.9142 17.4142 15.25 17 15.25H10C9.58579 15.25 9.25 14.9142 9.25 14.5C9.25 14.0858 9.58579 13.75 10 13.75H17ZM12 7.75C12.4142 7.75 12.75 8.08579 12.75 8.5V11.5C12.75 11.9142 12.4142 12.25 12 12.25C11.5858 12.25 11.25 11.9142 11.25 11.5V10.75H3C2.58579 10.75 2.25 10.4142 2.25 10C2.25 9.58579 2.58579 9.25 3 9.25H11.25V8.5C11.25 8.08579 11.5858 7.75 12 7.75ZM17 9.25C17.4142 9.25 17.75 9.58579 17.75 10C17.75 10.4142 17.4142 10.75 17 10.75H14C13.5858 10.75 13.25 10.4142 13.25 10C13.25 9.58579 13.5858 9.25 14 9.25H17ZM8 3.25C8.41421 3.25 8.75 3.58579 8.75 4V7C8.75 7.41421 8.41421 7.75 8 7.75C7.58579 7.75 7.25 7.41421 7.25 7V6.25H3C2.58579 6.25 2.25 5.91421 2.25 5.5C2.25 5.08579 2.58579 4.75 3 4.75H7.25V4C7.25 3.58579 7.58579 3.25 8 3.25ZM17 4.75C17.4142 4.75 17.75 5.08579 17.75 5.5C17.75 5.91421 17.4142 6.25 17 6.25H10C9.58579 6.25 9.25 5.91421 9.25 5.5C9.25 5.08579 9.58579 4.75 10 4.75H17Z",fill:"currentColor",key:"olopjf"}]]}; +export{C as slidersH}; \ No newline at end of file diff --git a/wwwroot/chunk-CpycRTiG.js b/wwwroot/chunk-CpycRTiG.js new file mode 100644 index 0000000..c9712ca --- /dev/null +++ b/wwwroot/chunk-CpycRTiG.js @@ -0,0 +1,2 @@ +var C={name:"calculator",meta:{tags:["calculator","math","addition","subtraction","calculation"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15 0.25C16.2426 0.25 17.25 1.25736 17.25 2.5V17.5C17.25 18.7426 16.2426 19.75 15 19.75H5C3.75736 19.75 2.75 18.7426 2.75 17.5V2.5C2.75 1.25736 3.75736 0.25 5 0.25H15ZM5 1.75C4.58579 1.75 4.25 2.08579 4.25 2.5V17.5C4.25 17.9142 4.58579 18.25 5 18.25H15C15.4142 18.25 15.75 17.9142 15.75 17.5V2.5C15.75 2.08579 15.4142 1.75 15 1.75H5ZM10.5 14.25C10.7761 14.25 11 14.4739 11 14.75V15.75C11 16.0261 10.7761 16.25 10.5 16.25H6.5C6.22386 16.25 6 16.0261 6 15.75V14.75C6 14.4739 6.22386 14.25 6.5 14.25H10.5ZM13.5 14.25C13.7761 14.25 14 14.4739 14 14.75V15.75C14 16.0261 13.7761 16.25 13.5 16.25H12.5C12.2239 16.25 12 16.0261 12 15.75V14.75C12 14.4739 12.2239 14.25 12.5 14.25H13.5ZM7.5 11C7.77614 11 8 11.2239 8 11.5V12.5C8 12.7761 7.77614 13 7.5 13H6.5C6.22386 13 6 12.7761 6 12.5V11.5C6 11.2239 6.22386 11 6.5 11H7.5ZM10.5 11C10.7761 11 11 11.2239 11 11.5V12.5C11 12.7761 10.7761 13 10.5 13H9.5C9.22386 13 9 12.7761 9 12.5V11.5C9 11.2239 9.22386 11 9.5 11H10.5ZM13.5 11C13.7761 11 14 11.2239 14 11.5V12.5C14 12.7761 13.7761 13 13.5 13H12.5C12.2239 13 12 12.7761 12 12.5V11.5C12 11.2239 12.2239 11 12.5 11H13.5ZM7.5 7.75C7.77614 7.75 8 7.97386 8 8.25V9.25C8 9.52614 7.77614 9.75 7.5 9.75H6.5C6.22386 9.75 6 9.52614 6 9.25V8.25C6 7.97386 6.22386 7.75 6.5 7.75H7.5ZM10.5 7.75C10.7761 7.75 11 7.97386 11 8.25V9.25C11 9.52614 10.7761 9.75 10.5 9.75H9.5C9.22386 9.75 9 9.52614 9 9.25V8.25C9 7.97386 9.22386 7.75 9.5 7.75H10.5ZM13.5 7.75C13.7761 7.75 14 7.97386 14 8.25V9.25C14 9.52614 13.7761 9.75 13.5 9.75H12.5C12.2239 9.75 12 9.52614 12 9.25V8.25C12 7.97386 12.2239 7.75 12.5 7.75H13.5ZM13.5 3.75C13.7761 3.75 14 3.97386 14 4.25V5.75C14 6.02614 13.7761 6.25 13.5 6.25H6.5C6.22386 6.25 6 6.02614 6 5.75V4.25C6 3.97386 6.22386 3.75 6.5 3.75H13.5Z",fill:"currentColor",key:"6u4ptu"}]]}; +export{C as calculator}; \ No newline at end of file diff --git a/wwwroot/chunk-CqvXs5Pn.js b/wwwroot/chunk-CqvXs5Pn.js new file mode 100644 index 0000000..b3b6846 --- /dev/null +++ b/wwwroot/chunk-CqvXs5Pn.js @@ -0,0 +1,2 @@ +var C={name:"arrow-up-right",meta:{tags:["arrow-up-right","northeast","move","diagonal","direction"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.9502 4.2998C14.9948 4.29983 15.0386 4.30402 15.0811 4.31152C15.0869 4.31255 15.0928 4.31328 15.0986 4.31445C15.114 4.31755 15.1285 4.3241 15.1436 4.32812C15.1748 4.33647 15.2061 4.34496 15.2363 4.35742C15.2865 4.37819 15.3339 4.40393 15.3779 4.43457C15.4138 4.45958 15.4484 4.48752 15.4805 4.51953C15.5116 4.55073 15.538 4.58523 15.5625 4.62012C15.5663 4.62559 15.5715 4.63016 15.5752 4.63574C15.625 4.71074 15.6578 4.79315 15.6777 4.87793C15.6794 4.88484 15.6822 4.89146 15.6836 4.89844C15.6849 4.90495 15.6863 4.91143 15.6875 4.91797C15.6951 4.96082 15.7002 5.00477 15.7002 5.0498V13.54C15.7001 13.954 15.3641 14.2898 14.9502 14.29C14.5361 14.29 14.2003 13.9541 14.2002 13.54V6.86035L5.58013 15.4805C5.28729 15.7731 4.81244 15.7731 4.51959 15.4805C4.22683 15.1876 4.22691 14.7128 4.51959 14.4199L13.1397 5.7998H6.46001C6.0458 5.7998 5.71002 5.46402 5.71002 5.0498C5.71015 4.6357 6.04588 4.2998 6.46001 4.2998H14.9502Z",fill:"currentColor",key:"3emyha"}]]}; +export{C as arrowUpRight}; \ No newline at end of file diff --git a/wwwroot/chunk-CsY8qFwP.js b/wwwroot/chunk-CsY8qFwP.js new file mode 100644 index 0000000..c1dc50c --- /dev/null +++ b/wwwroot/chunk-CsY8qFwP.js @@ -0,0 +1,2 @@ +var r={name:"arrow-right",meta:{tags:["arrow-right","next","forward","right","proceed"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.4697 3.46973C10.7626 3.17683 11.2374 3.17683 11.5303 3.46973L17.5303 9.46974C17.8232 9.76264 17.8232 10.2374 17.5303 10.5303L11.5303 16.5303C11.2374 16.8232 10.7626 16.8232 10.4697 16.5303C10.1769 16.2374 10.1769 15.7626 10.4697 15.4698L15.1895 10.75H3C2.58581 10.75 2.25003 10.4142 2.25 10C2.25 9.5858 2.58579 9.25001 3 9.25001H15.1895L10.4697 4.53028C10.1769 4.23739 10.1769 3.76262 10.4697 3.46973Z",fill:"currentColor",key:"amw0k2"}]]}; +export{r as arrowRight}; \ No newline at end of file diff --git a/wwwroot/chunk-Ct3VDrkk.js b/wwwroot/chunk-Ct3VDrkk.js new file mode 100644 index 0000000..9c0bcfa --- /dev/null +++ b/wwwroot/chunk-Ct3VDrkk.js @@ -0,0 +1,2 @@ +var e={name:"chevron-circle-down",meta:{tags:["chevron-circle-down","download","decrease","down","lower"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM13.4697 7.46973C13.7626 7.17683 14.2374 7.17683 14.5303 7.46973C14.8232 7.76262 14.8232 8.23738 14.5303 8.53027L10.5303 12.5303C10.2374 12.8232 9.76262 12.8232 9.46973 12.5303L5.46973 8.53027C5.17683 8.23738 5.17683 7.76262 5.46973 7.46973C5.76262 7.17683 6.23738 7.17683 6.53027 7.46973L10 10.9395L13.4697 7.46973Z",fill:"currentColor",key:"uxvmji"}]]}; +export{e as chevronCircleDown}; \ No newline at end of file diff --git a/wwwroot/chunk-CtQR2CoU.js b/wwwroot/chunk-CtQR2CoU.js new file mode 100644 index 0000000..f6caa43 --- /dev/null +++ b/wwwroot/chunk-CtQR2CoU.js @@ -0,0 +1,2 @@ +var C={name:"file-pdf",meta:{tags:["file-pdf","document","adobe","read","acrobat"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.5 1.25C10.6989 1.25 10.8896 1.32907 11.0303 1.46973L16.5303 6.96973C16.6709 7.11038 16.75 7.30109 16.75 7.5V16C16.75 17.5142 15.5142 18.75 14 18.75H6C4.48579 18.75 3.25 17.5142 3.25 16V4C3.25 2.48579 4.48579 1.25 6 1.25H10.5ZM6 2.75C5.31421 2.75 4.75 3.31421 4.75 4V16C4.75 16.6858 5.31421 17.25 6 17.25H14C14.6858 17.25 15.25 16.6858 15.25 16V8.25H10.5C10.0858 8.25 9.75 7.91421 9.75 7.5V2.75H6ZM8.8457 8.9834C9.0167 8.3514 10.2182 8.25834 10.3682 9.19434C10.5361 9.74434 10.3138 10.6194 10.1748 11.1943C10.4638 11.9543 10.8752 12.4727 11.4902 12.8477C12.1112 12.7697 13.3549 12.6513 13.791 13.0791C14.167 13.4541 14.077 14.4609 13.166 14.4609C12.637 14.4609 11.8469 14.2185 11.1719 13.8545C10.3999 13.9835 9.52748 14.3083 8.72754 14.5723C6.93783 17.6567 5.89111 16.2507 6.00879 15.6865C6.15079 14.9725 7.11605 14.4041 7.83105 14.0361C8.20605 13.3791 8.73873 12.2318 9.0957 11.3789C8.83181 10.3582 8.68879 9.5583 8.8457 8.9834ZM7.79785 14.6084C7.58771 14.8055 6.89388 15.3695 6.71191 15.8584C6.71256 15.883 7.11944 15.6894 7.79785 14.6084ZM9.63867 11.9766C9.39869 12.6085 9.1028 13.3258 8.75586 13.9297C9.32383 13.7117 9.9709 13.3972 10.7148 13.2441C10.3139 12.9471 9.93562 12.5155 9.63867 11.9766ZM12.126 13.4727C13.2799 13.9656 13.459 13.751 13.459 13.751C13.5867 13.6649 13.3795 13.3797 12.126 13.4727ZM9.62793 9.05176C9.53802 9.05244 9.53544 10.013 9.69238 10.5088C9.86738 10.1978 9.89193 9.05176 9.62793 9.05176ZM11.25 6.75H14.1895L11.25 3.81055V6.75Z",fill:"currentColor",key:"182sdc"}]]}; +export{C as filePdf}; \ No newline at end of file diff --git a/wwwroot/chunk-CtiF6_BF.js b/wwwroot/chunk-CtiF6_BF.js new file mode 100644 index 0000000..867e897 --- /dev/null +++ b/wwwroot/chunk-CtiF6_BF.js @@ -0,0 +1,2 @@ +var C={name:"cloud-download",meta:{tags:["cloud-download","download","data","fetch","retrieval"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 9.32031C10.4142 9.32031 10.75 9.6561 10.75 10.0703V14.6201L12.2998 13.0703C12.5927 12.7775 13.0675 12.7774 13.3603 13.0703C13.6529 13.3632 13.6531 13.8381 13.3603 14.1309L10.5303 16.9609C10.4972 16.994 10.461 17.0223 10.4238 17.0479C10.4211 17.0497 10.4187 17.0519 10.416 17.0537C10.4002 17.0643 10.3827 17.0718 10.3662 17.0811C10.3401 17.0958 10.3141 17.1105 10.2861 17.1221C10.268 17.1295 10.249 17.1337 10.2305 17.1396C10.1575 17.1634 10.0809 17.1807 10 17.1807C9.91876 17.1807 9.84181 17.1636 9.76855 17.1396C9.75006 17.1336 9.73096 17.1296 9.71289 17.1221C9.66189 17.1009 9.61391 17.0744 9.56933 17.043C9.53466 17.0185 9.50075 16.9919 9.46972 16.9609L6.63964 14.1309C6.34684 13.8381 6.34703 13.3632 6.63964 13.0703C6.93254 12.7774 7.4073 12.7774 7.70019 13.0703L9.25 14.6201V10.0703C9.25 9.6561 9.58579 9.32032 10 9.32031ZM7.5 2.82031C10.2751 2.82031 12.6595 4.4951 13.6963 6.89648C13.951 6.84895 14.2189 6.82031 14.5 6.82031C15.7439 6.82031 16.925 7.43478 17.7803 8.29004C18.6355 9.14529 19.25 10.3264 19.25 11.5703C19.25 12.6965 19.1301 13.8629 18.5752 14.7588C17.9714 15.7333 16.9481 16.25 15.5 16.25C15.0859 16.25 14.7501 15.9141 14.75 15.5C14.7502 15.0859 15.0859 14.75 15.5 14.75C16.5517 14.75 17.0285 14.4065 17.2998 13.9688C17.6196 13.4523 17.75 12.6537 17.75 11.5703C17.75 10.8143 17.3644 9.99531 16.7197 9.35059C16.075 8.70585 15.2561 8.32031 14.5 8.32031C14.1514 8.32031 13.8122 8.39005 13.4619 8.50391C13.2711 8.56588 13.0629 8.54828 12.8848 8.45605C12.7069 8.3638 12.5731 8.20406 12.5137 8.0127C11.8484 5.8681 9.8526 4.32031 7.5 4.32031C4.60421 4.32032 2.25 6.67453 2.25 9.57031C2.25 11.0094 2.25798 12.3562 2.58691 13.3496C2.74503 13.827 2.95974 14.163 3.23339 14.3818C3.49853 14.5937 3.88709 14.75 4.5 14.75C4.91411 14.75 5.24983 15.0859 5.25 15.5C5.24986 15.9141 4.91413 16.25 4.5 16.25C3.6133 16.25 2.87637 16.0159 2.29785 15.5537C1.72802 15.0983 1.37993 14.476 1.16308 13.8213C0.742053 12.5498 0.749994 10.9311 0.749995 9.57031C0.749995 5.8461 3.77579 2.82032 7.5 2.82031Z",fill:"currentColor",key:"yohx0c"}]]}; +export{C as cloudDownload}; \ No newline at end of file diff --git a/wwwroot/chunk-Cw1YnIrA.js b/wwwroot/chunk-Cw1YnIrA.js new file mode 100644 index 0000000..183bb29 --- /dev/null +++ b/wwwroot/chunk-Cw1YnIrA.js @@ -0,0 +1,2 @@ +var C={name:"gift",meta:{tags:["gift","present","suprise","box","birthday"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14 1.25C15.5142 1.25 16.75 2.48579 16.75 4C16.75 4.66397 16.5117 5.27382 16.1172 5.75H17.5C18.1904 5.75 18.75 6.30964 18.75 7V9.5C18.75 10.1047 18.3205 10.6088 17.75 10.7246V17.5C17.75 18.1942 17.1942 18.75 16.5 18.75H3.5C2.80579 18.75 2.25 18.1942 2.25 17.5V10.7246C1.67948 10.6088 1.25 10.1047 1.25 9.5V7C1.25 6.30964 1.80964 5.75 2.5 5.75H3.88281C3.48831 5.27382 3.25 4.66397 3.25 4C3.25 2.48579 4.48579 1.25 6 1.25C7.68019 1.25 9.15559 2.12175 10 3.4375C10.8444 2.12175 12.3198 1.25 14 1.25ZM10.75 17.25H16.25V10.75H10.75V17.25ZM3.75 17.25H9.25V10.75H3.75V17.25ZM10.75 9.25H17.25V7.25H10.75V9.25ZM2.75 9.25H9.25V7.25H2.75V9.25ZM6 2.75C5.31421 2.75 4.75 3.31421 4.75 4C4.75 4.68579 5.31421 5.25 6 5.25H9.16211C8.82371 3.81627 7.53754 2.75 6 2.75ZM14 2.75C12.4625 2.75 11.1763 3.81627 10.8379 5.25H14C14.6858 5.25 15.25 4.68579 15.25 4C15.25 3.31421 14.6858 2.75 14 2.75Z",fill:"currentColor",key:"1blhg9"}]]}; +export{C as gift}; \ No newline at end of file diff --git a/wwwroot/chunk-CwqXFDqP.js b/wwwroot/chunk-CwqXFDqP.js new file mode 100644 index 0000000..2548a56 --- /dev/null +++ b/wwwroot/chunk-CwqXFDqP.js @@ -0,0 +1,2 @@ +var C={name:"flag-fill",meta:{tags:["flag-fill","complete","report"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7.73242 1.26265L7.73145 1.26363C8.21354 1.30147 8.7213 1.47689 9.18848 1.67769C9.66629 1.88306 10.1694 2.14442 10.6426 2.39156C11.1268 2.64443 11.5811 2.8825 12.002 3.06929C12.431 3.2597 12.7629 3.36754 13.0029 3.39449H13.0049C13.1337 3.40921 13.4143 3.3843 13.8398 3.29097C14.2401 3.20318 14.6935 3.07328 15.127 2.9355C15.5582 2.79843 15.9591 2.65702 16.2529 2.54976C16.3993 2.49632 16.5185 2.45113 16.6006 2.41988C16.6416 2.40427 16.6741 2.39195 16.6953 2.38374C16.7056 2.37975 16.7136 2.37696 16.7188 2.37495C16.7213 2.37396 16.7234 2.37251 16.7246 2.37202H16.7256C16.9565 2.28135 17.2179 2.31045 17.4229 2.45015C17.6276 2.58987 17.75 2.82237 17.75 3.07027V11.5996C17.7499 11.9078 17.5613 12.185 17.2744 12.2978H17.2734V12.2988H17.2715C17.2697 12.2995 17.2668 12.3005 17.2637 12.3017C17.2573 12.3042 17.2481 12.3079 17.2363 12.3125C17.2127 12.3216 17.1784 12.3349 17.1348 12.3515C17.0472 12.3848 16.9212 12.4321 16.7676 12.4882C16.4606 12.6003 16.0383 12.7491 15.5811 12.8945C15.1258 13.0392 14.6243 13.1845 14.1611 13.2861C13.7233 13.3821 13.2311 13.4602 12.835 13.415V13.414C12.3607 13.3606 11.8585 13.177 11.3936 12.9707C10.9197 12.7604 10.4188 12.4967 9.94824 12.2509C9.46664 11.9994 9.01374 11.7652 8.59668 11.5859C8.17021 11.4026 7.84396 11.3059 7.61231 11.288L7.60742 11.2871C7.41777 11.2713 7.06343 11.3068 6.5752 11.4003C6.10753 11.49 5.58137 11.6196 5.08203 11.7558C4.5845 11.8915 4.12249 12.0313 3.78418 12.1367C3.77263 12.1403 3.76125 12.1439 3.75 12.1474V18C3.7498 18.414 3.41409 18.75 3 18.75C2.58591 18.75 2.2502 18.414 2.25 18V3.07027C2.25 2.7477 2.45678 2.46064 2.7627 2.35835H2.76367L2.76563 2.35738C2.7675 2.35675 2.77008 2.35556 2.77344 2.35445C2.78054 2.35209 2.79132 2.34908 2.80469 2.34468C2.83144 2.33587 2.87026 2.3227 2.91992 2.30659C3.01952 2.2743 3.16279 2.22833 3.33789 2.17378C3.68756 2.06485 4.16784 1.92098 4.6875 1.77925C5.20561 1.63795 5.77256 1.49618 6.29297 1.39644C6.79255 1.3007 7.32204 1.22845 7.73242 1.26265Z",fill:"currentColor",key:"1plxrj"}]]}; +export{C as flagFill}; \ No newline at end of file diff --git a/wwwroot/chunk-CwsZvoEy.js b/wwwroot/chunk-CwsZvoEy.js new file mode 100644 index 0000000..0fa8c9e --- /dev/null +++ b/wwwroot/chunk-CwsZvoEy.js @@ -0,0 +1,2 @@ +var e={name:"reply",meta:{tags:["reply","respond","answer","comment-back","feedback"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12.0176 3.47173C12.3094 3.1779 12.7842 3.17608 13.0781 3.46782L17.5283 7.88773C17.6651 8.0236 17.75 8.2119 17.75 8.41995C17.75 8.56012 17.7086 8.68957 17.6416 8.80179C17.6096 8.85552 17.5734 8.90737 17.5283 8.95218L13.0781 13.3721C12.7842 13.6637 12.3094 13.662 12.0176 13.3682C11.726 13.0743 11.7279 12.5995 12.0215 12.3076L15.1807 9.16995H3.75V16C3.74987 16.4141 3.41413 16.75 3 16.75C2.58587 16.75 2.25013 16.4141 2.25 16V8.41995C2.25 8.00574 2.58579 7.66996 3 7.66996H15.1807L12.0215 4.53227C11.7277 4.24049 11.726 3.76564 12.0176 3.47173Z",fill:"currentColor",key:"bv9s7h"}]]}; +export{e as reply}; \ No newline at end of file diff --git a/wwwroot/chunk-Cwvd_1TK.js b/wwwroot/chunk-Cwvd_1TK.js new file mode 100644 index 0000000..604803d --- /dev/null +++ b/wwwroot/chunk-Cwvd_1TK.js @@ -0,0 +1,2 @@ +var r={name:"arrow-up-right-and-arrow-down-left-from-center",meta:{tags:["arrow-up-right-and-arrow-down-left-from-center","split","diverge","separate"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7.96973 10.9697C8.26262 10.6768 8.73738 10.6768 9.03027 10.9697C9.32317 11.2626 9.32317 11.7374 9.03027 12.0303L4.31055 16.75H8C8.41421 16.75 8.75 17.0858 8.75 17.5C8.75 17.9142 8.41421 18.25 8 18.25H2.5C2.08579 18.25 1.75 17.9142 1.75 17.5V12C1.75 11.5858 2.08579 11.25 2.5 11.25C2.91421 11.25 3.25 11.5858 3.25 12V15.6895L7.96973 10.9697ZM17.5 1.75C17.9142 1.75 18.25 2.08579 18.25 2.5V8C18.25 8.41421 17.9142 8.75 17.5 8.75C17.0858 8.74998 16.75 8.4142 16.75 8V4.31055L12.0303 9.03027C11.7374 9.32317 11.2626 9.32317 10.9697 9.03027C10.6768 8.73738 10.6768 8.26262 10.9697 7.96973L15.6895 3.25H12C11.5858 3.24998 11.25 2.9142 11.25 2.5C11.25 2.0858 11.5858 1.75002 12 1.75H17.5Z",fill:"currentColor",key:"93y1gk"}]]}; +export{r as arrowUpRightAndArrowDownLeftFromCenter}; \ No newline at end of file diff --git a/wwwroot/chunk-Cy69gECC.js b/wwwroot/chunk-Cy69gECC.js new file mode 100644 index 0000000..6da8fe7 --- /dev/null +++ b/wwwroot/chunk-Cy69gECC.js @@ -0,0 +1,2 @@ +var C={name:"book",meta:{tags:["book","read","literature","knowledge","education"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 1.25C17.4142 1.25 17.75 1.58579 17.75 2V18C17.75 18.4142 17.4142 18.75 17 18.75H5.19043C3.63046 18.75 2.25 17.5757 2.25 16V3.59961C2.25021 2.24572 3.42842 1.25 4.75 1.25H17ZM5.19043 14.75C4.3304 14.75 3.75 15.3757 3.75 16C3.75 16.6243 4.3304 17.25 5.19043 17.25H16.25V14.75H5.19043ZM4.75 2.75C4.13188 2.75 3.75023 3.19379 3.75 3.59961V13.6074C4.18229 13.3798 4.67605 13.25 5.19043 13.25H16.25V2.75H4.75ZM13.25 8.75C13.6642 8.75 14 9.08579 14 9.5C14 9.91421 13.6642 10.25 13.25 10.25H6.75C6.33579 10.25 6 9.91421 6 9.5C6 9.08579 6.33579 8.75 6.75 8.75H13.25ZM13.25 5.25C13.6642 5.25 14 5.58579 14 6C14 6.41421 13.6642 6.75 13.25 6.75H6.75C6.33579 6.75 6 6.41421 6 6C6 5.58579 6.33579 5.25 6.75 5.25H13.25Z",fill:"currentColor",key:"pz1rc4"}]]}; +export{C as book}; \ No newline at end of file diff --git a/wwwroot/chunk-Cyy7jTkC.js b/wwwroot/chunk-Cyy7jTkC.js new file mode 100644 index 0000000..e0735f7 --- /dev/null +++ b/wwwroot/chunk-Cyy7jTkC.js @@ -0,0 +1,2 @@ +var C={name:"file-export",meta:{tags:["file-export","send","save","dispatch"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7.75 1.25C7.94891 1.25 8.13962 1.32907 8.28027 1.46973L13.7803 6.96973C13.9209 7.11038 14 7.30109 14 7.5V9.5C14 9.91421 13.6642 10.25 13.25 10.25C12.8358 10.25 12.5 9.91421 12.5 9.5V8.25H7.75C7.33579 8.25 7 7.91421 7 7.5V2.75H3.75C3.06421 2.75 2.5 3.31421 2.5 4V16C2.5 16.6858 3.06421 17.25 3.75 17.25H11.25C11.9358 17.25 12.5 16.6858 12.5 16V14.5C12.5 14.0858 12.8358 13.75 13.25 13.75C13.6642 13.75 14 14.0858 14 14.5V16C14 17.5142 12.7642 18.75 11.25 18.75H3.75C2.23579 18.75 1 17.5142 1 16V4C1 2.48579 2.23579 1.25 3.75 1.25H7.75ZM14.7197 8.46973C15.0126 8.17683 15.4874 8.17683 15.7803 8.46973L18.7803 11.4697C18.8287 11.5181 18.866 11.5732 18.8984 11.6299C18.914 11.657 18.9303 11.6838 18.9424 11.7129C18.9631 11.7629 18.9779 11.8146 18.9873 11.8672C18.995 11.9103 19 11.9546 19 12C19 12.045 18.9949 12.089 18.9873 12.1318C18.9779 12.1845 18.963 12.2361 18.9424 12.2861C18.9303 12.3153 18.9139 12.342 18.8984 12.3691C18.866 12.4261 18.8289 12.4817 18.7803 12.5303L15.7803 15.5303C15.4874 15.8232 15.0126 15.8232 14.7197 15.5303C14.4268 15.2374 14.4268 14.7626 14.7197 14.4697L16.4395 12.75H7.75C7.33579 12.75 7 12.4142 7 12C7 11.5858 7.33579 11.25 7.75 11.25H16.4395L14.7197 9.53027C14.4268 9.23738 14.4268 8.76262 14.7197 8.46973ZM8.5 6.75H11.4395L8.5 3.81055V6.75Z",fill:"currentColor",key:"yfgopg"}]]}; +export{C as fileExport}; \ No newline at end of file diff --git a/wwwroot/chunk-Cz4rCPi7.js b/wwwroot/chunk-Cz4rCPi7.js new file mode 100644 index 0000000..be079f5 --- /dev/null +++ b/wwwroot/chunk-Cz4rCPi7.js @@ -0,0 +1,2 @@ +var C={name:"plus-circle",meta:{tags:["plus-circle","add","increase","plus","more"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM10 5.25C10.4142 5.25 10.75 5.58579 10.75 6V9.25H14C14.4142 9.25 14.75 9.58579 14.75 10C14.75 10.4142 14.4142 10.75 14 10.75H10.75V14C10.75 14.4142 10.4142 14.75 10 14.75C9.58579 14.75 9.25 14.4142 9.25 14V10.75H6C5.58579 10.75 5.25 10.4142 5.25 10C5.25 9.58579 5.58579 9.25 6 9.25H9.25V6C9.25 5.58579 9.58579 5.25 10 5.25Z",fill:"currentColor",key:"sbz6od"}]]}; +export{C as plusCircle}; \ No newline at end of file diff --git a/wwwroot/chunk-CzJQMox7.js b/wwwroot/chunk-CzJQMox7.js new file mode 100644 index 0000000..01770fa --- /dev/null +++ b/wwwroot/chunk-CzJQMox7.js @@ -0,0 +1,2 @@ +var C={name:"check-circle",meta:{tags:["check-circle","done","complete","ok","approve"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.06643 1.04885C10.3093 0.918029 11.5103 1.04955 12.6231 1.38772C13.0192 1.50825 13.2425 1.92705 13.1221 2.32326C13.0015 2.71933 12.5827 2.9427 12.1865 2.82229C11.2596 2.54061 10.2604 2.43194 9.22365 2.54104C8.18253 2.65065 7.22026 2.96038 6.38088 3.42971C5.53378 3.90338 4.78649 4.53195 4.1758 5.27932C3.56713 6.02425 3.10356 6.88725 2.82229 7.81252C2.54051 8.73966 2.43191 9.73945 2.54104 10.7764C2.65063 11.8175 2.96042 12.7798 3.42971 13.6192C3.90336 14.4662 4.53201 15.2136 5.27932 15.8242C6.02425 16.4329 6.88726 16.8965 7.81252 17.1778C8.73967 17.4595 9.73944 17.5681 10.7764 17.459C11.8175 17.3494 12.7798 17.0397 13.6192 16.5703C14.4662 16.0967 15.2136 15.4681 15.8242 14.7207C16.433 13.9757 16.8965 13.112 17.1778 12.1865C17.4595 11.2595 17.568 10.25 17.459 9.22365C17.4156 8.81203 17.7144 8.44322 18.126 8.39944C18.5376 8.35588 18.9063 8.65386 18.9502 9.06545C19.0812 10.2989 18.9505 11.5103 18.6123 12.6231C18.2736 13.7375 17.7165 14.7741 16.9854 15.669C16.2561 16.5615 15.3634 17.3136 14.3506 17.8799C13.3302 18.4504 12.1722 18.8208 10.9336 18.9512C9.69072 19.082 8.48971 18.9505 7.37697 18.6123C6.26247 18.2736 5.225 17.7166 4.3301 16.9854C3.43776 16.2562 2.68634 15.3632 2.12014 14.3506C1.54966 13.3302 1.17925 12.1722 1.04885 10.9336C0.918036 9.69069 1.04954 8.48972 1.38772 7.37697C1.72645 6.26247 2.2825 5.22501 3.01369 4.3301C3.74288 3.43767 4.6358 2.6864 5.64846 2.12014C6.66901 1.54951 7.82765 1.17926 9.06643 1.04885ZM16.9649 2.97463C17.2578 2.68187 17.7326 2.6818 18.0254 2.97463C18.3183 3.26748 18.3182 3.74227 18.0254 4.03518L9.02541 13.0352C8.73252 13.3281 8.25776 13.3281 7.96487 13.0352L4.96486 10.0352C4.67199 9.74228 4.67198 9.26752 4.96486 8.97463C5.25776 8.68187 5.73256 8.6818 6.02541 8.97463L8.49514 11.4444L16.9649 2.97463Z",fill:"currentColor",key:"p9h01s"}]]}; +export{C as checkCircle}; \ No newline at end of file diff --git a/wwwroot/chunk-D-ERgB9i.js b/wwwroot/chunk-D-ERgB9i.js new file mode 100644 index 0000000..eede54a --- /dev/null +++ b/wwwroot/chunk-D-ERgB9i.js @@ -0,0 +1,2 @@ +var C={name:"arrow-circle-down",meta:{tags:["arrow-circle-down","download","decrease","down","lower"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM10 5.25C10.4142 5.25 10.75 5.58579 10.75 6V12.1895L13.4697 9.46973C13.7626 9.17683 14.2374 9.17683 14.5303 9.46973C14.8232 9.76262 14.8232 10.2374 14.5303 10.5303L10.5303 14.5303C10.4817 14.5789 10.4261 14.616 10.3691 14.6484C10.342 14.6639 10.3153 14.6803 10.2861 14.6924C10.2541 14.7056 10.2208 14.7141 10.1875 14.7227C10.1744 14.7261 10.1618 14.7317 10.1484 14.7344C10.1429 14.7355 10.1374 14.7363 10.1318 14.7373C10.089 14.7449 10.045 14.75 10 14.75C9.95462 14.75 9.91035 14.745 9.86719 14.7373C9.86165 14.7363 9.8561 14.7355 9.85059 14.7344C9.8372 14.7317 9.82464 14.7261 9.81152 14.7227C9.77828 14.714 9.74492 14.7057 9.71289 14.6924C9.68375 14.6803 9.65703 14.664 9.62988 14.6484C9.5732 14.616 9.51812 14.5787 9.46973 14.5303L5.46973 10.5303C5.17683 10.2374 5.17683 9.76262 5.46973 9.46973C5.76262 9.17683 6.23738 9.17683 6.53027 9.46973L9.25 12.1895V6C9.25 5.58579 9.58579 5.25 10 5.25Z",fill:"currentColor",key:"edmtzu"}]]}; +export{C as arrowCircleDown}; \ No newline at end of file diff --git a/wwwroot/chunk-D-Sc8v8N.js b/wwwroot/chunk-D-Sc8v8N.js new file mode 100644 index 0000000..ddac848 --- /dev/null +++ b/wwwroot/chunk-D-Sc8v8N.js @@ -0,0 +1,2 @@ +var e={name:"pencil",meta:{tags:["pencil","edit","write","draw","update"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.127 1.251C15.9324 1.26907 16.7745 1.56365 17.3789 2.16799C17.9743 2.76339 18.2853 3.58565 18.3174 4.38479C18.3474 5.13492 18.1335 5.93297 17.5938 6.54299L17.4814 6.66213L6.41894 17.7246C6.29496 17.8484 6.13153 17.9246 5.95703 17.9405L2.06738 18.294C1.84731 18.3138 1.62976 18.2355 1.47266 18.0801C1.31544 17.9245 1.23417 17.7069 1.25195 17.4864L1.5625 13.6416C1.57682 13.4643 1.65358 13.2978 1.7793 13.1719L12.8418 2.1094C13.4613 1.49 14.3215 1.23302 15.127 1.251ZM15.0938 2.751C14.6065 2.74007 14.1737 2.89869 13.9023 3.16995L3.03516 14.0362L2.81934 16.7188L5.5498 16.4717L16.4199 5.60159C16.6887 5.33247 16.8382 4.91553 16.8193 4.44436C16.8003 3.97236 16.6139 3.52409 16.3184 3.22854C16.0317 2.94195 15.5812 2.76195 15.0938 2.751Z",fill:"currentColor",key:"um4rtt"}]]}; +export{e as pencil}; \ No newline at end of file diff --git a/wwwroot/chunk-D056fGk8.js b/wwwroot/chunk-D056fGk8.js new file mode 100644 index 0000000..88c9830 --- /dev/null +++ b/wwwroot/chunk-D056fGk8.js @@ -0,0 +1,2 @@ +var e={name:"sort",meta:{tags:["sort","order","sequence"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.9998 11.25C16.303 11.25 16.577 11.4327 16.6931 11.7129C16.8092 11.9931 16.7445 12.3158 16.53 12.5303L10.53 18.5303C10.2371 18.8231 9.76232 18.8232 9.46946 18.5303L3.46944 12.5303C3.25513 12.3158 3.19035 11.993 3.30635 11.7129C3.4224 11.4327 3.69649 11.2501 3.99971 11.25H15.9998ZM9.99974 16.9395L14.1892 12.75H5.81027L9.99974 16.9395ZM9.5261 1.41787C9.82061 1.17762 10.2554 1.19523 10.53 1.46963L16.53 7.46968C16.7445 7.68416 16.8092 8.00682 16.6931 8.28707C16.577 8.56732 16.3031 8.74996 15.9998 8.74996H3.99971C3.69649 8.74983 3.4224 8.56723 3.30635 8.28707C3.19045 8.00692 3.25509 7.6841 3.46944 7.46968L9.46946 1.46963L9.5261 1.41787ZM5.81027 7.24995H14.1892L9.99974 3.06046L5.81027 7.24995Z",fill:"currentColor",key:"exvt0l"}]]}; +export{e as sort}; \ No newline at end of file diff --git a/wwwroot/chunk-D0KWT5vs.js b/wwwroot/chunk-D0KWT5vs.js new file mode 100644 index 0000000..63d7a8d --- /dev/null +++ b/wwwroot/chunk-D0KWT5vs.js @@ -0,0 +1,2 @@ +var t={name:"block-quote",meta:{tags:["citation","reference","quote","text formatting","block-quote"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M3 9.25C3.41421 9.25 3.75 9.58579 3.75 10V14.5C3.75 14.9142 3.41421 15.25 3 15.25C2.58579 15.25 2.25 14.9142 2.25 14.5V10C2.25 9.58579 2.58579 9.25 3 9.25ZM17 13.75C17.4141 13.75 17.7499 14.0859 17.75 14.5C17.75 14.9142 17.4142 15.25 17 15.25H7.5C7.08579 15.25 6.75 14.9142 6.75 14.5C6.75013 14.0859 7.08587 13.75 7.5 13.75H17ZM17 9.25C17.4141 9.25 17.7499 9.5859 17.75 10C17.75 10.4142 17.4142 10.75 17 10.75H7.5C7.08579 10.75 6.75 10.4142 6.75 10C6.75013 9.5859 7.08587 9.25 7.5 9.25H17ZM17 4.75C17.4141 4.75 17.7499 5.0859 17.75 5.5C17.75 5.91421 17.4142 6.25 17 6.25H3C2.5859 6.24987 2.25 5.91413 2.25 5.5C2.25013 5.08598 2.58598 4.75013 3 4.75H17Z",fill:"currentColor",key:"uyq1pj"}]]}; +export{t as blockQuote}; \ No newline at end of file diff --git a/wwwroot/chunk-D0aBm9Pk.js b/wwwroot/chunk-D0aBm9Pk.js new file mode 100644 index 0000000..ef636d6 --- /dev/null +++ b/wwwroot/chunk-D0aBm9Pk.js @@ -0,0 +1,2 @@ +var t={name:"strikethrough",meta:{tags:["text formatting","cross out","delete text","cancel","strikethrough"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18 9.25C18.4142 9.25 18.75 9.58579 18.75 10C18.75 10.4142 18.4142 10.75 18 10.75H14.5596C14.5651 10.7565 14.5707 10.763 14.5762 10.7695C15.3107 11.651 15.75 12.8202 15.75 14C15.75 15.1798 15.3107 16.349 14.5762 17.2305C13.8384 18.1157 12.7651 18.75 11.5 18.75H5C4.58579 18.75 4.25 18.4142 4.25 18C4.25 17.5858 4.58579 17.25 5 17.25H11.5C12.2348 17.25 12.9116 16.8842 13.4238 16.2695C13.9392 15.651 14.25 14.8202 14.25 14C14.25 13.1798 13.9392 12.349 13.4238 11.7305C12.9116 11.1158 12.2348 10.75 11.5 10.75H2C1.58579 10.75 1.25 10.4142 1.25 10C1.25 9.58579 1.58579 9.25 2 9.25H18ZM14 1.25C14.4142 1.25 14.75 1.58579 14.75 2C14.75 2.41421 14.4142 2.75 14 2.75H8.5C7.80491 2.75 7.12496 3.1115 6.59863 3.73438C6.07187 4.35796 5.75 5.18883 5.75 6C5.75 6.2899 5.78212 6.5696 5.8418 6.83496C5.93273 7.23907 5.67852 7.64052 5.27441 7.73145C4.87056 7.82215 4.47002 7.56877 4.37891 7.16504C4.29486 6.79153 4.25 6.40086 4.25 6C4.25 4.81135 4.7126 3.64199 5.45312 2.76562C6.1943 1.88852 7.26511 1.25 8.5 1.25H14Z",fill:"currentColor",key:"rfitmg"}]]}; +export{t as strikethrough}; \ No newline at end of file diff --git a/wwwroot/chunk-D1A1UaQM.js b/wwwroot/chunk-D1A1UaQM.js new file mode 100644 index 0000000..0d4bd27 --- /dev/null +++ b/wwwroot/chunk-D1A1UaQM.js @@ -0,0 +1,2 @@ +var C={name:"sort-alt-slash",meta:{tags:["sort-alt-slash","remove-sorting","unsorted","orderless"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14 2.25C14.4142 2.25003 14.75 2.58581 14.75 3V4.18945L15.9698 2.96973C16.2627 2.67686 16.7374 2.67684 17.0303 2.96973C17.3232 3.26261 17.3232 3.73739 17.0303 4.03027L6.75001 14.3105V17C6.75001 17.4142 6.4142 17.75 6.00001 17.75C5.5858 17.75 5.25001 17.4142 5.25001 17V15.8105L4.03028 17.0303C3.7374 17.3232 3.26263 17.3231 2.96973 17.0303C2.67684 16.7374 2.67684 16.2626 2.96973 15.9697L13.25 5.68945V3C13.25 2.58579 13.5858 2.25 14 2.25ZM14 8.75C14.4142 8.75003 14.75 9.08581 14.75 9.5V15.1895L15.9698 13.9697C16.2627 13.6769 16.7374 13.6768 17.0303 13.9697C17.3232 14.2626 17.3232 14.7374 17.0303 15.0303L14.5303 17.5303C14.4984 17.5622 14.4635 17.5893 14.4278 17.6143C14.3836 17.6451 14.3365 17.6715 14.2862 17.6924C14.2541 17.7056 14.2208 17.7141 14.1875 17.7227C14.1744 17.7261 14.1619 17.7317 14.1485 17.7344C14.1426 17.7356 14.1367 17.7363 14.1309 17.7373C14.0883 17.7448 14.0447 17.75 14 17.75L13.9229 17.7461C13.904 17.7442 13.8856 17.7406 13.8672 17.7373C13.8617 17.7363 13.8561 17.7355 13.8506 17.7344C13.8372 17.7317 13.8247 17.7261 13.8115 17.7227C13.7783 17.714 13.745 17.7057 13.7129 17.6924C13.6838 17.6803 13.6571 17.664 13.6299 17.6484C13.5732 17.616 13.5181 17.5787 13.4698 17.5303L10.9697 15.0303C10.6769 14.7374 10.6769 14.2626 10.9697 13.9697C11.2626 13.6769 11.7374 13.6768 12.0303 13.9697L13.25 15.1895V9.5C13.25 9.08579 13.5858 8.75 14 8.75ZM6.0254 2.25098C6.03225 2.25121 6.03907 2.25153 6.04591 2.25195C6.08456 2.25429 6.12233 2.2596 6.15919 2.26758C6.19247 2.2748 6.22461 2.28607 6.25685 2.29785C6.26933 2.30242 6.28277 2.30437 6.29493 2.30957C6.31402 2.31772 6.33113 2.33004 6.34962 2.33984C6.37342 2.35248 6.39774 2.36387 6.41993 2.37891C6.45876 2.40523 6.49589 2.43533 6.53028 2.46973L9.03029 4.96973C9.32314 5.26261 9.32314 5.73739 9.03029 6.03027C8.7374 6.32316 8.26264 6.32314 7.96974 6.03027L6.75001 4.81055V10.5C6.75001 10.9142 6.4142 11.25 6.00001 11.25C5.5858 11.25 5.25001 10.9142 5.25001 10.5V4.81055L4.03028 6.03027C3.7374 6.32316 3.26263 6.32314 2.96973 6.03027C2.67684 5.73738 2.67684 5.26262 2.96973 4.96973L5.46974 2.46973L5.52638 2.41797C5.53657 2.40965 5.54808 2.40321 5.5586 2.39551C5.57414 2.38414 5.59004 2.37345 5.60645 2.36328C5.63035 2.34849 5.65462 2.3351 5.6797 2.32324C5.69787 2.31463 5.71642 2.30697 5.73536 2.2998C5.76294 2.28942 5.79095 2.28144 5.81935 2.27441C5.83941 2.26944 5.85923 2.26309 5.87989 2.25977C5.89095 2.25799 5.90199 2.25616 5.9131 2.25488C5.94159 2.2516 5.97064 2.25 6.00001 2.25C6.00851 2.25 6.01697 2.2507 6.0254 2.25098Z",fill:"currentColor",key:"ak1814"}]]}; +export{C as sortAltSlash}; \ No newline at end of file diff --git a/wwwroot/chunk-D1A2XyU2.js b/wwwroot/chunk-D1A2XyU2.js new file mode 100644 index 0000000..fc8d92a --- /dev/null +++ b/wwwroot/chunk-D1A2XyU2.js @@ -0,0 +1,2 @@ +var e={name:"chevron-circle-right",meta:{tags:["chevron-circle-right","next","proceed","right","forward"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM7.46973 5.46973C7.76262 5.17683 8.23738 5.17683 8.53027 5.46973L12.5303 9.46973C12.8232 9.76262 12.8232 10.2374 12.5303 10.5303L8.53027 14.5303C8.23738 14.8232 7.76262 14.8232 7.46973 14.5303C7.17683 14.2374 7.17683 13.7626 7.46973 13.4697L10.9395 10L7.46973 6.53027C7.17683 6.23738 7.17683 5.76262 7.46973 5.46973Z",fill:"currentColor",key:"tb17n8"}]]}; +export{e as chevronCircleRight}; \ No newline at end of file diff --git a/wwwroot/chunk-D2bnwAae.js b/wwwroot/chunk-D2bnwAae.js new file mode 100644 index 0000000..0cabc08 --- /dev/null +++ b/wwwroot/chunk-D2bnwAae.js @@ -0,0 +1,2 @@ +var C={name:"sort-amount-down-alt",meta:{tags:["sort-amount-down-alt"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6 2.25C6.41419 2.25003 6.75 2.58581 6.75 3V15.1895L7.96973 13.9697C8.26263 13.6769 8.73739 13.6768 9.03028 13.9697C9.32313 14.2626 9.32313 14.7374 9.03028 15.0303L6.53028 17.5303C6.4984 17.5622 6.46345 17.5893 6.42774 17.6143C6.38361 17.6451 6.3365 17.6715 6.28614 17.6924C6.25408 17.7056 6.22077 17.7141 6.1875 17.7227C6.17438 17.7261 6.16183 17.7317 6.14844 17.7344C6.14261 17.7356 6.13672 17.7363 6.13086 17.7373C6.0883 17.7448 6.04472 17.75 6 17.75L5.92286 17.7461C5.90403 17.7442 5.88558 17.7406 5.86719 17.7373C5.86166 17.7363 5.8561 17.7355 5.85059 17.7344C5.8372 17.7317 5.82465 17.7261 5.81153 17.7227C5.77828 17.714 5.74493 17.7057 5.71289 17.6924C5.68375 17.6803 5.65704 17.664 5.62989 17.6484C5.5732 17.616 5.51813 17.5787 5.46973 17.5303L2.96973 15.0303C2.67684 14.7374 2.67684 14.2626 2.96973 13.9697C3.26263 13.6769 3.73739 13.6768 4.03028 13.9697L5.25 15.1895V3C5.25 2.58579 5.58579 2.25 6 2.25ZM17 11.25C17.4142 11.25 17.75 11.5858 17.75 12C17.75 12.4142 17.4142 12.75 17 12.75H10.5C10.0858 12.75 9.75 12.4142 9.75 12C9.75 11.5858 10.0858 11.25 10.5 11.25H17ZM15 8.25C15.4142 8.25003 15.75 8.58581 15.75 9C15.75 9.4142 15.4142 9.74997 15 9.75H10.5C10.0858 9.75 9.75 9.41421 9.75 9C9.75 8.58579 10.0858 8.25 10.5 8.25H15ZM13 5.25C13.4142 5.25003 13.75 5.58581 13.75 6C13.75 6.4142 13.4142 6.74997 13 6.75H10.5C10.0858 6.75 9.75 6.41421 9.75 6C9.75 5.58579 10.0858 5.25 10.5 5.25H13ZM11 2.25C11.4142 2.25003 11.75 2.58581 11.75 3C11.75 3.41419 11.4142 3.74997 11 3.75H10.5C10.0858 3.75 9.75 3.41421 9.75 3C9.75 2.58579 10.0858 2.25 10.5 2.25H11Z",fill:"currentColor",key:"sc1lav"}]]}; +export{C as sortAmountDownAlt}; \ No newline at end of file diff --git a/wwwroot/chunk-D3HZA0mb.js b/wwwroot/chunk-D3HZA0mb.js new file mode 100644 index 0000000..c95602c --- /dev/null +++ b/wwwroot/chunk-D3HZA0mb.js @@ -0,0 +1,2 @@ +var t={name:"step-forward-alt",meta:{tags:["step-forward-alt","next-step"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14 2.24994C14.4141 2.24994 14.7498 2.58587 14.75 2.99994V17C14.75 17.4142 14.4142 17.75 14 17.75C13.5858 17.75 13.25 17.4142 13.25 17V10.8105L6.53027 17.5303C6.31579 17.7448 5.99313 17.8094 5.71289 17.6934C5.4327 17.5773 5.25 17.3033 5.25 17V2.99994C5.25013 2.69672 5.43273 2.42262 5.71289 2.30658C5.99303 2.19063 6.31582 2.25534 6.53027 2.46967L13.25 9.18943V2.99994C13.2502 2.58587 13.5859 2.24994 14 2.24994ZM6.75 15.1895L11.9395 9.99998L6.75 4.8105V15.1895Z",fill:"currentColor",key:"8h6jqn"}]]}; +export{t as stepForwardAlt}; \ No newline at end of file diff --git a/wwwroot/chunk-D3I6LGNP.js b/wwwroot/chunk-D3I6LGNP.js new file mode 100644 index 0000000..e14380a --- /dev/null +++ b/wwwroot/chunk-D3I6LGNP.js @@ -0,0 +1,2 @@ +var e={name:"volume-off",meta:{tags:["volume-off","mute","silent","noiseless","sound-off"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.5312 2.41404C14.7564 2.23394 15.0653 2.19931 15.3252 2.3242C15.5849 2.44915 15.75 2.7118 15.75 2.99998V17C15.75 17.2882 15.5849 17.5508 15.3252 17.6758C15.0653 17.8006 14.7564 17.766 14.5312 17.5859L9.73633 13.75H5C4.58579 13.75 4.25 13.4142 4.25 13V6.99998C4.25 6.58577 4.58579 6.24998 5 6.24998H9.73633L14.5312 2.41404ZM10.4688 7.58592C10.3358 7.6923 10.1703 7.74998 10 7.74998H5.75V12.25H10C10.1703 12.25 10.3358 12.3077 10.4688 12.414L14.25 15.4385V4.56053L10.4688 7.58592Z",fill:"currentColor",key:"j9y1bi"}]]}; +export{e as volumeOff}; \ No newline at end of file diff --git a/wwwroot/chunk-D3cDykbq.js b/wwwroot/chunk-D3cDykbq.js new file mode 100644 index 0000000..38fac11 --- /dev/null +++ b/wwwroot/chunk-D3cDykbq.js @@ -0,0 +1,2 @@ +var C={name:"sort-numeric-up",meta:{tags:["sort-numeric-up"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.02539 2.25098C6.03224 2.25121 6.03906 2.25153 6.0459 2.25195C6.08456 2.25429 6.12233 2.2596 6.15918 2.26758C6.19246 2.2748 6.22461 2.28607 6.25684 2.29785C6.26932 2.30242 6.28276 2.30437 6.29493 2.30957C6.31401 2.31772 6.33112 2.33004 6.34961 2.33984C6.37341 2.35248 6.39773 2.36387 6.41993 2.37891C6.45875 2.40523 6.49589 2.43533 6.53028 2.46973L9.03028 4.96973C9.32313 5.26261 9.32313 5.73739 9.03028 6.03027C8.73739 6.32316 8.26263 6.32314 7.96973 6.03027L6.75 4.81055V17C6.75 17.4142 6.41419 17.75 6 17.75C5.58579 17.75 5.25 17.4142 5.25 17V4.81055L4.03028 6.03027C3.73739 6.32316 3.26263 6.32314 2.96973 6.03027C2.67684 5.73738 2.67684 5.26262 2.96973 4.96973L5.46973 2.46973L5.52637 2.41797C5.53657 2.40965 5.54808 2.40321 5.5586 2.39551C5.57414 2.38414 5.59004 2.37345 5.60645 2.36328C5.63035 2.34849 5.65462 2.3351 5.67969 2.32324C5.69787 2.31463 5.71641 2.30697 5.73536 2.2998C5.76293 2.28942 5.79094 2.28144 5.81934 2.27441C5.8394 2.26944 5.85922 2.26309 5.87989 2.25977C5.89094 2.25799 5.90198 2.25616 5.91309 2.25488C5.94158 2.2516 5.97063 2.25 6 2.25C6.00851 2.25 6.01696 2.2507 6.02539 2.25098ZM14 10.75C15.2164 10.75 16.2039 11.7155 16.2451 12.9219C16.2478 12.9476 16.25 12.9736 16.25 13V13.5C16.25 13.9167 16.2495 14.2988 16.2285 14.6348C16.1593 16.0883 14.9268 17.2497 13.4805 17.25H13C12.5858 17.25 12.25 16.9142 12.25 16.5C12.25 16.0858 12.5858 15.75 13 15.75H13.4805C13.9035 15.7498 14.2884 15.5225 14.5166 15.1875C14.3505 15.2266 14.178 15.25 14 15.25C12.7574 15.25 11.75 14.2426 11.75 13C11.75 11.7574 12.7574 10.75 14 10.75ZM14 12.25C13.5858 12.25 13.25 12.5858 13.25 13C13.25 13.4142 13.5858 13.75 14 13.75C14.4142 13.75 14.75 13.4142 14.75 13C14.75 12.5858 14.4142 12.25 14 12.25ZM13.293 2.97852C13.7009 2.68712 14.2003 2.69082 14.5859 2.90332C14.9845 3.1231 15.25 3.55329 15.25 4.05078V8.50098C15.2495 8.91477 14.9139 9.25095 14.5 9.25098C14.0861 9.25098 13.7505 8.91479 13.75 8.50098V4.44141L13.3652 4.65625C13.0036 4.85761 12.5464 4.7267 12.3447 4.36523C12.1435 4.00359 12.2734 3.54736 12.6348 3.3457L13.293 2.97852Z",fill:"currentColor",key:"q2vfji"}]]}; +export{C as sortNumericUp}; \ No newline at end of file diff --git a/wwwroot/chunk-D3cSrslD.js b/wwwroot/chunk-D3cSrslD.js new file mode 100644 index 0000000..30b177b --- /dev/null +++ b/wwwroot/chunk-D3cSrslD.js @@ -0,0 +1,2 @@ +var o={name:"arrow-down-left",meta:{tags:["arrow-down-left","southwest","move","diagonal","direction"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.4199 4.51959C14.7128 4.22692 15.1876 4.22683 15.4805 4.51959C15.7731 4.81243 15.7731 5.28729 15.4805 5.58013L6.86035 14.2002H13.54C13.9541 14.2003 14.29 14.5361 14.29 14.9502C14.2898 15.3641 13.954 15.7001 13.54 15.7002H5.0498C5.00405 15.7002 4.95951 15.6944 4.91602 15.6865C4.91149 15.6857 4.90686 15.6855 4.90234 15.6846C4.88085 15.6803 4.86063 15.6721 4.83984 15.666C4.81396 15.6584 4.7878 15.652 4.7627 15.6416C4.71195 15.6205 4.66451 15.5937 4.62012 15.5625C4.58523 15.538 4.55073 15.5116 4.51953 15.4805C4.48752 15.4485 4.45958 15.4138 4.43457 15.3779C4.40393 15.334 4.37819 15.2865 4.35742 15.2363C4.33639 15.1854 4.32084 15.1328 4.31152 15.0791C4.30423 15.0372 4.29983 14.9942 4.2998 14.9502V6.46001C4.2998 6.04587 4.63568 5.71012 5.0498 5.71002C5.46402 5.71002 5.7998 6.0458 5.7998 6.46001V13.1397L14.4199 4.51959Z",fill:"currentColor",key:"6uoh7b"}]]}; +export{o as arrowDownLeft}; \ No newline at end of file diff --git a/wwwroot/chunk-D4IZNX_N.js b/wwwroot/chunk-D4IZNX_N.js new file mode 100644 index 0000000..a3c1e89 --- /dev/null +++ b/wwwroot/chunk-D4IZNX_N.js @@ -0,0 +1,2 @@ +var o={name:"info",meta:{tags:["info","information","help","details"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 7.25C10.4142 7.25 10.75 7.58579 10.75 8V15C10.75 15.4142 10.4142 15.75 10 15.75C9.58579 15.75 9.25 15.4142 9.25 15V8C9.25 7.58579 9.58579 7.25 10 7.25ZM10 4.25C10.4142 4.25 10.75 4.58579 10.75 5V5.5C10.75 5.91421 10.4142 6.25 10 6.25C9.58579 6.25 9.25 5.91421 9.25 5.5V5C9.25 4.58579 9.58579 4.25 10 4.25Z",fill:"currentColor",key:"amvllo"}]]}; +export{o as info}; \ No newline at end of file diff --git a/wwwroot/chunk-D5jzwqjX.js b/wwwroot/chunk-D5jzwqjX.js new file mode 100644 index 0000000..8803be8 --- /dev/null +++ b/wwwroot/chunk-D5jzwqjX.js @@ -0,0 +1,2 @@ +var t={name:"directions-alt",meta:{tags:["directions-alt","route","navigation","path","guide","left"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.7298 1.27863C9.43262 0.575973 10.5718 0.576083 11.2747 1.27863L18.7279 8.73175C19.4308 9.43467 19.4306 10.5737 18.7279 11.2767L11.2747 18.7298C10.5718 19.4325 9.4327 19.4327 8.7298 18.7298L1.27668 11.2767C0.574151 10.5737 0.574078 9.43457 1.27668 8.73175L8.7298 1.27863ZM10.2142 2.33918C10.0971 2.22246 9.90742 2.22227 9.79035 2.33918L2.33723 9.7923C2.22037 9.90937 2.22052 10.099 2.33723 10.2161L9.79035 17.6693C9.90742 17.7863 10.097 17.7862 10.2142 17.6693L17.6673 10.2161C17.7843 10.0989 17.7844 9.90939 17.6673 9.7923L10.2142 2.33918ZM8.20246 6.71808C8.4966 6.42661 8.97143 6.428 9.26301 6.72199C9.55419 7.01615 9.55202 7.49105 9.25813 7.78254L8.32258 8.71027H13.5003C13.9144 8.71046 14.2503 9.04617 14.2503 9.46027V12.2503C14.2501 12.6642 13.9142 13.0001 13.5003 13.0003C13.0862 13.0003 12.7505 12.6644 12.7503 12.2503V10.2103H8.32258L9.25813 11.138C9.55186 11.4296 9.55439 11.9045 9.26301 12.1986C8.97161 12.4924 8.49666 12.4944 8.20246 12.2034L5.97199 9.99347C5.92391 9.94582 5.88595 9.89008 5.85285 9.83234C5.78939 9.7223 5.75037 9.59641 5.75031 9.46027C5.75031 9.25216 5.8351 9.06392 5.97199 8.92804L8.20246 6.71808Z",fill:"currentColor",key:"yipz2w"}]]}; +export{t as directionsAlt}; \ No newline at end of file diff --git a/wwwroot/chunk-D6BGiQpf.js b/wwwroot/chunk-D6BGiQpf.js new file mode 100644 index 0000000..cd773f1 --- /dev/null +++ b/wwwroot/chunk-D6BGiQpf.js @@ -0,0 +1,2 @@ +var e={name:"rectangle-xmark",meta:{tags:["close box","cancel","dismiss","remove","rectangle-xmark"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16 3.25C17.406 3.25 18.7497 4.24881 18.75 5.71387V14.2861C18.7497 15.7512 17.406 16.75 16 16.75H4C2.59398 16.75 1.25026 15.7512 1.25 14.2861V5.71387C1.25026 4.24881 2.59398 3.25 4 3.25H16ZM4 4.75C3.19727 4.75 2.75029 5.28568 2.75 5.71387V14.2861C2.75029 14.7143 3.19727 15.25 4 15.25H16C16.8027 15.25 17.2497 14.7143 17.25 14.2861V5.71387C17.2497 5.28568 16.8027 4.75 16 4.75H4ZM11.9697 6.71973C12.2626 6.42683 12.7374 6.42683 13.0303 6.71973C13.3232 7.01262 13.3232 7.48738 13.0303 7.78027L10.8105 10L13.0303 12.2197C13.3232 12.5126 13.3232 12.9874 13.0303 13.2803C12.7374 13.5732 12.2626 13.5732 11.9697 13.2803L9.75 11.0605L7.53027 13.2803C7.23738 13.5732 6.76262 13.5732 6.46973 13.2803C6.17683 12.9874 6.17683 12.5126 6.46973 12.2197L8.68945 10L6.46973 7.78027C6.17683 7.48738 6.17683 7.01262 6.46973 6.71973C6.76262 6.42683 7.23738 6.42683 7.53027 6.71973L9.75 8.93945L11.9697 6.71973Z",fill:"currentColor",key:"qhla9n"}]]}; +export{e as rectangleXmark}; \ No newline at end of file diff --git a/wwwroot/chunk-D80AK8a3.js b/wwwroot/chunk-D80AK8a3.js new file mode 100644 index 0000000..501c348 --- /dev/null +++ b/wwwroot/chunk-D80AK8a3.js @@ -0,0 +1,2 @@ +var e={name:"table",meta:{tags:["table","spreadsheet","grid","chart","layout"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16 2.25C17.5188 2.25 18.75 3.48122 18.75 5V15C18.75 16.5188 17.5188 17.75 16 17.75H4C2.48122 17.75 1.25 16.5188 1.25 15V5C1.25 3.48122 2.48122 2.25 4 2.25H16ZM10.75 16.25H16C16.6904 16.25 17.25 15.6904 17.25 15V10.75H10.75V16.25ZM2.75 15C2.75 15.6904 3.30964 16.25 4 16.25H9.25V10.75H2.75V15ZM10.75 9.25H17.25V5C17.25 4.30964 16.6904 3.75 16 3.75H10.75V9.25ZM4 3.75C3.30964 3.75 2.75 4.30964 2.75 5V9.25H9.25V3.75H4Z",fill:"currentColor",key:"uen2yn"}]]}; +export{e as table}; \ No newline at end of file diff --git a/wwwroot/chunk-D8yqOHRF.js b/wwwroot/chunk-D8yqOHRF.js new file mode 100644 index 0000000..1401cd9 --- /dev/null +++ b/wwwroot/chunk-D8yqOHRF.js @@ -0,0 +1,2 @@ +var C={name:"pinterest",meta:{tags:["pinterest","social","media","image","sharing","hobby"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18 10C18 14.4194 14.4194 18 10 18C9.17419 18 8.38065 17.8742 7.63226 17.6419C7.95806 17.1097 8.44516 16.2387 8.62581 15.5452C8.72258 15.171 9.12258 13.6419 9.12258 13.6419C9.38387 14.1387 10.1452 14.5613 10.9548 14.5613C13.3677 14.5613 15.1065 12.3419 15.1065 9.58387C15.1065 6.94194 12.9484 4.96452 10.1742 4.96452C6.72258 4.96452 4.8871 7.28064 4.8871 9.80645C4.8871 10.9806 5.5129 12.4419 6.50968 12.9065C6.66129 12.9774 6.74194 12.9452 6.77742 12.8C6.80323 12.6903 6.93871 12.1452 7 11.8935C7.01935 11.8129 7.00968 11.7419 6.94516 11.6645C6.61935 11.2613 6.35484 10.5258 6.35484 9.83871C6.35484 8.07419 7.69032 6.36774 9.96774 6.36774C11.9323 6.36774 13.3097 7.70645 13.3097 9.62258C13.3097 11.7871 12.2161 13.2871 10.7935 13.2871C10.0097 13.2871 9.41935 12.6387 9.60968 11.8419C9.83548 10.8903 10.271 9.86452 10.271 9.17742C10.271 8.56452 9.94194 8.05161 9.25806 8.05161C8.45484 8.05161 7.80968 8.88065 7.80968 9.99355C7.80968 10.7032 8.04839 11.1806 8.04839 11.1806C8.04839 11.1806 7.25806 14.529 7.1129 15.1548C6.95161 15.8452 7.01613 16.8194 7.08387 17.4516C4.10968 16.2871 2 13.3903 2 10C2 5.58065 5.58065 2 10 2C14.4194 2 18 5.58065 18 10Z",fill:"currentColor",key:"ngukw9"}]]}; +export{C as pinterest}; \ No newline at end of file diff --git a/wwwroot/chunk-D9BfBlaE.js b/wwwroot/chunk-D9BfBlaE.js new file mode 100644 index 0000000..ff5da48 --- /dev/null +++ b/wwwroot/chunk-D9BfBlaE.js @@ -0,0 +1,2 @@ +var C={name:"heading-3",meta:{tags:["h3","third header","section","subheading","heading-3"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 3.25C10.4142 3.25 10.75 3.58579 10.75 4V16C10.75 16.4142 10.4142 16.75 10 16.75C9.58579 16.75 9.25 16.4142 9.25 16V10.75H2.75V16C2.75 16.4142 2.41421 16.75 2 16.75C1.58579 16.75 1.25 16.4142 1.25 16V4C1.25 3.58579 1.58579 3.25 2 3.25C2.41421 3.25 2.75 3.58579 2.75 4V9.25H9.25V4C9.25 3.58579 9.58579 3.25 10 3.25ZM15.123 7.75C16.1739 7.13831 17.3083 7.11447 18.2051 7.5332C19.0961 7.94934 19.7498 8.81241 19.75 9.88281C19.75 10.6645 19.4097 11.3654 18.8779 11.8623C19.41 12.359 19.7499 13.0609 19.75 13.8428C19.7499 15.0268 19.0778 16.0394 18.0547 16.4951C17.0189 16.9563 15.7339 16.8065 14.5527 15.9297C14.2205 15.6828 14.151 15.2133 14.3975 14.8809C14.6444 14.5483 15.1147 14.4787 15.4473 14.7256C16.2658 15.3332 16.9812 15.3317 17.4453 15.125C17.9218 14.9125 18.2499 14.4401 18.25 13.8428C18.2499 13.1816 17.6779 12.6133 17 12.6133C16.9481 12.6133 16.8975 12.6077 16.8486 12.5977C16.5071 12.5276 16.2502 12.2255 16.25 11.8633C16.25 11.6562 16.334 11.4687 16.4697 11.333C16.5376 11.2651 16.6182 11.2099 16.708 11.1719C16.7977 11.1339 16.8965 11.1133 17 11.1133C17.678 11.1133 18.25 10.5441 18.25 9.88281C18.2498 9.46892 18.0038 9.09504 17.5703 8.89258C17.1423 8.69272 16.526 8.66897 15.877 9.04688C15.5191 9.25494 15.0599 9.1332 14.8516 8.77539C14.6435 8.4175 14.7652 7.95834 15.123 7.75Z",fill:"currentColor",key:"l5ew3h"}]]}; +export{C as heading3}; \ No newline at end of file diff --git a/wwwroot/chunk-D9DC4dfy.js b/wwwroot/chunk-D9DC4dfy.js new file mode 100644 index 0000000..ca5aff3 --- /dev/null +++ b/wwwroot/chunk-D9DC4dfy.js @@ -0,0 +1,2 @@ +var C={name:"sign-out",meta:{tags:["sign-out","logout","exit","leave","disconnect"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7 1.25C7.41421 1.25 7.75 1.58579 7.75 2C7.75 2.41421 7.41421 2.75 7 2.75H4C3.22937 2.75 2.75 3.29452 2.75 3.78027V16.2197C2.75 16.7055 3.22937 17.25 4 17.25H7C7.41421 17.25 7.75 17.5858 7.75 18C7.75 18.4142 7.41421 18.75 7 18.75H4C2.57063 18.75 1.25 17.694 1.25 16.2197V3.78027C1.25 2.30602 2.57063 1.25 4 1.25H7ZM13.4697 5.46973C13.7626 5.17683 14.2374 5.17683 14.5303 5.46973L18.5303 9.46973C18.5787 9.51812 18.616 9.5732 18.6484 9.62988C18.664 9.65703 18.6803 9.68375 18.6924 9.71289C18.7131 9.76289 18.7279 9.81459 18.7373 9.86719C18.745 9.91035 18.75 9.95462 18.75 10C18.75 10.045 18.7449 10.089 18.7373 10.1318C18.7279 10.1845 18.713 10.2361 18.6924 10.2861C18.6803 10.3153 18.6639 10.342 18.6484 10.3691C18.616 10.4261 18.5789 10.4817 18.5303 10.5303L14.5303 14.5303C14.2374 14.8232 13.7626 14.8232 13.4697 14.5303C13.1768 14.2374 13.1768 13.7626 13.4697 13.4697L16.1895 10.75H7C6.58579 10.75 6.25 10.4142 6.25 10C6.25 9.58579 6.58579 9.25 7 9.25H16.1895L13.4697 6.53027C13.1768 6.23738 13.1768 5.76262 13.4697 5.46973Z",fill:"currentColor",key:"slivom"}]]}; +export{C as signOut}; \ No newline at end of file diff --git a/wwwroot/chunk-D9YZkVt8.js b/wwwroot/chunk-D9YZkVt8.js new file mode 100644 index 0000000..3edb5e5 --- /dev/null +++ b/wwwroot/chunk-D9YZkVt8.js @@ -0,0 +1,2 @@ +var C={name:"shop",meta:{tags:["shop","store","retail","purchase","sell"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.5 8.75H7.5V13.25C7.5 13.3881 7.61193 13.5 7.75 13.5H9.25C9.38807 13.5 9.5 13.3881 9.5 13.25V8.75ZM5.48047 3.75C5.40458 3.75005 5.33257 3.78449 5.28516 3.84375L2.88574 6.84375C2.75479 7.00744 2.87143 7.25 3.08105 7.25H16.9189C17.1286 7.25 17.2452 7.00744 17.1143 6.84375L14.7148 3.84375C14.6674 3.78449 14.5954 3.75005 14.5195 3.75H5.48047ZM13.75 15C13.75 16.5188 12.5188 17.75 11 17.75H6C4.48122 17.75 3.25 16.5188 3.25 15V8.75H3.08105C1.61383 8.75 0.79769 7.05306 1.71387 5.90723L4.11426 2.90723C4.44633 2.49214 4.94891 2.25005 5.48047 2.25H14.5195C15.0511 2.25005 15.5537 2.49214 15.8857 2.90723L18.2861 5.90723C19.2023 7.05306 18.3862 8.75 16.9189 8.75H16.75V17C16.75 17.4142 16.4142 17.75 16 17.75C15.5858 17.75 15.25 17.4142 15.25 17V8.75H13.75V15ZM11 13.25C11 14.2165 10.2165 15 9.25 15H7.75C6.7835 15 6 14.2165 6 13.25V8.75H4.75V15C4.75 15.6904 5.30964 16.25 6 16.25H11C11.6904 16.25 12.25 15.6904 12.25 15V8.75H11V13.25Z",fill:"currentColor",key:"lryh64"}]]}; +export{C as shop}; \ No newline at end of file diff --git a/wwwroot/chunk-DBEDHHpy.js b/wwwroot/chunk-DBEDHHpy.js new file mode 100644 index 0000000..c223d87 --- /dev/null +++ b/wwwroot/chunk-DBEDHHpy.js @@ -0,0 +1,2 @@ +var C={name:"reddit",meta:{tags:["reddit","social","news","discussions","forum","upvote"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.242 11.597C7.797 11.597 7.439 11.239 7.439 10.803C7.439 10.358 7.797 10 8.242 10C8.681 10 9.036 10.358 9.036 10.803C9.036 11.242 8.678 11.597 8.242 11.597ZM18 10C18 14.419 14.419 18 10 18C5.581 18 2 14.419 2 10C2 5.581 5.581 2 10 2C14.419 2 18 5.581 18 10ZM13.733 8.67099C13.43 8.67099 13.162 8.79702 12.965 8.99402C12.242 8.49402 11.268 8.17102 10.188 8.13602L10.749 5.61002L12.536 6.013C12.536 6.452 12.894 6.80701 13.33 6.80701C13.775 6.80701 14.133 6.442 14.133 6.004C14.133 5.565 13.775 5.20102 13.33 5.20102C13.017 5.20102 12.749 5.388 12.617 5.646L10.643 5.207C10.546 5.181 10.446 5.252 10.42 5.349L9.804 8.13602C8.733 8.18102 7.769 8.50101 7.046 9.00101C6.849 8.79501 6.572 8.672 6.269 8.672C5.143 8.672 4.775 10.185 5.804 10.698C5.769 10.859 5.749 11.027 5.749 11.198C5.749 12.895 7.659 14.269 10.007 14.269C12.365 14.269 14.275 12.895 14.275 11.198C14.275 11.027 14.256 10.85 14.214 10.688C15.223 10.171 14.852 8.67099 13.733 8.67099ZM11.51 12.42C10.923 13.007 9.055 12.997 8.491 12.42C8.42 12.349 8.294 12.349 8.223 12.42C8.142 12.501 8.142 12.626 8.223 12.697C8.958 13.432 11.039 13.432 11.778 12.697C11.859 12.626 11.859 12.5 11.778 12.42C11.707 12.349 11.581 12.349 11.51 12.42ZM11.758 10C11.319 10 10.964 10.358 10.964 10.803C10.964 11.242 11.322 11.597 11.758 11.597C12.203 11.597 12.561 11.239 12.561 10.803C12.562 10.358 12.207 10 11.758 10Z",fill:"currentColor",key:"r2q2ti"}]]}; +export{C as reddit}; \ No newline at end of file diff --git a/wwwroot/chunk-DCbCdtHO.js b/wwwroot/chunk-DCbCdtHO.js new file mode 100644 index 0000000..de5ee37 --- /dev/null +++ b/wwwroot/chunk-DCbCdtHO.js @@ -0,0 +1,2 @@ +var C={name:"arrows-h",meta:{tags:["arrows-h","horizontal","left-and-right","bi-directional","move"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.4697 5.46972C13.7626 5.17683 14.2374 5.17683 14.5303 5.46972L18.5303 9.46974C18.5787 9.51813 18.616 9.57321 18.6484 9.62989C18.664 9.65704 18.6803 9.68376 18.6924 9.7129C18.7131 9.7629 18.7279 9.8146 18.7373 9.8672C18.745 9.91034 18.75 9.95465 18.75 10C18.75 10.0447 18.7448 10.0883 18.7373 10.1309C18.7279 10.1838 18.7132 10.2358 18.6924 10.2861C18.6715 10.3365 18.645 10.3836 18.6143 10.4277C18.5893 10.4635 18.5621 10.4984 18.5303 10.5303L14.5303 14.5303C14.2374 14.8232 13.7626 14.8232 13.4697 14.5303C13.1768 14.2374 13.1769 13.7626 13.4697 13.4697L16.1895 10.75H3.81055L6.53027 13.4697C6.82314 13.7626 6.82316 14.2374 6.53027 14.5303C6.23739 14.8232 5.76261 14.8232 5.46973 14.5303L1.46973 10.5303C1.43771 10.4983 1.40978 10.4636 1.38477 10.4277C1.35404 10.3836 1.32743 10.3365 1.30664 10.2861C1.28591 10.2359 1.27105 10.1838 1.26172 10.1309C1.25423 10.0884 1.25 10.0447 1.25 10C1.25 9.95471 1.25402 9.91029 1.26172 9.8672C1.27081 9.81637 1.28505 9.76622 1.30469 9.71778L1.30859 9.70802C1.32018 9.68062 1.33596 9.65551 1.35059 9.62989C1.38303 9.57305 1.42122 9.51825 1.46973 9.46974L5.46973 5.46972C5.76262 5.17683 6.23738 5.17683 6.53027 5.46972C6.82314 5.76262 6.82316 6.23739 6.53027 6.53027L3.81055 9.25001H16.1895L13.4697 6.53027C13.1768 6.23739 13.1769 5.76262 13.4697 5.46972Z",fill:"currentColor",key:"x0vul6"}]]}; +export{C as arrowsH}; \ No newline at end of file diff --git a/wwwroot/chunk-DD7AbCVk.js b/wwwroot/chunk-DD7AbCVk.js new file mode 100644 index 0000000..d316d72 --- /dev/null +++ b/wwwroot/chunk-DD7AbCVk.js @@ -0,0 +1,2 @@ +var C={name:"palette",meta:{tags:["palette","colors","design","art","creative"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.0615 2.25098C10.0646 2.25097 10.0682 2.24996 10.0713 2.25L10.0703 2.25098C14.2118 2.31196 17.6842 5.78629 17.7402 9.92871C17.7955 13.8558 14.9516 17.1325 11.1982 17.7305L11.1934 17.7314C10.1749 17.8867 9.18066 17.104 9.18066 16.0293V16.0264C9.19003 14.1546 8.72159 12.882 7.91601 12.0752C7.11042 11.2686 5.84019 10.8002 3.97363 10.8096H3.9707C2.89606 10.8096 2.11339 9.81526 2.26855 8.79688L2.26953 8.78906H2.2705C2.87802 5.05723 6.12954 2.2061 10.0498 2.25098L10.0508 2.25H10.0605L10.0615 2.25098ZM10.041 3.75C6.87755 3.70973 4.24646 6.00794 3.75195 9.02246L3.75 9.0752C3.75377 9.12767 3.77464 9.18093 3.8125 9.22656C3.84997 9.2717 3.89195 9.29646 3.93164 9.30567L3.9707 9.30957C6.07201 9.29973 7.79148 9.82711 8.97754 11.0147C10.1633 12.202 10.6905 13.9236 10.6807 16.0293L10.6846 16.0684C10.6938 16.1081 10.7185 16.15 10.7637 16.1875C10.8246 16.238 10.8989 16.2583 10.9668 16.248C13.8964 15.7791 16.1405 13.2845 16.2373 10.2461L16.2402 9.9502C16.1955 6.61698 13.3742 3.79508 10.041 3.75ZM12.9805 12.04C13.5402 12.0402 13.9901 12.49 13.9902 13.0498C13.9902 13.6097 13.5403 14.0604 12.9805 14.0605C12.4305 14.0605 11.9697 13.6098 11.9697 13.0498C11.9699 12.4899 12.4205 12.04 12.9805 12.04ZM14.2305 9.02051C14.7903 9.02071 15.2402 9.4704 15.2402 10.0303C15.2401 10.59 14.7902 11.0398 14.2305 11.04C13.6805 11.04 13.2199 10.5902 13.2197 10.0303C13.2197 9.47028 13.6705 9.02051 14.2305 9.02051ZM6.94043 6.00977C7.50027 6.00995 7.95019 6.46062 7.95019 7.02051C7.94993 7.58017 7.50011 8.0301 6.94043 8.03028C6.39059 8.03028 5.92995 7.58028 5.92968 7.02051C5.92968 6.46051 6.38043 6.00977 6.94043 6.00977ZM12.9805 6.00977C13.5403 6.00996 13.9902 6.46063 13.9902 7.02051C13.99 7.58016 13.5401 8.03008 12.9805 8.03028C12.4306 8.03028 11.97 7.58028 11.9697 7.02051C11.9697 6.46051 12.4205 6.00977 12.9805 6.00977ZM9.95996 4.75C10.5199 4.75 10.9696 5.19988 10.9697 5.75977C10.9697 6.31977 10.52 6.77051 9.95996 6.77051C9.41003 6.77043 8.95019 6.31971 8.95019 5.75977C8.95032 5.19993 9.40011 4.75008 9.95996 4.75Z",fill:"currentColor",key:"3wi44t"}]]}; +export{C as palette}; \ No newline at end of file diff --git a/wwwroot/chunk-DDRLP5vJ.js b/wwwroot/chunk-DDRLP5vJ.js new file mode 100644 index 0000000..a0dd849 --- /dev/null +++ b/wwwroot/chunk-DDRLP5vJ.js @@ -0,0 +1,2 @@ +var L={name:"prime",meta:{tags:["prime","logo"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12.7744 10.5498V16.0459L12.041 17.1455L11.1865 18H8.74219L7.88672 17.1455L7.1543 16.0459V10.5498L8.13086 9.08398L8.74219 9.45117H11.1865L11.7969 9.08398L12.7744 10.5498ZM6.78809 14.5801V16.4121L5.19922 14.8252V13.2373L6.78809 14.5801ZM14.7285 14.8252L13.1406 16.4121V14.5801L14.7285 13.2373V14.8252ZM5.19922 7.98535L6.54297 9.32812L7.64258 9.08398L6.78809 10.3057V14.0918L3.85547 11.6494V7.49609L5.19922 7.98535ZM16.0732 11.6494L13.1406 14.0918V10.3057L12.2861 9.08398L13.3848 9.32812L14.7295 7.98535L16.0732 7.49609V11.6494ZM9.71973 8.96191H8.9873L3.7334 7.00781L3 3.9541L7.40234 4.31055L8.37598 2H9.71973V8.96191ZM12.5264 4.31055L17.0508 3.95508L16.3184 7.00781L11.0645 8.96191H10.209V2H11.5527L12.5264 4.31055ZM8.00879 2L7.1543 3.9541L4.58789 3.70996L6.29883 2H8.00879ZM15.3398 3.70996L12.7744 3.9541L11.9189 2H13.6299L15.3398 3.70996Z",fill:"currentColor",key:"2jz16u"}]]}; +export{L as prime}; \ No newline at end of file diff --git a/wwwroot/chunk-DDWCmmhF.js b/wwwroot/chunk-DDWCmmhF.js new file mode 100644 index 0000000..2576bc6 --- /dev/null +++ b/wwwroot/chunk-DDWCmmhF.js @@ -0,0 +1,2 @@ +var t={name:"thumbs-up",meta:{tags:["thumbs-up","like","positive","agree","good"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.99707 1.30664C11.5096 1.30667 12.74 2.54506 12.7402 4.05664V6.80664H16.7744C18.1828 6.80688 19.2262 8.07062 18.9893 9.44434L18.9883 9.44629L17.6729 16.9463L17.6719 16.9502C17.478 18.0231 16.5527 18.8066 15.459 18.8066H3.89844C2.59419 18.8066 1.52344 17.7574 1.52344 16.4463V10.6768C1.52364 9.37181 2.58825 8.30664 3.89844 8.30664H5.76367L8.30078 2.37207L8.30176 2.36914C8.57737 1.73213 9.20126 1.30664 9.90723 1.30664H9.99707ZM9.90723 2.80664C9.81555 2.80664 9.7233 2.86158 9.67871 2.96387L7.01074 9.20215V17.3066H15.459C15.8191 17.3066 16.13 17.0505 16.1963 16.6836L17.5107 9.18945L17.5215 9.10156C17.5474 8.6709 17.212 8.30687 16.7744 8.30664H11.2402V4.05664C11.24 3.3686 10.6763 2.80668 9.99707 2.80664H9.90723ZM3.89844 9.80664C3.41487 9.80664 3.02364 10.202 3.02344 10.6768V16.4463C3.02344 16.9151 3.40869 17.3066 3.89844 17.3066H5.5L5.50781 9.80664H3.89844Z",fill:"currentColor",key:"hufqul"}]]}; +export{t as thumbsUp}; \ No newline at end of file diff --git a/wwwroot/chunk-DEk7Xv17.js b/wwwroot/chunk-DEk7Xv17.js new file mode 100644 index 0000000..2a58c94 --- /dev/null +++ b/wwwroot/chunk-DEk7Xv17.js @@ -0,0 +1,2 @@ +var C={name:"shopping-cart",meta:{tags:["shopping-cart","buy","purchase","retain","shop"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7.75 14.8799C8.58 14.8799 9.25 15.5499 9.25 16.3799C9.25 17.2099 8.58 17.8799 7.75 17.8799C6.92 17.8799 6.25 17.2099 6.25 16.3799C6.25 15.5499 6.92 14.8799 7.75 14.8799ZM14.25 14.8799C15.08 14.8799 15.75 15.5499 15.75 16.3799C15.75 17.2099 15.08 17.8799 14.25 17.8799C13.42 17.8799 12.75 17.2099 12.75 16.3799C12.75 15.5499 13.42 14.8799 14.25 14.8799ZM4 1.37988C4.36246 1.37988 4.67344 1.63948 4.73828 1.99609L5.17188 4.37988H18C18.2308 4.37988 18.4487 4.48616 18.5908 4.66797C18.7329 4.84994 18.7835 5.08754 18.7275 5.31152L16.7275 13.3115C16.6441 13.6454 16.3442 13.8799 16 13.8799H6C5.63754 13.8799 5.32656 13.6203 5.26172 13.2637L3.37402 2.87988H2C1.58579 2.87988 1.25 2.5441 1.25 2.12988C1.25 1.71567 1.58579 1.37988 2 1.37988H4ZM6.62598 12.3799H15.415L17.04 5.87988H5.44434L6.62598 12.3799Z",fill:"currentColor",key:"7gqk34"}]]}; +export{C as shoppingCart}; \ No newline at end of file diff --git a/wwwroot/chunk-DF0TkW10.js b/wwwroot/chunk-DF0TkW10.js new file mode 100644 index 0000000..76fbbfb --- /dev/null +++ b/wwwroot/chunk-DF0TkW10.js @@ -0,0 +1,2 @@ +var C={name:"sort-numeric-down-alt",meta:{tags:["sort-numeric-down-alt"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6 2.25C6.41419 2.25003 6.75 2.58581 6.75 3V15.1895L7.96973 13.9697C8.26263 13.6769 8.73739 13.6768 9.03028 13.9697C9.32313 14.2626 9.32313 14.7374 9.03028 15.0303L6.53028 17.5303C6.4984 17.5622 6.46345 17.5893 6.42774 17.6143C6.38361 17.6451 6.3365 17.6715 6.28614 17.6924C6.25408 17.7056 6.22077 17.7141 6.1875 17.7227C6.17438 17.7261 6.16183 17.7317 6.14844 17.7344C6.14261 17.7356 6.13672 17.7363 6.13086 17.7373C6.0883 17.7448 6.04472 17.75 6 17.75L5.92286 17.7461C5.90403 17.7442 5.88558 17.7406 5.86719 17.7373C5.86166 17.7363 5.8561 17.7355 5.85059 17.7344C5.8372 17.7317 5.82465 17.7261 5.81153 17.7227C5.77828 17.714 5.74493 17.7057 5.71289 17.6924C5.68375 17.6803 5.65704 17.664 5.62989 17.6484C5.5732 17.616 5.51813 17.5787 5.46973 17.5303L2.96973 15.0303C2.67684 14.7374 2.67684 14.2626 2.96973 13.9697C3.26263 13.6769 3.73739 13.6768 4.03028 13.9697L5.25 15.1895V3C5.25 2.58579 5.58579 2.25 6 2.25ZM13.293 10.9785C13.7009 10.6871 14.2004 10.6908 14.5859 10.9033C14.9845 11.1231 15.25 11.5533 15.25 12.0508V16.501C15.2495 16.9148 14.9139 17.2509 14.5 17.251C14.0861 17.251 13.7505 16.9148 13.75 16.501V12.4414L13.3652 12.6563C13.0036 12.8576 12.5464 12.7267 12.3447 12.3652C12.1435 12.0036 12.2734 11.5474 12.6348 11.3457L13.293 10.9785ZM14 2.75C15.2164 2.75003 16.2039 3.71549 16.2451 4.92188C16.2478 4.94758 16.25 4.97359 16.25 5V5.5C16.25 5.9167 16.2495 6.29876 16.2285 6.63477C16.1593 8.08826 14.9268 9.24972 13.4805 9.25H13C12.5858 9.25 12.25 8.91421 12.25 8.5C12.25 8.08579 12.5858 7.75 13 7.75H13.4805C13.9035 7.74981 14.2884 7.52247 14.5166 7.1875C14.3505 7.22658 14.178 7.25 14 7.25C12.7574 7.25 11.75 6.24264 11.75 5C11.75 3.75736 12.7574 2.75 14 2.75ZM14 4.25C13.5858 4.25 13.25 4.58579 13.25 5C13.25 5.41421 13.5858 5.75 14 5.75C14.4142 5.74997 14.75 5.41419 14.75 5C14.75 4.58581 14.4142 4.25003 14 4.25Z",fill:"currentColor",key:"52ti50"}]]}; +export{C as sortNumericDownAlt}; \ No newline at end of file diff --git a/wwwroot/chunk-DFShI0RF.js b/wwwroot/chunk-DFShI0RF.js new file mode 100644 index 0000000..52cee64 --- /dev/null +++ b/wwwroot/chunk-DFShI0RF.js @@ -0,0 +1,2 @@ +var e={name:"tablet",meta:{tags:["tablet","device","tech","screen","mobile"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16 1.25C16.9665 1.25 17.75 2.0335 17.75 3V17C17.75 17.9665 16.9665 18.75 16 18.75H4C3.0335 18.75 2.25 17.9665 2.25 17V3C2.25 2.0335 3.0335 1.25 4 1.25H16ZM4 2.75C3.86193 2.75 3.75 2.86193 3.75 3V17C3.75 17.1381 3.86193 17.25 4 17.25H16C16.1381 17.25 16.25 17.1381 16.25 17V3C16.25 2.86193 16.1381 2.75 16 2.75H4ZM10 13C10.55 13 11 13.45 11 14C11 14.55 10.55 15 10 15C9.45 15 9 14.55 9 14C9 13.45 9.45 13 10 13Z",fill:"currentColor",key:"apurgd"}]]}; +export{e as tablet}; \ No newline at end of file diff --git a/wwwroot/chunk-DGPYjotC.js b/wwwroot/chunk-DGPYjotC.js new file mode 100644 index 0000000..6f13806 --- /dev/null +++ b/wwwroot/chunk-DGPYjotC.js @@ -0,0 +1,2 @@ +var C={name:"paypal",meta:{tags:["paypal","payment","money","transfer","ecommerce","transaction"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.91332 11.4052C6.79032 12.0822 6.3013 15.2402 6.1573 16.1332C6.1463 16.1972 6.12231 16.2212 6.05231 16.2212H3.42931C3.16231 16.2212 2.9683 15.9882 3.0043 15.7312L5.06531 2.61023C5.11831 2.27123 5.42031 2.01423 5.76831 2.01423C11.1243 2.01423 11.5743 1.88323 12.9423 2.41623C15.0553 3.23823 15.2493 5.22122 14.4893 7.36622C13.7333 9.57522 11.9403 10.5242 9.5623 10.5522C8.0353 10.5762 7.11732 10.3052 6.91332 11.4052ZM15.5533 6.32822C15.4903 6.28222 15.4653 6.26421 15.4483 6.37421C15.3783 6.77621 15.2693 7.16824 15.1393 7.55924C13.7363 11.5742 9.8473 11.2252 7.9483 11.2252C7.7333 11.2252 7.59331 11.3412 7.56531 11.5572C6.77031 16.5102 6.61231 17.5442 6.61231 17.5442C6.57731 17.7942 6.73531 17.9992 6.98531 17.9992H9.21831C9.52031 17.9992 9.77031 17.7772 9.83031 17.4732C9.85531 17.2822 9.7913 17.6882 10.3363 14.2522C10.4983 13.4762 10.8393 13.5572 11.3663 13.5572C13.8633 13.5572 15.8113 12.5412 16.3913 9.59522C16.6193 8.36822 16.5523 7.07622 15.5533 6.32822Z",fill:"currentColor",key:"6leq75"}]]}; +export{C as paypal}; \ No newline at end of file diff --git a/wwwroot/chunk-DGyB-2eO.js b/wwwroot/chunk-DGyB-2eO.js new file mode 100644 index 0000000..20cfffa --- /dev/null +++ b/wwwroot/chunk-DGyB-2eO.js @@ -0,0 +1,2 @@ +var o={name:"bookmark",meta:{tags:["bookmark","favorite","mark","save","tag"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15 4C15 3.31421 14.4358 2.75 13.75 2.75H6.25C5.56421 2.75 5 3.31421 5 4V16.5645L9.57129 13.3848L9.67188 13.3252C9.91324 13.2077 10.2035 13.2281 10.4287 13.3848L15 16.5645V4ZM16.5 18C16.5 18.2792 16.3451 18.5357 16.0977 18.665C15.8501 18.7944 15.5505 18.7747 15.3213 18.6152L10 14.9131L4.67871 18.6152C4.44946 18.7747 4.14985 18.7944 3.90234 18.665C3.65491 18.5357 3.5 18.2792 3.5 18V4C3.5 2.48579 4.73579 1.25 6.25 1.25H13.75C15.2642 1.25 16.5 2.48579 16.5 4V18Z",fill:"currentColor",key:"kuh79g"}]]}; +export{o as bookmark}; \ No newline at end of file diff --git a/wwwroot/chunk-DHvCdaeq.js b/wwwroot/chunk-DHvCdaeq.js new file mode 100644 index 0000000..1bbcddf --- /dev/null +++ b/wwwroot/chunk-DHvCdaeq.js @@ -0,0 +1,2 @@ +var C={name:"phone",meta:{tags:["phone","call","talk","voice","telephone"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.2504 13.98C17.2603 13.5386 16.9461 13.1718 16.5219 13.1128C15.6949 13.0053 14.8807 12.8019 14.1 12.5132H14.098C13.7804 12.3948 13.4263 12.4696 13.184 12.7065L12.1703 13.7202C11.9315 13.9591 11.5625 14.0084 11.2689 13.8413C9.13213 12.6248 7.37503 10.8688 6.15858 8.74268C5.99055 8.44899 6.04042 8.07861 6.27967 7.83936L7.2992 6.81982C7.52763 6.5914 7.60677 6.24228 7.48768 5.92236L7.4867 5.92041C7.19845 5.14105 6.99477 4.32801 6.88709 3.50244L6.85194 3.35205C6.73886 3.01372 6.41406 2.77002 6.01991 2.77002H3.51698C3.04896 2.82277 2.71641 3.23219 2.75623 3.68896C2.98914 5.90024 3.71538 8.03684 4.87147 9.93408L5.10877 10.311L5.1117 10.3159C6.21934 12.0488 7.67019 13.5381 9.36854 14.6821L9.71131 14.9067L9.71717 14.9097C11.7001 16.1905 13.9472 16.9895 16.3002 17.2505H16.3998C16.8695 17.2505 17.2503 16.872 17.2504 16.3901V13.98ZM18.7504 16.3901C18.7503 17.6072 17.836 18.6165 16.642 18.7378L16.3998 18.7505H16.2504C16.2233 18.7505 16.1953 18.7485 16.1683 18.7456C13.5727 18.4629 11.091 17.5839 8.90272 16.1704V16.1694C6.8732 14.8815 5.14788 13.156 3.85096 11.1284C2.4268 8.93961 1.53647 6.43663 1.26405 3.83838L1.26307 3.82764C1.14547 2.53239 2.10261 1.38987 3.40272 1.27295L3.4701 1.27002H6.01991C7.1164 1.27002 8.08163 2.00989 8.33241 3.07959L8.37342 3.29834V3.30322C8.46585 4.01492 8.64133 4.71979 8.89198 5.39795H8.89295C9.21354 6.2578 9.01202 7.22893 8.36073 7.88037L7.75526 8.48389C8.71864 10.0002 10.0019 11.2806 11.5248 12.2437L12.1293 11.6401L12.1351 11.6333H12.1361C12.7937 10.9906 13.7602 10.7854 14.6224 11.1069H14.6215C15.2998 11.3577 16.0043 11.534 16.7162 11.6265H16.7211C17.8808 11.784 18.7258 12.7634 18.7465 13.9165C18.7482 13.9375 18.7504 13.9586 18.7504 13.98V16.3901Z",fill:"currentColor",key:"mgsn4g"}]]}; +export{C as phone}; \ No newline at end of file diff --git a/wwwroot/chunk-DIHtQ23D.js b/wwwroot/chunk-DIHtQ23D.js new file mode 100644 index 0000000..c06057a --- /dev/null +++ b/wwwroot/chunk-DIHtQ23D.js @@ -0,0 +1,2 @@ +var C={name:"bell-slash",meta:{tags:["bell-slash","mute","alert","silence","quiet","off"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M4.33008 7.25C4.74426 7.25004 5.08008 7.58581 5.08008 8C5.08008 9.48446 4.95593 10.6837 4.75195 11.6543C4.5105 12.8031 4.1538 13.6412 3.75098 14.25H11C11.4142 14.25 11.75 14.5858 11.75 15C11.75 15.4142 11.4142 15.75 11 15.75H7.87988C8.18793 16.6248 9.0177 17.25 10 17.25C10.81 17.25 11.5172 16.8259 11.9141 16.1855C12.1322 15.8334 12.5951 15.7243 12.9473 15.9424C13.2994 16.1605 13.4076 16.6235 13.1895 16.9756C12.5295 18.0407 11.3488 18.75 10 18.75C8.18274 18.75 6.67178 17.4636 6.3252 15.75H1.5C1.08579 15.75 0.75 15.4142 0.75 15C0.75 14.5858 1.08579 14.25 1.5 14.25H1.48145C1.47685 14.2501 1.47348 14.2509 1.47168 14.251C1.4684 14.2512 1.47019 14.2509 1.47656 14.25C1.48997 14.2482 1.52291 14.243 1.57031 14.2285C1.66367 14.1999 1.82171 14.1335 2.00977 13.9805C2.37963 13.6795 2.94135 12.977 3.28418 11.3457C3.46259 10.4968 3.58008 9.40374 3.58008 8C3.58008 7.58579 3.91586 7.25 4.33008 7.25ZM10 1.25C12.0647 1.25 13.7009 1.93964 14.8125 3.18945C15.9123 4.42596 16.4199 6.12213 16.4199 8C16.4199 11.4181 17.114 12.968 17.668 13.6533C17.9411 13.9911 18.1921 14.1348 18.3438 14.1973C18.4218 14.2294 18.4797 14.2429 18.5088 14.248C18.5225 14.2505 18.5303 14.251 18.5303 14.251C18.5298 14.2509 18.5264 14.2502 18.5215 14.25H18.501C18.9147 14.2505 19.25 14.5861 19.25 15C19.25 15.4142 18.9142 15.75 18.5 15.75H16.8105L17.5303 16.4697C17.8232 16.7626 17.8232 17.2374 17.5303 17.5303C17.2374 17.8232 16.7626 17.8232 16.4697 17.5303L2.46973 3.53027C2.17683 3.23738 2.17683 2.76262 2.46973 2.46973C2.76262 2.17683 3.23738 2.17683 3.53027 2.46973L4.83203 3.77148C5.11547 3.33411 5.53816 2.77477 6.07324 2.39062C7.11306 1.64418 8.43657 1.25 10 1.25ZM10 2.75C8.69183 2.75 7.68928 3.07743 6.94824 3.60938C6.62075 3.84449 6.30457 4.24744 6.05469 4.6416C6.00606 4.71831 5.96197 4.79241 5.92188 4.86133L15.3105 14.25H16.25C15.5053 13.1257 14.9199 11.2243 14.9199 8C14.9199 6.37787 14.4826 5.07404 13.6924 4.18555C12.914 3.3104 11.7153 2.75 10 2.75Z",fill:"currentColor",key:"i264q4"}]]}; +export{C as bellSlash}; \ No newline at end of file diff --git a/wwwroot/chunk-DIayUssK.js b/wwwroot/chunk-DIayUssK.js new file mode 100644 index 0000000..66da227 --- /dev/null +++ b/wwwroot/chunk-DIayUssK.js @@ -0,0 +1,2 @@ +var C={name:"compress",meta:{tags:["reduce","shrink","minimize","compact","compress"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.25 18V14C6.25 13.8619 6.13807 13.75 6 13.75H2C1.58579 13.75 1.25 13.4142 1.25 13C1.25 12.5858 1.58579 12.25 2 12.25H6C6.9665 12.25 7.75 13.0335 7.75 14V18C7.75 18.4142 7.41421 18.75 7 18.75C6.58579 18.75 6.25 18.4142 6.25 18ZM12.25 18V14C12.25 13.0335 13.0335 12.25 14 12.25H18C18.4142 12.25 18.75 12.5858 18.75 13C18.75 13.4142 18.4142 13.75 18 13.75H14C13.8619 13.75 13.75 13.8619 13.75 14V18C13.75 18.4142 13.4142 18.75 13 18.75C12.5858 18.75 12.25 18.4142 12.25 18ZM6.25 6V2C6.25 1.58579 6.58579 1.25 7 1.25C7.41421 1.25 7.75 1.58579 7.75 2V6C7.75 6.9665 6.9665 7.75 6 7.75H2C1.58579 7.75 1.25 7.41421 1.25 7C1.25 6.58579 1.58579 6.25 2 6.25H6C6.13807 6.25 6.25 6.13807 6.25 6ZM12.25 6V2C12.25 1.58579 12.5858 1.25 13 1.25C13.4142 1.25 13.75 1.58579 13.75 2V6C13.75 6.13807 13.8619 6.25 14 6.25H18C18.4142 6.25 18.75 6.58579 18.75 7C18.75 7.41421 18.4142 7.75 18 7.75H14C13.0335 7.75 12.25 6.9665 12.25 6Z",fill:"currentColor",key:"k5i84d"}]]}; +export{C as compress}; \ No newline at end of file diff --git a/wwwroot/chunk-DIc0UlHL.js b/wwwroot/chunk-DIc0UlHL.js new file mode 100644 index 0000000..4519314 --- /dev/null +++ b/wwwroot/chunk-DIc0UlHL.js @@ -0,0 +1,1654 @@ +import {ac as J,f as mn,$ as $t$1,h as mu,L as yn,g,I as I$1,u as uz,l as gs,ad as Ui,E as xt$1,s as BE,y as nN,A as j0$1,T as PM,x as jM,Q as QE,C as IM,D as az,ae as G,af as dR,U as Uo,ag as YE,G as su,ah as fe$1,ai as jr,aj as Rt$1,c as cu,ak as rD,al as Ae$1,am as Ie$1,an as Yt$1,ao as F0$1,p as Vc$1,i as iq,t as uu,v as lu,P as U,ap as m$1,aq as l,ar as Y,as as dS,at as Z,M as Bp,N as sz,q as cA,B as Bc$1,w as VE,r as rM,b as bp,e as zE,n as n_,o as oM,au as Nr,av as Hr$1,aw as ZO,J as WI,ax as Bi,ay as Pe$1,az as HG,aA as vC,aB as _I,aC as MI,aD as Mq,aE as oe$1,aF as ee$1,aG as tn,aH as TI,aI as nr,aJ as eO,aK as o,aL as zh,aM as Tu,K as b,aN as vn,aO as _e$1,aP as me$1,aQ as w,_ as aM,a0 as cM,Y as YM,a4 as fD,a3 as fu,aR as BG,aS as v4$1,aT as pq,aU as E4,aV as dz,aW as Fo,aX as te$1,aY as RI,aZ as x4$1,a_ as F4,a$ as I4,b0 as uO,b1 as k4,b2 as AI,b3 as $4$1,Z as qE,H as EM,a as au,a2 as Ha$1,O as cz,b4 as aO,R as nq,b5 as N4$1,b6 as b4$1,b7 as C4$1,b8 as D4,b9 as H4,X as XE,ba as Gh,bb as W4$1,a5 as Gm,a6 as GE,bc as Gs,bd as V4,be as B4,a1 as hM,a7 as Rm,a8 as xm,bf as oN,bg as xI,bh as m4$1,bi as aT,bj as rN}from'./main-ILRVANDG.js';var e$1={name:"spinner",meta:{tags:["spinner","loading","process","wait","buffering"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M1 10C1 5.02579 5.02579 1 10 1C12.3905 1 14.562 1.9393 16.1738 3.45312C16.4756 3.73669 16.4905 4.21178 16.207 4.51367C15.9235 4.81558 15.4484 4.83039 15.1465 4.54688C13.7983 3.2807 11.9895 2.5 10 2.5C5.85421 2.5 2.5 5.85421 2.5 10C2.5 14.1458 5.85421 17.5 10 17.5C14.1458 17.5 17.5 14.1458 17.5 10C17.5 9.58579 17.8358 9.25 18.25 9.25C18.6642 9.25 19 9.58579 19 10C19 14.9742 14.9742 19 10 19C5.02579 19 1 14.9742 1 10Z",fill:"currentColor",key:"p4wko0"}]]}; +var e={name:"times",meta:{tags:["times","close","cancel","delete","remove"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.4199 4.51962C14.7128 4.22696 15.1876 4.22685 15.4805 4.51962C15.7731 4.81246 15.7731 5.28732 15.4805 5.58016L11.0606 10L15.4805 14.4199C15.773 14.7129 15.7732 15.1877 15.4805 15.4805C15.1877 15.7732 14.7128 15.773 14.4199 15.4805L10 11.0606L5.58014 15.4805C5.2873 15.7731 4.81245 15.7731 4.5196 15.4805C4.22682 15.1876 4.22692 14.7128 4.5196 14.4199L8.93949 10L4.5196 5.58016C4.22676 5.28727 4.22673 4.8125 4.5196 4.51962C4.81248 4.22677 5.28726 4.22678 5.58014 4.51962L10 8.93951L14.4199 4.51962Z",fill:"currentColor",key:"ow8ecl"}]]}; +var F0=(()=>{class a{_renderer;_elementRef;onChange=e=>{};onTouched=()=>{};constructor(e,c){this._renderer=e,this._elementRef=c;}setProperty(e,c){this._renderer.setProperty(this._elementRef.nativeElement,e,c);}registerOnTouched(e){this.onTouched=e;}registerOnChange(e){this.onChange=e;}setDisabledState(e){this.setProperty("disabled",e);}static \u0275fac=function(c){return new(c||a)(fe$1(jr),fe$1(Rt$1))};static \u0275dir=xt$1({type:a})}return a})(),Oe=(()=>{class a extends F0{static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275dir=xt$1({type:a,features:[BE]})}return a})(),q4=new I$1("");var Re={provide:q4,useExisting:Ha$1(()=>T0),multi:true};function He(){let a=vn()?vn().getUserAgent():"";return /android (\d+)/.test(a.toLowerCase())}var $e=new I$1(""),T0=(()=>{class a extends F0{_compositionMode;_composing=false;constructor(e,c,l){super(e,c),this._compositionMode=l,this._compositionMode==null&&(this._compositionMode=!He());}writeValue(e){let c=e??"";this.setProperty("value",c);}_handleInput(e){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(e);}_compositionStart(){this._composing=true;}_compositionEnd(e){this._composing=false,this._compositionMode&&this.onChange(e);}static \u0275fac=function(c){return new(c||a)(fe$1(jr),fe$1(Rt$1),fe$1($e,8))};static \u0275dir=xt$1({type:a,selectors:[["input","formControlName","",3,"type","checkbox",3,"ngNoCva",""],["textarea","formControlName","",3,"ngNoCva",""],["input","formControl","",3,"type","checkbox",3,"ngNoCva",""],["textarea","formControl","",3,"ngNoCva",""],["input","ngModel","",3,"type","checkbox",3,"ngNoCva",""],["textarea","ngModel","",3,"ngNoCva",""],["","ngDefaultControl",""]],hostBindings:function(c,l){c&1&&cu("input",function(i){return l._handleInput(i.target.value)})("blur",function(){return l.onTouched()})("compositionstart",function(){return l._compositionStart()})("compositionend",function(i){return l._compositionEnd(i.target.value)});},standalone:false,features:[nN([Re]),BE]})}return a})();function X4(a){return a==null||Y4(a)===0}function Y4(a){return a==null?null:Array.isArray(a)||typeof a=="string"?a.length:a instanceof Set?a.size:null}var a4=new I$1(""),K4=new I$1(""),Ue=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/,$4=class{static min(t){return je(t)}static max(t){return We(t)}static required(t){return E0(t)}static requiredTrue(t){return Ge(t)}static email(t){return qe(t)}static minLength(t){return Xe(t)}static maxLength(t){return Ye(t)}static pattern(t){return Ke(t)}static nullValidator(t){return q1()}static compose(t){return R0(t)}static composeAsync(t){return H0(t)}};function je(a){return t=>{if(t.value==null||a==null)return null;let e=parseFloat(t.value);return !isNaN(e)&&e{if(t.value==null||a==null)return null;let e=parseFloat(t.value);return !isNaN(e)&&e>a?{max:{max:a,actual:t.value}}:null}}function E0(a){return X4(a.value)?{required:true}:null}function Ge(a){return a.value===true?null:{required:true}}function qe(a){return X4(a.value)||Ue.test(a.value)?null:{email:true}}function Xe(a){return t=>{let e=t.value?.length??Y4(t.value);return e===null||e===0?null:e{let e=t.value?.length??Y4(t.value);return e!==null&&e>a?{maxlength:{requiredLength:a,actualLength:e}}:null}}function Ke(a){if(!a)return q1;let t,e;return typeof a=="string"?(e="",a.charAt(0)!=="^"&&(e+="^"),e+=a,a.charAt(a.length-1)!=="$"&&(e+="$"),t=new RegExp(e)):(e=a.toString(),t=a),c=>{if(X4(c.value))return null;let l=c.value;return t.test(l)?null:{pattern:{requiredPattern:e,actualValue:l}}}}function q1(a){return null}function P0(a){return a!=null}function B0(a){return Fo(a)?te$1(a):a}function I0(a){let t={};return a.forEach(e=>{t=e!=null?l(l({},t),e):t;}),Object.keys(t).length===0?null:t}function V0(a,t){return t.map(e=>e(a))}function Qe(a){return !a.validate}function O0(a){return a.map(t=>Qe(t)?t:e=>t.validate(e))}function R0(a){if(!a)return null;let t=a.filter(P0);return t.length==0?null:function(e){return I0(V0(e,t))}}function Q4(a){return a!=null?R0(O0(a)):null}function H0(a){if(!a)return null;let t=a.filter(P0);return t.length==0?null:function(e){let c=V0(e,t).map(B0);return dS(c).pipe(Z(I0))}}function Z4(a){return a!=null?H0(O0(a)):null}function S0(a,t){return a===null?[t]:Array.isArray(a)?[...a,t]:[a,t]}function $0(a){return a._rawValidators}function U0(a){return a._rawAsyncValidators}function U4(a){return a?Array.isArray(a)?a:[a]:[]}function X1(a,t){return Array.isArray(a)?a.includes(t):a===t}function N0(a,t){let e=U4(t);return U4(a).forEach(l=>{X1(e,l)||e.push(l);}),e}function w0(a,t){return U4(t).filter(e=>!X1(a,e))}var Y1=class{get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}_composedValidatorFn;_composedAsyncValidatorFn;_rawValidators=[];_rawAsyncValidators=[];_setValidators(t){this._rawValidators=t||[],this._composedValidatorFn=Q4(this._rawValidators);}_setAsyncValidators(t){this._rawAsyncValidators=t||[],this._composedAsyncValidatorFn=Z4(this._rawAsyncValidators);}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_onDestroyCallbacks=[];_registerOnDestroy(t){this._onDestroyCallbacks.push(t);}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(t=>t()),this._onDestroyCallbacks=[];}reset(t=void 0){this.control?.reset(t);}hasError(t,e){return this.control?this.control.hasError(t,e):false}getError(t,e){return this.control?this.control.getError(t,e):null}},a1=class extends Y1{name;get formDirective(){return null}get path(){return null}};var g1="VALID",G1="INVALID",J2="PENDING",z1="DISABLED",D2=class{},K1=class extends D2{value;source;constructor(t,e){super(),this.value=t,this.source=e;}},b1=class extends D2{pristine;source;constructor(t,e){super(),this.pristine=t,this.source=e;}},L1=class extends D2{touched;source;constructor(t,e){super(),this.touched=t,this.source=e;}},e1=class extends D2{status;source;constructor(t,e){super(),this.status=t,this.source=e;}},j4=class extends D2{source;constructor(t){super(),this.source=t;}},c1=class extends D2{source;constructor(t){super(),this.source=t;}};function j0(a){return (c4(a)?a.validators:a)||null}function Ze(a){return Array.isArray(a)?Q4(a):a||null}function W0(a,t){return (c4(t)?t.asyncValidators:a)||null}function Je(a){return Array.isArray(a)?Z4(a):a||null}function c4(a){return a!=null&&!Array.isArray(a)&&typeof a=="object"}function e5(a,t,e){let c=a.controls;if(!(Object.keys(c)).length)throw new w(1e3,"");if(!G0(c,e))throw new w(1001,"")}function a5(a,t,e){a._forEachChild((c,l)=>{if(e[l]===void 0)throw new w(-1002,"")});}var Q1=class{_pendingDirty=false;_hasOwnPendingAsyncValidator=null;_pendingTouched=false;_onCollectionChange=()=>{};_updateOn;_hasRequired=U(false);_parent=null;_asyncValidationSubscription;_composedValidatorFn;_composedAsyncValidatorFn;_rawValidators;_rawAsyncValidators;value;constructor(t,e){this._assignValidators(t),this._assignAsyncValidators(e);}get validator(){return this._composedValidatorFn}set validator(t){this._rawValidators=this._composedValidatorFn=t,this._updateHasRequiredValidator();}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(t){this._rawAsyncValidators=this._composedAsyncValidatorFn=t;}get parent(){return this._parent}get status(){return J(this.statusReactive)}set status(t){J(()=>this.statusReactive.set(t));}_status=gs(()=>this.statusReactive());statusReactive=U(void 0);get valid(){return this.status===g1}get invalid(){return this.status===G1}get pending(){return this.status===J2}get disabled(){return this.status===z1}get enabled(){return this.status!==z1}errors;get pristine(){return J(this.pristineReactive)}set pristine(t){J(()=>this.pristineReactive.set(t));}_pristine=gs(()=>this.pristineReactive());pristineReactive=U(true);get dirty(){return !this.pristine}get touched(){return J(this.touchedReactive)}set touched(t){J(()=>this.touchedReactive.set(t));}_touched=gs(()=>this.touchedReactive());touchedReactive=U(false);get untouched(){return !this.touched}_events=new Y;events=this._events.asObservable();valueChanges;statusChanges;get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(t){this._assignValidators(t);}setAsyncValidators(t){this._assignAsyncValidators(t);}addValidators(t){this.setValidators(N0(t,this._rawValidators));}addAsyncValidators(t){this.setAsyncValidators(N0(t,this._rawAsyncValidators));}removeValidators(t){this.setValidators(w0(t,this._rawValidators));}removeAsyncValidators(t){this.setAsyncValidators(w0(t,this._rawAsyncValidators));}hasValidator(t){return X1(this._rawValidators,t)}hasAsyncValidator(t){return X1(this._rawAsyncValidators,t)}clearValidators(){this.validator=null;}clearAsyncValidators(){this.asyncValidator=null;}markAsTouched(t={}){let e=this.touched===false;this.touched=true;let c=t.sourceControl??this;t.onlySelf||this._parent?.markAsTouched(m$1(l({},t),{sourceControl:c})),e&&t.emitEvent!==false&&this._events.next(new L1(true,c));}markAllAsDirty(t={}){this.markAsDirty({onlySelf:true,emitEvent:t.emitEvent,sourceControl:this}),this._forEachChild(e=>e.markAllAsDirty(t));}markAllAsTouched(t={}){this.markAsTouched({onlySelf:true,emitEvent:t.emitEvent,sourceControl:this}),this._forEachChild(e=>e.markAllAsTouched(t));}markAsUntouched(t={}){let e=this.touched===true;this.touched=false,this._pendingTouched=false;let c=t.sourceControl??this;this._forEachChild(l=>{l.markAsUntouched({onlySelf:true,emitEvent:t.emitEvent,sourceControl:c});}),t.onlySelf||this._parent?._updateTouched(t,c),e&&t.emitEvent!==false&&this._events.next(new L1(false,c));}markAsDirty(t={}){let e=this.pristine===true;this.pristine=false;let c=t.sourceControl??this;t.onlySelf||this._parent?.markAsDirty(m$1(l({},t),{sourceControl:c})),e&&t.emitEvent!==false&&this._events.next(new b1(false,c));}markAsPristine(t={}){let e=this.pristine===false;this.pristine=true,this._pendingDirty=false;let c=t.sourceControl??this;this._forEachChild(l=>{l.markAsPristine({onlySelf:true,emitEvent:t.emitEvent});}),t.onlySelf||this._parent?._updatePristine(t,c),e&&t.emitEvent!==false&&this._events.next(new b1(true,c));}markAsPending(t={}){this.status=J2;let e=t.sourceControl??this;t.emitEvent!==false&&(this._events.next(new e1(this.status,e)),this.statusChanges.emit(this.status)),t.onlySelf||this._parent?.markAsPending(m$1(l({},t),{sourceControl:e}));}disable(t={}){let e=this._parentMarkedDirty(t.onlySelf);this.status=z1,this.errors=null,this._forEachChild(l$1=>{l$1.disable(m$1(l({},t),{onlySelf:true}));}),this._updateValue();let c=t.sourceControl??this;t.emitEvent!==false&&(this._events.next(new K1(this.value,c)),this._events.next(new e1(this.status,c)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors(m$1(l({},t),{skipPristineCheck:e}),this),this._onDisabledChange.forEach(l=>l(true));}enable(t={}){let e=this._parentMarkedDirty(t.onlySelf);this.status=g1,this._forEachChild(c=>{c.enable(m$1(l({},t),{onlySelf:true}));}),this.updateValueAndValidity({onlySelf:true,emitEvent:t.emitEvent}),this._updateAncestors(m$1(l({},t),{skipPristineCheck:e}),this),this._onDisabledChange.forEach(c=>c(false));}_updateAncestors(t,e){t.onlySelf||(this._parent?.updateValueAndValidity(t),t.skipPristineCheck||this._parent?._updatePristine({},e),this._parent?._updateTouched({},e));}setParent(t){this._parent=t;}getRawValue(){return this.value}updateValueAndValidity(t={}){if(this._setInitialStatus(),this._updateValue(),this.enabled){let c=this._cancelExistingSubscription();this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===g1||this.status===J2)&&this._runAsyncValidator(c,t.emitEvent);}let e=t.sourceControl??this;t.emitEvent!==false&&(this._events.next(new K1(this.value,e)),this._events.next(new e1(this.status,e)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),t.onlySelf||this._parent?.updateValueAndValidity(m$1(l({},t),{sourceControl:e}));}_updateTreeValidity(t={emitEvent:true}){this._forEachChild(e=>e._updateTreeValidity(t)),this.updateValueAndValidity({onlySelf:true,emitEvent:t.emitEvent});}_setInitialStatus(){this.status=this._allControlsDisabled()?z1:g1;}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(t,e){if(this.asyncValidator){this.status=J2,this._hasOwnPendingAsyncValidator={emitEvent:e!==false,shouldHaveEmitted:t!==false};let c=B0(this.asyncValidator(this));this._asyncValidationSubscription=c.subscribe(l=>{this._hasOwnPendingAsyncValidator=null,this.setErrors(l,{emitEvent:e,shouldHaveEmitted:t});});}}_cancelExistingSubscription(){if(this._asyncValidationSubscription){this._asyncValidationSubscription.unsubscribe();let t=(this._hasOwnPendingAsyncValidator?.emitEvent||this._hasOwnPendingAsyncValidator?.shouldHaveEmitted)??false;return this._hasOwnPendingAsyncValidator=null,t}return false}setErrors(t,e={}){this.errors=t,this._updateControlsErrors(e.emitEvent!==false,this,e.shouldHaveEmitted);}get(t){let e=t;return e==null||(Array.isArray(e)||(e=e.split(".")),e.length===0)?null:e.reduce((c,l)=>c&&c._find(l),this)}getError(t,e){let c=e?this.get(e):this;return c?.errors?c.errors[t]:null}hasError(t,e){return !!this.getError(t,e)}get root(){let t=this;for(;t._parent;)t=t._parent;return t}_updateControlsErrors(t,e,c){this.status=this._calculateStatus(),t&&this.statusChanges.emit(this.status),(t||c)&&this._events.next(new e1(this.status,e)),this._parent&&this._parent._updateControlsErrors(t,e,c);}_initObservables(){this.valueChanges=new Ae$1,this.statusChanges=new Ae$1;}_calculateStatus(){return this._allControlsDisabled()?z1:this.errors?G1:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(J2)?J2:this._anyControlsHaveStatus(G1)?G1:g1}_anyControlsHaveStatus(t){return this._anyControls(e=>e.status===t)}_anyControlsDirty(){return this._anyControls(t=>t.dirty)}_anyControlsTouched(){return this._anyControls(t=>t.touched)}_updatePristine(t,e){let c=!this._anyControlsDirty(),l=this.pristine!==c;this.pristine=c,t.onlySelf||this._parent?._updatePristine(t,e),l&&this._events.next(new b1(this.pristine,e));}_updateTouched(t={},e){this.touched=this._anyControlsTouched(),this._events.next(new L1(this.touched,e)),t.onlySelf||this._parent?._updateTouched(t,e);}_onDisabledChange=[];_registerOnCollectionChange(t){this._onCollectionChange=t;}_setUpdateStrategy(t){c4(t)&&t.updateOn!=null&&(this._updateOn=t.updateOn);}_parentMarkedDirty(t){return !t&&!!this._parent?.dirty&&!this._parent._anyControlsDirty()}_find(t){return null}_assignValidators(t){this._rawValidators=Array.isArray(t)?t.slice():t,this._composedValidatorFn=Ze(this._rawValidators),this._updateHasRequiredValidator();}_assignAsyncValidators(t){this._rawAsyncValidators=Array.isArray(t)?t.slice():t,this._composedAsyncValidatorFn=Je(this._rawAsyncValidators);}_updateHasRequiredValidator(){J(()=>this._hasRequired.set(this.hasValidator($4.required)));}};function G0(a,t){return Object.hasOwn(a,t)}function c5(a){return a.tagName==="INPUT"||a.tagName==="SELECT"||a.tagName==="TEXTAREA"}function t5(a,t,e,c){switch(e){case "name":a.setAttribute(t,e,c);break;case "disabled":case "readonly":case "required":c?a.setAttribute(t,e,""):a.removeAttribute(t,e);break;case "max":case "min":case "minLength":case "maxLength":c!==void 0?a.setAttribute(t,e,c.toString()):a.removeAttribute(t,e);break}}var W4=class{kind;context;control;message;constructor({kind:t,context:e,control:c}){this.kind=t,this.context=e,this.control=c;}};var l5=(()=>{class a{_validator=q1;_onChange;_enabled;ngOnChanges(e){if(this.inputName in e){let c=this.normalizeInput(e[this.inputName].currentValue);this._enabled=this.enabled(c),this._validator=this._enabled?this.createValidator(c):q1,this._onChange?.();}}validate(e){return this._validator(e)}registerOnValidatorChange(e){this._onChange=e;}enabled(e){return e!=null}static \u0275fac=function(c){return new(c||a)};static \u0275dir=xt$1({type:a,features:[Yt$1]})}return a})();var n5={provide:a4,useExisting:Ha$1(()=>q0),multi:true};var q0=(()=>{class a extends l5{required;inputName="required";normalizeInput=yn;createValidator=e=>E0;enabled(e){return e}static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275dir=xt$1({type:a,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(c,l){c&2&&su("required",l._enabled?"":null);},inputs:{required:"required"},standalone:false,features:[nN([n5]),BE]})}return a})();var i5=new I$1(""),C1=new I$1("",{factory:()=>t4}),t4="always";function r5(a,t){return [...t.path,a]}function G4(a,t,e=t4){X0(a,t),t.valueAccessor.writeValue(a.value),(a.disabled||e==="always")&&t.valueAccessor.setDisabledState?.(a.disabled),f5(a,t),u5(a,t),d5(a,t),o5(a,t);}function k0(a,t,e=true){let c=()=>{};t?.valueAccessor?.registerOnChange(c),t?.valueAccessor?.registerOnTouched(c),s5(a,t),a&&(t._invokeOnDestroyCallbacks(),a._registerOnCollectionChange(()=>{}));}function Z1(a,t){a.forEach(e=>{e.registerOnValidatorChange&&e.registerOnValidatorChange(t);});}function o5(a,t){if(t.valueAccessor.setDisabledState){let e=c=>{t.valueAccessor.setDisabledState(c);};a.registerOnDisabledChange(e),t._registerOnDestroy(()=>{a._unregisterOnDisabledChange(e);});}}function X0(a,t){let e=$0(a);t.validator!==null?a.setValidators(S0(e,t.validator)):typeof e=="function"&&a.setValidators([e]);let c=U0(a);t.asyncValidator!==null?a.setAsyncValidators(S0(c,t.asyncValidator)):typeof c=="function"&&a.setAsyncValidators([c]);let l=()=>a.updateValueAndValidity();Z1(t._rawValidators,l),Z1(t._rawAsyncValidators,l);}function s5(a,t){let e=false;if(a!==null){if(t.validator!==null){let l=$0(a);if(Array.isArray(l)&&l.length>0){let n=l.filter(i=>i!==t.validator);n.length!==l.length&&(e=true,a.setValidators(n));}}if(t.asyncValidator!==null){let l=U0(a);if(Array.isArray(l)&&l.length>0){let n=l.filter(i=>i!==t.asyncValidator);n.length!==l.length&&(e=true,a.setAsyncValidators(n));}}}let c=()=>{};return Z1(t._rawValidators,c),Z1(t._rawAsyncValidators,c),e}function f5(a,t){t.valueAccessor.registerOnChange(e=>{a._pendingValue=e,a._pendingChange=true,a._pendingDirty=true,a.updateOn==="change"&&Y0(a,t);});}function d5(a,t){t.valueAccessor.registerOnTouched(()=>{a._pendingTouched=true,a.updateOn==="blur"&&a._pendingChange&&Y0(a,t),a.updateOn!=="submit"&&a.markAsTouched();});}function Y0(a,t){a._pendingDirty&&a.markAsDirty(),a.setValue(a._pendingValue,{emitModelToViewChange:false}),t.viewToModelUpdate(a._pendingValue),a._pendingChange=false;}function u5(a,t){let e=(c,l)=>{t.valueAccessor.writeValue(c),l&&t.viewToModelUpdate(c);};a.registerOnChange(e),t._registerOnDestroy(()=>{a._unregisterOnChange(e);});}function m5(a,t){X0(a,t);}function K0(a,t){if(!a.hasOwnProperty("model"))return false;let e=a.model;return e.isFirstChange()?true:!Object.is(t,e.currentValue)}function p5(a){return Object.getPrototypeOf(a.constructor)===Oe}function h5(a,t){a._syncPendingControls(),t.forEach(e=>{let c=e.control;c.updateOn==="submit"&&c._pendingChange&&(e.viewToModelUpdate(c._pendingValue),c._pendingChange=false);});}function v5(a,t){if(!t)return null;let e,c,l;return t.forEach(n=>{n.constructor===T0?e=n:p5(n)?c=n:l=n;}),l||c||e||null}var Q0={provide:i5,useFactory:()=>{let a=g(v2,{self:true});return {setParseErrors:t=>{a.setParseErrorSource(t);},set onReset(t){a.onReset=t;}}}},v2=class extends Y1{_parent=null;name=null;valueAccessor=null;isCustomControlBased=false;userOnReset;resetSubscription;set onReset(t){this.userOnReset=t,this.resetSubscription?.unsubscribe(),this.resetSubscription=void 0,this.control&&(this.resetSubscription=this.control.events.subscribe(e=>{e instanceof c1&&this.control&&this.userOnReset?.(this.control.value);}),this.subscription?.add(this.resetSubscription));}isNativeFormElement=false;rawValueAccessors;_selectedValueAccessor=null;get selectedValueAccessor(){return this._selectedValueAccessor??=v5(this,this.rawValueAccessors)}parseErrorsValidator=null;renderer;injector;requiredValidatorViaDi;subscription;customControlBindings=null;constructor(t,e,c){super(),this.injector=t,this.renderer=e,this.rawValueAccessors=c,this.injector?.get(_e$1)?.onDestroy(()=>{this.removeParseErrorsValidator(this.control),this.subscription?.unsubscribe();});}setupCustomControl(){this.subscription?.unsubscribe();let t=this.injector?.get(Hr$1);if(!this.control||!t)return;let e=t.markForCheck.bind(t);this.subscription=new me$1,this.subscription.add(this.control.valueChanges.subscribe(e)),this.subscription.add(this.control.statusChanges.subscribe(e)),this.resetSubscription?.unsubscribe(),this.resetSubscription=void 0,this.userOnReset&&(this.resetSubscription=this.control.events.subscribe(c=>{c instanceof c1&&this.control&&this.userOnReset?.(this.control.value);}),this.subscription.add(this.resetSubscription)),this.parseErrorsValidator&&this.control.addValidators(this.parseErrorsValidator);}ngControlCreate(t){!t.nativeElement.hasAttribute?.("ngNoCva")&&(this.rawValueAccessors&&this.rawValueAccessors.length>0||this.valueAccessor!==null)||!t.customControl||(this.isCustomControlBased=true,t.listenToCustomControlModel(l=>{this.control?.setValue(l,{emitModelToViewChange:false}),this.control?.markAsDirty(),this.viewToModelUpdate(l);}),t.listenToCustomControlOutput("touch",()=>{this.control?.markAsTouched();}),this.customControlBindings={},this.isNativeFormElement=c5(t.nativeElement),this.requiredValidatorViaDi=this._rawValidators.find(l=>l instanceof q0));}ngControlUpdate(t,e){if(!this.isCustomControlBased)return;let c=this.control,l=this.customControlBindings;Object.is(l.value,c.value)||(l.value=c.value,t.setCustomControlModelInput(c.value)),this.bindControlProperty(t,l,"touched",c.touched),this.bindControlProperty(t,l,"dirty",c.dirty),this.bindControlProperty(t,l,"valid",c.valid),this.bindControlProperty(t,l,"invalid",c.invalid),this.bindControlProperty(t,l,"pending",c.pending),this.bindControlProperty(t,l,"disabled",c.disabled),this.shouldBindRequired&&this.bindControlProperty(t,l,"required",this.isRequired);let n=c.errors;if(l.errors!==n){l.errors=n;let i=this._convertErrors(n);t.setInputOnDirectives("errors",i);}}get isRequired(){return (this.requiredValidatorViaDi?._enabled||this.control?._hasRequired())??false}get shouldBindRequired(){return true}bindControlProperty(t,e,c,l){if(e[c]===l)return;e[c]=l;let n=t.setInputOnDirectives(c,l);this.isNativeFormElement&&!n&&(c==="disabled"||c==="required")&&this.renderer&&t5(this.renderer,t.nativeElement,c,l);}_convertErrors(t){if(t===null)return [];let e=this.control;return Object.entries(t).map(([c,l])=>new W4({context:l,kind:c,control:e}))}setParseErrorSource(t){if(t===void 0)return;let e=null,c=gs(()=>{let l=t();return l.length===0?null:l.reduce((n,i)=>(n[i.kind]=i,n),{})});this.parseErrorsValidator=(()=>e).bind(this),Ui(()=>{e=c(),this.control?.updateValueAndValidity({emitEvent:false});},{injector:this.injector});}removeParseErrorsValidator(t){this.parseErrorsValidator&&(t?.removeValidators(this.parseErrorsValidator),t?.updateValueAndValidity({emitEvent:false}));}},J1=class{_cd;constructor(t){this._cd=t;}get isTouched(){return this._cd?.control?._touched?.(),!!this._cd?.control?.touched}get isUntouched(){return !!this._cd?.control?.untouched}get isPristine(){return this._cd?.control?._pristine?.(),!!this._cd?.control?.pristine}get isDirty(){return !!this._cd?.control?.dirty}get isValid(){return this._cd?.control?._status?.(),!!this._cd?.control?.valid}get isInvalid(){return !!this._cd?.control?.invalid}get isPending(){return !!this._cd?.control?.pending}get isSubmitted(){return this._cd?._submitted?.(),!!this._cd?.submitted}};var an=(()=>{class a extends J1{constructor(e){super(e);}static \u0275fac=function(c){return new(c||a)(fe$1(v2,2))};static \u0275dir=xt$1({type:a,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(c,l){c&2&&rD("ng-untouched",l.isUntouched)("ng-touched",l.isTouched)("ng-pristine",l.isPristine)("ng-dirty",l.isDirty)("ng-valid",l.isValid)("ng-invalid",l.isInvalid)("ng-pending",l.isPending);},standalone:false,features:[BE]})}return a})(),cn=(()=>{class a extends J1{constructor(e){super(e);}static \u0275fac=function(c){return new(c||a)(fe$1(a1,10))};static \u0275dir=xt$1({type:a,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["","formArray",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(c,l){c&2&&rD("ng-untouched",l.isUntouched)("ng-touched",l.isTouched)("ng-pristine",l.isPristine)("ng-dirty",l.isDirty)("ng-valid",l.isValid)("ng-invalid",l.isInvalid)("ng-pending",l.isPending)("ng-submitted",l.isSubmitted);},standalone:false,features:[BE]})}return a})(),e4=class extends Q1{constructor(t,e,c){super(j0(e),W0(c,e)),this.controls=t,this._initObservables(),this._setUpdateStrategy(e),this._setUpControls(),this.updateValueAndValidity({onlySelf:true,emitEvent:!!this.asyncValidator});}controls;registerControl(t,e){let c=this._find(t);return c||(this.controls[t]=e,e.setParent(this),e._registerOnCollectionChange(this._onCollectionChange),e)}addControl(t,e,c={}){this.registerControl(t,e),this.updateValueAndValidity({emitEvent:c.emitEvent}),this._onCollectionChange();}removeControl(t,e={}){let c=this._find(t);c&&c._registerOnCollectionChange(()=>{}),delete this.controls[t],this.updateValueAndValidity({emitEvent:e.emitEvent}),this._onCollectionChange();}setControl(t,e,c={}){let l=this._find(t);l&&l._registerOnCollectionChange(()=>{}),delete this.controls[t],e&&this.registerControl(t,e),this.updateValueAndValidity({emitEvent:c.emitEvent}),this._onCollectionChange();}contains(t){return this._find(t)?.enabled===true}setValue(t,e={}){J(()=>{a5(this,true,t),Object.keys(t).forEach(c=>{e5(this,true,c),this.controls[c].setValue(t[c],{onlySelf:true,emitEvent:e.emitEvent});}),this.updateValueAndValidity(e);});}patchValue(t,e={}){t!=null&&(Object.keys(t).forEach(c=>{let l=this._find(c);l&&l.patchValue(t[c],{onlySelf:true,emitEvent:e.emitEvent});}),this.updateValueAndValidity(e));}reset(t={},e={}){this._forEachChild((c,l$1)=>{c.reset(t?t[l$1]:null,m$1(l({},e),{onlySelf:true}));}),this._updatePristine(e,this),this._updateTouched(e,this),this.updateValueAndValidity(e),e?.emitEvent!==false&&this._events.next(new c1(this));}getRawValue(){return this._reduceChildren({},(t,e,c)=>(t[c]=e.getRawValue(),t))}_syncPendingControls(){let t=this._reduceChildren(false,(e,c)=>c._syncPendingControls()?true:e);return t&&this.updateValueAndValidity({onlySelf:true}),t}_forEachChild(t){Object.keys(this.controls).forEach(e=>{let c=this.controls[e];c&&t(c,e);});}_setUpControls(){this._forEachChild(t=>{t.setParent(this),t._registerOnCollectionChange(this._onCollectionChange);});}_updateValue(){this.value=this._reduceValue();}_anyControls(t){for(let[e,c]of Object.entries(this.controls))if(this.contains(e)&&t(c))return true;return false}_reduceValue(){let t={};return this._reduceChildren(t,(e,c,l)=>((c.enabled||this.disabled)&&(e[l]=c.value),e))}_reduceChildren(t,e){let c=t;return this._forEachChild((l,n)=>{c=e(c,l,n);}),c}_allControlsDisabled(){for(let t of Object.keys(this.controls))if(this.controls[t].enabled)return false;return Object.keys(this.controls).length>0||this.disabled}_find(t){return G0(this.controls,t)?this.controls[t]:null}};var g5={provide:a1,useExisting:Ha$1(()=>z5)},M1=Promise.resolve(),z5=(()=>{class a extends a1{callSetDisabledState;get submitted(){return J(this.submittedReactive)}_submitted=gs(()=>this.submittedReactive());submittedReactive=U(false);_directives=new Set;form;ngSubmit=new Ae$1;options;constructor(e,c,l){super(),this.callSetDisabledState=l,this.form=new e4({},Q4(e),Z4(c));}ngAfterViewInit(){this._setUpdateStrategy();}get formDirective(){return this}get control(){return this.form}get path(){return []}get controls(){return this.form.controls}addControl(e){M1.then(()=>{let c=this._findContainer(e.path);e.control=c.registerControl(e.name,e.control),e._setupWithForm(this.callSetDisabledState),e.control.updateValueAndValidity({emitEvent:false}),this._directives.add(e);});}getControl(e){return this.form.get(e.path)}removeControl(e){M1.then(()=>{this._findContainer(e.path)?.removeControl(e.name),this._directives.delete(e);});}addFormGroup(e){M1.then(()=>{let c=this._findContainer(e.path),l=new e4({});m5(l,e),c.registerControl(e.name,l),l.updateValueAndValidity({emitEvent:false});});}removeFormGroup(e){M1.then(()=>{this._findContainer(e.path)?.removeControl?.(e.name);});}getFormGroup(e){return this.form.get(e.path)}updateModel(e,c){M1.then(()=>{this.form.get(e.path).setValue(c);});}setValue(e){this.control.setValue(e);}onSubmit(e){return this.submittedReactive.set(true),h5(this.form,this._directives),this.ngSubmit.emit(e),this.form._events.next(new j4(this.control)),e?.target?.method==="dialog"}onReset(){this.resetForm();}resetForm(e=void 0){this.form.reset(e),this.submittedReactive.set(false);}_setUpdateStrategy(){this.options&&this.options.updateOn!=null&&(this.form._updateOn=this.options.updateOn);}_findContainer(e){return e.pop(),e.length?this.form.get(e):this.form}static \u0275fac=function(c){return new(c||a)(fe$1(a4,10),fe$1(K4,10),fe$1(C1,8))};static \u0275dir=xt$1({type:a,selectors:[["form",3,"ngNoForm","",3,"formGroup","",3,"formArray",""],["ng-form"],["","ngForm",""]],hostBindings:function(c,l){c&1&&cu("submit",function(i){return l.onSubmit(i)})("reset",function(){return l.onReset()});},inputs:{options:[0,"ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],standalone:false,features:[nN([g5]),BE]})}return a})();function A0(a,t){let e=a.indexOf(t);e>-1&&a.splice(e,1);}function D0(a){return typeof a=="object"&&a!==null&&Object.keys(a).length===2&&"value"in a&&"disabled"in a}var M5=class extends Q1{defaultValue=null;_onChange=[];_pendingValue;_pendingChange=false;constructor(t=null,e,c){super(j0(e),W0(c,e)),this._applyFormState(t),this._setUpdateStrategy(e),this._initObservables(),this.updateValueAndValidity({onlySelf:true,emitEvent:!!this.asyncValidator}),c4(e)&&(e.nonNullable||e.initialValueIsDefault)&&(D0(t)?this.defaultValue=t.value:this.defaultValue=t);}setValue(t,e={}){J(()=>{this.value=this._pendingValue=t,this._onChange.length&&e.emitModelToViewChange!==false&&this._onChange.forEach(c=>c(this.value,e.emitViewToModelChange!==false)),this.updateValueAndValidity(e);});}patchValue(t,e={}){this.setValue(t,e);}reset(t=this.defaultValue,e={}){this._applyFormState(t),this.markAsPristine(e),this.markAsUntouched(e),this.setValue(this.value,e),e.overwriteDefaultValue&&(this.defaultValue=this.value),this._pendingChange=false,e?.emitEvent!==false&&this._events.next(new c1(this));}_updateValue(){}_anyControls(t){return false}_allControlsDisabled(){return this.disabled}registerOnChange(t){this._onChange.push(t);}_unregisterOnChange(t){A0(this._onChange,t);}registerOnDisabledChange(t){this._onDisabledChange.push(t);}_unregisterOnDisabledChange(t){A0(this._onDisabledChange,t);}_forEachChild(t){}_syncPendingControls(){return this.updateOn==="submit"&&(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),this._pendingChange)?(this.setValue(this._pendingValue,{onlySelf:true,emitModelToViewChange:false}),true):false}_applyFormState(t){D0(t)?(this.value=this._pendingValue=t.value,t.disabled?this.disable({onlySelf:true,emitEvent:false}):this.enable({onlySelf:true,emitEvent:false})):this.value=this._pendingValue=t;}};var b5={provide:v2,useExisting:Ha$1(()=>L5)},_0=Promise.resolve(),L5=(()=>{class a extends v2{_changeDetectorRef;callSetDisabledState;control=new M5;static ngAcceptInputType_isDisabled;_registered=false;viewModel;name="";isDisabled;model;options;update=new Ae$1;constructor(e,c,l,n,i,r,o,f){super(o,f,n),this._changeDetectorRef=i,this.callSetDisabledState=r,this._parent=e,this._setValidators(c),this._setAsyncValidators(l);}ngOnChanges(e){if(this._checkForErrors(),!this._registered||"name"in e){if(this._registered&&(this._checkName(),this.formDirective)){let c=e.name.previousValue;this.formDirective.removeControl({name:c,path:this._getPath(c)});}this._setUpControl();}"isDisabled"in e&&this._updateDisabled(e),K0(e,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model);}ngOnDestroy(){this.formDirective?.removeControl(this);}\u0275ngControlCreate(e){super.ngControlCreate(e);}\u0275ngControlUpdate(e){super.ngControlUpdate(e,false);}get shouldBindRequired(){return false}get path(){return this._getPath(this.name)}get formDirective(){return this._parent?this._parent.formDirective:null}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e);}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=true;}_setUpdateStrategy(){this.options&&this.options.updateOn!=null&&(this.control._updateOn=this.options.updateOn);}_isStandalone(){return !this._parent||!!(this.options&&this.options.standalone)}_setUpStandalone(){this.isCustomControlBased?this.setupCustomControl():(this.valueAccessor??=this.selectedValueAccessor,G4(this.control,this,this.callSetDisabledState)),this.control.updateValueAndValidity({emitEvent:false});}_setupWithForm(e){this.isCustomControlBased?this.setupCustomControl():(this.valueAccessor??=this.selectedValueAccessor,G4(this.control,this,e));}_checkForErrors(){this._checkName();}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),!this._isStandalone()&&this.name;}_updateValue(e){_0.then(()=>{this.control.setValue(e,{emitViewToModelChange:false}),this._changeDetectorRef?.markForCheck();});}_updateDisabled(e){let c=e.isDisabled.currentValue,l=c!==0&&yn(c);_0.then(()=>{l&&!this.control.disabled?this.control.disable():!l&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck();});}_getPath(e){return this._parent?r5(e,this._parent):[e]}static \u0275fac=function(c){return new(c||a)(fe$1(a1,9),fe$1(a4,10),fe$1(K4,10),fe$1(q4,10),fe$1(Hr$1,8),fe$1(C1,8),fe$1(Ie$1,8),fe$1(jr,8))};static \u0275dir=xt$1({type:a,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"],options:[0,"ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],standalone:false,features:[nN([b5,Q0]),BE,Yt$1,F0$1(null)]})}return a})();var ln=(()=>{class a{static \u0275fac=function(c){return new(c||a)};static \u0275dir=xt$1({type:a,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""],standalone:false})}return a})();var Z0=new I$1(""),C5={provide:v2,useExisting:Ha$1(()=>y5)},y5=(()=>{class a extends v2{_ngModelWarningConfig;callSetDisabledState;viewModel;form;set isDisabled(e){}model;update=new Ae$1;static _ngModelWarningSentOnce=false;_ngModelWarningSent=false;constructor(e,c,l,n,i,r,o){super(o,r,l),this._ngModelWarningConfig=n,this.callSetDisabledState=i,this._setValidators(e),this._setAsyncValidators(c);}ngOnChanges(e){if(this._isControlChanged(e)){let c=e.form.previousValue;c&&(k0(c,this,false),this.removeParseErrorsValidator(c)),this.isCustomControlBased?this.setupCustomControl():(this.valueAccessor??=this.selectedValueAccessor,G4(this.form,this,this.callSetDisabledState)),this.form.updateValueAndValidity({emitEvent:false});}K0(e,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model);}ngOnDestroy(){this.form&&k0(this.form,this,false);}get path(){return []}get control(){return this.form}viewToModelUpdate(e){this.viewModel=e,this.update.emit(e);}_isControlChanged(e){return e.hasOwnProperty("form")}\u0275ngControlCreate(e){super.ngControlCreate(e);}\u0275ngControlUpdate(e){super.ngControlUpdate(e,true);}static \u0275fac=function(c){return new(c||a)(fe$1(a4,10),fe$1(K4,10),fe$1(q4,10),fe$1(Z0,8),fe$1(C1,8),fe$1(jr,8),fe$1(Ie$1,8))};static \u0275dir=xt$1({type:a,selectors:[["","formControl",""]],inputs:{form:[0,"formControl","form"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],standalone:false,features:[nN([C5,Q0]),BE,Yt$1,F0$1(null)]})}return a})();var J0=(()=>{class a{static \u0275fac=function(c){return new(c||a)};static \u0275mod=mn({type:a});static \u0275inj=$t$1({})}return a})();var nn=(()=>{class a{static withConfig(e){return {ngModule:a,providers:[{provide:C1,useValue:e.callSetDisabledState??t4}]}}static \u0275fac=function(c){return new(c||a)};static \u0275mod=mn({type:a});static \u0275inj=$t$1({imports:[J0]})}return a})(),rn=(()=>{class a{static withConfig(e){return {ngModule:a,providers:[{provide:Z0,useValue:e.warnOnNgModelWithFormControl??"always"},{provide:C1,useValue:e.callSetDisabledState??t4}]}}static \u0275fac=function(c){return new(c||a)};static \u0275mod=mn({type:a});static \u0275inj=$t$1({imports:[J0]})}return a})();function i3(a,t){(t==null||t>a.length)&&(t=a.length);for(var e=0,c=Array(t);e=a.length?{done:true}:{done:false,value:a[c++]}},e:function(o){throw o},f:l}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var n,i=true,r=false;return {s:function(){e=e.call(a);},n:function(){var o=e.next();return i=o.done,o},e:function(o){r=true,n=o;},f:function(){try{i||e.return==null||e.return();}finally{if(r)throw n}}}}function y(a,t,e){return (t=F6(t))in a?Object.defineProperty(a,t,{value:e,enumerable:true,configurable:true,writable:true}):a[t]=e,a}function k5(a){if(typeof Symbol<"u"&&a[Symbol.iterator]!=null||a["@@iterator"]!=null)return Array.from(a)}function A5(a,t){var e=a==null?null:typeof Symbol<"u"&&a[Symbol.iterator]||a["@@iterator"];if(e!=null){var c,l,n,i,r=[],o=true,f=false;try{if(n=(e=e.call(a)).next,t===0){if(Object(e)!==e)return;o=!1;}else for(;!(o=(c=n.call(e)).done)&&(r.push(c.value),r.length!==t);o=!0);}catch(d){f=true,l=d;}finally{try{if(!o&&e.return!=null&&(i=e.return(),Object(i)!==i))return}finally{if(f)throw l}}return r}}function D5(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function _5(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function a6(a,t){var e=Object.keys(a);if(Object.getOwnPropertySymbols){var c=Object.getOwnPropertySymbols(a);t&&(c=c.filter(function(l){return Object.getOwnPropertyDescriptor(a,l).enumerable})),e.push.apply(e,c);}return e}function m(a){for(var t=1;t-1;l--){var n=e[l],i=(n.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(i)>-1&&(c=n);}return O.head.insertBefore(t,c),a}}var xa="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";function d6(){for(var a=12,t="";a-- >0;)t+=xa[Math.random()*62|0];return t}function i1(a){for(var t=[],e=(a||[]).length>>>0;e--;)t[e]=a[e];return t}function N3(a){return a.classList?i1(a.classList):(a.getAttribute("class")||"").split(" ").filter(function(t){return t})}function m8(a){return "".concat(a).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function Sa(a){return Object.keys(a||{}).reduce(function(t,e){return t+"".concat(e,'="').concat(m8(a[e]),'" ')},"").trim()}function m4(a){return Object.keys(a||{}).reduce(function(t,e){return t+"".concat(e,": ").concat(a[e].trim(),";")},"")}function w3(a){return a.size!==g2.size||a.x!==g2.x||a.y!==g2.y||a.rotate!==g2.rotate||a.flipX||a.flipY}function Na(a){var t=a.transform,e=a.containerWidth,c=a.iconWidth,l={transform:"translate(".concat(e/2," 256)")},n="translate(".concat(t.x*32,", ").concat(t.y*32,") "),i="scale(".concat(t.size/16*(t.flipX?-1:1),", ").concat(t.size/16*(t.flipY?-1:1),") "),r="rotate(".concat(t.rotate," 0 0)"),o={transform:"".concat(n," ").concat(i," ").concat(r)},f={transform:"translate(".concat(c/2*-1," -256)")};return {outer:l,inner:o,path:f}}function wa(a){var t=a.transform,e=a.width,c=e===void 0?o3:e,l=a.height,n=l===void 0?o3:l,o="";return B6?o+="translate(".concat(t.x/_2-c/2,"em, ").concat(t.y/_2-n/2,"em) "):o+="translate(calc(-50% + ".concat(t.x/_2,"em), calc(-50% + ").concat(t.y/_2,"em)) "),o+="scale(".concat(t.size/_2*(t.flipX?-1:1),", ").concat(t.size/_2*(t.flipY?-1:1),") "),o+="rotate(".concat(t.rotate,"deg) "),o}var ka=`:root, :host { + --fa-font-solid: normal 900 1em/1 'Font Awesome 7 Free'; + --fa-font-regular: normal 400 1em/1 'Font Awesome 7 Free'; + --fa-font-light: normal 300 1em/1 'Font Awesome 7 Pro'; + --fa-font-thin: normal 100 1em/1 'Font Awesome 7 Pro'; + --fa-font-duotone: normal 900 1em/1 'Font Awesome 7 Duotone'; + --fa-font-duotone-regular: normal 400 1em/1 'Font Awesome 7 Duotone'; + --fa-font-duotone-light: normal 300 1em/1 'Font Awesome 7 Duotone'; + --fa-font-duotone-thin: normal 100 1em/1 'Font Awesome 7 Duotone'; + --fa-font-brands: normal 400 1em/1 'Font Awesome 7 Brands'; + --fa-font-sharp-solid: normal 900 1em/1 'Font Awesome 7 Sharp'; + --fa-font-sharp-regular: normal 400 1em/1 'Font Awesome 7 Sharp'; + --fa-font-sharp-light: normal 300 1em/1 'Font Awesome 7 Sharp'; + --fa-font-sharp-thin: normal 100 1em/1 'Font Awesome 7 Sharp'; + --fa-font-sharp-duotone-solid: normal 900 1em/1 'Font Awesome 7 Sharp Duotone'; + --fa-font-sharp-duotone-regular: normal 400 1em/1 'Font Awesome 7 Sharp Duotone'; + --fa-font-sharp-duotone-light: normal 300 1em/1 'Font Awesome 7 Sharp Duotone'; + --fa-font-sharp-duotone-thin: normal 100 1em/1 'Font Awesome 7 Sharp Duotone'; + --fa-font-slab-regular: normal 400 1em/1 'Font Awesome 7 Slab'; + --fa-font-slab-press-regular: normal 400 1em/1 'Font Awesome 7 Slab Press'; + --fa-font-whiteboard-semibold: normal 600 1em/1 'Font Awesome 7 Whiteboard'; + --fa-font-thumbprint-light: normal 300 1em/1 'Font Awesome 7 Thumbprint'; + --fa-font-notdog-solid: normal 900 1em/1 'Font Awesome 7 Notdog'; + --fa-font-notdog-duo-solid: normal 900 1em/1 'Font Awesome 7 Notdog Duo'; + --fa-font-etch-solid: normal 900 1em/1 'Font Awesome 7 Etch'; + --fa-font-graphite-thin: normal 100 1em/1 'Font Awesome 7 Graphite'; + --fa-font-jelly-regular: normal 400 1em/1 'Font Awesome 7 Jelly'; + --fa-font-jelly-fill-regular: normal 400 1em/1 'Font Awesome 7 Jelly Fill'; + --fa-font-jelly-duo-regular: normal 400 1em/1 'Font Awesome 7 Jelly Duo'; + --fa-font-chisel-regular: normal 400 1em/1 'Font Awesome 7 Chisel'; + --fa-font-utility-semibold: normal 600 1em/1 'Font Awesome 7 Utility'; + --fa-font-utility-duo-semibold: normal 600 1em/1 'Font Awesome 7 Utility Duo'; + --fa-font-utility-fill-semibold: normal 600 1em/1 'Font Awesome 7 Utility Fill'; +} + +.svg-inline--fa { + box-sizing: content-box; + display: var(--fa-display, inline-block); + height: 1em; + overflow: visible; + vertical-align: -0.125em; + width: var(--fa-width, 1.25em); +} +.svg-inline--fa.fa-2xs { + vertical-align: 0.1em; +} +.svg-inline--fa.fa-xs { + vertical-align: 0em; +} +.svg-inline--fa.fa-sm { + vertical-align: -0.0714285714em; +} +.svg-inline--fa.fa-lg { + vertical-align: -0.2em; +} +.svg-inline--fa.fa-xl { + vertical-align: -0.25em; +} +.svg-inline--fa.fa-2xl { + vertical-align: -0.3125em; +} +.svg-inline--fa.fa-pull-left, +.svg-inline--fa .fa-pull-start { + float: inline-start; + margin-inline-end: var(--fa-pull-margin, 0.3em); +} +.svg-inline--fa.fa-pull-right, +.svg-inline--fa .fa-pull-end { + float: inline-end; + margin-inline-start: var(--fa-pull-margin, 0.3em); +} +.svg-inline--fa.fa-li { + width: var(--fa-li-width, 2em); + inset-inline-start: calc(-1 * var(--fa-li-width, 2em)); + inset-block-start: 0.25em; /* syncing vertical alignment with Web Font rendering */ +} + +.fa-layers-counter, .fa-layers-text { + display: inline-block; + position: absolute; + text-align: center; +} + +.fa-layers { + display: inline-block; + height: 1em; + position: relative; + text-align: center; + vertical-align: -0.125em; + width: var(--fa-width, 1.25em); +} +.fa-layers .svg-inline--fa { + inset: 0; + margin: auto; + position: absolute; + transform-origin: center center; +} + +.fa-layers-text { + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + transform-origin: center center; +} + +.fa-layers-counter { + background-color: var(--fa-counter-background-color, #ff253a); + border-radius: var(--fa-counter-border-radius, 1em); + box-sizing: border-box; + color: var(--fa-inverse, #fff); + line-height: var(--fa-counter-line-height, 1); + max-width: var(--fa-counter-max-width, 5em); + min-width: var(--fa-counter-min-width, 1.5em); + overflow: hidden; + padding: var(--fa-counter-padding, 0.25em 0.5em); + right: var(--fa-right, 0); + text-overflow: ellipsis; + top: var(--fa-top, 0); + transform: scale(var(--fa-counter-scale, 0.25)); + transform-origin: top right; +} + +.fa-layers-bottom-right { + bottom: var(--fa-bottom, 0); + right: var(--fa-right, 0); + top: auto; + transform: scale(var(--fa-layers-scale, 0.25)); + transform-origin: bottom right; +} + +.fa-layers-bottom-left { + bottom: var(--fa-bottom, 0); + left: var(--fa-left, 0); + right: auto; + top: auto; + transform: scale(var(--fa-layers-scale, 0.25)); + transform-origin: bottom left; +} + +.fa-layers-top-right { + top: var(--fa-top, 0); + right: var(--fa-right, 0); + transform: scale(var(--fa-layers-scale, 0.25)); + transform-origin: top right; +} + +.fa-layers-top-left { + left: var(--fa-left, 0); + right: auto; + top: var(--fa-top, 0); + transform: scale(var(--fa-layers-scale, 0.25)); + transform-origin: top left; +} + +.fa-1x { + font-size: 1em; +} + +.fa-2x { + font-size: 2em; +} + +.fa-3x { + font-size: 3em; +} + +.fa-4x { + font-size: 4em; +} + +.fa-5x { + font-size: 5em; +} + +.fa-6x { + font-size: 6em; +} + +.fa-7x { + font-size: 7em; +} + +.fa-8x { + font-size: 8em; +} + +.fa-9x { + font-size: 9em; +} + +.fa-10x { + font-size: 10em; +} + +.fa-2xs { + font-size: calc(10 / 16 * 1em); /* converts a 10px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 10 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 10 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-xs { + font-size: calc(12 / 16 * 1em); /* converts a 12px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 12 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 12 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-sm { + font-size: calc(14 / 16 * 1em); /* converts a 14px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 14 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 14 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-lg { + font-size: calc(20 / 16 * 1em); /* converts a 20px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 20 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 20 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-xl { + font-size: calc(24 / 16 * 1em); /* converts a 24px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 24 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 24 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-2xl { + font-size: calc(32 / 16 * 1em); /* converts a 32px size into an em-based value that's relative to the scale's 16px base */ + line-height: calc(1 / 32 * 1em); /* sets the line-height of the icon back to that of it's parent */ + vertical-align: calc((6 / 32 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */ +} + +.fa-width-auto { + --fa-width: auto; +} + +.fa-fw, +.fa-width-fixed { + --fa-width: 1.25em; +} + +.fa-ul { + list-style-type: none; + margin-inline-start: var(--fa-li-margin, 2.5em); + padding-inline-start: 0; +} +.fa-ul > li { + position: relative; +} + +.fa-li { + inset-inline-start: calc(-1 * var(--fa-li-width, 2em)); + position: absolute; + text-align: center; + width: var(--fa-li-width, 2em); + line-height: inherit; +} + +/* Heads Up: Bordered Icons will not be supported in the future! + - This feature will be deprecated in the next major release of Font Awesome (v8)! + - You may continue to use it in this version *v7), but it will not be supported in Font Awesome v8. +*/ +/* Notes: +* --@{v.$css-prefix}-border-width = 1/16 by default (to render as ~1px based on a 16px default font-size) +* --@{v.$css-prefix}-border-padding = + ** 3/16 for vertical padding (to give ~2px of vertical whitespace around an icon considering it's vertical alignment) + ** 4/16 for horizontal padding (to give ~4px of horizontal whitespace around an icon) +*/ +.fa-border { + border-color: var(--fa-border-color, #eee); + border-radius: var(--fa-border-radius, 0.1em); + border-style: var(--fa-border-style, solid); + border-width: var(--fa-border-width, 0.0625em); + box-sizing: var(--fa-border-box-sizing, content-box); + padding: var(--fa-border-padding, 0.1875em 0.25em); +} + +.fa-pull-left, +.fa-pull-start { + float: inline-start; + margin-inline-end: var(--fa-pull-margin, 0.3em); +} + +.fa-pull-right, +.fa-pull-end { + float: inline-end; + margin-inline-start: var(--fa-pull-margin, 0.3em); +} + +.fa-beat { + animation-name: fa-beat; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, ease-in-out); +} + +.fa-bounce { + animation-name: fa-bounce; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); +} + +.fa-fade { + animation-name: fa-fade; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); +} + +.fa-beat-fade { + animation-name: fa-beat-fade; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); +} + +.fa-flip { + animation-name: fa-flip; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, ease-in-out); +} + +.fa-shake { + animation-name: fa-shake; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, linear); +} + +.fa-spin { + animation-name: fa-spin; + animation-delay: var(--fa-animation-delay, 0s); + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 2s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, linear); +} + +.fa-spin-reverse { + --fa-animation-direction: reverse; +} + +.fa-pulse, +.fa-spin-pulse { + animation-name: fa-spin; + animation-direction: var(--fa-animation-direction, normal); + animation-duration: var(--fa-animation-duration, 1s); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-timing-function: var(--fa-animation-timing, steps(8)); +} + +@media (prefers-reduced-motion: reduce) { + .fa-beat, + .fa-bounce, + .fa-fade, + .fa-beat-fade, + .fa-flip, + .fa-pulse, + .fa-shake, + .fa-spin, + .fa-spin-pulse { + animation: none !important; + transition: none !important; + } +} +@keyframes fa-beat { + 0%, 90% { + transform: scale(1); + } + 45% { + transform: scale(var(--fa-beat-scale, 1.25)); + } +} +@keyframes fa-bounce { + 0% { + transform: scale(1, 1) translateY(0); + } + 10% { + transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); + } + 30% { + transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); + } + 50% { + transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); + } + 57% { + transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); + } + 64% { + transform: scale(1, 1) translateY(0); + } + 100% { + transform: scale(1, 1) translateY(0); + } +} +@keyframes fa-fade { + 50% { + opacity: var(--fa-fade-opacity, 0.4); + } +} +@keyframes fa-beat-fade { + 0%, 100% { + opacity: var(--fa-beat-fade-opacity, 0.4); + transform: scale(1); + } + 50% { + opacity: 1; + transform: scale(var(--fa-beat-fade-scale, 1.125)); + } +} +@keyframes fa-flip { + 50% { + transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); + } +} +@keyframes fa-shake { + 0% { + transform: rotate(-15deg); + } + 4% { + transform: rotate(15deg); + } + 8%, 24% { + transform: rotate(-18deg); + } + 12%, 28% { + transform: rotate(18deg); + } + 16% { + transform: rotate(-22deg); + } + 20% { + transform: rotate(22deg); + } + 32% { + transform: rotate(-12deg); + } + 36% { + transform: rotate(12deg); + } + 40%, 100% { + transform: rotate(0deg); + } +} +@keyframes fa-spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} +.fa-rotate-90 { + transform: rotate(90deg); +} + +.fa-rotate-180 { + transform: rotate(180deg); +} + +.fa-rotate-270 { + transform: rotate(270deg); +} + +.fa-flip-horizontal { + transform: scale(-1, 1); +} + +.fa-flip-vertical { + transform: scale(1, -1); +} + +.fa-flip-both, +.fa-flip-horizontal.fa-flip-vertical { + transform: scale(-1, -1); +} + +.fa-rotate-by { + transform: rotate(var(--fa-rotate-angle, 0)); +} + +.svg-inline--fa .fa-primary { + fill: var(--fa-primary-color, currentColor); + opacity: var(--fa-primary-opacity, 1); +} + +.svg-inline--fa .fa-secondary { + fill: var(--fa-secondary-color, currentColor); + opacity: var(--fa-secondary-opacity, 0.4); +} + +.svg-inline--fa.fa-swap-opacity .fa-primary { + opacity: var(--fa-secondary-opacity, 0.4); +} + +.svg-inline--fa.fa-swap-opacity .fa-secondary { + opacity: var(--fa-primary-opacity, 1); +} + +.svg-inline--fa mask .fa-primary, +.svg-inline--fa mask .fa-secondary { + fill: black; +} + +.svg-inline--fa.fa-inverse { + fill: var(--fa-inverse, #fff); +} + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2.5em; +} + +.fa-inverse { + color: var(--fa-inverse, #fff); +} + +.svg-inline--fa.fa-stack-1x { + --fa-width: 1.25em; + height: 1em; + width: var(--fa-width); +} +.svg-inline--fa.fa-stack-2x { + --fa-width: 2.5em; + height: 2em; + width: var(--fa-width); +} + +.fa-stack-1x, +.fa-stack-2x { + inset: 0; + margin: auto; + position: absolute; + z-index: var(--fa-stack-z-index, auto); +}`;function p8(){var a=i8,t=r8,e=M.cssPrefix,c=M.replacementClass,l=ka;if(e!==a||c!==t){var n=new RegExp("\\.".concat(a,"\\-"),"g"),i=new RegExp("\\--".concat(a,"\\-"),"g"),r=new RegExp("\\.".concat(t),"g");l=l.replace(n,".".concat(e,"-")).replace(i,"--".concat(e,"-")).replace(r,".".concat(c));}return l}var u6=false;function c3(){M.autoAddCss&&!u6&&(ya(p8()),u6=true);}var Aa={mixout:function(){return {dom:{css:p8,insertCss:c3}}},hooks:function(){return {beforeDOMElementCreation:function(){c3();},beforeI2svg:function(){c3();}}}},x2=F2||{};x2[y2]||(x2[y2]={});x2[y2].styles||(x2[y2].styles={});x2[y2].hooks||(x2[y2].hooks={});x2[y2].shims||(x2[y2].shims=[]);var u2=x2[y2],h8=[],v8=function(){O.removeEventListener("DOMContentLoaded",v8),f4=1,h8.map(function(t){return t()});},f4=false;S2&&(f4=(O.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(O.readyState),f4||O.addEventListener("DOMContentLoaded",v8));function Da(a){S2&&(f4?setTimeout(a,0):h8.push(a));}function A1(a){var t=a.tag,e=a.attributes,c=e===void 0?{}:e,l=a.children,n=l===void 0?[]:l;return typeof a=="string"?m8(a):"<".concat(t," ").concat(Sa(c),">").concat(n.map(A1).join(""),"")}function m6(a,t,e){if(a&&a[t]&&a[t][e])return {prefix:t,iconName:e,icon:a[t][e]}}var t3=function(t,e,c,l){var n=Object.keys(t),i=n.length,r=e,o,f,d;for(c===void 0?(o=1,d=t[n[0]]):(o=0,d=c);o2&&arguments[2]!==void 0?arguments[2]:{},c=e.skipHooks,l=c===void 0?false:c,n=p6(t);typeof u2.hooks.addPack=="function"&&!l?u2.hooks.addPack(a,p6(t)):u2.styles[a]=m(m({},u2.styles[a]||{}),n),a==="fas"&&m3("fa",t);}var N1=u2.styles,Fa=u2.shims,z8=Object.keys(S3),Ta=z8.reduce(function(a,t){return a[t]=Object.keys(S3[t]),a},{}),k3=null,M8={},b8={},L8={},C8={},y8={};function Ea(a){return ~Ma.indexOf(a)}function Pa(a,t){var e=t.split("-"),c=e[0],l=e.slice(1).join("-");return c===a&&l!==""&&!Ea(l)?l:null}var x8=function(){var t=function(n){return t3(N1,function(i,r,o){return i[o]=t3(r,n,{}),i},{})};M8=t(function(l,n,i){if(n[3]&&(l[n[3]]=i),n[2]){var r=n[2].filter(function(o){return typeof o=="number"});r.forEach(function(o){l[o.toString(16)]=i;});}return l}),b8=t(function(l,n,i){if(l[i]=i,n[2]){var r=n[2].filter(function(o){return typeof o=="string"});r.forEach(function(o){l[o]=i;});}return l}),y8=t(function(l,n,i){var r=n[2];return l[i]=i,r.forEach(function(o){l[o]=i;}),l});var e="far"in N1||M.autoFetchSvg,c=t3(Fa,function(l,n){var i=n[0],r=n[1],o=n[2];return r==="far"&&!e&&(r="fas"),typeof i=="string"&&(l.names[i]={prefix:r,iconName:o}),typeof i=="number"&&(l.unicodes[i.toString(16)]={prefix:r,iconName:o}),l},{names:{},unicodes:{}});L8=c.names,C8=c.unicodes,k3=p4(M.styleDefault,{family:M.familyDefault});};Ca(function(a){k3=p4(a.styleDefault,{family:M.familyDefault});});x8();function A3(a,t){return (M8[a]||{})[t]}function Ba(a,t){return (b8[a]||{})[t]}function H2(a,t){return (y8[a]||{})[t]}function S8(a){return L8[a]||{prefix:null,iconName:null}}function Ia(a){var t=C8[a],e=A3("fas",a);return t||(e?{prefix:"fas",iconName:e}:null)||{prefix:null,iconName:null}}function T2(){return k3}var N8=function(){return {prefix:null,iconName:null,rest:[]}};function Va(a){var t=c2,e=z8.reduce(function(c,l){return c[l]="".concat(M.cssPrefix,"-").concat(l),c},{});return c8.forEach(function(c){(a.includes(e[c])||a.some(function(l){return Ta[c].includes(l)}))&&(t=c);}),t}function p4(a){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},e=t.family,c=e===void 0?c2:e,l=pa[c][a];if(c===w1&&!a)return "fad";var n=s6[c][a]||s6[c][l],i=a in u2.styles?a:null,r=n||i||null;return r}function Oa(a){var t=[],e=null;return a.forEach(function(c){var l=Pa(M.cssPrefix,c);l?e=l:c&&t.push(c);}),{iconName:e,rest:t}}function h6(a){return a.sort().filter(function(t,e,c){return c.indexOf(t)===e})}var v6=l8.concat(t8);function h4(a){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},e=t.skipLookups,c=e===void 0?false:e,l=null,n=h6(a.filter(function(v){return v6.includes(v)})),i=h6(a.filter(function(v){return !v6.includes(v)})),r=n.filter(function(v){return l=v,!V6.includes(v)}),o=u4(r,1),f=o[0],d=f===void 0?null:f,u=Va(n),g=m(m({},Oa(i)),{},{prefix:p4(d,{family:u})});return m(m(m({},g),Ua({values:a,family:u,styles:N1,config:M,canonical:g,givenPrefix:l})),Ra(c,l,g))}function Ra(a,t,e){var c=e.prefix,l=e.iconName;if(a||!c||!l)return {prefix:c,iconName:l};var n=t==="fa"?S8(l):{},i=H2(c,l);return l=n.iconName||i||l,c=n.prefix||c,c==="far"&&!N1.far&&N1.fas&&!M.autoFetchSvg&&(c="fas"),{prefix:c,iconName:l}}var Ha=c8.filter(function(a){return a!==c2||a!==w1}),$a=Object.keys(r3).filter(function(a){return a!==c2}).map(function(a){return Object.keys(r3[a])}).flat();function Ua(a){var t=a.values,e=a.family,c=a.canonical,l=a.givenPrefix,n=l===void 0?"":l,i=a.styles,r=i===void 0?{}:i,o=a.config,f=o===void 0?{}:o,d=e===w1,u=t.includes("fa-duotone")||t.includes("fad"),g=f.familyDefault==="duotone",v=c.prefix==="fad"||c.prefix==="fa-duotone";if(!d&&(u||g||v)&&(c.prefix="fad"),(t.includes("fa-brands")||t.includes("fab"))&&(c.prefix="fab"),!c.prefix&&Ha.includes(e)){var C=Object.keys(r).find(function(T){return $a.includes(T)});if(C||f.autoFetchSvg){var S=l7.get(e).defaultShortPrefixId;c.prefix=S,c.iconName=H2(c.prefix,c.iconName)||c.iconName;}}return (c.prefix==="fa"||n==="fa")&&(c.prefix=T2()||"fas"),c}var ja=(function(){function a(){N5(this,a),this.definitions={};}return w5(a,[{key:"add",value:function(){for(var e=this,c=arguments.length,l=new Array(c),n=0;n0&&d.forEach(function(u){typeof u=="string"&&(e[r][u]=f);}),e[r][o]=f;}),e}}])})(),g6=[],t1={},l1={},Wa=Object.keys(l1);function Ga(a,t){var e=t.mixoutsTo;return g6=a,t1={},Object.keys(l1).forEach(function(c){Wa.indexOf(c)===-1&&delete l1[c];}),g6.forEach(function(c){var l=c.mixout?c.mixout():{};if(Object.keys(l).forEach(function(i){typeof l[i]=="function"&&(e[i]=l[i]),s4(l[i])==="object"&&Object.keys(l[i]).forEach(function(r){e[i]||(e[i]={}),e[i][r]=l[i][r];});}),c.hooks){var n=c.hooks();Object.keys(n).forEach(function(i){t1[i]||(t1[i]=[]),t1[i].push(n[i]);});}c.provides&&c.provides(l1);}),e}function p3(a,t){for(var e=arguments.length,c=new Array(e>2?e-2:0),l=2;l1?t-1:0),c=1;c0&&arguments[0]!==void 0?arguments[0]:{};return S2?(U2("beforeI2svg",t),E2("pseudoElements2svg",t),E2("i2svg",t)):Promise.reject(new Error("Operation requires a DOM of some kind."))},watch:function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},e=t.autoReplaceSvgRoot;M.autoReplaceSvg===false&&(M.autoReplaceSvg=true),M.observeMutations=true,Da(function(){Ka({autoReplaceSvgRoot:e}),U2("watch",t);});}},Ya={icon:function(t){if(t===null)return null;if(s4(t)==="object"&&t.prefix&&t.iconName)return {prefix:t.prefix,iconName:H2(t.prefix,t.iconName)||t.iconName};if(Array.isArray(t)&&t.length===2){var e=t[1].indexOf("fa-")===0?t[1].slice(3):t[1],c=p4(t[0]);return {prefix:c,iconName:H2(c,e)||e}}if(typeof t=="string"&&(t.indexOf("".concat(M.cssPrefix,"-"))>-1||t.match(ha))){var l=h4(t.split(" "),{skipLookups:true});return {prefix:l.prefix||T2(),iconName:H2(l.prefix,l.iconName)||l.iconName}}if(typeof t=="string"){var n=T2();return {prefix:n,iconName:H2(n,t)||t}}}},s2={noAuto:qa,config:M,dom:Xa,parse:Ya,library:w8,findIconDefinition:h3,toHtml:A1},Ka=function(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},e=t.autoReplaceSvgRoot,c=e===void 0?O:e;(Object.keys(u2.styles).length>0||M.autoFetchSvg)&&S2&&M.autoReplaceSvg&&s2.dom.i2svg({node:c});};function v4(a,t){return Object.defineProperty(a,"abstract",{get:t}),Object.defineProperty(a,"html",{get:function(){return a.abstract.map(function(c){return A1(c)})}}),Object.defineProperty(a,"node",{get:function(){if(S2){var c=O.createElement("div");return c.innerHTML=a.html,c.children}}}),a}function Qa(a){var t=a.children,e=a.main,c=a.mask,l=a.attributes,n=a.styles,i=a.transform;if(w3(i)&&e.found&&!c.found){var r=e.width,o=e.height,f={x:r/o/2,y:.5};l.style=m4(m(m({},n),{},{"transform-origin":"".concat(f.x+i.x/16,"em ").concat(f.y+i.y/16,"em")}));}return [{tag:"svg",attributes:l,children:t}]}function Za(a){var t=a.prefix,e=a.iconName,c=a.children,l=a.attributes,n=a.symbol,i=n===true?"".concat(t,"-").concat(M.cssPrefix,"-").concat(e):n;return [{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:m(m({},l),{},{id:i}),children:c}]}]}function Ja(a){var t=["aria-label","aria-labelledby","title","role"];return t.some(function(e){return e in a})}function D3(a){var t=a.icons,e=t.main,c=t.mask,l=a.prefix,n=a.iconName,i=a.transform,r=a.symbol,o=a.maskId,f=a.extra,d=a.watchable,u=d===void 0?false:d,g=c.found?c:e,v=g.width,C=g.height,S=[M.replacementClass,n?"".concat(M.cssPrefix,"-").concat(n):""].filter(function(f2){return f.classes.indexOf(f2)===-1}).filter(function(f2){return f2!==""||!!f2}).concat(f.classes).join(" "),T={children:[],attributes:m(m({},f.attributes),{},{"data-prefix":l,"data-icon":n,class:S,role:f.attributes.role||"img",viewBox:"0 0 ".concat(v," ").concat(C)})};!Ja(f.attributes)&&!f.attributes["aria-hidden"]&&(T.attributes["aria-hidden"]="true"),u&&(T.attributes[$2]="");var U=m(m({},T),{},{prefix:l,iconName:n,main:e,mask:c,maskId:o,transform:i,symbol:r,styles:m({},f.styles)}),K=c.found&&e.found?E2("generateAbstractMask",U)||{children:[],attributes:{}}:E2("generateAbstractIcon",U)||{children:[],attributes:{}},G=K.children,z2=K.attributes;return U.children=G,U.attributes=z2,r?Za(U):Qa(U)}function z6(a){var t=a.content,e=a.width,c=a.height,l=a.transform,n=a.extra,i=a.watchable,r=i===void 0?false:i,o=m(m({},n.attributes),{},{class:n.classes.join(" ")});r&&(o[$2]="");var f=m({},n.styles);w3(l)&&(f.transform=wa({transform:l,width:e,height:c}),f["-webkit-transform"]=f.transform);var d=m4(f);d.length>0&&(o.style=d);var u=[];return u.push({tag:"span",attributes:o,children:[t]}),u}function ec(a){var t=a.content,e=a.extra,c=m(m({},e.attributes),{},{class:e.classes.join(" ")}),l=m4(e.styles);l.length>0&&(c.style=l);var n=[];return n.push({tag:"span",attributes:c,children:[t]}),n}var l3=u2.styles;function v3(a){var t=a[0],e=a[1],c=a.slice(4),l=u4(c,1),n=l[0],i=null;return Array.isArray(n)?i={tag:"g",attributes:{class:"".concat(M.cssPrefix,"-").concat(a3.GROUP)},children:[{tag:"path",attributes:{class:"".concat(M.cssPrefix,"-").concat(a3.SECONDARY),fill:"currentColor",d:n[0]}},{tag:"path",attributes:{class:"".concat(M.cssPrefix,"-").concat(a3.PRIMARY),fill:"currentColor",d:n[1]}}]}:i={tag:"path",attributes:{fill:"currentColor",d:n}},{found:true,width:t,height:e,icon:i}}var ac={found:false,width:512,height:512};function cc(a,t){!s8&&!M.showMissingIcons&&a&&console.error('Icon with name "'.concat(a,'" and prefix "').concat(t,'" is missing.'));}function g3(a,t){var e=t;return t==="fa"&&M.styleDefault!==null&&(t=T2()),new Promise(function(c,l){if(e==="fa"){var n=S8(a)||{};a=n.iconName||a,t=n.prefix||t;}if(a&&t&&l3[t]&&l3[t][a]){var i=l3[t][a];return c(v3(i))}cc(a,t),c(m(m({},ac),{},{icon:M.showMissingIcons&&a?E2("missingIconAbstract")||{}:{}}));})}var M6=function(){},z3=M.measurePerformance&&l4&&l4.mark&&l4.measure?l4:{mark:M6,measure:M6},y1='FA "7.2.0"',tc=function(t){return z3.mark("".concat(y1," ").concat(t," begins")),function(){return k8(t)}},k8=function(t){z3.mark("".concat(y1," ").concat(t," ends")),z3.measure("".concat(y1," ").concat(t),"".concat(y1," ").concat(t," begins"),"".concat(y1," ").concat(t," ends"));},_3={begin:tc,end:k8},r4=function(){};function b6(a){var t=a.getAttribute?a.getAttribute($2):null;return typeof t=="string"}function lc(a){var t=a.getAttribute?a.getAttribute(y3):null,e=a.getAttribute?a.getAttribute(x3):null;return t&&e}function nc(a){return a&&a.classList&&a.classList.contains&&a.classList.contains(M.replacementClass)}function ic(){if(M.autoReplaceSvg===true)return o4.replace;var a=o4[M.autoReplaceSvg];return a||o4.replace}function rc(a){return O.createElementNS("http://www.w3.org/2000/svg",a)}function oc(a){return O.createElement(a)}function A8(a){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},e=t.ceFn,c=e===void 0?a.tag==="svg"?rc:oc:e;if(typeof a=="string")return O.createTextNode(a);var l=c(a.tag);Object.keys(a.attributes||[]).forEach(function(i){l.setAttribute(i,a.attributes[i]);});var n=a.children||[];return n.forEach(function(i){l.appendChild(A8(i,{ceFn:c}));}),l}function sc(a){var t=" ".concat(a.outerHTML," ");return t="".concat(t,"Font Awesome fontawesome.com "),t}var o4={replace:function(t){var e=t[0];if(e.parentNode)if(t[1].forEach(function(l){e.parentNode.insertBefore(A8(l),e);}),e.getAttribute($2)===null&&M.keepOriginalSource){var c=O.createComment(sc(e));e.parentNode.replaceChild(c,e);}else e.remove();},nest:function(t){var e=t[0],c=t[1];if(~N3(e).indexOf(M.replacementClass))return o4.replace(t);var l=new RegExp("".concat(M.cssPrefix,"-.*"));if(delete c[0].attributes.id,c[0].attributes.class){var n=c[0].attributes.class.split(" ").reduce(function(r,o){return o===M.replacementClass||o.match(l)?r.toSvg.push(o):r.toNode.push(o),r},{toNode:[],toSvg:[]});c[0].attributes.class=n.toSvg.join(" "),n.toNode.length===0?e.removeAttribute("class"):e.setAttribute("class",n.toNode.join(" "));}var i=c.map(function(r){return A1(r)}).join(` +`);e.setAttribute($2,""),e.innerHTML=i;}};function L6(a){a();}function D8(a,t){var e=typeof t=="function"?t:r4;if(a.length===0)e();else {var c=L6;M.mutateApproach===ua&&(c=F2.requestAnimationFrame||L6),c(function(){var l=ic(),n=_3.begin("mutate");a.map(l),n(),e();});}}var F3=false;function _8(){F3=true;}function M3(){F3=false;}var d4=null;function C6(a){if(n6&&M.observeMutations){var t=a.treeCallback,e=t===void 0?r4:t,c=a.nodeCallback,l=c===void 0?r4:c,n=a.pseudoElementsCallback,i=n===void 0?r4:n,r=a.observeMutationsRoot,o=r===void 0?O:r;d4=new n6(function(f){if(!F3){var d=T2();i1(f).forEach(function(u){if(u.type==="childList"&&u.addedNodes.length>0&&!b6(u.addedNodes[0])&&(M.searchPseudoElements&&i(u.target),e(u.target)),u.type==="attributes"&&u.target.parentNode&&M.searchPseudoElements&&i([u.target],true),u.type==="attributes"&&b6(u.target)&&~za.indexOf(u.attributeName))if(u.attributeName==="class"&&lc(u.target)){var g=h4(N3(u.target)),v=g.prefix,C=g.iconName;u.target.setAttribute(y3,v||d),C&&u.target.setAttribute(x3,C);}else nc(u.target)&&l(u.target);});}}),S2&&d4.observe(o,{childList:true,attributes:true,characterData:true,subtree:true});}}function fc(){d4&&d4.disconnect();}function dc(a){var t=a.getAttribute("style"),e=[];return t&&(e=t.split(";").reduce(function(c,l){var n=l.split(":"),i=n[0],r=n.slice(1);return i&&r.length>0&&(c[i]=r.join(":").trim()),c},{})),e}function uc(a){var t=a.getAttribute("data-prefix"),e=a.getAttribute("data-icon"),c=a.innerText!==void 0?a.innerText.trim():"",l=h4(N3(a));return l.prefix||(l.prefix=T2()),t&&e&&(l.prefix=t,l.iconName=e),l.iconName&&l.prefix||(l.prefix&&c.length>0&&(l.iconName=Ba(l.prefix,a.innerText)||A3(l.prefix,g8(a.innerText))),!l.iconName&&M.autoFetchSvg&&a.firstChild&&a.firstChild.nodeType===Node.TEXT_NODE&&(l.iconName=a.firstChild.data)),l}function mc(a){var t=i1(a.attributes).reduce(function(e,c){return e.name!=="class"&&e.name!=="style"&&(e[c.name]=c.value),e},{});return t}function pc(){return {iconName:null,prefix:null,transform:g2,symbol:false,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}function y6(a){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{styleParser:true},e=uc(a),c=e.iconName,l=e.prefix,n=e.rest,i=mc(a),r=p3("parseNodeAttributes",{},a),o=t.styleParser?dc(a):[];return m({iconName:c,prefix:l,transform:g2,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:false,extra:{classes:n,styles:o,attributes:i}},r)}var hc=u2.styles;function F8(a){var t=M.autoReplaceSvg==="nest"?y6(a,{styleParser:false}):y6(a);return ~t.extra.classes.indexOf(d8)?E2("generateLayersText",a,t):E2("generateSvgReplacementMutation",a,t)}function vc(){return [].concat(m2(t8),m2(l8))}function x6(a){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;if(!S2)return Promise.resolve();var e=O.documentElement.classList,c=function(u){return e.add("".concat(o6,"-").concat(u))},l=function(u){return e.remove("".concat(o6,"-").concat(u))},n=M.autoFetchSvg?vc():V6.concat(Object.keys(hc));n.includes("fa")||n.push("fa");var i=[".".concat(d8,":not([").concat($2,"])")].concat(n.map(function(d){return ".".concat(d,":not([").concat($2,"])")})).join(", ");if(i.length===0)return Promise.resolve();var r=[];try{r=i1(a.querySelectorAll(i));}catch{}if(r.length>0)c("pending"),l("complete");else return Promise.resolve();var o=_3.begin("onTree"),f=r.reduce(function(d,u){try{var g=F8(u);g&&d.push(g);}catch(v){s8||v.name==="MissingIcon"&&console.error(v);}return d},[]);return new Promise(function(d,u){Promise.all(f).then(function(g){D8(g,function(){c("active"),c("complete"),l("pending"),typeof t=="function"&&t(),o(),d();});}).catch(function(g){o(),u(g);});})}function gc(a){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:null;F8(a).then(function(e){e&&D8([e],t);});}function zc(a){return function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},c=(t||{}).icon?t:h3(t||{}),l=e.mask;return l&&(l=(l||{}).icon?l:h3(l||{})),a(c,m(m({},e),{},{mask:l}))}}var Mc=function(t){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},c=e.transform,l=c===void 0?g2:c,n=e.symbol,i=n===void 0?false:n,r=e.mask,o=r===void 0?null:r,f=e.maskId,d=f===void 0?null:f,u=e.classes,g=u===void 0?[]:u,v=e.attributes,C=v===void 0?{}:v,S=e.styles,T=S===void 0?{}:S;if(t){var U=t.prefix,K=t.iconName,G=t.icon;return v4(m({type:"icon"},t),function(){return U2("beforeDOMElementCreation",{iconDefinition:t,params:e}),D3({icons:{main:v3(G),mask:o?v3(o.icon):{found:false,width:null,height:null,icon:{}}},prefix:U,iconName:K,transform:m(m({},g2),l),symbol:i,maskId:d,extra:{attributes:C,styles:T,classes:g}})})}},bc={mixout:function(){return {icon:zc(Mc)}},hooks:function(){return {mutationObserverCallbacks:function(e){return e.treeCallback=x6,e.nodeCallback=gc,e}}},provides:function(t){t.i2svg=function(e){var c=e.node,l=c===void 0?O:c,n=e.callback,i=n===void 0?function(){}:n;return x6(l,i)},t.generateSvgReplacementMutation=function(e,c){var l=c.iconName,n=c.prefix,i=c.transform,r=c.symbol,o=c.mask,f=c.maskId,d=c.extra;return new Promise(function(u,g){Promise.all([g3(l,n),o.iconName?g3(o.iconName,o.prefix):Promise.resolve({found:false,width:512,height:512,icon:{}})]).then(function(v){var C=u4(v,2),S=C[0],T=C[1];u([e,D3({icons:{main:S,mask:T},prefix:n,iconName:l,transform:i,symbol:r,maskId:f,extra:d,watchable:true})]);}).catch(g);})},t.generateAbstractIcon=function(e){var c=e.children,l=e.attributes,n=e.main,i=e.transform,r=e.styles,o=m4(r);o.length>0&&(l.style=o);var f;return w3(i)&&(f=E2("generateAbstractTransformGrouping",{main:n,transform:i,containerWidth:n.width,iconWidth:n.width})),c.push(f||n.icon),{children:c,attributes:l}};}},Lc={mixout:function(){return {layer:function(e){var c=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},l=c.classes,n=l===void 0?[]:l;return v4({type:"layer"},function(){U2("beforeDOMElementCreation",{assembler:e,params:c});var i=[];return e(function(r){Array.isArray(r)?r.map(function(o){i=i.concat(o.abstract);}):i=i.concat(r.abstract);}),[{tag:"span",attributes:{class:["".concat(M.cssPrefix,"-layers")].concat(m2(n)).join(" ")},children:i}]})}}}},Cc={mixout:function(){return {counter:function(e){var c=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};c.title;var i=c.classes,r=i===void 0?[]:i,o=c.attributes,f=o===void 0?{}:o,d=c.styles,u=d===void 0?{}:d;return v4({type:"counter",content:e},function(){return U2("beforeDOMElementCreation",{content:e,params:c}),ec({content:e.toString(),extra:{attributes:f,styles:u,classes:["".concat(M.cssPrefix,"-layers-counter")].concat(m2(r))}})})}}}},yc={mixout:function(){return {text:function(e){var c=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},l=c.transform,n=l===void 0?g2:l,i=c.classes,r=i===void 0?[]:i,o=c.attributes,f=o===void 0?{}:o,d=c.styles,u=d===void 0?{}:d;return v4({type:"text",content:e},function(){return U2("beforeDOMElementCreation",{content:e,params:c}),z6({content:e,transform:m(m({},g2),n),extra:{attributes:f,styles:u,classes:["".concat(M.cssPrefix,"-layers-text")].concat(m2(r))}})})}}},provides:function(t){t.generateLayersText=function(e,c){var l=c.transform,n=c.extra,i=null,r=null;if(B6){var o=parseInt(getComputedStyle(e).fontSize,10),f=e.getBoundingClientRect();i=f.width/o,r=f.height/o;}return Promise.resolve([e,z6({content:e.innerHTML,width:i,height:r,transform:l,extra:n,watchable:true})])};}},T8=new RegExp('"',"ug"),S6=[1105920,1112319],N6=m(m(m(m({},{FontAwesome:{normal:"fas",400:"fas"}}),t7),fa),u7),b3=Object.keys(N6).reduce(function(a,t){return a[t.toLowerCase()]=N6[t],a},{}),xc=Object.keys(b3).reduce(function(a,t){var e=b3[t];return a[t]=e[900]||m2(Object.entries(e))[0][1],a},{});function Sc(a){var t=a.replace(T8,"");return g8(m2(t)[0]||"")}function Nc(a){var t=a.getPropertyValue("font-feature-settings").includes("ss01"),e=a.getPropertyValue("content"),c=e.replace(T8,""),l=c.codePointAt(0),n=l>=S6[0]&&l<=S6[1],i=c.length===2?c[0]===c[1]:false;return n||i||t}function wc(a,t){var e=a.replace(/^['"]|['"]$/g,"").toLowerCase(),c=parseInt(t),l=isNaN(c)?"normal":c;return (b3[e]||{})[l]||xc[e]}function w6(a,t){var e="".concat(da).concat(t.replace(":","-"));return new Promise(function(c,l){if(a.getAttribute(e)!==null)return c();var n=i1(a.children),i=n.filter(function(j2){return j2.getAttribute(s3)===t})[0],r=F2.getComputedStyle(a,t),o=r.getPropertyValue("font-family"),f=o.match(va),d=r.getPropertyValue("font-weight"),u=r.getPropertyValue("content");if(i&&!f)return a.removeChild(i),c();if(f&&u!=="none"&&u!==""){var g=r.getPropertyValue("content"),v=wc(o,d),C=Sc(g),S=f[0].startsWith("FontAwesome"),T=Nc(r),U=A3(v,C),K=U;if(S){var G=Ia(C);G.iconName&&G.prefix&&(U=G.iconName,v=G.prefix);}if(U&&!T&&(!i||i.getAttribute(y3)!==v||i.getAttribute(x3)!==K)){a.setAttribute(e,K),i&&a.removeChild(i);var z2=pc(),f2=z2.extra;f2.attributes[s3]=t,g3(U,v).then(function(j2){var w4=D3(m(m({},z2),{},{icons:{main:j2,mask:N8()},prefix:v,iconName:K,extra:f2,watchable:true})),k4=O.createElementNS("http://www.w3.org/2000/svg","svg");t==="::before"?a.insertBefore(k4,a.firstChild):a.appendChild(k4),k4.outerHTML=w4.map(function(Ve){return A1(Ve)}).join(` +`),a.removeAttribute(e),c();}).catch(l);}else c();}else c();})}function kc(a){return Promise.all([w6(a,"::before"),w6(a,"::after")])}function Ac(a){return a.parentNode!==document.head&&!~ma.indexOf(a.tagName.toUpperCase())&&!a.getAttribute(s3)&&(!a.parentNode||a.parentNode.tagName!=="svg")}var Dc=function(t){return !!t&&o8.some(function(e){return t.includes(e)})},_c=function(t){if(!t)return [];var e=new Set,c=t.split(/,(?![^()]*\))/).map(function(o){return o.trim()});c=c.flatMap(function(o){return o.includes("(")?o:o.split(",").map(function(f){return f.trim()})});var l=i4(c),n;try{for(l.s();!(n=l.n()).done;){var i=n.value;if(Dc(i)){var r=o8.reduce(function(o,f){return o.replace(f,"")},i);r!==""&&r!=="*"&&e.add(r);}}}catch(o){l.e(o);}finally{l.f();}return e};function k6(a){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:false;if(S2){var e;if(t)e=a;else if(M.searchPseudoElementsFullScan)e=a.querySelectorAll("*");else {var c=new Set,l=i4(document.styleSheets),n;try{for(l.s();!(n=l.n()).done;){var i=n.value;try{var r=i4(i.cssRules),o;try{for(r.s();!(o=r.n()).done;){var f=o.value,d=_c(f.selectorText),u=i4(d),g;try{for(u.s();!(g=u.n()).done;){var v=g.value;c.add(v);}}catch(S){u.e(S);}finally{u.f();}}}catch(S){r.e(S);}finally{r.f();}}catch(S){M.searchPseudoElementsWarnings&&console.warn("Font Awesome: cannot parse stylesheet: ".concat(i.href," (").concat(S.message,`) +If it declares any Font Awesome CSS pseudo-elements, they will not be rendered as SVG icons. Add crossorigin="anonymous" to the , enable searchPseudoElementsFullScan for slower but more thorough DOM parsing, or suppress this warning by setting searchPseudoElementsWarnings to false.`));}}}catch(S){l.e(S);}finally{l.f();}if(!c.size)return;var C=Array.from(c).join(", ");try{e=a.querySelectorAll(C);}catch{}}return new Promise(function(S,T){var U=i1(e).filter(Ac).map(kc),K=_3.begin("searchPseudoElements");_8(),Promise.all(U).then(function(){K(),M3(),S();}).catch(function(){K(),M3(),T();});})}}var Fc={hooks:function(){return {mutationObserverCallbacks:function(e){return e.pseudoElementsCallback=k6,e}}},provides:function(t){t.pseudoElements2svg=function(e){var c=e.node,l=c===void 0?O:c;M.searchPseudoElements&&k6(l);};}},A6=false,Tc={mixout:function(){return {dom:{unwatch:function(){_8(),A6=true;}}}},hooks:function(){return {bootstrap:function(){C6(p3("mutationObserverCallbacks",{}));},noAuto:function(){fc();},watch:function(e){var c=e.observeMutationsRoot;A6?M3():C6(p3("mutationObserverCallbacks",{observeMutationsRoot:c}));}}}},D6=function(t){var e={size:16,x:0,y:0,flipX:false,flipY:false,rotate:0};return t.toLowerCase().split(" ").reduce(function(c,l){var n=l.toLowerCase().split("-"),i=n[0],r=n.slice(1).join("-");if(i&&r==="h")return c.flipX=true,c;if(i&&r==="v")return c.flipY=true,c;if(r=parseFloat(r),isNaN(r))return c;switch(i){case "grow":c.size=c.size+r;break;case "shrink":c.size=c.size-r;break;case "left":c.x=c.x-r;break;case "right":c.x=c.x+r;break;case "up":c.y=c.y-r;break;case "down":c.y=c.y+r;break;case "rotate":c.rotate=c.rotate+r;break}return c},e)},Ec={mixout:function(){return {parse:{transform:function(e){return D6(e)}}}},hooks:function(){return {parseNodeAttributes:function(e,c){var l=c.getAttribute("data-fa-transform");return l&&(e.transform=D6(l)),e}}},provides:function(t){t.generateAbstractTransformGrouping=function(e){var c=e.main,l=e.transform,n=e.containerWidth,i=e.iconWidth,r={transform:"translate(".concat(n/2," 256)")},o="translate(".concat(l.x*32,", ").concat(l.y*32,") "),f="scale(".concat(l.size/16*(l.flipX?-1:1),", ").concat(l.size/16*(l.flipY?-1:1),") "),d="rotate(".concat(l.rotate," 0 0)"),u={transform:"".concat(o," ").concat(f," ").concat(d)},g={transform:"translate(".concat(i/2*-1," -256)")},v={outer:r,inner:u,path:g};return {tag:"g",attributes:m({},v.outer),children:[{tag:"g",attributes:m({},v.inner),children:[{tag:c.icon.tag,children:c.icon.children,attributes:m(m({},c.icon.attributes),v.path)}]}]}};}},n3={x:0,y:0,width:"100%",height:"100%"};function _6(a){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:true;return a.attributes&&(a.attributes.fill||t)&&(a.attributes.fill="black"),a}function Pc(a){return a.tag==="g"?a.children:[a]}var Bc={hooks:function(){return {parseNodeAttributes:function(e,c){var l=c.getAttribute("data-fa-mask"),n=l?h4(l.split(" ").map(function(i){return i.trim()})):N8();return n.prefix||(n.prefix=T2()),e.mask=n,e.maskId=c.getAttribute("data-fa-mask-id"),e}}},provides:function(t){t.generateAbstractMask=function(e){var c=e.children,l=e.attributes,n=e.main,i=e.mask,r=e.maskId,o=e.transform,f=n.width,d=n.icon,u=i.width,g=i.icon,v=Na({transform:o,containerWidth:u,iconWidth:f}),C={tag:"rect",attributes:m(m({},n3),{},{fill:"white"})},S=d.children?{children:d.children.map(_6)}:{},T={tag:"g",attributes:m({},v.inner),children:[_6(m({tag:d.tag,attributes:m(m({},d.attributes),v.path)},S))]},U={tag:"g",attributes:m({},v.outer),children:[T]},K="mask-".concat(r||d6()),G="clip-".concat(r||d6()),z2={tag:"mask",attributes:m(m({},n3),{},{id:K,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[C,U]},f2={tag:"defs",children:[{tag:"clipPath",attributes:{id:G},children:Pc(g)},z2]};return c.push(f2,{tag:"rect",attributes:m({fill:"currentColor","clip-path":"url(#".concat(G,")"),mask:"url(#".concat(K,")")},n3)}),{children:c,attributes:l}};}},Ic={provides:function(t){var e=false;F2.matchMedia&&(e=F2.matchMedia("(prefers-reduced-motion: reduce)").matches),t.missingIconAbstract=function(){var c=[],l={fill:"currentColor"},n={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};c.push({tag:"path",attributes:m(m({},l),{},{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})});var i=m(m({},n),{},{attributeName:"opacity"}),r={tag:"circle",attributes:m(m({},l),{},{cx:"256",cy:"364",r:"28"}),children:[]};return e||r.children.push({tag:"animate",attributes:m(m({},n),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:m(m({},i),{},{values:"1;0;1;1;0;1;"})}),c.push(r),c.push({tag:"path",attributes:m(m({},l),{},{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:e?[]:[{tag:"animate",attributes:m(m({},i),{},{values:"1;0;0;0;0;1;"})}]}),e||c.push({tag:"path",attributes:m(m({},l),{},{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:m(m({},i),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:c}};}},Vc={hooks:function(){return {parseNodeAttributes:function(e,c){var l=c.getAttribute("data-fa-symbol"),n=l===null?false:l===""?true:l;return e.symbol=n,e}}}},Oc=[Aa,bc,Lc,Cc,yc,Fc,Tc,Ec,Bc,Ic,Vc];Ga(Oc,{mixoutsTo:s2});s2.noAuto;var E8=s2.config;s2.library;var P8=s2.dom,B8=s2.parse;s2.findIconDefinition;s2.toHtml;var I8=s2.icon;s2.layer;s2.text;s2.counter;var $c=["*"],Uc=(()=>{class a{defaultPrefix="fas";fallbackIcon=null;fixedWidth;set autoAddCss(e){E8.autoAddCss=e,this._autoAddCss=e;}get autoAddCss(){return this._autoAddCss}_autoAddCss=true;static \u0275fac=function(c){return new(c||a)};static \u0275prov=b({token:a,factory:a.\u0275fac,providedIn:"root"})}return a})(),jc=(()=>{class a{definitions={};addIcons(...e){for(let c of e){c.prefix in this.definitions||(this.definitions[c.prefix]={}),this.definitions[c.prefix][c.iconName]=c;for(let l of c.icon[2])typeof l=="string"&&(this.definitions[c.prefix][l]=c);}}addIconPacks(...e){for(let c of e){let l=Object.keys(c).map(n=>c[n]);this.addIcons(...l);}}getIconDefinition(e,c){return e in this.definitions&&c in this.definitions[e]?this.definitions[e][c]:null}static \u0275fac=function(c){return new(c||a)};static \u0275prov=b({token:a,factory:a.\u0275fac,providedIn:"root"})}return a})(),Wc=a=>{throw new Error(`Could not find icon with iconName=${a.iconName} and prefix=${a.prefix} in the icon library.`)},Gc=()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")},O8=a=>a!=null&&(a===90||a===180||a===270||a==="90"||a==="180"||a==="270"),qc=a=>{let t=O8(a.rotate),e={[`fa-${a.animation}`]:a.animation!=null&&!a.animation.startsWith("spin"),"fa-spin":a.animation==="spin"||a.animation==="spin-reverse","fa-spin-pulse":a.animation==="spin-pulse"||a.animation==="spin-pulse-reverse","fa-spin-reverse":a.animation==="spin-reverse"||a.animation==="spin-pulse-reverse","fa-pulse":a.animation==="spin-pulse"||a.animation==="spin-pulse-reverse","fa-fw":a.fixedWidth,"fa-border":a.border,"fa-inverse":a.inverse,"fa-layers-counter":a.counter,"fa-flip-horizontal":a.flip==="horizontal"||a.flip==="both","fa-flip-vertical":a.flip==="vertical"||a.flip==="both",[`fa-${a.size}`]:a.size!=null,[`fa-rotate-${a.rotate}`]:t,"fa-rotate-by":a.rotate!=null&&!t,[`fa-pull-${a.pull}`]:a.pull!=null,[`fa-stack-${a.stackItemSize}`]:a.stackItemSize!=null};return Object.keys(e).map(c=>e[c]?c:null).filter(c=>c!=null)},T3=new WeakSet,V8="fa-auto-css";function Xc(a,t){if(!t.autoAddCss||T3.has(a))return;if(a.getElementById(V8)!=null){t.autoAddCss=false,T3.add(a);return}let e=a.createElement("style");e.setAttribute("type","text/css"),e.setAttribute("id",V8),e.innerHTML=P8.css();let c=a.head.childNodes,l=null;for(let n=c.length-1;n>-1;n--){let i=c[n],r=i.nodeName.toUpperCase();["STYLE","LINK"].indexOf(r)>-1&&(l=i);}a.head.insertBefore(e,l),t.autoAddCss=false,T3.add(a);}var Yc=a=>a.prefix!==void 0&&a.iconName!==void 0,Kc=(a,t)=>Yc(a)?a:Array.isArray(a)&&a.length===2?{prefix:a[0],iconName:a[1]}:{prefix:t,iconName:a},Qc=(()=>{class a{stackItemSize=mu("1x");size=mu();_effect=Ui(()=>{if(this.size())throw new Error('fa-icon is not allowed to customize size when used inside fa-stack. Set size on the enclosing fa-stack instead: ....')});static \u0275fac=function(c){return new(c||a)};static \u0275dir=xt$1({type:a,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:[1,"stackItemSize"],size:[1,"size"]}})}return a})(),Zc=(()=>{class a{size=mu();classes=gs(()=>{let e=this.size(),c=e?{[`fa-${e}`]:true}:{};return m$1(l({},c),{"fa-stack":true})});static \u0275fac=function(c){return new(c||a)};static \u0275cmp=Uo({type:a,selectors:[["fa-stack"]],hostVars:2,hostBindings:function(c,l){c&2&&jM(l.classes());},inputs:{size:[1,"size"]},ngContentSelectors:$c,decls:1,vars:0,template:function(c,l){c&1&&(uu(),lu(0));},encapsulation:2})}return a})(),_n=(()=>{class a{icon=az();title=az();animation=az();mask=az();flip=az();size=az();pull=az();border=az();inverse=az();symbol=az();rotate=az();fixedWidth=az();transform=az();a11yRole=az();renderedIconHTML=gs(()=>{let e=this.icon()??this.config.fallbackIcon;if(!e)return Gc(),"";let c=this.findIconDefinition(e);if(!c)return "";let l=this.buildParams();Xc(this.document,this.config);let n=I8(c,l);return this.sanitizer.bypassSecurityTrustHtml(n.html.join(` +`))});document=g(G);sanitizer=g(dR);config=g(Uc);iconLibrary=g(jc);stackItem=g(Qc,{optional:true});stack=g(Zc,{optional:true});constructor(){this.stack!=null&&this.stackItem==null&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: .');}findIconDefinition(e){let c=Kc(e,this.config.defaultPrefix);if("icon"in c)return c;let l=this.iconLibrary.getIconDefinition(c.prefix,c.iconName);return l??(Wc(c),null)}buildParams(){let e=this.fixedWidth(),c={flip:this.flip(),animation:this.animation(),border:this.border(),inverse:this.inverse(),size:this.size(),pull:this.pull(),rotate:this.rotate(),fixedWidth:typeof e=="boolean"?e:this.config.fixedWidth,stackItemSize:this.stackItem!=null?this.stackItem.stackItemSize():void 0},l=this.transform(),n=typeof l=="string"?B8.transform(l):l,i=this.mask(),r=i!=null?this.findIconDefinition(i):null,o={},f=this.a11yRole();f!=null&&(o.role=f);let d={};return c.rotate!=null&&!O8(c.rotate)&&(d["--fa-rotate-angle"]=`${c.rotate}`),{title:this.title(),transform:n,classes:qc(c),mask:r??void 0,symbol:this.symbol(),attributes:o,styles:d}}static \u0275fac=function(c){return new(c||a)};static \u0275cmp=Uo({type:a,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(c,l){c&2&&(YE("innerHTML",l.renderedIconHTML(),aT),su("title",l.title()??void 0));},inputs:{icon:[1,"icon"],title:[1,"title"],animation:[1,"animation"],mask:[1,"mask"],flip:[1,"flip"],size:[1,"size"],pull:[1,"pull"],border:[1,"border"],inverse:[1,"inverse"],symbol:[1,"symbol"],rotate:[1,"rotate"],fixedWidth:[1,"fixedWidth"],transform:[1,"transform"],a11yRole:[1,"a11yRole"]},outputs:{icon:"iconChange",title:"titleChange",animation:"animationChange",mask:"maskChange",flip:"flipChange",size:"sizeChange",pull:"pullChange",border:"borderChange",inverse:"inverseChange",symbol:"symbolChange",rotate:"rotateChange",fixedWidth:"fixedWidthChange",transform:"transformChange",a11yRole:"a11yRoleChange"},decls:0,vars:0,template:function(c,l){},encapsulation:2})}return a})();var Fn=(()=>{class a{static \u0275fac=function(c){return new(c||a)};static \u0275mod=mn({type:a});static \u0275inj=$t$1({})}return a})();var Jc={prefix:"fas",iconName:"mobile",icon:[384,512,[128241,"mobile-android","mobile-phone"],"f3ce","M80 0C44.7 0 16 28.7 16 64l0 384c0 35.3 28.7 64 64 64l224 0c35.3 0 64-28.7 64-64l0-384c0-35.3-28.7-64-64-64L80 0zm72 416l80 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]};var Pn=Jc;var Bn={prefix:"fas",iconName:"eye",icon:[576,512,[128065],"f06e","M288 32c-80.8 0-145.5 36.8-192.6 80.6-46.8 43.5-78.1 95.4-93 131.1-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64-11.5 0-22.3-3-31.7-8.4-1 10.9-.1 22.1 2.9 33.2 13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-12.2-45.7-55.5-74.8-101.1-70.8 5.3 9.3 8.4 20.1 8.4 31.7z"]};var In={prefix:"fas",iconName:"trash",icon:[448,512,[],"f1f8","M136.7 5.9L128 32 32 32C14.3 32 0 46.3 0 64S14.3 96 32 96l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 0-8.7-26.1C306.9-7.2 294.7-16 280.9-16L167.1-16c-13.8 0-26 8.8-30.4 21.9zM416 144L32 144 53.1 467.1C54.7 492.4 75.7 512 101 512L347 512c25.3 0 46.3-19.6 47.9-44.9L416 144z"]};var Vn={prefix:"fas",iconName:"right-to-bracket",icon:[512,512,["sign-in-alt"],"f2f6","M345 273c9.4-9.4 9.4-24.6 0-33.9L201 95c-6.9-6.9-17.2-8.9-26.2-5.2S160 102.3 160 112l0 80-112 0c-26.5 0-48 21.5-48 48l0 32c0 26.5 21.5 48 48 48l112 0 0 80c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2L345 273zm7 143c-17.7 0-32 14.3-32 32s14.3 32 32 32l64 0c53 0 96-43 96-96l0-256c0-53-43-96-96-96l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l64 0c17.7 0 32 14.3 32 32l0 256c0 17.7-14.3 32-32 32l-64 0z"]};var et={prefix:"fas",iconName:"pen-to-square",icon:[512,512,["edit"],"f044","M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L368 46.1 465.9 144 490.3 119.6c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L432 177.9 334.1 80 172.4 241.7zM96 64C43 64 0 107 0 160L0 416c0 53 43 96 96 96l256 0c53 0 96-43 96-96l0-96c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 96c0 17.7-14.3 32-32 32L96 448c-17.7 0-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32l96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L96 64z"]},On=et;var Rn={prefix:"fas",iconName:"right-from-bracket",icon:[512,512,["sign-out-alt"],"f2f5","M505 273c9.4-9.4 9.4-24.6 0-33.9L361 95c-6.9-6.9-17.2-8.9-26.2-5.2S320 102.3 320 112l0 80-112 0c-26.5 0-48 21.5-48 48l0 32c0 26.5 21.5 48 48 48l112 0 0 80c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2L505 273zM160 96c17.7 0 32-14.3 32-32s-14.3-32-32-32L96 32C43 32 0 75 0 128L0 384c0 53 43 96 96 96l64 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32l64 0z"]};var Hn={prefix:"fas",iconName:"plus",icon:[448,512,[10133,61543,"add"],"2b","M256 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 160-160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l160 0 0 160c0 17.7 14.3 32 32 32s32-14.3 32-32l0-160 160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-160 0 0-160z"]};var $n={prefix:"fas",iconName:"copy",icon:[448,512,[],"f0c5","M192 0c-35.3 0-64 28.7-64 64l0 256c0 35.3 28.7 64 64 64l192 0c35.3 0 64-28.7 64-64l0-200.6c0-17.4-7.1-34.1-19.7-46.2L370.6 17.8C358.7 6.4 342.8 0 326.3 0L192 0zM64 128c-35.3 0-64 28.7-64 64L0 448c0 35.3 28.7 64 64 64l192 0c35.3 0 64-28.7 64-64l0-16-64 0 0 16-192 0 0-256 16 0 0-64-16 0z"]};var Un={prefix:"fas",iconName:"eye-slash",icon:[576,512,[],"f070","M41-24.9c-9.4-9.4-24.6-9.4-33.9 0S-2.3-.3 7 9.1l528 528c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-96.4-96.4c2.7-2.4 5.4-4.8 8-7.2 46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6-56.8 0-105.6 18.2-146 44.2L41-24.9zM204.5 138.7c23.5-16.8 52.4-26.7 83.5-26.7 79.5 0 144 64.5 144 144 0 31.1-9.9 59.9-26.7 83.5l-34.7-34.7c12.7-21.4 17-47.7 10.1-73.7-13.7-51.2-66.4-81.6-117.6-67.9-8.6 2.3-16.7 5.7-24 10l-34.7-34.7zM325.3 395.1c-11.9 3.2-24.4 4.9-37.3 4.9-79.5 0-144-64.5-144-144 0-12.9 1.7-25.4 4.9-37.3L69.4 139.2c-32.6 36.8-55 75.8-66.9 104.5-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6 37.3 0 71.2-7.9 101.5-20.6l-64.2-64.2z"]};var jn={prefix:"fas",iconName:"bars",icon:[448,512,["navicon"],"f0c9","M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"]};function r1(...a){if(a){let t=[];for(let e=0;er?i:void 0);t=n.length?t.concat(n.filter(i=>!!i)):t;}}return t.join(" ").trim()}}var at=Object.defineProperty,R8=Object.getOwnPropertySymbols,ct=Object.prototype.hasOwnProperty,tt=Object.prototype.propertyIsEnumerable,H8=(a,t,e)=>t in a?at(a,t,{enumerable:true,configurable:true,writable:true,value:e}):a[t]=e,$8=(a,t)=>{for(var e in t||(t={}))ct.call(t,e)&&H8(a,e,t[e]);if(R8)for(var e of R8(t))tt.call(t,e)&&H8(a,e,t[e]);return a};function U8(...a){if(a){let t=[];for(let e=0;er?i:void 0);t=n.length?t.concat(n.filter(i=>!!i)):t;}}return t.join(" ").trim()}}function lt(a){return typeof a=="function"&&"call"in a&&"apply"in a}function nt({skipUndefined:a=false},...t){return t?.reduce((e,c={})=>{for(let l in c){let n=c[l];if(!(a&&n===void 0))if(l==="style")e.style=$8($8({},e.style),c.style);else if(l==="class"||l==="className")e[l]=U8(e[l],c[l]);else if(lt(n)){let i=e[l];e[l]=i?(...r)=>{i(...r),n(...r);}:n;}else e[l]=n;}return e},{})}function E3(...a){return nt({skipUndefined:false},...a)}var g4={};function j8(a="pui_id_"){return Object.hasOwn(g4,a)||(g4[a]=0),g4[a]++,`${a}${g4[a]}`}var W8=(()=>{class a extends WI{name="common";static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275prov=b({token:a,factory:a.\u0275fac,providedIn:"root"})}return a})(),W=new I$1("PARENT_INSTANCE"),I=(()=>{class a{document=g(G);platformId=g(Nr);el=g(Rt$1);injector=g(Ie$1);cd=g(Hr$1);renderer=g(jr);config=g(ZO);$parentInstance=g(W,{optional:true,skipSelf:true})??void 0;baseComponentStyle=g(W8);baseStyle=g(WI);scopedStyleEl;parent=this.$params.parent;cn=r1;_themeScopedListener;themeChangeListenerMap=new Map;dt=mu();unstyled=mu();pt=mu();ptOptions=mu();$attrSelector=j8("pc");get $name(){return this.componentName||"UnknownComponent"}get $hostName(){let e=this.hostName;return Bi(e)?e():e}get $el(){return this.el?.nativeElement}directivePT=U(void 0);directiveUnstyled=U(void 0);$unstyled=gs(()=>this.unstyled()??this.directiveUnstyled()??this.config?.unstyled()??false);$pt=gs(()=>Pe$1(this.pt()||this.directivePT(),this.$params));get $globalPT(){return this._getPT(this.config?.pt(),void 0,e=>Pe$1(e,this.$params))}get $defaultPT(){return this._getPT(this.config?.pt(),void 0,e=>this._getOptionValue(e,this.$hostName||this.$name,this.$params)||Pe$1(e,this.$params))}_$styleCache;get $style(){return this._$styleCache||(this._$styleCache=l(l({theme:void 0,css:void 0,classes:void 0,inlineStyles:void 0},(this._getHostInstance(this)||{}).$style),this._componentStyle)),this._$styleCache}get $styleOptions(){return {nonce:this.config?.csp().nonce}}_$paramsCache;get $params(){if(!this._$paramsCache){let e=this._getHostInstance(this)||this.$parentInstance;this._$paramsCache={instance:this,parent:{instance:e}};}return this._$paramsCache}onInit(){}onChanges(e){}onDoCheck(){}onAfterContentInit(){}onAfterContentChecked(){}onAfterViewInit(){}onAfterViewChecked(){}onDestroy(){}constructor(){Ui(e=>{this.document&&!HG(this.platformId)&&(this.dt()?(this._loadScopedThemeStyles(this.dt()),this._themeScopedListener=()=>this._loadScopedThemeStyles(this.dt()),this._themeChangeListener("_themeScopedListener",this._themeScopedListener)):this._unloadScopedThemeStyles()),e(()=>{this._offThemeChangeListener("_themeScopedListener");});}),Ui(e=>{this.document&&!HG(this.platformId)&&(this.$unstyled()||(this._loadCoreStyles(),this._themeChangeListener("_loadCoreStyles",this._loadCoreStyles))),e(()=>{this._offThemeChangeListener("_loadCoreStyles");});}),this._hook("onBeforeInit");}ngOnInit(){this._$paramsCache=void 0,this._$styleCache=void 0,this._loadCoreStyles(),this._loadStyles(),this.onInit(),this._hook("onInit");}ngOnChanges(e){this.onChanges(e),this._hook("onChanges",e);}ngDoCheck(){this.onDoCheck(),this._hook("onDoCheck");}ngAfterContentInit(){this.onAfterContentInit(),this._hook("onAfterContentInit");}ngAfterContentChecked(){this.onAfterContentChecked(),this._hook("onAfterContentChecked");}ngAfterViewInit(){this.$el?.setAttribute(this.$attrSelector,""),this.config?.verified()===false&&vC(),this.onAfterViewInit(),this._hook("onAfterViewInit");}ngAfterViewChecked(){this.onAfterViewChecked(),this._hook("onAfterViewChecked");}ngOnDestroy(){this._removeThemeListeners(),this._unloadScopedThemeStyles(),this.onDestroy(),this._hook("onDestroy");}_mergeProps(e,...c){return _I(e)?e(...c):E3(...c)}_getHostInstance(e){return e?this.$hostName?this.$name===this.$hostName?e:this._getHostInstance(e.$parentInstance):e.$parentInstance:void 0}_getPropValue(e){return this[e]||this._getHostInstance(this)?.[e]}_getOptionValue(e,c="",l={}){return MI(e,c,l)}_hook(e,...c){if(this.$hostName||!this.pt()&&!this.directivePT()&&!this.config?.pt())return;let l=this._usePT(this._getPT(this.$pt(),this.$name),this._getOptionValue,`hooks.${e}`),n=this._useDefaultPT(this._getOptionValue,`hooks.${e}`);l?.(...c),n?.(...c);}_load(){Mq.isStyleNameLoaded("base")||(this.baseStyle.loadBaseCSS(this.$styleOptions),this._loadGlobalStyles(),Mq.setLoadedStyleName("base")),this._loadThemeStyles();}_loadStyles(){this._load(),this._themeChangeListener("_load",()=>this._load());}_loadGlobalStyles(){let e=this._useGlobalPT(this._getOptionValue,"global.css",this.$params);oe$1(e)&&this.baseStyle.load(e,l({name:"global"},this.$styleOptions));}_loadCoreStyles(){!Mq.isStyleNameLoaded(this.$style?.name)&&this.$style?.name&&(this.baseComponentStyle.loadCSS(this.$styleOptions),this.$style.loadCSS(this.$styleOptions),Mq.setLoadedStyleName(this.$style.name));}_loadThemeStyles(){if(!(this.$unstyled()||this.config?.theme()==="none")){if(!ee$1.isStyleNameLoaded("common")){let{primitive:e,semantic:c,global:l$1,style:n}=this.$style?.getCommonTheme?.()||{};this.baseStyle.load(e?.css,l({name:"primitive-variables"},this.$styleOptions)),this.baseStyle.load(c?.css,l({name:"semantic-variables"},this.$styleOptions)),this.baseStyle.load(l$1?.css,l({name:"global-variables"},this.$styleOptions)),this.baseStyle.loadBaseStyle(l({name:"global-style"},this.$styleOptions),n),ee$1.setLoadedStyleName("common");}if(!ee$1.isStyleNameLoaded(this.$style?.name)&&this.$style?.name){let{css:e,style:c}=this.$style?.getComponentTheme?.()||{};this.$style?.load(e,l({name:`${this.$style?.name}-variables`},this.$styleOptions)),this.$style?.loadStyle(l({name:`${this.$style?.name}-style`},this.$styleOptions),c),ee$1.setLoadedStyleName(this.$style?.name);}if(!ee$1.isStyleNameLoaded("layer-order")){let e=this.$style?.getLayerOrderThemeCSS?.();this.baseStyle.load(e,l({name:"layer-order",first:true},this.$styleOptions)),ee$1.setLoadedStyleName("layer-order");}}}_loadScopedThemeStyles(e){let{css:c}=this.$style?.getPresetTheme?.(e,`[${this.$attrSelector}]`)||{},l$1=this.$style?.load(c,l({name:`${this.$attrSelector}-${this.$style?.name}`},this.$styleOptions));this.scopedStyleEl=l$1?.el;}_unloadScopedThemeStyles(){this.scopedStyleEl?.remove();}_themeChangeListener(e,c=()=>{}){this._offThemeChangeListener(e),Mq.clearLoadedStyleNames();let l=c.bind(this);this.themeChangeListenerMap.set(e,l),tn.on("theme:change",l);}_removeThemeListeners(){this._offThemeChangeListener("_themeScopedListener"),this._offThemeChangeListener("_loadCoreStyles"),this._offThemeChangeListener("_load");}_offThemeChangeListener(e){this.themeChangeListenerMap.has(e)&&(tn.off("theme:change",this.themeChangeListenerMap.get(e)),this.themeChangeListenerMap.delete(e));}_getPTValue(e={},c="",l$1={},n=true){let i=/./g.test(c)&&!!l$1[c.split(".")[0]],{mergeSections:r=true,mergeProps:o=false}=this._getPropValue("ptOptions")?.()||this.config?.ptOptions?.()||{},f=n?i?this._useGlobalPT(this._getPTClassValue,c,l$1):this._useDefaultPT(this._getPTClassValue,c,l$1):void 0,d=i?void 0:this._usePT(this._getPT(e,this.$hostName||this.$name),this._getPTClassValue,c,m$1(l({},l$1),{global:f||{}})),u=this._getPTDatasets(c);return r||!r&&d?o?this._mergeProps(o,f,d,u):l(l(l({},f),d),u):l(l({},d),u)}_getPTDatasets(e=""){let c="data-pc-",l$1=e==="root"&&oe$1(this.$pt()?.["data-pc-section"]);return e!=="transition"&&m$1(l({},e==="root"&&m$1(l({[`${c}name`]:TI(l$1?this.$pt()?.["data-pc-section"]:this.$name)},l$1&&{[`${c}extend`]:TI(this.$name)}),{[`${this.$attrSelector}`]:""})),{[`${c}section`]:TI(e.includes(".")?e.split(".").at(-1)??"":e)})}_getPTClassValue(e,c,l){let n=this._getOptionValue(e,c,l);return nr(n)||eO(n)?{class:n}:n}_getPT(e,c="",l){let n=(i,r=false)=>{let o=l?l(i):i,f=TI(c),d=TI(this.$hostName||this.$name);return (r?f!==d?o?.[f]:void 0:o?.[f])??o};return e?.hasOwnProperty("_usept")?{_usept:e._usept,originalValue:n(e.originalValue),value:n(e.value)}:n(e,true)}_usePT(e,c,l$1,n){let i=r=>c?.call(this,r,l$1,n);if(e?.hasOwnProperty("_usept")){let{mergeSections:r=true,mergeProps:o=false}=e._usept||this.config?.ptOptions()||{},f=i(e.originalValue),d=i(e.value);return f===void 0&&d===void 0?void 0:nr(d)?d:nr(f)?f:r||!r&&d?o?this._mergeProps(o,f,d):l(l({},f),d):d}return i(e)}_useGlobalPT(e,c,l){return this._usePT(this.$globalPT,e,c,l)}_useDefaultPT(e,c,l){return this._usePT(this.$defaultPT,e,c,l)}ptm(e="",c={}){return this._getPTValue(this.$pt(),e,l(l({},this.$params),c))}ptms(e,c={}){return e.reduce((l,n)=>(l=E3(l,this.ptm(n,c))||{},l),{})}ptmo(e={},c="",l$1={}){return this._getPTValue(e,c,l({instance:this},l$1),false)}cx(e,c={}){return this.$unstyled()?void 0:r1(this._getOptionValue(this.$style.classes,e,l(l({},this.$params),c)))}sx(e="",c=true,l$1={}){if(c){let n=this._getOptionValue(this.$style.inlineStyles,e,l(l({},this.$params),l$1)),i=this._getOptionValue(this.baseComponentStyle.inlineStyles,e,l(l({},this.$params),l$1));return l(l({},i),n)}}translate(e,c){let l=this.config.getTranslation(e);return c?l?.[c]:l}static \u0275fac=function(c){return new(c||a)};static \u0275dir=xt$1({type:a,inputs:{dt:[1,"dt"],unstyled:[1,"unstyled"],pt:[1,"pt"],ptOptions:[1,"ptOptions"]},features:[nN([W8,WI]),Yt$1]})}return a})();var L=(()=>{class a{pBind=mu(void 0);_attrs=U(void 0);attrs=gs(()=>this._attrs()||this.pBind());styles=gs(()=>this.attrs()?.style);classes=gs(()=>r1(this.attrs()?.class));listeners=[];el=g(Rt$1);renderer=g(jr);constructor(){Ui(()=>{let n=this.attrs()||{},{style:e,class:c}=n,l=o(n,["style","class"]);for(let[i,r]of Object.entries(l))if(i.startsWith("on")&&typeof r=="function"){let o=i.slice(2).toLowerCase();if(!this.listeners.some(f=>f.eventName===o)){let f=this.renderer.listen(this.el.nativeElement,o,r);this.listeners.push({eventName:o,unlisten:f});}}else r==null?this.renderer.removeAttribute(this.el.nativeElement,i):(this.renderer.setAttribute(this.el.nativeElement,i,r.toString()),i in this.el.nativeElement&&(this.el.nativeElement[i]=r));});}ngOnDestroy(){this.clearListeners();}setAttrs(e){zh(this._attrs(),e)||this._attrs.set(e);}clearListeners(){this.listeners.forEach(({unlisten:e})=>e()),this.listeners=[];}static \u0275fac=function(c){return new(c||a)};static \u0275dir=xt$1({type:a,selectors:[["","pBind",""]],hostVars:4,hostBindings:function(c,l){c&2&&(PM(l.styles()),jM(l.classes()));},inputs:{pBind:[1,"pBind"]}})}return a})(),o1=(()=>{class a{static \u0275fac=function(c){return new(c||a)};static \u0275mod=mn({type:a});static \u0275inj=$t$1({})}return a})();var it=["*"],rt={root:"p-fluid"},G8=(()=>{class a extends WI{name="fluid";classes=rt;static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275prov=b({token:a,factory:a.\u0275fac})}return a})();var q8=new I$1("FLUID_INSTANCE"),P2=(()=>{class a extends I{componentName="Fluid";$pcFluid=g(q8,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}_componentStyle=g(G8);static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275cmp=Uo({type:a,selectors:[["p-fluid"]],hostVars:2,hostBindings:function(c,l){c&2&&jM(l.cx("root"));},features:[nN([G8,{provide:q8,useExisting:a},{provide:W,useExisting:a}]),j0$1([L]),BE],ngContentSelectors:it,decls:1,vars:0,template:function(c,l){c&1&&(uu(),lu(0));},dependencies:[Tu],encapsulation:2})}return a})(),L9=(()=>{class a{static \u0275fac=function(c){return new(c||a)};static \u0275mod=mn({type:a});static \u0275inj=$t$1({imports:[P2]})}return a})();var X8=` + .p-ink { + display: block; + position: absolute; + background: dt('ripple.background'); + border-radius: 100%; + transform: scale(0); + pointer-events: none; + } + + .p-ink-active { + animation: ripple 0.4s linear; + } + + @keyframes ripple { + 100% { + opacity: 0; + transform: scale(2.5); + } + } +`;var ot=` + ${X8} + + /* For PrimeNG */ + .p-ripple { + overflow: hidden; + position: relative; + } + + .p-ripple-disabled .p-ink { + display: none !important; + } + + @keyframes ripple { + 100% { + opacity: 0; + transform: scale(2.5); + } + } +`,st={root:"p-ink"},Y8=(()=>{class a extends WI{name="ripple";style=ot;classes=st;static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275prov=b({token:a,factory:a.\u0275fac})}return a})();var z4=(()=>{class a extends I{componentName="Ripple";_componentStyle=g(Y8);animationListener;mouseDownListener;timeout;constructor(){super(),Ui(()=>{BG(this.platformId)&&(this.config.ripple()?(this.create(),this.mouseDownListener=this.renderer.listen(this.el.nativeElement,"mousedown",this.onMouseDown.bind(this))):this.remove());});}onMouseDown(e){let c=this.getInk();if(!c||this.document.defaultView?.getComputedStyle(c,null).display==="none")return;if(!this.$unstyled()&&RI(c,"p-ink-active"),c.setAttribute("data-p-ink-active","false"),!x4$1(c)&&!F4(c)){let r=Math.max(I4(this.el.nativeElement),uO(this.el.nativeElement));c.style.height=r+"px",c.style.width=r+"px";}let l=k4(this.el.nativeElement),n=e.pageX-l.left+this.document.body.scrollTop-F4(c)/2,i=e.pageY-l.top+this.document.body.scrollLeft-x4$1(c)/2;this.renderer.setStyle(c,"top",i+"px"),this.renderer.setStyle(c,"left",n+"px"),!this.$unstyled()&&AI(c,"p-ink-active"),c.setAttribute("data-p-ink-active","true"),this.timeout=setTimeout(()=>{let r=this.getInk();r&&(!this.$unstyled()&&RI(r,"p-ink-active"),r.setAttribute("data-p-ink-active","false"));},401);}getInk(){let e=this.el.nativeElement.children;for(let c=0;cr?i:void 0);t=n.length?t.concat(n.filter(i=>!!i)):t;}}return t.join(" ").trim()}}var M4=(()=>{class a{_iconSignal=U(null);get _icon(){return this._iconSignal()}set _icon(e){this._iconSignal.set(e);}size=mu(void 0);color=mu(void 0);styleClass=mu(void 0);spin=mu(void 0);iconNodes=gs(()=>this._iconSignal()?.nodes??[]);computedSize=gs(()=>this.size()??20);computedClass=gs(()=>{let e=this._iconSignal();return P3("p-icon",e?.name&&`p-icon-${e.name}`,this.spin()&&"p-icon-spin",this.styleClass())});get hostWidth(){return this.computedSize()}get hostHeight(){return this.computedSize()}get hostViewBox(){return this._iconSignal()?.svg?.viewBox}get hostFill(){return this._iconSignal()?.svg?.fill}get hostXmlns(){return this._iconSignal()?.svg?.xmlns}hostAriaHidden="true";get hostClass(){return this.computedClass()}get hostColor(){return this.color()||null}get hostIconSize(){return this.size()?`${this.size()}px`:null}static \u0275fac=function(c){return new(c||a)};static \u0275dir=xt$1({type:a,hostVars:12,hostBindings:function(c,l){c&2&&(su("width",l.hostWidth)("height",l.hostHeight)("viewBox",l.hostViewBox)("fill",l.hostFill)("xmlns",l.hostXmlns)("aria-hidden",l.hostAriaHidden),jM(l.hostClass),fu("color",l.hostColor)("--px-icon-size",l.hostIconSize));},inputs:{size:[1,"size"],color:[1,"color"],styleClass:[1,"styleClass"],spin:[1,"spin"]}})}return a})();var dt=(a,t)=>t[1].key||a;function ut(a,t){if(a&1&&(Gm(),GE(0,"path")),a&2){let e=EM().$implicit;su("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function mt(a,t){if(a&1&&(Gm(),GE(0,"circle")),a&2){let e=EM().$implicit;su("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function pt(a,t){if(a&1&&(Gm(),GE(0,"rect")),a&2){let e=EM().$implicit;su("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function ht(a,t){if(a&1&&(Gm(),GE(0,"line")),a&2){let e=EM().$implicit;su("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function vt(a,t){if(a&1&&(Gm(),GE(0,"polyline")),a&2){let e=EM().$implicit;su("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function gt(a,t){if(a&1&&(Gm(),GE(0,"polygon")),a&2){let e=EM().$implicit;su("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function zt(a,t){if(a&1&&(Gm(),GE(0,"ellipse")),a&2){let e=EM().$implicit;su("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Mt(a,t){if(a&1&&rM(0,ut,1,9,":svg:path")(1,mt,1,6,":svg:circle")(2,pt,1,9,":svg:rect")(3,ht,1,7,":svg:line")(4,vt,1,4,":svg:polyline")(5,gt,1,4,":svg:polygon")(6,zt,1,7,":svg:ellipse"),a&2){let e,c=t.$implicit;oM((e=c[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var Q8=(()=>{class a extends M4{constructor(){super(),this._icon=e$1;}static \u0275fac=function(c){return new(c||a)};static \u0275cmp=Uo({type:a,selectors:[["svg","data-p-icon","spinner"]],features:[BE],decls:2,vars:0,template:function(c,l){c&1&&aM(0,Mt,7,1,null,null,dt),c&2&&cM(l.iconNodes());},encapsulation:2,changeDetection:1})}return a})();var B3=(()=>{class a{static zindex=1e3;static calculatedScrollbarWidth=null;static calculatedScrollbarHeight=null;static browser;static addClass(e,c){e&&c&&(e.classList?e.classList.add(c):e.className+=" "+c);}static addMultipleClasses(e,c){if(e&&c)if(e.classList){let l=c.trim().split(" ");for(let n=0;nl.split(" ").forEach(n=>this.removeClass(e,n)));}static hasClass(e,c){return e&&c?e.classList?e.classList.contains(c):new RegExp("(^| )"+c+"( |$)","gi").test(e.className):false}static siblings(e){return Array.prototype.filter.call(e.parentNode.children,function(c){return c!==e})}static find(e,c){return Array.from(e.querySelectorAll(c))}static findSingle(e,c){return this.isElement(e)?e.querySelector(c):null}static index(e){let c=e.parentNode.childNodes,l=0;for(var n=0;n{if(G)return getComputedStyle(G).getPropertyValue("position")==="relative"?G:n(G.parentElement)},i=e.offsetParent?{width:e.offsetWidth,height:e.offsetHeight}:this.getHiddenElementDimensions(e),r=c.offsetHeight,o=c.getBoundingClientRect(),f=this.getWindowScrollTop(),d=this.getWindowScrollLeft(),u=this.getViewport(),v=n(e)?.getBoundingClientRect()||{top:-1*f,left:-1*d},C,S,T="top";o.top+r+i.height>u.height?(C=o.top-v.top-i.height,T="bottom",o.top+C<0&&(C=-1*o.top)):(C=r+o.top-v.top,T="top");let U=o.left+i.width-u.width,K=o.left-v.left;if(i.width>u.width?S=(o.left-v.left)*-1:U>0?S=K-U:S=o.left-v.left,e.style.top=C+"px",e.style.left=S+"px",e.style.transformOrigin=T,l){let G=Gh(/-anchor-gutter$/)?.value;e.style.marginTop=T==="bottom"?`calc(${G??"2px"} * -1)`:G??"";}}static absolutePosition(e,c,l=true){let n=e.offsetParent?{width:e.offsetWidth,height:e.offsetHeight}:this.getHiddenElementDimensions(e),i=n.height,r=n.width,o=c.offsetHeight,f=c.offsetWidth,d=c.getBoundingClientRect(),u=this.getWindowScrollTop(),g=this.getWindowScrollLeft(),v=this.getViewport(),C,S;d.top+o+i>v.height?(C=d.top+u-i,e.style.transformOrigin="bottom",C<0&&(C=u)):(C=o+d.top+u,e.style.transformOrigin="top"),d.left+r>v.width?S=Math.max(0,d.left+g+f-r):S=d.left+g,e.style.top=C+"px",e.style.left=S+"px",l&&(e.style.marginTop=origin==="bottom"?"calc(var(--p-anchor-gutter) * -1)":"calc(var(--p-anchor-gutter))");}static getParents(e,c=[]){return e.parentNode===null?c:this.getParents(e.parentNode,c.concat([e.parentNode]))}static getScrollableParents(e){let c=[];if(e){let l=this.getParents(e),n=/(auto|scroll)/,i=r=>{let o=window.getComputedStyle(r,null);return n.test(o.getPropertyValue("overflow"))||n.test(o.getPropertyValue("overflowX"))||n.test(o.getPropertyValue("overflowY"))};for(let r of l){let o=r.nodeType===1&&r.dataset.scrollselectors;if(o){let f=o.split(",");for(let d of f){let u=this.findSingle(r,d);u&&i(u)&&c.push(u);}}r.nodeType!==9&&i(r)&&c.push(r);}}return c}static getHiddenElementOuterHeight(e){e.style.visibility="hidden",e.style.display="block";let c=e.offsetHeight;return e.style.display="none",e.style.visibility="visible",c}static getHiddenElementOuterWidth(e){e.style.visibility="hidden",e.style.display="block";let c=e.offsetWidth;return e.style.display="none",e.style.visibility="visible",c}static getHiddenElementDimensions(e){let c={};return e.style.visibility="hidden",e.style.display="block",c.width=e.offsetWidth,c.height=e.offsetHeight,e.style.display="none",e.style.visibility="visible",c}static scrollInView(e,c){let l=getComputedStyle(e).getPropertyValue("borderTopWidth"),n=l?parseFloat(l):0,i=getComputedStyle(e).getPropertyValue("paddingTop"),r=i?parseFloat(i):0,o=e.getBoundingClientRect(),d=c.getBoundingClientRect().top+document.body.scrollTop-(o.top+document.body.scrollTop)-n-r,u=e.scrollTop,g=e.clientHeight,v=this.getOuterHeight(c);d<0?e.scrollTop=u+d:d+v>g&&(e.scrollTop=u+d-g+v);}static fadeIn(e,c){e.style.opacity=0;let l=+new Date,n=0,i=function(){n=+e.style.opacity.replace(",",".")+(new Date().getTime()-l)/c,e.style.opacity=n,l=+new Date,+n<1&&(window.requestAnimationFrame?window.requestAnimationFrame(i):setTimeout(i,16));};i();}static fadeOut(e,c){var l=1,n=50,i=c,r=n/i;let o=setInterval(()=>{l=l-r,l<=0&&(l=0,clearInterval(o)),e.style.opacity=l;},n);}static getWindowScrollTop(){let e=document.documentElement;return (window.pageYOffset||e.scrollTop)-(e.clientTop||0)}static getWindowScrollLeft(){let e=document.documentElement;return (window.pageXOffset||e.scrollLeft)-(e.clientLeft||0)}static matches(e,c){var l=Element.prototype,n=l.matches||l.webkitMatchesSelector||l.mozMatchesSelector||l.msMatchesSelector||function(i){return [].indexOf.call(document.querySelectorAll(i),this)!==-1};return n.call(e,c)}static getOuterWidth(e,c){let l=e.offsetWidth;if(c){let n=getComputedStyle(e);l+=parseFloat(n.marginLeft)+parseFloat(n.marginRight);}return l}static getHorizontalPadding(e){let c=getComputedStyle(e);return parseFloat(c.paddingLeft)+parseFloat(c.paddingRight)}static getHorizontalMargin(e){let c=getComputedStyle(e);return parseFloat(c.marginLeft)+parseFloat(c.marginRight)}static innerWidth(e){let c=e.offsetWidth,l=getComputedStyle(e);return c+=parseFloat(l.paddingLeft)+parseFloat(l.paddingRight),c}static width(e){let c=e.offsetWidth,l=getComputedStyle(e);return c-=parseFloat(l.paddingLeft)+parseFloat(l.paddingRight),c}static getInnerHeight(e){let c=e.offsetHeight,l=getComputedStyle(e);return c+=parseFloat(l.paddingTop)+parseFloat(l.paddingBottom),c}static getOuterHeight(e,c){let l=e.offsetHeight;if(c){let n=getComputedStyle(e);l+=parseFloat(n.marginTop)+parseFloat(n.marginBottom);}return l}static getHeight(e){let c=e.offsetHeight,l=getComputedStyle(e);return c-=parseFloat(l.paddingTop)+parseFloat(l.paddingBottom)+parseFloat(l.borderTopWidth)+parseFloat(l.borderBottomWidth),c}static getWidth(e){let c=e.offsetWidth,l=getComputedStyle(e);return c-=parseFloat(l.paddingLeft)+parseFloat(l.paddingRight)+parseFloat(l.borderLeftWidth)+parseFloat(l.borderRightWidth),c}static getViewport(){let e=window,c=document,l=c.documentElement,n=c.getElementsByTagName("body")[0],i=e.innerWidth||l.clientWidth||n.clientWidth,r=e.innerHeight||l.clientHeight||n.clientHeight;return {width:i,height:r}}static getOffset(e){var c=e.getBoundingClientRect();return {top:c.top+(window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0),left:c.left+(window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0)}}static replaceElementWith(e,c){let l=e.parentNode;if(!l)throw "Can't replace element";return l.replaceChild(c,e)}static getUserAgent(){if(navigator&&this.isClient())return navigator.userAgent}static isIE(){var e=window.navigator.userAgent,c=e.indexOf("MSIE ");if(c>0)return true;var l=e.indexOf("Trident/");if(l>0){e.indexOf("rv:");return true}var i=e.indexOf("Edge/");return i>0}static isIOS(){return /iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream}static isAndroid(){return /(android)/i.test(navigator.userAgent)}static isTouchDevice(){return "ontouchstart"in window||navigator.maxTouchPoints>0}static appendChild(e,c){if(this.isElement(c))c.appendChild(e);else if(c&&c.el&&c.el.nativeElement)c.el.nativeElement.appendChild(e);else throw "Cannot append "+c+" to "+e}static removeChild(e,c){if(this.isElement(c))c.removeChild(e);else if(c.el&&c.el.nativeElement)c.el.nativeElement.removeChild(e);else throw "Cannot remove "+e+" from "+c}static removeElement(e){"remove"in Element.prototype?e.remove():e.parentNode?.removeChild(e);}static isElement(e){return typeof HTMLElement=="object"?e instanceof HTMLElement:e&&typeof e=="object"&&e!==null&&e.nodeType===1&&typeof e.nodeName=="string"}static calculateScrollbarWidth(e){if(e){let c=getComputedStyle(e);return e.offsetWidth-e.clientWidth-parseFloat(c.borderLeftWidth)-parseFloat(c.borderRightWidth)}else {if(this.calculatedScrollbarWidth!==null)return this.calculatedScrollbarWidth;let c=document.createElement("div");c.className="p-scrollbar-measure",document.body.appendChild(c);let l=c.offsetWidth-c.clientWidth;return document.body.removeChild(c),this.calculatedScrollbarWidth=l,l}}static calculateScrollbarHeight(){if(this.calculatedScrollbarHeight!==null)return this.calculatedScrollbarHeight;let e=document.createElement("div");e.className="p-scrollbar-measure",document.body.appendChild(e);let c=e.offsetHeight-e.clientHeight;return document.body.removeChild(e),this.calculatedScrollbarWidth=c,c}static invokeElementMethod(e,c,l){e[c].apply(e,l);}static clearSelection(){if(window.getSelection&&window.getSelection())window.getSelection()?.empty?window.getSelection()?.empty():window.getSelection()?.removeAllRanges&&(window.getSelection()?.rangeCount||0)>0&&(window.getSelection()?.getRangeAt(0)?.getClientRects()?.length||0)>0&&window.getSelection()?.removeAllRanges();else if(document.selection&&document.selection.empty)try{document.selection.empty();}catch{}}static getBrowser(){if(!this.browser){let e=this.resolveUserAgent();this.browser={},e.browser&&(this.browser[e.browser]=true,this.browser.version=e.version),this.browser.chrome?this.browser.webkit=true:this.browser.webkit&&(this.browser.safari=true);}return this.browser}static resolveUserAgent(){let e=navigator.userAgent.toLowerCase(),c=/(chrome)[ \/]([\w.]+)/.exec(e)||/(webkit)[ \/]([\w.]+)/.exec(e)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(e)||/(msie) ([\w.]+)/.exec(e)||e.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(e)||[];return {browser:c[1]||"",version:c[2]||"0"}}static isInteger(e){return Number.isInteger?Number.isInteger(e):typeof e=="number"&&isFinite(e)&&Math.floor(e)===e}static isHidden(e){return !e||e.offsetParent===null}static isVisible(e){return e&&e.offsetParent!=null}static isExist(e){return e!==null&&typeof e<"u"&&e.nodeName&&e.parentNode}static focus(e,c){e&&document.activeElement!==e&&e.focus(c);}static getFocusableSelectorString(e=""){return `button:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${e}, + [href][clientHeight][clientWidth]:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${e}, + input:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${e}, + select:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${e}, + textarea:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${e}, + [tabIndex]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${e}, + [contenteditable]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${e}, + .p-inputtext:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${e}, + .p-button:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${e}`}static getFocusableElements(e,c=""){let l=this.find(e,this.getFocusableSelectorString(c)),n=[];for(let i of l){let r=getComputedStyle(i);this.isVisible(i)&&r.display!="none"&&r.visibility!="hidden"&&n.push(i);}return n}static getFocusableElement(e,c=""){let l=this.findSingle(e,this.getFocusableSelectorString(c));if(l){let n=getComputedStyle(l);if(this.isVisible(l)&&n.display!="none"&&n.visibility!="hidden")return l}return null}static getFirstFocusableElement(e,c=""){let l=this.getFocusableElements(e,c);return l.length>0?l[0]:null}static getLastFocusableElement(e,c){let l=this.getFocusableElements(e,c);return l.length>0?l[l.length-1]:null}static getNextFocusableElement(e,c=false){let l=a.getFocusableElements(e),n=0;if(l&&l.length>0){let i=l.indexOf(l[0].ownerDocument.activeElement);c?i==-1||i===0?n=l.length-1:n=i-1:i!=-1&&i!==l.length-1&&(n=i+1);}return l[n]}static generateZIndex(){return this.zindex=this.zindex||999,++this.zindex}static getSelection(){return window.getSelection?window.getSelection()?.toString():document.getSelection?document.getSelection()?.toString():document.selection?document.selection.createRange().text:null}static getTargetElement(e,c){if(!e)return null;switch(e){case "document":return document;case "window":return window;case "@next":return c?.nextElementSibling;case "@prev":return c?.previousElementSibling;case "@parent":return c?.parentElement;case "@grandparent":return c?.parentElement?.parentElement;default:let l=typeof e;if(l==="string")return document.querySelector(e);if(l==="object"&&e.hasOwnProperty("nativeElement"))return this.isExist(e.nativeElement)?e.nativeElement:void 0;let i=(r=>!!(r&&r.constructor&&r.call&&r.apply))(e)?e():e;return i&&i.nodeType===9||this.isExist(i)?i:null}}static isClient(){return !!(typeof window<"u"&&window.document&&window.document.createElement)}static getAttribute(e,c){if(e){let l=e.getAttribute(c);return isNaN(l)?l==="true"||l==="false"?l==="true":l:+l}}static calculateBodyScrollbarWidth(){return window.innerWidth-document.documentElement.offsetWidth}static blockBodyScroll(e="p-overflow-hidden"){document.body.style.setProperty("--px-scrollbar-width",this.calculateBodyScrollbarWidth()+"px"),this.addClass(document.body,e);}static unblockBodyScroll(e="p-overflow-hidden"){document.body.style.removeProperty("--px-scrollbar-width"),this.removeClass(document.body,e);}static createElement(e,c={},...l){if(e){let n=document.createElement(e);return this.setAttributes(n,c),n.append(...l),n}}static setAttribute(e,c="",l){this.isElement(e)&&l!==null&&l!==void 0&&e.setAttribute(c,l);}static setAttributes(e,c={}){if(this.isElement(e)){let l=(n,i)=>{let r=e?.$attrs?.[n]?[e?.$attrs?.[n]]:[];return [i].flat().reduce((o,f)=>{if(f!=null){let d=typeof f;if(d==="string"||d==="number")o.push(f);else if(d==="object"){let u=Array.isArray(f)?l(n,f):Object.entries(f).map(([g,v])=>n==="style"&&(v||v===0)?`${g.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()}:${v}`:v?g:void 0);o=u.length?o.concat(u.filter(g=>!!g)):o;}}return o},r)};Object.entries(c).forEach(([n,i])=>{if(i!=null){let r=n.match(/^on(.+)/);r?e.addEventListener(r[1].toLowerCase(),i):n==="pBind"?this.setAttributes(e,i):(i=n==="class"?[...new Set(l("class",i))].join(" ").trim():n==="style"?l("style",i).join(";").trim():i,(e.$attrs=e.$attrs||{})&&(e.$attrs[n]=i),e.setAttribute(n,i));}});}}static isFocusableElement(e,c=""){return this.isElement(e)?e.matches(`button:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${c}, + [href][clientHeight][clientWidth]:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${c}, + input:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${c}, + select:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${c}, + textarea:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${c}, + [tabIndex]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${c}, + [contenteditable]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${c}`):false}}return a})();function X9(){v4$1({variableName:pq("scrollbar.width").name});}function Y9(){E4({variableName:pq("scrollbar.width").name});}var b4=class{element;listener;scrollableParents;constructor(t,e=()=>{}){this.element=t,this.listener=e;}bindScrollListener(){this.scrollableParents=B3.getScrollableParents(this.element);for(let t=0;t{class a extends I{autofocus=mu(false,{alias:"pAutoFocus",transform:yn});focused=false;host=g(Rt$1);onAfterContentChecked(){this.autofocus()===false?this.host.nativeElement.removeAttribute("autofocus"):this.host.nativeElement.setAttribute("autofocus",true),this.focused||this.autoFocus();}onAfterViewChecked(){this.focused||this.autoFocus();}autoFocus(){BG(this.platformId)&&this.autofocus()&&setTimeout(()=>{let e=B3.getFocusableElements(this.host?.nativeElement);e.length===0&&this.host.nativeElement.focus(),e.length>0&&e[0].focus(),this.focused=true;});}static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275dir=xt$1({type:a,selectors:[["","pAutoFocus",""]],inputs:{autofocus:[1,"pAutoFocus","autofocus"]},features:[BE]})}return a})();var J8=` + .p-badge { + display: inline-flex; + border-radius: dt('badge.border.radius'); + align-items: center; + justify-content: center; + padding: dt('badge.padding'); + background: dt('badge.primary.background'); + color: dt('badge.primary.color'); + font-size: dt('badge.font.size'); + font-weight: dt('badge.font.weight'); + min-width: dt('badge.min.width'); + height: dt('badge.height'); + } + + .p-badge-dot { + width: dt('badge.dot.size'); + min-width: dt('badge.dot.size'); + height: dt('badge.dot.size'); + border-radius: 50%; + padding: 0; + } + + .p-badge-circle { + padding: 0; + border-radius: 50%; + } + + .p-badge-secondary { + background: dt('badge.secondary.background'); + color: dt('badge.secondary.color'); + } + + .p-badge-success { + background: dt('badge.success.background'); + color: dt('badge.success.color'); + } + + .p-badge-info { + background: dt('badge.info.background'); + color: dt('badge.info.color'); + } + + .p-badge-warn { + background: dt('badge.warn.background'); + color: dt('badge.warn.color'); + } + + .p-badge-danger { + background: dt('badge.danger.background'); + color: dt('badge.danger.color'); + } + + .p-badge-contrast { + background: dt('badge.contrast.background'); + color: dt('badge.contrast.color'); + } + + .p-badge-sm { + font-size: dt('badge.sm.font.size'); + min-width: dt('badge.sm.min.width'); + height: dt('badge.sm.height'); + } + + .p-badge-lg { + font-size: dt('badge.lg.font.size'); + min-width: dt('badge.lg.min.width'); + height: dt('badge.lg.height'); + } + + .p-badge-xl { + font-size: dt('badge.xl.font.size'); + min-width: dt('badge.xl.min.width'); + height: dt('badge.xl.height'); + } +`;var bt=` + ${J8} +`,Lt={root:({instance:a})=>{let t=a.value(),e=a.size(),c=a.badgeSize(),l=a.severity();return ["p-badge p-component",{"p-badge-circle":oe$1(t)&&String(t).length===1,"p-badge-dot":Gs(t),"p-badge-sm":e==="small"||c==="small","p-badge-lg":e==="large"||c==="large","p-badge-xl":e==="xlarge"||c==="xlarge","p-badge-info":l==="info","p-badge-success":l==="success","p-badge-warn":l==="warn","p-badge-danger":l==="danger","p-badge-secondary":l==="secondary","p-badge-contrast":l==="contrast"}]}},ee=(()=>{class a extends WI{name="badge";style=bt;classes=Lt;static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275prov=b({token:a,factory:a.\u0275fac})}return a})();var ae=new I$1("BADGE_INSTANCE"),I3=(()=>{class a extends I{componentName="Badge";$pcBadge=g(ae,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}badgeSize=mu();size=mu();severity=mu();value=mu();badgeDisabled=mu(false,{transform:yn});_componentStyle=g(ee);displayStyle=gs(()=>this.badgeDisabled()?"none":null);dataP=gs(()=>{let e=this.value(),c=this.severity(),l=this.size();return this.cn({circle:e!=null&&String(e).length===1,empty:e==null,disabled:this.badgeDisabled(),[c]:c,[l]:l})});static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275cmp=Uo({type:a,selectors:[["p-badge"]],hostVars:5,hostBindings:function(c,l){c&2&&(su("data-p",l.dataP()),jM(l.cx("root")),fu("display",l.displayStyle()));},inputs:{badgeSize:[1,"badgeSize"],size:[1,"size"],severity:[1,"severity"],value:[1,"value"],badgeDisabled:[1,"badgeDisabled"]},features:[nN([ee,{provide:ae,useExisting:a},{provide:W,useExisting:a}]),j0$1([L]),BE],decls:1,vars:1,template:function(c,l){c&1&&YM(0),c&2&&fD(l.value());},dependencies:[iq],encapsulation:2})}return a})(),ce=(()=>{class a{static \u0275fac=function(c){return new(c||a)};static \u0275mod=mn({type:a});static \u0275inj=$t$1({imports:[I3,iq,iq]})}return a})();var yt=["content"],xt=["loadingicon"],St=["icon"],Nt=["*"];function wt(a,t){a&1&&qE(0);}function kt(a,t){if(a&1&&au(0,"span",5),a&2){let e=EM(3);jM(e.cn(e.cx("loadingIcon"),"pi-spin",e.$loadingIcon())),zE("pBind",e.ptm("loadingIcon")),su("aria-hidden",true);}}function At(a,t){if(a&1&&(Gm(),au(0,"svg",6)),a&2){let e=EM(3);jM(e.cn(e.cx("loadingIcon"),e.cx("spinnerIcon"),"animate-spin")),zE("pBind",e.ptm("loadingIcon")),su("aria-hidden",true);}}function Dt(a,t){if(a&1&&rM(0,kt,1,4,"span",2)(1,At,1,4,":svg:svg",4),a&2){let e=EM(2);oM(e.$loadingIcon()?0:1);}}function _t(a,t){a&1&&qE(0);}function Ft(a,t){if(a&1&&VE(0,_t,1,0,"ng-container",7),a&2){let e=EM(2);zE("ngTemplateOutlet",e.loadingIconTemplate())("ngTemplateOutletContext",e.getLoadingIconTemplateContext());}}function Tt(a,t){if(a&1&&rM(0,Dt,2,1)(1,Ft,1,2,"ng-container"),a&2){let e=EM();oM(e.loadingIconTemplate()?1:0);}}function Et(a,t){if(a&1&&au(0,"span",5),a&2){let e=EM(2);jM(e.cn(e.cx("icon"),e.$icon())),zE("pBind",e.ptm("icon")),su("data-p",e.dataIconP());}}function Pt(a,t){a&1&&qE(0);}function Bt(a,t){if(a&1&&VE(0,Pt,1,0,"ng-container",7),a&2){let e=EM(2);zE("ngTemplateOutlet",e.iconTemplate())("ngTemplateOutletContext",e.getIconTemplateContext());}}function It(a,t){if(a&1&&(rM(0,Et,1,4,"span",2),rM(1,Bt,1,2,"ng-container")),a&2){let e=EM();oM(e.$icon()&&!e.iconTemplate()?0:-1),n_(),oM(!e.icon()&&e.iconTemplate()?1:-1);}}function Vt(a,t){if(a&1&&(Bc$1(0,"span",5),YM(1),bp()),a&2){let e=EM();jM(e.cx("label")),zE("pBind",e.ptm("label")),su("aria-hidden",e.$icon()&&!e.$label())("data-p",e.dataLabelP()),n_(),fD(e.$label());}}function Ot(a,t){if(a&1&&au(0,"p-badge",3),a&2){let e=EM();zE("value",e.$badge())("severity",e.$badgeSeverity())("pt",e.ptm("pcBadge"))("unstyled",e.unstyled());}}var Rt={root:({instance:a})=>{let t=a.hasIcon(),e=a.label(),c=a.buttonProps(),l=a.loading(),n=a.link(),i=a.severity(),r=a.raised(),o=a.rounded(),f=a.text(),d=a.variant(),u=a.outlined(),g=a.size(),v=a.plain(),C=a.badge(),S=a.hasFluid(),T=a.iconPos();return ["p-button p-component",{"p-button-icon-only":t&&!e&&!c?.label&&!C,"p-button-vertical":(T==="top"||T==="bottom")&&e,"p-button-loading":l||c?.loading,"p-button-link":n||c?.link,[`p-button-${i||c?.severity}`]:i||c?.severity,"p-button-raised":r||c?.raised,"p-button-rounded":o||c?.rounded,"p-button-text":f||d==="text"||c?.text||c?.variant==="text","p-button-outlined":u||d==="outlined"||c?.outlined||c?.variant==="outlined","p-button-sm":g==="small"||c?.size==="small","p-button-lg":g==="large"||c?.size==="large","p-button-plain":v||c?.plain,"p-button-fluid":S}]},loadingIcon:"p-button-loading-icon",icon:({instance:a})=>{let t=a.iconPos(),e=a.buttonProps(),c=a.label(),l=a.icon();return ["p-button-icon",{[`p-button-icon-${t||e?.iconPos}`]:c||e?.label,"p-button-icon-left":(t==="left"||e?.iconPos==="left")&&c||e?.label,"p-button-icon-right":(t==="right"||e?.iconPos==="right")&&c||e?.label,"p-button-icon-top":(t==="top"||e?.iconPos==="top")&&c||e?.label,"p-button-icon-bottom":(t==="bottom"||e?.iconPos==="bottom")&&c||e?.label},l,e?.icon]},spinnerIcon:({instance:a})=>Object.entries(a.cx("icon")).filter(([,t])=>!!t).reduce((t,[e])=>t+` ${e}`,"p-button-loading-icon"),label:"p-button-label"},s1=(()=>{class a extends WI{name="button";style=K8;classes=Rt;static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275prov=b({token:a,factory:a.\u0275fac})}return a})();var te=new I$1("BUTTON_INSTANCE"),Ht=(()=>{class a extends I{componentName="Button";hostName=mu("");$pcButton=g(te,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});_componentStyle=g(s1);onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("host"));}type=mu("button");badge=mu();disabled=mu(false,{transform:yn});raised=mu(false,{transform:yn});rounded=mu(false,{transform:yn});text=mu(false,{transform:yn});plain=mu(false,{transform:yn});outlined=mu(false,{transform:yn});link=mu(false,{transform:yn});tabindex=mu(0,{transform:Bp});size=mu();variant=mu();style=mu();styleClass=mu();badgeSeverity=mu("secondary");ariaLabel=mu();autofocus=mu(false,{transform:yn});iconPos=mu("left");icon=mu();label=mu();loading=mu(false,{transform:yn});loadingIcon=mu();severity=mu();buttonProps=mu();fluid=mu(void 0,{transform:yn});iconOnly=mu(false,{transform:yn});onClick=sz();onFocus=sz();onBlur=sz();contentTemplate=uz("content",{descendants:false});loadingIconTemplate=uz("loadingicon",{descendants:false});iconTemplate=uz("icon",{descendants:false});pcFluid=g(P2,{optional:true,host:true,skipSelf:true});hasFluid=gs(()=>this.fluid()??!!this.pcFluid);$type=gs(()=>this.type()||this.buttonProps()?.type);$ariaLabel=gs(()=>this.ariaLabel()||this.buttonProps()?.ariaLabel);mergedStyle=gs(()=>this.style()||this.buttonProps()?.style);$disabled=gs(()=>this.disabled()||this.loading()||this.buttonProps()?.disabled);$severity=gs(()=>this.severity()||this.buttonProps()?.severity);$tabindex=gs(()=>this.tabindex()||this.buttonProps()?.tabindex);$autofocus=gs(()=>this.autofocus()||this.buttonProps()?.autofocus);$loading=gs(()=>this.loading()||this.buttonProps()?.loading);$icon=gs(()=>this.icon()||this.buttonProps()?.icon);$label=gs(()=>this.label()||this.buttonProps()?.label);$badge=gs(()=>this.badge()||this.buttonProps()?.badge);$loadingIcon=gs(()=>this.loadingIcon()||this.buttonProps()?.loadingIcon);$badgeSeverity=gs(()=>this.badgeSeverity()||this.buttonProps()?.badgeSeverity);showLabel=gs(()=>!this.contentTemplate()&&this.$label());showBadge=gs(()=>!this.contentTemplate()&&this.$badge());getLoadingIconTemplateContext(){return {class:this.cx("loadingIcon"),pt:this.ptm("loadingIcon")}}getIconTemplateContext(){return {class:this.cx("icon"),pt:this.ptm("icon")}}hasIcon=gs(()=>this.$icon()||this.iconTemplate()||this.loadingIcon()||this.loadingIconTemplate());$outlined=gs(()=>this.outlined()||this.variant()==="outlined"||this.buttonProps()?.outlined||this.buttonProps()?.variant==="outlined");$text=gs(()=>this.text()||this.variant()==="text"||this.buttonProps()?.text||this.buttonProps()?.variant==="text");$iconOnly=gs(()=>this.iconOnly()||this.hasIcon()&&!this.$label()&&!this.$badge());dataP=gs(()=>this.cn({[this.size()]:this.size(),"icon-only":this.$iconOnly(),loading:this.$loading(),fluid:this.hasFluid(),rounded:this.rounded(),raised:this.raised(),outlined:this.$outlined(),text:this.$text(),link:this.link(),vertical:(this.iconPos()==="top"||this.iconPos()==="bottom")&&this.$label()}));dataIconP=gs(()=>this.cn({[this.iconPos()]:this.iconPos(),[this.size()]:this.size()}));dataLabelP=gs(()=>this.cn({[this.size()]:this.size(),"icon-only":this.$iconOnly()}));static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275cmp=Uo({type:a,selectors:[["p-button"]],contentQueries:function(c,l,n){c&1&&QE(n,l.contentTemplate,yt,4)(n,l.loadingIconTemplate,xt,4)(n,l.iconTemplate,St,4),c&2&&IM(3);},inputs:{hostName:[1,"hostName"],type:[1,"type"],badge:[1,"badge"],disabled:[1,"disabled"],raised:[1,"raised"],rounded:[1,"rounded"],text:[1,"text"],plain:[1,"plain"],outlined:[1,"outlined"],link:[1,"link"],tabindex:[1,"tabindex"],size:[1,"size"],variant:[1,"variant"],style:[1,"style"],styleClass:[1,"styleClass"],badgeSeverity:[1,"badgeSeverity"],ariaLabel:[1,"ariaLabel"],autofocus:[1,"autofocus"],iconPos:[1,"iconPos"],icon:[1,"icon"],label:[1,"label"],loading:[1,"loading"],loadingIcon:[1,"loadingIcon"],severity:[1,"severity"],buttonProps:[1,"buttonProps"],fluid:[1,"fluid"],iconOnly:[1,"iconOnly"]},outputs:{onClick:"onClick",onFocus:"onFocus",onBlur:"onBlur"},features:[nN([s1,{provide:te,useExisting:a},{provide:W,useExisting:a}]),j0$1([L]),BE],ngContentSelectors:Nt,decls:7,vars:18,consts:[["pRipple","",3,"click","focus","blur","disabled","pAutoFocus","pBind"],[4,"ngTemplateOutlet"],[3,"class","pBind"],[3,"value","severity","pt","unstyled"],["data-p-icon","spinner",3,"class","pBind"],[3,"pBind"],["data-p-icon","spinner",3,"pBind"],[4,"ngTemplateOutlet","ngTemplateOutletContext"]],template:function(c,l){c&1&&(uu(),Bc$1(0,"button",0),cu("click",function(i){return l.onClick.emit(i)})("focus",function(i){return l.onFocus.emit(i)})("blur",function(i){return l.onBlur.emit(i)}),lu(1),VE(2,wt,1,0,"ng-container",1),rM(3,Tt,2,1),rM(4,It,2,2),rM(5,Vt,2,6,"span",2),rM(6,Ot,1,4,"p-badge",3),bp()),c&2&&(PM(l.mergedStyle()),jM(l.cn(l.cx("root"),l.styleClass(),l.buttonProps()?.styleClass)),zE("disabled",l.$disabled())("pAutoFocus",l.$autofocus())("pBind",l.ptm("root")),su("type",l.$type())("aria-label",l.$ariaLabel())("tabindex",l.$tabindex())("data-p",l.dataP())("data-p-disabled",l.$disabled())("data-p-severity",l.$severity()),n_(2),zE("ngTemplateOutlet",l.contentTemplate()),n_(),oM(l.$loading()?3:-1),n_(),oM(l.$loading()?-1:4),n_(),oM(l.showLabel()?5:-1),n_(),oM(l.showBadge()?6:-1));},dependencies:[cA,z4,Z8,Q8,ce,I3,L],encapsulation:2})}return a})(),le=new I$1("BUTTON_ICON_INSTANCE"),ne=(()=>{class a extends I{componentName="ButtonIcon";pButtonIconPT=mu();pButtonUnstyled=mu();$pcButtonIcon=g(le,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});constructor(){super(),Ui(()=>{let e=this.pButtonIconPT();e&&this.directivePT.set(e);}),Ui(()=>{this.pButtonUnstyled()&&this.directiveUnstyled.set(this.pButtonUnstyled());});}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}static \u0275fac=function(c){return new(c||a)};static \u0275dir=xt$1({type:a,selectors:[["","pButtonIcon",""]],hostVars:2,hostBindings:function(c,l){c&2&&rD("p-button-icon",!l.$unstyled()&&true);},inputs:{pButtonIconPT:[1,"pButtonIconPT"],pButtonUnstyled:[1,"pButtonUnstyled"]},features:[nN([s1,{provide:le,useExisting:a},{provide:W,useExisting:a}]),j0$1([L]),BE]})}return a})(),ie=new I$1("BUTTON_LABEL_INSTANCE"),re=(()=>{class a extends I{componentName="ButtonLabel";pButtonLabelPT=mu();pButtonLabelUnstyled=mu();$pcButtonLabel=g(ie,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});constructor(){super(),Ui(()=>{let e=this.pButtonLabelPT();e&&this.directivePT.set(e);}),Ui(()=>{this.pButtonLabelUnstyled()&&this.directiveUnstyled.set(this.pButtonLabelUnstyled());});}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}static \u0275fac=function(c){return new(c||a)};static \u0275dir=xt$1({type:a,selectors:[["","pButtonLabel",""]],hostVars:2,hostBindings:function(c,l){c&2&&rD("p-button-label",!l.$unstyled()&&true);},inputs:{pButtonLabelPT:[1,"pButtonLabelPT"],pButtonLabelUnstyled:[1,"pButtonLabelUnstyled"]},features:[nN([s1,{provide:ie,useExisting:a},{provide:W,useExisting:a}]),j0$1([L]),BE]})}return a})(),oe=new I$1("BUTTON_DIRECTIVE_INSTANCE"),Ei=(()=>{class a extends I{componentName="Button";pButton=mu(void 0,{alias:"pButton"});pButtonPT=mu();pButtonUnstyled=mu();hostName=mu("");text=mu(false,{transform:yn});plain=mu(false,{transform:yn});raised=mu(false,{transform:yn});size=mu();outlined=mu(false,{transform:yn});link=mu(false,{transform:yn});rounded=mu(false,{transform:yn});fluid=mu(void 0,{transform:yn});variant=mu();iconOnly=mu(false,{transform:yn});loading=mu(false,{transform:yn});severity=mu();$pcButtonDirective=g(oe,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});pcFluid=g(P2,{optional:true,host:true,skipSelf:true});_componentStyle=g(s1);iconSignal=uz(ne,{descendants:false});labelSignal=uz(re,{descendants:false});isIconOnly=gs(()=>!!(!this.labelSignal()&&this.iconSignal()));styleClass=gs(()=>{if(this.$unstyled())return "";let e=this.pButton(),c=typeof e=="object"&&e!==null?e:{},l=typeof e=="string"&&e!==""?e:void 0,n=c.severity??l??this.severity(),i=c.size??this.size(),r=c.variant??this.variant(),o=this.cn("p-button","p-component",{"p-button-icon-only":this.iconOnly()||c.iconOnly||this.isIconOnly(),"p-button-loading":this.loading(),"p-disabled":this.loading(),"p-button-text":this.text()||r==="text","p-button-outlined":this.outlined()||r==="outlined","p-button-link":this.link()||r==="link","p-button-plain":this.plain()||c.plain,"p-button-raised":this.raised()||c.raised,"p-button-rounded":this.rounded()||c.rounded,"p-button-sm":i==="small","p-button-lg":i==="large","p-button-fluid":this.fluid()??c.fluid??!!this.pcFluid,[`p-button-${n}`]:!!n});return c.styleClass?`${o} ${c.styleClass}`:o});hostStyle=gs(()=>{let e=this.pButton();return (typeof e=="object"&&e!==null?e:{}).style??null});constructor(){super(),Ui(()=>{let e=this.pButtonPT();e&&this.directivePT.set(e);}),Ui(()=>{let e=this.pButtonUnstyled();e!==void 0&&this.directiveUnstyled.set(e);});}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}static \u0275fac=function(c){return new(c||a)};static \u0275dir=xt$1({type:a,selectors:[["","pButton",""]],contentQueries:function(c,l,n){c&1&&QE(n,l.iconSignal,ne,4)(n,l.labelSignal,re,4),c&2&&IM(2);},hostVars:4,hostBindings:function(c,l){c&2&&(PM(l.hostStyle()),jM(l.styleClass()));},inputs:{pButton:[1,"pButton"],pButtonPT:[1,"pButtonPT"],pButtonUnstyled:[1,"pButtonUnstyled"],hostName:[1,"hostName"],text:[1,"text"],plain:[1,"plain"],raised:[1,"raised"],size:[1,"size"],outlined:[1,"outlined"],link:[1,"link"],rounded:[1,"rounded"],fluid:[1,"fluid"],variant:[1,"variant"],iconOnly:[1,"iconOnly"],loading:[1,"loading"],severity:[1,"severity"]},features:[nN([s1,{provide:oe,useExisting:a},{provide:W,useExisting:a}]),j0$1([L,z4]),BE]})}return a})(),Pi=(()=>{class a{static \u0275fac=function(c){return new(c||a)};static \u0275mod=mn({type:a});static \u0275inj=$t$1({imports:[Ht]})}return a})();var L4=(()=>{class a extends I{modelValue=U(void 0);$filled=gs(()=>oe$1(this.modelValue()));writeModelValue(e){this.modelValue.set(e);}static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275dir=xt$1({type:a,features:[BE]})}return a})();var se=` + .p-inputtext { + font-weight: dt('inputtext.font.weight'); + font-size: dt('inputtext.font.size'); + color: dt('inputtext.color'); + background: dt('inputtext.background'); + padding-block: dt('inputtext.padding.y'); + padding-inline: dt('inputtext.padding.x'); + border: 1px solid dt('inputtext.border.color'); + transition: + background dt('inputtext.transition.duration'), + color dt('inputtext.transition.duration'), + border-color dt('inputtext.transition.duration'), + outline-color dt('inputtext.transition.duration'), + box-shadow dt('inputtext.transition.duration'); + appearance: none; + border-radius: dt('inputtext.border.radius'); + outline-color: transparent; + box-shadow: dt('inputtext.shadow'); + } + + .p-inputtext:enabled:hover { + border-color: dt('inputtext.hover.border.color'); + } + + .p-inputtext:enabled:focus { + border-color: dt('inputtext.focus.border.color'); + box-shadow: dt('inputtext.focus.ring.shadow'); + outline: dt('inputtext.focus.ring.width') dt('inputtext.focus.ring.style') dt('inputtext.focus.ring.color'); + outline-offset: dt('inputtext.focus.ring.offset'); + } + + .p-inputtext.p-invalid { + border-color: dt('inputtext.invalid.border.color'); + } + + .p-inputtext.p-variant-filled { + background: dt('inputtext.filled.background'); + } + + .p-inputtext.p-variant-filled:enabled:hover { + background: dt('inputtext.filled.hover.background'); + } + + .p-inputtext.p-variant-filled:enabled:focus { + background: dt('inputtext.filled.focus.background'); + } + + .p-inputtext:disabled { + opacity: 1; + background: dt('inputtext.disabled.background'); + color: dt('inputtext.disabled.color'); + } + + .p-inputtext::placeholder { + color: dt('inputtext.placeholder.color'); + } + + .p-inputtext.p-invalid::placeholder { + color: dt('inputtext.invalid.placeholder.color'); + } + + .p-inputtext-sm { + font-size: dt('inputtext.sm.font.size'); + padding-block: dt('inputtext.sm.padding.y'); + padding-inline: dt('inputtext.sm.padding.x'); + } + + .p-inputtext-lg { + font-size: dt('inputtext.lg.font.size'); + padding-block: dt('inputtext.lg.padding.y'); + padding-inline: dt('inputtext.lg.padding.x'); + } + + .p-inputtext-fluid { + width: 100%; + } +`;var $t={root:({instance:a})=>["p-inputtext p-component",{"p-filled":a.$filled(),"p-inputtext-sm":a.pSize()==="small","p-inputtext-lg":a.pSize()==="large","p-invalid":a.invalid(),"p-variant-filled":a.$variant()==="filled","p-inputtext-fluid":a.hasFluid}]},fe=(()=>{class a extends WI{name="inputtext";style=se;classes=$t;static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275prov=b({token:a,factory:a.\u0275fac})}return a})();var de=new I$1("INPUTTEXT_INSTANCE"),ar=(()=>{class a extends L4{componentName="InputText";hostName=mu("");pInputTextPT=mu();pInputTextUnstyled=mu();bindDirectiveInstance=g(L,{self:true});$pcInputText=g(de,{optional:true,skipSelf:true})??void 0;ngControl=g(v2,{optional:true,self:true});pcFluid=g(P2,{optional:true,host:true,skipSelf:true});pSize=mu(void 0,{alias:"pSize"});variant=mu();fluid=mu(void 0,{transform:yn});invalid=mu(void 0,{transform:yn});$variant=gs(()=>this.variant()||this.config.inputVariant());_componentStyle=g(fe);get hasFluid(){return this.fluid()??!!this.pcFluid}dataP=gs(()=>this.cn({invalid:this.invalid(),fluid:this.hasFluid,filled:this.$variant()==="filled",[this.pSize()]:this.pSize()}));constructor(){super(),Ui(()=>{let e=this.pInputTextPT();e&&this.directivePT.set(e);}),Ui(()=>{this.pInputTextUnstyled()&&this.directiveUnstyled.set(this.pInputTextUnstyled());});}onAfterViewInit(){this.writeModelValue(this.ngControl?.value??this.el.nativeElement.value),this.cd.detectChanges();}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("root"));}onDoCheck(){this.writeModelValue(this.ngControl?.value??this.el.nativeElement.value);}onInput(){this.writeModelValue(this.ngControl?.value??this.el.nativeElement.value);}static \u0275fac=function(c){return new(c||a)};static \u0275dir=xt$1({type:a,selectors:[["","pInputText",""]],hostVars:3,hostBindings:function(c,l){c&1&&cu("input",function(){return l.onInput()}),c&2&&(su("data-p",l.dataP()),jM(l.cx("root")));},inputs:{hostName:[1,"hostName"],pInputTextPT:[1,"pInputTextPT"],pInputTextUnstyled:[1,"pInputTextUnstyled"],pSize:[1,"pSize"],variant:[1,"variant"],fluid:[1,"fluid"],invalid:[1,"invalid"]},features:[nN([fe,{provide:de,useExisting:a},{provide:W,useExisting:a}]),j0$1([L]),BE]})}return a})(),cr=(()=>{class a{static \u0275fac=function(c){return new(c||a)};static \u0275mod=mn({type:a});static \u0275inj=$t$1({})}return a})();var ue=` + .p-floatlabel { + display: block; + position: relative; + } + + .p-floatlabel label { + position: absolute; + pointer-events: none; + top: 50%; + transform: translateY(-50%); + transition-property: all; + transition-timing-function: ease; + line-height: 1; + font-size: dt('floatlabel.font.size'); + font-weight: dt('floatlabel.font.weight'); + inset-inline-start: dt('floatlabel.position.x'); + color: dt('floatlabel.color'); + transition-duration: dt('floatlabel.transition.duration'); + } + + .p-floatlabel:has(.p-textarea) label { + top: dt('floatlabel.position.y'); + transform: translateY(0); + } + + .p-floatlabel:has(.p-inputicon:first-child) label { + inset-inline-start: calc((dt('form.field.padding.x') * 2) + dt('icon.size')); + } + + .p-floatlabel:has(input:focus) label, + .p-floatlabel:has(input.p-filled) label, + .p-floatlabel:has(input:-webkit-autofill) label, + .p-floatlabel:has(textarea:focus) label, + .p-floatlabel:has(textarea.p-filled) label, + .p-floatlabel:has(.p-inputwrapper-focus) label, + .p-floatlabel:has(.p-inputwrapper-filled) label, + .p-floatlabel:has(input[placeholder]) label, + .p-floatlabel:has(textarea[placeholder]) label { + top: dt('floatlabel.over.active.top'); + transform: translateY(0); + font-size: dt('floatlabel.active.font.size'); + font-weight: dt('floatlabel.active.font.weight'); + } + + .p-floatlabel:has(input.p-filled) label, + .p-floatlabel:has(textarea.p-filled) label, + .p-floatlabel:has(.p-inputwrapper-filled) label { + color: dt('floatlabel.active.color'); + } + + .p-floatlabel:has(input:focus) label, + .p-floatlabel:has(input:-webkit-autofill) label, + .p-floatlabel:has(textarea:focus) label, + .p-floatlabel:has(.p-inputwrapper-focus) label { + color: dt('floatlabel.focus.color'); + } + + .p-floatlabel-in .p-inputtext, + .p-floatlabel-in .p-textarea, + .p-floatlabel-in .p-select-label, + .p-floatlabel-in .p-multiselect-label, + .p-floatlabel-in .p-multiselect-label:has(.p-chip), + .p-floatlabel-in .p-autocomplete-input-multiple, + .p-floatlabel-in .p-cascadeselect-label, + .p-floatlabel-in .p-treeselect-label { + padding-block-start: dt('floatlabel.in.input.padding.top'); + padding-block-end: dt('floatlabel.in.input.padding.bottom'); + } + + .p-floatlabel-in:has(input:focus) label, + .p-floatlabel-in:has(input.p-filled) label, + .p-floatlabel-in:has(input:-webkit-autofill) label, + .p-floatlabel-in:has(textarea:focus) label, + .p-floatlabel-in:has(textarea.p-filled) label, + .p-floatlabel-in:has(.p-inputwrapper-focus) label, + .p-floatlabel-in:has(.p-inputwrapper-filled) label, + .p-floatlabel-in:has(input[placeholder]) label, + .p-floatlabel-in:has(textarea[placeholder]) label { + top: dt('floatlabel.in.active.top'); + } + + .p-floatlabel-on:has(input:focus) label, + .p-floatlabel-on:has(input.p-filled) label, + .p-floatlabel-on:has(input:-webkit-autofill) label, + .p-floatlabel-on:has(textarea:focus) label, + .p-floatlabel-on:has(textarea.p-filled) label, + .p-floatlabel-on:has(.p-inputwrapper-focus) label, + .p-floatlabel-on:has(.p-inputwrapper-filled) label, + .p-floatlabel-on:has(input[placeholder]) label, + .p-floatlabel-on:has(textarea[placeholder]) label { + top: 0; + transform: translateY(-50%); + border-radius: dt('floatlabel.on.border.radius'); + background: dt('floatlabel.on.active.background'); + padding: dt('floatlabel.on.active.padding'); + } + + .p-floatlabel:has([class^='p-'][class$='-fluid']) { + width: 100%; + } + + .p-floatlabel:has(.p-invalid) label { + color: dt('floatlabel.invalid.color'); + } +`;var Ut=["*"],jt={root:({instance:a})=>{let t=a.variant();return ["p-floatlabel",{"p-floatlabel-over":t==="over","p-floatlabel-on":t==="on","p-floatlabel-in":t==="in"}]}},me=(()=>{class a extends WI{name="floatlabel";style=ue;classes=jt;static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275prov=b({token:a,factory:a.\u0275fac})}return a})();var pe=new I$1("FLOATLABEL_INSTANCE"),vr=(()=>{class a extends I{componentName="FloatLabel";_componentStyle=g(me);$pcFloatLabel=g(pe,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}variant=mu("over");static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275cmp=Uo({type:a,selectors:[["p-floatlabel"],["p-float-label"]],hostVars:2,hostBindings:function(c,l){c&2&&jM(l.cx("root"));},inputs:{variant:[1,"variant"]},features:[nN([me,{provide:pe,useExisting:a},{provide:W,useExisting:a}]),j0$1([L]),BE],ngContentSelectors:Ut,decls:1,vars:0,template:function(c,l){c&1&&(uu(),lu(0));},dependencies:[iq,o1],encapsulation:2})}return a})();var Wt=["*"],Gt={root:"p-inputicon"},he=(()=>{class a extends WI{name="inputicon";classes=Gt;static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275prov=b({token:a,factory:a.\u0275fac})}return a})(),ve=new I$1("INPUTICON_INSTANCE"),kr=(()=>{class a extends I{componentName="InputIcon";hostName=mu("");_componentStyle=g(he);$pcInputIcon=g(ve,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275cmp=Uo({type:a,selectors:[["p-inputicon"]],hostVars:2,hostBindings:function(c,l){c&2&&jM(l.cx("root"));},inputs:{hostName:[1,"hostName"]},features:[nN([he,{provide:ve,useExisting:a},{provide:W,useExisting:a}]),j0$1([L]),BE],ngContentSelectors:Wt,decls:1,vars:0,template:function(c,l){c&1&&(uu(),lu(0));},dependencies:[iq],encapsulation:2})}return a})();var ge=` + .p-iconfield { + position: relative; + display: block; + } + + .p-inputicon { + position: absolute; + top: 50%; + margin-top: calc(-1 * (dt('icon.size') / 2)); + color: dt('iconfield.icon.color'); + line-height: 1; + z-index: 1; + } + + .p-iconfield .p-inputicon:first-child { + inset-inline-start: dt('form.field.padding.x'); + } + + .p-iconfield .p-inputicon:last-child { + inset-inline-end: dt('form.field.padding.x'); + } + + .p-iconfield .p-inputtext:not(:first-child), + .p-iconfield .p-inputwrapper:not(:first-child) .p-inputtext { + padding-inline-start: calc((dt('form.field.padding.x') * 2) + dt('icon.size')); + } + + .p-iconfield .p-inputtext:not(:last-child) { + padding-inline-end: calc((dt('form.field.padding.x') * 2) + dt('icon.size')); + } + + .p-iconfield:has(.p-inputfield-sm) .p-inputicon { + font-size: dt('form.field.sm.font.size'); + width: dt('form.field.sm.font.size'); + height: dt('form.field.sm.font.size'); + margin-top: calc(-1 * (dt('form.field.sm.font.size') / 2)); + } + + .p-iconfield:has(.p-inputfield-lg) .p-inputicon { + font-size: dt('form.field.lg.font.size'); + width: dt('form.field.lg.font.size'); + height: dt('form.field.lg.font.size'); + margin-top: calc(-1 * (dt('form.field.lg.font.size') / 2)); + } +`;var qt=["*"],Xt={root:"p-iconfield"},ze=(()=>{class a extends WI{name="iconfield";style=ge;classes=Xt;static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275prov=b({token:a,factory:a.\u0275fac})}return a})();var Me=new I$1("ICONFIELD_INSTANCE"),Hr=(()=>{class a extends I{componentName="IconField";hostName=mu("");_componentStyle=g(ze);$pcIconField=g(Me,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptms(["host","root"]));}iconPosition=mu("left");static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275cmp=Uo({type:a,selectors:[["p-iconfield"],["p-icon-field"]],hostVars:2,hostBindings:function(c,l){c&2&&jM(l.cx("root"));},inputs:{hostName:[1,"hostName"],iconPosition:[1,"iconPosition"]},features:[nN([ze,{provide:Me,useExisting:a},{provide:W,useExisting:a}]),j0$1([L]),BE],ngContentSelectors:qt,decls:1,vars:0,template:function(c,l){c&1&&(uu(),lu(0));},dependencies:[o1],encapsulation:2})}return a})();var be=(()=>{class a extends L4{required=mu(void 0,{transform:yn});invalid=mu(void 0,{transform:yn});disabled=mu(void 0,{transform:yn});name=mu();_disabled=U(false);$disabled=gs(()=>this.disabled()||this._disabled());onModelChange=()=>{};onModelTouched=()=>{};writeDisabledState(e){this._disabled.set(e);}writeControlValue(e,c){}writeValue(e){this.writeControlValue(e,this.writeModelValue.bind(this));}registerOnChange(e){this.onModelChange=e;}registerOnTouched(e){this.onModelTouched=e;}setDisabledState(e){this.writeDisabledState(e),this.cd.markForCheck();}static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275dir=xt$1({type:a,inputs:{required:[1,"required"],invalid:[1,"invalid"],disabled:[1,"disabled"],name:[1,"name"]},features:[BE]})}return a})();var Qr=(()=>{class a extends be{pcFluid=g(P2,{optional:true,host:true,skipSelf:true});fluid=mu(void 0,{transform:yn});variant=mu();size=mu();inputSize=mu();pattern=mu();min=mu();max=mu();step=mu();minlength=mu();maxlength=mu();$variant=gs(()=>this.variant()||this.config.inputVariant());$pattern=gs(()=>{let e=this.pattern();return typeof e=="string"&&e.length>0?e:void 0});get hasFluid(){return this.fluid()??!!this.pcFluid}static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275dir=xt$1({type:a,inputs:{fluid:[1,"fluid"],variant:[1,"variant"],size:[1,"size"],inputSize:[1,"inputSize"],pattern:[1,"pattern"],min:[1,"min"],max:[1,"max"],step:[1,"step"],minlength:[1,"minlength"],maxlength:[1,"maxlength"]},features:[BE]})}return a})();var Yt=(a,t)=>t[1].key||a;function Kt(a,t){if(a&1&&(Gm(),GE(0,"path")),a&2){let e=EM().$implicit;su("d",e[1].d)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("fill-rule",e[1].fillRule)("clip-rule",e[1].clipRule)("stroke",e[1].stroke)("stroke-width",e[1].strokeWidth)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function Qt(a,t){if(a&1&&(Gm(),GE(0,"circle")),a&2){let e=EM().$implicit;su("cx",e[1].cx)("cy",e[1].cy)("r",e[1].r)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Zt(a,t){if(a&1&&(Gm(),GE(0,"rect")),a&2){let e=EM().$implicit;su("x",e[1].x)("y",e[1].y)("width",e[1].width)("height",e[1].height)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function Jt(a,t){if(a&1&&(Gm(),GE(0,"line")),a&2){let e=EM().$implicit;su("x1",e[1].x1)("y1",e[1].y1)("x2",e[1].x2)("y2",e[1].y2)("stroke",e[1].stroke)("stroke-opacity",e[1].strokeOpacity)("opacity",e[1].opacity);}}function el(a,t){if(a&1&&(Gm(),GE(0,"polyline")),a&2){let e=EM().$implicit;su("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function al(a,t){if(a&1&&(Gm(),GE(0,"polygon")),a&2){let e=EM().$implicit;su("points",e[1].points)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function cl(a,t){if(a&1&&(Gm(),GE(0,"ellipse")),a&2){let e=EM().$implicit;su("cx",e[1].cx)("cy",e[1].cy)("rx",e[1].rx)("ry",e[1].ry)("fill",e[1].fill)("fill-opacity",e[1].fillOpacity)("opacity",e[1].opacity);}}function tl(a,t){if(a&1&&rM(0,Kt,1,9,":svg:path")(1,Qt,1,6,":svg:circle")(2,Zt,1,9,":svg:rect")(3,Jt,1,7,":svg:line")(4,el,1,4,":svg:polyline")(5,al,1,4,":svg:polygon")(6,cl,1,7,":svg:ellipse"),a&2){let e,c=t.$implicit;oM((e=c[0])==="path"?0:e==="circle"?1:e==="rect"?2:e==="line"?3:e==="polyline"?4:e==="polygon"?5:e==="ellipse"?6:-1);}}var co=(()=>{class a extends M4{constructor(){super(),this._icon=e;}static \u0275fac=function(c){return new(c||a)};static \u0275cmp=Uo({type:a,selectors:[["svg","data-p-icon","times"]],features:[BE],decls:2,vars:0,template:function(c,l){c&1&&aM(0,tl,7,1,null,null,Yt),c&2&&cM(l.iconNodes());},encapsulation:2,changeDetection:1})}return a})();var ll=Object.defineProperty,Le=Object.getOwnPropertySymbols,nl=Object.prototype.hasOwnProperty,il=Object.prototype.propertyIsEnumerable,Ce=(a,t,e)=>t in a?ll(a,t,{enumerable:true,configurable:true,writable:true,value:e}):a[t]=e,ye=(a,t)=>{for(var e in t||(t={}))nl.call(t,e)&&Ce(a,e,t[e]);if(Le)for(var e of Le(t))il.call(t,e)&&Ce(a,e,t[e]);return a},rl=(a,t,e)=>new Promise((c,l)=>{var n=o=>{try{r(e.next(o));}catch(f){l(f);}},i=o=>{try{r(e.throw(o));}catch(f){l(f);}},r=o=>o.done?c(o.value):Promise.resolve(o.value).then(n,i);r((e=e.apply(a,t)).next());}),C4="animation",D1="transition",ol=["data-enter-phase","data-enter-from","data-enter-to","data-enter-active","data-leave-phase","data-leave-from","data-leave-to","data-leave-active"];function sl(a){return a?a.disabled||!!(a.safe&&B4()):false}function fl(a,t){return a?ye(ye({},a),Object.entries(t).reduce((e,[c,l])=>{var n;return e[c]=(n=a[c])!=null?n:l,e},{})):t}function dl(a){let{name:t,enterClass:e,leaveClass:c}=a||{};return {enter:{from:e?.from||`${t}-enter-from`,to:e?.to||`${t}-enter-to`,active:e?.active||`${t}-enter-active`},leave:{from:c?.from||`${t}-leave-from`,to:c?.to||`${t}-leave-to`,active:c?.active||`${t}-leave-active`}}}function ul(a){return {enter:{onBefore:a?.onBeforeEnter,onStart:a?.onEnter,onAfter:a?.onAfterEnter,onCancelled:a?.onEnterCancelled},leave:{onBefore:a?.onBeforeLeave,onStart:a?.onLeave,onAfter:a?.onAfterLeave,onCancelled:a?.onLeaveCancelled}}}function ml(a,t){let e=window.getComputedStyle(a),c=v=>{let C=e[`${v}Delay`],S=e[`${v}Duration`];return [C.split(", ").map(m4$1),S.split(", ").map(m4$1)]},[l,n]=c(D1),[i,r]=c(C4),o=Math.max(...n.map((v,C)=>v+l[C])),f=Math.max(...r.map((v,C)=>v+i[C])),d,u=0,g=0;return t===D1?o>0&&(d=D1,u=o,g=n.length):t===C4?f>0&&(d=C4,u=f,g=r.length):(u=Math.max(o,f),d=u>0?o>f?D1:C4:void 0,g=d?d===D1?n.length:r.length:0),{type:d,timeout:u,count:g}}function y4(a,t){return typeof a=="number"?a:typeof a=="object"&&a[t]!=null?a[t]:null}function xe(a,t){return a?`--${a}-${t}`:`--${t}`}function f1(a,t,e){let{autoHeight:c,autoWidth:l,cssVarPrefix:n}=t,i=typeof e=="object";c&&W4$1(a,xe(n,"height"),i?e.height:e),l&&W4$1(a,xe(n,"width"),i?e.width:e);}function Se(a,t){if(!t.autoHeight&&!t.autoWidth)return;let e=xI(a);f1(a,t,{height:(a.scrollHeight||e.height)+"px",width:(a.scrollWidth||e.width)+"px"});}function pl(a,t){a.setAttribute(`data-${t}-phase`,"");}function Ne(a,t,e){a.removeAttribute("data-enter-from"),a.removeAttribute("data-enter-to"),a.removeAttribute("data-leave-from"),a.removeAttribute("data-leave-to"),a.setAttribute(`data-${t}-${e}`,""),a.setAttribute(`data-${t}-active`,"");}function we(a){a.removeAttribute("data-enter-phase"),a.removeAttribute("data-leave-phase");}function hl(a){ol.forEach(t=>a.removeAttribute(t));}var vl={name:"p",safe:true,disabled:false,enter:true,leave:true,autoHeight:true,autoWidth:true,cssVarPrefix:""};function V3(a,t){if(!a)throw new Error("Element is required.");let e={},c=false,l={},n=null,i={},r=d=>{if(Object.assign(e,fl(d,vl)),!e.enter&&!e.leave)throw new Error("Enter or leave must be true.");i=ul(e),c=sl(e),l=dl(e),n=null;},o=d=>rl(null,null,function*(){n?.();let u=a,{onBefore:g,onStart:v,onAfter:C,onCancelled:S}=i[d]||{},T={element:a};if(pl(u,d),c){g?.(T),v?.(T),C?.(T),we(u);return}let{from:U,active:K,to:G}=l[d]||{};return g?.(T),d==="enter"?f1(u,e,"0px"):d==="leave"&&Se(u,e),AI(u,U),AI(u,K),Ne(u,d,"from"),u.offsetHeight,d==="enter"?Se(u,e):d==="leave"&&f1(u,e,"0px"),RI(u,U),AI(u,G),Ne(u,d,"to"),v?.(T),new Promise(z2=>{let f2=y4(e.duration,d),j2=()=>{RI(u,[G,K]),n=null,hl(u),we(u);},w4=()=>{j2(),C?.(T),z2(),d==="enter"?f1(u,e,"auto"):d==="leave"&&f1(u,e,"0px");};n=()=>{j2(),S?.(T),z2();},zl(u,e.type,f2,w4);})});r(t),f1(a,e,"0px");let f={enter:()=>e.enter?o("enter"):Promise.resolve(),leave:()=>e.leave?o("leave"):Promise.resolve(),cancel:()=>{n?.(),n=null;},update:(d,u)=>{if(!d)throw new Error("Element is required.");a=d,f.cancel(),r(u);}};return e.appear&&f.enter(),f}var gl=0;function zl(a,t,e,c){let l=a._motionEndId=++gl,n=()=>{l===a._motionEndId&&c();};if(e!=null)return setTimeout(n,e);let{type:i,timeout:r,count:o}=ml(a,t);if(!i){c();return}let f=i+"end",d=0,u=()=>{a.removeEventListener(f,g,true),n();},g=v=>{v.target===a&&++d>=o&&u();};a.addEventListener(f,g,{capture:true,once:true}),setTimeout(()=>{d{class a extends WI{name="motion";style=Ll;classes=Cl;static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275prov=b({token:a,factory:a.\u0275fac})}return a})();var ke=new I$1("MOTION_INSTANCE"),R3=(()=>{class a extends I{$pcMotion=g(ke,{optional:true,skipSelf:true})??void 0;bindDirectiveInstance=g(L,{self:true});onAfterViewChecked(){let c=this.options()?.root||{};this.bindDirectiveInstance.setAttrs(l(l({},this.ptms(["host","root"])),c));}_componentStyle=g(O3);visible=mu(false);mountOnEnter=mu(true);unmountOnLeave=mu(true);name=mu(void 0);type=mu(void 0);safe=mu(void 0);disabled=mu(false);appear=mu(false);enter=mu(true);leave=mu(true);duration=mu(void 0);hideStrategy=mu("display");enterFromClass=mu(void 0);enterToClass=mu(void 0);enterActiveClass=mu(void 0);leaveFromClass=mu(void 0);leaveToClass=mu(void 0);leaveActiveClass=mu(void 0);options=mu({});onBeforeEnter=sz();onEnter=sz();onAfterEnter=sz();onEnterCancelled=sz();onBeforeLeave=sz();onLeave=sz();onAfterLeave=sz();onLeaveCancelled=sz();motionOptions=gs(()=>{let e=this.options();return {name:e.name??this.name(),type:e.type??this.type(),safe:e.safe??this.safe(),disabled:e.disabled??this.disabled(),appear:false,enter:e.enter??this.enter(),leave:e.leave??this.leave(),duration:e.duration??this.duration(),enterClass:{from:e.enterClass?.from??(e.name?void 0:this.enterFromClass()),to:e.enterClass?.to??(e.name?void 0:this.enterToClass()),active:e.enterClass?.active??(e.name?void 0:this.enterActiveClass())},leaveClass:{from:e.leaveClass?.from??(e.name?void 0:this.leaveFromClass()),to:e.leaveClass?.to??(e.name?void 0:this.leaveToClass()),active:e.leaveClass?.active??(e.name?void 0:this.leaveActiveClass())},onBeforeEnter:e.onBeforeEnter??this.handleBeforeEnter,onEnter:e.onEnter??this.handleEnter,onAfterEnter:e.onAfterEnter??this.handleAfterEnter,onEnterCancelled:e.onEnterCancelled??this.handleEnterCancelled,onBeforeLeave:e.onBeforeLeave??this.handleBeforeLeave,onLeave:e.onLeave??this.handleLeave,onAfterLeave:e.onAfterLeave??this.handleAfterLeave,onLeaveCancelled:e.onLeaveCancelled??this.handleLeaveCancelled}});motion;isInitialMount=true;cancelled=false;destroyed=false;rendered=U(false);handleBeforeEnter=e=>!this.destroyed&&this.onBeforeEnter.emit(e);handleEnter=e=>!this.destroyed&&this.onEnter.emit(e);handleAfterEnter=e=>!this.destroyed&&this.onAfterEnter.emit(e);handleEnterCancelled=e=>!this.destroyed&&this.onEnterCancelled.emit(e);handleBeforeLeave=e=>!this.destroyed&&this.onBeforeLeave.emit(e);handleLeave=e=>!this.destroyed&&this.onLeave.emit(e);handleAfterLeave=e=>!this.destroyed&&this.onAfterLeave.emit(e);handleLeaveCancelled=e=>!this.destroyed&&this.onLeaveCancelled.emit(e);constructor(){super(),Ui(()=>{let e=this.hideStrategy();this.isInitialMount?(_1(this.$el,e),this.rendered.set(this.visible()&&this.mountOnEnter()||!this.mountOnEnter())):this.visible()&&!this.rendered()&&(_1(this.$el,e),this.rendered.set(true));}),Ui(()=>{this.motion||(this.motion=V3(this.$el,this.motionOptions()));}),dz(async()=>{if(!this.$el)return;let e=this.isInitialMount&&this.visible()&&this.appear(),c=this.hideStrategy();this.visible()?(await V4(),S4(this.$el,c),(e||!this.isInitialMount)&&(this.applyMotionDuration("enter"),this.motion?.enter())):this.isInitialMount||(await V4(),this.applyMotionDuration("leave"),this.motion?.leave()?.then(async()=>{this.$el&&!this.cancelled&&!this.visible()&&(_1(this.$el,c),this.unmountOnLeave()&&(await V4(),this.cancelled||this.rendered.set(false)));})),this.isInitialMount=false;});}applyMotionDuration(e){let c=J(this.motionOptions),l=y4(c.duration,e);if(l==null||!this.$el)return;let n=this.$el,i=`${l}ms`;c.type==="transition"?n.style.transitionDuration=i:n.style.animationDuration=i;}onDestroy(){this.destroyed=true,this.cancelled=true,this.motion?.cancel(),this.motion=void 0,S4(this.$el,this.hideStrategy()),this.$el?.remove(),this.isInitialMount=true;}static \u0275fac=function(c){return new(c||a)};static \u0275cmp=Uo({type:a,selectors:[["p-motion"]],hostVars:2,hostBindings:function(c,l){c&2&&jM(l.cx("root"));},inputs:{visible:[1,"visible"],mountOnEnter:[1,"mountOnEnter"],unmountOnLeave:[1,"unmountOnLeave"],name:[1,"name"],type:[1,"type"],safe:[1,"safe"],disabled:[1,"disabled"],appear:[1,"appear"],enter:[1,"enter"],leave:[1,"leave"],duration:[1,"duration"],hideStrategy:[1,"hideStrategy"],enterFromClass:[1,"enterFromClass"],enterToClass:[1,"enterToClass"],enterActiveClass:[1,"enterActiveClass"],leaveFromClass:[1,"leaveFromClass"],leaveToClass:[1,"leaveToClass"],leaveActiveClass:[1,"leaveActiveClass"],options:[1,"options"]},outputs:{onBeforeEnter:"onBeforeEnter",onEnter:"onEnter",onAfterEnter:"onAfterEnter",onEnterCancelled:"onEnterCancelled",onBeforeLeave:"onBeforeLeave",onLeave:"onLeave",onAfterLeave:"onAfterLeave",onLeaveCancelled:"onLeaveCancelled"},features:[nN([O3,{provide:ke,useExisting:a},{provide:W,useExisting:a}]),j0$1([L]),BE],ngContentSelectors:Ml,decls:1,vars:1,template:function(c,l){c&1&&(uu(),rM(0,bl,1,0)),c&2&&oM(l.rendered()?0:-1);},dependencies:[Tu,o1],encapsulation:2})}return a})(),Ae=new I$1("MOTION_DIRECTIVE_INSTANCE"),Mo=(()=>{class a extends I{$pcMotionDirective=g(Ae,{optional:true,skipSelf:true})??void 0;visible=mu(false,{alias:"pMotion"});name=mu(void 0,{alias:"pMotionName"});type=mu(void 0,{alias:"pMotionType"});safe=mu(void 0,{alias:"pMotionSafe"});disabled=mu(false,{alias:"pMotionDisabled"});appear=mu(false,{alias:"pMotionAppear"});enter=mu(true,{alias:"pMotionEnter"});leave=mu(true,{alias:"pMotionLeave"});duration=mu(void 0,{alias:"pMotionDuration"});hideStrategy=mu("display",{alias:"pMotionHideStrategy"});enterFromClass=mu(void 0,{alias:"pMotionEnterFromClass"});enterToClass=mu(void 0,{alias:"pMotionEnterToClass"});enterActiveClass=mu(void 0,{alias:"pMotionEnterActiveClass"});leaveFromClass=mu(void 0,{alias:"pMotionLeaveFromClass"});leaveToClass=mu(void 0,{alias:"pMotionLeaveToClass"});leaveActiveClass=mu(void 0,{alias:"pMotionLeaveActiveClass"});options=mu({},{alias:"pMotionOptions"});onBeforeEnter=sz();onEnter=sz();onAfterEnter=sz();onEnterCancelled=sz();onBeforeLeave=sz();onLeave=sz();onAfterLeave=sz();onLeaveCancelled=sz();motionOptions=gs(()=>{let e=this.options()??{};return {name:e.name??this.name(),type:e.type??this.type(),safe:e.safe??this.safe(),disabled:e.disabled??this.disabled(),appear:false,enter:e.enter??this.enter(),leave:e.leave??this.leave(),duration:e.duration??this.duration(),enterClass:{from:e.enterClass?.from??(e.name?void 0:this.enterFromClass()),to:e.enterClass?.to??(e.name?void 0:this.enterToClass()),active:e.enterClass?.active??(e.name?void 0:this.enterActiveClass())},leaveClass:{from:e.leaveClass?.from??(e.name?void 0:this.leaveFromClass()),to:e.leaveClass?.to??(e.name?void 0:this.leaveToClass()),active:e.leaveClass?.active??(e.name?void 0:this.leaveActiveClass())},onBeforeEnter:e.onBeforeEnter??this.handleBeforeEnter,onEnter:e.onEnter??this.handleEnter,onAfterEnter:e.onAfterEnter??this.handleAfterEnter,onEnterCancelled:e.onEnterCancelled??this.handleEnterCancelled,onBeforeLeave:e.onBeforeLeave??this.handleBeforeLeave,onLeave:e.onLeave??this.handleLeave,onAfterLeave:e.onAfterLeave??this.handleAfterLeave,onLeaveCancelled:e.onLeaveCancelled??this.handleLeaveCancelled}});motion;isInitialMount=true;cancelled=false;destroyed=false;handleBeforeEnter=e=>!this.destroyed&&this.onBeforeEnter.emit(e);handleEnter=e=>!this.destroyed&&this.onEnter.emit(e);handleAfterEnter=e=>!this.destroyed&&this.onAfterEnter.emit(e);handleEnterCancelled=e=>!this.destroyed&&this.onEnterCancelled.emit(e);handleBeforeLeave=e=>!this.destroyed&&this.onBeforeLeave.emit(e);handleLeave=e=>!this.destroyed&&this.onLeave.emit(e);handleAfterLeave=e=>!this.destroyed&&this.onAfterLeave.emit(e);handleLeaveCancelled=e=>!this.destroyed&&this.onLeaveCancelled.emit(e);constructor(){super(),Ui(()=>{this.motion||(this.motion=V3(this.$el,this.motionOptions()));}),dz(()=>{if(!this.$el)return;let e=this.isInitialMount&&this.visible()&&this.appear(),c=this.hideStrategy();this.visible()?(S4(this.$el,c),(e||!this.isInitialMount)&&(this.applyMotionDuration("enter"),this.motion?.enter())):this.isInitialMount?_1(this.$el,c):(this.applyMotionDuration("leave"),this.motion?.leave()?.then(()=>{this.$el&&!this.cancelled&&!this.visible()&&_1(this.$el,c);})),this.isInitialMount=false;});}applyMotionDuration(e){let c=J(this.motionOptions),l=y4(c.duration,e);if(l==null||!this.$el)return;let n=this.$el,i=`${l}ms`;c.type==="transition"?n.style.transitionDuration=i:n.style.animationDuration=i;}onDestroy(){this.destroyed=true,this.cancelled=true,this.motion?.cancel(),this.motion=void 0,S4(this.$el,this.hideStrategy()),this.$el?.remove(),this.isInitialMount=true;}static \u0275fac=function(c){return new(c||a)};static \u0275dir=xt$1({type:a,selectors:[["","pMotion",""]],inputs:{visible:[1,"pMotion","visible"],name:[1,"pMotionName","name"],type:[1,"pMotionType","type"],safe:[1,"pMotionSafe","safe"],disabled:[1,"pMotionDisabled","disabled"],appear:[1,"pMotionAppear","appear"],enter:[1,"pMotionEnter","enter"],leave:[1,"pMotionLeave","leave"],duration:[1,"pMotionDuration","duration"],hideStrategy:[1,"pMotionHideStrategy","hideStrategy"],enterFromClass:[1,"pMotionEnterFromClass","enterFromClass"],enterToClass:[1,"pMotionEnterToClass","enterToClass"],enterActiveClass:[1,"pMotionEnterActiveClass","enterActiveClass"],leaveFromClass:[1,"pMotionLeaveFromClass","leaveFromClass"],leaveToClass:[1,"pMotionLeaveToClass","leaveToClass"],leaveActiveClass:[1,"pMotionLeaveActiveClass","leaveActiveClass"],options:[1,"pMotionOptions","options"]},outputs:{onBeforeEnter:"pMotionOnBeforeEnter",onEnter:"pMotionOnEnter",onAfterEnter:"pMotionOnAfterEnter",onEnterCancelled:"pMotionOnEnterCancelled",onBeforeLeave:"pMotionOnBeforeLeave",onLeave:"pMotionOnLeave",onAfterLeave:"pMotionOnAfterLeave",onLeaveCancelled:"pMotionOnLeaveCancelled"},features:[nN([O3,{provide:Ae,useExisting:a},{provide:W,useExisting:a}]),BE]})}return a})(),De=(()=>{class a{static \u0275fac=function(c){return new(c||a)};static \u0275mod=mn({type:a});static \u0275inj=$t$1({imports:[R3]})}return a})();var _e=class a{static isArray(t,e=true){return Array.isArray(t)&&(e||t.length!==0)}static isObject(t,e=true){return typeof t=="object"&&!Array.isArray(t)&&t!=null&&(e||Object.keys(t).length!==0)}static equals(t,e,c){return c?this.resolveFieldData(t,c)===this.resolveFieldData(e,c):this.equalsByValue(t,e)}static equalsByValue(t,e){if(t===e)return true;if(t&&e&&typeof t=="object"&&typeof e=="object"){var c=Array.isArray(t),l=Array.isArray(e),n,i,r;if(c&&l){if(i=t.length,i!=e.length)return false;for(n=i;n--!==0;)if(!this.equalsByValue(t[n],e[n]))return false;return true}if(c!=l)return false;var o=this.isDate(t),f=this.isDate(e);if(o!=f)return false;if(o&&f)return t.getTime()==e.getTime();var d=t instanceof RegExp,u=e instanceof RegExp;if(d!=u)return false;if(d&&u)return t.toString()==e.toString();var g=Object.keys(t);if(i=g.length,i!==Object.keys(e).length)return false;for(n=i;n--!==0;)if(!Object.prototype.hasOwnProperty.call(e,g[n]))return false;for(n=i;n--!==0;)if(r=g[n],!this.equalsByValue(t[r],e[r]))return false;return true}return t!==t&&e!==e}static resolveFieldData(t,e){if(t&&e){if(this.isFunction(e))return e(t);if(e.indexOf(".")==-1)return t[e];{let c=e.split("."),l=t;for(let n=0,i=c.length;n=t.length&&(c%=t.length,e%=t.length),t.splice(c,0,t.splice(e,1)[0]));}static insertIntoOrderedArray(t,e,c,l){if(c.length>0){let n=false;for(let i=0;ie){c.splice(i,0,t),n=true;break}n||c.push(t);}else c.push(t);}static findIndexInList(t,e){let c=-1;if(e){for(let l=0;le?1:0,n}static sort(t,e,c=1,l,n=1){let i=a.compare(t,e,l,c),r=c;return (a.isEmpty(t)||a.isEmpty(e))&&(r=n===1?c:n),r*i}static merge(t,e){if(!(t==null&&e==null)){{if((t==null||typeof t=="object")&&(e==null||typeof e=="object"))return l(l({},t||{}),e||{});if((t==null||typeof t=="string")&&(e==null||typeof e=="string"))return [t||"",e||""].join(" ")}return e||t}}static isPrintableCharacter(t=""){return this.isNotEmpty(t)&&t.length===1&&t.match(/\S| /)}static getItemValue(t,...e){return this.isFunction(t)?t(...e):t}static findLastIndex(t,e){let c=-1;if(this.isNotEmpty(t))try{c=t.findLastIndex(e);}catch{c=t.lastIndexOf([...t].reverse().find(e));}return c}static findLast(t,e){let c;if(this.isNotEmpty(t))try{c=t.findLast(e);}catch{c=[...t].reverse().find(e);}return c}static deepEquals(t,e){if(t===e)return true;if(t&&e&&typeof t=="object"&&typeof e=="object"){var c=Array.isArray(t),l=Array.isArray(e),n,i,r;if(c&&l){if(i=t.length,i!=e.length)return false;for(n=i;n--!==0;)if(!this.deepEquals(t[n],e[n]))return false;return true}if(c!=l)return false;var o=t instanceof Date,f=e instanceof Date;if(o!=f)return false;if(o&&f)return t.getTime()==e.getTime();var d=t instanceof RegExp,u=e instanceof RegExp;if(d!=u)return false;if(d&&u)return t.toString()==e.toString();var g=Object.keys(t);if(i=g.length,i!==Object.keys(e).length)return false;for(n=i;n--!==0;)if(!Object.prototype.hasOwnProperty.call(e,g[n]))return false;for(n=i;n--!==0;)if(r=g[n],!this.deepEquals(t[r],e[r]))return false;return true}return t!==t&&e!==e}static minifyCSS(t){return t&&t.replace(/\/\*(?:(?!\*\/)[\s\S])*\*\/|[\r\n\t]+/g,"").replace(/ {2,}/g," ").replace(/ ([{:}]) /g,"$1").replace(/([;,]) /g,"$1").replace(/ !/g,"!").replace(/: /g,":")}static toFlatCase(t){return this.isString(t)?t.replace(/(-|_)/g,"").toLowerCase():t}static isString(t,e=true){return typeof t=="string"&&(e||t!=="")}},Fe=0;function Lo(a="pn_id_"){return Fe++,`${a}${Fe}`}function xl(){let a=[],t=(n,i)=>{let r=a.length>0?a[a.length-1]:{key:n,value:i},o=r.value+(r.key===n?0:i)+2;return a.push({key:n,value:o}),o},e=n=>{a=a.filter(i=>i.value!==n);},c=()=>a.length>0?a[a.length-1].value:0,l=n=>n&&parseInt(n.style.zIndex,10)||0;return {get:l,set:(n,i,r)=>{i&&(i.style.zIndex=String(t(n,r)));},clear:n=>{n&&(e(l(n)),n.style.zIndex="");},getCurrent:()=>c(),generateZIndex:t,revertZIndex:e}}var N4=xl();var Te=["content"],Sl=["overlay"],Ee=["*","*"],Nl=()=>({mode:null}),Ie=a=>({$implicit:a}),wl=a=>({mode:a});function kl(a,t){a&1&&qE(0);}function Al(a,t){if(a&1&&(lu(0),VE(1,kl,1,0,"ng-container",2)),a&2){let e=EM();n_(),zE("ngTemplateOutlet",e.contentTemplate())("ngTemplateOutletContext",oN(3,Ie,rN(2,Nl)));}}function Dl(a,t){a&1&&qE(0);}function _l(a,t){if(a&1){let e=hM();Bc$1(0,"div",4,0),cu("click",function(){Rm(e);let l=EM(2);return xm(l.onOverlayClick())}),Bc$1(2,"p-motion",5),cu("onBeforeEnter",function(l){Rm(e);let n=EM(2);return xm(n.onOverlayBeforeEnter(l))})("onEnter",function(l){Rm(e);let n=EM(2);return xm(n.onOverlayEnter(l))})("onAfterEnter",function(l){Rm(e);let n=EM(2);return xm(n.onOverlayAfterEnter(l))})("onBeforeLeave",function(l){Rm(e);let n=EM(2);return xm(n.onOverlayBeforeLeave(l))})("onLeave",function(l){Rm(e);let n=EM(2);return xm(n.onOverlayLeave(l))})("onAfterLeave",function(l){Rm(e);let n=EM(2);return xm(n.onOverlayAfterLeave(l))}),Bc$1(3,"div",4,1),cu("click",function(l){Rm(e);let n=EM(2);return xm(n.onOverlayContentClick(l))}),lu(5,1),VE(6,Dl,1,0,"ng-container",2),bp()()();}if(a&2){let e=EM(2);PM(e.sx("root")),jM(e.cn(e.cx("root"),e.mergedStyleClass())),zE("pBind",e.ptm("root")),n_(2),zE("visible",e.visible())("appear",true)("options",e.computedMotionOptions()),n_(),PM(e.sx("content")),jM(e.cn(e.cx("content"),e.mergedContentStyleClass())),zE("pBind",e.ptm("content")),n_(3),zE("ngTemplateOutlet",e.contentTemplate())("ngTemplateOutletContext",oN(17,Ie,oN(15,wl,e.overlayMode())));}}function Fl(a,t){if(a&1&&rM(0,_l,7,19,"div",3),a&2){let e=EM();oM(e.modalVisible()?0:-1);}}var Tl={root:({instance:a})=>{let e=a.modal()?a.$overlayResponsiveOptions()?.style:a.$overlayOptions()?.style;return l(l({position:"absolute",top:"0"},e),a.style())},content:({instance:a})=>{let e=a.modal()?a.$overlayResponsiveOptions()?.contentStyle:a.$overlayOptions()?.contentStyle;return l(l({},e),a.contentStyle())}},El=` +.p-overlay-modal { + display: flex; + align-items: center; + justify-content: center; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.p-overlay-content { + transform-origin: inherit; + will-change: transform; +} + +/* Github Issue #18560 */ +.p-component-overlay.p-component { + position: relative; +} + +.p-overlay-modal > .p-overlay-content { + z-index: 1; + width: 90%; +} + +/* Position */ +/* top */ +.p-overlay-top { + align-items: flex-start; +} +.p-overlay-top-start { + align-items: flex-start; + justify-content: flex-start; +} +.p-overlay-top-end { + align-items: flex-start; + justify-content: flex-end; +} + +/* bottom */ +.p-overlay-bottom { + align-items: flex-end; +} +.p-overlay-bottom-start { + align-items: flex-end; + justify-content: flex-start; +} +.p-overlay-bottom-end { + align-items: flex-end; + justify-content: flex-end; +} + +/* left */ +.p-overlay-left { + justify-content: flex-start; +} +.p-overlay-left-start { + justify-content: flex-start; + align-items: flex-start; +} +.p-overlay-left-end { + justify-content: flex-start; + align-items: flex-end; +} + +/* right */ +.p-overlay-right { + justify-content: flex-end; +} +.p-overlay-right-start { + justify-content: flex-end; + align-items: flex-start; +} +.p-overlay-right-end { + justify-content: flex-end; + align-items: flex-end; +} + +.p-overlay-content ~ .p-overlay-content { + display: none; +} +`,Pl={host:"p-overlay-host",root:({instance:a})=>{let t=a.modal(),e=a.overlayResponsiveDirection();return ["p-overlay p-component",{"p-overlay-modal p-overlay-mask p-overlay-mask-enter-active":t,"p-overlay-center":t&&e==="center","p-overlay-top":t&&e==="top","p-overlay-top-start":t&&e==="top-start","p-overlay-top-end":t&&e==="top-end","p-overlay-bottom":t&&e==="bottom","p-overlay-bottom-start":t&&e==="bottom-start","p-overlay-bottom-end":t&&e==="bottom-end","p-overlay-left":t&&e==="left","p-overlay-left-start":t&&e==="left-start","p-overlay-left-end":t&&e==="left-end","p-overlay-right":t&&e==="right","p-overlay-right-start":t&&e==="right-start","p-overlay-right-end":t&&e==="right-end"}]},content:"p-overlay-content"},Pe=(()=>{class a extends WI{name="overlay";style=El;classes=Pl;inlineStyles=Tl;static \u0275fac=(()=>{let e;return function(l){return (e||(e=Vc$1(a)))(l||a)}})();static \u0275prov=b({token:a,factory:a.\u0275fac})}return a})(),Be=new I$1("OVERLAY_INSTANCE"),Oo=(()=>{class a extends I{componentName="Overlay";$pcOverlay=g(Be,{optional:true,skipSelf:true})??void 0;hostName=mu("");visible=az(false);mode=mu();style=mu();styleClass=mu();contentStyle=mu();contentStyleClass=mu();target=mu();autoZIndex=mu();baseZIndex=mu();listener=mu();responsive=mu();options=mu();appendTo=mu(void 0);inline=mu(false);motionOptions=mu(void 0);onBeforeShow=sz();onShow=sz();onBeforeHide=sz();onHide=sz();onAnimationStart=sz();onAnimationDone=sz();onBeforeEnter=sz();onEnter=sz();onAfterEnter=sz();onBeforeLeave=sz();onLeave=sz();onAfterLeave=sz();overlayViewChild=cz("overlay");contentViewChild=cz("content");contentTemplate=uz("content",{descendants:false});hostAttrSelector=mu();$appendTo=gs(()=>this.appendTo()||this.config.overlayAppendTo());$overlayOptions=gs(()=>l(l({},this.config?.overlayOptions),this.options()));$overlayResponsiveOptions=gs(()=>l(l({},this.$overlayOptions()?.responsive),this.responsive()));overlayResponsiveDirection=gs(()=>this.$overlayResponsiveOptions()?.direction||"center");$mode=gs(()=>this.mode()||this.$overlayOptions()?.mode);mergedStyleClass=gs(()=>this.cn(this.styleClass(),this.modal()?this.$overlayResponsiveOptions()?.styleClass:this.$overlayOptions()?.styleClass));mergedContentStyleClass=gs(()=>this.cn(this.contentStyleClass(),this.modal()?this.$overlayResponsiveOptions()?.contentStyleClass:this.$overlayOptions()?.contentStyleClass));$target=gs(()=>{let e=this.target()||this.$overlayOptions()?.target;return e===void 0?"@prev":e});$autoZIndex=gs(()=>{let e=this.autoZIndex()||this.$overlayOptions()?.autoZIndex;return e===void 0?true:e});$baseZIndex=gs(()=>{let e=this.baseZIndex()||this.$overlayOptions()?.baseZIndex;return e===void 0?0:e});$listener=gs(()=>this.listener()||this.$overlayOptions()?.listener);modal=gs(()=>{if(BG(this.platformId))return this.$mode()==="modal"||this.$overlayResponsiveOptions()&&this.document.defaultView?.matchMedia(this.$overlayResponsiveOptions().media?.replace("@media","")||`(max-width: ${this.$overlayResponsiveOptions().breakpoint})`).matches});overlayMode=gs(()=>this.$mode()||(this.modal()?"modal":"overlay"));overlayEl=gs(()=>this.overlayViewChild()?.nativeElement);contentEl=gs(()=>this.contentViewChild()?.nativeElement);targetEl=gs(()=>aO(this.$target(),this.el?.nativeElement));computedMotionOptions=gs(()=>l(l({},this.ptm("motion")),this.motionOptions()||this.$overlayOptions()?.motionOptions));modalVisible=U(false);isOverlayClicked=false;isOverlayContentClicked=false;scrollHandler;documentClickListener;documentResizeListener;_componentStyle=g(Pe);bindDirectiveInstance=g(L,{self:true});documentKeyboardListener;parentDragSubscription=null;transformOptions={default:"scaleY(0.8)",center:"scale(0.7)",top:"translate3d(0px, -100%, 0px)","top-start":"translate3d(0px, -100%, 0px)","top-end":"translate3d(0px, -100%, 0px)",bottom:"translate3d(0px, 100%, 0px)","bottom-start":"translate3d(0px, 100%, 0px)","bottom-end":"translate3d(0px, 100%, 0px)",left:"translate3d(-100%, 0px, 0px)","left-start":"translate3d(-100%, 0px, 0px)","left-end":"translate3d(-100%, 0px, 0px)",right:"translate3d(100%, 0px, 0px)","right-start":"translate3d(100%, 0px, 0px)","right-end":"translate3d(100%, 0px, 0px)"};overlayService=g(nq);constructor(){super(),Ui(()=>{this.visible()&&!this.modalVisible()&&this.modalVisible.set(true);});}onAfterViewChecked(){this.bindDirectiveInstance.setAttrs(this.ptm("host"));}show(e,c=false){this.onVisibleChange(true),this.handleEvents("onShow",{overlay:e||this.overlayEl(),target:this.targetEl(),mode:this.overlayMode()}),c&&N4$1(this.targetEl()),this.modal()&&AI(this.document?.body,"p-overflow-hidden");}hide(e,c=false){if(this.visible())this.onVisibleChange(false),this.handleEvents("onHide",{overlay:e||this.overlayEl(),target:this.targetEl(),mode:this.overlayMode()}),c&&N4$1(this.targetEl()),this.modal()&&RI(this.document?.body,"p-overflow-hidden");else return}onVisibleChange(e){this.visible.set(e);}onOverlayClick(){this.isOverlayClicked=true;}onOverlayContentClick(e){this.overlayService.add({originalEvent:e,target:this.targetEl()}),this.isOverlayContentClicked=true;}container=U(void 0);onOverlayBeforeEnter(e){this.handleEvents("onBeforeShow",{overlay:this.overlayEl(),target:this.targetEl(),mode:this.overlayMode()}),this.container.set(this.overlayEl()||e.element),this.show(this.overlayEl(),true),this.hostAttrSelector()&&this.overlayEl()&&this.overlayEl().setAttribute(this.hostAttrSelector(),""),this.appendOverlay(),this.alignOverlay(),this.bindParentDragListener(),this.setZIndex(),this.handleEvents("onBeforeEnter",e);}onOverlayEnter(e){this.handleEvents("onEnter",e);}onOverlayAfterEnter(e){this.bindListeners(),this.handleEvents("onAfterEnter",e);}onOverlayBeforeLeave(e){this.handleEvents("onBeforeHide",{overlay:this.overlayEl(),target:this.targetEl(),mode:this.overlayMode()}),this.handleEvents("onBeforeLeave",e);}onOverlayLeave(e){this.handleEvents("onLeave",e);}onOverlayAfterLeave(e){this.hide(this.overlayEl(),true),this.container.set(null),this.unbindListeners(),this.appendOverlay(),N4.clear(this.overlayEl()),this.modalVisible.set(false),this.cd.markForCheck(),this.handleEvents("onAfterLeave",e);}handleEvents(e,c){this[e].emit(c);let l=this.options();l&&l[e]&&l[e](c),this.config?.overlayOptions&&(this.config?.overlayOptions)[e]&&(this.config?.overlayOptions)[e](c);}setZIndex(){this.$autoZIndex()&&N4.set(this.overlayMode(),this.overlayEl(),this.$baseZIndex()+this.config?.zIndex[this.overlayMode()]);}appendOverlay(){this.$appendTo()&&this.$appendTo()!=="self"&&(this.$appendTo()==="body"?b4$1(this.document.body,this.overlayEl()):b4$1(this.$appendTo(),this.overlayEl()));}alignOverlay(){this.modal()||this.overlayEl()&&this.targetEl()&&(this.overlayEl().style.minWidth=I4(this.targetEl())+"px",this.$appendTo()==="self"?C4$1(this.overlayEl(),this.targetEl()):D4(this.overlayEl(),this.targetEl()));}bindListeners(){this.bindScrollListener(),this.bindDocumentClickListener(),this.bindDocumentResizeListener(),this.bindDocumentKeyboardListener();}unbindListeners(){this.unbindScrollListener(),this.unbindDocumentClickListener(),this.unbindDocumentResizeListener(),this.unbindDocumentKeyboardListener(),this.unbindParentDragListener();}bindParentDragListener(){!this.parentDragSubscription&&this.$appendTo()!=="self"&&this.targetEl&&(this.parentDragSubscription=this.overlayService.parentDragObservable.subscribe(e=>{e.contains(this.targetEl())&&this.hide(this.overlayEl(),true);}));}unbindParentDragListener(){this.parentDragSubscription&&(this.parentDragSubscription.unsubscribe(),this.parentDragSubscription=null);}bindScrollListener(){this.scrollHandler||(this.scrollHandler=new b4(this.targetEl(),e=>{(!this.$listener()||this.$listener()(e,{type:"scroll",mode:this.overlayMode(),valid:true}))&&this.hide(e,true);})),this.scrollHandler.bindScrollListener();}unbindScrollListener(){this.scrollHandler&&this.scrollHandler.unbindScrollListener();}bindDocumentClickListener(){this.documentClickListener||(this.documentClickListener=this.renderer.listen(this.document,"click",e=>{let l=!(this.targetEl()&&(this.targetEl().isSameNode(e.target)||!this.isOverlayClicked&&this.targetEl().contains(e.target)))&&!this.isOverlayContentClicked;(this.$listener()?this.$listener()(e,{type:"outside",mode:this.overlayMode(),valid:e.which!==3&&l}):l)&&this.hide(e),this.isOverlayClicked=this.isOverlayContentClicked=false;}));}unbindDocumentClickListener(){this.documentClickListener&&(this.documentClickListener(),this.documentClickListener=null);}bindDocumentResizeListener(){this.documentResizeListener||(this.documentResizeListener=this.renderer.listen(this.document.defaultView,"resize",e=>{(this.$listener()?this.$listener()(e,{type:"resize",mode:this.overlayMode(),valid:!H4()}):!H4())&&this.hide(e,true);}));}unbindDocumentResizeListener(){this.documentResizeListener&&(this.documentResizeListener(),this.documentResizeListener=null);}bindDocumentKeyboardListener(){this.documentKeyboardListener||(this.documentKeyboardListener=this.renderer.listen(this.document.defaultView,"keydown",e=>{if(this.$overlayOptions().hideOnEscape===false||e.code!=="Escape")return;(this.$listener()?this.$listener()(e,{type:"keydown",mode:this.overlayMode(),valid:!H4()}):!H4())&&this.hide(e,true);}));}unbindDocumentKeyboardListener(){this.documentKeyboardListener&&(this.documentKeyboardListener(),this.documentKeyboardListener=null);}onDestroy(){this.hide(this.overlayEl(),true),this.overlayEl()&&this.$appendTo()!=="self"&&(this.renderer.appendChild(this.el.nativeElement,this.overlayEl()),N4.clear(this.overlayEl())),this.scrollHandler&&(this.scrollHandler.destroy(),this.scrollHandler=null),this.unbindListeners();}static \u0275fac=function(c){return new(c||a)};static \u0275cmp=Uo({type:a,selectors:[["p-overlay"]],contentQueries:function(c,l,n){c&1&&QE(n,l.contentTemplate,Te,4),c&2&&IM();},viewQuery:function(c,l){c&1&&XE(l.overlayViewChild,Sl,5)(l.contentViewChild,Te,5),c&2&&IM(2);},inputs:{hostName:[1,"hostName"],visible:[1,"visible"],mode:[1,"mode"],style:[1,"style"],styleClass:[1,"styleClass"],contentStyle:[1,"contentStyle"],contentStyleClass:[1,"contentStyleClass"],target:[1,"target"],autoZIndex:[1,"autoZIndex"],baseZIndex:[1,"baseZIndex"],listener:[1,"listener"],responsive:[1,"responsive"],options:[1,"options"],appendTo:[1,"appendTo"],inline:[1,"inline"],motionOptions:[1,"motionOptions"],hostAttrSelector:[1,"hostAttrSelector"]},outputs:{visible:"visibleChange",onBeforeShow:"onBeforeShow",onShow:"onShow",onBeforeHide:"onBeforeHide",onHide:"onHide",onAnimationStart:"onAnimationStart",onAnimationDone:"onAnimationDone",onBeforeEnter:"onBeforeEnter",onEnter:"onEnter",onAfterEnter:"onAfterEnter",onBeforeLeave:"onBeforeLeave",onLeave:"onLeave",onAfterLeave:"onAfterLeave"},features:[nN([Pe,{provide:Be,useExisting:a},{provide:W,useExisting:a}]),j0$1([L]),BE],ngContentSelectors:Ee,decls:2,vars:1,consts:[["overlay",""],["content",""],[4,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"class","style","pBind"],[3,"click","pBind"],["name","p-anchored-overlay",3,"onBeforeEnter","onEnter","onAfterEnter","onBeforeLeave","onLeave","onAfterLeave","visible","appear","options"]],template:function(c,l){c&1&&(uu(Ee),rM(0,Al,2,5)(1,Fl,1,1)),c&2&&oM(l.inline()?0:1);},dependencies:[cA,iq,L,De,R3],encapsulation:2})}return a})();export{$4 as $,I3 as A,Bn as B,j8 as C,b4 as D,Ei as E,Fn as F,De as G,Hr as H,I,Mo as J,V3 as K,L9 as L,M5 as M,N4 as N,Oo as O,Pi as P,Qr as Q,Rn as R,Pn as S,T0 as T,Un as U,Vn as V,W,X9 as X,Y9 as Y,Z8 as Z,_n as _,an as a,L5 as a0,q0 as a1,cr as a2,z4 as a3,be as a4,v2 as a5,R3 as a6,e$1 as a7,e as a8,L as b,cn as c,ar as d,co as e,M4 as f,On as g,In as h,$n as i,Hn as j,kr as k,ln as l,jn as m,nn as n,o1 as o,e4 as p,q4 as q,rn as r,Lo as s,_e as t,B3 as u,vr as v,Q8 as w,ce as x,y5 as y,z5 as z}; \ No newline at end of file diff --git a/wwwroot/chunk-DIttLeyh.js b/wwwroot/chunk-DIttLeyh.js new file mode 100644 index 0000000..232e5a5 --- /dev/null +++ b/wwwroot/chunk-DIttLeyh.js @@ -0,0 +1,2 @@ +var C={name:"megaphone",meta:{tags:["megaphone","announce","shout","broadcast","loud"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.26953 13.8105C6.68374 13.8105 7.01953 14.1463 7.01953 14.5605C7.01949 14.6543 7.00855 14.7422 7.00488 14.7725C6.99977 14.8147 6.99998 14.8162 7 14.8105C7.00027 15.4869 7.56485 16.0604 8.2998 16.0605C8.89609 16.0605 9.38016 15.6797 9.53223 15.1816C9.65304 14.7855 10.0726 14.5628 10.4688 14.6836C10.8647 14.8045 11.0884 15.2231 10.9678 15.6191C10.6195 16.7606 9.54318 17.5605 8.2998 17.5605C6.77527 17.5604 5.50027 16.3536 5.5 14.8105C5.5 14.7149 5.51094 14.6304 5.51562 14.5918C5.51736 14.5775 5.5188 14.567 5.51953 14.5605C5.51953 14.1465 5.85553 13.8108 6.26953 13.8105ZM16.1699 2.43945C17.1807 2.43945 18 3.2599 18 4.27051V15.1104C17.9997 16.1208 17.1804 16.9404 16.1699 16.9404H14.8301C13.8196 16.9404 13.0003 16.1208 13 15.1104V14.6562L3.5 12.6182V13.25C3.5 13.6642 3.16421 14 2.75 14C2.33579 14 2 13.6642 2 13.25V6.25C2 5.83579 2.33579 5.5 2.75 5.5C3.16421 5.5 3.5 5.83579 3.5 6.25V6.76074L13 4.71387V4.27051C13 3.2599 13.8193 2.43945 14.8301 2.43945H16.1699ZM14.8301 3.94043C14.6479 3.94043 14.5 4.08818 14.5 4.27051V15.1104C14.5003 15.2923 14.6479 15.4404 14.8301 15.4404H16.1699C16.3521 15.4404 16.4997 15.2923 16.5 15.1104V4.27051C16.5 4.08818 16.3521 3.94043 16.1699 3.94043H14.8301ZM3.5 8.2959V11.084L13 13.1221V6.24902L3.5 8.2959Z",fill:"currentColor",key:"idojh5"}]]}; +export{C as megaphone}; \ No newline at end of file diff --git a/wwwroot/chunk-DJQmKxlw.js b/wwwroot/chunk-DJQmKxlw.js new file mode 100644 index 0000000..7892dd4 --- /dev/null +++ b/wwwroot/chunk-DJQmKxlw.js @@ -0,0 +1,2 @@ +var C={name:"sitemap",meta:{tags:["sitemap","hierarchy","structure","tree","network"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.5 1.25C12.4665 1.25 13.25 2.0335 13.25 3V6C13.25 6.9665 12.4665 7.75 11.5 7.75H10.75V9.25H16C16.9642 9.25 17.75 10.0358 17.75 11V12.25H18C18.9665 12.25 19.75 13.0335 19.75 14V16C19.75 16.9665 18.9665 17.75 18 17.75H16C15.0335 17.75 14.25 16.9665 14.25 16V14C14.25 13.0335 15.0335 12.25 16 12.25H16.25V11C16.25 10.8642 16.1358 10.75 16 10.75H10.75V12.25H11C11.9642 12.25 12.75 13.0358 12.75 14V16C12.75 16.9642 11.9642 17.75 11 17.75H9C8.03579 17.75 7.25 16.9642 7.25 16V14C7.25 13.0358 8.03579 12.25 9 12.25H9.25V10.75H4C3.86421 10.75 3.75 10.8642 3.75 11V12.25H4C4.9665 12.25 5.75 13.0335 5.75 14V16C5.75 16.9665 4.9665 17.75 4 17.75H2C1.0335 17.75 0.25 16.9665 0.25 16V14C0.25 13.0335 1.0335 12.25 2 12.25H2.25V11C2.25 10.0358 3.03579 9.25 4 9.25H9.25V7.75H8.5C7.5335 7.75 6.75 6.9665 6.75 6V3C6.75 2.0335 7.5335 1.25 8.5 1.25H11.5ZM2 13.75C1.86193 13.75 1.75 13.8619 1.75 14V16C1.75 16.1381 1.86193 16.25 2 16.25H4C4.13807 16.25 4.25 16.1381 4.25 16V14C4.25 13.8619 4.13807 13.75 4 13.75H2ZM9 13.75C8.86421 13.75 8.75 13.8642 8.75 14V16C8.75 16.1358 8.86421 16.25 9 16.25H11C11.1358 16.25 11.25 16.1358 11.25 16V14C11.25 13.8642 11.1358 13.75 11 13.75H9ZM16 13.75C15.8619 13.75 15.75 13.8619 15.75 14V16C15.75 16.1381 15.8619 16.25 16 16.25H18C18.1381 16.25 18.25 16.1381 18.25 16V14C18.25 13.8619 18.1381 13.75 18 13.75H16ZM8.5 2.75C8.36193 2.75 8.25 2.86193 8.25 3V6C8.25 6.13807 8.36193 6.25 8.5 6.25H11.5C11.6381 6.25 11.75 6.13807 11.75 6V3C11.75 2.86193 11.6381 2.75 11.5 2.75H8.5Z",fill:"currentColor",key:"r8ghoc"}]]}; +export{C as sitemap}; \ No newline at end of file diff --git a/wwwroot/chunk-DK9kBcCb.js b/wwwroot/chunk-DK9kBcCb.js new file mode 100644 index 0000000..5421ca9 --- /dev/null +++ b/wwwroot/chunk-DK9kBcCb.js @@ -0,0 +1,2 @@ +var C={name:"grip-horizontal",meta:{tags:["drag handle","move","reorder","horizontal dots","grip-horizontal"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M3 11.75C3.96421 11.75 4.75 12.5358 4.75 13.5C4.75 14.4642 3.96421 15.25 3 15.25C2.03579 15.25 1.25 14.4642 1.25 13.5C1.25 12.5358 2.03579 11.75 3 11.75ZM10 11.75C10.9642 11.75 11.75 12.5358 11.75 13.5C11.75 14.4642 10.9642 15.25 10 15.25C9.03579 15.25 8.25 14.4642 8.25 13.5C8.25 12.5358 9.03579 11.75 10 11.75ZM17 11.75C17.9642 11.75 18.75 12.5358 18.75 13.5C18.75 14.4642 17.9642 15.25 17 15.25C16.0358 15.25 15.25 14.4642 15.25 13.5C15.25 12.5358 16.0358 11.75 17 11.75ZM3 4.75C3.96421 4.75 4.75 5.53579 4.75 6.5C4.75 7.46421 3.96421 8.25 3 8.25C2.03579 8.25 1.25 7.46421 1.25 6.5C1.25 5.53579 2.03579 4.75 3 4.75ZM10 4.75C10.9642 4.75 11.75 5.53579 11.75 6.5C11.75 7.46421 10.9642 8.25 10 8.25C9.03579 8.25 8.25 7.46421 8.25 6.5C8.25 5.53579 9.03579 4.75 10 4.75ZM17 4.75C17.9642 4.75 18.75 5.53579 18.75 6.5C18.75 7.46421 17.9642 8.25 17 8.25C16.0358 8.25 15.25 7.46421 15.25 6.5C15.25 5.53579 16.0358 4.75 17 4.75Z",fill:"currentColor",key:"junljr"}]]}; +export{C as gripHorizontal}; \ No newline at end of file diff --git a/wwwroot/chunk-DNm3PJ9z.js b/wwwroot/chunk-DNm3PJ9z.js new file mode 100644 index 0000000..7e3ccb6 --- /dev/null +++ b/wwwroot/chunk-DNm3PJ9z.js @@ -0,0 +1,2 @@ +var t={name:"star-fill",meta:{tags:["star-fill","favorite","rate","like","full-star"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.0003 1.25C10.2857 1.25012 10.5469 1.41201 10.6732 1.66797L13.097 6.58301L18.5179 7.36816C18.8002 7.40922 19.035 7.60669 19.1234 7.87793C19.2116 8.14926 19.1381 8.44713 18.9339 8.64648L15.015 12.4707L15.9398 17.874C15.9876 18.155 15.8715 18.4388 15.6409 18.6064C15.4102 18.7741 15.1044 18.7965 14.8519 18.6641L10.0003 16.1162L5.14876 18.6641C4.89621 18.7966 4.5905 18.774 4.3597 18.6064C4.12897 18.4388 4.01296 18.1551 4.06087 17.874L4.98372 12.4717L1.06673 8.64648C0.862475 8.4471 0.78892 8.14934 0.877274 7.87793C0.965683 7.60656 1.20029 7.40906 1.48274 7.36816L6.90266 6.58301L9.32747 1.66797L9.38118 1.57715C9.51961 1.37448 9.75042 1.25 10.0003 1.25Z",fill:"currentColor",key:"ix0gw9"}]]}; +export{t as starFill}; \ No newline at end of file diff --git a/wwwroot/chunk-DNyehYKI.js b/wwwroot/chunk-DNyehYKI.js new file mode 100644 index 0000000..b135025 --- /dev/null +++ b/wwwroot/chunk-DNyehYKI.js @@ -0,0 +1,2 @@ +var C={name:"turkish-lira",meta:{tags:["turkish-lira","money","currency","turkey","cash"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7.25003 2.00006C7.25003 1.58585 7.58581 1.25006 8.00003 1.25006C8.41424 1.25006 8.75003 1.58585 8.75003 2.00006V5.62604L13.6338 3.79791C14.0217 3.65265 14.4544 3.84946 14.5996 4.23737C14.7445 4.62507 14.5478 5.0569 14.1602 5.20221L8.75003 7.2276V7.87604L13.6338 6.04791C14.0217 5.90265 14.4544 6.09946 14.5996 6.48737C14.7445 6.87507 14.5478 7.3069 14.1602 7.45221L8.75003 9.4776V17.21C12.3679 16.8311 15.25 13.7458 15.25 10.0001C15.25 9.58585 15.5858 9.25006 16 9.25006C16.4142 9.25006 16.75 9.58585 16.75 10.0001C16.75 14.8353 12.7842 18.7501 8.00003 18.7501C7.58581 18.7501 7.25003 18.4143 7.25003 18.0001V10.0391L4.26272 11.1583C3.87501 11.3034 3.44329 11.1073 3.29788 10.7198C3.15261 10.3319 3.34943 9.89923 3.73733 9.75397L7.25003 8.43756V7.78912L4.26272 8.90826C3.87501 9.05336 3.44329 8.85734 3.29788 8.46979C3.15261 8.08188 3.34943 7.64923 3.73733 7.50397L7.25003 6.18756V2.00006Z",fill:"currentColor",key:"puvczm"}]]}; +export{C as turkishLira}; \ No newline at end of file diff --git a/wwwroot/chunk-DOKMSt6T.js b/wwwroot/chunk-DOKMSt6T.js new file mode 100644 index 0000000..e03af56 --- /dev/null +++ b/wwwroot/chunk-DOKMSt6T.js @@ -0,0 +1,2 @@ +var C={name:"sun",meta:{tags:["sun","daylight","bright","sunny","weather","light"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 17C10.4142 17 10.75 17.3358 10.75 17.75V19.25C10.75 19.6642 10.4142 20 10 20C9.58579 20 9.25 19.6642 9.25 19.25V17.75C9.25 17.3358 9.58579 17 10 17ZM3.96973 14.9697C4.26257 14.6771 4.73743 14.6771 5.03027 14.9697C5.32288 15.2626 5.32288 15.7374 5.03027 16.0303L3.9707 17.0898C3.67788 17.3827 3.20307 17.3825 2.91016 17.0898C2.61748 16.7969 2.61733 16.3221 2.91016 16.0293L3.96973 14.9697ZM14.9697 14.9697C15.2626 14.6768 15.7374 14.6768 16.0303 14.9697L17.0898 16.0293C17.3827 16.3222 17.3827 16.797 17.0898 17.0898C16.797 17.3827 16.3222 17.3827 16.0293 17.0898L14.9697 16.0303C14.6768 15.7374 14.6768 15.2626 14.9697 14.9697ZM10 4.25C13.1756 4.25 15.75 6.82436 15.75 10C15.75 13.1756 13.1756 15.75 10 15.75C6.82436 15.75 4.25 13.1756 4.25 10C4.25 6.82436 6.82436 4.25 10 4.25ZM10 5.75C7.65279 5.75 5.75 7.65279 5.75 10C5.75 12.3472 7.65279 14.25 10 14.25C12.3472 14.25 14.25 12.3472 14.25 10C14.25 7.65279 12.3472 5.75 10 5.75ZM2.25 9.25C2.66421 9.25 3 9.58579 3 10C3 10.4142 2.66421 10.75 2.25 10.75H0.75C0.335786 10.75 0 10.4142 0 10C0 9.58579 0.335786 9.25 0.75 9.25H2.25ZM19.25 9.25C19.6642 9.25 20 9.58579 20 10C20 10.4142 19.6642 10.75 19.25 10.75H17.75C17.3358 10.75 17 10.4142 17 10C17 9.58579 17.3358 9.25 17.75 9.25H19.25ZM2.91016 2.91016C3.20305 2.61726 3.67781 2.61726 3.9707 2.91016L5.03027 3.96973C5.32271 4.26266 5.32301 4.73753 5.03027 5.03027C4.73753 5.32298 4.26265 5.3227 3.96973 5.03027L2.91016 3.9707C2.61727 3.67782 2.61729 3.20305 2.91016 2.91016ZM16.0293 2.91016C16.3221 2.61733 16.7969 2.61748 17.0898 2.91016C17.3825 3.20307 17.3827 3.67789 17.0898 3.9707L16.0303 5.03027C15.7374 5.32284 15.2626 5.32284 14.9697 5.03027C14.6771 4.73744 14.6771 4.26257 14.9697 3.96973L16.0293 2.91016ZM10 0C10.4142 0 10.75 0.335786 10.75 0.75V2.25C10.75 2.66421 10.4142 3 10 3C9.58579 3 9.25 2.66421 9.25 2.25V0.75C9.25 0.335786 9.58579 0 10 0Z",fill:"currentColor",key:"olg7fc"}]]}; +export{C as sun}; \ No newline at end of file diff --git a/wwwroot/chunk-DOvfNwit.js b/wwwroot/chunk-DOvfNwit.js new file mode 100644 index 0000000..7474a49 --- /dev/null +++ b/wwwroot/chunk-DOvfNwit.js @@ -0,0 +1,2 @@ +var C={name:"share-alt",meta:{tags:["share-alt","distribute","social","link"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.5 1.25C17.2949 1.25 18.75 2.70507 18.75 4.5C18.75 6.29493 17.2949 7.75 15.5 7.75C14.4167 7.75 13.4597 7.21818 12.8691 6.40332L7.60352 9.03613C7.69803 9.34078 7.75 9.66428 7.75 10C7.75 10.3354 7.69785 10.6585 7.60352 10.9629L12.8691 13.5957C13.4597 12.7812 14.417 12.25 15.5 12.25C17.2949 12.25 18.75 13.7051 18.75 15.5C18.75 17.2949 17.2949 18.75 15.5 18.75C13.7051 18.75 12.25 17.2949 12.25 15.5C12.25 15.3242 12.2632 15.1516 12.29 14.9834L6.83496 12.2559C6.244 12.8674 5.4176 13.25 4.5 13.25C2.70507 13.25 1.25 11.7949 1.25 10C1.25 8.20507 2.70507 6.75 4.5 6.75C5.41735 6.75 6.24403 7.1319 6.83496 7.74316L12.29 5.01562C12.2633 4.84772 12.25 4.67544 12.25 4.5C12.25 2.70507 13.7051 1.25 15.5 1.25ZM15.5 13.75C14.5335 13.75 13.75 14.5335 13.75 15.5C13.75 16.4665 14.5335 17.25 15.5 17.25C16.4665 17.25 17.25 16.4665 17.25 15.5C17.25 14.5335 16.4665 13.75 15.5 13.75ZM4.5 8.25C3.5335 8.25 2.75 9.0335 2.75 10C2.75 10.9665 3.5335 11.75 4.5 11.75C5.4665 11.75 6.25 10.9665 6.25 10C6.25 9.0335 5.4665 8.25 4.5 8.25ZM15.5 2.75C14.5335 2.75 13.75 3.5335 13.75 4.5C13.75 5.4665 14.5335 6.25 15.5 6.25C16.4665 6.25 17.25 5.4665 17.25 4.5C17.25 3.5335 16.4665 2.75 15.5 2.75Z",fill:"currentColor",key:"e81eyr"}]]}; +export{C as shareAlt}; \ No newline at end of file diff --git a/wwwroot/chunk-DR5yziHU.js b/wwwroot/chunk-DR5yziHU.js new file mode 100644 index 0000000..30d35b2 --- /dev/null +++ b/wwwroot/chunk-DR5yziHU.js @@ -0,0 +1,2 @@ +var e={name:"pen-line",meta:{tags:["write","draw","edit","annotate","pen-line"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.1265 1.25111C15.9319 1.26918 16.7741 1.56389 17.3785 2.16811C17.9738 2.7635 18.2849 3.58577 18.3169 4.38491C18.347 5.13502 18.133 5.93312 17.5933 6.54312L17.481 6.66226L6.41848 17.7248C6.29453 17.8484 6.13093 17.9247 5.95656 17.9406L2.06691 18.2941C1.84699 18.3138 1.62917 18.2356 1.47218 18.0803C1.31512 17.9247 1.23375 17.7069 1.25148 17.4865L1.56203 13.6418C1.57633 13.4646 1.65327 13.2979 1.77882 13.172L12.8413 2.10951C13.4607 1.49023 14.3212 1.23324 15.1265 1.25111ZM17.4995 16.7502C17.9138 16.7502 18.2495 17.086 18.2495 17.5002C18.2495 17.9144 17.9137 18.2502 17.4995 18.2502H11.4995C11.0856 18.2499 10.7496 17.9142 10.7495 17.5002C10.7495 17.0861 11.0855 16.7504 11.4995 16.7502H17.4995ZM15.0933 2.75112C14.6062 2.7403 14.1732 2.89889 13.9019 3.17006L3.03469 14.0363L2.81886 16.7189L5.54934 16.4719L16.4195 5.60171C16.6883 5.33261 16.8378 4.91562 16.8189 4.44448C16.7999 3.97248 16.6134 3.5242 16.3179 3.22866C16.0313 2.94217 15.5807 2.76207 15.0933 2.75112Z",fill:"currentColor",key:"jqdxtv"}]]}; +export{e as penLine}; \ No newline at end of file diff --git a/wwwroot/chunk-DRIsWFeJ.js b/wwwroot/chunk-DRIsWFeJ.js new file mode 100644 index 0000000..3d1b0f8 --- /dev/null +++ b/wwwroot/chunk-DRIsWFeJ.js @@ -0,0 +1,2 @@ +var C={name:"gauge",meta:{tags:["gauge","measure","meter","indicator","level"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.25 6.5V4.77441C7.4808 4.88541 6.15443 5.38815 5.15039 6.07422L6.5332 7.47266C6.82442 7.76718 6.82182 8.24196 6.52734 8.5332C6.23282 8.82442 5.75804 8.82182 5.4668 8.52734L4.0127 7.05664C2.97985 8.17348 2.4117 9.52668 2.10254 10.6875C1.94031 11.2966 1.85309 11.8409 1.80566 12.25H3.5C3.91421 12.25 4.25 12.5858 4.25 13C4.25 13.4142 3.91421 13.75 3.5 13.75H1.75V15C1.75 15.1381 1.86193 15.25 2 15.25H5.68945L10.9697 9.96973C11.2626 9.67683 11.7374 9.67683 12.0303 9.96973C12.3232 10.2626 12.3232 10.7374 12.0303 11.0303L7.81055 15.25H18C18.1381 15.25 18.25 15.1381 18.25 15V13.75H16.5C16.0858 13.75 15.75 13.4142 15.75 13C15.75 12.5858 16.0858 12.25 16.5 12.25H18.1943C18.176 12.0916 18.1517 11.9123 18.1191 11.7168C17.9867 10.9222 17.7235 9.87379 17.2041 8.83496C16.8967 8.2203 16.5019 7.61406 15.9951 7.06445L14.5303 8.53027C14.2374 8.82317 13.7626 8.82317 13.4697 8.53027C13.1768 8.23738 13.1768 7.76262 13.4697 7.46973L14.8584 6.08008C14.8346 6.06373 14.8113 6.04639 14.7871 6.03027C13.7958 5.36937 12.4883 4.88252 10.75 4.77344V6.5C10.75 6.91421 10.4142 7.25 10 7.25C9.58579 7.25 9.25 6.91421 9.25 6.5ZM19.75 15C19.75 15.9665 18.9665 16.75 18 16.75H2C1.0335 16.75 0.25 15.9665 0.25 15V13H1L0.25 12.999V12.9795C0.250123 12.9684 0.250542 12.9528 0.250977 12.9336C0.251848 12.8952 0.25358 12.8409 0.256836 12.7725C0.263349 12.6356 0.276538 12.4411 0.301758 12.2012C0.352157 11.7219 0.45249 11.0559 0.65332 10.3018C1.05264 8.80242 1.86419 6.89588 3.52734 5.43652C5.00162 4.14307 7.0898 3.25 10 3.25C12.3812 3.25 14.217 3.84748 15.6191 4.78223C17.0166 5.71384 17.9389 6.95107 18.5459 8.16504C19.1513 9.37594 19.4508 10.5779 19.5996 11.4707C19.6742 11.9186 19.7115 12.2936 19.7305 12.5596C19.74 12.6927 19.7446 12.7993 19.7471 12.874C19.7483 12.9113 19.7497 12.9408 19.75 12.9619V12.999C19.75 12.9995 19.75 13 19 13H19.75V15Z",fill:"currentColor",key:"b0zxde"}]]}; +export{C as gauge}; \ No newline at end of file diff --git a/wwwroot/chunk-DRmVYy8_.js b/wwwroot/chunk-DRmVYy8_.js new file mode 100644 index 0000000..f7a1835 --- /dev/null +++ b/wwwroot/chunk-DRmVYy8_.js @@ -0,0 +1,2 @@ +var e={name:"backward",meta:{tags:["backward","return","reverse","back","previous"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.4873 2.45311C17.7054 2.24886 18.0246 2.19268 18.2988 2.3115C18.5729 2.43042 18.7499 2.70123 18.75 2.99998V17C18.75 17.2988 18.5729 17.5695 18.2988 17.6885C18.0246 17.8073 17.7054 17.7512 17.4873 17.5469L10.2197 10.7353V17C10.2197 17.2989 10.0427 17.5696 9.76855 17.6885C9.49428 17.8074 9.17515 17.7513 8.95703 17.5469L1.4873 10.5469C1.33611 10.4051 1.25 10.2073 1.25 10C1.25004 9.79274 1.3361 9.59487 1.4873 9.45312L8.95703 2.45311C9.17514 2.24877 9.49432 2.19268 9.76855 2.3115C10.0427 2.43038 10.2197 2.70117 10.2197 2.99998V9.26367L17.4873 2.45311ZM3.0957 10L8.71973 15.2695V4.72948L3.0957 10ZM11.626 10L17.25 15.2695V4.72948L11.626 10Z",fill:"currentColor",key:"s16wsn"}]]}; +export{e as backward}; \ No newline at end of file diff --git a/wwwroot/chunk-DSu3N7bJ.js b/wwwroot/chunk-DSu3N7bJ.js new file mode 100644 index 0000000..4eec0da --- /dev/null +++ b/wwwroot/chunk-DSu3N7bJ.js @@ -0,0 +1,2 @@ +var e={name:"square",meta:{tags:["shape","box","rectangle","geometry","square"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.25 4.28613C17.25 3.34078 16.5994 2.75 16 2.75H4C3.40058 2.75 2.75 3.34078 2.75 4.28613V15.7139C2.75 16.6592 3.40058 17.25 4 17.25H16C16.5994 17.25 17.25 16.6592 17.25 15.7139V4.28613ZM18.75 15.7139C18.75 17.2932 17.6097 18.75 16 18.75H4C2.39028 18.75 1.25 17.2932 1.25 15.7139V4.28613C1.25 2.70676 2.39028 1.25 4 1.25H16C17.6097 1.25 18.75 2.70676 18.75 4.28613V15.7139Z",fill:"currentColor",key:"7q00dj"}]]}; +export{e as square}; \ No newline at end of file diff --git a/wwwroot/chunk-DT4TZFr-.js b/wwwroot/chunk-DT4TZFr-.js new file mode 100644 index 0000000..f1e3c07 --- /dev/null +++ b/wwwroot/chunk-DT4TZFr-.js @@ -0,0 +1,2 @@ +var C={name:"arrow-circle-right",meta:{tags:["arrow-circle-right","next","forward","right","proceed"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM9.46973 5.46973C9.76262 5.17683 10.2374 5.17683 10.5303 5.46973L14.5303 9.46973C14.5743 9.5138 14.6098 9.56319 14.6406 9.61426C14.6598 9.64599 14.678 9.67831 14.6924 9.71289C14.7131 9.76289 14.7279 9.81459 14.7373 9.86719C14.745 9.91035 14.75 9.95462 14.75 10C14.75 10.045 14.7449 10.089 14.7373 10.1318C14.7279 10.1845 14.713 10.2361 14.6924 10.2861C14.6803 10.3153 14.6639 10.342 14.6484 10.3691C14.616 10.4261 14.5789 10.4817 14.5303 10.5303L10.5303 14.5303C10.2374 14.8232 9.76262 14.8232 9.46973 14.5303C9.17683 14.2374 9.17683 13.7626 9.46973 13.4697L12.1895 10.75H6C5.58579 10.75 5.25 10.4142 5.25 10C5.25 9.58579 5.58579 9.25 6 9.25H12.1895L9.46973 6.53027C9.17683 6.23738 9.17683 5.76262 9.46973 5.46973Z",fill:"currentColor",key:"k8f1kd"}]]}; +export{C as arrowCircleRight}; \ No newline at end of file diff --git a/wwwroot/chunk-DTLwgzmg.js b/wwwroot/chunk-DTLwgzmg.js new file mode 100644 index 0000000..9dd9e17 --- /dev/null +++ b/wwwroot/chunk-DTLwgzmg.js @@ -0,0 +1,2 @@ +var e={name:"eject",meta:{tags:["eject","remove","release","take-out","disconnect"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16 12.25C16.9665 12.25 17.7499 13.0335 17.75 14V16C17.75 16.9665 16.9665 17.75 16 17.75H3.99993C3.03357 17.7498 2.24992 16.9664 2.24992 16V14C2.24999 13.0336 3.03361 12.2501 3.99993 12.25H16ZM3.99993 13.75C3.86205 13.7501 3.74999 13.8621 3.74993 14V16C3.74993 16.1379 3.86201 16.2498 3.99993 16.25H16C16.1381 16.25 16.25 16.1381 16.25 16V14C16.2499 13.862 16.138 13.75 16 13.75H3.99993ZM9.52633 2.41787C9.82084 2.17762 10.2556 2.19523 10.5302 2.46962L17.5303 9.46967C17.7448 9.68415 17.8094 10.0068 17.6934 10.2871C17.5773 10.5673 17.3034 10.75 17 10.75H2.99993C2.69671 10.7498 2.42261 10.5672 2.30656 10.2871C2.19066 10.0069 2.2553 9.6841 2.46965 9.46967L9.46969 2.46962L9.52633 2.41787ZM4.81048 9.24994H15.1895L9.99997 4.06046L4.81048 9.24994Z",fill:"currentColor",key:"sir4i6"}]]}; +export{e as eject}; \ No newline at end of file diff --git a/wwwroot/chunk-DTbbzIa5.js b/wwwroot/chunk-DTbbzIa5.js new file mode 100644 index 0000000..eb092b4 --- /dev/null +++ b/wwwroot/chunk-DTbbzIa5.js @@ -0,0 +1,2 @@ +var L={name:"map",meta:{tags:["map","location","route","journey","area"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.74902 1.43885C7.12506 1.28056 7.54486 1.28056 7.9209 1.43885L7.9248 1.43982L12.6602 3.46815C12.6615 3.4687 12.6634 3.46897 12.6641 3.46912L12.665 3.4701C12.6656 3.46988 12.6672 3.46888 12.6689 3.46815L16.2344 1.9408C17.5023 1.39752 18.74 2.4236 18.7402 3.68983V14.9398C18.7402 15.688 18.3103 16.3935 17.6133 16.6898L13.2451 18.559L13.2412 18.5609C12.8652 18.7193 12.4454 18.7192 12.0693 18.5609L12.0645 18.559L7.3291 16.5297V16.5307C7.32714 16.5299 7.32571 16.5298 7.3252 16.5297C7.325 16.5297 7.32361 16.5297 7.32129 16.5307L7.32031 16.5297L3.75586 18.059C2.48785 18.6024 1.25016 17.5763 1.25 16.31V5.05995C1.25014 4.31242 1.67891 3.60656 2.375 3.30994L6.74512 1.43982L6.74902 1.43885ZM8.08008 15.2211L11.9199 16.8646V4.78162L8.08008 3.13709V15.2211ZM17.082 3.35096C17.0015 3.2926 16.9139 3.28076 16.8252 3.31873L13.4199 4.77772V16.8519L17.0254 15.31L17.0264 15.309C17.1292 15.2652 17.2402 15.1315 17.2402 14.9398V3.68983C17.2401 3.52636 17.1657 3.41167 17.082 3.35096ZM2.96484 4.68885L2.96289 4.68983C2.86018 4.73368 2.75014 4.86857 2.75 5.05995V16.31C2.75007 16.4734 2.82455 16.5881 2.9082 16.6488C2.9888 16.7072 3.07631 16.7181 3.16504 16.6801L6.58008 15.2162V3.14197L2.96484 4.68885Z",fill:"currentColor",key:"7twbmw"}]]}; +export{L as map}; \ No newline at end of file diff --git a/wwwroot/chunk-DTxLHHml.js b/wwwroot/chunk-DTxLHHml.js new file mode 100644 index 0000000..116a1ea --- /dev/null +++ b/wwwroot/chunk-DTxLHHml.js @@ -0,0 +1,2 @@ +var C={name:"barcode",meta:{tags:["barcode","product","code","scan","retail","price"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M2 2C2.55228 2 3 2.44772 3 3V17C3 17.5523 2.55228 18 2 18C1.44772 18 1 17.5523 1 17V3C1 2.44772 1.44772 2 2 2ZM5 2C5.27614 2 5.5 2.22386 5.5 2.5V17.5C5.5 17.7761 5.27614 18 5 18C4.72386 18 4.5 17.7761 4.5 17.5V2.5C4.5 2.22386 4.72386 2 5 2ZM7.5 2C7.77614 2 8 2.22386 8 2.5V17.5C8 17.7761 7.77614 18 7.5 18C7.22386 18 7 17.7761 7 17.5V2.5C7 2.22386 7.22386 2 7.5 2ZM11.5 2C12.0523 2 12.5 2.44772 12.5 3V17C12.5 17.5523 12.0523 18 11.5 18C10.9477 18 10.5 17.5523 10.5 17V3C10.5 2.44772 10.9477 2 11.5 2ZM15 2C15.5523 2 16 2.44772 16 3V17C16 17.5523 15.5523 18 15 18C14.4477 18 14 17.5523 14 17V3C14 2.44772 14.4477 2 15 2ZM18.25 2C18.6642 2 19 2.33579 19 2.75V17.25C19 17.6642 18.6642 18 18.25 18C17.8358 18 17.5 17.6642 17.5 17.25V2.75C17.5 2.33579 17.8358 2 18.25 2Z",fill:"currentColor",key:"vb31w6"}]]}; +export{C as barcode}; \ No newline at end of file diff --git a/wwwroot/chunk-DUfH9fvd.js b/wwwroot/chunk-DUfH9fvd.js new file mode 100644 index 0000000..7aa0cb5 --- /dev/null +++ b/wwwroot/chunk-DUfH9fvd.js @@ -0,0 +1,2 @@ +var e={name:"angle-double-down",meta:{tags:["angle-double-down","fast-fall","down","decrease","lower"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12.9698 10.4697C13.2626 10.1769 13.7374 10.1769 14.0303 10.4697C14.3231 10.7626 14.3232 11.2374 14.0303 11.5303L10.5303 15.0303C10.2374 15.3232 9.76264 15.3231 9.46974 15.0303L5.96973 11.5303C5.67684 11.2374 5.67684 10.7626 5.96973 10.4697C6.26263 10.1769 6.73739 10.1769 7.03028 10.4697L10 13.4395L12.9698 10.4697ZM12.9698 4.96973C13.2626 4.67684 13.7374 4.67684 14.0303 4.96973C14.3231 5.26263 14.3232 5.73741 14.0303 6.03028L10.5303 9.53029C10.2374 9.82317 9.76264 9.82313 9.46974 9.53029L5.96973 6.03028C5.67684 5.73739 5.67684 5.26263 5.96973 4.96973C6.26263 4.67684 6.73739 4.67684 7.03028 4.96973L10 7.93947L12.9698 4.96973Z",fill:"currentColor",key:"dfqsiy"}]]}; +export{e as angleDoubleDown}; \ No newline at end of file diff --git a/wwwroot/chunk-DUlO0Koz.js b/wwwroot/chunk-DUlO0Koz.js new file mode 100644 index 0000000..892a0fd --- /dev/null +++ b/wwwroot/chunk-DUlO0Koz.js @@ -0,0 +1,2 @@ +var C={name:"map-marker",meta:{tags:["map-marker","location","pin","place","position"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 0.75C14.2793 0.75 17.75 4.19109 17.75 8.45019C17.7499 11.4583 15.8223 14.1544 14.043 16.0215C13.1378 16.9713 12.2351 17.7435 11.5596 18.2783C11.2212 18.5462 10.938 18.756 10.7383 18.8994C10.6384 18.9712 10.559 19.0265 10.5039 19.0645C10.4764 19.0834 10.4545 19.0982 10.4395 19.1084C10.4321 19.1134 10.4261 19.1173 10.4219 19.1201C10.4199 19.1214 10.4182 19.1222 10.417 19.123L10.415 19.124V19.125C10.4148 19.1251 10.4144 19.1251 10 18.5L10.4141 19.125C10.163 19.2913 9.83703 19.2913 9.58594 19.125L10 18.5C9.58563 19.1251 9.58518 19.1251 9.58496 19.125V19.124L9.58301 19.123C9.58179 19.1222 9.58006 19.1214 9.57813 19.1201C9.57394 19.1173 9.56789 19.1134 9.56055 19.1084C9.5455 19.0982 9.52358 19.0834 9.49609 19.0645C9.441 19.0265 9.36162 18.9712 9.26172 18.8994C9.06195 18.756 8.77881 18.5462 8.44043 18.2783C7.76494 17.7435 6.86221 16.9713 5.95703 16.0215C4.17765 14.1544 2.25008 11.4583 2.25 8.45019C2.25 4.19109 5.7207 0.75 10 0.75ZM10 2.25C6.5393 2.25 3.75 5.0293 3.75 8.45019C3.75008 10.8519 5.32243 13.181 7.04297 14.9863C7.88762 15.8726 8.73513 16.5983 9.37207 17.1025C9.61741 17.2968 9.83133 17.4565 10 17.5801C10.1687 17.4565 10.3826 17.2968 10.6279 17.1025C11.2649 16.5983 12.1124 15.8726 12.957 14.9863C14.6776 13.181 16.2499 10.8519 16.25 8.45019C16.25 5.0293 13.4607 2.25 10 2.25ZM10 5.25C11.5188 5.25 12.75 6.48122 12.75 8C12.75 9.51878 11.5188 10.75 10 10.75C8.48122 10.75 7.25 9.51878 7.25 8C7.25 6.48122 8.48122 5.25 10 5.25ZM10 6.75C9.30964 6.75 8.75 7.30964 8.75 8C8.75 8.69036 9.30964 9.25 10 9.25C10.6904 9.25 11.25 8.69036 11.25 8C11.25 7.30964 10.6904 6.75 10 6.75Z",fill:"currentColor",key:"fl31kz"}]]}; +export{C as mapMarker}; \ No newline at end of file diff --git a/wwwroot/chunk-DVS8TMQt.js b/wwwroot/chunk-DVS8TMQt.js new file mode 100644 index 0000000..49a79a7 --- /dev/null +++ b/wwwroot/chunk-DVS8TMQt.js @@ -0,0 +1,2 @@ +var e={name:"forward",meta:{tags:["forward","advance","proceed","next","move-on"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.2324 2.31152C10.5066 2.19303 10.825 2.24889 11.043 2.45313L18.5127 9.45313C18.6639 9.59491 18.75 9.7927 18.75 10C18.75 10.2073 18.6639 10.4051 18.5127 10.5469L11.043 17.5469C10.825 17.7511 10.5066 17.807 10.2324 17.6885C9.95815 17.5696 9.78027 17.2989 9.78027 17V10.7354L2.5127 17.5469C2.29469 17.7512 1.97632 17.8071 1.70215 17.6885C1.42788 17.5696 1.25 17.2989 1.25 17V3C1.25 2.70108 1.42788 2.43038 1.70215 2.31152C1.97632 2.19291 2.29469 2.24884 2.5127 2.45313L9.78027 9.26367V3C9.78027 2.70108 9.95815 2.43038 10.2324 2.31152ZM2.75 15.2695L8.37305 10L2.75 4.72949V15.2695ZM11.2803 15.2695L16.9033 10L11.2803 4.72949V15.2695Z",fill:"currentColor",key:"1iiw81"}]]}; +export{e as forward}; \ No newline at end of file diff --git a/wwwroot/chunk-DVnGGRAh.js b/wwwroot/chunk-DVnGGRAh.js new file mode 100644 index 0000000..15ef287 --- /dev/null +++ b/wwwroot/chunk-DVnGGRAh.js @@ -0,0 +1,2 @@ +var C={name:"file-plus",meta:{tags:["file-plus","add","document","new","create"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.5 1.25C10.6989 1.25 10.8896 1.32907 11.0303 1.46973L16.5303 6.96973C16.6709 7.11038 16.75 7.30109 16.75 7.5V16C16.75 17.5142 15.5142 18.75 14 18.75H6C4.48579 18.75 3.25 17.5142 3.25 16V4C3.25 2.48579 4.48579 1.25 6 1.25H10.5ZM6 2.75C5.31421 2.75 4.75 3.31421 4.75 4V16C4.75 16.6858 5.31421 17.25 6 17.25H14C14.6858 17.25 15.25 16.6858 15.25 16V8.25H10.5C10.0858 8.25 9.75 7.91421 9.75 7.5V2.75H6ZM10 9.75C10.4142 9.75 10.75 10.0858 10.75 10.5V12.25H12.5C12.9142 12.25 13.25 12.5858 13.25 13C13.25 13.4142 12.9142 13.75 12.5 13.75H10.75V15.5C10.75 15.9142 10.4142 16.25 10 16.25C9.58579 16.25 9.25 15.9142 9.25 15.5V13.75H7.5C7.08579 13.75 6.75 13.4142 6.75 13C6.75 12.5858 7.08579 12.25 7.5 12.25H9.25V10.5C9.25 10.0858 9.58579 9.75 10 9.75ZM11.25 6.75H14.1895L11.25 3.81055V6.75Z",fill:"currentColor",key:"884lxw"}]]}; +export{C as filePlus}; \ No newline at end of file diff --git a/wwwroot/chunk-DWAiXvg2.js b/wwwroot/chunk-DWAiXvg2.js new file mode 100644 index 0000000..336f36c --- /dev/null +++ b/wwwroot/chunk-DWAiXvg2.js @@ -0,0 +1,2 @@ +var C={name:"indent",meta:{tags:["tab","shift right","nest","text formatting","indent"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18 15.25C18.4142 15.25 18.75 15.5858 18.75 16C18.75 16.4142 18.4142 16.75 18 16.75H2C1.58579 16.75 1.25 16.4142 1.25 16C1.25 15.5858 1.58579 15.25 2 15.25H18ZM1.71289 6.30664C1.99313 6.1906 2.31579 6.25525 2.53027 6.46973L5.53027 9.46973L5.58203 9.52637C5.82234 9.82095 5.80488 10.2557 5.53027 10.5303L2.53027 13.5303C2.31579 13.7448 1.99313 13.8094 1.71289 13.6934C1.43263 13.5773 1.25 13.3033 1.25 13V7C1.25 6.69665 1.43263 6.42273 1.71289 6.30664ZM18 11.25C18.4142 11.25 18.75 11.5858 18.75 12C18.75 12.4142 18.4142 12.75 18 12.75H8C7.58579 12.75 7.25 12.4142 7.25 12C7.25 11.5858 7.58579 11.25 8 11.25H18ZM18 7.25C18.4142 7.25 18.75 7.58579 18.75 8C18.75 8.41421 18.4142 8.75 18 8.75H8C7.58579 8.75 7.25 8.41421 7.25 8C7.25 7.58579 7.58579 7.25 8 7.25H18ZM18 3.25C18.4142 3.25 18.75 3.58579 18.75 4C18.75 4.41421 18.4142 4.75 18 4.75H2C1.58579 4.75 1.25 4.41421 1.25 4C1.25 3.58579 1.58579 3.25 2 3.25H18Z",fill:"currentColor",key:"yn66zv"}]]}; +export{C as indent}; \ No newline at end of file diff --git a/wwwroot/chunk-DXGqBaiV.js b/wwwroot/chunk-DXGqBaiV.js new file mode 100644 index 0000000..431d762 --- /dev/null +++ b/wwwroot/chunk-DXGqBaiV.js @@ -0,0 +1,2 @@ +var l={name:"circle-fill",meta:{tags:["circle-fill","complete","whole"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1Z",fill:"currentColor",key:"alnf76"}]]}; +export{l as circleFill}; \ No newline at end of file diff --git a/wwwroot/chunk-DZNgYM7V.js b/wwwroot/chunk-DZNgYM7V.js new file mode 100644 index 0000000..d909a25 --- /dev/null +++ b/wwwroot/chunk-DZNgYM7V.js @@ -0,0 +1,2 @@ +var C={name:"grip",meta:{tags:["drag","move","reorder","handle","grip"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M3 15.25C3.96421 15.25 4.75 16.0358 4.75 17C4.75 17.9642 3.96421 18.75 3 18.75C2.03579 18.75 1.25 17.9642 1.25 17C1.25 16.0358 2.03579 15.25 3 15.25ZM10 15.25C10.9642 15.25 11.75 16.0358 11.75 17C11.75 17.9642 10.9642 18.75 10 18.75C9.03579 18.75 8.25 17.9642 8.25 17C8.25 16.0358 9.03579 15.25 10 15.25ZM17 15.25C17.9642 15.25 18.75 16.0358 18.75 17C18.75 17.9642 17.9642 18.75 17 18.75C16.0358 18.75 15.25 17.9642 15.25 17C15.25 16.0358 16.0358 15.25 17 15.25ZM3 8.25C3.96421 8.25 4.75 9.03579 4.75 10C4.75 10.9642 3.96421 11.75 3 11.75C2.03579 11.75 1.25 10.9642 1.25 10C1.25 9.03579 2.03579 8.25 3 8.25ZM10 8.25C10.9642 8.25 11.75 9.03579 11.75 10C11.75 10.9642 10.9642 11.75 10 11.75C9.03579 11.75 8.25 10.9642 8.25 10C8.25 9.03579 9.03579 8.25 10 8.25ZM17 8.25C17.9642 8.25 18.75 9.03579 18.75 10C18.75 10.9642 17.9642 11.75 17 11.75C16.0358 11.75 15.25 10.9642 15.25 10C15.25 9.03579 16.0358 8.25 17 8.25ZM3 1.25C3.96421 1.25 4.75 2.03579 4.75 3C4.75 3.96421 3.96421 4.75 3 4.75C2.03579 4.75 1.25 3.96421 1.25 3C1.25 2.03579 2.03579 1.25 3 1.25ZM10 1.25C10.9642 1.25 11.75 2.03579 11.75 3C11.75 3.96421 10.9642 4.75 10 4.75C9.03579 4.75 8.25 3.96421 8.25 3C8.25 2.03579 9.03579 1.25 10 1.25ZM17 1.25C17.9642 1.25 18.75 2.03579 18.75 3C18.75 3.96421 17.9642 4.75 17 4.75C16.0358 4.75 15.25 3.96421 15.25 3C15.25 2.03579 16.0358 1.25 17 1.25Z",fill:"currentColor",key:"s1u67m"}]]}; +export{C as grip}; \ No newline at end of file diff --git a/wwwroot/chunk-DZp8fP-w.js b/wwwroot/chunk-DZp8fP-w.js new file mode 100644 index 0000000..e69fd42 --- /dev/null +++ b/wwwroot/chunk-DZp8fP-w.js @@ -0,0 +1,2 @@ +var C={name:"directions",meta:{tags:["directions","route","navigation","path","guide","right"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.7269 1.27167C9.42973 0.568837 10.5688 0.568978 11.2718 1.27167L18.7249 8.7248C19.4279 9.42776 19.4279 10.5668 18.7249 11.2697L11.2718 18.7228C10.5689 19.4253 9.4297 19.4256 8.7269 18.7228L1.27377 11.2697C0.571246 10.5669 0.571434 9.42767 1.27377 8.7248L8.7269 1.27167ZM10.2113 2.33222C10.0941 2.21535 9.90453 2.21513 9.78745 2.33222L2.33432 9.78534C2.21773 9.90247 2.21762 10.0922 2.33432 10.2092L9.78745 17.6623C9.90442 17.7792 10.0941 17.779 10.2113 17.6623L17.6644 10.2092C17.7816 10.092 17.7815 9.90248 17.6644 9.78534L10.2113 2.33222ZM10.7376 6.72187C11.0292 6.42809 11.5041 6.42654 11.7982 6.71796L14.0247 8.92499C14.0929 8.99188 14.1481 9.07157 14.1869 9.16034C14.2034 9.19805 14.2148 9.23752 14.2249 9.27753C14.2396 9.33612 14.2503 9.397 14.2503 9.46015C14.2503 9.50829 14.2444 9.55515 14.2357 9.60077C14.2257 9.65277 14.2113 9.7036 14.1908 9.75214C14.1526 9.84236 14.0971 9.92333 14.0287 9.9914L14.0277 9.99335L11.7982 12.2033C11.504 12.4947 11.0282 12.4926 10.7367 12.1984C10.4454 11.9044 10.448 11.4295 10.7415 11.1379L11.6771 10.2101H7.25034V12.2502C7.25019 12.6642 6.91434 13 6.50034 13.0002C6.08621 13.0002 5.75048 12.6643 5.75034 12.2502V9.46015C5.75034 9.04593 6.08612 8.71015 6.50034 8.71015H11.6771L10.7415 7.78241C10.4478 7.49087 10.4464 7.01594 10.7376 6.72187Z",fill:"currentColor",key:"dj8boy"}]]}; +export{C as directions}; \ No newline at end of file diff --git a/wwwroot/chunk-D_PbJFgi.js b/wwwroot/chunk-D_PbJFgi.js new file mode 100644 index 0000000..3c4355a --- /dev/null +++ b/wwwroot/chunk-D_PbJFgi.js @@ -0,0 +1,2 @@ +var C={name:"microphone",meta:{tags:["microphone","sound","record","speak","audio"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15 6.64062C15.4141 6.64076 15.75 6.97649 15.75 7.39062V11.6211C15.7495 14.4356 13.537 16.7329 10.75 16.873V18.75C10.7499 19.1642 10.4142 19.5 10 19.5C9.58583 19.5 9.25007 19.1642 9.25 18.75V16.873C6.46818 16.7375 4.24075 14.4397 4.24023 11.6211V7.39062C4.24023 6.97641 4.57602 6.64062 4.99023 6.64062C5.40434 6.64076 5.74023 6.97649 5.74023 7.39062V11.6211C5.74077 13.6941 7.43236 15.3806 9.50977 15.3809H9.98047C9.98697 15.3807 9.99346 15.3799 10 15.3799C10.0065 15.3799 10.013 15.3807 10.0195 15.3809H10.4805C12.5668 15.3806 14.2495 13.6952 14.25 11.6211V7.39062C14.25 6.97649 14.5859 6.64075 15 6.64062ZM10.3096 1.25C11.7796 1.25 12.9805 2.48 12.9805 4V11.3896C12.9805 12.9096 11.7896 14.1396 10.3096 14.1396H9.69043C8.22043 14.1396 7.02051 12.9096 7.02051 11.3896V4C7.02051 2.48 8.21043 1.25 9.69043 1.25H10.3096ZM9.69043 2.75C9.05043 2.75 8.52051 3.31 8.52051 4V11.3896C8.52051 12.0796 9.04043 12.6396 9.69043 12.6396H10.3096C10.9496 12.6396 11.4805 12.0796 11.4805 11.3896V4C11.4805 3.31 10.9596 2.75 10.3096 2.75H9.69043Z",fill:"currentColor",key:"cx53wp"}]]}; +export{C as microphone}; \ No newline at end of file diff --git a/wwwroot/chunk-D_ddgeG2.js b/wwwroot/chunk-D_ddgeG2.js new file mode 100644 index 0000000..0ebbf80 --- /dev/null +++ b/wwwroot/chunk-D_ddgeG2.js @@ -0,0 +1,2 @@ +var C={name:"list",meta:{tags:["list","items","tasks","enumeration","record"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M3.125 13.5C3.67728 13.5 4.125 13.9477 4.125 14.5C4.125 15.0523 3.67728 15.5 3.125 15.5C2.57272 15.5 2.125 15.0523 2.125 14.5C2.125 13.9477 2.57272 13.5 3.125 13.5ZM17.125 13.75C17.5392 13.75 17.875 14.0858 17.875 14.5C17.875 14.9142 17.5392 15.25 17.125 15.25H6.125C5.71079 15.25 5.375 14.9142 5.375 14.5C5.375 14.0858 5.71079 13.75 6.125 13.75H17.125ZM3.125 9C3.67728 9 4.125 9.44772 4.125 10C4.125 10.5523 3.67728 11 3.125 11C2.57272 11 2.125 10.5523 2.125 10C2.125 9.44772 2.57272 9 3.125 9ZM17.125 9.25C17.5392 9.25 17.875 9.58579 17.875 10C17.875 10.4142 17.5392 10.75 17.125 10.75H6.125C5.71079 10.75 5.375 10.4142 5.375 10C5.375 9.58579 5.71079 9.25 6.125 9.25H17.125ZM3.125 4.5C3.67728 4.5 4.125 4.94772 4.125 5.5C4.125 6.05228 3.67728 6.5 3.125 6.5C2.57272 6.5 2.125 6.05228 2.125 5.5C2.125 4.94772 2.57272 4.5 3.125 4.5ZM17.125 4.75C17.5392 4.75 17.875 5.08579 17.875 5.5C17.875 5.91421 17.5392 6.25 17.125 6.25H6.125C5.71079 6.25 5.375 5.91421 5.375 5.5C5.375 5.08579 5.71079 4.75 6.125 4.75H17.125Z",fill:"currentColor",key:"hrmb1p"}]]}; +export{C as list}; \ No newline at end of file diff --git a/wwwroot/chunk-Da-vA3yJ.js b/wwwroot/chunk-Da-vA3yJ.js new file mode 100644 index 0000000..8a3fa8c --- /dev/null +++ b/wwwroot/chunk-Da-vA3yJ.js @@ -0,0 +1,2 @@ +var C={name:"list-check",meta:{tags:["list-check","items","tasks","complete","done"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M4.46973 12.9698C4.76262 12.6769 5.23738 12.6769 5.53028 12.9698C5.82311 13.2627 5.82315 13.7374 5.53028 14.0303L3.53028 16.0303C3.2374 16.3232 2.76263 16.3231 2.46973 16.0303L1.46973 15.0303C1.17684 14.7374 1.17684 14.2626 1.46973 13.9698C1.76262 13.6769 2.23738 13.6769 2.53028 13.9698L3 14.4395L4.46973 12.9698ZM18 13.75C18.4142 13.7501 18.75 14.0858 18.75 14.5C18.75 14.9142 18.4142 15.25 18 15.25H8C7.58581 15.25 7.25004 14.9142 7.25 14.5C7.25 14.0858 7.58579 13.75 8 13.75H18ZM4.46973 7.96974C4.76262 7.67685 5.23738 7.67685 5.53028 7.96974C5.82311 8.26264 5.82315 8.73741 5.53028 9.03029L3.53028 11.0303C3.2374 11.3232 2.76263 11.3231 2.46973 11.0303L1.46973 10.0303C1.17684 9.7374 1.17684 9.26264 1.46973 8.96974C1.76262 8.67685 2.23738 8.67685 2.53028 8.96974L3 9.43947L4.46973 7.96974ZM18 9.25002C18.4142 9.25005 18.75 9.58582 18.75 10C18.75 10.4142 18.4142 10.75 18 10.75H8C7.58581 10.75 7.25003 10.4142 7.25 10C7.25 9.5858 7.58579 9.25002 8 9.25002H18ZM4.46973 3.96973C4.76262 3.67684 5.23738 3.67684 5.53028 3.96973C5.82311 4.26263 5.82315 4.73741 5.53028 5.03028L3.53028 7.03029C3.2374 7.32316 2.76263 7.32312 2.46973 7.03029L1.46973 6.03028C1.17684 5.73739 1.17684 5.26263 1.46973 4.96973C1.76262 4.67684 2.23738 4.67684 2.53028 4.96973L3 5.43946L4.46973 3.96973ZM18 5.25001C18.4142 5.25004 18.75 5.58581 18.75 6.00001C18.75 6.41418 18.4142 6.74998 18 6.75001H8C7.58581 6.75001 7.25003 6.4142 7.25 6.00001C7.25 5.58579 7.58579 5.25001 8 5.25001H18Z",fill:"currentColor",key:"4bbnp"}]]}; +export{C as listCheck}; \ No newline at end of file diff --git a/wwwroot/chunk-DaRui4BO.js b/wwwroot/chunk-DaRui4BO.js new file mode 100644 index 0000000..755132e --- /dev/null +++ b/wwwroot/chunk-DaRui4BO.js @@ -0,0 +1,2 @@ +var t={name:"twitch",meta:{tags:["twitch","live","streaming","video","game","broadcast"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.70595 5.144H10.874V8.568H9.70595M12.916 5.144H14.084V8.568H12.916M5.91599 2L3 4.856V15.144H6.49592V18L9.42007 15.144H11.748L17 10V2M15.832 9.432L13.5041 11.712H11.168L9.12602 13.712V11.712H6.49592V3.144H15.832V9.432Z",fill:"currentColor",key:"2rwtvk"}]]}; +export{t as twitch}; \ No newline at end of file diff --git a/wwwroot/chunk-Dbnmmimc.js b/wwwroot/chunk-Dbnmmimc.js new file mode 100644 index 0000000..d8145d2 --- /dev/null +++ b/wwwroot/chunk-Dbnmmimc.js @@ -0,0 +1,2 @@ +var C={name:"link",meta:{tags:["link","connect","join","attach","web","url"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.46486 5.20111C8.06435 3.73892 10.5057 3.63468 12.085 5.05267L12.2402 5.20013L12.2422 5.20209C13.8624 6.83491 13.7308 9.50712 12.0918 11.1581L10.8418 12.4179C10.5501 12.7119 10.0753 12.7145 9.78125 12.4228C9.48737 12.1311 9.48588 11.6563 9.77735 11.3622L11.0273 10.1015L11.2246 9.88373C12.1449 8.76105 12.0959 7.1865 11.1797 6.26068L10.9873 6.0888C9.98863 5.28694 8.41801 5.35489 7.37208 6.40814L7.37111 6.40912L3.61233 10.1884C2.49236 11.3166 2.48235 13.0428 3.45999 14.0302L3.5635 14.1269C4.09 14.5958 4.77863 14.7998 5.48928 14.7333C5.90168 14.6947 6.26799 14.9977 6.30666 15.4101C6.34529 15.8224 6.04221 16.1878 5.6299 16.2265C4.46828 16.3354 3.28138 15.9726 2.39945 15.0908L2.39749 15.0888C0.777191 13.456 0.908813 10.7828 2.54788 9.13177V9.1308L6.30763 5.3515L6.46486 5.20111ZM14.3701 3.77337C15.4592 3.67132 16.5703 3.98462 17.4316 4.75091L17.6006 4.91009L17.6025 4.91205C19.1719 6.49386 19.0978 9.05159 17.6015 10.7109L17.4521 10.8691L13.6924 14.6484C12.0482 16.3045 9.38101 16.4217 7.75978 14.8007L7.75782 14.7988C6.13753 13.166 6.26831 10.4928 7.90724 8.84174L9.15723 7.58197C9.44895 7.28791 9.92469 7.28634 10.2188 7.57806C10.5123 7.86982 10.5142 8.34473 10.2227 8.63861L8.97266 9.89838C7.85267 11.0265 7.84275 12.7527 8.82032 13.7402L9.0127 13.912C10.0115 14.7136 11.5822 14.645 12.6279 13.5917L16.3887 9.81146C17.5079 8.68343 17.517 6.95799 16.54 5.97064L16.4365 5.87298C15.9099 5.40413 15.2205 5.20093 14.5098 5.26752C14.0977 5.30594 13.7323 5.00269 13.6933 4.59076C13.6547 4.17835 13.9577 3.81204 14.3701 3.77337Z",fill:"currentColor",key:"vsynjv"}]]}; +export{C as link}; \ No newline at end of file diff --git a/wwwroot/chunk-Dc8HEAs0.js b/wwwroot/chunk-Dc8HEAs0.js new file mode 100644 index 0000000..22cd8a7 --- /dev/null +++ b/wwwroot/chunk-Dc8HEAs0.js @@ -0,0 +1,2 @@ +var C={name:"tiktok",meta:{tags:["tiktok","social","media","video","app","music"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 8.55938C15.6237 8.56232 14.2813 8.13271 13.1625 7.33125V12.9188C13.1622 13.9536 12.8459 14.9636 12.256 15.8139C11.6661 16.6641 10.8306 17.3139 9.86134 17.6764C8.89208 18.039 7.83525 18.0969 6.83217 17.8425C5.82909 17.5881 4.92759 17.0335 4.24825 16.2529C3.5689 15.4723 3.14409 14.5029 3.03064 13.4743C2.91718 12.4457 3.12049 11.407 3.61336 10.497C4.10624 9.58713 4.86519 8.84939 5.78871 8.3825C6.71223 7.9156 7.75629 7.74182 8.78125 7.88438V10.6938C8.31259 10.5462 7.80929 10.5505 7.34322 10.7061C6.87715 10.8616 6.47215 11.1605 6.18603 11.5599C5.89992 11.9593 5.74732 12.439 5.75004 12.9303C5.75276 13.4216 5.91064 13.8996 6.20116 14.2958C6.49167 14.6921 6.89995 14.9864 7.36771 15.1368C7.83547 15.2872 8.33879 15.2859 8.8058 15.1332C9.2728 14.9805 9.67962 14.6842 9.96817 14.2865C10.2567 13.8888 10.4122 13.4101 10.4125 12.9188V2H13.1625C13.161 2.23258 13.1808 2.46481 13.2219 2.69375C13.3175 3.20406 13.5162 3.68951 13.8058 4.12044C14.0954 4.55136 14.4699 4.91869 14.9063 5.2C15.5274 5.61026 16.2556 5.82871 17 5.82813V8.55938Z",fill:"currentColor",key:"ba57b8"}]]}; +export{C as tiktok}; \ No newline at end of file diff --git a/wwwroot/chunk-DcNGgCqF.js b/wwwroot/chunk-DcNGgCqF.js new file mode 100644 index 0000000..9b46451 --- /dev/null +++ b/wwwroot/chunk-DcNGgCqF.js @@ -0,0 +1,2 @@ +var e={name:"linkedin",meta:{tags:["linkedin","jobs","professionals","business","network"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16.72 2H3.36699C2.63699 2 2 2.525 2 3.246V16.629C2 17.354 2.63699 18 3.36699 18H16.716C17.45 18 18 17.35 18 16.629V3.246C18.003 2.525 17.449 2 16.72 2ZM6.959 15.337H4.66699V8.20999H6.959V15.337ZM5.892 7.12698H5.87599C5.14199 7.12698 4.66699 6.581 4.66699 5.897C4.66699 5.201 5.155 4.668 5.905 4.668C6.655 4.668 7.11399 5.197 7.12999 5.897C7.12999 6.581 6.655 7.12698 5.892 7.12698ZM15.336 15.337H13.044V11.44C13.044 10.506 12.71 9.86899 11.881 9.86899C11.247 9.86899 10.872 10.298 10.706 10.715C10.644 10.865 10.627 11.069 10.627 11.278V15.337H8.33499V8.20999H10.627V9.202C10.961 8.727 11.482 8.043 12.694 8.043C14.199 8.043 15.337 9.035 15.337 11.173L15.336 15.337Z",fill:"currentColor",key:"fawh8a"}]]}; +export{e as linkedin}; \ No newline at end of file diff --git a/wwwroot/chunk-DcV3wrkk.js b/wwwroot/chunk-DcV3wrkk.js new file mode 100644 index 0000000..6cbe6e7 --- /dev/null +++ b/wwwroot/chunk-DcV3wrkk.js @@ -0,0 +1,2 @@ +var C={name:"sort-amount-up",meta:{tags:["sort-amount-up"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.02539 2.25098C6.03224 2.25121 6.03906 2.25153 6.0459 2.25195C6.08456 2.25429 6.12233 2.2596 6.15918 2.26758C6.19246 2.2748 6.22461 2.28607 6.25684 2.29785C6.26932 2.30242 6.28276 2.30437 6.29493 2.30957C6.31401 2.31772 6.33112 2.33004 6.34961 2.33984C6.37341 2.35248 6.39773 2.36387 6.41993 2.37891C6.45875 2.40523 6.49589 2.43533 6.53028 2.46973L9.03028 4.96973C9.32313 5.26261 9.32313 5.73739 9.03028 6.03027C8.73739 6.32316 8.26263 6.32314 7.96973 6.03027L6.75 4.81055V17C6.75 17.4142 6.41419 17.75 6 17.75C5.58579 17.75 5.25 17.4142 5.25 17V4.81055L4.03028 6.03027C3.73739 6.32316 3.26263 6.32314 2.96973 6.03027C2.67684 5.73738 2.67684 5.26262 2.96973 4.96973L5.46973 2.46973L5.52637 2.41797C5.53657 2.40965 5.54808 2.40321 5.5586 2.39551C5.57414 2.38414 5.59004 2.37345 5.60645 2.36328C5.63035 2.34849 5.65462 2.3351 5.67969 2.32324C5.69787 2.31463 5.71641 2.30697 5.73536 2.2998C5.76293 2.28942 5.79094 2.28144 5.81934 2.27441C5.8394 2.26944 5.85922 2.26309 5.87989 2.25977C5.89094 2.25799 5.90198 2.25616 5.91309 2.25488C5.94158 2.2516 5.97063 2.25 6 2.25C6.00851 2.25 6.01696 2.2507 6.02539 2.25098ZM11 16.25C11.4142 16.25 11.75 16.5858 11.75 17C11.75 17.4142 11.4142 17.75 11 17.75H10.5C10.0858 17.75 9.75 17.4142 9.75 17C9.75 16.5858 10.0858 16.25 10.5 16.25H11ZM13 13.25C13.4142 13.25 13.75 13.5858 13.75 14C13.75 14.4142 13.4142 14.75 13 14.75H10.5C10.0858 14.75 9.75 14.4142 9.75 14C9.75 13.5858 10.0858 13.25 10.5 13.25H13ZM15 10.25C15.4142 10.25 15.75 10.5858 15.75 11C15.75 11.4142 15.4142 11.75 15 11.75H10.5C10.0858 11.75 9.75 11.4142 9.75 11C9.75 10.5858 10.0858 10.25 10.5 10.25H15ZM17 7.25C17.4142 7.25003 17.75 7.58581 17.75 8C17.75 8.4142 17.4142 8.74997 17 8.75H10.5C10.0858 8.75 9.75 8.41421 9.75 8C9.75 7.58579 10.0858 7.25 10.5 7.25H17Z",fill:"currentColor",key:"bo1p2y"}]]}; +export{C as sortAmountUp}; \ No newline at end of file diff --git a/wwwroot/chunk-DdNGDl7X.js b/wwwroot/chunk-DdNGDl7X.js new file mode 100644 index 0000000..0b5c1fd --- /dev/null +++ b/wwwroot/chunk-DdNGDl7X.js @@ -0,0 +1,2 @@ +var C={name:"heading-2",meta:{tags:["subtitle","h2","second header","section","heading-2"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 3.25C10.4142 3.25 10.75 3.58579 10.75 4V16C10.75 16.4142 10.4142 16.75 10 16.75C9.58579 16.75 9.25 16.4142 9.25 16V10.75H2.75V16C2.75 16.4142 2.41421 16.75 2 16.75C1.58579 16.75 1.25 16.4142 1.25 16V4C1.25 3.58579 1.58579 3.25 2 3.25C2.41421 3.25 2.75 3.58579 2.75 4V9.25H9.25V4C9.25 3.58579 9.58579 3.25 10 3.25ZM14.541 8.17383C15.7036 7.27297 16.9637 7.05718 17.9941 7.41211C19.0163 7.76419 19.7499 8.67388 19.75 9.7998C19.75 10.7666 19.4269 11.4654 18.9248 12.0059C18.4683 12.4972 17.8578 12.8516 17.4072 13.1426C16.918 13.4586 16.5244 13.7488 16.2383 14.1553C16.0505 14.4222 15.8924 14.7676 15.8105 15.25H19C19.4142 15.25 19.75 15.5858 19.75 16C19.75 16.4142 19.4142 16.75 19 16.75H15C14.5858 16.75 14.25 16.4142 14.25 16C14.25 14.8357 14.5352 13.9691 15.0117 13.292C15.4755 12.633 16.0821 12.2126 16.5928 11.8828C17.1419 11.5282 17.5318 11.301 17.8252 10.9854C18.073 10.7186 18.25 10.3829 18.25 9.7998C18.2499 9.376 17.9834 8.99462 17.5059 8.83008C17.0364 8.66838 16.2963 8.71046 15.459 9.35938C15.1317 9.61287 14.661 9.55366 14.4072 9.22656C14.1535 8.89916 14.2136 8.42756 14.541 8.17383Z",fill:"currentColor",key:"vqj1wn"}]]}; +export{C as heading2}; \ No newline at end of file diff --git a/wwwroot/chunk-DeVIs9-9.js b/wwwroot/chunk-DeVIs9-9.js new file mode 100644 index 0000000..c7c8df3 --- /dev/null +++ b/wwwroot/chunk-DeVIs9-9.js @@ -0,0 +1,2 @@ +var L={name:"star",meta:{tags:["star","favorite","rate","like","highlight"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.0001 1.25C10.2856 1.25006 10.5467 1.41196 10.673 1.66797L13.0968 6.58301L18.5177 7.36816C18.8 7.40916 19.0348 7.60664 19.1232 7.87793C19.2115 8.14931 19.1379 8.44712 18.9337 8.64648L15.0148 12.4707L15.9396 17.874C15.9875 18.1551 15.8714 18.4388 15.6408 18.6064C15.41 18.7741 15.1043 18.7965 14.8517 18.6641L10.0001 16.1162L5.14858 18.6641C4.89599 18.7967 4.59033 18.7741 4.35951 18.6064C4.12879 18.4388 4.01278 18.1551 4.06069 17.874L4.98354 12.4717L1.06655 8.64648C0.862294 8.4471 0.788738 8.14934 0.877092 7.87793C0.96549 7.60654 1.20009 7.40907 1.48256 7.36816L6.90248 6.58301L9.32729 1.66797L9.381 1.57715C9.51942 1.37444 9.75021 1.25 10.0001 1.25ZM8.0724 7.60156C7.96309 7.82314 7.75151 7.97734 7.50698 8.0127L3.20131 8.63477L6.31362 11.6729C6.4899 11.8449 6.57079 12.0931 6.52944 12.3359L5.79408 16.6299L9.65151 14.6055L9.73549 14.5684C9.93448 14.4933 10.1579 14.5053 10.3488 14.6055L14.2052 16.6299L13.4708 12.3359C13.4295 12.0931 13.5094 11.8449 13.6857 11.6729L16.798 8.63477L12.4923 8.0127C12.2479 7.97727 12.0362 7.82306 11.9269 7.60156L9.99916 3.69531L8.0724 7.60156Z",fill:"currentColor",key:"wt5vek"}]]}; +export{L as star}; \ No newline at end of file diff --git a/wwwroot/chunk-DeW7FRwx.js b/wwwroot/chunk-DeW7FRwx.js new file mode 100644 index 0000000..c6900e1 --- /dev/null +++ b/wwwroot/chunk-DeW7FRwx.js @@ -0,0 +1,2 @@ +var t={name:"outdent",meta:{tags:["remove indent","shift left","unnest","text formatting","outdent"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18 15.25C18.4142 15.25 18.75 15.5858 18.75 16C18.75 16.4142 18.4142 16.75 18 16.75H1.99995C1.58578 16.7499 1.24994 16.4142 1.24994 16C1.24994 15.5858 1.58578 15.2501 1.99995 15.25H18ZM4.46968 6.46973C4.68413 6.25527 5.00685 6.19065 5.28706 6.30664C5.56732 6.42273 5.74996 6.69665 5.74996 7V13C5.74996 13.3033 5.56732 13.5773 5.28706 13.6934C5.00685 13.8093 4.68413 13.7447 4.46968 13.5303L1.46967 10.5303L1.41791 10.4736C1.17767 10.1791 1.19514 9.74432 1.46967 9.46973L4.46968 6.46973ZM18 11.25C18.4142 11.25 18.75 11.5858 18.75 12C18.75 12.4142 18.4142 12.75 18 12.75H7.99996C7.5858 12.7499 7.24996 12.4142 7.24996 12C7.24996 11.5858 7.5858 11.2501 7.99996 11.25H18ZM18 7.25C18.4142 7.25 18.75 7.58579 18.75 8C18.75 8.41421 18.4142 8.75 18 8.75H7.99996C7.5858 8.74994 7.24996 8.41417 7.24996 8C7.24996 7.58583 7.5858 7.25006 7.99996 7.25H18ZM18 3.25C18.4142 3.25 18.75 3.58579 18.75 4C18.75 4.41421 18.4142 4.75 18 4.75H1.99995C1.58578 4.74994 1.24994 4.41417 1.24994 4C1.24994 3.58583 1.58578 3.25006 1.99995 3.25H18Z",fill:"currentColor",key:"ufio9y"}]]}; +export{t as outdent}; \ No newline at end of file diff --git a/wwwroot/chunk-Df2sZbt9.js b/wwwroot/chunk-Df2sZbt9.js new file mode 100644 index 0000000..f96292d --- /dev/null +++ b/wwwroot/chunk-Df2sZbt9.js @@ -0,0 +1,2 @@ +var C={name:"bitcoin",meta:{tags:["bitcoin","cryptocurrency","digital","currency","btc","blockchain"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.5194 11.6729C11.2504 12.7639 9.41745 12.1749 8.82145 12.0219L9.30144 10.0949C9.89744 10.2399 11.8034 10.5379 11.5194 11.6729ZM9.95644 7.45485L9.52044 9.20787C10.0224 9.33187 11.5494 9.83286 11.7964 8.84386C12.0504 7.81086 10.4584 7.57785 9.95644 7.45485ZM17.7604 11.9349C16.6914 16.2189 12.3494 18.8299 8.06545 17.7609C3.78145 16.6919 1.17045 12.3499 2.23945 8.06587C3.30845 3.77487 7.65044 1.17085 11.9344 2.23985C16.2184 3.30885 18.8294 7.65086 17.7604 11.9349ZM7.36644 11.3459C7.32244 11.4549 7.21345 11.6149 6.96645 11.5569C6.92245 11.5569 6.32644 11.3969 6.32644 11.3969L5.89045 12.4009L7.03245 12.6849C7.25045 12.7429 7.45444 12.7939 7.65844 12.8519L7.30245 14.3069L8.17545 14.5249L8.53945 13.0849C8.77945 13.1499 9.00445 13.2089 9.23745 13.2669L8.87345 14.6998L9.75344 14.9179L10.1174 13.4628C11.6154 13.7468 12.7434 13.6298 13.2154 12.2778C13.5934 11.1868 13.1934 10.5619 12.4084 10.1469C12.9834 10.0159 13.4124 9.63785 13.5284 8.85985C13.6884 7.79785 12.8814 7.22387 11.7684 6.84487L12.1324 5.39787L11.2524 5.17986L10.9034 6.58385C10.6704 6.52585 10.4304 6.47486 10.1984 6.41686L10.5474 5.00585L9.67444 4.78786L9.31044 6.22786C9.12144 6.18386 8.93245 6.14085 8.75045 6.09685L7.54345 5.79085L7.31044 6.72887C7.31044 6.72887 7.95044 6.87387 7.95044 6.88887C8.29944 6.97587 8.36544 7.20887 8.35744 7.39787L7.36644 11.3459Z",fill:"currentColor",key:"fgdij9"}]]}; +export{C as bitcoin}; \ No newline at end of file diff --git a/wwwroot/chunk-Dfq4aNrh.js b/wwwroot/chunk-Dfq4aNrh.js new file mode 100644 index 0000000..5bce0b3 --- /dev/null +++ b/wwwroot/chunk-Dfq4aNrh.js @@ -0,0 +1,2 @@ +var C={name:"sort-alpha-up-alt",meta:{tags:["sort-alpha-up-alt"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.0254 2.25098C6.03224 2.25121 6.03907 2.25153 6.0459 2.25195C6.08456 2.25429 6.12233 2.2596 6.15918 2.26758C6.19246 2.2748 6.22461 2.28607 6.25684 2.29785C6.26932 2.30242 6.28276 2.30437 6.29493 2.30957C6.31401 2.31772 6.33112 2.33004 6.34961 2.33984C6.37342 2.35248 6.39774 2.36387 6.41993 2.37891C6.45875 2.40523 6.49589 2.43533 6.53028 2.46973L9.03028 4.96973C9.32313 5.26261 9.32313 5.73739 9.03028 6.03027C8.7374 6.32316 8.26263 6.32314 7.96973 6.03027L6.75001 4.81055V17C6.75001 17.4142 6.41419 17.75 6.00001 17.75C5.58579 17.75 5.25 17.4142 5.25 17V4.81055L4.03028 6.03027C3.73739 6.32316 3.26263 6.32314 2.96973 6.03027C2.67684 5.73738 2.67684 5.26262 2.96973 4.96973L5.46973 2.46973L5.52637 2.41797C5.53657 2.40965 5.54808 2.40321 5.5586 2.39551C5.57414 2.38414 5.59004 2.37345 5.60645 2.36328C5.63035 2.34849 5.65462 2.3351 5.67969 2.32324C5.69787 2.31463 5.71641 2.30697 5.73536 2.2998C5.76293 2.28942 5.79094 2.28144 5.81934 2.27441C5.8394 2.26944 5.85923 2.26309 5.87989 2.25977C5.89094 2.25799 5.90198 2.25616 5.91309 2.25488C5.94158 2.2516 5.97063 2.25 6.00001 2.25C6.00851 2.25 6.01696 2.2507 6.0254 2.25098ZM13.9951 10.748C14.4736 10.7481 14.8372 11.0672 14.9893 11.46L14.9932 11.4688L14.9961 11.4785L16.6963 16.249C16.8349 16.6389 16.6319 17.0679 16.2422 17.207C15.8522 17.346 15.4224 17.1418 15.2832 16.752L15.0078 15.9805H12.9805L12.7061 16.752C12.5669 17.1418 12.138 17.3459 11.7481 17.207C11.3581 17.068 11.1553 16.639 11.294 16.249L12.9932 11.4785L12.9971 11.4688L13.001 11.46C13.1531 11.0671 13.5166 10.748 13.9951 10.748ZM13.5156 14.4805H14.4736L13.9941 13.1357L13.5156 14.4805ZM15.3594 2.75C15.9419 2.75 16.3139 3.16168 16.4453 3.55273C16.5759 3.94165 16.5254 4.4392 16.1787 4.81152L16.1709 4.81934L13.3506 7.75977H15.75C16.164 7.75991 16.4999 8.09576 16.5 8.50977C16.5 8.92389 16.1641 9.25962 15.75 9.25977H12.6201C12.038 9.25968 11.671 8.84316 11.54 8.46484C11.4081 8.08313 11.4463 7.57605 11.8096 7.19922H11.8106L14.6397 4.25H12.25C11.8359 4.2499 11.5 3.91415 11.5 3.5C11.5 3.08585 11.8359 2.7501 12.25 2.75H15.3594Z",fill:"currentColor",key:"tdgspr"}]]}; +export{C as sortAlphaUpAlt}; \ No newline at end of file diff --git a/wwwroot/chunk-DgUVX8lF.js b/wwwroot/chunk-DgUVX8lF.js new file mode 100644 index 0000000..a8bcc56 --- /dev/null +++ b/wwwroot/chunk-DgUVX8lF.js @@ -0,0 +1,2 @@ +var e={name:"step-backward",meta:{tags:["step-backward","back","previous","return","rewind"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6 2.24994C6.41411 2.24994 6.74983 2.58587 6.75 2.99994V9.18943L13.4697 2.46967C13.6842 2.25534 14.007 2.19063 14.2871 2.30658C14.5673 2.42262 14.7499 2.69672 14.75 2.99994V17C14.75 17.3033 14.5673 17.5773 14.2871 17.6934C14.0069 17.8094 13.6842 17.7448 13.4697 17.5303L6.75 10.8105V17C6.75 17.4142 6.41421 17.75 6 17.75C5.58579 17.75 5.25 17.4142 5.25 17V2.99994C5.25017 2.58587 5.58589 2.24994 6 2.24994ZM8.06055 9.99998L13.25 15.1895V4.8105L8.06055 9.99998Z",fill:"currentColor",key:"p9lnx9"}]]}; +export{e as stepBackward}; \ No newline at end of file diff --git a/wwwroot/chunk-DhUq_2MX.js b/wwwroot/chunk-DhUq_2MX.js new file mode 100644 index 0000000..8d1f27c --- /dev/null +++ b/wwwroot/chunk-DhUq_2MX.js @@ -0,0 +1,2 @@ +var C={name:"car",meta:{tags:["car","vehicle","transport","drive","auto"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.2998 2.25C15.0251 2.25 15.6932 2.69804 15.9443 3.40332L17.7051 8.24414L17.7725 8.43164C18.3511 8.71716 18.75 9.31115 18.75 10V14.5C18.75 15.0959 18.451 15.6205 17.9961 15.9365C17.9974 15.9576 18 15.9786 18 16V18C18 18.5523 17.5523 19 17 19H16C15.4477 19 15 18.5523 15 18V16.25H5V18C5 18.5523 4.55228 19 4 19H3C2.44772 19 2 18.5523 2 18V16C2 15.9787 2.00161 15.9575 2.00293 15.9365C1.54839 15.6204 1.25 15.0956 1.25 14.5V10C1.25 9.31146 1.64839 8.71731 2.22656 8.43164L2.29492 8.24414L4.05469 3.40332C4.30577 2.69786 4.97483 2.25 5.7002 2.25H14.2998ZM3 9.75C2.86193 9.75 2.75 9.86193 2.75 10V14.5C2.75 14.6381 2.86193 14.75 3 14.75H17C17.1381 14.75 17.25 14.6381 17.25 14.5V10C17.25 9.86193 17.1381 9.75 17 9.75H3ZM6 10.75C6.82843 10.75 7.5 11.4216 7.5 12.25C7.5 13.0784 6.82843 13.75 6 13.75C5.17157 13.75 4.5 13.0784 4.5 12.25C4.5 11.4216 5.17157 10.75 6 10.75ZM14 10.75C14.8284 10.75 15.5 11.4216 15.5 12.25C15.5 13.0784 14.8284 13.75 14 13.75C13.1716 13.75 12.5 13.0784 12.5 12.25C12.5 11.4216 13.1716 10.75 14 10.75ZM5.7002 3.75C5.58854 3.75 5.49911 3.81868 5.46777 3.9082L5.46484 3.91602L4.07129 7.75H15.9287L14.5352 3.91602L14.5322 3.9082C14.5009 3.81868 14.4115 3.75 14.2998 3.75H5.7002Z",fill:"currentColor",key:"alwgwk"}]]}; +export{C as car}; \ No newline at end of file diff --git a/wwwroot/chunk-Dhir-ebt.js b/wwwroot/chunk-Dhir-ebt.js new file mode 100644 index 0000000..f0b0518 --- /dev/null +++ b/wwwroot/chunk-Dhir-ebt.js @@ -0,0 +1,2 @@ +var t={name:"align-justify",meta:{tags:["align-justify","text-alignment","justify-text","uniform-spacing","balanced-layout"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18 15.25C18.4142 15.25 18.75 15.5858 18.75 16C18.75 16.4142 18.4142 16.75 18 16.75H2C1.58579 16.75 1.25 16.4142 1.25 16C1.25 15.5858 1.58579 15.25 2 15.25H18ZM18 11.25C18.4142 11.25 18.75 11.5858 18.75 12C18.75 12.4142 18.4142 12.75 18 12.75H2C1.58579 12.75 1.25 12.4142 1.25 12C1.25 11.5858 1.58579 11.25 2 11.25H18ZM18 7.25C18.4142 7.25 18.75 7.58579 18.75 8C18.75 8.41421 18.4142 8.75 18 8.75H2C1.58579 8.75 1.25 8.41421 1.25 8C1.25 7.58579 1.58579 7.25 2 7.25H18ZM18 3.25C18.4142 3.25 18.75 3.58579 18.75 4C18.75 4.41421 18.4142 4.75 18 4.75H2C1.58579 4.75 1.25 4.41421 1.25 4C1.25 3.58579 1.58579 3.25 2 3.25H18Z",fill:"currentColor",key:"f0xhxb"}]]}; +export{t as alignJustify}; \ No newline at end of file diff --git a/wwwroot/chunk-DhmztRen.js b/wwwroot/chunk-DhmztRen.js new file mode 100644 index 0000000..8439b25 --- /dev/null +++ b/wwwroot/chunk-DhmztRen.js @@ -0,0 +1,2 @@ +var C={name:"sort-alpha-down",meta:{tags:["sort-alpha-down"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.00001 2.25C6.41419 2.25003 6.75001 2.58581 6.75001 3V15.1895L7.96973 13.9697C8.26263 13.6769 8.7374 13.6768 9.03028 13.9697C9.32313 14.2626 9.32313 14.7374 9.03028 15.0303L6.53028 17.5303C6.4984 17.5622 6.46345 17.5893 6.42774 17.6143C6.38361 17.6451 6.3365 17.6715 6.28614 17.6924C6.25408 17.7056 6.22077 17.7141 6.18751 17.7227C6.17438 17.7261 6.16184 17.7317 6.14844 17.7344C6.14261 17.7356 6.13672 17.7363 6.13086 17.7373C6.0883 17.7448 6.04472 17.75 6.00001 17.75L5.92286 17.7461C5.90403 17.7442 5.88558 17.7406 5.86719 17.7373C5.86166 17.7363 5.85611 17.7355 5.85059 17.7344C5.8372 17.7317 5.82465 17.7261 5.81153 17.7227C5.77828 17.714 5.74493 17.7057 5.7129 17.6924C5.68376 17.6803 5.65704 17.664 5.62989 17.6484C5.5732 17.616 5.51813 17.5787 5.46973 17.5303L2.96973 15.0303C2.67684 14.7374 2.67684 14.2626 2.96973 13.9697C3.26263 13.6769 3.73739 13.6768 4.03028 13.9697L5.25 15.1895V3C5.25 2.58579 5.58579 2.25 6.00001 2.25ZM15.3594 10.75C15.9419 10.75 16.3139 11.1617 16.4453 11.5527C16.5759 11.9416 16.5254 12.4392 16.1787 12.8115L16.1709 12.8193L13.3506 15.7598H15.75C16.164 15.7599 16.4999 16.0958 16.5 16.5098C16.5 16.9239 16.1641 17.2596 15.75 17.2598H12.6201C12.038 17.2597 11.671 16.8432 11.54 16.4648C11.4081 16.0831 11.4463 15.576 11.8096 15.1992H11.8106L14.6397 12.25H12.25C11.8359 12.2499 11.5 11.9142 11.5 11.5C11.5 11.0858 11.8359 10.7501 12.25 10.75H15.3594ZM13.9951 2.74805C14.4736 2.74812 14.8372 3.06717 14.9893 3.45996L14.9932 3.46875L14.9961 3.47852L16.6963 8.24902C16.8349 8.63891 16.6319 9.06791 16.2422 9.20703C15.8522 9.34596 15.4224 9.1418 15.2832 8.75195L15.0078 7.98047H12.9805L12.7061 8.75195C12.5669 9.14179 12.138 9.34589 11.7481 9.20703C11.3581 9.06798 11.1553 8.63901 11.294 8.24902L12.9932 3.47852L12.9971 3.46875L13.001 3.45996C13.1531 3.06712 13.5166 2.74805 13.9951 2.74805ZM13.5156 6.48047H14.4736L13.9941 5.13574L13.5156 6.48047Z",fill:"currentColor",key:"s06zux"}]]}; +export{C as sortAlphaDown}; \ No newline at end of file diff --git a/wwwroot/chunk-DiZQ-0PM.js b/wwwroot/chunk-DiZQ-0PM.js new file mode 100644 index 0000000..20d3a0e --- /dev/null +++ b/wwwroot/chunk-DiZQ-0PM.js @@ -0,0 +1,2 @@ +var t={name:"align-left",meta:{tags:["align-left","text-alignment","left-aligned","start-alignment","text-flush-left"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11.9297 15.4697C12.3438 15.4697 12.6796 15.8056 12.6797 16.2197C12.6797 16.6339 12.3439 16.9697 11.9297 16.9697H1.92969C1.51561 16.9696 1.17969 16.6338 1.17969 16.2197C1.17982 15.8057 1.5157 15.4699 1.92969 15.4697H11.9297ZM18.0703 11.4697C18.4843 11.4699 18.8202 11.8057 18.8203 12.2197C18.8203 12.6338 18.4844 12.9696 18.0703 12.9697H2.07031C1.6561 12.9697 1.32031 12.6339 1.32031 12.2197C1.32044 11.8056 1.65618 11.4697 2.07031 11.4697H18.0703ZM11.9297 7.46973C12.3438 7.46973 12.6796 7.80563 12.6797 8.21973C12.6797 8.63394 12.3439 8.96973 11.9297 8.96973H1.92969C1.51561 8.96956 1.17969 8.63384 1.17969 8.21973C1.17982 7.80573 1.5157 7.46989 1.92969 7.46973H11.9297ZM18.0703 3.46973C18.4843 3.46989 18.8202 3.80573 18.8203 4.21973C18.8203 4.63384 18.4844 4.96956 18.0703 4.96973H2.07031C1.6561 4.96973 1.32031 4.63394 1.32031 4.21973C1.32044 3.80563 1.65618 3.46973 2.07031 3.46973H18.0703Z",fill:"currentColor",key:"kln5df"}]]}; +export{t as alignLeft}; \ No newline at end of file diff --git a/wwwroot/chunk-Di_IuTXY.js b/wwwroot/chunk-Di_IuTXY.js new file mode 100644 index 0000000..6c09f64 --- /dev/null +++ b/wwwroot/chunk-Di_IuTXY.js @@ -0,0 +1,2 @@ +var C={name:"bell",meta:{tags:["bell","alarm","reminder","notification","alert"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1.25C12.0647 1.25 13.7009 1.93964 14.8125 3.18945C15.9123 4.42596 16.4199 6.12213 16.4199 8C16.4199 11.4181 17.114 12.968 17.668 13.6533C17.9411 13.9911 18.1921 14.1348 18.3438 14.1973C18.4218 14.2294 18.4797 14.2429 18.5088 14.248C18.5225 14.2505 18.5303 14.251 18.5303 14.251C18.5298 14.2509 18.5264 14.2502 18.5215 14.25H18.501C18.9147 14.2505 19.25 14.5861 19.25 15C19.25 15.4142 18.9142 15.75 18.5 15.75H13.6748C13.3282 17.4636 11.8173 18.75 10 18.75C8.18274 18.75 6.67178 17.4636 6.3252 15.75H1.5C1.08579 15.75 0.75 15.4142 0.75 15C0.75 14.5861 1.08526 14.2505 1.49902 14.25H1.47852C1.4736 14.2502 1.47024 14.2509 1.46973 14.251C1.46973 14.251 1.47749 14.2505 1.49121 14.248C1.52033 14.2429 1.57817 14.2294 1.65625 14.1973C1.80787 14.1348 2.0589 13.9911 2.33203 13.6533C2.88602 12.968 3.58008 11.4181 3.58008 8C3.58008 6.12213 4.08775 4.42596 5.1875 3.18945C6.2991 1.93964 7.93532 1.25 10 1.25ZM7.87988 15.75C8.18793 16.6248 9.0177 17.25 10 17.25C10.9823 17.25 11.8121 16.6248 12.1201 15.75H7.87988ZM10 2.75C8.28473 2.75 7.08602 3.3104 6.30762 4.18555C5.51738 5.07404 5.08008 6.37787 5.08008 8C5.08008 11.2243 4.49472 13.1257 3.75 14.25H16.25C15.5053 13.1257 14.9199 11.2243 14.9199 8C14.9199 6.37787 14.4826 5.07404 13.6924 4.18555C12.914 3.3104 11.7153 2.75 10 2.75Z",fill:"currentColor",key:"fdcwim"}]]}; +export{C as bell}; \ No newline at end of file diff --git a/wwwroot/chunk-DjJUno24.js b/wwwroot/chunk-DjJUno24.js new file mode 100644 index 0000000..299f5c8 --- /dev/null +++ b/wwwroot/chunk-DjJUno24.js @@ -0,0 +1,2 @@ +var C={name:"paragraph-right",meta:{tags:["align right","text alignment","flush right","paragraph formatting","paragraph-right"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.9707 12.9697C16.2636 12.6769 16.7384 12.6769 17.0312 12.9697L19.5312 15.4697L19.583 15.5264C19.5885 15.5331 19.5924 15.541 19.5977 15.5479C19.6016 15.5531 19.6056 15.5582 19.6094 15.5635C19.6203 15.5787 19.63 15.5945 19.6396 15.6104C19.6546 15.6348 19.6677 15.6598 19.6797 15.6855C19.6878 15.703 19.6955 15.7204 19.7021 15.7383C19.7153 15.7734 19.7257 15.8092 19.7334 15.8457C19.7355 15.8557 19.7366 15.8659 19.7383 15.876C19.7444 15.9122 19.7483 15.9485 19.749 15.9854C19.7493 15.9971 19.7484 16.0088 19.748 16.0205C19.7471 16.0548 19.744 16.0889 19.7383 16.123C19.7365 16.1338 19.7356 16.1446 19.7334 16.1553C19.724 16.1997 19.7121 16.2441 19.6943 16.2871C19.6771 16.3287 19.6547 16.3672 19.6309 16.4043C19.6024 16.4486 19.57 16.4915 19.5312 16.5303L17.0312 19.0303C16.7384 19.3231 16.2636 19.3231 15.9707 19.0303C15.6778 18.7374 15.6778 18.2626 15.9707 17.9697L17.1904 16.75H1.00098C0.586763 16.75 0.250977 16.4142 0.250977 16C0.250977 15.5858 0.586763 15.25 1.00098 15.25H17.1904L15.9707 14.0303C15.6778 13.7374 15.6778 13.2626 15.9707 12.9697ZM15 1.25C15.4142 1.25003 15.75 1.58581 15.75 2C15.75 2.41419 15.4142 2.74997 15 2.75H13.75V12C13.75 12.4142 13.4142 12.75 13 12.75C12.5858 12.75 12.25 12.4142 12.25 12V2.75H9.75V12C9.75 12.4142 9.41419 12.75 9 12.75C8.58579 12.75 8.25 12.4142 8.25 12V8.75H6C5.00545 8.75 4.05189 8.35461 3.34863 7.65137C2.64537 6.94811 2.25 5.99456 2.25 5C2.25 4.00544 2.64537 3.05189 3.34863 2.34863C4.05189 1.64539 5.00545 1.25 6 1.25H15ZM6 2.75C5.40328 2.75 4.83113 2.98724 4.40918 3.40918C3.98722 3.83114 3.75 4.40326 3.75 5C3.75 5.59674 3.98722 6.16886 4.40918 6.59082C4.83113 7.01276 5.40328 7.25 6 7.25H8.25V2.75H6Z",fill:"currentColor",key:"210mmg"}]]}; +export{C as paragraphRight}; \ No newline at end of file diff --git a/wwwroot/chunk-Djkve6Lz.js b/wwwroot/chunk-Djkve6Lz.js new file mode 100644 index 0000000..72dbe2e --- /dev/null +++ b/wwwroot/chunk-Djkve6Lz.js @@ -0,0 +1,2 @@ +var t={name:"step-backward-alt",meta:{tags:["step-backward-alt","previous-step"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6 2.24994C6.41411 2.24994 6.74983 2.58587 6.75 2.99994V9.18943L13.4697 2.46967C13.6842 2.25534 14.007 2.19063 14.2871 2.30658C14.5673 2.42262 14.7499 2.69672 14.75 2.99994V17C14.75 17.3033 14.5673 17.5773 14.2871 17.6934C14.0069 17.8094 13.6842 17.7448 13.4697 17.5303L6.75 10.8105V17C6.75 17.4142 6.41421 17.75 6 17.75C5.58579 17.75 5.25 17.4142 5.25 17V2.99994C5.25017 2.58587 5.58589 2.24994 6 2.24994ZM8.06055 9.99998L13.25 15.1895V4.8105L8.06055 9.99998Z",fill:"currentColor",key:"p9lnx9"}]]}; +export{t as stepBackwardAlt}; \ No newline at end of file diff --git a/wwwroot/chunk-Dlsc2WSQ.js b/wwwroot/chunk-Dlsc2WSQ.js new file mode 100644 index 0000000..aee3777 --- /dev/null +++ b/wwwroot/chunk-Dlsc2WSQ.js @@ -0,0 +1,2 @@ +var C={name:"stamp",meta:{tags:["approval","mark","seal","validate","stamp"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 17.25C17.4142 17.25 17.75 17.5858 17.75 18C17.75 18.4142 17.4142 18.75 17 18.75H3C2.58579 18.75 2.25 18.4142 2.25 18C2.25 17.5858 2.58579 17.25 3 17.25H17ZM10 0.25C10.9946 0.25 11.9481 0.645372 12.6514 1.34863C13.3546 2.05189 13.75 3.00544 13.75 4C13.75 5.16775 13.4447 5.79629 13.1514 6.30957C12.8983 6.75251 12.75 6.97041 12.75 7.5V9.25H15.5C16.362 9.25 17.1884 9.59266 17.7979 10.2021C18.4073 10.8116 18.75 11.638 18.75 12.5V13.5C18.75 13.9641 18.5655 14.4091 18.2373 14.7373C17.9091 15.0655 17.4641 15.25 17 15.25H3C2.53587 15.25 2.09088 15.0655 1.7627 14.7373C1.43451 14.4091 1.25 13.9641 1.25 13.5V12.5C1.25 11.638 1.59266 10.8116 2.20215 10.2021C2.81164 9.59266 3.63805 9.25 4.5 9.25H7.25V7.5C7.25 6.97041 7.10174 6.75251 6.84863 6.30957C6.55534 5.79629 6.25 5.16775 6.25 4C6.25 3.00544 6.64537 2.05189 7.34863 1.34863C8.05189 0.645372 9.00544 0.25 10 0.25ZM10 1.75C9.40326 1.75 8.83114 1.98722 8.40918 2.40918C7.98722 2.83114 7.75 3.40326 7.75 4C7.75 4.83217 7.94468 5.20373 8.15137 5.56543C8.39826 5.99747 8.75 6.52967 8.75 7.5V10C8.75 10.4142 8.41421 10.75 8 10.75H4.5C4.03587 10.75 3.59088 10.9345 3.2627 11.2627C2.93451 11.5909 2.75 12.0359 2.75 12.5V13.5C2.75 13.5663 2.77636 13.6299 2.82324 13.6768C2.87013 13.7236 2.93369 13.75 3 13.75H17C17.0663 13.75 17.1299 13.7236 17.1768 13.6768C17.2236 13.6299 17.25 13.5663 17.25 13.5V12.5C17.25 12.0359 17.0655 11.5909 16.7373 11.2627C16.4091 10.9345 15.9641 10.75 15.5 10.75H12C11.5858 10.75 11.25 10.4142 11.25 10V7.5C11.25 6.52967 11.6017 5.99747 11.8486 5.56543C12.0553 5.20373 12.25 4.83217 12.25 4C12.25 3.40326 12.0128 2.83114 11.5908 2.40918C11.1689 1.98722 10.5967 1.75 10 1.75Z",fill:"currentColor",key:"xx9ozt"}]]}; +export{C as stamp}; \ No newline at end of file diff --git a/wwwroot/chunk-DmUWMOMy.js b/wwwroot/chunk-DmUWMOMy.js new file mode 100644 index 0000000..0ffac10 --- /dev/null +++ b/wwwroot/chunk-DmUWMOMy.js @@ -0,0 +1,2 @@ +var e={name:"case-sensitive",meta:{tags:["uppercase","lowercase","match case","search","case-sensitive"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M19.0003 6.25C19.4144 6.25018 19.7503 6.5859 19.7503 7V14C19.7503 14.4141 19.4144 14.7498 19.0003 14.75C18.5861 14.75 18.2503 14.4142 18.2503 14V13.7383C17.509 14.3685 16.5495 14.7499 15.5003 14.75C13.1531 14.75 11.2503 12.8472 11.2503 10.5C11.2503 8.15279 13.1531 6.25 15.5003 6.25C16.5493 6.25008 17.5091 6.63075 18.2503 7.26074V7C18.2503 6.58579 18.5861 6.25 19.0003 6.25ZM5.18391 3.2666C5.36539 3.29354 5.53974 3.36034 5.69368 3.46289C5.84741 3.56545 5.97697 3.70043 6.07161 3.85742L6.15461 4.02148L6.16731 4.05371L9.70442 13.7432C9.84609 14.1321 9.64598 14.563 9.25715 14.7051C8.8684 14.8468 8.4385 14.6463 8.29622 14.2578L7.3802 11.75H2.62043L1.70442 14.2578C1.56226 14.6463 1.13218 14.8465 0.743481 14.7051C0.354513 14.563 0.154347 14.1322 0.296215 13.7432L3.83528 4.05371L3.847 4.02148C3.94196 3.7939 4.10273 3.59967 4.30793 3.46289L4.46809 3.37207C4.63401 3.29393 4.81639 3.25195 5.00129 3.25195L5.18391 3.2666ZM15.5003 7.75C13.9815 7.75 12.7503 8.98122 12.7503 10.5C12.7503 12.0188 13.9815 13.25 15.5003 13.25C17.0189 13.2498 18.2503 12.0187 18.2503 10.5C18.2503 8.98133 17.0189 7.75018 15.5003 7.75ZM3.16829 10.25H6.83235L5.00032 5.23145L3.16829 10.25Z",fill:"currentColor",key:"fom5ne"}]]}; +export{e as caseSensitive}; \ No newline at end of file diff --git a/wwwroot/chunk-DmwkJaUI.js b/wwwroot/chunk-DmwkJaUI.js new file mode 100644 index 0000000..97705ec --- /dev/null +++ b/wwwroot/chunk-DmwkJaUI.js @@ -0,0 +1,2 @@ +var C={name:"upload",meta:{tags:["upload","send","transfer","give","provide"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18 12.25C18.4142 12.25 18.75 12.5858 18.75 13V16C18.75 17.4294 17.694 18.75 16.2197 18.75H3.78027C2.30602 18.75 1.25 17.4294 1.25 16V13C1.25 12.5858 1.58579 12.25 2 12.25C2.41421 12.25 2.75 12.5858 2.75 13V16C2.75 16.7706 3.29452 17.25 3.78027 17.25H16.2197C16.7055 17.25 17.25 16.7706 17.25 16V13C17.25 12.5858 17.5858 12.25 18 12.25ZM10.0254 1.25098C10.0319 1.2512 10.0384 1.25156 10.0449 1.25195C10.0839 1.25426 10.122 1.25954 10.1592 1.26758C10.1925 1.2748 10.2246 1.28607 10.2568 1.29785C10.2693 1.30242 10.2828 1.30437 10.2949 1.30957C10.314 1.31772 10.3311 1.33004 10.3496 1.33984C10.3734 1.35248 10.3977 1.36387 10.4199 1.37891C10.4588 1.40524 10.4959 1.43532 10.5303 1.46973L14.5303 5.46973C14.8232 5.76262 14.8232 6.23738 14.5303 6.53027C14.2374 6.82317 13.7626 6.82317 13.4697 6.53027L10.75 3.81055V13C10.75 13.4142 10.4142 13.75 10 13.75C9.58579 13.75 9.25 13.4142 9.25 13V3.81055L6.53027 6.53027C6.23738 6.82317 5.76262 6.82317 5.46973 6.53027C5.17683 6.23738 5.17683 5.76262 5.46973 5.46973L9.46973 1.46973L9.52637 1.41797C9.53656 1.40965 9.54807 1.40321 9.55859 1.39551C9.57413 1.38414 9.59003 1.37345 9.60645 1.36328C9.63034 1.34849 9.65462 1.3351 9.67969 1.32324C9.69786 1.31462 9.71641 1.30697 9.73535 1.2998C9.76293 1.28942 9.79094 1.28144 9.81934 1.27441C9.8394 1.26944 9.85922 1.26309 9.87988 1.25977C9.89094 1.25799 9.90198 1.25616 9.91309 1.25488C9.9416 1.25159 9.97061 1.25 10 1.25C10.0085 1.25 10.017 1.2507 10.0254 1.25098Z",fill:"currentColor",key:"m0nks9"}]]}; +export{C as upload}; \ No newline at end of file diff --git a/wwwroot/chunk-DnFqwJx2.js b/wwwroot/chunk-DnFqwJx2.js new file mode 100644 index 0000000..afed7a6 --- /dev/null +++ b/wwwroot/chunk-DnFqwJx2.js @@ -0,0 +1,2 @@ +var e={name:"google",meta:{tags:["google","search","brand","technology","internet"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.604 8.76599L17.523 8.42398H10.079V11.575H14.527C14.065 13.768 11.922 14.922 10.172 14.922C8.898 14.922 7.55599 14.386 6.66699 13.525C5.71999 12.593 5.183 11.322 5.174 9.99399C5.174 8.66699 5.77 7.339 6.638 6.466C7.506 5.593 8.817 5.104 10.12 5.104C11.612 5.104 12.682 5.897 13.082 6.258L15.321 4.03098C14.664 3.45398 12.86 2 10.048 2C7.87799 2 5.79799 2.83098 4.27699 4.34698C2.77599 5.83998 2 7.998 2 10C2 12.002 2.735 14.053 4.189 15.557C5.743 17.161 7.94399 18 10.21 18C12.272 18 14.226 17.192 15.619 15.726C16.988 14.283 17.696 12.287 17.696 10.194C17.697 9.312 17.608 8.78899 17.604 8.76599Z",fill:"currentColor",key:"qphvgx"}]]}; +export{e as google}; \ No newline at end of file diff --git a/wwwroot/chunk-DoP3jJhb.js b/wwwroot/chunk-DoP3jJhb.js new file mode 100644 index 0000000..7bf4813 --- /dev/null +++ b/wwwroot/chunk-DoP3jJhb.js @@ -0,0 +1,2 @@ +var C={name:"inbox",meta:{tags:["inbox","email","messages","mail","receive"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.3701 1.97949C13.9999 1.97954 14.6032 2.31876 14.9062 2.90039L18.543 8.76562C18.6704 8.90005 18.75 9.08045 18.75 9.28027V15.2803C18.7499 16.7944 17.5141 18.0303 16 18.0303H4C2.48587 18.0303 1.25013 16.7944 1.25 15.2803V9.2627C1.25017 9.25486 1.25153 9.24708 1.25195 9.23926C1.25298 9.22017 1.25441 9.2013 1.25684 9.18262C1.25853 9.16956 1.26031 9.15653 1.2627 9.14355C1.26433 9.13467 1.26661 9.12596 1.26855 9.11719C1.27683 9.07976 1.2877 9.04288 1.30176 9.00684C1.30533 8.9977 1.30858 8.98845 1.3125 8.97949C1.32667 8.94701 1.34333 8.9154 1.3623 8.88477L5.07227 2.90039C5.37892 2.32884 5.97699 1.97949 6.61035 1.97949H13.3701ZM2.75 15.2803C2.75013 15.9659 3.31429 16.5303 4 16.5303H16C16.6857 16.5303 17.2499 15.9659 17.25 15.2803V10.0303H13.6924C13.4355 11.8523 11.8744 13.2498 9.98047 13.25C8.08633 13.25 6.52449 11.8524 6.26758 10.0303H2.75V15.2803ZM6.61035 3.48047C6.52004 3.48047 6.43163 3.5342 6.39062 3.61621C6.38051 3.63638 6.36931 3.6566 6.35742 3.67578L3.34766 8.53027H7C7.41415 8.53027 7.7499 8.86614 7.75 9.28027C7.74996 9.33651 7.74224 9.39164 7.73047 9.44434V9.5C7.73073 10.7456 8.73485 11.75 9.98047 11.75C11.2259 11.7498 12.2302 10.7454 12.2305 9.5V9.28027C12.2306 8.86614 12.5663 8.53027 12.9805 8.53027H16.6328L13.623 3.67578C13.608 3.65143 13.5933 3.62553 13.5811 3.59961C13.5525 3.53917 13.4781 3.48051 13.3701 3.48047H6.61035Z",fill:"currentColor",key:"thd9vw"}]]}; +export{C as inbox}; \ No newline at end of file diff --git a/wwwroot/chunk-Dojkp9iH.js b/wwwroot/chunk-Dojkp9iH.js new file mode 100644 index 0000000..44d94be --- /dev/null +++ b/wwwroot/chunk-Dojkp9iH.js @@ -0,0 +1,2 @@ +var e={name:"clone",meta:{tags:["clone","duplicate","copy","replicate"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12 1.25C13.5188 1.25 14.75 2.48122 14.75 4V5.25H16C17.5142 5.25 18.75 6.48579 18.75 8V16C18.75 17.5142 17.5142 18.75 16 18.75H8C6.48579 18.75 5.25 17.5142 5.25 16V14.75H4C2.48122 14.75 1.25 13.5188 1.25 12V4C1.25 2.48122 2.48122 1.25 4 1.25H12ZM14.75 12C14.75 13.5188 13.5188 14.75 12 14.75H6.75V16C6.75 16.6858 7.31421 17.25 8 17.25H16C16.6858 17.25 17.25 16.6858 17.25 16V8C17.25 7.31421 16.6858 6.75 16 6.75H14.75V12ZM4 2.75C3.30964 2.75 2.75 3.30964 2.75 4V12C2.75 12.6904 3.30964 13.25 4 13.25H12C12.6904 13.25 13.25 12.6904 13.25 12V4C13.25 3.30964 12.6904 2.75 12 2.75H4Z",fill:"currentColor",key:"8hk9nl"}]]}; +export{e as clone}; \ No newline at end of file diff --git a/wwwroot/chunk-DpCzRGKD.js b/wwwroot/chunk-DpCzRGKD.js new file mode 100644 index 0000000..11cc803 --- /dev/null +++ b/wwwroot/chunk-DpCzRGKD.js @@ -0,0 +1,2 @@ +var C={name:"server",meta:{tags:["server","host","datacenter","cloud","storage"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.5 2.5C18.0523 2.5 18.5 2.94772 18.5 3.5V6.5C18.5 7.05228 18.0523 7.5 17.5 7.5C18.0523 7.5 18.5 7.94772 18.5 8.5V11.5C18.5 12.0523 18.0523 12.5 17.5 12.5C18.0523 12.5 18.5 12.9477 18.5 13.5V16.5C18.5 17.0523 18.0523 17.5 17.5 17.5H2.5C1.94772 17.5 1.5 17.0523 1.5 16.5V13.5C1.5 12.9477 1.94772 12.5 2.5 12.5C1.94772 12.5 1.5 12.0523 1.5 11.5V8.5C1.5 7.94772 1.94772 7.5 2.5 7.5C1.94772 7.5 1.5 7.05228 1.5 6.5V3.5C1.5 2.94772 1.94772 2.5 2.5 2.5H17.5ZM2.5 16.5H17.5V13.5H2.5V16.5ZM4.25 14.25C4.66421 14.25 5 14.5858 5 15C5 15.4142 4.66421 15.75 4.25 15.75C3.83579 15.75 3.5 15.4142 3.5 15C3.5 14.5858 3.83579 14.25 4.25 14.25ZM6.75 14.25C7.16421 14.25 7.5 14.5858 7.5 15C7.5 15.4142 7.16421 15.75 6.75 15.75C6.33579 15.75 6 15.4142 6 15C6 14.5858 6.33579 14.25 6.75 14.25ZM2.5 11.5H17.5V8.5H2.5V11.5ZM4.25 9.25C4.66421 9.25 5 9.58579 5 10C5 10.4142 4.66421 10.75 4.25 10.75C3.83579 10.75 3.5 10.4142 3.5 10C3.5 9.58579 3.83579 9.25 4.25 9.25ZM6.75 9.25C7.16421 9.25 7.5 9.58579 7.5 10C7.5 10.4142 7.16421 10.75 6.75 10.75C6.33579 10.75 6 10.4142 6 10C6 9.58579 6.33579 9.25 6.75 9.25ZM2.5 6.5H17.5V3.5H2.5V6.5ZM4.25 4.25C4.66421 4.25 5 4.58579 5 5C5 5.41421 4.66421 5.75 4.25 5.75C3.83579 5.75 3.5 5.41421 3.5 5C3.5 4.58579 3.83579 4.25 4.25 4.25ZM6.75 4.25C7.16421 4.25 7.5 4.58579 7.5 5C7.5 5.41421 7.16421 5.75 6.75 5.75C6.33579 5.75 6 5.41421 6 5C6 4.58579 6.33579 4.25 6.75 4.25Z",fill:"currentColor",key:"sdbhby"}]]}; +export{C as server}; \ No newline at end of file diff --git a/wwwroot/chunk-DqmIZI_F.js b/wwwroot/chunk-DqmIZI_F.js new file mode 100644 index 0000000..053d3ef --- /dev/null +++ b/wwwroot/chunk-DqmIZI_F.js @@ -0,0 +1,2 @@ +var C={name:"eye",meta:{tags:["eye","view","see","look","watch"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 3.25C13.0062 3.25008 15.1939 4.92099 16.5908 6.50391C17.2931 7.2997 17.8141 8.09259 18.1592 8.68555C18.3321 8.98266 18.462 9.2321 18.5498 9.40918C18.5937 9.49765 18.6274 9.56828 18.6504 9.61816C18.6619 9.64298 18.6714 9.66258 18.6778 9.67676C18.6809 9.68379 18.6827 9.69008 18.6846 9.69434C18.6855 9.69632 18.6869 9.69786 18.6875 9.69922L18.6885 9.70117V9.70215C18.6885 9.7025 18.6793 9.70678 18 10C18.6793 10.2932 18.6885 10.2975 18.6885 10.2979V10.2988L18.6875 10.3008C18.6869 10.3021 18.6855 10.3037 18.6846 10.3057C18.6827 10.3099 18.6809 10.3162 18.6778 10.3232C18.6714 10.3374 18.6619 10.357 18.6504 10.3818C18.6274 10.4317 18.5937 10.5024 18.5498 10.5908C18.462 10.7679 18.3321 11.0173 18.1592 11.3145C17.8141 11.9074 17.2931 12.7003 16.5908 13.4961C15.1939 15.079 13.0062 16.7499 10 16.75C6.99381 16.75 4.80615 15.079 3.40917 13.4961C2.70689 12.7003 2.18589 11.9074 1.84081 11.3145C1.66792 11.0173 1.53804 10.7679 1.45019 10.5908C1.40631 10.5024 1.37264 10.4317 1.3496 10.3818C1.33814 10.357 1.32859 10.3374 1.32226 10.3232C1.31912 10.3162 1.31728 10.3099 1.31542 10.3057C1.31455 10.3037 1.31311 10.3021 1.31249 10.3008L1.31151 10.2988V10.2979C1.31398 10.2965 1.35491 10.2785 1.99999 10C1.35491 9.72154 1.31398 9.70354 1.31151 9.70215V9.70117L1.31249 9.69922C1.31311 9.69786 1.31455 9.69632 1.31542 9.69434C1.31728 9.69007 1.31912 9.68378 1.32226 9.67676C1.32859 9.66257 1.33814 9.64297 1.3496 9.61816C1.37264 9.56827 1.40631 9.49764 1.45019 9.40918C1.53804 9.23209 1.66792 8.98265 1.84081 8.68555C2.18589 8.09258 2.70689 7.2997 3.40917 6.50391C4.80615 4.92098 6.99381 3.25 10 3.25ZM10 4.75C7.59635 4.75 5.78373 6.0791 4.5332 7.49609C3.91198 8.20004 3.44728 8.90751 3.13769 9.43945C3.00747 9.66322 2.90566 9.85501 2.83202 10C2.90566 10.145 3.00747 10.3368 3.13769 10.5605C3.44728 11.0925 3.91198 11.8 4.5332 12.5039C5.78373 13.9209 7.59635 15.25 10 15.25C12.4036 15.2499 14.2163 13.9209 15.4668 12.5039C16.088 11.7999 16.5527 11.0925 16.8623 10.5605C16.9924 10.337 17.0934 10.1449 17.167 10C17.0934 9.85507 16.9924 9.66302 16.8623 9.43945C16.5527 8.90752 16.088 8.20005 15.4668 7.49609C14.2163 6.0791 12.4036 4.75008 10 4.75ZM10 6.75C11.7948 6.75012 13.25 8.20515 13.25 10C13.25 11.7949 11.7948 13.2499 10 13.25C8.20508 13.25 6.75 11.7949 6.75 10C6.75 8.20507 8.20508 6.75 10 6.75ZM10 8.25C9.03351 8.25 8.25 9.0335 8.25 10C8.25 10.9665 9.03351 11.75 10 11.75C10.9664 11.7499 11.75 10.9664 11.75 10C11.75 9.03358 10.9664 8.25012 10 8.25ZM1.99999 10L1.31151 10.2969C1.22978 10.1073 1.22978 9.89267 1.31151 9.70312L1.99999 10ZM18.6885 9.70312C18.7702 9.89262 18.7702 10.1074 18.6885 10.2969L18 10L18.6885 9.70312Z",fill:"currentColor",key:"buowgx"}]]}; +export{C as eye}; \ No newline at end of file diff --git a/wwwroot/chunk-DrAthvAC.js b/wwwroot/chunk-DrAthvAC.js new file mode 100644 index 0000000..f33796d --- /dev/null +++ b/wwwroot/chunk-DrAthvAC.js @@ -0,0 +1,2 @@ +var C={name:"microchip-ai",meta:{tags:["microchip-ai","technology","smart","artificial-intelligence"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14 1.25C14.4142 1.25 14.75 1.58579 14.75 2V3.25H15C15.9665 3.25 16.75 4.0335 16.75 5V5.25H18C18.4142 5.25 18.75 5.58579 18.75 6C18.75 6.41421 18.4142 6.75 18 6.75H16.75V9.25H18C18.4142 9.25 18.75 9.58579 18.75 10C18.75 10.4142 18.4142 10.75 18 10.75H16.75V13.25H18C18.4142 13.25 18.75 13.5858 18.75 14C18.75 14.4142 18.4142 14.75 18 14.75H16.75V15C16.75 15.9665 15.9665 16.75 15 16.75H14.75V18C14.75 18.4142 14.4142 18.75 14 18.75C13.5858 18.75 13.25 18.4142 13.25 18V16.75H10.75V18C10.75 18.4142 10.4142 18.75 10 18.75C9.58579 18.75 9.25 18.4142 9.25 18V16.75H6.75V18C6.75 18.4142 6.41421 18.75 6 18.75C5.58579 18.75 5.25 18.4142 5.25 18V16.75H5C4.0335 16.75 3.25 15.9665 3.25 15V14.75H2C1.58579 14.75 1.25 14.4142 1.25 14C1.25 13.5858 1.58579 13.25 2 13.25H3.25V10.75H2C1.58579 10.75 1.25 10.4142 1.25 10C1.25 9.58579 1.58579 9.25 2 9.25H3.25V6.75H2C1.58579 6.75 1.25 6.41421 1.25 6C1.25 5.58579 1.58579 5.25 2 5.25H3.25V5C3.25 4.0335 4.0335 3.25 5 3.25H5.25V2C5.25 1.58579 5.58579 1.25 6 1.25C6.41421 1.25 6.75 1.58579 6.75 2V3.25H9.25V2C9.25 1.58579 9.58579 1.25 10 1.25C10.4142 1.25 10.75 1.58579 10.75 2V3.25H13.25V2C13.25 1.58579 13.5858 1.25 14 1.25ZM5 4.75C4.86193 4.75 4.75 4.86193 4.75 5V15C4.75 15.1381 4.86193 15.25 5 15.25H15C15.1381 15.25 15.25 15.1381 15.25 15V5C15.25 4.86193 15.1381 4.75 15 4.75H5ZM13 6.74902C13.4142 6.74902 13.75 7.08481 13.75 7.49902V12.502C13.7497 12.9159 13.414 13.252 13 13.252C12.586 13.252 12.2503 12.9159 12.25 12.502V7.49902C12.25 7.08481 12.5858 6.74902 13 6.74902ZM8.51074 6.74902C8.989 6.74929 9.35288 7.06826 9.50488 7.46094L9.50879 7.46973L9.51172 7.47949L11.2119 12.25C11.3505 12.6398 11.1473 13.0687 10.7578 13.208C10.3678 13.347 9.93802 13.1429 9.79883 12.7529L9.52344 11.9814H7.49609L7.22168 12.7529C7.08266 13.1429 6.65369 13.3467 6.26367 13.208C5.87364 13.0689 5.67063 12.6401 5.80957 12.25L7.50879 7.47949L7.5127 7.46973L7.5166 7.46094C7.66867 7.0681 8.03219 6.74902 8.51074 6.74902ZM8.03125 10.4814H8.98926L8.50977 9.13672L8.03125 10.4814Z",fill:"currentColor",key:"4k0lbg"}]]}; +export{C as microchipAi}; \ No newline at end of file diff --git a/wwwroot/chunk-Drt6OBoJ.js b/wwwroot/chunk-Drt6OBoJ.js new file mode 100644 index 0000000..500c58f --- /dev/null +++ b/wwwroot/chunk-Drt6OBoJ.js @@ -0,0 +1,2 @@ +var e={name:"sort-up",meta:{tags:["sort-up","ascending","up","increase","elevate"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.52638 5.91796C9.82096 5.67765 10.2557 5.69512 10.5303 5.96972L17.5303 12.9697C17.7448 13.1842 17.8094 13.5069 17.6934 13.7871C17.5773 14.0674 17.3034 14.25 17 14.25H3.00001C2.69667 14.25 2.42274 14.0674 2.30665 13.7871C2.19061 13.5069 2.25526 13.1842 2.46974 12.9697L9.46974 5.96972L9.52638 5.91796ZM4.81056 12.75H15.1895L10 7.56054L4.81056 12.75Z",fill:"currentColor",key:"gse78z"}]]}; +export{e as sortUp}; \ No newline at end of file diff --git a/wwwroot/chunk-DsRk4CXB.js b/wwwroot/chunk-DsRk4CXB.js new file mode 100644 index 0000000..51329d2 --- /dev/null +++ b/wwwroot/chunk-DsRk4CXB.js @@ -0,0 +1,2 @@ +var C={name:"bullseye",meta:{tags:["bullseye","target","aim","goal","focus"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19.0008 5.0294 19.001 10C19.001 14.9708 14.9708 19.001 10 19.001C5.0294 19.0008 1 14.9706 1 10C1.00021 5.02953 5.02953 1.00021 10 1ZM10 2.5C5.85796 2.50021 2.50021 5.85796 2.5 10C2.5 14.1422 5.85783 17.5008 10 17.501C14.1424 17.501 17.501 14.1424 17.501 10C17.5008 5.85783 14.1422 2.5 10 2.5ZM10 4.125C13.2447 4.125 15.875 6.75533 15.875 10C15.875 13.2447 13.2447 15.875 10 15.875C6.75533 15.875 4.125 13.2447 4.125 10C4.125 6.75533 6.75533 4.125 10 4.125ZM10 5.625C7.58375 5.625 5.625 7.58375 5.625 10C5.625 12.4162 7.58375 14.375 10 14.375C12.4162 14.375 14.375 12.4162 14.375 10C14.375 7.58375 12.4162 5.625 10 5.625ZM10 7.25C11.5188 7.25 12.75 8.48122 12.75 10C12.75 11.5188 11.5188 12.75 10 12.75C8.48122 12.75 7.25 11.5188 7.25 10C7.25 8.48122 8.48122 7.25 10 7.25ZM10 8.75C9.30964 8.75 8.75 9.30964 8.75 10C8.75 10.6904 9.30964 11.25 10 11.25C10.6904 11.25 11.25 10.6904 11.25 10C11.25 9.30964 10.6904 8.75 10 8.75Z",fill:"currentColor",key:"cvfon3"}]]}; +export{C as bullseye}; \ No newline at end of file diff --git a/wwwroot/chunk-Dtbj3FiL.js b/wwwroot/chunk-Dtbj3FiL.js new file mode 100644 index 0000000..e39e020 --- /dev/null +++ b/wwwroot/chunk-Dtbj3FiL.js @@ -0,0 +1,2 @@ +var o={name:"facebook",meta:{tags:["facebook","social-network","friends","like","post"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18 10.049C18 5.60301 14.419 2 10 2C5.581 2 2 5.60201 2 10.049C2 14.066 4.925 17.396 8.75 18V12.375H6.718V10.048H8.75V8.27499C8.75 6.25799 9.944 5.14401 11.772 5.14401C12.647 5.14401 13.563 5.30099 13.563 5.30099V7.28101H12.554C11.56 7.28101 11.25 7.90199 11.25 8.53799V10.049H13.469L13.114 12.376H11.25V18.001C15.075 17.396 18 14.066 18 10.049Z",fill:"currentColor",key:"ed0jw"}]]}; +export{o as facebook}; \ No newline at end of file diff --git a/wwwroot/chunk-Du5yLzP1.js b/wwwroot/chunk-Du5yLzP1.js new file mode 100644 index 0000000..9a3a889 --- /dev/null +++ b/wwwroot/chunk-Du5yLzP1.js @@ -0,0 +1,2 @@ +var e={name:"volume-down",meta:{tags:["volume-down","low-sound","decrease-volume","quiet","softer"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12.5312 2.41404C12.7564 2.23394 13.0653 2.19931 13.3252 2.3242C13.5849 2.44915 13.75 2.7118 13.75 2.99998V17C13.75 17.2882 13.5849 17.5508 13.3252 17.6758C13.0654 17.8006 12.7564 17.766 12.5312 17.5859L7.73633 13.75H3C2.58579 13.75 2.25001 13.4142 2.25 13V6.99998C2.25 6.58577 2.58579 6.24998 3 6.24998H7.73633L12.5312 2.41404ZM8.46875 7.58592C8.33577 7.6923 8.1703 7.74998 8 7.74998H3.75V12.25H8C8.1703 12.25 8.33576 12.3077 8.46875 12.414L12.25 15.4385V4.56053L8.46875 7.58592ZM15.6602 6.77049C15.9912 6.52209 16.4612 6.58896 16.71 6.9199C18.0908 8.75756 18.0888 11.2339 16.7109 13.0791C16.4631 13.4106 15.9929 13.479 15.6611 13.2314C15.3293 12.9836 15.262 12.5135 15.5098 12.1816C16.4914 10.867 16.4893 9.12246 15.5107 7.82029C15.2621 7.48919 15.3291 7.01928 15.6602 6.77049Z",fill:"currentColor",key:"1jzhj5"}]]}; +export{e as volumeDown}; \ No newline at end of file diff --git a/wwwroot/chunk-DwGN56fM.js b/wwwroot/chunk-DwGN56fM.js new file mode 100644 index 0000000..968fa1b --- /dev/null +++ b/wwwroot/chunk-DwGN56fM.js @@ -0,0 +1,2 @@ +var t={name:"heart-fill",meta:{tags:["heart-fill","love","affection","full-heart"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.2807 3.70715C12.2182 1.76503 15.3581 1.76441 17.2954 3.70715L17.2973 3.70911C19.2331 5.65192 19.232 8.79977 17.2964 10.7413L10.5307 17.5294C10.39 17.6705 10.1987 17.7501 9.99948 17.7501C9.8003 17.75 9.60887 17.6705 9.46823 17.5294L2.70261 10.7413C0.767216 8.79869 0.767186 5.65075 2.70261 3.70813C4.63969 1.76436 7.78317 1.76424 9.72018 3.70813L9.99948 3.9884L10.2788 3.70813L10.2807 3.70715Z",fill:"currentColor",key:"vjtt0t"}]]}; +export{t as heartFill}; \ No newline at end of file diff --git a/wwwroot/chunk-Dwl0dpHf.js b/wwwroot/chunk-Dwl0dpHf.js new file mode 100644 index 0000000..08ddc60 --- /dev/null +++ b/wwwroot/chunk-Dwl0dpHf.js @@ -0,0 +1,2 @@ +var C={name:"user-minus",meta:{tags:["user-minus","remove-user","delete-user","user-deletion","eliminate-user"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 12.25C12.0105 12.25 13.9066 12.418 15.3184 13.0801C16.0408 13.4189 16.6618 13.8983 17.0977 14.5703C17.5343 15.2438 17.75 16.0561 17.75 17C17.75 17.4142 17.4142 17.75 17 17.75C16.5858 17.75 16.25 17.4142 16.25 17C16.25 16.2891 16.0906 15.7735 15.8398 15.3867C15.5882 14.9987 15.2091 14.6849 14.6816 14.4375C13.5934 13.9271 11.9895 13.75 10 13.75C8.01048 13.75 6.40661 13.9271 5.31836 14.4375C4.79093 14.6849 4.41177 14.9987 4.16016 15.3867C3.90942 15.7735 3.75 16.2891 3.75 17C3.75 17.4142 3.41421 17.75 3 17.75C2.58579 17.75 2.25 17.4142 2.25 17C2.25 16.0561 2.46567 15.2438 2.90234 14.5703C3.33821 13.8983 3.95922 13.4189 4.68164 13.0801C6.09339 12.418 7.98953 12.25 10 12.25ZM10 3.25C12.0711 3.25 13.75 4.92893 13.75 7C13.75 9.07107 12.0711 10.75 10 10.75C7.92893 10.75 6.25 9.07107 6.25 7C6.25 4.92893 7.92893 3.25 10 3.25ZM18.75 9.25C19.1642 9.25 19.5 9.58579 19.5 10C19.5 10.4142 19.1642 10.75 18.75 10.75H15.25C14.8358 10.75 14.5 10.4142 14.5 10C14.5 9.58579 14.8358 9.25 15.25 9.25H18.75ZM10 4.75C8.75736 4.75 7.75 5.75736 7.75 7C7.75 8.24264 8.75736 9.25 10 9.25C11.2426 9.25 12.25 8.24264 12.25 7C12.25 5.75736 11.2426 4.75 10 4.75Z",fill:"currentColor",key:"9y2zq9"}]]}; +export{C as userMinus}; \ No newline at end of file diff --git a/wwwroot/chunk-Dx-iC3qp.js b/wwwroot/chunk-Dx-iC3qp.js new file mode 100644 index 0000000..8b5e26f --- /dev/null +++ b/wwwroot/chunk-Dx-iC3qp.js @@ -0,0 +1,2 @@ +var C={name:"face-smile",meta:{tags:["face-smile","happy","joy","pleased","positive"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM13.3037 11.7207C13.4578 11.3366 13.894 11.1501 14.2783 11.3037C14.6629 11.4575 14.85 11.8938 14.6963 12.2783L14 12C14.6886 12.2754 14.6964 12.2789 14.6963 12.2793L14.6953 12.2803V12.2822C14.6948 12.2834 14.694 12.2847 14.6934 12.2861C14.6921 12.2892 14.6902 12.2927 14.6885 12.2969C14.6849 12.3055 14.6806 12.3169 14.6748 12.3301C14.6632 12.3566 14.6469 12.3925 14.626 12.4355C14.5842 12.5215 14.5231 12.6386 14.4404 12.7764C14.2754 13.0515 14.0199 13.4156 13.6553 13.7803C12.9166 14.5189 11.7341 15.25 10 15.25C8.26587 15.25 7.08335 14.5189 6.34473 13.7803C5.98007 13.4156 5.72463 13.0515 5.55957 12.7764C5.47691 12.6386 5.41578 12.5215 5.37402 12.4355C5.3531 12.3925 5.33684 12.3566 5.3252 12.3301C5.3194 12.3169 5.31514 12.3055 5.31152 12.2969C5.30976 12.2927 5.30789 12.2892 5.30664 12.2861C5.30604 12.2847 5.30517 12.2834 5.30469 12.2822V12.2803L5.30371 12.2793C5.30365 12.2789 5.31142 12.2754 6 12L5.30371 12.2783C5.15 11.8938 5.33715 11.4575 5.72168 11.3037C6.106 11.1501 6.54224 11.3366 6.69629 11.7207C6.69685 11.722 6.6974 11.7237 6.69824 11.7256C6.70269 11.7357 6.71143 11.7542 6.72363 11.7793C6.74825 11.83 6.7889 11.9086 6.84668 12.0049C6.96288 12.1985 7.14506 12.4595 7.40527 12.7197C7.91665 13.2311 8.73413 13.75 10 13.75C11.2659 13.75 12.0834 13.2311 12.5947 12.7197C12.8549 12.4595 13.0371 12.1985 13.1533 12.0049C13.2111 11.9086 13.2518 11.83 13.2764 11.7793C13.2886 11.7542 13.2973 11.7357 13.3018 11.7256C13.3026 11.7237 13.3032 11.722 13.3037 11.7207ZM7.25 6C7.94036 6 8.5 6.55964 8.5 7.25C8.5 7.94036 7.94036 8.5 7.25 8.5C6.55964 8.5 6 7.94036 6 7.25C6 6.55964 6.55964 6 7.25 6ZM12.75 6C13.4404 6 14 6.55964 14 7.25C14 7.94036 13.4404 8.5 12.75 8.5C12.0596 8.5 11.5 7.94036 11.5 7.25C11.5 6.55964 12.0596 6 12.75 6Z",fill:"currentColor",key:"mj54tk"}]]}; +export{C as faceSmile}; \ No newline at end of file diff --git a/wwwroot/chunk-DxAgYNcA.js b/wwwroot/chunk-DxAgYNcA.js new file mode 100644 index 0000000..f4ff48d --- /dev/null +++ b/wwwroot/chunk-DxAgYNcA.js @@ -0,0 +1,2 @@ +var e={name:"minus-circle",meta:{tags:["minus-circle","remove","subtract","decrease","minus"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM14 9.25C14.4142 9.25 14.75 9.58579 14.75 10C14.75 10.4142 14.4142 10.75 14 10.75H6C5.58579 10.75 5.25 10.4142 5.25 10C5.25 9.58579 5.58579 9.25 6 9.25H14Z",fill:"currentColor",key:"nx1i2z"}]]}; +export{e as minusCircle}; \ No newline at end of file diff --git a/wwwroot/chunk-DxNlnnsq.js b/wwwroot/chunk-DxNlnnsq.js new file mode 100644 index 0000000..2c774d4 --- /dev/null +++ b/wwwroot/chunk-DxNlnnsq.js @@ -0,0 +1,2 @@ +var o={name:"clock",meta:{tags:["clock","time","hours","minutes","seconds"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM10 4.25C10.4142 4.25 10.75 4.58579 10.75 5V9.25H13C13.4142 9.25 13.75 9.58579 13.75 10C13.75 10.4142 13.4142 10.75 13 10.75H10C9.58579 10.75 9.25 10.4142 9.25 10V5C9.25 4.58579 9.58579 4.25 10 4.25Z",fill:"currentColor",key:"wod3nk"}]]}; +export{o as clock}; \ No newline at end of file diff --git a/wwwroot/chunk-Dy49cLcH.js b/wwwroot/chunk-Dy49cLcH.js new file mode 100644 index 0000000..0bbd801 --- /dev/null +++ b/wwwroot/chunk-Dy49cLcH.js @@ -0,0 +1,2 @@ +var C={name:"sort-numeric-up-alt",meta:{tags:["sort-numeric-up-alt"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.02539 2.25098C6.03224 2.25121 6.03906 2.25153 6.0459 2.25195C6.08456 2.25429 6.12233 2.2596 6.15918 2.26758C6.19246 2.2748 6.22461 2.28607 6.25684 2.29785C6.26932 2.30242 6.28276 2.30437 6.29493 2.30957C6.31401 2.31772 6.33112 2.33004 6.34961 2.33984C6.37341 2.35248 6.39773 2.36387 6.41993 2.37891C6.45875 2.40523 6.49589 2.43533 6.53028 2.46973L9.03028 4.96973C9.32313 5.26261 9.32313 5.73739 9.03028 6.03027C8.73739 6.32316 8.26263 6.32314 7.96973 6.03027L6.75 4.81055V17C6.75 17.4142 6.41419 17.75 6 17.75C5.58579 17.75 5.25 17.4142 5.25 17V4.81055L4.03028 6.03027C3.73739 6.32316 3.26263 6.32314 2.96973 6.03027C2.67684 5.73738 2.67684 5.26262 2.96973 4.96973L5.46973 2.46973L5.52637 2.41797C5.53657 2.40965 5.54808 2.40321 5.5586 2.39551C5.57414 2.38414 5.59004 2.37345 5.60645 2.36328C5.63035 2.34849 5.65462 2.3351 5.67969 2.32324C5.69787 2.31463 5.71641 2.30697 5.73536 2.2998C5.76293 2.28942 5.79094 2.28144 5.81934 2.27441C5.8394 2.26944 5.85922 2.26309 5.87989 2.25977C5.89094 2.25799 5.90198 2.25616 5.91309 2.25488C5.94158 2.2516 5.97063 2.25 6 2.25C6.00851 2.25 6.01696 2.2507 6.02539 2.25098ZM13.293 10.9785C13.7009 10.6871 14.2004 10.6908 14.5859 10.9033C14.9845 11.1231 15.25 11.5533 15.25 12.0508V16.501C15.2495 16.9148 14.9139 17.2509 14.5 17.251C14.0861 17.251 13.7505 16.9148 13.75 16.501V12.4414L13.3652 12.6563C13.0036 12.8576 12.5464 12.7267 12.3447 12.3652C12.1435 12.0036 12.2734 11.5474 12.6348 11.3457L13.293 10.9785ZM14 2.75C15.2164 2.75003 16.2039 3.71549 16.2451 4.92188C16.2478 4.94758 16.25 4.97359 16.25 5V5.5C16.25 5.91669 16.2495 6.29876 16.2285 6.63477C16.1593 8.08826 14.9268 9.24972 13.4805 9.25H13C12.5858 9.25 12.25 8.91421 12.25 8.5C12.25 8.08579 12.5858 7.75 13 7.75H13.4805C13.9035 7.74981 14.2884 7.52247 14.5166 7.1875C14.3505 7.22658 14.178 7.25 14 7.25C12.7574 7.25 11.75 6.24264 11.75 5C11.75 3.75736 12.7574 2.75 14 2.75ZM14 4.25C13.5858 4.25 13.25 4.58579 13.25 5C13.25 5.41421 13.5858 5.75 14 5.75C14.4142 5.74997 14.75 5.41419 14.75 5C14.75 4.58581 14.4142 4.25003 14 4.25Z",fill:"currentColor",key:"e7ijd7"}]]}; +export{C as sortNumericUpAlt}; \ No newline at end of file diff --git a/wwwroot/chunk-DyjsVo0K.js b/wwwroot/chunk-DyjsVo0K.js new file mode 100644 index 0000000..831349f --- /dev/null +++ b/wwwroot/chunk-DyjsVo0K.js @@ -0,0 +1,2 @@ +var e={name:"replay",meta:{tags:["replay","repeat","redo","play-again","loop"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.46973 1.46973C9.76262 1.17684 10.2374 1.17684 10.5303 1.46973C10.8231 1.76263 10.8232 2.23739 10.5303 2.53028L8.81055 4.25H10C14.0042 4.25 17.25 7.49579 17.25 11.5C17.25 15.5042 14.0042 18.75 10 18.75C5.99581 18.75 2.75003 15.5042 2.75 11.5C2.75 11.0858 3.08579 10.75 3.5 10.75C3.91421 10.75 4.25 11.0858 4.25 11.5C4.25003 14.6758 6.82423 17.25 10 17.25C13.1758 17.25 15.75 14.6758 15.75 11.5C15.75 8.32422 13.1758 5.75 10 5.75H8.81055L10.5303 7.46973C10.8231 7.76263 10.8232 8.23739 10.5303 8.53028C10.2374 8.82313 9.76261 8.82313 9.46973 8.53028L6.46973 5.53028C6.17684 5.23739 6.17686 4.76263 6.46973 4.46973L9.46973 1.46973Z",fill:"currentColor",key:"xu5ao6"}]]}; +export{e as replay}; \ No newline at end of file diff --git a/wwwroot/chunk-Dz1uAcbR.js b/wwwroot/chunk-Dz1uAcbR.js new file mode 100644 index 0000000..de6e849 --- /dev/null +++ b/wwwroot/chunk-Dz1uAcbR.js @@ -0,0 +1,2 @@ +var o={name:"columns-2",meta:{tags:["two columns","split vertical","layout","side by side","columns-2"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.2499 4.28613C17.2499 3.34078 16.5994 2.75 15.9999 2.75H10.7499V17.25H15.9999C16.5994 17.25 17.2499 16.6592 17.2499 15.7139V4.28613ZM2.74994 15.7139C2.74994 16.6592 3.40052 17.25 3.99994 17.25H9.24994V2.75H3.99994C3.40052 2.75 2.74994 3.34078 2.74994 4.28613V15.7139ZM18.7499 15.7139C18.7499 17.2932 17.6097 18.75 15.9999 18.75H3.99994C2.39022 18.75 1.24994 17.2932 1.24994 15.7139V4.28613C1.24994 2.70676 2.39022 1.25 3.99994 1.25H15.9999C17.6097 1.25 18.7499 2.70676 18.7499 4.28613V15.7139Z",fill:"currentColor",key:"esc9d5"}]]}; +export{o as columns2}; \ No newline at end of file diff --git a/wwwroot/chunk-DzyHNRwy.js b/wwwroot/chunk-DzyHNRwy.js new file mode 100644 index 0000000..83e7342 --- /dev/null +++ b/wwwroot/chunk-DzyHNRwy.js @@ -0,0 +1,2 @@ +var C={name:"sidebar",meta:{tags:["panel","navigation","drawer","layout","sidebar"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 2.25C18.6097 2.25 19.75 3.70676 19.75 5.28613V14.7139C19.75 16.2932 18.6097 17.75 17 17.75H3C1.39028 17.75 0.25 16.2932 0.25 14.7139V5.28613C0.25 3.70676 1.39028 2.25 3 2.25H17ZM3 3.75C2.40058 3.75 1.75 4.34078 1.75 5.28613V14.7139C1.75 15.6592 2.40058 16.25 3 16.25H7.25V3.75H3ZM8.75 16.25H17C17.5994 16.25 18.25 15.6592 18.25 14.7139V5.28613C18.25 4.34078 17.5994 3.75 17 3.75H8.75V16.25ZM5.5 9.75C5.91421 9.75 6.25 10.0858 6.25 10.5C6.25 10.9142 5.91421 11.25 5.5 11.25H3.5C3.08579 11.25 2.75 10.9142 2.75 10.5C2.75 10.0858 3.08579 9.75 3.5 9.75H5.5ZM5.5 7.25C5.91421 7.25 6.25 7.58579 6.25 8C6.25 8.41421 5.91421 8.75 5.5 8.75H3.5C3.08579 8.75 2.75 8.41421 2.75 8C2.75 7.58579 3.08579 7.25 3.5 7.25H5.5ZM5.5 4.75C5.91421 4.75 6.25 5.08579 6.25 5.5C6.25 5.91421 5.91421 6.25 5.5 6.25H3.5C3.08579 6.25 2.75 5.91421 2.75 5.5C2.75 5.08579 3.08579 4.75 3.5 4.75H5.5Z",fill:"currentColor",key:"j4fzv8"}]]}; +export{C as sidebar}; \ No newline at end of file diff --git a/wwwroot/chunk-Ek0JXD_m.js b/wwwroot/chunk-Ek0JXD_m.js new file mode 100644 index 0000000..0e60016 --- /dev/null +++ b/wwwroot/chunk-Ek0JXD_m.js @@ -0,0 +1,2 @@ +var o={name:"text-color",meta:{tags:["font color","typography","colorize","style","text-color"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18 17.25C18.4142 17.25 18.75 17.5858 18.75 18C18.75 18.4142 18.4142 18.75 18 18.75H2C1.58579 18.75 1.25 18.4142 1.25 18C1.25 17.5858 1.58579 17.25 2 17.25H18ZM10.1846 1.51562C10.3658 1.5426 10.5396 1.60954 10.6934 1.71191C10.8985 1.84862 11.0593 2.04307 11.1543 2.27051L11.1592 2.2832L15.6973 13.7227C15.85 14.1076 15.6613 14.5445 15.2764 14.6973C14.8915 14.8497 14.4555 14.6612 14.3027 14.2764L12.6074 10.002H7.39258L5.69727 14.2764C5.54448 14.6613 5.10862 14.849 4.72363 14.6963C4.3387 14.5435 4.14999 14.1076 4.30273 13.7227L8.8418 2.2832L8.84668 2.27051C8.94166 2.04305 9.1025 1.84863 9.30762 1.71191L9.46777 1.62109C9.63369 1.54295 9.81608 1.50195 10.001 1.50195L10.1846 1.51562ZM7.98828 8.50195H12.0117L10 3.42969L7.98828 8.50195Z",fill:"currentColor",key:"vtqmyf"}]]}; +export{o as textColor}; \ No newline at end of file diff --git a/wwwroot/chunk-FjNu0xvy.js b/wwwroot/chunk-FjNu0xvy.js new file mode 100644 index 0000000..87c5f50 --- /dev/null +++ b/wwwroot/chunk-FjNu0xvy.js @@ -0,0 +1,2 @@ +var C={name:"chart-bar",meta:{tags:["chart-bar","graphic","diagram","stats","bar-chart"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M2.5 1.75C2.91421 1.75 3.25 2.08579 3.25 2.5V16.75H17.5C17.9142 16.75 18.25 17.0858 18.25 17.5C18.25 17.9142 17.9142 18.25 17.5 18.25H2.5C2.08579 18.25 1.75 17.9142 1.75 17.5V2.5C1.75 2.08579 2.08579 1.75 2.5 1.75ZM6 9.25C6.41421 9.25 6.75 9.58579 6.75 10V14C6.75 14.4142 6.41421 14.75 6 14.75C5.58579 14.75 5.25 14.4142 5.25 14V10C5.25 9.58579 5.58579 9.25 6 9.25ZM9.5 5.25C9.91421 5.25 10.25 5.58579 10.25 6V14C10.25 14.4142 9.91421 14.75 9.5 14.75C9.08579 14.75 8.75 14.4142 8.75 14V6C8.75 5.58579 9.08579 5.25 9.5 5.25ZM13 9.25C13.4142 9.25 13.75 9.58579 13.75 10V14C13.75 14.4142 13.4142 14.75 13 14.75C12.5858 14.75 12.25 14.4142 12.25 14V10C12.25 9.58579 12.5858 9.25 13 9.25ZM16.5 5.25C16.9142 5.25 17.25 5.58579 17.25 6V14C17.25 14.4142 16.9142 14.75 16.5 14.75C16.0858 14.75 15.75 14.4142 15.75 14V6C15.75 5.58579 16.0858 5.25 16.5 5.25Z",fill:"currentColor",key:"yuykws"}]]}; +export{C as chartBar}; \ No newline at end of file diff --git a/wwwroot/chunk-GENJAxyD.js b/wwwroot/chunk-GENJAxyD.js new file mode 100644 index 0000000..e2c595a --- /dev/null +++ b/wwwroot/chunk-GENJAxyD.js @@ -0,0 +1,2 @@ +var C={name:"file-arrow-up",meta:{tags:["file-arrow-up","upload","send","transfer"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.5 1.25C10.6989 1.25 10.8896 1.32907 11.0303 1.46973L16.5303 6.96973C16.6709 7.11038 16.75 7.30109 16.75 7.5V16C16.75 17.5142 15.5142 18.75 14 18.75H6C4.48579 18.75 3.25 17.5142 3.25 16V4C3.25 2.48579 4.48579 1.25 6 1.25H10.5ZM6 2.75C5.31421 2.75 4.75 3.31421 4.75 4V16C4.75 16.6858 5.31421 17.25 6 17.25H14C14.6858 17.25 15.25 16.6858 15.25 16V8.25H10.5C10.0858 8.25 9.75 7.91421 9.75 7.5V2.75H6ZM9.52637 9.91797C9.82095 9.67766 10.2557 9.69512 10.5303 9.96973L12.5303 11.9697C12.8232 12.2626 12.8232 12.7374 12.5303 13.0303C12.2374 13.3232 11.7626 13.3232 11.4697 13.0303L10.75 12.3105V15.5C10.75 15.9142 10.4142 16.25 10 16.25C9.58579 16.25 9.25 15.9142 9.25 15.5V12.3105L8.53027 13.0303C8.23738 13.3232 7.76262 13.3232 7.46973 13.0303C7.17683 12.7374 7.17683 12.2626 7.46973 11.9697L9.46973 9.96973L9.52637 9.91797ZM11.25 6.75H14.1895L11.25 3.81055V6.75Z",fill:"currentColor",key:"2et0gt"}]]}; +export{C as fileArrowUp}; \ No newline at end of file diff --git a/wwwroot/chunk-HGJwmHfV.js b/wwwroot/chunk-HGJwmHfV.js new file mode 100644 index 0000000..f950b3e --- /dev/null +++ b/wwwroot/chunk-HGJwmHfV.js @@ -0,0 +1,2 @@ +var C={name:"folder-plus",meta:{tags:["folder-plus","add","new","create","container"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7 2.75C7.21887 2.75 7.42685 2.84558 7.56934 3.01172L10.3447 6.25H15.5C17.0142 6.25 18.25 7.48579 18.25 9V14.5C18.25 16.0142 17.0142 17.25 15.5 17.25H4.5C2.98579 17.25 1.75 16.0142 1.75 14.5V5.5C1.75 3.98579 2.98579 2.75 4.5 2.75H7ZM4.5 4.25C3.81421 4.25 3.25 4.81421 3.25 5.5V14.5C3.25 15.1858 3.81421 15.75 4.5 15.75H15.5C16.1858 15.75 16.75 15.1858 16.75 14.5V9C16.75 8.31421 16.1858 7.75 15.5 7.75H10C9.78113 7.75 9.57315 7.65442 9.43066 7.48828L6.65527 4.25H4.5ZM10 8.75C10.4142 8.75 10.75 9.08579 10.75 9.5V10.75H12C12.4142 10.75 12.75 11.0858 12.75 11.5C12.75 11.9142 12.4142 12.25 12 12.25H10.75V13.5C10.75 13.9142 10.4142 14.25 10 14.25C9.58579 14.25 9.25 13.9142 9.25 13.5V12.25H8C7.58579 12.25 7.25 11.9142 7.25 11.5C7.25 11.0858 7.58579 10.75 8 10.75H9.25V9.5C9.25 9.08579 9.58579 8.75 10 8.75Z",fill:"currentColor",key:"jwuqli"}]]}; +export{C as folderPlus}; \ No newline at end of file diff --git a/wwwroot/chunk-JTJMG7yd.js b/wwwroot/chunk-JTJMG7yd.js new file mode 100644 index 0000000..11c1f90 --- /dev/null +++ b/wwwroot/chunk-JTJMG7yd.js @@ -0,0 +1,2 @@ +var t={name:"caret-right",meta:{tags:["caret-right","next","forward","right","proceed"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M5.66504 3.32913C5.91905 3.20231 6.22305 3.23006 6.4502 3.40042L14.4502 9.40042C14.6389 9.54207 14.75 9.76409 14.75 10C14.75 10.236 14.6389 10.458 14.4502 10.5996L6.4502 16.5996C6.22305 16.77 5.91905 16.7977 5.66504 16.6709C5.41095 16.5439 5.25 16.2841 5.25 16V4.00003C5.25 3.71595 5.41095 3.45617 5.66504 3.32913ZM6.75 14.5L12.75 10L6.75 5.49905V14.5Z",fill:"currentColor",key:"ihgmz5"}]]}; +export{t as caretRight}; \ No newline at end of file diff --git a/wwwroot/chunk-JTYJStvu.js b/wwwroot/chunk-JTYJStvu.js new file mode 100644 index 0000000..64a20a6 --- /dev/null +++ b/wwwroot/chunk-JTYJStvu.js @@ -0,0 +1,2 @@ +var C={name:"moon",meta:{tags:["moon","night","dark","lunar","crescent"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.24303 1.36797C8.79397 1.24909 9.27773 1.50818 9.53307 1.89434C9.78342 2.27318 9.83494 2.79892 9.5653 3.25469C8.98007 4.24347 8.70769 5.43992 8.8983 6.71856C9.23059 8.94687 11.0512 10.7669 13.2801 11.1004C14.5589 11.2911 15.7554 11.0203 16.745 10.4354L16.9178 10.3494C17.329 10.1809 17.773 10.2468 18.1053 10.4666C18.4681 10.7066 18.7183 11.1469 18.6512 11.6541L18.6327 11.7566C17.7119 16.0499 13.6478 19.1774 8.96276 18.5906C5.06148 18.102 1.89771 14.9392 1.40905 11.0379C0.822018 6.3526 3.95005 2.28885 8.24303 1.367V1.36797ZM8.01354 2.97344C4.73946 3.94828 2.43655 7.16591 2.8983 10.8514C3.30172 14.072 5.92863 16.699 9.14928 17.1023C12.8347 17.5639 16.0502 15.2598 17.0243 11.9861C15.8504 12.5568 14.4887 12.7978 13.0594 12.5848H13.0585C10.1777 12.154 7.84463 9.82167 7.41491 6.94024C7.2016 5.51 7.44215 4.147 8.01354 2.97344Z",fill:"currentColor",key:"z13r4l"}]]}; +export{C as moon}; \ No newline at end of file diff --git a/wwwroot/chunk-JfIAHQHT.js b/wwwroot/chunk-JfIAHQHT.js new file mode 100644 index 0000000..b6ff027 --- /dev/null +++ b/wwwroot/chunk-JfIAHQHT.js @@ -0,0 +1,2 @@ +var e={name:"file-check",meta:{tags:["file-check","document","confirmed","approve","verified","correct"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.5 1.25C10.6989 1.25 10.8896 1.32907 11.0303 1.46973L16.5303 6.96973C16.6709 7.11038 16.75 7.30109 16.75 7.5V16C16.75 17.5142 15.5142 18.75 14 18.75H6C4.48579 18.75 3.25 17.5142 3.25 16V4C3.25 2.48579 4.48579 1.25 6 1.25H10.5ZM6 2.75C5.31421 2.75 4.75 3.31421 4.75 4V16C4.75 16.6858 5.31421 17.25 6 17.25H14C14.6858 17.25 15.25 16.6858 15.25 16V8.25H10.5C10.0858 8.25 9.75 7.91421 9.75 7.5V2.75H6ZM12.2197 9.96973C12.5126 9.67683 12.9874 9.67683 13.2803 9.96973C13.5732 10.2626 13.5732 10.7374 13.2803 11.0303L9.28027 15.0303C8.98738 15.3232 8.51262 15.3232 8.21973 15.0303L6.71973 13.5303C6.42683 13.2374 6.42683 12.7626 6.71973 12.4697C7.01262 12.1768 7.48738 12.1768 7.78027 12.4697L8.75 13.4395L12.2197 9.96973ZM11.25 6.75H14.1895L11.25 3.81055V6.75Z",fill:"currentColor",key:"67trx6"}]]}; +export{e as fileCheck}; \ No newline at end of file diff --git a/wwwroot/chunk-JhQNSD5G.js b/wwwroot/chunk-JhQNSD5G.js new file mode 100644 index 0000000..8d24371 --- /dev/null +++ b/wwwroot/chunk-JhQNSD5G.js @@ -0,0 +1,2 @@ +var t={name:"stop",meta:{tags:["stop","halt","end","cease","finish"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16.25 5C16.25 4.30964 15.6904 3.75 15 3.75H5C4.30964 3.75 3.75 4.30964 3.75 5V15C3.75 15.6904 4.30964 16.25 5 16.25H15C15.6904 16.25 16.25 15.6904 16.25 15V5ZM17.75 15C17.75 16.5188 16.5188 17.75 15 17.75H5C3.48122 17.75 2.25 16.5188 2.25 15V5C2.25 3.48122 3.48122 2.25 5 2.25H15C16.5188 2.25 17.75 3.48122 17.75 5V15Z",fill:"currentColor",key:"t6b6h0"}]]}; +export{t as stop}; \ No newline at end of file diff --git a/wwwroot/chunk-KIN6bPyI.js b/wwwroot/chunk-KIN6bPyI.js new file mode 100644 index 0000000..b986d44 --- /dev/null +++ b/wwwroot/chunk-KIN6bPyI.js @@ -0,0 +1,2 @@ +var e={name:"video",meta:{tags:["video","movie","clip","footage","film"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M11 3.25C12.5188 3.25 13.75 4.48122 13.75 6V7.6748L17.6143 5.35645C17.8459 5.21763 18.1341 5.21467 18.3691 5.34766C18.6043 5.48079 18.75 5.7298 18.75 6V14C18.75 14.2702 18.6043 14.5192 18.3691 14.6523C18.1341 14.7853 17.8459 14.7824 17.6143 14.6436L13.75 12.3242V14C13.75 15.5188 12.5188 16.75 11 16.75H4C2.48122 16.75 1.25 15.5188 1.25 14V6C1.25 4.48122 2.48122 3.25 4 3.25H11ZM4 4.75C3.30964 4.75 2.75 5.30964 2.75 6V14C2.75 14.6904 3.30964 15.25 4 15.25H11C11.6904 15.25 12.25 14.6904 12.25 14V6C12.25 5.30964 11.6904 4.75 11 4.75H4ZM13.75 9.4248V10.5742L17.25 12.6748V7.32422L13.75 9.4248Z",fill:"currentColor",key:"p1krjt"}]]}; +export{e as video}; \ No newline at end of file diff --git a/wwwroot/chunk-Kg0ZcSF7.js b/wwwroot/chunk-Kg0ZcSF7.js new file mode 100644 index 0000000..0ed284f --- /dev/null +++ b/wwwroot/chunk-Kg0ZcSF7.js @@ -0,0 +1,2 @@ +var C={name:"arrow-circle-left",meta:{tags:["arrow-circle-left","back","previous","left","return"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM9.46973 5.46973C9.76262 5.17683 10.2374 5.17683 10.5303 5.46973C10.8232 5.76262 10.8232 6.23738 10.5303 6.53027L7.81055 9.25H14C14.4142 9.25 14.75 9.58579 14.75 10C14.75 10.4142 14.4142 10.75 14 10.75H7.81055L10.5303 13.4697C10.8232 13.7626 10.8232 14.2374 10.5303 14.5303C10.2374 14.8232 9.76262 14.8232 9.46973 14.5303L5.46973 10.5303C5.421 10.4816 5.3831 10.4263 5.35059 10.3691C5.33512 10.342 5.31868 10.3153 5.30664 10.2861C5.28603 10.2361 5.27106 10.1844 5.26172 10.1318C5.25413 10.089 5.25 10.045 5.25 10C5.25 9.95468 5.25402 9.91029 5.26172 9.86719C5.27082 9.81636 5.28505 9.76621 5.30469 9.71777L5.30859 9.70801C5.32253 9.67504 5.34106 9.64461 5.35938 9.61426C5.39018 9.56319 5.42565 9.5138 5.46973 9.46973L9.46973 5.46973Z",fill:"currentColor",key:"6nj9kp"}]]}; +export{C as arrowCircleLeft}; \ No newline at end of file diff --git a/wwwroot/chunk-LsVw3xBU.js b/wwwroot/chunk-LsVw3xBU.js new file mode 100644 index 0000000..39d8811 --- /dev/null +++ b/wwwroot/chunk-LsVw3xBU.js @@ -0,0 +1,2 @@ +var C={name:"arrow-circle-up",meta:{tags:["arrow-circle-up","upload","increase","up","elevate"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM10.0254 5.25098C10.0319 5.2512 10.0384 5.25156 10.0449 5.25195C10.0839 5.25426 10.122 5.25954 10.1592 5.26758C10.1925 5.2748 10.2246 5.28607 10.2568 5.29785C10.2693 5.30242 10.2828 5.30437 10.2949 5.30957C10.314 5.31772 10.3311 5.33004 10.3496 5.33984C10.3734 5.35248 10.3977 5.36387 10.4199 5.37891C10.4588 5.40524 10.4959 5.43532 10.5303 5.46973L14.5303 9.46973C14.8232 9.76262 14.8232 10.2374 14.5303 10.5303C14.2374 10.8232 13.7626 10.8232 13.4697 10.5303L10.75 7.81055V14C10.75 14.4142 10.4142 14.75 10 14.75C9.58579 14.75 9.25 14.4142 9.25 14V7.81055L6.53027 10.5303C6.23738 10.8232 5.76262 10.8232 5.46973 10.5303C5.17683 10.2374 5.17683 9.76262 5.46973 9.46973L9.46973 5.46973L9.52637 5.41797C9.53656 5.40965 9.54807 5.40321 9.55859 5.39551C9.57413 5.38414 9.59003 5.37345 9.60645 5.36328C9.63034 5.34849 9.65462 5.3351 9.67969 5.32324C9.69786 5.31462 9.71641 5.30697 9.73535 5.2998C9.76293 5.28942 9.79094 5.28144 9.81934 5.27441C9.8394 5.26944 9.85922 5.26309 9.87988 5.25977C9.89094 5.25799 9.90198 5.25616 9.91309 5.25488C9.9416 5.25159 9.97061 5.25 10 5.25C10.0085 5.25 10.017 5.2507 10.0254 5.25098Z",fill:"currentColor",key:"9jueut"}]]}; +export{C as arrowCircleUp}; \ No newline at end of file diff --git a/wwwroot/chunk-LvUwGmc5.js b/wwwroot/chunk-LvUwGmc5.js new file mode 100644 index 0000000..35f71cb --- /dev/null +++ b/wwwroot/chunk-LvUwGmc5.js @@ -0,0 +1,2 @@ +var t={name:"chart-line",meta:{tags:["chart-line","growth","increase","stats","trend"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M2.5 1.75C2.91421 1.75 3.25 2.08579 3.25 2.5V16.75H17.5C17.9142 16.75 18.25 17.0858 18.25 17.5C18.25 17.9142 17.9142 18.25 17.5 18.25H2.5C2.08579 18.25 1.75 17.9142 1.75 17.5V2.5C1.75 2.08579 2.08579 1.75 2.5 1.75ZM16.5 6.75C16.9142 6.75 17.25 7.08579 17.25 7.5V11.0898C17.25 11.5041 16.9142 11.8398 16.5 11.8398C16.0858 11.8398 15.75 11.5041 15.75 11.0898V9.31055L12.5303 12.5303C12.2374 12.8232 11.7626 12.8232 11.4697 12.5303L9 10.0605L6.53027 12.5303C6.23738 12.8232 5.76262 12.8232 5.46973 12.5303C5.17683 12.2374 5.17683 11.7626 5.46973 11.4697L8.46973 8.46973L8.52637 8.41797C8.82095 8.17766 9.25567 8.19512 9.53027 8.46973L12 10.9395L14.6895 8.25H13C12.5858 8.25 12.25 7.91421 12.25 7.5C12.25 7.08579 12.5858 6.75 13 6.75H16.5Z",fill:"currentColor",key:"badhuw"}]]}; +export{t as chartLine}; \ No newline at end of file diff --git a/wwwroot/chunk-MjXr93-B.js b/wwwroot/chunk-MjXr93-B.js new file mode 100644 index 0000000..917dae9 --- /dev/null +++ b/wwwroot/chunk-MjXr93-B.js @@ -0,0 +1,2 @@ +var C={name:"box",meta:{tags:["box","package","container","storage","delivery"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.76758 1.28711C9.94368 1.22968 10.1359 1.23894 10.3066 1.31543L18.2832 4.89551C18.2905 4.89848 18.2975 4.90207 18.3047 4.90527L18.3066 4.90625C18.3425 4.92236 18.3769 4.94088 18.4092 4.96191C18.4216 4.97004 18.4324 4.98042 18.4443 4.98926C18.4668 5.00587 18.4884 5.02313 18.5088 5.04199C18.5211 5.05346 18.5334 5.06488 18.5449 5.07715C18.5653 5.09878 18.5839 5.1217 18.6016 5.14551C18.61 5.15692 18.6191 5.16779 18.627 5.17969C18.6487 5.21285 18.6673 5.2479 18.6836 5.28418C18.6896 5.29753 18.694 5.31144 18.6992 5.32519C18.711 5.35608 18.7209 5.38747 18.7285 5.41992C18.7317 5.43352 18.7349 5.44707 18.7373 5.46094C18.7393 5.47231 18.7417 5.4836 18.7432 5.49512C18.7471 5.52618 18.75 5.55772 18.75 5.58984V14.4199C18.7499 14.7579 18.5252 15.0401 18.2178 15.1338L10.3066 18.6846C10.1116 18.7719 9.8884 18.7719 9.69336 18.6846L1.78125 15.1338C1.47433 15.0398 1.25005 14.7576 1.25 14.4199V5.58984C1.25 5.55776 1.25195 5.52614 1.25586 5.49512C1.25733 5.48362 1.25973 5.4723 1.26172 5.46094C1.26412 5.44708 1.26735 5.4335 1.27051 5.41992C1.27808 5.38751 1.2881 5.35604 1.2998 5.32519C1.305 5.31146 1.30946 5.29752 1.31543 5.28418C1.33167 5.24793 1.35036 5.21283 1.37207 5.17969C1.37986 5.16779 1.38903 5.15692 1.39746 5.14551C1.41506 5.12171 1.43375 5.09877 1.4541 5.07715C1.46563 5.06488 1.47791 5.05346 1.49023 5.04199C1.51055 5.02313 1.53223 5.00588 1.55469 4.98926C1.5666 4.98041 1.5774 4.97005 1.58984 4.96191C1.62237 4.9407 1.6572 4.92247 1.69336 4.90625L1.69434 4.90527C1.70151 4.90207 1.70853 4.89849 1.71582 4.89551L9.69336 1.31543L9.76758 1.28711ZM2.75 13.9238L9.25 16.8418V9.66504L2.75 6.74805V13.9238ZM10.75 9.66504V16.8418L17.25 13.9238V6.74805L10.75 9.66504ZM3.83105 5.58984L10 8.3584L16.168 5.58984L10 2.82129L3.83105 5.58984Z",fill:"currentColor",key:"2sxqbm"}]]}; +export{C as box}; \ No newline at end of file diff --git a/wwwroot/chunk-Mo5qeugm.js b/wwwroot/chunk-Mo5qeugm.js new file mode 100644 index 0000000..72e33f3 --- /dev/null +++ b/wwwroot/chunk-Mo5qeugm.js @@ -0,0 +1,2 @@ +var C={name:"power-off",meta:{tags:["power-off","shutdown","turn-off","stop","end"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.2998 3.63965C15.5927 3.34679 16.0675 3.34677 16.3604 3.63965C17.9845 5.26383 19 7.52214 19 10C19 12.4758 17.9958 14.7359 16.3584 16.3623C14.7261 17.9836 12.4791 19 10 19C7.52417 19 5.26417 17.9958 3.6377 16.3584C2.01632 14.7261 1.00003 12.4792 1 10C1 7.52417 2.00421 5.26417 3.6416 3.6377C3.93548 3.34592 4.41028 3.34778 4.70215 3.6416C4.99392 3.93548 4.99207 4.41028 4.69824 4.70215C3.33576 6.05566 2.5 7.93594 2.5 10C2.50002 12.0607 3.34363 13.9341 4.70215 15.3018C6.05566 16.6642 7.93595 17.5 10 17.5C12.0607 17.5 13.9341 16.6564 15.3018 15.2979C16.6643 13.9444 17.5 12.0641 17.5 10C17.5 7.9379 16.6556 6.05601 15.2998 4.7002C15.0069 4.4073 15.0069 3.93254 15.2998 3.63965ZM10 1.25C10.4142 1.25 10.75 1.58579 10.75 2V10C10.75 10.4142 10.4142 10.75 10 10.75C9.58579 10.75 9.25 10.4142 9.25 10V2C9.25 1.58579 9.58579 1.25 10 1.25Z",fill:"currentColor",key:"sug4d1"}]]}; +export{C as powerOff}; \ No newline at end of file diff --git a/wwwroot/chunk-Q-k-FXvL.js b/wwwroot/chunk-Q-k-FXvL.js new file mode 100644 index 0000000..fe00674 --- /dev/null +++ b/wwwroot/chunk-Q-k-FXvL.js @@ -0,0 +1,2 @@ +var C={name:"warehouse",meta:{tags:["warehouse","storage","inventory","goods","distribution"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.25 15.7499H5.74997V16.9999C5.74997 17.138 5.8619 17.2499 5.99997 17.2499H14C14.138 17.2499 14.25 17.138 14.25 16.9999V15.7499ZM17.25 17.9999V6.61809C17.25 6.5234 17.196 6.4368 17.1113 6.39446L10.1113 2.89446C10.0411 2.85953 9.95881 2.85953 9.88864 2.89446L2.88864 6.39446C2.80394 6.4368 2.74997 6.5234 2.74997 6.61809V17.9999C2.74997 18.4141 2.41418 18.7499 1.99997 18.7499C1.58576 18.7499 1.24997 18.4141 1.24997 17.9999V6.61809C1.24997 5.95523 1.62487 5.34909 2.21774 5.05266L9.21774 1.55266C9.7102 1.30658 10.2897 1.30658 10.7822 1.55266L17.7822 5.05266C18.3751 5.34909 18.75 5.95524 18.75 6.61809V17.9999C18.75 18.4141 18.4142 18.7499 18 18.7499C17.5858 18.7499 17.25 18.4141 17.25 17.9999ZM5.74997 14.2499H14.25V12.7499H5.74997V14.2499ZM14.25 9.99993C14.2499 9.86189 14.138 9.74993 14 9.74993H5.99997C5.86192 9.74993 5.75001 9.86189 5.74997 9.99993V11.2499H14.25V9.99993ZM15.75 16.9999C15.75 17.9664 14.9665 18.7499 14 18.7499H5.99997C5.03347 18.7499 4.24997 17.9664 4.24997 16.9999V9.99993C4.25001 9.03346 5.0335 8.24993 5.99997 8.24993H14C14.9664 8.24993 15.7499 9.03346 15.75 9.99993V16.9999Z",fill:"currentColor",key:"6jox84"}]]}; +export{C as warehouse}; \ No newline at end of file diff --git a/wwwroot/chunk-QKeHKMlu.js b/wwwroot/chunk-QKeHKMlu.js new file mode 100644 index 0000000..497adf8 --- /dev/null +++ b/wwwroot/chunk-QKeHKMlu.js @@ -0,0 +1,2 @@ +var e={name:"file-excel",meta:{tags:["file-excel","spreadsheet","workbook","xls","microsoft"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.5 1.25C10.6989 1.25 10.8896 1.32907 11.0303 1.46973L16.5303 6.96973C16.6709 7.11038 16.75 7.30109 16.75 7.5V16C16.75 17.5142 15.5142 18.75 14 18.75H6C4.48579 18.75 3.25 17.5142 3.25 16V4C3.25 2.48579 4.48579 1.25 6 1.25H10.5ZM6 2.75C5.31421 2.75 4.75 3.31421 4.75 4V16C4.75 16.6858 5.31421 17.25 6 17.25H14C14.6858 17.25 15.25 16.6858 15.25 16V8.25H10.5C10.0858 8.25 9.75 7.91421 9.75 7.5V2.75H6ZM11.4141 10.0312C11.6728 9.7078 12.1453 9.65531 12.4688 9.91406C12.7922 10.1728 12.8447 10.6453 12.5859 10.9688L10.9609 13L12.5859 15.0312C12.8447 15.3547 12.7922 15.8272 12.4688 16.0859C12.1453 16.3447 11.6728 16.2922 11.4141 15.9688L10 14.2012L8.58594 15.9688C8.32718 16.2922 7.8547 16.3447 7.53125 16.0859C7.2078 15.8272 7.15531 15.3547 7.41406 15.0312L9.03906 13L7.41406 10.9688C7.15531 10.6453 7.2078 10.1728 7.53125 9.91406C7.8547 9.65531 8.32718 9.7078 8.58594 10.0312L10 11.7988L11.4141 10.0312ZM11.25 6.75H14.1895L11.25 3.81055V6.75Z",fill:"currentColor",key:"fr68vx"}]]}; +export{e as fileExcel}; \ No newline at end of file diff --git a/wwwroot/chunk-RlVQ9Dv5.js b/wwwroot/chunk-RlVQ9Dv5.js new file mode 100644 index 0000000..87861e8 --- /dev/null +++ b/wwwroot/chunk-RlVQ9Dv5.js @@ -0,0 +1,2 @@ +var e={name:"send",meta:{tags:["send","deliver","dispatch","transmit","message"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16.9584 1.29724C18.0444 1.01988 19.0347 2.05591 18.6713 3.14685L13.8012 17.767L13.7992 17.7748C13.3908 18.9589 11.7262 19.1226 11.1488 17.9545L8.11661 11.8812L2.04532 8.85095L2.03946 8.84899C0.907112 8.27247 1.01014 6.60245 2.23282 6.1986L16.8529 1.32849L16.9584 1.29724ZM9.58829 11.472L12.4242 17.1537L16.6781 4.3822L9.58829 11.472ZM2.8461 7.57458L8.52872 10.4105L15.6215 3.31774L2.8461 7.57458Z",fill:"currentColor",key:"ulta07"}]]}; +export{e as send}; \ No newline at end of file diff --git a/wwwroot/chunk-SOsl03hG.js b/wwwroot/chunk-SOsl03hG.js new file mode 100644 index 0000000..a03d6a2 --- /dev/null +++ b/wwwroot/chunk-SOsl03hG.js @@ -0,0 +1,2 @@ +var C={name:"external-link",meta:{tags:["external-link","new-tab","external","link","outside"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1.25C10.4142 1.25 10.75 1.58579 10.75 2C10.75 2.41421 10.4142 2.75 10 2.75H4C3.31421 2.75 2.75 3.31421 2.75 4V16C2.75 16.6858 3.31421 17.25 4 17.25H16C16.6858 17.25 17.25 16.6858 17.25 16V10C17.25 9.58579 17.5858 9.25 18 9.25C18.4142 9.25 18.75 9.58579 18.75 10V16C18.75 17.5142 17.5142 18.75 16 18.75H4C2.48579 18.75 1.25 17.5142 1.25 16V4C1.25 2.48579 2.48579 1.25 4 1.25H10ZM18 1.25C18.045 1.25 18.089 1.25413 18.1318 1.26172C18.1374 1.2627 18.1429 1.26354 18.1484 1.26465C18.1618 1.26733 18.1744 1.27298 18.1875 1.27637C18.2207 1.28495 18.2541 1.29344 18.2861 1.30664C18.3153 1.31868 18.342 1.33512 18.3691 1.35059C18.4263 1.3831 18.4816 1.421 18.5303 1.46973C18.5787 1.51812 18.616 1.5732 18.6484 1.62988C18.664 1.65703 18.6803 1.68375 18.6924 1.71289C18.7131 1.76289 18.7279 1.81459 18.7373 1.86719C18.745 1.91035 18.75 1.95462 18.75 2V6C18.75 6.41421 18.4142 6.75 18 6.75C17.5858 6.75 17.25 6.41421 17.25 6V3.81055L12.0303 9.03027C11.7374 9.32317 11.2626 9.32317 10.9697 9.03027C10.6768 8.73738 10.6768 8.26262 10.9697 7.96973L16.1895 2.75H14C13.5858 2.75 13.25 2.41421 13.25 2C13.25 1.58579 13.5858 1.25 14 1.25H18Z",fill:"currentColor",key:"kyeyio"}]]}; +export{C as externalLink}; \ No newline at end of file diff --git a/wwwroot/chunk-ScKTfEtG.js b/wwwroot/chunk-ScKTfEtG.js new file mode 100644 index 0000000..f48b8ef --- /dev/null +++ b/wwwroot/chunk-ScKTfEtG.js @@ -0,0 +1,2 @@ +var e={name:"chevron-circle-up",meta:{tags:["chevron-circle-up","upload","increase","up","elevate"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM9.52637 7.41797C9.82095 7.17766 10.2557 7.19512 10.5303 7.46973L14.5303 11.4697C14.8232 11.7626 14.8232 12.2374 14.5303 12.5303C14.2374 12.8232 13.7626 12.8232 13.4697 12.5303L10 9.06055L6.53027 12.5303C6.23738 12.8232 5.76262 12.8232 5.46973 12.5303C5.17683 12.2374 5.17683 11.7626 5.46973 11.4697L9.46973 7.46973L9.52637 7.41797Z",fill:"currentColor",key:"u5nfs5"}]]}; +export{e as chevronCircleUp}; \ No newline at end of file diff --git a/wwwroot/chunk-SwTArhR9.js b/wwwroot/chunk-SwTArhR9.js new file mode 100644 index 0000000..f753939 --- /dev/null +++ b/wwwroot/chunk-SwTArhR9.js @@ -0,0 +1,2 @@ +var C={name:"grip-vertical",meta:{tags:["drag handle","move","reorder","vertical dots","grip-vertical"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M6.5 15.25C7.46421 15.25 8.25 16.0358 8.25 17C8.25 17.9642 7.46421 18.75 6.5 18.75C5.53579 18.75 4.75 17.9642 4.75 17C4.75 16.0358 5.53579 15.25 6.5 15.25ZM13.5 15.25C14.4642 15.25 15.25 16.0358 15.25 17C15.25 17.9642 14.4642 18.75 13.5 18.75C12.5358 18.75 11.75 17.9642 11.75 17C11.75 16.0358 12.5358 15.25 13.5 15.25ZM6.5 8.25C7.46421 8.25 8.25 9.03579 8.25 10C8.25 10.9642 7.46421 11.75 6.5 11.75C5.53579 11.75 4.75 10.9642 4.75 10C4.75 9.03579 5.53579 8.25 6.5 8.25ZM13.5 8.25C14.4642 8.25 15.25 9.03579 15.25 10C15.25 10.9642 14.4642 11.75 13.5 11.75C12.5358 11.75 11.75 10.9642 11.75 10C11.75 9.03579 12.5358 8.25 13.5 8.25ZM6.5 1.25C7.46421 1.25 8.25 2.03579 8.25 3C8.25 3.96421 7.46421 4.75 6.5 4.75C5.53579 4.75 4.75 3.96421 4.75 3C4.75 2.03579 5.53579 1.25 6.5 1.25ZM13.5 1.25C14.4642 1.25 15.25 2.03579 15.25 3C15.25 3.96421 14.4642 4.75 13.5 4.75C12.5358 4.75 11.75 3.96421 11.75 3C11.75 2.03579 12.5358 1.25 13.5 1.25Z",fill:"currentColor",key:"amu1ct"}]]}; +export{C as gripVertical}; \ No newline at end of file diff --git a/wwwroot/chunk-T-_fYD-A.js b/wwwroot/chunk-T-_fYD-A.js new file mode 100644 index 0000000..1552abb --- /dev/null +++ b/wwwroot/chunk-T-_fYD-A.js @@ -0,0 +1,2 @@ +var C={name:"lightbulb",meta:{tags:["lightbulb","idea","inspiration","invention","light"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13 18C13.4142 18 13.75 18.3358 13.75 18.75C13.75 19.1642 13.4142 19.5 13 19.5H7C6.58579 19.5 6.25 19.1642 6.25 18.75C6.25 18.3358 6.58579 18 7 18H13ZM15.25 7.25C15.25 4.35051 12.8995 2 10 2C7.10051 2 4.75 4.35051 4.75 7.25C4.75 9.01178 5.61715 10.5709 6.95117 11.5244C7.4057 11.8492 7.75 12.3875 7.75 13.0244V14.75C7.75 14.8881 7.86193 15 8 15H12C12.1381 15 12.25 14.8881 12.25 14.75V13.0244C12.25 12.3875 12.5943 11.8492 13.0488 11.5244C14.3828 10.5709 15.25 9.01178 15.25 7.25ZM16.75 7.25C16.75 9.51662 15.6321 11.5222 13.9209 12.7451C13.7946 12.8354 13.75 12.9474 13.75 13.0244V14.75C13.75 15.7165 12.9665 16.5 12 16.5H8C7.0335 16.5 6.25 15.7165 6.25 14.75V13.0244C6.25 12.9474 6.20543 12.8354 6.0791 12.7451C4.36788 11.5222 3.25 9.51661 3.25 7.25C3.25 3.52208 6.27208 0.5 10 0.5C13.7279 0.5 16.75 3.52208 16.75 7.25Z",fill:"currentColor",key:"dxnf"}]]}; +export{C as lightbulb}; \ No newline at end of file diff --git a/wwwroot/chunk-TBs5TgSJ.js b/wwwroot/chunk-TBs5TgSJ.js new file mode 100644 index 0000000..7a2ba24 --- /dev/null +++ b/wwwroot/chunk-TBs5TgSJ.js @@ -0,0 +1,2 @@ +var C={name:"file-edit",meta:{tags:["file-edit","modify","amend","revise","change"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16.0928 8.74902C16.6257 8.76159 17.1898 8.95667 17.6055 9.36426C18.0216 9.77243 18.2262 10.332 18.2461 10.8633C18.2659 11.3951 18.1023 11.98 17.6758 12.415L17.6709 12.4199L11.2803 18.8193C11.1558 18.944 10.9919 19.0215 10.8164 19.0371L8.56641 19.2363C8.34631 19.2559 8.12857 19.1781 7.97168 19.0225C7.81494 18.8669 7.73429 18.6498 7.75195 18.4297L7.93262 16.1992C7.94702 16.0221 8.02385 15.8553 8.14941 15.7295L14.5391 9.33008C14.5749 9.29421 14.6151 9.26366 14.6562 9.23633C15.0749 8.88097 15.6047 8.73755 16.0928 8.74902ZM9 0.75C9.0481 0.75 9.09504 0.75502 9.14062 0.763672C9.14351 0.764223 9.14654 0.764063 9.14941 0.764648C9.1638 0.767556 9.17733 0.773625 9.19141 0.777344C9.22446 0.786104 9.25758 0.794466 9.28906 0.807617C9.31855 0.819944 9.34561 0.836695 9.37305 0.852539C9.38756 0.860905 9.40303 0.867609 9.41699 0.876953C9.45636 0.903352 9.49276 0.933616 9.52637 0.966797C9.52751 0.967929 9.52913 0.968586 9.53027 0.969727L15.0303 6.46973C15.166 6.60545 15.25 6.79289 15.25 7V7.5C15.25 7.91421 14.9142 8.25 14.5 8.25C14.1738 8.25 13.8991 8.04077 13.7959 7.75H9C8.58579 7.75 8.25 7.41421 8.25 7V2.25H4.5C3.81421 2.25 3.25 2.81421 3.25 3.5V15.5C3.25 16.1858 3.81421 16.75 4.5 16.75H6C6.41421 16.75 6.75 17.0858 6.75 17.5C6.75 17.9142 6.41421 18.25 6 18.25H4.5C2.98579 18.25 1.75 17.0142 1.75 15.5V3.5C1.75 1.98579 2.98579 0.75 4.5 0.75H9ZM16.0576 10.248C15.8466 10.2431 15.6874 10.3136 15.6006 10.4004C15.5782 10.4228 15.5529 10.4418 15.5283 10.4609L9.40527 16.5947L9.31934 17.6631L10.4121 17.5664L16.6035 11.3643C16.6867 11.2793 16.7547 11.1244 16.7471 10.9189C16.7393 10.7131 16.6583 10.5373 16.5547 10.4355C16.4504 10.3334 16.2694 10.2531 16.0576 10.248ZM9.75 6.25H12.6895L9.75 3.31055V6.25Z",fill:"currentColor",key:"phfn34"}]]}; +export{C as fileEdit}; \ No newline at end of file diff --git a/wwwroot/chunk-UF4Lczch.js b/wwwroot/chunk-UF4Lczch.js new file mode 100644 index 0000000..b30a292 --- /dev/null +++ b/wwwroot/chunk-UF4Lczch.js @@ -0,0 +1,2 @@ +var a={name:"star-half",meta:{tags:["star-half","rate","like","average"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.1701 1.2695C10.5095 1.34868 10.7501 1.65138 10.7501 1.99996V15.2695C10.7501 15.5481 10.5954 15.8039 10.3488 15.9336L5.14858 18.664C4.89599 18.7966 4.59033 18.7741 4.35951 18.6064C4.12879 18.4388 4.01278 18.1551 4.06069 17.874L4.98354 12.4716L1.06655 8.64645C0.862294 8.44706 0.788738 8.1493 0.877092 7.87789C0.96549 7.6065 1.20009 7.40903 1.48256 7.36813L6.90248 6.58297L9.32729 1.66793C9.4815 1.3555 9.83073 1.19049 10.1701 1.2695ZM8.0724 7.60153C7.96309 7.8231 7.75151 7.97731 7.50698 8.01266L3.20131 8.63473L6.31362 11.6728C6.4899 11.8449 6.57079 12.0931 6.52944 12.3359L5.79408 16.6298L9.25014 14.8154V5.21481L8.0724 7.60153Z",fill:"currentColor",key:"geix9y"}]]}; +export{a as starHalf}; \ No newline at end of file diff --git a/wwwroot/chunk-V7rQGa3P.js b/wwwroot/chunk-V7rQGa3P.js new file mode 100644 index 0000000..c46d535 --- /dev/null +++ b/wwwroot/chunk-V7rQGa3P.js @@ -0,0 +1,2 @@ +var e={name:"chevron-circle-left",meta:{tags:["chevron-circle-left","back","return","left","previous"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM11.4697 5.46973C11.7626 5.17683 12.2374 5.17683 12.5303 5.46973C12.8232 5.76262 12.8232 6.23738 12.5303 6.53027L9.06055 10L12.5303 13.4697C12.8232 13.7626 12.8232 14.2374 12.5303 14.5303C12.2374 14.8232 11.7626 14.8232 11.4697 14.5303L7.46973 10.5303C7.17683 10.2374 7.17683 9.76262 7.46973 9.46973L11.4697 5.46973Z",fill:"currentColor",key:"6y0p8o"}]]}; +export{e as chevronCircleLeft}; \ No newline at end of file diff --git a/wwwroot/chunk-VNIMy3Ze.js b/wwwroot/chunk-VNIMy3Ze.js new file mode 100644 index 0000000..50ef80d --- /dev/null +++ b/wwwroot/chunk-VNIMy3Ze.js @@ -0,0 +1,2 @@ +var e={name:"credit-card",meta:{tags:["credit-card","payment","purchase","money","bank"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 3.25C17.9665 3.25 18.75 4.0335 18.75 5V15C18.75 15.9665 17.9665 16.75 17 16.75H3C2.0335 16.75 1.25 15.9665 1.25 15V5C1.25 4.0335 2.0335 3.25 3 3.25H17ZM2.75 15C2.75 15.1381 2.86193 15.25 3 15.25H17C17.1381 15.25 17.25 15.1381 17.25 15V8.75H2.75V15ZM7 11C7.55228 11 8 11.4477 8 12C8 12.5523 7.55228 13 7 13H5C4.44772 13 4 12.5523 4 12C4 11.4477 4.44772 11 5 11H7ZM3 4.75C2.86193 4.75 2.75 4.86193 2.75 5V7.25H17.25V5C17.25 4.86193 17.1381 4.75 17 4.75H3Z",fill:"currentColor",key:"e8r242"}]]}; +export{e as creditCard}; \ No newline at end of file diff --git a/wwwroot/chunk-VY-KOt6k.js b/wwwroot/chunk-VY-KOt6k.js new file mode 100644 index 0000000..92d84cb --- /dev/null +++ b/wwwroot/chunk-VY-KOt6k.js @@ -0,0 +1,2 @@ +var C={name:"database",meta:{tags:["database","data","storage","information","records"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 0.740234C13.2244 0.740234 16.244 1.96531 17.4805 2.52734H17.4795C18.1225 2.81556 18.5 3.45258 18.5 4.12012V15.8701C18.4999 16.5495 18.1018 17.1773 17.4814 17.4609L17.4824 17.4619C16.2529 18.0254 13.2239 19.25 10 19.25C6.78043 19.25 3.76533 18.028 2.52539 17.4648V17.4658C1.87932 17.1787 1.50009 16.5393 1.5 15.8701V4.12012C1.50005 3.44076 1.89752 2.81208 2.51758 2.52832L3.05957 2.29004C4.507 1.67813 7.17889 0.740234 10 0.740234ZM17 12.1758C16.6198 12.3375 16.1534 12.5229 15.6211 12.708C14.1413 13.2227 12.1156 13.75 10 13.75C7.88442 13.75 5.85868 13.2227 4.37891 12.708C3.84659 12.5229 3.38023 12.3375 3 12.1758V15.8701C3.00007 15.9529 3.03395 16.0197 3.08203 16.0615L3.13477 16.0947L3.14062 16.0977C4.32437 16.6357 7.10469 17.75 10 17.75C12.896 17.75 15.6878 16.6352 16.8584 16.0986C16.9378 16.0623 16.9999 15.9704 17 15.8701V12.1758ZM17 6.67578C16.6198 6.83745 16.1534 7.02286 15.6211 7.20801C14.1413 7.7227 12.1156 8.25 10 8.25C7.88442 8.25 5.85868 7.7227 4.37891 7.20801C3.84659 7.02286 3.38023 6.83745 3 6.67578V10.5303C3.06292 10.5597 3.13165 10.5943 3.20801 10.6289C3.60526 10.8088 4.17741 11.0507 4.87109 11.292C6.26631 11.7773 8.11565 12.25 10 12.25C11.8843 12.25 13.7337 11.7773 15.1289 11.292C15.8226 11.0507 16.3947 10.8088 16.792 10.6289C16.8684 10.5943 16.9371 10.5597 17 10.5303V6.67578ZM10 2.24023C7.10418 2.24023 4.31333 3.35503 3.14258 3.8916L3.1416 3.89258C3.06226 3.92903 3.00005 4.01995 3 4.12012V5.03027C3.06292 5.05973 3.13165 5.09433 3.20801 5.12891C3.60526 5.30879 4.17741 5.55071 4.87109 5.79199C6.26631 6.27728 8.11565 6.75 10 6.75C11.8843 6.75 13.7337 6.27728 15.1289 5.79199C15.8226 5.55071 16.3947 5.30879 16.792 5.12891C16.8684 5.09433 16.9371 5.05973 17 5.03027V4.12012C17 4.00956 16.9391 3.92837 16.8652 3.89551L16.8594 3.89258C15.6756 3.35454 12.8953 2.24023 10 2.24023Z",fill:"currentColor",key:"dy9mxr"}]]}; +export{C as database}; \ No newline at end of file diff --git a/wwwroot/chunk-VfxUxs1J.js b/wwwroot/chunk-VfxUxs1J.js new file mode 100644 index 0000000..d36ac3b --- /dev/null +++ b/wwwroot/chunk-VfxUxs1J.js @@ -0,0 +1,2 @@ +var o={name:"arrow-down-right",meta:{tags:["arrow-down-right","southeast","move","diagonal","direction"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M4.51961 4.5196C4.81249 4.22673 5.28725 4.22675 5.58015 4.5196L14.2002 13.1397V6.46002C14.2002 6.04581 14.536 5.71003 14.9502 5.71003C15.3643 5.71021 15.7002 6.04592 15.7002 6.46002V14.9502C15.7002 14.9949 15.695 15.0385 15.6875 15.0811C15.6617 15.2273 15.5934 15.3675 15.4805 15.4805C15.4195 15.5415 15.3489 15.5865 15.2754 15.6221C15.2635 15.6279 15.2525 15.6355 15.2402 15.6406C15.2018 15.6567 15.1622 15.6683 15.1221 15.6777C15.1142 15.6796 15.1066 15.683 15.0986 15.6846C15.0928 15.6857 15.0869 15.6865 15.0811 15.6875C15.063 15.6907 15.0449 15.6944 15.0264 15.6963L14.9502 15.7002H6.46003C6.04595 15.7002 5.71024 15.3642 5.71003 14.9502C5.71003 14.536 6.04581 14.2002 6.46003 14.2002H13.1397L4.51961 5.58014C4.22675 5.28725 4.22673 4.81248 4.51961 4.5196Z",fill:"currentColor",key:"z4pjr6"}]]}; +export{o as arrowDownRight}; \ No newline at end of file diff --git a/wwwroot/chunk-VvX1PNil.js b/wwwroot/chunk-VvX1PNil.js new file mode 100644 index 0000000..514fb10 --- /dev/null +++ b/wwwroot/chunk-VvX1PNil.js @@ -0,0 +1,2 @@ +var o={name:"bookmark-fill",meta:{tags:["bookmark-fill","save","favorite","keep"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.75 1.25C15.2642 1.25 16.5 2.48579 16.5 4V18C16.5 18.2792 16.3451 18.5357 16.0977 18.665C15.8501 18.7944 15.5505 18.7747 15.3213 18.6152L10 14.9131L4.67871 18.6152C4.44946 18.7747 4.14985 18.7944 3.90234 18.665C3.65491 18.5357 3.5 18.2792 3.5 18V4C3.5 2.48579 4.73579 1.25 6.25 1.25H13.75Z",fill:"currentColor",key:"3udkb0"}]]}; +export{o as bookmarkFill}; \ No newline at end of file diff --git a/wwwroot/chunk-XA_3gkgl.js b/wwwroot/chunk-XA_3gkgl.js new file mode 100644 index 0000000..3af041b --- /dev/null +++ b/wwwroot/chunk-XA_3gkgl.js @@ -0,0 +1,2 @@ +var e={name:"home",meta:{tags:["home","house","homepage","shelter","building"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.55011 2.40073C9.81678 2.20073 10.1838 2.20073 10.4505 2.40073L18.4506 8.40073C18.7814 8.64939 18.8484 9.11939 18.6 9.45054C18.3515 9.78141 17.8814 9.84806 17.5502 9.59995L16.7504 8.99937V17.0003C16.7502 17.4143 16.4143 17.7502 16.0004 17.7503H4.00027C3.58618 17.7503 3.25047 17.4144 3.25026 17.0003V8.99937L2.45045 9.59995C2.11931 9.84828 1.64929 9.78131 1.40064 9.45054C1.15219 9.11928 1.21897 8.64933 1.55005 8.40073L9.55011 2.40073ZM4.75027 7.87437V16.2503H7.25029V10.0003C7.25029 9.58613 7.58608 9.25034 8.0003 9.25034H12.0003C12.4144 9.25048 12.7503 9.58621 12.7503 10.0003V16.2503H15.2504V7.87437L10.0003 3.93687L4.75027 7.87437ZM8.7503 16.2503H11.2503V10.7503H8.7503V16.2503Z",fill:"currentColor",key:"sk8l5t"}]]}; +export{e as home}; \ No newline at end of file diff --git a/wwwroot/chunk-XOZrc7dX.js b/wwwroot/chunk-XOZrc7dX.js new file mode 100644 index 0000000..6ae8d91 --- /dev/null +++ b/wwwroot/chunk-XOZrc7dX.js @@ -0,0 +1,2 @@ +var o={name:"sort-down-fill",meta:{tags:["sort-down-fill","descending","arrange","reduction"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16.9997 5.75C17.303 5.75 17.5769 5.9327 17.6931 6.21289C17.8091 6.49313 17.7444 6.81579 17.53 7.03027L10.53 14.0303C10.2371 14.323 9.76226 14.3231 9.46942 14.0303L2.46942 7.03027C2.2551 6.81582 2.19039 6.49303 2.30634 6.21289C2.42238 5.93274 2.69648 5.75013 2.99969 5.75H16.9997Z",fill:"currentColor",key:"ewos3p"}]]}; +export{o as sortDownFill}; \ No newline at end of file diff --git a/wwwroot/chunk-XZxkDu_O.js b/wwwroot/chunk-XZxkDu_O.js new file mode 100644 index 0000000..2023c5a --- /dev/null +++ b/wwwroot/chunk-XZxkDu_O.js @@ -0,0 +1,2 @@ +var e={name:"check-square",meta:{tags:["check-square","confirm","agree","approved","accepted"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12.8604 1.25C13.2744 1.25019 13.6104 1.5859 13.6104 2C13.6104 2.4141 13.2744 2.74981 12.8604 2.75H4C3.31421 2.75 2.75 3.31421 2.75 4V16C2.75 16.6858 3.31421 17.25 4 17.25H16C16.6858 17.25 17.25 16.6858 17.25 16V8.29004C17.25 7.87583 17.5858 7.54004 18 7.54004C18.4142 7.54004 18.75 7.87583 18.75 8.29004V16C18.75 17.5142 17.5142 18.75 16 18.75H4C2.48579 18.75 1.25 17.5142 1.25 16V4C1.25 2.48579 2.48579 1.25 4 1.25H12.8604ZM16.9697 2.96973C17.2626 2.67683 17.7374 2.67683 18.0303 2.96973C18.3232 3.26262 18.3232 3.73738 18.0303 4.03027L9.03027 13.0303C8.73738 13.3232 8.26262 13.3232 7.96973 13.0303L4.96973 10.0303C4.67683 9.73738 4.67683 9.26262 4.96973 8.96973C5.26262 8.67683 5.73738 8.67683 6.03027 8.96973L8.5 11.4395L16.9697 2.96973Z",fill:"currentColor",key:"m2cgrn"}]]}; +export{e as checkSquare}; \ No newline at end of file diff --git a/wwwroot/chunk-ZOeRqZOs.js b/wwwroot/chunk-ZOeRqZOs.js new file mode 100644 index 0000000..7bd57cd --- /dev/null +++ b/wwwroot/chunk-ZOeRqZOs.js @@ -0,0 +1,2 @@ +var e={name:"apple",meta:{tags:["apple","brand","computer","technology","mac"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M14.241 10.455C14.234 9.14399 14.827 8.155 16.027 7.426C15.355 6.465 14.341 5.93601 13.001 5.83301C11.733 5.73301 10.347 6.57199 9.84 6.57199C9.304 6.57199 8.07501 5.86801 7.11101 5.86801C5.11801 5.90001 3 7.45801 3 10.626C3 11.562 3.17101 12.529 3.51401 13.527C3.97101 14.838 5.622 18.053 7.343 17.999C8.243 17.978 8.87901 17.36 10.051 17.36C11.187 17.36 11.776 17.999 12.78 17.999C14.516 17.974 16.009 15.052 16.445 13.738C14.116 12.641 14.241 10.523 14.241 10.455ZM12.219 4.59C13.194 3.433 13.105 2.379 13.076 2C12.215 2.05 11.219 2.58601 10.651 3.24701C10.026 3.95401 9.658 4.829 9.737 5.815C10.669 5.886 11.519 5.408 12.219 4.59Z",fill:"currentColor",key:"ejor3r"}]]}; +export{e as apple}; \ No newline at end of file diff --git a/wwwroot/chunk-_V3n7xDN.js b/wwwroot/chunk-_V3n7xDN.js new file mode 100644 index 0000000..8f39c5b --- /dev/null +++ b/wwwroot/chunk-_V3n7xDN.js @@ -0,0 +1,2 @@ +var C={name:"percentage",meta:{tags:["percentage","ratio","portion","rate","fraction"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.5 11.25C14.7426 11.25 15.75 12.2574 15.75 13.5C15.75 14.7426 14.7426 15.75 13.5 15.75C12.2574 15.75 11.25 14.7426 11.25 13.5C11.25 12.2574 12.2574 11.25 13.5 11.25ZM14.4199 4.51953C14.7128 4.22693 15.1876 4.22693 15.4805 4.51953C15.7731 4.81237 15.7731 5.28723 15.4805 5.58008L5.58008 15.4805C5.28723 15.7731 4.81238 15.7731 4.51953 15.4805C4.22691 15.1876 4.22689 14.7128 4.51953 14.4199L14.4199 4.51953ZM13.5 12.75C13.0858 12.75 12.75 13.0858 12.75 13.5C12.75 13.9142 13.0858 14.25 13.5 14.25C13.9142 14.25 14.25 13.9142 14.25 13.5C14.25 13.0858 13.9142 12.75 13.5 12.75ZM6.5 4.25C7.74264 4.25 8.75 5.25736 8.75 6.5C8.75 7.74264 7.74264 8.75 6.5 8.75C5.25736 8.75 4.25 7.74264 4.25 6.5C4.25 5.25736 5.25736 4.25 6.5 4.25ZM6.5 5.75C6.08579 5.75 5.75 6.08579 5.75 6.5C5.75 6.91421 6.08579 7.25 6.5 7.25C6.91421 7.25 7.25 6.91421 7.25 6.5C7.25 6.08579 6.91421 5.75 6.5 5.75Z",fill:"currentColor",key:"9uau9v"}]]}; +export{C as percentage}; \ No newline at end of file diff --git a/wwwroot/chunk-_fgp-_Im.js b/wwwroot/chunk-_fgp-_Im.js new file mode 100644 index 0000000..b0282ac --- /dev/null +++ b/wwwroot/chunk-_fgp-_Im.js @@ -0,0 +1,2 @@ +var C={name:"arrow-up-left",meta:{tags:["arrow-up-left","northwest","move","diagonal","direction"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M13.54 4.2998C13.9541 4.29992 14.2899 4.63577 14.29 5.0498C14.29 5.46395 13.9542 5.79969 13.54 5.7998H6.86035L15.4805 14.4199C15.773 14.7128 15.7732 15.1877 15.4805 15.4805C15.1877 15.7732 14.7128 15.773 14.4199 15.4805L5.7998 6.86035V13.54C5.79967 13.9541 5.46394 14.29 5.0498 14.29C4.63576 14.2899 4.29994 13.9541 4.2998 13.54V5.0498C4.29982 5.0041 4.30466 4.95946 4.3125 4.91602C4.31332 4.91149 4.31355 4.90686 4.31445 4.90234C4.31705 4.88936 4.32194 4.87699 4.3252 4.86426C4.34556 4.7845 4.37685 4.70659 4.42383 4.63574C4.42753 4.63016 4.43268 4.62559 4.43652 4.62012C4.46116 4.58505 4.48818 4.55088 4.51953 4.51953C4.55088 4.48818 4.58505 4.46116 4.62012 4.43652C4.66342 4.40613 4.70944 4.3792 4.75879 4.3584C4.79301 4.344 4.82865 4.33429 4.86426 4.3252C4.87699 4.32194 4.88936 4.31704 4.90234 4.31445C4.90686 4.31355 4.91149 4.31332 4.91602 4.3125C4.95946 4.30466 5.00411 4.29982 5.0498 4.2998H13.54Z",fill:"currentColor",key:"9mhgg8"}]]}; +export{C as arrowUpLeft}; \ No newline at end of file diff --git a/wwwroot/chunk-atguE-R9.js b/wwwroot/chunk-atguE-R9.js new file mode 100644 index 0000000..380854c --- /dev/null +++ b/wwwroot/chunk-atguE-R9.js @@ -0,0 +1,2 @@ +var o={name:"microsoft",meta:{tags:["microsoft","brand","computer","technology","windows"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M2 2H9.5V9.5H2V2ZM10.5 2H18V9.5H10.5V2ZM2 10.5H9.5V18H2V10.5ZM10.5 10.5H18V18H10.5V10.5Z",fill:"currentColor",key:"uvyllt"}]]}; +export{o as microsoft}; \ No newline at end of file diff --git a/wwwroot/chunk-cd5BPHHE.js b/wwwroot/chunk-cd5BPHHE.js new file mode 100644 index 0000000..b36149c --- /dev/null +++ b/wwwroot/chunk-cd5BPHHE.js @@ -0,0 +1,2 @@ +var C={name:"sign-in",meta:{tags:["sign-in","login","enter","connect","access"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16 1.25C17.4294 1.25 18.75 2.30602 18.75 3.78027V16.2197C18.75 17.694 17.4294 18.75 16 18.75H13C12.5858 18.75 12.25 18.4142 12.25 18C12.25 17.5858 12.5858 17.25 13 17.25H16C16.7706 17.25 17.25 16.7055 17.25 16.2197V3.78027C17.25 3.29452 16.7706 2.75 16 2.75H13C12.5858 2.75 12.25 2.41421 12.25 2C12.25 1.58579 12.5858 1.25 13 1.25H16ZM8.46973 5.46973C8.76262 5.17683 9.23738 5.17683 9.53027 5.46973L13.5303 9.46973C13.5787 9.51812 13.616 9.5732 13.6484 9.62988C13.664 9.65703 13.6803 9.68375 13.6924 9.71289C13.7131 9.76289 13.7279 9.81459 13.7373 9.86719C13.745 9.91035 13.75 9.95462 13.75 10C13.75 10.045 13.7449 10.089 13.7373 10.1318C13.7279 10.1845 13.713 10.2361 13.6924 10.2861C13.6803 10.3153 13.6639 10.342 13.6484 10.3691C13.616 10.4261 13.5789 10.4817 13.5303 10.5303L9.53027 14.5303C9.23738 14.8232 8.76262 14.8232 8.46973 14.5303C8.17683 14.2374 8.17683 13.7626 8.46973 13.4697L11.1895 10.75H2C1.58579 10.75 1.25 10.4142 1.25 10C1.25 9.58579 1.58579 9.25 2 9.25H11.1895L8.46973 6.53027C8.17683 6.23738 8.17683 5.76262 8.46973 5.46973Z",fill:"currentColor",key:"vn01z3"}]]}; +export{C as signIn}; \ No newline at end of file diff --git a/wwwroot/chunk-djEMptga.js b/wwwroot/chunk-djEMptga.js new file mode 100644 index 0000000..26a22b4 --- /dev/null +++ b/wwwroot/chunk-djEMptga.js @@ -0,0 +1,2 @@ +var e={name:"thumbs-down",meta:{tags:["thumbs-down","dislike","negative","disagree","bad"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.2506 3.61035C17.2506 3.14099 16.8656 2.75015 16.3766 2.75H14.7653V10.25H16.3766C16.8596 10.2498 17.2506 9.85528 17.2506 9.37988V3.61035ZM9.02701 16C9.02701 16.6887 9.5904 17.2499 10.2692 17.25H10.359C10.4507 17.25 10.5433 17.1945 10.5866 17.0938L13.2545 10.8438L13.2643 2.75H4.81021C4.45212 2.75006 4.14235 3.00538 4.07583 3.37305L4.07486 3.37207L2.76138 10.8691C2.68145 11.3364 3.03283 11.75 3.49673 11.75H9.02701V16ZM18.7506 9.37988C18.7506 10.6843 17.6874 11.7498 16.3766 11.75H14.4997L11.9655 17.6846L11.9645 17.6865C11.6897 18.3256 11.0633 18.75 10.359 18.75H10.2692C8.75611 18.7499 7.52701 17.5112 7.52701 16V13.25H3.49673C2.08912 13.25 1.04578 11.9844 1.28286 10.6123L1.28384 10.6104L2.59829 3.11035L2.59927 3.10645C2.79296 2.03449 3.71659 1.25006 4.81021 1.25H16.3766C17.6813 1.25015 18.7506 2.2999 18.7506 3.61035V9.37988Z",fill:"currentColor",key:"ncxdfb"}]]}; +export{e as thumbsDown}; \ No newline at end of file diff --git a/wwwroot/chunk-eJsK3p_u.js b/wwwroot/chunk-eJsK3p_u.js new file mode 100644 index 0000000..c369ab5 --- /dev/null +++ b/wwwroot/chunk-eJsK3p_u.js @@ -0,0 +1,2 @@ +var C={name:"download",meta:{tags:["download","save","transfer","get","receive"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M18 12.25C18.4142 12.25 18.75 12.5858 18.75 13V16C18.75 17.4294 17.694 18.75 16.2197 18.75H3.78027C2.30602 18.75 1.25 17.4294 1.25 16V13C1.25 12.5858 1.58579 12.25 2 12.25C2.41421 12.25 2.75 12.5858 2.75 13V16C2.75 16.7706 3.29452 17.25 3.78027 17.25H16.2197C16.7055 17.25 17.25 16.7706 17.25 16V13C17.25 12.5858 17.5858 12.25 18 12.25ZM10 1.25C10.4142 1.25 10.75 1.58579 10.75 2V11.1895L13.4697 8.46973C13.7626 8.17683 14.2374 8.17683 14.5303 8.46973C14.8232 8.76262 14.8232 9.23738 14.5303 9.53027L10.5303 13.5303C10.4817 13.5789 10.4261 13.616 10.3691 13.6484C10.342 13.6639 10.3153 13.6803 10.2861 13.6924C10.2541 13.7056 10.2208 13.7141 10.1875 13.7227C10.1744 13.7261 10.1618 13.7317 10.1484 13.7344C10.1429 13.7355 10.1374 13.7363 10.1318 13.7373C10.089 13.7449 10.045 13.75 10 13.75C9.95462 13.75 9.91035 13.745 9.86719 13.7373C9.86165 13.7363 9.8561 13.7355 9.85059 13.7344C9.8372 13.7317 9.82464 13.7261 9.81152 13.7227C9.77828 13.714 9.74492 13.7057 9.71289 13.6924C9.68375 13.6803 9.65703 13.664 9.62988 13.6484C9.5732 13.616 9.51812 13.5787 9.46973 13.5303L5.46973 9.53027C5.17683 9.23738 5.17683 8.76262 5.46973 8.46973C5.76262 8.17683 6.23738 8.17683 6.53027 8.46973L9.25 11.1895V2C9.25 1.58579 9.58579 1.25 10 1.25Z",fill:"currentColor",key:"54i1em"}]]}; +export{C as download}; \ No newline at end of file diff --git a/wwwroot/chunk-ezNq0ua9.js b/wwwroot/chunk-ezNq0ua9.js new file mode 100644 index 0000000..36e171b --- /dev/null +++ b/wwwroot/chunk-ezNq0ua9.js @@ -0,0 +1,2 @@ +var e={name:"delete-left",meta:{tags:["delete-left","remove","backspace","erase","eliminate"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.5811 3.25C18.5464 3.25045 19.3311 4.03258 19.3311 5V15C19.3311 15.9659 18.5469 16.7496 17.5811 16.75H5.63478C5.03057 16.75 4.47096 16.4382 4.15138 15.9287L4.1504 15.9277L0.859385 10.6621C0.606971 10.2572 0.606971 9.74275 0.859385 9.33789L4.1504 4.07227L4.15138 4.07129C4.47096 3.56181 5.03057 3.25 5.63478 3.25H17.5811ZM5.63478 4.75C5.54981 4.75 5.46851 4.79298 5.42188 4.86621L5.42286 4.86719L2.21485 10L5.42188 15.1318L5.4629 15.1816C5.50912 15.2252 5.57074 15.25 5.63478 15.25H17.5811C17.7185 15.2496 17.8311 15.1375 17.8311 15V5C17.8311 4.86198 17.719 4.75045 17.5811 4.75H5.63478ZM14.1748 6.71973C14.4677 6.42686 14.9425 6.42691 15.2354 6.71973C15.5283 7.01262 15.5283 7.48738 15.2354 7.78027L13.0156 10L15.2354 12.2197C15.5283 12.5126 15.5283 12.9874 15.2354 13.2803C14.9425 13.5731 14.4677 13.5731 14.1748 13.2803L11.9551 11.0605L9.73536 13.2803C9.44246 13.5731 8.96768 13.5731 8.67481 13.2803C8.38203 12.9874 8.38203 12.5126 8.67481 12.2197L10.8945 10L8.67481 7.78027C8.38203 7.4874 8.38203 7.0126 8.67481 6.71973C8.96768 6.42686 9.44246 6.42691 9.73536 6.71973L11.9551 8.93945L14.1748 6.71973Z",fill:"currentColor",key:"1zi475"}]]}; +export{e as deleteLeft}; \ No newline at end of file diff --git a/wwwroot/chunk-fdVMa7yg.js b/wwwroot/chunk-fdVMa7yg.js new file mode 100644 index 0000000..c0a2179 --- /dev/null +++ b/wwwroot/chunk-fdVMa7yg.js @@ -0,0 +1,2 @@ +var C={name:"cart-plus",meta:{tags:["cart-plus","add-to-cart","purchase"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M7.75 15.25C8.57843 15.25 9.25 15.9216 9.25 16.75C9.25 17.5784 8.57843 18.25 7.75 18.25C6.92157 18.25 6.25 17.5784 6.25 16.75C6.25 15.9216 6.92157 15.25 7.75 15.25ZM14.25 15.25C15.0784 15.25 15.75 15.9216 15.75 16.75C15.75 17.5784 15.0784 18.25 14.25 18.25C13.4216 18.25 12.75 17.5784 12.75 16.75C12.75 15.9216 13.4216 15.25 14.25 15.25ZM4 1.75C4.36246 1.75 4.67344 2.00959 4.73828 2.36621L5.17188 4.75H18C18.2308 4.75 18.4487 4.85628 18.5908 5.03809C18.7329 5.22006 18.7835 5.45765 18.7275 5.68164L16.7275 13.6816C16.6441 14.0155 16.3442 14.25 16 14.25H6C5.63754 14.25 5.32656 13.9904 5.26172 13.6338L3.37402 3.25H2C1.58579 3.25 1.25 2.91421 1.25 2.5C1.25 2.08579 1.58579 1.75 2 1.75H4ZM6.62598 12.75H15.415L17.04 6.25H5.44434L6.62598 12.75ZM11.1396 6.75C11.5539 6.75 11.8896 7.08579 11.8896 7.5V8.75H13.1396C13.5539 8.75 13.8896 9.08579 13.8896 9.5C13.8896 9.91421 13.5539 10.25 13.1396 10.25H11.8896V11.5C11.8896 11.9142 11.5539 12.25 11.1396 12.25C10.7256 12.2498 10.3896 11.9141 10.3896 11.5V10.25H9.13965C8.7256 10.2498 8.38965 9.91409 8.38965 9.5C8.38965 9.08591 8.7256 8.7502 9.13965 8.75H10.3896V7.5C10.3896 7.08591 10.7256 6.7502 11.1396 6.75Z",fill:"currentColor",key:"6dn1dq"}]]}; +export{C as cartPlus}; \ No newline at end of file diff --git a/wwwroot/chunk-fdepd8SS.js b/wwwroot/chunk-fdepd8SS.js new file mode 100644 index 0000000..0e8e836 --- /dev/null +++ b/wwwroot/chunk-fdepd8SS.js @@ -0,0 +1,2 @@ +var C={name:"compass",meta:{tags:["compass","navigation","direction","explorer","pathfinder"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM13.9404 5.62012C14.0204 5.59023 14.1105 5.59015 14.1904 5.62012C14.3701 5.69024 14.4498 5.87995 14.3799 6.0498L12.4297 10.9297C12.1497 11.6096 11.6203 12.1499 10.9404 12.4199L6.05957 14.3701C5.97969 14.3999 5.88942 14.4001 5.80957 14.3701C5.6298 14.3 5.55016 14.1094 5.62012 13.9395L7.57031 9.05957C7.85028 8.37993 8.37995 7.84033 9.05957 7.57031L13.9404 5.62012ZM10 9C9.45001 9.00001 9 9.45001 9 10C9.00005 10.55 9.45004 11 10 11C10.55 11 11 10.55 11 10C11 9.45 10.55 9 10 9Z",fill:"currentColor",key:"o13wic"}]]}; +export{C as compass}; \ No newline at end of file diff --git a/wwwroot/chunk-gbvE5VLF.js b/wwwroot/chunk-gbvE5VLF.js new file mode 100644 index 0000000..f0e7d9c --- /dev/null +++ b/wwwroot/chunk-gbvE5VLF.js @@ -0,0 +1,2 @@ +var C={name:"question-circle",meta:{tags:["question-circle","help","info","query","uncertainty"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM10 13.25C10.55 13.25 11 13.7 11 14.25C11 14.8 10.55 15.25 10 15.25C9.45 15.25 9 14.8 9 14.25C9 13.7 9.45 13.25 10 13.25ZM10 4.75C10.895 4.75 11.7145 5.11292 12.3008 5.69922C12.8871 6.28552 13.25 7.10502 13.25 8C13.25 8.89498 12.8871 9.71448 12.3008 10.3008C11.8833 10.7183 11.3469 11.0204 10.75 11.1611V11.5C10.75 11.9142 10.4142 12.25 10 12.25C9.58579 12.25 9.25 11.9142 9.25 11.5V10.5C9.25 10.0858 9.58579 9.75 10 9.75C10.485 9.75 10.9256 9.55295 11.2393 9.23926C11.553 8.92556 11.75 8.48502 11.75 8C11.75 7.51498 11.553 7.07444 11.2393 6.76074C10.9256 6.44705 10.485 6.25 10 6.25C9.51498 6.25 9.07444 6.44705 8.76074 6.76074C8.44705 7.07444 8.25 7.51498 8.25 8C8.25 8.41421 7.91421 8.75 7.5 8.75C7.08579 8.75 6.75 8.41421 6.75 8C6.75 7.10502 7.11291 6.28552 7.69922 5.69922C8.28552 5.11292 9.10502 4.75 10 4.75Z",fill:"currentColor",key:"yjsa3z"}]]}; +export{C as questionCircle}; \ No newline at end of file diff --git a/wwwroot/chunk-gdakxr4X.js b/wwwroot/chunk-gdakxr4X.js new file mode 100644 index 0000000..5b52a6d --- /dev/null +++ b/wwwroot/chunk-gdakxr4X.js @@ -0,0 +1,2 @@ +var C={name:"heading-5",meta:{tags:["h5","fifth header","section","subheading","heading-5"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 3.25C10.4142 3.25 10.75 3.58579 10.75 4V16C10.75 16.4142 10.4142 16.75 10 16.75C9.58579 16.75 9.25 16.4142 9.25 16V10.75H2.75V16C2.75 16.4142 2.41421 16.75 2 16.75C1.58579 16.75 1.25 16.4142 1.25 16V4C1.25 3.58579 1.58579 3.25 2 3.25C2.41421 3.25 2.75 3.58579 2.75 4V9.25H9.25V4C9.25 3.58579 9.58579 3.25 10 3.25ZM19 7.25C19.4142 7.25 19.75 7.58579 19.75 8C19.75 8.41421 19.4142 8.75 19 8.75H15.75V10.25H16.2998C18.1564 10.25 19.75 11.6304 19.75 13.5C19.75 15.3696 18.1564 16.75 16.2998 16.75C15.6844 16.75 15.1697 16.6233 14.665 16.3711C14.2946 16.1859 14.1439 15.7347 14.3291 15.3643C14.5144 14.994 14.9646 14.8443 15.335 15.0293C15.6301 15.1769 15.9156 15.25 16.2998 15.25C17.4432 15.25 18.25 14.4304 18.25 13.5C18.25 12.5696 17.4432 11.75 16.2998 11.75H15C14.5858 11.75 14.25 11.4142 14.25 11V8C14.25 7.58579 14.5858 7.25 15 7.25H19Z",fill:"currentColor",key:"85t6by"}]]}; +export{C as heading5}; \ No newline at end of file diff --git a/wwwroot/chunk-guzEECZJ.js b/wwwroot/chunk-guzEECZJ.js new file mode 100644 index 0000000..ab90e2c --- /dev/null +++ b/wwwroot/chunk-guzEECZJ.js @@ -0,0 +1,2 @@ +var C={name:"building-columns",meta:{tags:["building-columns","architecture","structure","pillar","bank"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 17.25C17.4142 17.25 17.75 17.5858 17.75 18C17.75 18.4142 17.4142 18.75 17 18.75H2.99996C2.58575 18.75 2.24996 18.4142 2.24996 18C2.24996 17.5858 2.58575 17.25 2.99996 17.25H17ZM3.24996 15V9.99998C3.24996 9.58576 3.58575 9.24998 3.99996 9.24998C4.41418 9.24998 4.74996 9.58576 4.74996 9.99998V15C4.74996 15.4142 4.41418 15.75 3.99996 15.75C3.58575 15.75 3.24996 15.4142 3.24996 15ZM7.24996 15V9.99998C7.24996 9.58576 7.58575 9.24998 7.99996 9.24998C8.41418 9.24998 8.74996 9.58576 8.74996 9.99998V15C8.74996 15.4142 8.41418 15.75 7.99996 15.75C7.58575 15.75 7.24996 15.4142 7.24996 15ZM11.25 15V9.99998C11.25 9.58576 11.5858 9.24998 12 9.24998C12.4142 9.24998 12.75 9.58576 12.75 9.99998V15C12.75 15.4142 12.4142 15.75 12 15.75C11.5858 15.75 11.25 15.4142 11.25 15ZM15.25 15V9.99998C15.25 9.58576 15.5858 9.24998 16 9.24998C16.4142 9.24998 16.75 9.58576 16.75 9.99998V15C16.75 15.4142 16.4142 15.75 16 15.75C15.5858 15.75 15.25 15.4142 15.25 15ZM12 6.24998C12.4142 6.24998 12.75 6.58576 12.75 6.99998C12.75 7.41419 12.4142 7.74998 12 7.74998H7.99996C7.58575 7.74998 7.24996 7.41419 7.24996 6.99998C7.24996 6.58576 7.58575 6.24998 7.99996 6.24998H12ZM9.15035 1.61423C9.6788 1.32073 10.3211 1.32073 10.8496 1.61423L19.3642 6.3447C19.7262 6.54591 19.8564 7.0022 19.6552 7.36423C19.454 7.7262 18.9977 7.85638 18.6357 7.65525L10.1211 2.92576C10.0456 2.88388 9.95433 2.88387 9.87887 2.92576L1.36422 7.65525C1.00219 7.85638 0.545897 7.7262 0.34469 7.36423C0.143561 7.0022 0.273744 6.54591 0.635705 6.3447L9.15035 1.61423Z",fill:"currentColor",key:"kzl61p"}]]}; +export{C as buildingColumns}; \ No newline at end of file diff --git a/wwwroot/chunk-hV2xIBFh.js b/wwwroot/chunk-hV2xIBFh.js new file mode 100644 index 0000000..1b8d837 --- /dev/null +++ b/wwwroot/chunk-hV2xIBFh.js @@ -0,0 +1,2 @@ +var e={name:"stop-circle",meta:{tags:["stop-circle","halt","end","cease","finish"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM12.5 6C13.3284 6 14 6.67157 14 7.5V12.5C14 13.3284 13.3284 14 12.5 14H7.5C6.67157 14 6 13.3284 6 12.5V7.5C6 6.67157 6.67157 6 7.5 6H12.5Z",fill:"currentColor",key:"anzpk4"}]]}; +export{e as stopCircle}; \ No newline at end of file diff --git a/wwwroot/chunk-iRP_lGUj.js b/wwwroot/chunk-iRP_lGUj.js new file mode 100644 index 0000000..76e387f --- /dev/null +++ b/wwwroot/chunk-iRP_lGUj.js @@ -0,0 +1,2 @@ +var C={name:"unlock",meta:{tags:["unlock","open","access","free","unchain"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1.25C12.6242 1.25 14.75 3.37579 14.75 6C14.75 6.41421 14.4142 6.75 14 6.75C13.5858 6.75 13.25 6.41421 13.25 6C13.25 4.20421 11.7958 2.75 10 2.75C8.20421 2.75 6.75 4.20421 6.75 6V8.25H15C16.5188 8.25 17.75 9.48122 17.75 11V16C17.75 17.5188 16.5188 18.75 15 18.75H5C3.48122 18.75 2.25 17.5188 2.25 16V11C2.25 9.48122 3.48122 8.25 5 8.25H5.25V6C5.25 3.37579 7.37579 1.25 10 1.25ZM5 9.75C4.30964 9.75 3.75 10.3096 3.75 11V16C3.75 16.6904 4.30964 17.25 5 17.25H15C15.6904 17.25 16.25 16.6904 16.25 16V11C16.25 10.3096 15.6904 9.75 15 9.75H5Z",fill:"currentColor",key:"tuo06z"}]]}; +export{C as unlock}; \ No newline at end of file diff --git a/wwwroot/chunk-kkZhZGQs.js b/wwwroot/chunk-kkZhZGQs.js new file mode 100644 index 0000000..e2a11e2 --- /dev/null +++ b/wwwroot/chunk-kkZhZGQs.js @@ -0,0 +1,2 @@ +var C={name:"paperclip",meta:{tags:["paperclip","attach","link","join","bind"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.4967 2.36285C12.0752 0.882216 14.6047 0.882234 16.1832 2.36285C17.7167 3.80119 18.0671 6.27708 16.3932 7.84722L8.82677 14.9722C7.89709 15.8583 6.39222 15.8592 5.46251 14.9732C4.51246 14.0677 4.51248 12.5926 5.46251 11.6871L5.46642 11.6841L12.4557 5.10406C12.7573 4.82014 13.2323 4.83468 13.5162 5.13628C13.7999 5.43787 13.7855 5.91199 13.484 6.19585L6.49669 12.772C6.16676 13.0865 6.16773 13.5728 6.49767 13.8873C6.84795 14.221 7.44235 14.221 7.79259 13.8873L7.79552 13.8843L15.3658 6.75445L15.3668 6.75347C16.2729 5.90361 16.2034 4.43825 15.1568 3.4566C14.1559 2.518 12.5256 2.51692 11.524 3.45464L3.96447 10.5855C2.3484 12.1095 2.3484 14.5606 3.96447 16.0845C5.60549 17.632 8.28433 17.6319 9.9254 16.0845L17.486 8.95464C17.7873 8.67058 18.2614 8.6846 18.5455 8.98589C18.8296 9.28724 18.8156 9.76132 18.5143 10.0455L10.9547 17.1753C8.73577 19.2678 5.1541 19.2678 2.93517 17.1753C0.691694 15.0594 0.691695 11.6106 2.93517 9.49468L10.4957 2.3648L10.4967 2.36285Z",fill:"currentColor",key:"4rdh61"}]]}; +export{C as paperclip}; \ No newline at end of file diff --git a/wwwroot/chunk-kuD6LHz5.js b/wwwroot/chunk-kuD6LHz5.js new file mode 100644 index 0000000..e130408 --- /dev/null +++ b/wwwroot/chunk-kuD6LHz5.js @@ -0,0 +1,2 @@ +var H={name:"qrcode",meta:{tags:["qrcode","scan","code","data","barcode"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.25 17.75H2.25V10.75H9.25V17.75ZM14.25 17.75H12.5V16H14.25V17.75ZM17.75 16V17.75H16V16H17.75ZM3.75 16.25H7.75V12.25H3.75V16.25ZM12.5 16H10.75V14.25H12.5V16ZM16 16H14.25V14.25H16V16ZM14.25 14.25H12.5V12.5H14.25V14.25ZM17.75 14.25H16V12.5H17.75V14.25ZM12.5 12.5H10.75V10.75H12.5V12.5ZM16 12.5H14.25V10.75H16V12.5ZM9.25 9.25H2.25V2.25H9.25V9.25ZM17.75 9.25H10.75V2.25H17.75V9.25ZM3.75 7.75H7.75V3.75H3.75V7.75ZM12.25 7.75H16.25V3.75H12.25V7.75Z",fill:"currentColor",key:"eycwj2"}]]}; +export{H as qrcode}; \ No newline at end of file diff --git a/wwwroot/chunk-lMIyKq5U.js b/wwwroot/chunk-lMIyKq5U.js new file mode 100644 index 0000000..2eaad18 --- /dev/null +++ b/wwwroot/chunk-lMIyKq5U.js @@ -0,0 +1,2 @@ +var t={name:"exclamation-circle",meta:{tags:["exclamation-circle","important","attention","alert","warning"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 1C14.9706 1 19 5.02944 19 10C19 14.9706 14.9706 19 10 19C5.02944 19 1 14.9706 1 10C1 5.02944 5.02944 1 10 1ZM10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5ZM10 12C10.4142 12 10.75 12.3358 10.75 12.75V13.25C10.75 13.6642 10.4142 14 10 14C9.58579 14 9.25 13.6642 9.25 13.25V12.75C9.25 12.3358 9.58579 12 10 12ZM10 6C10.4142 6 10.75 6.33579 10.75 6.75V10.25C10.75 10.6642 10.4142 11 10 11C9.58579 11 9.25 10.6642 9.25 10.25V6.75C9.25 6.33579 9.58579 6 10 6Z",fill:"currentColor",key:"3k9wuc"}]]}; +export{t as exclamationCircle}; \ No newline at end of file diff --git a/wwwroot/chunk-lXZAXOGo.js b/wwwroot/chunk-lXZAXOGo.js new file mode 100644 index 0000000..d2ca5ec --- /dev/null +++ b/wwwroot/chunk-lXZAXOGo.js @@ -0,0 +1,2 @@ +var C={name:"file-import",meta:{tags:["file-import","get","data","retrieve","fetch"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12.75 1.25C12.9489 1.25 13.1396 1.32907 13.2803 1.46973L18.7803 6.96973C18.9209 7.11038 19 7.30109 19 7.5V16C19 17.5142 17.7642 18.75 16.25 18.75H8.75C7.23579 18.75 6 17.5142 6 16V15C6 14.5858 6.33579 14.25 6.75 14.25C7.16421 14.25 7.5 14.5858 7.5 15V16C7.5 16.6858 8.06421 17.25 8.75 17.25H16.25C16.9358 17.25 17.5 16.6858 17.5 16V8.25H12.75C12.3358 8.25 12 7.91421 12 7.5V2.75H8.75C8.06421 2.75 7.5 3.31421 7.5 4V9C7.5 9.41421 7.16421 9.75 6.75 9.75C6.33579 9.75 6 9.41421 6 9V4C6 2.48579 7.23579 1.25 8.75 1.25H12.75ZM8.71973 8.46973C9.01262 8.17683 9.48738 8.17683 9.78027 8.46973L12.7803 11.4697C12.8287 11.5181 12.866 11.5732 12.8984 11.6299C12.914 11.657 12.9303 11.6838 12.9424 11.7129C12.9631 11.7629 12.9779 11.8146 12.9873 11.8672C12.995 11.9103 13 11.9546 13 12C13 12.045 12.9949 12.089 12.9873 12.1318C12.9779 12.1845 12.963 12.2361 12.9424 12.2861C12.9303 12.3153 12.9139 12.342 12.8984 12.3691C12.866 12.4261 12.8289 12.4817 12.7803 12.5303L9.78027 15.5303C9.48738 15.8232 9.01262 15.8232 8.71973 15.5303C8.42683 15.2374 8.42683 14.7626 8.71973 14.4697L10.4395 12.75H1.75C1.33579 12.75 1 12.4142 1 12C1 11.5858 1.33579 11.25 1.75 11.25H10.4395L8.71973 9.53027C8.42683 9.23738 8.42683 8.76262 8.71973 8.46973ZM13.5 6.75H16.4395L13.5 3.81055V6.75Z",fill:"currentColor",key:"cqn9ud"}]]}; +export{C as fileImport}; \ No newline at end of file diff --git a/wwwroot/chunk-n8HB7Wcb.js b/wwwroot/chunk-n8HB7Wcb.js new file mode 100644 index 0000000..e1a2584 --- /dev/null +++ b/wwwroot/chunk-n8HB7Wcb.js @@ -0,0 +1,2 @@ +var e={name:"angle-double-up",meta:{tags:["angle-double-up","fast-rise","lift","double-up","increase"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.52638 10.4179C9.82095 10.1777 10.2557 10.1951 10.5303 10.4697L14.0303 13.9697C14.3232 14.2626 14.3231 14.7374 14.0303 15.0303C13.7374 15.3232 13.2627 15.3232 12.9698 15.0303L10 12.0605L7.03027 15.0303C6.73738 15.3232 6.26261 15.3232 5.96972 15.0303C5.67685 14.7374 5.67683 14.2626 5.96972 13.9697L9.46974 10.4697L9.52638 10.4179ZM9.52638 4.91791C9.82095 4.67769 10.2557 4.69512 10.5303 4.96967L14.0303 8.46969C14.3232 8.76255 14.3231 9.23734 14.0303 9.53024C13.7374 9.82313 13.2627 9.82313 12.9698 9.53024L10 6.5605L7.03027 9.53024C6.73738 9.82313 6.26261 9.82313 5.96972 9.53024C5.67685 9.23734 5.67683 8.76257 5.96972 8.46969L9.46974 4.96967L9.52638 4.91791Z",fill:"currentColor",key:"1ga9bz"}]]}; +export{e as angleDoubleUp}; \ No newline at end of file diff --git a/wwwroot/chunk-nO-6-QS7.js b/wwwroot/chunk-nO-6-QS7.js new file mode 100644 index 0000000..e1ba31a --- /dev/null +++ b/wwwroot/chunk-nO-6-QS7.js @@ -0,0 +1,2 @@ +var C={name:"money-bill",meta:{tags:["money-bill","cash","currency","banknote","bucks"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M5.17969 3.24023C5.21835 3.24023 5.2564 3.24421 5.29395 3.25H17.0098C17.974 3.25 18.7598 4.03579 18.7598 5V7.17969C18.7598 7.18132 18.7588 7.18294 18.7588 7.18457C18.7588 7.18652 18.7598 7.18847 18.7598 7.19043V12.8203C18.7597 12.8763 18.7522 12.931 18.7402 12.9844V15.0098C18.7402 15.9739 17.9543 16.7596 16.9902 16.7598H5.19043C5.15179 16.7598 5.11371 16.7558 5.07617 16.75H2.99023C2.02602 16.75 1.24023 15.9642 1.24023 15V12.8203C1.24023 12.7816 1.24421 12.7436 1.25 12.7061V4.99023C1.25 4.02602 2.03579 3.24023 3 3.24023H5.17969ZM6.23145 4.75C6.24975 4.88327 6.25977 5.02013 6.25977 5.16016C6.25972 6.01802 5.9147 6.78647 5.35059 7.35059C4.79817 7.903 4.02032 8.25972 3.16016 8.25977C3.02028 8.25977 2.88345 8.24922 2.75 8.23047V11.7773C2.78806 11.7721 2.82658 11.7693 2.86523 11.7656C2.89123 11.7631 2.91713 11.7587 2.94336 11.7568C2.9863 11.7538 3.02965 11.7531 3.07324 11.752C3.09878 11.7513 3.12464 11.75 3.15039 11.75H3.16016C4.01802 11.75 4.78647 12.096 5.35059 12.6602C5.91443 13.2242 6.25966 13.992 6.25977 14.8496C6.25977 14.9894 6.25017 15.1264 6.23145 15.2598H13.7686C13.7498 15.1263 13.7402 14.9895 13.7402 14.8496C13.7403 13.9918 14.0863 13.2242 14.6504 12.6602C15.2144 12.0962 15.9821 11.7501 16.8398 11.75H16.8496C16.9893 11.75 17.1264 11.7596 17.2598 11.7783V8.23145C17.1266 8.24972 16.9896 8.25977 16.8496 8.25977C15.992 8.25966 15.2242 7.91443 14.6602 7.35059C14.1077 6.79817 13.75 6.02032 13.75 5.16016C13.75 5.02034 13.7596 4.8834 13.7783 4.75H6.23145ZM16.7607 13.2539C16.3561 13.2768 15.9887 13.4527 15.7207 13.7207C15.4249 14.0165 15.2501 14.4077 15.25 14.8496C15.25 14.9926 15.2695 15.1294 15.3066 15.2598H16.9902C17.1259 15.2596 17.2402 15.1455 17.2402 15.0098V13.3164C17.1101 13.2794 16.973 13.2598 16.8301 13.2598C16.8067 13.2598 16.7836 13.2564 16.7607 13.2539ZM2.95215 13.2637C2.88281 13.2734 2.81411 13.2882 2.74609 13.3076C2.74412 13.3082 2.74221 13.309 2.74023 13.3096V15C2.74023 15.1358 2.85445 15.25 2.99023 15.25H4.68359C4.72063 15.1198 4.74023 14.9829 4.74023 14.8398C4.74019 14.4001 4.56742 14.0101 4.27441 13.7148C3.9884 13.4316 3.59019 13.2514 3.15527 13.25C3.08612 13.2502 3.01835 13.2545 2.95215 13.2637ZM10 6.5C11.933 6.5 13.5 8.067 13.5 10C13.5 11.933 11.933 13.5 10 13.5C8.067 13.5 6.5 11.933 6.5 10C6.5 8.067 8.067 6.5 10 6.5ZM10 8C8.89543 8 8 8.89543 8 10C8 11.1046 8.89543 12 10 12C11.1046 12 12 11.1046 12 10C12 8.89543 11.1046 8 10 8ZM15.3164 4.75C15.2794 4.88023 15.2598 5.01711 15.2598 5.16016C15.2598 5.59937 15.4322 5.98903 15.7246 6.28418C16.0118 6.56905 16.4123 6.74989 16.8496 6.75C16.9889 6.75 17.1256 6.72837 17.2598 6.68945V5C17.2598 4.86421 17.1456 4.75 17.0098 4.75H15.3164ZM3 4.74023C2.86421 4.74023 2.75 4.85445 2.75 4.99023V6.68262C2.88031 6.7197 3.01702 6.74023 3.16016 6.74023C3.59961 6.74019 3.98897 6.56713 4.28418 6.27441C4.56876 5.9873 4.74989 5.58746 4.75 5.15039C4.75 5.01124 4.72929 4.87432 4.69043 4.74023H3Z",fill:"currentColor",key:"or8xy3"}]]}; +export{C as moneyBill}; \ No newline at end of file diff --git a/wwwroot/chunk-nTniKDTt.js b/wwwroot/chunk-nTniKDTt.js new file mode 100644 index 0000000..f4ad5b1 --- /dev/null +++ b/wwwroot/chunk-nTniKDTt.js @@ -0,0 +1,2 @@ +var C={name:"wifi",meta:{tags:["wifi","internet","wireless","network","connection"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.0098 15.25C10.424 15.25 10.7598 15.5858 10.7598 16C10.7597 16.4142 10.4239 16.75 10.0098 16.75H9.99998C9.58581 16.75 9.25003 16.4142 9.24998 16C9.24998 15.5858 9.58578 15.25 9.99998 15.25H10.0098ZM6.92966 12.2901C8.76737 10.9091 11.2437 10.9111 13.0889 12.2891C13.4206 12.537 13.489 13.0071 13.2412 13.3389C12.9934 13.6705 12.5232 13.7387 12.1914 13.4912C10.8767 12.5094 9.13229 12.5105 7.83006 13.4893C7.49902 13.7378 7.02907 13.6717 6.78025 13.3408C6.53143 13.0098 6.59867 12.539 6.92966 12.2901ZM4.21384 9.47757C7.5778 6.5071 12.4827 6.50795 15.8555 9.47659C16.1663 9.75022 16.1964 10.2243 15.9229 10.5352C15.6492 10.846 15.1751 10.8762 14.8643 10.6026C12.0571 8.1318 8.00188 8.1335 5.20603 10.6026C4.89555 10.8763 4.42148 10.8465 4.14743 10.5362C3.8736 10.2257 3.90355 9.75166 4.21384 9.47757ZM1.48825 6.65139C6.34632 2.12288 13.6537 2.12288 18.5117 6.65139C18.8144 6.93377 18.8309 7.40805 18.5488 7.71096C18.2664 8.01388 17.7913 8.03046 17.4883 7.74807C13.2065 3.75708 6.7935 3.75708 2.51169 7.74807C2.20871 8.03044 1.73356 8.0139 1.45114 7.71096C1.16907 7.40806 1.18562 6.93377 1.48825 6.65139Z",fill:"currentColor",key:"pdhrjl"}]]}; +export{C as wifi}; \ No newline at end of file diff --git a/wwwroot/chunk-olXo5TuC.js b/wwwroot/chunk-olXo5TuC.js new file mode 100644 index 0000000..edf6950 --- /dev/null +++ b/wwwroot/chunk-olXo5TuC.js @@ -0,0 +1,2 @@ +var C={name:"arrow-u-turn-up-left",meta:{tags:["redirect","curve left","return up","turn","arrow-u-turn-up-left"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M5.46973 2.46967C5.76262 2.17678 6.23738 2.17678 6.53027 2.46967C6.82314 2.76257 6.82316 3.23733 6.53027 3.53022L3.81055 6.24994H12.5C14.1357 6.24994 15.7172 6.83979 16.8936 7.90912C18.0723 8.98072 18.75 10.4506 18.75 11.9999C18.75 12.7655 18.5839 13.5218 18.2637 14.2246C17.9436 14.9269 17.4767 15.5606 16.8936 16.0908C15.7172 17.1601 14.1357 17.7499 12.5 17.7499H7C6.58581 17.7499 6.25003 17.4141 6.25 16.9999C6.25 16.5857 6.58579 16.2499 7 16.2499H12.5C13.7816 16.2499 14.9983 15.7863 15.8848 14.9804C16.3228 14.5822 16.6657 14.1131 16.8984 13.6025C17.131 13.092 17.25 12.5476 17.25 11.9999C17.25 10.8972 16.7688 9.82322 15.8848 9.01947C14.9982 8.21355 13.7816 7.74994 12.5 7.74994H3.81055L6.53027 10.4697C6.82314 10.7626 6.82316 11.2373 6.53027 11.5302C6.23739 11.8231 5.76261 11.8231 5.46973 11.5302L1.46973 7.53022C1.43771 7.4982 1.40978 7.46356 1.38477 7.42768C1.35404 7.38357 1.32743 7.33639 1.30664 7.28608C1.28591 7.23579 1.27105 7.18369 1.26172 7.1308C1.25423 7.08829 1.25 7.0446 1.25 6.99994C1.25 6.95464 1.25402 6.91022 1.26172 6.86713C1.27081 6.8163 1.28505 6.76615 1.30469 6.71772L1.30859 6.70795C1.32018 6.68056 1.33596 6.65544 1.35059 6.62983C1.38303 6.57298 1.42122 6.51819 1.46973 6.46967L5.46973 2.46967Z",fill:"currentColor",key:"g65abo"}]]}; +export{C as arrowUTurnUpLeft}; \ No newline at end of file diff --git a/wwwroot/chunk-quxW84_w.js b/wwwroot/chunk-quxW84_w.js new file mode 100644 index 0000000..96dee9c --- /dev/null +++ b/wwwroot/chunk-quxW84_w.js @@ -0,0 +1,2 @@ +var C={name:"cloud-upload",meta:{tags:["cloud-upload","backup","save","upload"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.0254 9.32129C10.0319 9.32151 10.0384 9.32187 10.0449 9.32227C10.0856 9.32467 10.1254 9.33022 10.1641 9.33887C10.1894 9.34453 10.2135 9.35399 10.2383 9.3623C10.2571 9.36864 10.2768 9.37213 10.2949 9.37988C10.3805 9.41644 10.4605 9.47022 10.5303 9.54004L13.3604 12.3701C13.653 12.663 13.6531 13.1378 13.3604 13.4307C13.0675 13.7233 12.5927 13.7233 12.2998 13.4307L10.75 11.8809V16.4307C10.7497 16.8446 10.414 17.1807 10 17.1807C9.58599 17.1807 9.25033 16.8446 9.25 16.4307V11.8809L7.7002 13.4307C7.40733 13.7233 6.93248 13.7234 6.63965 13.4307C6.34683 13.1378 6.34697 12.663 6.63965 12.3701L9.46973 9.54004L9.52637 9.48828C9.53651 9.48001 9.54813 9.47348 9.55859 9.46582C9.57413 9.45445 9.59003 9.44377 9.60645 9.43359C9.63035 9.41879 9.65461 9.40542 9.67969 9.39355C9.69852 9.38462 9.71765 9.37651 9.7373 9.36914C9.76109 9.36025 9.78516 9.35307 9.80957 9.34668C9.83494 9.34002 9.86037 9.3331 9.88672 9.3291C9.89487 9.32787 9.90295 9.32616 9.91113 9.3252C9.94027 9.32176 9.96993 9.32031 10 9.32031C10.0085 9.32031 10.017 9.32101 10.0254 9.32129ZM7.5 2.82031C10.2751 2.82031 12.6595 4.4951 13.6963 6.89648C13.951 6.84895 14.2189 6.82031 14.5 6.82031C15.7439 6.82031 16.925 7.43478 17.7803 8.29004C18.6355 9.14529 19.25 10.3264 19.25 11.5703C19.25 12.6965 19.1301 13.8629 18.5752 14.7588C17.9714 15.7333 16.9481 16.25 15.5 16.25C15.0859 16.25 14.7501 15.9141 14.75 15.5C14.7502 15.0859 15.0859 14.75 15.5 14.75C16.5517 14.75 17.0285 14.4065 17.2998 13.9688C17.6196 13.4523 17.75 12.6537 17.75 11.5703C17.75 10.8143 17.3644 9.99531 16.7197 9.35059C16.075 8.70585 15.2561 8.32031 14.5 8.32031C14.1514 8.32031 13.8122 8.39005 13.4619 8.50391C13.2711 8.56589 13.0629 8.54828 12.8848 8.45605C12.7069 8.36381 12.5731 8.20406 12.5137 8.0127C11.8484 5.8681 9.85261 4.32031 7.5 4.32031C4.60421 4.32031 2.25 6.67453 2.25 9.57031C2.25001 10.9485 2.37597 12.3169 2.76172 13.3154C2.95187 13.8075 3.18873 14.1641 3.46094 14.3945C3.71941 14.6132 4.04646 14.75 4.5 14.75C4.91411 14.75 5.24984 15.0859 5.25 15.5C5.24987 15.9141 4.91413 16.25 4.5 16.25C3.70371 16.25 3.03054 15.9955 2.49219 15.54C1.96779 15.0963 1.61053 14.4954 1.36328 13.8555C0.874081 12.5891 0.750014 10.992 0.75 9.57031C0.75 5.8461 3.77579 2.82031 7.5 2.82031Z",fill:"currentColor",key:"7t3l32"}]]}; +export{C as cloudUpload}; \ No newline at end of file diff --git a/wwwroot/chunk-r0_gFg4R.js b/wwwroot/chunk-r0_gFg4R.js new file mode 100644 index 0000000..6862d8f --- /dev/null +++ b/wwwroot/chunk-r0_gFg4R.js @@ -0,0 +1,2 @@ +var C={name:"tags",meta:{tags:["tags","labels","prices","identifiers","stickers"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M12.6865 2.09473C12.8308 2.1235 12.9648 2.19429 13.0703 2.2998L19.0703 8.2998C19.973 9.20263 19.9729 10.6772 19.0703 11.5801L13.4199 17.2305C12.5071 18.1431 11.0427 18.1431 10.1299 17.2305C10.0664 17.1669 10.0194 17.0935 9.9834 17.0166L9.76074 17.2402C8.90495 18.096 7.56394 18.1491 6.64746 17.4004L6.46973 17.2402L0.469727 11.251C0.32889 11.1103 0.25 10.9188 0.25 10.7197V2.83984C0.250132 2.42574 0.585868 2.08984 1 2.08984H8.72559C8.76289 2.08413 8.80094 2.08009 8.83984 2.08008H12.54L12.6865 2.09473ZM1.75 10.4082L7.53027 16.1787V16.1797C7.85728 16.5066 8.37212 16.5065 8.69922 16.1797L14.3496 10.5293C14.6665 10.2122 14.6666 9.68716 14.3496 9.37012L8.56934 3.58984H1.75V10.4082ZM15.4102 8.30957C16.313 9.2124 16.3129 10.6869 15.4102 11.5898L10.9766 16.0225C11.0537 16.0584 11.1268 16.1063 11.1904 16.1699C11.5175 16.4968 12.0323 16.4967 12.3594 16.1699L18.0098 10.5195C18.3266 10.2024 18.3267 9.67739 18.0098 9.36035L12.2295 3.58008H10.6807L15.4102 8.30957ZM5 5.25C5.69 5.25 6.25 5.81 6.25 6.5C6.25 7.19 5.69 7.75 5 7.75C4.31 7.75 3.75 7.19 3.75 6.5C3.75 5.81 4.31 5.25 5 5.25Z",fill:"currentColor",key:"vxyl2k"}]]}; +export{C as tags}; \ No newline at end of file diff --git a/wwwroot/chunk-rTvoLk5q.js b/wwwroot/chunk-rTvoLk5q.js new file mode 100644 index 0000000..5b0c067 --- /dev/null +++ b/wwwroot/chunk-rTvoLk5q.js @@ -0,0 +1,2 @@ +var C={name:"comment",meta:{tags:["comment","chat","talk","feedback","opinion"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.25 9.2002C17.25 8.31651 17.0626 7.46429 16.7382 6.68945C16.4168 5.92163 15.942 5.22329 15.3593 4.64062C14.78 4.0613 14.0809 3.5932 13.3037 3.25879C12.5379 2.92932 11.6885 2.75 10.7998 2.75C9.91629 2.75003 9.06467 2.9375 8.28999 3.26172C7.52213 3.58315 6.82289 4.05792 6.24019 4.64062C5.66102 5.21984 5.19369 5.9192 4.85933 6.69629C4.52986 7.46208 4.34956 8.31148 4.34956 9.2002C4.34959 10.0837 4.53798 10.9352 4.86226 11.71C4.92964 11.8709 4.93832 12.0508 4.88765 12.2178L3.62495 16.374L7.78218 15.1123L7.91108 15.085C8.0414 15.0694 8.17486 15.0881 8.29683 15.1406C9.0625 15.47 9.9112 15.6504 10.7998 15.6504C11.6834 15.6504 12.5357 15.463 13.3105 15.1387C14.0782 14.8173 14.7766 14.3424 15.3593 13.7598C15.9387 13.1804 16.4068 12.4804 16.7412 11.7031C17.0705 10.9375 17.2499 10.0887 17.25 9.2002ZM18.75 9.2002C18.7499 10.2914 18.5296 11.3427 18.1191 12.2969C17.7135 13.2395 17.1405 14.0997 16.4199 14.8203C15.7027 15.5375 14.8416 16.1229 13.8896 16.5215C12.9444 16.9171 11.8961 17.1504 10.7998 17.1504C9.80735 17.1504 8.84903 16.9658 7.96577 16.624L2.71772 18.2178C2.4529 18.2981 2.16537 18.226 1.96968 18.0303C1.77398 17.8346 1.70183 17.5471 1.78218 17.2822L3.37593 12.0293C3.04363 11.1534 2.84958 10.197 2.84956 9.2002C2.84956 8.10891 3.07086 7.05773 3.4814 6.10352C3.88694 5.16097 4.45911 4.30066 5.17964 3.58008C5.89687 2.86285 6.75788 2.2765 7.70991 1.87793C8.65502 1.4823 9.70351 1.25003 10.7998 1.25C11.891 1.25 12.9422 1.47033 13.8964 1.88086C14.8392 2.28645 15.6992 2.85941 16.4199 3.58008C17.1372 4.29738 17.7235 5.15822 18.122 6.11035C18.5177 7.0555 18.75 8.10389 18.75 9.2002Z",fill:"currentColor",key:"yhsm0n"}]]}; +export{C as comment}; \ No newline at end of file diff --git a/wwwroot/chunk-rukkHJqF.js b/wwwroot/chunk-rukkHJqF.js new file mode 100644 index 0000000..048aed8 --- /dev/null +++ b/wwwroot/chunk-rukkHJqF.js @@ -0,0 +1,2 @@ +var e={name:"heading-1",meta:{tags:["title","h1","largest header","section","heading-1"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10 3.25C10.4142 3.25 10.75 3.58579 10.75 4V16C10.75 16.4142 10.4142 16.75 10 16.75C9.58579 16.75 9.25 16.4142 9.25 16V10.75H2.75V16C2.75 16.4142 2.41421 16.75 2 16.75C1.58579 16.75 1.25 16.4142 1.25 16V4C1.25 3.58579 1.58579 3.25 2 3.25C2.41421 3.25 2.75 3.58579 2.75 4V9.25H9.25V4C9.25 3.58579 9.58579 3.25 10 3.25ZM17.584 7.37598C17.8141 7.2226 18.1097 7.20849 18.3535 7.33887C18.5974 7.46938 18.75 7.7234 18.75 8V16C18.75 16.4142 18.4142 16.75 18 16.75C17.5858 16.75 17.25 16.4142 17.25 16V9.40137L15.416 10.624C15.0714 10.8538 14.6057 10.7607 14.376 10.416C14.1462 10.0714 14.2393 9.60574 14.584 9.37598L17.584 7.37598Z",fill:"currentColor",key:"s0e68s"}]]}; +export{e as heading1}; \ No newline at end of file diff --git a/wwwroot/chunk-sPh8c7xs.js b/wwwroot/chunk-sPh8c7xs.js new file mode 100644 index 0000000..a8f8ff7 --- /dev/null +++ b/wwwroot/chunk-sPh8c7xs.js @@ -0,0 +1,2 @@ +var e={name:"desktop",meta:{tags:["desktop","computer","monitor","pc","screen"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17 1.25C17.9642 1.25 18.75 2.03579 18.75 3V13C18.75 13.9642 17.9642 14.75 17 14.75H10.75V17.25H13C13.4142 17.25 13.75 17.5858 13.75 18C13.75 18.4142 13.4142 18.75 13 18.75H7C6.58579 18.75 6.25 18.4142 6.25 18C6.25 17.5858 6.58579 17.25 7 17.25H9.25V14.75H3C2.03579 14.75 1.25 13.9642 1.25 13V3C1.25 2.03579 2.03579 1.25 3 1.25H17ZM3 2.75C2.86421 2.75 2.75 2.86421 2.75 3V13C2.75 13.1358 2.86421 13.25 3 13.25H17C17.1358 13.25 17.25 13.1358 17.25 13V3C17.25 2.86421 17.1358 2.75 17 2.75H3Z",fill:"currentColor",key:"lx6rjc"}]]}; +export{e as desktop}; \ No newline at end of file diff --git a/wwwroot/chunk-slt1IJib.js b/wwwroot/chunk-slt1IJib.js new file mode 100644 index 0000000..e4b511c --- /dev/null +++ b/wwwroot/chunk-slt1IJib.js @@ -0,0 +1,2 @@ +var C={name:"ticket",meta:{tags:["ticket","pass","entry","admit","voucher"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M17.25 5C17.25 4.86421 17.1358 4.75 17 4.75H3C2.86421 4.75 2.75 4.86421 2.75 5V6.83789C4.18285 7.17676 5.25 8.46397 5.25 10C5.25 11.536 4.18274 12.8222 2.75 13.1611V15C2.75 15.1358 2.86421 15.25 3 15.25H17C17.1358 15.25 17.25 15.1358 17.25 15V13.1611C15.8173 12.8222 14.75 11.536 14.75 10C14.75 8.46397 15.8172 7.17676 17.25 6.83789V5ZM18.75 7.5C18.75 7.91421 18.4142 8.25 18 8.25C17.0342 8.25 16.25 9.03421 16.25 10C16.25 10.9658 17.0342 11.75 18 11.75C18.4142 11.75 18.75 12.0858 18.75 12.5V15C18.75 15.9642 17.9642 16.75 17 16.75H3C2.03579 16.75 1.25 15.9642 1.25 15V12.5C1.25 12.0858 1.58579 11.75 2 11.75C2.96579 11.75 3.75 10.9658 3.75 10C3.75 9.03421 2.96579 8.25 2 8.25C1.58579 8.25 1.25 7.91421 1.25 7.5V5C1.25 4.03579 2.03579 3.25 3 3.25H17C17.9642 3.25 18.75 4.03579 18.75 5V7.5Z",fill:"currentColor",key:"rpr6fv"}]]}; +export{C as ticket}; \ No newline at end of file diff --git a/wwwroot/chunk-uQBNLG_e.js b/wwwroot/chunk-uQBNLG_e.js new file mode 100644 index 0000000..28202b1 --- /dev/null +++ b/wwwroot/chunk-uQBNLG_e.js @@ -0,0 +1,2 @@ +var C={name:"clipboard",meta:{tags:["clipboard","paste","copy","cut","notes"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.25 5.72266C15.2498 5.03249 14.6902 4.47266 14 4.47266H13.25V5.83887C13.2498 6.30799 12.8695 6.68827 12.4004 6.68848H7.59961C7.13048 6.68827 6.75022 6.30799 6.75 5.83887V4.47266H6C5.30979 4.47266 4.75023 5.03249 4.75 5.72266V16C4.75 16.6904 5.30964 17.25 6 17.25H14C14.6904 17.25 15.25 16.6904 15.25 16V5.72266ZM9.22266 2.75C8.68557 2.75023 8.25023 3.18557 8.25 3.72266V5.18848H11.75V3.72266C11.7498 3.18557 11.3144 2.75023 10.7773 2.75H9.22266ZM16.75 16C16.75 17.5188 15.5188 18.75 14 18.75H6C4.48122 18.75 3.25 17.5188 3.25 16V5.72266C3.25023 4.20407 4.48136 2.97266 6 2.97266H6.86621C7.18394 1.97387 8.11865 1.25018 9.22266 1.25H10.7773C11.8814 1.25018 12.8161 1.97387 13.1338 2.97266H14C15.5186 2.97266 16.7498 4.20407 16.75 5.72266V16Z",fill:"currentColor",key:"iyi52w"}]]}; +export{C as clipboard}; \ No newline at end of file diff --git a/wwwroot/chunk-viad0BuU.js b/wwwroot/chunk-viad0BuU.js new file mode 100644 index 0000000..c47a980 --- /dev/null +++ b/wwwroot/chunk-viad0BuU.js @@ -0,0 +1,2 @@ +var C={name:"images",meta:{tags:["images","pictures","photos","graphics","illustrations"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M16.5 1.75C18.0188 1.75 19.25 2.98122 19.25 4.5V12.5C19.25 14.0188 18.0188 15.25 16.5 15.25H16.25V15.5C16.25 17.0142 15.0142 18.25 13.5 18.25H3.5C1.98579 18.25 0.75 17.0142 0.75 15.5V7.5C0.75 5.98579 1.98579 4.75 3.5 4.75H3.75V4.5C3.75 2.98122 4.98122 1.75 6.5 1.75H16.5ZM3.5 6.25C2.81421 6.25 2.25 6.81421 2.25 7.5V15.5C2.25 16.1858 2.81421 16.75 3.5 16.75H13.5C14.1858 16.75 14.75 16.1858 14.75 15.5V15.25H6.5C4.98122 15.25 3.75 14.0188 3.75 12.5V6.25H3.5ZM12.252 13.75H16.5C17.1367 13.75 17.6604 13.2738 17.7383 12.6582L15.0859 10.415L12.252 13.75ZM5.25 12.2061V12.5C5.25 13.1904 5.80964 13.75 6.5 13.75H10.2832L12.3877 11.2744L8.92871 7.8877L5.25 12.2061ZM6.5 3.25C5.80964 3.25 5.25 3.80964 5.25 4.5V9.89258L8.30957 6.30371L8.3623 6.24707C8.49272 6.12272 8.66494 6.04921 8.84668 6.04102C9.05425 6.03178 9.25683 6.10852 9.40527 6.25391L13.3613 10.1289L14.4287 8.875L14.4814 8.81836C14.7552 8.5559 15.1886 8.53791 15.4844 8.78809L17.75 10.7041V4.5C17.75 3.80964 17.1904 3.25 16.5 3.25H6.5Z",fill:"currentColor",key:"3dggkx"}]]}; +export{C as images}; \ No newline at end of file diff --git a/wwwroot/chunk-vwgC7zu4.js b/wwwroot/chunk-vwgC7zu4.js new file mode 100644 index 0000000..25830b6 --- /dev/null +++ b/wwwroot/chunk-vwgC7zu4.js @@ -0,0 +1,2 @@ +var L={name:"crown",meta:{tags:["crown","royalty","king","queen","leader"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M15.9996 16C16.4138 16 16.7496 16.3358 16.7496 16.75C16.7496 17.1642 16.4138 17.5 15.9996 17.5H3.99957C3.58556 17.4998 3.24956 17.1641 3.24956 16.75C3.2496 16.336 3.58558 16.0002 3.99957 16H15.9996ZM9.34626 2.89442C9.70697 2.45759 10.4081 2.48905 10.7203 2.98817L12.7086 6.16984L17.3541 2.79188L17.4732 2.71864C18.0801 2.40753 18.8242 2.92909 18.689 3.63857L16.8912 13.0771C16.734 13.9024 16.0125 14.4998 15.1724 14.5H4.82672C3.98683 14.4996 3.26513 13.9023 3.10796 13.0771L1.31011 3.63857C1.17512 2.92931 1.91917 2.40796 2.52593 2.71864L2.64507 2.79188L7.28961 6.16984L9.27887 2.98817L9.34626 2.89442ZM8.19196 7.55657C7.93059 7.9742 7.36975 8.08271 6.97125 7.7929L3.09038 4.96964L4.5816 12.7968C4.60405 12.9144 4.70706 12.9996 4.82672 13H15.1724C15.2923 12.9998 15.3951 12.9146 15.4176 12.7968L16.9078 4.96964L13.0279 7.7929C12.6294 8.08251 12.0685 7.97423 11.8072 7.55657L9.99958 4.66397L8.19196 7.55657Z",fill:"currentColor",key:"4m4djh"}]]}; +export{L as crown}; \ No newline at end of file diff --git a/wwwroot/chunk-wW_i9q99.js b/wwwroot/chunk-wW_i9q99.js new file mode 100644 index 0000000..f6ca672 --- /dev/null +++ b/wwwroot/chunk-wW_i9q99.js @@ -0,0 +1,2 @@ +var C={name:"cloud",meta:{tags:["cloud","internet","storage","weather","data"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M0.75 10C0.75 6.27579 3.77579 3.25 7.5 3.25C10.2751 3.25 12.6595 4.92479 13.6963 7.32617C13.951 7.27864 14.2189 7.25 14.5 7.25C15.7439 7.25 16.925 7.86447 17.7803 8.71973C18.6355 9.57499 19.25 10.7561 19.25 12C19.25 14.6242 17.1242 16.75 14.5 16.75H7.5C3.77579 16.75 0.75 13.7242 0.75 10ZM2.25 10C2.25 12.8958 4.60421 15.25 7.5 15.25H14.5C16.2958 15.25 17.75 13.7958 17.75 12C17.75 11.2439 17.3645 10.425 16.7197 9.78027C16.075 9.13553 15.2561 8.75 14.5 8.75C14.1514 8.75 13.8122 8.81974 13.4619 8.93359C13.2711 8.99561 13.0629 8.97802 12.8848 8.88574C12.7068 8.79346 12.5731 8.63384 12.5137 8.44238C11.8484 6.29779 9.85261 4.75 7.5 4.75C4.60421 4.75 2.25 7.10421 2.25 10Z",fill:"currentColor",key:"s7jwze"}]]}; +export{C as cloud}; \ No newline at end of file diff --git a/wwwroot/chunk-x0V2gKiO.js b/wwwroot/chunk-x0V2gKiO.js new file mode 100644 index 0000000..273feac --- /dev/null +++ b/wwwroot/chunk-x0V2gKiO.js @@ -0,0 +1,2 @@ +var e={name:"search-plus",meta:{tags:["search-plus","increase-search","more-search","wide-filter","expand-search"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M8.76953 1.25C12.9227 1.25 16.29 4.61733 16.29 8.77051C16.2899 10.5767 15.6514 12.2329 14.5898 13.5293L18.5303 17.4697C18.8231 17.7626 18.8231 18.2374 18.5303 18.5303C18.2374 18.8231 17.7626 18.8231 17.4697 18.5303L13.5303 14.5908C12.2336 15.6525 10.5761 16.29 8.76953 16.29C4.61674 16.2898 1.25026 12.9233 1.25 8.77051C1.25 4.61749 4.61657 1.25026 8.76953 1.25ZM8.76953 2.75C5.445 2.75026 2.75 5.44591 2.75 8.77051C2.75026 12.0949 5.44515 14.7898 8.76953 14.79C12.0941 14.79 14.7898 12.095 14.79 8.77051C14.79 5.44575 12.0943 2.75 8.76953 2.75ZM8.75 5.5C9.16421 5.5 9.5 5.83579 9.5 6.25V8H11.25C11.6642 8 12 8.33579 12 8.75C12 9.16421 11.6642 9.5 11.25 9.5H9.5V11.25C9.5 11.6642 9.16421 12 8.75 12C8.33579 12 8 11.6642 8 11.25V9.5H6.25C5.83579 9.5 5.5 9.16421 5.5 8.75C5.5 8.33579 5.83579 8 6.25 8H8V6.25C8 5.83579 8.33579 5.5 8.75 5.5Z",fill:"currentColor",key:"yki2e3"}]]}; +export{e as searchPlus}; \ No newline at end of file diff --git a/wwwroot/chunk-xXJ24mOD.js b/wwwroot/chunk-xXJ24mOD.js new file mode 100644 index 0000000..225e2e3 --- /dev/null +++ b/wwwroot/chunk-xXJ24mOD.js @@ -0,0 +1,2 @@ +var e={name:"highlighter",meta:{tags:["mark","emphasize","color","annotate","highlighter"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M10.2197 1.46967C10.5126 1.17678 10.9874 1.17678 11.2802 1.46967C11.5731 1.76256 11.5731 2.23732 11.2802 2.53022L6.19431 7.61615C5.70635 8.10427 5.70635 8.89562 6.19431 9.38373L11.3662 14.5556C11.8543 15.0436 12.6456 15.0436 13.1338 14.5556L18.2197 9.46967C18.5126 9.17678 18.9874 9.17678 19.2802 9.46967C19.5731 9.76256 19.5731 10.2373 19.2802 10.5302L14.1943 15.6162C13.1204 16.6899 11.3795 16.6899 10.3056 15.6162L10.25 15.5605L7.77048 18.04C7.25467 18.5558 6.47265 18.6983 5.80857 18.3964L2.2529 16.7802C1.14071 16.2745 0.876264 14.8131 1.74021 13.9492L5.18943 10.4999L5.13376 10.4443C4.06002 9.37038 4.06002 7.62951 5.13376 6.55561L10.2197 1.46967ZM2.80075 15.0097C2.67735 15.1331 2.71517 15.3417 2.874 15.414L6.42966 17.0302C6.52451 17.0733 6.63627 17.0531 6.70993 16.9794L9.18943 14.4999L6.24997 11.5605L2.80075 15.0097Z",fill:"currentColor",key:"pfs464"}]]}; +export{e as highlighter}; \ No newline at end of file diff --git a/wwwroot/chunk-xdujflxH.js b/wwwroot/chunk-xdujflxH.js new file mode 100644 index 0000000..b5be29f --- /dev/null +++ b/wwwroot/chunk-xdujflxH.js @@ -0,0 +1,2 @@ +var C={name:"superscript",meta:{tags:["text formatting","above","exponent","math","superscript"]},svg:{xmlns:"http://www.w3.org/2000/svg",width:20,height:20,viewBox:"0 0 20 20",fill:"none"},nodes:[["path",{d:"M9.71978 9.21942C10.0127 8.92688 10.4876 8.92665 10.7803 9.21942C11.0731 9.51219 11.0729 9.98705 10.7803 10.28L7.8106 13.2497L10.7803 16.2194C11.0731 16.5122 11.0729 16.987 10.7803 17.2799C10.4874 17.5728 10.0127 17.5728 9.71978 17.2799L6.75006 14.3102L3.78033 17.2799C3.48744 17.5728 3.01268 17.5728 2.71978 17.2799C2.42691 16.987 2.4269 16.5123 2.71978 16.2194L5.68951 13.2497L2.71978 10.28C2.4269 9.98707 2.4269 9.51231 2.71978 9.21942C3.0127 8.92689 3.48756 8.92665 3.78033 9.21942L6.75006 12.1891L9.71978 9.21942ZM13.2813 2.86983C13.8517 2.54757 14.516 2.4303 15.1622 2.53878C15.7276 2.6338 16.2499 2.89665 16.6622 3.28975L16.8321 3.46651L16.8379 3.47335C17.2649 3.96914 17.4999 4.60306 17.5001 5.25264C17.5001 6.23037 16.9566 6.92385 16.3672 7.39814C15.7927 7.86039 15.0819 8.19005 14.5704 8.43134C14.0789 8.66315 13.8593 8.83911 13.7325 9.03485C13.6639 9.14091 13.6032 9.28571 13.5606 9.50262H16.7501C17.1639 9.50282 17.4997 9.83884 17.5001 10.2526C17.5001 10.6667 17.1641 11.0024 16.7501 11.0026H12.7501C12.3358 11.0026 12.0001 10.6668 12.0001 10.2526C12.0001 9.4435 12.1158 8.77235 12.4727 8.2204C12.8309 7.66692 13.3621 7.34267 13.9297 7.0749C14.478 6.81629 15.0177 6.56009 15.4278 6.23017C15.823 5.91211 16.0001 5.60454 16.0001 5.25264C15.9999 4.9645 15.8956 4.67997 15.7051 4.45674C15.4992 4.22485 15.22 4.06978 14.9141 4.01827C14.6079 3.96684 14.2922 4.02149 14.0215 4.17354C13.7549 4.32597 13.556 4.56655 13.4571 4.84444C13.3183 5.23452 12.8892 5.43796 12.4991 5.29951C12.1088 5.16075 11.9043 4.73178 12.043 4.34151C12.2642 3.71985 12.7054 3.1992 13.2784 2.87179L13.2813 2.86983Z",fill:"currentColor",key:"vmeg2o"}]]}; +export{C as superscript}; \ No newline at end of file diff --git a/wwwroot/favicon-96x96.png b/wwwroot/favicon-96x96.png new file mode 100644 index 0000000..b60a4bb Binary files /dev/null and b/wwwroot/favicon-96x96.png differ diff --git a/wwwroot/favicon.ico b/wwwroot/favicon.ico new file mode 100644 index 0000000..8f50e67 Binary files /dev/null and b/wwwroot/favicon.ico differ diff --git a/wwwroot/favicon.ico.old b/wwwroot/favicon.ico.old new file mode 100644 index 0000000..57614f9 Binary files /dev/null and b/wwwroot/favicon.ico.old differ diff --git a/wwwroot/favicon.svg b/wwwroot/favicon.svg new file mode 100644 index 0000000..76f8dc8 --- /dev/null +++ b/wwwroot/favicon.svg @@ -0,0 +1 @@ +RealFaviconGeneratorhttps://realfavicongenerator.net \ No newline at end of file diff --git a/wwwroot/gotify-logo.svg b/wwwroot/gotify-logo.svg new file mode 100644 index 0000000..810631c --- /dev/null +++ b/wwwroot/gotify-logo.svg @@ -0,0 +1,5928 @@ + + + + + + + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 +ndlR0pR1s6ih8Xpa9fYrSZXw2X05qepLNE/HLyRWHzuT2nD0TErt7nMp1Q3ns2oC72+p4V/dKebu +d+RYrl7J5b67Fyycux7Ln70VK1y8mghro/pMLpLrotrCi4V1mRfLG9KulDe0nMmqL75Y1Ew/eprm ++u1rd7fbrwP9kX5adaFgdcPpnLr1p7Nqk27UIPlqaSm/lN8SiJ6Nevlj6uLvXy92/vb1YlPn72HQ +d/DtXWvLrpRsKbm6akvo3R1tvo/217G3LsZzFy9EZF4v3wjzBJ/jlxOqtl9Nrlp/Ma1qz7XEqtO3 +YivW3kqu83uyu57625N0l6evA1yf/79gt99fR5t//ynV88Xh0uQrVQ3Fl/PrV5/LrNl4Oqsm8XJN +XdjNNTXhN1vrAjs3VVuenir1fnK0Wnx6u0x8cLtE7LxbyB362zJq+/8u5L76m493x/ma8I72tSGd +m5r8HuyuX/rs65plT4/Wca/u55uf/j2OefYkg//tyiq/hztrvZ8fqna9/3q5a+ePfvSDqwl+D/c2 +pN+s2uxx40Su8zevFy5p/027pOjw+CVxLUOck1uGLVnToXS9+A+eevYoefmjzQ3ltzMbGq9m1Po+ +3lHt+vfXEYsfvfZY9PS1sPDFa3Hh89fcghevmcU/vvZ2/fV1uOs/X0eyv13JZn+/km3+5ZeUxXde +C4tqOt512fd6HvX9P5cJZzrjPa9eKQi8s6c5+WpNa83FvOaNFzIa4m83rBWfXC7mbt5OY2/cT+Bv +XE4Xn90qDb/V1pJ6pao5/nJD0/aTmbWHvk+tir3ZiHT2Vw2WFxcrvZ+crPN9vL8+qrNlbdGNwrVp +1yqbg+611zP/9TiXfvgwmXtyG+nOi5W+Tw7UB9/b1BjV2dBQfzOjIedGURP3U2ch9fjnROrhbwlu +1197Lzn9esnCvT8aF5U3jFpYumXs/DOvZ7o9+n0F/7fLq/IuFdWvO5NRjexe9fbTGdU554urgjva +qnwfbqtiXrzMYm8+jWe++ckH2XE/9vbDlID7u1dnXV3VvOdUWvXxs0lV+0+l1+76Ph19N736yPep +1et/yKrzeYRs7PPTlWBfCy8VNRz5IaX6uzNJFZuQzjp3Oa7sx47oVa/Q5zTSdVk3iupN/3iVOv/O +azfX319H+j3aUbvhVkr96Y6Y8sO3Eqr330qoKe3IWcP/fqGE//1yMdhDrx9PVbu/+HvUwq9ef7Yk +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 +UD4c1pCE144VnEgMdQ3vLfnmDgerUARLm+SjfHIV8aH7psEmSc3VB3Nv8C/gTYnufr25LbH9RO/k +wUJEJfFRJaNon4/UTLTeIO/DNQJf2sTQXGFmoVIgj0ZtgnoX1x15EuZbeWKz/Ga/XtS2wZgm10yM +KP0Ga3mEzYF6EuJ59skFyFfA00I9iDVbUvT2cVi7gXGF48B8seiTNwy1M/w38kjKTfdKHETXHIEF +75M2hMSxITTOg/dKfArvlz0MTGfKE8Z6xeBCyuyWkPuAc4serX/CYMpqoj74xBzKeUXPhOShGON8 ++vEufwT2KfFxlHMFViz67GSMid7k2kUQOyP1CfIi2CCpgeax2Wfn4D4iJ2QLzy4UUsnvIOdJeWLg +h4I/jD4P+uQ+sQPpXCnJicBnE6seGGEfHetD8m2spY0h1y1+10Sw6CivDPN0AYlDUCeBXYexTa8D +/EPakWl0PXDinvFY7wpuIhiEWC+I8UVzBHJt4a/k0JJvaFxKPjiDMsHJOfPxZWOpnSZUj2PSTk1j +ko9P4XyyhyCfo+eGdS9Ft5dgPFHGloO7Ljjh5juf/KQ8/NSY3/nUiK/pMGRS905iHQ== + + + vLtjfwjyP3LvJoDTQ+LAFDoewR50i+1Hj5uO62OzOr88vjy+PL48vjy+PL48vjy+PL48vjy+PL48 +vjy+PL48vjy+PL48vjy+PL48vjy+PL48vjy+PL48vjy+PL48vjy+PL48vjy+PL48vjy+PL48/n9+ +TJiwerPtKuut1n31uHV99SYsX7/Akrxibr1lq51nXz1j8pLlrOWeW1c52mx1dNts7emrv4S+xhlt +UK1fpb9Ef/IGa187T8vZlnMtp+h/rz95+fo5sy3JO8h3p+hPx8/Onjl3vv4scztrF/3JXb9Yn3xf +38TT0cFxM3nRwsbaxe7Tz36P//rqzVg0f/GCmfNmL1qov+i72QtnLpg7f5G+67+/vmjR4pnz5y5a +pO9CX/9uNr7C64vn4yf+x+t//h6X/8PvJ69v6qvH9tXb3FfPrK/eYv3JU/Q58qXq3z8n1+g7XKMV +nl5bNplabyXns/nTqyvsyBn9++uTVZs3W7va2erTl/XJ6/oLp/Sdrb+8r95sfc4b/y+366vnhU/m +6M+m/zhffGVAPnMir3nrz5mtb6QvyrP1bckbOXMc/oLZ3+HIP1+UhYtmLvz0woa/vrBo4UJ83PDn +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 +DwfPMnJ8n8Jhm/62+hSeRcPDwWn5bafXkA0PB8fRjfQum3PyhoeDdbke0d2na3jYG7WrboedGsFQ +DQ8H32aHQ3K4hoeDQ7y7bTaDUy4GNjw8UXrcWaVcHO522F/qPGHDw6GoQP2GhwOzNierZYaeaHC9 +kbabaMiGhyfoUzh8ysXWkW6Hhz2FQzY8HNztsKQCwzc8HGxTwEdwJg0P+8G873bYHTJyenx8Pth3 +3ZumnaLh4YnCEk7f8LAzZPtot8NDy5y+4eGpVNyTNzzsPwvIWIOt1Wt4OMBc1sFvBgv+NRoenrAI +0GkbHg5Wu9vEZsiGh600sp7pLV0qbl1bdq+Gh4OFHx/XeQYNDwd3OxzeOlg2PDyDXNw6DQ9r5eIO +3/CwmqV3avDJIrp6NDysl6rf26p+ioaHg1P1vbn7DBoe9mHmZbfDvjTtpA0PB3c77HTkD9XwcLB2 +3+dtTt7wcHC3w2Fsnd2XVjPgcsiGh70SrwZkSJ624WHPPbV09J7mh9M0PDwqMXZ2O+xrTztpw8Me +j9tBFMyedhYNDwcn6R6W007d8LBXUlzb6jzYCHmChoc1Un7PouHhYM9EZ8DlUA0PW4jas9th37jO +kzY8HAQWnSbVgc1xjxZYntdnH/snnHsMboWRdJLOQxZh18Mi/HqQRXhAvH9p6+zOo1w4FJQ832ny +ej/2tYsAIMq1QpY9mS4vYaJ9MV5bW95p3+ohhZUsvMV8evTiwZ0Xcy9G9dnT7+WQta353d1r4dz1 +lber46Nj21k8emnWLYxe3nn6eDScffpw8srX2bnJ69d2LY9g5cGnS+7On98jt1DcuekW3r5ddHen +Dp64pWzutVt6/eqDe3h5r+meXrmUuKdrN+bcyt8bm+75pe1P7vlS8MM9/37/gntxY+O2e/voywP3 +dr/50q3dm9527y8/GXPvr74jC29398/pS7t7t96mu3s7F+/tHszuv947/33ur2a0lB+UqaYfd5av +p5dGH67MjYXZ+PqlreXzz189u35he3dm4WIYr/156f3T2fzcs/sfpiefLSxfuv746lY62UpK1DKX +Frfe3JnOli7+rWeZXCABb3p09/PbmbFHnx8+MWWgBwHozHed+Py1GJ38Gj/uapC5tGftFSevXp2e +ha31ui+7EZ35onv/cPzx4LNOXvkQ67vuxnW38OzFgrt7fmd5dy9/sWm5re0k2Xji2eS1mWnr1nnO +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 + + + diff --git a/wwwroot/index.html b/wwwroot/index.html new file mode 100644 index 0000000..978e7c2 --- /dev/null +++ b/wwwroot/index.html @@ -0,0 +1,16 @@ + + + + + iGotify Assistent UI + + + + + + + + + + + diff --git a/wwwroot/main-ILRVANDG.js b/wwwroot/main-ILRVANDG.js new file mode 100644 index 0000000..1eea25c --- /dev/null +++ b/wwwroot/main-ILRVANDG.js @@ -0,0 +1,200 @@ +var i=Object.defineProperty,j$2=Object.defineProperties;var k=Object.getOwnPropertyDescriptors;var e=Object.getOwnPropertySymbols;var g$1=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable;var f=(a,b,c)=>b in a?i(a,b,{enumerable:true,configurable:true,writable:true,value:c}):a[b]=c,l=(a,b)=>{for(var c in b||={})g$1.call(b,c)&&f(a,c,b[c]);if(e)for(var c of e(b))h.call(b,c)&&f(a,c,b[c]);return a},m=(a,b)=>j$2(a,k(b));var n$1=a=>typeof a=="symbol"?a:a+"",o=(a,b)=>{var c={};for(var d in a)g$1.call(a,d)&&b.indexOf(d)<0&&(c[d]=a[d]);if(a!=null&&e)for(var d of e(a))b.indexOf(d)<0&&h.call(a,d)&&(c[d]=a[d]);return c};var je$1=null,ta$1=false,or$1=1,ie$1=Symbol("SIGNAL");function _$1(e){let n=je$1;return je$1=e,n}function na$1(){return je$1}var An$1={version:0,lastCleanEpoch:0,dirty:false,producers:void 0,producersTail:void 0,consumers:void 0,consumersTail:void 0,recomputing:false,consumerAllowSignalWrites:false,consumerIsAlwaysLive:false,kind:"unknown",producerMustRecompute:()=>false,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function rn$1(e){if(ta$1)throw new Error("");if(je$1===null)return;je$1.consumerOnSignalRead(e);let n=je$1.producersTail;if(n!==void 0&&n.producer===e)return;let t,r=je$1.recomputing;if(r&&(t=n!==void 0?n.nextProducer:je$1.producers,t!==void 0&&t.producer===e)){je$1.producersTail=t,t.lastReadVersion=e.version,t.knownValidAtEpoch=or$1;return}let o=e.consumersTail;if(o!==void 0&&o.consumer===je$1&&(!r||o.knownValidAtEpoch===or$1))return;let i=ro$1(je$1),s={producer:e,consumer:je$1,nextProducer:t,prevConsumer:void 0,knownValidAtEpoch:or$1,lastReadVersion:e.version,nextConsumer:void 0};je$1.producersTail=s,n!==void 0?n.nextProducer=s:je$1.producers=s,i&&Eg(e,s);}function mg(){or$1++;}function ar$1(e){if(!(ro$1(e)&&!e.dirty)&&!(!e.dirty&&e.lastCleanEpoch===or$1)){if(!e.producerMustRecompute(e)&&!no$1(e)){to$1(e);return}e.producerRecomputeValue(e),to$1(e);}}function Sl$1(e){if(e.consumers===void 0)return;let n=ta$1;ta$1=true;try{for(let t=e.consumers;t!==void 0;t=t.nextConsumer){let r=t.consumer;r.dirty||jC(r);}}finally{ta$1=n;}}function bl$1(){return je$1?.consumerAllowSignalWrites!==false}function jC(e){e.dirty=true,Sl$1(e),e.consumerMarkedDirty?.(e);}function to$1(e){e.dirty=false,e.lastCleanEpoch=or$1;}function on$1(e){return e&&yg(e),_$1(e)}function yg(e){if(e.producersTail?.knownValidAtEpoch===or$1){let n=e.producers;for(;n!==void 0;)n.knownValidAtEpoch=null,n=n.nextProducer;}e.producersTail=void 0,e.recomputing=true;}function Rn$1(e,n){_$1(n),e&&vg(e);}function vg(e){e.recomputing=false;let n=e.producersTail,t=n!==void 0?n.nextProducer:e.producers;if(t!==void 0){if(ro$1(e))do t=Tl$1(t);while(t!==void 0);n!==void 0?n.nextProducer=void 0:e.producers=void 0;}}function no$1(e){for(let n=e.producers;n!==void 0;n=n.nextProducer){let t=n.producer,r=n.lastReadVersion;if(r!==t.version||(ar$1(t),r!==t.version))return true}return false}function xn$1(e){if(ro$1(e)){let n=e.producers;for(;n!==void 0;)n=Tl$1(n);}e.producers=void 0,e.producersTail=void 0,e.consumers=void 0,e.consumersTail=void 0;}function Eg(e,n){let t=e.consumersTail,r=ro$1(e);if(t!==void 0?(n.nextConsumer=t.nextConsumer,t.nextConsumer=n):(n.nextConsumer=void 0,e.consumers=n),n.prevConsumer=t,e.consumersTail=n,!r)for(let o=e.producers;o!==void 0;o=o.nextProducer)Eg(o.producer,o);}function Tl$1(e){let n=e.producer,t=e.nextProducer,r=e.nextConsumer,o=e.prevConsumer;if(e.nextConsumer=void 0,e.prevConsumer=void 0,r!==void 0?r.prevConsumer=o:n.consumersTail=o,o!==void 0)o.nextConsumer=r;else if(n.consumers=r,!ro$1(n)){let i=n.producers;for(;i!==void 0;)i=Tl$1(i);}return t}function ro$1(e){return e.consumerIsAlwaysLive||e.consumers!==void 0}function fi$1(e,n){return Object.is(e,n)}function pi$1(e,n){let t=Object.create(UC);t.computation=e,n!==void 0&&(t.equal=n);let r=()=>{if(ar$1(t),rn$1(t),t.value===Bt$1)throw t.error;return t.value};return r[ie$1]=t,r}var ir$1=Symbol("UNSET"),sr$1=Symbol("COMPUTING"),Bt$1=Symbol("ERRORED"),UC=m(l({},An$1),{value:ir$1,dirty:true,error:null,equal:fi$1,kind:"computed",producerMustRecompute(e){return e.value===ir$1||e.value===sr$1},producerRecomputeValue(e){if(e.value===sr$1)throw new Error("");let n=e.value;e.value=sr$1;let t=on$1(e),r,o=false;try{r=e.computation(),_$1(null),o=n!==ir$1&&n!==Bt$1&&r!==Bt$1&&e.equal(n,r);}catch(i){r=Bt$1,e.error=i;}finally{Rn$1(e,t);}if(o){e.value=n;return}e.value=r,e.version++;}});function BC(){throw new Error}var Dg=BC;function wg(e){Dg(e);}function _l$1(e){Dg=e;}function Ml$1(e,n){let t=Object.create(hi$1);t.value=e,n!==void 0&&(t.equal=n);let r=()=>Ig(t);return r[ie$1]=t,[r,s=>On$1(t,s),s=>ra$1(t,s)]}function Ig(e){return rn$1(e),e.value}function On$1(e,n){bl$1()||wg(e),e.equal(e.value,n)||(e.value=n,VC(e));}function ra$1(e,n){bl$1()||wg(e),On$1(e,n(e.value));}var hi$1=m(l({},An$1),{equal:fi$1,value:void 0,kind:"signal"});function VC(e){e.version++,mg(),Sl$1(e);}var Nl$1=m(l({},An$1),{consumerIsAlwaysLive:true,consumerAllowSignalWrites:true,dirty:true,kind:"effect"});function Al$1(e){if(e.dirty=false,e.version>0&&!no$1(e))return;e.version++;let n=on$1(e);try{e.cleanup(),e.fn();}finally{Rn$1(e,n);}}var Rl$1;function oa$1(){return Rl$1}function Ht$1(e){let n=Rl$1;return Rl$1=e,n}var Cg=Symbol("NotFound");function oo$1(e){return e===Cg||e?.name==="\u0275NotFound"}function xl$1(e,n,t){let r=Object.create($C);r.source=e,r.computation=n,t!=null&&(r.equal=t);let i=()=>{if(ar$1(r),rn$1(r),r.value===Bt$1)throw r.error;return r.value};return i[ie$1]=r,i}function Sg(e,n){ar$1(e),On$1(e,n),to$1(e);}function bg(e,n){if(ar$1(e),e.value===Bt$1)throw e.error;ra$1(e,n),to$1(e);}var $C=m(l({},An$1),{value:ir$1,dirty:true,error:null,equal:fi$1,kind:"linkedSignal",producerMustRecompute(e){return e.value===ir$1||e.value===sr$1},producerRecomputeValue(e){if(e.value===sr$1)throw new Error("");let n=e.value;e.value=sr$1;let t=on$1(e),r,o=false;try{let i=e.source(),s=n!==ir$1&&n!==Bt$1,a=s?{source:e.sourceValue,value:n}:void 0;r=e.computation(i,a),e.sourceValue=i,_$1(null),o=s&&r!==Bt$1&&e.equal(n,r);}catch(i){r=Bt$1,e.error=i;}finally{Rn$1(e,t);}if(o){e.value=n;return}e.value=r,e.version++;}});function Tg(e){let n=_$1(null);try{return e()}finally{_$1(n);}}function O$1(e){return typeof e=="function"}function io$1(e){let t=e(r=>{Error.call(r),r.stack=new Error().stack;});return t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t}var ia$1=io$1(e=>function(t){e(this),this.message=t?`${t.length} errors occurred during unsubscription: +${t.map((r,o)=>`${o+1}) ${r.toString()}`).join(` + `)}`:"",this.name="UnsubscriptionError",this.errors=t;});function cr$1(e,n){if(e){let t=e.indexOf(n);0<=t&&e.splice(t,1);}}var me$1=class e{constructor(n){this.initialTeardown=n,this.closed=false,this._parentage=null,this._finalizers=null;}unsubscribe(){let n;if(!this.closed){this.closed=true;let{_parentage:t}=this;if(t)if(this._parentage=null,Array.isArray(t))for(let i of t)i.remove(this);else t.remove(this);let{initialTeardown:r}=this;if(O$1(r))try{r();}catch(i){n=i instanceof ia$1?i.errors:[i];}let{_finalizers:o}=this;if(o){this._finalizers=null;for(let i of o)try{_g(i);}catch(s){n=n??[],s instanceof ia$1?n=[...n,...s.errors]:n.push(s);}}if(n)throw new ia$1(n)}}add(n){var t;if(n&&n!==this)if(this.closed)_g(n);else {if(n instanceof e){if(n.closed||n._hasParent(this))return;n._addParent(this);}(this._finalizers=(t=this._finalizers)!==null&&t!==void 0?t:[]).push(n);}}_hasParent(n){let{_parentage:t}=this;return t===n||Array.isArray(t)&&t.includes(n)}_addParent(n){let{_parentage:t}=this;this._parentage=Array.isArray(t)?(t.push(n),t):t?[t,n]:n;}_removeParent(n){let{_parentage:t}=this;t===n?this._parentage=null:Array.isArray(t)&&cr$1(t,n);}remove(n){let{_finalizers:t}=this;t&&cr$1(t,n),n instanceof e&&n._removeParent(this);}};me$1.EMPTY=(()=>{let e=new me$1;return e.closed=true,e})();var Ol$1=me$1.EMPTY;function sa$1(e){return e instanceof me$1||e&&"closed"in e&&O$1(e.remove)&&O$1(e.add)&&O$1(e.unsubscribe)}function _g(e){O$1(e)?e():e.unsubscribe();}var Ct$1={Promise:void 0};var so$1={setTimeout(e,n,...t){return setTimeout(e,n,...t)},clearTimeout(e){return (clearTimeout)(e)},delegate:void 0};function aa$1(e){so$1.setTimeout(()=>{throw e});}function ur$1(){}function ao$1(e){e();}var dr$1=class dr extends me$1{constructor(n){super(),this.isStopped=false,n?(this.destination=n,sa$1(n)&&n.add(this)):this.destination=WC;}static create(n,t,r){return new co$1(n,t,r)}next(n){this.isStopped?Pl$1():this._next(n);}error(n){this.isStopped?Pl$1():(this.isStopped=true,this._error(n));}complete(){this.isStopped?Pl$1():(this.isStopped=true,this._complete());}unsubscribe(){this.closed||(this.isStopped=true,super.unsubscribe(),this.destination=null);}_next(n){this.destination.next(n);}_error(n){try{this.destination.error(n);}finally{this.unsubscribe();}}_complete(){try{this.destination.complete();}finally{this.unsubscribe();}}};var Fl$1=class Fl{constructor(n){this.partialObserver=n;}next(n){let{partialObserver:t}=this;if(t.next)try{t.next(n);}catch(r){ca$1(r);}}error(n){let{partialObserver:t}=this;if(t.error)try{t.error(n);}catch(r){ca$1(r);}else ca$1(n);}complete(){let{partialObserver:n}=this;if(n.complete)try{n.complete();}catch(t){ca$1(t);}}},co$1=class co extends dr$1{constructor(n,t,r){super();let o;if(O$1(n)||!n)o={next:n??void 0,error:t??void 0,complete:r??void 0};else {o=n;}this.destination=new Fl$1(o);}};function ca$1(e){aa$1(e);}function GC(e){throw e}function Pl$1(e,n){}var WC={closed:true,next:ur$1,error:GC,complete:ur$1};var uo$1=typeof Symbol=="function"&&Symbol.observable||"@@observable";function St$1(e){return e}function jl$1(...e){return Ul$1(e)}function Ul$1(e){return e.length===0?St$1:e.length===1?e[0]:function(t){return e.reduce((r,o)=>o(r),t)}}var P$1=(()=>{class e{constructor(t){t&&(this._subscribe=t);}lift(t){let r=new e;return r.source=this,r.operator=t,r}subscribe(t,r,o){let i=YC(t)?t:new co$1(t,r,o);return ao$1(()=>{let{operator:s,source:a}=this;i.add(s?s.call(i,a):a?this._subscribe(i):this._trySubscribe(i));}),i}_trySubscribe(t){try{return this._subscribe(t)}catch(r){t.error(r);}}forEach(t,r){return r=xg(r),new r((o,i)=>{let s=new co$1({next:a=>{try{t(a);}catch(c){i(c),s.unsubscribe();}},error:i,complete:o});this.subscribe(s);})}_subscribe(t){var r;return (r=this.source)===null||r===void 0?void 0:r.subscribe(t)}[uo$1](){return this}pipe(...t){return Ul$1(t)(this)}toPromise(t){return t=xg(t),new t((r,o)=>{let i;this.subscribe(s=>i=s,s=>o(s),()=>r(i));})}}return e.create=n=>new e(n),e})();function xg(e){var n;return (n=e??Ct$1.Promise)!==null&&n!==void 0?n:Promise}function qC(e){return e&&O$1(e.next)&&O$1(e.error)&&O$1(e.complete)}function YC(e){return e&&e instanceof dr$1||qC(e)&&sa$1(e)}function ZC(e){return O$1(e?.lift)}function H$1(e){return n=>{if(ZC(n))return n.lift(function(t){try{return e(t,this)}catch(r){this.error(r);}});throw new TypeError("Unable to lift unknown Observable type")}}function j$1(e,n,t,r,o){return new Bl$1(e,n,t,r,o)}var Bl$1=class Bl extends dr$1{constructor(n,t,r,o,i,s){super(n),this.onFinalize=i,this.shouldUnsubscribe=s,this._next=t?function(a){try{t(a);}catch(c){n.error(c);}}:super._next,this._error=o?function(a){try{o(a);}catch(c){n.error(c);}finally{this.unsubscribe();}}:super._error,this._complete=r?function(){try{r();}catch(a){n.error(a);}finally{this.unsubscribe();}}:super._complete;}unsubscribe(){var n;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){let{closed:t}=this;super.unsubscribe(),!t&&((n=this.onFinalize)===null||n===void 0||n.call(this));}}};var Og=io$1(e=>function(){e(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed";});var Y$1=(()=>{class e extends P$1{constructor(){super(),this.closed=false,this.currentObservers=null,this.observers=[],this.isStopped=false,this.hasError=false,this.thrownError=null;}lift(t){let r=new ua$1(this,this);return r.operator=t,r}_throwIfClosed(){if(this.closed)throw new Og}next(t){ao$1(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(let r of this.currentObservers)r.next(t);}});}error(t){ao$1(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=true,this.thrownError=t;let{observers:r}=this;for(;r.length;)r.shift().error(t);}});}complete(){ao$1(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=true;let{observers:t}=this;for(;t.length;)t.shift().complete();}});}unsubscribe(){this.isStopped=this.closed=true,this.observers=this.currentObservers=null;}get observed(){var t;return ((t=this.observers)===null||t===void 0?void 0:t.length)>0}_trySubscribe(t){return this._throwIfClosed(),super._trySubscribe(t)}_subscribe(t){return this._throwIfClosed(),this._checkFinalizedStatuses(t),this._innerSubscribe(t)}_innerSubscribe(t){let{hasError:r,isStopped:o,observers:i}=this;return r||o?Ol$1:(this.currentObservers=null,i.push(t),new me$1(()=>{this.currentObservers=null,cr$1(i,t);}))}_checkFinalizedStatuses(t){let{hasError:r,thrownError:o,isStopped:i}=this;r?t.error(o):i&&t.complete();}asObservable(){let t=new P$1;return t.source=this,t}}return e.create=(n,t)=>new ua$1(n,t),e})(),ua$1=class ua extends Y$1{constructor(n,t){super(),this.destination=n,this.source=t;}next(n){var t,r;(r=(t=this.destination)===null||t===void 0?void 0:t.next)===null||r===void 0||r.call(t,n);}error(n){var t,r;(r=(t=this.destination)===null||t===void 0?void 0:t.error)===null||r===void 0||r.call(t,n);}complete(){var n,t;(t=(n=this.destination)===null||n===void 0?void 0:n.complete)===null||t===void 0||t.call(n);}_subscribe(n){var t,r;return (r=(t=this.source)===null||t===void 0?void 0:t.subscribe(n))!==null&&r!==void 0?r:Ol$1}};var Se$1=class Se extends Y$1{constructor(n){super(),this._value=n;}get value(){return this.getValue()}_subscribe(n){let t=super._subscribe(n);return !t.closed&&n.next(this._value),t}getValue(){let{hasError:n,thrownError:t,_value:r}=this;if(n)throw t;return this._throwIfClosed(),r}next(n){super.next(this._value=n);}};var Hl$1={now(){return (Date).now()}};var la$1=class la extends me$1{constructor(n,t){super();}schedule(n,t=0){return this}};var gi$1={setInterval(e,n,...t){let{delegate:r}=gi$1;return r?.setInterval?r.setInterval(e,n,...t):setInterval(e,n,...t)},clearInterval(e){return (clearInterval)(e)},delegate:void 0};var da$1=class da extends la$1{constructor(n,t){super(n,t),this.scheduler=n,this.work=t,this.pending=false;}schedule(n,t=0){var r;if(this.closed)return this;this.state=n;let o=this.id,i=this.scheduler;return o!=null&&(this.id=this.recycleAsyncId(i,o,t)),this.pending=true,this.delay=t,this.id=(r=this.id)!==null&&r!==void 0?r:this.requestAsyncId(i,this.id,t),this}requestAsyncId(n,t,r=0){return gi$1.setInterval(n.flush.bind(n,this),r)}recycleAsyncId(n,t,r=0){if(r!=null&&this.delay===r&&this.pending===false)return t;t!=null&&gi$1.clearInterval(t);}execute(n,t){if(this.closed)return new Error("executing a cancelled action");this.pending=false;let r=this._execute(n,t);if(r)return r;this.pending===false&&this.id!=null&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null));}_execute(n,t){let r=false,o;try{this.work(n);}catch(i){r=true,o=i||new Error("Scheduled action threw falsy error");}if(r)return this.unsubscribe(),o}unsubscribe(){if(!this.closed){let{id:n,scheduler:t}=this,{actions:r}=t;this.work=this.state=this.scheduler=null,this.pending=false,cr$1(r,this),n!=null&&(this.id=this.recycleAsyncId(t,n,null)),this.delay=null,super.unsubscribe();}}};var lo$1=class e{constructor(n,t=e.now){this.schedulerActionCtor=n,this.now=t;}schedule(n,t=0,r){return new this.schedulerActionCtor(this,n).schedule(r,t)}};lo$1.now=Hl$1.now;var fa$1=class fa extends lo$1{constructor(n,t=lo$1.now){super(n,t),this.actions=[],this._active=false;}flush(n){let{actions:t}=this;if(this._active){t.push(n);return}let r;this._active=true;do if(r=n.execute(n.state,n.delay))break;while(n=t.shift());if(this._active=false,r){for(;n=t.shift();)n.unsubscribe();throw r}}};var Vl$1=new fa$1(da$1),Lg=Vl$1;var be$1=new P$1(e=>e.complete());function pa$1(e){return e&&O$1(e.schedule)}function kg(e){return e[e.length-1]}function ha$1(e){return O$1(kg(e))?e.pop():void 0}function Ln$1(e){return pa$1(kg(e))?e.pop():void 0}function Fg(e,n,t,r){function o(i){return i instanceof t?i:new t(function(s){s(i);})}return new(t||(t=Promise))(function(i,s){function a(l){try{u(r.next(l));}catch(d){s(d);}}function c(l){try{u(r.throw(l));}catch(d){s(d);}}function u(l){l.done?i(l.value):o(l.value).then(a,c);}u((r=r.apply(e,[])).next());})}function Pg(e){var n=typeof Symbol=="function"&&Symbol.iterator,t=n&&e[n],r=0;if(t)return t.call(e);if(e&&typeof e.length=="number")return {next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(n?"Object is not iterable.":"Symbol.iterator is not defined.")}function fr$1(e){return this instanceof fr$1?(this.v=e,this):new fr$1(e)}function jg(e,n,t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=t.apply(e,n||[]),o,i=[];return o=Object.create((typeof AsyncIterator=="function"?AsyncIterator:Object).prototype),a("next"),a("throw"),a("return",s),o[Symbol.asyncIterator]=function(){return this},o;function s(p){return function(h){return Promise.resolve(h).then(p,d)}}function a(p,h){r[p]&&(o[p]=function(m){return new Promise(function(y,E){i.push([p,m,y,E])>1||c(p,m);})},h&&(o[p]=h(o[p])));}function c(p,h){try{u(r[p](h));}catch(m){f(i[0][3],m);}}function u(p){p.value instanceof fr$1?Promise.resolve(p.value.v).then(l,d):f(i[0][2],p);}function l(p){c("next",p);}function d(p){c("throw",p);}function f(p,h){p(h),i.shift(),i.length&&c(i[0][0],i[0][1]);}}function Ug(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n=e[Symbol.asyncIterator],t;return n?n.call(e):(e=typeof Pg=="function"?Pg(e):e[Symbol.iterator](),t={},r("next"),r("throw"),r("return"),t[Symbol.asyncIterator]=function(){return this},t);function r(i){t[i]=e[i]&&function(s){return new Promise(function(a,c){s=e[i](s),o(a,c,s.done,s.value);})};}function o(i,s,a,c){Promise.resolve(c).then(function(u){i({value:u,done:a});},s);}}var ga$1=e=>e&&typeof e.length=="number"&&typeof e!="function";function ma$1(e){return O$1(e?.then)}function ya$1(e){return O$1(e[uo$1])}function va$1(e){return Symbol.asyncIterator&&O$1(e?.[Symbol.asyncIterator])}function Ea$1(e){return new TypeError(`You provided ${e!==null&&typeof e=="object"?"an invalid object":`'${e}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}function KC(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var Da$1=KC();function wa$1(e){return O$1(e?.[Da$1])}function Ia$1(e){return jg(this,arguments,function*(){let t=e.getReader();try{for(;;){let{value:r,done:o}=yield fr$1(t.read());if(o)return yield fr$1(void 0);yield yield fr$1(r);}}finally{t.releaseLock();}})}function Ca$1(e){return O$1(e?.getReader)}function se$1(e){if(e instanceof P$1)return e;if(e!=null){if(ya$1(e))return QC(e);if(ga$1(e))return XC(e);if(ma$1(e))return JC(e);if(va$1(e))return Bg(e);if(wa$1(e))return eS(e);if(Ca$1(e))return tS(e)}throw Ea$1(e)}function QC(e){return new P$1(n=>{let t=e[uo$1]();if(O$1(t.subscribe))return t.subscribe(n);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function XC(e){return new P$1(n=>{for(let t=0;t{e.then(t=>{n.closed||(n.next(t),n.complete());},t=>n.error(t)).then(null,aa$1);})}function eS(e){return new P$1(n=>{for(let t of e)if(n.next(t),n.closed)return;n.complete();})}function Bg(e){return new P$1(n=>{nS(e,n).catch(t=>n.error(t));})}function tS(e){return Bg(Ia$1(e))}function nS(e,n){var t,r,o,i;return Fg(this,void 0,void 0,function*(){try{for(t=Ug(e);r=yield t.next(),!r.done;){let s=r.value;if(n.next(s),n.closed)return}}catch(s){o={error:s};}finally{try{r&&!r.done&&(i=t.return)&&(yield i.call(t));}finally{if(o)throw o.error}}n.complete();})}function $e$1(e,n,t,r=0,o=false){let i=n.schedule(function(){t(),o?e.add(this.schedule(null,r)):this.unsubscribe();},r);if(e.add(i),!o)return i}function Sa$1(e,n=0){return H$1((t,r)=>{t.subscribe(j$1(r,o=>$e$1(r,e,()=>r.next(o),n),()=>$e$1(r,e,()=>r.complete(),n),o=>$e$1(r,e,()=>r.error(o),n)));})}function ba$1(e,n=0){return H$1((t,r)=>{r.add(e.schedule(()=>t.subscribe(r),n));})}function Hg(e,n){return se$1(e).pipe(ba$1(n),Sa$1(n))}function Vg(e,n){return se$1(e).pipe(ba$1(n),Sa$1(n))}function $g(e,n){return new P$1(t=>{let r=0;return n.schedule(function(){r===e.length?t.complete():(t.next(e[r++]),t.closed||this.schedule());})})}function zg(e,n){return new P$1(t=>{let r;return $e$1(t,n,()=>{r=e[Da$1](),$e$1(t,n,()=>{let o,i;try{({value:o,done:i}=r.next());}catch(s){t.error(s);return}i?t.complete():t.next(o);},0,true);}),()=>O$1(r?.return)&&r.return()})}function Ta$1(e,n){if(!e)throw new Error("Iterable cannot be null");return new P$1(t=>{$e$1(t,n,()=>{let r=e[Symbol.asyncIterator]();$e$1(t,n,()=>{r.next().then(o=>{o.done?t.complete():t.next(o.value);});},0,true);});})}function Gg(e,n){return Ta$1(Ia$1(e),n)}function Wg(e,n){if(e!=null){if(ya$1(e))return Hg(e,n);if(ga$1(e))return $g(e,n);if(ma$1(e))return Vg(e,n);if(va$1(e))return Ta$1(e,n);if(wa$1(e))return zg(e,n);if(Ca$1(e))return Gg(e,n)}throw Ea$1(e)}function te$1(e,n){return n?Wg(e,n):se$1(e)}function A$1(...e){let n=Ln$1(e);return te$1(e,n)}function $l$1(e,n){let t=O$1(e)?e:()=>e,r=o=>o.error(t());return new P$1(r)}function _a$1(e){return !!e&&(e instanceof P$1||O$1(e.lift)&&O$1(e.subscribe))}var pr$1=io$1(e=>function(){e(this),this.name="EmptyError",this.message="no elements in sequence";});function qg(e){return e instanceof Date&&!isNaN(e)}function Z$1(e,n){return H$1((t,r)=>{let o=0;t.subscribe(j$1(r,i=>{r.next(e.call(n,i,o++));}));})}var{isArray:rS}=Array;function oS(e,n){return rS(n)?e(...n):e(n)}function Ma$1(e){return Z$1(n=>oS(e,n))}var{isArray:iS}=Array,{getPrototypeOf:sS,prototype:aS,keys:cS}=Object;function Na$1(e){if(e.length===1){let n=e[0];if(iS(n))return {args:n,keys:null};if(uS(n)){let t=cS(n);return {args:t.map(r=>n[r]),keys:t}}}return {args:e,keys:null}}function uS(e){return e&&typeof e=="object"&&sS(e)===aS}function Aa$1(e,n){return e.reduce((t,r,o)=>(t[r]=n[o],t),{})}function Ra$1(...e){let n=Ln$1(e),t=ha$1(e),{args:r,keys:o}=Na$1(e);if(r.length===0)return te$1([],n);let i=new P$1(lS(r,n,o?s=>Aa$1(o,s):St$1));return t?i.pipe(Ma$1(t)):i}function lS(e,n,t=St$1){return r=>{Yg(n,()=>{let{length:o}=e,i=new Array(o),s=o,a=o;for(let c=0;c{let u=te$1(e[c],n),l=false;u.subscribe(j$1(r,d=>{i[c]=d,l||(l=true,a--),a||r.next(t(i.slice()));},()=>{--s||r.complete();}));},r);},r);}}function Yg(e,n,t){e?$e$1(t,e,n):n();}function Zg(e,n,t,r,o,i,s,a){let c=[],u=0,l=0,d=false,f=()=>{d&&!c.length&&!u&&n.complete();},p=m=>u{u++;let y=false;se$1(t(m,l++)).subscribe(j$1(n,E=>{n.next(E);},()=>{y=true;},void 0,()=>{if(y)try{for(u--;c.length&&uh(E)):h(E);}f();}catch(E){n.error(E);}}));};return e.subscribe(j$1(n,p,()=>{d=true,f();})),()=>{}}function Te$1(e,n,t=1/0){return O$1(n)?Te$1((r,o)=>Z$1((i,s)=>n(r,i,o,s))(se$1(e(r,o))),t):(typeof n=="number"&&(t=n),H$1((r,o)=>Zg(r,o,e,t)))}function kn$1(e=1/0){return Te$1(St$1,e)}function Kg(){return kn$1(1)}function fo$1(...e){return Kg()(te$1(e,Ln$1(e)))}function mi$1(e){return new P$1(n=>{se$1(e()).subscribe(n);})}function dS(...e){let n=ha$1(e),{args:t,keys:r}=Na$1(e),o=new P$1(i=>{let{length:s}=t;if(!s){i.complete();return}let a=new Array(s),c=s,u=s;for(let l=0;l{d||(d=true,u--),a[l]=f;},()=>c--,void 0,()=>{(!c||!d)&&(u||i.next(r?Aa$1(r,a):a),i.complete());}));}});return n?o.pipe(Ma$1(n)):o}function Qg(e=0,n,t=Lg){let r=-1;return n!=null&&(pa$1(n)?t=n:r=n),new P$1(o=>{let i=qg(e)?+e-t.now():e;i<0&&(i=0);let s=0;return t.schedule(function(){o.closed||(o.next(s++),0<=r?this.schedule(void 0,r):o.complete());},i)})}function fS(e=0,n=Vl$1){return e<0&&(e=0),Qg(e,e,n)}function Ke$1(e,n){return H$1((t,r)=>{let o=0;t.subscribe(j$1(r,i=>e.call(n,i,o++)&&r.next(i)));})}function hr$1(e){return H$1((n,t)=>{let r=null,o=!1,i;r=n.subscribe(j$1(t,void 0,void 0,s=>{i=se$1(e(s,hr$1(e)(n))),r?(r.unsubscribe(),r=null,i.subscribe(t)):o=!0;})),o&&(r.unsubscribe(),r=null,i.subscribe(t));})}function Pn$1(e,n){return O$1(n)?Te$1(e,n,1):Te$1(e,1)}function pS(e){return H$1((n,t)=>{let r=!1,o=null,i=null,s=()=>{if(i?.unsubscribe(),i=null,r){r=!1;let a=o;o=null,t.next(a);}};n.subscribe(j$1(t,a=>{i?.unsubscribe(),r=!0,o=a,i=j$1(t,s,ur$1),se$1(e(a)).subscribe(i);},()=>{s(),t.complete();},void 0,()=>{o=i=null;}));})}function Xg(e){return H$1((n,t)=>{let r=!1;n.subscribe(j$1(t,o=>{r=!0,t.next(o);},()=>{r||t.next(e),t.complete();}));})}function sn$1(e){return e<=0?()=>be$1:H$1((n,t)=>{let r=0;n.subscribe(j$1(t,o=>{++r<=e&&(t.next(o),e<=r&&t.complete());}));})}function Jg(e=hS){return H$1((n,t)=>{let r=!1;n.subscribe(j$1(t,o=>{r=!0,t.next(o);},()=>r?t.complete():t.error(e())));})}function hS(){return new pr$1}function yi$1(e){return H$1((n,t)=>{try{n.subscribe(t);}finally{t.add(e);}})}function an$1(e,n){let t=arguments.length>=2;return r=>r.pipe(e?Ke$1((o,i)=>e(o,i,r)):St$1,sn$1(1),t?Xg(n):Jg(()=>new pr$1))}function xa$1(e){return e<=0?()=>be$1:H$1((n,t)=>{let r=[];n.subscribe(j$1(t,o=>{r.push(o),e{for(let o of r)t.next(o);t.complete();},void 0,()=>{r=null;}));})}function zl$1(...e){let n=Ln$1(e);return H$1((t,r)=>{(n?fo$1(e,t,n):fo$1(e,t)).subscribe(r);})}function ze$1(e,n){return H$1((t,r)=>{let o=null,i=0,s=!1,a=()=>s&&!o&&r.complete();t.subscribe(j$1(r,c=>{o?.unsubscribe();let u=0,l=i++;se$1(e(c,l)).subscribe(o=j$1(r,d=>r.next(n?n(c,d,l,u++):d),()=>{o=null,a();}));},()=>{s=!0,a();}));})}function vi$1(e){return H$1((n,t)=>{se$1(e).subscribe(j$1(t,()=>t.complete(),ur$1)),!t.closed&&n.subscribe(t);})}function Qe$1(e,n,t){let r=O$1(e)||n||t?{next:e,error:n,complete:t}:e;return r?H$1((o,i)=>{var s;(s=r.subscribe)===null||s===void 0||s.call(r);let a=!0;o.subscribe(j$1(i,c=>{var u;(u=r.next)===null||u===void 0||u.call(r,c),i.next(c);},()=>{var c;a=!1,(c=r.complete)===null||c===void 0||c.call(r),i.complete();},c=>{var u;a=!1,(u=r.error)===null||u===void 0||u.call(r,c),i.error(c);},()=>{var c,u;a&&((c=r.unsubscribe)===null||c===void 0||c.call(r)),(u=r.finalize)===null||u===void 0||u.call(r);}));}):St$1}var ho$1=class ho{full;major;minor;patch;constructor(n){this.full=n;let t=n.split(".");this.major=t[0],this.minor=t[1],this.patch=t.slice(2).join(".");}},om=new ho$1("22.0.4");var Ua$1="https://angular.dev/best-practices/security#preventing-cross-site-scripting-xss",w=class extends Error{code;constructor(n,t){super(ut$1(n,t)),this.code=n;}};function gS(e){return `NG0${Math.abs(e)}`}function ut$1(e,n){return `${gS(e)}${n?": "+n:""}`}function $$1(e){for(let n in e)if(e[n]===$$1)return n;throw Error("")}function im(e,n){for(let t in n)n.hasOwnProperty(t)&&!e.hasOwnProperty(t)&&(e[t]=n[t]);}function Si$1(e){if(typeof e=="string")return e;if(Array.isArray(e))return `[${e.map(Si$1).join(", ")}]`;if(e==null)return ""+e;let n=e.overriddenName||e.name;if(n)return `${n}`;let t=e.toString();if(t==null)return ""+t;let r=t.indexOf(` +`);return r>=0?t.slice(0,r):t}function Ba$1(e,n){return e?n?`${e} ${n}`:e:n||""}var mS=$$1({__forward_ref__:$$1});function Ha$1(e){return e.__forward_ref__=Ha$1,e}function ye$1(e){return rd$1(e)?e():e}function rd$1(e){return typeof e=="function"&&e.hasOwnProperty(mS)&&e.__forward_ref__===Ha$1}function b(e){return {token:e.token,providedIn:e.providedIn||null,factory:e.factory,value:void 0}}function $t$1(e){return {providers:e.providers||[],imports:e.imports||[]}}function bi$1(e){return yS(e,Va$1)}function od$1(e){return bi$1(e)!==null}function yS(e,n){return e.hasOwnProperty(n)&&e[n]||null}function vS(e){let n=e?.[Va$1]??null;return n||null}function Wl$1(e){return e&&e.hasOwnProperty(La$1)?e[La$1]:null}var Va$1=$$1({\u0275prov:$$1}),La$1=$$1({\u0275inj:$$1}),I$1=class I{_desc;ngMetadataName="InjectionToken";\u0275prov;constructor(n,t){this._desc=n,this.\u0275prov=void 0,typeof t=="number"?this.__NG_ELEMENT_ID__=t:t!==void 0&&(this.\u0275prov=b({token:this,providedIn:t.providedIn||"root",factory:t.factory}));}get multi(){return this}toString(){return `InjectionToken ${this._desc}`}};function id$1(e){return e&&!!e.\u0275providers}var sd$1=$$1({\u0275cmp:$$1}),ad$1=$$1({\u0275dir:$$1}),cd$1=$$1({\u0275pipe:$$1}),ud$1=$$1({\u0275mod:$$1}),Di$1=$$1({\u0275fac:$$1}),Dr$1=$$1({__NG_ELEMENT_ID__:$$1}),em=$$1({__NG_ENV_ID__:$$1});function sm(e){return za$1(e),e[ud$1]||null}function jn$1(e){return za$1(e),e[sd$1]||null}function $a$1(e){return za$1(e),e[ad$1]||null}function am(e){return za$1(e),e[cd$1]||null}function za$1(e,n){if(e==null)throw new w(-919,false)}function wr$1(e){return typeof e=="string"?e:e==null?"":String(e)}var cm=$$1({ngErrorCode:$$1}),ES=$$1({ngErrorMessage:$$1});$$1({ngTokenPath:$$1});function ld$1(e,n){return um("",-200)}function Ga$1(e,n){throw new w(-201,false)}function um(e,n,t){let r=new w(n,e);return r[cm]=n,r[ES]=e,r}function wS(e){return e[cm]}var ql$1;function lm(){return ql$1}function Xe$1(e){let n=ql$1;return ql$1=e,n}function dd$1(e,n,t){let r=bi$1(e);if(r&&r.providedIn=="root")return r.value===void 0?r.value=r.factory():r.value;if(t&8)return null;if(n!==void 0)return n;Ga$1();}var lt$1=globalThis;var IS={},gr$1=IS,CS="__NG_DI_FLAG__",Yl$1=class Yl{injector;constructor(n){this.injector=n;}retrieve(n,t){let r=mr$1(t)||0;try{return this.injector.get(n,r&8?null:gr$1,r)}catch(o){if(oo$1(o))return o;throw o}}};function SS(e,n=0){let t=oa$1();if(t===void 0)throw new w(-203,false);if(t===null)return dd$1(e,void 0,n);{let r=bS(n),o=t.retrieve(e,r);if(oo$1(o)){if(r.optional)return null;throw o}return o}}function M$1(e,n=0){return (lm()||SS)(ye$1(e),n)}function g(e,n){return M$1(e,mr$1(n))}function mr$1(e){return typeof e>"u"||typeof e=="number"?e:0|(e.optional&&8)|(e.host&&1)|(e.self&&2)|(e.skipSelf&&4)}function bS(e){return {optional:!!(e&8),host:!!(e&1),self:!!(e&2),skipSelf:!!(e&4)}}function Zl$1(e){let n=[];for(let t=0;tArray.isArray(t)?Wa$1(t,n):n(t));}function fd$1(e,n,t){n>=e.length?e.push(t):e.splice(n,0,t);}function Ti$1(e,n){return n>=e.length-1?e.pop():e.splice(n,1)[0]}function pm(e,n){let t=[];for(let r=0;rn;){let i=o-2;e[o]=e[i],o--;}e[n]=t,e[n+1]=r;}}function _i$1(e,n,t){let r=mo$1(e,n);return r>=0?e[r|1]=t:(r=~r,hm(e,r,n,t)),r}function qa$1(e,n){let t=mo$1(e,n);if(t>=0)return e[t|1]}function mo$1(e,n){return _S(e,n,1)}function _S(e,n,t){let r=0,o=e.length>>t;for(;o!==r;){let i=r+(o-r>>1),s=e[i<n?o=i:r=i+1;}return ~(o<{t.push(s);};return Wa$1(n,s=>{let a=s;ka$1(a,i,[],r)&&(o||=[],o.push(a));}),o!==void 0&&ym(o,i),t}function ym(e,n){for(let t=0;t{n(i,r);});}}function ka$1(e,n,t,r){if(e=ye$1(e),!e)return false;let o=null,i=Wl$1(e),s=!i&&jn$1(e);if(!i&&!s){let c=e.ngModule;if(i=Wl$1(c),i)o=c;else return false}else {if(s&&!s.standalone)return false;o=e;}let a=r.has(o);if(s){if(a)return false;if(r.add(o),s.dependencies){let c=typeof s.dependencies=="function"?s.dependencies():s.dependencies;for(let u of c)ka$1(u,n,t,r);}}else if(i){if(i.imports!=null&&!a){r.add(o);let u;Wa$1(i.imports,l=>{ka$1(l,n,t,r)&&(u||=[],u.push(l));}),u!==void 0&&ym(u,n);}if(!a){let u=yr$1(o)||(()=>new o);n({provide:o,useFactory:u,deps:Re$1},o),n({provide:pd$1,useValue:o,multi:true},o),n({provide:Ir$1,useValue:()=>M$1(o),multi:true},o);}let c=i.providers;if(c!=null&&!a){let u=e;gd$1(c,l=>{n(l,u);});}}else return false;return o!==e&&e.providers!==void 0}function gd$1(e,n){for(let t of e)id$1(t)&&(t=t.\u0275providers),Array.isArray(t)?gd$1(t,n):n(t);}var MS=$$1({provide:String,useValue:$$1});function vm(e){return e!==null&&typeof e=="object"&&MS in e}function NS(e){return !!(e&&e.useExisting)}function AS(e){return !!(e&&e.useFactory)}function vr$1(e){return typeof e=="function"}function Em(e){return !!e.useClass}var Ni$1=new I$1(""),Oa$1={},tm={},Gl$1;function Ai$1(){return Gl$1===void 0&&(Gl$1=new go$1),Gl$1}var ne$1=class ne{},Er$1=class Er extends ne$1{parent;source;scopes;records=new Map;_ngOnDestroyHooks=new Set;_onDestroyHooks=[];get destroyed(){return this._destroyed}_destroyed=false;injectorDefTypes;constructor(n,t,r,o){super(),this.parent=t,this.source=r,this.scopes=o,Ql$1(n,s=>this.processProvider(s)),this.records.set(Mi$1,po$1(void 0,this)),o.has("environment")&&this.records.set(ne$1,po$1(void 0,this));let i=this.records.get(Ni$1);i!=null&&typeof i.value=="string"&&this.scopes.add(i.value),this.injectorDefTypes=new Set(this.get(pd$1,Re$1,{self:true}));}retrieve(n,t){let r=mr$1(t)||0;try{return this.get(n,gr$1,r)}catch(o){if(oo$1(o))return o;throw o}}destroy(){Ei$1(this),this._destroyed=true;let n=_$1(null);try{for(let r of this._ngOnDestroyHooks)r.ngOnDestroy();let t=this._onDestroyHooks;this._onDestroyHooks=[];for(let r of t)r();}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),_$1(n);}}onDestroy(n){return Ei$1(this),this._onDestroyHooks.push(n),()=>this.removeOnDestroy(n)}runInContext(n){Ei$1(this);let t=Ht$1(this),r=Xe$1(void 0);try{return n()}finally{Ht$1(t),Xe$1(r);}}get(n,t=gr$1,r){if(Ei$1(this),n.hasOwnProperty(em))return n[em](this);let o=mr$1(r),s=Ht$1(this),a=Xe$1(void 0);try{if(!(o&4)){let u=this.records.get(n);if(u===void 0){let l=kS(n)&&bi$1(n);l&&this.injectableDefInScope(l)?u=po$1(Kl$1(n),Oa$1):u=null,this.records.set(n,u);}if(u!=null)return this.hydrate(n,u,o)}let c=o&2?Ai$1():this.parent;return t=o&8&&t===gr$1?null:t,c.get(n,t)}catch(c){let u=wS(c);throw u===-200||u===-201?new w(u,null):c}finally{Xe$1(a),Ht$1(s);}}resolveInjectorInitializers(){let n=_$1(null),t=Ht$1(this),r=Xe$1(void 0);try{let i=this.get(Ir$1,Re$1,{self:!0});for(let s of i)s();}finally{Ht$1(t),Xe$1(r),_$1(n);}}toString(){return "R3Injector[...]"}processProvider(n){n=ye$1(n);let t=vr$1(n)?n:ye$1(n&&n.provide),r=xS(n);if(!vr$1(n)&&n.multi===true){let o=this.records.get(t);o||(o=po$1(void 0,Oa$1,true),o.factory=()=>Zl$1(o.multi),this.records.set(t,o)),t=n,o.multi.push(n);}this.records.set(t,r);}hydrate(n,t,r){let o=_$1(null);try{if(t.value===tm)throw ld$1("");return t.value===Oa$1&&(t.value=tm,t.value=t.factory(void 0,r)),typeof t.value=="object"&&t.value&&LS(t.value)&&this._ngOnDestroyHooks.add(t.value),t.value}finally{_$1(o);}}injectableDefInScope(n){if(!n.providedIn)return false;let t=ye$1(n.providedIn);return typeof t=="string"?t==="any"||this.scopes.has(t):this.injectorDefTypes.has(t)}removeOnDestroy(n){let t=this._onDestroyHooks.indexOf(n);t!==-1&&this._onDestroyHooks.splice(t,1);}};function Kl$1(e){let n=bi$1(e),t=n!==null?n.factory:yr$1(e);if(t!==null)return t;if(e instanceof I$1)throw new w(-204,false);if(e instanceof Function)return RS(e);throw new w(-204,false)}function RS(e){if(e.length>0)throw new w(-204,false);let t=vS(e);return t!==null?()=>t.factory(e):()=>new e}function xS(e){if(vm(e))return po$1(void 0,e.useValue);{let n=md$1(e);return po$1(n,Oa$1)}}function md$1(e,n,t){let r;if(vr$1(e)){let o=ye$1(e);return yr$1(o)||Kl$1(o)}else if(vm(e))r=()=>ye$1(e.useValue);else if(AS(e))r=()=>e.useFactory(...Zl$1(e.deps||[]));else if(NS(e))r=(o,i)=>M$1(ye$1(e.useExisting),i!==void 0&&i&8?8:void 0);else {let o=ye$1(e&&(e.useClass||e.provide));if(OS(e))r=()=>new o(...Zl$1(e.deps));else return yr$1(o)||Kl$1(o)}return r}function Ei$1(e){if(e.destroyed)throw new w(-205,false)}function po$1(e,n,t=false){return {factory:e,value:n,multi:t?[]:void 0}}function OS(e){return !!e.deps}function LS(e){return e!==null&&typeof e=="object"&&typeof e.ngOnDestroy=="function"}function kS(e){return typeof e=="function"||typeof e=="object"&&e.ngMetadataName==="InjectionToken"}function Ql$1(e,n){for(let t of e)Array.isArray(t)?Ql$1(t,n):t&&id$1(t)?Ql$1(t.\u0275providers,n):n(t);}function Ee$1(e,n){let t;e instanceof Er$1?(Ei$1(e),t=e):t=new Yl$1(e);let o=Ht$1(t),i=Xe$1(void 0);try{return n()}finally{Ht$1(o),Xe$1(i);}}function Dm(){return lm()!==void 0||oa$1()!=null}var bt$1=0,N$1=1,R$1=2,ve$1=3,ft$1=4,xe$1=5,Cr$1=6,yo$1=7,ce$1=8,Oe$1=9,Tt$1=10,z=11,vo$1=12,yd$1=13,Bn$1=14,Ue$1=15,Hn$1=16,Sr$1=17,zt$1=18,_t$1=19,vd$1=20,cn$1=21,Ya$1=22,Fn$1=23,Je$1=24,br$1=25,pt$1=26,ae$1=27,wm=1,Ed$1=6,Vn$1=7,Ri$1=8,Tr$1=9,re$1=10;function ln$1(e){return Array.isArray(e)&&typeof e[wm]=="object"}function ht$1(e){return Array.isArray(e)&&e[wm]===true}function Dd$1(e){return (e.flags&4)!==0}function dn$1(e){return e.componentOffset>-1}function Eo$1(e){return (e.flags&1)===1}function Mt$1(e){return !!e.template}function Do$1(e){return (e[R$1]&512)!==0}function _r$1(e){return (e[R$1]&256)===256}var wd$1="svg",Im="math";function gt$1(e){for(;Array.isArray(e);)e=e[bt$1];return e}function Id$1(e,n){return gt$1(n[e])}function Ge$1(e,n){return gt$1(n[e.index])}function Za$1(e,n){return e.data[n]}function Cm(e,n){return e[n]}function mt$1(e,n){let t=n[e];return ln$1(t)?t:t[bt$1]}function Sm(e){return (e[R$1]&4)===4}function Ka$1(e){return (e[R$1]&128)===128}function bm(e){return ht$1(e[ve$1])}function yt$1(e,n){return n==null?null:e[n]}function Cd$1(e){e[Sr$1]=0;}function Sd$1(e){e[R$1]&1024||(e[R$1]|=1024,Ka$1(e)&&Mr$1(e));}function Tm(e,n){for(;e>0;)n=n[Bn$1],e--;return n}function xi$1(e){return !!(e[R$1]&9216||e[Je$1]?.dirty)}function Qa$1(e){e[Tt$1].changeDetectionScheduler?.notify(8),e[R$1]&64&&(e[R$1]|=1024),xi$1(e)&&Mr$1(e);}function Mr$1(e){e[Tt$1].changeDetectionScheduler?.notify(0);let n=un$1(e);for(;n!==null&&!(n[R$1]&8192||(n[R$1]|=8192,!Ka$1(n)));)n=un$1(n);}function Xa$1(e,n){if(_r$1(e))throw new w(911,false);e[cn$1]===null&&(e[cn$1]=[]),e[cn$1].push(n);}function _m(e,n){if(e[cn$1]===null)return;let t=e[cn$1].indexOf(n);t!==-1&&e[cn$1].splice(t,1);}function un$1(e){let n=e[ve$1];return ht$1(n)?n[ve$1]:n}function bd$1(e){return e[yo$1]??=[]}function Td$1(e){return e.cleanup??=[]}function Mm(e,n,t,r){let o=bd$1(n);o.push(t),e.firstCreatePass&&Td$1(e).push(r,o.length-1);}var L$1={lFrame:Vm(null),bindingsEnabled:true,skipHydrationRootTNode:null};var Xl$1=false;function Nm(){return L$1.lFrame.elementDepthCount}function Am(){L$1.lFrame.elementDepthCount++;}function _d$1(){L$1.lFrame.elementDepthCount--;}function Ja$1(){return L$1.bindingsEnabled}function Md$1(){return L$1.skipHydrationRootTNode!==null}function Nd$1(e){return L$1.skipHydrationRootTNode===e}function Ad$1(){L$1.skipHydrationRootTNode=null;}function T$1(){return L$1.lFrame.lView}function X$1(){return L$1.lFrame.tView}function Rm(e){return L$1.lFrame.contextLView=e,e[ce$1]}function xm(e){return L$1.lFrame.contextLView=null,e}function ue$1(){let e=Rd$1();for(;e!==null&&e.type===64;)e=e.parent;return e}function Rd$1(){return L$1.lFrame.currentTNode}function Om(){let e=L$1.lFrame,n=e.currentTNode;return e.isParent?n:n.parent}function wo$1(e,n){let t=L$1.lFrame;t.currentTNode=e,t.isParent=n;}function xd$1(){return L$1.lFrame.isParent}function Od$1(){L$1.lFrame.isParent=false;}function Lm(){return L$1.lFrame.contextLView}function Ld$1(){return Xl$1}function wi$1(e){let n=Xl$1;return Xl$1=e,n}function $n$1(){let e=L$1.lFrame,n=e.bindingRootIndex;return n===-1&&(n=e.bindingRootIndex=e.tView.bindingStartIndex),n}function km(){return L$1.lFrame.bindingIndex}function Pm(e){return L$1.lFrame.bindingIndex=e}function zn$1(){return L$1.lFrame.bindingIndex++}function ec$1(e){let n=L$1.lFrame,t=n.bindingIndex;return n.bindingIndex=n.bindingIndex+e,t}function Fm(){return L$1.lFrame.inI18n}function jm(e,n){let t=L$1.lFrame;t.bindingIndex=t.bindingRootIndex=e,tc$1(n);}function Um(){return L$1.lFrame.currentDirectiveIndex}function tc$1(e){L$1.lFrame.currentDirectiveIndex=e;}function Bm(e){let n=L$1.lFrame.currentDirectiveIndex;return n===-1?null:e[n]}function nc$1(){return L$1.lFrame.currentQueryIndex}function Oi$1(e){L$1.lFrame.currentQueryIndex=e;}function PS(e){let n=e[N$1];return n.type===2?n.declTNode:n.type===1?e[xe$1]:null}function kd$1(e,n,t){if(t&4){let o=n,i=e;for(;o=o.parent,o===null&&!(t&1);)if(o=PS(i),o===null||(i=i[Bn$1],o.type&10))break;if(o===null)return false;n=o,e=i;}let r=L$1.lFrame=Hm();return r.currentTNode=n,r.lView=e,true}function rc$1(e){let n=Hm(),t=e[N$1];L$1.lFrame=n,n.currentTNode=t.firstChild,n.lView=e,n.tView=t,n.contextLView=e,n.bindingIndex=t.bindingStartIndex,n.inI18n=false;}function Hm(){let e=L$1.lFrame,n=e===null?null:e.child;return n===null?Vm(e):n}function Vm(e){let n={currentTNode:null,isParent:true,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null,inI18n:false};return e!==null&&(e.child=n),n}function $m(){let e=L$1.lFrame;return L$1.lFrame=e.parent,e.currentTNode=null,e.lView=null,e}var Pd$1=$m;function oc$1(){let e=$m();e.isParent=true,e.tView=null,e.selectedIndex=-1,e.contextLView=null,e.elementDepthCount=0,e.currentDirectiveIndex=-1,e.currentNamespace=null,e.bindingRootIndex=-1,e.bindingIndex=-1,e.currentQueryIndex=0;}function zm(e){return (L$1.lFrame.contextLView=Tm(e,L$1.lFrame.contextLView))[ce$1]}function Gt$1(){return L$1.lFrame.selectedIndex}function Gn$1(e){L$1.lFrame.selectedIndex=e;}function Io$1(){let e=L$1.lFrame;return Za$1(e.tView,e.selectedIndex)}function Gm(){L$1.lFrame.currentNamespace=wd$1;}function Fd$1(){return L$1.lFrame.currentNamespace}var Wm=true;function ic$1(){return Wm}function Li$1(e){Wm=e;}function sc$1(){let e,n;return {promise:new Promise((r,o)=>{e=r,n=o;}),resolve:e,reject:n}}function Jl$1(e,n=null,t=null,r){let o=jd$1(e,n,t);return o.resolveInjectorInitializers(),o}function jd$1(e,n=null,t=null,r,o=new Set){let i=[t||Re$1,mm(e)];return new Er$1(i,n||Ai$1(),null,o)}var Ie$1=class e{static THROW_IF_NOT_FOUND=gr$1;static NULL=new go$1;static create(n,t){if(Array.isArray(n))return Jl$1({name:""},t,n);{let r=n.name??"";return Jl$1({name:r},n.parent,n.providers)}}static \u0275prov=b({token:e,providedIn:"any",factory:()=>M$1(Mi$1)});static __NG_ELEMENT_ID__=-1},G$1=new I$1(""),_e$1=(()=>{class e{static __NG_ELEMENT_ID__=FS;static __NG_ENV_ID__=t=>t}return e})(),Pa$1=class Pa extends _e$1{_lView;constructor(n){super(),this._lView=n;}get destroyed(){return _r$1(this._lView)}onDestroy(n){let t=this._lView;return Xa$1(t,n),()=>_m(t,n)}};function FS(){return new Pa$1(T$1())}var qm=false,Ym=new I$1(""),fn$1=(()=>{class e{taskId=0;pendingTasks=new Set;destroyed=false;pendingTask=new Se$1(false);debugTaskTracker=g(Ym,{optional:true});get hasPendingTasks(){return this.destroyed?false:this.pendingTask.value}get hasPendingTasksObservable(){return this.destroyed?new P$1(t=>{t.next(false),t.complete();}):this.pendingTask}add(){!this.hasPendingTasks&&!this.destroyed&&this.pendingTask.next(true);let t=this.taskId++;return this.pendingTasks.add(t),this.debugTaskTracker?.add(t),t}has(t){return this.pendingTasks.has(t)}remove(t){this.pendingTasks.delete(t),this.debugTaskTracker?.remove(t),this.pendingTasks.size===0&&this.hasPendingTasks&&this.pendingTask.next(false);}ngOnDestroy(){this.pendingTasks.clear(),this.hasPendingTasks&&this.pendingTask.next(false),this.destroyed=true,this.pendingTask.unsubscribe();}static \u0275prov=b({token:e,providedIn:"root",factory:()=>new e})}return e})(),ed$1=class ed extends Y$1{__isAsync;destroyRef=void 0;pendingTasks=void 0;constructor(n=false){super(),this.__isAsync=n,Dm()&&(this.destroyRef=g(_e$1,{optional:true})??void 0,this.pendingTasks=g(fn$1,{optional:true})??void 0);}emit(n){let t=_$1(null);try{super.next(n);}finally{_$1(t);}}subscribe(n,t,r){let o=n,i=t||(()=>null),s=r;if(n&&typeof n=="object"){let c=n;o=c.next?.bind(c),i=c.error?.bind(c),s=c.complete?.bind(c);}this.__isAsync&&(i=this.wrapInTimeout(i),o&&(o=this.wrapInTimeout(o)),s&&(s=this.wrapInTimeout(s)));let a=super.subscribe({next:o,error:i,complete:s});return n instanceof me$1&&n.add(a),a}wrapInTimeout(n){return t=>{let r=this.pendingTasks?.add();setTimeout(()=>{try{n(t);}finally{r!==void 0&&this.pendingTasks?.remove(r);}});}}},Ae$1=ed$1;function Fa$1(...e){}function Ud$1(e){let n,t;function r(){e=Fa$1;try{t!==void 0&&typeof cancelAnimationFrame=="function"&&cancelAnimationFrame(t),n!==void 0&&clearTimeout(n);}catch{}}return n=setTimeout(()=>{e(),r();}),typeof requestAnimationFrame=="function"&&(t=requestAnimationFrame(()=>{e(),r();})),()=>r()}function Zm(e){return queueMicrotask(()=>e()),()=>{e=Fa$1;}}var Bd$1="isAngularZone",Ii$1=Bd$1+"_ID",jS=0,de$1=class e{hasPendingMacrotasks=false;hasPendingMicrotasks=false;isStable=true;onUnstable=new Ae$1(false);onMicrotaskEmpty=new Ae$1(false);onStable=new Ae$1(false);onError=new Ae$1(false);constructor(n){let{enableLongStackTrace:t=false,shouldCoalesceEventChangeDetection:r=false,shouldCoalesceRunChangeDetection:o=false,scheduleInRootZone:i=qm}=n;if(typeof Zone>"u")throw new w(908,false);Zone.assertZonePatched();let s=this;s._nesting=0,s._outer=s._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(s._inner=s._inner.fork(new Zone.TaskTrackingZoneSpec)),t&&Zone.longStackTraceZoneSpec&&(s._inner=s._inner.fork(Zone.longStackTraceZoneSpec)),s.shouldCoalesceEventChangeDetection=!o&&r,s.shouldCoalesceRunChangeDetection=o,s.callbackScheduled=false,s.scheduleInRootZone=i,HS(s);}static isInAngularZone(){return typeof Zone<"u"&&Zone.current.get(Bd$1)===true}static assertInAngularZone(){if(!e.isInAngularZone())throw new w(909,false)}static assertNotInAngularZone(){if(e.isInAngularZone())throw new w(909,false)}run(n,t,r){return this._inner.run(n,t,r)}runTask(n,t,r,o){let i=this._inner,s=i.scheduleEventTask("NgZoneEvent: "+o,n,US,Fa$1,Fa$1);try{return i.runTask(s,t,r)}finally{i.cancelTask(s);}}runGuarded(n,t,r){return this._inner.runGuarded(n,t,r)}runOutsideAngular(n){return this._outer.run(n)}},US={};function Hd$1(e){if(e._nesting==0&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null);}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular(()=>e.onStable.emit(null));}finally{e.isStable=true;}}}function BS(e){if(e.isCheckStableRunning||e.callbackScheduled)return;e.callbackScheduled=true;function n(){Ud$1(()=>{e.callbackScheduled=false,td$1(e),e.isCheckStableRunning=true,Hd$1(e),e.isCheckStableRunning=false;});}e.scheduleInRootZone?Zone.root.run(()=>{n();}):e._outer.run(()=>{n();}),td$1(e);}function HS(e){let n=()=>{BS(e);},t=jS++;e._inner=e._inner.fork({name:"angular",properties:{[Bd$1]:true,[Ii$1]:t,[Ii$1+t]:true},onInvokeTask:(r,o,i,s,a,c)=>{if(VS(c))return r.invokeTask(i,s,a,c);try{return nm(e),r.invokeTask(i,s,a,c)}finally{(e.shouldCoalesceEventChangeDetection&&s.type==="eventTask"||e.shouldCoalesceRunChangeDetection)&&n(),rm(e);}},onInvoke:(r,o,i,s,a,c,u)=>{try{return nm(e),r.invoke(i,s,a,c,u)}finally{e.shouldCoalesceRunChangeDetection&&!e.callbackScheduled&&!$S(c)&&n(),rm(e);}},onHasTask:(r,o,i,s)=>{r.hasTask(i,s),o===i&&(s.change=="microTask"?(e._hasPendingMicrotasks=s.microTask,td$1(e),Hd$1(e)):s.change=="macroTask"&&(e.hasPendingMacrotasks=s.macroTask));},onHandleError:(r,o,i,s)=>(r.handleError(i,s),e.runOutsideAngular(()=>e.onError.emit(s)),false)});}function td$1(e){e._hasPendingMicrotasks||(e.shouldCoalesceEventChangeDetection||e.shouldCoalesceRunChangeDetection)&&e.callbackScheduled===true?e.hasPendingMicrotasks=true:e.hasPendingMicrotasks=false;}function nm(e){e._nesting++,e.isStable&&(e.isStable=false,e.onUnstable.emit(null));}function rm(e){e._nesting--,Hd$1(e);}var Ci$1=class Ci{hasPendingMicrotasks=false;hasPendingMacrotasks=false;isStable=true;onUnstable=new Ae$1;onMicrotaskEmpty=new Ae$1;onStable=new Ae$1;onError=new Ae$1;run(n,t,r){return n.apply(t,r)}runGuarded(n,t,r){return n.apply(t,r)}runOutsideAngular(n){return n()}runTask(n,t,r,o){return n.apply(t,r)}};function VS(e){return Km(e,"__ignore_ng_zone__")}function $S(e){return Km(e,"__scheduler_tick__")}function Km(e,n){return !Array.isArray(e)||e.length!==1?false:e[0]?.data?.[n]===true}var ct$1=class ct{_console=console;handleError(n){this._console.error("ERROR",n);}},et$1=new I$1("",{factory:()=>{let e=g(de$1),n=g(ne$1),t;return r=>{e.runOutsideAngular(()=>{n.destroyed&&!t?setTimeout(()=>{throw r}):(t??=n.get(ct$1),t.handleError(r));});}}}),Qm={provide:Ir$1,useValue:()=>{g(ct$1,{optional:true});},multi:true},zS=new I$1("",{factory:()=>{let e=g(G$1).defaultView;if(!e)return;let n=g(et$1),t=i=>{n(i.reason),i.preventDefault();},r=i=>{i.error?n(i.error):n(new Error(i.message,{cause:i})),i.preventDefault();},o=()=>{e.addEventListener("unhandledrejection",t),e.addEventListener("error",r);};typeof Zone<"u"?Zone.root.run(o):o(),g(_e$1).onDestroy(()=>{e.removeEventListener("error",r),e.removeEventListener("unhandledrejection",t);});}});function GS(){return dt$1([gm(()=>{g(zS);})])}function U$1(e,n){let [t,r,o]=Ml$1(e,n?.equal),i=t;i[ie$1];return i.set=r,i.update=o,i.asReadonly=ki$1.bind(i),i}function ki$1(){let e=this[ie$1];if(e.readonlyFn===void 0){let n=()=>this();n[ie$1]=e,e.readonlyFn=n;}return e.readonlyFn}var Pi$1=new I$1("",{factory:()=>WS}),WS="ng";var ac$1=new I$1(""),Nr$1=new I$1("",{providedIn:"platform",factory:()=>"unknown"});var Fi$1=new I$1("",{factory:()=>g(G$1).body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null}),cc$1={breakpoints:[16,32,48,64,96,128,256,384,640,750,828,1080,1200,1920,2048,3840],placeholderResolution:30,disableImageSizeWarning:false,disableImageLazyLoadWarning:false},uc$1=new I$1("",{factory:()=>cc$1});var Co$1=(()=>{class e{view;node;constructor(t,r){this.view=t,this.node=r;}static __NG_ELEMENT_ID__=qS}return e})();function qS(){return new Co$1(T$1(),ue$1())}var Vt$1=class Vt{},ji$1=new I$1("",{factory:()=>true});var Vd$1=new I$1(""),lc$1=(()=>{class e{static \u0275prov=b({token:e,providedIn:"root",factory:()=>new nd$1})}return e})(),nd$1=class nd{dirtyEffectCount=0;queues=new Map;add(n){this.enqueue(n),this.schedule(n);}schedule(n){n.dirty&&this.dirtyEffectCount++;}remove(n){let t=n.zone,r=this.queues.get(t);r.has(n)&&(r.delete(n),n.dirty&&this.dirtyEffectCount--);}enqueue(n){let t=n.zone;this.queues.has(t)||this.queues.set(t,new Set);let r=this.queues.get(t);r.has(n)||r.add(n);}flush(){for(;this.dirtyEffectCount>0;){let n=false;for(let[t,r]of this.queues)t===null?n||=this.flushQueue(r):n||=t.run(()=>this.flushQueue(r));n||(this.dirtyEffectCount=0);}}flushQueue(n){let t=false;for(let r of n)r.dirty&&(this.dirtyEffectCount--,t=true,r.run());return t}},ja$1=class ja{[ie$1];constructor(n){this[ie$1]=n;}destroy(){this[ie$1].destroy();}};function Ui$1(e,n){let t=n?.injector??g(Ie$1),r=n?.manualCleanup!==true?t.get(_e$1):null,o,i=t.get(Co$1,null,{optional:true}),s=t.get(Vt$1);return i!==null?(o=KS(i.view,s,e),r instanceof Pa$1&&r._lView===i.view&&(r=null)):o=QS(e,t.get(lc$1),s),o.injector=t,r!==null&&(o.onDestroyFns=[r.onDestroy(()=>o.destroy())]),new ja$1(o)}var Xm=m(l({},Nl$1),{cleanupFns:void 0,zone:null,onDestroyFns:null,run(){let e=wi$1(false);try{Al$1(this);}finally{wi$1(e);}},cleanup(){if(!this.cleanupFns?.length)return;let e=_$1(null);try{for(;this.cleanupFns.length;)this.cleanupFns.pop()();}finally{this.cleanupFns=[],_$1(e);}}}),YS=m(l({},Xm),{consumerMarkedDirty(){this.scheduler.schedule(this),this.notifier.notify(12);},destroy(){if(xn$1(this),this.onDestroyFns!==null)for(let e of this.onDestroyFns)e();this.cleanup(),this.scheduler.remove(this);}}),ZS=m(l({},Xm),{consumerMarkedDirty(){this.view[R$1]|=8192,Mr$1(this.view),this.notifier.notify(13);},destroy(){if(xn$1(this),this.onDestroyFns!==null)for(let e of this.onDestroyFns)e();this.cleanup(),this.view[Fn$1]?.delete(this);}});function KS(e,n,t){let r=Object.create(ZS);return r.view=e,r.zone=typeof Zone<"u"?Zone.current:null,r.notifier=n,r.fn=Jm(r,t),e[Fn$1]??=new Set,e[Fn$1].add(r),r.consumerMarkedDirty(r),r}function QS(e,n,t){let r=Object.create(YS);return r.fn=Jm(r,e),r.scheduler=n,r.notifier=t,r.zone=typeof Zone<"u"?Zone.current:null,r.scheduler.add(r),r.notifier.notify(12),r}function Jm(e,n){return ()=>{n(t=>(e.cleanupFns??=[]).push(t));}}function Bi$1(e){return typeof e=="function"&&e[ie$1]!==void 0}function dc$1(e){return Bi$1(e)&&typeof e.set=="function"}var Hi$1=(()=>{class e{internalPendingTasks=g(fn$1);scheduler=g(Vt$1);errorHandler=g(et$1);add(){let t=this.internalPendingTasks.add();return ()=>{this.internalPendingTasks.has(t)&&(this.scheduler.notify(11),this.internalPendingTasks.remove(t));}}run(t){let r=this.add();try{t().catch(this.errorHandler).finally(r);}catch(o){this.errorHandler(o),r();}}static \u0275prov=b({token:e,providedIn:"root",factory:()=>new e})}return e})();function ts$1(e){return {toString:e}.toString()}var B=(function(e){return e[e.TemplateCreateStart=0]="TemplateCreateStart",e[e.TemplateCreateEnd=1]="TemplateCreateEnd",e[e.TemplateUpdateStart=2]="TemplateUpdateStart",e[e.TemplateUpdateEnd=3]="TemplateUpdateEnd",e[e.LifecycleHookStart=4]="LifecycleHookStart",e[e.LifecycleHookEnd=5]="LifecycleHookEnd",e[e.OutputStart=6]="OutputStart",e[e.OutputEnd=7]="OutputEnd",e[e.BootstrapApplicationStart=8]="BootstrapApplicationStart",e[e.BootstrapApplicationEnd=9]="BootstrapApplicationEnd",e[e.BootstrapComponentStart=10]="BootstrapComponentStart",e[e.BootstrapComponentEnd=11]="BootstrapComponentEnd",e[e.ChangeDetectionStart=12]="ChangeDetectionStart",e[e.ChangeDetectionEnd=13]="ChangeDetectionEnd",e[e.ChangeDetectionSyncStart=14]="ChangeDetectionSyncStart",e[e.ChangeDetectionSyncEnd=15]="ChangeDetectionSyncEnd",e[e.AfterRenderHooksStart=16]="AfterRenderHooksStart",e[e.AfterRenderHooksEnd=17]="AfterRenderHooksEnd",e[e.ComponentStart=18]="ComponentStart",e[e.ComponentEnd=19]="ComponentEnd",e[e.DeferBlockStateStart=20]="DeferBlockStateStart",e[e.DeferBlockStateEnd=21]="DeferBlockStateEnd",e[e.DynamicComponentStart=22]="DynamicComponentStart",e[e.DynamicComponentEnd=23]="DynamicComponentEnd",e[e.HostBindingsUpdateStart=24]="HostBindingsUpdateStart",e[e.HostBindingsUpdateEnd=25]="HostBindingsUpdateEnd",e})(B||{}),Ic$1=class Ic{previousValue;currentValue;firstChange;constructor(n,t,r){this.previousValue=n,this.currentValue=t,this.firstChange=r;}isFirstChange(){return this.firstChange}};function Zy(e,n,t,r){n!==null?n.applyValueToInputSignal(n,r):e[t]=r;}var Ky=null,Yt$1=(()=>{Ky=ey;let e=()=>ey;return e.ngInherit=true,e})();function ab(){return Ky}function ey(e){return e.type.prototype.ngOnChanges&&(e.setInput=ub),cb}function cb(){let e=Qy(this),n=e?.current;if(n){let t=e.previous;if(t===Un$1)e.previous=n;else for(let r in n)t[r]=n[r];e.current=null,this.ngOnChanges(n);}}function ub(e,n,t,r,o){let i=this.declaredInputs[r],s=Qy(e)||lb(e,{previous:Un$1,current:null}),a=s.current||(s.current={}),c=s.previous,u=c[i];a[i]=new Ic$1(u&&u.currentValue,t,c===Un$1),Zy(e,n,o,t);}var ef="__ngSimpleChanges__";function Qy(e){return Object.hasOwn(e,ef)&&e[ef]||null}function lb(e,n){return e[ef]=n}var ty=[];var W$1=function(e,n=null,t){for(let r=0;r=r)break}else n[c]<0&&(e[Sr$1]+=65536),(a>14>16&&(e[R$1]&3)===n&&(e[R$1]+=16384,ny(a,i)):ny(a,i);}var bo$1=-1,xr$1=class xr{factory;name;injectImpl;resolving=false;canSeeViewProviders;multi;componentProviders;index;providerFactory;constructor(n,t,r,o){this.factory=n,this.name=o,this.canSeeViewProviders=t,this.injectImpl=r;}};function pb(e){return (e.flags&8)!==0}function hb(e){return (e.flags&16)!==0}function gb(e,n,t){let r=0;for(;rn){s=i-1;break}}}for(;i>16}function Sc$1(e,n){let t=yb(e),r=n;for(;t>0;)r=r[Bn$1],t--;return r}var tf=true;function oy(e){let n=tf;return tf=e,n}var vb=256,nv=vb-1,rv=5,Eb=0,Wt$1={};function Db(e,n,t){let r;typeof t=="string"?r=t.charCodeAt(0)||0:t.hasOwnProperty(Dr$1)&&(r=t[Dr$1]),r==null&&(r=t[Dr$1]=Eb++);let o=r&nv,i=1<>rv)]|=i;}function bc$1(e,n){let t=ov(e,n);if(t!==-1)return t;let r=n[N$1];r.firstCreatePass&&(e.injectorIndex=n.length,zd$1(r.data,e),zd$1(n,null),zd$1(r.blueprint,null));let o=Pf(e,n),i=e.injectorIndex;if(tv(o)){let s=Cc$1(o),a=Sc$1(o,n),c=a[N$1].data;for(let u=0;u<8;u++)n[i+u]=a[s+u]|c[s+u];}return n[i+8]=o,i}function zd$1(e,n){e.push(0,0,0,0,0,0,0,0,n);}function ov(e,n){return e.injectorIndex===-1||e.parent&&e.parent.injectorIndex===e.injectorIndex||n[e.injectorIndex+8]===null?-1:e.injectorIndex}function Pf(e,n){if(e.parent&&e.parent.injectorIndex!==-1)return e.parent.injectorIndex;let t=0,r=null,o=n;for(;o!==null;){if(r=uv(o),r===null)return bo$1;if(t++,o=o[Bn$1],r.injectorIndex!==-1)return r.injectorIndex|t<<16}return bo$1}function nf(e,n,t){Db(e,n,t);}function wb(e,n){if(n==="class")return e.classes;if(n==="style")return e.styles;let t=e.attrs;if(t){let r=t.length,o=0;for(;o>20,d=r?a:a+l,f=o?a+l:u;for(let p=d;p=c&&h.type===t)return p}if(o){let p=s[c];if(p&&Mt$1(p)&&p.type===t)return c}return null}function Wi$1(e,n,t,r,o){let i=e[t],s=n.data;if(i instanceof xr$1){let a=i;if(a.resolving)throw ld$1();let c=oy(a.canSeeViewProviders);a.resolving=true;s[t].type||s[t];let d=a.injectImpl?Xe$1(a.injectImpl):null;kd$1(e,r,0);try{i=e[t]=a.factory(void 0,o,s,e,r),n.firstCreatePass&&t>=r.directiveStart&&db(t,s[t],n);}finally{d!==null&&Xe$1(d),oy(c),a.resolving=false,Pd$1();}}return i}function Cb(e){if(typeof e=="string")return e.charCodeAt(0)||0;let n=e.hasOwnProperty(Dr$1)?e[Dr$1]:void 0;return typeof n=="number"?n>=0?n&nv:Sb:n}function iy(e,n,t){let r=1<>rv)]&r)}function sy(e,n){return !(e&2)&&!(e&1&&n)}var Wn$1=class Wn{_tNode;_lView;constructor(n,t){this._tNode=n,this._lView=t;}get(n,t,r){return av(this._tNode,this._lView,n,mr$1(r),t)}};function Sb(){return new Wn$1(ue$1(),T$1())}function Vc$1(e){return ts$1(()=>{let n=e.prototype.constructor,t=n[Di$1]||rf(n),r=Object.prototype,o=Object.getPrototypeOf(e.prototype).constructor;for(;o&&o!==r;){let i=o[Di$1]||rf(o);if(i&&i!==t)return i;o=Object.getPrototypeOf(o);}return i=>new i})}function rf(e){return rd$1(e)?()=>{let n=rf(ye$1(e));return n&&n()}:yr$1(e)}function bb(e,n,t,r,o){let i=e,s=n;for(;i!==null&&s!==null&&s[R$1]&2048&&!Do$1(s);){let a=cv(i,s,t,r|2,Wt$1);if(a!==Wt$1)return a;let c=i.parent;if(!c){let u=s[vd$1];if(u){let l=u.get(t,Wt$1,r&-5);if(l!==Wt$1)return l}c=uv(s),s=s[Bn$1];}i=c;}return o}function uv(e){let n=e[N$1],t=n.type;return t===2?n.declTNode:t===1?e[xe$1]:null}function ns$1(e){return wb(ue$1(),e)}function K$1(e){return {token:e.token,providedIn:e.autoProvided===false?null:"root",factory:e.factory,value:void 0}}function Tb(){return ko$1(ue$1(),T$1())}function ko$1(e,n){return new Rt$1(Ge$1(e,n))}var Rt$1=(()=>{class e{nativeElement;constructor(t){this.nativeElement=t;}static __NG_ELEMENT_ID__=Tb}return e})();function lv(e){return e instanceof Rt$1?e.nativeElement:e}function _b(){return this._results[Symbol.iterator]()}var Tc$1=class Tc{_emitDistinctChangesOnly;dirty=true;_onDirty=void 0;_results=[];_changesDetected=false;_changes=void 0;length=0;first=void 0;last=void 0;get changes(){return this._changes??=new Y$1}constructor(n=false){this._emitDistinctChangesOnly=n;}get(n){return this._results[n]}map(n){return this._results.map(n)}filter(n){return this._results.filter(n)}find(n){return this._results.find(n)}reduce(n,t){return this._results.reduce(n,t)}forEach(n){this._results.forEach(n);}some(n){return this._results.some(n)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(n,t){this.dirty=false;let r=fm(n);(this._changesDetected=!dm(this._results,r,t))&&(this._results=r,this.length=r.length,this.last=r[this.length-1],this.first=r[0]);}notifyOnChanges(){this._changes!==void 0&&(this._changesDetected||!this._emitDistinctChangesOnly)&&this._changes.next(this);}onDirty(n){this._onDirty=n;}setDirty(){this.dirty=true,this._onDirty?.();}destroy(){this._changes!==void 0&&(this._changes.complete(),this._changes.unsubscribe());}[Symbol.iterator]=_b};function dv(e){return (e.flags&128)===128}var Ff=(function(e){return e[e.OnPush=0]="OnPush",e[e.Eager=1]="Eager",e[e.Default=1]="Default",e})(Ff||{}),fv=new Map,Mb=0;function Nb(){return Mb++}function Ab(e){fv.set(e[_t$1],e);}function of(e){fv.delete(e[_t$1]);}var ay="__ngContext__";function Mo$1(e,n){ln$1(n)?(e[ay]=n[_t$1],Ab(n)):e[ay]=n;}function pv(e){return gv(e[vo$1])}function hv(e){return gv(e[ft$1])}function gv(e){for(;e!==null&&!ht$1(e);)e=e[ft$1];return e}var sf;function jf(e){sf=e;}function Uf(){if(sf!==void 0)return sf;if(typeof document<"u")return document;throw new w(210,false)}var mv="r";var yv="di";var Bf=new I$1(""),vv=false,Ev=new I$1("",{factory:()=>vv});var $c$1=new I$1("");var cy=new WeakMap;function Rb(e,n){if(e==null||typeof e!="object")return;let t=cy.get(e);t||(t=new WeakSet,cy.set(e,t)),t.add(n);}function zc$1(e){return (e.flags&32)===32}var Lb=()=>null;function Dv(e,n,t=false){return Lb()}function wv(e,n){let t=e.contentQueries;if(t!==null){let r=_$1(null);try{for(let o=0;oe,createScript:e=>e,createScriptURL:e=>e});}catch{}return fc$1}function Gc$1(e){return kb()?.createHTML(e)||e}var pc$1;function Iv(){if(pc$1===void 0&&(pc$1=null,lt$1.trustedTypes))try{pc$1=lt$1.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:e=>e,createScript:e=>e,createScriptURL:e=>e});}catch{}return pc$1}function uy(e){return Iv()?.createHTML(e)||e}function ly(e){return Iv()?.createScriptURL(e)||e}var pn$1=class pn{changingThisBreaksApplicationSecurity;constructor(n){this.changingThisBreaksApplicationSecurity=n;}toString(){return `SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${Ua$1})`}},cf=class extends pn$1{getTypeName(){return "HTML"}},uf=class extends pn$1{getTypeName(){return "Style"}},lf=class extends pn$1{getTypeName(){return "Script"}},df=class extends pn$1{getTypeName(){return "URL"}},ff=class extends pn$1{getTypeName(){return "ResourceURL"}};function Be$1(e){return e instanceof pn$1?e.changingThisBreaksApplicationSecurity:e}function Zt$1(e,n){let t=Cv(e);if(t!=null&&t!==n){if(t==="ResourceURL"&&n==="URL")return true;throw new Error(`Required a safe ${n}, got a ${t} (see ${Ua$1})`)}return t===n}function Cv(e){return e instanceof pn$1&&e.getTypeName()||null}function Vf(e){return new cf(e)}function $f(e){return new uf(e)}function zf(e){return new lf(e)}function Gf(e){return new df(e)}function Wf(e){return new ff(e)}function Pb(e){let n=new hf(e);return Fb()?new pf(n):n}var pf=class{inertDocumentHelper;constructor(n){this.inertDocumentHelper=n;}getInertBodyElement(n){n=""+n;try{let t=new window.DOMParser().parseFromString(Gc$1(n),"text/html").body;return t===null?this.inertDocumentHelper.getInertBodyElement(n):(t.firstChild?.remove(),t)}catch{return null}}},hf=class{defaultDoc;inertDocument;constructor(n){this.defaultDoc=n,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert");}getInertBodyElement(n){let t=this.inertDocument.createElement("template");return t.innerHTML=Gc$1(n),t}};function Fb(){try{return !!new window.DOMParser().parseFromString(Gc$1(""),"text/html")}catch{return false}}var jb=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function rs$1(e){return e=String(e),e.match(jb)?e:"unsafe:"+e}function gn$1(e){let n={};for(let t of e.split(","))n[t]=true;return n}function os$1(...e){let n={};for(let t of e)for(let r in t)t.hasOwnProperty(r)&&(n[r]=true);return n}var Sv=gn$1("area,br,col,hr,img,wbr"),bv=gn$1("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Tv=gn$1("rp,rt"),Ub=os$1(Tv,bv),Bb=os$1(bv,gn$1("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),Hb=os$1(Tv,gn$1("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),dy=os$1(Sv,Bb,Hb,Ub),_v=gn$1("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),Vb=gn$1("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),$b=gn$1("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext"),zb=os$1(_v,Vb,$b),Gb=gn$1("script,style,template"),gf=class{sanitizedSomething=false;buf=[];sanitizeChildren(n){let t=n.firstChild,r=true,o=[];for(;t;){if(t.nodeType===Node.ELEMENT_NODE?r=this.startElement(t):t.nodeType===Node.TEXT_NODE?this.chars(t.nodeValue):this.sanitizedSomething=true,r&&t.firstChild){o.push(t),t=Yb(t);continue}for(;t;){t.nodeType===Node.ELEMENT_NODE&&this.endElement(t);let i=qb(t);if(i){t=i;break}t=o.pop();}}return this.buf.join("")}startElement(n){let t=fy(n).toLowerCase();if(!dy.hasOwnProperty(t))return this.sanitizedSomething=true,!Gb.hasOwnProperty(t);this.buf.push("<"),this.buf.push(t);let r=n.attributes;for(let o=0;o"),true}endElement(n){let t=fy(n).toLowerCase();dy.hasOwnProperty(t)&&!Sv.hasOwnProperty(t)&&(this.buf.push(""));}chars(n){this.buf.push(py(n));}};function Wb(e,n){return (e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_CONTAINED_BY)!==Node.DOCUMENT_POSITION_CONTAINED_BY}function qb(e){let n=e.nextSibling;if(n&&e!==n.previousSibling)throw Mv(n);return n}function Yb(e){let n=e.firstChild;if(n&&Wb(e,n))throw Mv(n);return n}function fy(e){let n=e.nodeName;return typeof n=="string"?n:"FORM"}function Mv(e){return new Error(`Failed to sanitize html because the element is clobbered: ${e.outerHTML}`)}var Zb=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,Kb=/([^\#-~ |!])/g;function py(e){return e.replace(/&/g,"&").replace(Zb,function(n){let t=n.charCodeAt(0),r=n.charCodeAt(1);return "&#"+((t-55296)*1024+(r-56320)+65536)+";"}).replace(Kb,function(n){return "&#"+n.charCodeAt(0)+";"}).replace(//g,">")}var hc$1;function Wc$1(e,n){let t=null;try{hc$1=hc$1||Pb(e);let r=n?String(n):"";t=hc$1.getInertBodyElement(r);let o=5,i=r;do{if(o===0)throw new Error("Failed to sanitize html because the input is unstable");o--,r=i,i=t.innerHTML,t=hc$1.getInertBodyElement(r);}while(r!==i);let a=new gf().sanitizeChildren(hy(t)||t);return Gc$1(a)}finally{if(t){let r=hy(t)||t;for(;r.firstChild;)r.firstChild.remove();}}}function hy(e){return "content"in e&&Qb(e)?e.content:null}function Qb(e){return e.nodeType===Node.ELEMENT_NODE&&e.nodeName==="TEMPLATE"}var Xb=/^>|^->||--!>|)/g,eT="\u200B$1\u200B";function tT(e){return e.replace(Xb,n=>n.replace(Jb,eT))}function nT(e,n){return e.createText(n)}function rT(e,n,t){e.setValue(n,t);}function oT(e,n){return e.createComment(tT(n))}function Nv(e,n,t){return e.createElement(n,t)}function _c$1(e,n,t,r,o){e.insertBefore(n,t,r,o);}function Av(e,n,t){e.appendChild(n,t);}function gy(e,n,t,r,o){r!==null?_c$1(e,n,t,r,o):Av(e,n,t);}function Rv(e,n,t,r){e.removeChild(null,n,t,r);}function iT(e,n,t){e.setAttribute(n,"style",t);}function sT(e,n,t){t===""?e.removeAttribute(n,"class"):e.setAttribute(n,"class",t);}function xv(e,n,t){let{mergedAttrs:r,classes:o,styles:i}=t;r!==null&&gb(e,n,r),o!==null&&sT(e,n,o),i!==null&&iT(e,n,i);}var vt$1=(function(e){return e[e.NONE=0]="NONE",e[e.HTML=1]="HTML",e[e.STYLE=2]="STYLE",e[e.SCRIPT=3]="SCRIPT",e[e.URL=4]="URL",e[e.RESOURCE_URL=5]="RESOURCE_URL",e[e.ATTRIBUTE_NO_BINDING=6]="ATTRIBUTE_NO_BINDING",e})(vt$1||{});function aT(e){let n=Yf();return n?uy(n.sanitize(vt$1.HTML,e)||""):Zt$1(e,"HTML")?uy(Be$1(e)):Wc$1(Uf(),wr$1(e))}function Ov(e){let n=Yf();return n?n.sanitize(vt$1.URL,e)||"":Zt$1(e,"URL")?Be$1(e):rs$1(wr$1(e))}function Lv(e){let n=Yf();if(n)return ly(n.sanitize(vt$1.RESOURCE_URL,e)||"");if(Zt$1(e,"ResourceURL"))return ly(Be$1(e));throw new w(904,false)}var cT={embed:{src:true},frame:{src:true},iframe:{src:true},media:{src:true},base:{href:true},link:{href:true},object:{data:true,codebase:true}};function uT(e,n){return cT[e.toLowerCase()]?.[n.toLowerCase()]===true?Lv:Ov}function qf(e,n,t){return uT(n,t)(e)}function Yf(){let e=T$1();return e&&e[Tt$1].sanitizer}function lT(e){return e instanceof Function?e():e}function dT(e,n,t){let r=e.length;for(;;){let o=e.indexOf(n,t);if(o===-1)return o;if(o===0||e.charCodeAt(o-1)<=32){let i=n.length;if(o+i===r||e.charCodeAt(o+i)<=32)return o}t=o+1;}}var kv="ng-template";function fT(e,n,t,r){let o=0;if(r){for(;o-1){let i;for(;++oi?d="":d=o[l+1].toLowerCase(),r&2&&u!==d){if(Nt$1(r))return false;s=true;}}}}return Nt$1(r)||s}function Nt$1(e){return (e&1)===0}function gT(e,n,t,r){if(n===null)return -1;let o=0;if(r||!t){let i=false;for(;o-1)for(t++;t0?'="'+a+'"':"")+"]";}else r&8?o+="."+s:r&4&&(o+=" "+s);else o!==""&&!Nt$1(s)&&(n+=my(i,o),o=""),r=s,i=i||!Nt$1(r);t++;}return o!==""&&(n+=my(i,o)),n}function wT(e){return e.map(DT).join(",")}function IT(e){let n=[],t=[],r=1,o=2;for(;rfalse});var ST=false,is$1=typeof document<"u"&&typeof document?.documentElement?.getAnimations=="function";function jv(e){return e[Oe$1].get(Fv,ST)}function bT(e,n,t){let r=No$1.get(e);if(r){for(let o of n)r.classList.push(o);for(let o of t)r.cleanupFns.push(o);}else No$1.set(e,{classList:n,cleanupFns:t});}function Qf(e){let n=No$1.get(e);if(n){for(let t of n.cleanupFns)t();No$1.delete(e);}Rr$1.delete(e);}var No$1=new WeakMap,Rr$1=new WeakMap,qi$1=new WeakMap;function Uv(e){return e?e[Bn$1]??e:null}var $i$1=new WeakSet;function yy(e,n){let t=qi$1.get(e);if(t&&t.length>0){let r=t.findIndex(o=>o.el===n);r>-1&&t.splice(r,1);}t?.length===0&&qi$1.delete(e);}function TT(e,n,t){let r=qi$1.get(e);if(!r||r.length===0)return;let o=n.parentNode,i=n.previousSibling,s=Uv(t);for(let a=r.length-1;a>=0;a--){let{el:c,declarationView:u}=r[a],l=c.parentNode;c===n?(r.splice(a,1),$i$1.add(c),c.dispatchEvent(new CustomEvent("animationend",{detail:{cancel:true}}))):i&&c===i?(r.splice(a,1),c.dispatchEvent(new CustomEvent("animationend",{detail:{cancel:true}})),c.parentNode?.removeChild(c)):l&&o&&l!==o&&(s===null||u===null||s===u)&&(r.splice(a,1),c.dispatchEvent(new CustomEvent("animationend",{detail:{cancel:true}})),c.parentNode?.removeChild(c));}}function Bv(e,n,t){let r=Uv(t),o=qi$1.get(e);o?o.some(i=>i.el===n)||o.push({el:n,declarationView:r}):qi$1.set(e,[{el:n,declarationView:r}]);}function vy(e){let n=e[pt$1]??={};return n.enter??=new Map}function qc$1(e){let n=e[pt$1]??={};return n.leave??=new Map}function Hv(e){let n=typeof e=="function"?e():e,t=Array.isArray(n)?n:null;return typeof n=="string"&&(t=n.trim().split(/\s+/).filter(r=>r)),t}function _T(e,n){if(!is$1)return;let t=No$1.get(e);if(t&&t.classList.length>0&&MT(e,t.classList))for(let r of t.classList)n.removeClass(e,r);Qf(e);}function MT(e,n){for(let t of n)if(e.classList.contains(t))return true;return false}function Yi$1(e){return e.composedPath?e.composedPath()[0]:e.target}function Xf(e,n){let t=Rr$1.get(n);return t===void 0?true:n===Yi$1(e)&&(t.animationName!==void 0&&e.animationName===t.animationName||t.propertyName!==void 0&&(t.propertyName==="all"||e.propertyName===t.propertyName))}function Vv(e,n,t){let r=e.get(n.index)??{animateFns:[]};r.animateFns.push(t),e.set(n.index,r);}function Ey(e,n){if(e)for(let t of e)t();for(let t of n)t();}function Dy(e,n){let t=qc$1(e).get(n.index);t&&(t.resolvers=void 0);}function Mc$1(e){if(!e)return 0;let n=e.toLowerCase().indexOf("ms")>-1?1:1e3;return parseFloat(e)*n}function Ar$1(e,n){return e.getPropertyValue(n).split(",").map(r=>r.trim())}function NT(e){let n=Ar$1(e,"transition-property"),t=Ar$1(e,"transition-duration"),r=Ar$1(e,"transition-delay"),o={propertyName:"",duration:0,animationName:void 0};for(let i=0;io.duration&&(o.propertyName=n[i],o.duration=s);}return o}function AT(e){let n=Ar$1(e,"animation-name"),t=Ar$1(e,"animation-delay"),r=Ar$1(e,"animation-duration"),o=Ar$1(e,"animation-iteration-count"),i={animationName:"",propertyName:void 0,duration:0};for(let s=0;si.duration&&c!=="infinite"&&(i.animationName=n[s],i.duration=a);}return i}function $v(e,n){return e!==void 0&&e.duration>n.duration}function zv(e){return (e.animationName!=null||e.propertyName!=null)&&e.duration>0}function RT(e,n){let t=getComputedStyle(e),r=AT(t),o=NT(t),i=r.duration>o.duration?r:o;$v(n.get(e),i)||zv(i)&&n.set(e,i);}function Gv(e,n,t){if(!t)return;let r=e.getAnimations();return r.length===0?RT(e,n):xT(e,n,r)}function xT(e,n,t){let r={animationName:void 0,propertyName:void 0,duration:0};for(let o of t){let i=o.effect?.getTiming();if(i?.iterations===1/0)continue;let s=typeof i?.duration=="number"?i.duration:0,a=(i?.delay??0)+s,c=o.playbackRate;c!==void 0&&c!==0&&c!==1&&(a/=Math.abs(c));let u,l;o.animationName?l=o.animationName:u=o.transitionProperty,a>=r.duration&&(r={animationName:l,propertyName:u,duration:a});}$v(n.get(e),r)||zv(r)&&n.set(e,r);}var hn$1=new Set,Yc$1=(function(e){return e[e.CHANGE_DETECTION=0]="CHANGE_DETECTION",e[e.AFTER_NEXT_RENDER=1]="AFTER_NEXT_RENDER",e})(Yc$1||{}),Kt$1=new I$1(""),wy=new Set;function qe$1(e){wy.has(e)||(wy.add(e),performance?.mark?.("mark_feature_usage",{detail:{feature:e}}));}var Zc$1=(()=>{class e{impl=null;execute(){this.impl?.execute();}static \u0275prov=b({token:e,providedIn:"root",factory:()=>new e})}return e})(),Jf=[0,1,2,3],ep=(()=>{class e{ngZone=g(de$1);scheduler=g(Vt$1);errorHandler=g(ct$1,{optional:true});sequences=new Set;deferredRegistrations=new Set;executing=false;constructor(){g(Kt$1,{optional:true});}execute(){let t=this.sequences.size>0;t&&W$1(B.AfterRenderHooksStart),this.executing=true;for(let r of Jf)for(let o of this.sequences)if(!(o.erroredOrDestroyed||!o.hooks[r]))try{o.pipelinedValue=this.ngZone.runOutsideAngular(()=>this.maybeTrace(()=>{let i=o.hooks[r];return i(o.pipelinedValue)},o.snapshot));}catch(i){o.erroredOrDestroyed=true,this.errorHandler?.handleError(i);}this.executing=false;for(let r of this.sequences)r.afterRun(),r.once&&(this.sequences.delete(r),r.destroy());for(let r of this.deferredRegistrations)this.sequences.add(r);this.deferredRegistrations.size>0&&this.scheduler.notify(7),this.deferredRegistrations.clear(),t&&W$1(B.AfterRenderHooksEnd);}register(t){let{view:r}=t;r!==void 0?((r[br$1]??=[]).push(t),Mr$1(r),r[R$1]|=8192):this.executing?this.deferredRegistrations.add(t):this.addSequence(t);}addSequence(t){this.sequences.add(t),this.scheduler.notify(7);}unregister(t){this.executing&&this.sequences.has(t)?(t.erroredOrDestroyed=true,t.pipelinedValue=void 0,t.once=true):(this.sequences.delete(t),this.deferredRegistrations.delete(t));}maybeTrace(t,r){return r?r.run(Yc$1.AFTER_NEXT_RENDER,t):t()}static \u0275prov=b({token:e,providedIn:"root",factory:()=>new e})}return e})(),Zi$1=class Zi{impl;hooks;view;once;snapshot;erroredOrDestroyed=false;pipelinedValue=void 0;unregisterOnDestroy;constructor(n,t,r,o,i,s=null){this.impl=n,this.hooks=t,this.view=r,this.once=o,this.snapshot=s,this.unregisterOnDestroy=i?.onDestroy(()=>this.destroy());}afterRun(){this.erroredOrDestroyed=false,this.pipelinedValue=void 0,this.snapshot?.dispose(),this.snapshot=null;}destroy(){this.impl.unregister(this),this.unregisterOnDestroy?.();let n=this.view?.[br$1];n&&(this.view[br$1]=n.filter(t=>t!==this));}};function ss$1(e,n){let t=n?.injector??g(Ie$1);return qe$1("NgAfterNextRender"),LT(e,t,n,true)}function OT(e){return e instanceof Function?[void 0,void 0,e,void 0]:[e.earlyRead,e.write,e.mixedReadWrite,e.read]}function LT(e,n,t,r){let o=n.get(Zc$1);o.impl??=n.get(ep);let i=n.get(Kt$1,null,{optional:true}),s=t?.manualCleanup!==true?n.get(_e$1):null,a=n.get(Co$1,null,{optional:true}),c=new Zi$1(o.impl,OT(e),a?.view,r,s,i?.snapshot(null));return o.impl.register(c),c}var as$1=new I$1("",{factory:()=>{let e=g(ne$1),n=new Set;return e.onDestroy(()=>n.clear()),{queue:n,isScheduled:false,scheduler:null,injector:e}}});function Wv(e,n,t){let r=e.get(as$1);if(Array.isArray(n))for(let o of n)r.queue.add(o),t?.detachedLeaveAnimationFns?.push(o);else r.queue.add(n),t?.detachedLeaveAnimationFns?.push(n);r.scheduler&&r.scheduler(e);}function kT(e,n){let t=e.get(as$1);if(Array.isArray(n))for(let r of n)t.queue.delete(r);else t.queue.delete(n);}function PT(e,n){let t=e.get(as$1);if(n.detachedLeaveAnimationFns){for(let r of n.detachedLeaveAnimationFns)t.queue.delete(r);n.detachedLeaveAnimationFns=void 0;}}function FT(e){let n=e.get(as$1);n.isScheduled||(ss$1(()=>{n.isScheduled=false;for(let t of n.queue)t();n.queue.clear();},{injector:n.injector}),n.isScheduled=true);}function qv(e){let n=e.get(as$1);n.scheduler=FT,n.scheduler(e);}function Yv(e,n){for(let[t,r]of n)Wv(e,r.animateFns);}function Iy(e,n,t,r){let o=e?.[pt$1]?.enter;n!==null&&o&&o.has(t.index)&&Yv(r,o);}function Cy(e,n,t,r){try{t.get(Mi$1);}catch{return r(false)}let o=e?.[pt$1];o?.enter?.has(n.index)&&kT(t,o.enter.get(n.index).animateFns);let i=jT(e,n,o);if(i.size===0){let s=false;if(e){let a=[];Kc$1(e,n,a),s=a.length>0;}if(!s)return r(false)}e&&hn$1.add(e[_t$1]),Wv(t,()=>UT(e,n,o||void 0,i,r),o||void 0);}function jT(e,n,t){let r=new Map,o=t?.leave;if(o&&o.has(n.index)&&r.set(n.index,o.get(n.index)),e&&o)for(let[i,s]of o){if(r.has(i))continue;let c=e[N$1].data[i].parent;for(;c;){if(c===n){r.set(i,s);break}c=c.parent;}}return r}function UT(e,n,t,r,o){let i=[];if(t&&t.leave)for(let[s]of r){if(!t.leave.has(s))continue;let a=t.leave.get(s);for(let c of a.animateFns){let{promise:u}=c();i.push(u);}t.detachedLeaveAnimationFns=void 0;}if(e&&Kc$1(e,n,i),i.length>0){let s=t||e?.[pt$1];if(s){let a=s.running;a&&i.push(a),s.running=Promise.allSettled(i),HT(e,s.running,o);}else Promise.allSettled(i).then(()=>{e&&hn$1.delete(e[_t$1]),o(true);});}else e&&hn$1.delete(e[_t$1]),o(false);}function Kc$1(e,n,t){if(n.type&12){let o=e[n.index];if(ht$1(o))for(let i=re$1;i{e[pt$1]?.running===n&&(e[pt$1].running=void 0,hn$1.delete(e[_t$1])),t(true);});}function So$1(e,n,t,r,o,i,s,a){if(o!=null){let c,u=false;ht$1(o)?c=o:ln$1(o)&&(u=true,o=o[bt$1]);let l=gt$1(o);e===0&&r!==null?(Iy(a,r,i,t),s==null?Av(n,r,l):_c$1(n,r,l,s||null,true)):e===1&&r!==null?(Iy(a,r,i,t),_c$1(n,r,l,s||null,true),TT(i,l,a)):e===2?(a?.[pt$1]?.leave?.has(i.index)&&Bv(i,l,a),$i$1.delete(l),Cy(a,i,t,d=>{if($i$1.has(l)){$i$1.delete(l);return}Rv(n,l,u,d);})):e===3&&($i$1.delete(l),Cy(a,i,t,()=>{n.destroyNode(l);})),c!=null&&QT(n,e,t,c,i,r,s);}}function VT(e,n){Zv(e,n),n[bt$1]=null,n[xe$1]=null;}function $T(e,n,t,r,o,i){r[bt$1]=o,r[xe$1]=n,Xc$1(e,r,t,1,o,i);}function Zv(e,n){n[Tt$1].changeDetectionScheduler?.notify(9),Xc$1(e,n,n[z],2,null,null);}function zT(e){let n=e[vo$1];if(!n)return Gd$1(e[N$1],e);for(;n;){let t=null;if(ln$1(n))t=n[vo$1];else {let r=n[re$1];r&&(t=r);}if(!t){for(;n&&!n[ft$1]&&n!==e;)ln$1(n)&&Gd$1(n[N$1],n),n=n[ve$1];n===null&&(n=e),ln$1(n)&&Gd$1(n[N$1],n),t=n&&n[ft$1];}n=t;}}function tp(e,n){let t=e[Tr$1],r=t.indexOf(n);t.splice(r,1);}function Qc$1(e,n){if(_r$1(n))return;let t=n[z];t.destroyNode&&Xc$1(e,n,t,3,null,null),zT(n);}function Gd$1(e,n){if(_r$1(n))return;let t=_$1(null);try{n[R$1]&=-129,n[R$1]|=256,n[Je$1]&&xn$1(n[Je$1]),WT(e,n),GT(e,n),n[N$1].type===1&&n[z].destroy();let r=n[Hn$1];if(r!==null&&ht$1(n[ve$1])){r!==n[ve$1]&&tp(r,n);let o=n[zt$1];o!==null&&o.detachView(e);}of(n);}finally{_$1(t);}}function GT(e,n){let t=e.cleanup,r=n[yo$1];if(t!==null)for(let s=0;s=0?r[a]():r[-a].unsubscribe(),s+=2;}else {let a=r[t[s+1]];t[s].call(a);}r!==null&&(n[yo$1]=null);let o=n[cn$1];if(o!==null){n[cn$1]=null;for(let s=0;sae$1&&nE(e,n,ae$1,!1);let a=s?B.TemplateUpdateStart:B.TemplateCreateStart;W$1(a,o,t),t(r,o);}finally{Gn$1(i);let a=s?B.TemplateUpdateEnd:B.TemplateCreateEnd;W$1(a,o,t);}}function eu(e,n,t){c_(e,n,t),(t.flags&64)===64&&u_(e,n,t);}function cs$1(e,n,t=Ge$1){let r=n.localNames;if(r!==null){let o=n.index+1;for(let i=0;i=a&&p<=c){let h=n.data[p],m=d[f+1];Or$1(h,t[p],m,i),u=true;}else if(p>c)break}}return s!==null&&r.inputs.hasOwnProperty(o)&&(Or$1(r,t[s],o,i),u=true),u}function m_(e,n){let t=mt$1(n,e),r=t[N$1];y_(r,t);let o=t[bt$1];o!==null&&t[Cr$1]===null&&(t[Cr$1]=Dv(o,t[Oe$1])),W$1(B.ComponentStart);try{dp(r,t,t[ce$1]);}finally{W$1(B.ComponentEnd,t[ce$1]);}}function y_(e,n){for(let t=n.length;t{Mr$1(e.lView);},consumerOnSignalRead(){this.lView[Je$1]=this;}});function C_(e){let n=e[Je$1]??Object.create(S_);return n.lView=e,n}var S_=m(l({},An$1),{consumerIsAlwaysLive:true,kind:"template",consumerMarkedDirty:e=>{let n=un$1(e.lView);for(;n&&!uE(n[N$1]);)n=un$1(n);n&&Sd$1(n);},consumerOnSignalRead(){this.lView[Je$1]=this;}});function uE(e){return e.type!==2}function lE(e){if(e[Fn$1]===null)return;let n=true;for(;n;){let t=false;for(let r of e[Fn$1])r.dirty&&(t=true,r.zone===null||Zone.current===r.zone?r.run():r.zone.run(()=>r.run()));n=t&&!!(e[R$1]&8192);}}var b_=100;function dE(e,n=0){let r=e[Tt$1].rendererFactory;r.begin?.();try{T_(e,n);}finally{r.end?.();}}function T_(e,n){let t=Ld$1();try{wi$1(!0),yf(e,n);let r=0;for(;xi$1(e);){if(r===b_)throw new w(103,!1);r++,yf(e,1);}}finally{wi$1(t);}}function __(e,n,t,r){if(_r$1(n))return;let o=n[R$1],i=false,s=false;rc$1(n);let a=true,c=null,u=null;(uE(e)?(u=E_(n),c=on$1(u)):na$1()===null?(a=false,u=C_(n),c=on$1(u)):n[Je$1]&&(xn$1(n[Je$1]),n[Je$1]=null));try{Cd$1(n),Pm(e.bindingStartIndex),t!==null&&rE(e,n,t,2,r);let l=(o&3)===3;if(!i)if(l){let p=e.preOrderCheckHooks;p!==null&&mc$1(n,p,null);}else {let p=e.preOrderHooks;p!==null&&yc$1(n,p,0,null),$d$1(n,0);}if(s||M_(n),lE(n),fE(n,0),e.contentQueries!==null&&wv(e,n),!i)if(l){let p=e.contentCheckHooks;p!==null&&mc$1(n,p);}else {let p=e.contentHooks;p!==null&&yc$1(n,p,1),$d$1(n,1);}A_(e,n);let d=e.components;d!==null&&hE(n,d,0);let f=e.viewQuery;if(f!==null&&af(2,f,r),!i)if(l){let p=e.viewCheckHooks;p!==null&&mc$1(n,p);}else {let p=e.viewHooks;p!==null&&yc$1(n,p,2),$d$1(n,2);}if(e.firstUpdatePass===!0&&(e.firstUpdatePass=!1),n[Ya$1]){for(let p of n[Ya$1])p();n[Ya$1]=null;}i||(aE(n),n[R$1]&=-73);}catch(l){throw Mr$1(n),l}finally{u!==null&&(Rn$1(u,c),a&&w_(u)),oc$1();}}function fE(e,n){for(let t=pv(e);t!==null;t=hv(t))for(let r=re$1;r0&&(e[t-1][ft$1]=r[ft$1]);let i=Ti$1(e,re$1+n);VT(r[N$1],r);let s=i[zt$1];s!==null&&s.detachView(i[N$1]),r[ve$1]=null,r[ft$1]=null,r[R$1]&=-129;}return r}function R_(e,n,t,r){let o=re$1+r,i=t.length;r>0&&(t[o-1][ft$1]=n),r-1&&(Qi$1(n,r),Ti$1(t,r));}this._attachedToViewContainer=false;}Qc$1(this._lView[N$1],this._lView);}onDestroy(n){Xa$1(this._lView,n);}markForCheck(){fp(this._cdRefInjectingView||this._lView,4);}detach(){this._lView[R$1]&=-129;}reattach(){Qa$1(this._lView),this._lView[R$1]|=128;}detectChanges(){this._lView[R$1]|=1024,dE(this._lView);}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new w(902,false);this._attachedToViewContainer=true;}detachFromAppRef(){this._appRef=null;let n=Do$1(this._lView),t=this._lView[Hn$1];t!==null&&!n&&tp(t,this._lView),Zv(this._lView[N$1],this._lView);}attachToAppRef(n){if(this._attachedToViewContainer)throw new w(902,false);this._appRef=n;let t=Do$1(this._lView),r=this._lView[Hn$1];r!==null&&!t&&vE(r,this._lView),Qa$1(this._lView);}};var Lr$1=(()=>{class e{_declarationLView;_declarationTContainer;elementRef;static __NG_ELEMENT_ID__=x_;constructor(t,r,o){this._declarationLView=t,this._declarationTContainer=r,this.elementRef=o;}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(t,r){return this.createEmbeddedViewImpl(t,r)}createEmbeddedViewImpl(t,r,o){let i=us$1(this._declarationLView,this._declarationTContainer,t,{embeddedViewInjector:r,dehydratedView:o});return new qn$1(i)}}return e})();function x_(){return tu(ue$1(),T$1())}function tu(e,n){return e.type&4?new Lr$1(n,e,ko$1(e,n)):null}function Po$1(e,n,t,r,o){let i=e.data[n];if(i===null)i=O_(e,n,t,r,o),Fm()&&(i.flags|=32);else if(i.type&64){i.type=t,i.value=r,i.attrs=o;let s=Om();i.injectorIndex=s===null?-1:s.injectorIndex;}return wo$1(i,true),i}function O_(e,n,t,r,o){let i=Rd$1(),s=xd$1(),a=s?i:i&&i.parent,c=e.data[n]=k_(e,a,t,n,r,o);return L_(e,c,i,s),c}function L_(e,n,t,r){e.firstChild===null&&(e.firstChild=n),t!==null&&(r?t.child==null&&n.parent!==null&&(t.child=n):t.next===null&&(t.next=n,n.prev=t));}function k_(e,n,t,r,o,i){let s=n?n.injectorIndex:-1,a=0;return Md$1()&&(a|=128),{type:t,index:r,insertBeforeIndex:null,injectorIndex:s,directiveStart:-1,directiveEnd:-1,directiveStylingLast:-1,componentOffset:-1,controlDirectiveIndex:-1,customControlIndex:-1,propertyBindings:null,flags:a,providerIndexes:0,value:o,namespace:Fd$1(),attrs:i,mergedAttrs:null,localNames:null,initialInputs:null,inputs:null,hostDirectiveInputs:null,outputs:null,hostDirectiveOutputs:null,directiveToIndex:null,tView:null,next:null,prev:null,projectionNext:null,child:null,parent:n,projection:null,styles:null,stylesWithoutHost:null,residualStyles:void 0,classes:null,classesWithoutHost:null,residualClasses:void 0,classBindings:0,styleBindings:0}}function P_(e){let n=e[Ed$1]??[],r=e[ve$1][z],o=[];for(let i of n)i.data[yv]!==void 0?o.push(i):F_(i,r);e[Ed$1]=o;}function F_(e,n){let t=0,r=e.firstChild;if(r){let o=e.data[mv];for(;tnull,U_=()=>null;function Nc$1(e,n){return j_()}function EE(e,n,t){return U_()}var DE=class{},kr$1=class kr{},jr$1=(()=>{class e{destroyNode=null;static __NG_ELEMENT_ID__=()=>B_()}return e})();function B_(){let e=T$1(),n=ue$1(),t=mt$1(n.index,e);return (ln$1(t)?t:e)[z]}var wE=(()=>{class e{static \u0275prov=b({token:e,providedIn:"root",factory:()=>null})}return e})();function IE(e){return e.debugInfo?.className||e.type.name||null}var Ec$1={},Ac$1=class Ac{injector;parentInjector;constructor(n,t){this.injector=n,this.parentInjector=t;}get(n,t,r){let o=this.injector.get(n,Ec$1,r);return o!==Ec$1||t===Ec$1?o:this.parentInjector.get(n,t,r)}};function Ur$1(e,n,t){return e[n]=t}function nu(e,n){return e[n]}function We$1(e,n,t){if(t===He$1)return false;let r=e[n];return Object.is(r,t)?false:(e[n]=t,true)}function Ro$1(e,n,t,r){let o=We$1(e,n,t);return We$1(e,n+1,r)||o}function H_(e,n,t,r,o){let i=Ro$1(e,n,t,r);return We$1(e,n+2,o)||i}function ru(e,n,t,r,o,i){let s=Ro$1(e,n,t,r);return Ro$1(e,n+2,o,i)||s}function To$1(e,n,t){return function r(o){let i=r.__ngNativeEl__;i!==void 0&&Rb(o,i);let s=dn$1(e)?mt$1(e.index,n):n;fp(s,5);let a=n[ce$1],c=by(n,a,t,o),u=r.__ngNextListenerFn__;for(;u;)c=by(n,a,u,o)&&c,u=u.__ngNextListenerFn__;return c}}function by(e,n,t,r){let o=_$1(null);try{return W$1(B.OutputStart,n,t),t(r)!==!1}catch(i){return h_(e,i),false}finally{W$1(B.OutputEnd,n,t),_$1(o);}}function CE(e,n,t,r,o,i,s,a){let c=Eo$1(e),u=false,l=null;if(!r&&c&&(l=$_(n,t,i,e.index)),l!==null){let d=l.__ngLastListenerFn__||l;d.__ngNextListenerFn__=s,l.__ngLastListenerFn__=s,u=true;}else {let d=Ge$1(e,t),f=r?r(d):d;r||(a.__ngNativeEl__=d);let p=o.listen(f,i,a);if(!V_(i)){let h=r?m=>r(gt$1(m[e.index])):e.index;SE(h,n,t,i,a,p,false);}}return u}function V_(e){return e.startsWith("animation")||e.startsWith("transition")}function $_(e,n,t,r){let o=e.cleanup;if(o!=null)for(let i=0;ic?a[c]:null}typeof s=="string"&&(i+=2);}return null}function SE(e,n,t,r,o,i,s){let a=n.firstCreatePass?Td$1(n):null,c=bd$1(t),u=c.length;c.push(o,i),a&&a.push(r,e,u,(u+1)*(s?-1:1));}function Ty(e,n,t,r,o){let i=null,s=null,a=null,c=false,u=e.directiveToIndex.get(t.type);if(typeof u=="number"?i=u:[i,s,a]=u,s!==null&&a!==null&&e.hostDirectiveOutputs?.hasOwnProperty(r)){let l=e.hostDirectiveOutputs[r];for(let d=0;d=s&&f<=a)c=true,Rc$1(e,n,f,l[d+1],r,o);else if(f>a)break}}return t.outputs.hasOwnProperty(r)&&(c=true,Rc$1(e,n,i,r,r,o)),c}function Rc$1(e,n,t,r,o,i){let s=n[t],a=n[N$1],u=a.data[t].outputs[r],d=s[u].subscribe(i);SE(e.index,a,n,o,i,d,true);}function z_(){G_();}function G_(){let e=T$1(),n=X$1(),t=ue$1();if(n.firstCreatePass&&Y_(n,t),t.controlDirectiveIndex===-1)return;qe$1("NgSignalForms");let r=e[t.controlDirectiveIndex];n.data[t.controlDirectiveIndex].controlDef.create(r,new xc$1(e,n,t));}function W_(){q_();}function q_(){let e=T$1(),n=X$1(),t=Io$1();if(t.controlDirectiveIndex===-1)return;let r=n.data[t.controlDirectiveIndex].controlDef,o=e[t.controlDirectiveIndex];r.update(o,new xc$1(e,n,t));}var xc$1=class xc{lView;tView;tNode;hasPassThrough;constructor(n,t,r){this.lView=n,this.tView=t,this.tNode=r,this.hasPassThrough=!!(r.flags&4096);}get customControl(){return this.tNode.customControlIndex!==-1?this.lView[this.tNode.customControlIndex]:void 0}get nativeElement(){return Ge$1(this.tNode,this.lView)}get descriptor(){return `<${this.tNode.value}>`}listenToCustomControlOutput(n,t){let r=this.tView.data[this.tNode.customControlIndex];Ty(this.tNode,this.lView,r,n,To$1(this.tNode,this.lView,t));}listenToCustomControlModel(n){let t=this.tNode.flags&1024?"valueChange":"checkedChange",r=this.tView.data[this.tNode.customControlIndex];Ty(this.tNode,this.lView,r,t,To$1(this.tNode,this.lView,n));}listenToDom(n,t){CE(this.tNode,this.tView,this.lView,void 0,this.lView[z],n,t,To$1(this.tNode,this.lView,t));}setInputOnDirectives(n,t){let r=this.tNode.inputs?.[n],o=this.tNode.hostDirectiveInputs?.[n];if(!r&&!o)return false;let i=false;if(r)for(let s of r){if(s===this.tNode.controlDirectiveIndex)continue;let a=this.tView.data[s],c=this.lView[s];Or$1(a,c,n,t),i=true;}if(o)for(let s=0;s0;){let o=r.shift();if(typeof o!="function"){for(let s in o.inputs)t[o.inputs[s]]=true;let i=_y(o.directive);i!==null&&r.push(...i);continue}for(let i of o()){if(typeof i=="function")continue;if(i.inputs)for(let a=0;a1){n.flags|=4096;return}Z_(e,n);}function Z_(e,n){for(let t=n.directiveStart;t{let i=n.hostDirectiveInputs[r],s=n.hostDirectiveOutputs[r+"Change"];if(!i||!s)return false;for(let a=0;a=p&&c<=h)return n.flags|=o,n.customControlIndex=f,true}}}return false};if(t("value",1024)||t("checked",2048))return}}function My(e,n){return K_(e,n)&&Q_(e,n+"Change")}function K_(e,n){return n in e.inputs}function Q_(e,n){return n in e.outputs}var vf=Symbol("BINDING");var Br$1=new I$1("");function Oc$1(e,n,t){let r=t?e.styles:null,o=t?e.classes:null,i=0;if(n!==null)for(let s=0;s0&&(t.directiveToIndex=new Map);for(let f=0;f0;){let t=e[--n];if(typeof t=="number"&&t<0)return t}return 0}function i0(e,n,t){if(t){if(n.exportAs)for(let r=0;r{let[t,r,o]=e[n],i={propName:t,templateName:n,isSignal:(r&Jc$1.SignalBased)!==0};return o&&(i.transform=o),i})}function l0(e){return Object.keys(e).map(n=>({propName:e[n],templateName:n}))}function d0(e,n,t){let r=n instanceof ne$1?n:n?.injector;return r&&e.getStandaloneInjector!==null&&(r=e.getStandaloneInjector(r)||r),r?new Ac$1(t,r):t}function f0(e){let n=e.get(kr$1,null);if(n===null)throw new w(407,false);let t=e.get(wE,null),r=e.get(Vt$1,null),o=e.get(Kt$1,null,{optional:true});return {rendererFactory:n,sanitizer:t,changeDetectionScheduler:r,ngReflect:false,tracingService:o}}function p0(e,n){let t=ME(e);return Nv(n,t,t==="svg"?wd$1:t==="math"?Im:null)}function ME(e){return (e.selectors[0][0]||"div").toLowerCase()}var xo$1=class xo{componentDef;ngModule;selector;componentType;ngContentSelectors;isBoundToModule;cachedInputs=null;cachedOutputs=null;get inputs(){return this.cachedInputs??=u0(this.componentDef.inputs),this.cachedInputs}get outputs(){return this.cachedOutputs??=l0(this.componentDef.outputs),this.cachedOutputs}constructor(n,t){this.componentDef=n,this.ngModule=t,this.componentType=n.type,this.selector=wT(n.selectors),this.ngContentSelectors=n.ngContentSelectors??[],this.isBoundToModule=!!t;}create(n,t,r,o,i,s){W$1(B.DynamicComponentStart);let a=_$1(null);try{let c=this.componentDef,u=d0(c,o||this.ngModule,n),l=f0(u),d=l.tracingService;return d&&d.componentCreate?d.componentCreate(IE(c),()=>this.createComponentRef(l,u,t,r,i,s)):this.createComponentRef(l,u,t,r,i,s)}finally{_$1(a);}}createComponentRef(n,t,r,o,i,s){let a=this.componentDef,c=h0(o,a,s,i),u=n.rendererFactory.createRenderer(null,a),l=o?r_(u,o,a.encapsulation,t):p0(a,u),d=t.get(Br$1,null),f=g0(l,()=>t.get(G$1,null)??Uf());d&&d.addHost(f);let p=s?.some(xy)||i?.some(y=>typeof y!="function"&&y.bindings.some(xy)),h=ip(null,c,null,512|eE(a),null,null,n,u,t,null,Dv(l,t,true));d&&_E&&f instanceof ShadowRoot&&Xa$1(h,()=>{d.removeHost(f);}),h[ae$1]=l,rc$1(h);let m=null;try{let y=pp(ae$1,h,2,"#host",()=>c.directiveRegistry,!0,0);xv(u,l,y),Mo$1(l,h),eu(c,h,y),Hf(c,y,h),hp(c,y),r!==void 0&&y0(y,this.ngContentSelectors,r),m=mt$1(y.index,h),h[ce$1]=m[ce$1],dp(c,h,null);}catch(y){throw m!==null&&of(m),of(h),y}finally{W$1(B.DynamicComponentEnd),oc$1();}return new Lc$1(this.componentType,h,!!p)}};function h0(e,n,t,r){let o=e?["ng-version","22.0.4"]:IT(n.selectors[0]),i=null,s=null,a=0;if(t)for(let l of t)a+=l[vf].requiredVars,l.create&&(l.targetIdx=0,(i??=[]).push(l)),l.update&&(l.targetIdx=0,(s??=[]).push(l));if(r)for(let l=0;l{if(t&1&&e)for(let r of e)r.create();if(t&2&&n)for(let r of n)r.update();}}function xy(e){let n=e[vf].kind;return n==="input"||n==="twoWay"}var Lc$1=class Lc extends DE{_rootLView;_hasInputBindings;instance;hostView;changeDetectorRef;componentType;location;previousInputValues=null;_tNode;constructor(n,t,r){super(),this._rootLView=t,this._hasInputBindings=r,this._tNode=Za$1(t[N$1],ae$1),this.location=ko$1(this._tNode,t),this.instance=mt$1(this._tNode.index,t)[ce$1],this.hostView=this.changeDetectorRef=new qn$1(t,void 0),this.componentType=n;}setInput(n,t){this._hasInputBindings;let r=this._tNode;if(this.previousInputValues??=new Map,this.previousInputValues.has(n)&&Object.is(this.previousInputValues.get(n),t))return;let o=this._rootLView;lp(r,o[N$1],o,n,t);this.previousInputValues.set(n,t);let s=mt$1(r.index,o);fp(s,1);}get injector(){return new Wn$1(this._tNode,this._rootLView)}destroy(){this.hostView.destroy();}onDestroy(n){this.hostView.onDestroy(n);}};function y0(e,n,t){let r=e.projection=[];for(let o=0;o{class e{static __NG_ELEMENT_ID__=v0}return e})();function v0(){let e=ue$1();return NE(e,T$1())}var Ef=class e extends Yn$1{_lContainer;_hostTNode;_hostLView;constructor(n,t,r){super(),this._lContainer=n,this._hostTNode=t,this._hostLView=r;}get element(){return ko$1(this._hostTNode,this._hostLView)}get injector(){return new Wn$1(this._hostTNode,this._hostLView)}get parentInjector(){let n=Pf(this._hostTNode,this._hostLView);if(tv(n)){let t=Sc$1(n,this._hostLView),r=Cc$1(n),o=t[N$1].data[r+8];return new Wn$1(o,t)}else return new Wn$1(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1);}get(n){let t=Oy(this._lContainer);return t!==null&&t[n]||null}get length(){return this._lContainer.length-re$1}createEmbeddedView(n,t,r){let o,i;typeof r=="number"?o=r:r!=null&&(o=r.index,i=r.injector);let s=Nc$1(this._lContainer,n.ssrId),a=n.createEmbeddedViewImpl(t||{},i,s);return this.insertImpl(a,o,Ao$1(this._hostTNode,s)),a}createComponent(n,t,r,o,i,s,a){let c,u=t||{};c=u.index,r=u.injector,o=u.projectableNodes,i=u.environmentInjector||u.ngModuleRef,s=u.directives,a=u.bindings;let l=new xo$1(jn$1(n)),d=r||this.parentInjector;if(!i&&l.ngModule==null){let E=this.parentInjector.get(ne$1,null);E&&(i=E);}let f=jn$1(l.componentType??{}),p=Nc$1(this._lContainer,f?.id??null),h=null,m=l.create(d,o,h,i,s,a);return this.insertImpl(m.hostView,c,Ao$1(this._hostTNode,p)),m}insert(n,t){return this.insertImpl(n,t,true)}insertImpl(n,t,r){let o=n._lView;if(bm(o)){let a=this.indexOf(n);if(a!==-1)this.detach(a);else {let c=o[ve$1],u=new e(c,c[xe$1],c[ve$1]);u.detach(u.indexOf(n));}}let i=this._adjustIndex(t),s=this._lContainer;return ls$1(s,o,i,r),n.attachToViewContainerRef(),fd$1(Wd$1(s),i,n),n}move(n,t){return this.insert(n,t)}indexOf(n){let t=Oy(this._lContainer);return t!==null?t.indexOf(n):-1}remove(n){let t=this._adjustIndex(n,-1),r=Qi$1(this._lContainer,t);r&&(Ti$1(Wd$1(this._lContainer),t),Qc$1(r[N$1],r));}detach(n){let t=this._adjustIndex(n,-1),r=Qi$1(this._lContainer,t);return r&&Ti$1(Wd$1(this._lContainer),t)!=null?new qn$1(r):null}_adjustIndex(n,t=0){return n??this.length+t}};function Oy(e){return e[Ri$1]}function Wd$1(e){return e[Ri$1]||(e[Ri$1]=[])}function NE(e,n){let t,r=n[e.index];return ht$1(r)?t=r:(t=gE(r,n,null,e),n[e.index]=t,sp(n,t)),D0(t,n,e,r),new Ef(t,e,n)}function E0(e,n){let t=e[z],r=t.createComment(""),o=Ge$1(n,e),i=t.parentNode(o);return _c$1(t,i,r,t.nextSibling(o),false),r}var D0=C0;function C0(e,n,t,r){if(e[Vn$1])return;let o;t.type&8?o=gt$1(r):o=E0(n,t),e[Vn$1]=o;}var Df=class e{queryList;matches=null;constructor(n){this.queryList=n;}clone(){return new e(this.queryList)}setDirty(){this.queryList.setDirty();}},wf=class e{queries;constructor(n=[]){this.queries=n;}createEmbeddedView(n){let t=n.queries;if(t!==null){let r=n.contentQueries!==null?n.contentQueries[0]:t.length,o=[];for(let i=0;i0)r.push(s[a/2]);else {let u=i[a+1],l=n[-c];for(let d=re$1;dn.trim())}function OE(e,n,t){e.queries===null&&(e.queries=new If),e.queries.track(new Cf(n,t));}function A0(e,n){let t=e.contentQueries||(e.contentQueries=[]),r=t.length?t[t.length-1]:-1;n!==r&&t.push(e.queries.length-1,n);}function mp(e,n){return e.queries.getByIndex(n)}function LE(e,n){let t=e[N$1],r=mp(t,n);return r.crossesNgTemplate?Sf(t,e,n,[]):AE(t,e,r,n)}function kE(e,n,t){let r,o=pi$1(()=>{r._dirtyCounter();let i=R0(r,e);if(n&&i===void 0)throw new w(-951,false);return i});return r=o[ie$1],r._dirtyCounter=U$1(0),r._flatValue=void 0,o}function yp(e){return kE(true,false)}function vp(e){return kE(true,true)}function PE(e,n){let t=e[ie$1];t._lView=T$1(),t._queryIndex=n,t._queryList=gp(t._lView,n),t._queryList.onDirty(()=>t._dirtyCounter.update(r=>r+1));}function R0(e,n){let t=e._lView,r=e._queryIndex;if(t===void 0||r===void 0||t[R$1]&4)return n?void 0:Re$1;let o=gp(t,r),i=LE(t,r);return o.reset(i,lv),n?o.first:o._changesDetected||e._flatValue===void 0?e._flatValue=o.toArray():e._flatValue}function Fo$1(e){return !!e&&typeof e.then=="function"}function Ep(e){return !!e&&typeof e.subscribe=="function"}var Pr$1=class Pr{},ou=class{};var Pc$1=class Pc extends Pr$1{ngModuleType;_parent;_bootstrapComponents=[];_r3Injector;instance;destroyCbs=[];constructor(n,t,r,o=true){super(),this.ngModuleType=n,this._parent=t;let i=sm(n);this._bootstrapComponents=lT(i.bootstrap),this._r3Injector=jd$1(n,t,[{provide:Pr$1,useValue:this},...r],Si$1(n),new Set(["environment"])),o&&this.resolveInjectorInitializers();}resolveInjectorInitializers(){this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(this.ngModuleType);}get injector(){return this._r3Injector}destroy(){let n=this._r3Injector;!n.destroyed&&n.destroy(),this.destroyCbs.forEach(t=>t()),this.destroyCbs=null;}onDestroy(n){this.destroyCbs.push(n);}},Fc$1=class Fc extends ou{moduleType;constructor(n){super(),this.moduleType=n;}create(n){return new Pc$1(this.moduleType,n,[])}};var Xi$1=class Xi extends Pr$1{injector;instance=null;constructor(n){super();let t=new Er$1([...n.providers,{provide:Pr$1,useValue:this}],n.parent||Ai$1(),n.debugName,new Set(["environment"]));this.injector=t,n.runEnvironmentInitializers&&t.resolveInjectorInitializers();}destroy(){this.injector.destroy();}onDestroy(n){this.injector.onDestroy(n);}};function jo$1(e,n,t=null){return new Xi$1({providers:e,parent:n,debugName:t,runEnvironmentInitializers:true}).injector}var x0=(()=>{class e{_injector;cachedInjectors=new Map;constructor(t){this._injector=t;}getOrCreateStandaloneInjector(t){if(!t.standalone)return null;if(!this.cachedInjectors.has(t)){let r=hd$1(false,t.type),o=r.length>0?jo$1([r],this._injector,""):null;this.cachedInjectors.set(t,o);}return this.cachedInjectors.get(t)}ngOnDestroy(){try{for(let t of this.cachedInjectors.values())t!==null&&t.destroy();}finally{this.cachedInjectors.clear();}}static \u0275prov=b({token:e,providedIn:"environment",factory:()=>new e(M$1(ne$1))})}return e})();function Uo$1(e){return ts$1(()=>{let n=FE(e),t=m(l({},n),{decls:e.decls,vars:e.vars,template:e.template,consts:e.consts||null,ngContentSelectors:e.ngContentSelectors,onPush:e.changeDetection!==Ff.Eager,directiveDefs:null,pipeDefs:null,dependencies:n.standalone&&e.dependencies||null,getStandaloneInjector:n.standalone?o=>o.get(x0).getOrCreateStandaloneInjector(t):null,getExternalStyles:null,signals:e.signals??false,data:e.data||{},encapsulation:e.encapsulation||At$1.Emulated,styles:e.styles||Re$1,_:null,schemas:e.schemas||null,tView:null,id:""});n.standalone&&qe$1("NgStandalone"),jE(t);let r=e.dependencies;return t.directiveDefs=Ly(r,O0),t.pipeDefs=Ly(r,am),t.id=P0(t),t})}function O0(e){return jn$1(e)||$a$1(e)}function mn$1(e){return ts$1(()=>({type:e.type,bootstrap:e.bootstrap||Re$1,declarations:e.declarations||Re$1,imports:e.imports||Re$1,exports:e.exports||Re$1,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null}))}function L0(e,n){if(e==null)return Un$1;let t={};for(let r in e)if(e.hasOwnProperty(r)){let o=e[r],i,s,a,c;Array.isArray(o)?(a=o[0],i=o[1],s=o[2]??i,c=o[3]||null):(i=o,s=o,a=Jc$1.None,c=null),t[i]=[r,a,c],n[i]=s;}return t}function k0(e){if(e==null)return Un$1;let n={};for(let t in e)e.hasOwnProperty(t)&&(n[e[t]]=t);return n}function xt$1(e){return ts$1(()=>{let n=FE(e);return jE(n),n})}function Dp(e){return {type:e.type,name:e.name,factory:null,pure:e.pure!==false,standalone:e.standalone??true,onDestroy:e.type.prototype.ngOnDestroy||null}}function FE(e){let n={};return {type:e.type,providersResolver:null,viewProvidersResolver:null,factory:null,hostBindings:e.hostBindings||null,hostVars:e.hostVars||0,hostAttrs:e.hostAttrs||null,contentQueries:e.contentQueries||null,declaredInputs:n,inputConfig:e.inputs||Un$1,exportAs:e.exportAs||null,standalone:e.standalone??true,signals:e.signals===true,selectors:e.selectors||Re$1,viewQuery:e.viewQuery||null,features:e.features||null,setInput:null,resolveHostDirectives:null,hostDirectives:null,controlDef:null,signalFormsInputPresence:null,inputs:L0(e.inputs,n),outputs:k0(e.outputs),debugInfo:null}}function jE(e){e.features?.forEach(n=>n(e));}function Ly(e,n){return e?()=>{let t=typeof e=="function"?e():e,r=[];for(let o of t){let i=n(o);i!==null&&r.push(i);}return r}:null}function P0(e){let n=0,t=typeof e.consts=="function"?"":e.consts,r=[e.selectors,e.ngContentSelectors,e.hostVars,e.hostAttrs,t,e.vars,e.decls,e.encapsulation,e.standalone,e.signals,e.exportAs,JSON.stringify(e.inputs),JSON.stringify(e.outputs),Object.getOwnPropertyNames(e.type.prototype),!!e.contentQueries,!!e.viewQuery];for(let i of r.join("|"))n=Math.imul(31,n)+i.charCodeAt(0)<<0;return n+=2147483648,"c"+n}var wp=new I$1("");function Bo$1(e){return dt$1([{provide:wp,multi:true,useValue:e}])}var Ip=(()=>{class e{resolve;reject;initialized=false;done=false;donePromise=new Promise((t,r)=>{this.resolve=t,this.reject=r;});appInits=g(wp,{optional:true})??[];injector=g(Ie$1);constructor(){}runInitializers(){if(this.initialized)return;let t=[];for(let o of this.appInits){let i=Ee$1(this.injector,o);if(Fo$1(i))t.push(i);else if(Ep(i)){let s=new Promise((a,c)=>{i.subscribe({complete:a,error:c});});t.push(s);}}let r=()=>{this.done=true,this.resolve();};Promise.all(t).then(()=>{r();}).catch(o=>{this.reject(o);}),t.length===0&&r(),this.initialized=true;}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})();function F0(e){return n=>{n.controlDef={create:(t,r)=>{t?.\u0275ngControlCreate(r);},update:(t,r)=>{t?.\u0275ngControlUpdate?.(r);},passThroughInput:e};}}function j0(e){let n=t=>{let r=Array.isArray(e);t.hostDirectives===null?(t.resolveHostDirectives=U0,t.hostDirectives=r?e.map(bf):[e]):r?t.hostDirectives.unshift(...e.map(bf)):t.hostDirectives.unshift(e);};return n.ngInherit=true,n}function U0(e){let n=[],t=false,r=null,o=null;for(let i=0;i{B0(s.declaredInputs,i.inputs);}),[n,r,o]}function UE(e,n,t,r){if(e.hostDirectives!==null)for(let o of e.hostDirectives)if(typeof o=="function"){let i=o();for(let s of i)ky(bf(s),n,t,r);}else ky(o,n,t,r);}function ky(e,n,t,r){let o=$a$1(e.directive);if(UE(o,n,t,r),t.has(o)){let i=t.get(o);Py(i,e.inputs,"input"),Py(i,e.outputs,"output");}else r.includes(o)||(t.set(o,e),n.push(o));}function Py(e,n,t){let r=t==="input"?e.inputs:e.outputs;Object.keys(n).forEach(o=>{let i=n[o];(!r.hasOwnProperty(o)||r[o]===i)&&(r[o]=i);});}function bf(e){return typeof e=="function"?{directive:ye$1(e),inputs:{},outputs:{}}:{directive:ye$1(e.directive),inputs:Fy(e.inputs),outputs:Fy(e.outputs)}}function Fy(e){let n={};if(e!==void 0&&e.length>0)for(let t=0;t=0;r--){let o=e[r];o.hostVars=n+=o.hostVars,o.hostAttrs=_o$1(o.hostAttrs,t=_o$1(t,o.hostAttrs));}}function qd$1(e){return e===Un$1?{}:e===Re$1?[]:e}function z0(e,n){let t=e.viewQuery;t?e.viewQuery=(r,o)=>{n(r,o),t(r,o);}:e.viewQuery=n;}function G0(e,n){let t=e.contentQueries;t?e.contentQueries=(r,o,i)=>{n(r,o,i),t(r,o,i);}:e.contentQueries=n;}function W0(e,n){let t=e.hostBindings;t?e.hostBindings=(r,o)=>{n(r,o),t(r,o);}:e.hostBindings=n;}function HE(e,n,t,r,o,i,s,a){if(t.firstCreatePass){e.mergedAttrs=_o$1(e.mergedAttrs,e.attrs);let l=e.tView=op(2,e,o,i,s,t.directiveRegistry,t.pipeRegistry,null,t.schemas,t.consts,null);t.queries!==null&&(t.queries.template(t,e),l.queries=t.queries.embeddedTView(e));}a&&(e.flags|=a),wo$1(e,false);let c=Y0(t,n);ic$1()&&np(t,n,c,e),Mo$1(c,n);let u=gE(c,n,c,e);n[r+ae$1]=u,sp(n,u);}function q0(e,n,t,r,o,i,s,a,c,u,l){let d=t+ae$1,f;return n.firstCreatePass?(f=Po$1(n,d,4,s||null,a||null),bE(n,e,f,yt$1(n.consts,u),ap),Xy(n,f)):f=n.data[d],HE(f,e,n,t,r,o,i,c),Eo$1(f)&&eu(n,e,f),u!=null&&cs$1(e,f,l),f}function Ji$1(e,n,t,r,o,i,s,a,c,u,l){let d=t+ae$1,f;if(n.firstCreatePass){if(f=Po$1(n,d,4,s||null,a||null),u!=null){let p=yt$1(n.consts,u);f.localNames=[];for(let h=0;h{class e{log(t){console.log(t);}warn(t){console.warn(t);}static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"platform"})}return e})();var Cp=new I$1("");var Ho$1=new I$1("");function $E(){_l$1(()=>{let e="";throw new w(600,e)});}var K0=10;var Zn$1=(()=>{class e{_runningTick=false;_destroyed=false;_destroyListeners=[];_views=[];internalErrorHandler=g(et$1);afterRenderManager=g(Zc$1);zonelessEnabled=g(ji$1);rootEffectScheduler=g(lc$1);dirtyFlags=0;tracingSnapshot=null;allTestViews=new Set;autoDetectTestViews=new Set;includeAllTestViews=false;afterTick=new Y$1;get allViews(){return [...(this.includeAllTestViews?this.allTestViews:this.autoDetectTestViews).keys(),...this._views]}get destroyed(){return this._destroyed}componentTypes=[];components=[];internalPendingTask=g(fn$1);get isStable(){return this.internalPendingTask.hasPendingTasksObservable.pipe(Z$1(t=>!t))}constructor(){g(Kt$1,{optional:true});}whenStable(){let t;return new Promise(r=>{t=this.isStable.subscribe({next:o=>{o&&r();}});}).finally(()=>{t.unsubscribe();})}_injector=g(ne$1);_rendererFactory=null;get injector(){return this._injector}bootstrap(t,r){return this.bootstrapImpl(t,r)}bootstrapImpl(t,r,o=Ie$1.NULL){return this._injector.get(de$1).run(()=>{if(W$1(B.BootstrapComponentStart),!this._injector.get(Ip).done){let E="";throw new w(405,E)}let a=jn$1(t),c=this._injector.get(Pr$1),u=new xo$1(a,c);this.componentTypes.push(t);let{hostElement:l,directives:d,bindings:f}=Q0(r),p=l||u.selector,h=u.create(o,[],p,c.injector,d,f),m=h.location.nativeElement,y=h.injector.get(Cp,null);return y?.registerApplication(m),h.onDestroy(()=>{this.detachView(h.hostView),Gi$1(this.components,h),y?.unregisterApplication(m);}),this._loadComponent(h),W$1(B.BootstrapComponentEnd,h),h})}tick(){this.zonelessEnabled||(this.dirtyFlags|=1),this._tick();}_tick(){W$1(B.ChangeDetectionStart),this.tracingSnapshot!==null?this.tracingSnapshot.run(Yc$1.CHANGE_DETECTION,this.tickImpl):this.tickImpl();}tickImpl=()=>{if(this._runningTick)throw W$1(B.ChangeDetectionEnd),new w(101,false);let t=_$1(null);try{this._runningTick=!0,this.synchronize();}finally{this._runningTick=false,this.tracingSnapshot?.dispose(),this.tracingSnapshot=null,_$1(t),this.afterTick.next(),W$1(B.ChangeDetectionEnd);}};synchronize(){this._rendererFactory===null&&!this._injector.destroyed&&(this._rendererFactory=this._injector.get(kr$1,null,{optional:true}));let t=0;for(;this.dirtyFlags!==0&&t++xi$1(t))){this.dirtyFlags|=2;return}else this.dirtyFlags&=-8;}attachView(t){let r=t;this._views.push(r),r.attachToAppRef(this);}detachView(t){let r=t;Gi$1(this._views,r),r.detachFromAppRef();}_loadComponent(t){this.attachView(t.hostView);try{this.tick();}catch(o){this.internalErrorHandler(o);}this.components.push(t),this._injector.get(Ho$1,[]).forEach(o=>o(t));}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(t=>t()),this._views.slice().forEach(t=>t.destroy());}finally{this._destroyed=true,this._views=[],this._destroyListeners=[];}}onDestroy(t){return this._destroyListeners.push(t),()=>Gi$1(this._destroyListeners,t)}destroy(){if(this._destroyed)throw new w(406,false);let t=this._injector;t.destroy&&!t.destroyed&&t.destroy();}get viewCount(){return this._views.length}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})();function Q0(e){return e===void 0||typeof e=="string"||e instanceof Element?{hostElement:e}:e}function Gi$1(e,n){let t=e.indexOf(n);t>-1&&e.splice(t,1);}function su(e,n,t,r){let o=T$1(),i=zn$1();if(We$1(o,i,n)){X$1();let a=Io$1();d_(a,o,e,n,t,r);}return su}function Dc$1(e){if(qe$1("NgAnimateEnter"),!is$1)return Dc$1;let n=T$1();if(jv(n))return Dc$1;let t=ue$1(),r=n[Oe$1].get(de$1);return Vv(vy(n),t,()=>X0(n,t,e,r)),qv(n[Oe$1]),Yv(n[Oe$1],vy(n)),Dc$1}function X0(e,n,t,r){let o=Ge$1(n,e),i=e[z],s=Hv(t),a=[],c=false,u=d=>{if(Yi$1(d)!==o)return;let f=d instanceof AnimationEvent?"animationend":"transitionend";r.runOutsideAngular(()=>{i.listen(o,f,l);});},l=d=>{Yi$1(d)===o&&(Xf(d,o)&&(c=true),J0(d,o,i));};if(s&&s.length>0){r.runOutsideAngular(()=>{a.push(i.listen(o,"animationstart",u)),a.push(i.listen(o,"transitionstart",u));}),bT(o,s,a);for(let d of s)i.addClass(o,d);r.runOutsideAngular(()=>{requestAnimationFrame(()=>{if(!c&&(Gv(o,Rr$1,is$1),!Rr$1.has(o))){for(let d of s)i.removeClass(o,d);Qf(o);}});});}}function J0(e,n,t){let r=No$1.get(n);if(!(Yi$1(e)!==n||!r)&&Xf(e,n)){e.stopPropagation();for(let o of r.classList)t.removeClass(n,o);Qf(n);}}function wc$1(e){if(qe$1("NgAnimateLeave"),!is$1)return wc$1;let n=T$1();if(jv(n))return wc$1;let r=ue$1(),o=n[Oe$1].get(de$1);return Vv(qc$1(n),r,()=>eM(n,r,e,o)),qv(n[Oe$1]),wc$1}function eM(e,n,t,r){let{promise:o,resolve:i}=sc$1(),s=Ge$1(n,e),a=e[z];hn$1.add(e[_t$1]),(qc$1(e).get(n.index).resolvers??=[]).push(i);let c=Hv(t);return c&&c.length>0?tM(s,n,e,c,a,r):i(),{promise:o,resolve:i}}function tM(e,n,t,r,o,i){_T(e,o);let s=[],a=qc$1(t).get(n.index)?.resolvers,c,u=false,l=d=>{if(!(Yi$1(d)!==e&&d.type!=="animation-fallback")&&(d.type==="animation-fallback"||Xf(d,e))){if(u=true,c&&clearTimeout(c),d.type!=="animation-fallback"&&d.stopPropagation(),Rr$1.delete(e),yy(n,e),Array.isArray(n.projection))for(let p of r)o.removeClass(e,p);Ey(a,s),Dy(t,n);}};i.runOutsideAngular(()=>{s.push(o.listen(e,"animationend",l)),s.push(o.listen(e,"transitionend",l));}),Bv(n,e);for(let d of r)o.addClass(e,d);i.runOutsideAngular(()=>{requestAnimationFrame(()=>{if(u)return;Gv(e,Rr$1,is$1);let d=Rr$1.get(e);d?(c=setTimeout(()=>{l(new CustomEvent("animation-fallback"));},d.duration+50),s.push(()=>clearTimeout(c))):(yy(n,e),Ey(a,s),Dy(t,n));});});}var Tf=class{destroy(n){}updateValue(n,t){}swap(n,t){let r=Math.min(n,t),o=Math.max(n,t),i=this.detach(o);if(o-r>1){let s=this.detach(r);this.attach(r,i),this.attach(o,s);}else this.attach(r,i);}move(n,t){this.attach(t,this.detach(n));}};function Yd$1(e,n,t,r,o){return e===t&&Object.is(n,r)?1:Object.is(o(e,n),o(t,r))?-1:0}function nM(e,n,t,r){let o,i,s=0,a=e.length-1;if(Array.isArray(n)){_$1(r);let u=n.length-1;for(_$1(null);s<=a&&s<=u;){let l=e.at(s),d=n[s],f=Yd$1(s,l,s,d,t);if(f!==0){f<0&&e.updateValue(s,d),s++;continue}let p=e.at(a),h=n[u],m=Yd$1(a,p,u,h,t);if(m!==0){m<0&&e.updateValue(a,h),a--,u--;continue}let y=t(s,l),E=t(a,p),D=t(s,d);if(Object.is(D,E)){let S=t(u,h);Object.is(S,y)?(e.swap(s,a),e.updateValue(a,h),u--,a--):e.move(a,s),e.updateValue(s,d),s++;continue}if(o??=new jc$1,i??=Uy(e,s,a,t),_f(e,o,s,D))e.updateValue(s,d),s++,a++;else if(i.has(D))o.set(y,e.detach(s)),a--;else {let S=e.create(s,n[s]);e.attach(s,S),s++,a++;}}for(;s<=u;)jy(e,o,t,s,n[s]),s++;}else if(n!=null){_$1(r);let u=n[Symbol.iterator]();_$1(null);let l=u.next();for(;!l.done&&s<=a;){let d=e.at(s),f=l.value,p=Yd$1(s,d,s,f,t);if(p!==0)p<0&&e.updateValue(s,f),s++,l=u.next();else {o??=new jc$1,i??=Uy(e,s,a,t);let h=t(s,f);if(_f(e,o,s,h))e.updateValue(s,f),s++,a++,l=u.next();else if(!i.has(h))e.attach(s,e.create(s,f)),s++,a++,l=u.next();else {let m=t(s,d);o.set(m,e.detach(s)),a--;}}}for(;!l.done;)jy(e,o,t,e.length,l.value),l=u.next();}for(;s<=a;)e.destroy(e.detach(a--));o?.forEach(u=>{e.destroy(u);});}function _f(e,n,t,r){return n!==void 0&&n.has(r)?(e.attach(t,n.get(r)),n.delete(r),true):false}function jy(e,n,t,r,o){if(_f(e,n,r,t(r,o)))e.updateValue(r,o);else {let i=e.create(r,o);e.attach(r,i);}}function Uy(e,n,t,r){let o=new Set;for(let i=n;i<=t;i++)o.add(r(i,e.at(i)));return o}var jc$1=class jc{kvMap=new Map;_vMap=void 0;has(n){return this.kvMap.has(n)}delete(n){if(!this.has(n))return false;let t=this.kvMap.get(n);return this._vMap!==void 0&&this._vMap.has(t)?(this.kvMap.set(n,this._vMap.get(t)),this._vMap.delete(t)):this.kvMap.delete(n),true}get(n){return this.kvMap.get(n)}set(n,t){if(this.kvMap.has(n)){let r=this.kvMap.get(n);this._vMap===void 0&&(this._vMap=new Map);let o=this._vMap;for(;o.has(r);)r=o.get(r);o.set(r,t);}else this.kvMap.set(n,t);}forEach(n){for(let[t,r]of this.kvMap)if(n(r,t),this._vMap!==void 0){let o=this._vMap;for(;o.has(r);)r=o.get(r),n(r,t);}}};function rM(e,n,t,r,o,i,s,a){qe$1("NgControlFlow");let c=T$1(),u=X$1(),l=yt$1(u.consts,i);return Ji$1(c,u,e,n,t,r,o,l,256,s,a),Sp}function Sp(e,n,t,r,o,i,s,a){qe$1("NgControlFlow");let c=T$1(),u=X$1(),l=yt$1(u.consts,i);return Ji$1(c,u,e,n,t,r,o,l,512,s,a),Sp}function oM(e,n){qe$1("NgControlFlow");let t=T$1(),r=zn$1(),o=t[r]!==He$1?t[r]:-1,i=o!==-1?Uc$1(t,ae$1+o):void 0,s=0;if(We$1(t,r,e)){let a=_$1(null);try{if(i!==void 0&&yE(i,s),e!==-1){let c=ae$1+e,u=Uc$1(t,c),l=Rf(t[N$1],c),d=EE(u,l,t),f=us$1(t,l,n,{dehydratedView:d});ls$1(u,f,s,Ao$1(l,d));}}finally{_$1(a);}}else if(i!==void 0){let a=mE(i,s);a!==void 0&&(a[ce$1]=n);}}var Mf=class{lContainer;$implicit;$index;constructor(n,t,r){this.lContainer=n,this.$implicit=t,this.$index=r;}get $count(){return this.lContainer.length-re$1}};function iM(e){return e}function sM(e,n){return n}var Nf=class{hasEmptyBlock;trackByFn;liveCollection;constructor(n,t,r){this.hasEmptyBlock=n,this.trackByFn=t,this.liveCollection=r;}};function aM(e,n,t,r,o,i,s,a,c,u,l,d,f){qe$1("NgControlFlow");let p=T$1(),h=X$1(),m=c!==void 0,y=T$1(),E=a?s.bind(y[Ue$1][ce$1]):s,D=new Nf(m,E);y[ae$1+e]=D,Ji$1(p,h,e+1,n,t,r,o,yt$1(h.consts,i),256);}var Af=class extends Tf{lContainer;hostLView;templateTNode;operationsCounter=void 0;needsIndexUpdate=false;constructor(n,t,r){super(),this.lContainer=n,this.hostLView=t,this.templateTNode=r;}get length(){return this.lContainer.length-re$1}at(n){return this.getLView(n)[ce$1].$implicit}attach(n,t){let r=t[Cr$1];this.needsIndexUpdate||=n!==this.length,ls$1(this.lContainer,t,n,Ao$1(this.templateTNode,r)),uM(this.lContainer,n);}detach(n){return this.needsIndexUpdate||=n!==this.length-1,lM(this.lContainer,n),dM(this.lContainer,n)}create(n,t){let r=Nc$1(this.lContainer,this.templateTNode.tView.ssrId);return us$1(this.hostLView,this.templateTNode,new Mf(this.lContainer,t,n),{dehydratedView:r})}destroy(n){Qc$1(n[N$1],n);}updateValue(n,t){this.getLView(n)[ce$1].$implicit=t;}reset(){this.needsIndexUpdate=false;}updateIndexes(){if(this.needsIndexUpdate)for(let n=0;n0){let i=r[Oe$1];PT(i,o),hn$1.delete(r[_t$1]),o.detachedLeaveAnimationFns=void 0;}}function lM(e,n){if(e.length<=re$1)return;let t=re$1+n,r=e[t],o=r?r[pt$1]:void 0;o&&o.leave&&o.leave.size>0&&(o.detachedLeaveAnimationFns=[]);}function dM(e,n){return Qi$1(e,n)}function fM(e,n){return mE(e,n)}function Rf(e,n){return Za$1(e,n)}function zE(e,n,t){let r=T$1(),o=zn$1();if(We$1(r,o,n)){X$1();let s=Io$1();oE(s,r,e,n,r[z],t);}return zE}function xf(e,n,t,r,o){lp(n,e,t,o?"class":"style",r);}function Bc$1(e,n,t,r){let o=T$1(),i=o[N$1],s=e+ae$1,a=i.firstCreatePass?pp(s,o,2,n,ap,Ja$1(),t,r):i.data[s];if(dn$1(a)){let c=o[Tt$1].tracingService;if(c&&c.componentCreate){let u=i.data[a.directiveStart+a.componentOffset];return c.componentCreate(IE(u),()=>(By(e,n,o,a,r),Bc$1))}}return By(e,n,o,a,r),Bc$1}function By(e,n,t,r,o){if(cp(r,t,e,n,WE),Eo$1(r)){let i=t[N$1];eu(i,t,r),Hf(i,r,t);}o!=null&&cs$1(t,r);}function bp(){let e=X$1(),n=ue$1(),t=up(n);return e.firstCreatePass&&hp(e,t),Nd$1(t)&&Ad$1(),_d$1(),t.classesWithoutHost!=null&&pb(t)&&xf(e,t,T$1(),t.classesWithoutHost,true),t.stylesWithoutHost!=null&&hb(t)&&xf(e,t,T$1(),t.stylesWithoutHost,false),bp}function au(e,n,t,r){return Bc$1(e,n,t,r),bp(),au}function Tp(e,n,t,r){let o=T$1(),i=o[N$1],s=e+ae$1,a=i.firstCreatePass?a0(s,i,2,n,t,r):i.data[s];return cp(a,o,e,n,WE),r!=null&&cs$1(o,a),Tp}function _p(){let e=ue$1(),n=up(e);return Nd$1(n)&&Ad$1(),_d$1(),_p}function GE(e,n,t,r){return Tp(e,n,t,r),_p(),GE}var WE=(e,n,t,r,o)=>(Li$1(true),Nv(n[z],r,Fd$1()));function Mp(e,n,t){let r=T$1(),o=r[N$1],i=e+ae$1,s=o.firstCreatePass?pp(i,r,8,"ng-container",ap,Ja$1(),n,t):o.data[i];if(cp(s,r,e,"ng-container",pM),Eo$1(s)){let a=r[N$1];eu(a,r,s),Hf(a,s,r);}return t!=null&&cs$1(r,s),Mp}function Np(){let e=X$1(),n=ue$1(),t=up(n);return e.firstCreatePass&&hp(e,t),Np}function qE(e,n,t){return Mp(e,n,t),Np(),qE}var pM=(e,n,t,r,o)=>(Li$1(true),oT(n[z],""));function hM(){return T$1()}function YE(e,n,t){let r=T$1(),o=zn$1();if(We$1(r,o,n)){X$1();let s=Io$1();iE(s,r,e,n,r[z],t);}return YE}var Vi$1=void 0;function gM(e){let n=Math.floor(Math.abs(e)),t=e.toString().replace(/^[^.]*\.?/,"").length;return n===1&&t===0?1:5}var mM=["en",[["a","p"],["AM","PM"]],[["AM","PM"]],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],Vi$1,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],Vi$1,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm\u202Fa","h:mm:ss\u202Fa","h:mm:ss\u202Fa z","h:mm:ss\u202Fa zzzz"],["{1}, {0}",Vi$1,Vi$1,Vi$1],[".",",",";","%","+","-","E","\xD7","\u2030","\u221E","NaN",":"],["#,##0.###","#,##0%","\xA4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",gM],Zd$1=Object.create(null);function tt$1(e){let n=yM(e),t=Hy(n);if(t)return t;let r=n.split("-")[0];if(t=Hy(r),t)return t;if(r==="en")return mM;throw new w(701,false)}function Hy(e){if(!(e in Zd$1)){let n=lt$1.ng&<$1.ng.common&<$1.ng.common.locales&<$1.ng.common.locales[e];return n!==void 0&&(Zd$1[e]=n),n}return Zd$1[e]}var pe$1={LocaleId:0,DayPeriodsFormat:1,DayPeriodsStandalone:2,DaysFormat:3,DaysStandalone:4,MonthsFormat:5,MonthsStandalone:6,Eras:7,DateFormat:10,TimeFormat:11,DateTimeFormat:12,NumberSymbols:13,ExtraData:21};function yM(e){return e.toLowerCase().replace(/_/g,"-")}var fs$1="en-US";function ZE(e){typeof e=="string"&&(e.toLowerCase().replace(/_/g,"-"));}function cu(e,n,t){let r=T$1(),o=X$1(),i=ue$1();return KE(o,r,r[z],i,e,n,t),cu}function KE(e,n,t,r,o,i,s){let a=true,c=null;if((r.type&3||s)&&(c??=To$1(r,n,i),CE(r,e,n,s,t,o,i,c)&&(a=false)),a){let u=r.outputs?.[o],l=r.hostDirectiveOutputs?.[o];if(l&&l.length)for(let d=0;d>17&32767}function SM(e){return (e&2)==2}function bM(e,n){return e&131071|n<<17}function Of(e){return e|2}function Oo$1(e){return (e&131068)>>2}function Kd$1(e,n){return e&-131069|n<<2}function TM(e){return (e&1)===1}function Lf(e){return e|1}function _M(e,n,t,r,o,i){let s=i?n.classBindings:n.styleBindings,a=Fr$1(s),c=Oo$1(s);e[r]=t;let u=false,l;if(Array.isArray(t)){let d=t;l=d[1],(l===null||mo$1(d,l)>0)&&(u=true);}else l=t;if(o)if(c!==0){let f=Fr$1(e[a+1]);e[r+1]=gc$1(f,a),f!==0&&(e[f+1]=Kd$1(e[f+1],r)),e[a+1]=bM(e[a+1],r);}else e[r+1]=gc$1(a,0),a!==0&&(e[a+1]=Kd$1(e[a+1],r)),a=r;else e[r+1]=gc$1(c,0),a===0?a=r:e[c+1]=Kd$1(e[c+1],r),c=r;u&&(e[r+1]=Of(e[r+1])),Vy(e,l,r,true),Vy(e,l,r,false),MM(n,l,e,r,i),s=gc$1(a,c),i?n.classBindings=s:n.styleBindings=s;}function MM(e,n,t,r,o){let i=o?e.residualClasses:e.residualStyles;i!=null&&typeof n=="string"&&mo$1(i,n)>=0&&(t[r+1]=Lf(t[r+1]));}function Vy(e,n,t,r){let o=e[t+1],i=n===null,s=r?Fr$1(o):Oo$1(o),a=false;for(;s!==0&&(a===false||i);){let c=e[s],u=e[s+1];NM(c,n)&&(a=true,e[s+1]=r?Lf(u):Of(u)),s=r?Fr$1(u):Oo$1(u);}a&&(e[t+1]=r?Of(o):Lf(o));}function NM(e,n){return e===null||n==null||(Array.isArray(e)?e[1]:e)===n?true:Array.isArray(e)&&typeof n=="string"?mo$1(e,n)>=0:false}var De$1={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function JE(e){return e.substring(De$1.key,De$1.keyEnd)}function AM(e){return e.substring(De$1.value,De$1.valueEnd)}function RM(e){return nD(e),eD(e,Lo$1(e,0,De$1.textEnd))}function eD(e,n){let t=De$1.textEnd;return t===n?-1:(n=De$1.keyEnd=OM(e,De$1.key=n,t),Lo$1(e,n,t))}function xM(e){return nD(e),tD(e,Lo$1(e,0,De$1.textEnd))}function tD(e,n){let t=De$1.textEnd,r=De$1.key=Lo$1(e,n,t);return t===r?-1:(r=De$1.keyEnd=LM(e,r,t),r=$y(e,r,t),r=De$1.value=Lo$1(e,r,t),r=De$1.valueEnd=kM(e,r,t),$y(e,r,t))}function nD(e){De$1.key=0,De$1.keyEnd=0,De$1.value=0,De$1.valueEnd=0,De$1.textEnd=e.length;}function Lo$1(e,n,t){for(;n32;)n++;return n}function LM(e,n,t){let r;for(;n=65&&(r&-33)<=90||r>=48&&r<=57);)n++;return n}function $y(e,n,t,r){return n=Lo$1(e,n,t),n32&&(a=s),i=o,o=r,r=c&-33;}return a}function zy(e,n,t,r){let o=-1,i=t;for(;i=0;t=tD(n,t))cD(e,JE(n),AM(n));}function jM(e){iD(GM,UM,e,true);}function UM(e,n){for(let t=RM(n);t>=0;t=eD(n,t))_i$1(e,JE(n),true);}function oD(e,n,t,r){let o=T$1(),i=X$1(),s=ec$1(2);if(i.firstUpdatePass&&aD(i,e,s,r),n!==He$1&&We$1(o,s,n)){let a=i.data[Gt$1()];uD(i,a,o,o[z],e,o[s+1]=qM(n,t),r,s);}}function iD(e,n,t,r){let o=X$1(),i=ec$1(2);o.firstUpdatePass&&aD(o,null,i,r);let s=T$1();if(t!==He$1&&We$1(s,i,t)){let a=o.data[Gt$1()];if(lD(a,r)&&!sD(o,i)){let c=r?a.classesWithoutHost:a.stylesWithoutHost;c!==null&&(t=Ba$1(c,t||"")),xf(o,a,s,t,r);}else WM(o,a,s,s[z],s[i+1],s[i+1]=zM(e,n,t),r,i);}}function sD(e,n){return n>=e.expandoStartIndex}function aD(e,n,t,r){let o=e.data;if(o[t+1]===null){let i=o[Gt$1()],s=sD(e,t);lD(i,r)&&n===null&&!s&&(n=false),n=BM(o,i,n,r),_M(o,i,n,t,s,r);}}function BM(e,n,t,r){let o=Bm(e),i=r?n.residualClasses:n.residualStyles;if(o===null)(r?n.classBindings:n.styleBindings)===0&&(t=Qd$1(null,e,n,t,r),t=es$1(t,n.attrs,r),i=null);else {let s=n.directiveStylingLast;if(s===-1||e[s]!==o)if(t=Qd$1(o,e,n,t,r),i===null){let c=HM(e,n,r);c!==void 0&&Array.isArray(c)&&(c=Qd$1(null,e,n,c[1],r),c=es$1(c,n.attrs,r),VM(e,n,r,c));}else i=$M(e,n,r);}return i!==void 0&&(r?n.residualClasses=i:n.residualStyles=i),t}function HM(e,n,t){let r=t?n.classBindings:n.styleBindings;if(Oo$1(r)!==0)return e[Fr$1(r)]}function VM(e,n,t,r){let o=t?n.classBindings:n.styleBindings;e[Fr$1(o)]=r;}function $M(e,n,t){let r,o=n.directiveEnd;for(let i=1+n.directiveStylingLast;i0;){let c=e[o],u=Array.isArray(c),l=u?c[1]:c,d=l===null,f=t[o+1];f===He$1&&(f=d?Re$1:void 0);let p=d?qa$1(f,r):l===r?f:void 0;if(u&&!Hc$1(p)&&(p=qa$1(c,r)),Hc$1(p)&&(a=p,s))return a;let h=e[o+1];o=s?Fr$1(h):Oo$1(h);}if(n!==null){let c=i?n.residualClasses:n.residualStyles;c!=null&&(a=qa$1(c,r));}return a}function Hc$1(e){return e!==void 0}function qM(e,n){return e==null||e===""||(typeof n=="string"?e=e+n:typeof e=="object"&&(e=Si$1(Be$1(e)))),e}function lD(e,n){return (e.flags&(n?8:16))!==0}function YM(e,n=""){let t=T$1(),r=X$1(),o=e+ae$1,i=r.firstCreatePass?Po$1(r,o,1,n,null):r.data[o],s=ZM(r,t,i,n);t[o]=s,ic$1()&&np(r,t,s,i),wo$1(i,false);}var ZM=(e,n,t,r)=>(Li$1(true),nT(n[z],r));function dD(e,n,t,r=""){return We$1(e,zn$1(),t)?n+wr$1(t)+r:He$1}function KM(e,n,t,r,o,i=""){let s=km(),a=Ro$1(e,s,t,o);return ec$1(2),a?n+wr$1(t)+r+wr$1(o)+i:He$1}function fD(e){return xp("",e),fD}function xp(e,n,t){let r=T$1(),o=dD(r,e,n,t);return o!==He$1&&hD(r,Gt$1(),o),xp}function pD(e,n,t,r,o){let i=T$1(),s=KM(i,e,n,t,r,o);return s!==He$1&&hD(i,Gt$1(),s),pD}function hD(e,n,t){let r=Id$1(n,e);rT(e[z],r,t);}function gD(e,n,t){dc$1(n)&&(n=n());let r=T$1(),o=zn$1();if(We$1(r,o,n)){X$1();let s=Io$1();oE(s,r,e,n,r[z],t);}return gD}function QM(e,n){let t=dc$1(e);return t&&e.set(n),t}function mD(e,n){let t=T$1(),r=X$1(),o=ue$1();return KE(r,t,t[z],o,e,n),mD}function XM(e,n,t=""){return dD(T$1(),e,n,t)}function Wy(e,n,t){let r=X$1();r.firstCreatePass&&yD(n,r.data,r.blueprint,Mt$1(e),t);}function yD(e,n,t,r,o){if(e=ye$1(e),Array.isArray(e))for(let i=0;i>20;if(vr$1(e)||!e.multi){let p=new xr$1(u,o,fe$1,null),h=Jd$1(c,n,l+f,d);h===-1?(nf(bc$1(a,s),i,c),Xd$1(i,e,n.length),n.push(c),a.directiveStart++,a.directiveEnd++,t.push(p),s.push(p)):(t[h]=p,s[h]=p);}else {let p=Jd$1(c,n,l+f,d),h=Jd$1(c,n,l,l+f),m=p>=0&&t[p],y=h>=0&&t[h];if(!m){nf(bc$1(a,s),i,c);let E=tN(JM,t.length,o,r,u);y&&(t[h].providerFactory=E),Xd$1(i,e,n.length,0),n.push(c),a.directiveStart++,a.directiveEnd++,t.push(E),s.push(E);}else {let E=vD(t[p],u,r);Xd$1(i,e,p>-1?p:h,E);}r&&y&&t[h].componentProviders++;}}}function Xd$1(e,n,t,r){let o=vr$1(n),i=Em(n);if(o||i){let c=(i?ye$1(n.useClass):n).prototype.ngOnDestroy;if(c){let u=e.destroyHooks||(e.destroyHooks=[]);if(!o&&n.multi){let l=u.indexOf(t);l===-1?u.push(t,[r,c]):u[l+1].push(r,c);}else u.push(t,c);}}}function vD(e,n,t){return t&&e.componentProviders++,e.multi.push(n)-1}function Jd$1(e,n,t,r){for(let o=t;o{t.providersResolver=(r,o)=>Wy(r,o?o(e):e,false);}}function rN(e,n){let t=$n$1()+e,r=T$1();return r[t]===He$1?Ur$1(r,t,n()):nu(r,t)}function oN(e,n,t){return lN(T$1(),$n$1(),e,n,t)}function iN(e,n,t,r){return dN(T$1(),$n$1(),e,n,t,r)}function sN(e,n,t,r,o,i,s){return fN(T$1(),$n$1(),e,n,t,r,o,i)}function aN(e,n,t,r,o,i,s){let a=$n$1()+e,c=T$1(),u=ru(c,a,t,r,o,i);return We$1(c,a+4,s)||u?Ur$1(c,a+5,n(t,r,o,i,s)):nu(c,a+5)}function cN(e,n,t,r,o,i,s,a){let c=$n$1()+e,u=T$1(),l=ru(u,c,t,r,o,i);return Ro$1(u,c+4,s,a)||l?Ur$1(u,c+6,n(t,r,o,i,s,a)):nu(u,c+6)}function uN(e,n,t,r,o,i,s,a,c){let u=$n$1()+e,l=T$1(),d=ru(l,u,t,r,o,i);return H_(l,u+4,s,a,c)||d?Ur$1(l,u+7,n(t,r,o,i,s,a,c)):nu(l,u+7)}function Op(e,n){let t=e[n];return t===He$1?void 0:t}function lN(e,n,t,r,o,i){let s=n+t;return We$1(e,s,o)?Ur$1(e,s+1,r(o)):Op(e,s+1)}function dN(e,n,t,r,o,i,s){let a=n+t;return Ro$1(e,a,o,i)?Ur$1(e,a+2,r(o,i)):Op(e,a+2)}function fN(e,n,t,r,o,i,s,a,c){let u=n+t;return ru(e,u,o,i,s,a)?Ur$1(e,u+4,r(o,i,s,a)):Op(e,u+4)}function pN(e,n){return tu(e,n)}var ED=(()=>{class e{applicationErrorHandler=g(et$1);appRef=g(Zn$1);taskService=g(fn$1);ngZone=g(de$1);zonelessEnabled=g(ji$1);tracing=g(Kt$1,{optional:true});zoneIsDefined=typeof Zone<"u"&&!!Zone.root.run;schedulerTickApplyArgs=[{data:{__scheduler_tick__:true}}];subscriptions=new me$1;angularZoneId=this.zoneIsDefined?this.ngZone._inner?.get(Ii$1):null;scheduleInRootZone=!this.zonelessEnabled&&this.zoneIsDefined&&(g(Vd$1,{optional:true})??false);cancelScheduledCallback=null;useMicrotaskScheduler=false;runningTick=false;pendingRenderTaskId=null;constructor(){this.subscriptions.add(this.appRef.afterTick.subscribe(()=>{let t=this.taskService.add();if(!this.runningTick&&(this.cleanup(),!this.zonelessEnabled||this.appRef.includeAllTestViews)){this.taskService.remove(t);return}this.switchToMicrotaskScheduler(),this.taskService.remove(t);})),this.subscriptions.add(this.ngZone.onUnstable.subscribe(()=>{this.runningTick||this.cleanup();}));}switchToMicrotaskScheduler(){this.ngZone.runOutsideAngular(()=>{let t=this.taskService.add();this.useMicrotaskScheduler=true,queueMicrotask(()=>{this.useMicrotaskScheduler=false,this.taskService.remove(t);});});}notify(t){if(!this.zonelessEnabled&&t===5)return;switch(t){case 0:case 2:{this.appRef.dirtyFlags|=2;break}case 3:case 4:case 5:case 1:{this.appRef.dirtyFlags|=4;break}case 6:{this.appRef.dirtyFlags|=2;break}case 12:{this.appRef.dirtyFlags|=16;break}case 13:{this.appRef.dirtyFlags|=2;break}case 11:break;default:this.appRef.dirtyFlags|=8;}if(this.appRef.tracingSnapshot=this.tracing?.snapshot(this.appRef.tracingSnapshot)??null,!this.shouldScheduleTick())return;let r=this.useMicrotaskScheduler?Zm:Ud$1;this.pendingRenderTaskId=this.taskService.add(),this.scheduleInRootZone?this.cancelScheduledCallback=Zone.root.run(()=>r(()=>this.tick())):this.cancelScheduledCallback=this.ngZone.runOutsideAngular(()=>r(()=>this.tick()));}shouldScheduleTick(){return !(this.appRef.destroyed||this.pendingRenderTaskId!==null||this.runningTick||this.appRef._runningTick||!this.zonelessEnabled&&this.zoneIsDefined&&Zone.current.get(Ii$1+this.angularZoneId))}tick(){if(this.runningTick||this.appRef.destroyed)return;if(this.appRef.dirtyFlags===0){this.cleanup();return}!this.zonelessEnabled&&this.appRef.dirtyFlags&7&&(this.appRef.dirtyFlags|=1);let t=this.taskService.add();try{this.ngZone.run(()=>{this.runningTick=!0,this.appRef._tick();},void 0,this.schedulerTickApplyArgs);}catch(r){this.applicationErrorHandler(r);}finally{this.taskService.remove(t),this.cleanup();}}ngOnDestroy(){this.subscriptions.unsubscribe(),this.cleanup();}cleanup(){if(this.runningTick=false,this.cancelScheduledCallback?.(),this.cancelScheduledCallback=null,this.pendingRenderTaskId!==null){let t=this.pendingRenderTaskId;this.pendingRenderTaskId=null,this.taskService.remove(t);}}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})();function DD(){return [{provide:Vt$1,useExisting:ED},{provide:de$1,useClass:Ci$1},{provide:ji$1,useValue:true}]}var Lp=(()=>{class e{compileModuleSync(t){return new Fc$1(t)}compileModuleAsync(t){return Promise.resolve(this.compileModuleSync(t))}clearCache(){}clearCacheFor(t){}getModuleId(t){}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})();function hN(){return typeof $localize<"u"&&$localize.locale||fs$1}var ps$1=new I$1("",{factory:()=>g(ps$1,{optional:true,skipSelf:true})||hN()});var hs$1=class hs{destroyed=false;listeners=null;errorHandler=g(ct$1,{optional:true});isEmitting=false;hasNullListeners=false;destroyRef=g(_e$1);constructor(){this.destroyRef.onDestroy(()=>{this.destroyed=true,this.listeners=null;});}subscribe(n){if(this.destroyed)throw new w(953,false);return (this.listeners??=[]).push(n),{unsubscribe:()=>{let t=this.listeners?this.listeners.indexOf(n):-1;t>-1&&(this.isEmitting?(this.hasNullListeners=true,this.listeners[t]=null):this.listeners.splice(t,1));}}}emit(n){if(this.destroyed){console.warn(ut$1(953,false));return}if(this.listeners===null)return;this.isEmitting=true;let t=_$1(null);try{for(let r of this.listeners)try{r!==null&&r(n);}catch(o){this.errorHandler?.handleError(o);}}finally{this.hasNullListeners&&(this.hasNullListeners=false,this.listeners&&gN(this.listeners)),_$1(t),this.isEmitting=false;}}};function gN(e){let n=e.length-1;for(;n>-1;)e[n]===null&&e.splice(n,1),n--;}function gs$1(e,n){return pi$1(e,n?.equal)}function J$1(e){return Tg(e)}var mN=e=>e;function kp(e,n){if(typeof e=="function"){let t=xl$1(e,mN,n?.equal);return wD(t)}else {let t=xl$1(e.source,e.computation,e.equal);return wD(t,e.debugName)}}function wD(e,n){let t=e[ie$1],r=e;return r.set=o=>Sg(t,o),r.update=o=>bg(t,o),r.asReadonly=ki$1.bind(e),r}var gu=Symbol("InputSignalNode#UNSET"),_D=m(l({},hi$1),{transformFn:void 0,applyValueToInputSignal(e,n){On$1(e,n);}});function MD(e,n){let t=Object.create(_D);t.value=e,t.transformFn=n?.transform;function r(){if(rn$1(t),t.value===gu){let o=null;throw new w(-950,o)}return t.value}return r[ie$1]=t,r}var hu=class{attributeName;constructor(n){this.attributeName=n;}__NG_ELEMENT_ID__=()=>ns$1(this.attributeName);toString(){return `HostAttributeToken ${this.attributeName}`}};function Up(e){return NN(e)?e.default:e}function NN(e){return e&&typeof e=="object"&&"default"in e}function sz(e){return new hs$1}function ID(e,n){return MD(e,n)}function AN(e){return MD(gu,e)}var mu=(ID.required=AN,ID);function ND(e,n){let t=Object.create(_D),r=new hs$1;t.value=e;function o(){return rn$1(t),CD(t.value),t.value}return o[ie$1]=t,o.asReadonly=ki$1.bind(o),o.set=i=>{t.equal(t.value,i)||(On$1(t,i),r.emit(i));},o.update=i=>{CD(t.value),o.set(i(t.value));},o.subscribe=r.subscribe.bind(r),o.destroyRef=r.destroyRef,o}function CD(e){if(e===gu)throw new w(952,false)}function SD(e,n){return ND(e)}function RN(e){return ND(gu)}var az=(SD.required=RN,SD);function bD(e,n){return yp()}function xN(e,n){return vp()}var cz=(bD.required=xN,bD);function TD(e,n){return yp()}function ON(e,n){return vp()}var uz=(TD.required=ON,TD);var Hr$1=(()=>{class e{static __NG_ELEMENT_ID__=kN}return e})();function kN(e){return PN(ue$1(),T$1(),(e&16)===16)}function PN(e,n,t){if(dn$1(e)&&!t){let r=mt$1(e.index,n);return new qn$1(r,r)}else if(e.type&175){let r=n[Ue$1];return new qn$1(r,n)}return null}var Fp=new I$1(""),FN=new I$1("");function ms$1(e){return !e.moduleRef}function jN(e){let n=ms$1(e)?e.r3Injector:e.moduleRef.injector,t=n.get(de$1);return t.run(()=>{ms$1(e)?e.r3Injector.resolveInjectorInitializers():e.moduleRef.resolveInjectorInitializers();let r=n.get(et$1),o;if(t.runOutsideAngular(()=>{o=t.onError.subscribe({next:r});}),ms$1(e)){let i=()=>n.destroy(),s=e.platformInjector.get(Fp);s.add(i),n.onDestroy(()=>{o.unsubscribe(),s.delete(i);});}else {let i=()=>e.moduleRef.destroy(),s=e.platformInjector.get(Fp);s.add(i),e.moduleRef.onDestroy(()=>{Gi$1(e.allPlatformModules,e.moduleRef),o.unsubscribe(),s.delete(i);});}return BN(r,t,()=>{let i=n.get(fn$1),s=i.add(),a=n.get(Ip);return a.runInitializers(),a.donePromise.then(()=>{let c=n.get(ps$1,fs$1);if(ZE(c||fs$1),!n.get(FN,!0))return ms$1(e)?n.get(Zn$1):(e.allPlatformModules.push(e.moduleRef),e.moduleRef);if(ms$1(e)){let l=n.get(Zn$1);return e.rootComponent!==void 0&&l.bootstrap(e.rootComponent),l}else return UN?.(e.moduleRef,e.allPlatformModules),e.moduleRef}).finally(()=>{i.remove(s);})})})}var UN;function BN(e,n,t){try{let r=t();return Fo$1(r)?r.catch(o=>{throw n.runOutsideAngular(()=>e(o)),o}):r}catch(r){throw n.runOutsideAngular(()=>e(r)),r}}var pu=null;function HN(e=[],n){return Ie$1.create({name:n,providers:[{provide:Ni$1,useValue:"platform"},{provide:Fp,useValue:new Set([()=>pu=null])},...e]})}function VN(e=[]){if(pu)return pu;let n=HN(e);return pu=n,$E(),$N(n),n}function $N(e){let n=e.get(ac$1,null);Ee$1(e,()=>{n?.forEach(t=>t());});}function AD(e){let{rootComponent:n,appProviders:t,platformProviders:r,platformRef:o}=e;W$1(B.BootstrapApplicationStart);try{let i=o?.injector??VN(r),s=[DD(),Qm,...t||[]],a=new Xi$1({providers:s,parent:i,debugName:"",runEnvironmentInitializers:!1});return jN({r3Injector:a.injector,platformInjector:i,rootComponent:n})}catch(i){return Promise.reject(i)}finally{W$1(B.BootstrapApplicationEnd);}}function yn$1(e){return typeof e=="boolean"?e:e!=null&&e!=="false"}function Bp(e,n=NaN){return !isNaN(parseFloat(e))&&!isNaN(Number(e))?Number(e):n}var Pp=Symbol("NOT_SET"),RD=new Set,zN=m(l({},hi$1),{kind:"afterRenderEffectPhase",consumerIsAlwaysLive:true,consumerAllowSignalWrites:true,value:Pp,cleanup:null,consumerMarkedDirty(){if(this.sequence.impl.executing){if(this.sequence.lastPhase===null||this.sequence.lastPhase(rn$1(u),u.value),u.signal[ie$1]=u,u.registerCleanupFn=l=>(u.cleanup??=new Set).add(l),this.nodes[a]=u,this.hooks[a]=l=>u.phaseFn(l);}}afterRun(){super.afterRun(),this.lastPhase=null;}destroy(){if(this.onDestroyFns!==null)for(let n of this.onDestroyFns)n();super.destroy();for(let n of this.nodes)if(n)try{for(let t of n.cleanup??RD)t();}finally{xn$1(n);}}};function dz(e,n){let t=g(Ie$1),r=t.get(Vt$1),o=t.get(Zc$1),i=t.get(Kt$1,null,{optional:true});o.impl??=t.get(ep);let s=e;typeof s=="function"&&(s={mixedReadWrite:e});let a=t.get(Co$1,null,{optional:true}),c=new jp(o.impl,[s.earlyRead,s.write,s.mixedReadWrite,s.read],a?.view,r,t,i?.snapshot(null));return o.impl.register(c),c}function xD(e){let n=jn$1(e);if(!n)return null;let t=new xo$1(n);return {get selector(){return t.selector},get type(){return t.componentType},get inputs(){return t.inputs},get outputs(){return t.outputs},get ngContentSelectors(){return t.ngContentSelectors},get isStandalone(){return n.standalone},get isSignal(){return n.signals}}}var OD=null;function vn$1(){return OD}function Hp(e){OD??=e;}var ys$1=class ys{},En$1=(()=>{class e{historyGo(t){throw new Error("")}static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:()=>g(LD),providedIn:"platform"})}return e})(),Vp=new I$1(""),LD=(()=>{class e extends En$1{_location;_history;_doc=g(G$1);constructor(){super(),this._location=window.location,this._history=window.history;}getBaseHrefFromDOM(){return vn$1().getBaseHref(this._doc)}onPopState(t){let r=vn$1().getGlobalEventTarget(this._doc,"window");return r.addEventListener("popstate",t,false),()=>r.removeEventListener("popstate",t)}onHashChange(t){let r=vn$1().getGlobalEventTarget(this._doc,"window");return r.addEventListener("hashchange",t,false),()=>r.removeEventListener("hashchange",t)}get href(){return this._location.href}get protocol(){return this._location.protocol}get hostname(){return this._location.hostname}get port(){return this._location.port}get pathname(){return this._location.pathname}get search(){return this._location.search}get hash(){return this._location.hash}set pathname(t){this._location.pathname=t;}pushState(t,r,o){this._history.pushState(t,r,o);}replaceState(t,r,o){this._history.replaceState(t,r,o);}forward(){this._history.forward();}back(){this._history.back();}historyGo(t=0){this._history.go(t);}getState(){return this._history.state}static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:()=>new e,providedIn:"platform"})}return e})();function yu(e,n){return e?n?e.endsWith("/")?n.startsWith("/")?e+n.slice(1):e+n:n.startsWith("/")?e+n:`${e}/${n}`:e:n}function kD(e){let n=e.search(/#|\?|$/);return e[n-1]==="/"?e.slice(0,n-1)+e.slice(n):e}function Ot$1(e){return e&&e[0]!=="?"?`?${e}`:e}var Lt$1=(()=>{class e{historyGo(t){throw new Error("")}static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:()=>g(Eu),providedIn:"root"})}return e})(),vu=new I$1(""),Eu=(()=>{class e extends Lt$1{_platformLocation;_baseHref;_removeListenerFns=[];constructor(t,r){super(),this._platformLocation=t,this._baseHref=r??this._platformLocation.getBaseHrefFromDOM()??g(G$1).location?.origin??"";}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()();}onPopState(t){this._removeListenerFns.push(this._platformLocation.onPopState(t),this._platformLocation.onHashChange(t));}getBaseHref(){return this._baseHref}prepareExternalUrl(t){return yu(this._baseHref,t)}path(t=false){let r=this._platformLocation.pathname+Ot$1(this._platformLocation.search),o=this._platformLocation.hash;return o&&t?`${r}${o}`:r}pushState(t,r,o,i){let s=this.prepareExternalUrl(o+Ot$1(i));this._platformLocation.pushState(t,r,s);}replaceState(t,r,o,i){let s=this.prepareExternalUrl(o+Ot$1(i));this._platformLocation.replaceState(t,r,s);}forward(){this._platformLocation.forward();}back(){this._platformLocation.back();}getState(){return this._platformLocation.getState()}historyGo(t=0){this._platformLocation.historyGo?.(t);}static \u0275fac=function(r){return new(r||e)(M$1(En$1),M$1(vu,8))};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var Kn$1=(()=>{class e{_subject=new Y$1;_basePath;_locationStrategy;_urlChangeListeners=[];_urlChangeSubscription=null;constructor(t){this._locationStrategy=t;let r=this._locationStrategy.getBaseHref();this._basePath=qN(kD(PD(r))),this._locationStrategy.onPopState(o=>{this._subject.next({url:this.path(true),pop:true,state:o.state,type:o.type});});}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[];}path(t=false){return this.normalize(this._locationStrategy.path(t))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(t,r=""){return this.path()==this.normalize(t+Ot$1(r))}normalize(t){return e.stripTrailingSlash(WN(this._basePath,PD(t)))}prepareExternalUrl(t){return t&&t[0]!=="/"&&(t="/"+t),this._locationStrategy.prepareExternalUrl(t)}go(t,r="",o=null){this._locationStrategy.pushState(o,"",t,r),this._notifyUrlChangeListeners(this.prepareExternalUrl(t+Ot$1(r)),o);}replaceState(t,r="",o=null){this._locationStrategy.replaceState(o,"",t,r),this._notifyUrlChangeListeners(this.prepareExternalUrl(t+Ot$1(r)),o);}forward(){this._locationStrategy.forward();}back(){this._locationStrategy.back();}historyGo(t=0){this._locationStrategy.historyGo?.(t);}onUrlChange(t){return this._urlChangeListeners.push(t),this._urlChangeSubscription??=this.subscribe(r=>{this._notifyUrlChangeListeners(r.url,r.state);}),()=>{let r=this._urlChangeListeners.indexOf(t);this._urlChangeListeners.splice(r,1),this._urlChangeListeners.length===0&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null);}}_notifyUrlChangeListeners(t="",r){this._urlChangeListeners.forEach(o=>o(t,r));}subscribe(t,r,o){return this._subject.subscribe({next:t,error:r??void 0,complete:o??void 0})}static normalizeQueryParams=Ot$1;static joinWithSlash=yu;static stripTrailingSlash=kD;static \u0275fac=function(r){return new(r||e)(M$1(Lt$1))};static \u0275prov=b({token:e,factory:()=>GN(),providedIn:"root"})}return e})();function GN(){return new Kn$1(M$1(Lt$1))}function WN(e,n){if(!e||!n.startsWith(e))return n;let t=n.substring(e.length);return t===""||["/",";","?","#"].includes(t[0])?t:n}function PD(e){return e.replace(/\/index\.html$/,"")}function qN(e){if(new RegExp("^(https?:)?//").test(e)){let[,t]=e.split(/\/\/[^\/]+/);return t}return e}var Wp=(()=>{class e extends Lt$1{_platformLocation;_baseHref="";_removeListenerFns=[];constructor(t,r){super(),this._platformLocation=t,r!=null&&(this._baseHref=r);}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()();}onPopState(t){this._removeListenerFns.push(this._platformLocation.onPopState(t),this._platformLocation.onHashChange(t));}getBaseHref(){return this._baseHref}path(t=false){let r=this._platformLocation.hash??"#";return r.length>0?r.substring(1):r}prepareExternalUrl(t){let r=yu(this._baseHref,t);return r.length>0?"#"+r:r}pushState(t,r,o,i){let s=this.prepareExternalUrl(o+Ot$1(i))||this._platformLocation.pathname;this._platformLocation.pushState(t,r,s);}replaceState(t,r,o,i){let s=this.prepareExternalUrl(o+Ot$1(i))||this._platformLocation.pathname;this._platformLocation.replaceState(t,r,s);}forward(){this._platformLocation.forward();}back(){this._platformLocation.back();}getState(){return this._platformLocation.getState()}historyGo(t=0){this._platformLocation.historyGo?.(t);}static \u0275fac=function(r){return new(r||e)(M$1(En$1),M$1(vu,8))};static \u0275prov=b({token:e,factory:e.\u0275fac})}return e})();var Le$1=(function(e){return e[e.Format=0]="Format",e[e.Standalone=1]="Standalone",e})(Le$1||{}),q$1=(function(e){return e[e.Narrow=0]="Narrow",e[e.Abbreviated=1]="Abbreviated",e[e.Wide=2]="Wide",e[e.Short=3]="Short",e})(q$1||{}),Ze$1=(function(e){return e[e.Short=0]="Short",e[e.Medium=1]="Medium",e[e.Long=2]="Long",e[e.Full=3]="Full",e})(Ze$1||{}),wn$1={MinusSign:5};function jD(e){return tt$1(e)[pe$1.LocaleId]}function UD(e,n,t){let r=tt$1(e),o=[r[pe$1.DayPeriodsFormat],r[pe$1.DayPeriodsStandalone]],i=Et$1(o,n);return Et$1(i,t)}function BD(e,n,t){let r=tt$1(e),o=[r[pe$1.DaysFormat],r[pe$1.DaysStandalone]],i=Et$1(o,n);return Et$1(i,t)}function HD(e,n,t){let r=tt$1(e),o=[r[pe$1.MonthsFormat],r[pe$1.MonthsStandalone]],i=Et$1(o,n);return Et$1(i,t)}function VD(e,n){let r=tt$1(e)[pe$1.Eras];return Et$1(r,n)}function vs$1(e,n){let t=tt$1(e);return Et$1(t[pe$1.DateFormat],n)}function Es(e,n){let t=tt$1(e);return Et$1(t[pe$1.TimeFormat],n)}function Ds$1(e,n){let r=tt$1(e)[pe$1.DateTimeFormat];return Et$1(r,n)}function ws$1(e,n){let t=tt$1(e),r=t[pe$1.NumberSymbols][n];return r}function $D(e){if(!e[pe$1.ExtraData])throw new w(2303,false)}function zD(e){let n=tt$1(e);return $D(n),(n[pe$1.ExtraData][2]||[]).map(r=>typeof r=="string"?$p(r):[$p(r[0]),$p(r[1])])}function GD(e,n,t){let r=tt$1(e);$D(r);let o=[r[pe$1.ExtraData][0],r[pe$1.ExtraData][1]],i=Et$1(o,n)||[];return Et$1(i,t)||[]}function Et$1(e,n){for(let t=n;t>-1;t--)if(typeof e[t]<"u")return e[t];throw new w(2304,false)}function $p(e){let[n,t]=e.split(":");return {hours:+n,minutes:+t}}var YN=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,Du={},ZN=/((?:[^BEGHLMOSWYZabcdhmswyz']+)|(?:'(?:[^']|'')*')|(?:G{1,5}|y{1,4}|Y{1,4}|M{1,5}|L{1,5}|w{1,2}|W{1}|d{1,2}|E{1,6}|c{1,6}|a{1,5}|b{1,5}|B{1,5}|h{1,2}|H{1,2}|m{1,2}|s{1,2}|S{1,3}|z{1,4}|Z{1,5}|O{1,4}))([\s\S]*)/,KN=256;function WD(e,n,t,r){let o=sA(e);QN(n),n=Dn$1(t,n)||n;let s=[],a;for(;n;)if(a=ZN.exec(n),a){s=s.concat(a.slice(1));let l=s.pop();if(!l)break;n=l;}else {s.push(n);break}let c=o.getTimezoneOffset();r&&(c=YD(r,c),o=iA(o,r));let u="";return s.forEach(l=>{let d=rA(l);u+=d?d(o,t,c):l==="''"?"'":l.replace(/(^'|'$)/g,"").replace(/''/g,"'");}),u}function QN(e){if(e.length>KN)throw new w(2300,false)}function bu(e,n,t){let r=new Date(0);return r.setFullYear(e,n,t),r.setHours(0,0,0),r}function Dn$1(e,n){let t=jD(e);if(Du[t]??={},Du[t][n])return Du[t][n];let r="";switch(n){case "shortDate":r=vs$1(e,Ze$1.Short);break;case "mediumDate":r=vs$1(e,Ze$1.Medium);break;case "longDate":r=vs$1(e,Ze$1.Long);break;case "fullDate":r=vs$1(e,Ze$1.Full);break;case "shortTime":r=Es(e,Ze$1.Short);break;case "mediumTime":r=Es(e,Ze$1.Medium);break;case "longTime":r=Es(e,Ze$1.Long);break;case "fullTime":r=Es(e,Ze$1.Full);break;case "short":let o=Dn$1(e,"shortTime"),i=Dn$1(e,"shortDate");r=wu(Ds$1(e,Ze$1.Short),[o,i]);break;case "medium":let s=Dn$1(e,"mediumTime"),a=Dn$1(e,"mediumDate");r=wu(Ds$1(e,Ze$1.Medium),[s,a]);break;case "long":let c=Dn$1(e,"longTime"),u=Dn$1(e,"longDate");r=wu(Ds$1(e,Ze$1.Long),[c,u]);break;case "full":let l=Dn$1(e,"fullTime"),d=Dn$1(e,"fullDate");r=wu(Ds$1(e,Ze$1.Full),[l,d]);break}return r&&(Du[t][n]=r),r}function wu(e,n){return n&&(e=e.replace(/\{([^}]+)}/g,function(t,r){return Object.hasOwn(n,r)?n[r]:t})),e}function kt$1(e,n,t="-",r,o){let i="";(e<0||o&&e<=0)&&(o?e=-e+1:(e=-e,i=t));let s=String(e);for(;s.length0||a>-t)&&(a+=t),e===3)a===0&&t===-12&&(a=12);else if(e===6)return XN(a,n);let c=ws$1(s,wn$1.MinusSign);return kt$1(a,n,c,r,o)}}function JN(e,n){switch(e){case 0:return n.getFullYear();case 1:return n.getMonth();case 2:return n.getDate();case 3:return n.getHours();case 4:return n.getMinutes();case 5:return n.getSeconds();case 6:return n.getMilliseconds();case 7:return n.getDay();default:throw new w(2301,false)}}function Q$1(e,n,t=Le$1.Format,r=false){return function(o,i){return eA(o,i,e,n,t,r)}}function eA(e,n,t,r,o,i){switch(t){case 2:return HD(n,o,r)[e.getMonth()];case 1:return BD(n,o,r)[e.getDay()];case 0:let s=e.getHours(),a=e.getMinutes();if(i){let u=zD(n),l=GD(n,o,r),d=u.findIndex(f=>{if(Array.isArray(f)){let[p,h]=f,m=s>=p.hours&&a>=p.minutes,y=s0?Math.floor(o/60):Math.ceil(o/60);switch(e){case 0:return (o>=0?"+":"")+kt$1(s,2,i)+kt$1(Math.abs(o%60),2,i);case 1:return "GMT"+(o>=0?"+":"")+kt$1(s,1,i);case 2:return "GMT"+(o>=0?"+":"")+kt$1(s,2,i)+":"+kt$1(Math.abs(o%60),2,i);case 3:return r===0?"Z":(o>=0?"+":"")+kt$1(s,2,i)+":"+kt$1(Math.abs(o%60),2,i);default:throw new w(2310,false)}}}var tA=0,Su=4;function nA(e){let n=bu(e,tA,1).getDay();return bu(e,0,1+(n<=Su?Su:Su+7)-n)}function qD(e){let n=e.getDay(),t=n===0?-3:Su-n;return bu(e.getFullYear(),e.getMonth(),e.getDate()+t)}function zp(e,n=false){return function(t,r){let o;if(n){let i=new Date(t.getFullYear(),t.getMonth(),1).getDay()-1,s=t.getDate();o=1+Math.floor((s+i)/7);}else {let i=qD(t),s=nA(i.getFullYear()),a=i.getTime()-s.getTime();o=1+Math.round(a/6048e5);}return kt$1(o,e,ws$1(r,wn$1.MinusSign))}}function Cu(e,n=false){return function(t,r){let i=qD(t).getFullYear();return kt$1(i,e,ws$1(r,wn$1.MinusSign),n)}}var Gp={};function rA(e){if(Gp[e])return Gp[e];let n;switch(e){case "G":case "GG":case "GGG":n=Q$1(3,q$1.Abbreviated);break;case "GGGG":n=Q$1(3,q$1.Wide);break;case "GGGGG":n=Q$1(3,q$1.Narrow);break;case "y":n=he$1(0,1,0,false,true);break;case "yy":n=he$1(0,2,0,true,true);break;case "yyy":n=he$1(0,3,0,false,true);break;case "yyyy":n=he$1(0,4,0,false,true);break;case "Y":n=Cu(1);break;case "YY":n=Cu(2,true);break;case "YYY":n=Cu(3);break;case "YYYY":n=Cu(4);break;case "M":case "L":n=he$1(1,1,1);break;case "MM":case "LL":n=he$1(1,2,1);break;case "MMM":n=Q$1(2,q$1.Abbreviated);break;case "MMMM":n=Q$1(2,q$1.Wide);break;case "MMMMM":n=Q$1(2,q$1.Narrow);break;case "LLL":n=Q$1(2,q$1.Abbreviated,Le$1.Standalone);break;case "LLLL":n=Q$1(2,q$1.Wide,Le$1.Standalone);break;case "LLLLL":n=Q$1(2,q$1.Narrow,Le$1.Standalone);break;case "w":n=zp(1);break;case "ww":n=zp(2);break;case "W":n=zp(1,true);break;case "d":n=he$1(2,1);break;case "dd":n=he$1(2,2);break;case "c":case "cc":n=he$1(7,1);break;case "ccc":n=Q$1(1,q$1.Abbreviated,Le$1.Standalone);break;case "cccc":n=Q$1(1,q$1.Wide,Le$1.Standalone);break;case "ccccc":n=Q$1(1,q$1.Narrow,Le$1.Standalone);break;case "cccccc":n=Q$1(1,q$1.Short,Le$1.Standalone);break;case "E":case "EE":case "EEE":n=Q$1(1,q$1.Abbreviated);break;case "EEEE":n=Q$1(1,q$1.Wide);break;case "EEEEE":n=Q$1(1,q$1.Narrow);break;case "EEEEEE":n=Q$1(1,q$1.Short);break;case "a":case "aa":case "aaa":n=Q$1(0,q$1.Abbreviated);break;case "aaaa":n=Q$1(0,q$1.Wide);break;case "aaaaa":n=Q$1(0,q$1.Narrow);break;case "b":case "bb":case "bbb":n=Q$1(0,q$1.Abbreviated,Le$1.Standalone,true);break;case "bbbb":n=Q$1(0,q$1.Wide,Le$1.Standalone,true);break;case "bbbbb":n=Q$1(0,q$1.Narrow,Le$1.Standalone,true);break;case "B":case "BB":case "BBB":n=Q$1(0,q$1.Abbreviated,Le$1.Format,true);break;case "BBBB":n=Q$1(0,q$1.Wide,Le$1.Format,true);break;case "BBBBB":n=Q$1(0,q$1.Narrow,Le$1.Format,true);break;case "h":n=he$1(3,1,-12);break;case "hh":n=he$1(3,2,-12);break;case "H":n=he$1(3,1);break;case "HH":n=he$1(3,2);break;case "m":n=he$1(4,1);break;case "mm":n=he$1(4,2);break;case "s":n=he$1(5,1);break;case "ss":n=he$1(5,2);break;case "S":n=he$1(6,1);break;case "SS":n=he$1(6,2);break;case "SSS":n=he$1(6,3);break;case "Z":case "ZZ":case "ZZZ":n=Iu(0);break;case "ZZZZZ":n=Iu(3);break;case "O":case "OO":case "OOO":case "z":case "zz":case "zzz":n=Iu(1);break;case "OOOO":case "ZZZZ":case "zzzz":n=Iu(2);break;default:return null}return Gp[e]=n,n}function YD(e,n){e=e.replace(/:/g,"");let t=Date.parse("Jan 01, 1970 00:00:00 "+e)/6e4;return isNaN(t)?n:t}function oA(e,n){return e=new Date(e.getTime()),e.setMinutes(e.getMinutes()+n),e}function iA(e,n,t){let o=e.getTimezoneOffset(),i=YD(n,o);return oA(e,-1*(i-o))}function sA(e){if(FD(e))return e;if(typeof e=="number"&&!isNaN(e))return new Date(e);if(typeof e=="string"){if(e=e.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(e)){let[o,i=1,s=1]=e.split("-").map(a=>+a);return bu(o,i-1,s)}let t=parseFloat(e);if(!isNaN(e-t))return new Date(t);let r;if(r=e.match(YN))return aA(r)}let n=new Date(e);if(!FD(n))throw new w(2311,false);return n}function aA(e){let n=new Date(0),t=0,r=0,o=e[8]?n.setUTCFullYear:n.setFullYear,i=e[8]?n.setUTCHours:n.setHours;e[9]&&(t=Number(e[9]+e[10]),r=Number(e[9]+e[11])),o.call(n,Number(e[1]),Number(e[2])-1,Number(e[3]));let s=Number(e[4]||0)-t,a=Number(e[5]||0)-r,c=Number(e[6]||0),u=Math.floor(parseFloat("0."+(e[7]||0))*1e3);return i.call(n,s,a,c,u),n}function FD(e){return e instanceof Date&&!isNaN(e.valueOf())}var cA=(()=>{class e{_viewContainerRef;_viewRef=null;ngTemplateOutletContext=null;ngTemplateOutlet=null;ngTemplateOutletInjector=null;injector=g(Ie$1);constructor(t){this._viewContainerRef=t;}ngOnChanges(t){if(this._shouldRecreateView(t)){let r=this._viewContainerRef;if(this._viewRef&&r.remove(r.indexOf(this._viewRef)),!this.ngTemplateOutlet){this._viewRef=null;return}let o=this._createContextForwardProxy();this._viewRef=r.createEmbeddedView(this.ngTemplateOutlet,o,{injector:this._getInjector()});}}_getInjector(){return this.ngTemplateOutletInjector==="outlet"?this.injector:this.ngTemplateOutletInjector??void 0}_shouldRecreateView(t){return !!t.ngTemplateOutlet||!!t.ngTemplateOutletInjector}_createContextForwardProxy(){return new Proxy({},{set:(t,r,o)=>this.ngTemplateOutletContext?Reflect.set(this.ngTemplateOutletContext,r,o):false,get:(t,r,o)=>{if(this.ngTemplateOutletContext)return Reflect.get(this.ngTemplateOutletContext,r,o)}})}static \u0275fac=function(r){return new(r||e)(fe$1(Yn$1))};static \u0275dir=xt$1({type:e,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},features:[Yt$1]})}return e})();function uA(e,n){return new w(2100,false)}var lA="mediumDate",ZD=new I$1(""),KD=new I$1(""),dA=(()=>{class e{locale;defaultTimezone;defaultOptions;constructor(t,r,o){this.locale=t,this.defaultTimezone=r,this.defaultOptions=o;}transform(t,r,o,i){if(t==null||t===""||t!==t)return null;try{let s=r??this.defaultOptions?.dateFormat??lA,a=o??this.defaultOptions?.timezone??this.defaultTimezone??void 0;return WD(t,s,i||this.locale,a)}catch(s){throw uA(e,s.message)}}static \u0275fac=function(r){return new(r||e)(fe$1(ps$1,16),fe$1(ZD,24),fe$1(KD,24))};static \u0275pipe=Dp({name:"date",type:e,pure:true})}return e})();var Tu=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275mod=mn$1({type:e});static \u0275inj=$t$1({})}return e})();function Is$1(e,n){n=encodeURIComponent(n);for(let t of e.split(";")){let r=t.indexOf("="),[o,i]=r==-1?[t,""]:[t.slice(0,r),t.slice(r+1)];if(o.trim()===n)return decodeURIComponent(i)}return null}var Yp="browser",hA="server";function BG(e){return e===Yp}function HG(e){return e===hA}var Zp=(()=>{class e{static \u0275prov=b({token:e,providedIn:"root",factory:()=>new qp(g(G$1),window)})}return e})(),qp=class{document;window;offset=()=>[0,0];constructor(n,t){this.document=n,this.window=t;}setOffset(n){Array.isArray(n)?this.offset=()=>n:this.offset=n;}getScrollPosition(){return [this.window.scrollX,this.window.scrollY]}scrollToPosition(n,t){this.window.scrollTo(m(l({},t),{left:n[0],top:n[1]}));}scrollToAnchor(n,t){let r=gA(this.document,n);r&&(this.scrollToElement(r,t),r.focus({preventScroll:true}));}setHistoryScrollRestoration(n){try{this.window.history.scrollRestoration=n;}catch{console.warn(ut$1(2400,false));}}scrollToElement(n,t){let r=n.getBoundingClientRect(),o=r.left+this.window.pageXOffset,i=r.top+this.window.pageYOffset,s=this.offset();this.window.scrollTo(m(l({},t),{left:o-s[0],top:i-s[1]}));}};function gA(e,n){let t=e.getElementById(n)||e.getElementsByName(n)[0];if(t)return t;if(typeof e.createTreeWalker=="function"&&e.body&&typeof e.body.attachShadow=="function"){let r=e.createTreeWalker(e.body,NodeFilter.SHOW_ELEMENT),o=r.currentNode;for(;o;){let i=o.shadowRoot;if(i){let s=i.getElementById(n)||i.querySelector(`[name="${CSS.escape(n)}"]`);if(s)return s}o=r.nextNode();}}return null}function QD(e){return e.replace(/\\/g,"\\\\").replace(/[\n\r\f\0]/g,"").replace(/"/g,'\\"')}var JD=e=>e.src,mA=new I$1("",{factory:()=>JD});var XD=/^((\s*\d+w\s*(,|$)){1,})$/;var yA=[1,2],vA=640;var EA=1920,DA=1080;var VG=(()=>{class e{imageLoader=g(mA);config=wA(g(uc$1));renderer=g(jr$1);imgElement=g(Rt$1).nativeElement;injector=g(Ie$1);destroyRef=g(_e$1);lcpObserver;_renderedSrc=null;ngSrc;ngSrcset;sizes;width;height;decoding;loading;priority=false;loaderParams;disableOptimizedSrcset=false;fill=false;placeholder;placeholderConfig;src;srcset;constructor(){this.destroyRef.onDestroy(()=>{this.renderer.removeAttribute(this.imgElement,"loading");});}ngOnInit(){qe$1("NgOptimizedImage"),this.placeholder&&this.removePlaceholderOnLoad(this.imgElement),this.setHostAttributes();}setHostAttributes(){this.fill?this.sizes||="100vw":(this.setHostAttribute("width",this.width.toString()),this.setHostAttribute("height",this.height.toString())),this.setHostAttribute("loading",this.getLoadingBehavior()),this.setHostAttribute("fetchpriority",this.getFetchPriority()),this.setHostAttribute("decoding",this.getDecoding()),this.setHostAttribute("ng-img","true");this.updateSrcAndSrcset();this.sizes?this.getLoadingBehavior()==="lazy"?this.setHostAttribute("sizes","auto, "+this.sizes):this.setHostAttribute("sizes",this.sizes):this.ngSrcset&&XD.test(this.ngSrcset)&&this.getLoadingBehavior()==="lazy"&&this.setHostAttribute("sizes","auto, 100vw");}ngOnChanges(t){if(t.ngSrc&&!t.ngSrc.isFirstChange()){this._renderedSrc;this.updateSrcAndSrcset(true);}}getAspectRatio(){return this.width&&this.height&&this.height!==0?this.width/this.height:null}callImageLoader(t){let r=t;this.loaderParams&&(r.loaderParams=this.loaderParams);let o=this.getAspectRatio();return o!==null&&r.width&&(r.height=Math.round(r.width/o)),this.imageLoader(r)}getLoadingBehavior(){return !this.priority&&this.loading!==void 0?this.loading:this.priority?"eager":"lazy"}getFetchPriority(){return this.priority?"high":"auto"}getDecoding(){return this.priority?"sync":this.decoding??"auto"}getRewrittenSrc(){if(!this._renderedSrc){let t={src:this.ngSrc};this._renderedSrc=this.callImageLoader(t);}return this._renderedSrc}getRewrittenSrcset(){let t=XD.test(this.ngSrcset);return this.ngSrcset.split(",").filter(o=>o!=="").map(o=>{o=o.trim();let i=t?parseFloat(o):parseFloat(o)*this.width;return `${this.callImageLoader({src:this.ngSrc,width:i})} ${o}`}).join(", ")}getAutomaticSrcset(){return this.sizes?this.getResponsiveSrcset():this.getFixedSrcset()}getResponsiveSrcset(){let{breakpoints:t}=this.config,r=t;return this.sizes?.trim()==="100vw"&&(r=t.filter(i=>i>=vA)),r.map(i=>`${this.callImageLoader({src:this.ngSrc,width:i})} ${i}w`).join(", ")}updateSrcAndSrcset(t=false){t&&(this._renderedSrc=null);let r=this.getRewrittenSrc();this.setHostAttribute("src",r);let o;return this.ngSrcset?o=this.getRewrittenSrcset():this.shouldGenerateAutomaticSrcset()&&(o=this.getAutomaticSrcset()),o&&this.setHostAttribute("srcset",o),o}getFixedSrcset(){return yA.map(r=>`${this.callImageLoader({src:this.ngSrc,width:this.width*r})} ${r}x`).join(", ")}shouldGenerateAutomaticSrcset(){let t=false;return this.sizes||(t=this.width>EA||this.height>DA),!this.disableOptimizedSrcset&&!this.srcset&&this.imageLoader!==JD&&!t}generatePlaceholder(t){let{placeholderResolution:r}=this.config;return t===true?`url("${QD(this.callImageLoader({src:this.ngSrc,width:r,isPlaceholder:true}))}")`:typeof t=="string"?`url("${QD(t)}")`:null}shouldBlurPlaceholder(t){return !t||!t.hasOwnProperty("blur")?true:!!t.blur}removePlaceholderOnLoad(t){let r=()=>{let s=this.injector.get(Hr$1);o(),i(),this.placeholder=false,s.markForCheck();},o=this.renderer.listen(t,"load",r),i=this.renderer.listen(t,"error",r);this.destroyRef.onDestroy(()=>{o(),i();}),IA(t,r);}setHostAttribute(t,r){this.renderer.setAttribute(this.imgElement,t,r);}static \u0275fac=function(r){return new(r||e)};static \u0275dir=xt$1({type:e,selectors:[["img","ngSrc",""]],hostVars:18,hostBindings:function(r,o){r&2&&fu("position",o.fill?"absolute":null)("width",o.fill?"100%":null)("height",o.fill?"100%":null)("inset",o.fill?"0":null)("background-size",o.placeholder?"cover":null)("background-position",o.placeholder?"50% 50%":null)("background-repeat",o.placeholder?"no-repeat":null)("background-image",o.placeholder?o.generatePlaceholder(o.placeholder):null)("filter",o.placeholder&&o.shouldBlurPlaceholder(o.placeholderConfig)?"blur(15px)":null);},inputs:{ngSrc:[2,"ngSrc","ngSrc",CA],ngSrcset:"ngSrcset",sizes:"sizes",width:[2,"width","width",Bp],height:[2,"height","height",Bp],decoding:"decoding",loading:"loading",priority:[2,"priority","priority",yn$1],loaderParams:"loaderParams",disableOptimizedSrcset:[2,"disableOptimizedSrcset","disableOptimizedSrcset",yn$1],fill:[2,"fill","fill",yn$1],placeholder:[2,"placeholder","placeholder",SA],placeholderConfig:"placeholderConfig",src:"src",srcset:"srcset"},features:[Yt$1]})}return e})();function wA(e){let n={};return e.breakpoints&&(n.breakpoints=e.breakpoints.sort((t,r)=>t-r)),Object.assign({},cc$1,e,n)}function IA(e,n){e.complete&&e.naturalWidth&&n();}function CA(e){return typeof e=="string"?e:Be$1(e)}function SA(e){return typeof e=="string"&&e!=="true"&&e!=="false"&&e!==""?e:yn$1(e)}var Cs$1=class Cs{_doc;constructor(n){this._doc=n;}manager},_u=(()=>{class e extends Cs$1{constructor(t){super(t);}supports(t){return true}addEventListener(t,r,o,i){return t.addEventListener(r,o,i),()=>this.removeEventListener(t,r,o,i)}removeEventListener(t,r,o,i){return t.removeEventListener(r,o,i)}static \u0275fac=function(r){return new(r||e)(M$1(G$1))};static \u0275prov=b({token:e,factory:e.\u0275fac})}return e})(),Au=new I$1(""),Jp=(()=>{class e{_zone;_plugins;_eventNameToPlugin=new Map;constructor(t,r){this._zone=r,t.forEach(s=>{s.manager=this;});let o=t.filter(s=>!(s instanceof _u));this._plugins=o.slice().reverse();let i=t.find(s=>s instanceof _u);i&&this._plugins.push(i);}addEventListener(t,r,o,i){return this._findPluginFor(r).addEventListener(t,r,o,i)}getZone(){return this._zone}_findPluginFor(t){let r=this._eventNameToPlugin.get(t);if(r)return r;if(r=this._plugins.find(i=>i.supports(t)),!r)throw new w(-5101,false);return this._eventNameToPlugin.set(t,r),r}static \u0275fac=function(r){return new(r||e)(M$1(Au),M$1(de$1))};static \u0275prov=b({token:e,factory:e.\u0275fac})}return e})(),Kp="ng-app-id";function ew(e){for(let n of e)n.remove();}function tw(e,n){let t=n.createElement("style");return t.textContent=e,t}function TA(e,n,t,r){let o=e.head?.querySelectorAll(`style[${Kp}="${n}"],link[${Kp}="${n}"]`);if(!o||o.length===0)return false;for(let i of o)i.removeAttribute(Kp),i instanceof HTMLLinkElement?r.set(i.href.slice(i.href.lastIndexOf("/")+1),{usage:0,elements:[i]}):i.textContent&&t.set(i.textContent,{usage:0,elements:[i]});return true}function Xp(e,n){let t=n.createElement("link");return t.setAttribute("rel","stylesheet"),t.setAttribute("href",e),t}var eh=(()=>{class e{doc;appId;nonce;inline=new Map;external=new Map;hosts=new Set;constructor(t,r,o,i={}){this.doc=t,this.appId=r,this.nonce=o,TA(t,r,this.inline,this.external)&&this.hosts.add(t.head);}addStyles(t,r){for(let o of t)this.addUsage(o,this.inline,tw);r?.forEach(o=>this.addUsage(o,this.external,Xp));}removeStyles(t,r){for(let o of t)this.removeUsage(o,this.inline);r?.forEach(o=>this.removeUsage(o,this.external));}addUsage(t,r,o){let i=r.get(t);i?i.usage++:r.set(t,{usage:1,elements:[...this.hosts].map(s=>this.addElement(s,o(t,this.doc)))});}removeUsage(t,r){let o=r.get(t);o&&(o.usage--,o.usage<=0&&(ew(o.elements),r.delete(t)));}ngOnDestroy(){for(let[,{elements:t}]of [...this.inline,...this.external])ew(t);this.hosts.clear();}addHost(t){if(!this.hosts.has(t)){this.hosts.add(t);for(let[r,{elements:o}]of this.inline)o.push(this.addElement(t,tw(r,this.doc)));for(let[r,{elements:o}]of this.external)o.push(this.addElement(t,Xp(r,this.doc)));}}removeHost(t){this.hosts.delete(t);for(let r of [...this.inline.values(),...this.external.values()]){let o=[];for(let i of r.elements)i.parentNode===t?i.remove():o.push(i);r.elements=o;}}addElement(t,r){return this.nonce&&r.setAttribute("nonce",this.nonce),t.appendChild(r)}static \u0275fac=function(r){return new(r||e)(M$1(G$1),M$1(Pi$1),M$1(Fi$1,8),M$1(Nr$1))};static \u0275prov=b({token:e,factory:e.\u0275fac})}return e})(),Qp={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/",math:"http://www.w3.org/1998/Math/MathML"},th=/%COMP%/g;var rw="%COMP%",_A=`_nghost-${rw}`,MA=`_ngcontent-${rw}`,NA=true,AA=new I$1("",{factory:()=>NA});function RA(e){return MA.replace(th,e)}function xA(e){return _A.replace(th,e)}function ow(e,n){return n.map(t=>t.replace(th,e))}var nh=(()=>{class e{eventManager;sharedStylesHost;appId;removeStylesOnCompDestroy;doc;ngZone;nonce;tracingService;rendererByCompId=new Map;defaultRenderer;constructor(t,r,o,i,s,a,c=null,u=null){this.eventManager=t,this.sharedStylesHost=r,this.appId=o,this.removeStylesOnCompDestroy=i,this.doc=s,this.ngZone=a,this.nonce=c,this.tracingService=u,this.defaultRenderer=new Ss$1(t,s,a,this.tracingService);}createRenderer(t,r){if(!t||!r)return this.defaultRenderer;let o=this.getOrCreateRenderer(t,r);return o instanceof Nu?o.applyToHost(t):o instanceof bs$1&&o.applyStyles(),o}getOrCreateRenderer(t,r){let o=this.rendererByCompId,i=o.get(r.id);if(!i){let s=this.doc,a=this.ngZone,c=this.eventManager,u=this.sharedStylesHost,l=this.removeStylesOnCompDestroy,d=this.tracingService;switch(r.encapsulation){case At$1.Emulated:i=new Nu(c,u,r,this.appId,l,s,a,d);break;case At$1.ShadowDom:return new Mu(c,t,r,s,a,this.nonce,d,u);case At$1.ExperimentalIsolatedShadowDom:return new Mu(c,t,r,s,a,this.nonce,d);default:i=new bs$1(c,u,r,l,s,a,d);break}o.set(r.id,i);}return i}ngOnDestroy(){this.rendererByCompId.clear();}componentReplaced(t){this.rendererByCompId.delete(t);}static \u0275fac=function(r){return new(r||e)(M$1(Jp),M$1(Br$1),M$1(Pi$1),M$1(AA),M$1(G$1),M$1(de$1),M$1(Fi$1),M$1(Kt$1,8))};static \u0275prov=b({token:e,factory:e.\u0275fac})}return e})(),Ss$1=class Ss{eventManager;doc;ngZone;tracingService;data=Object.create(null);throwOnSyntheticProps=true;constructor(n,t,r,o){this.eventManager=n,this.doc=t,this.ngZone=r,this.tracingService=o;}destroy(){}destroyNode=null;createElement(n,t){return t?this.doc.createElementNS(Qp[t]||t,n):this.doc.createElement(n)}createComment(n){return this.doc.createComment(n)}createText(n){return this.doc.createTextNode(n)}appendChild(n,t){(nw(n)?n.content:n).appendChild(t);}insertBefore(n,t,r){n&&(nw(n)?n.content:n).insertBefore(t,r);}removeChild(n,t){t.remove();}selectRootElement(n,t){let r=typeof n=="string"?this.doc.querySelector(n):n;if(!r)throw new w(-5104,false);return t||(r.textContent=""),r}parentNode(n){return n.parentNode}nextSibling(n){return n.nextSibling}setAttribute(n,t,r,o){if(o){t=o+":"+t;let i=Qp[o];i?n.setAttributeNS(i,t,r):n.setAttribute(t,r);}else n.setAttribute(t,r);}removeAttribute(n,t,r){if(r){let o=Qp[r];o?n.removeAttributeNS(o,t):n.removeAttribute(`${r}:${t}`);}else n.removeAttribute(t);}addClass(n,t){n.classList.add(t);}removeClass(n,t){n.classList.remove(t);}setStyle(n,t,r,o){o&(qt$1.DashCase|qt$1.Important)?n.style.setProperty(t,r,o&qt$1.Important?"important":""):n.style[t]=r;}removeStyle(n,t,r){r&qt$1.DashCase?n.style.removeProperty(t):n.style[t]="";}setProperty(n,t,r){n!=null&&(n[t]=r);}setValue(n,t){n.nodeValue=t;}listen(n,t,r,o){if(typeof n=="string"&&(n=vn$1().getGlobalEventTarget(this.doc,n),!n))throw new w(-5102,false);let i=this.decoratePreventDefault(r);return this.tracingService?.wrapEventListener&&(i=this.tracingService.wrapEventListener(n,t,i)),this.eventManager.addEventListener(n,t,i,o)}decoratePreventDefault(n){return t=>{if(t==="__ngUnwrap__")return n;n(t)===false&&t.preventDefault();}}};function nw(e){return e.tagName==="TEMPLATE"&&e.content!==void 0}var Mu=class extends Ss$1{hostEl;sharedStylesHost;shadowRoot;constructor(n,t,r,o,i,s,a,c){super(n,o,i,a),this.hostEl=t,this.sharedStylesHost=c,this.shadowRoot=t.attachShadow({mode:"open"}),this.sharedStylesHost&&this.sharedStylesHost.addHost(this.shadowRoot);let u=r.styles;u=ow(r.id,u);for(let d of u){let f=document.createElement("style");s&&f.setAttribute("nonce",s),f.textContent=d,this.shadowRoot.appendChild(f);}let l=r.getExternalStyles?.();if(l)for(let d of l){let f=Xp(d,o);s&&f.setAttribute("nonce",s),this.shadowRoot.appendChild(f);}}nodeOrShadowRoot(n){return n===this.hostEl?this.shadowRoot:n}appendChild(n,t){return super.appendChild(this.nodeOrShadowRoot(n),t)}insertBefore(n,t,r){return super.insertBefore(this.nodeOrShadowRoot(n),t,r)}removeChild(n,t){return super.removeChild(null,t)}parentNode(n){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(n)))}destroy(){this.sharedStylesHost&&this.sharedStylesHost.removeHost(this.shadowRoot);}},bs$1=class bs extends Ss$1{sharedStylesHost;removeStylesOnCompDestroy;styles;styleUrls;constructor(n,t,r,o,i,s,a,c){super(n,i,s,a),this.sharedStylesHost=t,this.removeStylesOnCompDestroy=o;let u=r.styles;this.styles=c?ow(c,u):u,this.styleUrls=r.getExternalStyles?.(c);}applyStyles(){this.sharedStylesHost.addStyles(this.styles,this.styleUrls);}destroy(){this.removeStylesOnCompDestroy&&hn$1.size===0&&this.sharedStylesHost.removeStyles(this.styles,this.styleUrls);}},Nu=class extends bs$1{contentAttr;hostAttr;constructor(n,t,r,o,i,s,a,c){let u=o+"-"+r.id;super(n,t,r,i,s,a,c,u),this.contentAttr=RA(u),this.hostAttr=xA(u);}applyToHost(n){this.applyStyles(),this.setAttribute(n,this.hostAttr,"");}createElement(n,t){let r=super.createElement(n,t);return super.setAttribute(r,this.contentAttr,""),r}};var Ru=class e extends ys$1{supportsDOMEvents=true;static makeCurrent(){Hp(new e);}onAndCancel(n,t,r,o){return n.addEventListener(t,r,o),()=>{n.removeEventListener(t,r,o);}}dispatchEvent(n,t){n.dispatchEvent(t);}remove(n){n.remove();}createElement(n,t){return t=t||this.getDefaultDocument(),t.createElement(n)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(n){return n.nodeType===Node.ELEMENT_NODE}isShadowRoot(n){return n instanceof DocumentFragment}getGlobalEventTarget(n,t){return t==="window"?window:t==="document"?n:t==="body"?n.body:null}getBaseHref(n){let t=OA();return t==null?null:LA(t)}resetBaseElement(){Ts=null;}getUserAgent(){return window.navigator.userAgent}getCookie(n){return Is$1(document.cookie,n)}},Ts=null;function OA(){return Ts=Ts||document.head.querySelector("base"),Ts?Ts.getAttribute("href"):null}function LA(e){return new URL(e,document.baseURI).pathname}var iw=["alt","control","meta","shift"],kA={"\b":"Backspace"," ":"Tab","\x7F":"Delete","\x1B":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},PA={alt:e=>e.altKey,control:e=>e.ctrlKey,meta:e=>e.metaKey,shift:e=>e.shiftKey},sw=(()=>{class e extends Cs$1{constructor(t){super(t);}supports(t){return e.parseEventName(t)!=null}addEventListener(t,r,o,i){let s=e.parseEventName(r),a=e.eventCallback(s.fullKey,o,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>vn$1().onAndCancel(t,s.domEventName,a,i))}static parseEventName(t){let r=t.toLowerCase().split("."),o=r.shift();if(r.length===0||!(o==="keydown"||o==="keyup"))return null;let i=e._normalizeKey(r.pop()),s="",a=r.indexOf("code");if(a>-1&&(r.splice(a,1),s="code."),iw.forEach(u=>{let l=r.indexOf(u);l>-1&&(r.splice(l,1),s+=u+".");}),s+=i,r.length!=0||i.length===0)return null;let c={};return c.domEventName=o,c.fullKey=s,c}static matchEventFullKeyCode(t,r){let o=kA[t.key]||t.key,i="";return r.indexOf("code.")>-1&&(o=t.code,i="code."),o==null||!o?false:(o=o.toLowerCase(),o===" "?o="space":o==="."&&(o="dot"),iw.forEach(s=>{if(s!==o){let a=PA[s];a(t)&&(i+=s+".");}}),i+=o,i===r)}static eventCallback(t,r,o){return i=>{e.matchEventFullKeyCode(i,t)&&o.runGuarded(()=>r(i));}}static _normalizeKey(t){return t==="esc"?"escape":t}static \u0275fac=function(r){return new(r||e)(M$1(G$1))};static \u0275prov=b({token:e,factory:e.\u0275fac})}return e})();async function FA(e,n,t){let r=l({rootComponent:e},jA(n,t));return AD(r)}function jA(e,n){return {platformRef:n?.platformRef,appProviders:[...$A,...e?.providers??[]],platformProviders:VA}}function UA(){Ru.makeCurrent();}function BA(){return new ct$1}function HA(){return jf(document),document}var VA=[{provide:Nr$1,useValue:Yp},{provide:ac$1,useValue:UA,multi:true},{provide:G$1,useFactory:HA}];var $A=[{provide:Ni$1,useValue:"root"},{provide:ct$1,useFactory:BA},{provide:Au,useClass:_u,multi:true},{provide:Au,useClass:sw,multi:true},nh,{provide:Br$1,useClass:eh},{provide:eh,useExisting:Br$1},Jp,{provide:kr$1,useExisting:nh},[]];var Cn$1=class e{headers;normalizedNames=new Map;lazyInit;lazyUpdate=null;constructor(n){n?typeof n=="string"?this.lazyInit=()=>{this.headers=new Map,n.split(` +`).forEach(t=>{let r=t.indexOf(":");if(r>0){let o=t.slice(0,r),i=t.slice(r+1).trim();this.addHeaderEntry(o,i);}});}:typeof Headers<"u"&&n instanceof Headers?(this.headers=new Map,n.forEach((t,r)=>{this.addHeaderEntry(r,t);})):this.lazyInit=()=>{this.headers=new Map,Object.entries(n).forEach(([t,r])=>{this.setHeaderEntries(t,r);});}:this.headers=new Map;}has(n){return this.init(),this.headers.has(n.toLowerCase())}get(n){this.init();let t=this.headers.get(n.toLowerCase());return t&&t.length>0?t[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(n){return this.init(),this.headers.get(n.toLowerCase())||null}append(n,t){return this.clone({name:n,value:t,op:"a"})}set(n,t){return this.clone({name:n,value:t,op:"s"})}delete(n,t){return this.clone({name:n,value:t,op:"d"})}maybeSetNormalizedName(n,t){this.normalizedNames.has(t)||this.normalizedNames.set(t,n);}init(){this.lazyInit&&(this.lazyInit instanceof e?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(n=>this.applyUpdate(n)),this.lazyUpdate=null));}copyFrom(n){n.init(),Array.from(n.headers.keys()).forEach(t=>{this.headers.set(t,n.headers.get(t)),this.normalizedNames.set(t,n.normalizedNames.get(t));});}clone(n){let t=new e;return t.lazyInit=this.lazyInit&&this.lazyInit instanceof e?this.lazyInit:this,t.lazyUpdate=(this.lazyUpdate||[]).concat([n]),t}applyUpdate(n){let t=n.name.toLowerCase();switch(n.op){case "a":case "s":let r=n.value;if(typeof r=="string"&&(r=[r]),r.length===0)return;this.maybeSetNormalizedName(n.name,t);let o=(n.op==="a"?this.headers.get(t):void 0)||[];o.push(...r),this.headers.set(t,o);break;case "d":let i=n.value;if(!i)this.headers.delete(t),this.normalizedNames.delete(t);else {let s=this.headers.get(t);if(!s)return;s=s.filter(a=>i.indexOf(a)===-1),s.length===0?(this.headers.delete(t),this.normalizedNames.delete(t)):this.headers.set(t,s);}break}}addHeaderEntry(n,t){let r=n.toLowerCase();this.maybeSetNormalizedName(n,r),this.headers.has(r)?this.headers.get(r).push(t):this.headers.set(r,[t]);}setHeaderEntries(n,t){let r=(Array.isArray(t)?t:[t]).map(i=>i.toString()),o=n.toLowerCase();this.headers.set(o,r),this.maybeSetNormalizedName(n,o);}forEach(n){this.init(),Array.from(this.normalizedNames.keys()).forEach(t=>n(this.normalizedNames.get(t),this.headers.get(t)));}};var Ou=class{map=new Map;set(n,t){return this.map.set(n,t),this}get(n){return this.map.has(n)||this.map.set(n,n.defaultValue()),this.map.get(n)}delete(n){return this.map.delete(n),this}has(n){return this.map.has(n)}keys(){return this.map.keys()}},Lu=class{encodeKey(n){return aw(n)}encodeValue(n){return aw(n)}decodeKey(n){return decodeURIComponent(n)}decodeValue(n){return decodeURIComponent(n)}};function zA(e,n){let t=new Map;return e.length>0&&e.replace(/^\?/,"").split("&").forEach(o=>{let i=o.indexOf("="),[s,a]=i==-1?[n.decodeKey(o),""]:[n.decodeKey(o.slice(0,i)),n.decodeValue(o.slice(i+1))],c=t.get(s)||[];c.push(a),t.set(s,c);}),t}var GA=/%(\d[a-f0-9])/gi,WA={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function aw(e){return encodeURIComponent(e).replace(GA,(n,t)=>WA[t]??n)}function xu(e){return `${e}`}var In$1=class e{map;encoder;updates=null;cloneFrom=null;constructor(n={}){if(this.encoder=n.encoder||new Lu,n.fromString){if(n.fromObject)throw new w(2805,false);this.map=zA(n.fromString,this.encoder);}else n.fromObject?(this.map=new Map,Object.keys(n.fromObject).forEach(t=>{let r=n.fromObject[t],o=Array.isArray(r)?r.map(xu):[xu(r)];this.map.set(t,o);})):this.map=null;}has(n){return this.init(),this.map.has(n)}get(n){this.init();let t=this.map.get(n);return t?t[0]:null}getAll(n){return this.init(),this.map.get(n)||null}keys(){return this.init(),Array.from(this.map.keys())}append(n,t){return this.clone({param:n,value:t,op:"a"})}appendAll(n){let t=[];return Object.keys(n).forEach(r=>{let o=n[r];Array.isArray(o)?o.forEach(i=>{t.push({param:r,value:i,op:"a"});}):t.push({param:r,value:o,op:"a"});}),this.clone(t)}set(n,t){return this.clone({param:n,value:t,op:"s"})}delete(n,t){return this.clone({param:n,value:t,op:"d"})}toString(){return this.init(),this.keys().map(n=>{let t=this.encoder.encodeKey(n);return this.map.get(n).map(r=>t+"="+this.encoder.encodeValue(r)).join("&")}).filter(n=>n!=="").join("&")}clone(n){let t=new e({encoder:this.encoder});return t.cloneFrom=this.cloneFrom||this,t.updates=(this.updates||[]).concat(n),t}init(){this.map===null&&(this.map=new Map),this.cloneFrom!==null&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(n=>this.map.set(n,this.cloneFrom.map.get(n))),this.updates.forEach(n=>{switch(n.op){case "a":case "s":let t=(n.op==="a"?this.map.get(n.param):void 0)||[];t.push(xu(n.value)),this.map.set(n.param,t);break;case "d":if(n.value!==void 0){let r=this.map.get(n.param)||[],o=r.indexOf(xu(n.value));o!==-1&&r.splice(o,1),r.length>0?this.map.set(n.param,r):this.map.delete(n.param);}else {this.map.delete(n.param);break}}}),this.cloneFrom=this.updates=null);}};function qA(e){switch(e){case "DELETE":case "GET":case "HEAD":case "OPTIONS":case "JSONP":return false;default:return true}}function cw(e){return typeof ArrayBuffer<"u"&&e instanceof ArrayBuffer}function uw(e){return typeof Blob<"u"&&e instanceof Blob}function lw(e){return typeof FormData<"u"&&e instanceof FormData}function YA(e){return typeof URLSearchParams<"u"&&e instanceof URLSearchParams}var rh="Content-Type",dw="Accept",pw="text/plain",hw="application/json",ZA=`${hw}, ${pw}, */*`,Vo$1=class e{url;body=null;headers;context;reportProgress=false;reportUploadProgress=false;reportDownloadProgress=false;withCredentials=false;credentials;keepalive=false;cache;priority;mode;redirect;referrer;integrity;referrerPolicy;responseType="json";method;params;urlWithParams;transferCache;timeout;constructor(n,t,r,o){this.url=t,this.method=n.toUpperCase();let i;if(qA(this.method)||o?(this.body=r!==void 0?r:null,i=o):i=r,i){if(this.reportProgress=!!i.reportProgress,this.reportUploadProgress=!!i.reportUploadProgress,this.reportDownloadProgress=!!i.reportDownloadProgress,this.withCredentials=!!i.withCredentials,this.keepalive=!!i.keepalive,i.responseType&&(this.responseType=i.responseType),i.headers&&(this.headers=i.headers),i.context&&(this.context=i.context),i.params&&(this.params=i.params),i.priority&&(this.priority=i.priority),i.cache&&(this.cache=i.cache),i.credentials&&(this.credentials=i.credentials),typeof i.timeout=="number"){if(i.timeout<1||!Number.isInteger(i.timeout))throw new w(2822,"");this.timeout=i.timeout;}i.mode&&(this.mode=i.mode),i.redirect&&(this.redirect=i.redirect),i.integrity&&(this.integrity=i.integrity),i.referrer!==void 0&&(this.referrer=i.referrer),i.referrerPolicy&&(this.referrerPolicy=i.referrerPolicy),this.transferCache=i.transferCache;}if(this.headers??=new Cn$1,this.context??=new Ou,!this.params)this.params=new In$1,this.urlWithParams=t;else {let s=this.params.toString();if(s.length===0)this.urlWithParams=t;else {let a=t,c="",u=t.indexOf("#");u!==-1&&(c=t.substring(u),a=t.substring(0,u));let l=a.indexOf("?"),d=l===-1?"?":lCe.set(at,n.setHeaders[at]),le)),n.setParams&&(Ne=Object.keys(n.setParams).reduce((Ce,at)=>Ce.set(at,n.setParams[at]),Ne)),new e(t,r,y,{params:Ne,headers:le,context:ge,reportProgress:D,reportUploadProgress:S,reportDownloadProgress:k,responseType:o,withCredentials:E,transferCache:h,keepalive:i,cache:a,priority:s,timeout:m,mode:c,redirect:u,credentials:l,referrer:d,integrity:f,referrerPolicy:p})}},$o$1=(function(e){return e[e.Sent=0]="Sent",e[e.UploadProgress=1]="UploadProgress",e[e.ResponseHeader=2]="ResponseHeader",e[e.DownloadProgress=3]="DownloadProgress",e[e.Response=4]="Response",e[e.User=5]="User",e})($o$1||{}),zo$1=class zo{headers;status;statusText;url;ok;type;redirected;responseType;constructor(n,t=200,r="OK"){this.headers=n.headers||new Cn$1,this.status=n.status!==void 0?n.status:t,this.statusText=n.statusText||r,this.url=n.url||null,this.redirected=n.redirected,this.responseType=n.responseType,this.ok=this.status>=200&&this.status<300;}},ku=class e extends zo$1{constructor(n={}){super(n);}type=$o$1.ResponseHeader;clone(n={}){return new e({headers:n.headers||this.headers,status:n.status!==void 0?n.status:this.status,statusText:n.statusText||this.statusText,url:n.url||this.url||void 0})}},_s=class e extends zo$1{body;constructor(n={}){super(n),this.body=n.body!==void 0?n.body:null;}type=$o$1.Response;clone(n={}){return new e({body:n.body!==void 0?n.body:this.body,headers:n.headers||this.headers,status:n.status!==void 0?n.status:this.status,statusText:n.statusText||this.statusText,url:n.url||this.url||void 0,redirected:n.redirected??this.redirected,responseType:n.responseType??this.responseType})}},Vr$1=class Vr extends zo$1{name="HttpErrorResponse";message;error;ok=false;constructor(n){super(n,0,"Unknown Error"),this.status>=200&&this.status<300?this.message=`Http failure during parsing for ${n.url||"(unknown url)"}`:this.message=`Http failure response for ${n.url||"(unknown url)"}: ${n.status} ${n.statusText}`,this.error=n.error||null;}},KA=200;var QA=/^\)\]\}',?\n/,gw=new I$1("",{factory:()=>null}),Pu=(()=>{class e{fetchImpl=g(ih,{optional:true})?.fetch??((...t)=>globalThis.fetch(...t));ngZone=g(de$1);destroyRef=g(_e$1);maxResponseSize=g(gw);handle(t){return new P$1(r=>{let o=new AbortController;this.doRequest(t,o.signal,r).then(sh,s=>r.error(new Vr$1({error:s})));let i;return t.timeout&&(i=this.ngZone.runOutsideAngular(()=>setTimeout(()=>{o.signal.aborted||o.abort(new DOMException("signal timed out","TimeoutError"));},t.timeout))),()=>{i!==void 0&&clearTimeout(i),o.abort();}})}async doRequest(t,r,o){let i=this.createRequestInit(t),s;try{let y=this.ngZone.runOutsideAngular(()=>this.fetchImpl(t.urlWithParams,l({signal:r},i)));XA(y),o.next({type:$o$1.Sent}),s=await y;}catch(y){o.error(new Vr$1({error:y,status:y.status??0,statusText:y.statusText,url:t.urlWithParams,headers:y.headers}));return}let a=new Cn$1(s.headers),c=s.statusText,u=s.url||t.urlWithParams,l$1=s.status,d=null,f=t.reportProgress||t.reportDownloadProgress;if(f&&o.next(new ku({headers:a,status:l$1,statusText:c,url:u})),s.body){let y=s.headers.get("content-length"),E=y!==null?Number(y):NaN;this.maxResponseSize!==null&&Number.isFinite(E)&&E>this.maxResponseSize&&fw(this.maxResponseSize);let D=[],S=s.body.getReader(),k=0,le,Ne,ge=typeof Zone<"u"&&Zone.current,Ce=false;if(await this.ngZone.runOutsideAngular(async()=>{for(;;){if(this.destroyRef.destroyed){await S.cancel(),Ce=true;break}let{done:It,value:Nn}=await S.read();if(It)break;if(D.push(Nn),k+=Nn.length,this.maxResponseSize!==null&&k>this.maxResponseSize&&(await S.cancel(),fw(this.maxResponseSize)),f){Ne=t.responseType==="text"?(Ne??"")+(le??=new TextDecoder).decode(Nn,{stream:true}):void 0;let eo=()=>o.next({type:$o$1.DownloadProgress,total:Number.isFinite(E)?E:void 0,loaded:k,partialText:Ne});ge?ge.run(eo):eo();}}}),Ce){o.complete();return}let at=this.concatChunks(D,k);try{let It=s.headers.get(rh)??"";d=this.parseBody(t,at,It,l$1);}catch(It){o.error(new Vr$1({error:It,headers:new Cn$1(s.headers),status:s.status,statusText:s.statusText,url:s.url||t.urlWithParams}));return}}l$1===0&&(l$1=d?KA:0);let p=l$1>=200&&l$1<300,h=s.redirected,m=s.type;p?(o.next(new _s({body:d,headers:a,status:l$1,statusText:c,url:u,redirected:h,responseType:m})),o.complete()):o.error(new Vr$1({error:d,headers:a,status:l$1,statusText:c,url:u,redirected:h,responseType:m}));}parseBody(t,r,o,i){switch(t.responseType){case "json":let s=new TextDecoder().decode(r).replace(QA,"");if(s==="")return null;try{return JSON.parse(s)}catch(a){if(i<200||i>=300)return s;throw a}case "text":return new TextDecoder().decode(r);case "blob":return new Blob([r],{type:o});case "arraybuffer":return r.buffer}}createRequestInit(t){if(t.reportUploadProgress)throw new w(2824,false);let r={},o;if(o=t.credentials,t.withCredentials&&(o="include"),t.headers.forEach((i,s)=>r[i]=s.join(",")),t.headers.has(dw)||(r[dw]=ZA),!t.headers.has(rh)){let i=t.detectContentTypeHeader();i!==null&&(r[rh]=i);}return {body:t.serializeBody(),method:t.method,headers:r,credentials:o,keepalive:t.keepalive,cache:t.cache,priority:t.priority,mode:t.mode,redirect:t.redirect,referrer:t.referrer,integrity:t.integrity,referrerPolicy:t.referrerPolicy}}concatChunks(t,r){let o=new Uint8Array(r),i=0;for(let s of t)o.set(s,i),i+=s.length;return o}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})(),ih=class{};function sh(){}function XA(e){e.then(sh,sh);}function fw(e){throw new w(-2825,false)}function JA(e,n){return n(e)}function eR(e,n,t){return (r,o)=>Ee$1(t,()=>n(r,i=>e(i,o)))}var ah=new I$1("",{factory:()=>[]}),mw=new I$1(""),yw=new I$1("",{factory:()=>true});var ch=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:function(r){let o=null;return r?o=new(r||e):o=M$1(Pu),o},providedIn:"root"})}return e})();var Fu=(()=>{class e{backend;injector;chain=null;pendingTasks=g(Hi$1);contributeToStability=g(yw);constructor(t,r){this.backend=t,this.injector=r;}handle(t){if(this.chain===null){let r=Array.from(new Set([...this.injector.get(ah),...this.injector.get(mw,[])]));this.chain=r.reduceRight((o,i)=>eR(o,i,this.injector),JA);}if(this.contributeToStability){let r=this.pendingTasks.add();return this.chain(t,o=>this.backend.handle(o)).pipe(yi$1(r))}else return this.chain(t,r=>this.backend.handle(r))}static \u0275fac=function(r){return new(r||e)(M$1(ch),M$1(ne$1))};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),uh=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:function(r){let o=null;return r?o=new(r||e):o=M$1(Fu),o},providedIn:"root"})}return e})();function oh(e,n){return l({body:n},e)}var vw=(()=>{class e{handler;constructor(t){this.handler=t;}request(t,r,o={}){let i;if(t instanceof Vo$1)i=t;else {let c;o.headers instanceof Cn$1?c=o.headers:c=new Cn$1(o.headers);let u;o.params&&(o.params instanceof In$1?u=o.params:u=new In$1({fromObject:o.params})),i=new Vo$1(t,r,o.body!==void 0?o.body:null,{headers:c,context:o.context,params:u,reportProgress:o.reportProgress,reportUploadProgress:o.reportUploadProgress,reportDownloadProgress:o.reportDownloadProgress,responseType:o.responseType||"json",withCredentials:o.withCredentials,transferCache:o.transferCache,keepalive:o.keepalive,priority:o.priority,cache:o.cache,mode:o.mode,redirect:o.redirect,credentials:o.credentials,referrer:o.referrer,referrerPolicy:o.referrerPolicy,integrity:o.integrity,timeout:o.timeout});}let s=A$1(i).pipe(Pn$1(c=>this.handler.handle(c)));if(t instanceof Vo$1||o.observe==="events")return s;let a=s.pipe(Ke$1(c=>c instanceof _s));switch(o.observe||"body"){case "body":switch(i.responseType){case "arraybuffer":return a.pipe(Z$1(c=>{if(c.body!==null&&!(c.body instanceof ArrayBuffer))throw new w(2806,false);return c.body}));case "blob":return a.pipe(Z$1(c=>{if(c.body!==null&&!(c.body instanceof Blob))throw new w(2807,false);return c.body}));case "text":return a.pipe(Z$1(c=>{if(c.body!==null&&typeof c.body!="string")throw new w(2808,false);return c.body}));default:return a.pipe(Z$1(c=>c.body))}case "response":return a;default:throw new w(2809,false)}}delete(t,r={}){return this.request("DELETE",t,r)}get(t,r={}){return this.request("GET",t,r)}head(t,r={}){return this.request("HEAD",t,r)}jsonp(t,r){return this.request("JSONP",t,{params:new In$1().append(r,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(t,r={}){return this.request("OPTIONS",t,r)}patch(t,r,o={}){return this.request("PATCH",t,oh(o,r))}post(t,r,o={}){return this.request("POST",t,oh(o,r))}put(t,r,o={}){return this.request("PUT",t,oh(o,r))}static \u0275fac=function(r){return new(r||e)(M$1(uh))};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var tR=new I$1("",{factory:()=>true}),nR="XSRF-TOKEN",rR=new I$1("",{factory:()=>nR}),oR="X-XSRF-TOKEN",iR=new I$1("",{factory:()=>oR}),sR=(()=>{class e{cookieName=g(rR);doc=g(G$1);lastCookieString="";lastToken=null;parseCount=0;getToken(){let t=this.doc.cookie||"";return t!==this.lastCookieString&&(this.parseCount++,this.lastToken=Is$1(t,this.cookieName),this.lastCookieString=t),this.lastToken}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})(),Ew=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:function(r){let o=null;return r?o=new(r||e):o=M$1(sR),o},providedIn:"root"})}return e})();function aR(e,n){if(!g(tR)||e.method==="GET"||e.method==="HEAD")return n(e);try{let o=g(En$1).href,{origin:i}=new URL(o),{origin:s}=new URL(e.url,i);if(i!==s)return n(e)}catch{return n(e)}let t=g(Ew).getToken(),r=g(iR);return t!=null&&!e.headers.has(r)&&(e=e.clone({headers:e.headers.set(r,t)})),n(e)}var lh=(function(e){return e[e.Interceptors=0]="Interceptors",e[e.LegacyInterceptors=1]="LegacyInterceptors",e[e.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",e[e.NoXsrfProtection=3]="NoXsrfProtection",e[e.JsonpSupport=4]="JsonpSupport",e[e.RequestsMadeViaParent=5]="RequestsMadeViaParent",e[e.Fetch=6]="Fetch",e[e.Xhr=7]="Xhr",e})(lh||{});function cR(e,n){return {\u0275kind:e,\u0275providers:n}}function uR(...e){let n=[vw,Pu,Fu,{provide:uh,useExisting:Fu},{provide:ch,useFactory:()=>g(Pu)},{provide:ah,useValue:aR,multi:true}];for(let t of e)n.push(...t.\u0275providers);return dt$1(n)}function lR(e){return cR(lh.Interceptors,e.map(n=>({provide:ah,useValue:n,multi:true})))}var Dw=(()=>{class e{_doc;constructor(t){this._doc=t;}getTitle(){return this._doc.title}setTitle(t){this._doc.title=t||"";}static \u0275fac=function(r){return new(r||e)(M$1(G$1))};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var dR=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:function(r){let o=null;return r?o=new(r||e):o=M$1(fR),o},providedIn:"root"})}return e})(),fR=(()=>{class e extends dR{_doc=g(G$1);sanitize(t,r){if(r==null)return null;switch(t){case vt$1.NONE:return r;case vt$1.HTML:return Zt$1(r,"HTML")?Be$1(r):Wc$1(this._doc,String(r)).toString();case vt$1.STYLE:return Zt$1(r,"Style")?Be$1(r):r;case vt$1.SCRIPT:if(Zt$1(r,"Script"))return Be$1(r);throw new w(5200,false);case vt$1.URL:return Zt$1(r,"URL")?Be$1(r):rs$1(String(r));case vt$1.RESOURCE_URL:if(Zt$1(r,"ResourceURL"))return Be$1(r);throw new w(5201,false);default:throw new w(5202,false)}}bypassSecurityTrustHtml(t){return Vf(t)}bypassSecurityTrustStyle(t){return $f(t)}bypassSecurityTrustScript(t){return zf(t)}bypassSecurityTrustUrl(t){return Gf(t)}bypassSecurityTrustResourceUrl(t){return Wf(t)}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})();var x="primary",Bs$1=Symbol("RouteTitle"),gh=class{params;constructor(n){this.params=n||{};}has(n){return Object.prototype.hasOwnProperty.call(this.params,n)}get(n){if(this.has(n)){let t=this.params[n];return Array.isArray(t)?t[0]:t}return null}getAll(n){if(this.has(n)){let t=this.params[n];return Array.isArray(t)?t:[t]}return []}get keys(){return Object.keys(this.params)}};function zr(e){return new gh(e)}function dh(e,n,t){for(let r=0;re.length||t.pathMatch==="full"&&(n.hasChildren()||r.lengthe.length||t.pathMatch==="full"&&n.hasChildren()&&t.path!=="**")return null;let a={};return !dh(i,e.slice(0,i.length),a)||!dh(s,e.slice(e.length-s.length),a)?null:{consumed:e,posParams:a}}function $u(e){return new Promise((n,t)=>{e.pipe(an$1()).subscribe({next:r=>n(r),error:r=>t(r)});})}function hR(e,n){if(e.length!==n.length)return false;for(let t=0;tr[i]===o)}else return e===n}function gR(e){return e.length>0?e[e.length-1]:null}function Wr$1(e){return _a$1(e)?e:Fo$1(e)?te$1(Promise.resolve(e)):A$1(e)}function Aw(e){return _a$1(e)?$u(e):Promise.resolve(e)}var mR={exact:xw,subset:Ow},Rw={exact:yR,subset:vR,ignored:()=>true},Ah={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},xs$1={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};function Rh(e,n,t){let r=e instanceof Ve$1?e:n.parseUrl(e);return gs$1(()=>yh(n.lastSuccessfulNavigation()?.finalUrl??new Ve$1,r,l(l({},xs$1),t)))}function yh(e,n,t){return mR[t.paths](e.root,n.root,t.matrixParams)&&Rw[t.queryParams](e.queryParams,n.queryParams)&&!(t.fragment==="exact"&&e.fragment!==n.fragment)}function yR(e,n){return Qt$1(e,n)}function xw(e,n,t){if(!$r$1(e.segments,n.segments)||!Bu(e.segments,n.segments,t)||e.numberOfChildren!==n.numberOfChildren)return false;for(let r in n.children)if(!e.children[r]||!xw(e.children[r],n.children[r],t))return false;return true}function vR(e,n){return Object.keys(n).length<=Object.keys(e).length&&Object.keys(n).every(t=>Nw(e[t],n[t]))}function Ow(e,n,t){return Lw(e,n,n.segments,t)}function Lw(e,n,t,r){if(e.segments.length>t.length){let o=e.segments.slice(0,t.length);return !(!$r$1(o,t)||n.hasChildren()||!Bu(o,t,r))}else if(e.segments.length===t.length){if(!$r$1(e.segments,t)||!Bu(e.segments,t,r))return false;for(let o in n.children)if(!e.children[o]||!Ow(e.children[o],n.children[o],r))return false;return true}else {let o=t.slice(0,e.segments.length),i=t.slice(e.segments.length);return !$r$1(e.segments,o)||!Bu(e.segments,o,r)||!e.children[x]?false:Lw(e.children[x],n,i,r)}}function Bu(e,n,t){return n.every((r,o)=>Rw[t](e[o].parameters,r.parameters))}var Ve$1=class Ve{root;queryParams;fragment;_queryParamMap;constructor(n=new V$1([],{}),t={},r=null){this.root=n,this.queryParams=t,this.fragment=r;}get queryParamMap(){return this._queryParamMap??=zr(this.queryParams),this._queryParamMap}toString(){return wR.serialize(this)}},V$1=class V{segments;children;parent=null;constructor(n,t){this.segments=n,this.children=t,Object.values(t).forEach(r=>r.parent=this);}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Hu(this)}},Qn$1=class Qn{path;parameters;_parameterMap;constructor(n,t){this.path=n,this.parameters=t;}get parameterMap(){return this._parameterMap??=zr(this.parameters),this._parameterMap}toString(){return Pw(this)}};function ER(e,n){return $r$1(e,n)&&e.every((t,r)=>Qt$1(t.parameters,n[r].parameters))}function $r$1(e,n){return e.length!==n.length?false:e.every((t,r)=>t.path===n[r].path)}function DR(e,n){let t=[];return Object.entries(e.children).forEach(([r,o])=>{r===x&&(t=t.concat(n(o,r)));}),Object.entries(e.children).forEach(([r,o])=>{r!==x&&(t=t.concat(n(o,r)));}),t}var er$1=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:()=>new bn$1})}return e})(),bn$1=class bn{parse(n){let t=new Eh(n);return new Ve$1(t.parseRootSegment(),t.parseQueryParams(),t.parseFragment())}serialize(n){let t=`/${Ms(n.root,true)}`,r=SR(n.queryParams),o=typeof n.fragment=="string"?`#${IR(n.fragment)}`:"";return `${t}${r}${o}`}},wR=new bn$1;function Hu(e){return e.segments.map(n=>Pw(n)).join("/")}function Ms(e,n){if(!e.hasChildren())return Hu(e);if(n){let t=e.children[x]?Ms(e.children[x],false):"",r=[];return Object.entries(e.children).forEach(([o,i])=>{o!==x&&r.push(`${o}:${Ms(i,false)}`);}),r.length>0?`${t}(${r.join("//")})`:t}else {let t=DR(e,(r,o)=>o===x?[Ms(e.children[x],false)]:[`${o}:${Ms(r,false)}`]);return Object.keys(e.children).length===1&&e.children[x]!=null?`${Hu(e)}/${t[0]}`:`${Hu(e)}/(${t.join("//")})`}}function kw(e){return encodeURIComponent(e).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function ju(e){return kw(e).replace(/%3B/gi,";")}function IR(e){return encodeURI(e)}function vh(e){return kw(e).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function Vu(e){return decodeURIComponent(e)}function ww(e){return Vu(e.replace(/\+/g,"%20"))}function Pw(e){return `${vh(e.path)}${CR(e.parameters)}`}function CR(e){return Object.entries(e).map(([n,t])=>`;${vh(n)}=${vh(t)}`).join("")}function SR(e){let n=Object.entries(e).map(([t,r])=>Array.isArray(r)?r.map(o=>`${ju(t)}=${ju(o)}`).join("&"):`${ju(t)}=${ju(r)}`).filter(t=>t);return n.length?`?${n.join("&")}`:""}var bR=/^[^\/()?;#]+/;function fh(e){let n=e.match(bR);return n?n[0]:""}var TR=/^[^\/()?;=#]+/;function _R(e){let n=e.match(TR);return n?n[0]:""}var MR=/^[^=?&#]+/;function NR(e){let n=e.match(MR);return n?n[0]:""}var AR=/^[^&#]+/;function RR(e){let n=e.match(AR);return n?n[0]:""}var Eh=class{url;remaining;constructor(n){this.url=n,this.remaining=n;}parseRootSegment(){for(;this.consumeOptional("/"););return this.remaining===""||this.peekStartsWith("?")||this.peekStartsWith("#")?new V$1([],{}):new V$1([],this.parseChildren())}parseQueryParams(){let n={};if(this.consumeOptional("?"))do this.parseQueryParam(n);while(this.consumeOptional("&"));return n}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(n=0){if(n>50)throw new w(4010,false);if(this.remaining==="")return {};this.consumeOptional("/");let t=[];for(this.peekStartsWith("(")||t.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),t.push(this.parseSegment());let r={};this.peekStartsWith("/(")&&(this.capture("/"),r=this.parseParens(true,n));let o={};return this.peekStartsWith("(")&&(o=this.parseParens(false,n)),(t.length>0||Object.keys(r).length>0)&&(o[x]=new V$1(t,r)),o}parseSegment(){let n=fh(this.remaining);if(n===""&&this.peekStartsWith(";"))throw new w(4009,false);return this.capture(n),new Qn$1(Vu(n),this.parseMatrixParams())}parseMatrixParams(){let n={};for(;this.consumeOptional(";");)this.parseParam(n);return n}parseParam(n){let t=_R(this.remaining);if(!t)return;this.capture(t);let r="";if(this.consumeOptional("=")){let o=fh(this.remaining);o&&(r=o,this.capture(r));}n[Vu(t)]=Vu(r);}parseQueryParam(n){let t=NR(this.remaining);if(!t)return;this.capture(t);let r="";if(this.consumeOptional("=")){let s=RR(this.remaining);s&&(r=s,this.capture(r));}let o=ww(t),i=ww(r);if(n.hasOwnProperty(o)){let s=n[o];Array.isArray(s)||(s=[s],n[o]=s),s.push(i);}else n[o]=i;}parseParens(n,t){let r={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){let o=fh(this.remaining),i=this.remaining[o.length];if(i!=="/"&&i!==")"&&i!==";")throw new w(4010,false);let s;o.indexOf(":")>-1?(s=o.slice(0,o.indexOf(":")),this.capture(s),this.capture(":")):n&&(s=x);let a=this.parseChildren(t+1);r[s??x]=Object.keys(a).length===1&&a[x]?a[x]:new V$1([],a),this.consumeOptional("//");}return r}peekStartsWith(n){return this.remaining.startsWith(n)}consumeOptional(n){return this.peekStartsWith(n)?(this.remaining=this.remaining.substring(n.length),true):false}capture(n){if(!this.consumeOptional(n))throw new w(4011,false)}};function Fw(e){return e.segments.length>0?new V$1([],{[x]:e}):e}function jw(e){let n={};for(let[r,o]of Object.entries(e.children)){let i=jw(o);if(r===x&&i.segments.length===0&&i.hasChildren())for(let[s,a]of Object.entries(i.children))n[s]=a;else (i.segments.length>0||i.hasChildren())&&(n[r]=i);}let t=new V$1(e.segments,n);return xR(t)}function xR(e){if(e.numberOfChildren===1&&e.children[x]){let n=e.children[x];return new V$1(e.segments.concat(n.segments),n.children)}return e}function Xn$1(e){return e instanceof Ve$1}function Uw(e,n,t=null,r=null,o=new bn$1){let i=Bw(e);return Hw(i,n,t,r,o)}function Bw(e){let n;function t(i){let s={};for(let c of i.children){let u=t(c);s[c.outlet]=u;}let a=new V$1(i.url,s);return i===e&&(n=a),a}let r=t(e.root),o=Fw(r);return n??o}function Hw(e,n,t,r,o){let i=e;for(;i.parent;)i=i.parent;if(n.length===0)return ph(i,i,i,t,r,o);let s=OR(n);if(s.toRoot())return ph(i,i,new V$1([],{}),t,r,o);let a=LR(s,i,e),c=a.processChildren?As(a.segmentGroup,a.index,s.commands):$w(a.segmentGroup,a.index,s.commands);return ph(i,a.segmentGroup,c,t,r,o)}function zu(e){return typeof e=="object"&&e!=null&&!e.outlets&&!e.segmentPath}function Os(e){return typeof e=="object"&&e!=null&&e.outlets}function Iw(e,n,t){e||="\u0275";let r=new Ve$1;return r.queryParams={[e]:n},t.parse(t.serialize(r)).queryParams[e]}function ph(e,n,t,r,o,i){let s={};for(let[u,l]of Object.entries(r??{}))s[u]=Array.isArray(l)?l.map(d=>Iw(u,d,i)):Iw(u,l,i);let a;e===n?a=t:a=Vw(e,n,t);let c=Fw(jw(a));return new Ve$1(c,s,o)}function Vw(e,n,t){let r={};return Object.entries(e.children).forEach(([o,i])=>{i===n?r[o]=t:r[o]=Vw(i,n,t);}),new V$1(e.segments,r)}var Gu=class{isAbsolute;numberOfDoubleDots;commands;constructor(n,t,r){if(this.isAbsolute=n,this.numberOfDoubleDots=t,this.commands=r,n&&r.length>0&&zu(r[0]))throw new w(4003,false);let o=r.find(Os);if(o&&o!==gR(r))throw new w(4004,false)}toRoot(){return this.isAbsolute&&this.commands.length===1&&this.commands[0]=="/"}};function OR(e){if(typeof e[0]=="string"&&e.length===1&&e[0]==="/")return new Gu(true,0,e);let n=0,t=false,r=e.reduce((o,i,s)=>{if(typeof i=="object"&&i!=null){if(i.outlets){let a={};return Object.entries(i.outlets).forEach(([c,u])=>{a[c]=typeof u=="string"?u.split("/"):u;}),[...o,{outlets:a}]}if(i.segmentPath)return [...o,i.segmentPath]}return typeof i!="string"?[...o,i]:s===0?(i.split("/").forEach((a,c)=>{c==0&&a==="."||(c==0&&a===""?t=true:a===".."?n++:a!=""&&o.push(a));}),o):[...o,i]},[]);return new Gu(t,n,r)}var Wo$1=class Wo{segmentGroup;processChildren;index;constructor(n,t,r){this.segmentGroup=n,this.processChildren=t,this.index=r;}};function LR(e,n,t){if(e.isAbsolute)return new Wo$1(n,true,0);if(!t)return new Wo$1(n,false,NaN);if(t.parent===null)return new Wo$1(t,true,0);let r=zu(e.commands[0])?0:1,o=t.segments.length-1+r;return kR(t,o,e.numberOfDoubleDots)}function kR(e,n,t){let r=e,o=n,i=t;for(;i>o;){if(i-=o,r=r.parent,!r)throw new w(4005,false);o=r.segments.length;}return new Wo$1(r,false,o-i)}function PR(e){return Os(e[0])?e[0].outlets:{[x]:e}}function $w(e,n,t){if(e??=new V$1([],{}),e.segments.length===0&&e.hasChildren())return As(e,n,t);let r=FR(e,n,t),o=t.slice(r.commandIndex);if(r.match&&r.pathIndexi!==x)&&e.children[x]&&e.numberOfChildren===1&&e.children[x].segments.length===0){let i=As(e.children[x],n,t);return new V$1(e.segments,i.children)}return Object.entries(r).forEach(([i,s])=>{typeof s=="string"&&(s=[s]),s!==null&&(o[i]=$w(e.children[i],n,s));}),Object.entries(e.children).forEach(([i,s])=>{r[i]===void 0&&(o[i]=s);}),new V$1(e.segments,o)}}function FR(e,n,t){let r=0,o=n,i={match:false,pathIndex:0,commandIndex:0};for(;o=t.length)return i;let s=e.segments[o],a=t[r];if(Os(a))break;let c=`${a}`,u=r0&&c===void 0)break;if(c&&u&&typeof u=="object"&&u.outlets===void 0){if(!Sw(c,u,s))return i;r+=2;}else {if(!Sw(c,{},s))return i;r++;}o++;}return {match:true,pathIndex:o,commandIndex:r}}function Dh(e,n,t){let r=e.segments.slice(0,n),o=0;for(;o{typeof r=="string"&&(r=[r]),r!==null&&(n[t]=Dh(new V$1([],{}),0,r));}),n}function Cw(e){let n={};return Object.entries(e).forEach(([t,r])=>n[t]=`${r}`),n}function Sw(e,n,t){return e==t.path&&Qt$1(n,t.parameters)}var qo$1="imperative",we$1=(function(e){return e[e.NavigationStart=0]="NavigationStart",e[e.NavigationEnd=1]="NavigationEnd",e[e.NavigationCancel=2]="NavigationCancel",e[e.NavigationError=3]="NavigationError",e[e.RoutesRecognized=4]="RoutesRecognized",e[e.ResolveStart=5]="ResolveStart",e[e.ResolveEnd=6]="ResolveEnd",e[e.GuardsCheckStart=7]="GuardsCheckStart",e[e.GuardsCheckEnd=8]="GuardsCheckEnd",e[e.RouteConfigLoadStart=9]="RouteConfigLoadStart",e[e.RouteConfigLoadEnd=10]="RouteConfigLoadEnd",e[e.ChildActivationStart=11]="ChildActivationStart",e[e.ChildActivationEnd=12]="ChildActivationEnd",e[e.ActivationStart=13]="ActivationStart",e[e.ActivationEnd=14]="ActivationEnd",e[e.Scroll=15]="Scroll",e[e.NavigationSkipped=16]="NavigationSkipped",e})(we$1||{}),rt$1=class rt{id;url;constructor(n,t){this.id=n,this.url=t;}},Jn$1=class Jn extends rt$1{type=we$1.NavigationStart;navigationTrigger;restoredState;constructor(n,t,r="imperative",o=null){super(n,t),this.navigationTrigger=r,this.restoredState=o;}toString(){return `NavigationStart(id: ${this.id}, url: '${this.url}')`}},ot$1=class ot extends rt$1{urlAfterRedirects;type=we$1.NavigationEnd;constructor(n,t,r){super(n,t),this.urlAfterRedirects=r;}toString(){return `NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}},ke$1=(function(e){return e[e.Redirect=0]="Redirect",e[e.SupersededByNewNavigation=1]="SupersededByNewNavigation",e[e.NoDataFromResolver=2]="NoDataFromResolver",e[e.GuardRejected=3]="GuardRejected",e[e.Aborted=4]="Aborted",e})(ke$1||{}),Zo$1=(function(e){return e[e.IgnoredSameUrlNavigation=0]="IgnoredSameUrlNavigation",e[e.IgnoredByUrlHandlingStrategy=1]="IgnoredByUrlHandlingStrategy",e})(Zo$1||{}),Dt$1=class Dt extends rt$1{reason;code;type=we$1.NavigationCancel;constructor(n,t,r,o){super(n,t),this.reason=r,this.code=o;}toString(){return `NavigationCancel(id: ${this.id}, url: '${this.url}')`}};function zw(e){return e instanceof Dt$1&&(e.code===ke$1.Redirect||e.code===ke$1.SupersededByNewNavigation)}var Xt$1=class Xt extends rt$1{reason;code;type=we$1.NavigationSkipped;constructor(n,t,r,o){super(n,t),this.reason=r,this.code=o;}},Gr$1=class Gr extends rt$1{error;target;type=we$1.NavigationError;constructor(n,t,r,o){super(n,t),this.error=r,this.target=o;}toString(){return `NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}},Ls=class extends rt$1{urlAfterRedirects;state;type=we$1.RoutesRecognized;constructor(n,t,r,o){super(n,t),this.urlAfterRedirects=r,this.state=o;}toString(){return `RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}},Wu=class extends rt$1{urlAfterRedirects;state;type=we$1.GuardsCheckStart;constructor(n,t,r,o){super(n,t),this.urlAfterRedirects=r,this.state=o;}toString(){return `GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}},qu=class extends rt$1{urlAfterRedirects;state;shouldActivate;type=we$1.GuardsCheckEnd;constructor(n,t,r,o,i){super(n,t),this.urlAfterRedirects=r,this.state=o,this.shouldActivate=i;}toString(){return `GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}},Yu=class extends rt$1{urlAfterRedirects;state;type=we$1.ResolveStart;constructor(n,t,r,o){super(n,t),this.urlAfterRedirects=r,this.state=o;}toString(){return `ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}},Zu=class extends rt$1{urlAfterRedirects;state;type=we$1.ResolveEnd;constructor(n,t,r,o){super(n,t),this.urlAfterRedirects=r,this.state=o;}toString(){return `ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}},Ku=class{route;type=we$1.RouteConfigLoadStart;constructor(n){this.route=n;}toString(){return `RouteConfigLoadStart(path: ${this.route.path})`}},Qu=class{route;type=we$1.RouteConfigLoadEnd;constructor(n){this.route=n;}toString(){return `RouteConfigLoadEnd(path: ${this.route.path})`}},Xu=class{snapshot;type=we$1.ChildActivationStart;constructor(n){this.snapshot=n;}toString(){return `ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}},Ju=class{snapshot;type=we$1.ChildActivationEnd;constructor(n){this.snapshot=n;}toString(){return `ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}},el$1=class el{snapshot;type=we$1.ActivationStart;constructor(n){this.snapshot=n;}toString(){return `ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}},tl$1=class tl{snapshot;type=we$1.ActivationEnd;constructor(n){this.snapshot=n;}toString(){return `ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}},Ko$1=class Ko{routerEvent;position;anchor;scrollBehavior;type=we$1.Scroll;constructor(n,t,r,o){this.routerEvent=n,this.position=t,this.anchor=r,this.scrollBehavior=o;}toString(){let n=this.position?`${this.position[0]}, ${this.position[1]}`:null;return `Scroll(anchor: '${this.anchor}', position: '${n}')`}},Qo$1=class Qo{},ks$1=class ks{},Xo$1=class Xo{url;navigationBehaviorOptions;constructor(n,t){this.url=n,this.navigationBehaviorOptions=t;}};function UR(e){return !(e instanceof Qo$1)&&!(e instanceof Xo$1)&&!(e instanceof ks$1)}var nl$1=class nl{rootInjector;outlet=null;route=null;children;attachRef=null;get injector(){return this.route?.snapshot._environmentInjector??this.rootInjector}constructor(n){this.rootInjector=n,this.children=new qr$1(this.rootInjector);}},qr$1=(()=>{class e{rootInjector;contexts=new Map;constructor(t){this.rootInjector=t;}onChildOutletCreated(t,r){let o=this.getOrCreateContext(t);o.outlet=r,this.contexts.set(t,o);}onChildOutletDestroyed(t){let r=this.getContext(t);r&&(r.outlet=null,r.attachRef=null);}onOutletDeactivated(){let t=this.contexts;return this.contexts=new Map,t}onOutletReAttached(t){this.contexts=t;}getOrCreateContext(t){let r=this.getContext(t);return r||(r=new nl$1(this.rootInjector),this.contexts.set(t,r)),r}getContext(t){return this.contexts.get(t)||null}static \u0275fac=function(r){return new(r||e)(M$1(ne$1))};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),rl$1=class rl{_root;constructor(n){this._root=n;}get root(){return this._root.value}parent(n){let t=this.pathFromRoot(n);return t.length>1?t[t.length-2]:null}children(n){let t=wh(n,this._root);return t?t.children.map(r=>r.value):[]}firstChild(n){let t=wh(n,this._root);return t&&t.children.length>0?t.children[0].value:null}siblings(n){let t=Ih(n,this._root);return t.length<2?[]:t[t.length-2].children.map(o=>o.value).filter(o=>o!==n)}pathFromRoot(n){return Ih(n,this._root).map(t=>t.value)}};function wh(e,n){if(e===n.value)return n;for(let t of n.children){let r=wh(e,t);if(r)return r}return null}function Ih(e,n){if(e===n.value)return [n];for(let t of n.children){let r=Ih(e,t);if(r.length)return r.unshift(n),r}return []}var nt$1=class nt{value;children;constructor(n,t){this.value=n,this.children=t;}toString(){return `TreeNode(${this.value})`}};function Go$1(e){let n={};return e&&e.children.forEach(t=>n[t.value.outlet]=t),n}var Ps=class extends rl$1{snapshot;constructor(n,t){super(n),this.snapshot=t,Oh(this,n);}toString(){return this.snapshot.toString()}};function Gw(e,n){let t=BR(e,n),r=new Se$1([new Qn$1("",{})]),o=new Se$1({}),i=new Se$1({}),s=new Se$1({}),a=new Se$1(""),c=new Jt$1(r,o,s,a,i,x,e,t.root);return c.snapshot=t.root,new Ps(new nt$1(c,[]),t)}function BR(e,n){let t={},r={},o={},s=new Jo$1([],t,o,"",r,x,e,null,{},n);return new Fs("",new nt$1(s,[]))}var Jt$1=class Jt{urlSubject;paramsSubject;queryParamsSubject;fragmentSubject;dataSubject;outlet;component;snapshot;_futureSnapshot;_routerState;_paramMap;_queryParamMap;title;url;params;queryParams;fragment;data;_localInjector;constructor(n,t,r,o,i,s,a,c){this.urlSubject=n,this.paramsSubject=t,this.queryParamsSubject=r,this.fragmentSubject=o,this.dataSubject=i,this.outlet=s,this.component=a,this._futureSnapshot=c,this.title=this.dataSubject?.pipe(Z$1(u=>u[Bs$1]))??A$1(void 0),this.url=n,this.params=t,this.queryParams=r,this.fragment=o,this.data=i;}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap??=this.params.pipe(Z$1(n=>zr(n))),this._paramMap}get queryParamMap(){return this._queryParamMap??=this.queryParams.pipe(Z$1(n=>zr(n))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}},HR="always";function xh(e,n,t){let r,{routeConfig:o}=e;return n!==null&&(t==="always"||o?.path===""||!n.component&&!n.routeConfig?.loadComponent)?r={params:l(l({},n.params),e.params),data:l(l({},n.data),e.data),resolve:l(l(l(l({},e.data),n.data),o?.data),e._resolvedData)}:r={params:l({},e.params),data:l({},e.data),resolve:l(l({},e.data),e._resolvedData??{})},o&&qw(o)&&(r.resolve[Bs$1]=o.title),r}var Jo$1=class Jo{url;params;queryParams;fragment;data;outlet;component;routeConfig;_resolve;_resolvedData;_routerState;_paramMap;_queryParamMap;_environmentInjector;get title(){return this.data?.[Bs$1]}constructor(n,t,r,o,i,s,a,c,u,l){this.url=n,this.params=t,this.queryParams=r,this.fragment=o,this.data=i,this.outlet=s,this.component=a,this.routeConfig=c,this._resolve=u,this._environmentInjector=l;}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap??=zr(this.params),this._paramMap}get queryParamMap(){return this._queryParamMap??=zr(this.queryParams),this._queryParamMap}toString(){let n=this.url.map(r=>r.toString()).join("/"),t=this.routeConfig?this.routeConfig.path:"";return `Route(url:'${n}', path:'${t}')`}},Fs=class extends rl$1{url;constructor(n,t){super(t),this.url=n,Oh(this,t);}toString(){return Ww(this._root)}};function Oh(e,n){n.value._routerState=e,n.children.forEach(t=>Oh(e,t));}function Ww(e){let n=e.children.length>0?` { ${e.children.map(Ww).join(", ")} } `:"";return `${e.value}${n}`}function hh(e){if(e.snapshot){let n=e.snapshot,t=e._futureSnapshot;e.snapshot=t,Qt$1(n.queryParams,t.queryParams)||e.queryParamsSubject.next(t.queryParams),n.fragment!==t.fragment&&e.fragmentSubject.next(t.fragment),Qt$1(n.params,t.params)||e.paramsSubject.next(t.params),hR(n.url,t.url)||e.urlSubject.next(t.url),Qt$1(n.data,t.data)||e.dataSubject.next(t.data);}else e.snapshot=e._futureSnapshot,e.dataSubject.next(e._futureSnapshot.data);}function Ch(e,n){let t=Qt$1(e.params,n.params)&&ER(e.url,n.url),r=!e.parent!=!n.parent;return t&&!r&&(!e.parent||Ch(e.parent,n.parent))}function qw(e){return typeof e.title=="string"||e.title===null}var Yw=new I$1(""),Lh=(()=>{class e{activated=null;get activatedComponentRef(){return this.activated}_activatedRoute=null;name=x;activateEvents=new Ae$1;deactivateEvents=new Ae$1;attachEvents=new Ae$1;detachEvents=new Ae$1;routerOutletData=mu();parentContexts=g(qr$1);location=g(Yn$1);changeDetector=g(Hr$1);inputBinder=g(Hs,{optional:true});supportsBindingToComponentInputs=true;ngOnChanges(t){if(t.name){let{firstChange:r,previousValue:o}=t.name;if(r)return;this.isTrackedInParentContexts(o)&&(this.deactivate(),this.parentContexts.onChildOutletDestroyed(o)),this.initializeOutletWithName();}}ngOnDestroy(){this.isTrackedInParentContexts(this.name)&&this.parentContexts.onChildOutletDestroyed(this.name),this.inputBinder?.unsubscribeFromRouteData(this);}isTrackedInParentContexts(t){return this.parentContexts.getContext(t)?.outlet===this}ngOnInit(){this.initializeOutletWithName();}initializeOutletWithName(){if(this.parentContexts.onChildOutletCreated(this.name,this),this.activated)return;let t=this.parentContexts.getContext(this.name);t?.route&&(t.attachRef?this.attach(t.attachRef,t.route):this.activateWith(t.route,t.injector));}get isActivated(){return !!this.activated}get component(){if(!this.activated)throw new w(4012,false);return this.activated.instance}get activatedRoute(){if(!this.activated)throw new w(4012,false);return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new w(4012,false);this.location.detach();let t=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(t.instance),t}attach(t,r){this.activated=t,this._activatedRoute=r,this.location.insert(t.hostView),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.attachEvents.emit(t.instance);}deactivate(){if(this.activated){let t=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(t);}}activateWith(t,r){if(this.isActivated)throw new w(4013,false);this._activatedRoute=t;let o=this.location,s=t.snapshot.component,a=this.parentContexts.getOrCreateContext(this.name).children,c=new Sh(t,a,o.injector,this.routerOutletData);this.activated=o.createComponent(s,{index:o.length,injector:c,environmentInjector:r}),this.changeDetector.markForCheck(),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.activateEvents.emit(this.activated.instance);}static \u0275fac=function(r){return new(r||e)};static \u0275dir=xt$1({type:e,selectors:[["router-outlet"]],inputs:{name:"name",routerOutletData:[1,"routerOutletData"]},outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"],features:[Yt$1]})}return e})(),Sh=class{route;childContexts;parent;outletData;constructor(n,t,r,o){this.route=n,this.childContexts=t,this.parent=r,this.outletData=o;}get(n,t){return n===Jt$1?this.route:n===qr$1?this.childContexts:n===Yw?this.outletData:this.parent.get(n,t)}},Hs=new I$1(""),Zw=(()=>{class e{options;outletDataSubscriptions=new Map;outletSeenKeys=new Map;constructor(t){this.options=t,this.options.queryParams??=true;}bindActivatedRouteToOutletComponent(t){this.unsubscribeFromRouteData(t),this.subscribeToRouteData(t);}unsubscribeFromRouteData(t){this.outletDataSubscriptions.get(t)?.unsubscribe(),this.outletDataSubscriptions.delete(t),this.outletSeenKeys.delete(t);}subscribeToRouteData(t){let{activatedRoute:r}=t,o=Ra$1([this.options.queryParams?r.queryParams:A$1({}),r.params,r.data]).pipe(ze$1(([i,s,a],c)=>(a=l(l(l({},i),s),a),c===0?A$1(a):Promise.resolve(a)))).subscribe(i=>{if(!t.isActivated||!t.activatedComponentRef||t.activatedRoute!==r||r.component===null){this.unsubscribeFromRouteData(t);return}let s=xD(r.component);if(!s){this.unsubscribeFromRouteData(t);return}let a=this.outletSeenKeys.get(t);a||(a=new Set,this.outletSeenKeys.set(t,a));for(let u of Object.keys(i))a.add(u);let c=this.options.unmatchedInputBehavior??"alwaysUndefined";for(let{templateName:u}of s.inputs){let l=i[u];(l!==void 0||c==="alwaysUndefined"||a.has(u))&&t.activatedComponentRef.setInput(u,l);}});this.outletDataSubscriptions.set(t,o);}static \u0275fac=function(r){ds$1();};static \u0275prov=b({token:e,factory:e.\u0275fac})}return e})(),kh=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275cmp=Uo$1({type:e,selectors:[["ng-component"]],exportAs:["emptyRouterOutlet"],decls:1,vars:0,template:function(r,o){r&1&&au(0,"router-outlet");},dependencies:[Lh],encapsulation:2,changeDetection:1})}return e})();function Ph(e){let n=e.children&&e.children.map(Ph),t=n?m(l({},e),{children:n}):l({},e);return !t.component&&!t.loadComponent&&(n||t.loadChildren)&&t.outlet&&t.outlet!==x&&(t.component=kh),t}function VR(e,n,t){let r=new Set,o=js(e,n._root,t?t._root:void 0,r);return {newlyCreatedRoutes:r,state:new Ps(o,n)}}function js(e,n,t,r){if(t&&e.shouldReuseRoute(n.value,t.value.snapshot)){let o=t.value;o._futureSnapshot=n.value;let i=$R(e,n,t,r);return new nt$1(o,i)}else {if(e.shouldAttach(n.value)){let s=e.retrieve(n.value);if(s!==null){let a=s.route;return a.value._futureSnapshot=n.value,a.children=n.children.map(c=>js(e,c,void 0,r)),a}}let o=zR(n.value);r.add(o);let i=n.children.map(s=>js(e,s,void 0,r));return new nt$1(o,i)}}function $R(e,n,t,r){return n.children.map(o=>{for(let i of t.children)if(e.shouldReuseRoute(o.value,i.value.snapshot))return js(e,o,i,r);return js(e,o,void 0,r)})}function zR(e){return new Jt$1(new Se$1(e.url),new Se$1(e.params),new Se$1(e.queryParams),new Se$1(e.fragment),new Se$1(e.data),e.outlet,e.component,e)}var ei$1=class ei{redirectTo;navigationBehaviorOptions;constructor(n,t){this.redirectTo=n,this.navigationBehaviorOptions=t;}},Kw="ngNavigationCancelingError";function ol$1(e,n){let{redirectTo:t,navigationBehaviorOptions:r}=Xn$1(n)?{redirectTo:n,navigationBehaviorOptions:void 0}:n,o=Qw(false,ke$1.Redirect);return o.url=t,o.navigationBehaviorOptions=r,o}function Qw(e,n){let t=new Error(`NavigationCancelingError: ${""}`);return t[Kw]=true,t.cancellationCode=n,t}function GR(e){return Xw(e)&&Xn$1(e.url)}function Xw(e){return !!e&&e[Kw]}var bh=class{routeReuseStrategy;futureState;currState;forwardEvent;inputBindingEnabled;constructor(n,t,r,o,i){this.routeReuseStrategy=n,this.futureState=t,this.currState=r,this.forwardEvent=o,this.inputBindingEnabled=i;}activate(n){let t=this.futureState._root,r=this.currState?this.currState._root:null;this.deactivateChildRoutes(t,r,n),hh(this.futureState.root),this.activateChildRoutes(t,r,n);}deactivateChildRoutes(n,t,r){let o=Go$1(t);n.children.forEach(i=>{let s=i.value.outlet;this.deactivateRoutes(i,o[s],r),delete o[s];}),Object.values(o).forEach(i=>{this.deactivateRouteAndItsChildren(i,r);});}deactivateRoutes(n,t,r){let o=n.value,i=t?t.value:null;if(o===i)if(o.component){let s=r.getContext(o.outlet);s&&this.deactivateChildRoutes(n,t,s.children);}else this.deactivateChildRoutes(n,t,r);else i&&this.deactivateRouteAndItsChildren(t,r);}deactivateRouteAndItsChildren(n,t){n.value.component&&this.routeReuseStrategy.shouldDetach(n.value.snapshot)?this.detachAndStoreRouteSubtree(n,t):this.deactivateRouteAndOutlet(n,t);}detachAndStoreRouteSubtree(n,t){let r=t.getContext(n.value.outlet),o=r&&n.value.component?r.children:t,i=Go$1(n);for(let s of Object.values(i))this.deactivateRouteAndItsChildren(s,o);if(r&&r.outlet){let s=r.outlet.detach(),a=r.children.onOutletDeactivated();this.routeReuseStrategy.store(n.value.snapshot,{componentRef:s,route:n,contexts:a});}}deactivateRouteAndOutlet(n,t){let r=t.getContext(n.value.outlet),o=r&&n.value.component?r.children:t,i=Go$1(n);for(let s of Object.values(i))this.deactivateRouteAndItsChildren(s,o);r&&(r.outlet&&(r.outlet.deactivate(),r.children.onOutletDeactivated()),r.attachRef=null,r.route=null),n.value._localInjector?.destroy();}activateChildRoutes(n,t,r){let o=Go$1(t);n.children.forEach(i=>{this.activateRoutes(i,o[i.value.outlet],r),this.forwardEvent(new tl$1(i.value.snapshot));}),n.children.length&&this.forwardEvent(new Ju(n.value.snapshot));}activateRoutes(n,t,r){let o=n.value,i=t?t.value:null;if(hh(o),o===i)if(o.component){let s=r.getOrCreateContext(o.outlet);this.activateChildRoutes(n,t,s.children);}else this.activateChildRoutes(n,t,r);else if(o.component){let s=r.getOrCreateContext(o.outlet);if(this.routeReuseStrategy.shouldAttach(o.snapshot)){let a=this.routeReuseStrategy.retrieve(o.snapshot);this.routeReuseStrategy.store(o.snapshot,null),s.children.onOutletReAttached(a.contexts),s.attachRef=a.componentRef,s.route=a.route.value,s.outlet&&s.outlet.attach(a.componentRef,a.route.value),hh(a.route.value),this.activateChildRoutes(n,null,s.children);}else s.attachRef=null,s.route=o,s.outlet&&s.outlet.activateWith(o,s.injector),this.activateChildRoutes(n,null,s.children);}else this.activateChildRoutes(n,null,r);}},il$1=class il{path;route;constructor(n){this.path=n,this.route=this.path[this.path.length-1];}},Yo$1=class Yo{component;route;constructor(n,t){this.component=n,this.route=t;}};function WR(e,n,t){let r=e._root,o=n?n._root:null;return Ns(r,o,t,[r.value])}function qR(e){let n=e.routeConfig?e.routeConfig.canActivateChild:null;return !n||n.length===0?null:{node:e,guards:n}}function ni$1(e,n){let t=Symbol(),r=n.get(e,t);return r===t?typeof e=="function"&&!od$1(e)?e:n.get(e):r}function Ns(e,n,t,r,o={canDeactivateChecks:[],canActivateChecks:[]}){let i=Go$1(n);return e.children.forEach(s=>{YR(s,i[s.value.outlet],t,r.concat([s.value]),o),delete i[s.value.outlet];}),Object.entries(i).forEach(([s,a])=>Rs$1(a,t.getContext(s),o)),o}function YR(e,n,t,r,o={canDeactivateChecks:[],canActivateChecks:[]}){let i=e.value,s=n?n.value:null,a=t?t.getContext(e.value.outlet):null;if(s&&i.routeConfig===s.routeConfig){let c=ZR(s,i,i.routeConfig.runGuardsAndResolvers);c?o.canActivateChecks.push(new il$1(r)):(i.data=s.data,i._resolvedData=s._resolvedData),i.component?Ns(e,n,a?a.children:null,r,o):Ns(e,n,t,r,o),c&&a&&a.outlet&&a.outlet.isActivated&&o.canDeactivateChecks.push(new Yo$1(a.outlet.component,s));}else s&&Rs$1(n,a,o),o.canActivateChecks.push(new il$1(r)),i.component?Ns(e,null,a?a.children:null,r,o):Ns(e,null,t,r,o);return o}function ZR(e,n,t){if(typeof t=="function")return Ee$1(n._environmentInjector,()=>t(e,n));switch(t){case "pathParamsChange":return !$r$1(e.url,n.url);case "pathParamsOrQueryParamsChange":return !$r$1(e.url,n.url)||!Qt$1(e.queryParams,n.queryParams);case "always":return true;case "paramsOrQueryParamsChange":return !Ch(e,n)||!Qt$1(e.queryParams,n.queryParams);default:return !Ch(e,n)}}function Rs$1(e,n,t){let r=Go$1(e),o=e.value;Object.entries(r).forEach(([i,s])=>{o.component?n?Rs$1(s,n.children.getContext(i),t):Rs$1(s,null,t):Rs$1(s,n,t);}),o.component?n&&n.outlet&&n.outlet.isActivated?t.canDeactivateChecks.push(new Yo$1(n.outlet.component,o)):t.canDeactivateChecks.push(new Yo$1(null,o)):t.canDeactivateChecks.push(new Yo$1(null,o));}function Vs(e){return typeof e=="function"}function KR(e){return typeof e=="boolean"}function QR(e){return e&&Vs(e.canLoad)}function XR(e){return e&&Vs(e.canActivate)}function JR(e){return e&&Vs(e.canActivateChild)}function ex(e){return e&&Vs(e.canDeactivate)}function tx(e){return e&&Vs(e.canMatch)}function Jw(e){return e instanceof pr$1||e?.name==="EmptyError"}var Uu=Symbol("INITIAL_VALUE");function ti$1(){return ze$1(e=>Ra$1(e.map(n=>n.pipe(sn$1(1),zl$1(Uu)))).pipe(Z$1(n=>{for(let t of n)if(t!==true){if(t===Uu)return Uu;if(t===false||nx(t))return t}return true}),Ke$1(n=>n!==Uu),sn$1(1)))}function nx(e){return Xn$1(e)||e instanceof ei$1}function eI(e){return e.aborted?A$1(void 0).pipe(sn$1(1)):new P$1(n=>{let t=()=>{n.next(),n.complete();};return e.addEventListener("abort",t),()=>e.removeEventListener("abort",t)})}function tI(e){return vi$1(eI(e))}function rx(e){return Te$1(n=>{let{targetSnapshot:t,currentSnapshot:r,guards:{canActivateChecks:o,canDeactivateChecks:i}}=n;return i.length===0&&o.length===0?A$1(m(l({},n),{guardsResult:true})):ox(i,t,r).pipe(Te$1(s=>s&&KR(s)?ix(t,o,e):A$1(s)),Z$1(s=>m(l({},n),{guardsResult:s})))})}function ox(e,n,t){return te$1(e).pipe(Te$1(r=>lx(r.component,r.route,t,n)),an$1(r=>r!==true,true))}function ix(e,n,t){return te$1(n).pipe(Pn$1(r=>fo$1(ax(r.route.parent,t),sx(r.route,t),ux(e,r.path),cx(e,r.route))),an$1(r=>r!==true,true))}function sx(e,n){return e!==null&&n&&n(new el$1(e)),A$1(true)}function ax(e,n){return e!==null&&n&&n(new Xu(e)),A$1(true)}function cx(e,n){let t=n.routeConfig?n.routeConfig.canActivate:null;if(!t||t.length===0)return A$1(true);let r=t.map(o=>mi$1(()=>{let i=n._environmentInjector,s=ni$1(o,i),a=XR(s)?s.canActivate(n,e):Ee$1(i,()=>s(n,e));return Wr$1(a).pipe(an$1())}));return A$1(r).pipe(ti$1())}function ux(e,n){let t=n[n.length-1],o=n.slice(0,n.length-1).reverse().map(i=>qR(i)).filter(i=>i!==null).map(i=>mi$1(()=>{let s=i.guards.map(a=>{let c=i.node._environmentInjector,u=ni$1(a,c),l=JR(u)?u.canActivateChild(t,e):Ee$1(c,()=>u(t,e));return Wr$1(l).pipe(an$1())});return A$1(s).pipe(ti$1())}));return A$1(o).pipe(ti$1())}function lx(e,n,t,r){let o=n&&n.routeConfig?n.routeConfig.canDeactivate:null;if(!o||o.length===0)return A$1(true);let i=o.map(s=>{let a=n._environmentInjector,c=ni$1(s,a),u=ex(c)?c.canDeactivate(e,n,t,r):Ee$1(a,()=>c(e,n,t,r));return Wr$1(u).pipe(an$1())});return A$1(i).pipe(ti$1())}function dx(e,n,t,r,o){let i=n.canLoad;if(i===void 0||i.length===0)return A$1(true);let s=i.map(a=>{let c=ni$1(a,e),u=QR(c)?c.canLoad(n,t):Ee$1(e,()=>c(n,t)),l=Wr$1(u);return o?l.pipe(tI(o)):l});return A$1(s).pipe(ti$1(),nI(r))}function nI(e){return jl$1(Qe$1(n=>{if(typeof n!="boolean")throw ol$1(e,n)}),Z$1(n=>n===true))}function fx(e,n,t,r,o,i){let s=n.canMatch;if(!s||s.length===0)return A$1(true);let a=s.map(c=>{let u=ni$1(c,e),l=tx(u)?u.canMatch(n,t,o):Ee$1(e,()=>u(n,t,o));return Wr$1(l).pipe(tI(i))});return A$1(a).pipe(ti$1(),nI(r))}var Sn$1=class e extends Error{segmentGroup;constructor(n){super(),this.segmentGroup=n||null,Object.setPrototypeOf(this,e.prototype);}},Us=class e extends Error{urlTree;constructor(n){super(),this.urlTree=n,Object.setPrototypeOf(this,e.prototype);}};function px(e){throw new w(4e3,false)}function hx(e){throw Qw(false,ke$1.GuardRejected)}var Th=class{urlSerializer;urlTree;constructor(n,t){this.urlSerializer=n,this.urlTree=t;}async lineralizeSegments(n,t){let r=[],o=t.root;for(;;){if(r=r.concat(o.segments),o.numberOfChildren===0)return r;if(o.numberOfChildren>1||!o.children[x])throw px(`${n.redirectTo}`);o=o.children[x];}}async applyRedirectCommands(n,t,r,o,i){let s=await gx(t,o,i);if(s instanceof Ve$1)throw new Us(s);let a=this.applyRedirectCreateUrlTree(s,this.urlSerializer.parse(s),n,r);if(s[0]==="/")throw new Us(a);return a}applyRedirectCreateUrlTree(n,t,r,o){let i=this.createSegmentGroup(n,t.root,r,o);return new Ve$1(i,this.createQueryParams(t.queryParams,this.urlTree.queryParams),t.fragment)}createQueryParams(n,t){let r={};return Object.entries(n).forEach(([o,i])=>{if(typeof i=="string"&&i[0]===":"){let a=i.substring(1);r[o]=t[a];}else r[o]=i;}),r}createSegmentGroup(n,t,r,o){let i=this.createSegments(n,t.segments,r,o),s={};return Object.entries(t.children).forEach(([a,c])=>{s[a]=this.createSegmentGroup(n,c,r,o);}),new V$1(i,s)}createSegments(n,t,r,o){return t.map(i=>i.path[0]===":"?this.findPosParam(n,i,o):this.findOrReturn(i,r))}findPosParam(n,t,r){let o=r[t.path.substring(1)];if(!o)throw new w(4001,false);return o}findOrReturn(n,t){let r=0;for(let o of t){if(o.path===n.path)return t.splice(r),o;r++;}return n}};function gx(e,n,t){if(typeof e=="string")return Promise.resolve(e);let r=e;return $u(Wr$1(Ee$1(t,()=>r(n))))}function mx(e,n){return e.providers&&!e._injector&&(e._injector=jo$1(e.providers,n,`Route: ${e.path}`)),e._injector??n}function Pt$1(e){return e.outlet||x}function yx(e,n){let t=e.filter(r=>Pt$1(r)===n);return t.push(...e.filter(r=>Pt$1(r)!==n)),t}var _h={matched:false,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function rI(e){return {routeConfig:e.routeConfig,url:e.url,params:e.params,queryParams:e.queryParams,fragment:e.fragment,data:e.data,outlet:e.outlet,title:e.title,paramMap:e.paramMap,queryParamMap:e.queryParamMap}}function vx(e,n,t,r,o,i,s){let a=oI(e,n,t);if(!a.matched)return A$1(a);let c=rI(i(a));return r=mx(n,r),fx(r,n,t,o,c,s).pipe(Z$1(u=>u===true?a:l({},_h)))}function oI(e,n,t){if(n.path==="")return n.pathMatch==="full"&&(e.hasChildren()||t.length>0)?l({},_h):{matched:true,consumedSegments:[],remainingSegments:t,parameters:{},positionalParamSegments:{}};let o=(n.matcher||Mw)(t,e,n);if(!o)return l({},_h);let i={};Object.entries(o.posParams??{}).forEach(([a,c])=>{i[a]=c.path;});let s=o.consumed.length>0?l(l({},i),o.consumed[o.consumed.length-1].parameters):i;return {matched:true,consumedSegments:o.consumed,remainingSegments:t.slice(o.consumed.length),parameters:s,positionalParamSegments:o.posParams??{}}}function bw(e,n,t,r,o){return t.length>0&&wx(e,t,r,o)?{segmentGroup:new V$1(n,Dx(r,new V$1(t,e.children))),slicedSegments:[]}:t.length===0&&Ix(e,t,r)?{segmentGroup:new V$1(e.segments,Ex(e,t,r,e.children)),slicedSegments:t}:{segmentGroup:new V$1(e.segments,e.children),slicedSegments:t}}function Ex(e,n,t,r){let o={};for(let i of t)if(al$1(e,n,i)&&!r[Pt$1(i)]){let s=new V$1([],{});o[Pt$1(i)]=s;}return l(l({},r),o)}function Dx(e,n){let t={};t[x]=n;for(let r of e)if(r.path===""&&Pt$1(r)!==x){let o=new V$1([],{});t[Pt$1(r)]=o;}return t}function wx(e,n,t,r){return t.some(o=>!al$1(e,n,o)||!(Pt$1(o)!==x)?false:!(r!==void 0&&Pt$1(o)===r))}function Ix(e,n,t){return t.some(r=>al$1(e,n,r))}function al$1(e,n,t){return (e.hasChildren()||n.length>0)&&t.pathMatch==="full"?false:t.path===""}function Cx(e,n,t){return n.length===0&&!e.children[t]}var Mh=class{};async function Sx(e,n,t,r,o,i,s,a){return new Nh(e,n,t,r,o,s,i,a).recognize()}var bx=31,Nh=class{injector;configLoader;rootComponentType;config;urlTree;paramsInheritanceStrategy;urlSerializer;abortSignal;applyRedirects;absoluteRedirectCount=0;allowRedirects=true;constructor(n,t,r,o,i,s,a,c){this.injector=n,this.configLoader=t,this.rootComponentType=r,this.config=o,this.urlTree=i,this.paramsInheritanceStrategy=s,this.urlSerializer=a,this.abortSignal=c,this.applyRedirects=new Th(this.urlSerializer,this.urlTree);}noMatchError(n){return new w(4002,`'${n.segmentGroup}'`)}async recognize(){let n=bw(this.urlTree.root,[],[],this.config).segmentGroup,{children:t,rootSnapshot:r}=await this.match(n),o=new nt$1(r,t),i=new Fs("",o),s=Uw(r,[],this.urlTree.queryParams,this.urlTree.fragment);return s.queryParams=this.urlTree.queryParams,i.url=this.urlSerializer.serialize(s),{state:i,tree:s}}async match(n){let t=new Jo$1([],Object.freeze({}),Object.freeze(l({},this.urlTree.queryParams)),this.urlTree.fragment,Object.freeze({}),x,this.rootComponentType,null,{},this.injector);try{return {children:await this.processSegmentGroup(this.injector,this.config,n,x,t),rootSnapshot:t}}catch(r){if(r instanceof Us)return this.urlTree=r.urlTree,this.match(r.urlTree.root);throw r instanceof Sn$1?this.noMatchError(r):r}}async processSegmentGroup(n,t,r,o,i){if(r.segments.length===0&&r.hasChildren())return this.processChildren(n,t,r,i);let s=await this.processSegment(n,t,r,r.segments,o,true,i);return s instanceof nt$1?[s]:[]}async processChildren(n,t,r,o){let i=[];for(let c of Object.keys(r.children))c==="primary"?i.unshift(c):i.push(c);let s=[];for(let c of i){let u=r.children[c],l=yx(t,c),d=await this.processSegmentGroup(n,l,u,c,o);s.push(...d);}let a=iI(s);return Tx(a),a}async processSegment(n,t,r,o,i,s,a){for(let c of t)try{return await this.processSegmentAgainstRoute(c._injector??n,t,c,r,o,i,s,a)}catch(u){if(u instanceof Sn$1||Jw(u))continue;throw u}if(Cx(r,o,i))return new Mh;throw new Sn$1(r)}async processSegmentAgainstRoute(n,t,r,o,i,s,a,c){if(Pt$1(r)!==s&&(s===x||!al$1(o,i,r)))throw new Sn$1(o);if(r.redirectTo===void 0)return this.matchSegmentAgainstRoute(n,o,r,i,s,c);if(this.allowRedirects&&a)return this.expandSegmentAgainstRouteUsingRedirect(n,o,t,r,i,s,c);throw new Sn$1(o)}async expandSegmentAgainstRouteUsingRedirect(n,t,r,o,i,s,a){let{matched:c,parameters:u,consumedSegments:l,positionalParamSegments:d,remainingSegments:f}=oI(t,o,i);if(!c)throw new Sn$1(t);typeof o.redirectTo=="string"&&o.redirectTo[0]==="/"&&(this.absoluteRedirectCount++,this.absoluteRedirectCount>bx&&(this.allowRedirects=false));let p=this.createSnapshot(n,o,i,u,a);if(this.abortSignal.aborted)throw new Error(this.abortSignal.reason);let h=await this.applyRedirects.applyRedirectCommands(l,o.redirectTo,d,rI(p),n),m=await this.applyRedirects.lineralizeSegments(o,h);return this.processSegment(n,r,t,m.concat(f),s,false,a)}createSnapshot(n,t,r,o,i){let s=new Jo$1(r,o,Object.freeze(l({},this.urlTree.queryParams)),this.urlTree.fragment,Mx(t),Pt$1(t),t.component??t._loadedComponent??null,t,Nx(t),n),a=xh(s,i,this.paramsInheritanceStrategy);return s.params=Object.freeze(a.params),s.data=Object.freeze(a.data),s}async matchSegmentAgainstRoute(n,t,r,o,i,s){if(this.abortSignal.aborted)throw new Error(this.abortSignal.reason);let a=S=>this.createSnapshot(n,r,S.consumedSegments,S.parameters,s),c=await $u(vx(t,r,o,n,this.urlSerializer,a,this.abortSignal));if(r.path==="**"&&(t.children={}),!c?.matched)throw new Sn$1(t);n=r._injector??n;let{routes:u}=await this.getChildConfig(n,r,o),l=r._loadedInjector??n,{parameters:d,consumedSegments:f,remainingSegments:p}=c,h=this.createSnapshot(n,r,f,d,s),{segmentGroup:m,slicedSegments:y}=bw(t,f,p,u,i);if(y.length===0&&m.hasChildren()){let S=await this.processChildren(l,u,m,h);return new nt$1(h,S)}if(u.length===0&&y.length===0)return new nt$1(h,[]);let E=Pt$1(r)===i,D=await this.processSegment(l,u,m,y,E?x:i,true,h);return new nt$1(h,D instanceof nt$1?[D]:[])}async getChildConfig(n,t,r){if(t.children)return {routes:t.children,injector:n};if(t.loadChildren){if(t._loadedRoutes!==void 0){let i=t._loadedNgModuleFactory;return i&&!t._loadedInjector&&(t._loadedInjector=i.create(n).injector),{routes:t._loadedRoutes,injector:t._loadedInjector}}if(this.abortSignal.aborted)throw new Error(this.abortSignal.reason);if(await $u(dx(n,t,r,this.urlSerializer,this.abortSignal))){let i=await this.configLoader.loadChildren(n,t);return t._loadedRoutes=i.routes,t._loadedInjector=i.injector,t._loadedNgModuleFactory=i.factory,i}throw hx()}return {routes:[],injector:n}}};function Tx(e){e.sort((n,t)=>n.value.outlet===x?-1:t.value.outlet===x?1:n.value.outlet.localeCompare(t.value.outlet));}function _x(e){let n=e.value.routeConfig;return n&&n.path===""}function iI(e){let n=[],t=new Set;for(let r of e){if(!_x(r)){n.push(r);continue}let o=n.find(i=>r.value.routeConfig===i.value.routeConfig);o!==void 0?(o.children.push(...r.children),t.add(o)):n.push(r);}for(let r of t){let o=iI(r.children);n.push(new nt$1(r.value,o));}return n.filter(r=>!t.has(r))}function Mx(e){return e.data||{}}function Nx(e){return e.resolve||{}}function Ax(e,n,t,r,o,i,s){return Te$1(async a=>{let{state:c,tree:u}=await Sx(e,n,t,r,a.extractedUrl,o,i,s);return m(l({},a),{targetSnapshot:c,urlAfterRedirects:u})})}function Rx(e){return Te$1(n=>{let{targetSnapshot:t,guards:{canActivateChecks:r}}=n;if(!r.length)return A$1(n);let o=new Set(r.map(a=>a.route)),i=new Set;for(let a of o)if(!i.has(a))for(let c of sI(a))i.add(c);let s=0;return te$1(i).pipe(Pn$1(a=>o.has(a)?xx(a,t,e):(a.data=xh(a,a.parent,e).resolve,A$1(void 0))),Qe$1(()=>s++),xa$1(1),Te$1(a=>s===i.size?A$1(n):be$1))})}function sI(e){let n=e.children.map(t=>sI(t)).flat();return [e,...n]}function xx(e,n,t){let r=e.routeConfig,o=e._resolve;return r?.title!==void 0&&!qw(r)&&(o[Bs$1]=r.title),mi$1(()=>(e.data=xh(e,e.parent,t).resolve,Ox(o,e,n).pipe(Z$1(i=>(e._resolvedData=i,e.data=l(l({},e.data),i),null)))))}function Ox(e,n,t){let r=mh(e);if(r.length===0)return A$1({});let o={};return te$1(r).pipe(Te$1(i=>Lx(e[i],n,t).pipe(an$1(),Qe$1(s=>{if(s instanceof ei$1)throw ol$1(new bn$1,s);o[i]=s;}))),xa$1(1),Z$1(()=>o),hr$1(i=>Jw(i)?be$1:$l$1(i)))}function Lx(e,n,t){let r=n._environmentInjector,o=ni$1(e,r),i=o.resolve?o.resolve(n,t):Ee$1(r,()=>o(n,t));return Wr$1(i)}function Tw(e){return ze$1(n=>{let t=e(n);return t?te$1(t).pipe(Z$1(()=>n)):A$1(n)})}var Fh=(()=>{class e{buildTitle(t){let r,o=t.root;for(;o!==void 0;)r=this.getResolvedTitleForRoute(o)??r,o=o.children.find(i=>i.outlet===x);return r}getResolvedTitleForRoute(t){return t.data[Bs$1]}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:()=>g(aI)})}return e})(),aI=(()=>{class e extends Fh{title;constructor(t){super(),this.title=t;}updateTitle(t){let r=this.buildTitle(t);r!==void 0&&this.title.setTitle(r);}static \u0275fac=function(r){return new(r||e)(M$1(Dw))};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),tr$1=new I$1("",{factory:()=>({})}),Yr$1=new I$1(""),cl$1=(()=>{class e{componentLoaders=new WeakMap;childrenLoaders=new WeakMap;onLoadStartListener;onLoadEndListener;compiler=g(Lp);async loadComponent(t,r){if(this.componentLoaders.get(r))return this.componentLoaders.get(r);if(r._loadedComponent)return Promise.resolve(r._loadedComponent);this.onLoadStartListener&&this.onLoadStartListener(r);let o=(async()=>{try{let i=await Aw(Ee$1(t,()=>r.loadComponent())),s=await uI(Up(i));return this.onLoadEndListener&&this.onLoadEndListener(r),r._loadedComponent=s,s}finally{this.componentLoaders.delete(r);}})();return this.componentLoaders.set(r,o),o}loadChildren(t,r){if(this.childrenLoaders.get(r))return this.childrenLoaders.get(r);if(r._loadedRoutes)return Promise.resolve({routes:r._loadedRoutes,injector:r._loadedInjector});this.onLoadStartListener&&this.onLoadStartListener(r);let o=(async()=>{try{let i=await cI(r,this.compiler,t,this.onLoadEndListener);return r._loadedRoutes=i.routes,r._loadedInjector=i.injector,r._loadedNgModuleFactory=i.factory,i}finally{this.childrenLoaders.delete(r);}})();return this.childrenLoaders.set(r,o),o}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})();async function cI(e,n,t,r){let o=await Aw(Ee$1(t,()=>e.loadChildren())),i=await uI(Up(o)),s;i instanceof ou||Array.isArray(i)?s=i:s=await n.compileModuleAsync(i),r&&r(e);let a,c,l;return Array.isArray(s)?(c=s,true):(a=s.create(t).injector,l=s,c=a.get(Yr$1,[],{optional:true,self:true}).flat()),{routes:c.map(Ph),injector:a,factory:l}}async function uI(e){return e}var ul$1=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:()=>g(kx)})}return e})(),kx=(()=>{class e{shouldProcessUrl(t){return true}extract(t){return t}merge(t,r){return t}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})(),jh=new I$1(""),Uh=new I$1("");function lI(e,n,t){let r=e.get(Uh),o=e.get(G$1);if(!o.startViewTransition||r.skipNextTransition)return r.skipNextTransition=false,new Promise(u=>setTimeout(u));let i,s=new Promise(u=>{i=u;}),a=o.startViewTransition(()=>(i(),Px(e)));a.updateCallbackDone.catch(u=>{}),a.ready.catch(u=>{}),a.finished.catch(u=>{});let{onViewTransitionCreated:c}=r;return c&&Ee$1(e,()=>c({transition:a,from:n,to:t})),s}function Px(e){return new Promise(n=>{ss$1({read:()=>setTimeout(n)},{injector:e});})}var dI=new I$1(""),Fx=()=>{},Bh=new I$1(""),ll$1=(()=>{class e{currentNavigation=U$1(null,{equal:()=>false});currentTransition=null;lastSuccessfulNavigation=U$1(null);events=new Y$1;transitionAbortWithErrorSubject=new Y$1;configLoader=g(cl$1);environmentInjector=g(ne$1);destroyRef=g(_e$1);urlSerializer=g(er$1);rootContexts=g(qr$1);location=g(Kn$1);inputBindingEnabled=g(Hs,{optional:true})!==null;titleStrategy=g(Fh);options=g(tr$1,{optional:true})||{};paramsInheritanceStrategy=this.options.paramsInheritanceStrategy||HR;urlHandlingStrategy=g(ul$1);createViewTransition=g(jh,{optional:true});navigationErrorHandler=g(Bh,{optional:true});activatedRouteInjectorFeature=g(dI,{optional:true});navigationId=0;get hasRequestedNavigation(){return this.navigationId!==0}transitions;afterPreactivation=()=>A$1(void 0);rootComponentType=null;destroyed=false;constructor(){let t=o=>this.events.next(new Ku(o)),r=o=>this.events.next(new Qu(o));this.configLoader.onLoadEndListener=r,this.configLoader.onLoadStartListener=t,this.destroyRef.onDestroy(()=>{this.destroyed=true;});}complete(){this.transitions?.complete();}handleNavigationRequest(t){let r=++this.navigationId;J$1(()=>{this.transitions?.next(m(l({},t),{extractedUrl:this.urlHandlingStrategy.extract(t.rawUrl),targetSnapshot:null,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null,id:r,routesRecognizeHandler:{},beforeActivateHandler:{}}));});}setupNavigations(t){return this.transitions=new Se$1(null),this.transitions.pipe(Ke$1(r=>r!==null),ze$1(r=>{let o=true,i=false,s=new AbortController,a=()=>!i&&this.currentTransition?.id===r.id;return A$1(r).pipe(ze$1(c=>{if(this.navigationId>r.id)return this.cancelNavigationTransition(r,"",ke$1.SupersededByNewNavigation),be$1;this.currentTransition=r;let u=this.lastSuccessfulNavigation();this.currentNavigation.set({id:c.id,initialUrl:c.rawUrl,extractedUrl:c.extractedUrl,targetBrowserUrl:typeof c.extras.browserUrl=="string"?this.urlSerializer.parse(c.extras.browserUrl):c.extras.browserUrl,trigger:c.source,extras:c.extras,previousNavigation:u?m(l({},u),{previousNavigation:null}):null,abort:()=>s.abort(),routesRecognizeHandler:c.routesRecognizeHandler,beforeActivateHandler:c.beforeActivateHandler});let l$1=!t.navigated||this.isUpdatingInternalState()||this.isUpdatedBrowserUrl(),d=c.extras.onSameUrlNavigation??t.onSameUrlNavigation;if(!l$1&&d!=="reload")return this.events.next(new Xt$1(c.id,this.urlSerializer.serialize(c.rawUrl),"",Zo$1.IgnoredSameUrlNavigation)),c.resolve(false),be$1;if(this.urlHandlingStrategy.shouldProcessUrl(c.rawUrl))return A$1(c).pipe(ze$1(f=>(this.events.next(new Jn$1(f.id,this.urlSerializer.serialize(f.extractedUrl),f.source,f.restoredState)),f.id!==this.navigationId?be$1:Promise.resolve(f))),Ax(this.environmentInjector,this.configLoader,this.rootComponentType,t.config,this.urlSerializer,this.paramsInheritanceStrategy,s.signal),Qe$1(f=>{r.targetSnapshot=f.targetSnapshot,r.urlAfterRedirects=f.urlAfterRedirects,this.currentNavigation.update(p=>(p.finalUrl=f.urlAfterRedirects,p)),this.events.next(new ks$1);}),ze$1(f=>te$1(r.routesRecognizeHandler.deferredHandle??A$1(void 0)).pipe(Z$1(()=>f))),Qe$1(()=>{let f=new Ls(c.id,this.urlSerializer.serialize(c.extractedUrl),this.urlSerializer.serialize(c.urlAfterRedirects),c.targetSnapshot);this.events.next(f);}));if(l$1&&this.urlHandlingStrategy.shouldProcessUrl(c.currentRawUrl)){let{id:f,extractedUrl:p,source:h,restoredState:m$1,extras:y}=c,E=new Jn$1(f,this.urlSerializer.serialize(p),h,m$1);this.events.next(E);let D=Gw(this.rootComponentType,this.environmentInjector).snapshot;return this.currentTransition=r=m(l({},c),{targetSnapshot:D,urlAfterRedirects:p,extras:m(l({},y),{skipLocationChange:false,replaceUrl:false})}),this.currentNavigation.update(S=>(S.finalUrl=p,S)),A$1(r)}else return this.events.next(new Xt$1(c.id,this.urlSerializer.serialize(c.extractedUrl),"",Zo$1.IgnoredByUrlHandlingStrategy)),c.resolve(false),be$1}),Z$1(c=>{let u=new Wu(c.id,this.urlSerializer.serialize(c.extractedUrl),this.urlSerializer.serialize(c.urlAfterRedirects),c.targetSnapshot);return this.events.next(u),this.currentTransition=r=m(l({},c),{guards:WR(c.targetSnapshot,c.currentSnapshot,this.rootContexts)}),r}),rx(c=>this.events.next(c)),ze$1(c=>{if(r.guardsResult=c.guardsResult,c.guardsResult&&typeof c.guardsResult!="boolean")throw ol$1(this.urlSerializer,c.guardsResult);let u=new qu(c.id,this.urlSerializer.serialize(c.extractedUrl),this.urlSerializer.serialize(c.urlAfterRedirects),c.targetSnapshot,!!c.guardsResult);if(this.events.next(u),!a())return be$1;if(!c.guardsResult)return this.cancelNavigationTransition(c,"",ke$1.GuardRejected),be$1;if(c.guards.canActivateChecks.length===0)return A$1(c);let l=new Yu(c.id,this.urlSerializer.serialize(c.extractedUrl),this.urlSerializer.serialize(c.urlAfterRedirects),c.targetSnapshot);if(this.events.next(l),!a())return be$1;let d=false;return A$1(c).pipe(Rx(this.paramsInheritanceStrategy),Qe$1({next:()=>{d=true;let f=new Zu(c.id,this.urlSerializer.serialize(c.extractedUrl),this.urlSerializer.serialize(c.urlAfterRedirects),c.targetSnapshot);this.events.next(f);},complete:()=>{d||this.cancelNavigationTransition(c,"",ke$1.NoDataFromResolver);}}))}),Tw(c=>{let u=d=>{let f=[];if(d.routeConfig?._loadedComponent)d.component=d.routeConfig?._loadedComponent;else if(d.routeConfig?.loadComponent){let p=d._environmentInjector;f.push(this.configLoader.loadComponent(p,d.routeConfig).then(h=>{d.component=h;}));}for(let p of d.children)f.push(...u(p));return f},l=u(c.targetSnapshot.root);return l.length===0?A$1(c):te$1(Promise.all(l).then(()=>c))}),ze$1(c=>{let{newlyCreatedRoutes:u,state:l$1}=VR(t.routeReuseStrategy,c.targetSnapshot,c.currentRouterState);return this.currentTransition=r=c=m(l({},c),{targetRouterState:l$1,newlyCreatedRoutes:u}),this.currentNavigation.update(d=>(d.targetRouterState=l$1,d)),A$1(c)}),this.activatedRouteInjectorFeature?.operator()??(c=>c),Tw(()=>this.afterPreactivation()),ze$1(()=>{let{currentSnapshot:c,targetSnapshot:u}=r,l=this.createViewTransition?.(this.environmentInjector,c.root,u.root);return l?te$1(l).pipe(Z$1(()=>r)):A$1(r)}),sn$1(1),ze$1(c=>{o=false,this.events.next(new Qo$1);let u=r.beforeActivateHandler.deferredHandle;return u?te$1(u.then(()=>c)):A$1(c)}),Qe$1(c=>{new bh(t.routeReuseStrategy,r.targetRouterState,r.currentRouterState,u=>this.events.next(u),this.inputBindingEnabled).activate(this.rootContexts),c.newlyCreatedRoutes?.clear(),a()&&(i=true,this.currentNavigation.update(u=>(u.abort=Fx,u)),this.lastSuccessfulNavigation.set(J$1(this.currentNavigation)),this.events.next(new ot$1(c.id,this.urlSerializer.serialize(c.extractedUrl),this.urlSerializer.serialize(c.urlAfterRedirects))),this.titleStrategy?.updateTitle(c.targetRouterState.snapshot),c.resolve(true));}),vi$1(eI(s.signal).pipe(Ke$1(()=>!i&&o),Qe$1(()=>{this.cancelNavigationTransition(r,s.signal.reason+"",ke$1.Aborted);}))),Qe$1({complete:()=>{i=true;}}),vi$1(this.transitionAbortWithErrorSubject.pipe(Qe$1(c=>{throw c}))),yi$1(()=>{s.abort(),i||this.cancelNavigationTransition(r,"",ke$1.SupersededByNewNavigation),this.currentTransition?.id===r.id&&(this.currentNavigation.set(null),this.currentTransition=null);}),hr$1(c=>{if(i=true,_w(r),this.destroyed)return r.resolve(false),be$1;if(Xw(c))this.events.next(new Dt$1(r.id,this.urlSerializer.serialize(r.extractedUrl),c.message,c.cancellationCode)),GR(c)?this.events.next(new Xo$1(c.url,c.navigationBehaviorOptions)):r.resolve(false);else {let u=new Gr$1(r.id,this.urlSerializer.serialize(r.extractedUrl),c,r.targetSnapshot??void 0);try{let l=Ee$1(this.environmentInjector,()=>this.navigationErrorHandler?.(u));if(l instanceof ei$1){let{message:d,cancellationCode:f}=ol$1(this.urlSerializer,l);this.events.next(new Dt$1(r.id,this.urlSerializer.serialize(r.extractedUrl),d,f)),this.events.next(new Xo$1(l.redirectTo,l.navigationBehaviorOptions));}else throw this.events.next(u),c}catch(l){this.options.resolveNavigationPromiseOnError?r.resolve(false):r.reject(l);}}return be$1}))}))}cancelNavigationTransition(t,r,o){_w(t);let i=new Dt$1(t.id,this.urlSerializer.serialize(t.extractedUrl),r,o);this.events.next(i),t.resolve(false);}isUpdatingInternalState(){return this.currentTransition?.extractedUrl.toString()!==this.currentTransition?.currentUrlTree.toString()}isUpdatedBrowserUrl(){let t=this.urlHandlingStrategy.extract(this.urlSerializer.parse(this.location.path(true))),r=J$1(this.currentNavigation),o=r?.targetBrowserUrl??r?.extractedUrl;return t.toString()!==o?.toString()&&!r?.extras.skipLocationChange}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})();function jx(e){return e!==qo$1}function _w(e){if(e.newlyCreatedRoutes)for(let n of e.newlyCreatedRoutes)n._localInjector?.destroy();}var fI=new I$1("");var pI=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:()=>g(Ux)})}return e})(),sl$1=class sl{shouldDetach(n){return false}store(n,t){}shouldAttach(n){return false}retrieve(n){return null}shouldReuseRoute(n,t){return n.routeConfig===t.routeConfig}shouldDestroyInjector(n){return true}},Ux=(()=>{class e extends sl$1{static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})(),dl$1=(()=>{class e{urlSerializer=g(er$1);options=g(tr$1,{optional:true})||{};canceledNavigationResolution=this.options.canceledNavigationResolution||"replace";location=g(Kn$1);urlHandlingStrategy=g(ul$1);urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred";currentUrlTree=new Ve$1;getCurrentUrlTree(){return this.currentUrlTree}rawUrlTree=this.currentUrlTree;getRawUrlTree(){return this.rawUrlTree}createBrowserPath({finalUrl:t,initialUrl:r,targetBrowserUrl:o}){let i=t!==void 0?this.urlHandlingStrategy.merge(t,r):r,s=o??i;return s instanceof Ve$1?this.urlSerializer.serialize(s):s}routerUrlState(t){return t?.targetBrowserUrl===void 0||t?.finalUrl===void 0?{}:{\u0275routerUrl:this.urlSerializer.serialize(t.finalUrl)}}commitTransition({targetRouterState:t,finalUrl:r,initialUrl:o}){r&&t?(this.currentUrlTree=r,this.rawUrlTree=this.urlHandlingStrategy.merge(r,o),this.routerState=t):this.rawUrlTree=o;}routerState=Gw(null,g(ne$1));getRouterState(){return this.routerState}_stateMemento=this.createStateMemento();get stateMemento(){return this._stateMemento}updateStateMemento(){this._stateMemento=this.createStateMemento();}createStateMemento(){return {rawUrlTree:this.rawUrlTree,currentUrlTree:this.currentUrlTree,routerState:this.routerState}}restoredState(){return this.location.getState()}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:()=>g(Bx)})}return e})(),Bx=(()=>{class e extends dl$1{currentPageId=0;lastSuccessfulId=-1;get browserPageId(){return this.canceledNavigationResolution!=="computed"?this.currentPageId:this.restoredState()?.\u0275routerPageId??this.currentPageId}registerNonRouterCurrentEntryChangeListener(t){return this.location.subscribe(r=>{r.type==="popstate"&&setTimeout(()=>{t(r.url,r.state,"popstate",{replaceUrl:true});});})}handleRouterEvent(t,r){t instanceof Jn$1?this.updateStateMemento():t instanceof Xt$1?this.commitTransition(r):t instanceof Ls?this.urlUpdateStrategy==="eager"&&(r.extras.skipLocationChange||this.setBrowserUrl(this.createBrowserPath(r),r)):t instanceof Qo$1?(this.commitTransition(r),this.urlUpdateStrategy==="deferred"&&!r.extras.skipLocationChange&&this.setBrowserUrl(this.createBrowserPath(r),r)):t instanceof Dt$1&&!zw(t)?this.restoreHistory(r):t instanceof Gr$1?this.restoreHistory(r,true):t instanceof ot$1&&(this.lastSuccessfulId=t.id,this.currentPageId=this.browserPageId);}setBrowserUrl(t,r){let{extras:o,id:i}=r,{replaceUrl:s,state:a}=o;if(this.location.isCurrentPathEqualTo(t)||s){let c=this.browserPageId,u=l(l({},a),this.generateNgRouterState(i,c,r));this.location.replaceState(t,"",u);}else {let c=l(l({},a),this.generateNgRouterState(i,this.browserPageId+1,r));this.location.go(t,"",c);}}restoreHistory(t,r=false){if(this.canceledNavigationResolution==="computed"){let o=this.browserPageId,i=this.currentPageId-o;i!==0?this.location.historyGo(i):this.getCurrentUrlTree()===t.finalUrl&&i===0&&(this.resetInternalState(t),this.resetUrlToCurrentUrlTree());}else this.canceledNavigationResolution==="replace"&&(r&&this.resetInternalState(t),this.resetUrlToCurrentUrlTree());}resetInternalState({finalUrl:t}){this.routerState=this.stateMemento.routerState,this.currentUrlTree=this.stateMemento.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,t??this.rawUrlTree);}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.getRawUrlTree()),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId));}generateNgRouterState(t,r,o){return this.canceledNavigationResolution==="computed"?l({navigationId:t,\u0275routerPageId:r},this.routerUrlState(o)):l({navigationId:t},this.routerUrlState(o))}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})();function fl$1(e,n){e.events.pipe(Ke$1(t=>t instanceof ot$1||t instanceof Dt$1||t instanceof Gr$1||t instanceof Xt$1),Z$1(t=>t instanceof ot$1||t instanceof Xt$1?0:(t instanceof Dt$1?t.code===ke$1.Redirect||t.code===ke$1.SupersededByNewNavigation:false)?2:1),Ke$1(t=>t!==2),sn$1(1)).subscribe(()=>{n();});}var Ft$1=(()=>{class e{get currentUrlTree(){return this.stateManager.getCurrentUrlTree()}get rawUrlTree(){return this.stateManager.getRawUrlTree()}disposed=false;nonRouterCurrentEntryChangeSubscription;console=g(iu);stateManager=g(dl$1);options=g(tr$1,{optional:true})||{};pendingTasks=g(fn$1);urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred";navigationTransitions=g(ll$1);urlSerializer=g(er$1);location=g(Kn$1);urlHandlingStrategy=g(ul$1);injector=g(ne$1);_events=new Y$1;get events(){return this._events}get routerState(){return this.stateManager.getRouterState()}navigated=false;routeReuseStrategy=g(pI);injectorCleanup=g(fI,{optional:true});onSameUrlNavigation=this.options.onSameUrlNavigation||"ignore";config=g(Yr$1,{optional:true})?.flat()??[];componentInputBindingEnabled=!!g(Hs,{optional:true});currentNavigation=this.navigationTransitions.currentNavigation.asReadonly();constructor(){this.resetConfig(this.config),this.navigationTransitions.setupNavigations(this).subscribe({error:t=>{}}),this.subscribeToNavigationEvents();}eventsSubscription=new me$1;subscribeToNavigationEvents(){let t=this.navigationTransitions.events.subscribe(r=>{try{let o=this.navigationTransitions.currentTransition,i=J$1(this.navigationTransitions.currentNavigation);if(o!==null&&i!==null){if(this.stateManager.handleRouterEvent(r,i),r instanceof Dt$1&&r.code!==ke$1.Redirect&&r.code!==ke$1.SupersededByNewNavigation)this.navigated=!0;else if(r instanceof ot$1)this.navigated=!0,this.injectorCleanup?.(this.routeReuseStrategy,this.routerState,this.config);else if(r instanceof Xo$1){let s=r.navigationBehaviorOptions,a=this.urlHandlingStrategy.merge(r.url,o.currentRawUrl),c=l({scroll:o.extras.scroll,browserUrl:o.extras.browserUrl,info:o.extras.info,skipLocationChange:o.extras.skipLocationChange,replaceUrl:o.extras.replaceUrl||this.urlUpdateStrategy==="eager"||jx(o.source)},s);this.scheduleNavigation(a,qo$1,null,c,{resolve:o.resolve,reject:o.reject,promise:o.promise});}}UR(r)&&this._events.next(r);}catch(o){this.navigationTransitions.transitionAbortWithErrorSubject.next(o);}});this.eventsSubscription.add(t);}resetRootComponentType(t){this.routerState.root.component=t,this.navigationTransitions.rootComponentType=t;}initialNavigation(){this.setUpLocationChangeListener(),this.navigationTransitions.hasRequestedNavigation||this.navigateToSyncWithBrowser(this.location.path(true),qo$1,this.stateManager.restoredState(),{replaceUrl:true});}setUpLocationChangeListener(){this.nonRouterCurrentEntryChangeSubscription??=this.stateManager.registerNonRouterCurrentEntryChangeListener((t,r,o,i)=>{this.navigateToSyncWithBrowser(t,o,r,i);});}navigateToSyncWithBrowser(t,r,o,i){let s=o?.navigationId?o:null,a=o?.\u0275routerUrl??t;if(o?.\u0275routerUrl&&(i=m(l({},i),{browserUrl:t})),o){let u=l({},o);delete u.navigationId,delete u.\u0275routerPageId,delete u.\u0275routerUrl,Object.keys(u).length!==0&&(i.state=u);}let c=this.parseUrl(a);this.scheduleNavigation(c,r,s,i).catch(u=>{this.disposed||this.injector.get(et$1)(u);});}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return J$1(this.navigationTransitions.currentNavigation)}get lastSuccessfulNavigation(){return this.navigationTransitions.lastSuccessfulNavigation}resetConfig(t){this.config=t.map(Ph),this.navigated=false;}ngOnDestroy(){this.dispose();}dispose(){this._events.unsubscribe(),this.navigationTransitions.complete(),this.nonRouterCurrentEntryChangeSubscription?.unsubscribe(),this.nonRouterCurrentEntryChangeSubscription=void 0,this.disposed=true,this.eventsSubscription.unsubscribe();}createUrlTree(t,r={}){let{relativeTo:o,queryParams:i,fragment:s,queryParamsHandling:a,preserveFragment:c}=r,u=c?this.currentUrlTree.fragment:s,l$1=null;switch(a??this.options.defaultQueryParamsHandling){case "merge":l$1=l(l({},this.currentUrlTree.queryParams),i);break;case "preserve":l$1=this.currentUrlTree.queryParams;break;default:l$1=i||null;}l$1!==null&&(l$1=this.removeEmptyProps(l$1));let d;try{let f=o?o.snapshot:this.routerState.snapshot.root;d=Bw(f);}catch{(typeof t[0]!="string"||t[0][0]!=="/")&&(t=[]),d=this.currentUrlTree.root;}return Hw(d,t,l$1,u??null,this.urlSerializer)}navigateByUrl(t,r={skipLocationChange:false}){let o=Xn$1(t)?t:this.parseUrl(t),i=this.urlHandlingStrategy.merge(o,this.rawUrlTree);return this.scheduleNavigation(i,qo$1,null,r)}navigate(t,r={skipLocationChange:false}){return Hx(t),this.navigateByUrl(this.createUrlTree(t,r),r)}serializeUrl(t){return this.urlSerializer.serialize(t)}parseUrl(t){try{return this.urlSerializer.parse(t)}catch{return this.console.warn(ut$1(4018,false)),this.urlSerializer.parse("/")}}isActive(t,r){let o;if(r===true?o=l({},Ah):r===false?o=l({},xs$1):o=l(l({},xs$1),r),Xn$1(t))return yh(this.currentUrlTree,t,o);let i=this.parseUrl(t);return yh(this.currentUrlTree,i,o)}removeEmptyProps(t){return Object.entries(t).reduce((r,[o,i])=>(i!=null&&(r[o]=i),r),{})}scheduleNavigation(t,r,o,i,s){if(this.disposed)return Promise.resolve(false);let a,c,u;s?(a=s.resolve,c=s.reject,u=s.promise):u=new Promise((d,f)=>{a=d,c=f;});let l=this.pendingTasks.add();return fl$1(this,()=>{queueMicrotask(()=>this.pendingTasks.remove(l));}),this.navigationTransitions.handleNavigationRequest({source:r,restoredState:o,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,rawUrl:t,extras:i,resolve:a,reject:c,promise:u,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),u.catch(Promise.reject.bind(Promise))}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})();function Hx(e){for(let n=0;n{class e{router=g(Ft$1);stateManager=g(dl$1);fragment=U$1("");queryParams=U$1({});path=U$1("");serializer=g(er$1);constructor(){this.updateState(),this.router.events?.subscribe(t=>{t instanceof ot$1&&this.updateState();});}updateState(){let{fragment:t,root:r,queryParams:o}=this.stateManager.getCurrentUrlTree();this.fragment.set(t),this.queryParams.set(o),this.path.set(this.serializer.serialize(new Ve$1(r)));}static \u0275fac=function(r){return new(r||e)};static \u0275prov=K$1({token:e,factory:e.\u0275fac})}return e})(),pl$1=(()=>{class e{router;route;tabIndexAttribute;renderer;el;locationStrategy;hrefAttributeValue=g(new hu("href"),{optional:true});reactiveHref=kp(()=>this.isAnchorElement?this.computeHref(this._urlTree()):this.hrefAttributeValue);get href(){return J$1(this.reactiveHref)}set href(t){this.reactiveHref.set(t);}set target(t){this._target.set(t);}get target(){return J$1(this._target)}_target=U$1(void 0);set queryParams(t){this._queryParams.set(t);}get queryParams(){return J$1(this._queryParams)}_queryParams=U$1(void 0,{equal:()=>false});set fragment(t){this._fragment.set(t);}get fragment(){return J$1(this._fragment)}_fragment=U$1(void 0);set queryParamsHandling(t){this._queryParamsHandling.set(t);}get queryParamsHandling(){return J$1(this._queryParamsHandling)}_queryParamsHandling=U$1(void 0);set state(t){this._state.set(t);}get state(){return J$1(this._state)}_state=U$1(void 0,{equal:()=>false});set info(t){this._info.set(t);}get info(){return J$1(this._info)}_info=U$1(void 0,{equal:()=>false});set relativeTo(t){this._relativeTo.set(t);}get relativeTo(){return J$1(this._relativeTo)}_relativeTo=U$1(void 0);set preserveFragment(t){this._preserveFragment.set(t);}get preserveFragment(){return J$1(this._preserveFragment)}_preserveFragment=U$1(false);set skipLocationChange(t){this._skipLocationChange.set(t);}get skipLocationChange(){return J$1(this._skipLocationChange)}_skipLocationChange=U$1(false);set replaceUrl(t){this._replaceUrl.set(t);}get replaceUrl(){return J$1(this._replaceUrl)}_replaceUrl=U$1(false);browserUrl=mu(void 0);isAnchorElement;onChanges=new Y$1;applicationErrorHandler=g(et$1);options=g(tr$1,{optional:true});reactiveRouterState=g(Vx);constructor(t,r,o,i,s,a){this.router=t,this.route=r,this.tabIndexAttribute=o,this.renderer=i,this.el=s,this.locationStrategy=a;let c=s.nativeElement.tagName?.toLowerCase();this.isAnchorElement=c==="a"||c==="area"||!!(typeof customElements=="object"&&customElements.get(c)?.observedAttributes?.includes?.("href"));}setTabIndexIfNotOnNativeEl(t){this.tabIndexAttribute!=null||this.isAnchorElement||this.applyAttributeValue("tabindex",t);}ngOnChanges(t){this.onChanges.next(this);}routerLinkInput=U$1(null);set routerLink(t){t==null?(this.routerLinkInput.set(null),this.setTabIndexIfNotOnNativeEl(null)):(Xn$1(t)?this.routerLinkInput.set(t):this.routerLinkInput.set(Array.isArray(t)?t:[t]),this.setTabIndexIfNotOnNativeEl("0"));}onClick(t,r,o,i,s){let a=this._urlTree();if(a===null||this.isAnchorElement&&(t!==0||r||o||i||s||typeof this.target=="string"&&this.target!="_self"))return true;let c=this.browserUrl(),u=l({skipLocationChange:this.skipLocationChange,replaceUrl:this.replaceUrl,state:this.state,info:this.info},c!==void 0&&{browserUrl:c});return this.router.navigateByUrl(a,u)?.catch(l=>{this.applicationErrorHandler(l);}),!this.isAnchorElement}ngOnDestroy(){}applyAttributeValue(t,r){let o=this.renderer,i=this.el.nativeElement;r!==null?o.setAttribute(i,t,r):o.removeAttribute(i,t);}_urlTree=gs$1(()=>{this.reactiveRouterState.path(),this._preserveFragment()&&this.reactiveRouterState.fragment();let t=o=>o==="preserve"||o==="merge";(t(this._queryParamsHandling())||t(this.options?.defaultQueryParamsHandling))&&this.reactiveRouterState.queryParams();let r=this.routerLinkInput();return r===null||!this.router.createUrlTree?null:Xn$1(r)?r:this.router.createUrlTree(r,{relativeTo:this._relativeTo()!==void 0?this._relativeTo():this.route,queryParams:this._queryParams(),fragment:this._fragment(),queryParamsHandling:this._queryParamsHandling(),preserveFragment:this._preserveFragment()})},{equal:(t,r)=>this.computeHref(t)===this.computeHref(r)});get urlTree(){return J$1(this._urlTree)}computeHref(t){return t!==null&&this.locationStrategy?this.locationStrategy?.prepareExternalUrl(this.router.serializeUrl(t))??"":null}static \u0275fac=function(r){return new(r||e)(fe$1(Ft$1),fe$1(Jt$1),ns$1("tabindex"),fe$1(jr$1),fe$1(Rt$1),fe$1(Lt$1))};static \u0275dir=xt$1({type:e,selectors:[["","routerLink",""]],hostVars:2,hostBindings:function(r,o){r&1&&cu("click",function(s){return o.onClick(s.button,s.ctrlKey,s.shiftKey,s.altKey,s.metaKey)}),r&2&&su("href",o.reactiveHref(),qf)("target",o._target());},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",state:"state",info:"info",relativeTo:"relativeTo",preserveFragment:[2,"preserveFragment","preserveFragment",yn$1],skipLocationChange:[2,"skipLocationChange","skipLocationChange",yn$1],replaceUrl:[2,"replaceUrl","replaceUrl",yn$1],browserUrl:[1,"browserUrl"],routerLink:"routerLink"},features:[Yt$1]})}return e})(),$x=(()=>{class e{router;element;renderer;cdr;links;classes=[];routerEventsSubscription;linkInputChangesSubscription;_isActive=false;get isActive(){return this._isActive}routerLinkActiveOptions={exact:false};ariaCurrentWhenActive;isActiveChange=new Ae$1;link=g(pl$1,{optional:true});constructor(t,r,o,i){this.router=t,this.element=r,this.renderer=o,this.cdr=i,this.routerEventsSubscription=t.events.subscribe(s=>{s instanceof ot$1&&this.update();});}ngAfterContentInit(){A$1(this.links.changes,A$1(null)).pipe(kn$1()).subscribe(t=>{this.update(),this.subscribeToEachLinkOnChanges();});}subscribeToEachLinkOnChanges(){this.linkInputChangesSubscription?.unsubscribe();let t=[...this.links.toArray(),this.link].filter(r=>!!r).map(r=>r.onChanges);this.linkInputChangesSubscription=te$1(t).pipe(kn$1()).subscribe(r=>{this._isActive!==this.isLinkActive(this.router)(r)&&this.update();});}set routerLinkActive(t){let r=Array.isArray(t)?t:t.split(" ");this.classes=r.filter(o=>!!o);}ngOnChanges(t){this.update();}ngOnDestroy(){this.routerEventsSubscription.unsubscribe(),this.linkInputChangesSubscription?.unsubscribe();}update(){!this.links||!this.router.navigated||queueMicrotask(()=>{let t=this.hasActiveLinks();this.classes.forEach(r=>{t?this.renderer.addClass(this.element.nativeElement,r):this.renderer.removeClass(this.element.nativeElement,r);}),t&&this.ariaCurrentWhenActive!==void 0?this.renderer.setAttribute(this.element.nativeElement,"aria-current",this.ariaCurrentWhenActive.toString()):this.renderer.removeAttribute(this.element.nativeElement,"aria-current"),this._isActive!==t&&(this._isActive=t,this.cdr.markForCheck(),this.isActiveChange.emit(t));});}isLinkActive(t){let r=zx(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact??false?l({},Ah):l({},xs$1);return o=>{let i=o.urlTree;return i?J$1(Rh(i,t,r)):false}}hasActiveLinks(){let t=this.isLinkActive(this.router);return this.link&&t(this.link)||this.links.some(t)}static \u0275fac=function(r){return new(r||e)(fe$1(Ft$1),fe$1(Rt$1),fe$1(jr$1),fe$1(Hr$1))};static \u0275dir=xt$1({type:e,selectors:[["","routerLinkActive",""]],contentQueries:function(r,o,i){if(r&1&&du(i,pl$1,5),r&2){let s;Ap(s=Rp())&&(o.links=s);}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",ariaCurrentWhenActive:"ariaCurrentWhenActive",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],features:[Yt$1]})}return e})();function zx(e){let n=e;return !!(n.paths||n.matrixParams||n.queryParams||n.fragment)}var $s=class{};var hI=(()=>{class e{router;injector;preloadingStrategy;loader;subscription;constructor(t,r,o,i){this.router=t,this.injector=r,this.preloadingStrategy=o,this.loader=i;}setUpPreloading(){this.subscription=this.router.events.pipe(Ke$1(t=>t instanceof ot$1),Pn$1(()=>this.preload())).subscribe(()=>{});}preload(){return this.processRoutes(this.injector,this.router.config)}ngOnDestroy(){this.subscription?.unsubscribe();}processRoutes(t,r){let o=[];for(let i of r){i.providers&&!i._injector&&(i._injector=jo$1(i.providers,t,""));let s=i._injector??t;i._loadedNgModuleFactory&&!i._loadedInjector&&(i._loadedInjector=i._loadedNgModuleFactory.create(s).injector);let a=i._loadedInjector??s;(i.loadChildren&&!i._loadedRoutes&&i.canLoad===void 0||i.loadComponent&&!i._loadedComponent)&&o.push(this.preloadConfig(s,i)),(i.children||i._loadedRoutes)&&o.push(this.processRoutes(a,i.children??i._loadedRoutes));}return te$1(o).pipe(kn$1())}preloadConfig(t,r){return this.preloadingStrategy.preload(r,()=>{if(t.destroyed)return A$1(null);let o;r.loadChildren&&r.canLoad===void 0?o=te$1(this.loader.loadChildren(t,r)):o=A$1(null);let i=o.pipe(Te$1(s=>s===null?A$1(void 0):(r._loadedRoutes=s.routes,r._loadedInjector=s.injector,r._loadedNgModuleFactory=s.factory,this.processRoutes(s.injector??t,s.routes))));if(r.loadComponent&&!r._loadedComponent){let s=this.loader.loadComponent(t,r);return te$1([i,s]).pipe(kn$1())}else return i})}static \u0275fac=function(r){return new(r||e)(M$1(Ft$1),M$1(ne$1),M$1($s),M$1(cl$1))};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),gI=new I$1(""),Gx=(()=>{class e{options;routerEventsSubscription;scrollEventsSubscription;lastId=0;lastSource=qo$1;restoredId=0;store={};isHydrating=g(Bf,{optional:true})??false;urlSerializer=g(er$1);zone=g(de$1);viewportScroller=g(Zp);transitions=g(ll$1);constructor(t){this.options=t,this.options.scrollPositionRestoration||="disabled",this.options.anchorScrolling||="disabled",this.isHydrating&&g(Zn$1).whenStable().then(()=>{this.isHydrating=false;});}init(){this.options.scrollPositionRestoration!=="disabled"&&this.viewportScroller.setHistoryScrollRestoration("manual"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents();}createScrollEvents(){return this.transitions.events.subscribe(t=>{t instanceof Jn$1?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=t.navigationTrigger,this.restoredId=t.restoredState?t.restoredState.navigationId:0):t instanceof ot$1?(this.lastId=t.id,this.scheduleScrollEvent(t,this.urlSerializer.parse(t.urlAfterRedirects).fragment)):t instanceof Xt$1&&t.code===Zo$1.IgnoredSameUrlNavigation&&(this.lastSource=void 0,this.restoredId=0,this.scheduleScrollEvent(t,this.urlSerializer.parse(t.url).fragment));})}consumeScrollEvents(){return this.transitions.events.subscribe(t=>{if(!(t instanceof Ko$1)||t.scrollBehavior==="manual")return;let r={behavior:"instant"};t.position?this.options.scrollPositionRestoration==="top"?this.viewportScroller.scrollToPosition([0,0],r):this.options.scrollPositionRestoration==="enabled"&&this.viewportScroller.scrollToPosition(t.position,r):t.anchor&&this.options.anchorScrolling==="enabled"?this.viewportScroller.scrollToAnchor(t.anchor):this.options.scrollPositionRestoration!=="disabled"&&this.viewportScroller.scrollToPosition([0,0]);})}scheduleScrollEvent(t,r){if(this.isHydrating)return;let o=J$1(this.transitions.currentNavigation)?.extras.scroll;this.zone.runOutsideAngular(async()=>{await new Promise(i=>{setTimeout(i),typeof requestAnimationFrame<"u"&&requestAnimationFrame(i);}),this.zone.run(()=>{this.transitions.events.next(new Ko$1(t,this.lastSource==="popstate"?this.store[this.restoredId]:null,r,o));});});}ngOnDestroy(){this.routerEventsSubscription?.unsubscribe(),this.scrollEventsSubscription?.unsubscribe();}static \u0275fac=function(r){ds$1();};static \u0275prov=b({token:e,factory:e.\u0275fac})}return e})();function Wx(e,...n){return dt$1([{provide:Yr$1,multi:true,useValue:e},{provide:Jt$1,useFactory:mI},{provide:Ho$1,multi:true,useFactory:yI},n.map(t=>t.\u0275providers)])}function mI(){return g(Ft$1).routerState.root}function zs$1(e,n){return {\u0275kind:e,\u0275providers:n}}function yI(){let e=g(Ie$1);return n=>{let t=e.get(Zn$1);if(n!==t.components[0])return;let r=e.get(Ft$1),o=e.get(vI);e.get(Vh)===1&&r.initialNavigation(),e.get(wI,null,{optional:true})?.setUpPreloading(),e.get(gI,null,{optional:true})?.init(),r.resetRootComponentType(t.componentTypes[0]),o.closed||(o.next(),o.complete(),o.unsubscribe());}}var vI=new I$1("",{factory:()=>new Y$1}),Vh=new I$1("",{factory:()=>1});function EI(){let e=[{provide:$c$1,useValue:true},{provide:Vh,useValue:0},Bo$1(()=>{let n=g(Ie$1);return n.get(Vp,Promise.resolve()).then(()=>new Promise(r=>{let o=n.get(Ft$1),i=n.get(vI);fl$1(o,()=>{r(true);}),n.get(ll$1).afterPreactivation=()=>(r(true),i.closed?A$1(void 0):i),o.initialNavigation();}))})];return zs$1(2,e)}function DI(){let e=[Bo$1(()=>{g(Ft$1).setUpLocationChangeListener();}),{provide:Vh,useValue:2}];return zs$1(3,e)}var wI=new I$1("");function II(e){return zs$1(0,[{provide:wI,useExisting:hI},{provide:$s,useExisting:e}])}function CI(e={}){return zs$1(8,[{provide:Hs,useFactory:()=>new Zw(e)}])}function SI(e){qe$1("NgRouterViewTransitions");let n=[{provide:jh,useValue:lI},{provide:Uh,useValue:l({skipNextTransition:false},e)}];return zs$1(9,n)}var bI=[Kn$1,{provide:er$1,useClass:bn$1},Ft$1,qr$1,{provide:Jt$1,useFactory:mI},cl$1],qx=(()=>{class e{constructor(){}static forRoot(t,r){return {ngModule:e,providers:[bI,[],{provide:Yr$1,multi:true,useValue:t},[],r?.errorHandler?{provide:Bh,useValue:r.errorHandler}:[],{provide:tr$1,useValue:r||{}},r?.useHash?Zx():Kx(),Yx(),r?.preloadingStrategy?II(r.preloadingStrategy).\u0275providers:[],r?.initialNavigation?Qx(r):[],r?.bindToComponentInputs?CI(typeof r.bindToComponentInputs=="object"?r.bindToComponentInputs:{}).\u0275providers:[],r?.enableViewTransitions?SI().\u0275providers:[],Xx()]}}static forChild(t){return {ngModule:e,providers:[{provide:Yr$1,multi:true,useValue:t}]}}static \u0275fac=function(r){return new(r||e)};static \u0275mod=mn$1({type:e});static \u0275inj=$t$1({})}return e})();function Yx(){return {provide:gI,useFactory:()=>{let e=g(Zp),n=g(tr$1);return n.scrollOffset&&e.setOffset(n.scrollOffset),new Gx(n)}}}function Zx(){return {provide:Lt$1,useClass:Wp}}function Kx(){return {provide:Lt$1,useClass:Eu}}function Qx(e){return [e.initialNavigation==="disabled"?DI().\u0275providers:[],e.initialNavigation==="enabledBlocking"?EI().\u0275providers:[]]}var Hh=new I$1("");function Xx(){return [{provide:Hh,useFactory:yI},{provide:Ho$1,multi:true,useExisting:Hh}]}function Gs(e){return e==null||e===""||Array.isArray(e)&&e.length===0||!(e instanceof Date)&&typeof e=="object"&&Object.keys(e).length===0}function $h(e,n,t=new WeakSet){if(e===n)return true;if(!e||!n||typeof e!="object"||typeof n!="object"||t.has(e)||t.has(n))return false;t.add(e).add(n);let r=Array.isArray(e),o=Array.isArray(n),i,s,a;if(r&&o){if(s=e.length,s!=n.length)return false;for(i=s;i--!==0;)if(!$h(e[i],n[i],t))return false;return true}if(r!=o)return false;let c=e instanceof Date,u=n instanceof Date;if(c!=u)return false;if(c&&u)return e.getTime()==n.getTime();let l=e instanceof RegExp,d=n instanceof RegExp;if(l!=d)return false;if(l&&d)return e.toString()==n.toString();let f=Object.keys(e);if(s=f.length,s!==Object.keys(n).length)return false;for(i=s;i--!==0;)if(!Object.prototype.hasOwnProperty.call(n,f[i]))return false;for(i=s;i--!==0;)if(a=f[i],!$h(e[a],n[a],t))return false;return true}function Jx(e,n){return $h(e,n)}function _I(e){return typeof e=="function"&&"call"in e&&"apply"in e}function oe$1(e){return !Gs(e)}function hl$1(e,n){if(!e||!n)return null;try{let t=e[n];if(oe$1(t))return t}catch{}if(Object.keys(e).length){if(_I(n))return n(e);if(n.indexOf(".")===-1)return e[n];{let t=n.split("."),r=e;for(let o=0,i=t.length;oTI(s)===o)||"";return MI(Pe$1(e[i],t),r.join("."),t)}return}return Pe$1(e,t)}function eO(e,n=true){return Array.isArray(e)&&(n||e.length!==0)}function h4(e){return e instanceof Date}function NI(e){return oe$1(e)&&!isNaN(e)}function g4(e=""){return oe$1(e)&&e.length===1&&!!e.match(/\S| /)}function en$1(e,n){if(n){let t=n.test(e);return n.lastIndex=0,t}return false}function Zr$1(e){return e&&e.replace(/\/\*(?:(?!\*\/)[\s\S])*\*\/|[\r\n\t]+/g,"").replace(/ {2,}/g," ").replace(/ ([{:}]) /g,"$1").replace(/([;,]) /g,"$1").replace(/ !/g,"!").replace(/: /g,":").trim()}function it$1(e){if(e&&/[\xC0-\xFF\u0100-\u017E]/.test(e)){let n={A:/[\xC0-\xC5\u0100\u0102\u0104]/g,AE:/[\xC6]/g,C:/[\xC7\u0106\u0108\u010A\u010C]/g,D:/[\xD0\u010E\u0110]/g,E:/[\xC8-\xCB\u0112\u0114\u0116\u0118\u011A]/g,G:/[\u011C\u011E\u0120\u0122]/g,H:/[\u0124\u0126]/g,I:/[\xCC-\xCF\u0128\u012A\u012C\u012E\u0130]/g,IJ:/[\u0132]/g,J:/[\u0134]/g,K:/[\u0136]/g,L:/[\u0139\u013B\u013D\u013F\u0141]/g,N:/[\xD1\u0143\u0145\u0147\u014A]/g,O:/[\xD2-\xD6\xD8\u014C\u014E\u0150]/g,OE:/[\u0152]/g,R:/[\u0154\u0156\u0158]/g,S:/[\u015A\u015C\u015E\u0160]/g,T:/[\u0162\u0164\u0166]/g,U:/[\xD9-\xDC\u0168\u016A\u016C\u016E\u0170\u0172]/g,W:/[\u0174]/g,Y:/[\xDD\u0176\u0178]/g,Z:/[\u0179\u017B\u017D]/g,a:/[\xE0-\xE5\u0101\u0103\u0105]/g,ae:/[\xE6]/g,c:/[\xE7\u0107\u0109\u010B\u010D]/g,d:/[\u010F\u0111]/g,e:/[\xE8-\xEB\u0113\u0115\u0117\u0119\u011B]/g,g:/[\u011D\u011F\u0121\u0123]/g,i:/[\xEC-\xEF\u0129\u012B\u012D\u012F\u0131]/g,ij:/[\u0133]/g,j:/[\u0135]/g,k:/[\u0137,\u0138]/g,l:/[\u013A\u013C\u013E\u0140\u0142]/g,n:/[\xF1\u0144\u0146\u0148\u014B]/g,p:/[\xFE]/g,o:/[\xF2-\xF6\xF8\u014D\u014F\u0151]/g,oe:/[\u0153]/g,r:/[\u0155\u0157\u0159]/g,s:/[\u015B\u015D\u015F\u0161]/g,t:/[\u0163\u0165\u0167]/g,u:/[\xF9-\xFC\u0169\u016B\u016D\u016F\u0171\u0173]/g,w:/[\u0175]/g,y:/[\xFD\xFF\u0177]/g,z:/[\u017A\u017C\u017E]/g};for(let t in n)e=e.replace(n[t],t);}return e}function gl$1(e){return nr$1(e)?e.replace(/(_)/g,"-").replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase():e}function m4(e){return e==="auto"?0:typeof e=="number"?e:Number(e.replace(/[^\d.]/g,"").replace(",","."))*1e3}function tO(e,n){return e?e.classList?e.classList.contains(n):new RegExp("(^| )"+n+"( |$)","gi").test(e.className):false}function AI(e,n){if(e&&n){let t=r=>{tO(e,r)||(e.classList?e.classList.add(r):e.className+=" "+r);};[n].flat().filter(Boolean).forEach(r=>r.split(" ").forEach(t));}}function nO(){return window.innerWidth-document.documentElement.offsetWidth}function v4(e){typeof e=="string"?AI(document.body,e||"p-overflow-hidden"):(e!=null&&e.variableName&&document.body.style.setProperty(e.variableName,nO()+"px"),AI(document.body,e?.className||"p-overflow-hidden"));}function RI(e,n){if(e&&n){let t=r=>{e.classList?e.classList.remove(r):e.className=e.className.replace(new RegExp("(^|\\b)"+r.split(" ").join("|")+"(\\b|$)","gi")," ");};[n].flat().filter(Boolean).forEach(r=>r.split(" ").forEach(t));}}function E4(e){typeof e=="string"?RI(document.body,e||"p-overflow-hidden"):(e!=null&&e.variableName&&document.body.style.removeProperty(e.variableName),RI(document.body,e?.className||"p-overflow-hidden"));}function Gh(e){for(let n of document?.styleSheets)try{for(let t of n?.cssRules)for(let r of t?.style)if(e.test(r))return {name:r,value:t.style.getPropertyValue(r).trim()}}catch{}return null}function xI(e){let n={width:0,height:0};if(e){let[t,r]=[e.style.visibility,e.style.display],o=e.getBoundingClientRect();e.style.visibility="hidden",e.style.display="block",n.width=o.width||e.offsetWidth,n.height=o.height||e.offsetHeight,e.style.display=r,e.style.visibility=t;}return n}function OI(){let e=window,n=document,t=n.documentElement,r=n.getElementsByTagName("body")[0],o=e.innerWidth||t.clientWidth||r.clientWidth,i=e.innerHeight||t.clientHeight||r.clientHeight;return {width:o,height:i}}function Wh(e){return e?Math.abs(e.scrollLeft):0}function rO(){let e=document.documentElement;return (window.pageXOffset||Wh(e))-(e.clientLeft||0)}function oO(){let e=document.documentElement;return (window.pageYOffset||e.scrollTop)-(e.clientTop||0)}function iO(e){return e?getComputedStyle(e).direction==="rtl":false}function D4(e,n,t=true){var r,o,i,s;if(e){let a=e.offsetParent?{width:e.offsetWidth,height:e.offsetHeight}:xI(e),c=a.height,u=a.width,l=n.offsetHeight,d=n.offsetWidth,f=n.getBoundingClientRect(),p=oO(),h=rO(),m=OI(),y,E,D="top";f.top+l+c>m.height?(y=f.top+p-c,D="bottom",y<0&&(y=p)):y=l+f.top+p,f.left+u>m.width?E=Math.max(0,f.left+h+d-u):E=f.left+h,iO(e)?e.style.insetInlineEnd=E+"px":e.style.insetInlineStart=E+"px",e.style.top=y+"px",e.style.transformOrigin=D,t&&(e.style.marginTop=D==="bottom"?`calc(${(o=(r=Gh(/-anchor-gutter$/))==null?void 0:r.value)!=null?o:"2px"} * -1)`:(s=(i=Gh(/-anchor-gutter$/))==null?void 0:i.value)!=null?s:"");}}function w4(e,n){e&&(typeof n=="string"?e.style.cssText=n:Object.entries(n||{}).forEach(([t,r])=>e.style[t]=r));}function I4(e,n){if(e instanceof HTMLElement){let t=e.offsetWidth;return t}return 0}function C4(e,n,t=true,r=void 0){var o;if(e){let i=e.offsetParent?{width:e.offsetWidth,height:e.offsetHeight}:xI(e),s=n.offsetHeight,a=n.getBoundingClientRect(),c=OI(),u,l,d=r??"top";if(!r&&a.top+s+i.height>c.height?(u=-1*i.height,d="bottom",a.top+u<0&&(u=-1*a.top)):u=s,i.width>c.width?l=a.left*-1:a.left+i.width>c.width?l=(a.left+i.width-c.width)*-1:l=0,e.style.top=u+"px",e.style.insetInlineStart=l+"px",e.style.transformOrigin=d,t){let f=(o=Gh(/-anchor-gutter$/))==null?void 0:o.value;e.style.marginTop=d==="bottom"?`calc(${f??"2px"} * -1)`:f??"";}}}function LI(e){if(e){let n=e.parentNode;return n&&n instanceof ShadowRoot&&n.host&&(n=n.host),n}return null}function sO(e){return !!(e!==null&&typeof e<"u"&&e.nodeName&&LI(e))}function Kr$1(e){return typeof Element<"u"?e instanceof Element:e!==null&&typeof e=="object"&&e.nodeType===1&&typeof e.nodeName=="string"}function ml$1(e){var n;if(Kr$1(e))return e;if(!e||typeof e!="object")return;let t=e;if("current"in e)t=e.current,t=(n=ml$1(t?.elementRef))!=null?n:t;else if("value"in e)t=e.value;else if("nativeElement"in e)t=e.nativeElement;else if("el"in e){let r=e.el;r&&typeof r=="object"&&"nativeElement"in r?t=r.nativeElement:t=r;}else if("elementRef"in e)return ml$1(e.elementRef);return t=Pe$1(t),Kr$1(t)?t:void 0}function aO(e,n){var t,r,o;if(e)switch(e){case "document":return document;case "window":return window;case "body":return document.body;case "@next":return n?.nextElementSibling;case "@prev":return n?.previousElementSibling;case "@first":return n?.firstElementChild;case "@last":return n?.lastElementChild;case "@child":return (t=n?.children)==null?void 0:t[0];case "@parent":return n?.parentElement;case "@grandparent":return (r=n?.parentElement)==null?void 0:r.parentElement;default:{if(typeof e=="string"){let a=e.match(/^@child\[(\d+)]/);return a?((o=n?.children)==null?void 0:o[parseInt(a[1],10)])||null:document.querySelector(e)||null}let i=(a=>typeof a=="function"&&"call"in a&&"apply"in a)(e)?e():e,s=ml$1(i);return sO(s)?s:i?.nodeType===9?i:void 0}}}function b4(e,n){let t=aO(e,n);if(t)t.appendChild(n);else throw new Error("Cannot append "+n+" to "+e)}function yl$1(e,n={}){if(Kr$1(e)){let t=(o,i)=>{var s,a;let c=(s=e?.$attrs)!=null&&s[o]?[(a=e?.$attrs)==null?void 0:a[o]]:[];return [i].flat().reduce((u,l)=>{if(l!=null){let d=typeof l;if(d==="string"||d==="number")u.push(l);else if(d==="object"){let f=Array.isArray(l)?t(o,l):Object.entries(l).map(([p,h])=>o==="style"&&(h||h===0)?`${p.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase()}:${h}`:h?p:void 0);u=f.length?u.concat(f.filter(p=>!!p)):u;}}return u},c)},r=o=>{t("style",o).forEach(i=>{let s=i.indexOf(":");if(s<0)return;let a=i.slice(0,s).trim(),c=i.slice(s+1).trim();a&&e.style.setProperty(a,c);});};Object.entries(n).forEach(([o,i])=>{if(i!=null){let s=o.match(/^on(.+)/);s?e.addEventListener(s[1].toLowerCase(),i):o==="p-bind"||o==="pBind"?yl$1(e,i):o==="style"?(r(i),(e.$attrs=e.$attrs||{})&&(e.$attrs[o]=e.style.cssText)):(i=o==="class"?[...new Set(t("class",i))].join(" ").trim():i,(e.$attrs=e.$attrs||{})&&(e.$attrs[o]=i),e.setAttribute(o,i));}});}}function T4(e,n={},...t){if(e){let r=document.createElement(e);return yl$1(r,n),r.append(...t),r}}function _4(e,n){if(e){e.style.opacity="0";let t=+new Date,r="0",o=function(){r=`${+e.style.opacity+(new Date().getTime()-t)/n}`,e.style.opacity=r,t=+new Date,+r<1&&("requestAnimationFrame"in window?requestAnimationFrame(o):setTimeout(o,16));};o();}}function cO(e,n){return Kr$1(e)?Array.from(e.querySelectorAll(n)):[]}function M4(e,n){return Kr$1(e)?e.matches(n)?e:e.querySelector(n):null}function N4(e,n){e&&document.activeElement!==e&&e.focus(n);}function A4(e,n){if(Kr$1(e)){let t=e.getAttribute(n);return isNaN(t)?t==="true"||t==="false"?t==="true":t:+t}}function kI(e,n=""){let t=cO(e,`button:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${n}, + [href]:not([tabindex = "-1"]):not([style*="display:none"]):not([hidden])${n}, + input:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${n}, + select:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${n}, + textarea:not([tabindex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${n}, + [tabIndex]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${n}, + [contenteditable]:not([tabIndex = "-1"]):not([disabled]):not([style*="display:none"]):not([hidden])${n}`),r=[];for(let o of t)getComputedStyle(o).display!="none"&&getComputedStyle(o).visibility!="hidden"&&r.push(o);return r}function R4(e,n){let t=kI(e,n);return t.length>0?t[0]:null}function x4(e){if(e){let n=e.offsetHeight,t=getComputedStyle(e);return n-=parseFloat(t.paddingTop)+parseFloat(t.paddingBottom)+parseFloat(t.borderTopWidth)+parseFloat(t.borderBottomWidth),n}return 0}function O4(e){var n;if(e){let t=(n=LI(e))==null?void 0:n.childNodes,r=0;if(t)for(let o=0;o0?t[t.length-1]:null}function k4(e){if(e){let n=e.getBoundingClientRect();return {top:n.top+(window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0),left:n.left+(window.pageXOffset||Wh(document.documentElement)||Wh(document.body)||0)}}return {top:"auto",left:"auto"}}function uO(e,n){if(e){let t=e.offsetHeight;return t}return 0}function P4(){if(window.getSelection)return window.getSelection().toString();if(document.getSelection)return document.getSelection().toString()}function F4(e){if(e){let n=e.offsetWidth,t=getComputedStyle(e);return n-=parseFloat(t.paddingLeft)+parseFloat(t.paddingRight)+parseFloat(t.borderLeftWidth)+parseFloat(t.borderRightWidth),n}return 0}function j4(e){if(e){let n=e.nodeName,t=e.parentElement&&e.parentElement.nodeName;return n==="INPUT"||n==="TEXTAREA"||n==="BUTTON"||n==="A"||t==="INPUT"||t==="TEXTAREA"||t==="BUTTON"||t==="A"||!!e.closest(".p-button, .p-checkbox, .p-radiobutton")}return false}function U4(e){return !!(e&&e.offsetParent!=null)}function B4(){return typeof window>"u"||!window.matchMedia?false:window.matchMedia("(prefers-reduced-motion: reduce)").matches}function H4(){return "ontouchstart"in window||navigator.maxTouchPoints>0||navigator.msMaxTouchPoints>0}function V4(){return new Promise(e=>{requestAnimationFrame(()=>{requestAnimationFrame(e);});})}function $4(e){var n;e&&("remove"in Element.prototype?e.remove():(n=e.parentNode)==null||n.removeChild(e));}function z4(e,n){let t=ml$1(e);if(t)t.removeChild(n);else throw new Error("Cannot remove "+n+" from "+e)}function G4(e,n){let t=getComputedStyle(e).getPropertyValue("borderTopWidth"),r=t?parseFloat(t):0,o=getComputedStyle(e).getPropertyValue("paddingTop"),i=o?parseFloat(o):0,s=e.getBoundingClientRect(),a=n.getBoundingClientRect().top+document.body.scrollTop-(s.top+document.body.scrollTop)-r-i,c=e.scrollTop,u=e.clientHeight,l=uO(n);a<0?e.scrollTop=c+a:a+l>u&&(e.scrollTop=c+a-u+l);}function PI(e,n="",t){if(Kr$1(e)&&t!==null&&t!==void 0){if(n==="style"){typeof t=="string"?e.style.cssText=t:typeof t=="object"&&Object.entries(t).forEach(([r,o])=>{if(o==null)return;let i=r.startsWith("--")?r:r.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();e.style.setProperty(i,String(o));});return}e.setAttribute(n,t);}}function W4(e,n,t=null,r){var o;n&&((o=e?.style)==null||o.setProperty(n,t,r));}function FI(){let e=new Map;return {on(n,t){let r=e.get(n);return r?r.push(t):r=[t],e.set(n,r),this},off(n,t){let r=e.get(n);return r&&r.splice(r.indexOf(t)>>>0,1),this},emit(n,t){let r=e.get(n);r&&r.forEach(o=>{o(t);});},clear(){e.clear();}}}var jI=["*"],lO=(function(e){return e[e.ACCEPT=0]="ACCEPT",e[e.REJECT=1]="REJECT",e[e.CANCEL=2]="CANCEL",e})(lO||{}),X4=(()=>{class e{requireConfirmationSource=new Y$1;acceptConfirmationSource=new Y$1;requireConfirmation$=this.requireConfirmationSource.asObservable();accept=this.acceptConfirmationSource.asObservable();confirm(t){return this.requireConfirmationSource.next(t),this}close(){return this.requireConfirmationSource.next(null),this}onAccept(){this.acceptConfirmationSource.next(null);}static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:e.\u0275fac})}return e})();var Me$1=(()=>{class e{static STARTS_WITH="startsWith";static CONTAINS="contains";static NOT_CONTAINS="notContains";static ENDS_WITH="endsWith";static EQUALS="equals";static NOT_EQUALS="notEquals";static IN="in";static LESS_THAN="lt";static LESS_THAN_OR_EQUAL_TO="lte";static GREATER_THAN="gt";static GREATER_THAN_OR_EQUAL_TO="gte";static BETWEEN="between";static IS="is";static IS_NOT="isNot";static BEFORE="before";static AFTER="after";static DATE_IS="dateIs";static DATE_IS_NOT="dateIsNot";static DATE_BEFORE="dateBefore";static DATE_AFTER="dateAfter"}return e})(),J4=(()=>{class e{static AND="and";static OR="or"}return e})(),eq=(()=>{class e{filter(t,r,o,i,s){let a=[];if(t)for(let c of t)for(let u of r){let l=hl$1(c,u);if(this.filters[i](l,o,s)){a.push(c);break}}return a}filters={startsWith:(t,r,o)=>{if(r==null||typeof r=="string"&&r.trim()==="")return true;if(t==null)return false;let i=it$1(r.toString()).toLocaleLowerCase(o);return it$1(t.toString()).toLocaleLowerCase(o).slice(0,i.length)===i},contains:(t,r,o)=>{if(r==null||typeof r=="string"&&r.trim()==="")return true;if(t==null)return false;let i=it$1(r.toString()).toLocaleLowerCase(o);return it$1(t.toString()).toLocaleLowerCase(o).indexOf(i)!==-1},notContains:(t,r,o)=>{if(r==null||typeof r=="string"&&r.trim()==="")return true;if(t==null)return false;let i=it$1(r.toString()).toLocaleLowerCase(o);return it$1(t.toString()).toLocaleLowerCase(o).indexOf(i)===-1},endsWith:(t,r,o)=>{if(r==null||typeof r=="string"&&r.trim()==="")return true;if(t==null)return false;let i=it$1(r.toString()).toLocaleLowerCase(o),s=it$1(t.toString()).toLocaleLowerCase(o);return s.indexOf(i,s.length-i.length)!==-1},equals:(t,r,o)=>r==null||typeof r=="string"&&r.trim()===""?true:t==null?false:t.getTime&&r.getTime?t.getTime()===r.getTime():t==r?true:it$1(t.toString()).toLocaleLowerCase(o)==it$1(r.toString()).toLocaleLowerCase(o),notEquals:(t,r,o)=>r==null||typeof r=="string"&&r.trim()===""?false:t==null?true:t.getTime&&r.getTime?t.getTime()!==r.getTime():t==r?false:it$1(t.toString()).toLocaleLowerCase(o)!=it$1(r.toString()).toLocaleLowerCase(o),in:(t,r)=>{if(r==null||r.length===0)return true;for(let o=0;or==null||r[0]==null||r[1]==null?true:t==null?false:t.getTime?r[0].getTime()<=t.getTime()&&t.getTime()<=r[1].getTime():r[0]<=t&&t<=r[1],lt:(t,r,o)=>r==null?true:t==null?false:t.getTime&&r.getTime?t.getTime()r==null?true:t==null?false:t.getTime&&r.getTime?t.getTime()<=r.getTime():t<=r,gt:(t,r,o)=>r==null?true:t==null?false:t.getTime&&r.getTime?t.getTime()>r.getTime():t>r,gte:(t,r,o)=>r==null?true:t==null?false:t.getTime&&r.getTime?t.getTime()>=r.getTime():t>=r,is:(t,r,o)=>this.filters.equals(t,r,o),isNot:(t,r,o)=>this.filters.notEquals(t,r,o),before:(t,r,o)=>this.filters.lt(t,r,o),after:(t,r,o)=>this.filters.gt(t,r,o),dateIs:(t,r)=>r==null?true:t==null?false:t.toDateString()===r.toDateString(),dateIsNot:(t,r)=>r==null?true:t==null?false:t.toDateString()!==r.toDateString(),dateBefore:(t,r)=>r==null?true:t==null?false:t.getTime()r==null?true:t==null?false:(t.setHours(0,0,0,0),t.getTime()>r.getTime())};register(t,r){this.filters[t]=r;}static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),tq=(()=>{class e{messageSource=new Y$1;clearSource=new Y$1;messageObserver=this.messageSource.asObservable();clearObserver=this.clearSource.asObservable();add(t){t&&this.messageSource.next(t);}addAll(t){t&&t.length&&this.messageSource.next(t);}clear(t){this.clearSource.next(t||null);}static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:e.\u0275fac})}return e})(),nq=(()=>{class e{clickSource=new Y$1;parentDragSource=new Y$1;clickObservable=this.clickSource.asObservable();parentDragObservable=this.parentDragSource.asObservable();add(t){t&&this.clickSource.next(t);}emitParentDrag(t){this.parentDragSource.next(t);}static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var rq=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275cmp=Uo$1({type:e,selectors:[["p-header"]],standalone:false,ngContentSelectors:jI,decls:1,vars:0,template:function(r,o){r&1&&(uu(),lu(0));},encapsulation:2})}return e})(),oq=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275cmp=Uo$1({type:e,selectors:[["p-footer"]],standalone:false,ngContentSelectors:jI,decls:1,vars:0,template:function(r,o){r&1&&(uu(),lu(0));},encapsulation:2})}return e})();var iq=(()=>{class e{static \u0275fac=function(r){return new(r||e)};static \u0275mod=mn$1({type:e});static \u0275inj=$t$1({imports:[Tu]})}return e})(),sq=(()=>{class e{static STARTS_WITH="startsWith";static CONTAINS="contains";static NOT_CONTAINS="notContains";static ENDS_WITH="endsWith";static EQUALS="equals";static NOT_EQUALS="notEquals";static NO_FILTER="noFilter";static LT="lt";static LTE="lte";static GT="gt";static GTE="gte";static IS="is";static IS_NOT="isNot";static BEFORE="before";static AFTER="after";static CLEAR="clear";static APPLY="apply";static MATCH_ALL="matchAll";static MATCH_ANY="matchAny";static ADD_RULE="addRule";static REMOVE_RULE="removeRule";static ACCEPT="accept";static REJECT="reject";static CHOOSE="choose";static UPLOAD="upload";static CANCEL="cancel";static PENDING="pending";static FILE_SIZE_TYPES="fileSizeTypes";static DAY_NAMES="dayNames";static DAY_NAMES_SHORT="dayNamesShort";static DAY_NAMES_MIN="dayNamesMin";static MONTH_NAMES="monthNames";static MONTH_NAMES_SHORT="monthNamesShort";static FIRST_DAY_OF_WEEK="firstDayOfWeek";static TODAY="today";static WEEK_HEADER="weekHeader";static WEAK="weak";static MEDIUM="medium";static STRONG="strong";static PASSWORD_PROMPT="passwordPrompt";static EMPTY_MESSAGE="emptyMessage";static EMPTY_FILTER_MESSAGE="emptyFilterMessage";static SHOW_FILTER_MENU="showFilterMenu";static HIDE_FILTER_MENU="hideFilterMenu";static SELECTION_MESSAGE="selectionMessage";static ARIA="aria";static SELECT_COLOR="selectColor";static BROWSE_FILES="browseFiles"}return e})();var dO=Object.defineProperty,fO=Object.defineProperties,pO=Object.getOwnPropertyDescriptors,vl$1=Object.getOwnPropertySymbols,BI=Object.prototype.hasOwnProperty,HI=Object.prototype.propertyIsEnumerable,UI=(e,n,t)=>n in e?dO(e,n,{enumerable:true,configurable:true,writable:true,value:t}):e[n]=t,Ut$1=(e,n)=>{for(var t in n||(n={}))BI.call(n,t)&&UI(e,t,n[t]);if(vl$1)for(var t of vl$1(n))HI.call(n,t)&&UI(e,t,n[t]);return e},qh=(e,n)=>fO(e,pO(n)),rr$1=(e,n)=>{var t={};for(var r in e)BI.call(e,r)&&n.indexOf(r)<0&&(t[r]=e[r]);if(e!=null&&vl$1)for(var r of vl$1(e))n.indexOf(r)<0&&HI.call(e,r)&&(t[r]=e[r]);return t};var hO=FI(),tn$1=hO,Qr$1=/{([^}]*)}/g,Yh=/(\d+\s+[\+\-\*\/]\s+\d+)/g,Zh=/var\([^)]+\)/g;function Kh(e){return nr$1(e)?e.replace(/[A-Z]/g,(n,t)=>t===0?n:"."+n.toLowerCase()).toLowerCase():e}function gO(e){return Tn$1(e)&&e.hasOwnProperty("$value")&&e.hasOwnProperty("$type")?e.$value:e}function mO(e){return e.replaceAll(/ /g,"").replace(/[^\w]/g,"-")}function Qh(e="",n=""){return mO(`${nr$1(e,false)&&nr$1(n,false)?`${e}-`:e}${n}`)}function VI(e="",n=""){return `--${Qh(e,n)}`}function yO(e=""){let n=(e.match(/{/g)||[]).length,t=(e.match(/}/g)||[]).length;return (n+t)%2!==0}function Jh(e,n="",t="",r=[],o){if(nr$1(e)){let i=e.trim();if(yO(i))return;if(en$1(i,Qr$1)){let s=i.replaceAll(Qr$1,a=>{let c=a.replace(/{|}/g,"").split(".").filter(u=>!r.some(l=>en$1(u,l)));return `var(${VI(t,gl$1(c.join("-")))}${oe$1(o)?`, ${o}`:""})`});return en$1(s.replace(Zh,"0"),Yh)?`calc(${s})`:s}return i}else if(NI(e))return e}function vO(e,n,t){nr$1(n,false)&&e.push(`${n}:${t};`);}function ri$1(e,n){return e?`${e}{${n}}`:""}function $I(e,n){if(e.indexOf("dt(")===-1)return e;function t(s,a){let c=[],u=0,l="",d=null,f=0;for(;u<=s.length;){let p=s[u];if((p==='"'||p==="'"||p==="`")&&s[u-1]!=="\\"&&(d=d===p?null:p),!d&&(p==="("&&f++,p===")"&&f--,(p===","||u===s.length)&&f===0)){let h=l.trim();h.startsWith("dt(")?c.push($I(h,a)):c.push(r(h)),l="",u++;continue}p!==void 0&&(l+=p),u++;}return c}function r(s){let a=s[0];if((a==='"'||a==="'"||a==="`")&&s[s.length-1]===a)return s.slice(1,-1);let c=Number(s);return isNaN(c)?s:c}let o=[],i=[];for(let s=0;s0){let a=i.pop();i.length===0&&o.push([a,s]);}if(!o.length)return e;for(let s=o.length-1;s>=0;s--){let[a,c]=o[s],u=e.slice(a+3,c),l=t(u,n),d=n(...l);e=e.slice(0,a)+d+e.slice(c+1);}return e}var EO=(e,n)=>{let t=e.split("."),r="";for(let o=0;o{var o,i,s;let a=ee$1.tokens,c=EO(e,t),u=a.__strictCache;u||(u=new Map,Object.defineProperty(a,"__strictCache",{value:u,enumerable:false,configurable:true}));let l=r?`${n}|${c}|${r}`:`${n}|${c}`;if(u.has(l))return u.get(l);let d=(s=(i=(o=a[c])==null?void 0:o.paths)==null?void 0:i[0])==null?void 0:s.value,f;if(typeof d!="string")f=d??ee$1.getTokenValue(e);else if(Qr$1.lastIndex=0,!Qr$1.test(d))f=d;else {let p=c.slice(0,c.indexOf(".")),h=d.replace(Qr$1,m=>{let y=m.slice(1,-1),E=y.indexOf(".");if((E===-1?y:y.slice(0,E))!==p)return m;let D=ee$1.getTokenValue(y);return D==null?m:`${D}`});f=Jh(h,void 0,n,[t],r);}return u.set(l,f),f},pq=e=>{var n;let t=ee$1.getTheme(),r=Xh(t,e,void 0,"variable"),o=(n=r?.match(/--[\w-]+/g))==null?void 0:n[0],i=Xh(t,e,void 0,"value");return {name:o,variable:r,value:i}},_n$1=(...e)=>Xh(ee$1.getTheme(),...e),Xh=(e={},n,t,r)=>{var o,i,s,a,c,u,l,d,f,p;if(!n)return "";let h=(o=ee$1.defaults)==null?void 0:o.variable,m=(c=(i=e?.options)==null?void 0:i.prefix)!=null?c:(a=(s=ee$1.defaults)==null?void 0:s.options)==null?void 0:a.prefix,y=(p=(f=(u=e?.options)==null?void 0:u.cssVariables)!=null?f:(d=(l=ee$1.defaults)==null?void 0:l.options)==null?void 0:d.cssVariables)!=null?p:true;if(r==="value")return ee$1.getTokenValue(n);if(Gs(r)&&!y)return DO(n,m,h.excludedKeyRegex,t);let E=en$1(n,Qr$1)?n:`{${n}}`;return Jh(E,void 0,m,[h.excludedKeyRegex],t)};function oi$1(e,...n){if(e instanceof Array){let t=e.reduce((r,o,i)=>{var s;return r+o+((s=Pe$1(n[i],{dt:_n$1}))!=null?s:"")},"");return $I(t,_n$1)}return Pe$1(e,{dt:_n$1})}function wO(e,n={}){let t=ee$1.defaults.variable,{prefix:r=t.prefix,selector:o=t.selector,excludedKeyRegex:i=t.excludedKeyRegex}=n,s=[],a=[],c=[{node:e,path:r}];for(;c.length;){let{node:l,path:d}=c.pop();for(let f in l){let p=l[f],h=gO(p),m=en$1(f,i)?Qh(d):Qh(d,gl$1(f));if(Tn$1(h))c.push({node:h,path:m});else {let y=VI(m),E=Jh(h,m,r,[i]);vO(a,y,E);let D=m;r&&D.startsWith(r+"-")&&(D=D.slice(r.length+1)),s.push(D.replace(/-/g,"."));}}}let u=a.join("");return {value:a,tokens:s,declarations:u,css:ri$1(o,u)}}var jt$1={regex:{rules:{class:{pattern:/^\.([a-zA-Z][\w-]*)$/,resolve(e){return {type:"class",selector:e,matched:this.pattern.test(e.trim())}}},attr:{pattern:/^\[(.*)\]$/,resolve(e){return {type:"attr",selector:`:root${e},:host${e}`,matched:this.pattern.test(e.trim())}}},media:{pattern:/^@media (.*)$/,resolve(e){return {type:"media",selector:e,matched:this.pattern.test(e.trim())}}},system:{pattern:/^system$/,resolve(e){return {type:"system",selector:"@media (prefers-color-scheme: dark)",matched:this.pattern.test(e.trim())}}},custom:{resolve(e){return {type:"custom",selector:e,matched:true}}}},resolve(e){let n=Object.keys(this.rules).filter(t=>t!=="custom").map(t=>this.rules[t]);return [e].flat().map(t=>{var r;return (r=n.map(o=>o.resolve(t)).find(o=>o.matched))!=null?r:this.rules.custom.resolve(t)})}},_toVariables(e,n){return wO(e,{prefix:n?.prefix})},getCommon({name:e="",theme:n={},params:t,set:r,defaults:o}){var i,s,a,c,u,l,d;let{preset:f,options:p}=n,h,m,y,E,D,S,k;if(oe$1(f)){let{primitive:le,semantic:Ne,extend:ge}=f,Ce=Ne||{},{colorScheme:at}=Ce,It=rr$1(Ce,["colorScheme"]),Nn=ge||{},{colorScheme:eo}=Nn,ci=rr$1(Nn,["colorScheme"]),ui=at||{},{dark:li}=ui,qs=rr$1(ui,["dark"]),Ys=eo||{},{dark:Zs}=Ys,Ks=rr$1(Ys,["dark"]),Qs=oe$1(le)?this._toVariables({primitive:le},p):{},Xs=oe$1(It)?this._toVariables({semantic:It},p):{},Js=oe$1(qs)?this._toVariables({light:qs},p):{},ea=oe$1(li)?this._toVariables({dark:li},p):{},pg=oe$1(ci)?this._toVariables({semantic:ci},p):{},hg=oe$1(Ks)?this._toVariables({light:Ks},p):{},gg=oe$1(Zs)?this._toVariables({dark:Zs},p):{},[EC,DC]=[(i=Qs.declarations)!=null?i:"",Qs.tokens],[wC,IC]=[(s=Xs.declarations)!=null?s:"",Xs.tokens||[]],[CC,SC]=[(a=Js.declarations)!=null?a:"",Js.tokens||[]],[bC,TC]=[(c=ea.declarations)!=null?c:"",ea.tokens||[]],[_C,MC]=[(u=pg.declarations)!=null?u:"",pg.tokens||[]],[NC,AC]=[(l=hg.declarations)!=null?l:"",hg.tokens||[]],[RC,xC]=[(d=gg.declarations)!=null?d:"",gg.tokens||[]];h=this.transformCSS(e,EC,"light","variable",p,r,o),m=DC;let OC=this.transformCSS(e,`${wC}${CC}`,"light","variable",p,r,o),LC=this.transformCSS(e,`${bC}`,"dark","variable",p,r,o);y=`${OC}${LC}`,E=[...new Set([...IC,...SC,...TC])];let kC=this.transformCSS(e,`${_C}${NC}color-scheme:light`,"light","variable",p,r,o),PC=this.transformCSS(e,`${RC}color-scheme:dark`,"dark","variable",p,r,o);D=`${kC}${PC}`,S=[...new Set([...MC,...AC,...xC])],k=Pe$1(f.css,{dt:_n$1});}return {primitive:{css:h,tokens:m},semantic:{css:y,tokens:E},global:{css:D,tokens:S},style:k}},getPreset({name:e="",preset:n={},options:t,params:r,set:o,defaults:i,selector:s}){var a,c,u,l;let d,f,p;if(oe$1(n)&&((a=t.cssVariables)==null||a)){let h=e.replace("-directive",""),m=n,{colorScheme:y,extend:E,css:D}=m,S=rr$1(m,["colorScheme","extend","css"]),k=E||{},{colorScheme:le}=k,Ne=rr$1(k,["colorScheme"]),ge=y||{},{dark:Ce}=ge,at=rr$1(ge,["dark"]),It=le||{},{dark:Nn}=It,eo=rr$1(It,["dark"]),ci=oe$1(S)?this._toVariables({[h]:Ut$1(Ut$1({},S),Ne)},t):{},ui=oe$1(at)?this._toVariables({[h]:Ut$1(Ut$1({},at),eo)},t):{},li=oe$1(Ce)?this._toVariables({[h]:Ut$1(Ut$1({},Ce),Nn)},t):{},[qs,Ys]=[(c=ci.declarations)!=null?c:"",ci.tokens||[]],[Zs,Ks]=[(u=ui.declarations)!=null?u:"",ui.tokens||[]],[Qs,Xs]=[(l=li.declarations)!=null?l:"",li.tokens||[]],Js=this.transformCSS(h,`${qs}${Zs}`,"light","variable",t,o,i,s),ea=this.transformCSS(h,Qs,"dark","variable",t,o,i,s);d=`${Js}${ea}`,f=[...new Set([...Ys,...Ks,...Xs])],p=Pe$1(D,{dt:_n$1});}return {css:d,tokens:f,style:p}},getScopedSelector(e,n){if(!(!(n!=null&&n.scoped)||!e))return `[data-styled="${e}"]`},getPresetC({name:e="",theme:n={},params:t,set:r,defaults:o}){var i;let{preset:s,options:a}=n,c=(i=s?.components)==null?void 0:i[e],u=this.getScopedSelector(e,a);return this.getPreset({name:e,preset:c,options:a,params:t,set:r,defaults:o,selector:u})},getPresetD({name:e="",theme:n={},params:t,set:r,defaults:o}){var i,s;let a=e.replace("-directive",""),{preset:c,options:u}=n,l=((i=c?.components)==null?void 0:i[a])||((s=c?.directives)==null?void 0:s[a]),d=this.getScopedSelector(a,u);return this.getPreset({name:a,preset:l,options:u,params:t,set:r,defaults:o,selector:d})},applyDarkColorScheme(e){return !(e.darkModeSelector==="none"||e.darkModeSelector===false)},getColorSchemeOption(e,n){var t;return this.applyDarkColorScheme(e)?this.regex.resolve(e.darkModeSelector===true?n.options.darkModeSelector:(t=e.darkModeSelector)!=null?t:n.options.darkModeSelector):[]},getLayerOrder(e,n={},t,r){let{cssLayer:o}=n;return o?`@layer ${Pe$1(o.order||o.name||"primeui",t)}`:""},getCommonStyleSheet({name:e="",theme:n={},params:t,props:r={},set:o,defaults:i}){let s=this.getCommon({name:e,theme:n,params:t,set:o,defaults:i}),a=Object.entries(r).reduce((c,[u,l])=>c.push(`${u}="${l}"`)&&c,[]).join(" ");return Object.entries(s||{}).reduce((c,[u,l])=>{if(Tn$1(l)&&Object.hasOwn(l,"css")){let d=Zr$1(l.css),f=`${u}-variables`;c.push(``);}return c},[]).join("")},getStyleSheet({name:e="",theme:n={},params:t,props:r={},set:o,defaults:i}){var s;let a={name:e,theme:n,params:t,set:o,defaults:i},c=(s=e.includes("-directive")?this.getPresetD(a):this.getPresetC(a))==null?void 0:s.css,u=Object.entries(r).reduce((l,[d,f])=>l.push(`${d}="${f}"`)&&l,[]).join(" ");return c?``:""},createTokens(e={},n,t="",r="",o={}){let i=function(u,l,d,f){return u.replace(Qr$1,p=>{var h;let m=p.slice(1,-1),y=this.tokens[m];if(!y)return console.warn(`Token not found for path: ${m}`),"__UNRESOLVED__";let E=y.computed(l,d,f);if(Array.isArray(E)&&E.length===2){let D=E[0].value,S=E[1].value;return D===S?D??"__UNRESOLVED__":`light-dark(${D},${S})`}return (h=E?.value)!=null?h:"__UNRESOLVED__"})},s=function(u,l,d,f){if(u.indexOf("light-dark(")===-1)return u;let p=[],h=u.length,m=0;for(;m0;){let ge=u.charCodeAt(D);ge===40?E++:ge===41?E--:ge===44&&E===1&&S===-1&&(S=D),D++;}if(E!==0||S===-1){p.push(u.slice(y));break}let k=u.slice(y+11,S).trim(),le=u.slice(S+1,D-1).trim(),Ne=l&&l!=="none"?l:null;if(Ne==="light")p.push(s.call(this,k,"light",d,f));else if(Ne==="dark")p.push(s.call(this,le,"dark",d,f));else {let ge=i.call(this,s.call(this,k,"light",d,f),"light",d,f),Ce=i.call(this,s.call(this,le,"dark",d,f),"dark",d,f);p.push(ge===Ce?ge:`light-dark(${ge},${Ce})`);}m=D;}return p.join("")},a=function(u,l={},d=[]){if(d.includes(this.path))return console.warn(`Circular reference detected at ${this.path}`),{colorScheme:u,path:this.path,paths:l,value:void 0};d.push(this.path),l.name=this.path,l.binding||(l.binding={});let f=this.value;if(typeof this.value=="string"){let p=this.value.trim(),h=p.indexOf("light-dark(")!==-1,m=p.indexOf("{")!==-1;if(h||m){let y=h?s.call(this,p,u,l,d):p,E=y.indexOf("{")!==-1?i.call(this,y,u,l,d):y;Yh.lastIndex=0,Zh.lastIndex=0,f=Yh.test(E.replace(Zh,"0"))?`calc(${E})`:E;}}return Gs(l.binding)&&delete l.binding,d.pop(),{colorScheme:u,path:this.path,paths:l,value:typeof f=="string"&&f.indexOf("__UNRESOLVED__")!==-1?void 0:f}},c=(u,l,d)=>{Object.entries(u).forEach(([f,p])=>{let h=en$1(f,n.variable.excludedKeyRegex)?l:l?`${l}.${Kh(f)}`:Kh(f),m=d?`${d}.${f}`:f;Tn$1(p)?c(p,h,m):(o[h]||(o[h]={paths:[],computed:(y,E={},D=[])=>{let S=o[h].paths;if(S.length===1){let k=S[0],le=k.scheme!=="none"?k.scheme:y;return k.computed(le,E.binding,D)}else if(y&&y!=="none")for(let k=0;kk.computed(k.scheme,E[k.scheme],D))}}),o[h].paths.push({path:m,value:p,scheme:m.includes("colorScheme.light")?"light":m.includes("colorScheme.dark")?"dark":"none",computed:a,tokens:o}));});};return c(e,t,r),o},getTokenValue(e,n,t){var r,o,i;let s=e.__cache;s||(s=new Map,Object.defineProperty(e,"__cache",{value:s,enumerable:false,configurable:true}));let a=s.get(n);if(a!==void 0||s.has(n))return a;let c=t.variable.excludedKeyRegex,u=n.split("."),l=[];for(let m=0;m(oe$1(m)&&(p+=m.includes("[CSS]")?m.replace("[CSS]",n):this.getSelectorRule(m,a,h,n,f)),p),""):ri$1(a??f,n);}if(l){let d={name:"primeui"};Tn$1(l)&&(d.name=Pe$1(l.name,{name:e,type:r})),oe$1(d.name)&&(n=ri$1(`@layer ${d.name}`,n),i?.layerNames(d.name));}return n}return ""}},ee$1={defaults:{variable:{prefix:"p",selector:":root,:host",excludedKeyRegex:/^(primitive|semantic|components|directives|variables|colorscheme|light|dark|common|root|states|extend|css)$/gi},options:{prefix:"p",darkModeSelector:"system",cssLayer:false,cssVariables:true,scoped:false}},_theme:void 0,_layerNames:new Set,_loadedStyleNames:new Set,_loadingStyles:new Set,_tokens:{},update(e={}){let{theme:n}=e;n&&(this._theme=qh(Ut$1({},n),{options:Ut$1(Ut$1({},this.defaults.options),n.options)}),this._tokens=jt$1.createTokens(this.preset,this.defaults),this.clearLoadedStyleNames());},get theme(){return this._theme},get preset(){var e;return ((e=this.theme)==null?void 0:e.preset)||{}},get options(){var e;return ((e=this.theme)==null?void 0:e.options)||{}},get tokens(){return this._tokens},getTheme(){return this.theme},setTheme(e){this.update({theme:e}),tn$1.emit("theme:change",e);},getPreset(){return this.preset},setPreset(e){this._theme=qh(Ut$1({},this.theme),{preset:e}),this._tokens=jt$1.createTokens(e,this.defaults),this.clearLoadedStyleNames(),tn$1.emit("preset:change",e),tn$1.emit("theme:change",this.theme);},getOptions(){return this.options},setOptions(e){this._theme=qh(Ut$1({},this.theme),{options:e}),this.clearLoadedStyleNames(),tn$1.emit("options:change",e),tn$1.emit("theme:change",this.theme);},getLayerNames(){return [...this._layerNames]},setLayerNames(e){this._layerNames.add(e);},getLoadedStyleNames(){return this._loadedStyleNames},isStyleNameLoaded(e){return this._loadedStyleNames.has(e)},setLoadedStyleName(e){this._loadedStyleNames.add(e);},deleteLoadedStyleName(e){this._loadedStyleNames.delete(e);},clearLoadedStyleNames(){this._loadedStyleNames.clear();},getTokenValue(e){return jt$1.getTokenValue(this.tokens,e,this.defaults)},getCommon(e="",n){return jt$1.getCommon({name:e,theme:this.theme,params:n,defaults:this.defaults,set:{layerNames:this.setLayerNames.bind(this)}})},getComponent(e="",n){let t={name:e,theme:this.theme,params:n,defaults:this.defaults,set:{layerNames:this.setLayerNames.bind(this)}};return jt$1.getPresetC(t)},getDirective(e="",n){let t={name:e,theme:this.theme,params:n,defaults:this.defaults,set:{layerNames:this.setLayerNames.bind(this)}};return jt$1.getPresetD(t)},getCustomPreset(e="",n,t,r){let o={name:e,preset:n,options:this.options,selector:t,params:r,defaults:this.defaults,set:{layerNames:this.setLayerNames.bind(this)}};return jt$1.getPreset(o)},getLayerOrderCSS(e=""){return jt$1.getLayerOrder(e,this.options,{names:this.getLayerNames()},this.defaults)},transformCSS(e="",n,t="style",r){return jt$1.transformCSS(e,n,r,t,this.options,{layerNames:this.setLayerNames.bind(this)},this.defaults)},getCommonStyleSheet(e="",n,t={}){return jt$1.getCommonStyleSheet({name:e,theme:this.theme,params:n,props:t,defaults:this.defaults,set:{layerNames:this.setLayerNames.bind(this)}})},getStyleSheet(e,n,t={}){return jt$1.getStyleSheet({name:e,theme:this.theme,params:n,props:t,defaults:this.defaults,set:{layerNames:this.setLayerNames.bind(this)}})},onStyleMounted(e){this._loadingStyles.add(e);},onStyleUpdated(e){this._loadingStyles.add(e);},onStyleLoaded(e,{name:n}){this._loadingStyles.size&&(this._loadingStyles.delete(n),tn$1.emit(`theme:${n}:load`,e),!this._loadingStyles.size&&tn$1.emit("theme:load"));}};var zI=` + *, + ::before, + ::after { + box-sizing: border-box; + } + + .p-component { + font-family: dt('typography.font.family'); + font-feature-settings: inherit; + line-height: dt('typography.line.height'); + } + + .p-collapsible-enter-active { + animation: p-animate-collapsible-expand 0.2s ease-out; + overflow: hidden; + } + + .p-collapsible-leave-active { + animation: p-animate-collapsible-collapse 0.2s ease-out; + overflow: hidden; + } + + @keyframes p-animate-collapsible-expand { + from { + grid-template-rows: 0fr; + } + to { + grid-template-rows: 1fr; + } + } + + @keyframes p-animate-collapsible-collapse { + from { + grid-template-rows: 1fr; + } + to { + grid-template-rows: 0fr; + } + } + + .p-disabled, + .p-disabled * { + cursor: default; + pointer-events: none; + user-select: none; + } + + .p-disabled, + .p-component:disabled { + opacity: dt('disabled.opacity'); + } + + .pi { + font-size: dt('icon.size'); + } + + .p-icon { + width: var(--px-icon-size, dt('icon.size')); + height: var(--px-icon-size, dt('icon.size')); + flex-shrink: 0; + } + + .p-icon-spin { + -webkit-animation: p-icon-spin 2s infinite linear; + animation: p-icon-spin 2s infinite linear; + } + + @-webkit-keyframes p-icon-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } + } + + @keyframes p-icon-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } + } + + .p-overlay-mask { + background: var(--px-mask-background, dt('mask.background')); + color: dt('mask.color'); + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + } + + .p-overlay-mask-enter-active { + animation: p-animate-overlay-mask-enter dt('mask.transition.duration') forwards; + } + + .p-overlay-mask-leave-active { + animation: p-animate-overlay-mask-leave dt('mask.transition.duration') forwards; + } + + @keyframes p-animate-overlay-mask-enter { + from { + background: transparent; + } + to { + background: var(--px-mask-background, dt('mask.background')); + } + } + @keyframes p-animate-overlay-mask-leave { + from { + background: var(--px-mask-background, dt('mask.background')); + } + to { + background: transparent; + } + } + + .p-anchored-overlay-enter-active { + animation: p-animate-anchored-overlay-enter 300ms cubic-bezier(.19,1,.22,1); + } + + .p-anchored-overlay-leave-active { + animation: p-animate-anchored-overlay-leave 300ms cubic-bezier(.19,1,.22,1); + } + + @keyframes p-animate-anchored-overlay-enter { + from { + opacity: 0; + transform: scale(0.93); + } + } + + @keyframes p-animate-anchored-overlay-leave { + to { + opacity: 0; + transform: scale(0.93); + } + } +`;var IO=0,GI=(()=>{class e{document=g(G$1);use(t,r={}){let i=t,s=null,{immediate:a=true,manual:c=false,name:u=`style_${++IO}`,id:l=void 0,media:d=void 0,nonce:f=void 0,first:p=false,props:h={}}=r;if(this.document){if(s=this.document.querySelector(`style[data-primeng-style-id="${u}"]`)||l&&this.document.getElementById(l)||this.document.createElement("style"),s){if(!s.isConnected){i=t;let m=this.document.head;PI(s,"nonce",f),p&&m.firstChild?m.insertBefore(s,m.firstChild):m.appendChild(s),yl$1(s,{type:"text/css",media:d,nonce:f,"data-primeng-style-id":u});}s.textContent!==i&&(s.textContent=i);}return {id:l,name:u,el:s,css:i}}}static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var Mq={_loadedStyleNames:new Set,getLoadedStyleNames(){return this._loadedStyleNames},isStyleNameLoaded(e){return this._loadedStyleNames.has(e)},setLoadedStyleName(e){this._loadedStyleNames.add(e);},deleteLoadedStyleName(e){this._loadedStyleNames.delete(e);},clearLoadedStyleNames(){this._loadedStyleNames.clear();}},CO=` +.p-hidden-accessible { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +.p-hidden-accessible input, +.p-hidden-accessible select { + transform: scale(0); +} + +.p-overflow-hidden { + overflow: hidden; + padding-right: dt('scrollbar.width'); +} +`,WI=(()=>{class e{name="base";useStyle=g(GI);css=void 0;style=void 0;classes={};inlineStyles={};load=(t,r={},o=i=>i)=>{let i=o(oi$1`${Pe$1(t,{dt:_n$1})}`);return i?this.useStyle.use(Zr$1(i),l({name:this.name},r)):{}};loadCSS=(t={})=>this.load(this.css,t);loadStyle=(t={},r="")=>this.load(this.style,t,(o="")=>ee$1.transformCSS(t.name||this.name,`${o}${oi$1`${r}`}`));loadBaseCSS=(t={})=>this.load(CO,t);loadBaseStyle=(t={},r="")=>this.load(zI,t,(o="")=>ee$1.transformCSS(t.name||this.name,`${o}${oi$1`${r}`}`));getCommonTheme=t=>ee$1.getCommon(this.name,t);getComponentTheme=t=>ee$1.getComponent(this.name,t);getPresetTheme=(t,r,o)=>ee$1.getCustomPreset(this.name,t,r,o);getLayerOrderThemeCSS=()=>ee$1.getLayerOrderCSS(this.name);getStyleSheet=(t="",r={})=>{if(this.css){let o=Pe$1(this.css,{dt:_n$1}),i=Zr$1(oi$1`${o}${t}`),s=Object.entries(r).reduce((a,[c,u])=>a.push(`${c}="${u}"`)&&a,[]).join(" ");return ``}return ""};getCommonThemeStyleSheet=(t,r={})=>ee$1.getCommonStyleSheet(this.name,t,r);getThemeStyleSheet=(t,r={})=>{let o=[ee$1.getStyleSheet(this.name,t,r)];if(this.style){let i=this.name==="base"?"global-style":`${this.name}-style`,s=oi$1`${Pe$1(this.style,{dt:_n$1})}`,a=Zr$1(ee$1.transformCSS(i,s)),c=Object.entries(r).reduce((u,[l,d])=>u.push(`${l}="${d}"`)&&u,[]).join(" ");o.push(``);}return o.join("")};static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})();var SO={p:0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffedn,n:0x1000000000000000000000000000000014def9dea2f79cd65812631a5cf5d3edn,a:0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffecn,d:0x52036cee2b6ffe738cc740797779e89800700a4d4141d8ab75eb4dca135978a3n,Gx:0x216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51an,Gy:0x6666666666666666666666666666666666666666666666666666666666666658n},{p:Fe$1,n:El$1,Gx:qI,Gy:YI,a:eg,d:tg}=SO,bO=8n,Ws$1=32,ng=64,wt$1=(e="")=>{throw new Error(e)},TO=e=>typeof e=="bigint",eC=e=>typeof e=="string",_O=e=>e instanceof Uint8Array||ArrayBuffer.isView(e)&&e.constructor.name==="Uint8Array",si$1=(e,n)=>!_O(e)||typeof n=="number"&&n>0&&e.length!==n?wt$1("Uint8Array expected"):e,Cl$1=e=>new Uint8Array(e),sg=e=>Uint8Array.from(e),tC=(e,n)=>e.toString(16).padStart(n,"0"),ag=e=>Array.from(si$1(e)).map(n=>tC(n,2)).join(""),Mn$1={_0:48,_9:57,A:65,F:70,a:97,f:102},ZI=e=>{if(e>=Mn$1._0&&e<=Mn$1._9)return e-Mn$1._0;if(e>=Mn$1.A&&e<=Mn$1.F)return e-(Mn$1.A-10);if(e>=Mn$1.a&&e<=Mn$1.f)return e-(Mn$1.a-10)},cg=e=>{let n="hex invalid";if(!eC(e))return wt$1(n);let t=e.length,r=t/2;if(t%2)return wt$1(n);let o=Cl$1(r);for(let i=0,s=0;isi$1(eC(e)?cg(e):sg(si$1(e)),n),nC=()=>globalThis?.crypto,MO=()=>nC()?.subtle??wt$1("crypto.subtle must be defined"),rg=(...e)=>{let n=Cl$1(e.reduce((r,o)=>r+si$1(o).length,0)),t=0;return e.forEach(r=>{n.set(r,t),t+=r.length;}),n},NO=(e=Ws$1)=>nC().getRandomValues(Cl$1(e)),wl$1=BigInt,Xr$1=(e,n,t,r="bad number: out of range")=>TO(e)&&n<=e&&e{let t=e%n;return t>=0n?t:n+t},AO=e=>C(e,El$1),rC=(e,n)=>{(e===0n||n<=0n)&&wt$1("no inverse n="+e+" mod="+n);let t=C(e,n),r=n,o=0n,s=1n;for(;t!==0n;){let c=r/t,u=r%t,l=o-s*c;r=t,t=u,o=s,s=l;}return r===1n?C(o,n):wt$1("no inverse")};var KI=e=>e instanceof Jr$1?e:wt$1("Point expected"),og=2n**256n,Jr$1=(()=>{class e{static BASE;static ZERO;ex;ey;ez;et;constructor(t,r,o,i){let s=og;this.ex=Xr$1(t,0n,s),this.ey=Xr$1(r,0n,s),this.ez=Xr$1(o,1n,s),this.et=Xr$1(i,0n,s),Object.freeze(this);}static fromAffine(t){return new e(t.x,t.y,1n,C(t.x*t.y))}static fromBytes(t,r=false){let o=tg,i=sg(si$1(t,Ws$1)),s=t[31];i[31]=s&-129;let a=ug(i);Xr$1(a,0n,r?og:Fe$1);let u=C(a*a),l=C(u-1n),d=C(o*u+1n),{isValid:f,value:p}=OO(l,d);f||wt$1("bad point: y not sqrt");let h=(p&1n)===1n,m=(s&128)!==0;return !r&&p===0n&&m&&wt$1("bad point: x==0, isLastByteOdd"),m!==h&&(p=C(-p)),new e(p,a,1n,C(p*a))}assertValidity(){let t=eg,r=tg,o=this;if(o.is0())throw new Error("bad point: ZERO");let{ex:i,ey:s,ez:a,et:c}=o,u=C(i*i),l=C(s*s),d=C(a*a),f=C(d*d),p=C(u*t),h=C(d*C(p+l)),m=C(f+C(r*C(u*l)));if(h!==m)throw new Error("bad point: equation left != right (1)");let y=C(i*s),E=C(a*c);if(y!==E)throw new Error("bad point: equation left != right (2)");return this}equals(t){let{ex:r,ey:o,ez:i}=this,{ex:s,ey:a,ez:c}=KI(t),u=C(r*c),l=C(s*i),d=C(o*c),f=C(a*i);return u===l&&d===f}is0(){return this.equals(ii$1)}negate(){return new e(C(-this.ex),this.ey,this.ez,C(-this.et))}double(){let{ex:t,ey:r,ez:o}=this,i=eg,s=C(t*t),a=C(r*r),c=C(2n*C(o*o)),u=C(i*s),l=t+r,d=C(C(l*l)-s-a),f=u+a,p=f-c,h=u-a,m=C(d*p),y=C(f*h),E=C(d*h),D=C(p*f);return new e(m,y,D,E)}add(t){let{ex:r,ey:o,ez:i,et:s}=this,{ex:a,ey:c,ez:u,et:l}=KI(t),d=eg,f=tg,p=C(r*a),h=C(o*c),m=C(s*f*l),y=C(i*u),E=C((r+o)*(a+c)-p-h),D=C(y-m),S=C(y+m),k=C(h-d*p),le=C(E*D),Ne=C(S*k),ge=C(E*k),Ce=C(D*S);return new e(le,Ne,Ce,ge)}multiply(t,r=true){if(!r&&(t===0n||this.is0()))return ii$1;if(Xr$1(t,1n,El$1),t===1n)return this;if(this.equals(ai$1))return HO(t).p;let o=ii$1,i=ai$1;for(let s=this;t>0n;s=s.double(),t>>=1n)t&1n?o=o.add(s):r&&(i=i.add(s));return o}toAffine(){let{ex:t,ey:r,ez:o}=this;if(this.equals(ii$1))return {x:0n,y:1n};let i=rC(o,Fe$1);return C(o*i)!==1n&&wt$1("invalid inverse"),{x:C(t*i),y:C(r*i)}}toBytes(){let{x:t,y:r}=this.assertValidity().toAffine(),o=RO(r);return o[31]|=t&1n?128:0,o}toHex(){return ag(this.toBytes())}clearCofactor(){return this.multiply(wl$1(bO),false)}isSmallOrder(){return this.clearCofactor().is0()}isTorsionFree(){let t=this.multiply(El$1/2n,false).double();return El$1%2n&&(t=t.add(this)),t.is0()}static fromHex(t,r){return e.fromBytes(Dl$1(t),r)}get x(){return this.toAffine().x}get y(){return this.toAffine().y}toRawBytes(){return this.toBytes()}}return e})(),ai$1=new Jr$1(qI,YI,1n,C(qI*YI)),ii$1=new Jr$1(0n,1n,1n,0n);Jr$1.BASE=ai$1;Jr$1.ZERO=ii$1;var RO=e=>cg(tC(Xr$1(e,0n,og),ng)).reverse(),ug=e=>wl$1("0x"+ag(sg(si$1(e)).reverse())),nn$1=(e,n)=>{let t=e;for(;n-- >0n;)t*=t,t%=Fe$1;return t},xO=e=>{let t=e*e%Fe$1*e%Fe$1,r=nn$1(t,2n)*t%Fe$1,o=nn$1(r,1n)*e%Fe$1,i=nn$1(o,5n)*o%Fe$1,s=nn$1(i,10n)*i%Fe$1,a=nn$1(s,20n)*s%Fe$1,c=nn$1(a,40n)*a%Fe$1,u=nn$1(c,80n)*c%Fe$1,l=nn$1(u,80n)*c%Fe$1,d=nn$1(l,10n)*i%Fe$1;return {pow_p_5_8:nn$1(d,2n)*e%Fe$1,b2:t}},QI=0x2b8324804fc1df0b2b4d00993dfbd7a72f431806ad2fe478c4ee1b274a0ea0b0n,OO=(e,n)=>{let t=C(n*n*n),r=C(t*t*n),o=xO(e*r).pow_p_5_8,i=C(e*t*o),s=C(n*i*i),a=i,c=C(i*QI),u=s===e,l=s===C(-e),d=s===C(-e*QI);return u&&(i=a),(l||d)&&(i=c),(C(i)&1n)===1n&&(i=C(-i)),{isValid:u||l,value:i}},LO=e=>AO(ug(e)),kO=(...e)=>jO.sha512Async(...e);var PO=e=>kO(e.hashable).then(e.finish);var oC={zip215:true},FO=(e,n,t,r=oC)=>{e=Dl$1(e,ng),n=Dl$1(n),t=Dl$1(t,Ws$1);let{zip215:o}=r,i,s,a,c,u=Uint8Array.of();try{i=Jr$1.fromHex(t,o),s=Jr$1.fromHex(e.slice(0,Ws$1),o),a=ug(e.slice(Ws$1,ng)),c=ai$1.multiply(a,!1),u=rg(s.toBytes(),i.toBytes(),n);}catch{}return {hashable:u,finish:d=>{if(c==null||!o&&i.isSmallOrder())return false;let f=LO(d);return s.add(i.multiply(f,false)).add(c.negate()).clearCofactor().is0()}}},iC=async(e,n,t,r=oC)=>PO(FO(e,n,t,r));var jO={sha512Async:async(...e)=>{let n=MO(),t=rg(...e);return Cl$1(await n.digest("SHA-512",t.buffer))},sha512Sync:void 0,bytesToHex:ag,hexToBytes:cg,concatBytes:rg,mod:C,invert:rC,randomBytes:NO};var Il$1=8,UO=256,sC=Math.ceil(UO/Il$1)+1,ig=2**(Il$1-1),BO=()=>{let e=[],n=ai$1,t=n;for(let r=0;r{let t=n.negate();return e?t:n},HO=e=>{let n=XI||(XI=BO()),t=ii$1,r=ai$1,o=2**Il$1,i=o,s=wl$1(o-1),a=wl$1(Il$1);for(let c=0;c>=a,u>ig&&(u-=i,e+=1n);let l=c*ig,d=l,f=l+Math.abs(u)-1,p=c%2!==0,h=u<0;u===0?r=r.add(JI(p,n[d])):t=t.add(JI(h,n[f]));}return {p:t,f:r}};var $O=Object.defineProperty,aC=Object.getOwnPropertySymbols,zO=Object.prototype.hasOwnProperty,GO=Object.prototype.propertyIsEnumerable,cC=(e,n,t)=>n in e?$O(e,n,{enumerable:true,configurable:true,writable:true,value:t}):e[n]=t,hC=(e,n,t)=>new Promise((r,o)=>{var i=c=>{try{a(t.next(c));}catch(u){o(u);}},s=c=>{try{a(t.throw(c));}catch(u){o(u);}},a=c=>c.done?r(c.value):Promise.resolve(c.value).then(i,s);a((t=t.apply(e,n)).next());});function uC(e){let n={};for(let c=0;c<64;c++)n["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"[c]]=c;let t=e.replace(/=+$/,""),r=Math.floor(6*t.length/8),o=new Uint8Array(r),i=0,s=0,a=0;for(let c=0;c=8&&(s-=8,o[a++]=i>>s&255);}return o}var WO="primeui",lg="primeui-pro:",lC={primeui:"primeui",scheduler:"primeui-pro:scheduler",texteditor:"primeui-pro:text-editor",charts:"primeui-pro:charts",diagram:"primeui-pro:diagram",pdfviewer:"primeui-pro:pdf-viewer",taskboard:"primeui-pro:task-board",datagrid:"primeui-pro:datagrid",ganttchart:"primeui-pro:gantt-chart",filemanager:"primeui-pro:file-manager"},gC={primeui:"PrimeUI",scheduler:"Scheduler",texteditor:"TextEditor",charts:"Charts",diagram:"Diagram",pdfviewer:"PDF Viewer",taskboard:"Task Board",datagrid:"DataGrid",ganttchart:"Gantt",filemanager:"File Manager"};function fg(e,n="PrimeUI"){switch(e){case "active":return `${n} license is active.`;case "grace":return `${n} license is in its grace period. Renew soon to keep using this version.`;case "expired":return `${n} license does not cover this version. Renew at primeui.store, or downgrade to a version released within your updates window.`;case "tampered":return `${n} license signature is invalid.`;case "wrong-product":return `License does not cover ${n}.`;case "missing":return `No license key configured for ${n}.`;case "invalid":return `${n} license is malformed.`;case "unconfigured":return `${n} license is not configured.`;default:return `${n} license status unknown.`}}var dC=864e5;function st$1(e,n,t={}){return ((r,o)=>{for(var i in o||(o={}))zO.call(o,i)&&cC(r,i,o[i]);if(aC)for(var i of aC(o))GO.call(o,i)&&cC(r,i,o[i]);return r})({valid:e==="active"||e==="grace",status:e,message:fg(e,n)},t)}function fC(e,n){return hC(this,null,function*(){var t,r;let o=n.productLabel;if(typeof e!="string"||!e.includes("."))return st$1("invalid",o);let i=e.split(".");if(i.length!==2)return st$1("invalid",o);let[s,a]=i,c,u,l;try{c=(function(D){let S=uC(D),k=new TextDecoder().decode(S);return JSON.parse(k)})(s);}catch{return st$1("invalid",o)}if(!c||typeof c!="object"||typeof c.product!="string"||typeof c.type!="string"||typeof c.exp!="number"||typeof c.iat!="number"||typeof c.id!="string")return st$1("invalid",o);try{u=uC(a),l=new TextEncoder().encode(s);}catch{return st$1("invalid",o)}let d=(t=n.publicKeyOverride)!=null?t:"dae75e66b9f59bebf87d4bb29ca6494f37deccfcc2b132b98ee159ee7505373b",f;try{f=(function(D){if(D.length%2!=0)throw new Error("Invalid hex length");let S=new Uint8Array(D.length/2);for(let k=0;kh)return st$1("expired",o,{daysUntilExpiry:y,payload:c});if((function(D){return D.type==="oem"||D.tier==="community"})(c)){if(m>h+((r=n.graceDays)!=null?r:30)*dC)return st$1("expired",o,{daysUntilExpiry:y,payload:c});if(m>h)return st$1("grace",o,{daysUntilExpiry:y,payload:c})}return st$1("active",o,{daysUntilExpiry:y,payload:c})})}function pC(e,n){return {valid:false,status:e,message:fg(e,n)}}function qO(e,n){let t=n?.graceDays,r=n?.publicKeyOverride;return {verify(o,i){return hC(this,null,function*(){var s;let a=lC[o],c=(s=gC[o])!=null?s:"PrimeUI",u=i?.releaseDate;if(!a)return pC("invalid",c);let l=e[o],d=e.primeui;if(l){let f=yield fC(l,{product:a,productLabel:c,releaseDate:u,graceDays:t,publicKeyOverride:r});if(f.valid||f.status!=="wrong-product")return f}return d&&o!=="primeui"&&a.startsWith(lg)?fC(d,{product:a,productLabel:c,releaseDate:u,graceDays:t,publicKeyOverride:r}):pC(l?"wrong-product":"missing",c)})},has(o){let i=lC[o];return !!i&&(!!e[o]||o!=="primeui"&&i.startsWith(lg)&&!!e.primeui)}}}var dg=null;function mC(e,n){if(!e)throw new Error("[@primeui/license-manager] registerLicense: keys argument is required.");return dg=qO(e,n)}function yC(e,n){var t;if(!dg){let r=(t=gC[e])!=null?t:"PrimeUI";return Promise.resolve({valid:false,status:"unconfigured",message:fg("unconfigured",r)})}return dg.verify(e,n)}function vC(){if(typeof document>"u"||document.getElementById("p-license-host"))return;let e=document.createElement("div");e.id="p-license-host",e.style.cssText="all:initial;position:fixed;bottom:16px;right:16px;z-index:2147483647;pointer-events:none;";let n=e.attachShadow({mode:"closed"});n.innerHTML='
Invalid PrimeUI License
',document.body.appendChild(e);}var YO=(()=>{class e{theme=U$1(void 0);csp=U$1({nonce:void 0});isThemeChanged=false;document=g(G$1);baseStyle=g(WI);constructor(){Ui$1(()=>{tn$1.on("theme:change",t=>{J$1(()=>{this.isThemeChanged=true,this.theme.set(t);});});}),Ui$1(()=>{let t=this.theme();this.document&&t&&(this.isThemeChanged||this.onThemeChange(t),this.isThemeChanged=false);});}ngOnDestroy(){ee$1.clearLoadedStyleNames(),tn$1.clear();}onThemeChange(t){ee$1.setTheme(t),this.document&&this.loadCommonTheme();}loadCommonTheme(){if(this.theme()!=="none"&&!ee$1.isStyleNameLoaded("common")){let{primitive:t,semantic:r,global:o,style:i}=this.baseStyle.getCommonTheme?.()||{},s={nonce:this.csp?.()?.nonce};this.baseStyle.load(t?.css,l({name:"primitive-variables"},s)),this.baseStyle.load(r?.css,l({name:"semantic-variables"},s)),this.baseStyle.load(o?.css,l({name:"global-variables"},s)),this.baseStyle.loadBaseStyle(l({name:"global-style"},s),i),ee$1.setLoadedStyleName("common");}}setThemeConfig(t){let{theme:r,csp:o}=t||{};r&&this.theme.set(r),o&&this.csp.set(o);}static \u0275fac=function(r){return new(r||e)};static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),ZO=(()=>{class e extends YO{ripple=U$1(false);platformId=g(Nr$1);inputVariant=U$1(null);_verified=U$1(null);verified=this._verified.asReadonly();_setVerified(t){this._verified.set(t);}overlayAppendTo=U$1("self");overlayOptions={};csp=U$1({nonce:void 0});unstyled=U$1(void 0);pt=U$1(void 0);ptOptions=U$1(void 0);filterMatchModeOptions={text:[Me$1.STARTS_WITH,Me$1.CONTAINS,Me$1.NOT_CONTAINS,Me$1.ENDS_WITH,Me$1.EQUALS,Me$1.NOT_EQUALS],numeric:[Me$1.EQUALS,Me$1.NOT_EQUALS,Me$1.LESS_THAN,Me$1.LESS_THAN_OR_EQUAL_TO,Me$1.GREATER_THAN,Me$1.GREATER_THAN_OR_EQUAL_TO],date:[Me$1.DATE_IS,Me$1.DATE_IS_NOT,Me$1.DATE_BEFORE,Me$1.DATE_AFTER]};translation={startsWith:"Starts with",contains:"Contains",notContains:"Not contains",endsWith:"Ends with",equals:"Equals",notEquals:"Not equals",noFilter:"No Filter",lt:"Less than",lte:"Less than or equal to",gt:"Greater than",gte:"Greater than or equal to",is:"Is",isNot:"Is not",before:"Before",after:"After",dateIs:"Date is",dateIsNot:"Date is not",dateBefore:"Date is before",dateAfter:"Date is after",clear:"Clear",apply:"Apply",matchAll:"Match All",matchAny:"Match Any",addRule:"Add Rule",removeRule:"Remove Rule",accept:"Yes",reject:"No",choose:"Choose",completed:"Completed",upload:"Upload",cancel:"Cancel",pending:"Pending",fileSizeTypes:["B","KB","MB","GB","TB","PB","EB","ZB","YB"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],chooseYear:"Choose Year",chooseMonth:"Choose Month",chooseDate:"Choose Date",prevDecade:"Previous Decade",nextDecade:"Next Decade",prevYear:"Previous Year",nextYear:"Next Year",prevMonth:"Previous Month",nextMonth:"Next Month",prevHour:"Previous Hour",nextHour:"Next Hour",prevMinute:"Previous Minute",nextMinute:"Next Minute",prevSecond:"Previous Second",nextSecond:"Next Second",am:"am",pm:"pm",dateFormat:"mm/dd/yy",firstDayOfWeek:0,today:"Today",weekHeader:"Wk",weak:"Weak",medium:"Medium",strong:"Strong",passwordPrompt:"Enter a password",emptyMessage:"No results found",searchMessage:"Search results are available",selectionMessage:"{0} items selected",emptySelectionMessage:"No selected item",emptySearchMessage:"No results found",emptyFilterMessage:"No results found",fileChosenMessage:"Files",noFileChosenMessage:"No file chosen",aria:{trueLabel:"True",falseLabel:"False",nullLabel:"Not Selected",star:"1 star",stars:"{star} stars",selectAll:"All items selected",unselectAll:"All items unselected",close:"Close",previous:"Previous",next:"Next",navigation:"Navigation",scrollTop:"Scroll Top",moveTop:"Move Top",moveUp:"Move Up",moveDown:"Move Down",moveBottom:"Move Bottom",moveToTarget:"Move to Target",moveToSource:"Move to Source",moveAllToTarget:"Move All to Target",moveAllToSource:"Move All to Source",pageLabel:"{page}",firstPageLabel:"First Page",lastPageLabel:"Last Page",nextPageLabel:"Next Page",prevPageLabel:"Previous Page",rowsPerPageLabel:"Rows per page",previousPageLabel:"Previous Page",jumpToPageDropdownLabel:"Jump to Page Dropdown",jumpToPageInputLabel:"Jump to Page Input",selectRow:"Row Selected",unselectRow:"Row Unselected",expandRow:"Row Expanded",collapseRow:"Row Collapsed",showFilterMenu:"Show Filter Menu",hideFilterMenu:"Hide Filter Menu",filterOperator:"Filter Operator",filterConstraint:"Filter Constraint",editRow:"Row Edit",saveEdit:"Save Edit",cancelEdit:"Cancel Edit",listView:"List View",gridView:"Grid View",slide:"Slide",slideNumber:"{slideNumber}",zoomImage:"Zoom Image",zoomIn:"Zoom In",zoomOut:"Zoom Out",rotateRight:"Rotate Right",rotateLeft:"Rotate Left",listLabel:"Option List",selectColor:"Select a color",removeLabel:"Remove",browseFiles:"Browse Files",maximizeLabel:"Maximize",minimizeLabel:"Minimize"}};zIndex={modal:1100,overlay:1e3,menu:1e3,tooltip:1100};translationSource=new Y$1;translationObserver=this.translationSource.asObservable();getTranslation(t){return this.translation[t]}setTranslation(t){this.translation=l(l({},this.translation),t),this.translationSource.next(this.translation);}setConfig(t){let{csp:r,ripple:o,inputVariant:i,theme:s,overlayOptions:a,translation:c,filterMatchModeOptions:u,overlayAppendTo:l,zIndex:d,ptOptions:f,pt:p,unstyled:h}=t||{};r&&this.csp.set(r),l&&this.overlayAppendTo.set(l),o&&this.ripple.set(o),i&&this.inputVariant.set(i),a&&(this.overlayOptions=a),c&&this.setTranslation(c),u&&(this.filterMatchModeOptions=u),d&&(this.zIndex=d),p&&this.pt.set(p),f&&this.ptOptions.set(f),h&&this.unstyled.set(h),s&&this.setThemeConfig({theme:s,csp:r});}static \u0275fac=(()=>{let t;return function(o){return (t||(t=Vc$1(e)))(o||e)}})();static \u0275prov=b({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})(),KO=new I$1("PRIME_NG_CONFIG"),QO="2026-06-28";function Vq(...e){let n=e?.map(r=>({provide:KO,useValue:r,multi:false})),t=Bo$1(()=>{let r=g(ZO);e?.forEach(i=>r.setConfig(i));let o=e?.map(i=>i.license).find(Boolean);o&&mC({primeui:o}),yC("primeui",{releaseDate:QO}).then(i=>{r._setVerified(i.valid),i.valid||(console.warn(`[PrimeUI] ${i.message}`),vC());});});return dt$1([...n,t])}var c=class t{transform(i,e,r,n){if(i){e||(e="*"),(!r||r<1)&&(r=1),(!n||n>i.length)&&(n=i.length);let m=i.slice(0,r-1),s=i.slice(r-1,n),I=i.slice(n);return m+s.replace(/./g,e)+I}else return i}static \u0275fac=function(e){return new(e||t)};static \u0275pipe=Dp({name:"maskData",type:t,pure:true})};var a={api:"${BASE_URL}/api",primeuiKey:"eyJpZCI6IjAwMTcwYTg2LTBiYzgtNDUxYi05ZTZmLThiOTBhZjgyZjM5ZCIsInByb2R1Y3QiOiJwcmltZXVpIiwidGllciI6ImNvbW11bml0eSIsInR5cGUiOiJkZXYiLCJpYXQiOjE3ODI4MzI2NjEsImV4cCI6MTgxNDM2ODY2MX0.2K6Jhea9I-O7nMdkC2pAPrT7JpLRWGaGQBowuQTcE4a4zVKNHV8vbDn42upWwVLFkrZBE7HpCgrtJ-If4MjPCQ"};var R=[{path:"login",loadComponent:()=>import('./chunk-BYUMETYD.js').then(o=>o.Login)},{path:"dashboard",loadComponent:()=>import('./chunk-CZEoJB1K.js').then(o=>o.Dashboard)},{path:"",pathMatch:"full",redirectTo:"login"},{path:"**",redirectTo:"login"}];var W=(o,e)=>{let r=g(Ft$1),l=localStorage.getItem("APIKEY")??"",zr=o.clone({setHeaders:{"Content-Type":"application/json",Authorization:`Bearer ${l}`}});return e(zr).pipe(hr$1(c=>(c.status===401&&(console.warn("401 Unauthorized detected. Redirecting to login."),localStorage.removeItem("APIKEY"),r.navigate(["/login"])),$l$1(()=>c))))};var Rr={transitionDuration:"{transition.duration}"},Wr={borderWidth:"0 0 1px 0",borderColor:"{content.border.color}"},Sr={color:"{text.muted.color}",hoverColor:"{text.color}",activeColor:"{text.color}",activeHoverColor:"{text.color}",padding:"1rem",fontWeight:"600",fontSize:"{typography.font.size}",borderRadius:"0",borderWidth:"0",borderColor:"{content.border.color}",background:"{content.background}",hoverBackground:"{content.background}",activeBackground:"{content.background}",activeHoverBackground:"{content.background}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"-1px",shadow:"{focus.ring.shadow}"},toggleIcon:{color:"{text.muted.color}",hoverColor:"{text.color}",activeColor:"{text.color}",activeHoverColor:"{text.color}"},first:{topBorderRadius:"{content.border.radius}",borderWidth:"0"},last:{bottomBorderRadius:"{content.border.radius}",activeBottomBorderRadius:"0"}},Ir={borderWidth:"0",borderColor:"{content.border.color}",background:"{content.background}",color:"{text.color}",padding:"0 1rem 1rem 1rem"},S={root:Rr,panel:Wr,header:Sr,content:Ir};var Dr={background:"{form.field.background}",disabledBackground:"{form.field.disabled.background}",filledBackground:"{form.field.filled.background}",filledHoverBackground:"{form.field.filled.hover.background}",filledFocusBackground:"{form.field.filled.focus.background}",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.hover.border.color}",focusBorderColor:"{form.field.focus.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",color:"{form.field.color}",disabledColor:"{form.field.disabled.color}",placeholderColor:"{form.field.placeholder.color}",invalidPlaceholderColor:"{form.field.invalid.placeholder.color}",shadow:"{form.field.shadow}",paddingX:"{form.field.padding.x}",paddingY:"{form.field.padding.y}",borderRadius:"{form.field.border.radius}",focusRing:{width:"{form.field.focus.ring.width}",style:"{form.field.focus.ring.style}",color:"{form.field.focus.ring.color}",offset:"{form.field.focus.ring.offset}",shadow:"{form.field.focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}"},Hr={background:"{overlay.select.background}",borderColor:"{overlay.select.border.color}",borderRadius:"{overlay.select.border.radius}",color:"{overlay.select.color}",shadow:"{overlay.select.shadow}"},Fr={padding:"{list.padding}",gap:"{list.gap}"},Tr={focusBackground:"{list.option.focus.background}",selectedBackground:"{list.option.selected.background}",selectedFocusBackground:"{list.option.selected.focus.background}",color:"{list.option.color}",focusColor:"{list.option.focus.color}",selectedColor:"{list.option.selected.color}",selectedFocusColor:"{list.option.selected.focus.color}",padding:"{list.option.padding}",borderRadius:"{list.option.border.radius}",fontWeight:"{list.option.font.weight}",fontSize:"{list.option.font.size}"},Pr={background:"{list.option.group.background}",color:"{list.option.group.color}",fontWeight:"{list.option.group.font.weight}",fontSize:"{list.option.group.font.size}",padding:"{list.option.group.padding}"},Lr={width:"2.25rem",sm:{width:"1.75rem"},lg:{width:"2.625rem"},background:"light-dark({surface.100}, {surface.800})",hoverBackground:"light-dark({surface.200}, {surface.700})",activeBackground:"light-dark({surface.300}, {surface.600})",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.border.color}",activeBorderColor:"{form.field.border.color}",color:"light-dark({surface.600}, {surface.300})",hoverColor:"light-dark({surface.700}, {surface.200})",activeColor:"light-dark({surface.800}, {surface.100})",borderRadius:"{form.field.border.radius}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Yr={borderRadius:"{border.radius.sm}",focusBackground:"light-dark({surface.200}, {surface.700})",focusColor:"light-dark({surface.800}, {surface.0})"},Xr={padding:"{list.option.padding}"},I={root:Dr,overlay:Hr,list:Fr,option:Tr,optionGroup:Pr,dropdown:Lr,chip:Yr,emptyMessage:Xr};var Mr={width:"1.75rem",height:"1.75rem",fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}",background:"{content.border.color}",color:"{content.color}",borderRadius:"{content.border.radius}"},Or={size:"0.875rem"},Gr={borderColor:"{content.background}",offset:"-0.625rem"},Ar={width:"2.625rem",height:"2.625rem",fontSize:"1.25rem",icon:{size:"1.25rem"},group:{offset:"-0.875rem"}},Er={width:"3.5rem",height:"3.5rem",fontSize:"1.75rem",icon:{size:"1.75rem"},group:{offset:"-1.25rem"}},D={root:Mr,icon:Or,group:Gr,lg:Ar,xl:Er};var Vr={borderRadius:"{border.radius.md}",padding:"0 0.375rem",fontSize:"0.625rem",fontWeight:"700",minWidth:"1.25rem",height:"1.25rem"},Nr={size:"0.5rem"},jr={fontSize:"0.5rem",minWidth:"1.125rem",height:"1.125rem"},$r={fontSize:"0.75rem",minWidth:"1.5rem",height:"1.5rem"},Kr={fontSize:"0.875rem",minWidth:"1.75rem",height:"1.75rem"},Jr={background:"{primary.color}",color:"{primary.contrast.color}"},Ur={background:"light-dark({surface.100}, {surface.800})",color:"light-dark({surface.600}, {surface.300})"},qr={background:"light-dark({green.500}, {green.400})",color:"light-dark({surface.0}, {green.950})"},Qr={background:"light-dark({sky.500}, {sky.400})",color:"light-dark({surface.0}, {sky.950})"},Zr={background:"light-dark({orange.500}, {orange.400})",color:"light-dark({surface.0}, {orange.950})"},_r={background:"light-dark({red.500}, {red.400})",color:"light-dark({surface.0}, {red.950})"},oe={background:"light-dark({surface.950}, {surface.0})",color:"light-dark({surface.0}, {surface.950})"},H={root:Vr,dot:Nr,sm:jr,lg:$r,xl:Kr,primary:Jr,secondary:Ur,success:qr,info:Qr,warn:Zr,danger:_r,contrast:oe};var re={borderRadius:{none:"0",xs:"2px",sm:"4px",md:"6px",lg:"8px",xl:"12px"},emerald:{50:"#ecfdf5",100:"#d1fae5",200:"#a7f3d0",300:"#6ee7b7",400:"#34d399",500:"#10b981",600:"#059669",700:"#047857",800:"#065f46",900:"#064e3b",950:"#022c22"},green:{50:"#f0fdf4",100:"#dcfce7",200:"#bbf7d0",300:"#86efac",400:"#4ade80",500:"#22c55e",600:"#16a34a",700:"#15803d",800:"#166534",900:"#14532d",950:"#052e16"},lime:{50:"#f7fee7",100:"#ecfccb",200:"#d9f99d",300:"#bef264",400:"#a3e635",500:"#84cc16",600:"#65a30d",700:"#4d7c0f",800:"#3f6212",900:"#365314",950:"#1a2e05"},red:{50:"#fef2f2",100:"#fee2e2",200:"#fecaca",300:"#fca5a5",400:"#f87171",500:"#ef4444",600:"#dc2626",700:"#b91c1c",800:"#991b1b",900:"#7f1d1d",950:"#450a0a"},orange:{50:"#fff7ed",100:"#ffedd5",200:"#fed7aa",300:"#fdba74",400:"#fb923c",500:"#f97316",600:"#ea580c",700:"#c2410c",800:"#9a3412",900:"#7c2d12",950:"#431407"},amber:{50:"#fffbeb",100:"#fef3c7",200:"#fde68a",300:"#fcd34d",400:"#fbbf24",500:"#f59e0b",600:"#d97706",700:"#b45309",800:"#92400e",900:"#78350f",950:"#451a03"},yellow:{50:"#fefce8",100:"#fef9c3",200:"#fef08a",300:"#fde047",400:"#facc15",500:"#eab308",600:"#ca8a04",700:"#a16207",800:"#854d0e",900:"#713f12",950:"#422006"},teal:{50:"#f0fdfa",100:"#ccfbf1",200:"#99f6e4",300:"#5eead4",400:"#2dd4bf",500:"#14b8a6",600:"#0d9488",700:"#0f766e",800:"#115e59",900:"#134e4a",950:"#042f2e"},cyan:{50:"#ecfeff",100:"#cffafe",200:"#a5f3fc",300:"#67e8f9",400:"#22d3ee",500:"#06b6d4",600:"#0891b2",700:"#0e7490",800:"#155e75",900:"#164e63",950:"#083344"},sky:{50:"#f0f9ff",100:"#e0f2fe",200:"#bae6fd",300:"#7dd3fc",400:"#38bdf8",500:"#0ea5e9",600:"#0284c7",700:"#0369a1",800:"#075985",900:"#0c4a6e",950:"#082f49"},blue:{50:"#eff6ff",100:"#dbeafe",200:"#bfdbfe",300:"#93c5fd",400:"#60a5fa",500:"#3b82f6",600:"#2563eb",700:"#1d4ed8",800:"#1e40af",900:"#1e3a8a",950:"#172554"},indigo:{50:"#eef2ff",100:"#e0e7ff",200:"#c7d2fe",300:"#a5b4fc",400:"#818cf8",500:"#6366f1",600:"#4f46e5",700:"#4338ca",800:"#3730a3",900:"#312e81",950:"#1e1b4b"},violet:{50:"#f5f3ff",100:"#ede9fe",200:"#ddd6fe",300:"#c4b5fd",400:"#a78bfa",500:"#8b5cf6",600:"#7c3aed",700:"#6d28d9",800:"#5b21b6",900:"#4c1d95",950:"#2e1065"},purple:{50:"#faf5ff",100:"#f3e8ff",200:"#e9d5ff",300:"#d8b4fe",400:"#c084fc",500:"#a855f7",600:"#9333ea",700:"#7e22ce",800:"#6b21a8",900:"#581c87",950:"#3b0764"},fuchsia:{50:"#fdf4ff",100:"#fae8ff",200:"#f5d0fe",300:"#f0abfc",400:"#e879f9",500:"#d946ef",600:"#c026d3",700:"#a21caf",800:"#86198f",900:"#701a75",950:"#4a044e"},pink:{50:"#fdf2f8",100:"#fce7f3",200:"#fbcfe8",300:"#f9a8d4",400:"#f472b6",500:"#ec4899",600:"#db2777",700:"#be185d",800:"#9d174d",900:"#831843",950:"#500724"},rose:{50:"#fff1f2",100:"#ffe4e6",200:"#fecdd3",300:"#fda4af",400:"#fb7185",500:"#f43f5e",600:"#e11d48",700:"#be123c",800:"#9f1239",900:"#881337",950:"#4c0519"},slate:{50:"#f8fafc",100:"#f1f5f9",200:"#e2e8f0",300:"#cbd5e1",400:"#94a3b8",500:"#64748b",600:"#475569",700:"#334155",800:"#1e293b",900:"#0f172a",950:"#020617"},gray:{50:"#f9fafb",100:"#f3f4f6",200:"#e5e7eb",300:"#d1d5db",400:"#9ca3af",500:"#6b7280",600:"#4b5563",700:"#374151",800:"#1f2937",900:"#111827",950:"#030712"},zinc:{50:"#fafafa",100:"#f4f4f5",200:"#e4e4e7",300:"#d4d4d8",400:"#a1a1aa",500:"#71717a",600:"#52525b",700:"#3f3f46",800:"#27272a",900:"#18181b",950:"#09090b"},neutral:{50:"#fafafa",100:"#f5f5f5",200:"#e5e5e5",300:"#d4d4d4",400:"#a3a3a3",500:"#737373",600:"#525252",700:"#404040",800:"#262626",900:"#171717",950:"#0a0a0a"},stone:{50:"#fafaf9",100:"#f5f5f4",200:"#e7e5e4",300:"#d6d3d1",400:"#a8a29e",500:"#78716c",600:"#57534e",700:"#44403c",800:"#292524",900:"#1c1917",950:"#0c0a09"}},ee={typography:{lineHeight:"1.5",fontFamily:"inherit",fontWeight:"normal",fontSize:"0.875rem"},transitionDuration:"0.2s",focusRing:{width:"1px",style:"solid",color:"{primary.color}",offset:"2px",shadow:"none"},disabledOpacity:"0.6",iconSize:"0.875rem",anchorGutter:"2px",primary:{50:"{emerald.50}",100:"{emerald.100}",200:"{emerald.200}",300:"{emerald.300}",400:"{emerald.400}",500:"{emerald.500}",600:"{emerald.600}",700:"{emerald.700}",800:"{emerald.800}",900:"{emerald.900}",950:"{emerald.950}",color:"light-dark({primary.500}, {primary.400})",contrastColor:"light-dark(#ffffff, {surface.900})",hoverColor:"light-dark({primary.600}, {primary.300})",activeColor:"light-dark({primary.700}, {primary.200})"},formField:{fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}",paddingX:"0.625rem",paddingY:"0.375rem",sm:{fontSize:"0.75rem",paddingX:"0.5rem",paddingY:"0.25rem"},lg:{fontSize:"1rem",paddingX:"0.75rem",paddingY:"0.5rem"},borderRadius:"{border.radius.md}",focusRing:{width:"0",style:"none",color:"transparent",offset:"0",shadow:"none"},transitionDuration:"{transition.duration}",background:"light-dark({surface.0}, {surface.950})",disabledBackground:"light-dark({surface.200}, {surface.700})",filledBackground:"light-dark({surface.50}, {surface.800})",filledHoverBackground:"light-dark({surface.50}, {surface.800})",filledFocusBackground:"light-dark({surface.50}, {surface.800})",borderColor:"light-dark({surface.300}, {surface.600})",hoverBorderColor:"light-dark({surface.400}, {surface.500})",focusBorderColor:"{primary.color}",invalidBorderColor:"light-dark({red.400}, {red.300})",color:"light-dark({surface.700}, {surface.0})",disabledColor:"light-dark({surface.500}, {surface.400})",placeholderColor:"light-dark({surface.500}, {surface.400})",invalidPlaceholderColor:"light-dark({red.600}, {red.400})",floatLabelColor:"light-dark({surface.500}, {surface.400})",floatLabelFocusColor:"light-dark({primary.600}, {primary.color})",floatLabelActiveColor:"light-dark({surface.500}, {surface.400})",floatLabelInvalidColor:"{form.field.invalid.placeholder.color}",iconColor:"{surface.400}",shadow:"0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)"},list:{padding:"0.25rem 0.25rem",gap:"2px",header:{padding:"0.5rem 0.875rem 0.125rem 0.875rem"},option:{padding:"0.25rem 0.625rem",borderRadius:"{border.radius.sm}",fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}",transitionDuration:"0s",focusBackground:"light-dark({surface.100}, {surface.800})",selectedBackground:"{highlight.background}",selectedFocusBackground:"{highlight.focus.background}",color:"{text.color}",focusColor:"{text.hover.color}",selectedColor:"{highlight.color}",selectedFocusColor:"{highlight.focus.color}",selectedFontWeight:"{typography.font.weight}",icon:{color:"light-dark({surface.400}, {surface.500})",focusColor:"light-dark({surface.500}, {surface.400})"}},optionGroup:{padding:"0.25rem 0.625rem",fontWeight:"600",fontSize:"{typography.font.size}",background:"transparent",color:"{text.muted.color}"}},content:{borderRadius:"{border.radius.md}",background:"light-dark({surface.0}, {surface.900})",hoverBackground:"light-dark({surface.100}, {surface.800})",borderColor:"light-dark({surface.200}, {surface.700})",color:"{text.color}",hoverColor:"{text.hover.color}"},mask:{transitionDuration:"0.3s",background:"light-dark(rgba(0,0,0,0.4), rgba(0,0,0,0.6))",color:"{surface.200}"},navigation:{list:{padding:"0.25rem 0.25rem",gap:"2px"},item:{padding:"0.25rem 0.625rem",borderRadius:"{border.radius.sm}",gap:"0.5rem",focusBackground:"light-dark({surface.100}, {surface.800})",activeBackground:"light-dark({surface.100}, {surface.800})",color:"{text.color}",focusColor:"{text.hover.color}",activeColor:"{text.hover.color}",icon:{size:"{icon.size}",color:"light-dark({surface.400}, {surface.500})",focusColor:"light-dark({surface.500}, {surface.400})",activeColor:"light-dark({surface.500}, {surface.400})"},label:{fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}"},transitionDuration:"0s"},submenuLabel:{padding:"0.25rem 0.625rem",fontWeight:"600",fontSize:"{typography.font.size}",background:"transparent",color:"{text.muted.color}"},submenuIcon:{size:"0.75rem",color:"light-dark({surface.400}, {surface.500})",focusColor:"light-dark({surface.500}, {surface.400})",activeColor:"light-dark({surface.500}, {surface.400})"}},overlay:{select:{borderRadius:"{border.radius.md}",shadow:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)",background:"light-dark({surface.0}, {surface.900})",borderColor:"light-dark({surface.200}, {surface.700})",color:"{text.color}"},popover:{borderRadius:"{border.radius.md}",padding:"0.625rem",shadow:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)",background:"light-dark({surface.0}, {surface.900})",borderColor:"light-dark({surface.200}, {surface.700})",color:"{text.color}"},modal:{borderRadius:"{border.radius.xl}",padding:"1.125rem",shadow:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)",background:"light-dark({surface.0}, {surface.900})",borderColor:"light-dark({surface.200}, {surface.700})",color:"{text.color}"},navigation:{shadow:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)"}},surface:{0:"#ffffff",50:"light-dark({slate.50}, {zinc.50})",100:"light-dark({slate.100}, {zinc.100})",200:"light-dark({slate.200}, {zinc.200})",300:"light-dark({slate.300}, {zinc.300})",400:"light-dark({slate.400}, {zinc.400})",500:"light-dark({slate.500}, {zinc.500})",600:"light-dark({slate.600}, {zinc.600})",700:"light-dark({slate.700}, {zinc.700})",800:"light-dark({slate.800}, {zinc.800})",900:"light-dark({slate.900}, {zinc.900})",950:"light-dark({slate.950}, {zinc.950})"},highlight:{background:"light-dark({primary.50}, color-mix(in srgb, {primary.400}, transparent 84%))",focusBackground:"light-dark({primary.100}, color-mix(in srgb, {primary.400}, transparent 76%))",color:"light-dark({primary.700}, rgba(255,255,255,.87))",focusColor:"light-dark({primary.800}, rgba(255,255,255,.87))"},text:{color:"light-dark({surface.700}, {surface.0})",hoverColor:"light-dark({surface.800}, {surface.0})",mutedColor:"light-dark({surface.500}, {surface.400})",hoverMutedColor:"light-dark({surface.600}, {surface.300})"}},F={primitive:re,semantic:ee};var ae={borderRadius:"{content.border.radius}"},T={root:ae};var te={padding:"0.875rem",background:"{content.background}",gap:"0.5rem",transitionDuration:"{transition.duration}"},ie={color:"{text.muted.color}",hoverColor:"{text.color}",borderRadius:"{content.border.radius}",gap:"{navigation.item.gap}",icon:{color:"{navigation.item.icon.color}",hoverColor:"{navigation.item.icon.focus.color}",size:"{navigation.item.icon.size}"},label:{fontWeight:"{navigation.item.label.font.weight}",fontSize:"{navigation.item.label.font.size}"},focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},de={color:"{navigation.item.icon.color}"},P={root:te,item:ie,separator:de};var ne={borderRadius:"{form.field.border.radius}",roundedBorderRadius:"2rem",gap:"0.5rem",paddingX:"{form.field.padding.x}",paddingY:"{form.field.padding.y}",iconOnlyWidth:"2.25rem",fontSize:"{form.field.font.size}",sm:{fontSize:"{form.field.sm.font.size}",paddingX:"{form.field.sm.padding.x}",paddingY:"{form.field.sm.padding.y}",iconOnlyWidth:"1.75rem"},lg:{fontSize:"{form.field.lg.font.size}",paddingX:"{form.field.lg.padding.x}",paddingY:"{form.field.lg.padding.y}",iconOnlyWidth:"2.625rem"},label:{fontWeight:"500"},raisedShadow:"0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12)",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",offset:"{focus.ring.offset}"},badgeSize:"1rem",transitionDuration:"{form.field.transition.duration}",primary:{background:"{primary.color}",hoverBackground:"{primary.hover.color}",activeBackground:"{primary.active.color}",borderColor:"{primary.color}",hoverBorderColor:"{primary.hover.color}",activeBorderColor:"{primary.active.color}",color:"{primary.contrast.color}",hoverColor:"{primary.contrast.color}",activeColor:"{primary.contrast.color}",focusRing:{color:"{primary.color}",shadow:"none"}},secondary:{background:"light-dark({surface.100}, {surface.800})",hoverBackground:"light-dark({surface.200}, {surface.700})",activeBackground:"light-dark({surface.300}, {surface.600})",borderColor:"light-dark({surface.100}, {surface.800})",hoverBorderColor:"light-dark({surface.200}, {surface.700})",activeBorderColor:"light-dark({surface.300}, {surface.600})",color:"light-dark({surface.600}, {surface.300})",hoverColor:"light-dark({surface.700}, {surface.200})",activeColor:"light-dark({surface.800}, {surface.100})",focusRing:{color:"light-dark({surface.600}, {surface.300})",shadow:"none"}},info:{background:"light-dark({sky.500}, {sky.400})",hoverBackground:"light-dark({sky.600}, {sky.300})",activeBackground:"light-dark({sky.700}, {sky.200})",borderColor:"light-dark({sky.500}, {sky.400})",hoverBorderColor:"light-dark({sky.600}, {sky.300})",activeBorderColor:"light-dark({sky.700}, {sky.200})",color:"light-dark(#ffffff, {sky.950})",hoverColor:"light-dark(#ffffff, {sky.950})",activeColor:"light-dark(#ffffff, {sky.950})",focusRing:{color:"light-dark({sky.500}, {sky.400})",shadow:"none"}},success:{background:"light-dark({green.500}, {green.400})",hoverBackground:"light-dark({green.600}, {green.300})",activeBackground:"light-dark({green.700}, {green.200})",borderColor:"light-dark({green.500}, {green.400})",hoverBorderColor:"light-dark({green.600}, {green.300})",activeBorderColor:"light-dark({green.700}, {green.200})",color:"light-dark(#ffffff, {green.950})",hoverColor:"light-dark(#ffffff, {green.950})",activeColor:"light-dark(#ffffff, {green.950})",focusRing:{color:"light-dark({green.500}, {green.400})",shadow:"none"}},warn:{background:"light-dark({orange.500}, {orange.400})",hoverBackground:"light-dark({orange.600}, {orange.300})",activeBackground:"light-dark({orange.700}, {orange.200})",borderColor:"light-dark({orange.500}, {orange.400})",hoverBorderColor:"light-dark({orange.600}, {orange.300})",activeBorderColor:"light-dark({orange.700}, {orange.200})",color:"light-dark(#ffffff, {orange.950})",hoverColor:"light-dark(#ffffff, {orange.950})",activeColor:"light-dark(#ffffff, {orange.950})",focusRing:{color:"light-dark({orange.500}, {orange.400})",shadow:"none"}},help:{background:"light-dark({purple.500}, {purple.400})",hoverBackground:"light-dark({purple.600}, {purple.300})",activeBackground:"light-dark({purple.700}, {purple.200})",borderColor:"light-dark({purple.500}, {purple.400})",hoverBorderColor:"light-dark({purple.600}, {purple.300})",activeBorderColor:"light-dark({purple.700}, {purple.200})",color:"light-dark(#ffffff, {purple.950})",hoverColor:"light-dark(#ffffff, {purple.950})",activeColor:"light-dark(#ffffff, {purple.950})",focusRing:{color:"light-dark({purple.500}, {purple.400})",shadow:"none"}},danger:{background:"light-dark({red.500}, {red.400})",hoverBackground:"light-dark({red.600}, {red.300})",activeBackground:"light-dark({red.700}, {red.200})",borderColor:"light-dark({red.500}, {red.400})",hoverBorderColor:"light-dark({red.600}, {red.300})",activeBorderColor:"light-dark({red.700}, {red.200})",color:"light-dark(#ffffff, {red.950})",hoverColor:"light-dark(#ffffff, {red.950})",activeColor:"light-dark(#ffffff, {red.950})",focusRing:{color:"light-dark({red.500}, {red.400})",shadow:"none"}},contrast:{background:"light-dark({surface.950}, {surface.0})",hoverBackground:"light-dark({surface.900}, {surface.100})",activeBackground:"light-dark({surface.800}, {surface.200})",borderColor:"light-dark({surface.950}, {surface.0})",hoverBorderColor:"light-dark({surface.900}, {surface.100})",activeBorderColor:"light-dark({surface.800}, {surface.200})",color:"light-dark({surface.0}, {surface.950})",hoverColor:"light-dark({surface.0}, {surface.950})",activeColor:"light-dark({surface.0}, {surface.950})",focusRing:{color:"light-dark({surface.950}, {surface.0})",shadow:"none"}}},le={primary:{hoverBackground:"light-dark({primary.50}, color-mix(in srgb, {primary.color}, transparent 96%))",activeBackground:"light-dark({primary.100}, color-mix(in srgb, {primary.color}, transparent 84%))",borderColor:"light-dark({primary.200}, {primary.700})",color:"{primary.color}"},secondary:{hoverBackground:"light-dark({surface.50}, rgba(255,255,255,0.04))",activeBackground:"light-dark({surface.100}, rgba(255,255,255,0.16))",borderColor:"light-dark({surface.200}, {surface.700})",color:"light-dark({surface.500}, {surface.400})"},success:{hoverBackground:"light-dark({green.50}, color-mix(in srgb, {green.400}, transparent 96%))",activeBackground:"light-dark({green.100}, color-mix(in srgb, {green.400}, transparent 84%))",borderColor:"light-dark({green.200}, {green.700})",color:"light-dark({green.500}, {green.400})"},info:{hoverBackground:"light-dark({sky.50}, color-mix(in srgb, {sky.400}, transparent 96%))",activeBackground:"light-dark({sky.100}, color-mix(in srgb, {sky.400}, transparent 84%))",borderColor:"light-dark({sky.200}, {sky.700})",color:"light-dark({sky.500}, {sky.400})"},warn:{hoverBackground:"light-dark({orange.50}, color-mix(in srgb, {orange.400}, transparent 96%))",activeBackground:"light-dark({orange.100}, color-mix(in srgb, {orange.400}, transparent 84%))",borderColor:"light-dark({orange.200}, {orange.700})",color:"light-dark({orange.500}, {orange.400})"},help:{hoverBackground:"light-dark({purple.50}, color-mix(in srgb, {purple.400}, transparent 96%))",activeBackground:"light-dark({purple.100}, color-mix(in srgb, {purple.400}, transparent 84%))",borderColor:"light-dark({purple.200}, {purple.700})",color:"light-dark({purple.500}, {purple.400})"},danger:{hoverBackground:"light-dark({red.50}, color-mix(in srgb, {red.400}, transparent 96%))",activeBackground:"light-dark({red.100}, color-mix(in srgb, {red.400}, transparent 84%))",borderColor:"light-dark({red.200}, {red.700})",color:"light-dark({red.500}, {red.400})"},contrast:{hoverBackground:"light-dark({surface.50}, {surface.800})",activeBackground:"light-dark({surface.100}, {surface.700})",borderColor:"light-dark({surface.700}, {surface.500})",color:"light-dark({surface.950}, {surface.0})"},plain:{hoverBackground:"light-dark({surface.50}, {surface.800})",activeBackground:"light-dark({surface.100}, {surface.700})",borderColor:"light-dark({surface.200}, {surface.600})",color:"light-dark({surface.700}, {surface.0})"}},ce={primary:{hoverBackground:"light-dark({primary.50}, color-mix(in srgb, {primary.color}, transparent 96%))",activeBackground:"light-dark({primary.100}, color-mix(in srgb, {primary.color}, transparent 84%))",color:"{primary.color}"},secondary:{hoverBackground:"light-dark({surface.50}, {surface.800})",activeBackground:"light-dark({surface.100}, {surface.700})",color:"light-dark({surface.500}, {surface.400})"},success:{hoverBackground:"light-dark({green.50}, color-mix(in srgb, {green.400}, transparent 96%))",activeBackground:"light-dark({green.100}, color-mix(in srgb, {green.400}, transparent 84%))",color:"light-dark({green.500}, {green.400})"},info:{hoverBackground:"light-dark({sky.50}, color-mix(in srgb, {sky.400}, transparent 96%))",activeBackground:"light-dark({sky.100}, color-mix(in srgb, {sky.400}, transparent 84%))",color:"light-dark({sky.500}, {sky.400})"},warn:{hoverBackground:"light-dark({orange.50}, color-mix(in srgb, {orange.400}, transparent 96%))",activeBackground:"light-dark({orange.100}, color-mix(in srgb, {orange.400}, transparent 84%))",color:"light-dark({orange.500}, {orange.400})"},help:{hoverBackground:"light-dark({purple.50}, color-mix(in srgb, {purple.400}, transparent 96%))",activeBackground:"light-dark({purple.100}, color-mix(in srgb, {purple.400}, transparent 84%))",color:"light-dark({purple.500}, {purple.400})"},danger:{hoverBackground:"light-dark({red.50}, color-mix(in srgb, {red.400}, transparent 96%))",activeBackground:"light-dark({red.100}, color-mix(in srgb, {red.400}, transparent 84%))",color:"light-dark({red.500}, {red.400})"},contrast:{hoverBackground:"light-dark({surface.50}, {surface.800})",activeBackground:"light-dark({surface.100}, {surface.700})",color:"light-dark({surface.950}, {surface.0})"},plain:{hoverBackground:"light-dark({surface.50}, {surface.800})",activeBackground:"light-dark({surface.100}, {surface.700})",color:"light-dark({surface.700}, {surface.0})"}},se={color:"{primary.color}",hoverColor:"{primary.color}",activeColor:"{primary.color}"},L={root:ne,outlined:le,text:ce,link:se};var fe={background:"{content.background}",borderRadius:"{border.radius.xl}",color:"{content.color}",shadow:"0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1)"},ge={padding:"1.125rem",gap:"0.5rem"},ue={gap:"0.5rem"},pe={fontSize:"1.125rem",fontWeight:"500"},me={color:"{text.muted.color}",fontSize:"1rem",fontWeight:"{typography.font.weight}"},Y={root:fe,body:ge,caption:ue,title:pe,subtitle:me};var be={transitionDuration:"{transition.duration}"},he={gap:"0.25rem"},ke={padding:"1rem",gap:"0.5rem"},ve={width:"1.75rem",height:"0.5rem",borderRadius:"{content.border.radius}",background:"light-dark({surface.200}, {surface.700})",hoverBackground:"light-dark({surface.300}, {surface.600})",activeBackground:"{primary.color}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},X={root:be,content:he,indicatorList:ke,indicator:ve};var ye={background:"{form.field.background}",disabledBackground:"{form.field.disabled.background}",filledBackground:"{form.field.filled.background}",filledHoverBackground:"{form.field.filled.hover.background}",filledFocusBackground:"{form.field.filled.focus.background}",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.hover.border.color}",focusBorderColor:"{form.field.focus.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",color:"{form.field.color}",disabledColor:"{form.field.disabled.color}",placeholderColor:"{form.field.placeholder.color}",invalidPlaceholderColor:"{form.field.invalid.placeholder.color}",shadow:"{form.field.shadow}",paddingX:"{form.field.padding.x}",paddingY:"{form.field.padding.y}",borderRadius:"{form.field.border.radius}",focusRing:{width:"{form.field.focus.ring.width}",style:"{form.field.focus.ring.style}",color:"{form.field.focus.ring.color}",offset:"{form.field.focus.ring.offset}",shadow:"{form.field.focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}",sm:{fontSize:"{form.field.sm.font.size}",paddingX:"{form.field.sm.padding.x}",paddingY:"{form.field.sm.padding.y}"},lg:{fontSize:"{form.field.lg.font.size}",paddingX:"{form.field.lg.padding.x}",paddingY:"{form.field.lg.padding.y}"},fontWeight:"{form.field.font.weight}",fontSize:"{form.field.font.size}"},xe={width:"2.25rem",color:"{form.field.icon.color}"},we={background:"{overlay.select.background}",borderColor:"{overlay.select.border.color}",borderRadius:"{overlay.select.border.radius}",color:"{overlay.select.color}",shadow:"{overlay.select.shadow}"},Ce={padding:"{list.padding}",gap:"{list.gap}",mobileIndent:"1rem"},Be={focusBackground:"{list.option.focus.background}",selectedBackground:"{list.option.selected.background}",selectedFocusBackground:"{list.option.selected.focus.background}",color:"{list.option.color}",focusColor:"{list.option.focus.color}",selectedColor:"{list.option.selected.color}",selectedFocusColor:"{list.option.selected.focus.color}",selectedFontWeight:"{list.option.selected.font.weight}",padding:"{list.option.padding}",borderRadius:"{list.option.border.radius}",icon:{color:"{list.option.icon.color}",focusColor:"{list.option.icon.focus.color}",size:"0.75rem"},fontWeight:"{list.option.font.weight}",fontSize:"{list.option.font.size}"},ze={color:"{form.field.icon.color}"},M={root:ye,dropdown:xe,overlay:we,list:Ce,option:Be,clearIcon:ze};var Re={borderRadius:"{border.radius.sm}",width:"1.125rem",height:"1.125rem",background:"{form.field.background}",checkedBackground:"{primary.color}",checkedHoverBackground:"{primary.hover.color}",disabledBackground:"{form.field.disabled.background}",filledBackground:"{form.field.filled.background}",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.hover.border.color}",focusBorderColor:"{form.field.border.color}",checkedBorderColor:"{primary.color}",checkedHoverBorderColor:"{primary.hover.color}",checkedFocusBorderColor:"{primary.color}",checkedDisabledBorderColor:"{form.field.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",shadow:"{form.field.shadow}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}",sm:{width:"0.875rem",height:"0.875rem"},lg:{width:"1.25rem",height:"1.25rem"}},We={size:"0.75rem",color:"{form.field.color}",checkedColor:"{primary.contrast.color}",checkedHoverColor:"{primary.contrast.color}",disabledColor:"{form.field.disabled.color}",sm:{size:"0.625rem"},lg:{size:"0.875rem"}},O={root:Re,icon:We};var Se={borderRadius:"1rem",paddingX:"0.625rem",paddingY:"0.375rem",gap:"0.375rem",transitionDuration:"{transition.duration}",background:"light-dark({surface.100}, {surface.800})",focusBackground:"light-dark({surface.200}, {surface.700})",color:"light-dark({surface.800}, {surface.0})"},Ie={width:"1.75rem",height:"1.75rem"},De={size:"0.875rem",color:"light-dark({surface.800}, {surface.0})"},He={fontWeight:"{typography.font.weight}",fontSize:"0.75rem"},Fe={size:"0.875rem",color:"light-dark({surface.800}, {surface.0})",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{form.field.focus.ring.shadow}"}},G={root:Se,image:Ie,icon:De,label:He,removeIcon:Fe};var Te={transitionDuration:"{transition.duration}"},Pe={width:"1.375rem",height:"1.375rem",borderRadius:"{form.field.border.radius}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Le={shadow:"{overlay.popover.shadow}",borderRadius:"{overlay.popover.borderRadius}",background:"light-dark({surface.800}, {surface.900})",borderColor:"light-dark({surface.900}, {surface.700})"},Ye={color:"{surface.0}"},A={root:Te,preview:Pe,panel:Le,handle:Ye};var Xe={background:"{content.background}",borderColor:"{content.border.color}",borderRadius:"{content.border.radius}",height:"25rem"},Me={padding:"0.375rem 1.125rem",background:"{content.background}",borderColor:"{content.border.color}"},Oe={padding:"0.375rem 0",fontSize:"1rem",fontWeight:"{typography.font.weight}",color:"{form.field.color}",placeholderColor:"{form.field.placeholder.color}"},Ge={padding:"0.375rem"},Ae={padding:"2rem 0",color:"{content.color}"},Ee={padding:"0.625rem 1.125rem",background:"{content.background}",borderColor:"{content.border.color}"},E={root:Xe,header:Me,input:Oe,list:Ge,empty:Ae,footer:Ee};var Ve={borderRadius:"{content.border.radius}"},Ne={background:"{content.background}",size:"1px"},je={size:"1.5rem",background:"{content.background}",borderRadius:"{content.border.radius}",focusRing:{width:"2px",style:"solid",color:"{content.background}",offset:"2px"},icon:{color:"{text.muted.color}",size:"{icon.size}"}},V={root:Ve,handle:Ne,indicator:je};var $e={size:"1.5rem",color:"{overlay.modal.color}"},Ke={gap:"0.875rem"},Je={color:"{content.color}",fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}"},N={icon:$e,content:Ke,message:Je};var Ue={background:"{overlay.popover.background}",borderColor:"{overlay.popover.border.color}",color:"{overlay.popover.color}",borderRadius:"{overlay.popover.border.radius}",shadow:"{overlay.popover.shadow}",gutter:"10px",arrowOffset:"1.125rem"},qe={padding:"{overlay.popover.padding}",gap:"0.5rem"},Qe={size:"1.25rem",color:"{overlay.popover.color}"},Ze={color:"{content.color}",fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}"},_e={gap:"0.375rem",padding:"0 {overlay.popover.padding} {overlay.popover.padding} {overlay.popover.padding}"},j={root:Ue,content:qe,icon:Qe,message:Ze,footer:_e};var oa={background:"{content.background}",borderColor:"{content.border.color}",color:"{content.color}",borderRadius:"{content.border.radius}",shadow:"{overlay.navigation.shadow}",transitionDuration:"{navigation.item.transition.duration}"},ra={padding:"{navigation.list.padding}",gap:"{navigation.list.gap}"},ea={focusBackground:"{navigation.item.focus.background}",activeBackground:"{navigation.item.active.background}",color:"{navigation.item.color}",focusColor:"{navigation.item.focus.color}",activeColor:"{navigation.item.active.color}",padding:"{navigation.item.padding}",borderRadius:"{navigation.item.border.radius}",gap:"{navigation.item.gap}",icon:{color:"{navigation.item.icon.color}",focusColor:"{navigation.item.icon.focus.color}",activeColor:"{navigation.item.icon.active.color}",size:"{navigation.item.icon.size}"},label:{fontWeight:"{navigation.item.label.font.weight}",fontSize:"{navigation.item.label.font.size}"}},aa={mobileIndent:"1rem"},ta={padding:"{navigation.submenu.label.padding}",fontWeight:"{navigation.submenu.label.font.weight}",fontSize:"{navigation.submenu.label.font.size}",background:"{navigation.submenu.label.background}",color:"{navigation.submenu.label.color}"},ia={size:"{navigation.submenu.icon.size}",color:"{navigation.submenu.icon.color}",focusColor:"{navigation.submenu.icon.focus.color}",activeColor:"{navigation.submenu.icon.active.color}"},da={borderColor:"{content.border.color}"},$={root:oa,list:ra,item:ea,submenu:aa,submenuLabel:ta,submenuIcon:ia,separator:da};var K=` +`;var na={transitionDuration:"0s",borderColor:"light-dark({content.border.color}, {surface.800})"},la={background:"{content.background}",borderColor:"{datatable.border.color}",color:"{content.color}",borderWidth:"0 0 1px 0",padding:"0.5rem 0.875rem",sm:{padding:"0.125rem 0.375rem"},lg:{padding:"0.75rem 1.125rem"}},ca={background:"{content.background}",hoverBackground:"{content.hover.background}",selectedBackground:"{content.background}",borderColor:"{datatable.border.color}",color:"{content.color}",hoverColor:"{content.hover.color}",selectedColor:"{content.color}",gap:"0.5rem",padding:"0.5rem 0.875rem",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"-1px",shadow:"{focus.ring.shadow}"},sm:{padding:"0.125rem 0.375rem"},lg:{padding:"0.75rem 1.125rem"}},sa={fontWeight:"600",fontSize:"{typography.font.size}"},fa={background:"{content.background}",hoverBackground:"{content.hover.background}",selectedBackground:"{highlight.background}",color:"{content.color}",hoverColor:"{content.hover.color}",selectedColor:"{highlight.color}",stripedBackground:"light-dark({surface.50}, {surface.950})",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"-1px",shadow:"{focus.ring.shadow}"}},ga={borderColor:"{datatable.border.color}",padding:"0.5rem 0.875rem",fontWeight:"{typography.font.size}",fontSize:"{typography.font.size}",selectedBorderColor:"light-dark({primary.100}, {primary.900})",sm:{padding:"0.125rem 0.375rem"},lg:{padding:"0.75rem 1.125rem"}},ua={background:"{content.background}",borderColor:"{datatable.border.color}",color:"{content.color}",padding:"0.5rem 0.875rem",sm:{padding:"0.125rem 0.375rem"},lg:{padding:"0.75rem 1.125rem"}},pa={fontWeight:"600",fontSize:"{typography.font.size}"},ma={background:"{content.background}",borderColor:"{datatable.border.color}",color:"{content.color}",borderWidth:"0 0 1px 0",padding:"0.5rem 0.875rem",sm:{padding:"0.125rem 0.375rem"},lg:{padding:"0.75rem 1.125rem"}},ba={color:"{primary.color}"},ha={width:"0.5rem"},ka={width:"1px",color:"{primary.color}"},va={color:"{text.muted.color}",hoverColor:"{text.hover.muted.color}",size:"0.75rem"},ya={size:"1.75rem"},xa={hoverBackground:"{content.hover.background}",selectedHoverBackground:"{content.background}",color:"{text.muted.color}",hoverColor:"{text.color}",selectedHoverColor:"{primary.color}",size:"1.5rem",borderRadius:"50%",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},wa={inlineGap:"0.5rem",overlaySelect:{background:"{overlay.select.background}",borderColor:"{overlay.select.border.color}",borderRadius:"{overlay.select.border.radius}",color:"{overlay.select.color}",shadow:"{overlay.select.shadow}"},overlayPopover:{background:"{overlay.popover.background}",borderColor:"{overlay.popover.border.color}",borderRadius:"{overlay.popover.border.radius}",color:"{overlay.popover.color}",shadow:"{overlay.popover.shadow}",padding:"{overlay.popover.padding}",gap:"0.5rem"},rule:{borderColor:"{content.border.color}"},constraintList:{padding:"{list.padding}",gap:"{list.gap}"},constraint:{focusBackground:"{list.option.focus.background}",selectedBackground:"{list.option.selected.background}",selectedFocusBackground:"{list.option.selected.focus.background}",color:"{list.option.color}",focusColor:"{list.option.focus.color}",selectedColor:"{list.option.selected.color}",selectedFocusColor:"{list.option.selected.focus.color}",separator:{borderColor:"{content.border.color}"},padding:"{list.option.padding}",borderRadius:"{list.option.border.radius}"}},Ca={borderColor:"{datatable.border.color}",borderWidth:"0 0 1px 0"},Ba={borderColor:"{datatable.border.color}",borderWidth:"0 0 1px 0"},za=` + .p-datatable-mask.p-overlay-mask { + --px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3)); + } +`,J={root:na,header:la,headerCell:ca,columnTitle:sa,row:fa,bodyCell:ga,footerCell:ua,columnFooter:pa,footer:ma,dropPoint:ba,columnResizer:ha,resizeIndicator:ka,sortIcon:va,loadingIcon:ya,rowToggleButton:xa,filter:wa,paginatorTop:Ca,paginatorBottom:Ba,css:za};var Ra={borderColor:"transparent",borderWidth:"0",borderRadius:"0",padding:"0"},Wa={background:"{content.background}",color:"{content.color}",borderColor:"{content.border.color}",borderWidth:"0 0 1px 0",padding:"0.625rem 0.875rem",borderRadius:"0"},Sa={background:"{content.background}",color:"{content.color}",borderColor:"transparent",borderWidth:"0",padding:"0",borderRadius:"0"},Ia={background:"{content.background}",color:"{content.color}",borderColor:"{content.border.color}",borderWidth:"1px 0 0 0",padding:"0.625rem 0.875rem",borderRadius:"0"},Da={borderColor:"{content.border.color}",borderWidth:"0 0 1px 0"},Ha={borderColor:"{content.border.color}",borderWidth:"1px 0 0 0"},U={root:Ra,header:Wa,content:Sa,footer:Ia,paginatorTop:Da,paginatorBottom:Ha};var Fa={transitionDuration:"{transition.duration}"},Ta={background:"{content.background}",borderColor:"{content.border.color}",color:"{content.color}",borderRadius:"{content.border.radius}",shadow:"{overlay.popover.shadow}",padding:"{overlay.popover.padding}"},Pa={background:"{content.background}",borderColor:"{content.border.color}",color:"{content.color}",padding:"0 0 0.5rem 0"},La={gap:"0.5rem",fontWeight:"500",fontSize:"{typography.font.size}"},Ya={width:"2.25rem",sm:{width:"1.75rem"},lg:{width:"2.625rem"},background:"light-dark({surface.100}, {surface.800})",hoverBackground:"light-dark({surface.200}, {surface.700})",activeBackground:"light-dark({surface.300}, {surface.600})",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.border.color}",activeBorderColor:"{form.field.border.color}",color:"light-dark({surface.600}, {surface.300})",hoverColor:"light-dark({surface.700}, {surface.200})",activeColor:"light-dark({surface.800}, {surface.100})",borderRadius:"{form.field.border.radius}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Xa={color:"{form.field.icon.color}"},Ma={hoverBackground:"{content.hover.background}",color:"{content.color}",hoverColor:"{content.hover.color}",padding:"0.25rem 0.5rem",borderRadius:"{content.border.radius}",fontWeight:"500",fontSize:"{typography.font.size}"},Oa={hoverBackground:"{content.hover.background}",color:"{content.color}",hoverColor:"{content.hover.color}",padding:"0.25rem 0.5rem",borderRadius:"{content.border.radius}",fontWeight:"500",fontSize:"{typography.font.size}"},Ga={borderColor:"{content.border.color}",gap:"{overlay.popover.padding}"},Aa={margin:"0.5rem 0 0 0"},Ea={padding:"0.25rem",fontWeight:"500",fontSize:"{typography.font.size}",color:"{content.color}"},Va={fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}",hoverBackground:"{content.hover.background}",selectedBackground:"{primary.color}",rangeSelectedBackground:"{highlight.background}",color:"{content.color}",hoverColor:"{content.hover.color}",selectedColor:"{primary.contrast.color}",rangeSelectedColor:"{highlight.color}",width:"1.75rem",height:"1.75rem",borderRadius:"50%",padding:"0.25rem",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Na={margin:"0.5rem 0 0 0"},ja={padding:"0.25rem",borderRadius:"{content.border.radius}"},$a={margin:"0.5rem 0 0 0"},Ka={padding:"0.25rem",borderRadius:"{content.border.radius}"},Ja={padding:"0.5rem 0 0 0",borderColor:"{content.border.color}"},Ua={padding:"0.5rem 0 0 0",borderColor:"{content.border.color}",gap:"0.5rem",buttonGap:"0.125rem",color:"{content.color}",fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}"},qa={background:"light-dark({surface.200}, {surface.700})",color:"light-dark({surface.900}, {surface.0})"},q={root:Fa,panel:Ta,header:Pa,title:La,dropdown:Ya,inputIcon:Xa,selectMonth:Ma,selectYear:Oa,group:Ga,dayView:Aa,weekDay:Ea,date:Va,monthView:Na,month:ja,yearView:$a,year:Ka,buttonbar:Ja,timePicker:Ua,today:qa};var Qa={background:"{overlay.modal.background}",borderColor:"{overlay.modal.border.color}",color:"{overlay.modal.color}",borderRadius:"{overlay.modal.border.radius}",shadow:"{overlay.modal.shadow}"},Za={padding:"{overlay.modal.padding}",gap:"0.5rem"},_a={fontSize:"1.125rem",fontWeight:"600"},ot={padding:"0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}"},rt={padding:"0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}",gap:"0.375rem"},Q={root:Qa,header:Za,title:_a,content:ot,footer:rt};var et={borderColor:"{content.border.color}"},at={background:"{content.background}",color:"{text.color}"},tt={margin:"0.875rem 0",padding:"0 0.875rem",content:{padding:"0 0.375rem"}},it={margin:"0 0.875rem",padding:"0.375rem 0",content:{padding:"0.375rem 0"}},Z={root:et,content:at,horizontal:tt,vertical:it};var dt={background:"rgba(255, 255, 255, 0.1)",borderColor:"rgba(255, 255, 255, 0.2)",padding:"0.5rem",borderRadius:"{border.radius.xl}"},nt={borderRadius:"{content.border.radius}",padding:"0.5rem",size:"2.625rem",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},_={root:dt,item:nt};var lt={background:"{overlay.modal.background}",borderColor:"{overlay.modal.border.color}",color:"{overlay.modal.color}",shadow:"{overlay.modal.shadow}"},ct={padding:"{overlay.modal.padding}"},st={fontSize:"1.125rem",fontWeight:"600"},ft={padding:"0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}"},gt={padding:"{overlay.modal.padding}"},oo={root:lt,header:ct,title:st,content:ft,footer:gt};var ut={background:"{content.background}",borderColor:"{content.border.color}",borderRadius:"{content.border.radius}"},pt={color:"{text.muted.color}",hoverColor:"{text.color}",activeColor:"{primary.color}"},mt={background:"{overlay.select.background}",borderColor:"{overlay.select.border.color}",borderRadius:"{overlay.select.border.radius}",color:"{overlay.select.color}",shadow:"{overlay.select.shadow}",padding:"{list.padding}"},bt={focusBackground:"{list.option.focus.background}",color:"{list.option.color}",focusColor:"{list.option.focus.color}",padding:"{list.option.padding}",borderRadius:"{list.option.border.radius}"},ht={background:"{content.background}",borderColor:"{content.border.color}",color:"{content.color}",borderRadius:"{content.border.radius}"},ro={toolbar:ut,toolbarItem:pt,overlay:mt,overlayOption:bt,content:ht};var kt={background:"{content.background}",borderColor:"{content.border.color}",borderRadius:"{content.border.radius}",color:"{content.color}",padding:"0 1rem 1rem 1rem",transitionDuration:"{transition.duration}"},vt={background:"{content.background}",hoverBackground:"{content.hover.background}",color:"{content.color}",hoverColor:"{content.hover.color}",borderRadius:"{content.border.radius}",borderWidth:"1px",borderColor:"transparent",padding:".375rem 0.625rem",gap:"0.5rem",fontWeight:"600",fontSize:"{typography.font.size}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},yt={color:"{text.muted.color}",hoverColor:"{text.hover.muted.color}"},xt={padding:"0"},eo={root:kt,legend:vt,toggleIcon:yt,content:xt};var wt={background:"{content.background}",borderColor:"{content.border.color}",color:"{content.color}",borderRadius:"{content.border.radius}",transitionDuration:"{transition.duration}"},Ct={background:"transparent",color:"{text.color}",padding:"1rem",borderColor:"unset",borderWidth:"0",borderRadius:"0",gap:"0.5rem"},Bt={highlightBorderColor:"{primary.color}",padding:"0 1rem 1rem 1rem",gap:"0.875rem"},zt={padding:"0.875rem",gap:"0.875rem",borderColor:"{content.border.color}",info:{gap:"0.125rem"}},Rt={color:"{text.color}",fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}"},Wt={color:"{text.muted.color}",fontWeight:"{typography.font.weight}",fontSize:"0.75rem"},St={gap:"0.5rem"},It={height:"0.25rem"},Dt={gap:"0.5rem"},ao={root:wt,header:Ct,content:Bt,file:zt,fileName:Rt,fileSize:Wt,fileList:St,progressbar:It,basic:Dt};var Ht={color:"{form.field.float.label.color}",focusColor:"{form.field.float.label.focus.color}",activeColor:"{form.field.float.label.active.color}",invalidColor:"{form.field.float.label.invalid.color}",transitionDuration:"0.2s",positionX:"{form.field.padding.x}",positionY:"{form.field.padding.y}",fontWeight:"{form.field.font.weight}",fontSize:"{form.field.font.size}",active:{fontSize:"0.625rem",fontWeight:"400"}},Ft={active:{top:"-1.125rem"}},Tt={input:{paddingTop:"1.125rem",paddingBottom:"{form.field.padding.y}"},active:{top:"{form.field.padding.y}"}},Pt={borderRadius:"{border.radius.xs}",active:{background:"{form.field.background}",padding:"0 0.125rem"}},to={root:Ht,over:Ft,in:Tt,on:Pt};var Lt={borderWidth:"1px",borderColor:"{content.border.color}",borderRadius:"{content.border.radius}",transitionDuration:"{transition.duration}"},Yt={background:"rgba(255, 255, 255, 0.1)",hoverBackground:"rgba(255, 255, 255, 0.2)",color:"{surface.100}",hoverColor:"{surface.0}",size:"2.625rem",gutter:"0.5rem",prev:{borderRadius:"50%"},next:{borderRadius:"50%"},focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Xt={size:"1.25rem"},Mt={background:"{content.background}",padding:"0.875rem 0.25rem"},Ot={size:"1.75rem",borderRadius:"{content.border.radius}",gutter:"0.5rem",hoverBackground:"light-dark({surface.100}, {surface.700})",color:"light-dark({surface.600}, {surface.400})",hoverColor:"light-dark({surface.700}, {surface.0})",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Gt={size:"0.875rem"},At={background:"rgba(0, 0, 0, 0.5)",color:"{surface.100}",padding:"0.875rem"},Et={gap:"0.5rem",padding:"0.875rem"},Vt={width:"0.875rem",height:"0.875rem",background:"light-dark({surface.200}, {surface.700})",hoverBackground:"light-dark({surface.300}, {surface.600})",activeBackground:"{primary.color}",borderRadius:"50%",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Nt={background:"rgba(0, 0, 0, 0.5)"},jt={background:"rgba(255, 255, 255, 0.4)",hoverBackground:"rgba(255, 255, 255, 0.6)",activeBackground:"rgba(255, 255, 255, 0.9)"},$t={size:"2.625rem",gutter:"0.5rem",background:"rgba(255, 255, 255, 0.1)",hoverBackground:"rgba(255, 255, 255, 0.2)",color:"{surface.50}",hoverColor:"{surface.0}",borderRadius:"50%",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Kt={size:"1.25rem"},io={root:Lt,navButton:Yt,navIcon:Xt,thumbnailsContent:Mt,thumbnailNavButton:Ot,thumbnailNavButtonIcon:Gt,caption:At,indicatorList:Et,indicatorButton:Vt,insetIndicatorList:Nt,insetIndicatorButton:jt,closeButton:$t,closeButtonIcon:Kt};var Jt={background:"{surface.950}"},Ut={padding:"0.75rem 1rem",background:"{surface.950}"},qt={padding:"0.25rem 0",background:"{surface.950}",borderColor:"{surface.800}"},Qt={transitionDuration:"0.3s"},Zt={size:"2.25rem",borderRadius:"50%",color:"{surface.400}",hoverBackground:"{surface.800}",hoverColor:"{surface.0}",disabledOpacity:"{disabled.opacity}",transitionDuration:"{transition.duration}",icon:{size:"1rem"}},_t={background:"color-mix(in srgb, {surface.800}, transparent 40%)",size:"2.25rem",borderRadius:"50%",color:"{surface.400}",hoverBackground:"{surface.800}",hoverColor:"{surface.0}",offset:"0.5rem",transitionDuration:"{transition.duration}",icon:{size:"1rem"}},oi={size:"5rem",padding:"0.25rem",background:"{surface.800}",borderRadius:"0.25rem",borderWidth:"3px",hoverBorderColor:"{surface.700}",activeBorderColor:"{primary.color}",activeScale:"0.85",transitionDuration:"{transition.duration}"},ri={padding:"0.25rem 0"},no={backdrop:Jt,header:Ut,footer:qt,item:Qt,action:Zt,navigation:_t,thumbnail:oi,thumbnailContent:ri};var ei={color:"{form.field.icon.color}"},lo={icon:ei};var ai={color:"{form.field.float.label.color}",focusColor:"{form.field.float.label.focus.color}",invalidColor:"{form.field.float.label.invalid.color}",transitionDuration:"0.2s",positionX:"{form.field.padding.x}",top:"{form.field.padding.y}",fontWeight:"{form.field.font.weight}",fontSize:"0.625rem"},ti={paddingTop:"1.125rem",paddingBottom:"{form.field.padding.y}"},co={root:ai,input:ti};var ii={transitionDuration:"{transition.duration}"},di={icon:{size:"1.25rem"},mask:{background:"{mask.background}",color:"{mask.color}"}},ni={position:{left:"auto",right:"1rem",top:"1rem",bottom:"auto"},blur:"8px",background:"rgba(255,255,255,0.1)",borderColor:"rgba(255,255,255,0.2)",borderWidth:"1px",borderRadius:"30px",padding:".5rem",gap:"0.5rem"},li={hoverBackground:"rgba(255,255,255,0.1)",color:"{surface.50}",hoverColor:"{surface.0}",size:"2.625rem",iconSize:"1.25rem",borderRadius:"50%",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},so={root:ii,preview:di,toolbar:ni,action:li};var ci={size:"15px",hoverSize:"30px",background:"rgba(255,255,255,0.3)",hoverBackground:"rgba(255,255,255,0.3)",borderColor:"unset",hoverBorderColor:"unset",borderWidth:"0",borderRadius:"50%",transitionDuration:"{transition.duration}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"rgba(255,255,255,0.3)",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},fo={handle:ci};var si={padding:"{form.field.padding.y} {form.field.padding.x}",borderRadius:"{content.border.radius}",gap:"0.5rem"},fi={fontWeight:"500"},gi={size:"1rem"},ui={background:"light-dark(color-mix(in srgb, {blue.50}, transparent 5%), color-mix(in srgb, {blue.500}, transparent 84%))",borderColor:"light-dark({blue.200}, color-mix(in srgb, {blue.700}, transparent 64%))",color:"light-dark({blue.600}, {blue.500})",shadow:"0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)"},pi={background:"light-dark(color-mix(in srgb, {green.50}, transparent 5%), color-mix(in srgb, {green.500}, transparent 84%))",borderColor:"light-dark({green.200}, color-mix(in srgb, {green.700}, transparent 64%))",color:"light-dark({green.600}, {green.500})",shadow:"0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)"},mi={background:"light-dark(color-mix(in srgb, {yellow.50}, transparent 5%), color-mix(in srgb, {yellow.500}, transparent 84%))",borderColor:"light-dark({yellow.200}, color-mix(in srgb, {yellow.700}, transparent 64%))",color:"light-dark({yellow.600}, {yellow.500})",shadow:"0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)"},bi={background:"light-dark(color-mix(in srgb, {red.50}, transparent 5%), color-mix(in srgb, {red.500}, transparent 84%))",borderColor:"light-dark({red.200}, color-mix(in srgb, {red.700}, transparent 64%))",color:"light-dark({red.600}, {red.500})",shadow:"0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)"},hi={background:"light-dark({surface.100}, {surface.800})",borderColor:"light-dark({surface.200}, {surface.700})",color:"light-dark({surface.600}, {surface.300})",shadow:"0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)"},ki={background:"light-dark({surface.900}, {surface.0})",borderColor:"light-dark({surface.950}, {surface.100})",color:"light-dark({surface.50}, {surface.950})",shadow:"0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)"},go={root:si,text:fi,icon:gi,info:ui,success:pi,warn:mi,error:bi,secondary:hi,contrast:ki};var vi={padding:"{form.field.padding.y} {form.field.padding.x}",borderRadius:"{content.border.radius}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"},transitionDuration:"{transition.duration}"},yi={hoverBackground:"{content.hover.background}",hoverColor:"{content.hover.color}"},uo={root:vi,display:yi};var xi={background:"{form.field.background}",disabledBackground:"{form.field.disabled.background}",filledBackground:"{form.field.filled.background}",filledFocusBackground:"{form.field.filled.focus.background}",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.hover.border.color}",focusBorderColor:"{form.field.focus.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",color:"{form.field.color}",disabledColor:"{form.field.disabled.color}",placeholderColor:"{form.field.placeholder.color}",shadow:"{form.field.shadow}",paddingX:"{form.field.padding.x}",paddingY:"{form.field.padding.y}",borderRadius:"{form.field.border.radius}",focusRing:{width:"{form.field.focus.ring.width}",style:"{form.field.focus.ring.style}",color:"{form.field.focus.ring.color}",offset:"{form.field.focus.ring.offset}",shadow:"{form.field.focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}"},wi={borderRadius:"{border.radius.sm}",focusBackground:"light-dark({surface.200}, {surface.700})",color:"light-dark({surface.800}, {surface.0})"},po={root:xi,chip:wi};var Ci={borderColor:"{content.border.color}"},Bi={borderRadius:"{content.border.radius}"},zi={borderRadius:"{content.border.radius}",size:"1rem"},Ri={size:"1rem",borderColor:"#ffffff",borderWidth:"3px",shadow:"0px 0.5px 0px 0px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.14)",transitionDuration:"{transition.duration}",focusRing:{borderWidth:"2px",borderColor:"#ffffff",outlineWidth:"2px",outlineColor:"rgba(255, 255, 255, 0.3)",outlineOffset:"2px"}},Wi={color:"{surface.100}",background:"#ffffff",tileSize:"0.5rem"},Si={size:"2.25rem",borderRadius:"{content.border.radius}"},mo={root:Ci,area:Bi,slider:zi,handle:Ri,transparencyGrid:Wi,swatch:Si};var Ii={background:"{form.field.background}",borderColor:"{form.field.border.color}",color:"{form.field.icon.color}",borderRadius:"{form.field.border.radius}",padding:"0 0.5rem",minWidth:"2.25rem",fontWeight:"{form.field.font.weight}",fontSize:"{form.field.font.size}"},bo={addon:Ii};var Di={transitionDuration:"{transition.duration}"},Hi={width:"2.25rem",borderRadius:"{form.field.border.radius}",verticalPadding:"{form.field.padding.y}",background:"transparent",hoverBackground:"light-dark({surface.100}, {surface.800})",activeBackground:"light-dark({surface.200}, {surface.700})",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.border.color}",activeBorderColor:"{form.field.border.color}",color:"{surface.400}",hoverColor:"light-dark({surface.500}, {surface.300})",activeColor:"light-dark({surface.600}, {surface.200})"},ho={root:Di,button:Hi};var Fi={gap:"0.5rem"},Ti={width:"2.25rem",sm:{width:"1.75rem"},lg:{width:"2.625rem"}},ko={root:Fi,input:Ti};var Pi={background:"{form.field.background}",disabledBackground:"{form.field.disabled.background}",filledBackground:"{form.field.filled.background}",filledHoverBackground:"{form.field.filled.hover.background}",filledFocusBackground:"{form.field.filled.focus.background}",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.hover.border.color}",focusBorderColor:"{form.field.focus.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",color:"{form.field.color}",disabledColor:"{form.field.disabled.color}",shadow:"{form.field.shadow}",paddingX:"{form.field.padding.x}",paddingY:"{form.field.padding.y}",borderRadius:"{form.field.border.radius}",focusRing:{width:"{form.field.focus.ring.width}",style:"{form.field.focus.ring.style}",color:"{form.field.focus.ring.color}",offset:"{form.field.focus.ring.offset}",shadow:"{form.field.focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}",gap:"0.25rem"},Li={borderRadius:"{form.field.border.radius}"},vo={root:Pi,item:Li};var Yi={fontSize:"{form.field.font.size}",fontWeight:"{form.field.font.weight}",background:"{form.field.background}",disabledBackground:"{form.field.disabled.background}",filledBackground:"{form.field.filled.background}",filledHoverBackground:"{form.field.filled.hover.background}",filledFocusBackground:"{form.field.filled.focus.background}",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.hover.border.color}",focusBorderColor:"{form.field.focus.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",color:"{form.field.color}",disabledColor:"{form.field.disabled.color}",placeholderColor:"{form.field.placeholder.color}",invalidPlaceholderColor:"{form.field.invalid.placeholder.color}",shadow:"{form.field.shadow}",paddingX:"{form.field.padding.x}",paddingY:"{form.field.padding.y}",borderRadius:"{form.field.border.radius}",focusRing:{width:"{form.field.focus.ring.width}",style:"{form.field.focus.ring.style}",color:"{form.field.focus.ring.color}",offset:"{form.field.focus.ring.offset}",shadow:"{form.field.focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}",sm:{fontSize:"{form.field.sm.font.size}",paddingX:"{form.field.sm.padding.x}",paddingY:"{form.field.sm.padding.y}"},lg:{fontSize:"{form.field.lg.font.size}",paddingX:"{form.field.lg.padding.x}",paddingY:"{form.field.lg.padding.y}"}},yo={root:Yi};var Xi={transitionDuration:"{transition.duration}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Mi={background:"{primary.color}"},Oi={background:"{content.border.color}"},Gi={color:"{text.muted.color}",fontSize:"1.125rem",fontWeight:"normal"},xo={root:Xi,value:Mi,range:Oi,text:Gi};var Ai={gap:"0.375rem",fontSize:"{typography.font.size}",fontWeight:"500",textColor:"{text.color}",disabledOpacity:"{disabled.opacity}"},wo={root:Ai};var Ei={background:"{form.field.background}",disabledBackground:"{form.field.disabled.background}",borderColor:"{form.field.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",color:"{form.field.color}",disabledColor:"{form.field.disabled.color}",shadow:"{form.field.shadow}",borderRadius:"{form.field.border.radius}",transitionDuration:"{form.field.transition.duration}"},Vi={padding:"{list.padding}",gap:"{list.gap}",header:{padding:"{list.header.padding}"}},Ni={fontWeight:"{list.option.font.weight}",fontSize:"{list.option.font.size}",focusBackground:"{list.option.focus.background}",selectedBackground:"{list.option.selected.background}",selectedFocusBackground:"{list.option.selected.focus.background}",color:"{list.option.color}",focusColor:"{list.option.focus.color}",selectedColor:"{list.option.selected.color}",selectedFocusColor:"{list.option.selected.focus.color}",selectedFontWeight:"{list.option.selected.font.weight}",padding:"{list.option.padding}",borderRadius:"{list.option.border.radius}",stripedBackground:"light-dark({surface.50}, {surface.900})"},ji={background:"{list.option.group.background}",color:"{list.option.group.color}",padding:"{list.option.group.padding}",fontWeight:"{list.option.group.font.weight}",fontSize:"{list.option.group.font.size}"},$i={color:"{list.option.color}",gutterStart:"-0.25rem",gutterEnd:"0.25rem"},Ki={padding:"{list.option.padding}"},Co={root:Ei,list:Vi,option:Ni,optionGroup:ji,checkmark:$i,emptyMessage:Ki};var Ji={background:"{content.background}",borderColor:"{content.border.color}",borderRadius:"{content.border.radius}",color:"{content.color}",gap:"0.5rem",verticalOrientation:{padding:"{navigation.list.padding}",gap:"{navigation.list.gap}"},horizontalOrientation:{padding:"0.375rem 0.625rem",gap:"0.5rem"},transitionDuration:"{navigation.item.transition.duration}"},Ui={borderRadius:"{content.border.radius}",padding:"{navigation.item.padding}"},qi={focusBackground:"{navigation.item.focus.background}",activeBackground:"{navigation.item.active.background}",color:"{navigation.item.color}",focusColor:"{navigation.item.focus.color}",activeColor:"{navigation.item.active.color}",padding:"{navigation.item.padding}",borderRadius:"{navigation.item.border.radius}",gap:"{navigation.item.gap}",icon:{color:"{navigation.item.icon.color}",focusColor:"{navigation.item.icon.focus.color}",activeColor:"{navigation.item.icon.active.color}",size:"{navigation.item.icon.size}"},label:{fontWeight:"{navigation.item.label.font.weight}",fontSize:"{navigation.item.label.font.size}"}},Qi={padding:"0",background:"{content.background}",borderColor:"{content.border.color}",borderRadius:"{content.border.radius}",color:"{content.color}",shadow:"{overlay.navigation.shadow}",gap:"0.5rem"},Zi={padding:"{navigation.list.padding}",gap:"{navigation.list.gap}"},_i={padding:"{navigation.submenu.label.padding}",fontWeight:"{navigation.submenu.label.font.weight}",fontSize:"{navigation.submenu.label.font.size}",background:"{navigation.submenu.label.background}",color:"{navigation.submenu.label.color}"},od={size:"{navigation.submenu.icon.size}",color:"{navigation.submenu.icon.color}",focusColor:"{navigation.submenu.icon.focus.color}",activeColor:"{navigation.submenu.icon.active.color}"},rd={borderColor:"{content.border.color}"},ed={borderRadius:"50%",size:"1.5rem",color:"{text.muted.color}",hoverColor:"{text.hover.muted.color}",hoverBackground:"{content.hover.background}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Bo={root:Ji,baseItem:Ui,item:qi,overlay:Qi,submenu:Zi,submenuLabel:_i,submenuIcon:od,separator:rd,mobileButton:ed};var ad={background:"{content.background}",borderColor:"{content.border.color}",color:"{content.color}",borderRadius:"{content.border.radius}",shadow:"{overlay.navigation.shadow}",transitionDuration:"{navigation.item.transition.duration}"},td={padding:"{navigation.list.padding}",gap:"{navigation.list.gap}"},id={focusBackground:"{navigation.item.focus.background}",color:"{navigation.item.color}",focusColor:"{navigation.item.focus.color}",padding:"{navigation.item.padding}",borderRadius:"{navigation.item.border.radius}",gap:"{navigation.item.gap}",icon:{color:"{navigation.item.icon.color}",focusColor:"{navigation.item.icon.focus.color}",size:"{navigation.item.icon.size}"},label:{fontWeight:"{navigation.item.label.font.weight}",fontSize:"{navigation.item.label.font.size}"}},dd={padding:"{navigation.submenu.label.padding}",fontWeight:"{navigation.submenu.label.font.weight}",fontSize:"{navigation.submenu.label.font.size}",background:"{navigation.submenu.label.background}",color:"{navigation.submenu.label.color}"},nd={size:"{navigation.submenu.icon.size}",color:"{navigation.submenu.icon.color}",focusColor:"{navigation.submenu.icon.focus.color}"},ld={borderColor:"{content.border.color}"},zo={root:ad,list:td,item:id,submenuLabel:dd,submenuIcon:nd,separator:ld};var cd={background:"{content.background}",borderColor:"{content.border.color}",borderRadius:"{content.border.radius}",color:"{content.color}",gap:"0.5rem",padding:"0.375rem 0.625rem",transitionDuration:"{navigation.item.transition.duration}"},sd={borderRadius:"{content.border.radius}",padding:"{navigation.item.padding}"},fd={focusBackground:"{navigation.item.focus.background}",activeBackground:"{navigation.item.active.background}",color:"{navigation.item.color}",focusColor:"{navigation.item.focus.color}",activeColor:"{navigation.item.active.color}",padding:"{navigation.item.padding}",borderRadius:"{navigation.item.border.radius}",gap:"{navigation.item.gap}",icon:{color:"{navigation.item.icon.color}",focusColor:"{navigation.item.icon.focus.color}",activeColor:"{navigation.item.icon.active.color}",size:"{navigation.item.icon.size}"},label:{fontWeight:"{navigation.item.label.font.weight}",fontSize:"{navigation.item.label.font.size}"}},gd={padding:"{navigation.list.padding}",gap:"{navigation.list.gap}",background:"{content.background}",borderColor:"{content.border.color}",borderRadius:"{content.border.radius}",shadow:"{overlay.navigation.shadow}",mobileIndent:"0.875rem",icon:{size:"{navigation.submenu.icon.size}",color:"{navigation.submenu.icon.color}",focusColor:"{navigation.submenu.icon.focus.color}",activeColor:"{navigation.submenu.icon.active.color}"}},ud={borderColor:"{content.border.color}"},pd={borderRadius:"50%",size:"1.5rem",color:"{text.muted.color}",hoverColor:"{text.hover.muted.color}",hoverBackground:"{content.hover.background}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Ro={root:cd,baseItem:sd,item:fd,submenu:gd,separator:ud,mobileButton:pd};var md={borderRadius:"{content.border.radius}",borderWidth:"1px",transitionDuration:"{transition.duration}"},bd={padding:"0.375rem 0.625rem",gap:"0.5rem",sm:{padding:"0.25rem 0.5rem"},lg:{padding:"0.5rem 0.75rem"}},hd={fontSize:"{typography.font.size}",fontWeight:"500",sm:{fontSize:"0.75rem"},lg:{fontSize:"1rem"}},kd={size:"1rem",sm:{size:"0.875rem"},lg:{size:"1.125rem"}},vd={width:"1.5rem",height:"1.5rem",borderRadius:"50%",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",offset:"{focus.ring.offset}"}},yd={size:"0.875rem",sm:{size:"0.75rem"},lg:{size:"1rem"}},xd={root:{borderWidth:"1px"}},wd={content:{padding:"0"}},Cd={background:"light-dark(color-mix(in srgb, {blue.50}, transparent 5%), color-mix(in srgb, {blue.500}, transparent 84%))",borderColor:"light-dark({blue.200}, color-mix(in srgb, {blue.700}, transparent 64%))",color:"light-dark({blue.600}, {blue.500})",shadow:"0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)",closeButton:{hoverBackground:"light-dark({blue.100}, rgba(255, 255, 255, 0.05))",focusRing:{color:"light-dark({blue.600}, {blue.500})",shadow:"none"}},outlined:{color:"light-dark({blue.600}, {blue.500})",borderColor:"light-dark({blue.600}, {blue.500})"},simple:{color:"light-dark({blue.600}, {blue.500})"}},Bd={background:"light-dark(color-mix(in srgb, {green.50}, transparent 5%), color-mix(in srgb, {green.500}, transparent 84%))",borderColor:"light-dark({green.200}, color-mix(in srgb, {green.700}, transparent 64%))",color:"light-dark({green.600}, {green.500})",shadow:"0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)",closeButton:{hoverBackground:"light-dark({green.100}, rgba(255, 255, 255, 0.05))",focusRing:{color:"light-dark({green.600}, {green.500})",shadow:"none"}},outlined:{color:"light-dark({green.600}, {green.500})",borderColor:"light-dark({green.600}, {green.500})"},simple:{color:"light-dark({green.600}, {green.500})"}},zd={background:"light-dark(color-mix(in srgb, {yellow.50}, transparent 5%), color-mix(in srgb, {yellow.500}, transparent 84%))",borderColor:"light-dark({yellow.200}, color-mix(in srgb, {yellow.700}, transparent 64%))",color:"light-dark({yellow.600}, {yellow.500})",shadow:"0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)",closeButton:{hoverBackground:"light-dark({yellow.100}, rgba(255, 255, 255, 0.05))",focusRing:{color:"light-dark({yellow.600}, {yellow.500})",shadow:"none"}},outlined:{color:"light-dark({yellow.600}, {yellow.500})",borderColor:"light-dark({yellow.600}, {yellow.500})"},simple:{color:"light-dark({yellow.600}, {yellow.500})"}},Rd={background:"light-dark(color-mix(in srgb, {red.50}, transparent 5%), color-mix(in srgb, {red.500}, transparent 84%))",borderColor:"light-dark({red.200}, color-mix(in srgb, {red.700}, transparent 64%))",color:"light-dark({red.600}, {red.500})",shadow:"0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)",closeButton:{hoverBackground:"light-dark({red.100}, rgba(255, 255, 255, 0.05))",focusRing:{color:"light-dark({red.600}, {red.500})",shadow:"none"}},outlined:{color:"light-dark({red.600}, {red.500})",borderColor:"light-dark({red.600}, {red.500})"},simple:{color:"light-dark({red.600}, {red.500})"}},Wd={background:"light-dark({surface.100}, {surface.800})",borderColor:"light-dark({surface.200}, {surface.700})",color:"light-dark({surface.600}, {surface.300})",shadow:"0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)",closeButton:{hoverBackground:"light-dark({surface.200}, {surface.700})",focusRing:{color:"light-dark({surface.600}, {surface.300})",shadow:"none"}},outlined:{color:"light-dark({surface.500}, {surface.400})",borderColor:"light-dark({surface.500}, {surface.400})"},simple:{color:"light-dark({surface.500}, {surface.400})"}},Sd={background:"light-dark({surface.900}, {surface.0})",borderColor:"light-dark({surface.950}, {surface.100})",color:"light-dark({surface.50}, {surface.950})",shadow:"0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)",closeButton:{hoverBackground:"light-dark({surface.800}, {surface.100})",focusRing:{color:"light-dark({surface.50}, {surface.950})",shadow:"none"}},outlined:{color:"light-dark({surface.950}, {surface.0})",borderColor:"light-dark({surface.950}, {surface.0})"},simple:{color:"light-dark({surface.950}, {surface.0})"}},Wo={root:md,content:bd,text:hd,icon:kd,closeButton:vd,closeIcon:yd,outlined:xd,simple:wd,info:Cd,success:Bd,warn:zd,error:Rd,secondary:Wd,contrast:Sd};var Id={borderRadius:"{content.border.radius}",gap:"0.875rem"},Dd={background:"{content.border.color}",size:"0.375rem"},Hd={gap:"0.375rem"},Fd={size:"0.375rem"},Td={fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}"},Pd={size:"0.875rem"},Ld={verticalGap:"0.375rem",horizontalGap:"0.875rem"},So={root:Id,meters:Dd,label:Hd,labelMarker:Fd,labelText:Td,labelIcon:Pd,labelList:Ld};var Yd={fontSize:"{form.field.font.size}",fontWeight:"{form.field.font.weight}",background:"{form.field.background}",disabledBackground:"{form.field.disabled.background}",filledBackground:"{form.field.filled.background}",filledHoverBackground:"{form.field.filled.hover.background}",filledFocusBackground:"{form.field.filled.focus.background}",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.hover.border.color}",focusBorderColor:"{form.field.focus.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",color:"{form.field.color}",disabledColor:"{form.field.disabled.color}",placeholderColor:"{form.field.placeholder.color}",invalidPlaceholderColor:"{form.field.invalid.placeholder.color}",shadow:"{form.field.shadow}",paddingX:"{form.field.padding.x}",paddingY:"{form.field.padding.y}",borderRadius:"{form.field.border.radius}",focusRing:{width:"{form.field.focus.ring.width}",style:"{form.field.focus.ring.style}",color:"{form.field.focus.ring.color}",offset:"{form.field.focus.ring.offset}",shadow:"{form.field.focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}",sm:{fontSize:"{form.field.sm.font.size}",paddingX:"{form.field.sm.padding.x}",paddingY:"{form.field.sm.padding.y}"},lg:{fontSize:"{form.field.lg.font.size}",paddingX:"{form.field.lg.padding.x}",paddingY:"{form.field.lg.padding.y}"}},Xd={width:"2.25rem",color:"{form.field.icon.color}"},Md={background:"{overlay.select.background}",borderColor:"{overlay.select.border.color}",borderRadius:"{overlay.select.border.radius}",color:"{overlay.select.color}",shadow:"{overlay.select.shadow}"},Od={padding:"{list.padding}",gap:"{list.gap}",header:{padding:"0.5rem 0.5rem 0.125rem 0.875rem"}},Gd={fontSize:"{list.option.font.size}",fontWeight:"{list.option.font.weight}",focusBackground:"{list.option.focus.background}",selectedBackground:"transparent",selectedFocusBackground:"transparent",color:"{list.option.color}",focusColor:"{list.option.color}",selectedColor:"{list.option.color}",selectedFocusColor:"{list.option.color}",selectedFontWeight:"{list.option.selected.font.weight}",padding:"{list.option.padding}",borderRadius:"{list.option.border.radius}",gap:"0.5rem"},Ad={background:"{list.option.group.background}",color:"{list.option.group.color}",fontWeight:"{list.option.group.font.weight}",fontSize:"{list.option.group.font.size}",padding:"{list.option.group.padding}"},Ed={color:"{form.field.icon.color}"},Vd={borderRadius:"{border.radius.sm}"},Nd={padding:"{list.option.padding}"},Io={root:Yd,dropdown:Xd,overlay:Md,list:Od,option:Gd,optionGroup:Ad,chip:Vd,clearIcon:Ed,emptyMessage:Nd};var jd={padding:"0.375rem 0.625rem",gap:"0.25rem"},$d={padding:"{navigation.item.padding}",borderRadius:"{content.border.radius}",gap:"{navigation.item.gap}",fontSize:"{navigation.item.label.font.size}",fontWeight:"500",color:"{navigation.item.color}",focusColor:"{navigation.item.focus.color}",focusBackground:"{navigation.item.focus.background}",activeColor:"{navigation.item.active.color}",activeBackground:"{navigation.item.active.background}",transitionDuration:"{navigation.item.transition.duration}"},Do={root:jd,baseItem:$d};var Kd={gap:"1rem"},Jd={gap:"0.5rem"},Ho={root:Kd,controls:Jd};var Ud={gutter:"0.625rem",transitionDuration:"{transition.duration}"},qd={background:"{content.background}",hoverBackground:"{content.hover.background}",selectedBackground:"{highlight.background}",borderColor:"{content.border.color}",color:"{content.color}",selectedColor:"{highlight.color}",hoverColor:"{content.hover.color}",padding:"0.625rem 0.875rem",toggleablePadding:"0.625rem 0.875rem 1.125rem 0.875rem",borderRadius:"{content.border.radius}",fontSize:"{typography.font.size}",fontWeight:"{typography.font.weight}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Qd={background:"{content.background}",hoverBackground:"{content.hover.background}",borderColor:"{content.border.color}",color:"{text.muted.color}",hoverColor:"{text.color}",size:"1.25rem",borderRadius:"50%",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"},icon:{size:"0.75rem"}},Zd={color:"{content.border.color}",borderRadius:"{content.border.radius}",height:"24px"},Fo={root:Ud,node:qd,nodeToggleButton:Qd,connector:Zd};var _d={outline:{width:"2px",color:"{content.background}"}},To={root:_d};var on={padding:"0.375rem 0.875rem",gap:"0.25rem",borderRadius:"{content.border.radius}",background:"{content.background}",color:"{content.color}",transitionDuration:"{transition.duration}"},rn={background:"transparent",hoverBackground:"{content.hover.background}",selectedBackground:"{highlight.background}",color:"{text.muted.color}",hoverColor:"{text.hover.muted.color}",selectedColor:"{highlight.color}",width:"2.25rem",height:"2.25rem",borderRadius:"50%",fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},en={color:"{text.muted.color}",fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}"},an={maxWidth:"2.25rem"},Po={root:on,navButton:rn,currentPageReport:en,jumpToPageInput:an};var tn={background:"{content.background}",borderColor:"{content.border.color}",color:"{content.color}",borderRadius:"{content.border.radius}"},dn={background:"transparent",color:"{text.color}",padding:"1rem",borderColor:"{content.border.color}",borderWidth:"0",borderRadius:"0"},nn={padding:"0.375rem 1rem"},ln={fontWeight:"600",fontSize:"{typography.font.size}"},cn={padding:"0 1rem 1rem 1rem"},sn={padding:"0 1rem 1rem 1rem"},Lo={root:tn,header:dn,toggleableHeader:nn,title:ln,content:cn,footer:sn};var fn={gap:"0.5rem",transitionDuration:"{navigation.item.transition.duration}"},gn={background:"{content.background}",borderColor:"{content.border.color}",borderWidth:"1px",color:"{content.color}",padding:"0.25rem 0.25rem",borderRadius:"{content.border.radius}",first:{borderWidth:"1px",topBorderRadius:"{content.border.radius}"},last:{borderWidth:"1px",bottomBorderRadius:"{content.border.radius}"}},un={focusBackground:"{navigation.item.focus.background}",color:"{navigation.item.color}",focusColor:"{navigation.item.focus.color}",gap:"0.5rem",padding:"{navigation.item.padding}",borderRadius:"{content.border.radius}",icon:{color:"{navigation.item.icon.color}",focusColor:"{navigation.item.icon.focus.color}",size:"{navigation.item.icon.size}"},label:{fontWeight:"{navigation.item.label.font.weight}",fontSize:"{navigation.item.label.font.size}"}},pn={indent:"1rem"},mn={color:"{navigation.submenu.icon.color}",focusColor:"{navigation.submenu.icon.focus.color}"},Yo={root:fn,panel:gn,item:un,submenu:pn,submenuIcon:mn};var bn={background:"{content.border.color}",borderRadius:"{content.border.radius}",height:"0.625rem"},hn={color:"{form.field.icon.color}"},kn={background:"{overlay.popover.background}",borderColor:"{overlay.popover.border.color}",borderRadius:"{overlay.popover.border.radius}",color:"{overlay.popover.color}",padding:"{overlay.popover.padding}",shadow:"{overlay.popover.shadow}"},vn={gap:"0.5rem"},yn={fontSize:"{typography.font.size}",fontWeight:"{typography.font.weight}"},xn={weakBackground:"light-dark({red.500}, {red.400})",mediumBackground:"light-dark({amber.500}, {amber.400})",strongBackground:"light-dark({green.500}, {green.400})"},Xo={meter:bn,icon:hn,overlay:kn,content:vn,meterText:yn,strength:xn};var wn={gap:"1rem"},Cn={gap:"0.5rem"},Mo={root:wn,controls:Cn};var Bn={background:"{overlay.popover.background}",borderColor:"{overlay.popover.border.color}",color:"{overlay.popover.color}",borderRadius:"{overlay.popover.border.radius}",shadow:"{overlay.popover.shadow}",gutter:"10px",arrowOffset:"1.125rem"},zn={padding:"{overlay.popover.padding}"},Oo={root:Bn,content:zn};var Rn={background:"{content.border.color}",borderRadius:"{content.border.radius}",height:"1.125rem"},Wn={background:"{primary.color}"},Sn={color:"{primary.contrast.color}",fontSize:"0.625rem",fontWeight:"600"},Go={root:Rn,value:Wn,label:Sn};var In={colorOne:"light-dark({red.500}, {red.400})",colorTwo:"light-dark({blue.500}, {blue.400})",colorThree:"light-dark({green.500}, {green.400})",colorFour:"light-dark({yellow.500}, {yellow.400})"},Ao={root:In};var Dn={width:"1.125rem",height:"1.125rem",background:"{form.field.background}",checkedBackground:"{primary.color}",checkedHoverBackground:"{primary.hover.color}",disabledBackground:"{form.field.disabled.background}",filledBackground:"{form.field.filled.background}",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.hover.border.color}",focusBorderColor:"{form.field.border.color}",checkedBorderColor:"{primary.color}",checkedHoverBorderColor:"{primary.hover.color}",checkedFocusBorderColor:"{primary.color}",checkedDisabledBorderColor:"{form.field.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",shadow:"{form.field.shadow}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}",sm:{width:"0.875rem",height:"0.875rem"},lg:{width:"1.25rem",height:"1.25rem"}},Hn={size:"0.625rem",checkedColor:"{primary.contrast.color}",checkedHoverColor:"{primary.contrast.color}",disabledColor:"{form.field.disabled.color}",sm:{size:"0.5rem"},lg:{size:"0.75rem"}},Eo={root:Dn,icon:Hn};var Fn={gap:"0.25rem",transitionDuration:"{transition.duration}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Tn={size:"1rem",color:"{text.muted.color}",hoverColor:"{primary.color}",activeColor:"{primary.color}"},Vo={root:Fn,icon:Tn};var Pn={background:"light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.3))"},No={root:Pn};var Ln={background:"{content.background}",borderColor:"{content.border.color}",borderRadius:"{content.border.radius}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Yn={padding:"1rem"},Xn={background:"transparent",margin:"0.25rem",size:"0.25rem",transitionDuration:"{transition.duration}"},Mn={background:"{content.border.color}"},On={fadeSize:"40px"},jo={root:Ln,viewport:Yn,scrollbar:Xn,handle:Mn,mask:On};var Gn={transitionDuration:"{transition.duration}"},An={size:"9px",borderRadius:"{border.radius.sm}",background:"light-dark({surface.100}, {surface.800})",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},$o={root:Gn,bar:An};var En={fontSize:"{form.field.font.size}",fontWeight:"{form.field.font.weight}",background:"{form.field.background}",disabledBackground:"{form.field.disabled.background}",filledBackground:"{form.field.filled.background}",filledHoverBackground:"{form.field.filled.hover.background}",filledFocusBackground:"{form.field.filled.focus.background}",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.hover.border.color}",focusBorderColor:"{form.field.focus.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",color:"{form.field.color}",disabledColor:"{form.field.disabled.color}",placeholderColor:"{form.field.placeholder.color}",invalidPlaceholderColor:"{form.field.invalid.placeholder.color}",shadow:"{form.field.shadow}",paddingX:"{form.field.padding.x}",paddingY:"{form.field.padding.y}",borderRadius:"{form.field.border.radius}",focusRing:{width:"{form.field.focus.ring.width}",style:"{form.field.focus.ring.style}",color:"{form.field.focus.ring.color}",offset:"{form.field.focus.ring.offset}",shadow:"{form.field.focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}",sm:{fontSize:"{form.field.sm.font.size}",paddingX:"{form.field.sm.padding.x}",paddingY:"{form.field.sm.padding.y}"},lg:{fontSize:"{form.field.lg.font.size}",paddingX:"{form.field.lg.padding.x}",paddingY:"{form.field.lg.padding.y}"}},Vn={width:"2.25rem",color:"{form.field.icon.color}"},Nn={background:"{overlay.select.background}",borderColor:"{overlay.select.border.color}",borderRadius:"{overlay.select.border.radius}",color:"{overlay.select.color}",shadow:"{overlay.select.shadow}"},jn={padding:"{list.padding}",gap:"{list.gap}",header:{padding:"{list.header.padding}"}},$n={fontSize:"{list.option.font.size}",fontWeight:"{list.option.font.weight}",focusBackground:"{list.option.focus.background}",selectedBackground:"{list.option.selected.background}",selectedFocusBackground:"{list.option.selected.focus.background}",color:"{list.option.color}",focusColor:"{list.option.focus.color}",selectedColor:"{list.option.selected.color}",selectedFocusColor:"{list.option.selected.focus.color}",selectedFontWeight:"{list.option.selected.font.weight}",padding:"{list.option.padding}",borderRadius:"{list.option.border.radius}"},Kn={background:"{list.option.group.background}",color:"{list.option.group.color}",fontWeight:"{list.option.group.font.weight}",fontSize:"{list.option.group.font.size}",padding:"{list.option.group.padding}"},Jn={color:"{form.field.icon.color}"},Un={color:"{list.option.color}",gutterStart:"-0.25rem",gutterEnd:"0.25rem"},qn={padding:"{list.option.padding}"},Ko={root:En,dropdown:Vn,overlay:Nn,list:jn,option:$n,optionGroup:Kn,clearIcon:Jn,checkmark:Un,emptyMessage:qn};var Qn={borderRadius:"{form.field.border.radius}",invalidBorderColor:"{form.field.invalid.border.color}"},Jo={root:Qn};var Zn={borderColor:"{content.border.color}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},_n={background:"light-dark({surface.50}, {surface.900})"},ol={padding:"0.5rem",gap:"0.5rem"},rl={padding:"0.5rem",gap:"0.5rem"},el={background:"{content.background}",color:"{content.color}",floatingBorderRadius:"{content.border.radius}",floatingShadow:"0 1px 2px 0 rgb(0 0 0 / 0.05)"},al={gap:"0.125rem"},tl={padding:"0.5rem"},il={padding:"0.5rem"},dl={padding:"0 0.5rem",height:"2rem",borderRadius:"{content.border.radius}",fontSize:"0.75rem",fontWeight:"500",color:"{text.muted.color}"},nl={top:"0.875rem",right:"0.75rem",size:"1.25rem",borderRadius:"{content.border.radius}",color:"{navigation.item.icon.color}",focusColor:"{navigation.item.icon.focus.color}",focusBackground:"{navigation.item.focus.background}",icon:{size:"{navigation.item.icon.size}"}},ll={gap:"{navigation.list.gap}"},cl={padding:"0.25rem 0.625rem",gap:"{navigation.item.gap}",height:"2rem",borderRadius:"{navigation.item.border.radius}",fontSize:"{navigation.item.label.font.size}",fontWeight:"{navigation.item.label.font.weight}",color:"{navigation.item.color}",focusBackground:"{navigation.item.focus.background}",focusColor:"{navigation.item.focus.color}",activeBackground:"{navigation.item.active.background}",activeColor:"{navigation.item.active.color}",iconOnlyWidth:"2rem",withActionPaddingEnd:"2rem",icon:{color:"{navigation.item.icon.color}",focusColor:"{navigation.item.icon.focus.color}",size:"{navigation.item.icon.size}"}},sl={top:"0.375rem",right:"0.25rem",width:"1.25rem",borderRadius:"{content.border.radius}",color:"{navigation.item.icon.color}",focusColor:"{navigation.item.icon.focus.color}",focusBackground:"{navigation.item.focus.background}",icon:{size:"{navigation.item.icon.size}"}},fl={top:"0.375rem",right:"0.25rem",height:"1.25rem",minWidth:"1.25rem",borderRadius:"0.375rem",padding:"0 0.25rem",fontSize:"0.75rem",fontWeight:"500",background:"{content.hover.background}",borderColor:"{content.border.color}",color:"{text.muted.color}"},gl={paddingBlock:"0.125rem",gap:"0.125rem",indentMargin:"0.875rem",indentPadding:"0.625rem",collapsibleIndent:"1.5rem",collapsibleTopMargin:"0.125rem",collapsibleBorderRadius:"0.375rem"},ul={padding:"{navigation.item.padding}",gap:"{navigation.item.gap}",height:"2rem",borderRadius:"{navigation.item.border.radius}",fontSize:"{navigation.item.label.font.size}",fontWeight:"{navigation.item.label.font.weight}",color:"{navigation.item.color}",focusBackground:"{navigation.item.focus.background}",focusColor:"{navigation.item.focus.color}",activeBackground:"{navigation.item.active.background}",activeColor:"{navigation.item.active.color}",icon:{color:"{navigation.item.icon.color}",focusColor:"{navigation.item.icon.focus.color}",size:"{navigation.item.icon.size}"}},pl={background:"light-dark({surface.50}, {surface.900})",floatingBackground:"light-dark({surface.50}, {surface.900})",insetBackground:"light-dark({surface.0}, {surface.950})",margin:"0.5rem",borderRadius:"{content.border.radius}",shadow:"0 1px 2px 0 rgb(0 0 0 / 0.05)"},Uo={root:Zn,layout:_n,header:ol,footer:rl,content:al,aside:tl,panel:el,group:il,groupLabel:dl,groupAction:nl,menu:ll,menuButton:cl,menuAction:sl,menuBadge:fl,menuSub:gl,menuSubButton:ul,main:pl};var ml={borderRadius:"{content.border.radius}",background:"light-dark({surface.200}, rgba(255, 255, 255, 0.06))",animationBackground:"light-dark(rgba(255,255,255,0.4), rgba(255, 255, 255, 0.04))"},qo={root:ml};var bl={transitionDuration:"{transition.duration}"},hl={background:"{content.border.color}",borderRadius:"{content.border.radius}",size:"3px"},kl={background:"{primary.color}"},vl={width:"20px",height:"20px",borderRadius:"50%",background:"{content.border.color}",hoverBackground:"{content.border.color}",content:{borderRadius:"50%",background:"light-dark({surface.0}, {surface.950})",hoverBackground:"{content.background}",width:"16px",height:"16px",shadow:"0px 0.5px 0px 0px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.14)"},focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Qo={root:bl,track:hl,range:kl,handle:vl};var yl={gap:"0.5rem",transitionDuration:"{transition.duration}"},Zo={root:yl};var xl={borderRadius:"{form.field.border.radius}",roundedBorderRadius:"2rem",raisedShadow:"0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12)"},_o={root:xl};var wl={background:"{content.background}",borderColor:"{content.border.color}",color:"{content.color}",transitionDuration:"{transition.duration}"},Cl={background:"{content.border.color}"},Bl={size:"24px",background:"transparent",borderRadius:"{content.border.radius}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},or={root:wl,gutter:Cl,handle:Bl};var zl={transitionDuration:"{transition.duration}"},Rl={background:"{content.border.color}",activeBackground:"{primary.color}",margin:"0 0 0 1.375rem",size:"2px"},Wl={padding:"0.375rem",gap:"0.875rem"},Sl={padding:"0",borderRadius:"{content.border.radius}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"},gap:"0.5rem"},Il={color:"{text.muted.color}",activeColor:"{primary.color}",fontWeight:"500",fontSize:"{typography.font.size}"},Dl={background:"{content.background}",activeBackground:"{content.background}",borderColor:"{content.border.color}",activeBorderColor:"{content.border.color}",color:"{text.muted.color}",activeColor:"{primary.color}",size:"2rem",fontSize:"1rem",fontWeight:"500",borderRadius:"50%",shadow:"0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12)"},Hl={padding:"0.75rem 0.375rem 1rem 0.375rem"},Fl={background:"{content.background}",color:"{content.color}",padding:"0",indent:"0.875rem"},rr={root:zl,separator:Rl,step:Wl,stepHeader:Sl,stepTitle:Il,stepNumber:Dl,steppanels:Hl,steppanel:Fl};var Tl={transitionDuration:"{transition.duration}"},Pl={background:"{content.border.color}"},Ll={borderRadius:"{content.border.radius}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"},gap:"0.5rem"},Yl={color:"{text.muted.color}",activeColor:"{primary.color}",fontWeight:"500"},Xl={background:"{content.background}",activeBackground:"{content.background}",borderColor:"{content.border.color}",activeBorderColor:"{content.border.color}",color:"{text.muted.color}",activeColor:"{primary.color}",size:"2rem",fontSize:"1.143rem",fontWeight:"500",borderRadius:"50%",shadow:"0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12)"},er={root:Tl,separator:Pl,itemLink:Ll,itemLabel:Yl,itemNumber:Xl};var Ml={transitionDuration:"{transition.duration}"},Ol={borderWidth:"0 0 1px 0",background:"{content.background}",borderColor:"{content.border.color}"},Gl={background:"transparent",hoverBackground:"transparent",activeBackground:"transparent",borderWidth:"0 0 1px 0",borderColor:"{content.border.color}",hoverBorderColor:"{content.border.color}",activeBorderColor:"{primary.color}",color:"{text.muted.color}",hoverColor:"{text.color}",activeColor:"{primary.color}",padding:"1rem 1.125rem",fontWeight:"600",margin:"0 0 -1px 0",gap:"0.5rem",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Al={color:"{text.muted.color}",hoverColor:"{text.color}",activeColor:"{primary.color}"},El={height:"1px",bottom:"-1px",background:"{primary.color}"},ar={root:Ml,tablist:Ol,item:Gl,itemIcon:Al,activeBar:El};var Vl={transitionDuration:"{transition.duration}"},Nl={borderWidth:"0 0 1px 0",background:"{content.background}",borderColor:"{content.border.color}"},jl={background:"transparent",hoverBackground:"transparent",activeBackground:"transparent",borderWidth:"0",borderColor:"transparent",hoverBorderColor:"transparent",activeBorderColor:"transparent",color:"{text.muted.color}",hoverColor:"{text.color}",activeColor:"{primary.color}",padding:"0.875rem 1rem",fontWeight:"600",fontSize:"{typography.font.size}",margin:"0",gap:"0.5rem",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"-1px",shadow:"{focus.ring.shadow}"}},$l={background:"{content.background}",color:"{content.color}",padding:"0.75rem 1rem 1rem 1rem",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"inset {focus.ring.shadow}"}},Kl={background:"{content.background}",color:"{text.muted.color}",hoverColor:"{text.color}",width:"2.25rem",shadow:"0px 0px 10px 50px light-dark(rgba(255, 255, 255, 0.6), color-mix(in srgb, {content.background}, transparent 50%))",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"-1px",shadow:"{focus.ring.shadow}"}},Jl={height:"1px",bottom:"0",background:"{primary.color}"},tr={root:Vl,tablist:Nl,tab:jl,tabpanel:$l,navButton:Kl,activeBar:Jl};var Ul={transitionDuration:"{transition.duration}"},ql={background:"{content.background}",borderColor:"{content.border.color}"},Ql={borderColor:"{content.border.color}",activeBorderColor:"{primary.color}",color:"{text.muted.color}",hoverColor:"{text.color}",activeColor:"{primary.color}"},Zl={background:"{content.background}",color:"{content.color}"},_l={background:"{content.background}",color:"{text.muted.color}",hoverColor:"{text.color}",shadow:"0px 0px 10px 50px light-dark(rgba(255, 255, 255, 0.6), color-mix(in srgb, {content.background}, transparent 50%))"},ir={root:Ul,tabList:ql,tab:Ql,tabPanel:Zl,navButton:_l};var oc={fontSize:"0.75rem",fontWeight:"700",padding:"0.125rem 0.375rem",gap:"0.25rem",borderRadius:"{content.border.radius}",roundedBorderRadius:"{border.radius.xl}"},rc={size:"0.625rem"},ec={background:"light-dark({primary.100}, color-mix(in srgb, {primary.500}, transparent 84%))",color:"light-dark({primary.700}, {primary.300})"},ac={background:"light-dark({surface.100}, {surface.800})",color:"light-dark({surface.600}, {surface.300})"},tc={background:"light-dark({green.100}, color-mix(in srgb, {green.500}, transparent 84%))",color:"light-dark({green.700}, {green.300})"},ic={background:"light-dark({sky.100}, color-mix(in srgb, {sky.500}, transparent 84%))",color:"light-dark({sky.700}, {sky.300})"},dc={background:"light-dark({orange.100}, color-mix(in srgb, {orange.500}, transparent 84%))",color:"light-dark({orange.700}, {orange.300})"},nc={background:"light-dark({red.100}, color-mix(in srgb, {red.500}, transparent 84%))",color:"light-dark({red.700}, {red.300})"},lc={background:"light-dark({surface.950}, {surface.0})",color:"light-dark({surface.0}, {surface.950})"},dr={root:oc,icon:rc,primary:ec,secondary:ac,success:tc,info:ic,warn:dc,danger:nc,contrast:lc};var cc={background:"{form.field.background}",borderColor:"{form.field.border.color}",color:"{form.field.color}",height:"16rem",padding:"{form.field.padding.y} {form.field.padding.x}",borderRadius:"{form.field.border.radius}",fontWeight:"{typography.font.weight}",fontSize:"{typography.font.size}"},sc={gap:"0.25rem"},fc={margin:"2px 0"},nr={root:cc,prompt:sc,commandResponse:fc};var gc={fontSize:"{form.field.font.size}",fontWeight:"{form.field.font.weight}",background:"{form.field.background}",disabledBackground:"{form.field.disabled.background}",filledBackground:"{form.field.filled.background}",filledHoverBackground:"{form.field.filled.hover.background}",filledFocusBackground:"{form.field.filled.focus.background}",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.hover.border.color}",focusBorderColor:"{form.field.focus.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",color:"{form.field.color}",disabledColor:"{form.field.disabled.color}",placeholderColor:"{form.field.placeholder.color}",invalidPlaceholderColor:"{form.field.invalid.placeholder.color}",shadow:"{form.field.shadow}",paddingX:"{form.field.padding.x}",paddingY:"{form.field.padding.y}",borderRadius:"{form.field.border.radius}",focusRing:{width:"{form.field.focus.ring.width}",style:"{form.field.focus.ring.style}",color:"{form.field.focus.ring.color}",offset:"{form.field.focus.ring.offset}",shadow:"{form.field.focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}",sm:{fontSize:"{form.field.sm.font.size}",paddingX:"{form.field.sm.padding.x}",paddingY:"{form.field.sm.padding.y}"},lg:{fontSize:"{form.field.lg.font.size}",paddingX:"{form.field.lg.padding.x}",paddingY:"{form.field.lg.padding.y}"}},lr={root:gc};var uc={background:"{content.background}",borderColor:"{content.border.color}",color:"{content.color}",borderRadius:"{content.border.radius}",shadow:"{overlay.navigation.shadow}",transitionDuration:"{navigation.item.transition.duration}"},pc={padding:"{navigation.list.padding}",gap:"{navigation.list.gap}"},mc={focusBackground:"{navigation.item.focus.background}",activeBackground:"{navigation.item.active.background}",color:"{navigation.item.color}",focusColor:"{navigation.item.focus.color}",activeColor:"{navigation.item.active.color}",padding:"{navigation.item.padding}",borderRadius:"{navigation.item.border.radius}",gap:"{navigation.item.gap}",icon:{color:"{navigation.item.icon.color}",focusColor:"{navigation.item.icon.focus.color}",activeColor:"{navigation.item.icon.active.color}",size:"{navigation.item.icon.size}"},label:{fontWeight:"{navigation.item.label.font.weight}",fontSize:"{navigation.item.label.font.size}"}},bc={mobileIndent:"0.875rem"},hc={size:"{navigation.submenu.icon.size}",color:"{navigation.submenu.icon.color}",focusColor:"{navigation.submenu.icon.focus.color}",activeColor:"{navigation.submenu.icon.active.color}"},kc={borderColor:"{content.border.color}"},cr={root:uc,list:pc,item:mc,submenu:bc,submenuIcon:hc,separator:kc};var vc={minHeight:"4.5rem"},yc={eventContent:{padding:"0.875rem 0"}},xc={eventContent:{padding:"0 0.875rem"}},wc={size:"1rem",borderRadius:"50%",borderWidth:"2px",background:"{content.background}",borderColor:"{content.border.color}",content:{borderRadius:"50%",size:"0.375rem",background:"{primary.color}",insetShadow:"0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12)"}},Cc={color:"{content.border.color}",size:"2px"},sr={event:vc,horizontal:yc,vertical:xc,eventMarker:wc,eventConnector:Cc};var Bc={width:"22rem",borderRadius:"{content.border.radius}",borderWidth:"1px",transitionDuration:"0.3s",blur:"10px",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},zc={size:"1rem",margin:"1px 0 0 0"},Rc={padding:"{overlay.popover.padding}",gap:"0.5rem"},Wc={gap:"0.25rem"},Sc={fontWeight:"500",fontSize:"{typography.font.size}"},Ic={fontWeight:"500",fontSize:"0.75rem"},Dc={width:"1.5rem",height:"1.5rem",borderRadius:"50%",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",offset:"{focus.ring.offset}"}},Hc={size:"0.875rem"},Fc={background:"{content.background}",borderColor:"{content.border.color}",color:"{text.color}",detailColor:"{text.muted.color}",shadow:"{overlay.popover.shadow}",closeButton:{hoverBackground:"{content.hover.background}",focusRing:{color:"{focus.ring.color}",shadow:"none"}}},Tc={background:"light-dark(color-mix(in srgb, {blue.50}, transparent 5%), color-mix(in srgb, {blue.500}, transparent 84%))",borderColor:"light-dark({blue.200}, color-mix(in srgb, {blue.700}, transparent 64%))",color:"light-dark({blue.600}, {blue.500})",detailColor:"light-dark({surface.700}, {surface.0})",shadow:"0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)",closeButton:{hoverBackground:"light-dark({blue.100}, rgba(255, 255, 255, 0.05))",focusRing:{color:"light-dark({blue.600}, {blue.500})",shadow:"none"}}},Pc={background:"light-dark(color-mix(in srgb, {green.50}, transparent 5%), color-mix(in srgb, {green.500}, transparent 84%))",borderColor:"light-dark({green.200}, color-mix(in srgb, {green.700}, transparent 64%))",color:"light-dark({green.600}, {green.500})",detailColor:"light-dark({surface.700}, {surface.0})",shadow:"0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)",closeButton:{hoverBackground:"light-dark({green.100}, rgba(255, 255, 255, 0.05))",focusRing:{color:"light-dark({green.600}, {green.500})",shadow:"none"}}},Lc={background:"light-dark(color-mix(in srgb, {yellow.50}, transparent 5%), color-mix(in srgb, {yellow.500}, transparent 84%))",borderColor:"light-dark({yellow.200}, color-mix(in srgb, {yellow.700}, transparent 64%))",color:"light-dark({yellow.600}, {yellow.500})",detailColor:"light-dark({surface.700}, {surface.0})",shadow:"0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)",closeButton:{hoverBackground:"light-dark({yellow.100}, rgba(255, 255, 255, 0.05))",focusRing:{color:"light-dark({yellow.600}, {yellow.500})",shadow:"none"}}},Yc={background:"light-dark(color-mix(in srgb, {red.50}, transparent 5%), color-mix(in srgb, {red.500}, transparent 84%))",borderColor:"light-dark({red.200}, color-mix(in srgb, {red.700}, transparent 64%))",color:"light-dark({red.600}, {red.500})",detailColor:"light-dark({surface.700}, {surface.0})",shadow:"0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)",closeButton:{hoverBackground:"light-dark({red.100}, rgba(255, 255, 255, 0.05))",focusRing:{color:"light-dark({red.600}, {red.500})",shadow:"none"}}},Xc={background:"light-dark({surface.100}, {surface.800})",borderColor:"light-dark({surface.200}, {surface.700})",color:"light-dark({surface.600}, {surface.300})",detailColor:"light-dark({surface.700}, {surface.0})",shadow:"0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)",closeButton:{hoverBackground:"light-dark({surface.200}, {surface.700})",focusRing:{color:"light-dark({surface.600}, {surface.300})",shadow:"none"}}},Mc={background:"light-dark({surface.900}, {surface.0})",borderColor:"light-dark({surface.950}, {surface.100})",color:"light-dark({surface.50}, {surface.950})",detailColor:"light-dark({surface.0}, {surface.950})",shadow:"0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)",closeButton:{hoverBackground:"light-dark({surface.800}, {surface.100})",focusRing:{color:"light-dark({surface.50}, {surface.950})",shadow:"none"}}},fr={root:Bc,icon:zc,content:Rc,text:Wc,summary:Sc,detail:Ic,closeButton:Dc,closeIcon:Hc,normal:Fc,info:Tc,success:Pc,warn:Lc,error:Yc,secondary:Xc,contrast:Mc};var Oc={padding:"0.25rem",borderRadius:"{content.border.radius}",gap:"0.5rem",fontWeight:"500",fontSize:"{form.field.font.size}",background:"light-dark({surface.100}, {surface.950})",checkedBackground:"light-dark({surface.100}, {surface.950})",hoverBackground:"light-dark({surface.100}, {surface.950})",borderColor:"light-dark({surface.100}, {surface.950})",color:"light-dark({surface.500}, {surface.400})",hoverColor:"light-dark({surface.700}, {surface.300})",checkedColor:"light-dark({surface.900}, {surface.0})",checkedBorderColor:"light-dark({surface.100}, {surface.950})",disabledBackground:"{form.field.disabled.background}",disabledBorderColor:"{form.field.disabled.background}",disabledColor:"{form.field.disabled.color}",invalidBorderColor:"{form.field.invalid.border.color}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}",sm:{fontSize:"{form.field.sm.font.size}",padding:"0.25rem"},lg:{fontSize:"{form.field.lg.font.size}",padding:"0.25rem"}},Gc={color:"light-dark({surface.500}, {surface.400})",hoverColor:"light-dark({surface.700}, {surface.300})",checkedColor:"light-dark({surface.900}, {surface.0})",disabledColor:"{form.field.disabled.color}"},Ac={padding:"0.125rem 0.625rem",borderRadius:"{content.border.radius}",checkedBackground:"light-dark({surface.0}, {surface.800})",checkedShadow:"0px 1px 2px 0px rgba(0, 0, 0, 0.02), 0px 1px 2px 0px rgba(0, 0, 0, 0.04)",sm:{padding:"0.125rem 0.625rem"},lg:{padding:"0.125rem 0.625rem"}},gr={root:Oc,icon:Gc,content:Ac};var Ec={width:"2.25rem",height:"1.375rem",borderRadius:"30px",gap:"0.25rem",shadow:"{form.field.shadow}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"},borderWidth:"1px",borderColor:"transparent",hoverBorderColor:"transparent",checkedBorderColor:"transparent",checkedHoverBorderColor:"transparent",invalidBorderColor:"{form.field.invalid.border.color}",transitionDuration:"{form.field.transition.duration}",slideDuration:"0.2s",background:"light-dark({surface.300}, {surface.700})",disabledBackground:"light-dark({form.field.disabled.background}, {surface.600})",hoverBackground:"light-dark({surface.400}, {surface.600})",checkedBackground:"{primary.color}",checkedHoverBackground:"{primary.hover.color}"},Vc={borderRadius:"50%",size:"0.875rem",background:"light-dark({surface.0}, {surface.400})",disabledBackground:"light-dark({form.field.disabled.color}, {surface.900})",hoverBackground:"light-dark({surface.0}, {surface.300})",checkedBackground:"light-dark({surface.0}, {surface.900})",checkedHoverBackground:"light-dark({surface.0}, {surface.900})",color:"light-dark({text.muted.color}, {surface.900})",hoverColor:"light-dark({text.color}, {surface.800})",checkedColor:"{primary.color}",checkedHoverColor:"{primary.hover.color}"},ur={root:Ec,handle:Vc};var Nc={background:"{content.background}",borderColor:"{content.border.color}",borderRadius:"{content.border.radius}",color:"{content.color}",gap:"0.5rem",padding:"0.625rem"},pr={root:Nc};var jc={maxWidth:"12.5rem",gutter:"0.25rem",shadow:"{overlay.popover.shadow}",padding:"0.375rem 0.625rem",borderRadius:"{overlay.popover.border.radius}",fontWeight:"{typography.font.weight}",fontSize:"0.75rem",background:"{surface.700}",color:"{surface.0}"},mr={root:jc};var $c={background:"{content.background}",color:"{content.color}",padding:"0.875rem",gap:"2px",indent:"0.875rem",transitionDuration:"0s"},Kc={padding:"0.25rem 0.5rem",borderRadius:"{content.border.radius}",hoverBackground:"{content.hover.background}",selectedBackground:"{highlight.background}",color:"{text.color}",hoverColor:"{text.hover.color}",selectedColor:"{highlight.color}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"-1px",shadow:"{focus.ring.shadow}"},gap:"0.375rem"},Jc={color:"{text.muted.color}",hoverColor:"{text.hover.muted.color}",selectedColor:"{highlight.color}"},Uc={fontWeight:"{typography.font.weight}",selectedFontWeight:"{list.option.selected.font.weight}",fontSize:"{typography.font.size}"},qc={borderRadius:"50%",size:"1.5rem",hoverBackground:"{content.hover.background}",selectedHoverBackground:"{content.background}",color:"{text.muted.color}",hoverColor:"{text.hover.muted.color}",selectedHoverColor:"{primary.color}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},Qc={size:"1.75rem"},Zc={margin:"0 0 0.5rem 0"},_c=` + .p-tree-mask.p-overlay-mask { + --px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3)); + } +`,br={root:$c,node:Kc,nodeIcon:Jc,nodeLabel:Uc,nodeToggleButton:qc,loadingIcon:Qc,filter:Zc,css:_c};var os={fontSize:"{form.field.font.size}",fontWeight:"{form.field.font.weight}",background:"{form.field.background}",disabledBackground:"{form.field.disabled.background}",filledBackground:"{form.field.filled.background}",filledHoverBackground:"{form.field.filled.hover.background}",filledFocusBackground:"{form.field.filled.focus.background}",borderColor:"{form.field.border.color}",hoverBorderColor:"{form.field.hover.border.color}",focusBorderColor:"{form.field.focus.border.color}",invalidBorderColor:"{form.field.invalid.border.color}",color:"{form.field.color}",disabledColor:"{form.field.disabled.color}",placeholderColor:"{form.field.placeholder.color}",invalidPlaceholderColor:"{form.field.invalid.placeholder.color}",shadow:"{form.field.shadow}",paddingX:"{form.field.padding.x}",paddingY:"{form.field.padding.y}",borderRadius:"{form.field.border.radius}",focusRing:{width:"{form.field.focus.ring.width}",style:"{form.field.focus.ring.style}",color:"{form.field.focus.ring.color}",offset:"{form.field.focus.ring.offset}",shadow:"{form.field.focus.ring.shadow}"},transitionDuration:"{form.field.transition.duration}",sm:{fontSize:"{form.field.sm.font.size}",paddingX:"{form.field.sm.padding.x}",paddingY:"{form.field.sm.padding.y}"},lg:{fontSize:"{form.field.lg.font.size}",paddingX:"{form.field.lg.padding.x}",paddingY:"{form.field.lg.padding.y}"}},rs={width:"2.25rem",color:"{form.field.icon.color}"},es={background:"{overlay.select.background}",borderColor:"{overlay.select.border.color}",borderRadius:"{overlay.select.border.radius}",color:"{overlay.select.color}",shadow:"{overlay.select.shadow}"},as={padding:"{list.padding}"},ts={padding:"{list.option.padding}"},is={borderRadius:"{border.radius.sm}"},ds={color:"{form.field.icon.color}"},hr={root:os,dropdown:rs,overlay:es,tree:as,emptyMessage:ts,chip:is,clearIcon:ds};var ns={transitionDuration:"0s",borderColor:"light-dark({content.border.color}, {surface.800})"},ls={background:"{content.background}",borderColor:"{treetable.border.color}",color:"{content.color}",borderWidth:"0 0 1px 0",padding:"0.5rem 0.875rem"},cs={background:"{content.background}",hoverBackground:"{content.hover.background}",selectedBackground:"{highlight.background}",borderColor:"{treetable.border.color}",color:"{content.color}",hoverColor:"{content.hover.color}",selectedColor:"{highlight.color}",gap:"0.5rem",padding:"0.5rem 0.875rem",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"-1px",shadow:"{focus.ring.shadow}"}},ss={fontWeight:"600",fontSize:"{typography.font.size}"},fs={background:"{content.background}",hoverBackground:"{content.hover.background}",selectedBackground:"{highlight.background}",color:"{content.color}",hoverColor:"{content.hover.color}",selectedColor:"{highlight.color}",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"-1px",shadow:"{focus.ring.shadow}"}},gs={borderColor:"{treetable.border.color}",padding:"0.5rem 0.875rem",gap:"0.5rem",fontWeight:"{typography.font.size}",fontSize:"{typography.font.size}",selectedBorderColor:"light-dark({primary.100}, {primary.900})"},us={background:"{content.background}",borderColor:"{treetable.border.color}",color:"{content.color}",padding:"0.5rem 0.875rem"},ps={fontWeight:"600",fontSize:"{typography.font.size}"},ms={background:"{content.background}",borderColor:"{treetable.border.color}",color:"{content.color}",borderWidth:"0 0 1px 0",padding:"0.5rem 0.875rem"},bs={width:"0.5rem"},hs={width:"1px",color:"{primary.color}"},ks={color:"{text.muted.color}",hoverColor:"{text.hover.muted.color}",size:"0.75rem"},vs={size:"1.75rem"},ys={hoverBackground:"{content.hover.background}",selectedHoverBackground:"{content.background}",color:"{text.muted.color}",hoverColor:"{text.color}",selectedHoverColor:"{primary.color}",size:"1.5rem",borderRadius:"50%",focusRing:{width:"{focus.ring.width}",style:"{focus.ring.style}",color:"{focus.ring.color}",offset:"{focus.ring.offset}",shadow:"{focus.ring.shadow}"}},xs={borderColor:"{content.border.color}",borderWidth:"0 0 1px 0"},ws={borderColor:"{content.border.color}",borderWidth:"0 0 1px 0"},Cs=` + .p-treetable-mask.p-overlay-mask { + --px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3)); + } +`,kr={root:ns,header:ls,headerCell:cs,columnTitle:ss,row:fs,bodyCell:gs,footerCell:us,columnFooter:ps,footer:ms,columnResizer:bs,resizeIndicator:hs,sortIcon:ks,loadingIcon:vs,nodeToggleButton:ys,paginatorTop:xs,paginatorBottom:ws,css:Cs};var Bs={mask:{background:"{content.background}",color:"{text.muted.color}"},icon:{size:"1.75rem"}},vr={loader:Bs};var zs=Object.defineProperty,Rs=Object.defineProperties,Ws=Object.getOwnPropertyDescriptors,yr=Object.getOwnPropertySymbols,Ss=Object.prototype.hasOwnProperty,Is=Object.prototype.propertyIsEnumerable,xr=(o,e,r)=>e in o?zs(o,e,{enumerable:true,configurable:true,writable:true,value:r}):o[e]=r,wr,Cr=(wr=((o,e)=>{for(var r in e||(e={}))Ss.call(e,r)&&xr(o,r,e[r]);if(yr)for(var r of yr(e))Is.call(e,r)&&xr(o,r,e[r]);return o})({},F),Rs(wr,Ws({components:{accordion:S,autocomplete:I,avatar:D,badge:H,blockui:T,breadcrumb:P,button:L,card:Y,carousel:X,cascadeselect:M,checkbox:O,chip:G,colorpicker:A,commandmenu:E,compare:V,confirmdialog:N,confirmpopup:j,contextmenu:$,datatable:J,dataview:U,datepicker:q,dialog:Q,divider:Z,dock:_,drawer:oo,editor:ro,fieldset:eo,fileupload:ao,floatlabel:to,galleria:io,gallery:no,iconfield:lo,iftalabel:co,image:so,imagecompare:fo,inlinemessage:go,inplace:uo,inputchips:po,inputcolor:mo,inputgroup:bo,inputnumber:ho,inputotp:ko,inputtags:vo,inputtext:yo,knob:xo,label:wo,listbox:Co,megamenu:Bo,menu:zo,menubar:Ro,message:Wo,metergroup:So,multiselect:Io,navigationmenu:Do,orderlist:Ho,organizationchart:Fo,overlaybadge:To,paginator:Po,panel:Lo,panelmenu:Yo,password:Xo,picklist:Mo,popover:Oo,progressbar:Go,progressspinner:Ao,radiobutton:Eo,rating:Vo,ripple:No,scrollarea:jo,scrollpanel:$o,select:Ko,selectbutton:Jo,sidebar:Uo,skeleton:qo,slider:Qo,speeddial:Zo,splitbutton:_o,splitter:or,stepper:rr,steps:er,tabmenu:ar,tabs:tr,tabview:ir,tag:dr,terminal:nr,textarea:lr,tieredmenu:cr,timeline:sr,toast:fr,togglebutton:gr,toggleswitch:ur,toolbar:pr,tooltip:mr,tree:br,treeselect:hr,treetable:kr,virtualscroller:vr},css:K})));var Br={providers:[GS(),uR(lR([W])),Wx(R),Vq({theme:{preset:Cr,options:{darkModeSelector:".iDark"}},license:a.primeuiKey}),dA,c,X4,tq]};var Ds={version:"1.0.3",timestamp:"Tue Jun 30 2026 22:16:11 GMT+0200 (Central European Summer Time)",message:null},d=Ds;var n=class o{datePipe=g(dA);enviromentVersion="production \u{1F3ED}";angularVersion=om.full;webVersion=d.version;webBuildTime=this.datePipe.transform(d.timestamp,"EEE dd.MM.yyyy HH:mm:ss");webMessage=d.message;constructor(){this.showBuildInfo();}showBuildInfo(){console.log(` +%cBuild Info: + +%c \u276F Environment: %c${this.enviromentVersion} +%c \u276F Build Angular-Version: %c${this.angularVersion} +%c \u276F Build Web-Version: %c${this.webVersion} +%c \u276F Build Timestamp: %c${this.webBuildTime} + + +`,"font-size: 14px; color: #7c7c7b;","font-size: 12px; color: #7c7c7b","font-size: 12px; color: #95c230;","font-size: 12px; color: #7c7c7b","font-size: 12px; color: #bdc6cf","font-size: 12px; color: #7c7c7b","font-size: 12px; color: #bdc6cf","font-size: 12px; color: #7c7c7b","font-size: 12px; color: #bdc6cf"),(window.console.log=()=>{});}static \u0275fac=function(r){return new(r||o)};static \u0275cmp=Uo$1({type:o,selectors:[["app-root"]],decls:1,vars:0,template:function(r,l){r&1&&au(0,"router-outlet");},dependencies:[Lh],encapsulation:2})};FA(n,Br).catch(o=>console.error(o));export{$t$1 as $,j0 as A,Bc$1 as B,IM as C,az as D,xt$1 as E,Ft$1 as F,su as G,EM as H,I$1 as I,WI as J,b as K,yn$1 as L,Bp as M,sz as N,cz as O,U$1 as P,QE as Q,nq as R,sq as S,PM as T,Uo$1 as U,VG as V,W_ as W,XE as X,YM as Y,qE as Z,aM as _,au as a,I4 as a$,cM as a0,hM as a1,Ha$1 as a2,fu as a3,fD as a4,Gm as a5,GE as a6,Rm as a7,xm as a8,pN as a9,vC as aA,_I as aB,MI as aC,Mq as aD,oe$1 as aE,ee$1 as aF,tn$1 as aG,TI as aH,nr$1 as aI,eO as aJ,o as aK,zh as aL,Tu as aM,vn$1 as aN,_e$1 as aO,me$1 as aP,w as aQ,BG as aR,v4 as aS,pq as aT,E4 as aU,dz as aV,Fo$1 as aW,te$1 as aX,RI as aY,x4 as aZ,F4 as a_,QM as aa,xp as ab,J$1 as ac,Ui$1 as ad,G$1 as ae,dR as af,YE as ag,fe$1 as ah,jr$1 as ai,Rt$1 as aj,rD as ak,Ae$1 as al,Ie$1 as am,Yt$1 as an,F0 as ao,m as ap,l as aq,Y$1 as ar,dS as as,Z$1 as at,Nr$1 as au,Hr$1 as av,ZO as aw,Bi$1 as ax,Pe$1 as ay,HG as az,bp as b,Jx as b$,uO as b0,k4 as b1,AI as b2,$4 as b3,aO as b4,N4 as b5,b4 as b6,C4 as b7,D4 as b8,H4 as b9,rO as bA,oO as bB,M4 as bC,OI as bD,z4 as bE,lO as bF,de$1 as bG,w4 as bH,Kr$1 as bI,g4 as bJ,p4 as bK,cO as bL,n$1 as bM,U4 as bN,wc$1 as bO,Dc$1 as bP,vi$1 as bQ,P$1 as bR,K$1 as bS,R4 as bT,L4 as bU,pS as bV,Ke$1 as bW,qx as bX,pl$1 as bY,$x as bZ,f4 as b_,Gh as ba,W4 as bb,Gs as bc,V4 as bd,B4 as be,oN as bf,xI as bg,m4 as bh,aT as bi,rN as bj,c as bk,X4 as bl,tq as bm,XM as bn,vw as bo,a as bp,eq as bq,j4 as br,J4 as bs,Me$1 as bt,PI as bu,A4 as bv,Yn$1 as bw,tO as bx,T4 as by,_4 as bz,cu as c,G4 as c0,hl$1 as c1,kI as c2,P4 as c3,h4 as c4,O4 as c5,iM as c6,CM as c7,iN as c8,fS as c9,sM as ca,Ov as cb,cN as cc,Mp as cd,Np as ce,aN as cf,uN as cg,sN as ch,pD as ci,gD as d,zE as e,mn$1 as f,g,mu as h,iq as i,rq as j,oq as k,gs$1 as l,mD as m,n_ as n,oM as o,Vc$1 as p,cA as q,rM as r,BE as s,uu as t,uz as u,lu as v,VE as w,jM as x,nN as y,z_ as z}; \ No newline at end of file diff --git a/wwwroot/site.webmanifest b/wwwroot/site.webmanifest new file mode 100644 index 0000000..ccf313a --- /dev/null +++ b/wwwroot/site.webmanifest @@ -0,0 +1,21 @@ +{ + "name": "MyWebSite", + "short_name": "MySite", + "icons": [ + { + "src": "/web-app-manifest-192x192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/web-app-manifest-512x512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} \ No newline at end of file diff --git a/wwwroot/styles-DUSSTUBU.css b/wwwroot/styles-DUSSTUBU.css new file mode 100644 index 0000000..21253f7 --- /dev/null +++ b/wwwroot/styles-DUSSTUBU.css @@ -0,0 +1 @@ +@layer properties;@layer theme,base,components,utilities;@layer theme{:root,:host{--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--spacing: .25rem;--container-3xs: 16rem;--container-xl: 36rem;--text-sm: .875rem;--text-sm--line-height: calc(1.25 / .875);--text-2xl: 1.5rem;--text-2xl--line-height: calc(2 / 1.5);--font-weight-semibold: 600;--default-font-family: var(--font-sans);--default-mono-font-family: var(--font-mono)}}@layer base{*,:after,:before,::backdrop,::file-selector-button{box-sizing:border-box;margin:0;padding:0;border:0 solid}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;tab-size:4;font-family:var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings, normal);font-variation-settings:var(--default-font-variation-settings, normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings, normal);font-variation-settings:var(--default-mono-font-variation-settings, normal);font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea,::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;border-radius:0;background-color:transparent;opacity:1}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px){::placeholder{color:currentcolor}@supports (color: color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]),::file-selector-button{appearance:button}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer utilities{.absolute\!{position:absolute!important}.relative\!{position:relative!important}.static{position:static}.mt-2{margin-top:calc(var(--spacing) * 2)}.mt-4{margin-top:calc(var(--spacing) * 4)}.mr-0{margin-right:0}.mr-1{margin-right:var(--spacing)}.mr-2{margin-right:calc(var(--spacing) * 2)}.ml-1{margin-left:var(--spacing)}.ml-2{margin-left:calc(var(--spacing) * 2)}.ml-auto{margin-left:auto}.flex{display:flex}.w-full{width:100%}.min-w-3xs{min-width:var(--container-3xs)}.min-w-28{min-width:calc(var(--spacing) * 28)}.min-w-48{min-width:calc(var(--spacing) * 48)}.min-w-xl{min-width:var(--container-xl)}.justify-end{justify-content:flex-end}.gap-2{gap:calc(var(--spacing) * 2)}.p-1\!{padding:var(--spacing)!important}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading, var(--text-2xl--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading, var(--text-sm--line-height))}.font-semibold{--tw-font-weight: var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}}@layer keyframes{@keyframes enter{0%{opacity:var(--p-enter-opacity, 1);transform:translate3d(var(--p-enter-translate-x, 0),var(--p-enter-translate-y, 0),0) scale3d(var(--p-enter-scale, 1),var(--p-enter-scale, 1),var(--p-enter-scale, 1)) rotate(var(--p-enter-rotate, 0))}}@keyframes leave{to{opacity:var(--p-leave-opacity, 1);transform:translate3d(var(--p-leave-translate-x, 0),var(--p-leave-translate-y, 0),0) scale3d(var(--p-leave-scale, 1),var(--p-leave-scale, 1),var(--p-leave-scale, 1)) rotate(var(--p-leave-rotate, 0))}}@keyframes fadein{0%{opacity:0}to{opacity:1}}@keyframes fadeout{0%{opacity:1}to{opacity:0}}@keyframes infinite-scroll{0%{transform:translate(0)}to{transform:translate(-100%)}}@keyframes scalein{0%{opacity:0;transform:scaleY(.8);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:scaleY(1)}}@keyframes slidedown{0%{max-height:0}to{max-height:auto}}@keyframes slideup{0%{max-height:1000px}to{max-height:0}}@keyframes fadeinleft{0%{opacity:0;transform:translate(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutleft{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(-100%)}}@keyframes fadeinright{0%{opacity:0;transform:translate(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translate(0)}}@keyframes fadeoutright{0%{opacity:1;transform:translate(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translate(100%)}}@keyframes fadeinup{0%{opacity:0;transform:translateY(-100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutup{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(-100%)}}@keyframes fadeindown{0%{opacity:0;transform:translateY(100%);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:1;transform:translateY(0)}}@keyframes fadeoutdown{0%{opacity:1;transform:translateY(0);transition:transform .12s cubic-bezier(0,0,.2,1),opacity .12s cubic-bezier(0,0,.2,1)}to{opacity:0;transform:translateY(100%)}}@keyframes width{0%{width:0}to{width:100%}}@keyframes flip{0%{transform:perspective(2000px) rotateX(-100deg)}to{transform:perspective(2000px) rotateX(0)}}@keyframes flipleft{0%{transform:perspective(2000px) rotateY(-100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipright{0%{transform:perspective(2000px) rotateY(100deg);opacity:0}to{transform:perspective(2000px) rotateY(0);opacity:1}}@keyframes flipup{0%{transform:perspective(2000px) rotateX(-100deg);opacity:0}to{transform:perspective(2000px) rotateX(0);opacity:1}}@keyframes zoomin{0%{transform:scale3d(.3,.3,.3);opacity:0}50%{opacity:1}}@keyframes zoomindown{0%{transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);opacity:0}60%{transform:scale3d(.475,.475,.475) translate3d(0,60px,0);opacity:1}}@keyframes zoominleft{0%{transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);opacity:0}60%{transform:scale3d(.475,.475,.475) translate3d(10px,0,0);opacity:1}}}.small-button{height:38px;min-width:38px;display:flex;align-items:center;padding:10px;transition:all .25s linear;color:var(--primary-color);border-color:var(--primary-color);background-color:transparent;justify-content:center}.miniBtn{height:36px!important;width:36px!important}@property --tw-font-weight{syntax: "*"; inherits: false;}@layer properties{@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-font-weight: initial}}} diff --git a/wwwroot/web-app-manifest-192x192.png b/wwwroot/web-app-manifest-192x192.png new file mode 100644 index 0000000..05f5a2f Binary files /dev/null and b/wwwroot/web-app-manifest-192x192.png differ diff --git a/wwwroot/web-app-manifest-512x512.png b/wwwroot/web-app-manifest-512x512.png new file mode 100644 index 0000000..ab999b5 Binary files /dev/null and b/wwwroot/web-app-manifest-512x512.png differ