diff --git a/.agents/memory/MEMORY.md b/.agents/memory/MEMORY.md index a6707bae3..df31d26b2 100644 --- a/.agents/memory/MEMORY.md +++ b/.agents/memory/MEMORY.md @@ -5,3 +5,6 @@ - [project] AG Kit only supports Gemini CLI and Google Antigravity (not other AI coding tools) → project-conventions.md - [project] Mobile app reference & inspiration copy location: C:\Users\garci\OneDrive\Desktop\Projects\pms\mobile → project-conventions.md - [project] Component metadata uses SemVer while toolkit releases use CalVer → tech-decisions.md +- [project] Subdomains are paid features; all subdomain provisioning actions require main system Executive role approval → tech-decisions.md +- [project] Each subdomain has distinct admin emails isolated to its tenant database; credentials from one subdomain cannot log into another → tech-decisions.md + diff --git a/.agents/memory/tech-decisions.md b/.agents/memory/tech-decisions.md index f161c7eb3..d5a4c79e1 100644 --- a/.agents/memory/tech-decisions.md +++ b/.agents/memory/tech-decisions.md @@ -8,3 +8,7 @@ updated: 2026-07-18 - Component metadata uses SemVer while the toolkit release keeps CalVer. - `manifest.json` and `manifest.lock.json` must remain synchronized with component frontmatter. +- Subdomains are paid features. All inquiries, subdomain creation, and tenant provisioning actions MUST be managed and explicitly approved by Executive roles in the main HRM system before proceeding with provision/add actions. +- Each tenant subdomain has distinct admin emails isolated to its own database/tenant instance. Users registered under one tenant subdomain cannot log in or access another subdomain. + + diff --git a/.phpunit.result.cache b/.phpunit.result.cache new file mode 100644 index 000000000..023ef3de6 --- /dev/null +++ b/.phpunit.result.cache @@ -0,0 +1 @@ +{"version":2,"defects":{"Tests\\Feature\\TenantModuleProvisioningTest::test_provisioning_enables_only_selected_inquiry_modules_in_central_and_tenant_db":8,"Tests\\Feature\\TenantModuleProvisioningTest::test_ensure_tenant_module_enabled_middleware_returns_403_for_disabled_module":8},"times":{"Tests\\Feature\\TenantModuleProvisioningTest::test_provisioning_enables_only_selected_inquiry_modules_in_central_and_tenant_db":5.799,"Tests\\Feature\\TenantModuleProvisioningTest::test_ensure_tenant_module_enabled_middleware_returns_403_for_disabled_module":5.862,"Tests\\Feature\\TenantModuleProvisioningTest::test_cannot_reprovision_active_tenant":0.077}} \ No newline at end of file diff --git a/app/Constants/ModuleContract.php b/app/Constants/ModuleContract.php new file mode 100644 index 000000000..e2896ef85 --- /dev/null +++ b/app/Constants/ModuleContract.php @@ -0,0 +1,167 @@ + [ + 'module_key' => 'mobile', + 'label' => 'Mobile App Access', + 'permissions' => ['manage-clock-in-out'], + 'route_prefixes' => ['mobile'], + ], + 'geofence' => [ + 'module_key' => 'attendance', + 'label' => 'GPS Geofencing & Attendance', + 'permissions' => [ + 'manage-attendances', 'view-attendances', 'create-attendances', 'edit-attendances', 'delete-attendances', + 'manage-clock-in-out', 'manage-attendance-regularizations', 'view-attendance-regularizations', + 'manage-shifts', 'manage-attendance-records', 'manage-attendance-locations', 'manage-overtime', + ], + 'route_prefixes' => ['attendances', 'attendance-regularizations'], + ], + 'multi_branch' => [ + 'module_key' => 'branch', + 'label' => 'Multi-Branch Management', + 'permissions' => [ + 'manage-branches', 'view-branches', 'create-branches', 'edit-branches', 'delete-branches', + 'manage-any-branches', 'manage-own-branches', + 'manage-departments', 'view-departments', 'create-departments', 'edit-departments', 'delete-departments', + ], + 'route_prefixes' => ['branches', 'departments'], + ], + 'biometric' => [ + 'module_key' => 'biometric', + 'label' => 'Biometric Device Sync', + 'permissions' => [ + 'manage-biometric-attendance', 'view-biometric-attendance', 'create-biometric-attendance', 'edit-biometric-attendance', 'delete-biometric-attendance', + ], + 'route_prefixes' => ['biometric-attendance'], + ], + 'payroll' => [ + 'module_key' => 'payroll', + 'label' => 'Automated Payroll & Payslips', + 'permissions' => [ + 'manage-payrolls', 'view-payrolls', 'create-payrolls', 'edit-payrolls', 'delete-payrolls', + 'manage-benefit-payments', 'view-benefit-payments', + 'manage-salary-components', 'manage-employee-salaries', 'manage-payroll-runs', 'manage-payslips', + ], + 'route_prefixes' => ['payrolls', 'benefit-payments'], + ], + 'time_tracking' => [ + 'module_key' => 'timesheet', + 'label' => 'Time Tracking & Timesheets', + 'permissions' => [ + 'manage-attendances', 'view-attendances', 'manage-clock-in-out', + 'manage-time-entries', 'manage-timesheets', + ], + 'route_prefixes' => ['timesheets'], + ], + 'recruitment' => [ + 'module_key' => 'recruitment', + 'label' => 'Recruitment & Job Postings (ATS)', + 'permissions' => [ + 'manage-job-categories', 'manage-job-types', 'manage-job-locations', 'manage-custom-questions', + 'manage-job-postings', 'manage-candidate-sources', 'view-candidate-sources', + 'manage-candidates', 'view-candidates', 'create-candidates', 'edit-candidates', 'delete-candidates', + 'manage-interview-types', 'manage-interview-rounds', 'manage-interviews', 'manage-interview-feedback', + 'manage-candidate-assessments', 'manage-offer-templates', 'manage-offers', + 'manage-onboarding-checklists', 'manage-checklist-items', 'manage-candidate-onboarding', 'manage-career-page', + ], + 'route_prefixes' => ['candidates', 'candidate-sources', 'candidate-onboardings'], + ], + 'performance' => [ + 'module_key' => 'performance', + 'label' => 'Performance Appraisals & KPIs', + 'permissions' => [ + 'manage-performance-indicator-categories', 'manage-performance-indicators', 'manage-goal-types', 'view-goal-types', + 'manage-employee-goals', 'view-employee-goals', 'create-employee-goals', 'edit-employee-goals', 'delete-employee-goals', + 'manage-review-cycles', 'manage-employee-reviews', 'view-employee-reviews', 'create-employee-reviews', 'edit-employee-reviews', 'delete-employee-reviews', + ], + 'route_prefixes' => ['employee-goals', 'employee-reviews', 'goal-types'], + ], + 'training' => [ + 'module_key' => 'training', + 'label' => 'Employee Training & Seminars', + 'permissions' => [ + 'manage-training-types', 'manage-training-programs', 'manage-training-sessions', + 'manage-employee-trainings', 'view-employee-trainings', 'create-employee-trainings', 'edit-employee-trainings', 'delete-employee-trainings', + ], + 'route_prefixes' => ['employee-trainings'], + ], + 'contracts' => [ + 'module_key' => 'contracts', + 'label' => 'Contract Management', + 'permissions' => [ + 'manage-contract-types', 'manage-employee-contracts', 'manage-contract-templates', + 'manage-hr-documents', 'view-hr-documents', 'create-hr-documents', 'edit-hr-documents', 'delete-hr-documents', + ], + 'route_prefixes' => ['hr-documents'], + ], + 'documents' => [ + 'module_key' => 'documents', + 'label' => 'HR Document Management', + 'permissions' => [ + 'manage-document-categories', 'manage-hr-documents', 'view-hr-documents', 'create-hr-documents', 'edit-hr-documents', 'delete-hr-documents', + 'manage-document-acknowledgments', 'manage-document-templates', + ], + 'route_prefixes' => ['hr-documents'], + ], + ]; + + public static function getAllInquiryKeys(): array + { + return array_keys(self::MODULE_MAP); + } + + public static function getAllSystemModuleKeys(): array + { + $keys = []; + foreach (self::MODULE_MAP as $config) { + $keys[] = $config['module_key']; + } + return array_values(array_unique($keys)); + } + + public static function resolveModuleKey(string $inquiryKey): ?string + { + return self::MODULE_MAP[$inquiryKey]['module_key'] ?? null; + } + + public static function getPermissionsForInquiryKeys(array $selectedInquiryKeys): array + { + $permissions = self::CORE_COMPANY_PERMISSIONS; + foreach ($selectedInquiryKeys as $key) { + if (isset(self::MODULE_MAP[$key])) { + $permissions = array_merge($permissions, self::MODULE_MAP[$key]['permissions']); + } + } + return array_values(array_unique($permissions)); + } + + public static function isValidInquiryKey(string $key): bool + { + return isset(self::MODULE_MAP[$key]); + } +} diff --git a/app/Helpers/helper.php b/app/Helpers/helper.php index 413e7eefe..b2d80254e 100644 --- a/app/Helpers/helper.php +++ b/app/Helpers/helper.php @@ -44,8 +44,8 @@ if (!function_exists('settings')) { function settings($user_id = null) { // Skip database queries during installation - if (request()->is('install/*') || request()->is('update/*') || !file_exists(storage_path('installed'))) { - return []; + if (request()->is('install/*') || request()->is('update/*') || (!file_exists(base_path('storage/installed')) && !file_exists(storage_path('installed')))) { + return defaultSettings(); } if (is_null($user_id)) { @@ -68,7 +68,7 @@ if (!function_exists('settings')) { } } else { if (isSaas()) { - $user = User::where('type', 'superadmin')->first(); + $user = User::where('type', 'superadmin')->first() ?? User::where('type', 'company')->first(); } else { $user = User::where('type', 'company')->first(); } @@ -76,10 +76,7 @@ if (!function_exists('settings')) { } } - if (!$user_id) { - return []; - } - $userSettings = Setting::where('user_id', $user_id)->pluck('value', 'key')->toArray(); + $userSettings = $user_id ? Setting::where('user_id', $user_id)->pluck('value', 'key')->toArray() : []; // If user is not superadmin in SaaS mode, merge with superadmin settings for specific keys if (isSaas() && auth()->check() && auth()->user()->type !== 'superadmin') { @@ -94,7 +91,7 @@ if (!function_exists('settings')) { } } - return $userSettings; + return array_merge(defaultSettings(), $userSettings); } } @@ -938,9 +935,9 @@ if (!function_exists('defaultSettings')) { 'landingPageEnabled' => true, 'userRegistrationEnabled' => true, - 'logoDark' => 'logo/logo-dark.png', - 'logoLight' => 'logo/logo-light.png', - 'favicon' => 'logo/favicon.png', + 'logoDark' => 'images/logos/logo-dark.png', + 'logoLight' => 'images/logos/logo-light.png', + 'favicon' => 'images/logos/favicon.png', 'titleText' => $productName, 'footerText' => '© 2026 ' . $productName . '. All rights reserved.', 'themeColor' => 'green', diff --git a/app/Http/Controllers/Api/AuthController.php b/app/Http/Controllers/Api/AuthController.php index eab451925..93e73c999 100644 --- a/app/Http/Controllers/Api/AuthController.php +++ b/app/Http/Controllers/Api/AuthController.php @@ -17,10 +17,86 @@ class AuthController extends Controller 'email' => 'required|email', 'password' => 'required', 'device_name' => 'nullable|string', + 'subdomain' => 'nullable|string', ]); + // 1. Resolve Tenant Context (Host -> Header -> Body -> Email Auto-Discovery) + $host = $request->getHost(); + $centralDomains = config('tenancy.central_domains', ['127.0.0.1', 'localhost', 'hrm.test']); + $tenantId = null; + + if (!in_array($host, $centralDomains, true)) { + $domain = \Stancl\Tenancy\Database\Models\Domain::where('domain', $host)->first(); + if ($domain) { + $tenantId = $domain->tenant_id; + } + } + + if (!$tenantId) { + $tenantId = $request->header('X-Tenant') ?? $request->header('X-Subdomain') ?? $request->subdomain ?? $request->tenant; + } + + // Auto-Discover Tenant by User Email if no tenant header or subdomain provided + if (!$tenantId && $request->filled('email')) { + $inquiry = \App\Models\Inquiry::on('sqlite')->where('email', $request->email)->first(); + if ($inquiry) { + $tenantId = $inquiry->desired_subdomain ?? $inquiry->domain_prefix; + } else { + // Check central tenants table by email + $tenantRecord = \App\Models\Tenant::on('sqlite')->where('email', $request->email)->first(); + if ($tenantRecord) { + $tenantId = $tenantRecord->id; + } + } + } + + if ($tenantId && class_exists('\App\Models\Tenant')) { + $tenant = \App\Models\Tenant::find($tenantId); + if (!$tenant) { + $domainMatch = \Stancl\Tenancy\Database\Models\Domain::where('domain', $tenantId)->first(); + $tenant = $domainMatch ? $domainMatch->tenant : null; + } + + if ($tenant) { + if (function_exists('tenancy') && tenancy()->initialized) { + tenancy()->end(); + } + tenancy()->initialize($tenant); + } + } + + // Authenticate User in Current Context (Tenant DB or Central DB) $user = User::where('email', $request->email)->first(); + // Fallback for central users (e.g. superadmin) logging in on central host + if (!$user && function_exists('tenant') && tenant()) { + $centralUser = User::on('sqlite')->where('email', $request->email)->first(); + if ($centralUser && in_array($centralUser->type, ['superadmin'])) { + if (function_exists('tenancy') && tenancy()->initialized) { + tenancy()->end(); + } + $user = $centralUser; + } + } + + $user = User::where('email', $request->email)->first(); + + // Enforce Subdomain & Tenant Domain Access Isolation for API/Mobile Auth + if (function_exists('tenant') && tenant()) { + $currentTenantId = tenant('id'); + $tenantInquiry = \App\Models\Inquiry::on('sqlite')->where('desired_subdomain', $currentTenantId)->first(); + $allowedEmail = $tenantInquiry ? $tenantInquiry->email : tenant('email'); + + if ($user && $user->type === 'company' && $allowedEmail && strtolower($user->email) !== strtolower($allowedEmail)) { + return response()->json([ + 'success' => false, + 'data' => null, + 'message' => 'This account does not have administrator access to this subdomain.', + 'errors' => ['email' => ['This account does not have administrator access to this subdomain.']], + ], 401); + } + } + if (!$user || !Hash::check($request->password, $user->password)) { return response()->json([ 'success' => false, @@ -39,21 +115,44 @@ class AuthController extends Controller ], 403); } + // Check if Mobile App Access module is enabled for this tenant subdomain + if (function_exists('tenant') && tenant()) { + $isMobileEnabled = \App\Models\TenantModule::where('module_key', 'mobile')->where('enabled', true)->exists(); + if (!$isMobileEnabled) { + return response()->json([ + 'success' => false, + 'data' => null, + 'message' => 'Mobile App access is not enabled for your company subscription.', + 'errors' => ['mobile' => ['Mobile App access is not enabled for your company subscription.']], + ], 403); + } + } + $deviceName = $request->device_name ?? 'mobile_app'; $token = $user->createToken($deviceName)->plainTextToken; - $user->load('employee'); + if (\Illuminate\Support\Facades\Schema::hasTable('employees')) { + $user->load('employee'); + } if (!empty($user->avatar)) { $user->avatar = get_file($user->avatar); } + // Resolve enabled modules map for mobile client app + $enabledModules = []; + if (function_exists('tenant') && tenant()) { + $enabledModules = \App\Models\TenantModule::pluck('enabled', 'module_key')->map(fn($v) => (bool)$v)->toArray(); + } + return response()->json([ 'success' => true, 'token' => $token, 'user' => $user, + 'tenant_modules' => $enabledModules, 'data' => [ 'token' => $token, 'user' => $user, + 'tenant_modules' => $enabledModules, ], 'message' => 'Login successful', 'errors' => null, diff --git a/app/Http/Controllers/Auth/AuthenticatedSessionController.php b/app/Http/Controllers/Auth/AuthenticatedSessionController.php index 2bbe2504e..a741dc8db 100644 --- a/app/Http/Controllers/Auth/AuthenticatedSessionController.php +++ b/app/Http/Controllers/Auth/AuthenticatedSessionController.php @@ -114,16 +114,16 @@ class AuthenticatedSessionController extends Controller if (isSaaS()) { if (Auth::user()->hasRole('superadmin')) { $createdBy = Auth::user()->id; - } else if (Auth::user()->hasRole('company')) { - $createdBy = Auth::user()->created_by; + } else if (Auth::user()->hasRole('company') || Auth::user()->type === 'company') { + $createdBy = Auth::user()->created_by ?? Auth::user()->id; } else { - $createdBy = getCompanyId(Auth::user()->id); + $createdBy = function_exists('getCompanyId') ? getCompanyId(Auth::user()->id) : Auth::user()->id; } } else { - if (Auth::user()->hasRole('company')) { + if (Auth::user()->hasRole('company') || Auth::user()->type === 'company') { $createdBy = Auth::user()->id; } else { - $createdBy = getCompanyId(Auth::user()->id); + $createdBy = function_exists('getCompanyId') ? getCompanyId(Auth::user()->id) : Auth::user()->id; } } @@ -142,6 +142,8 @@ class AuthenticatedSessionController extends Controller return redirect()->intended(route('dashboard', absolute: false)); + } catch (\Illuminate\Validation\ValidationException $e) { + throw $e; } catch (\Exception $e) { Log::error('Login error: ' . $e->getMessage()); return back()->withErrors(['email' => $e->getMessage()]); diff --git a/app/Http/Controllers/BranchController.php b/app/Http/Controllers/BranchController.php index c9379e08b..e52835f28 100644 --- a/app/Http/Controllers/BranchController.php +++ b/app/Http/Controllers/BranchController.php @@ -12,14 +12,15 @@ class BranchController extends Controller { public function index(Request $request) { - if (Auth::user()->can('manage-branches')) { - $query = Branch::where(function ($q) { - if (Auth::user()->can('manage-any-branches')) { - $q->whereIn('created_by', getCompanyAndUsersId()); - } elseif (Auth::user()->can('manage-own-branches')) { - $q->where('created_by', Auth::id()); + $user = Auth::user(); + if ($user->type === 'company' || $user->can('manage-branches') || $user->can('view-branches')) { + $query = Branch::where(function ($q) use ($user) { + if ($user->type === 'company' || $user->can('manage-any-branches') || $user->can('manage-branches') || $user->can('view-branches')) { + $q->whereIn('created_by', getCompanyAndUsersId()); + } elseif ($user->can('manage-own-branches')) { + $q->where('created_by', $user->id); } else { - $q->whereRaw('1 = 0'); + $q->whereIn('created_by', getCompanyAndUsersId()); } }); @@ -55,7 +56,8 @@ class BranchController extends Controller public function store(Request $request) { - if (Auth::user()->can('create-branches')) { + $user = Auth::user(); + if ($user->type === 'company' || $user->can('create-branches') || $user->can('manage-branches')) { try { $validated = $request->validate([ 'name' => 'required|string|max:255', diff --git a/app/Http/Controllers/ContactController.php b/app/Http/Controllers/ContactController.php index 2a5e7764f..a6e1b8dbd 100644 --- a/app/Http/Controllers/ContactController.php +++ b/app/Http/Controllers/ContactController.php @@ -44,6 +44,20 @@ class ContactController extends Controller $perPage = $request->get('per_page', 10); $contacts = $query->paginate($perPage)->withQueryString(); + // Attach matching Inquiry details if available + $contacts->getCollection()->transform(function ($contact) { + $inquiry = \App\Models\Inquiry::where('email', $contact->email)->first(); + if ($inquiry) { + $contact->company_name = $inquiry->company_name; + $contact->desired_subdomain = $inquiry->desired_subdomain; + $contact->employee_count = $inquiry->employee_count; + $contact->requested_features = $inquiry->requested_features ?? []; + $contact->inquiry_notes = $inquiry->notes; + $contact->payment_reference = $inquiry->payment_reference; + } + return $contact; + }); + return Inertia::render('contacts/index', [ 'contacts' => $contacts, 'filters' => $request->only(['search', 'sort_field', 'sort_direction', 'per_page']) @@ -108,9 +122,13 @@ class ContactController extends Controller public function destroy(Contact $contact) { if (Auth::user()->can('delete-contacts')) { + if ($contact->email) { + \App\Models\Inquiry::where('email', $contact->email)->delete(); + } + $contact->delete(); - return redirect()->back()->with('success', 'Contact deleted successfully.'); + return redirect()->back()->with('success', 'Contact and associated inquiry deleted successfully from database.'); } else { return redirect()->back()->with('error', __('Permission Denied.')); } diff --git a/app/Http/Controllers/EmployeeController.php b/app/Http/Controllers/EmployeeController.php index 2f141d1a9..99485c450 100644 --- a/app/Http/Controllers/EmployeeController.php +++ b/app/Http/Controllers/EmployeeController.php @@ -138,9 +138,19 @@ class EmployeeController extends Controller ->where('status', 'active') ->get(['id', 'name', 'department_id']); - // Get plan limits for company users and staff users (only in SaaS mode) + // Get plan limits for company users and staff users (under tenancy or SaaS mode) $planLimits = null; - if (isSaas()) { + if (function_exists('tenant') && tenant()) { + $tenantId = tenant('id'); + $entitlement = \App\Models\TenantEntitlement::where('tenant_id', $tenantId)->first(); + $maxEmployees = $entitlement ? (int) $entitlement->max_employees : (int) (getCompanySetting('max_employees') ?? 25); + $currentUserCount = User::where('type', 'employee')->count(); + $planLimits = [ + 'current_users' => $currentUserCount, + 'max_users' => $maxEmployees, + 'can_create' => $maxEmployees <= 0 || $currentUserCount < $maxEmployees, + ]; + } else if (isSaas()) { if ($authUser->type === 'company' && $authUser->plan) { $currentUserCount = User::where('type', 'employee')->whereIn('created_by', getCompanyAndUsersId())->count(); $planLimits = [ @@ -308,7 +318,15 @@ class EmployeeController extends Controller } // Plan limit check - if (isSaas()) { + if (function_exists('tenant') && tenant()) { + $tenantId = tenant('id'); + $entitlement = \App\Models\TenantEntitlement::where('tenant_id', $tenantId)->first(); + $maxEmployees = $entitlement ? (int) $entitlement->max_employees : (int) (getCompanySetting('max_employees') ?? 25); + $count = User::where('type', 'employee')->count(); + if ($maxEmployees > 0 && $count >= $maxEmployees) { + return redirect()->back()->with('error', __("Employee limit reached ({$maxEmployees} max staff allowed). Cannot add more employees."))->withInput(); + } + } else if (isSaas()) { $creator = User::find(creatorId()); if ($creator && $creator->type === 'company' && $creator->plan) { $count = User::where('type', 'employee')->whereIn('created_by', getCompanyAndUsersId())->count(); diff --git a/app/Http/Controllers/ExecutiveInquiryController.php b/app/Http/Controllers/ExecutiveInquiryController.php new file mode 100644 index 000000000..bb5bd4513 --- /dev/null +++ b/app/Http/Controllers/ExecutiveInquiryController.php @@ -0,0 +1,172 @@ +query('status'); + + $query = Inquiry::with('approver')->orderBy('created_at', 'desc'); + + if (!empty($status)) { + $query->where('status', $status); + } + + $inquiries = $query->paginate(20); + + return response()->json([ + 'success' => true, + 'data' => $inquiries, + ]); + } + + public function approve(Request $request, $id) + { + $inquiry = Inquiry::findOrFail($id); + + $request->validate([ + 'desired_subdomain' => 'nullable|string|max:50|alpha_dash', + 'payment_reference' => 'nullable|string|max:255', + ]); + + if ($request->filled('desired_subdomain')) { + $newSubdomain = \Illuminate\Support\Str::slug($request->desired_subdomain); + if ($newSubdomain !== $inquiry->desired_subdomain) { + if (\App\Models\Tenant::where('id', $newSubdomain)->exists()) { + return response()->json(['success' => false, 'message' => 'The specified subdomain is already in use by an active tenant.'], 422); + } + if (\Stancl\Tenancy\Database\Models\Domain::where('domain', 'LIKE', $newSubdomain . '.%')->orWhere('domain', $newSubdomain)->exists()) { + return response()->json(['success' => false, 'message' => 'The specified subdomain is already assigned to a domain.'], 422); + } + if (Inquiry::where('desired_subdomain', $newSubdomain)->where('id', '!=', $inquiry->id)->exists()) { + return response()->json(['success' => false, 'message' => 'The specified subdomain is already reserved by another inquiry.'], 422); + } + } + $inquiry->desired_subdomain = $newSubdomain; + } + + if ($request->filled('payment_reference')) { + $inquiry->payment_reference = $request->payment_reference; + } + + if ($request->has('requested_features') && is_array($request->requested_features)) { + $allowedModules = \App\Constants\ModuleContract::getAllInquiryKeys(); + $inquiry->requested_features = array_values(array_intersect($request->requested_features, $allowedModules)); + } + + $inquiry->approved_by_user_id = $request->user()->id; + $inquiry->approved_at = Carbon::now(); + $inquiry->status = 'approved'; + $inquiry->save(); + + // Dispatch tenant DB provisioning job to queue + ProvisionTenantJob::dispatch($inquiry); + + return response()->json([ + 'success' => true, + 'message' => 'Inquiry approved and tenant provisioning pipeline dispatched successfully!', + 'data' => $inquiry, + ]); + } + + public function reject(Request $request, $id) + { + $inquiry = Inquiry::findOrFail($id); + + $request->validate([ + 'rejection_reason' => 'required|string|max:500', + ]); + + $inquiry->status = 'rejected'; + $inquiry->rejection_reason = $request->rejection_reason; + $inquiry->approved_by_user_id = $request->user()->id; + $inquiry->approved_at = Carbon::now(); + $inquiry->save(); + + return response()->json([ + 'success' => true, + 'message' => 'Inquiry rejected successfully.', + 'data' => $inquiry, + ]); + } + + public function approveInquiryFromWeb(Request $request) + { + $allowedModules = \App\Constants\ModuleContract::getAllInquiryKeys(); + + $request->validate([ + 'company_name' => 'required|string|max:255', + 'contact_name' => 'required|string|max:255', + 'email' => 'required|email|max:255', + 'desired_subdomain' => 'required|string|max:50|alpha_dash', + 'requested_features' => 'nullable|array', + 'requested_features.*' => 'string|in:' . implode(',', $allowedModules), + 'payment_reference' => 'nullable|string|max:255', + ]); + + $desiredSubdomain = \Illuminate\Support\Str::slug($request->desired_subdomain); + + // Check if tenant is already active + $existingInquiry = Inquiry::where('email', $request->email)->first(); + if ($existingInquiry && in_array($existingInquiry->status, ['active', 'provisioning'])) { + if ($request->wantsJson()) { + return response()->json(['success' => false, 'message' => 'This company tenant is already active and cannot be re-provisioned.'], 422); + } + return redirect()->back()->withErrors(['email' => 'This company tenant is already active and cannot be re-provisioned.']); + } + + // Check domain & tenant uniqueness if creating new + if (\App\Models\Tenant::where('id', $desiredSubdomain)->exists() || \Stancl\Tenancy\Database\Models\Domain::where('domain', 'LIKE', $desiredSubdomain . '.%')->orWhere('domain', $desiredSubdomain)->exists()) { + return redirect()->back()->with('error', 'The requested subdomain is already in use by an active tenant.'); + } + + $inquiry = Inquiry::updateOrCreate( + ['email' => $request->email], + [ + 'company_name' => $request->company_name, + 'contact_name' => $request->contact_name, + 'desired_subdomain' => $desiredSubdomain, + 'employee_count' => $request->employee_count ?? 10, + 'requested_features' => $request->requested_features ?? ($existingInquiry->requested_features ?? \App\Constants\ModuleContract::getAllInquiryKeys()), + 'payment_reference' => $request->payment_reference ?? 'MANUAL-EXECUTIVE-PROVISION', + 'status' => 'approved', + 'email_verified_at' => Carbon::now(), + 'approved_by_user_id' => $request->user()->id, + 'approved_at' => Carbon::now(), + ] + ); + + ProvisionTenantJob::dispatch($inquiry); + + return redirect()->back()->with('success', 'Subdomain created and database provisioned successfully!'); + } + + public function destroy(Request $request, $id) + { + $inquiry = Inquiry::findOrFail($id); + + if ($inquiry->email) { + \App\Models\Contact::where('email', $inquiry->email)->delete(); + } + + $inquiry->delete(); + + if ($request->wantsJson()) { + return response()->json([ + 'success' => true, + 'message' => 'Inquiry and matching contact record deleted permanently from database.', + ]); + } + + return redirect()->back()->with('success', 'Inquiry and matching contact record deleted permanently from database.'); + } +} diff --git a/app/Http/Controllers/LandingInquiryController.php b/app/Http/Controllers/LandingInquiryController.php new file mode 100644 index 000000000..6cd4c0448 --- /dev/null +++ b/app/Http/Controllers/LandingInquiryController.php @@ -0,0 +1,203 @@ +filled('hp_website')) { + return response()->json([ + 'success' => false, + 'message' => 'Spam submission detected.', + ], 422); + } + + $desiredSubdomain = Str::slug($request->desired_subdomain); + $request->merge(['desired_subdomain' => $desiredSubdomain]); + + $allowedModules = \App\Constants\ModuleContract::getAllInquiryKeys(); + + // Find existing inquiry by email to allow resubmissions by same user + $existingInquiry = Inquiry::where('email', $request->email)->first(); + + // Prevent modifying subdomain slug if inquiry was already approved or activated + if ($existingInquiry && in_array($existingInquiry->status, ['approved', 'active', 'provisioning'])) { + if ($existingInquiry->desired_subdomain !== $desiredSubdomain) { + return response()->json([ + 'success' => false, + 'message' => 'Your subdomain request has already been approved. Subdomain slug cannot be altered.', + ], 422); + } + } + + $ignoreInquiryId = $existingInquiry ? $existingInquiry->id : null; + + $request->validate([ + 'company_name' => 'required|string|max:255', + 'contact_name' => 'required|string|max:255', + 'email' => 'required|email|max:255', + 'phone' => 'nullable|string|max:50', + 'desired_subdomain' => [ + 'required', + 'string', + 'max:50', + 'alpha_dash', + function ($attribute, $value, $fail) use ($ignoreInquiryId) { + $slug = Str::slug($value); + if (\App\Models\Tenant::where('id', $slug)->exists()) { + $fail(__('This desired subdomain is already in use by an active tenant. Please choose a different subdomain.')); + } + if (\Stancl\Tenancy\Database\Models\Domain::where('domain', 'LIKE', $slug . '.%')->orWhere('domain', $slug)->exists()) { + $fail(__('This desired subdomain is already in use by an active domain. Please choose a different subdomain.')); + } + $inquiryQuery = Inquiry::where('desired_subdomain', $slug); + if ($ignoreInquiryId) { + $inquiryQuery->where('id', '!=', $ignoreInquiryId); + } + if ($inquiryQuery->exists()) { + $fail(__('This desired subdomain is already reserved or requested. Please choose a different subdomain slug.')); + } + }, + ], + 'employee_count' => 'nullable|integer|min:1|max:10000', + 'requested_features' => 'nullable|array', + 'requested_features.*' => 'string|in:' . implode(',', $allowedModules), + 'notes' => 'nullable|string|max:2000', + 'payment_reference' => 'nullable|string|max:255', + ], [ + 'requested_features.*.in' => 'One or more selected modules are invalid.', + ]); + + $verificationCode = (string) rand(100000, 999999); + + // Store pending submission payload in Cache for 1 hour until email OTP is verified + $cacheKey = 'pending_inquiry_' . md5(strtolower($request->email)); + \Illuminate\Support\Facades\Cache::put($cacheKey, [ + 'email' => $request->email, + 'company_name' => $request->company_name, + 'contact_name' => $request->contact_name, + 'phone' => $request->phone, + 'desired_subdomain' => $desiredSubdomain, + 'employee_count' => $request->employee_count ?? 10, + 'requested_features' => $request->requested_features ?? [], + 'notes' => $request->notes ? Str::limit($request->notes, 2000, '...') : null, + 'payment_reference' => $request->payment_reference ?? 'SUBDOMAIN-INQUIRY-WIZARD', + 'verification_code' => $verificationCode, + ], now()->addHour()); + + // Dispatch verification code email to inquiring user + try { + \Illuminate\Support\Facades\Mail::to($request->email)->send( + new \App\Mail\InquiryVerificationCodeMail($request->company_name, $verificationCode) + ); + } catch (\Exception $e) { + \Illuminate\Support\Facades\Log::warning("Could not send verification email to {$request->email}: " . $e->getMessage()); + } + + return response()->json([ + 'success' => true, + 'requires_verification' => true, + 'verification_code' => config('app.env') === 'testing' || config('app.debug') ? $verificationCode : null, + 'message' => 'Subdomain inquiry details validated! Please enter the 6-digit verification code sent to your email to complete submission.', + ], 200); + } + + public function verifyEmail(Request $request) + { + $request->validate([ + 'email' => 'required|email', + 'verification_code' => 'required|string', + ]); + + $cacheKey = 'pending_inquiry_' . md5(strtolower($request->email)); + $pendingData = \Illuminate\Support\Facades\Cache::get($cacheKey); + + if (!$pendingData) { + // Check if existing verified inquiry exists + $existing = Inquiry::where('email', $request->email)->first(); + if ($existing && $existing->email_verified_at) { + return response()->json([ + 'success' => true, + 'message' => 'Your email has already been verified.', + 'data' => $existing, + ]); + } + + return response()->json([ + 'success' => false, + 'message' => 'Verification session expired or no pending submission found. Please resubmit the inquiry form.', + ], 422); + } + + if ($pendingData['verification_code'] !== trim($request->verification_code)) { + return response()->json([ + 'success' => false, + 'message' => 'Invalid verification code. Please check your email and try again.', + ], 422); + } + + // Save / Update Inquiry DB record ONLY after successful OTP verification! + $existingInquiry = Inquiry::where('email', $pendingData['email'])->first(); + + if ($existingInquiry) { + $inquiry = $existingInquiry; + $combinedNotes = $pendingData['notes'] + ? ($existingInquiry->notes ? $existingInquiry->notes . "\n---\n" . $pendingData['notes'] : $pendingData['notes']) + : $existingInquiry->notes; + + $inquiry->update([ + 'company_name' => $pendingData['company_name'], + 'contact_name' => $pendingData['contact_name'], + 'phone' => $pendingData['phone'], + 'desired_subdomain' => $pendingData['desired_subdomain'], + 'employee_count' => $pendingData['employee_count'], + 'requested_features' => $pendingData['requested_features'], + 'notes' => Str::limit($combinedNotes, 2000, ''), + 'verification_code' => null, + 'email_verified_at' => now(), + 'payment_reference' => $pendingData['payment_reference'] ?? $existingInquiry->payment_reference, + 'status' => 'pending_payment_approval', + ]); + } else { + $inquiry = Inquiry::create([ + 'email' => $pendingData['email'], + 'company_name' => $pendingData['company_name'], + 'contact_name' => $pendingData['contact_name'], + 'phone' => $pendingData['phone'], + 'desired_subdomain' => $pendingData['desired_subdomain'], + 'employee_count' => $pendingData['employee_count'], + 'requested_features' => $pendingData['requested_features'], + 'notes' => $pendingData['notes'], + 'verification_code' => null, + 'email_verified_at' => now(), + 'payment_reference' => $pendingData['payment_reference'], + 'status' => 'pending_payment_approval', + ]); + } + + // Create matching Contact history entry ONLY after successful OTP verification! + \App\Models\Contact::create([ + 'email' => $pendingData['email'], + 'name' => $pendingData['contact_name'], + 'subject' => 'Subdomain Inquiry: ' . $pendingData['company_name'] . ' (' . $pendingData['desired_subdomain'] . ')', + 'message' => $pendingData['notes'] ?? ('Subdomain request for ' . $pendingData['company_name'] . ' with ' . $pendingData['employee_count'] . ' employees.'), + 'status' => 'New', + ]); + + \Illuminate\Support\Facades\Cache::forget($cacheKey); + + return response()->json([ + 'success' => true, + 'message' => 'Email verified and inquiry submitted successfully! Your subdomain request is ready for Executive approval.', + 'data' => $inquiry, + ]); + } +} diff --git a/app/Http/Controllers/LandingPageController.php b/app/Http/Controllers/LandingPageController.php index a384fbfd4..1e52ac44a 100644 --- a/app/Http/Controllers/LandingPageController.php +++ b/app/Http/Controllers/LandingPageController.php @@ -22,6 +22,17 @@ class LandingPageController extends Controller // Track general landing page visit // \Shetabit\Visitor\Facade\Visitor::visit(); + // If accessing from a tenant subdomain, redirect directly to login instead of landing page + if (function_exists('tenant') && tenant('id')) { + return redirect()->route('login'); + } + + $centralDomains = config('tenancy.central_domains', ['127.0.0.1', 'localhost', 'hrm.test']); + if (!in_array($host, $centralDomains)) { + // If subdomain of central domain (e.g. testname.localhost or testname.hrm.test) + return redirect()->route('login'); + } + // Check if landing page is enabled in settings if (!isLandingPageEnabled()) { return redirect()->route('login'); diff --git a/app/Http/Controllers/TenantSetupController.php b/app/Http/Controllers/TenantSetupController.php new file mode 100644 index 000000000..9ab817498 --- /dev/null +++ b/app/Http/Controllers/TenantSetupController.php @@ -0,0 +1,92 @@ +query('token'); + if (!$rawToken) { + return redirect()->route('login')->with('error', 'Invalid setup link.'); + } + + $tokenHash = hash('sha256', $rawToken); + $setupToken = TenantSetupToken::where('token_hash', $tokenHash)->first(); + + if (!$setupToken || $setupToken->isUsed() || $setupToken->isExpired()) { + return redirect()->route('login')->with('error', 'This setup link is invalid, used, or has expired.'); + } + + return Inertia::render('auth/setup-admin', [ + 'token' => $rawToken, + 'email' => $setupToken->email, + ]); + } + + /** + * Handle the password set request for admin setup. + */ + public function completeSetup(Request $request): RedirectResponse + { + // Rate-limit setup attempts + $throttleKey = 'tenant-setup:' . $request->ip(); + if (RateLimiter::tooManyAttempts($throttleKey, 5)) { + return back()->withErrors(['password' => 'Too many setup attempts. Please try again later.']); + } + RateLimiter::hit($throttleKey, 60); + + $request->validate([ + 'token' => 'required|string', + 'password' => 'required|string|min:8|confirmed', + ]); + + $tokenHash = hash('sha256', $request->token); + $setupToken = TenantSetupToken::where('token_hash', $tokenHash)->first(); + + if (!$setupToken || $setupToken->isUsed() || $setupToken->isExpired()) { + return redirect()->route('login')->with('error', 'This setup link is invalid, used, or has expired.'); + } + + // Update admin user inside active tenant context or find by email + $user = User::where('email', $setupToken->email)->first(); + if (!$user) { + return back()->withErrors(['password' => 'Administrator account not found.']); + } + + $user->update([ + 'password' => Hash::make($request->password), + 'status' => 'active', + 'is_enable_login' => 1, + 'email_verified_at' => now(), + ]); + + // Mark token as used + $setupToken->update([ + 'used_at' => now(), + ]); + + // Update inquiry status to activated if exists + $inquiry = Inquiry::on('sqlite')->where('email', $setupToken->email)->first(); + if ($inquiry) { + $inquiry->update(['status' => 'activated']); + } + + RateLimiter::clear($throttleKey); + + return redirect()->route('login')->with('success', 'Your administrator account has been activated successfully! You may now log in.'); + } +} diff --git a/app/Http/Middleware/CheckInstallation.php b/app/Http/Middleware/CheckInstallation.php index 8660aaeb3..90fd351ae 100644 --- a/app/Http/Middleware/CheckInstallation.php +++ b/app/Http/Middleware/CheckInstallation.php @@ -13,8 +13,9 @@ class CheckInstallation */ public function handle(Request $request, Closure $next) { - // Skip check for installer routes, API routes, and static assets + // Skip check for installer routes, API routes, tenant subdomains, and static assets if ( + (function_exists('tenant') && tenant()) || $request->is('install/*') || $request->is('update/*') || $request->is('css/*') || diff --git a/app/Http/Middleware/CheckModuleAccess.php b/app/Http/Middleware/CheckModuleAccess.php new file mode 100644 index 000000000..fb87c119e --- /dev/null +++ b/app/Http/Middleware/CheckModuleAccess.php @@ -0,0 +1,40 @@ +where('enabled', true) + ->exists(); + + if (!$isModuleEnabled) { + if ($request->wantsJson() || $request->is('api/*')) { + return response()->json([ + 'success' => false, + 'message' => "The '{$moduleKey}' module is not enabled for your company subscription.", + ], 403); + } + + abort(403, "The '{$moduleKey}' module is not enabled for your company subscription."); + } + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/CheckPlanAccess.php b/app/Http/Middleware/CheckPlanAccess.php index f82f6b1b4..dd37d8170 100644 --- a/app/Http/Middleware/CheckPlanAccess.php +++ b/app/Http/Middleware/CheckPlanAccess.php @@ -16,6 +16,11 @@ class CheckPlanAccess if (!$user) { return $next($request); } + + // Tenants in isolated tenant databases have native access + if (function_exists('tenant') && tenant('id')) { + return $next($request); + } // Super admin has full access if ($user->isSuperAdmin()) { return $next($request); diff --git a/app/Http/Middleware/EnforceEmployeeLimit.php b/app/Http/Middleware/EnforceEmployeeLimit.php new file mode 100644 index 000000000..d6b0e7230 --- /dev/null +++ b/app/Http/Middleware/EnforceEmployeeLimit.php @@ -0,0 +1,40 @@ +first(); + + if ($entitlement && $entitlement->max_employees > 0) { + // Count current active employees in this tenant database + $currentCount = User::whereNotIn('type', ['superadmin', 'company'])->count(); + + if ($currentCount >= $entitlement->max_employees) { + if ($request->wantsJson()) { + return response()->json([ + 'success' => false, + 'message' => "Employee limit reached ({$entitlement->max_employees} staff max allowed under your plan). Cannot add more employees.", + ], 403); + } + + return redirect()->back()->withErrors([ + 'employee_limit' => "Employee limit reached ({$entitlement->max_employees} staff max allowed under your plan). Cannot add more employees.", + ]); + } + } + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/EnsureExecutiveRole.php b/app/Http/Middleware/EnsureExecutiveRole.php new file mode 100644 index 000000000..b772f5415 --- /dev/null +++ b/app/Http/Middleware/EnsureExecutiveRole.php @@ -0,0 +1,41 @@ +user(); + + if (!$user) { + abort(401, 'Unauthenticated.'); + } + + // Check if user has Executive role or type + $isExecutive = false; + + if (method_exists($user, 'hasRole') && $user->hasRole(['Executive', 'executive', 'Super Admin', 'company admin', 'company'])) { + $isExecutive = true; + } elseif (isset($user->type) && in_array(strtolower($user->type), ['executive', 'super admin', 'company admin', 'company'])) { + $isExecutive = true; + } elseif (isset($user->role) && in_array(strtolower($user->role), ['executive', 'super admin', 'company admin', 'company'])) { + $isExecutive = true; + } + + if (!$isExecutive) { + abort(403, 'Unauthorized access. Only Executive roles can manage paid subdomain inquiries and tenant provisioning.'); + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/EnsureTenantModuleEnabled.php b/app/Http/Middleware/EnsureTenantModuleEnabled.php new file mode 100644 index 000000000..5636f2d2c --- /dev/null +++ b/app/Http/Middleware/EnsureTenantModuleEnabled.php @@ -0,0 +1,51 @@ +header('X-Tenant')) { + $tenantId = $request->header('X-Tenant'); + } + + if ($tenantId) { + $isModuleEnabled = CentralTenantModule::where('tenant_id', $tenantId) + ->where('module_key', $moduleKey) + ->where('enabled', true) + ->exists(); + + // If central tenant_modules table is empty for this tenant, default to allowing or fallback + $hasAnyModulesConfigured = CentralTenantModule::where('tenant_id', $tenantId)->exists(); + + if ($hasAnyModulesConfigured && !$isModuleEnabled) { + if ($request->wantsJson() || $request->is('api/*')) { + return response()->json([ + 'success' => false, + 'message' => "The '{$moduleKey}' module is not enabled for your company subscription.", + ], 403); + } + + abort(403, "The '{$moduleKey}' module is not enabled for your company subscription."); + } + } + + return $next($request); + } +} diff --git a/app/Http/Middleware/HandleInertiaRequests.php b/app/Http/Middleware/HandleInertiaRequests.php index a23a9e825..d49d584e7 100644 --- a/app/Http/Middleware/HandleInertiaRequests.php +++ b/app/Http/Middleware/HandleInertiaRequests.php @@ -126,6 +126,15 @@ class HandleInertiaRequests extends Middleware } } + $tenantModules = []; + if (function_exists('tenant') && tenant()) { + try { + $tenantModules = \App\Models\TenantModule::pluck('enabled', 'module_key')->toArray(); + } catch (\Exception $e) { + // Table not created yet or fallback + } + } + return [ ...parent::share($request), 'name' => config('app.name'), @@ -133,7 +142,9 @@ class HandleInertiaRequests extends Middleware 'image_url' => config('app.url'), 'quote' => ['message' => trim($message), 'author' => trim($author)], 'csrf_token' => csrf_token(), + 'tenant_modules' => $tenantModules, 'auth' => [ + 'tenant_modules' => $tenantModules, 'user' => $request->user() ? array_merge( $request->user()->toArray(), [ diff --git a/app/Http/Middleware/IdentifyTenantIfNeeded.php b/app/Http/Middleware/IdentifyTenantIfNeeded.php new file mode 100644 index 000000000..1e36db32d --- /dev/null +++ b/app/Http/Middleware/IdentifyTenantIfNeeded.php @@ -0,0 +1,51 @@ +getHost(); + $centralDomains = config('tenancy.central_domains', ['127.0.0.1', 'localhost', 'hrm.test']); + + if (in_array($host, $centralDomains, true) || filter_var($host, FILTER_VALIDATE_IP)) { + if (class_exists(\Spatie\Permission\PermissionRegistrar::class)) { + app(\Spatie\Permission\PermissionRegistrar::class)->forgetCachedPermissions(); + } + return $next($request); + } + + try { + return app(InitializeTenancyByDomain::class)->handle($request, $next); + } catch (\Stancl\Tenancy\Exceptions\TenantDatabaseDoesNotExistException $e) { + $tenant = tenant(); + if ($tenant) { + $tenantId = $tenant->id; + $dbFile = database_path('tenant_' . $tenantId); + $dbFileSqlite = database_path('tenant_' . $tenantId . '.sqlite'); + if (!file_exists($dbFile)) { touch($dbFile); } + if (!file_exists($dbFileSqlite)) { touch($dbFileSqlite); } + + \Illuminate\Support\Facades\Artisan::call('migrate', [ + '--database' => 'tenant', + '--path' => [ + 'database/migrations/tenant', + 'database/migrations', + ], + '--force' => true, + ]); + + return app(InitializeTenancyByDomain::class)->handle($request, $next); + } + abort(503, 'Tenant database setup is incomplete.'); + } + } +} diff --git a/app/Http/Requests/Auth/LoginRequest.php b/app/Http/Requests/Auth/LoginRequest.php index ebb5bae9b..70532d8f2 100644 --- a/app/Http/Requests/Auth/LoginRequest.php +++ b/app/Http/Requests/Auth/LoginRequest.php @@ -53,16 +53,45 @@ class LoginRequest extends FormRequest public function authenticate(): void { $this->ensureIsNotRateLimited(); - if (! Auth::attempt($this->only('email', 'password'), $this->boolean('remember'))) { - RateLimiter::hit($this->throttleKey()); - throw ValidationException::withMessages([ - 'email' => __('auth.failed'), - ]); + // Enforce Subdomain & Tenant Domain Access Isolation BEFORE attempting auth + if (function_exists('tenant') && tenant()) { + $dbPath = database_path('tenant_' . tenant('id')); + config(['database.connections.tenant.database' => $dbPath]); + \Illuminate\Support\Facades\DB::purge('tenant'); + + $tenantUser = \App\Models\User::on('tenant')->where('email', $this->email)->first(); + if (!$tenantUser || !\Illuminate\Support\Facades\Hash::check($this->password, $tenantUser->password)) { + RateLimiter::hit($this->throttleKey()); + throw ValidationException::withMessages([ + 'email' => __('These credentials do not match our records for this subdomain.'), + ]); + } + + $currentTenantId = tenant('id'); + $tenantInquiry = \App\Models\Inquiry::on('sqlite')->where('desired_subdomain', $currentTenantId)->first(); + $allowedEmail = $tenantInquiry ? $tenantInquiry->email : tenant('email'); + + if ($tenantUser->type === 'company' && $allowedEmail && strtolower($tenantUser->email) !== strtolower($allowedEmail)) { + RateLimiter::hit($this->throttleKey()); + throw ValidationException::withMessages([ + 'email' => __('This account does not have administrator access to this subdomain.'), + ]); + } + + Auth::login($tenantUser, $this->boolean('remember')); + } else { + if (! Auth::attempt($this->only('email', 'password'), $this->boolean('remember'))) { + RateLimiter::hit($this->throttleKey()); + + throw ValidationException::withMessages([ + 'email' => __('auth.failed'), + ]); + } } - // Check if user account is inactive + $user = Auth::user(); - if ($user->status === 'inactive') { + if ($user && $user->status === 'inactive') { Auth::logout(); throw ValidationException::withMessages([ 'email' => __('Your account is inactive. Please contact administrator.'), diff --git a/app/Jobs/ProvisionTenantJob.php b/app/Jobs/ProvisionTenantJob.php new file mode 100644 index 000000000..24183b298 --- /dev/null +++ b/app/Jobs/ProvisionTenantJob.php @@ -0,0 +1,213 @@ +inquiry = $inquiry; + } + + public function handle(): void + { + try { + $this->inquiry->update(['status' => 'provisioning']); + + $tenantId = Str::slug($this->inquiry->desired_subdomain); + + // 1. Create or retrieve Tenant Record (Idempotent) + $tenant = Tenant::find($tenantId); + if (!$tenant) { + $tenant = Tenant::create([ + 'id' => $tenantId, + 'tenancy_db_name' => 'tenant_' . $tenantId, + 'company_name' => $this->inquiry->company_name, + 'email' => $this->inquiry->email, + ]); + } + + // 2. Create Subdomain Mapping + $domainHost = config('app.url_domain', parse_url(config('app.url'), PHP_URL_HOST) ?? 'localhost'); + $domainName = $tenantId . '.' . $domainHost; + \Stancl\Tenancy\Database\Models\Domain::firstOrCreate( + ['domain' => $domainName], + ['tenant_id' => $tenant->id] + ); + + // 3. Store Tenant Entitlements in Central DB + $requestedFeatures = $this->inquiry->requested_features ?? []; + if (empty($requestedFeatures)) { + $requestedFeatures = \App\Constants\ModuleContract::getAllInquiryKeys(); + } + + TenantEntitlement::updateOrCreate( + ['tenant_id' => $tenantId], + [ + 'max_employees' => (int) ($this->inquiry->employee_count ?? 25), + 'enabled_modules' => $requestedFeatures, + 'source_inquiry_id' => $this->inquiry->id, + ] + ); + + // 4. Store tenant module configurations in Central DB + foreach (\App\Constants\ModuleContract::MODULE_MAP as $inquiryKey => $config) { + $systemModuleKey = $config['module_key']; + $isEnabled = in_array($inquiryKey, $requestedFeatures); + + \App\Models\CentralTenantModule::on('sqlite')->updateOrCreate( + [ + 'tenant_id' => $tenantId, + 'module_key' => $systemModuleKey, + ], + [ + 'enabled' => $isEnabled, + 'enabled_at' => $isEnabled ? now() : null, + ] + ); + } + + // 5. Migrate Tenant DB & Seed Initial Setup Permission Matrix (NO HARDCODED DEFAULT PASSWORDS) + $dbFile = database_path('tenant_' . $tenantId); + $dbFileSqlite = database_path('tenant_' . $tenantId . '.sqlite'); + + if (app()->environment('testing')) { + if (file_exists($dbFile)) { @unlink($dbFile); } + if (file_exists($dbFileSqlite)) { @unlink($dbFileSqlite); } + } + + if (!file_exists($dbFile)) { touch($dbFile); } + if (!file_exists($dbFileSqlite)) { touch($dbFileSqlite); } + + $tenant->run(function () use ($dbFile, $requestedFeatures) { + config([ + 'database.connections.tenant.database' => $dbFile, + 'database.default' => 'tenant', + ]); + \Illuminate\Support\Facades\DB::purge('tenant'); + \Illuminate\Support\Facades\DB::reconnect('tenant'); + \Illuminate\Support\Facades\DB::setDefaultConnection('tenant'); + + \Illuminate\Support\Facades\Artisan::call('migrate', [ + '--database' => 'tenant', + '--path' => [ + 'database/migrations/tenant', + 'database/migrations', + ], + '--force' => true, + ]); + + // Seed/update initial admin user using the exact inquiry email and default password 12345678 + $user = \App\Models\User::updateOrCreate( + ['email' => $this->inquiry->email], + [ + 'name' => $this->inquiry->contact_name, + 'password' => Hash::make('12345678'), + 'type' => 'company', + 'status' => 'active', + 'is_enable_login' => 1, + 'email_verified_at' => now(), + ] + ); + + // Ensure company role exists and is assigned + $companyRole = \Spatie\Permission\Models\Role::findOrCreate('company', 'web'); + if (method_exists($user, 'assignRole')) { + $user->assignRole($companyRole); + } + + // Seed tenant_modules table inside tenant DB + foreach (\App\Constants\ModuleContract::MODULE_MAP as $inquiryKey => $config) { + $systemModuleKey = $config['module_key']; + $isEnabled = in_array($inquiryKey, $requestedFeatures); + + \Illuminate\Support\Facades\DB::connection('tenant')->table('tenant_modules')->updateOrInsert( + ['module_key' => $systemModuleKey], + [ + 'enabled' => $isEnabled ? 1 : 0, + 'enabled_at' => $isEnabled ? now() : null, + 'created_at' => now(), + 'updated_at' => now(), + ] + ); + } + + // Store max_employees setting inside tenant DB + \Illuminate\Support\Facades\DB::connection('tenant')->table('settings')->updateOrInsert( + ['key' => 'max_employees'], + [ + 'user_id' => $user->id, + 'value' => (string) ($this->inquiry->employee_count ?? 25), + 'created_at' => now(), + 'updated_at' => now(), + ] + ); + + // Grant permissions for enabled modules + $allowedPermissions = \App\Constants\ModuleContract::getPermissionsForInquiryKeys($requestedFeatures); + if (method_exists($user, 'syncPermissions')) { + foreach ($allowedPermissions as $permissionName) { + \Spatie\Permission\Models\Permission::findOrCreate($permissionName, 'web'); + } + $user->syncPermissions($allowedPermissions); + } + }); + + $centralConn = config('tenancy.database.central_connection', 'sqlite'); + \Illuminate\Support\Facades\DB::setDefaultConnection($centralConn); + config(['database.default' => $centralConn]); + \Illuminate\Support\Facades\DB::purge('tenant'); + + // 6. Generate One-Time Hashed Setup Token (Valid 24 Hours) + $rawToken = Str::random(40); + $tokenHash = hash('sha256', $rawToken); + + \App\Models\TenantSetupToken::create([ + 'tenant_id' => $tenantId, + 'email' => $this->inquiry->email, + 'token_hash' => $tokenHash, + 'expires_at' => now()->addHours(24), + ]); + + // Construct setup link: https://{subdomain}.domain.com/setup-admin?token={rawToken} + $scheme = parse_url(config('app.url'), PHP_URL_SCHEME) ?? 'http'; + $setupUrl = "{$scheme}://{$domainName}/setup-admin?token={$rawToken}"; + + // 7. Dispatch Email Invitation + try { + Mail::to($this->inquiry->email)->send(new \App\Mail\TenantSetupInvitationMail($this->inquiry->company_name, $setupUrl)); + } catch (\Exception $mailEx) { + Log::warning("Could not send setup invitation email to {$this->inquiry->email}: " . $mailEx->getMessage()); + } + + // 8. Update Inquiry Status to active + $this->inquiry->update([ + 'status' => 'active', + ]); + + Log::info("Successfully provisioned tenant [{$tenantId}] & dispatched setup token invitation for inquiry ID: {$this->inquiry->id}"); + } catch (\Exception $e) { + Log::error("Failed to provision tenant for inquiry ID: {$this->inquiry->id}. Error: " . $e->getMessage()); + $this->inquiry->update([ + 'status' => 'pending_payment_approval', + 'rejection_reason' => 'Provisioning Error: ' . $e->getMessage(), + ]); + throw $e; + } + } +} diff --git a/app/Mail/InquiryVerificationCodeMail.php b/app/Mail/InquiryVerificationCodeMail.php new file mode 100644 index 000000000..2a8f4defe --- /dev/null +++ b/app/Mail/InquiryVerificationCodeMail.php @@ -0,0 +1,37 @@ +companyName = $companyName; + $this->verificationCode = $verificationCode; + } + + public function envelope(): Envelope + { + return new Envelope( + subject: 'Verification Code for Subdomain Inquiry - ' . $this->companyName, + ); + } + + public function content(): Content + { + return new Content( + markdown: 'emails.inquiry-verification-code', + ); + } +} diff --git a/app/Mail/TenantSetupInvitationMail.php b/app/Mail/TenantSetupInvitationMail.php new file mode 100644 index 000000000..2e80dddd7 --- /dev/null +++ b/app/Mail/TenantSetupInvitationMail.php @@ -0,0 +1,37 @@ +companyName = $companyName; + $this->setupUrl = $setupUrl; + } + + public function envelope(): Envelope + { + return new Envelope( + subject: 'Set Up Your Administrator Account for ' . $this->companyName, + ); + } + + public function content(): Content + { + return new Content( + markdown: 'emails.tenant-setup-invitation', + ); + } +} diff --git a/app/Models/BaseAuthenticatable.php b/app/Models/BaseAuthenticatable.php index 8059f51e6..15378c8dd 100644 --- a/app/Models/BaseAuthenticatable.php +++ b/app/Models/BaseAuthenticatable.php @@ -9,6 +9,20 @@ class BaseAuthenticatable extends Authenticatable { use AutoApplyPermissionCheck; + /** + * Get the database connection name for the model. + * + * @return string|null + */ + public function getConnectionName() + { + if (function_exists('tenant') && tenant()) { + return 'tenant'; + } + + return parent::getConnectionName(); + } + /** * Scope a query to apply permission-based filtering * diff --git a/app/Models/BaseModel.php b/app/Models/BaseModel.php index 6bf9823a6..518a229f9 100644 --- a/app/Models/BaseModel.php +++ b/app/Models/BaseModel.php @@ -9,6 +9,20 @@ class BaseModel extends Model { use AutoApplyPermissionCheck; + /** + * Get the database connection name for the model. + * + * @return string|null + */ + public function getConnectionName() + { + if (function_exists('tenant') && tenant()) { + return 'tenant'; + } + + return parent::getConnectionName(); + } + /** * Scope a query to apply permission-based filtering * diff --git a/app/Models/CentralTenantModule.php b/app/Models/CentralTenantModule.php new file mode 100644 index 000000000..7a94b89c0 --- /dev/null +++ b/app/Models/CentralTenantModule.php @@ -0,0 +1,22 @@ + 'boolean', + 'enabled_at' => 'datetime', + ]; +} diff --git a/app/Models/Inquiry.php b/app/Models/Inquiry.php new file mode 100644 index 000000000..1d72e0990 --- /dev/null +++ b/app/Models/Inquiry.php @@ -0,0 +1,37 @@ + 'array', + 'email_verified_at' => 'datetime', + 'approved_at' => 'datetime', + ]; + + public function approver() + { + return $this->belongsTo(User::class, 'approved_by_user_id'); + } +} diff --git a/app/Models/Tenant.php b/app/Models/Tenant.php new file mode 100644 index 000000000..535c6f924 --- /dev/null +++ b/app/Models/Tenant.php @@ -0,0 +1,13 @@ + 'integer', + 'enabled_modules' => 'array', + 'source_inquiry_id' => 'integer', + ]; +} diff --git a/app/Models/TenantModule.php b/app/Models/TenantModule.php new file mode 100644 index 000000000..a3125b72e --- /dev/null +++ b/app/Models/TenantModule.php @@ -0,0 +1,21 @@ + 'boolean', + 'enabled_at' => 'datetime', + ]; +} diff --git a/app/Models/TenantSetupToken.php b/app/Models/TenantSetupToken.php new file mode 100644 index 000000000..a9f63e24d --- /dev/null +++ b/app/Models/TenantSetupToken.php @@ -0,0 +1,37 @@ + 'datetime', + 'used_at' => 'datetime', + ]; + + public function isExpired(): bool + { + return $this->expires_at->isPast(); + } + + public function isUsed(): bool + { + return !is_null($this->used_at); + } +} diff --git a/app/Providers/TenancyServiceProvider.php b/app/Providers/TenancyServiceProvider.php new file mode 100644 index 000000000..bdad7c586 --- /dev/null +++ b/app/Providers/TenancyServiceProvider.php @@ -0,0 +1,143 @@ + [], + Events\TenantCreated::class => [], + Events\SavingTenant::class => [], + Events\TenantSaved::class => [], + Events\UpdatingTenant::class => [], + Events\TenantUpdated::class => [], + Events\DeletingTenant::class => [], + Events\TenantDeleted::class => [ + JobPipeline::make([ + Jobs\DeleteDatabase::class, + ])->send(function (Events\TenantDeleted $event) { + return $event->tenant; + })->shouldBeQueued(false), // `false` by default, but you probably want to make this `true` for production. + ], + + // Domain events + Events\CreatingDomain::class => [], + Events\DomainCreated::class => [], + Events\SavingDomain::class => [], + Events\DomainSaved::class => [], + Events\UpdatingDomain::class => [], + Events\DomainUpdated::class => [], + Events\DeletingDomain::class => [], + Events\DomainDeleted::class => [], + + // Database events + Events\DatabaseCreated::class => [], + Events\DatabaseMigrated::class => [], + Events\DatabaseSeeded::class => [], + Events\DatabaseRolledBack::class => [], + Events\DatabaseDeleted::class => [], + + // Tenancy events + Events\InitializingTenancy::class => [], + Events\TenancyInitialized::class => [ + Listeners\BootstrapTenancy::class, + function () { + if (class_exists(\Spatie\Permission\PermissionRegistrar::class)) { + app(\Spatie\Permission\PermissionRegistrar::class)->forgetCachedPermissions(); + } + }, + ], + + Events\EndingTenancy::class => [], + Events\TenancyEnded::class => [ + Listeners\RevertToCentralContext::class, + function () { + if (class_exists(\Spatie\Permission\PermissionRegistrar::class)) { + app(\Spatie\Permission\PermissionRegistrar::class)->forgetCachedPermissions(); + } + }, + ], + + Events\BootstrappingTenancy::class => [], + Events\TenancyBootstrapped::class => [], + Events\RevertingToCentralContext::class => [], + Events\RevertedToCentralContext::class => [], + + // Resource syncing + Events\SyncedResourceSaved::class => [ + Listeners\UpdateSyncedResource::class, + ], + + // Fired only when a synced resource is changed in a different DB than the origin DB (to avoid infinite loops) + Events\SyncedResourceChangedInForeignDatabase::class => [], + ]; + } + + public function register() + { + // + } + + public function boot() + { + $this->bootEvents(); + $this->mapRoutes(); + + $this->makeTenancyMiddlewareHighestPriority(); + } + + protected function bootEvents() + { + foreach ($this->events() as $event => $listeners) { + foreach ($listeners as $listener) { + if ($listener instanceof JobPipeline) { + $listener = $listener->toListener(); + } + + Event::listen($event, $listener); + } + } + } + + protected function mapRoutes() + { + $this->app->booted(function () { + if (file_exists(base_path('routes/tenant.php'))) { + Route::namespace(static::$controllerNamespace) + ->group(base_path('routes/tenant.php')); + } + }); + } + + protected function makeTenancyMiddlewareHighestPriority() + { + $tenancyMiddleware = [ + Middleware\InitializeTenancyByDomain::class, + Middleware\InitializeTenancyBySubdomain::class, + Middleware\InitializeTenancyByDomainOrSubdomain::class, + Middleware\InitializeTenancyByPath::class, + Middleware\InitializeTenancyByRequestData::class, + ]; + + foreach (array_reverse($tenancyMiddleware) as $middleware) { + $this->app[\Illuminate\Contracts\Http\Kernel::class]->prependToMiddlewarePriority($middleware); + } + } +} diff --git a/bootstrap/app.php b/bootstrap/app.php index dc9fead30..7513bab4d 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -21,7 +21,9 @@ return Application::configure(basePath: dirname(__DIR__)) $middleware->append(\Illuminate\Http\Middleware\HandleCors::class); $middleware->encryptCookies(except: ['appearance']); - $middleware->web(append: [ + $middleware->web(prepend: [ + \App\Http\Middleware\IdentifyTenantIfNeeded::class, + ], append: [ CheckInstallation::class, HandleAppearance::class, ShareGlobalSettings::class, @@ -41,6 +43,8 @@ return Application::configure(basePath: dirname(__DIR__)) 'setting' => \App\Http\Middleware\SettingMiddleware::class, 'checksaas' => \App\Http\Middleware\CheckSaas::class, 'career.shared' => \App\Http\Middleware\CareerSharedDataMiddleware::class, + 'employee.limit' => \App\Http\Middleware\EnforceEmployeeLimit::class, + 'module' => \App\Http\Middleware\CheckModuleAccess::class, ]); $middleware->validateCsrfTokens( diff --git a/bootstrap/providers.php b/bootstrap/providers.php index 9fa93bd60..f486aed79 100644 --- a/bootstrap/providers.php +++ b/bootstrap/providers.php @@ -3,5 +3,6 @@ return [ App\Providers\AppServiceProvider::class, App\Providers\EventServiceProvider::class, + App\Providers\TenancyServiceProvider::class, Paytabscom\Laravel_paytabs\PaypageServiceProvider::class, ]; diff --git a/composer.json b/composer.json index 8e327aa43..490439c73 100644 --- a/composer.json +++ b/composer.json @@ -37,6 +37,7 @@ "simplesoftwareio/simple-qrcode": "^4.2", "spatie/laravel-medialibrary": "^11.13", "spatie/laravel-permission": "^6.18", + "stancl/tenancy": "^3.10", "stripe/stripe-php": "^17.3", "tightenco/ziggy": "^2.4", "whichbrowser/parser": "^2.1", diff --git a/composer.lock b/composer.lock index 67f8af4f5..f4ba12ebe 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "8ab950d1423fc62f4b068ec5f9e42451", + "content-hash": "d7a91071c1f611578b4e37d16c2ca738", "packages": [ { "name": "authorizenet/authorizenet", @@ -2345,6 +2345,59 @@ ], "time": "2025-03-06T22:45:56+00:00" }, + { + "name": "facade/ignition-contracts", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/facade/ignition-contracts.git", + "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267", + "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267", + "shasum": "" + }, + "require": { + "php": "^7.3|^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^v2.15.8", + "phpunit/phpunit": "^9.3.11", + "vimeo/psalm": "^3.17.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Facade\\IgnitionContracts\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Freek Van der Herten", + "email": "freek@spatie.be", + "homepage": "https://flareapp.io", + "role": "Developer" + } + ], + "description": "Solution contracts for Ignition", + "homepage": "https://github.com/facade/ignition-contracts", + "keywords": [ + "contracts", + "flare", + "ignition" + ], + "support": { + "issues": "https://github.com/facade/ignition-contracts/issues", + "source": "https://github.com/facade/ignition-contracts/tree/1.0.2" + }, + "time": "2020-10-16T08:27:54+00:00" + }, { "name": "fedapay/fedapay-php", "version": "0.4.8", @@ -9619,6 +9672,179 @@ ], "time": "2026-06-22T07:55:44+00:00" }, + { + "name": "stancl/jobpipeline", + "version": "v1.9.0", + "source": { + "type": "git", + "url": "https://github.com/archtechx/jobpipeline.git", + "reference": "be9481dff1e3d50d90ad4f618cdca5ec4d763ec1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/archtechx/jobpipeline/zipball/be9481dff1e3d50d90ad4f618cdca5ec4d763ec1", + "reference": "be9481dff1e3d50d90ad4f618cdca5ec4d763ec1", + "shasum": "" + }, + "require": { + "illuminate/support": "^10.0|^11.0|^12.0|^13.0", + "php": "^8.0" + }, + "require-dev": { + "ext-redis": "*", + "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0", + "spatie/valuestore": "^1.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Stancl\\JobPipeline\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Samuel Štancl", + "email": "samuel.stancl@gmail.com" + } + ], + "description": "Turn any series of jobs into Laravel listeners.", + "support": { + "issues": "https://github.com/archtechx/jobpipeline/issues", + "source": "https://github.com/archtechx/jobpipeline/tree/v1.9.0" + }, + "time": "2026-03-18T16:48:46+00:00" + }, + { + "name": "stancl/tenancy", + "version": "v3.10.1", + "source": { + "type": "git", + "url": "https://github.com/archtechx/tenancy.git", + "reference": "c4cf5dc6d557fb7404feb11a6ddfe0985ddd9526" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/archtechx/tenancy/zipball/c4cf5dc6d557fb7404feb11a6ddfe0985ddd9526", + "reference": "c4cf5dc6d557fb7404feb11a6ddfe0985ddd9526", + "shasum": "" + }, + "require": { + "ext-json": "*", + "facade/ignition-contracts": "^1.0.2", + "illuminate/support": "^10.0|^11.0|^12.0|^13.0", + "php": "^8.0", + "ramsey/uuid": "^4.7.3", + "stancl/jobpipeline": "^1.8.0", + "stancl/virtualcolumn": "^1.5.0" + }, + "require-dev": { + "doctrine/dbal": "^3.6.0", + "laravel/framework": "^10.0|^11.0|^12.0|^13.0", + "league/flysystem-aws-s3-v3": "^3.12.2", + "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0", + "spatie/valuestore": "^1.3.2" + }, + "type": "library", + "extra": { + "laravel": { + "aliases": { + "Tenancy": "Stancl\\Tenancy\\Facades\\Tenancy", + "GlobalCache": "Stancl\\Tenancy\\Facades\\GlobalCache" + }, + "providers": [ + "Stancl\\Tenancy\\TenancyServiceProvider" + ] + } + }, + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Stancl\\Tenancy\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Samuel Štancl", + "email": "samuel.stancl@gmail.com" + } + ], + "description": "Automatic multi-tenancy for your Laravel application.", + "keywords": [ + "laravel", + "multi-database", + "multi-tenancy", + "tenancy" + ], + "support": { + "issues": "https://github.com/archtechx/tenancy/issues", + "source": "https://github.com/archtechx/tenancy/tree/v3.10.1" + }, + "funding": [ + { + "url": "https://tenancyforlaravel.com/donate", + "type": "custom" + }, + { + "url": "https://github.com/stancl", + "type": "github" + } + ], + "time": "2026-08-05T03:57:48+00:00" + }, + { + "name": "stancl/virtualcolumn", + "version": "v1.5.0", + "source": { + "type": "git", + "url": "https://github.com/archtechx/virtualcolumn.git", + "reference": "75718edcfeeb19abc1970f5395043f7d43cce5bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/archtechx/virtualcolumn/zipball/75718edcfeeb19abc1970f5395043f7d43cce5bc", + "reference": "75718edcfeeb19abc1970f5395043f7d43cce5bc", + "shasum": "" + }, + "require": { + "illuminate/database": ">=10.0", + "illuminate/support": ">=10.0" + }, + "require-dev": { + "orchestra/testbench": ">=8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Stancl\\VirtualColumn\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Samuel Štancl", + "email": "samuel.stancl@gmail.com" + } + ], + "description": "Eloquent virtual column.", + "support": { + "issues": "https://github.com/archtechx/virtualcolumn/issues", + "source": "https://github.com/archtechx/virtualcolumn/tree/v1.5.0" + }, + "time": "2025-02-25T13:12:44+00:00" + }, { "name": "stripe/stripe-php", "version": "v17.6.0", diff --git a/config/database.php b/config/database.php index d63d1c36e..f703900ca 100644 --- a/config/database.php +++ b/config/database.php @@ -42,6 +42,20 @@ return [ 'synchronous' => null, ], + 'tenant' => [ + 'driver' => 'sqlite', + 'database' => database_path('tenant.sqlite'), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + + 'tenant_template' => [ + 'driver' => 'sqlite', + 'database' => database_path('tenant.sqlite'), + 'prefix' => '', + 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), + ], + 'mysql' => [ 'driver' => 'mysql', 'url' => env('DB_URL'), diff --git a/config/mail.php b/config/mail.php index 756305b3c..d004e95b9 100644 --- a/config/mail.php +++ b/config/mail.php @@ -47,6 +47,13 @@ return [ 'password' => env('MAIL_PASSWORD'), 'timeout' => null, 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)), + 'stream' => [ + 'ssl' => [ + 'verify_peer' => false, + 'verify_peer_name' => false, + 'allow_self_signed' => true, + ], + ], ], 'ses' => [ diff --git a/config/tenancy.php b/config/tenancy.php new file mode 100644 index 000000000..af90df9b8 --- /dev/null +++ b/config/tenancy.php @@ -0,0 +1,203 @@ + App\Models\Tenant::class, + 'id_generator' => Stancl\Tenancy\UUIDGenerator::class, + + 'domain_model' => Domain::class, + + /** + * The list of domains hosting your central app. + * + * Only relevant if you're using the domain or subdomain identification middleware. + */ + 'central_domains' => [ + '127.0.0.1', + 'localhost', + 'hrm.test', + '192.168.254.109', + $_SERVER['SERVER_ADDR'] ?? null, + ], + + /** + * Tenancy bootstrappers are executed when tenancy is initialized. + * Their responsibility is making Laravel features tenant-aware. + * + * To configure their behavior, see the config keys below. + */ + 'bootstrappers' => [ + Stancl\Tenancy\Bootstrappers\DatabaseTenancyBootstrapper::class, + Stancl\Tenancy\Bootstrappers\CacheTenancyBootstrapper::class, + Stancl\Tenancy\Bootstrappers\FilesystemTenancyBootstrapper::class, + Stancl\Tenancy\Bootstrappers\QueueTenancyBootstrapper::class, + // Stancl\Tenancy\Bootstrappers\RedisTenancyBootstrapper::class, // Note: phpredis is needed + ], + + /** + * Database tenancy config. Used by DatabaseTenancyBootstrapper. + */ + 'database' => [ + 'central_connection' => env('DB_CONNECTION', 'central'), + + /** + * Connection used as a "template" for the dynamically created tenant database connection. + * Note: don't name your template connection tenant. That name is reserved by package. + */ + 'template_tenant_connection' => 'tenant_template', + + /** + * Tenant database names are created like this: + * prefix + tenant_id + suffix. + */ + 'prefix' => 'tenant', + 'suffix' => '', + + /** + * TenantDatabaseManagers are classes that handle the creation & deletion of tenant databases. + */ + 'managers' => [ + 'sqlite' => Stancl\Tenancy\TenantDatabaseManagers\SQLiteDatabaseManager::class, + 'mysql' => Stancl\Tenancy\TenantDatabaseManagers\MySQLDatabaseManager::class, + 'mariadb' => Stancl\Tenancy\TenantDatabaseManagers\MySQLDatabaseManager::class, + 'pgsql' => Stancl\Tenancy\TenantDatabaseManagers\PostgreSQLDatabaseManager::class, + + /** + * Use this database manager for MySQL to have a DB user created for each tenant database. + * You can customize the grants given to these users by changing the $grants property. + */ + // 'mysql' => Stancl\Tenancy\TenantDatabaseManagers\PermissionControlledMySQLDatabaseManager::class, + + /** + * Disable the pgsql manager above, and enable the one below if you + * want to separate tenant DBs by schemas rather than databases. + */ + // 'pgsql' => Stancl\Tenancy\TenantDatabaseManagers\PostgreSQLSchemaManager::class, // Separate by schema instead of database + ], + ], + + /** + * Cache tenancy config. Used by CacheTenancyBootstrapper. + * + * This works for all Cache facade calls, cache() helper + * calls and direct calls to injected cache stores. + * + * Each key in cache will have a tag applied on it. This tag is used to + * scope the cache both when writing to it and when reading from it. + * + * You can clear cache selectively by specifying the tag. + */ + 'cache' => [ + 'tag_base' => 'tenant', // This tag_base, followed by the tenant_id, will form a tag that will be applied on each cache call. + ], + + /** + * Filesystem tenancy config. Used by FilesystemTenancyBootstrapper. + * https://tenancyforlaravel.com/docs/v3/tenancy-bootstrappers/#filesystem-tenancy-boostrapper. + */ + 'filesystem' => [ + /** + * Each disk listed in the 'disks' array will be suffixed by the suffix_base, followed by the tenant_id. + */ + 'suffix_base' => 'tenant', + 'disks' => [ + 'local', + 'public', + // 's3', + ], + + /** + * Use this for local disks. + * + * See https://tenancyforlaravel.com/docs/v3/tenancy-bootstrappers/#filesystem-tenancy-boostrapper + */ + 'root_override' => [ + // Disks whose roots should be overridden after storage_path() is suffixed. + 'local' => '%storage_path%/app/', + 'public' => '%storage_path%/app/public/', + ], + + /** + * Should storage_path() be suffixed. + * + * Note: Disabling this will likely break local disk tenancy. Only disable this if you're using an external file storage service like S3. + * + * For the vast majority of applications, this feature should be enabled. But in some + * edge cases, it can cause issues (like using Passport with Vapor - see #196), so + * you may want to disable this if you are experiencing these edge case issues. + */ + 'suffix_storage_path' => true, + + /** + * By default, asset() calls are made multi-tenant too. You can use global_asset() and mix() + * for global, non-tenant-specific assets. However, you might have some issues when using + * packages that use asset() calls inside the tenant app. To avoid such issues, you can + * disable asset() helper tenancy and explicitly use tenant_asset() calls in places + * where you want to use tenant-specific assets (product images, avatars, etc). + */ + 'asset_helper_tenancy' => false, + ], + + /** + * Redis tenancy config. Used by RedisTenancyBootstrapper. + * + * Note: You need phpredis to use Redis tenancy. + * + * Note: You don't need to use this if you're using Redis only for cache. + * Redis tenancy is only relevant if you're making direct Redis calls, + * either using the Redis facade or by injecting it as a dependency. + */ + 'redis' => [ + 'prefix_base' => 'tenant', // Each key in Redis will be prepended by this prefix_base, followed by the tenant id. + 'prefixed_connections' => [ // Redis connections whose keys are prefixed, to separate one tenant's keys from another. + // 'default', + ], + ], + + /** + * Features are classes that provide additional functionality + * not needed for tenancy to be bootstrapped. They are run + * regardless of whether tenancy has been initialized. + * + * See the documentation page for each class to + * understand which ones you want to enable. + */ + 'features' => [ + // Stancl\Tenancy\Features\UserImpersonation::class, + // Stancl\Tenancy\Features\TelescopeTags::class, + // Stancl\Tenancy\Features\UniversalRoutes::class, + // Stancl\Tenancy\Features\TenantConfig::class, // https://tenancyforlaravel.com/docs/v3/features/tenant-config + // Stancl\Tenancy\Features\CrossDomainRedirect::class, // https://tenancyforlaravel.com/docs/v3/features/cross-domain-redirect + // Stancl\Tenancy\Features\ViteBundler::class, + ], + + /** + * Should tenancy routes be registered. + * + * Tenancy routes include tenant asset routes. By default, this route is + * enabled. But it may be useful to disable them if you use external + * storage (e.g. S3 / Dropbox) or have a custom asset controller. + */ + 'routes' => true, + + /** + * Parameters used by the tenants:migrate command. + */ + 'migration_parameters' => [ + '--force' => true, // This needs to be true to run migrations in production. + '--path' => [database_path('migrations/tenant')], + '--realpath' => true, + ], + + /** + * Parameters used by the tenants:seed command. + */ + 'seeder_parameters' => [ + '--class' => 'DatabaseSeeder', // root seeder class + // '--force' => true, // This needs to be true to seed tenant databases in production + ], +]; diff --git a/database/migrations/2019_09_15_000010_create_tenants_table.php b/database/migrations/2019_09_15_000010_create_tenants_table.php new file mode 100644 index 000000000..ec7306513 --- /dev/null +++ b/database/migrations/2019_09_15_000010_create_tenants_table.php @@ -0,0 +1,37 @@ +string('id')->primary(); + + // your custom columns may go here + + $table->timestamps(); + $table->json('data')->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down(): void + { + Schema::dropIfExists('tenants'); + } +} diff --git a/database/migrations/2019_09_15_000020_create_domains_table.php b/database/migrations/2019_09_15_000020_create_domains_table.php new file mode 100644 index 000000000..77c1b88af --- /dev/null +++ b/database/migrations/2019_09_15_000020_create_domains_table.php @@ -0,0 +1,37 @@ +increments('id'); + $table->string('domain', 255)->unique(); + $table->string('tenant_id'); + + $table->timestamps(); + $table->foreign('tenant_id')->references('id')->on('tenants')->onUpdate('cascade')->onDelete('cascade'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down(): void + { + Schema::dropIfExists('domains'); + } +} diff --git a/database/migrations/2026_08_11_000001_create_tenant_entitlements_table.php b/database/migrations/2026_08_11_000001_create_tenant_entitlements_table.php new file mode 100644 index 000000000..40cede7e1 --- /dev/null +++ b/database/migrations/2026_08_11_000001_create_tenant_entitlements_table.php @@ -0,0 +1,33 @@ +id(); + $table->string('tenant_id')->index(); + $table->integer('max_employees')->default(10); + $table->json('enabled_modules')->nullable(); + $table->unsignedBigInteger('source_inquiry_id')->nullable()->index(); + $table->timestamps(); + }); + } + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('tenant_entitlements'); + } +}; diff --git a/database/migrations/2026_08_11_000002_create_tenant_setup_tokens_table.php b/database/migrations/2026_08_11_000002_create_tenant_setup_tokens_table.php new file mode 100644 index 000000000..d72c96b28 --- /dev/null +++ b/database/migrations/2026_08_11_000002_create_tenant_setup_tokens_table.php @@ -0,0 +1,34 @@ +id(); + $table->string('tenant_id')->index(); + $table->string('email')->index(); + $table->string('token_hash')->unique(); + $table->timestamp('expires_at'); + $table->timestamp('used_at')->nullable(); + $table->timestamps(); + }); + } + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('tenant_setup_tokens'); + } +}; diff --git a/database/migrations/2026_08_11_000003_update_inquiries_status_enum_to_string.php b/database/migrations/2026_08_11_000003_update_inquiries_status_enum_to_string.php new file mode 100644 index 000000000..47b6ccc53 --- /dev/null +++ b/database/migrations/2026_08_11_000003_update_inquiries_status_enum_to_string.php @@ -0,0 +1,33 @@ +string('status', 50)->default('pending_payment_approval')->change(); + }); + } + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + if (Schema::hasTable('inquiries')) { + Schema::table('inquiries', function (Blueprint $table) { + $table->string('status', 50)->default('pending_payment_approval')->change(); + }); + } + } +}; diff --git a/database/migrations/2026_08_11_103911_create_inquiries_table.php b/database/migrations/2026_08_11_103911_create_inquiries_table.php new file mode 100644 index 000000000..c9925a871 --- /dev/null +++ b/database/migrations/2026_08_11_103911_create_inquiries_table.php @@ -0,0 +1,39 @@ +id(); + $table->string('company_name'); + $table->string('contact_name'); + $table->string('email'); + $table->string('phone')->nullable(); + $table->string('desired_subdomain')->unique(); + $table->integer('employee_count')->default(10); + $table->text('notes')->nullable(); + $table->string('status', 50)->default('pending_payment_approval'); + $table->text('payment_reference')->nullable(); + $table->text('rejection_reason')->nullable(); + $table->foreignId('approved_by_user_id')->nullable()->constrained('users')->onDelete('set null'); + $table->timestamp('approved_at')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('inquiries'); + } +}; diff --git a/database/migrations/2026_08_11_134117_add_requested_features_to_inquiries_table.php b/database/migrations/2026_08_11_134117_add_requested_features_to_inquiries_table.php new file mode 100644 index 000000000..2911bd84e --- /dev/null +++ b/database/migrations/2026_08_11_134117_add_requested_features_to_inquiries_table.php @@ -0,0 +1,32 @@ +json('requested_features')->nullable()->after('employee_count'); + } + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('inquiries', function (Blueprint $table) { + if (Schema::hasColumn('inquiries', 'requested_features')) { + $table->dropColumn('requested_features'); + } + }); + } +}; diff --git a/database/migrations/2026_08_11_134500_add_email_verified_at_to_inquiries_table.php b/database/migrations/2026_08_11_134500_add_email_verified_at_to_inquiries_table.php new file mode 100644 index 000000000..e3009bf62 --- /dev/null +++ b/database/migrations/2026_08_11_134500_add_email_verified_at_to_inquiries_table.php @@ -0,0 +1,38 @@ +timestamp('email_verified_at')->nullable()->after('email'); + } + if (!Schema::hasColumn('inquiries', 'verification_code')) { + $table->string('verification_code', 10)->nullable()->after('email_verified_at'); + } + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('inquiries', function (Blueprint $table) { + if (Schema::hasColumn('inquiries', 'email_verified_at')) { + $table->dropColumn('email_verified_at'); + } + if (Schema::hasColumn('inquiries', 'verification_code')) { + $table->dropColumn('verification_code'); + } + }); + } +}; diff --git a/database/migrations/2026_08_11_143513_add_email_verified_at_to_inquiries_table.php b/database/migrations/2026_08_11_143513_add_email_verified_at_to_inquiries_table.php new file mode 100644 index 000000000..e57d7d794 --- /dev/null +++ b/database/migrations/2026_08_11_143513_add_email_verified_at_to_inquiries_table.php @@ -0,0 +1,28 @@ +id(); + $table->string('tenant_id'); + $table->string('module_key'); + $table->boolean('enabled')->default(true); + $table->timestamp('enabled_at')->nullable(); + $table->timestamps(); + + $table->unique(['tenant_id', 'module_key']); + }); + } + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('tenant_modules'); + } +}; diff --git a/database/migrations/tenant/0001_01_01_000000_create_users_table.php b/database/migrations/tenant/0001_01_01_000000_create_users_table.php new file mode 100644 index 000000000..42ab1b3e6 --- /dev/null +++ b/database/migrations/tenant/0001_01_01_000000_create_users_table.php @@ -0,0 +1,87 @@ +id(); + $table->string('name'); + $table->string('email')->unique(); + $table->timestamp('email_verified_at')->nullable(); + $table->string('password')->nullable(); + $table->rememberToken(); + $table->string('lang')->default('en')->nullable(); + $table->string('avatar')->nullable(); + $table->string('type', 20)->default('company'); + + // Saas Product Field + if (isSaas()) { + $table->unsignedBigInteger('plan_id')->nullable(); + $table->date('plan_expire_date')->nullable(); + $table->integer('requested_plan')->default(0); + $table->integer('plan_is_active')->default(1); + $table->float('storage_limit', 15, 2)->default(0.00); + $table->string('is_trial')->nullable(); + $table->integer('trial_day')->default(0); + $table->date('trial_expire_date')->nullable(); + $table->text('active_module')->nullable(); + $table->integer('referral_code')->default(0); + $table->integer('used_referral_code')->default(0); + $table->integer('commission_amount')->default(0); + } + + $table->integer('created_by')->default(0); + $table->string('mode')->default('light'); + $table->integer('is_enable_login')->default(1); + $table->integer('google2fa_enable')->default(0); + $table->text('google2fa_secret')->nullable(); + $table->string('status')->default('active'); + $table->timestamps(); + // Foreign keys will be added in a separate migration after all tables are created + }); + + Schema::create('password_reset_tokens', function (Blueprint $table) { + $table->string('email')->primary(); + $table->string('token'); + $table->timestamp('created_at')->nullable(); + }); + + Schema::create('sessions', function (Blueprint $table) { + $table->string('id')->primary(); + $table->foreignId('user_id')->nullable()->index(); + $table->string('ip_address', 45)->nullable(); + $table->text('user_agent')->nullable(); + $table->longText('payload'); + $table->integer('last_activity')->index(); + }); + + if (isSaas() && Schema::hasColumn('users', 'referral_code')) { + $users = DB::table('users')->where('type', 'company')->get(); + foreach ($users as $user) { + do { + $code = rand(100000, 999999); + } while (DB::table('users')->where('referral_code', $code)->exists()); + DB::table('users')->where('id', $user->id)->update(['referral_code' => $code]); + } + } + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('users'); + Schema::dropIfExists('password_reset_tokens'); + Schema::dropIfExists('sessions'); + } +}; diff --git a/database/migrations/tenant/2025_05_25_000000_create_permission_tables.php b/database/migrations/tenant/2025_05_25_000000_create_permission_tables.php new file mode 100644 index 000000000..7bfeb6b03 --- /dev/null +++ b/database/migrations/tenant/2025_05_25_000000_create_permission_tables.php @@ -0,0 +1,145 @@ +bigIncrements('id'); // permission id + $table->string('module')->nullable(); + $table->string('name'); // For MySQL 8.0 use string('name', 125); + $table->string('guard_name'); // For MySQL 8.0 use string('guard_name', 125); + $table->string('label')->nullable(); + $table->text('description')->nullable(); + $table->timestamps(); + + $table->unique(['name', 'guard_name']); + }); + + Schema::create($tableNames['roles'], function (Blueprint $table) use ($teams, $columnNames) { + $table->bigIncrements('id'); // role id + if ($teams || config('permission.teams')) { + $table->unsignedBigInteger($columnNames['team_foreign_key'])->nullable(); + $table->index($columnNames['team_foreign_key'], 'roles_team_foreign_key_index'); + } + $table->string('name'); // For MySQL 8.0 use string('name', 125); + $table->string('guard_name'); // For MySQL 8.0 use string('guard_name', 125); + $table->string('label')->nullable(); + $table->text('description')->nullable(); + $table->unsignedBigInteger('created_by')->nullable(); + $table->timestamps(); + if ($teams || config('permission.teams')) { + $table->unique([$columnNames['team_foreign_key'], 'name', 'guard_name']); + } else { + //$table->unique(['guard_name']); + } + + $table->foreign('created_by')->references('id')->on('users')->onDelete('set null'); + }); + + Schema::create($tableNames['model_has_permissions'], function (Blueprint $table) use ($tableNames, $columnNames, $pivotPermission, $teams) { + $table->unsignedBigInteger($pivotPermission); + + $table->string('model_type'); + $table->unsignedBigInteger($columnNames['model_morph_key']); + $table->index([$columnNames['model_morph_key'], 'model_type'], 'model_has_permissions_model_id_model_type_index'); + + $table->foreign($pivotPermission) + ->references('id') // permission id + ->on($tableNames['permissions']) + ->onDelete('cascade'); + if ($teams) { + $table->unsignedBigInteger($columnNames['team_foreign_key']); + $table->index($columnNames['team_foreign_key'], 'model_has_permissions_team_foreign_key_index'); + + $table->primary([$columnNames['team_foreign_key'], $pivotPermission, $columnNames['model_morph_key'], 'model_type'], + 'model_has_permissions_permission_model_type_primary'); + } else { + $table->primary([$pivotPermission, $columnNames['model_morph_key'], 'model_type'], + 'model_has_permissions_permission_model_type_primary'); + } + }); + + Schema::create($tableNames['model_has_roles'], function (Blueprint $table) use ($tableNames, $columnNames, $pivotRole, $teams) { + $table->unsignedBigInteger($pivotRole); + + $table->string('model_type'); + $table->unsignedBigInteger($columnNames['model_morph_key']); + $table->index([$columnNames['model_morph_key'], 'model_type'], 'model_has_roles_model_id_model_type_index'); + + $table->foreign($pivotRole) + ->references('id') // role id + ->on($tableNames['roles']) + ->onDelete('cascade'); + if ($teams) { + $table->unsignedBigInteger($columnNames['team_foreign_key']); + $table->index($columnNames['team_foreign_key'], 'model_has_roles_team_foreign_key_index'); + + $table->primary([$columnNames['team_foreign_key'], $pivotRole, $columnNames['model_morph_key'], 'model_type'], + 'model_has_roles_role_model_type_primary'); + } else { + $table->primary([$pivotRole, $columnNames['model_morph_key'], 'model_type'], + 'model_has_roles_role_model_type_primary'); + } + }); + + Schema::create($tableNames['role_has_permissions'], function (Blueprint $table) use ($tableNames, $pivotRole, $pivotPermission) { + $table->unsignedBigInteger($pivotPermission); + $table->unsignedBigInteger($pivotRole); + + $table->foreign($pivotPermission) + ->references('id') // permission id + ->on($tableNames['permissions']) + ->onDelete('cascade'); + + $table->foreign($pivotRole) + ->references('id') // role id + ->on($tableNames['roles']) + ->onDelete('cascade'); + + $table->primary([$pivotPermission, $pivotRole], 'role_has_permissions_permission_id_role_id_primary'); + }); + + app('cache') + ->store(config('permission.cache.store') != 'default' ? config('permission.cache.store') : null) + ->forget(config('permission.cache.key')); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + $tableNames = config('permission.table_names'); + + if (empty($tableNames)) { + throw new \Exception('Error: config/permission.php not found and defaults could not be merged. Please publish the package configuration before proceeding, or drop the tables manually.'); + } + + Schema::drop($tableNames['role_has_permissions']); + Schema::drop($tableNames['model_has_roles']); + Schema::drop($tableNames['model_has_permissions']); + Schema::drop($tableNames['roles']); + Schema::drop($tableNames['permissions']); + } +}; \ No newline at end of file diff --git a/database/migrations/tenant/2025_06_18_105755_create_settings_table.php b/database/migrations/tenant/2025_06_18_105755_create_settings_table.php new file mode 100644 index 000000000..667670090 --- /dev/null +++ b/database/migrations/tenant/2025_06_18_105755_create_settings_table.php @@ -0,0 +1,33 @@ +id(); + $table->foreignId('user_id')->constrained()->onDelete('cascade'); + $table->string('key'); + $table->text('value')->nullable(); + $table->timestamps(); + + // Unique constraint to prevent duplicate settings for a user + $table->unique(['user_id', 'key']); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('settings'); + } +}; \ No newline at end of file diff --git a/database/migrations/tenant/2025_12_30_045711_add_slug_column_user_table.php b/database/migrations/tenant/2025_12_30_045711_add_slug_column_user_table.php new file mode 100644 index 000000000..2b9b9b7da --- /dev/null +++ b/database/migrations/tenant/2025_12_30_045711_add_slug_column_user_table.php @@ -0,0 +1,32 @@ +string('slug')->nullable()->unique()->after('email'); + }); + } + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + if (Schema::hasColumn('users', 'slug')) { + Schema::table('users', function (Blueprint $table) { + $table->dropColumn('slug'); + }); + } + } +}; diff --git a/database/migrations/tenant/2026_08_07_053849_create_personal_access_tokens_table.php b/database/migrations/tenant/2026_08_07_053849_create_personal_access_tokens_table.php new file mode 100644 index 000000000..40ff706ee --- /dev/null +++ b/database/migrations/tenant/2026_08_07_053849_create_personal_access_tokens_table.php @@ -0,0 +1,33 @@ +id(); + $table->morphs('tokenable'); + $table->text('name'); + $table->string('token', 64)->unique(); + $table->text('abilities')->nullable(); + $table->timestamp('last_used_at')->nullable(); + $table->timestamp('expires_at')->nullable()->index(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('personal_access_tokens'); + } +}; diff --git a/database/migrations/tenant/2026_08_11_144513_create_tenant_modules_table.php b/database/migrations/tenant/2026_08_11_144513_create_tenant_modules_table.php new file mode 100644 index 000000000..970f28005 --- /dev/null +++ b/database/migrations/tenant/2026_08_11_144513_create_tenant_modules_table.php @@ -0,0 +1,30 @@ +id(); + $table->string('module_key')->unique(); + $table->boolean('enabled')->default(true); + $table->timestamp('enabled_at')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('tenant_modules'); + } +}; diff --git a/database/tenant_2 b/database/tenant_2 new file mode 100644 index 000000000..b99e021ea Binary files /dev/null and b/database/tenant_2 differ diff --git a/database/tenant_acme-test-domain b/database/tenant_acme-test-domain new file mode 100644 index 000000000..fc1feaa56 Binary files /dev/null and b/database/tenant_acme-test-domain differ diff --git a/database/tenant_api-comp-a b/database/tenant_api-comp-a new file mode 100644 index 000000000..4c6db202a Binary files /dev/null and b/database/tenant_api-comp-a differ diff --git a/database/tenant_api-comp-b b/database/tenant_api-comp-b new file mode 100644 index 000000000..4d79c8281 Binary files /dev/null and b/database/tenant_api-comp-b differ diff --git a/database/tenant_beta-tech-gchi b/database/tenant_beta-tech-gchi new file mode 100644 index 000000000..0a6800d4f Binary files /dev/null and b/database/tenant_beta-tech-gchi differ diff --git a/database/tenant_beta-tech-jqqh b/database/tenant_beta-tech-jqqh new file mode 100644 index 000000000..e69de29bb diff --git a/database/tenant_beta-tech-pkf1 b/database/tenant_beta-tech-pkf1 new file mode 100644 index 000000000..e69de29bb diff --git a/database/tenant_ca-3pqgf b/database/tenant_ca-3pqgf new file mode 100644 index 000000000..28b18f03b Binary files /dev/null and b/database/tenant_ca-3pqgf differ diff --git a/database/tenant_ca-8v6gh b/database/tenant_ca-8v6gh new file mode 100644 index 000000000..e99dd2998 Binary files /dev/null and b/database/tenant_ca-8v6gh differ diff --git a/database/tenant_ca-aiqsv b/database/tenant_ca-aiqsv new file mode 100644 index 000000000..afea81b62 Binary files /dev/null and b/database/tenant_ca-aiqsv differ diff --git a/database/tenant_ca-bcnqk b/database/tenant_ca-bcnqk new file mode 100644 index 000000000..ce17f5207 Binary files /dev/null and b/database/tenant_ca-bcnqk differ diff --git a/database/tenant_ca-dv1mw b/database/tenant_ca-dv1mw new file mode 100644 index 000000000..8de1bb015 Binary files /dev/null and b/database/tenant_ca-dv1mw differ diff --git a/database/tenant_ca-emics b/database/tenant_ca-emics new file mode 100644 index 000000000..036a022cf Binary files /dev/null and b/database/tenant_ca-emics differ diff --git a/database/tenant_ca-gigw2 b/database/tenant_ca-gigw2 new file mode 100644 index 000000000..00e7a4191 Binary files /dev/null and b/database/tenant_ca-gigw2 differ diff --git a/database/tenant_ca-gr7ki b/database/tenant_ca-gr7ki new file mode 100644 index 000000000..2e441066a Binary files /dev/null and b/database/tenant_ca-gr7ki differ diff --git a/database/tenant_ca-mva3h b/database/tenant_ca-mva3h new file mode 100644 index 000000000..b67b1cdeb Binary files /dev/null and b/database/tenant_ca-mva3h differ diff --git a/database/tenant_ca-tfp6l b/database/tenant_ca-tfp6l new file mode 100644 index 000000000..e69de29bb diff --git a/database/tenant_ca-tyw7n b/database/tenant_ca-tyw7n new file mode 100644 index 000000000..e69de29bb diff --git a/database/tenant_ca-wn4ja b/database/tenant_ca-wn4ja new file mode 100644 index 000000000..78315fe07 Binary files /dev/null and b/database/tenant_ca-wn4ja differ diff --git a/database/tenant_ca-wvv3c b/database/tenant_ca-wvv3c new file mode 100644 index 000000000..b33130e28 Binary files /dev/null and b/database/tenant_ca-wvv3c differ diff --git a/database/tenant_ca-ywwt3 b/database/tenant_ca-ywwt3 new file mode 100644 index 000000000..0cb412986 Binary files /dev/null and b/database/tenant_ca-ywwt3 differ diff --git a/database/tenant_cb-0tnqv b/database/tenant_cb-0tnqv new file mode 100644 index 000000000..7a67c3b15 Binary files /dev/null and b/database/tenant_cb-0tnqv differ diff --git a/database/tenant_cb-0zqcb b/database/tenant_cb-0zqcb new file mode 100644 index 000000000..b12d43b27 Binary files /dev/null and b/database/tenant_cb-0zqcb differ diff --git a/database/tenant_cb-aeipe b/database/tenant_cb-aeipe new file mode 100644 index 000000000..92520017c Binary files /dev/null and b/database/tenant_cb-aeipe differ diff --git a/database/tenant_cb-bapvk b/database/tenant_cb-bapvk new file mode 100644 index 000000000..fbd408042 Binary files /dev/null and b/database/tenant_cb-bapvk differ diff --git a/database/tenant_cb-fzlmq b/database/tenant_cb-fzlmq new file mode 100644 index 000000000..9b356e31f Binary files /dev/null and b/database/tenant_cb-fzlmq differ diff --git a/database/tenant_cb-i4no9 b/database/tenant_cb-i4no9 new file mode 100644 index 000000000..eb9cedd61 Binary files /dev/null and b/database/tenant_cb-i4no9 differ diff --git a/database/tenant_cb-kdvhd b/database/tenant_cb-kdvhd new file mode 100644 index 000000000..8e4536ed8 Binary files /dev/null and b/database/tenant_cb-kdvhd differ diff --git a/database/tenant_cb-kootv b/database/tenant_cb-kootv new file mode 100644 index 000000000..943776dd0 Binary files /dev/null and b/database/tenant_cb-kootv differ diff --git a/database/tenant_cb-largv b/database/tenant_cb-largv new file mode 100644 index 000000000..ff7f277e1 Binary files /dev/null and b/database/tenant_cb-largv differ diff --git a/database/tenant_cb-nt3hs b/database/tenant_cb-nt3hs new file mode 100644 index 000000000..e0886b864 Binary files /dev/null and b/database/tenant_cb-nt3hs differ diff --git a/database/tenant_cb-tt1s7 b/database/tenant_cb-tt1s7 new file mode 100644 index 000000000..ce48a6dc5 Binary files /dev/null and b/database/tenant_cb-tt1s7 differ diff --git a/database/tenant_cb-vkzzy b/database/tenant_cb-vkzzy new file mode 100644 index 000000000..613d06ab3 Binary files /dev/null and b/database/tenant_cb-vkzzy differ diff --git a/database/tenant_company-a b/database/tenant_company-a new file mode 100644 index 000000000..50b343c41 Binary files /dev/null and b/database/tenant_company-a differ diff --git a/database/tenant_company-b b/database/tenant_company-b new file mode 100644 index 000000000..9cf66b5df Binary files /dev/null and b/database/tenant_company-b differ diff --git a/database/tenant_company0 b/database/tenant_company0 new file mode 100644 index 000000000..899a9021b Binary files /dev/null and b/database/tenant_company0 differ diff --git a/database/tenant_companya-tenant b/database/tenant_companya-tenant new file mode 100644 index 000000000..6544b963a Binary files /dev/null and b/database/tenant_companya-tenant differ diff --git a/database/tenant_companyb-tenant b/database/tenant_companyb-tenant new file mode 100644 index 000000000..ac2f58467 Binary files /dev/null and b/database/tenant_companyb-tenant differ diff --git a/database/tenant_entitlement-limit-test b/database/tenant_entitlement-limit-test new file mode 100644 index 000000000..03ac711fc Binary files /dev/null and b/database/tenant_entitlement-limit-test differ diff --git a/database/tenant_giganigga b/database/tenant_giganigga new file mode 100644 index 000000000..e69de29bb diff --git a/database/tenant_mobile-host-a b/database/tenant_mobile-host-a new file mode 100644 index 000000000..c7a16f03b Binary files /dev/null and b/database/tenant_mobile-host-a differ diff --git a/database/tenant_mobile-host-b b/database/tenant_mobile-host-b new file mode 100644 index 000000000..8eb632af0 Binary files /dev/null and b/database/tenant_mobile-host-b differ diff --git a/database/tenant_no-attendance-tenant b/database/tenant_no-attendance-tenant new file mode 100644 index 000000000..5cd8af67a Binary files /dev/null and b/database/tenant_no-attendance-tenant differ diff --git a/database/tenant_payroll-only-tenant b/database/tenant_payroll-only-tenant new file mode 100644 index 000000000..e32419b19 Binary files /dev/null and b/database/tenant_payroll-only-tenant differ diff --git a/database/tenant_real-subdomain-a b/database/tenant_real-subdomain-a new file mode 100644 index 000000000..d3b62be66 Binary files /dev/null and b/database/tenant_real-subdomain-a differ diff --git a/database/tenant_real-subdomain-b b/database/tenant_real-subdomain-b new file mode 100644 index 000000000..73310f0dc Binary files /dev/null and b/database/tenant_real-subdomain-b differ diff --git a/database/tenant_secure-org-tenant b/database/tenant_secure-org-tenant new file mode 100644 index 000000000..84b791412 Binary files /dev/null and b/database/tenant_secure-org-tenant differ diff --git a/database/tenant_setup-token-test b/database/tenant_setup-token-test new file mode 100644 index 000000000..c48c1166a Binary files /dev/null and b/database/tenant_setup-token-test differ diff --git a/database/tenant_strict-subdomain-a b/database/tenant_strict-subdomain-a new file mode 100644 index 000000000..a0309c5d9 Binary files /dev/null and b/database/tenant_strict-subdomain-a differ diff --git a/database/tenant_strict-subdomain-b b/database/tenant_strict-subdomain-b new file mode 100644 index 000000000..6913a17fa Binary files /dev/null and b/database/tenant_strict-subdomain-b differ diff --git a/database/tenant_subdomain-a b/database/tenant_subdomain-a new file mode 100644 index 000000000..3485cb89a Binary files /dev/null and b/database/tenant_subdomain-a differ diff --git a/database/tenant_subdomain-b b/database/tenant_subdomain-b new file mode 100644 index 000000000..f586a3434 Binary files /dev/null and b/database/tenant_subdomain-b differ diff --git a/database/tenant_ten-a-awcwe b/database/tenant_ten-a-awcwe new file mode 100644 index 000000000..a58b0448e Binary files /dev/null and b/database/tenant_ten-a-awcwe differ diff --git a/database/tenant_ten-a-bq8ef b/database/tenant_ten-a-bq8ef new file mode 100644 index 000000000..d27f8537e Binary files /dev/null and b/database/tenant_ten-a-bq8ef differ diff --git a/database/tenant_ten-a-d55ft b/database/tenant_ten-a-d55ft new file mode 100644 index 000000000..c9b8fe185 Binary files /dev/null and b/database/tenant_ten-a-d55ft differ diff --git a/database/tenant_ten-a-gif5n b/database/tenant_ten-a-gif5n new file mode 100644 index 000000000..6db23cd32 Binary files /dev/null and b/database/tenant_ten-a-gif5n differ diff --git a/database/tenant_ten-a-hcxcf b/database/tenant_ten-a-hcxcf new file mode 100644 index 000000000..e69de29bb diff --git a/database/tenant_ten-a-hpd4n b/database/tenant_ten-a-hpd4n new file mode 100644 index 000000000..4da60adb1 Binary files /dev/null and b/database/tenant_ten-a-hpd4n differ diff --git a/database/tenant_ten-a-ksvvw b/database/tenant_ten-a-ksvvw new file mode 100644 index 000000000..815d4e8e6 Binary files /dev/null and b/database/tenant_ten-a-ksvvw differ diff --git a/database/tenant_ten-a-moenk b/database/tenant_ten-a-moenk new file mode 100644 index 000000000..f4cffbc40 Binary files /dev/null and b/database/tenant_ten-a-moenk differ diff --git a/database/tenant_ten-a-sdfpp b/database/tenant_ten-a-sdfpp new file mode 100644 index 000000000..b53c72226 Binary files /dev/null and b/database/tenant_ten-a-sdfpp differ diff --git a/database/tenant_ten-a-ukfot b/database/tenant_ten-a-ukfot new file mode 100644 index 000000000..e69de29bb diff --git a/database/tenant_ten-a-vgyb1 b/database/tenant_ten-a-vgyb1 new file mode 100644 index 000000000..ff7cc21fc Binary files /dev/null and b/database/tenant_ten-a-vgyb1 differ diff --git a/database/tenant_ten-a-ykuws b/database/tenant_ten-a-ykuws new file mode 100644 index 000000000..1d49af401 Binary files /dev/null and b/database/tenant_ten-a-ykuws differ diff --git a/database/tenant_ten-b-6kpe4 b/database/tenant_ten-b-6kpe4 new file mode 100644 index 000000000..c07db76ee Binary files /dev/null and b/database/tenant_ten-b-6kpe4 differ diff --git a/database/tenant_ten-b-8dpkp b/database/tenant_ten-b-8dpkp new file mode 100644 index 000000000..c4c6a2d1a Binary files /dev/null and b/database/tenant_ten-b-8dpkp differ diff --git a/database/tenant_ten-b-9jyss b/database/tenant_ten-b-9jyss new file mode 100644 index 000000000..065fa7b7c Binary files /dev/null and b/database/tenant_ten-b-9jyss differ diff --git a/database/tenant_ten-b-cwvzq b/database/tenant_ten-b-cwvzq new file mode 100644 index 000000000..482a29cda Binary files /dev/null and b/database/tenant_ten-b-cwvzq differ diff --git a/database/tenant_ten-b-cxcc8 b/database/tenant_ten-b-cxcc8 new file mode 100644 index 000000000..829f11aef Binary files /dev/null and b/database/tenant_ten-b-cxcc8 differ diff --git a/database/tenant_ten-b-dhdqr b/database/tenant_ten-b-dhdqr new file mode 100644 index 000000000..c46846a26 Binary files /dev/null and b/database/tenant_ten-b-dhdqr differ diff --git a/database/tenant_ten-b-e5zoy b/database/tenant_ten-b-e5zoy new file mode 100644 index 000000000..599e642f5 Binary files /dev/null and b/database/tenant_ten-b-e5zoy differ diff --git a/database/tenant_ten-b-gxytn b/database/tenant_ten-b-gxytn new file mode 100644 index 000000000..9c01cbfdd Binary files /dev/null and b/database/tenant_ten-b-gxytn differ diff --git a/database/tenant_ten-b-mc1ns b/database/tenant_ten-b-mc1ns new file mode 100644 index 000000000..a7f023666 Binary files /dev/null and b/database/tenant_ten-b-mc1ns differ diff --git a/database/tenant_ten-b-nvc2s b/database/tenant_ten-b-nvc2s new file mode 100644 index 000000000..51879ff89 Binary files /dev/null and b/database/tenant_ten-b-nvc2s differ diff --git a/database/tenant_third b/database/tenant_third new file mode 100644 index 000000000..d386acffa Binary files /dev/null and b/database/tenant_third differ diff --git a/get() b/get() new file mode 100644 index 000000000..c279904d6 --- /dev/null +++ b/get() @@ -0,0 +1,22 @@ + + Psy\Exception\ParseErrorException + + PHP Parse error: Syntax error, unexpected ';' on line 1 + + at vendor\psy\psysh\src\Exception\ParseErrorException.php:44 + 40▕ * @param \PhpParser\Error $e + 41▕ */ + 42▕ public static function fromParseError(\PhpParser\Error $e): self + 43▕ { + ➜ 44▕ return new self($e->getRawMessage(), $e->getAttributes()); + 45▕ } + 46▕ } + 47▕ + + 1 vendor\psy\psysh\src\CodeCleaner.php:657 + Psy\Exception\ParseErrorException::fromParseError(Object(PhpParser\Error)) + + 2 vendor\psy\psysh\src\CodeCleaner.php:273 + Psy\CodeCleaner::parse(" clearInterval(interval); - // eslint-disable-next-line react-hooks/exhaustive-deps }, [conversationId]); const handleSend = async () => { diff --git a/mobile/src/components/biometric-lock.tsx b/mobile/src/components/biometric-lock.tsx index 4404498b8..dc117a9f5 100644 --- a/mobile/src/components/biometric-lock.tsx +++ b/mobile/src/components/biometric-lock.tsx @@ -14,7 +14,6 @@ export function BiometricLockScreen() { unlockWithBiometrics(); }, 400); return () => clearTimeout(timer); - // eslint-disable-next-line react-hooks/exhaustive-deps }, []); return ( @@ -23,7 +22,6 @@ export function BiometricLockScreen() { {/* Logo */} {if(!i||!r)return;const a=()=>{if(!o.current)return;const l=o.current.getBoundingClientRect(),c=l.top+l.height/2-window.innerHeight/2;y(c*.2)};return window.addEventListener("scroll",a,{passive:!0}),a(),()=>window.removeEventListener("scroll",a)},[i,r]);const N=[{icon:"target",title:t("Our Mission"),description:t("To empower businesses with smart HR solutions that simplify employee management, payroll, attendance, and performance tracking.")},{icon:"heart",title:t("Our Values"),description:t("We prioritize innovation, efficiency, and creating a workplace ecosystem that nurtures growth and collaboration.")},{icon:"award",title:t("Our Commitment"),description:t("Providing reliable, intuitive HR tools backed by exceptional support to help organizations optimize their workforce.")},{icon:"lightbulb",title:t("Our Vision"),description:t("A future where HR management is fully automated, transparent, and enables organizations to focus on people, not paperwork.")}],w=[{value:t("3+ Years"),label:t("Experience"),color:"blue"},{value:"500+",label:t("Companies Served"),color:"green"},{value:"20K+",label:t("Employees Managed"),color:"purple"}],H=s.values&&s.values.length>0?s.values:N,d=s.stats&&s.stats.length>0?s.stats:w,x=()=>e.jsx("div",{className:"bg-white rounded-xl p-8 border border-gray-200 h-96 flex items-center justify-center overflow-hidden",children:r?e.jsx("img",{src:r,alt:"About Us",className:"max-w-full max-h-full object-contain rounded-lg",style:i?{transform:`translateY(${m}px)`,transition:"transform 0.1s linear"}:void 0}):e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"w-24 h-24 bg-gray-100 rounded-full mx-auto mb-6 flex items-center justify-center",children:e.jsx("span",{className:"text-3xl",children:s.image_icon||"🚀"})}),e.jsx("h4",{className:"text-xl font-semibold text-gray-900 mb-2",children:s.image_title||t("Innovation Driven")}),e.jsx("p",{className:"text-gray-600",children:s.image_subtitle||t("Building the future of networking")})]})}),u=({centered:a=!1})=>e.jsxs("div",{className:a?"text-center":"",children:[e.jsx("h3",{className:"text-2xl font-bold text-gray-900 mb-6",children:s.story_title||t("We are passionate about simplifying HR management for businesses of all sizes.")}),e.jsx("div",{className:"text-gray-600 mb-8 leading-relaxed",dangerouslySetInnerHTML:{__html:(s.story_content||t("Founded by HR and tech enthusiasts, HRMGo was created to replace cumbersome spreadsheets and manual processes with a modern, all-in-one HR platform.")).replace(/\n/g,'

')}}),d.length>0&&e.jsx("div",{className:`flex items-center gap-8 ${a?"justify-center":""}`,children:d.map((l,c)=>e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"text-2xl font-bold text-gray-900",children:l.value}),e.jsx("div",{className:"text-sm text-gray-600",children:l.label})]},c))})]}),k=()=>b==="centered"?n==="background"&&r?e.jsxs("div",{ref:o,className:"relative rounded-xl overflow-hidden mb-8 sm:mb-12 lg:mb-16",children:[e.jsx("img",{src:r,alt:"About Us",className:"w-full h-96 object-cover",style:i?{transform:`translateY(${m}px)`,transition:"transform 0.1s linear",height:"110%",top:"-5%",position:"relative"}:void 0}),e.jsx("div",{className:"absolute inset-0 bg-black/50 flex items-center justify-center p-8",children:e.jsxs("div",{className:"text-center text-white max-w-2xl",children:[e.jsx("h3",{className:"text-2xl font-bold mb-4",children:s.story_title||t("We are passionate about simplifying HR management for businesses of all sizes.")}),e.jsx("div",{className:"mb-6 leading-relaxed opacity-90",dangerouslySetInnerHTML:{__html:(s.story_content||t("Founded by HR and tech enthusiasts, HRMGo was created to replace cumbersome spreadsheets and manual processes with a modern, all-in-one HR platform.")).replace(/\n/g,'

')}}),d.length>0&&e.jsx("div",{className:"flex items-center justify-center gap-8",children:d.map((a,l)=>e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"text-2xl font-bold",children:a.value}),e.jsx("div",{className:"text-sm opacity-80",children:a.label})]},l))})]})})]}):e.jsxs("div",{className:"max-w-3xl mx-auto text-center mb-8 sm:mb-12 lg:mb-16",children:[e.jsx(u,{centered:!0}),(n==="left"||n==="right")&&e.jsx("div",{className:"mt-8",children:e.jsx(x,{})})]}):b==="image-left"?e.jsxs("div",{className:"grid lg:grid-cols-2 gap-8 sm:gap-12 lg:gap-16 items-center mb-8 sm:mb-12 lg:mb-16",children:[n==="background"&&r?e.jsxs("div",{ref:o,className:"relative rounded-xl overflow-hidden h-96",children:[e.jsx("img",{src:r,alt:"About Us",className:"w-full object-cover",style:i?{transform:`translateY(${m}px)`,transition:"transform 0.1s linear",height:"120%",top:"-10%",position:"relative"}:{height:"100%"}}),e.jsx("div",{className:"absolute inset-0 bg-black/30 rounded-xl"})]}):e.jsx(x,{}),e.jsx(u,{})]}):e.jsxs("div",{className:"grid lg:grid-cols-2 gap-8 sm:gap-12 lg:gap-16 items-center mb-8 sm:mb-12 lg:mb-16",children:[e.jsx(u,{}),n==="background"&&r?e.jsxs("div",{ref:o,className:"relative rounded-xl overflow-hidden h-96",children:[e.jsx("img",{src:r,alt:"About Us",className:"w-full object-cover",style:i?{transform:`translateY(${m}px)`,transition:"transform 0.1s linear",height:"120%",top:"-10%",position:"relative"}:{height:"100%"}}),e.jsx("div",{className:"absolute inset-0 bg-black/30 rounded-xl"})]}):e.jsx(x,{})]});return e.jsx("section",{id:"about",className:"py-12 sm:py-16 lg:py-20",style:{backgroundColor:v},ref:j,children:e.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[e.jsxs("div",{className:`text-center mb-8 sm:mb-12 lg:mb-16 transition-all duration-700 ${h?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:[e.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:s.title||t("About HRM SaaS")}),e.jsx("p",{className:"text-lg text-gray-600 max-w-3xl mx-auto leading-relaxed font-medium",children:s.description||t("We are passionate about simplifying HR management for businesses of all sizes.")})]}),k(),e.jsx("div",{className:`grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 sm:gap-8 transition-all duration-700 delay-500 ${h?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:H.map((a,l)=>{const c=U[a.icon]||f;return e.jsxs("div",{className:"text-center bg-white p-6 rounded-xl border border-gray-200",children:[e.jsx("div",{className:"w-12 h-12 rounded-lg flex items-center justify-center mx-auto mb-4",style:{backgroundColor:`${p}15`},children:e.jsx(c,{className:"w-6 h-6",style:{color:p}})}),e.jsx("h3",{className:"text-lg font-semibold text-gray-900 mb-3",children:a.title}),e.jsx("p",{className:"text-gray-600 text-sm leading-relaxed",children:a.description})]},l)})})]})})}export{q as default}; +import{r as g,j as e}from"./ui-Z445SNHD.js";import{u as R}from"./useScrollAnimation-B_bDsIuD.js";import{u as S,g as _}from"./app-36WMjvX0.js";import{Z as A}from"./zap-D4fS-tPu.js";import{U as z}from"./users-Czs1F8XM.js";import{S as M,H as $}from"./shield-Mt6vEHxn.js";import{S as E}from"./star-WlheM7sI.js";import{L as I}from"./lightbulb-fAsbBO8F.js";import{A as T}from"./award-D9FlSYzB.js";import{T as f}from"./target-BEz5Ry2v.js";import"./utils-BWxnHGCV.js";const U={target:f,heart:$,award:T,lightbulb:I,star:E,shield:M,users:z,zap:A};function q({settings:L,sectionData:s,brandColor:p="#3b82f6"}){const{t}=S(),{ref:j,isVisible:h}=R(),r=_(s.image),v=s.background_color||"#f9fafb",b=s.layout||"image-right",n=s.image_position||"right",i=s.parallax===!0,o=g.useRef(null),[m,y]=g.useState(0);g.useEffect(()=>{if(!i||!r)return;const a=()=>{if(!o.current)return;const l=o.current.getBoundingClientRect(),c=l.top+l.height/2-window.innerHeight/2;y(c*.2)};return window.addEventListener("scroll",a,{passive:!0}),a(),()=>window.removeEventListener("scroll",a)},[i,r]);const N=[{icon:"target",title:t("Our Mission"),description:t("To empower businesses with smart HR solutions that simplify employee management, payroll, attendance, and performance tracking.")},{icon:"heart",title:t("Our Values"),description:t("We prioritize innovation, efficiency, and creating a workplace ecosystem that nurtures growth and collaboration.")},{icon:"award",title:t("Our Commitment"),description:t("Providing reliable, intuitive HR tools backed by exceptional support to help organizations optimize their workforce.")},{icon:"lightbulb",title:t("Our Vision"),description:t("A future where HR management is fully automated, transparent, and enables organizations to focus on people, not paperwork.")}],w=[{value:t("3+ Years"),label:t("Experience"),color:"blue"},{value:"500+",label:t("Companies Served"),color:"green"},{value:"20K+",label:t("Employees Managed"),color:"purple"}],H=s.values&&s.values.length>0?s.values:N,d=s.stats&&s.stats.length>0?s.stats:w,x=()=>e.jsx("div",{className:"bg-white rounded-xl p-8 border border-gray-200 h-96 flex items-center justify-center overflow-hidden",children:r?e.jsx("img",{src:r,alt:"About Us",className:"max-w-full max-h-full object-contain rounded-lg",style:i?{transform:`translateY(${m}px)`,transition:"transform 0.1s linear"}:void 0}):e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"w-24 h-24 bg-gray-100 rounded-full mx-auto mb-6 flex items-center justify-center",children:e.jsx("span",{className:"text-3xl",children:s.image_icon||"🚀"})}),e.jsx("h4",{className:"text-xl font-semibold text-gray-900 mb-2",children:s.image_title||t("Innovation Driven")}),e.jsx("p",{className:"text-gray-600",children:s.image_subtitle||t("Building the future of networking")})]})}),u=({centered:a=!1})=>e.jsxs("div",{className:a?"text-center":"",children:[e.jsx("h3",{className:"text-2xl font-bold text-gray-900 mb-6",children:s.story_title||t("We are passionate about simplifying HR management for businesses of all sizes.")}),e.jsx("div",{className:"text-gray-600 mb-8 leading-relaxed",dangerouslySetInnerHTML:{__html:(s.story_content||t("Founded by HR and tech enthusiasts, HRMGo was created to replace cumbersome spreadsheets and manual processes with a modern, all-in-one HR platform.")).replace(/\n/g,'

')}}),d.length>0&&e.jsx("div",{className:`flex items-center gap-8 ${a?"justify-center":""}`,children:d.map((l,c)=>e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"text-2xl font-bold text-gray-900",children:l.value}),e.jsx("div",{className:"text-sm text-gray-600",children:l.label})]},c))})]}),k=()=>b==="centered"?n==="background"&&r?e.jsxs("div",{ref:o,className:"relative rounded-xl overflow-hidden mb-8 sm:mb-12 lg:mb-16",children:[e.jsx("img",{src:r,alt:"About Us",className:"w-full h-96 object-cover",style:i?{transform:`translateY(${m}px)`,transition:"transform 0.1s linear",height:"110%",top:"-5%",position:"relative"}:void 0}),e.jsx("div",{className:"absolute inset-0 bg-black/50 flex items-center justify-center p-8",children:e.jsxs("div",{className:"text-center text-white max-w-2xl",children:[e.jsx("h3",{className:"text-2xl font-bold mb-4",children:s.story_title||t("We are passionate about simplifying HR management for businesses of all sizes.")}),e.jsx("div",{className:"mb-6 leading-relaxed opacity-90",dangerouslySetInnerHTML:{__html:(s.story_content||t("Founded by HR and tech enthusiasts, HRMGo was created to replace cumbersome spreadsheets and manual processes with a modern, all-in-one HR platform.")).replace(/\n/g,'

')}}),d.length>0&&e.jsx("div",{className:"flex items-center justify-center gap-8",children:d.map((a,l)=>e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"text-2xl font-bold",children:a.value}),e.jsx("div",{className:"text-sm opacity-80",children:a.label})]},l))})]})})]}):e.jsxs("div",{className:"max-w-3xl mx-auto text-center mb-8 sm:mb-12 lg:mb-16",children:[e.jsx(u,{centered:!0}),(n==="left"||n==="right")&&e.jsx("div",{className:"mt-8",children:e.jsx(x,{})})]}):b==="image-left"?e.jsxs("div",{className:"grid lg:grid-cols-2 gap-8 sm:gap-12 lg:gap-16 items-center mb-8 sm:mb-12 lg:mb-16",children:[n==="background"&&r?e.jsxs("div",{ref:o,className:"relative rounded-xl overflow-hidden h-96",children:[e.jsx("img",{src:r,alt:"About Us",className:"w-full object-cover",style:i?{transform:`translateY(${m}px)`,transition:"transform 0.1s linear",height:"120%",top:"-10%",position:"relative"}:{height:"100%"}}),e.jsx("div",{className:"absolute inset-0 bg-black/30 rounded-xl"})]}):e.jsx(x,{}),e.jsx(u,{})]}):e.jsxs("div",{className:"grid lg:grid-cols-2 gap-8 sm:gap-12 lg:gap-16 items-center mb-8 sm:mb-12 lg:mb-16",children:[e.jsx(u,{}),n==="background"&&r?e.jsxs("div",{ref:o,className:"relative rounded-xl overflow-hidden h-96",children:[e.jsx("img",{src:r,alt:"About Us",className:"w-full object-cover",style:i?{transform:`translateY(${m}px)`,transition:"transform 0.1s linear",height:"120%",top:"-10%",position:"relative"}:{height:"100%"}}),e.jsx("div",{className:"absolute inset-0 bg-black/30 rounded-xl"})]}):e.jsx(x,{})]});return e.jsx("section",{id:"about",className:"py-12 sm:py-16 lg:py-20",style:{backgroundColor:v},ref:j,children:e.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[e.jsxs("div",{className:`text-center mb-8 sm:mb-12 lg:mb-16 transition-all duration-700 ${h?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:[e.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:s.title||t("About HRM SaaS")}),e.jsx("p",{className:"text-lg text-gray-600 max-w-3xl mx-auto leading-relaxed font-medium",children:s.description||t("We are passionate about simplifying HR management for businesses of all sizes.")})]}),k(),e.jsx("div",{className:`grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 sm:gap-8 transition-all duration-700 delay-500 ${h?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:H.map((a,l)=>{const c=U[a.icon]||f;return e.jsxs("div",{className:"text-center bg-white p-6 rounded-xl border border-gray-200",children:[e.jsx("div",{className:"w-12 h-12 rounded-lg flex items-center justify-center mx-auto mb-4",style:{backgroundColor:`${p}15`},children:e.jsx(c,{className:"w-6 h-6",style:{color:p}})}),e.jsx("h3",{className:"text-lg font-semibold text-gray-900 mb-3",children:a.title}),e.jsx("p",{className:"text-gray-600 text-sm leading-relaxed",children:a.description})]},l)})})]})})}export{q as default}; diff --git a/public/build/assets/ContactSection-BwM9lK3X.js b/public/build/assets/ContactSection-BwM9lK3X.js deleted file mode 100644 index 4e7ebe204..000000000 --- a/public/build/assets/ContactSection-BwM9lK3X.js +++ /dev/null @@ -1 +0,0 @@ -import{j as e}from"./ui-Z445SNHD.js";import{u as j,b as y,t as u}from"./app-RVic1vq7.js";import{M as f}from"./mail-DxJUXCTJ.js";import{P as N}from"./phone-D9_s8Psh.js";import{M as v}from"./map-pin-B07wXHBN.js";import{S as w}from"./send-OYecdRr2.js";import"./utils-BWxnHGCV.js";function E({flash:S,settings:a,sectionData:s,brandColor:d="#3b82f6"}){const{t:r}=j(),{data:n,setData:c,post:g,processing:o,errors:t,reset:h}=y({name:"",email:"",subject:"",message:""}),b=l=>{l.preventDefault(),g(route("landing-page.contact"),{onSuccess:m=>{var x;h();const i=((x=m.props.flash)==null?void 0:x.success)||"Thank you for your message. We will get back to you soon!";u.success(i)},onError:m=>{const i=Object.values(m).join(", ");u.error(i||"Failed to send message. Please try again.")}})},p=[{icon:f,title:r("Email Us"),content:(a==null?void 0:a.contact_email)||"support@hrm.com"},{icon:N,title:r("Call Us"),content:(a==null?void 0:a.contact_phone)||"+1 (555) 123-4567"},{icon:v,title:r("Visit Us"),content:(a==null?void 0:a.contact_address)||"123 Business Ave, Suite 100"}].filter(l=>l.content);return e.jsx("section",{id:"contact",className:"py-12 sm:py-16 lg:py-20 bg-gray-50",children:e.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[e.jsxs("div",{className:"text-center mb-8 sm:mb-12 lg:mb-16",children:[e.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:(s==null?void 0:s.title)||r("Get in Touch")}),e.jsx("p",{className:"text-lg text-gray-600 max-w-3xl mx-auto leading-relaxed font-medium",children:(s==null?void 0:s.subtitle)||r("Have questions about HRM SaaS? We'd love to hear from you.. Send us a message and we'll respond as soon as possible.")})]}),e.jsxs("div",{className:"grid lg:grid-cols-2 gap-8 sm:gap-12 lg:gap-16",children:[e.jsx("div",{children:e.jsxs("div",{className:"bg-white border border-gray-200 rounded-xl p-8",children:[e.jsx("h3",{className:"text-2xl font-bold text-gray-900 mb-6",children:(s==null?void 0:s.form_title)||r("Send us a Message")}),e.jsxs("form",{onSubmit:b,className:"space-y-6",role:"form","aria-label":"Contact form",children:[e.jsxs("div",{className:"grid grid-cols-1 sm:grid-cols-2 gap-4 sm:gap-6",children:[e.jsxs("div",{children:[e.jsxs("label",{htmlFor:"name",className:"block text-sm font-medium text-gray-700 mb-2",children:[r("Full Name")," ",e.jsx("span",{className:"text-red-500","aria-label":"required",children:"*"})]}),e.jsx("input",{type:"text",id:"name",value:n.name,onChange:l=>c("name",l.target.value),className:"w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 disabled:bg-gray-100 disabled:cursor-not-allowed",style:{"--tw-ring-color":d},placeholder:r("Your full name"),required:!0,disabled:o}),t.name&&e.jsx("p",{className:"text-red-600 text-sm mt-1",children:t.name})]}),e.jsxs("div",{children:[e.jsxs("label",{htmlFor:"email",className:"block text-sm font-medium text-gray-700 mb-2",children:[r("Email Address")," ",e.jsx("span",{className:"text-red-500","aria-label":"required",children:"*"})]}),e.jsx("input",{type:"email",id:"email",value:n.email,onChange:l=>c("email",l.target.value),className:"w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 disabled:bg-gray-100 disabled:cursor-not-allowed",style:{"--tw-ring-color":d},placeholder:r("your@email.com"),required:!0,disabled:o}),t.email&&e.jsx("p",{className:"text-red-600 text-sm mt-1",children:t.email})]})]}),e.jsxs("div",{children:[e.jsxs("label",{htmlFor:"subject",className:"block text-sm font-medium text-gray-700 mb-2",children:[r("Subject")," ",e.jsx("span",{className:"text-red-500","aria-label":"required",children:"*"})]}),e.jsx("input",{type:"text",id:"subject",value:n.subject,onChange:l=>c("subject",l.target.value),className:"w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 disabled:bg-gray-100 disabled:cursor-not-allowed",style:{"--tw-ring-color":d},placeholder:r("What's this about?"),required:!0,disabled:o}),t.subject&&e.jsx("p",{className:"text-red-600 text-sm mt-1",children:t.subject})]}),e.jsxs("div",{children:[e.jsxs("label",{htmlFor:"message",className:"block text-sm font-medium text-gray-700 mb-2",children:[r("Message")," ",e.jsx("span",{className:"text-red-500","aria-label":"required",children:"*"})]}),e.jsx("textarea",{id:"message",rows:6,value:n.message,onChange:l=>c("message",l.target.value),className:"w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 resize-none disabled:bg-gray-100 disabled:cursor-not-allowed",style:{"--tw-ring-color":d},placeholder:r("Tell us more about your inquiry..."),required:!0,disabled:o}),t.message&&e.jsx("p",{className:"text-red-600 text-sm mt-1",children:t.message})]}),e.jsx("button",{type:"submit",disabled:o,className:"cursor-pointer w-full text-white px-8 py-4 rounded-lg transition-colors font-semibold disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center gap-2",style:{backgroundColor:d},"aria-label":o?"Sending message":"Send contact message",children:o?e.jsxs(e.Fragment,{children:[e.jsx("div",{className:"w-5 h-5 border-2 border-white border-t-transparent rounded-full animate-spin"}),r("Sending...")]}):e.jsxs(e.Fragment,{children:[e.jsx(w,{className:"w-5 h-5"}),r("Send Message")]})})]})]})}),e.jsx("div",{children:e.jsxs("div",{className:"space-y-8",children:[e.jsxs("div",{children:[e.jsx("h3",{className:"text-2xl font-bold text-gray-900 mb-6",children:(s==null?void 0:s.info_title)||r("Contact Information")}),e.jsx("p",{className:"text-gray-600 mb-8",children:(s==null?void 0:s.info_description)||r("We're here to help and answer any questions you might have about managing your HR processes efficiently. We look forward to hearing from you.")})]}),e.jsx("div",{className:"space-y-6",children:p.map((l,m)=>{const i=l.icon;return e.jsxs("div",{className:"flex items-start gap-4",children:[e.jsx("div",{className:"w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0",style:{backgroundColor:`${d}15`},children:e.jsx(i,{className:"w-6 h-6",style:{color:d}})}),e.jsxs("div",{children:[e.jsx("h4",{className:"text-lg font-semibold text-gray-900 mb-1",children:l.title}),e.jsx("p",{className:"text-gray-900 font-medium mb-1",children:l.content}),e.jsx("p",{className:"text-gray-600 text-sm",children:l.description})]})]},m)})}),(s==null?void 0:s.faqs)&&s.faqs.length>0&&e.jsxs("div",{className:"bg-white rounded-xl p-6 border border-gray-200",children:[e.jsx("h4",{className:"text-lg font-semibold text-gray-900 mb-4",children:r("Frequently Asked Questions")}),e.jsx("div",{className:"space-y-4",children:s.faqs.map((l,m)=>e.jsxs("div",{children:[e.jsx("h5",{className:"font-medium text-gray-900 mb-1",children:l.question}),e.jsx("p",{className:"text-gray-600 text-sm",children:l.answer})]},m))})]})]})})]})]})})}export{E as default}; diff --git a/public/build/assets/ContactSection-_7Db-oCq.js b/public/build/assets/ContactSection-_7Db-oCq.js new file mode 100644 index 000000000..0ee9eae5e --- /dev/null +++ b/public/build/assets/ContactSection-_7Db-oCq.js @@ -0,0 +1 @@ +import{r as f,j as e}from"./ui-Z445SNHD.js";import{u as X,F as ee,ao as N,t as u}from"./app-36WMjvX0.js";import{S as se}from"./smartphone-BQ_9x4vN.js";import{M as V}from"./map-pin-L7jUebKz.js";import{B as te}from"./building-2-Cda8xQDI.js";import{F as ae}from"./fingerprint-q0Oj9Sk5.js";import{C as L}from"./calculator-wt_63eRJ.js";import{C as re}from"./clock-Cfp0CYjJ.js";import{U as le}from"./users-Czs1F8XM.js";import{T as ne}from"./target-BEz5Ry2v.js";import{A as ie}from"./award-D9FlSYzB.js";import{F as oe}from"./folder-git-2-Dwj_EoDL.js";import{M as ce}from"./mail-BFoS8U8W.js";import{P as de}from"./phone-CJ2h446N.js";import{C as me}from"./chevron-left-DKWjKjSf.js";import{C as xe}from"./chevron-right-C_P-uZ-m.js";import{S as ue}from"./send-DpE3qK0m.js";import"./utils-BWxnHGCV.js";const q=[{id:"mobile_app",label:"Mobile App (iOS & Android)",icon:se,category:"Core & Access",price:10},{id:"geofence",label:"GPS Geofencing Attendance",icon:V,category:"Time & Attendance",price:15},{id:"multi_branch",label:"Multi-Branch Management",icon:te,category:"Core & Access",price:15},{id:"biometric",label:"Biometric Device Hardware Sync",icon:ae,category:"Time & Attendance",price:20},{id:"payroll",label:"Automated Payroll & Payslips",icon:L,category:"Finance",price:25},{id:"time_tracking",label:"Time Tracking & Timesheets",icon:re,category:"Time & Attendance",price:15},{id:"recruitment",label:"Recruitment & Job Postings (ATS)",icon:le,category:"HR & Talent",price:20},{id:"performance",label:"Performance Appraisals & KPIs",icon:ne,category:"HR & Talent",price:15},{id:"training",label:"Employee Training & Seminars",icon:ie,category:"HR & Talent",price:10},{id:"contracts",label:"Contract Management",icon:ee,category:"Documents",price:10},{id:"documents",label:"HR Document Management",icon:oe,category:"Documents",price:10}];function Pe({settings:p,sectionData:h,brandColor:r="#3b82f6"}){const{t:s}=X(),[o,v]=f.useState(1),[w,A]=f.useState(!1),[d,M]=f.useState("monthly"),[a,n]=f.useState({company_name:"",contact_name:"",email:"",phone:"",desired_subdomain:"",employee_count:0,requested_features:[],notes:"",hp_website:""}),E=29,F=a.employee_count*1.5,b=q.filter(t=>a.requested_features.includes(t.id)),_=b.reduce((t,l)=>t+l.price,0),P=a.requested_features.length>=5,R=P?_*.15:0,U=_-R,z=E+F+U,T=d==="annual"?.2:0,S=z*(1-T),H=d==="annual"?S*12:S,B=t=>{n(l=>{const i=l.requested_features.includes(t);return{...l,requested_features:i?l.requested_features.filter(c=>c!==t):[...l.requested_features,t]}})},G=()=>{n(t=>({...t,requested_features:q.map(l=>l.id)}))},W=()=>{n(t=>({...t,requested_features:[]}))},$=t=>{if(t===1&&(!a.contact_name||!a.email||!a.company_name))return u.error(s("Please fill in your name, email, and company name.")),!1;if(t===2){if(a.employee_count<=0)return u.error(s("Please specify your employee or staff count.")),!1;if(a.requested_features.length===0)return u.error(s("Please select at least one required module or feature.")),!1}return t===3&&!a.desired_subdomain?(u.error(s("Please enter your desired subdomain name.")),!1):!0},[J,C]=f.useState(!1),[g,k]=f.useState(""),[I,D]=f.useState(!1),K=()=>{$(o)&&v(t=>Math.min(t+1,3))},Y=()=>{v(t=>Math.max(t-1,1))},Q=async t=>{var l,i,c,m,y;if(t.preventDefault(),!!$(3)){A(!0);try{const x=await N.post("/api/inquiries",{company_name:a.company_name,contact_name:a.contact_name,email:a.email,phone:a.phone,desired_subdomain:a.desired_subdomain,employee_count:Number(a.employee_count),requested_features:a.requested_features,notes:a.notes,hp_website:a.hp_website,payment_reference:"SUBDOMAIN-INQUIRY-WIZARD"});(l=x.data)!=null&&l.requires_verification?(u.success(s("Inquiry submitted! Please enter the 6-digit verification code sent to your email.")),(i=x.data)!=null&&i.verification_code&&k(x.data.verification_code),C(!0)):(u.success(((c=x.data)==null?void 0:c.message)||s("Inquiry submitted successfully! An executive will review your setup.")),O())}catch(x){let j=s("Failed to submit inquiry.");N.isAxiosError(x)?j=((y=(m=x.response)==null?void 0:m.data)==null?void 0:y.message)||x.message||j:x instanceof Error&&(j=x.message),u.error(j)}finally{A(!1)}}},O=()=>{v(1),C(!1),k(""),n({company_name:"",contact_name:"",email:"",phone:"",desired_subdomain:"",employee_count:0,requested_features:[],notes:"",hp_website:""})},Z=async t=>{var l,i,c;if(t.preventDefault(),!g){u.error(s("Please enter the 6-digit verification code."));return}D(!0);try{const m=await N.post("/api/inquiries/verify-email",{email:a.email,verification_code:g});u.success(((l=m.data)==null?void 0:l.message)||s("Email verified successfully! Executive review pending.")),O()}catch(m){let y=s("Invalid verification code.");N.isAxiosError(m)?y=((c=(i=m.response)==null?void 0:i.data)==null?void 0:c.message)||m.message||y:m instanceof Error&&(y=m.message),u.error(y)}finally{D(!1)}};return[{icon:ce,title:s("Email Us"),content:(p==null?void 0:p.contact_email)||"support@hrm.com"},{icon:de,title:s("Call Us"),content:(p==null?void 0:p.contact_phone)||"+1 (555) 123-4567"},{icon:V,title:s("Visit Us"),content:(p==null?void 0:p.contact_address)||"123 Business Ave, Suite 100"}].filter(t=>t.content),e.jsxs("section",{id:"contact",className:"py-12 sm:py-16 lg:py-20 bg-gray-50",children:[e.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[e.jsxs("div",{className:"text-center mb-8 sm:mb-12 lg:mb-16",children:[e.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:(h==null?void 0:h.title)||s("Request Subdomain & Demo Inquiry")}),e.jsx("p",{className:"text-lg text-gray-600 max-w-3xl mx-auto leading-relaxed font-medium",children:(h==null?void 0:h.subtitle)||s("Complete our 3-step setup wizard to customize your HRM company subdomain, staff count, and system modules.")})]}),e.jsxs("div",{className:"grid lg:grid-cols-12 gap-8 sm:gap-12 lg:gap-16",children:[e.jsx("div",{className:"lg:col-span-7",children:e.jsxs("div",{className:"bg-white border border-gray-200 rounded-2xl shadow-sm p-6 sm:p-8",children:[e.jsxs("div",{className:"mb-8",children:[e.jsxs("div",{className:"flex items-center justify-between text-xs font-semibold text-gray-500 mb-2",children:[e.jsx("span",{className:o>=1?"text-gray-900 font-bold":"",children:"1. Organization"}),e.jsx("span",{className:o>=2?"text-gray-900 font-bold":"",children:"2. Modules & Staff"}),e.jsx("span",{className:o>=3?"text-gray-900 font-bold":"",children:"3. Subdomain Slug"})]}),e.jsx("div",{className:"w-full h-2 bg-gray-100 rounded-full overflow-hidden",children:e.jsx("div",{className:"h-full transition-all duration-300 rounded-full",style:{width:o===1?"33.3%":o===2?"66.6%":"100%",backgroundColor:r}})})]}),e.jsxs("form",{onSubmit:Q,className:"space-y-6",children:[o===1&&e.jsxs("div",{className:"space-y-4 animate-in fade-in duration-200",children:[e.jsx("h3",{className:"text-xl font-bold text-gray-900 mb-4",children:s("Step 1: Contact & Company Details")}),e.jsxs("div",{children:[e.jsxs("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:[s("Company Name")," ",e.jsx("span",{className:"text-red-500",children:"*"})]}),e.jsx("input",{type:"text",value:a.company_name,onChange:t=>n({...a,company_name:t.target.value}),className:"w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2",placeholder:"Acme Corporation",required:!0})]}),e.jsxs("div",{className:"grid grid-cols-1 sm:grid-cols-2 gap-4",children:[e.jsxs("div",{children:[e.jsxs("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:[s("Contact Full Name")," ",e.jsx("span",{className:"text-red-500",children:"*"})]}),e.jsx("input",{type:"text",value:a.contact_name,onChange:t=>n({...a,contact_name:t.target.value}),className:"w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2",placeholder:"John Doe",required:!0})]}),e.jsxs("div",{children:[e.jsxs("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:[s("Work Email")," ",e.jsx("span",{className:"text-red-500",children:"*"})]}),e.jsx("input",{type:"email",value:a.email,onChange:t=>n({...a,email:t.target.value}),className:"w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2",placeholder:"john@acme.com",required:!0}),e.jsx("p",{className:"text-[11px] text-gray-500 mt-1",children:s("This email will serve as your primary administrator login account.")})]})]}),e.jsxs("div",{children:[e.jsx("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:s("Phone Number")}),e.jsx("input",{type:"tel",value:a.phone,onChange:t=>n({...a,phone:t.target.value}),className:"w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2",placeholder:"+1 (555) 000-0000"})]})]}),o===2&&e.jsxs("div",{className:"space-y-6 animate-in fade-in duration-200",children:[e.jsx("h3",{className:"text-xl font-bold text-gray-900",children:s("Step 2: Employee Scale & Required System Modules")}),e.jsxs("div",{className:"bg-gray-50 border border-gray-200 p-4 rounded-xl",children:[e.jsxs("div",{className:"flex justify-between items-center mb-2",children:[e.jsx("label",{className:"text-sm font-semibold text-gray-900",children:s("Number of Employees / Staff")}),e.jsxs("span",{className:"text-sm font-bold text-blue-600 px-3 py-1 bg-blue-50 border border-blue-200 rounded-full",children:[a.employee_count," ",s("Employees")]})]}),e.jsx("input",{type:"range",min:"0",max:"1000",step:"5",value:a.employee_count,onChange:t=>n({...a,employee_count:Number(t.target.value)}),className:"w-full h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer accent-blue-600"}),e.jsxs("div",{className:"flex justify-between text-xs text-gray-500 mt-1",children:[e.jsx("span",{children:"0"}),e.jsx("span",{children:"250"}),e.jsx("span",{children:"500"}),e.jsx("span",{children:"1000+"})]})]}),e.jsxs("div",{children:[e.jsxs("div",{className:"flex items-center justify-between mb-3",children:[e.jsxs("label",{className:"text-sm font-semibold text-gray-900",children:[s("Select Required Modules")," ",e.jsx("span",{className:"text-red-500",children:"*"})]}),e.jsxs("div",{className:"flex gap-3 text-xs",children:[e.jsx("button",{type:"button",onClick:G,className:"text-blue-600 font-medium hover:underline",children:s("Select All")}),e.jsx("span",{className:"text-gray-300",children:"|"}),e.jsx("button",{type:"button",onClick:W,className:"text-gray-500 hover:underline",children:s("Clear")})]})]}),e.jsx("div",{className:"grid grid-cols-1 sm:grid-cols-2 gap-3 max-h-72 overflow-y-auto pr-1",children:q.map(t=>{const l=t.icon,i=a.requested_features.includes(t.id);return e.jsxs("div",{role:"checkbox","aria-checked":i,tabIndex:0,onClick:()=>B(t.id),onKeyDown:c=>{(c.key===" "||c.key==="Enter")&&(c.preventDefault(),B(t.id))},className:`cursor-pointer p-3 border rounded-xl flex items-start gap-3 transition-all focus:outline-none focus:ring-2 focus:ring-blue-500 ${i?"border-blue-500 bg-blue-50/50 shadow-sm":"border-gray-200 hover:border-gray-300 bg-white"}`,children:[e.jsx("div",{className:`w-8 h-8 rounded-lg flex items-center justify-center flex-shrink-0 text-sm ${i?"bg-blue-600 text-white":"bg-gray-100 text-gray-600"}`,children:e.jsx(l,{className:"w-4 h-4"})}),e.jsxs("div",{className:"flex-1",children:[e.jsx("div",{className:"text-xs font-semibold text-gray-900 leading-snug",children:s(t.label)}),e.jsx("span",{className:"text-[10px] text-gray-400 font-medium",children:s(t.category)})]}),e.jsx("input",{type:"checkbox",checked:i,readOnly:!0,className:"mt-1 rounded text-blue-600 focus:ring-blue-500 cursor-pointer pointer-events-none"})]},t.id)})})]})]}),o===3&&e.jsxs("div",{className:"space-y-4 animate-in fade-in duration-200",children:[e.jsx("h3",{className:"text-xl font-bold text-gray-900 mb-4",children:s("Step 3: Desired Subdomain & Notes")}),e.jsx("input",{type:"text",name:"hp_website",value:a.hp_website,onChange:t=>n({...a,hp_website:t.target.value}),tabIndex:-1,autoComplete:"off",className:"hidden","aria-hidden":"true"}),e.jsxs("div",{children:[e.jsxs("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:[s("Desired Company Subdomain")," ",e.jsx("span",{className:"text-red-500",children:"*"})]}),e.jsxs("div",{className:"flex items-center",children:[e.jsx("input",{type:"text",value:a.desired_subdomain,onChange:t=>n({...a,desired_subdomain:t.target.value.toLowerCase().replace(/[^a-z0-9-]/g,"")}),className:"w-full px-4 py-3 border border-r-0 border-gray-300 rounded-l-xl focus:ring-2",placeholder:"acme-corp",required:!0}),e.jsx("span",{className:"bg-gray-100 border border-gray-300 text-gray-600 px-4 py-3 rounded-r-xl text-sm font-medium",children:".hrm.com"})]}),e.jsxs("p",{className:"text-xs text-gray-500 mt-1",children:[s("Your company access URL: "),e.jsxs("span",{className:"font-semibold text-blue-600",children:["https://",a.desired_subdomain||"company",".hrm.com"]})]})]}),e.jsxs("div",{children:[e.jsx("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:s("Additional Technical Notes or Requirements")}),e.jsx("textarea",{rows:4,value:a.notes,onChange:t=>n({...a,notes:t.target.value}),className:"w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 resize-none",placeholder:s("Tell us if you have specific hardware or integration needs...")})]}),e.jsxs("div",{className:"bg-gray-50 border border-gray-200 p-4 rounded-xl text-xs space-y-1.5 text-gray-700",children:[e.jsx("div",{className:"font-bold text-gray-900 mb-1",children:s("Request Summary:")}),e.jsxs("div",{children:["• ",s("Company:")," ",e.jsx("strong",{children:a.company_name||"N/A"})]}),e.jsxs("div",{children:["• ",s("Admin Email:")," ",e.jsx("strong",{children:a.email||"N/A"})]}),e.jsxs("div",{children:["• ",s("Account Setup:")," ",e.jsx("span",{className:"text-blue-600 font-medium",children:s("One-time email setup link sent upon approval")})]}),e.jsxs("div",{children:["• ",s("Employees:")," ",e.jsx("strong",{children:a.employee_count})]}),e.jsxs("div",{children:["• ",s("Selected Modules:")," ",e.jsxs("strong",{children:[a.requested_features.length," ",s("modules chosen")]})]})]})]}),e.jsxs("div",{className:"flex items-center justify-between pt-4 border-t border-gray-100",children:[o>1?e.jsxs("button",{type:"button",onClick:Y,disabled:w,className:"px-5 py-3 border border-gray-300 rounded-xl text-gray-700 font-semibold hover:bg-gray-50 flex items-center gap-2 text-sm",children:[e.jsx(me,{className:"w-4 h-4"}),s("Back")]}):e.jsx("div",{}),o<3?e.jsxs("button",{type:"button",onClick:K,className:"px-6 py-3 text-white rounded-xl font-semibold flex items-center gap-2 text-sm shadow-sm transition-opacity hover:opacity-90",style:{backgroundColor:r},children:[s("Continue"),e.jsx(xe,{className:"w-4 h-4"})]}):e.jsx("button",{type:"submit",disabled:w,className:"px-8 py-3 text-white rounded-xl font-semibold flex items-center gap-2 text-sm shadow-sm transition-opacity hover:opacity-90 disabled:opacity-50",style:{backgroundColor:r},children:w?e.jsxs(e.Fragment,{children:[e.jsx("div",{className:"w-4 h-4 border-2 border-white border-t-transparent rounded-full animate-spin"}),s("Submitting...")]}):e.jsxs(e.Fragment,{children:[e.jsx(ue,{className:"w-4 h-4"}),s("Submit Subdomain Request")]})})]})]})]})}),e.jsx("div",{className:"lg:col-span-5",children:e.jsxs("div",{className:"bg-white border border-gray-200 rounded-2xl p-6 sm:p-8 shadow-sm space-y-6 sticky top-8",children:[e.jsxs("div",{className:"flex items-center justify-between border-b border-gray-100 pb-4",children:[e.jsxs("div",{children:[e.jsxs("h3",{className:"text-lg font-bold text-gray-900 flex items-center gap-2",children:[e.jsx("div",{className:"w-8 h-8 rounded-lg flex items-center justify-center",style:{backgroundColor:`${r}15`,color:r},children:e.jsx(L,{className:"w-4 h-4"})}),s("Price Breakdown Estimate")]}),e.jsx("p",{className:"text-xs text-gray-500 mt-1 font-medium",children:s("Live calculation based on your wizard choices")})]}),e.jsx("span",{className:"text-[11px] font-bold px-2.5 py-1 rounded-full border",style:{backgroundColor:`${r}10`,color:r,borderColor:`${r}30`},children:s("Mock Estimate")})]}),e.jsxs("div",{className:"bg-gray-100 p-1 rounded-xl flex text-xs font-semibold",children:[e.jsx("button",{type:"button",onClick:()=>M("monthly"),className:`flex-1 py-2 rounded-lg transition-all ${d==="monthly"?"text-white shadow-sm font-bold":"text-gray-600 hover:text-gray-900"}`,style:d==="monthly"?{backgroundColor:r}:{},children:s("Monthly Billing")}),e.jsxs("button",{type:"button",onClick:()=>M("annual"),className:`flex-1 py-2 rounded-lg transition-all flex items-center justify-center gap-1.5 ${d==="annual"?"text-white shadow-sm font-bold":"text-gray-600 hover:text-gray-900"}`,style:d==="annual"?{backgroundColor:r}:{},children:[s("Annual"),e.jsx("span",{className:"bg-emerald-500 text-white text-[10px] px-1.5 py-0.5 rounded font-bold",children:"-20%"})]})]}),e.jsxs("div",{className:"space-y-3 text-xs text-gray-700",children:[e.jsxs("div",{className:"flex justify-between items-center py-2 border-b border-gray-100",children:[e.jsx("span",{className:"font-semibold text-gray-900",children:s("Base Platform & Cloud Hosting")}),e.jsxs("span",{className:"font-mono font-bold text-gray-800",children:["$",E.toFixed(2)," / mo"]})]}),e.jsxs("div",{className:"flex justify-between items-center py-2 border-b border-gray-100",children:[e.jsxs("div",{children:[e.jsx("div",{className:"font-semibold text-gray-900",children:s("Staff Capacity")}),e.jsxs("div",{className:"text-[11px] text-gray-500",children:[a.employee_count," ",s("employees")," @ $1.50/ea"]})]}),e.jsxs("span",{className:"font-mono font-bold text-gray-800",children:["$",F.toFixed(2)," / mo"]})]}),e.jsxs("div",{className:"py-2 border-b border-gray-100 space-y-2",children:[e.jsxs("div",{className:"flex justify-between items-center",children:[e.jsxs("span",{className:"font-semibold text-gray-900",children:[s("Requested Modules")," (",b.length,")"]}),e.jsxs("span",{className:"font-mono font-bold text-gray-800",children:["$",_.toFixed(2)," / mo"]})]}),b.length>0?e.jsx("div",{className:"space-y-1.5 pl-3 border-l-2 text-[11px]",style:{borderColor:`${r}50`},children:b.map(t=>e.jsxs("div",{className:"flex justify-between text-gray-600 font-medium",children:[e.jsxs("span",{children:["• ",s(t.label)]}),e.jsxs("span",{className:"font-mono font-semibold",children:["$",t.price.toFixed(2)]})]},t.id))}):e.jsx("div",{className:"text-[11px] text-amber-600 font-medium bg-amber-50 border border-amber-200 p-2 rounded-lg",children:s("No modules selected. Select modules in Step 2.")})]}),P&&e.jsxs("div",{className:"flex justify-between items-center py-1 text-emerald-600 font-semibold text-[11px]",children:[e.jsxs("span",{children:["🎉 ",s("Suite Bundle Discount (5+ modules)")]}),e.jsxs("span",{className:"font-mono",children:["-$",R.toFixed(2)," / mo"]})]}),d==="annual"&&e.jsxs("div",{className:"flex justify-between items-center py-1 text-emerald-600 font-semibold text-[11px]",children:[e.jsxs("span",{children:["⚡ ",s("Annual Billing Savings (20% off)")]}),e.jsxs("span",{className:"font-mono",children:["-",Math.round(T*100),"%"]})]})]}),e.jsxs("div",{className:"p-4 rounded-xl border space-y-1",style:{backgroundColor:`${r}08`,borderColor:`${r}25`},children:[e.jsx("div",{className:"text-xs font-semibold text-gray-600",children:s(d==="annual"?"Estimated Total (Annual Billing)":"Estimated Total (Monthly Billing)")}),e.jsxs("div",{className:"flex items-baseline justify-between",children:[e.jsxs("div",{className:"text-3xl font-extrabold tracking-tight",style:{color:r},children:["$",H.toFixed(2),e.jsxs("span",{className:"text-xs font-normal text-gray-500 ml-1",children:["/ ",s(d==="annual"?"year":"month")]})]}),d==="annual"&&e.jsxs("div",{className:"text-[11px] font-medium text-gray-500",children:["(~$",S.toFixed(2)," / mo)"]})]})]}),e.jsxs("div",{className:"text-[11px] text-gray-500 space-y-2 pt-2 border-t border-gray-100 font-medium",children:[e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx("span",{className:"w-1.5 h-1.5 rounded-full",style:{backgroundColor:r}}),e.jsx("span",{children:s("No credit card required to request subdomain")})]}),e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx("span",{className:"w-1.5 h-1.5 rounded-full",style:{backgroundColor:r}}),e.jsx("span",{children:s("Final quote & enterprise tiers confirmed upon executive review")})]})]})]})})]})]}),J&&e.jsx("div",{className:"fixed inset-0 z-50 flex items-center justify-center bg-black/50 p-4 animate-in fade-in duration-200",children:e.jsxs("div",{className:"bg-white rounded-2xl max-w-md w-full p-6 sm:p-8 shadow-xl border border-gray-100 space-y-4",children:[e.jsxs("div",{className:"text-center space-y-2",children:[e.jsx("div",{className:"w-12 h-12 rounded-full bg-blue-100 text-blue-600 mx-auto flex items-center justify-center font-bold text-xl",children:"✉️"}),e.jsx("h3",{className:"text-xl font-bold text-gray-900",children:s("Verify Email Ownership")}),e.jsxs("p",{className:"text-xs text-gray-600",children:[s("We sent a 6-digit verification code to "),e.jsx("span",{className:"font-semibold text-gray-900",children:a.email}),s(". Enter it below to confirm your subdomain request.")]})]}),e.jsxs("form",{onSubmit:Z,className:"space-y-4",children:[e.jsx("div",{children:e.jsx("input",{type:"text",maxLength:6,value:g,onChange:t=>k(t.target.value.replace(/[^0-9]/g,"")),className:"w-full text-center tracking-[0.5em] text-2xl font-bold py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-blue-500",placeholder:"123456",required:!0})}),e.jsxs("div",{className:"flex gap-3",children:[e.jsx("button",{type:"button",onClick:()=>C(!1),className:"flex-1 py-3 border border-gray-300 rounded-xl text-gray-700 font-semibold hover:bg-gray-50 text-sm",children:s("Cancel")}),e.jsx("button",{type:"submit",disabled:I||g.length!==6,className:"flex-1 py-3 text-white rounded-xl font-semibold bg-blue-600 hover:bg-blue-700 disabled:opacity-50 text-sm flex items-center justify-center gap-2",children:s(I?"Verifying...":"Verify & Complete")})]})]})]})})]})}export{Pe as default}; diff --git a/public/build/assets/CookieConsentBanner-D6mNoHe8.js b/public/build/assets/CookieConsentBanner-CIl2kmlz.js similarity index 93% rename from public/build/assets/CookieConsentBanner-D6mNoHe8.js rename to public/build/assets/CookieConsentBanner-CIl2kmlz.js index 4c564fab3..6a21583b3 100644 --- a/public/build/assets/CookieConsentBanner-D6mNoHe8.js +++ b/public/build/assets/CookieConsentBanner-CIl2kmlz.js @@ -1 +1 @@ -import{r as v,j as e,z as B,B as $,E as K,F as V,I as W,S as Q,G as Y,L as Z}from"./ui-Z445SNHD.js";import{R as P}from"./react-country-flag.esm-Bs2jngHP.js";import{u as A,c as I,D as ee,h as te,j as se,k as ae,L as M,I as z,o as j,J as T,e as F,K as _,N as O,P as oe,O as U,Q as ne,r as q,R as J,a as re,C as G,X as H,T as ie,t as X}from"./app-RVic1vq7.js";import{R as ce}from"./refresh-cw-CIu7xck0.js";import{G as le}from"./globe-DGYT8gkU.js";import{S as de}from"./settings-DBIyybIQ.js";import{S as ue}from"./switch-DRMEZ31B.js";function me({open:s,onOpenChange:l,onSuccess:c}){var o;const{t}=A(),{props:p}=I(),b=((o=p.globalSettings)==null?void 0:o.is_demo)||!1,[n,u]=v.useState({code:"",name:"",countryCode:""}),[x,D]=v.useState(!1),f=async d=>{var C;d.preventDefault(),D(!0);try{const y=await fetch(route("languages.create"),{method:"POST",headers:{"Content-Type":"application/json","X-CSRF-TOKEN":((C=document.querySelector('meta[name="csrf-token"]'))==null?void 0:C.getAttribute("content"))||"",Accept:"application/json","X-Requested-With":"XMLHttpRequest"},body:JSON.stringify(n)}),h=await y.json();y.ok&&h.success?(T.success(h.message||t("Language created successfully")),u({code:"",name:"",countryCode:""}),l(!1),c==null||c(),window.location.reload()):(console.error("Create language error:",h),b&&h.message?T.error(h.message):T.error(h.error||t("Failed to create language")))}catch(y){console.error("Network error:",y),T.error(t("Failed to create language"))}finally{D(!1)}};return e.jsx(ee,{open:s,onOpenChange:l,children:e.jsxs(te,{className:"sm:max-w-md",children:[e.jsx(se,{children:e.jsx(ae,{children:t("Create Language")})}),e.jsxs("form",{onSubmit:f,className:"space-y-4",children:[e.jsxs("div",{children:[e.jsx(M,{htmlFor:"code",children:t("Language Code")}),e.jsx(z,{id:"code",placeholder:t("e.g., fr, de, ja"),value:n.code,onChange:d=>u({...n,code:d.target.value}),required:!0})]}),e.jsxs("div",{children:[e.jsx(M,{htmlFor:"name",children:t("Language Name")}),e.jsx(z,{id:"name",placeholder:t("e.g., Français, Deutsch, 日本語"),value:n.name,onChange:d=>u({...n,name:d.target.value}),required:!0})]}),e.jsxs("div",{children:[e.jsx(M,{htmlFor:"countryCode",children:t("Country Code")}),e.jsx(z,{id:"countryCode",placeholder:t("e.g., FR, DE, JP"),maxLength:2,value:n.countryCode,onChange:d=>u({...n,countryCode:d.target.value.toUpperCase()}),required:!0})]}),e.jsxs("div",{className:"flex justify-end gap-2",children:[e.jsx(j,{type:"button",variant:"outline",onClick:()=>l(!1),children:t("Cancel")}),e.jsx(j,{type:"submit",disabled:x,children:x?e.jsxs(e.Fragment,{children:[e.jsx(ce,{className:"h-4 w-4 animate-spin mr-2"}),t("Creating...")]}):t("Create Language")})]})]})]})})}function ge({...s}){return e.jsx(B,{"data-slot":"dropdown-menu",...s})}function fe({...s}){return e.jsx($,{"data-slot":"dropdown-menu-trigger",...s})}function pe({className:s,sideOffset:l=4,...c}){return e.jsx(K,{children:e.jsx(V,{"data-slot":"dropdown-menu-content",sideOffset:l,className:F("bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 min-w-[8rem] overflow-hidden rounded-md border p-1 shadow-md",s),...c})})}function he({...s}){return e.jsx(Y,{"data-slot":"dropdown-menu-group",...s})}function R({className:s,inset:l,variant:c="default",...t}){return e.jsx(W,{"data-slot":"dropdown-menu-item","data-inset":l,"data-variant":c,className:F("focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive-foreground data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/40 data-[variant=destructive]:focus:text-destructive-foreground data-[variant=destructive]:*:[svg]:!text-destructive-foreground [&_svg:not([class*='text-'])]:text-muted-foreground relative flex cursor-pointer items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",s),...t})}function Ne({className:s,inset:l,...c}){return e.jsx(Z,{"data-slot":"dropdown-menu-label","data-inset":l,className:F("px-2 py-1.5 text-sm font-medium data-[inset]:pl-8",s),...c})}function xe({className:s,...l}){return e.jsx(Q,{"data-slot":"dropdown-menu-separator",className:F("bg-border -mx-1 my-1 h-px",s),...l})}function De(){var g,N;const{i18n:s,t:l}=A(),{auth:c,globalSettings:t,userLanguage:p}=I().props,{setPosition:b}=_(),{updatePosition:n}=_(),[u,x]=v.useState(()=>{const a=((t==null?void 0:t.availableLanguages)||[]).filter(r=>r.enabled!==!1);if(p){const r=a.find(i=>i.code===p);if(r)return r}return a[0]||null}),[D,f]=v.useState(!1),o=(t==null?void 0:t.availableLanguages)||[],d=(t==null?void 0:t.is_saas)||!1,C=!!(c!=null&&c.user),y=((N=(g=c==null?void 0:c.user)==null?void 0:g.roles)==null?void 0:N.map(a=>a.name))||[],h=C&&O("superadmin",y),S=C&&O("company",y),m=d?h:S;v.useEffect(()=>{const a=(o||[]).filter(r=>r.enabled!==!1);if(p&&s.language!==p)s.changeLanguage(p,()=>{const r=a.find(i=>i.code===p)||a[0];x(r)});else{const r=a.find(i=>i.code===s.language)||a[0];x(r)}},[o,p]),v.useEffect(()=>{const a=(o||[]).filter(i=>i.enabled!==!1),r=a.find(i=>i.code===s.language)||a[0];x(r)},[s.language,o]);const k=["ar","he"],w=async a=>{const r=o.find(i=>i.code===a);if(r){x(r);try{await s.changeLanguage(a);const i=k.includes(a);let L;U()?L=i?"right":ne("layoutPosition")||"left":L=i?"right":(t==null?void 0:t.layoutDirection)||"left",document.documentElement.dir="ltr",document.documentElement.setAttribute("dir","ltr"),n(L),C&&!U()?q.post(route("languages.change"),{language:a},{preserveScroll:!0,onSuccess:()=>{(i||!i&&(t==null?void 0:t.layoutDirection)==="right")&&q.post(route("settings.brand.update"),{settings:{layoutDirection:L}},{preserveScroll:!0,onError:E=>{console.error("Failed to update layout direction:",E)}})},onError:E=>{console.error("Failed to change language:",E)}}):(J("app_language",a),J("layoutPosition",L)),window.dispatchEvent(new CustomEvent("languageChanged",{detail:{language:a,direction:L}})),window.dispatchEvent(new Event("resize"))}catch(i){console.error("Error changing language:",i)}}};return e.jsxs(e.Fragment,{children:[e.jsxs(ge,{children:[e.jsx(fe,{asChild:!0,children:e.jsxs(j,{variant:"ghost",className:"flex items-center gap-2 rounded-md border shadow-sm bg-white",children:[e.jsx(le,{className:"h-4 w-4"}),u&&e.jsxs(e.Fragment,{children:[e.jsx("span",{className:"text-sm font-medium hidden md:inline-block",children:u.name}),e.jsx(P,{countryCode:u.countryCode,svg:!0,style:{width:"1.2em",height:"1.2em"}})]})]})}),e.jsxs(pe,{className:"w-56",align:"end",forceMount:!0,children:[e.jsx(he,{children:e.jsx("div",{className:"max-h-48 overflow-y-auto",children:(o||[]).filter(a=>a.enabled!==!1).map(a=>e.jsxs(R,{onClick:()=>w(a.code),className:`flex items-center gap-2 ${(u==null?void 0:u.code)===a.code?"bg-accent":""}`,children:[e.jsx(P,{countryCode:a.countryCode,svg:!0,style:{width:"1.2em",height:"1.2em"}}),e.jsx("span",{children:a.name})]},a.code))})}),m&&e.jsxs(e.Fragment,{children:[e.jsx(xe,{}),e.jsxs(R,{onClick:()=>f(!0),className:"justify-center text-primary font-semibold cursor-pointer",children:[e.jsx(oe,{className:"h-4 w-4 mr-2"}),l("Create Language")]}),e.jsx(R,{asChild:!0,className:"justify-center text-primary font-semibold cursor-pointer",children:e.jsxs("a",{href:route("manage-language"),rel:"noopener noreferrer",children:[e.jsx(de,{className:"h-4 w-4 mr-2"}),l("Manage Language")]})})]})]})]}),e.jsx(me,{open:D,onOpenChange:f,onSuccess:()=>f(!1)})]})}function Le(){const{t:s}=A(),{props:l}=I(),[c,t]=v.useState(!1),[p,b]=v.useState(!1),[n,u]=v.useState(!1),{themeColor:x,customColor:D}=re(),f=x==="custom"?D:ie[x],o=l.globalSettings||{},d={cookieTitle:o.cookieTitle||"Cookie Consent",cookieDescription:o.cookieDescription||"We use cookies to enhance your browsing experience and provide personalized content.",strictlyCookieTitle:o.strictlyCookieTitle||"Strictly Necessary Cookies",strictlyCookieDescription:o.strictlyCookieDescription||"These cookies are essential for the website to function properly.",contactUsDescription:o.contactUsDescription||"If you have any questions about our cookie policy, please contact us.",contactUsUrl:o.contactUsUrl||"#"};v.useEffect(()=>{var N,a;const m=o.enableLogging==="1"||o.enableLogging===1||o.enableLogging===!0,k=o.is_demo==="1"||o.is_demo===1||o.is_demo===!0,w=window.location.pathname==="/dashboard"||window.location.pathname.includes("/dashboard"),g=(a=(N=l.auth)==null?void 0:N.user)==null?void 0:a.type;if(m){if(k&&(!w||g!=="company"))return;localStorage.getItem("cookie-consent")||t(!0)}},[]);const C=async()=>{try{const m=new AbortController,k=setTimeout(()=>m.abort(),5e3),w=await fetch("https://ipapi.co/json/",{signal:m.signal,headers:{Accept:"application/json"}});if(clearTimeout(k),!w.ok)throw new Error(`HTTP error! status: ${w.status}`);const g=await w.json();return{ip:g.ip||"unknown",country:g.country_name||"unknown",city:g.city||"unknown",region:g.region||"unknown",...g}}catch(m){return console.warn("Failed to get location data:",m.message),{ip:"unknown",country:"unknown",city:"unknown",region:"unknown",error:m.message||"Location fetch failed"}}},y=async(m,k)=>{var w;try{const g=await C(),N={...k,timestamp:new Date().toISOString(),consentType:m,userAgent:navigator.userAgent||"unknown",language:navigator.language||"unknown",url:window.location.href,...g};localStorage.setItem("cookie-consent",JSON.stringify({accepted:!0,timestamp:Date.now()}));const a=(w=document.querySelector('meta[name="csrf-token"]'))==null?void 0:w.getAttribute("content");if(!a){console.warn("CSRF token not found");return}const r=await fetch(route("cookie.consent.store"),{method:"POST",headers:{"Content-Type":"application/json","X-CSRF-TOKEN":a,Accept:"application/json"},body:JSON.stringify(N)});if(!r.ok)throw new Error(`HTTP error! status: ${r.status}`);if(!(await r.json()).success)throw new Error("Server returned error")}catch(g){throw console.error("Failed to save cookie consent:",g),localStorage.setItem("cookie-consent",JSON.stringify({accepted:!0,timestamp:Date.now()})),g}},h=async()=>{if(!n){u(!0);try{await y("accept_all",{necessary:!0,analytics:!0,marketing:!0}),t(!1)}catch{X.error(s("Failed to save cookie preferences"))}finally{u(!1)}}},S=async()=>{if(!n){u(!0);try{await y("necessary_only",{necessary:!0,analytics:!1,marketing:!1}),t(!1)}catch{X.error(s("Failed to save cookie preferences"))}finally{u(!1)}}};return c?e.jsxs(e.Fragment,{children:[e.jsx("div",{className:"fixed bottom-4 left-1/2 transform -translate-x-1/2 z-50 max-w-md w-full mx-4",children:e.jsxs(G,{className:"p-4 shadow-lg border",children:[e.jsxs("div",{className:"flex justify-between items-start mb-3",children:[e.jsx("h3",{className:"font-semibold text-sm",children:d.cookieTitle}),e.jsx(j,{variant:"ghost",size:"sm",onClick:()=>t(!1),className:"h-6 w-6 p-0",children:e.jsx(H,{className:"h-4 w-4"})})]}),e.jsx("p",{className:"text-sm text-muted-foreground mb-4",children:d.cookieDescription}),e.jsxs("div",{className:"flex flex-col gap-2",children:[e.jsxs("div",{className:"flex gap-2",children:[e.jsx(j,{onClick:h,size:"sm",className:"flex-1 text-white hover:opacity-90",style:{backgroundColor:f},disabled:n,children:s(n?"Saving...":"Accept All")}),e.jsx(j,{onClick:S,variant:"outline",size:"sm",className:"flex-1",style:{borderColor:f,color:f},disabled:n,children:s(n?"Saving...":"Necessary Only")})]}),e.jsx(j,{onClick:()=>b(!0),variant:"ghost",size:"sm",className:"text-sm underline",children:s("Let me choose")})]}),e.jsxs("p",{className:"text-xs text-muted-foreground mt-2",children:[d.contactUsDescription," ",e.jsx("a",{href:d.contactUsUrl,className:"underline",children:s("Contact us")})]})]})}),p&&e.jsx("div",{className:"fixed inset-0 z-[60] flex items-center justify-center p-4",children:e.jsx(G,{className:"w-full max-w-md max-h-[80vh] overflow-y-auto",children:e.jsxs("div",{className:"p-6",children:[e.jsxs("div",{className:"flex justify-between items-center mb-4",children:[e.jsx("h3",{className:"text-lg font-semibold",children:d.cookieTitle}),e.jsx(j,{variant:"ghost",size:"sm",onClick:()=>b(!1),className:"h-6 w-6 p-0",children:e.jsx(H,{className:"h-4 w-4"})})]}),e.jsx("div",{className:"space-y-4",children:e.jsxs("div",{className:"flex items-center justify-between",children:[e.jsxs("div",{className:"flex-1",children:[e.jsx("h4",{className:"font-medium text-sm",children:d.strictlyCookieTitle}),e.jsx("p",{className:"text-xs text-muted-foreground mt-1",children:d.strictlyCookieDescription})]}),e.jsx(ue,{checked:!0,disabled:!0})]})}),e.jsxs("div",{className:"flex gap-2 mt-6",children:[e.jsx(j,{onClick:async()=>{await S(),b(!1)},variant:"outline",size:"sm",className:"flex-1",style:{borderColor:f,color:f},disabled:n,children:s(n?"Saving...":"Save Preferences")}),e.jsx(j,{onClick:async()=>{await h(),b(!1)},size:"sm",className:"flex-1 text-white hover:opacity-90",style:{backgroundColor:f},disabled:n,children:s(n?"Saving...":"Accept All")})]})]})})})]}):null}export{Le as C,ge as D,De as L,fe as a,pe as b,R as c,xe as d,Ne as e,he as f}; +import{r as v,j as e,z as X,B as $,E as K,F as V,I as W,S as Q,G as Y,L as Z}from"./ui-Z445SNHD.js";import{R as P}from"./react-country-flag.esm-Bs2jngHP.js";import{u as A,c as I,D as ee,h as te,j as se,k as ae,L as M,I as z,B as j,J as T,e as F,K as _,N as O,P as oe,O as U,Q as ne,r as q,R as J,a as re,C as B,X as G,T as ie,t as H}from"./app-36WMjvX0.js";import{R as ce}from"./refresh-cw-BTR9wbuS.js";import{G as le}from"./globe-ZoJAuRB5.js";import{S as de}from"./settings-DYZFNkOc.js";import{S as ue}from"./switch-C7AW5g5G.js";function me({open:s,onOpenChange:l,onSuccess:c}){var o;const{t}=A(),{props:p}=I(),b=((o=p.globalSettings)==null?void 0:o.is_demo)||!1,[n,u]=v.useState({code:"",name:"",countryCode:""}),[x,D]=v.useState(!1),f=async d=>{var C;d.preventDefault(),D(!0);try{const y=await fetch(route("languages.create"),{method:"POST",headers:{"Content-Type":"application/json","X-CSRF-TOKEN":((C=document.querySelector('meta[name="csrf-token"]'))==null?void 0:C.getAttribute("content"))||"",Accept:"application/json","X-Requested-With":"XMLHttpRequest"},body:JSON.stringify(n)}),h=await y.json();y.ok&&h.success?(T.success(h.message||t("Language created successfully")),u({code:"",name:"",countryCode:""}),l(!1),c==null||c(),window.location.reload()):(console.error("Create language error:",h),b&&h.message?T.error(h.message):T.error(h.error||t("Failed to create language")))}catch(y){console.error("Network error:",y),T.error(t("Failed to create language"))}finally{D(!1)}};return e.jsx(ee,{open:s,onOpenChange:l,children:e.jsxs(te,{className:"sm:max-w-md",children:[e.jsx(se,{children:e.jsx(ae,{children:t("Create Language")})}),e.jsxs("form",{onSubmit:f,className:"space-y-4",children:[e.jsxs("div",{children:[e.jsx(M,{htmlFor:"code",children:t("Language Code")}),e.jsx(z,{id:"code",placeholder:t("e.g., fr, de, ja"),value:n.code,onChange:d=>u({...n,code:d.target.value}),required:!0})]}),e.jsxs("div",{children:[e.jsx(M,{htmlFor:"name",children:t("Language Name")}),e.jsx(z,{id:"name",placeholder:t("e.g., Français, Deutsch, 日本語"),value:n.name,onChange:d=>u({...n,name:d.target.value}),required:!0})]}),e.jsxs("div",{children:[e.jsx(M,{htmlFor:"countryCode",children:t("Country Code")}),e.jsx(z,{id:"countryCode",placeholder:t("e.g., FR, DE, JP"),maxLength:2,value:n.countryCode,onChange:d=>u({...n,countryCode:d.target.value.toUpperCase()}),required:!0})]}),e.jsxs("div",{className:"flex justify-end gap-2",children:[e.jsx(j,{type:"button",variant:"outline",onClick:()=>l(!1),children:t("Cancel")}),e.jsx(j,{type:"submit",disabled:x,children:x?e.jsxs(e.Fragment,{children:[e.jsx(ce,{className:"h-4 w-4 animate-spin mr-2"}),t("Creating...")]}):t("Create Language")})]})]})]})})}function ge({...s}){return e.jsx(X,{"data-slot":"dropdown-menu",...s})}function fe({...s}){return e.jsx($,{"data-slot":"dropdown-menu-trigger",...s})}function pe({className:s,sideOffset:l=4,...c}){return e.jsx(K,{children:e.jsx(V,{"data-slot":"dropdown-menu-content",sideOffset:l,className:F("bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 min-w-[8rem] overflow-hidden rounded-md border p-1 shadow-md",s),...c})})}function he({...s}){return e.jsx(Y,{"data-slot":"dropdown-menu-group",...s})}function R({className:s,inset:l,variant:c="default",...t}){return e.jsx(W,{"data-slot":"dropdown-menu-item","data-inset":l,"data-variant":c,className:F("focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive-foreground data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/40 data-[variant=destructive]:focus:text-destructive-foreground data-[variant=destructive]:*:[svg]:!text-destructive-foreground [&_svg:not([class*='text-'])]:text-muted-foreground relative flex cursor-pointer items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",s),...t})}function Ne({className:s,inset:l,...c}){return e.jsx(Z,{"data-slot":"dropdown-menu-label","data-inset":l,className:F("px-2 py-1.5 text-sm font-medium data-[inset]:pl-8",s),...c})}function xe({className:s,...l}){return e.jsx(Q,{"data-slot":"dropdown-menu-separator",className:F("bg-border -mx-1 my-1 h-px",s),...l})}function De(){var g,N;const{i18n:s,t:l}=A(),{auth:c,globalSettings:t,userLanguage:p}=I().props,{setPosition:b}=_(),{updatePosition:n}=_(),[u,x]=v.useState(()=>{const a=((t==null?void 0:t.availableLanguages)||[]).filter(r=>r.enabled!==!1);if(p){const r=a.find(i=>i.code===p);if(r)return r}return a[0]||null}),[D,f]=v.useState(!1),o=(t==null?void 0:t.availableLanguages)||[],d=(t==null?void 0:t.is_saas)||!1,C=!!(c!=null&&c.user),y=((N=(g=c==null?void 0:c.user)==null?void 0:g.roles)==null?void 0:N.map(a=>a.name))||[],h=C&&O("superadmin",y),S=C&&O("company",y),m=d?h:S;v.useEffect(()=>{const a=(o||[]).filter(r=>r.enabled!==!1);if(p&&s.language!==p)s.changeLanguage(p,()=>{const r=a.find(i=>i.code===p)||a[0];x(r)});else{const r=a.find(i=>i.code===s.language)||a[0];x(r)}},[o,p]),v.useEffect(()=>{const a=(o||[]).filter(i=>i.enabled!==!1),r=a.find(i=>i.code===s.language)||a[0];x(r)},[s.language,o]);const k=["ar","he"],w=async a=>{const r=o.find(i=>i.code===a);if(r){x(r);try{await s.changeLanguage(a);const i=k.includes(a);let L;U()?L=i?"right":ne("layoutPosition")||"left":L=i?"right":(t==null?void 0:t.layoutDirection)||"left",document.documentElement.dir="ltr",document.documentElement.setAttribute("dir","ltr"),n(L),C&&!U()?q.post(route("languages.change"),{language:a},{preserveScroll:!0,onSuccess:()=>{(i||!i&&(t==null?void 0:t.layoutDirection)==="right")&&q.post(route("settings.brand.update"),{settings:{layoutDirection:L}},{preserveScroll:!0,onError:E=>{console.error("Failed to update layout direction:",E)}})},onError:E=>{console.error("Failed to change language:",E)}}):(J("app_language",a),J("layoutPosition",L)),window.dispatchEvent(new CustomEvent("languageChanged",{detail:{language:a,direction:L}})),window.dispatchEvent(new Event("resize"))}catch(i){console.error("Error changing language:",i)}}};return e.jsxs(e.Fragment,{children:[e.jsxs(ge,{children:[e.jsx(fe,{asChild:!0,children:e.jsxs(j,{variant:"ghost",className:"flex items-center gap-2 rounded-md border shadow-sm bg-white",children:[e.jsx(le,{className:"h-4 w-4"}),u&&e.jsxs(e.Fragment,{children:[e.jsx("span",{className:"text-sm font-medium hidden md:inline-block",children:u.name}),e.jsx(P,{countryCode:u.countryCode,svg:!0,style:{width:"1.2em",height:"1.2em"}})]})]})}),e.jsxs(pe,{className:"w-56",align:"end",forceMount:!0,children:[e.jsx(he,{children:e.jsx("div",{className:"max-h-48 overflow-y-auto",children:(o||[]).filter(a=>a.enabled!==!1).map(a=>e.jsxs(R,{onClick:()=>w(a.code),className:`flex items-center gap-2 ${(u==null?void 0:u.code)===a.code?"bg-accent":""}`,children:[e.jsx(P,{countryCode:a.countryCode,svg:!0,style:{width:"1.2em",height:"1.2em"}}),e.jsx("span",{children:a.name})]},a.code))})}),m&&e.jsxs(e.Fragment,{children:[e.jsx(xe,{}),e.jsxs(R,{onClick:()=>f(!0),className:"justify-center text-primary font-semibold cursor-pointer",children:[e.jsx(oe,{className:"h-4 w-4 mr-2"}),l("Create Language")]}),e.jsx(R,{asChild:!0,className:"justify-center text-primary font-semibold cursor-pointer",children:e.jsxs("a",{href:route("manage-language"),rel:"noopener noreferrer",children:[e.jsx(de,{className:"h-4 w-4 mr-2"}),l("Manage Language")]})})]})]})]}),e.jsx(me,{open:D,onOpenChange:f,onSuccess:()=>f(!1)})]})}function Le(){const{t:s}=A(),{props:l}=I(),[c,t]=v.useState(!1),[p,b]=v.useState(!1),[n,u]=v.useState(!1),{themeColor:x,customColor:D}=re(),f=x==="custom"?D:ie[x],o=l.globalSettings||{},d={cookieTitle:o.cookieTitle||"Cookie Consent",cookieDescription:o.cookieDescription||"We use cookies to enhance your browsing experience and provide personalized content.",strictlyCookieTitle:o.strictlyCookieTitle||"Strictly Necessary Cookies",strictlyCookieDescription:o.strictlyCookieDescription||"These cookies are essential for the website to function properly.",contactUsDescription:o.contactUsDescription||"If you have any questions about our cookie policy, please contact us.",contactUsUrl:o.contactUsUrl||"#"};v.useEffect(()=>{var N,a;const m=o.enableLogging==="1"||o.enableLogging===1||o.enableLogging===!0,k=o.is_demo==="1"||o.is_demo===1||o.is_demo===!0,w=window.location.pathname==="/dashboard"||window.location.pathname.includes("/dashboard"),g=(a=(N=l.auth)==null?void 0:N.user)==null?void 0:a.type;if(m){if(k&&(!w||g!=="company"))return;localStorage.getItem("cookie-consent")||t(!0)}},[]);const C=async()=>{try{const m=new AbortController,k=setTimeout(()=>m.abort(),5e3),w=await fetch("https://ipapi.co/json/",{signal:m.signal,headers:{Accept:"application/json"}});if(clearTimeout(k),!w.ok)throw new Error(`HTTP error! status: ${w.status}`);const g=await w.json();return{ip:g.ip||"unknown",country:g.country_name||"unknown",city:g.city||"unknown",region:g.region||"unknown",...g}}catch(m){return console.warn("Failed to get location data:",m.message),{ip:"unknown",country:"unknown",city:"unknown",region:"unknown",error:m.message||"Location fetch failed"}}},y=async(m,k)=>{var w;try{const g=await C(),N={...k,timestamp:new Date().toISOString(),consentType:m,userAgent:navigator.userAgent||"unknown",language:navigator.language||"unknown",url:window.location.href,...g};localStorage.setItem("cookie-consent",JSON.stringify({accepted:!0,timestamp:Date.now()}));const a=(w=document.querySelector('meta[name="csrf-token"]'))==null?void 0:w.getAttribute("content");if(!a){console.warn("CSRF token not found");return}const r=await fetch(route("cookie.consent.store"),{method:"POST",headers:{"Content-Type":"application/json","X-CSRF-TOKEN":a,Accept:"application/json"},body:JSON.stringify(N)});if(!r.ok)throw new Error(`HTTP error! status: ${r.status}`);if(!(await r.json()).success)throw new Error("Server returned error")}catch(g){throw console.error("Failed to save cookie consent:",g),localStorage.setItem("cookie-consent",JSON.stringify({accepted:!0,timestamp:Date.now()})),g}},h=async()=>{if(!n){u(!0);try{await y("accept_all",{necessary:!0,analytics:!0,marketing:!0}),t(!1)}catch{H.error(s("Failed to save cookie preferences"))}finally{u(!1)}}},S=async()=>{if(!n){u(!0);try{await y("necessary_only",{necessary:!0,analytics:!1,marketing:!1}),t(!1)}catch{H.error(s("Failed to save cookie preferences"))}finally{u(!1)}}};return c?e.jsxs(e.Fragment,{children:[e.jsx("div",{className:"fixed bottom-4 left-1/2 transform -translate-x-1/2 z-50 max-w-md w-full mx-4",children:e.jsxs(B,{className:"p-4 shadow-lg border",children:[e.jsxs("div",{className:"flex justify-between items-start mb-3",children:[e.jsx("h3",{className:"font-semibold text-sm",children:d.cookieTitle}),e.jsx(j,{variant:"ghost",size:"sm",onClick:()=>t(!1),className:"h-6 w-6 p-0",children:e.jsx(G,{className:"h-4 w-4"})})]}),e.jsx("p",{className:"text-sm text-muted-foreground mb-4",children:d.cookieDescription}),e.jsxs("div",{className:"flex flex-col gap-2",children:[e.jsxs("div",{className:"flex gap-2",children:[e.jsx(j,{onClick:h,size:"sm",className:"flex-1 text-white hover:opacity-90",style:{backgroundColor:f},disabled:n,children:s(n?"Saving...":"Accept All")}),e.jsx(j,{onClick:S,variant:"outline",size:"sm",className:"flex-1",style:{borderColor:f,color:f},disabled:n,children:s(n?"Saving...":"Necessary Only")})]}),e.jsx(j,{onClick:()=>b(!0),variant:"ghost",size:"sm",className:"text-sm underline",children:s("Let me choose")})]}),e.jsxs("p",{className:"text-xs text-muted-foreground mt-2",children:[d.contactUsDescription," ",e.jsx("a",{href:d.contactUsUrl,className:"underline",children:s("Contact us")})]})]})}),p&&e.jsx("div",{className:"fixed inset-0 z-[60] flex items-center justify-center p-4",children:e.jsx(B,{className:"w-full max-w-md max-h-[80vh] overflow-y-auto",children:e.jsxs("div",{className:"p-6",children:[e.jsxs("div",{className:"flex justify-between items-center mb-4",children:[e.jsx("h3",{className:"text-lg font-semibold",children:d.cookieTitle}),e.jsx(j,{variant:"ghost",size:"sm",onClick:()=>b(!1),className:"h-6 w-6 p-0",children:e.jsx(G,{className:"h-4 w-4"})})]}),e.jsx("div",{className:"space-y-4",children:e.jsxs("div",{className:"flex items-center justify-between",children:[e.jsxs("div",{className:"flex-1",children:[e.jsx("h4",{className:"font-medium text-sm",children:d.strictlyCookieTitle}),e.jsx("p",{className:"text-xs text-muted-foreground mt-1",children:d.strictlyCookieDescription})]}),e.jsx(ue,{checked:!0,disabled:!0})]})}),e.jsxs("div",{className:"flex gap-2 mt-6",children:[e.jsx(j,{onClick:async()=>{await S(),b(!1)},variant:"outline",size:"sm",className:"flex-1",style:{borderColor:f,color:f},disabled:n,children:s(n?"Saving...":"Save Preferences")}),e.jsx(j,{onClick:async()=>{await h(),b(!1)},size:"sm",className:"flex-1 text-white hover:opacity-90",style:{backgroundColor:f},disabled:n,children:s(n?"Saving...":"Accept All")})]})]})})})]}):null}export{Le as C,ge as D,De as L,fe as a,pe as b,R as c,xe as d,Ne as e,he as f}; diff --git a/public/build/assets/CrudDeleteModal-CSxMfEbq.js b/public/build/assets/CrudDeleteModal-DM40AK8z.js similarity index 90% rename from public/build/assets/CrudDeleteModal-CSxMfEbq.js rename to public/build/assets/CrudDeleteModal-DM40AK8z.js index ae9a40efa..722153430 100644 --- a/public/build/assets/CrudDeleteModal-CSxMfEbq.js +++ b/public/build/assets/CrudDeleteModal-DM40AK8z.js @@ -1 +1 @@ -import{j as e}from"./ui-Z445SNHD.js";import{u as r,D as c,h as d,j as u,k as h,p as j,q as x,o as a}from"./app-RVic1vq7.js";function p({isOpen:o,onClose:n,onConfirm:i,itemName:l,entityName:t}){const{t:s}=r();return e.jsx(c,{open:o,onOpenChange:n,children:e.jsxs(d,{className:"sm:max-w-md",children:[e.jsxs(u,{children:[e.jsxs(h,{children:[s("Delete")," ",t]}),e.jsxs(j,{children:[s("Are you sure you want to delete")," ",l||`this ${t}`,"? ",s("This action cannot be undone.")]})]}),e.jsxs(x,{className:"sm:justify-end",children:[e.jsx(a,{type:"button",variant:"outline",onClick:n,children:s("Cancel")}),e.jsx(a,{type:"button",variant:"destructive",onClick:i,children:s("Delete")})]})]})})}export{p as C}; +import{j as e}from"./ui-Z445SNHD.js";import{u as r,D as c,h as d,j as u,k as h,p as j,q as x,B as a}from"./app-36WMjvX0.js";function p({isOpen:o,onClose:n,onConfirm:i,itemName:l,entityName:t}){const{t:s}=r();return e.jsx(c,{open:o,onOpenChange:n,children:e.jsxs(d,{className:"sm:max-w-md",children:[e.jsxs(u,{children:[e.jsxs(h,{children:[s("Delete")," ",t]}),e.jsxs(j,{children:[s("Are you sure you want to delete")," ",l||`this ${t}`,"? ",s("This action cannot be undone.")]})]}),e.jsxs(x,{className:"sm:justify-end",children:[e.jsx(a,{type:"button",variant:"outline",onClick:n,children:s("Cancel")}),e.jsx(a,{type:"button",variant:"destructive",onClick:i,children:s("Delete")})]})]})})}export{p as C}; diff --git a/public/build/assets/CrudFormModal-D0FwtcBz.js b/public/build/assets/CrudFormModal-Bmz2nLeY.js similarity index 91% rename from public/build/assets/CrudFormModal-D0FwtcBz.js rename to public/build/assets/CrudFormModal-Bmz2nLeY.js index ffa28372a..f01898d5c 100644 --- a/public/build/assets/CrudFormModal-D0FwtcBz.js +++ b/public/build/assets/CrudFormModal-Bmz2nLeY.js @@ -1 +1 @@ -import{r as O,j as a,R as ue}from"./ui-Z445SNHD.js";import{c as pe,u as de,D as xe,h as he,j as be,k as ye,p as ge,L as _,q as je,o as X,I as Z,M as ve}from"./app-RVic1vq7.js";import{T as we}from"./textarea-BzpsbH3u.js";import{S as Se,a as Ne,b as Fe,c as $e,d as te}from"./select-Dtd4U_ej.js";import{R as Oe,a as qe}from"./radio-group-BhWemNI6.js";import{C as Ae}from"./checkbox-D_VmjRox.js";import{S as Ve}from"./switch-DRMEZ31B.js";import{M as Ce}from"./multi-select-field-D4KiHEAu.js";import{S as Me}from"./scroll-area-Do8xQkt5.js";import{L as Ee}from"./LocationPicker-BSycMXk9.js";function ke({fields:u,values:C,onChange:q,disabled:p=!1}){const{base_url:h}=pe().props,[N,c]=O.useState(()=>{const l={};return u.forEach((n,x)=>{x===0?l[n.name]=n.options||[]:l[n.name]=[]}),l}),[M,F]=O.useState({}),H=async(l,n)=>{var x;if(!l.apiEndpoint)return[];F(r=>({...r,[l.name]:!0}));try{let r=l.apiEndpoint;if(n){const d=encodeURIComponent(String(n)),m=(x=u[u.indexOf(l)-1])==null?void 0:x.name;m&&(r=r.replace(`{${m}}`,d))}const g=await fetch(`${h}${r}`);if(!g.ok)throw new Error(`HTTP error! status: ${g.status}`);const j=await g.json();return Array.isArray(j)?j.map(d=>({value:String(d.id||d.value||""),label:String(d.name||d.label||"Unknown")})):[]}catch{return[]}finally{F(r=>({...r,[l.name]:!1}))}};O.useEffect(()=>{(async()=>{const n={};for(let x=0;x{u.slice(x+1).forEach(m=>{q(m.name,"")});const r=u.find(m=>m.name===l),j=(N[l]||(r==null?void 0:r.options)||[]).find(m=>String(m.value)===String(n)),A=j?{id:n,name:j.label}:null,d=u[x+1];if(d&&n){if(d.apiEndpoint){const m=await H(d,n);c(I=>({...I,[d.name]:m})),d.selectFirstOption&&m.length>0&&setTimeout(()=>{q(d.name,m[0].value)},100),q(l,n,{selectedInfo:A,loadedOptions:m});return}else if(d.dependencies){const m=d.dependencies[n]||[];c(I=>({...I,[d.name]:m})),q(l,n,{selectedInfo:A,loadedOptions:m});return}}q(l,n,{selectedInfo:A,loadedOptions:[]})};return a.jsx("div",{className:"space-y-4",children:u.map((l,n)=>{const x=n===0,r=x?null:u[n-1],g=p||!x&&!C[r.name],j=N[l.name]||[],A=M[l.name];return a.jsxs("div",{className:"space-y-2",children:[a.jsx("label",{className:"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",children:l.label}),a.jsxs("select",{value:C[l.name]||"",onChange:d=>B(l.name,d.target.value,n),disabled:g||A||l.disabled,className:"flex h-10 w-full items-center justify-between rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",children:[a.jsx("option",{value:"",className:"relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none text-muted-foreground",children:A?"Loading...":`Select ${l.label.toLowerCase()}`}),j.map(d=>a.jsx("option",{value:d.value,className:"relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",children:d.label},d.value))]})]},l.name)})})}function Pe({field:u,dateValue:C,handleChange:q,errors:p,mode:h}){const N=ue.useRef(null),c=()=>{var M,F;if(!u.disabled&&h!=="view"&&N.current)try{(F=(M=N.current).showPicker)==null||F.call(M)}catch{N.current.focus()}};return a.jsx("div",{className:"relative cursor-pointer",onClick:c,children:a.jsx("input",{ref:N,id:u.name,name:u.name,type:"date",placeholder:u.placeholder,value:C,onChange:M=>q(u.name,M.target.value),required:!!u.required,className:`border-input flex h-9 w-full rounded-md border bg-transparent px-3 py-1 text-base shadow-xs outline-none transition-[color,box-shadow] focus-visible:border-primary md:text-sm cursor-pointer disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 ${p[u.name]?"border-red-500":""}`,disabled:u.disabled||h==="view",readOnly:u.readOnly})})}function We({isOpen:u,onClose:C,onSubmit:q,formConfig:p,initialData:h={},title:N,mode:c,description:M,errors:F={},submitButtonText:H,onEdit:B}){const{t:l}=de(),[n,x]=O.useState({}),[r,g]=O.useState({}),[j,A]=O.useState({}),d=()=>{if(!p.priceSummary)return 0;const e=n[p.priceSummary.quantityFieldName||"quantity"]||p.priceSummary.quantity||1;return p.priceSummary.unitPrice*e};O.useEffect(()=>{if(u){const e={...h};p.fields.forEach(i=>{i.type==="multi-select"&&e[i.name]&&!Array.isArray(e[i.name])&&(e[i.name]=Array.isArray(e[i.name])?e[i.name]:e[i.name]?[e[i.name].toString()]:[]),c==="create"&&(e[i.name]===void 0||e[i.name]===null)&&i.defaultValue!==void 0&&(e[i.name]=i.defaultValue)}),x(e||{}),g({}),p.fields.forEach(i=>{i.relation&&i.relation.endpoint&&fetch(i.relation.endpoint).then(s=>s.json()).then(s=>{A(v=>({...v,[i.name]:Array.isArray(s)?s:s.data||[]}))}).catch(s=>{})})}},[u,h,p.fields,c]),O.useEffect(()=>{if(F&&Object.keys(F).length>0){const e={};Object.entries(F).forEach(([i,s])=>{e[i]=Array.isArray(s)?s[0]:s}),g(e)}},[F]);const m=(e,i)=>{x(s=>({...s,[e]:i})),r[e]&&g(s=>{const v={...s};return delete v[e],v})},I=e=>{e.preventDefault();const i={...n};p.fields.forEach(o=>{o.type==="multi-select"&&i[o.name]&&(Array.isArray(i[o.name])||(i[o.name]=[i[o.name].toString()]))}),x(i);const s={};if(p.fields.forEach(o=>{if(o.type==="file"&&c==="edit")return;const W=o.conditional?o.conditional(c,n):!0,R=n[o.name],z=R==null||R==="";if((typeof o.required=="function"?o.required(n):o.required)&&W&&z&&(s[o.name]=`${o.label} is required`),o.type==="file"&&n[o.name]&&o.fileValidation){const $=n[o.name];if(o.fileValidation.maxSize&&$.size>o.fileValidation.maxSize){const S=o.fileValidation.maxSize/1048576;s[o.name]=`File size must be less than ${S}MB`}if(o.fileValidation.mimeTypes&&o.fileValidation.mimeTypes.length>0&&(o.fileValidation.mimeTypes.includes($.type)||(s[o.name]=`File type must be one of: ${o.fileValidation.mimeTypes.join(", ")}`)),o.fileValidation.extensions&&o.fileValidation.extensions.length>0){const S=$.name,L=S.substring(S.lastIndexOf(".")).toLowerCase();o.fileValidation.extensions.includes(L)||(s[o.name]=`File extension must be one of: ${o.fileValidation.extensions.join(", ")}`)}}}),Object.keys(s).length>0){g(s);return}const v={...n};p.fields.forEach(o=>{o.type==="multi-select"&&v[o.name]&&(Array.isArray(v[o.name])||(v[o.name]=[v[o.name].toString()]))}),q(v)},Y=e=>{var i,s,v,o,W,R;if(e.conditional&&!e.conditional(c,n))return null;if(e.render)return e.render(e,n,m);if(c==="view"){if(e.type==="multi-select"){const P=(Array.isArray(n[e.name])?n[e.name]:[]).map($=>{var L;const S=(L=e.options)==null?void 0:L.find(J=>J.value===$);return S?S.label:$}).join(", ");return a.jsx("div",{className:"p-2 border rounded-md bg-gray-50",children:P||"-"})}return a.jsx("div",{className:"p-2 border rounded-md bg-gray-50",children:e.type==="select"&&e.options?((i=e.options.find(z=>z.value===String(n[e.name])))==null?void 0:i.label)||n[e.name]||"-":e.type==="checkbox"?n[e.name]===!0||n[e.name]===1||n[e.name]==="1"?l("Yes"):l("No"):n[e.name]||"-"})}switch(e.type){case"text":case"email":case"password":case"color":return a.jsx(Z,{id:e.name,name:e.name,type:e.type,placeholder:e.placeholder,value:n[e.name]??"",onChange:t=>m(e.name,t.target.value),required:e.required,className:r[e.name]?"border-red-500":"",disabled:e.disabled||c==="view",readOnly:e.readOnly});case"time":{const t=n[e.name]??"",E=e.disabled||c==="view",U=!!r[e.name];let k="",D="",V="AM";if(t&&t.includes(":")){const[y,w]=t.split(":"),b=parseInt(y,10);D=w.padStart(2,"0"),b===0?(k="12",V="AM"):b===12?(k="12",V="PM"):b>12?(k=String(b-12).padStart(2,"0"),V="PM"):(k=String(b).padStart(2,"0"),V="AM")}const Q=(y,w,b)=>{if(!y||!w)return"";let G=parseInt(y,10);return b==="AM"&&G===12?G=0:b==="PM"&&G!==12&&(G+=12),`${String(G).padStart(2,"0")}:${w}`},T=(y,w)=>{const ne=Q(y==="hour"?w:k||"12",y==="minute"?w:D||"00",y==="period"?w:V);ne&&m(e.name,ne)},K=`h-9 rounded-md border bg-transparent px-2 py-1 text-sm shadow-xs outline-none transition-[color,box-shadow] focus-visible:border-primary disabled:cursor-not-allowed disabled:opacity-50 ${U?"border-red-500":"border-input"}`;return a.jsxs("div",{className:"flex items-center gap-1.5",children:[a.jsxs("select",{id:`${e.name}-hour`,value:k,onChange:y=>T("hour",y.target.value),disabled:E,className:`${K} w-[62px]`,children:[a.jsx("option",{value:"",children:l("HH")}),Array.from({length:12},(y,w)=>{const b=String(w+1).padStart(2,"0");return a.jsx("option",{value:b,children:b},b)})]}),a.jsx("span",{className:"text-gray-400 font-bold text-lg",children:":"}),a.jsxs("select",{id:`${e.name}-minute`,value:D,onChange:y=>T("minute",y.target.value),disabled:E,className:`${K} w-[62px]`,children:[a.jsx("option",{value:"",children:l("MM")}),Array.from({length:60},(y,w)=>{const b=String(w).padStart(2,"0");return a.jsx("option",{value:b,children:b},b)})]}),a.jsxs("select",{id:`${e.name}-period`,value:V,onChange:y=>T("period",y.target.value),disabled:E,className:`${K} w-[62px]`,children:[a.jsx("option",{value:"AM",children:"AM"}),a.jsx("option",{value:"PM",children:"PM"})]})]})}case"date":const z=n[e.name]?n[e.name]instanceof Date?n[e.name].toISOString().split("T")[0]:typeof n[e.name]=="string"&&n[e.name].includes("T")?n[e.name].split("T")[0]:n[e.name]:"";return a.jsx(Pe,{field:e,dateValue:z,handleChange:m,errors:r,mode:c});case"number":return a.jsx(Z,{id:e.name,name:e.name,type:"number",placeholder:e.placeholder,value:n[e.name]??"",onChange:t=>m(e.name,t.target.value!==""?parseFloat(t.target.value):""),required:e.required,className:r[e.name]?"border-red-500":"",disabled:e.disabled||c==="view",readOnly:e.readOnly});case"textarea":return a.jsx(we,{id:e.name,name:e.name,placeholder:e.placeholder,value:n[e.name]??"",onChange:t=>m(e.name,t.target.value),required:e.required,className:r[e.name]?"border-red-500":"",disabled:e.disabled||c==="view",readOnly:e.readOnly});case"select":const P=e.relation?j[e.name]||[]:e.options||[],$=String(n[e.name]||""),S=e.relation?P.find(t=>String(t[e.relation.valueField])===$):P.find(t=>String(t.value)===$),L=S?e.relation?S[e.relation.labelField]:S.label:"";return a.jsxs(Se,{value:$,onValueChange:t=>m(e.name,t),disabled:c==="view",children:[a.jsx(Ne,{className:r[e.name]?"border-red-500":"",children:a.jsx(Fe,{placeholder:e.placeholder||`Select ${e.label}`,children:L||e.placeholder||`Select ${e.label}`})}),a.jsx($e,{className:"z-[60000]",searchable:e.searchable,children:e.relation?P.map(t=>a.jsx(te,{value:String(t[e.relation.valueField]),children:t[e.relation.labelField]},t[e.relation.valueField])):P.map(t=>a.jsx(te,{value:String(t.value),children:t.label},t.value))})]});case"radio":return a.jsx(Oe,{value:n[e.name]||"",onValueChange:t=>m(e.name,t),disabled:c==="view",className:"flex gap-4",children:(s=e.options)==null?void 0:s.map(t=>a.jsxs("div",{className:"flex items-center space-x-2",children:[a.jsx(qe,{value:t.value,id:`${e.name}-${t.value}`}),a.jsx(_,{htmlFor:`${e.name}-${t.value}`,children:t.label})]},t.value))});case"checkbox":return a.jsxs("div",{className:"flex items-center space-x-2",children:[a.jsx(Ae,{id:e.name,checked:!!n[e.name],onCheckedChange:t=>m(e.name,t),disabled:c==="view"}),a.jsx(_,{htmlFor:e.name,children:e.placeholder||e.label})]});case"switch":return a.jsx(Ve,{id:e.name,checked:!!n[e.name],onCheckedChange:t=>m(e.name,t),disabled:c==="view"});case"multi-select":return a.jsx(Ce,{field:e,formData:n,handleChange:m});case"media-picker":const J=n[e.name]||(c==="edit"&&h[e.name]?h[e.name].startsWith("http")?h[e.name]:`/storage/${h[e.name]}`:"");return a.jsx(ve,{value:J,onChange:t=>m(e.name,t),placeholder:e.placeholder||`Select ${e.label}`,showPreview:!0});case"file":const ee=((v=e.fileValidation)==null?void 0:v.accept)||"",me=ee.includes("image")||(((W=(o=e.fileValidation)==null?void 0:o.mimeTypes)==null?void 0:W.some(t=>t.startsWith("image/")))??!1);return a.jsxs(a.Fragment,{children:[a.jsx(Z,{id:e.name,name:e.name,type:"file",accept:ee,onChange:t=>{t.target.files&&t.target.files[0]&&m(e.name,t.target.files[0])},className:r[e.name]?"border-red-500":"",disabled:c==="view"}),c==="edit"&&h[e.name]&&a.jsxs("div",{className:"text-xs text-gray-500 mt-1",children:["Current file: ",h.featured_image_original_name||h[e.name]]}),e.fileValidation&&a.jsxs("div",{className:"text-xs text-gray-500 mt-1",children:[e.fileValidation.extensions&&a.jsxs("span",{children:[l("Allowed extensions"),": ",e.fileValidation.extensions.join(", ")," "]}),e.fileValidation.maxSize&&a.jsxs("span",{children:[l("Max size"),": ",(e.fileValidation.maxSize/(1024*1024)).toFixed(1),"MB"]})]}),me&&a.jsx("div",{className:"mt-2",children:n[e.name]&&n[e.name]instanceof File?a.jsxs("div",{className:"mt-2",children:[a.jsxs("p",{className:"text-xs text-gray-500 mb-1",children:[l("Preview"),":"]}),a.jsx("img",{src:URL.createObjectURL(n[e.name]),alt:"Preview",className:"h-24 w-auto rounded-md object-cover shadow-sm"})]}):c==="edit"&&h[e.name]&&a.jsxs("div",{className:"mt-2",children:[a.jsxs("p",{className:"text-xs text-gray-500 mb-1",children:[l("Current image"),":"]}),a.jsx("img",{src:typeof h[e.name]=="string"&&h[e.name].startsWith&&h[e.name].startsWith("http")?h[e.name]:`/storage/${h[e.name]}`,alt:"Current",className:"h-24 w-auto rounded-md object-cover shadow-sm",onError:t=>{t.currentTarget.src="https://placehold.co/200x150?text=Image+Not+Found"}})]})})]});case"dependent-dropdown":const ae={};return(R=e.dependentConfig)==null||R.forEach(t=>{ae[t.name]=n[t.name]||""}),a.jsx(ke,{fields:e.dependentConfig||[],values:ae,onChange:(t,E,U)=>{x(k=>{var Q;const D={...k,[t]:E},V=((Q=e.dependentConfig)==null?void 0:Q.findIndex(T=>T.name===t))??-1;return V!==-1&&e.dependentConfig&&e.dependentConfig.slice(V+1).forEach(T=>{D[T.name]=""}),D}),e.onDependentChange&&e.onDependentChange(t,E,n,U)}});case"location-picker":return a.jsx(Ee,{latitude:n[e.latField||"latitude"],longitude:n[e.lngField||"longitude"],radius:n[e.radiusField||"radius"],onChange:(t,E,U)=>{m(e.latField||"latitude",t),m(e.lngField||"longitude",E),m(e.radiusField||"radius",U)},disabled:c==="view"});default:return null}},se=()=>{const e={sm:"sm:max-w-sm",md:"sm:max-w-md",lg:"sm:max-w-lg",xl:"sm:max-w-xl","2xl":"sm:max-w-2xl","3xl":"sm:max-w-3xl","4xl":"sm:max-w-4xl","5xl":"sm:max-w-5xl",full:"sm:max-w-full"};return p.modalSize?e[p.modalSize]:"sm:max-w-md"},re=()=>{const e={};return p.fields.forEach(i=>{const s=i.row||0;e[s]||(e[s]=[]),e[s].push(i)}),Object.entries(e).sort(([i],[s])=>parseInt(i)-parseInt(s))},f=p.layout||"default",oe=p.columns||1,ce=`crud-modal-${c}-${N.replace(/\s+/g,"-").toLowerCase()}-${Date.now()}`,[ie,le]=O.useState(!1);return O.useEffect(()=>{const e=()=>{const s=document.querySelector("[data-chatgpt-modal]");le(!!s)},i=new MutationObserver(e);return i.observe(document.body,{childList:!0,subtree:!0}),()=>i.disconnect()},[]),a.jsx(xe,{open:u,onOpenChange:e=>{e||C()},modal:!ie,children:a.jsxs(he,{className:`${se()} max-h-[90vh]`,modalId:ce,children:[a.jsxs(be,{children:[a.jsx(ye,{children:N}),a.jsx(ge,{children:M||" "})]}),a.jsx(Me,{className:"max-h-[70vh] pr-4",children:a.jsxs("form",{onSubmit:I,className:"space-y-4",children:[p.priceSummary&&a.jsxs("div",{className:"bg-gray-50 p-4 rounded-lg mb-4",children:[a.jsxs("div",{className:"flex justify-between items-center mb-2",children:[a.jsxs("span",{className:"text-sm text-gray-600",children:[l("Unit Price"),":"]}),a.jsxs("span",{className:"font-medium",children:["$",p.priceSummary.unitPrice.toFixed(2)]})]}),a.jsxs("div",{className:"flex justify-between items-center mb-2",children:[a.jsxs("span",{className:"text-sm text-gray-600",children:[l("Quantity"),":"]}),a.jsx("span",{className:"font-medium",children:n[p.priceSummary.quantityFieldName||"quantity"]||p.priceSummary.quantity||1})]}),a.jsx("div",{className:"border-t pt-2",children:a.jsxs("div",{className:"flex justify-between items-center",children:[a.jsxs("span",{className:"font-semibold",children:[l("Total Price"),":"]}),a.jsxs("span",{className:"font-bold text-lg text-primary",children:["$",d().toFixed(2)]})]})})]}),f==="grid"?a.jsx("div",{style:{display:"grid",gridTemplateColumns:`repeat(${oe}, 1fr)`,gap:"1rem"},children:p.fields.map(e=>e.conditional&&!e.conditional(c,n)?null:a.jsxs("div",{className:"space-y-2",style:{gridColumn:e.colSpan?`span ${e.colSpan}`:"span 1",width:"100%"},children:[e.type!=="checkbox"&&e.type!=="switch"||c==="view"?a.jsxs(_,{htmlFor:e.name,className:"text-sm font-medium",children:[e.label," ",(typeof e.required=="function"?e.required(n):e.required)&&(e.conditional?e.conditional(c,n):!0)&&!(e.type==="file"&&c==="edit")&&a.jsx("span",{className:"text-red-500",children:"*"})]}):null,Y(e),r[e.name]&&a.jsx("p",{className:"text-xs text-red-500",children:r[e.name]})]},e.name))}):f==="flex"?a.jsx("div",{className:"flex flex-wrap gap-4",children:p.fields.map(e=>e.conditional&&!e.conditional(c,n)?null:a.jsxs("div",{className:"space-y-2",style:{width:e.width||"100%",flexGrow:e.width?0:1},children:[e.type!=="checkbox"&&e.type!=="switch"||c==="view"?a.jsxs(_,{htmlFor:e.name,className:"text-sm font-medium",children:[e.label," ",(typeof e.required=="function"?e.required(n):e.required)&&(e.conditional?e.conditional(c,n):!0)&&!(e.type==="file"&&c==="edit")&&a.jsx("span",{className:"text-red-500",children:"*"})]}):null,Y(e),r[e.name]&&a.jsx("p",{className:"text-xs text-red-500",children:r[e.name]})]},e.name))}):re().map(([e,i])=>a.jsx("div",{className:"flex flex-wrap gap-4 mb-4",children:i.map(s=>s.conditional&&!s.conditional(c,n)?null:a.jsxs("div",{className:"space-y-2",style:{width:s.width||"100%"},children:[s.type!=="checkbox"||c==="view"?a.jsxs(_,{htmlFor:s.name,className:"text-sm font-medium",children:[s.label," ",(typeof s.required=="function"?s.required(n):s.required)&&(s.conditional?s.conditional(c,n):!0)&&!(s.type==="file"&&c==="edit")&&a.jsx("span",{className:"text-red-500",children:"*"})]}):null,Y(s),r[s.name]&&a.jsx("p",{className:"text-xs text-red-500",children:r[s.name]})]},s.name))},e))]})}),a.jsxs(je,{className:"sm:justify-end",children:[a.jsx(X,{type:"button",variant:"outline",onClick:C,children:l("Cancel")}),c==="view"&&B&&a.jsx(X,{type:"button",onClick:B,children:l("Edit Record")}),c!=="view"&&a.jsx(X,{type:"button",onClick:I,children:H||l("Save")})]})]})})}export{We as C}; +import{r as O,j as a,R as ue}from"./ui-Z445SNHD.js";import{c as pe,u as de,D as xe,h as he,j as be,k as ye,p as ge,L as U,q as je,B as X,I as Z,M as ve}from"./app-36WMjvX0.js";import{T as we}from"./textarea-CdnKPU5F.js";import{S as Se,a as Ne,b as Fe,c as $e,d as te}from"./select-DgPPBKIC.js";import{R as Oe,a as qe}from"./radio-group-BtLENAXk.js";import{C as Ae}from"./checkbox-Bos2Phgi.js";import{S as Ve}from"./switch-C7AW5g5G.js";import{M as Ce}from"./multi-select-field-BX9C1tYH.js";import{S as Me}from"./scroll-area-BmK0s-Hf.js";import{L as Ee}from"./LocationPicker-DAd_AcXs.js";function ke({fields:u,values:C,onChange:q,disabled:p=!1}){const{base_url:h}=pe().props,[N,c]=O.useState(()=>{const l={};return u.forEach((n,x)=>{x===0?l[n.name]=n.options||[]:l[n.name]=[]}),l}),[M,F]=O.useState({}),H=async(l,n)=>{var x;if(!l.apiEndpoint)return[];F(r=>({...r,[l.name]:!0}));try{let r=l.apiEndpoint;if(n){const d=encodeURIComponent(String(n)),m=(x=u[u.indexOf(l)-1])==null?void 0:x.name;m&&(r=r.replace(`{${m}}`,d))}const g=await fetch(`${h}${r}`);if(!g.ok)throw new Error(`HTTP error! status: ${g.status}`);const j=await g.json();return Array.isArray(j)?j.map(d=>({value:String(d.id||d.value||""),label:String(d.name||d.label||"Unknown")})):[]}catch{return[]}finally{F(r=>({...r,[l.name]:!1}))}};O.useEffect(()=>{(async()=>{const n={};for(let x=0;x{u.slice(x+1).forEach(m=>{q(m.name,"")});const r=u.find(m=>m.name===l),j=(N[l]||(r==null?void 0:r.options)||[]).find(m=>String(m.value)===String(n)),A=j?{id:n,name:j.label}:null,d=u[x+1];if(d&&n){if(d.apiEndpoint){const m=await H(d,n);c(I=>({...I,[d.name]:m})),d.selectFirstOption&&m.length>0&&setTimeout(()=>{q(d.name,m[0].value)},100),q(l,n,{selectedInfo:A,loadedOptions:m});return}else if(d.dependencies){const m=d.dependencies[n]||[];c(I=>({...I,[d.name]:m})),q(l,n,{selectedInfo:A,loadedOptions:m});return}}q(l,n,{selectedInfo:A,loadedOptions:[]})};return a.jsx("div",{className:"space-y-4",children:u.map((l,n)=>{const x=n===0,r=x?null:u[n-1],g=p||!x&&!C[r.name],j=N[l.name]||[],A=M[l.name];return a.jsxs("div",{className:"space-y-2",children:[a.jsx("label",{className:"text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",children:l.label}),a.jsxs("select",{value:C[l.name]||"",onChange:d=>_(l.name,d.target.value,n),disabled:g||A||l.disabled,className:"flex h-10 w-full items-center justify-between rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",children:[a.jsx("option",{value:"",className:"relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none text-muted-foreground",children:A?"Loading...":`Select ${l.label.toLowerCase()}`}),j.map(d=>a.jsx("option",{value:d.value,className:"relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",children:d.label},d.value))]})]},l.name)})})}function Pe({field:u,dateValue:C,handleChange:q,errors:p,mode:h}){const N=ue.useRef(null),c=()=>{var M,F;if(!u.disabled&&h!=="view"&&N.current)try{(F=(M=N.current).showPicker)==null||F.call(M)}catch{N.current.focus()}};return a.jsx("div",{className:"relative cursor-pointer",onClick:c,children:a.jsx("input",{ref:N,id:u.name,name:u.name,type:"date",placeholder:u.placeholder,value:C,onChange:M=>q(u.name,M.target.value),required:!!u.required,className:`border-input flex h-9 w-full rounded-md border bg-transparent px-3 py-1 text-base shadow-xs outline-none transition-[color,box-shadow] focus-visible:border-primary md:text-sm cursor-pointer disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 ${p[u.name]?"border-red-500":""}`,disabled:u.disabled||h==="view",readOnly:u.readOnly})})}function We({isOpen:u,onClose:C,onSubmit:q,formConfig:p,initialData:h={},title:N,mode:c,description:M,errors:F={},submitButtonText:H,onEdit:_}){const{t:l}=de(),[n,x]=O.useState({}),[r,g]=O.useState({}),[j,A]=O.useState({}),d=()=>{if(!p.priceSummary)return 0;const e=n[p.priceSummary.quantityFieldName||"quantity"]||p.priceSummary.quantity||1;return p.priceSummary.unitPrice*e};O.useEffect(()=>{if(u){const e={...h};p.fields.forEach(i=>{i.type==="multi-select"&&e[i.name]&&!Array.isArray(e[i.name])&&(e[i.name]=Array.isArray(e[i.name])?e[i.name]:e[i.name]?[e[i.name].toString()]:[]),c==="create"&&(e[i.name]===void 0||e[i.name]===null)&&i.defaultValue!==void 0&&(e[i.name]=i.defaultValue)}),x(e||{}),g({}),p.fields.forEach(i=>{i.relation&&i.relation.endpoint&&fetch(i.relation.endpoint).then(s=>s.json()).then(s=>{A(v=>({...v,[i.name]:Array.isArray(s)?s:s.data||[]}))}).catch(s=>{})})}},[u,h,p.fields,c]),O.useEffect(()=>{if(F&&Object.keys(F).length>0){const e={};Object.entries(F).forEach(([i,s])=>{e[i]=Array.isArray(s)?s[0]:s}),g(e)}},[F]);const m=(e,i)=>{x(s=>({...s,[e]:i})),r[e]&&g(s=>{const v={...s};return delete v[e],v})},I=e=>{e.preventDefault();const i={...n};p.fields.forEach(o=>{o.type==="multi-select"&&i[o.name]&&(Array.isArray(i[o.name])||(i[o.name]=[i[o.name].toString()]))}),x(i);const s={};if(p.fields.forEach(o=>{if(o.type==="file"&&c==="edit")return;const W=o.conditional?o.conditional(c,n):!0,R=n[o.name],z=R==null||R==="";if((typeof o.required=="function"?o.required(n):o.required)&&W&&z&&(s[o.name]=`${o.label} is required`),o.type==="file"&&n[o.name]&&o.fileValidation){const $=n[o.name];if(o.fileValidation.maxSize&&$.size>o.fileValidation.maxSize){const S=o.fileValidation.maxSize/1048576;s[o.name]=`File size must be less than ${S}MB`}if(o.fileValidation.mimeTypes&&o.fileValidation.mimeTypes.length>0&&(o.fileValidation.mimeTypes.includes($.type)||(s[o.name]=`File type must be one of: ${o.fileValidation.mimeTypes.join(", ")}`)),o.fileValidation.extensions&&o.fileValidation.extensions.length>0){const S=$.name,L=S.substring(S.lastIndexOf(".")).toLowerCase();o.fileValidation.extensions.includes(L)||(s[o.name]=`File extension must be one of: ${o.fileValidation.extensions.join(", ")}`)}}}),Object.keys(s).length>0){g(s);return}const v={...n};p.fields.forEach(o=>{o.type==="multi-select"&&v[o.name]&&(Array.isArray(v[o.name])||(v[o.name]=[v[o.name].toString()]))}),q(v)},Y=e=>{var i,s,v,o,W,R;if(e.conditional&&!e.conditional(c,n))return null;if(e.render)return e.render(e,n,m);if(c==="view"){if(e.type==="multi-select"){const P=(Array.isArray(n[e.name])?n[e.name]:[]).map($=>{var L;const S=(L=e.options)==null?void 0:L.find(J=>J.value===$);return S?S.label:$}).join(", ");return a.jsx("div",{className:"p-2 border rounded-md bg-gray-50",children:P||"-"})}return a.jsx("div",{className:"p-2 border rounded-md bg-gray-50",children:e.type==="select"&&e.options?((i=e.options.find(z=>z.value===String(n[e.name])))==null?void 0:i.label)||n[e.name]||"-":e.type==="checkbox"?n[e.name]===!0||n[e.name]===1||n[e.name]==="1"?l("Yes"):l("No"):n[e.name]||"-"})}switch(e.type){case"text":case"email":case"password":case"color":return a.jsx(Z,{id:e.name,name:e.name,type:e.type,placeholder:e.placeholder,value:n[e.name]??"",onChange:t=>m(e.name,t.target.value),required:e.required,className:r[e.name]?"border-red-500":"",disabled:e.disabled||c==="view",readOnly:e.readOnly});case"time":{const t=n[e.name]??"",E=e.disabled||c==="view",B=!!r[e.name];let k="",D="",V="AM";if(t&&t.includes(":")){const[y,w]=t.split(":"),b=parseInt(y,10);D=w.padStart(2,"0"),b===0?(k="12",V="AM"):b===12?(k="12",V="PM"):b>12?(k=String(b-12).padStart(2,"0"),V="PM"):(k=String(b).padStart(2,"0"),V="AM")}const Q=(y,w,b)=>{if(!y||!w)return"";let G=parseInt(y,10);return b==="AM"&&G===12?G=0:b==="PM"&&G!==12&&(G+=12),`${String(G).padStart(2,"0")}:${w}`},T=(y,w)=>{const ne=Q(y==="hour"?w:k||"12",y==="minute"?w:D||"00",y==="period"?w:V);ne&&m(e.name,ne)},K=`h-9 rounded-md border bg-transparent px-2 py-1 text-sm shadow-xs outline-none transition-[color,box-shadow] focus-visible:border-primary disabled:cursor-not-allowed disabled:opacity-50 ${B?"border-red-500":"border-input"}`;return a.jsxs("div",{className:"flex items-center gap-1.5",children:[a.jsxs("select",{id:`${e.name}-hour`,value:k,onChange:y=>T("hour",y.target.value),disabled:E,className:`${K} w-[62px]`,children:[a.jsx("option",{value:"",children:l("HH")}),Array.from({length:12},(y,w)=>{const b=String(w+1).padStart(2,"0");return a.jsx("option",{value:b,children:b},b)})]}),a.jsx("span",{className:"text-gray-400 font-bold text-lg",children:":"}),a.jsxs("select",{id:`${e.name}-minute`,value:D,onChange:y=>T("minute",y.target.value),disabled:E,className:`${K} w-[62px]`,children:[a.jsx("option",{value:"",children:l("MM")}),Array.from({length:60},(y,w)=>{const b=String(w).padStart(2,"0");return a.jsx("option",{value:b,children:b},b)})]}),a.jsxs("select",{id:`${e.name}-period`,value:V,onChange:y=>T("period",y.target.value),disabled:E,className:`${K} w-[62px]`,children:[a.jsx("option",{value:"AM",children:"AM"}),a.jsx("option",{value:"PM",children:"PM"})]})]})}case"date":const z=n[e.name]?n[e.name]instanceof Date?n[e.name].toISOString().split("T")[0]:typeof n[e.name]=="string"&&n[e.name].includes("T")?n[e.name].split("T")[0]:n[e.name]:"";return a.jsx(Pe,{field:e,dateValue:z,handleChange:m,errors:r,mode:c});case"number":return a.jsx(Z,{id:e.name,name:e.name,type:"number",placeholder:e.placeholder,value:n[e.name]??"",onChange:t=>m(e.name,t.target.value!==""?parseFloat(t.target.value):""),required:e.required,className:r[e.name]?"border-red-500":"",disabled:e.disabled||c==="view",readOnly:e.readOnly});case"textarea":return a.jsx(we,{id:e.name,name:e.name,placeholder:e.placeholder,value:n[e.name]??"",onChange:t=>m(e.name,t.target.value),required:e.required,className:r[e.name]?"border-red-500":"",disabled:e.disabled||c==="view",readOnly:e.readOnly});case"select":const P=e.relation?j[e.name]||[]:e.options||[],$=String(n[e.name]||""),S=e.relation?P.find(t=>String(t[e.relation.valueField])===$):P.find(t=>String(t.value)===$),L=S?e.relation?S[e.relation.labelField]:S.label:"";return a.jsxs(Se,{value:$,onValueChange:t=>m(e.name,t),disabled:c==="view",children:[a.jsx(Ne,{className:r[e.name]?"border-red-500":"",children:a.jsx(Fe,{placeholder:e.placeholder||`Select ${e.label}`,children:L||e.placeholder||`Select ${e.label}`})}),a.jsx($e,{className:"z-[60000]",searchable:e.searchable,children:e.relation?P.map(t=>a.jsx(te,{value:String(t[e.relation.valueField]),children:t[e.relation.labelField]},t[e.relation.valueField])):P.map(t=>a.jsx(te,{value:String(t.value),children:t.label},t.value))})]});case"radio":return a.jsx(Oe,{value:n[e.name]||"",onValueChange:t=>m(e.name,t),disabled:c==="view",className:"flex gap-4",children:(s=e.options)==null?void 0:s.map(t=>a.jsxs("div",{className:"flex items-center space-x-2",children:[a.jsx(qe,{value:t.value,id:`${e.name}-${t.value}`}),a.jsx(U,{htmlFor:`${e.name}-${t.value}`,children:t.label})]},t.value))});case"checkbox":return a.jsxs("div",{className:"flex items-center space-x-2",children:[a.jsx(Ae,{id:e.name,checked:!!n[e.name],onCheckedChange:t=>m(e.name,t),disabled:c==="view"}),a.jsx(U,{htmlFor:e.name,children:e.placeholder||e.label})]});case"switch":return a.jsx(Ve,{id:e.name,checked:!!n[e.name],onCheckedChange:t=>m(e.name,t),disabled:c==="view"});case"multi-select":return a.jsx(Ce,{field:e,formData:n,handleChange:m});case"media-picker":const J=n[e.name]||(c==="edit"&&h[e.name]?h[e.name].startsWith("http")?h[e.name]:`/storage/${h[e.name]}`:"");return a.jsx(ve,{value:J,onChange:t=>m(e.name,t),placeholder:e.placeholder||`Select ${e.label}`,showPreview:!0});case"file":const ee=((v=e.fileValidation)==null?void 0:v.accept)||"",me=ee.includes("image")||(((W=(o=e.fileValidation)==null?void 0:o.mimeTypes)==null?void 0:W.some(t=>t.startsWith("image/")))??!1);return a.jsxs(a.Fragment,{children:[a.jsx(Z,{id:e.name,name:e.name,type:"file",accept:ee,onChange:t=>{t.target.files&&t.target.files[0]&&m(e.name,t.target.files[0])},className:r[e.name]?"border-red-500":"",disabled:c==="view"}),c==="edit"&&h[e.name]&&a.jsxs("div",{className:"text-xs text-gray-500 mt-1",children:["Current file: ",h.featured_image_original_name||h[e.name]]}),e.fileValidation&&a.jsxs("div",{className:"text-xs text-gray-500 mt-1",children:[e.fileValidation.extensions&&a.jsxs("span",{children:[l("Allowed extensions"),": ",e.fileValidation.extensions.join(", ")," "]}),e.fileValidation.maxSize&&a.jsxs("span",{children:[l("Max size"),": ",(e.fileValidation.maxSize/(1024*1024)).toFixed(1),"MB"]})]}),me&&a.jsx("div",{className:"mt-2",children:n[e.name]&&n[e.name]instanceof File?a.jsxs("div",{className:"mt-2",children:[a.jsxs("p",{className:"text-xs text-gray-500 mb-1",children:[l("Preview"),":"]}),a.jsx("img",{src:URL.createObjectURL(n[e.name]),alt:"Preview",className:"h-24 w-auto rounded-md object-cover shadow-sm"})]}):c==="edit"&&h[e.name]&&a.jsxs("div",{className:"mt-2",children:[a.jsxs("p",{className:"text-xs text-gray-500 mb-1",children:[l("Current image"),":"]}),a.jsx("img",{src:typeof h[e.name]=="string"&&h[e.name].startsWith&&h[e.name].startsWith("http")?h[e.name]:`/storage/${h[e.name]}`,alt:"Current",className:"h-24 w-auto rounded-md object-cover shadow-sm",onError:t=>{t.currentTarget.src="https://placehold.co/200x150?text=Image+Not+Found"}})]})})]});case"dependent-dropdown":const ae={};return(R=e.dependentConfig)==null||R.forEach(t=>{ae[t.name]=n[t.name]||""}),a.jsx(ke,{fields:e.dependentConfig||[],values:ae,onChange:(t,E,B)=>{x(k=>{var Q;const D={...k,[t]:E},V=((Q=e.dependentConfig)==null?void 0:Q.findIndex(T=>T.name===t))??-1;return V!==-1&&e.dependentConfig&&e.dependentConfig.slice(V+1).forEach(T=>{D[T.name]=""}),D}),e.onDependentChange&&e.onDependentChange(t,E,n,B)}});case"location-picker":return a.jsx(Ee,{latitude:n[e.latField||"latitude"],longitude:n[e.lngField||"longitude"],radius:n[e.radiusField||"radius"],onChange:(t,E,B)=>{m(e.latField||"latitude",t),m(e.lngField||"longitude",E),m(e.radiusField||"radius",B)},disabled:c==="view"});default:return null}},se=()=>{const e={sm:"sm:max-w-sm",md:"sm:max-w-md",lg:"sm:max-w-lg",xl:"sm:max-w-xl","2xl":"sm:max-w-2xl","3xl":"sm:max-w-3xl","4xl":"sm:max-w-4xl","5xl":"sm:max-w-5xl",full:"sm:max-w-full"};return p.modalSize?e[p.modalSize]:"sm:max-w-md"},re=()=>{const e={};return p.fields.forEach(i=>{const s=i.row||0;e[s]||(e[s]=[]),e[s].push(i)}),Object.entries(e).sort(([i],[s])=>parseInt(i)-parseInt(s))},f=p.layout||"default",oe=p.columns||1,ce=`crud-modal-${c}-${N.replace(/\s+/g,"-").toLowerCase()}-${Date.now()}`,[ie,le]=O.useState(!1);return O.useEffect(()=>{const e=()=>{const s=document.querySelector("[data-chatgpt-modal]");le(!!s)},i=new MutationObserver(e);return i.observe(document.body,{childList:!0,subtree:!0}),()=>i.disconnect()},[]),a.jsx(xe,{open:u,onOpenChange:e=>{e||C()},modal:!ie,children:a.jsxs(he,{className:`${se()} max-h-[90vh]`,modalId:ce,children:[a.jsxs(be,{children:[a.jsx(ye,{children:N}),a.jsx(ge,{children:M||" "})]}),a.jsx(Me,{className:"max-h-[70vh] pr-4",children:a.jsxs("form",{onSubmit:I,className:"space-y-4",children:[p.priceSummary&&a.jsxs("div",{className:"bg-gray-50 p-4 rounded-lg mb-4",children:[a.jsxs("div",{className:"flex justify-between items-center mb-2",children:[a.jsxs("span",{className:"text-sm text-gray-600",children:[l("Unit Price"),":"]}),a.jsxs("span",{className:"font-medium",children:["$",p.priceSummary.unitPrice.toFixed(2)]})]}),a.jsxs("div",{className:"flex justify-between items-center mb-2",children:[a.jsxs("span",{className:"text-sm text-gray-600",children:[l("Quantity"),":"]}),a.jsx("span",{className:"font-medium",children:n[p.priceSummary.quantityFieldName||"quantity"]||p.priceSummary.quantity||1})]}),a.jsx("div",{className:"border-t pt-2",children:a.jsxs("div",{className:"flex justify-between items-center",children:[a.jsxs("span",{className:"font-semibold",children:[l("Total Price"),":"]}),a.jsxs("span",{className:"font-bold text-lg text-primary",children:["$",d().toFixed(2)]})]})})]}),f==="grid"?a.jsx("div",{style:{display:"grid",gridTemplateColumns:`repeat(${oe}, 1fr)`,gap:"1rem"},children:p.fields.map(e=>e.conditional&&!e.conditional(c,n)?null:a.jsxs("div",{className:"space-y-2",style:{gridColumn:e.colSpan?`span ${e.colSpan}`:"span 1",width:"100%"},children:[e.type!=="checkbox"&&e.type!=="switch"||c==="view"?a.jsxs(U,{htmlFor:e.name,className:"text-sm font-medium",children:[e.label," ",(typeof e.required=="function"?e.required(n):e.required)&&(e.conditional?e.conditional(c,n):!0)&&!(e.type==="file"&&c==="edit")&&a.jsx("span",{className:"text-red-500",children:"*"})]}):null,Y(e),r[e.name]&&a.jsx("p",{className:"text-xs text-red-500",children:r[e.name]})]},e.name))}):f==="flex"?a.jsx("div",{className:"flex flex-wrap gap-4",children:p.fields.map(e=>e.conditional&&!e.conditional(c,n)?null:a.jsxs("div",{className:"space-y-2",style:{width:e.width||"100%",flexGrow:e.width?0:1},children:[e.type!=="checkbox"&&e.type!=="switch"||c==="view"?a.jsxs(U,{htmlFor:e.name,className:"text-sm font-medium",children:[e.label," ",(typeof e.required=="function"?e.required(n):e.required)&&(e.conditional?e.conditional(c,n):!0)&&!(e.type==="file"&&c==="edit")&&a.jsx("span",{className:"text-red-500",children:"*"})]}):null,Y(e),r[e.name]&&a.jsx("p",{className:"text-xs text-red-500",children:r[e.name]})]},e.name))}):re().map(([e,i])=>a.jsx("div",{className:"flex flex-wrap gap-4 mb-4",children:i.map(s=>s.conditional&&!s.conditional(c,n)?null:a.jsxs("div",{className:"space-y-2",style:{width:s.width||"100%"},children:[s.type!=="checkbox"||c==="view"?a.jsxs(U,{htmlFor:s.name,className:"text-sm font-medium",children:[s.label," ",(typeof s.required=="function"?s.required(n):s.required)&&(s.conditional?s.conditional(c,n):!0)&&!(s.type==="file"&&c==="edit")&&a.jsx("span",{className:"text-red-500",children:"*"})]}):null,Y(s),r[s.name]&&a.jsx("p",{className:"text-xs text-red-500",children:r[s.name]})]},s.name))},e))]})}),a.jsxs(je,{className:"sm:justify-end",children:[a.jsx(X,{type:"button",variant:"outline",onClick:C,children:l("Cancel")}),c==="view"&&_&&a.jsx(X,{type:"button",onClick:_,children:l("Edit Record")}),c!=="view"&&a.jsx(X,{type:"button",onClick:I,children:H||l("Save")})]})]})})}export{We as C}; diff --git a/public/build/assets/CrudTable-1pBi-AAy.js b/public/build/assets/CrudTable-DA37WZsR.js similarity index 78% rename from public/build/assets/CrudTable-1pBi-AAy.js rename to public/build/assets/CrudTable-DA37WZsR.js index a551f10fe..9254f34d8 100644 --- a/public/build/assets/CrudTable-1pBi-AAy.js +++ b/public/build/assets/CrudTable-DA37WZsR.js @@ -1,39 +1,39 @@ -import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai as J2,ad as Q2,aj as k,E as p,P as Y2,y as e0,S as a0,U as o0,X as c0,ak as bm,u as $m,x as km,e as U2,d as pm,B as Am,al as sm,s as lm,v as um,o as Mm,w as vm}from"./app-RVic1vq7.js";import{T as Hm,a as zm,b as nm,c as dm,d as Pm,e as W2}from"./table-Duw_GDb9.js";import{A as t0,a as n0,b as d0,B as i0,I as h0,L as y0,R as r0,S as k0,U as p0,c as s0}from"./unlink-d2F79tNN.js";import{A as l0,B as u0,G as M0,I as v0,S as m0}from"./scale-DKnxAMQ2.js";import{A as _0}from"./arrow-down-left-DSKvuJN0.js";import{A as g0}from"./arrow-left-C_uLZ-nx.js";import{A as L0}from"./arrow-right-left-BEfiQT6Z.js";import{A as x0}from"./arrow-right-CW2uDEAm.js";import{A as w0}from"./arrow-up-down-BUq4MxYv.js";import{A as f0,H as C0,K as I0,L as s}from"./lock-open-DoWrvGsa.js";import{A as N0}from"./award-DdKhPYhN.js";import{B as S0}from"./ban-4DRY5X-Z.js";import{B as q0,I as b0}from"./indian-rupee-B9KVe6VX.js";import{B as $0}from"./bell-BNurCdyd.js";import{B as A0}from"./book-open-CMhShWNb.js";import{B as H0}from"./boxes-5jkrf4Al.js";import{B as z0,F as P0,S as l}from"./sparkles-D1YkxEKO.js";import{B as j0}from"./briefcase-BIvg7IRY.js";import{B as V0}from"./building-2-B0EuseY1.js";import{B as B0}from"./building-BQj-_sRb.js";import{C as F0}from"./calculator-BGtXu9O4.js";import{C as D0}from"./calendar-check-KfFE68Jz.js";import{C as R0}from"./calendar-days-BEyxjr3A.js";import{C as T0}from"./calendar-DoW40DBJ.js";import{C as U0}from"./camera-xzWgyOR1.js";import{C as u}from"./chart-column-Bv7DuSwC.js";import{C as M}from"./chart-no-axes-column-increasing-CGiezFjo.js";import{C as v}from"./chart-no-axes-column-C67ZvtHS.js";import{C as O2,a as Z2}from"./chevron-up-4lsjCLxN.js";import{C as O0}from"./chevron-left-D-Kv3HRT.js";import{C as Z0}from"./chevron-right-DiqYwRO1.js";import{C as m}from"./circle-alert-QKAv2c9h.js";import{C as _}from"./circle-check-big-BrZdB446.js";import{C as g}from"./circle-check-DD8uX3xS.js";import{C as L}from"./circle-help-nxVI7HXf.js";import{C as x}from"./circle-x-D0Tk-8xN.js";import{C as G0}from"./circle-C14JJ3bq.js";import{C as W0}from"./clipboard-list-CvD3Ws4D.js";import{C as E0}from"./clock-C1lsr9DR.js";import{C as X0}from"./code-CRrrLvGZ.js";import{C as K0}from"./coins-DneO1EVA.js";import{C as J0}from"./copy-BPQCAWXQ.js";import{C as Q0}from"./credit-card-Bi7-I95O.js";import{C as Y0}from"./crosshair-NchZAFUK.js";import{C as ea}from"./crown-Dwai7wQ2.js";import{D as aa}from"./dollar-sign-J2-mWTUa.js";import{D as oa}from"./download-CzgmjL2q.js";import{E as ca}from"./external-link-CUkulOu0.js";import{E as ta}from"./eye-off-DA87vZjt.js";import{E as na}from"./eye-HWwNL9ra.js";import{F as da,I as ia}from"./instagram-tLnKPn8z.js";import{F as ha}from"./file-down-BfdZvLg0.js";import{F as ya,P as w}from"./pen-line-Bxmr3zvr.js";import{F as ra}from"./file-up-Bzy_DKeq.js";import{F as ka}from"./filter-Ca5M7fI8.js";import{F as pa}from"./fingerprint-CxjxAhb_.js";import{F as sa,G as d,H as f}from"./house-BpdxLpS-.js";import{G as la}from"./gift-DgcRtSsc.js";import{G as ua}from"./git-branch-YHTwQovc.js";import{G as Ma}from"./globe-DGYT8gkU.js";import{G as va}from"./grip-vertical-BFm5bGVe.js";import{H as ma}from"./hard-drive-DTaK07S3.js";import{H as _a}from"./hash-CHDJttUV.js";import{H as ga,S as La}from"./shield-C1i2T0qg.js";import{I as xa}from"./info-lRsnuu1k.js";import{L as C}from"./layers-C83xdE-c.js";import{L as wa}from"./layout-grid-ChQFTiQ0.js";import{L as fa}from"./layout-list-c_lFrStk.js";import{L as Ca}from"./lightbulb-WufanjK2.js";import{L as Ia}from"./link-2-C24H15gP.js";import{L as Na}from"./link-CFg2gdep.js";import{L as Sa,T as qa}from"./twitter-HpMmG4Rd.js";import{L as ba}from"./list-D17xtzHK.js";import{L as I}from"./loader-circle-CNGo58jg.js";import{L as $a}from"./locate-fixed-0Vxox9Do.js";import{L as Aa}from"./lock-Q7vaQUSs.js";import{L as Ha}from"./log-in-BVvxxYl3.js";import{L as za}from"./log-out-1RoDIqiL.js";import{M as Pa}from"./mail-DxJUXCTJ.js";import{M as ja}from"./map-pin-B07wXHBN.js";import{M as Va}from"./menu--0iaFc5V.js";import{M as Ba}from"./message-square-warning-ByhXyqJ6.js";import{M as Fa}from"./message-square-HvGN6mFO.js";import{M as Da}from"./monitor-DLdOO5Rq.js";import{P as Ra}from"./package-DBkD9aqb.js";import{P as Ta}from"./percent-4AeMf4Za.js";import{P as Ua}from"./phone-D9_s8Psh.js";import{P as Oa}from"./plane-Bvk-cTjr.js";import{P as Za}from"./play-SlVVs5Gp.js";import{Q as Ga}from"./qr-code-B6DSxDkT.js";import{Q as Wa}from"./quote-gjEathl_.js";import{R as Ea}from"./radio-DJGf4lyy.js";import{R as Xa}from"./refresh-cw-CIu7xck0.js";import{R as Ka}from"./ruler-DV_QdSYg.js";import{S as Ja}from"./send-OYecdRr2.js";import{S as Qa}from"./server-BJ8bs6Wd.js";import{S as Ya}from"./settings-DBIyybIQ.js";import{S as eo,a as ao,W as oo}from"./wifi-C4JTubMm.js";import{S as co}from"./shield-check-5fM8gZmW.js";import{S as N}from"./square-check-big-COfZYEd0.js";import{S as n}from"./square-pen-CX_efy8B.js";import{S as to}from"./star-tLExGzJz.js";import{S as no}from"./sun-BZIslQoO.js";import{T as io}from"./tag-DuUU2Wlo.js";import{T as ho}from"./target-Cd0hyyW5.js";import{T as yo,a as ro}from"./thumbs-up-o32RZCQD.js";import{T as ko}from"./ticket-DvASp32L.js";import{T as po}from"./timer-BPsDuTOO.js";import{T as so}from"./trash-2-Boeppx-l.js";import{T as lo}from"./trash-D8GOOv3V.js";import{T as uo}from"./trending-down-CJFBh-tU.js";import{T as Mo}from"./trending-up-pQDSGEBk.js";import{T as S}from"./triangle-alert-CGD02bIw.js";import{T as vo}from"./trophy-DOG7caZA.js";import{T as mo}from"./type-Bp2lWDQ0.js";import{U as _o}from"./user-check-CxcbMiKf.js";import{U as go}from"./user-plus-Cyxy6etZ.js";import{U as Lo}from"./user-x-xiOrFxTb.js";import{U as xo}from"./user-CRLdfft8.js";import{U as wo}from"./users-Ddnzs7d-.js";import{W as fo}from"./wallet-DuCuEt6w.js";import{W as Co}from"./wrench-dKF5oRgs.js";import{Z as Io}from"./zap-DqlsE_2h.js";/** +import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai as J2,ad as Q2,aj as k,E as p,P as Y2,y as e0,S as a0,U as o0,X as c0,ak as bm,u as $m,x as km,e as U2,d as pm,l as Am,al as sm,s as lm,v as um,B as Mm,w as vm}from"./app-36WMjvX0.js";import{T as Hm,a as zm,b as nm,c as dm,d as Pm,e as W2}from"./table-C1YkBp3W.js";import{A as t0,a as n0,b as d0,B as i0,I as h0,L as y0,R as r0,S as k0,U as p0,c as s0}from"./unlink-sh32LPkQ.js";import{A as l0,B as u0,G as M0,I as v0,S as m0}from"./scale-rJYsnHRa.js";import{A as _0}from"./arrow-down-left-BN6xjhcz.js";import{A as g0}from"./arrow-left-CjPQICYw.js";import{A as L0}from"./arrow-right-left-DKUcVR58.js";import{A as x0}from"./arrow-right-DUEfRrRr.js";import{A as w0}from"./arrow-up-down-FmcUfWon.js";import{A as f0,H as C0,K as I0,L as s}from"./lock-open-CN4tz8Of.js";import{A as N0}from"./award-D9FlSYzB.js";import{B as S0}from"./ban-CMgLBFSt.js";import{B as q0,I as b0}from"./indian-rupee-Bh3-8N2a.js";import{B as $0}from"./bell-Cr2F9IDD.js";import{B as A0}from"./book-open-DUwKvBiK.js";import{B as H0}from"./boxes-rwzklut0.js";import{B as z0,F as P0,S as l}from"./sparkles-CpwdFUQZ.js";import{B as j0}from"./briefcase-Dsiqzllu.js";import{B as V0}from"./building-2-Cda8xQDI.js";import{B as B0}from"./building-CG4yAV8N.js";import{C as F0}from"./calculator-wt_63eRJ.js";import{C as D0}from"./calendar-check-BZ1JTjf6.js";import{C as R0}from"./calendar-days-BdrEl_Gk.js";import{C as T0}from"./calendar-BYVpj4_X.js";import{C as U0}from"./camera-DDKUkICL.js";import{C as u}from"./chart-column-GeSBJr5Y.js";import{C as M}from"./chart-no-axes-column-increasing-Beqplnfl.js";import{C as v}from"./chart-no-axes-column-BKgkVzqT.js";import{C as O2,a as Z2}from"./chevron-up-DXYKkCZG.js";import{C as O0}from"./chevron-left-DKWjKjSf.js";import{C as Z0}from"./chevron-right-C_P-uZ-m.js";import{C as m}from"./circle-alert-KsX4JXbz.js";import{C as _}from"./circle-check-big-DqURlwt2.js";import{C as g}from"./circle-check-C_SLfS2p.js";import{C as L}from"./circle-help-BdsC7_wR.js";import{C as x}from"./circle-x-DkvEqmM5.js";import{C as G0}from"./circle-BpyxLEsH.js";import{C as W0}from"./clipboard-list-BU0dok7E.js";import{C as E0}from"./clock-Cfp0CYjJ.js";import{C as X0}from"./code-DNPjFOcs.js";import{C as K0}from"./coins-D-42zezY.js";import{C as J0}from"./copy-DSkOAFhr.js";import{C as Q0}from"./credit-card-Dm0mmHp5.js";import{C as Y0}from"./crosshair-C7OptAZm.js";import{C as ea}from"./crown-Cp4cgutu.js";import{D as aa}from"./dollar-sign-CFqWGHdB.js";import{D as oa}from"./download-Ba72czhU.js";import{E as ca}from"./external-link-uO-R2E0-.js";import{E as ta}from"./eye-off-DlDpEvnB.js";import{E as na}from"./eye-DSAoA9Pp.js";import{F as da,I as ia}from"./instagram-DBjFHIT7.js";import{F as ha}from"./file-down-Bxu0R4EW.js";import{F as ya,P as w}from"./pen-line-Fy-AVmqM.js";import{F as ra}from"./file-up-CZ-cXuKa.js";import{F as ka}from"./filter-D8dMdozc.js";import{F as pa}from"./fingerprint-q0Oj9Sk5.js";import{F as sa}from"./folder-git-2-Dwj_EoDL.js";import{F as la,G as d,H as f}from"./house-D8b8GwgZ.js";import{G as ua}from"./gift-Cu9GEEJ_.js";import{G as Ma}from"./git-branch-D2sIFzs4.js";import{G as va}from"./globe-ZoJAuRB5.js";import{G as ma}from"./grip-vertical-DXcr-v-g.js";import{H as _a}from"./hard-drive-ApF-ULi1.js";import{H as ga}from"./hash-CHJS6b-L.js";import{H as La,S as xa}from"./shield-Mt6vEHxn.js";import{I as wa}from"./info-VH-vNQ_z.js";import{L as C}from"./layers-CF7Mhs3n.js";import{L as fa}from"./layout-grid-Ba5sCiyJ.js";import{L as Ca}from"./layout-list-BuBaZfwq.js";import{L as Ia}from"./lightbulb-fAsbBO8F.js";import{L as Na}from"./link-2-C22T2wSs.js";import{L as Sa}from"./link-ClcCoVU_.js";import{L as qa,T as ba}from"./twitter-DDHYm63p.js";import{L as $a}from"./list-Ajdnpsw1.js";import{L as I}from"./loader-circle-CbxAZW2L.js";import{L as Aa}from"./locate-fixed-D29o3FBS.js";import{L as Ha}from"./lock-RX1hYn48.js";import{L as za}from"./log-in-Bt5dnADg.js";import{L as Pa}from"./log-out-DJQW3sMi.js";import{M as ja}from"./mail-BFoS8U8W.js";import{M as Va}from"./map-pin-L7jUebKz.js";import{M as Ba}from"./menu-Cu-nnefe.js";import{M as Fa}from"./message-square-warning-DbVEqa_0.js";import{M as Da}from"./message-square-DMJ4IbdE.js";import{M as Ra}from"./monitor-DL9THmS7.js";import{P as Ta}from"./package-B9XnehkQ.js";import{P as Ua}from"./percent-BYDujffR.js";import{P as Oa}from"./phone-CJ2h446N.js";import{P as Za}from"./plane-BqORGC6m.js";import{P as Ga}from"./play-DHqp-NCB.js";import{Q as Wa}from"./qr-code-u5AOBzVe.js";import{Q as Ea}from"./quote-BtOwgBns.js";import{R as Xa}from"./radio-CxUR05xj.js";import{R as Ka}from"./refresh-cw-BTR9wbuS.js";import{R as Ja}from"./ruler-DbxwIrQY.js";import{S as Qa}from"./send-DpE3qK0m.js";import{S as Ya}from"./server-DgtPu6lA.js";import{S as eo}from"./settings-DYZFNkOc.js";import{S as ao,W as oo}from"./wifi-CFyF5qct.js";import{S as co}from"./shield-check--CTAItWs.js";import{S as to}from"./smartphone-BQ_9x4vN.js";import{S as N}from"./square-check-big-Dt4MtZcM.js";import{S as n}from"./square-pen-B3p2jiW9.js";import{S as no}from"./star-WlheM7sI.js";import{S as io}from"./sun-DRsBfXSu.js";import{T as ho}from"./tag-CMVMnpSh.js";import{T as yo}from"./target-BEz5Ry2v.js";import{T as ro,a as ko}from"./thumbs-up-DYj-woXk.js";import{T as po}from"./ticket-BhEK5100.js";import{T as so}from"./timer-Bn-D5krG.js";import{T as lo}from"./trash-2-Dxg0nP1A.js";import{T as uo}from"./trash-Dyd2ZsaG.js";import{T as Mo}from"./trending-down-CeOqAkGV.js";import{T as vo}from"./trending-up-CPB8hZlm.js";import{T as S}from"./triangle-alert-MsN2AA6c.js";import{T as mo}from"./trophy-BZyhzbIT.js";import{T as _o}from"./type-DlbqWp8I.js";import{U as go}from"./user-check-4xSYwYvq.js";import{U as Lo}from"./user-plus-C-0nSlHG.js";import{U as xo}from"./user-x-Drk57M2z.js";import{U as wo}from"./user-DToEmJ9g.js";import{U as fo}from"./users-Czs1F8XM.js";import{W as Co}from"./wallet-C3p1yihr.js";import{W as Io}from"./wrench-CLqKc51o.js";import{Z as No}from"./zap-D4fS-tPu.js";/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jm=[["path",{d:"M3.5 13h6",key:"p1my2r"}],["path",{d:"m2 16 4.5-9 4.5 9",key:"ndf0b3"}],["path",{d:"M18 7v9",key:"pknjwm"}],["path",{d:"m14 12 4 4 4-4",key:"buelq4"}]],No=e("AArrowDown",jm);/** + */const jm=[["path",{d:"M3.5 13h6",key:"p1my2r"}],["path",{d:"m2 16 4.5-9 4.5 9",key:"ndf0b3"}],["path",{d:"M18 7v9",key:"pknjwm"}],["path",{d:"m14 12 4 4 4-4",key:"buelq4"}]],So=e("AArrowDown",jm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Vm=[["path",{d:"M3.5 13h6",key:"p1my2r"}],["path",{d:"m2 16 4.5-9 4.5 9",key:"ndf0b3"}],["path",{d:"M18 16V7",key:"ty0viw"}],["path",{d:"m14 11 4-4 4 4",key:"1pu57t"}]],So=e("AArrowUp",Vm);/** + */const Vm=[["path",{d:"M3.5 13h6",key:"p1my2r"}],["path",{d:"m2 16 4.5-9 4.5 9",key:"ndf0b3"}],["path",{d:"M18 16V7",key:"ty0viw"}],["path",{d:"m14 11 4-4 4 4",key:"1pu57t"}]],qo=e("AArrowUp",Vm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Bm=[["path",{d:"M21 14h-5",key:"1vh23k"}],["path",{d:"M16 16v-3.5a2.5 2.5 0 0 1 5 0V16",key:"1wh10o"}],["path",{d:"M4.5 13h6",key:"dfilno"}],["path",{d:"m3 16 4.5-9 4.5 9",key:"2dxa0e"}]],qo=e("ALargeSmall",Bm);/** + */const Bm=[["path",{d:"M21 14h-5",key:"1vh23k"}],["path",{d:"M16 16v-3.5a2.5 2.5 0 0 1 5 0V16",key:"1wh10o"}],["path",{d:"M4.5 13h6",key:"dfilno"}],["path",{d:"m3 16 4.5-9 4.5 9",key:"2dxa0e"}]],bo=e("ALargeSmall",Bm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Fm=[["circle",{cx:"16",cy:"4",r:"1",key:"1grugj"}],["path",{d:"m18 19 1-7-6 1",key:"r0i19z"}],["path",{d:"m5 8 3-3 5.5 3-2.36 3.5",key:"9ptxx2"}],["path",{d:"M4.24 14.5a5 5 0 0 0 6.88 6",key:"10kmtu"}],["path",{d:"M13.76 17.5a5 5 0 0 0-6.88-6",key:"2qq6rc"}]],bo=e("Accessibility",Fm);/** + */const Fm=[["circle",{cx:"16",cy:"4",r:"1",key:"1grugj"}],["path",{d:"m18 19 1-7-6 1",key:"r0i19z"}],["path",{d:"m5 8 3-3 5.5 3-2.36 3.5",key:"9ptxx2"}],["path",{d:"M4.24 14.5a5 5 0 0 0 6.88 6",key:"10kmtu"}],["path",{d:"M13.76 17.5a5 5 0 0 0-6.88-6",key:"2qq6rc"}]],$o=e("Accessibility",Fm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Dm=[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",key:"169zse"}]],$o=e("Activity",Dm);/** + */const Dm=[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",key:"169zse"}]],Ao=e("Activity",Dm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Rm=[["path",{d:"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2",key:"larmp2"}],["path",{d:"M6 8h12",key:"6g4wlu"}],["path",{d:"M18.3 17.7a2.5 2.5 0 0 1-3.16 3.83 2.53 2.53 0 0 1-1.14-2V12",key:"1bo8pg"}],["path",{d:"M6.6 15.6A2 2 0 1 0 10 17v-5",key:"t9h90c"}]],Ao=e("AirVent",Rm);/** + */const Rm=[["path",{d:"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2",key:"larmp2"}],["path",{d:"M6 8h12",key:"6g4wlu"}],["path",{d:"M18.3 17.7a2.5 2.5 0 0 1-3.16 3.83 2.53 2.53 0 0 1-1.14-2V12",key:"1bo8pg"}],["path",{d:"M6.6 15.6A2 2 0 1 0 10 17v-5",key:"t9h90c"}]],Ho=e("AirVent",Rm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Tm=[["path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1",key:"ns4c3b"}],["path",{d:"m12 15 5 6H7Z",key:"14qnn2"}]],Ho=e("Airplay",Tm);/** + */const Tm=[["path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1",key:"ns4c3b"}],["path",{d:"m12 15 5 6H7Z",key:"14qnn2"}]],zo=e("Airplay",Tm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -48,7 +48,7 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Zm=[["path",{d:"M6.87 6.87a8 8 0 1 0 11.26 11.26",key:"3on8tj"}],["path",{d:"M19.9 14.25a8 8 0 0 0-9.15-9.15",key:"15ghsc"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.26 18.67 4 21",key:"yzmioq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M4 4 2 6",key:"1ycko6"}]],zo=e("AlarmClockOff",Zm);/** + */const Zm=[["path",{d:"M6.87 6.87a8 8 0 1 0 11.26 11.26",key:"3on8tj"}],["path",{d:"M19.9 14.25a8 8 0 0 0-9.15-9.15",key:"15ghsc"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.26 18.67 4 21",key:"yzmioq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M4 4 2 6",key:"1ycko6"}]],Po=e("AlarmClockOff",Zm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -58,262 +58,262 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Wm=[["circle",{cx:"12",cy:"13",r:"8",key:"3y4lt7"}],["path",{d:"M12 9v4l2 2",key:"1c63tq"}],["path",{d:"M5 3 2 6",key:"18tl5t"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.38 18.7 4 21",key:"17xu3x"}],["path",{d:"M17.64 18.67 20 21",key:"kv2oe2"}]],Po=e("AlarmClock",Wm);/** + */const Wm=[["circle",{cx:"12",cy:"13",r:"8",key:"3y4lt7"}],["path",{d:"M12 9v4l2 2",key:"1c63tq"}],["path",{d:"M5 3 2 6",key:"18tl5t"}],["path",{d:"m22 6-3-3",key:"1opdir"}],["path",{d:"M6.38 18.7 4 21",key:"17xu3x"}],["path",{d:"M17.64 18.67 20 21",key:"kv2oe2"}]],jo=e("AlarmClock",Wm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Em=[["path",{d:"M11 21c0-2.5 2-2.5 2-5",key:"1sicvv"}],["path",{d:"M16 21c0-2.5 2-2.5 2-5",key:"1o3eny"}],["path",{d:"m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8",key:"1bvca4"}],["path",{d:"M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z",key:"x3qr1j"}],["path",{d:"M6 21c0-2.5 2-2.5 2-5",key:"i3w1gp"}]],jo=e("AlarmSmoke",Em);/** + */const Em=[["path",{d:"M11 21c0-2.5 2-2.5 2-5",key:"1sicvv"}],["path",{d:"M16 21c0-2.5 2-2.5 2-5",key:"1o3eny"}],["path",{d:"m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8",key:"1bvca4"}],["path",{d:"M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z",key:"x3qr1j"}],["path",{d:"M6 21c0-2.5 2-2.5 2-5",key:"i3w1gp"}]],Vo=e("AlarmSmoke",Em);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Xm=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["polyline",{points:"11 3 11 11 14 8 17 11 17 3",key:"1wcwz3"}]],Vo=e("Album",Xm);/** + */const Xm=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["polyline",{points:"11 3 11 11 14 8 17 11 17 3",key:"1wcwz3"}]],Bo=e("Album",Xm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Km=[["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4",key:"11f1s0"}],["path",{d:"M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4",key:"t14dx9"}],["path",{d:"M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1",key:"1w07xs"}],["path",{d:"M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1",key:"1apec2"}]],Bo=e("AlignCenterHorizontal",Km);/** + */const Km=[["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4",key:"11f1s0"}],["path",{d:"M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4",key:"t14dx9"}],["path",{d:"M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1",key:"1w07xs"}],["path",{d:"M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1",key:"1apec2"}]],Fo=e("AlignCenterHorizontal",Km);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Jm=[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4",key:"14d6g8"}],["path",{d:"M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4",key:"1e2lrw"}],["path",{d:"M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1",key:"1fkdwx"}],["path",{d:"M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1",key:"1euafb"}]],Fo=e("AlignCenterVertical",Jm);/** + */const Jm=[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4",key:"14d6g8"}],["path",{d:"M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4",key:"1e2lrw"}],["path",{d:"M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1",key:"1fkdwx"}],["path",{d:"M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1",key:"1euafb"}]],Do=e("AlignCenterVertical",Jm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Qm=[["rect",{width:"6",height:"16",x:"4",y:"2",rx:"2",key:"z5wdxg"}],["rect",{width:"6",height:"9",x:"14",y:"9",rx:"2",key:"um7a8w"}],["path",{d:"M22 22H2",key:"19qnx5"}]],Do=e("AlignEndHorizontal",Qm);/** + */const Qm=[["rect",{width:"6",height:"16",x:"4",y:"2",rx:"2",key:"z5wdxg"}],["rect",{width:"6",height:"9",x:"14",y:"9",rx:"2",key:"um7a8w"}],["path",{d:"M22 22H2",key:"19qnx5"}]],Ro=e("AlignEndHorizontal",Qm);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ym=[["rect",{width:"16",height:"6",x:"2",y:"4",rx:"2",key:"10wcwx"}],["rect",{width:"9",height:"6",x:"9",y:"14",rx:"2",key:"4p5bwg"}],["path",{d:"M22 22V2",key:"12ipfv"}]],Ro=e("AlignEndVertical",Ym);/** + */const Ym=[["rect",{width:"16",height:"6",x:"2",y:"4",rx:"2",key:"10wcwx"}],["rect",{width:"9",height:"6",x:"9",y:"14",rx:"2",key:"4p5bwg"}],["path",{d:"M22 22V2",key:"12ipfv"}]],To=e("AlignEndVertical",Ym);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const e_=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M17 22v-5",key:"4b6g73"}],["path",{d:"M17 7V2",key:"hnrr36"}],["path",{d:"M7 22v-3",key:"1r4jpn"}],["path",{d:"M7 5V2",key:"liy1u9"}]],To=e("AlignHorizontalDistributeCenter",e_);/** + */const e_=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M17 22v-5",key:"4b6g73"}],["path",{d:"M17 7V2",key:"hnrr36"}],["path",{d:"M7 22v-3",key:"1r4jpn"}],["path",{d:"M7 5V2",key:"liy1u9"}]],Uo=e("AlignHorizontalDistributeCenter",e_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const a_=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M10 2v20",key:"uyc634"}],["path",{d:"M20 2v20",key:"1tx262"}]],Uo=e("AlignHorizontalDistributeEnd",a_);/** + */const a_=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M10 2v20",key:"uyc634"}],["path",{d:"M20 2v20",key:"1tx262"}]],Oo=e("AlignHorizontalDistributeEnd",a_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const o_=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M4 2v20",key:"gtpd5x"}],["path",{d:"M14 2v20",key:"tg6bpw"}]],Oo=e("AlignHorizontalDistributeStart",o_);/** + */const o_=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2",key:"1wwnby"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2",key:"1fe6j6"}],["path",{d:"M4 2v20",key:"gtpd5x"}],["path",{d:"M14 2v20",key:"tg6bpw"}]],Zo=e("AlignHorizontalDistributeStart",o_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const c_=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2",key:"dy24zr"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2",key:"13zkjt"}],["path",{d:"M12 2v20",key:"t6zp3m"}]],Zo=e("AlignHorizontalJustifyCenter",c_);/** + */const c_=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2",key:"dy24zr"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2",key:"13zkjt"}],["path",{d:"M12 2v20",key:"t6zp3m"}]],Go=e("AlignHorizontalJustifyCenter",c_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const t_=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2",key:"dy24zr"}],["rect",{width:"6",height:"10",x:"12",y:"7",rx:"2",key:"1ht384"}],["path",{d:"M22 2v20",key:"40qfg1"}]],Go=e("AlignHorizontalJustifyEnd",t_);/** + */const t_=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2",key:"dy24zr"}],["rect",{width:"6",height:"10",x:"12",y:"7",rx:"2",key:"1ht384"}],["path",{d:"M22 2v20",key:"40qfg1"}]],Wo=e("AlignHorizontalJustifyEnd",t_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const n_=[["rect",{width:"6",height:"14",x:"6",y:"5",rx:"2",key:"hsirpf"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2",key:"13zkjt"}],["path",{d:"M2 2v20",key:"1ivd8o"}]],Wo=e("AlignHorizontalJustifyStart",n_);/** + */const n_=[["rect",{width:"6",height:"14",x:"6",y:"5",rx:"2",key:"hsirpf"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2",key:"13zkjt"}],["path",{d:"M2 2v20",key:"1ivd8o"}]],Eo=e("AlignHorizontalJustifyStart",n_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const d_=[["rect",{width:"6",height:"10",x:"9",y:"7",rx:"2",key:"yn7j0q"}],["path",{d:"M4 22V2",key:"tsjzd3"}],["path",{d:"M20 22V2",key:"1bnhr8"}]],Eo=e("AlignHorizontalSpaceAround",d_);/** + */const d_=[["rect",{width:"6",height:"10",x:"9",y:"7",rx:"2",key:"yn7j0q"}],["path",{d:"M4 22V2",key:"tsjzd3"}],["path",{d:"M20 22V2",key:"1bnhr8"}]],Xo=e("AlignHorizontalSpaceAround",d_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const i_=[["rect",{width:"6",height:"14",x:"3",y:"5",rx:"2",key:"j77dae"}],["rect",{width:"6",height:"10",x:"15",y:"7",rx:"2",key:"bq30hj"}],["path",{d:"M3 2v20",key:"1d2pfg"}],["path",{d:"M21 2v20",key:"p059bm"}]],Xo=e("AlignHorizontalSpaceBetween",i_);/** + */const i_=[["rect",{width:"6",height:"14",x:"3",y:"5",rx:"2",key:"j77dae"}],["rect",{width:"6",height:"10",x:"15",y:"7",rx:"2",key:"bq30hj"}],["path",{d:"M3 2v20",key:"1d2pfg"}],["path",{d:"M21 2v20",key:"p059bm"}]],Ko=e("AlignHorizontalSpaceBetween",i_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const h_=[["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"M3 18h18",key:"1h113x"}],["path",{d:"M3 6h18",key:"d0wm0j"}]],Ko=e("AlignJustify",h_);/** + */const h_=[["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"M3 18h18",key:"1h113x"}],["path",{d:"M3 6h18",key:"d0wm0j"}]],Jo=e("AlignJustify",h_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const y_=[["rect",{width:"6",height:"16",x:"4",y:"6",rx:"2",key:"1n4dg1"}],["rect",{width:"6",height:"9",x:"14",y:"6",rx:"2",key:"17khns"}],["path",{d:"M22 2H2",key:"fhrpnj"}]],Jo=e("AlignStartHorizontal",y_);/** + */const y_=[["rect",{width:"6",height:"16",x:"4",y:"6",rx:"2",key:"1n4dg1"}],["rect",{width:"6",height:"9",x:"14",y:"6",rx:"2",key:"17khns"}],["path",{d:"M22 2H2",key:"fhrpnj"}]],Qo=e("AlignStartHorizontal",y_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const r_=[["rect",{width:"9",height:"6",x:"6",y:"14",rx:"2",key:"lpm2y7"}],["rect",{width:"16",height:"6",x:"6",y:"4",rx:"2",key:"rdj6ps"}],["path",{d:"M2 2v20",key:"1ivd8o"}]],Qo=e("AlignStartVertical",r_);/** + */const r_=[["rect",{width:"9",height:"6",x:"6",y:"14",rx:"2",key:"lpm2y7"}],["rect",{width:"16",height:"6",x:"6",y:"4",rx:"2",key:"rdj6ps"}],["path",{d:"M2 2v20",key:"1ivd8o"}]],Yo=e("AlignStartVertical",r_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const k_=[["path",{d:"M22 17h-3",key:"1lwga1"}],["path",{d:"M22 7h-5",key:"o2endc"}],["path",{d:"M5 17H2",key:"1gx9xc"}],["path",{d:"M7 7H2",key:"6bq26l"}],["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2",key:"1qrzuf"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2",key:"we8e9z"}]],Yo=e("AlignVerticalDistributeCenter",k_);/** + */const k_=[["path",{d:"M22 17h-3",key:"1lwga1"}],["path",{d:"M22 7h-5",key:"o2endc"}],["path",{d:"M5 17H2",key:"1gx9xc"}],["path",{d:"M7 7H2",key:"6bq26l"}],["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2",key:"1qrzuf"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2",key:"we8e9z"}]],ec=e("AlignVerticalDistributeCenter",k_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const p_=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2",key:"jmoj9s"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2",key:"aza5on"}],["path",{d:"M2 20h20",key:"owomy5"}],["path",{d:"M2 10h20",key:"1ir3d8"}]],ec=e("AlignVerticalDistributeEnd",p_);/** + */const p_=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2",key:"jmoj9s"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2",key:"aza5on"}],["path",{d:"M2 20h20",key:"owomy5"}],["path",{d:"M2 10h20",key:"1ir3d8"}]],ac=e("AlignVerticalDistributeEnd",p_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const s_=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2",key:"jmoj9s"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2",key:"aza5on"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M2 4h20",key:"mda7wb"}]],ac=e("AlignVerticalDistributeStart",s_);/** + */const s_=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2",key:"jmoj9s"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2",key:"aza5on"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M2 4h20",key:"mda7wb"}]],oc=e("AlignVerticalDistributeStart",s_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const l_=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2",key:"1i8z2d"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2",key:"ypihtt"}],["path",{d:"M2 12h20",key:"9i4pu4"}]],oc=e("AlignVerticalJustifyCenter",l_);/** + */const l_=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2",key:"1i8z2d"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2",key:"ypihtt"}],["path",{d:"M2 12h20",key:"9i4pu4"}]],cc=e("AlignVerticalJustifyCenter",l_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const u_=[["rect",{width:"14",height:"6",x:"5",y:"12",rx:"2",key:"4l4tp2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2",key:"ypihtt"}],["path",{d:"M2 22h20",key:"272qi7"}]],cc=e("AlignVerticalJustifyEnd",u_);/** + */const u_=[["rect",{width:"14",height:"6",x:"5",y:"12",rx:"2",key:"4l4tp2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2",key:"ypihtt"}],["path",{d:"M2 22h20",key:"272qi7"}]],tc=e("AlignVerticalJustifyEnd",u_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const M_=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2",key:"1i8z2d"}],["rect",{width:"10",height:"6",x:"7",y:"6",rx:"2",key:"13squh"}],["path",{d:"M2 2h20",key:"1ennik"}]],tc=e("AlignVerticalJustifyStart",M_);/** + */const M_=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2",key:"1i8z2d"}],["rect",{width:"10",height:"6",x:"7",y:"6",rx:"2",key:"13squh"}],["path",{d:"M2 2h20",key:"1ennik"}]],nc=e("AlignVerticalJustifyStart",M_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const v_=[["rect",{width:"10",height:"6",x:"7",y:"9",rx:"2",key:"b1zbii"}],["path",{d:"M22 20H2",key:"1p1f7z"}],["path",{d:"M22 4H2",key:"1b7qnq"}]],nc=e("AlignVerticalSpaceAround",v_);/** + */const v_=[["rect",{width:"10",height:"6",x:"7",y:"9",rx:"2",key:"b1zbii"}],["path",{d:"M22 20H2",key:"1p1f7z"}],["path",{d:"M22 4H2",key:"1b7qnq"}]],dc=e("AlignVerticalSpaceAround",v_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const m_=[["rect",{width:"14",height:"6",x:"5",y:"15",rx:"2",key:"1w91an"}],["rect",{width:"10",height:"6",x:"7",y:"3",rx:"2",key:"17wqzy"}],["path",{d:"M2 21h20",key:"1nyx9w"}],["path",{d:"M2 3h20",key:"91anmk"}]],dc=e("AlignVerticalSpaceBetween",m_);/** + */const m_=[["rect",{width:"14",height:"6",x:"5",y:"15",rx:"2",key:"1w91an"}],["rect",{width:"10",height:"6",x:"7",y:"3",rx:"2",key:"17wqzy"}],["path",{d:"M2 21h20",key:"1nyx9w"}],["path",{d:"M2 3h20",key:"91anmk"}]],ic=e("AlignVerticalSpaceBetween",m_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const __=[["path",{d:"M10 10H6",key:"1bsnug"}],["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2",key:"wrbu53"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14",key:"lrkjwd"}],["path",{d:"M8 8v4",key:"1fwk8c"}],["path",{d:"M9 18h6",key:"x1upvd"}],["circle",{cx:"17",cy:"18",r:"2",key:"332jqn"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}]],ic=e("Ambulance",__);/** + */const __=[["path",{d:"M10 10H6",key:"1bsnug"}],["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2",key:"wrbu53"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14",key:"lrkjwd"}],["path",{d:"M8 8v4",key:"1fwk8c"}],["path",{d:"M9 18h6",key:"x1upvd"}],["circle",{cx:"17",cy:"18",r:"2",key:"332jqn"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}]],hc=e("Ambulance",__);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const g_=[["path",{d:"M17.5 12c0 4.4-3.6 8-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13",key:"1o9ehi"}],["path",{d:"M16 12h3",key:"4uvgyw"}]],hc=e("Ampersand",g_);/** + */const g_=[["path",{d:"M17.5 12c0 4.4-3.6 8-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13",key:"1o9ehi"}],["path",{d:"M16 12h3",key:"4uvgyw"}]],yc=e("Ampersand",g_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const L_=[["path",{d:"M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5",key:"12lh1k"}],["path",{d:"M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5",key:"173c68"}]],yc=e("Ampersands",L_);/** + */const L_=[["path",{d:"M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5",key:"12lh1k"}],["path",{d:"M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5",key:"173c68"}]],rc=e("Ampersands",L_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const x_=[["path",{d:"M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8",key:"1h8rid"}],["path",{d:"M10 5H8a2 2 0 0 0 0 4h.68",key:"3ezsi6"}],["path",{d:"M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8",key:"yt6q09"}],["path",{d:"M14 5h2a2 2 0 0 1 0 4h-.68",key:"8f95yk"}],["path",{d:"M18 22H6",key:"mg6kv4"}],["path",{d:"M9 2h6",key:"1jrp98"}]],rc=e("Amphora",x_);/** + */const x_=[["path",{d:"M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8",key:"1h8rid"}],["path",{d:"M10 5H8a2 2 0 0 0 0 4h.68",key:"3ezsi6"}],["path",{d:"M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8",key:"yt6q09"}],["path",{d:"M14 5h2a2 2 0 0 1 0 4h-.68",key:"8f95yk"}],["path",{d:"M18 22H6",key:"mg6kv4"}],["path",{d:"M9 2h6",key:"1jrp98"}]],kc=e("Amphora",x_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const w_=[["path",{d:"M12 22V8",key:"qkxhtm"}],["path",{d:"M5 12H2a10 10 0 0 0 20 0h-3",key:"1hv3nh"}],["circle",{cx:"12",cy:"5",r:"3",key:"rqqgnr"}]],kc=e("Anchor",w_);/** + */const w_=[["path",{d:"M12 22V8",key:"qkxhtm"}],["path",{d:"M5 12H2a10 10 0 0 0 20 0h-3",key:"1hv3nh"}],["circle",{cx:"12",cy:"5",r:"3",key:"rqqgnr"}]],pc=e("Anchor",w_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const f_=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2",key:"epbg0q"}],["path",{d:"M7.5 8 10 9",key:"olxxln"}],["path",{d:"m14 9 2.5-1",key:"1j6cij"}],["path",{d:"M9 10h.01",key:"qbtxuw"}],["path",{d:"M15 10h.01",key:"1qmjsl"}]],pc=e("Angry",f_);/** + */const f_=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2",key:"epbg0q"}],["path",{d:"M7.5 8 10 9",key:"olxxln"}],["path",{d:"m14 9 2.5-1",key:"1j6cij"}],["path",{d:"M9 10h.01",key:"qbtxuw"}],["path",{d:"M15 10h.01",key:"1qmjsl"}]],sc=e("Angry",f_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const C_=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 15h8",key:"45n4r"}],["path",{d:"M8 9h2",key:"1g203m"}],["path",{d:"M14 9h2",key:"116p9w"}]],sc=e("Annoyed",C_);/** + */const C_=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 15h8",key:"45n4r"}],["path",{d:"M8 9h2",key:"1g203m"}],["path",{d:"M14 9h2",key:"116p9w"}]],lc=e("Annoyed",C_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const I_=[["path",{d:"M2 12 7 2",key:"117k30"}],["path",{d:"m7 12 5-10",key:"1tvx22"}],["path",{d:"m12 12 5-10",key:"ev1o1a"}],["path",{d:"m17 12 5-10",key:"1e4ti3"}],["path",{d:"M4.5 7h15",key:"vlsxkz"}],["path",{d:"M12 16v6",key:"c8a4gj"}]],lc=e("Antenna",I_);/** + */const I_=[["path",{d:"M2 12 7 2",key:"117k30"}],["path",{d:"m7 12 5-10",key:"1tvx22"}],["path",{d:"m12 12 5-10",key:"ev1o1a"}],["path",{d:"m17 12 5-10",key:"1e4ti3"}],["path",{d:"M4.5 7h15",key:"vlsxkz"}],["path",{d:"M12 16v6",key:"c8a4gj"}]],uc=e("Antenna",I_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const N_=[["path",{d:"M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4",key:"1hjpb6"}],["path",{d:"M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z",key:"1qn45f"}],["path",{d:"M9 12v5",key:"3anwtq"}],["path",{d:"M15 12v5",key:"5xh3zn"}],["path",{d:"M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1",key:"1fi4x8"}]],uc=e("Anvil",N_);/** + */const N_=[["path",{d:"M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4",key:"1hjpb6"}],["path",{d:"M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z",key:"1qn45f"}],["path",{d:"M9 12v5",key:"3anwtq"}],["path",{d:"M15 12v5",key:"5xh3zn"}],["path",{d:"M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1",key:"1fi4x8"}]],Mc=e("Anvil",N_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const S_=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m14.31 8 5.74 9.94",key:"1y6ab4"}],["path",{d:"M9.69 8h11.48",key:"1wxppr"}],["path",{d:"m7.38 12 5.74-9.94",key:"1grp0k"}],["path",{d:"M9.69 16 3.95 6.06",key:"libnyf"}],["path",{d:"M14.31 16H2.83",key:"x5fava"}],["path",{d:"m16.62 12-5.74 9.94",key:"1vwawt"}]],Mc=e("Aperture",S_);/** + */const S_=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m14.31 8 5.74 9.94",key:"1y6ab4"}],["path",{d:"M9.69 8h11.48",key:"1wxppr"}],["path",{d:"m7.38 12 5.74-9.94",key:"1grp0k"}],["path",{d:"M9.69 16 3.95 6.06",key:"libnyf"}],["path",{d:"M14.31 16H2.83",key:"x5fava"}],["path",{d:"m16.62 12-5.74 9.94",key:"1vwawt"}]],vc=e("Aperture",S_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const q_=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M10 8h.01",key:"1r9ogq"}],["path",{d:"M14 8h.01",key:"1primd"}]],vc=e("AppWindowMac",q_);/** + */const q_=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M10 8h.01",key:"1r9ogq"}],["path",{d:"M14 8h.01",key:"1primd"}]],mc=e("AppWindowMac",q_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const b_=[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}],["path",{d:"M10 4v4",key:"pp8u80"}],["path",{d:"M2 8h20",key:"d11cs7"}],["path",{d:"M6 4v4",key:"1svtjw"}]],mc=e("AppWindow",b_);/** + */const b_=[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2",key:"izxlao"}],["path",{d:"M10 4v4",key:"pp8u80"}],["path",{d:"M2 8h20",key:"d11cs7"}],["path",{d:"M6 4v4",key:"1svtjw"}]],_c=e("AppWindow",b_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $_=[["path",{d:"M12 20.94c1.5 0 2.75 1.06 4 1.06 3 0 6-8 6-12.22A4.91 4.91 0 0 0 17 5c-2.22 0-4 1.44-5 2-1-.56-2.78-2-5-2a4.9 4.9 0 0 0-5 4.78C2 14 5 22 8 22c1.25 0 2.5-1.06 4-1.06Z",key:"3s7exb"}],["path",{d:"M10 2c1 .5 2 2 2 5",key:"fcco2y"}]],_c=e("Apple",$_);/** + */const $_=[["path",{d:"M12 20.94c1.5 0 2.75 1.06 4 1.06 3 0 6-8 6-12.22A4.91 4.91 0 0 0 17 5c-2.22 0-4 1.44-5 2-1-.56-2.78-2-5-2a4.9 4.9 0 0 0-5 4.78C2 14 5 22 8 22c1.25 0 2.5-1.06 4-1.06Z",key:"3s7exb"}],["path",{d:"M10 2c1 .5 2 2 2 5",key:"fcco2y"}]],gc=e("Apple",$_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const A_=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h2",key:"tvwodi"}],["path",{d:"M20 8v11a2 2 0 0 1-2 2h-2",key:"1gkqxj"}],["path",{d:"m9 15 3-3 3 3",key:"1pd0qc"}],["path",{d:"M12 12v9",key:"192myk"}]],gc=e("ArchiveRestore",A_);/** + */const A_=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h2",key:"tvwodi"}],["path",{d:"M20 8v11a2 2 0 0 1-2 2h-2",key:"1gkqxj"}],["path",{d:"m9 15 3-3 3 3",key:"1pd0qc"}],["path",{d:"M12 12v9",key:"192myk"}]],Lc=e("ArchiveRestore",A_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const H_=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8",key:"1s80jp"}],["path",{d:"m9.5 17 5-5",key:"nakeu6"}],["path",{d:"m9.5 12 5 5",key:"1hccrj"}]],Lc=e("ArchiveX",H_);/** + */const H_=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8",key:"1s80jp"}],["path",{d:"m9.5 17 5-5",key:"nakeu6"}],["path",{d:"m9.5 12 5 5",key:"1hccrj"}]],xc=e("ArchiveX",H_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const z_=[["path",{d:"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3",key:"irtipd"}],["path",{d:"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",key:"1qyhux"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]],xc=e("Armchair",z_);/** + */const z_=[["path",{d:"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3",key:"irtipd"}],["path",{d:"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",key:"1qyhux"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]],wc=e("Armchair",z_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const P_=[["path",{d:"M15 5H9",key:"1tp3ed"}],["path",{d:"M15 9v3h4l-7 7-7-7h4V9z",key:"ncdc4b"}]],wc=e("ArrowBigDownDash",P_);/** + */const P_=[["path",{d:"M15 5H9",key:"1tp3ed"}],["path",{d:"M15 9v3h4l-7 7-7-7h4V9z",key:"ncdc4b"}]],fc=e("ArrowBigDownDash",P_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const j_=[["path",{d:"M15 6v6h4l-7 7-7-7h4V6h6z",key:"1thax2"}]],fc=e("ArrowBigDown",j_);/** + */const j_=[["path",{d:"M15 6v6h4l-7 7-7-7h4V6h6z",key:"1thax2"}]],Cc=e("ArrowBigDown",j_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const V_=[["path",{d:"M19 15V9",key:"1hci5f"}],["path",{d:"M15 15h-3v4l-7-7 7-7v4h3v6z",key:"16tjna"}]],Cc=e("ArrowBigLeftDash",V_);/** + */const V_=[["path",{d:"M19 15V9",key:"1hci5f"}],["path",{d:"M15 15h-3v4l-7-7 7-7v4h3v6z",key:"16tjna"}]],Ic=e("ArrowBigLeftDash",V_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const B_=[["path",{d:"M18 15h-6v4l-7-7 7-7v4h6v6z",key:"lbrdak"}]],Ic=e("ArrowBigLeft",B_);/** + */const B_=[["path",{d:"M18 15h-6v4l-7-7 7-7v4h6v6z",key:"lbrdak"}]],Nc=e("ArrowBigLeft",B_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const F_=[["path",{d:"M5 9v6",key:"158jrl"}],["path",{d:"M9 9h3V5l7 7-7 7v-4H9V9z",key:"1sg2xn"}]],Nc=e("ArrowBigRightDash",F_);/** + */const F_=[["path",{d:"M5 9v6",key:"158jrl"}],["path",{d:"M9 9h3V5l7 7-7 7v-4H9V9z",key:"1sg2xn"}]],Sc=e("ArrowBigRightDash",F_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const D_=[["path",{d:"M6 9h6V5l7 7-7 7v-4H6V9z",key:"7fvt9c"}]],Sc=e("ArrowBigRight",D_);/** + */const D_=[["path",{d:"M6 9h6V5l7 7-7 7v-4H6V9z",key:"7fvt9c"}]],qc=e("ArrowBigRight",D_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const R_=[["path",{d:"M9 19h6",key:"456am0"}],["path",{d:"M9 15v-3H5l7-7 7 7h-4v3H9z",key:"1r2uve"}]],qc=e("ArrowBigUpDash",R_);/** + */const R_=[["path",{d:"M9 19h6",key:"456am0"}],["path",{d:"M9 15v-3H5l7-7 7 7h-4v3H9z",key:"1r2uve"}]],bc=e("ArrowBigUpDash",R_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const T_=[["path",{d:"M9 18v-6H5l7-7 7 7h-4v6H9z",key:"1x06kx"}]],bc=e("ArrowBigUp",T_);/** + */const T_=[["path",{d:"M9 18v-6H5l7-7 7 7h-4v6H9z",key:"1x06kx"}]],$c=e("ArrowBigUp",T_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const U_=[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2",key:"1bwicg"}],["path",{d:"M17 20v-6h-2",key:"1qp1so"}],["path",{d:"M15 20h4",key:"1j968p"}]],$c=e("ArrowDown01",U_);/** + */const U_=[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2",key:"1bwicg"}],["path",{d:"M17 20v-6h-2",key:"1qp1so"}],["path",{d:"M15 20h4",key:"1j968p"}]],Ac=e("ArrowDown01",U_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const O_=[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M17 10V4h-2",key:"zcsr5x"}],["path",{d:"M15 10h4",key:"id2lce"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2",key:"33xykx"}]],Ac=e("ArrowDown10",O_);/** + */const O_=[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M17 10V4h-2",key:"zcsr5x"}],["path",{d:"M15 10h4",key:"id2lce"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2",key:"33xykx"}]],Hc=e("ArrowDown10",O_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -323,32 +323,32 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const G_=[["path",{d:"M19 3H5",key:"1236rx"}],["path",{d:"M12 21V7",key:"gj6g52"}],["path",{d:"m6 15 6 6 6-6",key:"h15q88"}]],Hc=e("ArrowDownFromLine",G_);/** + */const G_=[["path",{d:"M19 3H5",key:"1236rx"}],["path",{d:"M12 21V7",key:"gj6g52"}],["path",{d:"m6 15 6 6 6-6",key:"h15q88"}]],zc=e("ArrowDownFromLine",G_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const W_=[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M11 4h4",key:"6d7r33"}],["path",{d:"M11 8h7",key:"djye34"}],["path",{d:"M11 12h10",key:"1438ji"}]],zc=e("ArrowDownNarrowWide",W_);/** + */const W_=[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"M11 4h4",key:"6d7r33"}],["path",{d:"M11 8h7",key:"djye34"}],["path",{d:"M11 12h10",key:"1438ji"}]],Pc=e("ArrowDownNarrowWide",W_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const E_=[["path",{d:"m7 7 10 10",key:"1fmybs"}],["path",{d:"M17 7v10H7",key:"6fjiku"}]],Pc=e("ArrowDownRight",E_);/** + */const E_=[["path",{d:"m7 7 10 10",key:"1fmybs"}],["path",{d:"M17 7v10H7",key:"6fjiku"}]],jc=e("ArrowDownRight",E_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const X_=[["path",{d:"M12 2v14",key:"jyx4ut"}],["path",{d:"m19 9-7 7-7-7",key:"1oe3oy"}],["circle",{cx:"12",cy:"21",r:"1",key:"o0uj5v"}]],jc=e("ArrowDownToDot",X_);/** + */const X_=[["path",{d:"M12 2v14",key:"jyx4ut"}],["path",{d:"m19 9-7 7-7-7",key:"1oe3oy"}],["circle",{cx:"12",cy:"21",r:"1",key:"o0uj5v"}]],Vc=e("ArrowDownToDot",X_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const K_=[["path",{d:"M12 17V3",key:"1cwfxf"}],["path",{d:"m6 11 6 6 6-6",key:"12ii2o"}],["path",{d:"M19 21H5",key:"150jfl"}]],Vc=e("ArrowDownToLine",K_);/** + */const K_=[["path",{d:"M12 17V3",key:"1cwfxf"}],["path",{d:"m6 11 6 6 6-6",key:"12ii2o"}],["path",{d:"M19 21H5",key:"150jfl"}]],Bc=e("ArrowDownToLine",K_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const J_=[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"m21 8-4-4-4 4",key:"1c9v7m"}],["path",{d:"M17 4v16",key:"7dpous"}]],Bc=e("ArrowDownUp",J_);/** + */const J_=[["path",{d:"m3 16 4 4 4-4",key:"1co6wj"}],["path",{d:"M7 20V4",key:"1yoxec"}],["path",{d:"m21 8-4-4-4 4",key:"1c9v7m"}],["path",{d:"M17 4v16",key:"7dpous"}]],Fc=e("ArrowDownUp",J_);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -363,42 +363,42 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eg=[["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"m19 12-7 7-7-7",key:"1idqje"}]],Fc=e("ArrowDown",eg);/** + */const eg=[["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"m19 12-7 7-7-7",key:"1idqje"}]],Dc=e("ArrowDown",eg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ag=[["path",{d:"m9 6-6 6 6 6",key:"7v63n9"}],["path",{d:"M3 12h14",key:"13k4hi"}],["path",{d:"M21 19V5",key:"b4bplr"}]],Dc=e("ArrowLeftFromLine",ag);/** + */const ag=[["path",{d:"m9 6-6 6 6 6",key:"7v63n9"}],["path",{d:"M3 12h14",key:"13k4hi"}],["path",{d:"M21 19V5",key:"b4bplr"}]],Rc=e("ArrowLeftFromLine",ag);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const og=[["path",{d:"M8 3 4 7l4 4",key:"9rb6wj"}],["path",{d:"M4 7h16",key:"6tx8e3"}],["path",{d:"m16 21 4-4-4-4",key:"siv7j2"}],["path",{d:"M20 17H4",key:"h6l3hr"}]],Rc=e("ArrowLeftRight",og);/** + */const og=[["path",{d:"M8 3 4 7l4 4",key:"9rb6wj"}],["path",{d:"M4 7h16",key:"6tx8e3"}],["path",{d:"m16 21 4-4-4-4",key:"siv7j2"}],["path",{d:"M20 17H4",key:"h6l3hr"}]],Tc=e("ArrowLeftRight",og);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cg=[["path",{d:"M3 19V5",key:"rwsyhb"}],["path",{d:"m13 6-6 6 6 6",key:"1yhaz7"}],["path",{d:"M7 12h14",key:"uoisry"}]],Tc=e("ArrowLeftToLine",cg);/** + */const cg=[["path",{d:"M3 19V5",key:"rwsyhb"}],["path",{d:"m13 6-6 6 6 6",key:"1yhaz7"}],["path",{d:"M7 12h14",key:"uoisry"}]],Uc=e("ArrowLeftToLine",cg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tg=[["path",{d:"M3 5v14",key:"1nt18q"}],["path",{d:"M21 12H7",key:"13ipq5"}],["path",{d:"m15 18 6-6-6-6",key:"6tx3qv"}]],Uc=e("ArrowRightFromLine",tg);/** + */const tg=[["path",{d:"M3 5v14",key:"1nt18q"}],["path",{d:"M21 12H7",key:"13ipq5"}],["path",{d:"m15 18 6-6-6-6",key:"6tx3qv"}]],Oc=e("ArrowRightFromLine",tg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ng=[["path",{d:"M17 12H3",key:"8awo09"}],["path",{d:"m11 18 6-6-6-6",key:"8c2y43"}],["path",{d:"M21 5v14",key:"nzette"}]],Oc=e("ArrowRightToLine",ng);/** + */const ng=[["path",{d:"M17 12H3",key:"8awo09"}],["path",{d:"m11 18 6-6-6-6",key:"8c2y43"}],["path",{d:"M21 5v14",key:"nzette"}]],Zc=e("ArrowRightToLine",ng);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dg=[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2",key:"1bwicg"}],["path",{d:"M17 20v-6h-2",key:"1qp1so"}],["path",{d:"M15 20h4",key:"1j968p"}]],Zc=e("ArrowUp01",dg);/** + */const dg=[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2",key:"1bwicg"}],["path",{d:"M17 20v-6h-2",key:"1qp1so"}],["path",{d:"M15 20h4",key:"1j968p"}]],Gc=e("ArrowUp01",dg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ig=[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M17 10V4h-2",key:"zcsr5x"}],["path",{d:"M15 10h4",key:"id2lce"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2",key:"33xykx"}]],Gc=e("ArrowUp10",ig);/** + */const ig=[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M17 10V4h-2",key:"zcsr5x"}],["path",{d:"M15 10h4",key:"id2lce"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2",key:"33xykx"}]],Wc=e("ArrowUp10",ig);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -408,17 +408,17 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yg=[["path",{d:"m5 9 7-7 7 7",key:"1hw5ic"}],["path",{d:"M12 16V2",key:"ywoabb"}],["circle",{cx:"12",cy:"21",r:"1",key:"o0uj5v"}]],Wc=e("ArrowUpFromDot",yg);/** + */const yg=[["path",{d:"m5 9 7-7 7 7",key:"1hw5ic"}],["path",{d:"M12 16V2",key:"ywoabb"}],["circle",{cx:"12",cy:"21",r:"1",key:"o0uj5v"}]],Ec=e("ArrowUpFromDot",yg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rg=[["path",{d:"m18 9-6-6-6 6",key:"kcunyi"}],["path",{d:"M12 3v14",key:"7cf3v8"}],["path",{d:"M5 21h14",key:"11awu3"}]],Ec=e("ArrowUpFromLine",rg);/** + */const rg=[["path",{d:"m18 9-6-6-6 6",key:"kcunyi"}],["path",{d:"M12 3v14",key:"7cf3v8"}],["path",{d:"M5 21h14",key:"11awu3"}]],Xc=e("ArrowUpFromLine",rg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kg=[["path",{d:"M7 17V7h10",key:"11bw93"}],["path",{d:"M17 17 7 7",key:"2786uv"}]],Xc=e("ArrowUpLeft",kg);/** + */const kg=[["path",{d:"M7 17V7h10",key:"11bw93"}],["path",{d:"M17 17 7 7",key:"2786uv"}]],Kc=e("ArrowUpLeft",kg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -428,12 +428,12 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sg=[["path",{d:"M5 3h14",key:"7usisc"}],["path",{d:"m18 13-6-6-6 6",key:"1kf1n9"}],["path",{d:"M12 7v14",key:"1akyts"}]],Kc=e("ArrowUpToLine",sg);/** + */const sg=[["path",{d:"M5 3h14",key:"7usisc"}],["path",{d:"m18 13-6-6-6 6",key:"1kf1n9"}],["path",{d:"M12 7v14",key:"1akyts"}]],Jc=e("ArrowUpToLine",sg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lg=[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M11 12h10",key:"1438ji"}],["path",{d:"M11 16h7",key:"uosisv"}],["path",{d:"M11 20h4",key:"1krc32"}]],Jc=e("ArrowUpWideNarrow",lg);/** + */const lg=[["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}],["path",{d:"M11 12h10",key:"1438ji"}],["path",{d:"M11 16h7",key:"uosisv"}],["path",{d:"M11 20h4",key:"1krc32"}]],Qc=e("ArrowUpWideNarrow",lg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -443,42 +443,42 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Mg=[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]],Qc=e("ArrowUp",Mg);/** + */const Mg=[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]],Yc=e("ArrowUp",Mg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vg=[["path",{d:"m4 6 3-3 3 3",key:"9aidw8"}],["path",{d:"M7 17V3",key:"19qxw1"}],["path",{d:"m14 6 3-3 3 3",key:"6iy689"}],["path",{d:"M17 17V3",key:"o0fmgi"}],["path",{d:"M4 21h16",key:"1h09gz"}]],Yc=e("ArrowsUpFromLine",vg);/** + */const vg=[["path",{d:"m4 6 3-3 3 3",key:"9aidw8"}],["path",{d:"M7 17V3",key:"19qxw1"}],["path",{d:"m14 6 3-3 3 3",key:"6iy689"}],["path",{d:"M17 17V3",key:"o0fmgi"}],["path",{d:"M4 21h16",key:"1h09gz"}]],et=e("ArrowsUpFromLine",vg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mg=[["path",{d:"M12 6v12",key:"1vza4d"}],["path",{d:"M17.196 9 6.804 15",key:"1ah31z"}],["path",{d:"m6.804 9 10.392 6",key:"1b6pxd"}]],et=e("Asterisk",mg);/** + */const mg=[["path",{d:"M12 6v12",key:"1vza4d"}],["path",{d:"M17.196 9 6.804 15",key:"1ah31z"}],["path",{d:"m6.804 9 10.392 6",key:"1b6pxd"}]],at=e("Asterisk",mg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _g=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8",key:"7n84p3"}]],at=e("AtSign",_g);/** + */const _g=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8",key:"7n84p3"}]],ot=e("AtSign",_g);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gg=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z",key:"1l2ple"}],["path",{d:"M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z",key:"1wam0m"}]],ot=e("Atom",gg);/** + */const gg=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z",key:"1l2ple"}],["path",{d:"M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z",key:"1wam0m"}]],ct=e("Atom",gg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Lg=[["path",{d:"M2 10v3",key:"1fnikh"}],["path",{d:"M6 6v11",key:"11sgs0"}],["path",{d:"M10 3v18",key:"yhl04a"}],["path",{d:"M14 8v7",key:"3a1oy3"}],["path",{d:"M18 5v13",key:"123xd1"}],["path",{d:"M22 10v3",key:"154ddg"}]],ct=e("AudioLines",Lg);/** + */const Lg=[["path",{d:"M2 10v3",key:"1fnikh"}],["path",{d:"M6 6v11",key:"11sgs0"}],["path",{d:"M10 3v18",key:"yhl04a"}],["path",{d:"M14 8v7",key:"3a1oy3"}],["path",{d:"M18 5v13",key:"123xd1"}],["path",{d:"M22 10v3",key:"154ddg"}]],tt=e("AudioLines",Lg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xg=[["path",{d:"M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2",key:"57tc96"}]],tt=e("AudioWaveform",xg);/** + */const xg=[["path",{d:"M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2",key:"57tc96"}]],nt=e("AudioWaveform",xg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wg=[["path",{d:"m14 12-8.5 8.5a2.12 2.12 0 1 1-3-3L11 9",key:"csbz4o"}],["path",{d:"M15 13 9 7l4-4 6 6h3a8 8 0 0 1-7 7z",key:"113wfo"}]],nt=e("Axe",wg);/** + */const wg=[["path",{d:"m14 12-8.5 8.5a2.12 2.12 0 1 1-3-3L11 9",key:"csbz4o"}],["path",{d:"M15 13 9 7l4-4 6 6h3a8 8 0 0 1-7 7z",key:"113wfo"}]],dt=e("Axe",wg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -488,22 +488,22 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Cg=[["path",{d:"M9 12h.01",key:"157uk2"}],["path",{d:"M15 12h.01",key:"1k8ypt"}],["path",{d:"M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5",key:"1u7htd"}],["path",{d:"M19 6.3a9 9 0 0 1 1.8 3.9 2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1",key:"5yv0yz"}]],dt=e("Baby",Cg);/** + */const Cg=[["path",{d:"M9 12h.01",key:"157uk2"}],["path",{d:"M15 12h.01",key:"1k8ypt"}],["path",{d:"M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5",key:"1u7htd"}],["path",{d:"M19 6.3a9 9 0 0 1 1.8 3.9 2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1",key:"5yv0yz"}]],it=e("Baby",Cg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ig=[["path",{d:"M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z",key:"1ol0lm"}],["path",{d:"M8 10h8",key:"c7uz4u"}],["path",{d:"M8 18h8",key:"1no2b1"}],["path",{d:"M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6",key:"1fr6do"}],["path",{d:"M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2",key:"donm21"}]],it=e("Backpack",Ig);/** + */const Ig=[["path",{d:"M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z",key:"1ol0lm"}],["path",{d:"M8 10h8",key:"c7uz4u"}],["path",{d:"M8 18h8",key:"1no2b1"}],["path",{d:"M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6",key:"1fr6do"}],["path",{d:"M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2",key:"donm21"}]],ht=e("Backpack",Ig);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ng=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]],ht=e("BadgeAlert",Ng);/** + */const Ng=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]],yt=e("BadgeAlert",Ng);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Sg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M15.4 10a4 4 0 1 0 0 4",key:"2eqtx8"}]],yt=e("BadgeCent",Sg);/** + */const Sg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M15.4 10a4 4 0 1 0 0 4",key:"2eqtx8"}]],rt=e("BadgeCent",Sg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -513,212 +513,212 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 18V6",key:"zqpxq5"}]],rt=e("BadgeDollarSign",bg);/** + */const bg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 18V6",key:"zqpxq5"}]],kt=e("BadgeDollarSign",bg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $g=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M7 12h5",key:"gblrwe"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2",key:"1makmb"}]],kt=e("BadgeEuro",$g);/** + */const $g=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M7 12h5",key:"gblrwe"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2",key:"1makmb"}]],pt=e("BadgeEuro",$g);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ag=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["line",{x1:"12",x2:"12.01",y1:"17",y2:"17",key:"io3f8k"}]],pt=e("BadgeHelp",Ag);/** + */const Ag=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["line",{x1:"12",x2:"12.01",y1:"17",y2:"17",key:"io3f8k"}]],st=e("BadgeHelp",Ag);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Hg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M8 8h8",key:"1bis0t"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m13 17-5-1h1a4 4 0 0 0 0-8",key:"nu2bwa"}]],st=e("BadgeIndianRupee",Hg);/** + */const Hg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M8 8h8",key:"1bis0t"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m13 17-5-1h1a4 4 0 0 0 0-8",key:"nu2bwa"}]],lt=e("BadgeIndianRupee",Hg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"16",y2:"12",key:"1y1yb1"}],["line",{x1:"12",x2:"12.01",y1:"8",y2:"8",key:"110wyk"}]],lt=e("BadgeInfo",zg);/** + */const zg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"16",y2:"12",key:"1y1yb1"}],["line",{x1:"12",x2:"12.01",y1:"8",y2:"8",key:"110wyk"}]],ut=e("BadgeInfo",zg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Pg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m9 8 3 3v7",key:"17yadx"}],["path",{d:"m12 11 3-3",key:"p4cfq1"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M9 16h6",key:"8wimt3"}]],ut=e("BadgeJapaneseYen",Pg);/** + */const Pg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m9 8 3 3v7",key:"17yadx"}],["path",{d:"m12 11 3-3",key:"p4cfq1"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M9 16h6",key:"8wimt3"}]],Mt=e("BadgeJapaneseYen",Pg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]],Mt=e("BadgeMinus",jg);/** + */const jg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]],vt=e("BadgeMinus",jg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Vg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]],vt=e("BadgePercent",Vg);/** + */const Vg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]],mt=e("BadgePercent",Vg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Bg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"8",y2:"16",key:"10p56q"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]],mt=e("BadgePlus",Bg);/** + */const Bg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"12",x2:"12",y1:"8",y2:"16",key:"10p56q"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]],_t=e("BadgePlus",Bg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Fg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M8 12h4",key:"qz6y1c"}],["path",{d:"M10 16V9.5a2.5 2.5 0 0 1 5 0",key:"3mlbjk"}],["path",{d:"M8 16h7",key:"sbedsn"}]],_t=e("BadgePoundSterling",Fg);/** + */const Fg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M8 12h4",key:"qz6y1c"}],["path",{d:"M10 16V9.5a2.5 2.5 0 0 1 5 0",key:"3mlbjk"}],["path",{d:"M8 16h7",key:"sbedsn"}]],gt=e("BadgePoundSterling",Fg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Dg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M9 16h5",key:"1syiyw"}],["path",{d:"M9 12h5a2 2 0 1 0 0-4h-3v9",key:"1ge9c1"}]],gt=e("BadgeRussianRuble",Dg);/** + */const Dg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M9 16h5",key:"1syiyw"}],["path",{d:"M9 12h5a2 2 0 1 0 0-4h-3v9",key:"1ge9c1"}]],Lt=e("BadgeRussianRuble",Dg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Rg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M11 17V8h4",key:"1bfq6y"}],["path",{d:"M11 12h3",key:"2eqnfz"}],["path",{d:"M9 16h4",key:"1skf3a"}]],Lt=e("BadgeSwissFranc",Rg);/** + */const Rg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"M11 17V8h4",key:"1bfq6y"}],["path",{d:"M11 12h3",key:"2eqnfz"}],["path",{d:"M9 16h4",key:"1skf3a"}]],xt=e("BadgeSwissFranc",Rg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Tg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15",key:"f7djnv"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15",key:"1shsy8"}]],xt=e("BadgeX",Tg);/** + */const Tg=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15",key:"f7djnv"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15",key:"1shsy8"}]],wt=e("BadgeX",Tg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ug=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}]],wt=e("Badge",Ug);/** + */const Ug=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}]],ft=e("Badge",Ug);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Og=[["path",{d:"M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2",key:"4irg2o"}],["path",{d:"M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10",key:"14fcyx"}],["rect",{width:"13",height:"8",x:"8",y:"6",rx:"1",key:"o6oiis"}],["circle",{cx:"18",cy:"20",r:"2",key:"t9985n"}],["circle",{cx:"9",cy:"20",r:"2",key:"e5v82j"}]],ft=e("BaggageClaim",Og);/** + */const Og=[["path",{d:"M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2",key:"4irg2o"}],["path",{d:"M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10",key:"14fcyx"}],["rect",{width:"13",height:"8",x:"8",y:"6",rx:"1",key:"o6oiis"}],["circle",{cx:"18",cy:"20",r:"2",key:"t9985n"}],["circle",{cx:"9",cy:"20",r:"2",key:"e5v82j"}]],Ct=e("BaggageClaim",Og);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Zg=[["path",{d:"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5",key:"1cscit"}],["path",{d:"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z",key:"1y1nbv"}]],Ct=e("Banana",Zg);/** + */const Zg=[["path",{d:"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5",key:"1cscit"}],["path",{d:"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z",key:"1y1nbv"}]],It=e("Banana",Zg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Gg=[["path",{d:"M10 10.01h.01",key:"1e9xi7"}],["path",{d:"M10 14.01h.01",key:"ac23bv"}],["path",{d:"M14 10.01h.01",key:"2wfrvf"}],["path",{d:"M14 14.01h.01",key:"8tw8yn"}],["path",{d:"M18 6v11.5",key:"dkbidh"}],["path",{d:"M6 6v12",key:"vkc79e"}],["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2",key:"1wpnh2"}]],It=e("Bandage",Gg);/** + */const Gg=[["path",{d:"M10 10.01h.01",key:"1e9xi7"}],["path",{d:"M10 14.01h.01",key:"ac23bv"}],["path",{d:"M14 10.01h.01",key:"2wfrvf"}],["path",{d:"M14 14.01h.01",key:"8tw8yn"}],["path",{d:"M18 6v11.5",key:"dkbidh"}],["path",{d:"M6 6v12",key:"vkc79e"}],["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2",key:"1wpnh2"}]],Nt=e("Bandage",Gg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Wg=[["path",{d:"M3 5v14",key:"1nt18q"}],["path",{d:"M8 5v14",key:"1ybrkv"}],["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"M17 5v14",key:"ycjyhj"}],["path",{d:"M21 5v14",key:"nzette"}]],Nt=e("Barcode",Wg);/** + */const Wg=[["path",{d:"M3 5v14",key:"1nt18q"}],["path",{d:"M8 5v14",key:"1ybrkv"}],["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"M17 5v14",key:"ycjyhj"}],["path",{d:"M21 5v14",key:"nzette"}]],St=e("Barcode",Wg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Eg=[["path",{d:"M4 20h16",key:"14thso"}],["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}]],St=e("Baseline",Eg);/** + */const Eg=[["path",{d:"M4 20h16",key:"14thso"}],["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}]],qt=e("Baseline",Eg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Xg=[["path",{d:"M10 4 8 6",key:"1rru8s"}],["path",{d:"M17 19v2",key:"ts1sot"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M7 19v2",key:"12npes"}],["path",{d:"M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5",key:"14ym8i"}]],qt=e("Bath",Xg);/** + */const Xg=[["path",{d:"M10 4 8 6",key:"1rru8s"}],["path",{d:"M17 19v2",key:"ts1sot"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M7 19v2",key:"12npes"}],["path",{d:"M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5",key:"14ym8i"}]],bt=e("Bath",Xg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Kg=[["path",{d:"M15 7h1a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2",key:"1sdynx"}],["path",{d:"M6 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h1",key:"1gkd3k"}],["path",{d:"m11 7-3 5h4l-3 5",key:"b4a64w"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13",key:"4dh1rd"}]],bt=e("BatteryCharging",Kg);/** + */const Kg=[["path",{d:"M15 7h1a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2",key:"1sdynx"}],["path",{d:"M6 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h1",key:"1gkd3k"}],["path",{d:"m11 7-3 5h4l-3 5",key:"b4a64w"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13",key:"4dh1rd"}]],$t=e("BatteryCharging",Kg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Jg=[["rect",{width:"16",height:"10",x:"2",y:"7",rx:"2",ry:"2",key:"1w10f2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13",key:"4dh1rd"}],["line",{x1:"6",x2:"6",y1:"11",y2:"13",key:"1wd6dw"}],["line",{x1:"10",x2:"10",y1:"11",y2:"13",key:"haxvl5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"13",key:"c6fn6x"}]],$t=e("BatteryFull",Jg);/** + */const Jg=[["rect",{width:"16",height:"10",x:"2",y:"7",rx:"2",ry:"2",key:"1w10f2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13",key:"4dh1rd"}],["line",{x1:"6",x2:"6",y1:"11",y2:"13",key:"1wd6dw"}],["line",{x1:"10",x2:"10",y1:"11",y2:"13",key:"haxvl5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"13",key:"c6fn6x"}]],At=e("BatteryFull",Jg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Qg=[["rect",{width:"16",height:"10",x:"2",y:"7",rx:"2",ry:"2",key:"1w10f2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13",key:"4dh1rd"}],["line",{x1:"6",x2:"6",y1:"11",y2:"13",key:"1wd6dw"}]],At=e("BatteryLow",Qg);/** + */const Qg=[["rect",{width:"16",height:"10",x:"2",y:"7",rx:"2",ry:"2",key:"1w10f2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13",key:"4dh1rd"}],["line",{x1:"6",x2:"6",y1:"11",y2:"13",key:"1wd6dw"}]],Ht=e("BatteryLow",Qg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Yg=[["rect",{width:"16",height:"10",x:"2",y:"7",rx:"2",ry:"2",key:"1w10f2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13",key:"4dh1rd"}],["line",{x1:"6",x2:"6",y1:"11",y2:"13",key:"1wd6dw"}],["line",{x1:"10",x2:"10",y1:"11",y2:"13",key:"haxvl5"}]],Ht=e("BatteryMedium",Yg);/** + */const Yg=[["rect",{width:"16",height:"10",x:"2",y:"7",rx:"2",ry:"2",key:"1w10f2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13",key:"4dh1rd"}],["line",{x1:"6",x2:"6",y1:"11",y2:"13",key:"1wd6dw"}],["line",{x1:"10",x2:"10",y1:"11",y2:"13",key:"haxvl5"}]],zt=e("BatteryMedium",Yg);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eL=[["path",{d:"M10 9v6",key:"17i7lo"}],["path",{d:"M13.5 7H16a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2.5",key:"jzl4pj"}],["path",{d:"M22 11v2",key:"1wo06k"}],["path",{d:"M6.5 17H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2.5",key:"1ar5vp"}],["path",{d:"M7 12h6",key:"iekk3h"}]],zt=e("BatteryPlus",eL);/** + */const eL=[["path",{d:"M10 9v6",key:"17i7lo"}],["path",{d:"M13.5 7H16a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2.5",key:"jzl4pj"}],["path",{d:"M22 11v2",key:"1wo06k"}],["path",{d:"M6.5 17H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2.5",key:"1ar5vp"}],["path",{d:"M7 12h6",key:"iekk3h"}]],Pt=e("BatteryPlus",eL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aL=[["path",{d:"M10 17h.01",key:"nbq80n"}],["path",{d:"M10 7v6",key:"nne03l"}],["path",{d:"M14 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2",key:"1x5o8m"}],["path",{d:"M22 11v2",key:"1wo06k"}],["path",{d:"M6 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2",key:"1mdjgh"}]],Pt=e("BatteryWarning",aL);/** + */const aL=[["path",{d:"M10 17h.01",key:"nbq80n"}],["path",{d:"M10 7v6",key:"nne03l"}],["path",{d:"M14 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2",key:"1x5o8m"}],["path",{d:"M22 11v2",key:"1wo06k"}],["path",{d:"M6 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2",key:"1mdjgh"}]],jt=e("BatteryWarning",aL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oL=[["rect",{width:"16",height:"10",x:"2",y:"7",rx:"2",ry:"2",key:"1w10f2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13",key:"4dh1rd"}]],jt=e("Battery",oL);/** + */const oL=[["rect",{width:"16",height:"10",x:"2",y:"7",rx:"2",ry:"2",key:"1w10f2"}],["line",{x1:"22",x2:"22",y1:"11",y2:"13",key:"4dh1rd"}]],Vt=e("Battery",oL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cL=[["path",{d:"M4.5 3h15",key:"c7n0jr"}],["path",{d:"M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3",key:"m1uhx7"}],["path",{d:"M6 14h12",key:"4cwo0f"}]],Vt=e("Beaker",cL);/** + */const cL=[["path",{d:"M4.5 3h15",key:"c7n0jr"}],["path",{d:"M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3",key:"m1uhx7"}],["path",{d:"M6 14h12",key:"4cwo0f"}]],Bt=e("Beaker",cL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tL=[["path",{d:"M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1",key:"bq3udt"}],["path",{d:"M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66",key:"17ccse"}],["path",{d:"M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04",key:"18zqgq"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Bt=e("BeanOff",tL);/** + */const tL=[["path",{d:"M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1",key:"bq3udt"}],["path",{d:"M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66",key:"17ccse"}],["path",{d:"M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04",key:"18zqgq"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Ft=e("BeanOff",tL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nL=[["path",{d:"M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z",key:"1tvzk7"}],["path",{d:"M5.341 10.62a4 4 0 1 0 5.279-5.28",key:"2cyri2"}]],Ft=e("Bean",nL);/** + */const nL=[["path",{d:"M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z",key:"1tvzk7"}],["path",{d:"M5.341 10.62a4 4 0 1 0 5.279-5.28",key:"2cyri2"}]],Dt=e("Bean",nL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dL=[["path",{d:"M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8",key:"1k78r4"}],["path",{d:"M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4",key:"fb3tl2"}],["path",{d:"M12 4v6",key:"1dcgq2"}],["path",{d:"M2 18h20",key:"ajqnye"}]],Dt=e("BedDouble",dL);/** + */const dL=[["path",{d:"M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8",key:"1k78r4"}],["path",{d:"M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4",key:"fb3tl2"}],["path",{d:"M12 4v6",key:"1dcgq2"}],["path",{d:"M2 18h20",key:"ajqnye"}]],Rt=e("BedDouble",dL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iL=[["path",{d:"M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8",key:"1wm6mi"}],["path",{d:"M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4",key:"4k93s5"}],["path",{d:"M3 18h18",key:"1h113x"}]],Rt=e("BedSingle",iL);/** + */const iL=[["path",{d:"M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8",key:"1wm6mi"}],["path",{d:"M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4",key:"4k93s5"}],["path",{d:"M3 18h18",key:"1h113x"}]],Tt=e("BedSingle",iL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hL=[["path",{d:"M2 4v16",key:"vw9hq8"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10",key:"1dgv2r"}],["path",{d:"M2 17h20",key:"18nfp3"}],["path",{d:"M6 8v9",key:"1yriud"}]],Tt=e("Bed",hL);/** + */const hL=[["path",{d:"M2 4v16",key:"vw9hq8"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10",key:"1dgv2r"}],["path",{d:"M2 17h20",key:"18nfp3"}],["path",{d:"M6 8v9",key:"1yriud"}]],Ut=e("Bed",hL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yL=[["circle",{cx:"12.5",cy:"8.5",r:"2.5",key:"9738u8"}],["path",{d:"M12.5 2a6.5 6.5 0 0 0-6.22 4.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3A6.5 6.5 0 0 0 12.5 2Z",key:"o0f6za"}],["path",{d:"m18.5 6 2.19 4.5a6.48 6.48 0 0 1 .31 2 6.49 6.49 0 0 1-2.6 5.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5",key:"k7p6i0"}]],Ut=e("Beef",yL);/** + */const yL=[["circle",{cx:"12.5",cy:"8.5",r:"2.5",key:"9738u8"}],["path",{d:"M12.5 2a6.5 6.5 0 0 0-6.22 4.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3A6.5 6.5 0 0 0 12.5 2Z",key:"o0f6za"}],["path",{d:"m18.5 6 2.19 4.5a6.48 6.48 0 0 1 .31 2 6.49 6.49 0 0 1-2.6 5.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5",key:"k7p6i0"}]],Ot=e("Beef",yL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rL=[["path",{d:"M13 13v5",key:"igwfh0"}],["path",{d:"M17 11.47V8",key:"16yw0g"}],["path",{d:"M17 11h1a3 3 0 0 1 2.745 4.211",key:"1xbt65"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3",key:"c55o3e"}],["path",{d:"M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268",key:"1ydug7"}],["path",{d:"M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12",key:"q81o7q"}],["path",{d:"M9 14.6V18",key:"20ek98"}]],Ot=e("BeerOff",rL);/** + */const rL=[["path",{d:"M13 13v5",key:"igwfh0"}],["path",{d:"M17 11.47V8",key:"16yw0g"}],["path",{d:"M17 11h1a3 3 0 0 1 2.745 4.211",key:"1xbt65"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3",key:"c55o3e"}],["path",{d:"M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268",key:"1ydug7"}],["path",{d:"M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12",key:"q81o7q"}],["path",{d:"M9 14.6V18",key:"20ek98"}]],Zt=e("BeerOff",rL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kL=[["path",{d:"M17 11h1a3 3 0 0 1 0 6h-1",key:"1yp76v"}],["path",{d:"M9 12v6",key:"1u1cab"}],["path",{d:"M13 12v6",key:"1sugkk"}],["path",{d:"M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z",key:"1510fo"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8",key:"19jb7n"}]],Zt=e("Beer",kL);/** + */const kL=[["path",{d:"M17 11h1a3 3 0 0 1 0 6h-1",key:"1yp76v"}],["path",{d:"M9 12v6",key:"1u1cab"}],["path",{d:"M13 12v6",key:"1sugkk"}],["path",{d:"M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z",key:"1510fo"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8",key:"19jb7n"}]],Gt=e("Beer",kL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pL=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M13.916 2.314A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.74 7.327A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673 9 9 0 0 1-.585-.665",key:"1tip0g"}],["circle",{cx:"18",cy:"8",r:"3",key:"1g0gzu"}]],Gt=e("BellDot",pL);/** + */const pL=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M13.916 2.314A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.74 7.327A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673 9 9 0 0 1-.585-.665",key:"1tip0g"}],["circle",{cx:"18",cy:"8",r:"3",key:"1g0gzu"}]],Wt=e("BellDot",pL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sL=[["path",{d:"M18.8 4A6.3 8.7 0 0 1 20 9",key:"xve1fh"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["circle",{cx:"9",cy:"9",r:"7",key:"p2h5vp"}],["rect",{width:"10",height:"6",x:"4",y:"16",rx:"2",key:"17f3te"}],["path",{d:"M14 19c3 0 4.6-1.6 4.6-1.6",key:"n7odp6"}],["circle",{cx:"20",cy:"16",r:"2",key:"1v9bxh"}]],Wt=e("BellElectric",sL);/** + */const sL=[["path",{d:"M18.8 4A6.3 8.7 0 0 1 20 9",key:"xve1fh"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["circle",{cx:"9",cy:"9",r:"7",key:"p2h5vp"}],["rect",{width:"10",height:"6",x:"4",y:"16",rx:"2",key:"17f3te"}],["path",{d:"M14 19c3 0 4.6-1.6 4.6-1.6",key:"n7odp6"}],["circle",{cx:"20",cy:"16",r:"2",key:"1v9bxh"}]],Et=e("BellElectric",sL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lL=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M15 8h6",key:"8ybuxh"}],["path",{d:"M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12",key:"bdwj86"}]],Et=e("BellMinus",lL);/** + */const lL=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M15 8h6",key:"8ybuxh"}],["path",{d:"M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12",key:"bdwj86"}]],Xt=e("BellMinus",lL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uL=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742",key:"178tsu"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05",key:"1hqiys"}]],Xt=e("BellOff",uL);/** + */const uL=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742",key:"178tsu"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05",key:"1hqiys"}]],Kt=e("BellOff",uL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ML=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M15 8h6",key:"8ybuxh"}],["path",{d:"M18 5v6",key:"g5ayrv"}],["path",{d:"M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332",key:"1abcvy"}]],Kt=e("BellPlus",ML);/** + */const ML=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M15 8h6",key:"8ybuxh"}],["path",{d:"M18 5v6",key:"g5ayrv"}],["path",{d:"M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332",key:"1abcvy"}]],Jt=e("BellPlus",ML);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vL=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M22 8c0-2.3-.8-4.3-2-6",key:"5bb3ad"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",key:"11g9vi"}],["path",{d:"M4 2C2.8 3.7 2 5.7 2 8",key:"tap9e0"}]],Jt=e("BellRing",vL);/** + */const vL=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M22 8c0-2.3-.8-4.3-2-6",key:"5bb3ad"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",key:"11g9vi"}],["path",{d:"M4 2C2.8 3.7 2 5.7 2 8",key:"tap9e0"}]],Qt=e("BellRing",vL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -733,117 +733,117 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gL=[["rect",{width:"7",height:"13",x:"3",y:"3",rx:"1",key:"1fdu0f"}],["path",{d:"m9 22 3-3 3 3",key:"17z65a"}],["rect",{width:"7",height:"13",x:"14",y:"3",rx:"1",key:"1squn4"}]],Qt=e("BetweenVerticalEnd",gL);/** + */const gL=[["rect",{width:"7",height:"13",x:"3",y:"3",rx:"1",key:"1fdu0f"}],["path",{d:"m9 22 3-3 3 3",key:"17z65a"}],["rect",{width:"7",height:"13",x:"14",y:"3",rx:"1",key:"1squn4"}]],Yt=e("BetweenVerticalEnd",gL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LL=[["rect",{width:"7",height:"13",x:"3",y:"8",rx:"1",key:"1fjrkv"}],["path",{d:"m15 2-3 3-3-3",key:"1uh6eb"}],["rect",{width:"7",height:"13",x:"14",y:"8",rx:"1",key:"w3fjg8"}]],Yt=e("BetweenVerticalStart",LL);/** + */const LL=[["rect",{width:"7",height:"13",x:"3",y:"8",rx:"1",key:"1fjrkv"}],["path",{d:"m15 2-3 3-3-3",key:"1uh6eb"}],["rect",{width:"7",height:"13",x:"14",y:"8",rx:"1",key:"w3fjg8"}]],en=e("BetweenVerticalStart",LL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xL=[["path",{d:"M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1",key:"1pmlyh"}],["path",{d:"M15 14a5 5 0 0 0-7.584 2",key:"5rb254"}],["path",{d:"M9.964 6.825C8.019 7.977 9.5 13 8 15",key:"kbvsx9"}]],en=e("BicepsFlexed",xL);/** + */const xL=[["path",{d:"M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1",key:"1pmlyh"}],["path",{d:"M15 14a5 5 0 0 0-7.584 2",key:"5rb254"}],["path",{d:"M9.964 6.825C8.019 7.977 9.5 13 8 15",key:"kbvsx9"}]],an=e("BicepsFlexed",xL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wL=[["circle",{cx:"18.5",cy:"17.5",r:"3.5",key:"15x4ox"}],["circle",{cx:"5.5",cy:"17.5",r:"3.5",key:"1noe27"}],["circle",{cx:"15",cy:"5",r:"1",key:"19l28e"}],["path",{d:"M12 17.5V14l-3-3 4-3 2 3h2",key:"1npguv"}]],an=e("Bike",wL);/** + */const wL=[["circle",{cx:"18.5",cy:"17.5",r:"3.5",key:"15x4ox"}],["circle",{cx:"5.5",cy:"17.5",r:"3.5",key:"1noe27"}],["circle",{cx:"15",cy:"5",r:"1",key:"19l28e"}],["path",{d:"M12 17.5V14l-3-3 4-3 2 3h2",key:"1npguv"}]],on=e("Bike",wL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fL=[["rect",{x:"14",y:"14",width:"4",height:"6",rx:"2",key:"p02svl"}],["rect",{x:"6",y:"4",width:"4",height:"6",rx:"2",key:"xm4xkj"}],["path",{d:"M6 20h4",key:"1i6q5t"}],["path",{d:"M14 10h4",key:"ru81e7"}],["path",{d:"M6 14h2v6",key:"16z9wg"}],["path",{d:"M14 4h2v6",key:"1idq9u"}]],on=e("Binary",fL);/** + */const fL=[["rect",{x:"14",y:"14",width:"4",height:"6",rx:"2",key:"p02svl"}],["rect",{x:"6",y:"4",width:"4",height:"6",rx:"2",key:"xm4xkj"}],["path",{d:"M6 20h4",key:"1i6q5t"}],["path",{d:"M14 10h4",key:"ru81e7"}],["path",{d:"M6 14h2v6",key:"16z9wg"}],["path",{d:"M14 4h2v6",key:"1idq9u"}]],cn=e("Binary",fL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CL=[["path",{d:"M10 10h4",key:"tcdvrf"}],["path",{d:"M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3",key:"3apit1"}],["path",{d:"M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z",key:"rhpgnw"}],["path",{d:"M 22 16 L 2 16",key:"14lkq7"}],["path",{d:"M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z",key:"104b3k"}],["path",{d:"M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3",key:"14fczp"}]],cn=e("Binoculars",CL);/** + */const CL=[["path",{d:"M10 10h4",key:"tcdvrf"}],["path",{d:"M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3",key:"3apit1"}],["path",{d:"M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z",key:"rhpgnw"}],["path",{d:"M 22 16 L 2 16",key:"14lkq7"}],["path",{d:"M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z",key:"104b3k"}],["path",{d:"M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3",key:"14fczp"}]],tn=e("Binoculars",CL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IL=[["circle",{cx:"12",cy:"11.9",r:"2",key:"e8h31w"}],["path",{d:"M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6",key:"17bolr"}],["path",{d:"m8.9 10.1 1.4.8",key:"15ezny"}],["path",{d:"M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5",key:"wtwa5u"}],["path",{d:"m15.1 10.1-1.4.8",key:"1r0b28"}],["path",{d:"M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2",key:"m7qszh"}],["path",{d:"M12 13.9v1.6",key:"zfyyim"}],["path",{d:"M13.5 5.4c-1-.2-2-.2-3 0",key:"1bi9q0"}],["path",{d:"M17 16.4c.7-.7 1.2-1.6 1.5-2.5",key:"1rhjqw"}],["path",{d:"M5.5 13.9c.3.9.8 1.8 1.5 2.5",key:"8gsud3"}]],tn=e("Biohazard",IL);/** + */const IL=[["circle",{cx:"12",cy:"11.9",r:"2",key:"e8h31w"}],["path",{d:"M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6",key:"17bolr"}],["path",{d:"m8.9 10.1 1.4.8",key:"15ezny"}],["path",{d:"M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5",key:"wtwa5u"}],["path",{d:"m15.1 10.1-1.4.8",key:"1r0b28"}],["path",{d:"M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2",key:"m7qszh"}],["path",{d:"M12 13.9v1.6",key:"zfyyim"}],["path",{d:"M13.5 5.4c-1-.2-2-.2-3 0",key:"1bi9q0"}],["path",{d:"M17 16.4c.7-.7 1.2-1.6 1.5-2.5",key:"1rhjqw"}],["path",{d:"M5.5 13.9c.3.9.8 1.8 1.5 2.5",key:"8gsud3"}]],nn=e("Biohazard",IL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NL=[["path",{d:"M16 7h.01",key:"1kdx03"}],["path",{d:"M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20",key:"oj1oa8"}],["path",{d:"m20 7 2 .5-2 .5",key:"12nv4d"}],["path",{d:"M10 18v3",key:"1yea0a"}],["path",{d:"M14 17.75V21",key:"1pymcb"}],["path",{d:"M7 18a6 6 0 0 0 3.84-10.61",key:"1npnn0"}]],nn=e("Bird",NL);/** + */const NL=[["path",{d:"M16 7h.01",key:"1kdx03"}],["path",{d:"M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20",key:"oj1oa8"}],["path",{d:"m20 7 2 .5-2 .5",key:"12nv4d"}],["path",{d:"M10 18v3",key:"1yea0a"}],["path",{d:"M14 17.75V21",key:"1pymcb"}],["path",{d:"M7 18a6 6 0 0 0 3.84-10.61",key:"1npnn0"}]],dn=e("Bird",NL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SL=[["path",{d:"M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727",key:"yr8idg"}]],dn=e("Bitcoin",SL);/** + */const SL=[["path",{d:"M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727",key:"yr8idg"}]],hn=e("Bitcoin",SL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qL=[["circle",{cx:"9",cy:"9",r:"7",key:"p2h5vp"}],["circle",{cx:"15",cy:"15",r:"7",key:"19ennj"}]],hn=e("Blend",qL);/** + */const qL=[["circle",{cx:"9",cy:"9",r:"7",key:"p2h5vp"}],["circle",{cx:"15",cy:"15",r:"7",key:"19ennj"}]],yn=e("Blend",qL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bL=[["path",{d:"M3 3h18",key:"o7r712"}],["path",{d:"M20 7H8",key:"gd2fo2"}],["path",{d:"M20 11H8",key:"1ynp89"}],["path",{d:"M10 19h10",key:"19hjk5"}],["path",{d:"M8 15h12",key:"1yqzne"}],["path",{d:"M4 3v14",key:"fggqzn"}],["circle",{cx:"4",cy:"19",r:"2",key:"p3m9r0"}]],yn=e("Blinds",bL);/** + */const bL=[["path",{d:"M3 3h18",key:"o7r712"}],["path",{d:"M20 7H8",key:"gd2fo2"}],["path",{d:"M20 11H8",key:"1ynp89"}],["path",{d:"M10 19h10",key:"19hjk5"}],["path",{d:"M8 15h12",key:"1yqzne"}],["path",{d:"M4 3v14",key:"fggqzn"}],["circle",{cx:"4",cy:"19",r:"2",key:"p3m9r0"}]],rn=e("Blinds",bL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $L=[["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["path",{d:"M10 21V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1H3",key:"1fpvtg"}]],rn=e("Blocks",$L);/** + */const $L=[["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["path",{d:"M10 21V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1H3",key:"1fpvtg"}]],kn=e("Blocks",$L);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AL=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}],["line",{x1:"18",x2:"21",y1:"12",y2:"12",key:"1rsjjs"}],["line",{x1:"3",x2:"6",y1:"12",y2:"12",key:"11yl8c"}]],kn=e("BluetoothConnected",AL);/** + */const AL=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}],["line",{x1:"18",x2:"21",y1:"12",y2:"12",key:"1rsjjs"}],["line",{x1:"3",x2:"6",y1:"12",y2:"12",key:"11yl8c"}]],pn=e("BluetoothConnected",AL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HL=[["path",{d:"m17 17-5 5V12l-5 5",key:"v5aci6"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M14.5 9.5 17 7l-5-5v4.5",key:"1kddfz"}]],pn=e("BluetoothOff",HL);/** + */const HL=[["path",{d:"m17 17-5 5V12l-5 5",key:"v5aci6"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M14.5 9.5 17 7l-5-5v4.5",key:"1kddfz"}]],sn=e("BluetoothOff",HL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zL=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}],["path",{d:"M20.83 14.83a4 4 0 0 0 0-5.66",key:"k8tn1j"}],["path",{d:"M18 12h.01",key:"yjnet6"}]],sn=e("BluetoothSearching",zL);/** + */const zL=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}],["path",{d:"M20.83 14.83a4 4 0 0 0 0-5.66",key:"k8tn1j"}],["path",{d:"M18 12h.01",key:"yjnet6"}]],ln=e("BluetoothSearching",zL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PL=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}]],ln=e("Bluetooth",PL);/** + */const PL=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17",key:"1q5490"}]],un=e("Bluetooth",PL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jL=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]],un=e("Bolt",jL);/** + */const jL=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]],Mn=e("Bolt",jL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VL=[["circle",{cx:"11",cy:"13",r:"9",key:"hd149"}],["path",{d:"M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95",key:"jp4j1b"}],["path",{d:"m22 2-1.5 1.5",key:"ay92ug"}]],Mn=e("Bomb",VL);/** + */const VL=[["circle",{cx:"11",cy:"13",r:"9",key:"hd149"}],["path",{d:"M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95",key:"jp4j1b"}],["path",{d:"m22 2-1.5 1.5",key:"ay92ug"}]],vn=e("Bomb",VL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BL=[["path",{d:"M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z",key:"w610uw"}]],vn=e("Bone",BL);/** + */const BL=[["path",{d:"M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z",key:"w610uw"}]],mn=e("Bone",BL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FL=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m8 13 4-7 4 7",key:"4rari8"}],["path",{d:"M9.1 11h5.7",key:"1gkovt"}]],mn=e("BookA",FL);/** + */const FL=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m8 13 4-7 4 7",key:"4rari8"}],["path",{d:"M9.1 11h5.7",key:"1gkovt"}]],_n=e("BookA",FL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DL=[["path",{d:"M12 6v7",key:"1f6ttz"}],["path",{d:"M16 8v3",key:"gejaml"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 8v3",key:"1qzp49"}]],_n=e("BookAudio",DL);/** + */const DL=[["path",{d:"M12 6v7",key:"1f6ttz"}],["path",{d:"M16 8v3",key:"gejaml"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 8v3",key:"1qzp49"}]],gn=e("BookAudio",DL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RL=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 9.5 2 2 4-4",key:"1dth82"}]],gn=e("BookCheck",RL);/** + */const RL=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 9.5 2 2 4-4",key:"1dth82"}]],Ln=e("BookCheck",RL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TL=[["path",{d:"M2 16V4a2 2 0 0 1 2-2h11",key:"spzkk5"}],["path",{d:"M22 18H11a2 2 0 1 0 0 4h10.5a.5.5 0 0 0 .5-.5v-15a.5.5 0 0 0-.5-.5H11a2 2 0 0 0-2 2v12",key:"1wz07i"}],["path",{d:"M5 14H4a2 2 0 1 0 0 4h1",key:"16gqf9"}]],Ln=e("BookCopy",TL);/** + */const TL=[["path",{d:"M2 16V4a2 2 0 0 1 2-2h11",key:"spzkk5"}],["path",{d:"M22 18H11a2 2 0 1 0 0 4h10.5a.5.5 0 0 0 .5-.5v-15a.5.5 0 0 0-.5-.5H11a2 2 0 0 0-2 2v12",key:"1wz07i"}],["path",{d:"M5 14H4a2 2 0 1 0 0 4h1",key:"16gqf9"}]],xn=e("BookCopy",TL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -853,137 +853,137 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OL=[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 10 3 3 3-3",key:"zt5b4y"}]],xn=e("BookDown",OL);/** + */const OL=[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 10 3 3 3-3",key:"zt5b4y"}]],wn=e("BookDown",OL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZL=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 12v-2a4 4 0 0 1 8 0v2",key:"1vsqkj"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}]],wn=e("BookHeadphones",ZL);/** + */const ZL=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 12v-2a4 4 0 0 1 8 0v2",key:"1vsqkj"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}]],fn=e("BookHeadphones",ZL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GL=[["path",{d:"M16 8.2A2.22 2.22 0 0 0 13.8 6c-.8 0-1.4.3-1.8.9-.4-.6-1-.9-1.8-.9A2.22 2.22 0 0 0 8 8.2c0 .6.3 1.2.7 1.6A226.652 226.652 0 0 0 12 13a404 404 0 0 0 3.3-3.1 2.413 2.413 0 0 0 .7-1.7",key:"1t75a8"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]],fn=e("BookHeart",GL);/** + */const GL=[["path",{d:"M16 8.2A2.22 2.22 0 0 0 13.8 6c-.8 0-1.4.3-1.8.9-.4-.6-1-.9-1.8-.9A2.22 2.22 0 0 0 8 8.2c0 .6.3 1.2.7 1.6A226.652 226.652 0 0 0 12 13a404 404 0 0 0 3.3-3.1 2.413 2.413 0 0 0 .7-1.7",key:"1t75a8"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]],Cn=e("BookHeart",GL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WL=[["path",{d:"m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17",key:"q6ojf0"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["circle",{cx:"10",cy:"8",r:"2",key:"2qkj4p"}]],Cn=e("BookImage",WL);/** + */const WL=[["path",{d:"m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17",key:"q6ojf0"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["circle",{cx:"10",cy:"8",r:"2",key:"2qkj4p"}]],In=e("BookImage",WL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const EL=[["path",{d:"m19 3 1 1",key:"ze14oc"}],["path",{d:"m20 2-4.5 4.5",key:"1sppr8"}],["path",{d:"M20 8v13a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"1ocbpn"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H14",key:"1gfsgw"}],["circle",{cx:"14",cy:"8",r:"2",key:"u49eql"}]],In=e("BookKey",EL);/** + */const EL=[["path",{d:"m19 3 1 1",key:"ze14oc"}],["path",{d:"m20 2-4.5 4.5",key:"1sppr8"}],["path",{d:"M20 8v13a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"1ocbpn"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H14",key:"1gfsgw"}],["circle",{cx:"14",cy:"8",r:"2",key:"u49eql"}]],Nn=e("BookKey",EL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XL=[["path",{d:"M18 6V4a2 2 0 1 0-4 0v2",key:"1aquzs"}],["path",{d:"M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"1rkj32"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10",key:"18wgow"}],["rect",{x:"12",y:"6",width:"8",height:"5",rx:"1",key:"73l30o"}]],Nn=e("BookLock",XL);/** + */const XL=[["path",{d:"M18 6V4a2 2 0 1 0-4 0v2",key:"1aquzs"}],["path",{d:"M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"1rkj32"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10",key:"18wgow"}],["rect",{x:"12",y:"6",width:"8",height:"5",rx:"1",key:"73l30o"}]],Sn=e("BookLock",XL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KL=[["path",{d:"M10 2v8l3-3 3 3V2",key:"sqw3rj"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]],Sn=e("BookMarked",KL);/** + */const KL=[["path",{d:"M10 2v8l3-3 3 3V2",key:"sqw3rj"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]],qn=e("BookMarked",KL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JL=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],qn=e("BookMinus",JL);/** + */const JL=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],bn=e("BookMinus",JL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QL=[["path",{d:"M12 21V7",key:"gj6g52"}],["path",{d:"m16 12 2 2 4-4",key:"mdajum"}],["path",{d:"M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3",key:"8arnkb"}]],bn=e("BookOpenCheck",QL);/** + */const QL=[["path",{d:"M12 21V7",key:"gj6g52"}],["path",{d:"m16 12 2 2 4-4",key:"mdajum"}],["path",{d:"M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3",key:"8arnkb"}]],$n=e("BookOpenCheck",QL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YL=[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M16 12h2",key:"7q9ll5"}],["path",{d:"M16 8h2",key:"msurwy"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}],["path",{d:"M6 12h2",key:"32wvfc"}],["path",{d:"M6 8h2",key:"30oboj"}]],$n=e("BookOpenText",YL);/** + */const YL=[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M16 12h2",key:"7q9ll5"}],["path",{d:"M16 8h2",key:"msurwy"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}],["path",{d:"M6 12h2",key:"32wvfc"}],["path",{d:"M6 8h2",key:"30oboj"}]],An=e("BookOpenText",YL);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ex=[["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],An=e("BookPlus",ex);/** + */const ex=[["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],Hn=e("BookPlus",ex);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ax=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 11h8",key:"vwpz6n"}],["path",{d:"M8 7h6",key:"1f0q6e"}]],Hn=e("BookText",ax);/** + */const ax=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"M8 11h8",key:"vwpz6n"}],["path",{d:"M8 7h6",key:"1f0q6e"}]],zn=e("BookText",ax);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ox=[["path",{d:"M10 13h4",key:"ytezjc"}],["path",{d:"M12 6v7",key:"1f6ttz"}],["path",{d:"M16 8V6H8v2",key:"x8j6u4"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]],zn=e("BookType",ox);/** + */const ox=[["path",{d:"M10 13h4",key:"ytezjc"}],["path",{d:"M12 6v7",key:"1f6ttz"}],["path",{d:"M16 8V6H8v2",key:"x8j6u4"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}]],Pn=e("BookType",ox);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cx=[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"161d7n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2",key:"1lorq7"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}],["path",{d:"m9 5 3-3 3 3",key:"l8vdw6"}]],Pn=e("BookUp2",cx);/** + */const cx=[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"161d7n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2",key:"1lorq7"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}],["path",{d:"m9 5 3-3 3 3",key:"l8vdw6"}]],jn=e("BookUp2",cx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tx=[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}]],jn=e("BookUp",tx);/** + */const tx=[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}]],Vn=e("BookUp",tx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nx=[["path",{d:"M15 13a3 3 0 1 0-6 0",key:"10j68g"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}]],Vn=e("BookUser",nx);/** + */const nx=[["path",{d:"M15 13a3 3 0 1 0-6 0",key:"10j68g"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}]],Bn=e("BookUser",nx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dx=[["path",{d:"m14.5 7-5 5",key:"dy991v"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9.5 7 5 5",key:"s45iea"}]],Bn=e("BookX",dx);/** + */const dx=[["path",{d:"m14.5 7-5 5",key:"dy991v"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20",key:"k3hazp"}],["path",{d:"m9.5 7 5 5",key:"s45iea"}]],Fn=e("BookX",dx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ix=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z",key:"169p4p"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}]],Fn=e("BookmarkCheck",ix);/** + */const ix=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z",key:"169p4p"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}]],Dn=e("BookmarkCheck",ix);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hx=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z",key:"1fy3hk"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10",key:"1gty7f"}]],Dn=e("BookmarkMinus",hx);/** + */const hx=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z",key:"1fy3hk"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10",key:"1gty7f"}]],Rn=e("BookmarkMinus",hx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yx=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z",key:"1fy3hk"}],["line",{x1:"12",x2:"12",y1:"7",y2:"13",key:"1cppfj"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10",key:"1gty7f"}]],Rn=e("BookmarkPlus",yx);/** + */const yx=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z",key:"1fy3hk"}],["line",{x1:"12",x2:"12",y1:"7",y2:"13",key:"1cppfj"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10",key:"1gty7f"}]],Tn=e("BookmarkPlus",yx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rx=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z",key:"169p4p"}],["path",{d:"m14.5 7.5-5 5",key:"3lb6iw"}],["path",{d:"m9.5 7.5 5 5",key:"ko136h"}]],Tn=e("BookmarkX",rx);/** + */const rx=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z",key:"169p4p"}],["path",{d:"m14.5 7.5-5 5",key:"3lb6iw"}],["path",{d:"m9.5 7.5 5 5",key:"ko136h"}]],Un=e("BookmarkX",rx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kx=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z",key:"1fy3hk"}]],Un=e("Bookmark",kx);/** + */const kx=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z",key:"1fy3hk"}]],On=e("Bookmark",kx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const px=[["path",{d:"M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4",key:"vvzvr1"}],["path",{d:"M8 8v1",key:"xcqmfk"}],["path",{d:"M12 8v1",key:"1rj8u4"}],["path",{d:"M16 8v1",key:"1q12zr"}],["rect",{width:"20",height:"12",x:"2",y:"9",rx:"2",key:"igpb89"}],["circle",{cx:"8",cy:"15",r:"2",key:"fa4a8s"}],["circle",{cx:"16",cy:"15",r:"2",key:"14c3ya"}]],On=e("BoomBox",px);/** + */const px=[["path",{d:"M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4",key:"vvzvr1"}],["path",{d:"M8 8v1",key:"xcqmfk"}],["path",{d:"M12 8v1",key:"1rj8u4"}],["path",{d:"M16 8v1",key:"1q12zr"}],["rect",{width:"20",height:"12",x:"2",y:"9",rx:"2",key:"igpb89"}],["circle",{cx:"8",cy:"15",r:"2",key:"fa4a8s"}],["circle",{cx:"16",cy:"15",r:"2",key:"14c3ya"}]],Zn=e("BoomBox",px);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sx=[["path",{d:"M12 6V2H8",key:"1155em"}],["path",{d:"m8 18-4 4V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2Z",key:"w2lp3e"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M9 11v2",key:"1ueba0"}],["path",{d:"M15 11v2",key:"i11awn"}],["path",{d:"M20 12h2",key:"1q8mjw"}]],Zn=e("BotMessageSquare",sx);/** + */const sx=[["path",{d:"M12 6V2H8",key:"1155em"}],["path",{d:"m8 18-4 4V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2Z",key:"w2lp3e"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M9 11v2",key:"1ueba0"}],["path",{d:"M15 11v2",key:"i11awn"}],["path",{d:"M20 12h2",key:"1q8mjw"}]],Gn=e("BotMessageSquare",sx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lx=[["path",{d:"M13.67 8H18a2 2 0 0 1 2 2v4.33",key:"7az073"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}],["path",{d:"M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586",key:"s09a7a"}],["path",{d:"M9 13v2",key:"rq6x2g"}],["path",{d:"M9.67 4H12v2.33",key:"110xot"}]],Gn=e("BotOff",lx);/** + */const lx=[["path",{d:"M13.67 8H18a2 2 0 0 1 2 2v4.33",key:"7az073"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}],["path",{d:"M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586",key:"s09a7a"}],["path",{d:"M9 13v2",key:"rq6x2g"}],["path",{d:"M9.67 4H12v2.33",key:"110xot"}]],Wn=e("BotOff",lx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ux=[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]],Wn=e("Bot",ux);/** + */const ux=[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]],En=e("Bot",ux);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Mx=[["path",{d:"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z",key:"hh9hay"}],["path",{d:"m3.3 7 8.7 5 8.7-5",key:"g66t2b"}],["path",{d:"M12 22V12",key:"d0xqtd"}]],En=e("Box",Mx);/** + */const Mx=[["path",{d:"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z",key:"hh9hay"}],["path",{d:"m3.3 7 8.7 5 8.7-5",key:"g66t2b"}],["path",{d:"M12 22V12",key:"d0xqtd"}]],Xn=e("Box",Mx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -993,212 +993,212 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mx=[["path",{d:"M16 3h3v18h-3",key:"1yor1f"}],["path",{d:"M8 21H5V3h3",key:"1qrfwo"}]],Xn=e("Brackets",mx);/** + */const mx=[["path",{d:"M16 3h3v18h-3",key:"1yor1f"}],["path",{d:"M8 21H5V3h3",key:"1qrfwo"}]],Kn=e("Brackets",mx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _x=[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",key:"l5xja"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4",key:"10igwf"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M12 13h4",key:"1ku699"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1",key:"105ag5"}],["path",{d:"M12 8h8",key:"1lhi5i"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2",key:"u6izg6"}],["circle",{cx:"16",cy:"13",r:".5",key:"ry7gng"}],["circle",{cx:"18",cy:"3",r:".5",key:"1aiba7"}],["circle",{cx:"20",cy:"21",r:".5",key:"yhc1fs"}],["circle",{cx:"20",cy:"8",r:".5",key:"1e43v0"}]],Kn=e("BrainCircuit",_x);/** + */const _x=[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",key:"l5xja"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4",key:"10igwf"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M12 13h4",key:"1ku699"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1",key:"105ag5"}],["path",{d:"M12 8h8",key:"1lhi5i"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2",key:"u6izg6"}],["circle",{cx:"16",cy:"13",r:".5",key:"ry7gng"}],["circle",{cx:"18",cy:"3",r:".5",key:"1aiba7"}],["circle",{cx:"20",cy:"21",r:".5",key:"yhc1fs"}],["circle",{cx:"20",cy:"8",r:".5",key:"1e43v0"}]],Jn=e("BrainCircuit",_x);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gx=[["path",{d:"M12 5a3 3 0 1 0-5.997.142 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588 4 4 0 0 0 7.636 2.106 3.2 3.2 0 0 0 .164-.546c.028-.13.306-.13.335 0a3.2 3.2 0 0 0 .163.546 4 4 0 0 0 7.636-2.106 4 4 0 0 0 .556-6.588 4 4 0 0 0-2.526-5.77A3 3 0 1 0 12 5",key:"1kgmhc"}],["path",{d:"M17.599 6.5a3 3 0 0 0 .399-1.375",key:"tmeiqw"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M19.938 10.5a4 4 0 0 1 .585.396",key:"1qfode"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M19.967 17.484A4 4 0 0 1 18 18",key:"159ez6"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"m15.7 10.4-.9.4",key:"ayzo6p"}],["path",{d:"m9.2 13.2-.9.4",key:"1uzb3g"}],["path",{d:"m13.6 15.7-.4-.9",key:"11ifqf"}],["path",{d:"m10.8 9.2-.4-.9",key:"1pmk2v"}],["path",{d:"m15.7 13.5-.9-.4",key:"7ng02m"}],["path",{d:"m9.2 10.9-.9-.4",key:"1x66zd"}],["path",{d:"m10.5 15.7.4-.9",key:"3js94g"}],["path",{d:"m13.1 9.2.4-.9",key:"18n7mc"}]],Jn=e("BrainCog",gx);/** + */const gx=[["path",{d:"M12 5a3 3 0 1 0-5.997.142 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588 4 4 0 0 0 7.636 2.106 3.2 3.2 0 0 0 .164-.546c.028-.13.306-.13.335 0a3.2 3.2 0 0 0 .163.546 4 4 0 0 0 7.636-2.106 4 4 0 0 0 .556-6.588 4 4 0 0 0-2.526-5.77A3 3 0 1 0 12 5",key:"1kgmhc"}],["path",{d:"M17.599 6.5a3 3 0 0 0 .399-1.375",key:"tmeiqw"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M19.938 10.5a4 4 0 0 1 .585.396",key:"1qfode"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M19.967 17.484A4 4 0 0 1 18 18",key:"159ez6"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"m15.7 10.4-.9.4",key:"ayzo6p"}],["path",{d:"m9.2 13.2-.9.4",key:"1uzb3g"}],["path",{d:"m13.6 15.7-.4-.9",key:"11ifqf"}],["path",{d:"m10.8 9.2-.4-.9",key:"1pmk2v"}],["path",{d:"m15.7 13.5-.9-.4",key:"7ng02m"}],["path",{d:"m9.2 10.9-.9-.4",key:"1x66zd"}],["path",{d:"m10.5 15.7.4-.9",key:"3js94g"}],["path",{d:"m13.1 9.2.4-.9",key:"18n7mc"}]],Qn=e("BrainCog",gx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Lx=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 9v6",key:"199k2o"}],["path",{d:"M16 15v6",key:"8rj2es"}],["path",{d:"M16 3v6",key:"1j6rpj"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M8 15v6",key:"1stoo3"}],["path",{d:"M8 3v6",key:"vlvjmk"}]],Qn=e("BrickWall",Lx);/** + */const Lx=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 9v6",key:"199k2o"}],["path",{d:"M16 15v6",key:"8rj2es"}],["path",{d:"M16 3v6",key:"1j6rpj"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M8 15v6",key:"1stoo3"}],["path",{d:"M8 3v6",key:"vlvjmk"}]],Yn=e("BrickWall",Lx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xx=[["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2",key:"1ksdt3"}],["path",{d:"M22 13a18.15 18.15 0 0 1-20 0",key:"12hx5q"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]],Yn=e("BriefcaseBusiness",xx);/** + */const xx=[["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2",key:"1ksdt3"}],["path",{d:"M22 13a18.15 18.15 0 0 1-20 0",key:"12hx5q"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]],ed=e("BriefcaseBusiness",xx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wx=[["path",{d:"M10 20v2",key:"1n8e1g"}],["path",{d:"M14 20v2",key:"1lq872"}],["path",{d:"M18 20v2",key:"10uadw"}],["path",{d:"M21 20H3",key:"kdqkdp"}],["path",{d:"M6 20v2",key:"a9bc87"}],["path",{d:"M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12",key:"17n9tx"}],["rect",{x:"4",y:"6",width:"16",height:"10",rx:"2",key:"1097i5"}]],ed=e("BriefcaseConveyorBelt",wx);/** + */const wx=[["path",{d:"M10 20v2",key:"1n8e1g"}],["path",{d:"M14 20v2",key:"1lq872"}],["path",{d:"M18 20v2",key:"10uadw"}],["path",{d:"M21 20H3",key:"kdqkdp"}],["path",{d:"M6 20v2",key:"a9bc87"}],["path",{d:"M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12",key:"17n9tx"}],["rect",{x:"4",y:"6",width:"16",height:"10",rx:"2",key:"1097i5"}]],ad=e("BriefcaseConveyorBelt",wx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fx=[["path",{d:"M12 11v4",key:"a6ujw6"}],["path",{d:"M14 13h-4",key:"1pl8zg"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2",key:"1ksdt3"}],["path",{d:"M18 6v14",key:"1mu4gy"}],["path",{d:"M6 6v14",key:"1s15cj"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]],ad=e("BriefcaseMedical",fx);/** + */const fx=[["path",{d:"M12 11v4",key:"a6ujw6"}],["path",{d:"M14 13h-4",key:"1pl8zg"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2",key:"1ksdt3"}],["path",{d:"M18 6v14",key:"1mu4gy"}],["path",{d:"M6 6v14",key:"1s15cj"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]],od=e("BriefcaseMedical",fx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Cx=[["rect",{x:"8",y:"8",width:"8",height:"8",rx:"2",key:"yj20xf"}],["path",{d:"M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2",key:"1ltk23"}],["path",{d:"M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2",key:"1q24h9"}]],od=e("BringToFront",Cx);/** + */const Cx=[["rect",{x:"8",y:"8",width:"8",height:"8",rx:"2",key:"yj20xf"}],["path",{d:"M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2",key:"1ltk23"}],["path",{d:"M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2",key:"1q24h9"}]],cd=e("BringToFront",Cx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ix=[["path",{d:"m9.06 11.9 8.07-8.06a2.85 2.85 0 1 1 4.03 4.03l-8.06 8.08",key:"1styjt"}],["path",{d:"M7.07 14.94c-1.66 0-3 1.35-3 3.02 0 1.33-2.5 1.52-2 2.02 1.08 1.1 2.49 2.02 4 2.02 2.2 0 4-1.8 4-4.04a3.01 3.01 0 0 0-3-3.02z",key:"z0l1mu"}]],cd=e("Brush",Ix);/** + */const Ix=[["path",{d:"m9.06 11.9 8.07-8.06a2.85 2.85 0 1 1 4.03 4.03l-8.06 8.08",key:"1styjt"}],["path",{d:"M7.07 14.94c-1.66 0-3 1.35-3 3.02 0 1.33-2.5 1.52-2 2.02 1.08 1.1 2.49 2.02 4 2.02 2.2 0 4-1.8 4-4.04a3.01 3.01 0 0 0-3-3.02z",key:"z0l1mu"}]],td=e("Brush",Ix);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Nx=[["path",{d:"M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2",key:"vl8zik"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M22 13h-4v-2a4 4 0 0 0-4-4h-1.3",key:"1ou0bd"}],["path",{d:"M20.97 5c0 2.1-1.6 3.8-3.5 4",key:"18gb23"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13",key:"1njkjs"}],["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"M3 21c0-2.1 1.7-3.9 3.8-4",key:"4p0ekp"}]],td=e("BugOff",Nx);/** + */const Nx=[["path",{d:"M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2",key:"vl8zik"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M22 13h-4v-2a4 4 0 0 0-4-4h-1.3",key:"1ou0bd"}],["path",{d:"M20.97 5c0 2.1-1.6 3.8-3.5 4",key:"18gb23"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13",key:"1njkjs"}],["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"M3 21c0-2.1 1.7-3.9 3.8-4",key:"4p0ekp"}]],nd=e("BugOff",Nx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Sx=[["path",{d:"M12.765 21.522a.5.5 0 0 1-.765-.424v-8.196a.5.5 0 0 1 .765-.424l5.878 3.674a1 1 0 0 1 0 1.696z",key:"17shqo"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M18 11a4 4 0 0 0-4-4h-4a4 4 0 0 0-4 4v3a6.1 6.1 0 0 0 2 4.5",key:"1tjixy"}],["path",{d:"M20.97 5c0 2.1-1.6 3.8-3.5 4",key:"18gb23"}],["path",{d:"M3 21c0-2.1 1.7-3.9 3.8-4",key:"4p0ekp"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"M6.53 9C4.6 8.8 3 7.1 3 5",key:"32zzws"}],["path",{d:"m8 2 1.88 1.88",key:"fmnt4t"}],["path",{d:"M9 7.13v-1a3.003 3.003 0 1 1 6 0v1",key:"d7y7pr"}]],nd=e("BugPlay",Sx);/** + */const Sx=[["path",{d:"M12.765 21.522a.5.5 0 0 1-.765-.424v-8.196a.5.5 0 0 1 .765-.424l5.878 3.674a1 1 0 0 1 0 1.696z",key:"17shqo"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M18 11a4 4 0 0 0-4-4h-4a4 4 0 0 0-4 4v3a6.1 6.1 0 0 0 2 4.5",key:"1tjixy"}],["path",{d:"M20.97 5c0 2.1-1.6 3.8-3.5 4",key:"18gb23"}],["path",{d:"M3 21c0-2.1 1.7-3.9 3.8-4",key:"4p0ekp"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"M6.53 9C4.6 8.8 3 7.1 3 5",key:"32zzws"}],["path",{d:"m8 2 1.88 1.88",key:"fmnt4t"}],["path",{d:"M9 7.13v-1a3.003 3.003 0 1 1 6 0v1",key:"d7y7pr"}]],dd=e("BugPlay",Sx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qx=[["path",{d:"m8 2 1.88 1.88",key:"fmnt4t"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M9 7.13v-1a3.003 3.003 0 1 1 6 0v1",key:"d7y7pr"}],["path",{d:"M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6",key:"xs1cw7"}],["path",{d:"M12 20v-9",key:"1qisl0"}],["path",{d:"M6.53 9C4.6 8.8 3 7.1 3 5",key:"32zzws"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"M3 21c0-2.1 1.7-3.9 3.8-4",key:"4p0ekp"}],["path",{d:"M20.97 5c0 2.1-1.6 3.8-3.5 4",key:"18gb23"}],["path",{d:"M22 13h-4",key:"1jl80f"}],["path",{d:"M17.2 17c2.1.1 3.8 1.9 3.8 4",key:"k3fwyw"}]],dd=e("Bug",qx);/** + */const qx=[["path",{d:"m8 2 1.88 1.88",key:"fmnt4t"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M9 7.13v-1a3.003 3.003 0 1 1 6 0v1",key:"d7y7pr"}],["path",{d:"M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6",key:"xs1cw7"}],["path",{d:"M12 20v-9",key:"1qisl0"}],["path",{d:"M6.53 9C4.6 8.8 3 7.1 3 5",key:"32zzws"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"M3 21c0-2.1 1.7-3.9 3.8-4",key:"4p0ekp"}],["path",{d:"M20.97 5c0 2.1-1.6 3.8-3.5 4",key:"18gb23"}],["path",{d:"M22 13h-4",key:"1jl80f"}],["path",{d:"M17.2 17c2.1.1 3.8 1.9 3.8 4",key:"k3fwyw"}]],id=e("Bug",qx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bx=[["path",{d:"M4 6 2 7",key:"1mqr15"}],["path",{d:"M10 6h4",key:"1itunk"}],["path",{d:"m22 7-2-1",key:"1umjhc"}],["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2",key:"1wxw4b"}],["path",{d:"M4 11h16",key:"mpoxn0"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M16 15h.01",key:"rnfrdf"}],["path",{d:"M6 19v2",key:"1loha6"}],["path",{d:"M18 21v-2",key:"sqyl04"}]],id=e("BusFront",bx);/** + */const bx=[["path",{d:"M4 6 2 7",key:"1mqr15"}],["path",{d:"M10 6h4",key:"1itunk"}],["path",{d:"m22 7-2-1",key:"1umjhc"}],["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2",key:"1wxw4b"}],["path",{d:"M4 11h16",key:"mpoxn0"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M16 15h.01",key:"rnfrdf"}],["path",{d:"M6 19v2",key:"1loha6"}],["path",{d:"M18 21v-2",key:"sqyl04"}]],hd=e("BusFront",bx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $x=[["path",{d:"M8 6v6",key:"18i7km"}],["path",{d:"M15 6v6",key:"1sg6z9"}],["path",{d:"M2 12h19.6",key:"de5uta"}],["path",{d:"M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3",key:"1wwztk"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}],["path",{d:"M9 18h5",key:"lrx6i"}],["circle",{cx:"16",cy:"18",r:"2",key:"1v4tcr"}]],hd=e("Bus",$x);/** + */const $x=[["path",{d:"M8 6v6",key:"18i7km"}],["path",{d:"M15 6v6",key:"1sg6z9"}],["path",{d:"M2 12h19.6",key:"de5uta"}],["path",{d:"M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3",key:"1wwztk"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}],["path",{d:"M9 18h5",key:"lrx6i"}],["circle",{cx:"16",cy:"18",r:"2",key:"1v4tcr"}]],yd=e("Bus",$x);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ax=[["path",{d:"M10 3h.01",key:"lbucoy"}],["path",{d:"M14 2h.01",key:"1k8aa1"}],["path",{d:"m2 9 20-5",key:"1kz0j5"}],["path",{d:"M12 12V6.5",key:"1vbrij"}],["rect",{width:"16",height:"10",x:"4",y:"12",rx:"3",key:"if91er"}],["path",{d:"M9 12v5",key:"3anwtq"}],["path",{d:"M15 12v5",key:"5xh3zn"}],["path",{d:"M4 17h16",key:"g4d7ey"}]],yd=e("CableCar",Ax);/** + */const Ax=[["path",{d:"M10 3h.01",key:"lbucoy"}],["path",{d:"M14 2h.01",key:"1k8aa1"}],["path",{d:"m2 9 20-5",key:"1kz0j5"}],["path",{d:"M12 12V6.5",key:"1vbrij"}],["rect",{width:"16",height:"10",x:"4",y:"12",rx:"3",key:"if91er"}],["path",{d:"M9 12v5",key:"3anwtq"}],["path",{d:"M15 12v5",key:"5xh3zn"}],["path",{d:"M4 17h16",key:"g4d7ey"}]],rd=e("CableCar",Ax);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Hx=[["path",{d:"M17 21v-2a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1",key:"10bnsj"}],["path",{d:"M19 15V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V9",key:"1eqmu1"}],["path",{d:"M21 21v-2h-4",key:"14zm7j"}],["path",{d:"M3 5h4V3",key:"z442eg"}],["path",{d:"M7 5a1 1 0 0 1 1 1v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1V3",key:"ebdjd7"}]],rd=e("Cable",Hx);/** + */const Hx=[["path",{d:"M17 21v-2a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1",key:"10bnsj"}],["path",{d:"M19 15V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V9",key:"1eqmu1"}],["path",{d:"M21 21v-2h-4",key:"14zm7j"}],["path",{d:"M3 5h4V3",key:"z442eg"}],["path",{d:"M7 5a1 1 0 0 1 1 1v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1V3",key:"ebdjd7"}]],kd=e("Cable",Hx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zx=[["circle",{cx:"9",cy:"7",r:"2",key:"1305pl"}],["path",{d:"M7.2 7.9 3 11v9c0 .6.4 1 1 1h16c.6 0 1-.4 1-1v-9c0-2-3-6-7-8l-3.6 2.6",key:"xle13f"}],["path",{d:"M16 13H3",key:"1wpj08"}],["path",{d:"M16 17H3",key:"3lvfcd"}]],kd=e("CakeSlice",zx);/** + */const zx=[["circle",{cx:"9",cy:"7",r:"2",key:"1305pl"}],["path",{d:"M7.2 7.9 3 11v9c0 .6.4 1 1 1h16c.6 0 1-.4 1-1v-9c0-2-3-6-7-8l-3.6 2.6",key:"xle13f"}],["path",{d:"M16 13H3",key:"1wpj08"}],["path",{d:"M16 17H3",key:"3lvfcd"}]],pd=e("CakeSlice",zx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Px=[["path",{d:"M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8",key:"1w3rig"}],["path",{d:"M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1",key:"n2jgmb"}],["path",{d:"M2 21h20",key:"1nyx9w"}],["path",{d:"M7 8v3",key:"1qtyvj"}],["path",{d:"M12 8v3",key:"hwp4zt"}],["path",{d:"M17 8v3",key:"1i6e5u"}],["path",{d:"M7 4h.01",key:"1bh4kh"}],["path",{d:"M12 4h.01",key:"1ujb9j"}],["path",{d:"M17 4h.01",key:"1upcoc"}]],pd=e("Cake",Px);/** + */const Px=[["path",{d:"M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8",key:"1w3rig"}],["path",{d:"M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1",key:"n2jgmb"}],["path",{d:"M2 21h20",key:"1nyx9w"}],["path",{d:"M7 8v3",key:"1qtyvj"}],["path",{d:"M12 8v3",key:"hwp4zt"}],["path",{d:"M17 8v3",key:"1i6e5u"}],["path",{d:"M7 4h.01",key:"1bh4kh"}],["path",{d:"M12 4h.01",key:"1ujb9j"}],["path",{d:"M17 4h.01",key:"1upcoc"}]],sd=e("Cake",Px);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jx=[["path",{d:"M11 14h1v4",key:"fy54vd"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",key:"12vinp"}]],sd=e("Calendar1",jx);/** + */const jx=[["path",{d:"M11 14h1v4",key:"fy54vd"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",key:"12vinp"}]],ld=e("Calendar1",jx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Vx=[["path",{d:"m14 18 4 4 4-4",key:"1waygx"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M18 14v8",key:"irew45"}],["path",{d:"M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343",key:"bse4f3"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]],ld=e("CalendarArrowDown",Vx);/** + */const Vx=[["path",{d:"m14 18 4 4 4-4",key:"1waygx"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M18 14v8",key:"irew45"}],["path",{d:"M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343",key:"bse4f3"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]],ud=e("CalendarArrowDown",Vx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Bx=[["path",{d:"m14 18 4-4 4 4",key:"ftkppy"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M18 22v-8",key:"su0gjh"}],["path",{d:"M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9",key:"1exg90"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]],ud=e("CalendarArrowUp",Bx);/** + */const Bx=[["path",{d:"m14 18 4-4 4 4",key:"ftkppy"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M18 22v-8",key:"su0gjh"}],["path",{d:"M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9",key:"1exg90"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]],Md=e("CalendarArrowUp",Bx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Fx=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8",key:"bce9hv"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m16 20 2 2 4-4",key:"13tcca"}]],Md=e("CalendarCheck2",Fx);/** + */const Fx=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8",key:"bce9hv"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m16 20 2 2 4-4",key:"13tcca"}]],vd=e("CalendarCheck2",Fx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Dx=[["path",{d:"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5",key:"1osxxc"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M3 10h5",key:"r794hk"}],["path",{d:"M17.5 17.5 16 16.3V14",key:"akvzfd"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}]],vd=e("CalendarClock",Dx);/** + */const Dx=[["path",{d:"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5",key:"1osxxc"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M3 10h5",key:"r794hk"}],["path",{d:"M17.5 17.5 16 16.3V14",key:"akvzfd"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}]],md=e("CalendarClock",Dx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Rx=[["path",{d:"m15.2 16.9-.9-.4",key:"1r0w5f"}],["path",{d:"m15.2 19.1-.9.4",key:"j188fs"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"m16.9 15.2-.4-.9",key:"699xu"}],["path",{d:"m16.9 20.8-.4.9",key:"dfjc4z"}],["path",{d:"m19.5 14.3-.4.9",key:"1eb35c"}],["path",{d:"m19.5 21.7-.4-.9",key:"1tonu5"}],["path",{d:"M21 10.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"11kmuh"}],["path",{d:"m21.7 16.5-.9.4",key:"1knoei"}],["path",{d:"m21.7 19.5-.9-.4",key:"q4dx6b"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]],md=e("CalendarCog",Rx);/** + */const Rx=[["path",{d:"m15.2 16.9-.9-.4",key:"1r0w5f"}],["path",{d:"m15.2 19.1-.9.4",key:"j188fs"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"m16.9 15.2-.4-.9",key:"699xu"}],["path",{d:"m16.9 20.8-.4.9",key:"dfjc4z"}],["path",{d:"m19.5 14.3-.4.9",key:"1eb35c"}],["path",{d:"m19.5 21.7-.4-.9",key:"1tonu5"}],["path",{d:"M21 10.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"11kmuh"}],["path",{d:"m21.7 16.5-.9.4",key:"1knoei"}],["path",{d:"m21.7 19.5-.9-.4",key:"q4dx6b"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]],_d=e("CalendarCog",Rx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Tx=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 17V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11Z",key:"kg77oy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M15 22v-4a2 2 0 0 1 2-2h4",key:"1gnbqr"}]],_d=e("CalendarFold",Tx);/** + */const Tx=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 17V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11Z",key:"kg77oy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M15 22v-4a2 2 0 0 1 2-2h4",key:"1gnbqr"}]],gd=e("CalendarFold",Tx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ux=[["path",{d:"M3 10h18V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7",key:"136lmk"}],["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21.29 14.7a2.43 2.43 0 0 0-2.65-.52c-.3.12-.57.3-.8.53l-.34.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L17.5 22l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z",key:"1t7hil"}]],gd=e("CalendarHeart",Ux);/** + */const Ux=[["path",{d:"M3 10h18V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7",key:"136lmk"}],["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21.29 14.7a2.43 2.43 0 0 0-2.65-.52c-.3.12-.57.3-.8.53l-.34.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L17.5 22l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z",key:"1t7hil"}]],Ld=e("CalendarHeart",Ux);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ox=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M10 16h4",key:"17e571"}]],Ld=e("CalendarMinus2",Ox);/** + */const Ox=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M10 16h4",key:"17e571"}]],xd=e("CalendarMinus2",Ox);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Zx=[["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5",key:"1scpom"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]],xd=e("CalendarMinus",Zx);/** + */const Zx=[["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5",key:"1scpom"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}]],wd=e("CalendarMinus",Zx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Gx=[["path",{d:"M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18",key:"16swn3"}],["path",{d:"M21 15.5V6a2 2 0 0 0-2-2H9.5",key:"yhw86o"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h7",key:"1wap6i"}],["path",{d:"M21 10h-5.5",key:"quycpq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],wd=e("CalendarOff",Gx);/** + */const Gx=[["path",{d:"M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18",key:"16swn3"}],["path",{d:"M21 15.5V6a2 2 0 0 0-2-2H9.5",key:"yhw86o"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h7",key:"1wap6i"}],["path",{d:"M21 10h-5.5",key:"quycpq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],fd=e("CalendarOff",Gx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Wx=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M10 16h4",key:"17e571"}],["path",{d:"M12 14v4",key:"1thi36"}]],fd=e("CalendarPlus2",Wx);/** + */const Wx=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M10 16h4",key:"17e571"}],["path",{d:"M12 14v4",key:"1thi36"}]],Cd=e("CalendarPlus2",Wx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ex=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8",key:"3spt84"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M19 16v6",key:"tddt3s"}]],Cd=e("CalendarPlus",Ex);/** + */const Ex=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8",key:"3spt84"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M19 16v6",key:"tddt3s"}]],Id=e("CalendarPlus",Ex);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Xx=[["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M17 14h-6",key:"bkmgh3"}],["path",{d:"M13 18H7",key:"bb0bb7"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 18h.01",key:"1bdyru"}]],Id=e("CalendarRange",Xx);/** + */const Xx=[["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M17 14h-6",key:"bkmgh3"}],["path",{d:"M13 18H7",key:"bb0bb7"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 18h.01",key:"1bdyru"}]],Nd=e("CalendarRange",Xx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Kx=[["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25",key:"1jrsq6"}],["path",{d:"m22 22-1.875-1.875",key:"13zax7"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]],Nd=e("CalendarSearch",Kx);/** + */const Kx=[["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25",key:"1jrsq6"}],["path",{d:"m22 22-1.875-1.875",key:"13zax7"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"M8 2v4",key:"1cmpym"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]],Sd=e("CalendarSearch",Kx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Jx=[["path",{d:"M11 10v4h4",key:"172dkj"}],["path",{d:"m11 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"vu0qm5"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"m21 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"1qgeyt"}],["path",{d:"M21 22v-4h-4",key:"hrummi"}],["path",{d:"M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3",key:"mctw84"}],["path",{d:"M3 10h4",key:"1el30a"}],["path",{d:"M8 2v4",key:"1cmpym"}]],Sd=e("CalendarSync",Jx);/** + */const Jx=[["path",{d:"M11 10v4h4",key:"172dkj"}],["path",{d:"m11 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"vu0qm5"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"m21 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"1qgeyt"}],["path",{d:"M21 22v-4h-4",key:"hrummi"}],["path",{d:"M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3",key:"mctw84"}],["path",{d:"M3 10h4",key:"1el30a"}],["path",{d:"M8 2v4",key:"1cmpym"}]],qd=e("CalendarSync",Jx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Qx=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8",key:"3spt84"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m17 22 5-5",key:"1k6ppv"}],["path",{d:"m17 17 5 5",key:"p7ous7"}]],qd=e("CalendarX2",Qx);/** + */const Qx=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8",key:"3spt84"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m17 22 5-5",key:"1k6ppv"}],["path",{d:"m17 17 5 5",key:"p7ous7"}]],bd=e("CalendarX2",Qx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Yx=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m14 14-4 4",key:"rymu2i"}],["path",{d:"m10 14 4 4",key:"3sz06r"}]],bd=e("CalendarX",Yx);/** + */const Yx=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}],["path",{d:"m14 14-4 4",key:"rymu2i"}],["path",{d:"m10 14 4 4",key:"3sz06r"}]],$d=e("CalendarX",Yx);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ew=[["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}],["path",{d:"M7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16",key:"qmtpty"}],["path",{d:"M9.5 4h5L17 7h3a2 2 0 0 1 2 2v7.5",key:"1ufyfc"}],["path",{d:"M14.121 15.121A3 3 0 1 1 9.88 10.88",key:"11zox6"}]],$d=e("CameraOff",ew);/** + */const ew=[["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}],["path",{d:"M7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16",key:"qmtpty"}],["path",{d:"M9.5 4h5L17 7h3a2 2 0 0 1 2 2v7.5",key:"1ufyfc"}],["path",{d:"M14.121 15.121A3 3 0 1 1 9.88 10.88",key:"11zox6"}]],Ad=e("CameraOff",ew);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aw=[["path",{d:"M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z",key:"isaq8g"}],["path",{d:"M17.75 7 15 2.1",key:"12x7e8"}],["path",{d:"M10.9 4.8 13 9",key:"100a87"}],["path",{d:"m7.9 9.7 2 4.4",key:"ntfhaj"}],["path",{d:"M4.9 14.7 7 18.9",key:"1x43jy"}]],Ad=e("CandyCane",aw);/** + */const aw=[["path",{d:"M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z",key:"isaq8g"}],["path",{d:"M17.75 7 15 2.1",key:"12x7e8"}],["path",{d:"M10.9 4.8 13 9",key:"100a87"}],["path",{d:"m7.9 9.7 2 4.4",key:"ntfhaj"}],["path",{d:"M4.9 14.7 7 18.9",key:"1x43jy"}]],Hd=e("CandyCane",aw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ow=[["path",{d:"m8.5 8.5-1 1a4.95 4.95 0 0 0 7 7l1-1",key:"1ff4ui"}],["path",{d:"M11.843 6.187A4.947 4.947 0 0 1 16.5 7.5a4.947 4.947 0 0 1 1.313 4.657",key:"1sbrv4"}],["path",{d:"M14 16.5V14",key:"1maf8j"}],["path",{d:"M14 6.5v1.843",key:"1a6u6t"}],["path",{d:"M10 10v7.5",key:"80pj65"}],["path",{d:"m16 7 1-5 1.367.683A3 3 0 0 0 19.708 3H21v1.292a3 3 0 0 0 .317 1.341L22 7l-5 1",key:"11a9mt"}],["path",{d:"m8 17-1 5-1.367-.683A3 3 0 0 0 4.292 21H3v-1.292a3 3 0 0 0-.317-1.341L2 17l5-1",key:"3mjmon"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Hd=e("CandyOff",ow);/** + */const ow=[["path",{d:"m8.5 8.5-1 1a4.95 4.95 0 0 0 7 7l1-1",key:"1ff4ui"}],["path",{d:"M11.843 6.187A4.947 4.947 0 0 1 16.5 7.5a4.947 4.947 0 0 1 1.313 4.657",key:"1sbrv4"}],["path",{d:"M14 16.5V14",key:"1maf8j"}],["path",{d:"M14 6.5v1.843",key:"1a6u6t"}],["path",{d:"M10 10v7.5",key:"80pj65"}],["path",{d:"m16 7 1-5 1.367.683A3 3 0 0 0 19.708 3H21v1.292a3 3 0 0 0 .317 1.341L22 7l-5 1",key:"11a9mt"}],["path",{d:"m8 17-1 5-1.367-.683A3 3 0 0 0 4.292 21H3v-1.292a3 3 0 0 0-.317-1.341L2 17l5-1",key:"3mjmon"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],zd=e("CandyOff",ow);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cw=[["path",{d:"m9.5 7.5-2 2a4.95 4.95 0 1 0 7 7l2-2a4.95 4.95 0 1 0-7-7Z",key:"ue6khb"}],["path",{d:"M14 6.5v10",key:"5xnk7c"}],["path",{d:"M10 7.5v10",key:"1uew51"}],["path",{d:"m16 7 1-5 1.37.68A3 3 0 0 0 19.7 3H21v1.3c0 .46.1.92.32 1.33L22 7l-5 1",key:"b9cp6k"}],["path",{d:"m8 17-1 5-1.37-.68A3 3 0 0 0 4.3 21H3v-1.3a3 3 0 0 0-.32-1.33L2 17l5-1",key:"5lney8"}]],zd=e("Candy",cw);/** + */const cw=[["path",{d:"m9.5 7.5-2 2a4.95 4.95 0 1 0 7 7l2-2a4.95 4.95 0 1 0-7-7Z",key:"ue6khb"}],["path",{d:"M14 6.5v10",key:"5xnk7c"}],["path",{d:"M10 7.5v10",key:"1uew51"}],["path",{d:"m16 7 1-5 1.37.68A3 3 0 0 0 19.7 3H21v1.3c0 .46.1.92.32 1.33L22 7l-5 1",key:"b9cp6k"}],["path",{d:"m8 17-1 5-1.37-.68A3 3 0 0 0 4.3 21H3v-1.3a3 3 0 0 0-.32-1.33L2 17l5-1",key:"5lney8"}]],Pd=e("Candy",cw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tw=[["path",{d:"M12 22v-4",key:"1utk9m"}],["path",{d:"M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6",key:"1mezod"}]],Pd=e("Cannabis",tw);/** + */const tw=[["path",{d:"M12 22v-4",key:"1utk9m"}],["path",{d:"M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6",key:"1mezod"}]],jd=e("Cannabis",tw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nw=[["path",{d:"M10.5 5H19a2 2 0 0 1 2 2v8.5",key:"jqtk4d"}],["path",{d:"M17 11h-.5",key:"1961ue"}],["path",{d:"M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2",key:"1keqsi"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M7 11h4",key:"1o1z6v"}],["path",{d:"M7 15h2.5",key:"1ina1g"}]],jd=e("CaptionsOff",nw);/** + */const nw=[["path",{d:"M10.5 5H19a2 2 0 0 1 2 2v8.5",key:"jqtk4d"}],["path",{d:"M17 11h-.5",key:"1961ue"}],["path",{d:"M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2",key:"1keqsi"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M7 11h4",key:"1o1z6v"}],["path",{d:"M7 15h2.5",key:"1ina1g"}]],Vd=e("CaptionsOff",nw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1208,67 +1208,67 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iw=[["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8",key:"1imjwt"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 14h.01",key:"7oqj8z"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2",key:"a7itu8"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]],Vd=e("CarFront",iw);/** + */const iw=[["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8",key:"1imjwt"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 14h.01",key:"7oqj8z"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2",key:"a7itu8"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]],Bd=e("CarFront",iw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hw=[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8",key:"1imjwt"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 14h.01",key:"7oqj8z"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2",key:"a7itu8"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]],Bd=e("CarTaxiFront",hw);/** + */const hw=[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8",key:"1imjwt"}],["path",{d:"M7 14h.01",key:"1qa3f1"}],["path",{d:"M17 14h.01",key:"7oqj8z"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2",key:"a7itu8"}],["path",{d:"M5 18v2",key:"ppbyun"}],["path",{d:"M19 18v2",key:"gy7782"}]],Fd=e("CarTaxiFront",hw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yw=[["path",{d:"M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2",key:"5owen"}],["circle",{cx:"7",cy:"17",r:"2",key:"u2ysq9"}],["path",{d:"M9 17h6",key:"r8uit2"}],["circle",{cx:"17",cy:"17",r:"2",key:"axvx0g"}]],Fd=e("Car",yw);/** + */const yw=[["path",{d:"M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2",key:"5owen"}],["circle",{cx:"7",cy:"17",r:"2",key:"u2ysq9"}],["path",{d:"M9 17h6",key:"r8uit2"}],["circle",{cx:"17",cy:"17",r:"2",key:"axvx0g"}]],Dd=e("Car",yw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rw=[["path",{d:"M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2",key:"19jm3t"}],["path",{d:"M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2",key:"13hakp"}],["path",{d:"M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9",key:"1crci8"}],["circle",{cx:"8",cy:"19",r:"2",key:"t8fc5s"}]],Dd=e("Caravan",rw);/** + */const rw=[["path",{d:"M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2",key:"19jm3t"}],["path",{d:"M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2",key:"13hakp"}],["path",{d:"M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9",key:"1crci8"}],["circle",{cx:"8",cy:"19",r:"2",key:"t8fc5s"}]],Rd=e("Caravan",rw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kw=[["path",{d:"M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46",key:"rfqxbe"}],["path",{d:"M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z",key:"6b25w4"}],["path",{d:"M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z",key:"fn65lo"}]],Rd=e("Carrot",kw);/** + */const kw=[["path",{d:"M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46",key:"rfqxbe"}],["path",{d:"M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z",key:"6b25w4"}],["path",{d:"M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z",key:"fn65lo"}]],Td=e("Carrot",kw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pw=[["circle",{cx:"7",cy:"12",r:"3",key:"12clwm"}],["path",{d:"M10 9v6",key:"17i7lo"}],["circle",{cx:"17",cy:"12",r:"3",key:"gl7c2s"}],["path",{d:"M14 7v8",key:"dl84cr"}]],Td=e("CaseLower",pw);/** + */const pw=[["circle",{cx:"7",cy:"12",r:"3",key:"12clwm"}],["path",{d:"M10 9v6",key:"17i7lo"}],["circle",{cx:"17",cy:"12",r:"3",key:"gl7c2s"}],["path",{d:"M14 7v8",key:"dl84cr"}]],Ud=e("CaseLower",pw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sw=[["path",{d:"m3 15 4-8 4 8",key:"1vwr6u"}],["path",{d:"M4 13h6",key:"1r9ots"}],["circle",{cx:"18",cy:"12",r:"3",key:"1kchzo"}],["path",{d:"M21 9v6",key:"anns31"}]],Ud=e("CaseSensitive",sw);/** + */const sw=[["path",{d:"m3 15 4-8 4 8",key:"1vwr6u"}],["path",{d:"M4 13h6",key:"1r9ots"}],["circle",{cx:"18",cy:"12",r:"3",key:"1kchzo"}],["path",{d:"M21 9v6",key:"anns31"}]],Od=e("CaseSensitive",sw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lw=[["path",{d:"m3 15 4-8 4 8",key:"1vwr6u"}],["path",{d:"M4 13h6",key:"1r9ots"}],["path",{d:"M15 11h4.5a2 2 0 0 1 0 4H15V7h4a2 2 0 0 1 0 4",key:"1sqfas"}]],Od=e("CaseUpper",lw);/** + */const lw=[["path",{d:"m3 15 4-8 4 8",key:"1vwr6u"}],["path",{d:"M4 13h6",key:"1r9ots"}],["path",{d:"M15 11h4.5a2 2 0 0 1 0 4H15V7h4a2 2 0 0 1 0 4",key:"1sqfas"}]],Zd=e("CaseUpper",lw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uw=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["circle",{cx:"8",cy:"10",r:"2",key:"1xl4ub"}],["path",{d:"M8 12h8",key:"1wcyev"}],["circle",{cx:"16",cy:"10",r:"2",key:"r14t7q"}],["path",{d:"m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3",key:"l01ucn"}]],Zd=e("CassetteTape",uw);/** + */const uw=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["circle",{cx:"8",cy:"10",r:"2",key:"1xl4ub"}],["path",{d:"M8 12h8",key:"1wcyev"}],["circle",{cx:"16",cy:"10",r:"2",key:"r14t7q"}],["path",{d:"m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3",key:"l01ucn"}]],Gd=e("CassetteTape",uw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Mw=[["path",{d:"M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6",key:"3zrzxg"}],["path",{d:"M2 12a9 9 0 0 1 8 8",key:"g6cvee"}],["path",{d:"M2 16a5 5 0 0 1 4 4",key:"1y1dii"}],["line",{x1:"2",x2:"2.01",y1:"20",y2:"20",key:"xu2jvo"}]],Gd=e("Cast",Mw);/** + */const Mw=[["path",{d:"M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6",key:"3zrzxg"}],["path",{d:"M2 12a9 9 0 0 1 8 8",key:"g6cvee"}],["path",{d:"M2 16a5 5 0 0 1 4 4",key:"1y1dii"}],["line",{x1:"2",x2:"2.01",y1:"20",y2:"20",key:"xu2jvo"}]],Wd=e("Cast",Mw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vw=[["path",{d:"M22 20v-9H2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2Z",key:"109fe4"}],["path",{d:"M18 11V4H6v7",key:"mon5oj"}],["path",{d:"M15 22v-4a3 3 0 0 0-3-3a3 3 0 0 0-3 3v4",key:"1k4jtn"}],["path",{d:"M22 11V9",key:"3zbp94"}],["path",{d:"M2 11V9",key:"1x5rnq"}],["path",{d:"M6 4V2",key:"1rsq15"}],["path",{d:"M18 4V2",key:"1jsdo1"}],["path",{d:"M10 4V2",key:"75d9ly"}],["path",{d:"M14 4V2",key:"8nj3z6"}]],Wd=e("Castle",vw);/** + */const vw=[["path",{d:"M22 20v-9H2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2Z",key:"109fe4"}],["path",{d:"M18 11V4H6v7",key:"mon5oj"}],["path",{d:"M15 22v-4a3 3 0 0 0-3-3a3 3 0 0 0-3 3v4",key:"1k4jtn"}],["path",{d:"M22 11V9",key:"3zbp94"}],["path",{d:"M2 11V9",key:"1x5rnq"}],["path",{d:"M6 4V2",key:"1rsq15"}],["path",{d:"M18 4V2",key:"1jsdo1"}],["path",{d:"M10 4V2",key:"75d9ly"}],["path",{d:"M14 4V2",key:"8nj3z6"}]],Ed=e("Castle",vw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mw=[["path",{d:"M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z",key:"x6xyqk"}],["path",{d:"M8 14v.5",key:"1nzgdb"}],["path",{d:"M16 14v.5",key:"1lajdz"}],["path",{d:"M11.25 16.25h1.5L12 17l-.75-.75Z",key:"12kq1m"}]],Ed=e("Cat",mw);/** + */const mw=[["path",{d:"M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z",key:"x6xyqk"}],["path",{d:"M8 14v.5",key:"1nzgdb"}],["path",{d:"M16 14v.5",key:"1lajdz"}],["path",{d:"M11.25 16.25h1.5L12 17l-.75-.75Z",key:"12kq1m"}]],Xd=e("Cat",mw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _w=[["path",{d:"M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97",key:"ir91b5"}],["path",{d:"M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z",key:"jlp8i1"}],["path",{d:"M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15",key:"19bib8"}],["path",{d:"M2 21v-4",key:"l40lih"}],["path",{d:"M7 9h.01",key:"19b3jx"}]],Xd=e("Cctv",_w);/** + */const _w=[["path",{d:"M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97",key:"ir91b5"}],["path",{d:"M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z",key:"jlp8i1"}],["path",{d:"M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15",key:"19bib8"}],["path",{d:"M2 21v-4",key:"l40lih"}],["path",{d:"M7 9h.01",key:"19b3jx"}]],Kd=e("Cctv",_w);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1283,17 +1283,17 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xw=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 11h8",key:"1feolt"}],["path",{d:"M7 16h3",key:"ur6vzw"}],["path",{d:"M7 6h12",key:"sz5b0d"}]],Kd=e("ChartBarDecreasing",xw);/** + */const xw=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 11h8",key:"1feolt"}],["path",{d:"M7 16h3",key:"ur6vzw"}],["path",{d:"M7 6h12",key:"sz5b0d"}]],Jd=e("ChartBarDecreasing",xw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ww=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 11h8",key:"1feolt"}],["path",{d:"M7 16h12",key:"wsnu98"}],["path",{d:"M7 6h3",key:"w9rmul"}]],Jd=e("ChartBarIncreasing",ww);/** + */const ww=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 11h8",key:"1feolt"}],["path",{d:"M7 16h12",key:"wsnu98"}],["path",{d:"M7 6h3",key:"w9rmul"}]],Qd=e("ChartBarIncreasing",ww);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fw=[["path",{d:"M11 13v4",key:"vyy2rb"}],["path",{d:"M15 5v4",key:"1gx88a"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1",key:"1iip1u"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1",key:"1anskk"}]],Qd=e("ChartBarStacked",fw);/** + */const fw=[["path",{d:"M11 13v4",key:"vyy2rb"}],["path",{d:"M15 5v4",key:"1gx88a"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1",key:"1iip1u"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1",key:"1anskk"}]],Yd=e("ChartBarStacked",fw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1313,7 +1313,7 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Sw=[["path",{d:"M13 17V9",key:"1fwyjl"}],["path",{d:"M18 17v-3",key:"1sqioe"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M8 17V5",key:"1wzmnc"}]],Yd=e("ChartColumnDecreasing",Sw);/** + */const Sw=[["path",{d:"M13 17V9",key:"1fwyjl"}],["path",{d:"M18 17v-3",key:"1sqioe"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M8 17V5",key:"1wzmnc"}]],ei=e("ChartColumnDecreasing",Sw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1323,12 +1323,12 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bw=[["path",{d:"M11 13H7",key:"t0o9gq"}],["path",{d:"M19 9h-4",key:"rera1j"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1",key:"q8uenq"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1",key:"sr5ea"}]],ei=e("ChartColumnStacked",bw);/** + */const bw=[["path",{d:"M11 13H7",key:"t0o9gq"}],["path",{d:"M19 9h-4",key:"rera1j"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1",key:"q8uenq"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1",key:"sr5ea"}]],ai=e("ChartColumnStacked",bw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $w=[["path",{d:"M10 6h8",key:"zvc2xc"}],["path",{d:"M12 16h6",key:"yi5mkt"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M8 11h7",key:"wz2hg0"}]],ai=e("ChartGantt",$w);/** + */const $w=[["path",{d:"M10 6h8",key:"zvc2xc"}],["path",{d:"M12 16h6",key:"yi5mkt"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M8 11h7",key:"wz2hg0"}]],oi=e("ChartGantt",$w);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1338,17 +1338,17 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Hw=[["path",{d:"m13.11 7.664 1.78 2.672",key:"go2gg9"}],["path",{d:"m14.162 12.788-3.324 1.424",key:"11x848"}],["path",{d:"m20 4-6.06 1.515",key:"1wxxh7"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["circle",{cx:"12",cy:"6",r:"2",key:"1jj5th"}],["circle",{cx:"16",cy:"12",r:"2",key:"4ma0v8"}],["circle",{cx:"9",cy:"15",r:"2",key:"lf2ghp"}]],oi=e("ChartNetwork",Hw);/** + */const Hw=[["path",{d:"m13.11 7.664 1.78 2.672",key:"go2gg9"}],["path",{d:"m14.162 12.788-3.324 1.424",key:"11x848"}],["path",{d:"m20 4-6.06 1.515",key:"1wxxh7"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["circle",{cx:"12",cy:"6",r:"2",key:"1jj5th"}],["circle",{cx:"16",cy:"12",r:"2",key:"4ma0v8"}],["circle",{cx:"9",cy:"15",r:"2",key:"lf2ghp"}]],ci=e("ChartNetwork",Hw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zw=[["path",{d:"M12 20V10",key:"g8npz5"}],["path",{d:"M18 20v-4",key:"8uic4z"}],["path",{d:"M6 20V4",key:"1w1bmo"}]],ci=e("ChartNoAxesColumnDecreasing",zw);/** + */const zw=[["path",{d:"M12 20V10",key:"g8npz5"}],["path",{d:"M18 20v-4",key:"8uic4z"}],["path",{d:"M6 20V4",key:"1w1bmo"}]],ti=e("ChartNoAxesColumnDecreasing",zw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Pw=[["path",{d:"M12 16v5",key:"zza2cw"}],["path",{d:"M16 14v7",key:"1g90b9"}],["path",{d:"M20 10v11",key:"1iqoj0"}],["path",{d:"m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15",key:"1fw8x9"}],["path",{d:"M4 18v3",key:"1yp0dc"}],["path",{d:"M8 14v7",key:"n3cwzv"}]],ti=e("ChartNoAxesCombined",Pw);/** + */const Pw=[["path",{d:"M12 16v5",key:"zza2cw"}],["path",{d:"M16 14v7",key:"1g90b9"}],["path",{d:"M20 10v11",key:"1iqoj0"}],["path",{d:"m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15",key:"1fw8x9"}],["path",{d:"M4 18v3",key:"1yp0dc"}],["path",{d:"M8 14v7",key:"n3cwzv"}]],ni=e("ChartNoAxesCombined",Pw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1368,67 +1368,67 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Fw=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7",key:"lw07rv"}]],ni=e("ChartSpline",Fw);/** + */const Fw=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7",key:"lw07rv"}]],di=e("ChartSpline",Fw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Dw=[["path",{d:"M18 6 7 17l-5-5",key:"116fxf"}],["path",{d:"m22 10-7.5 7.5L13 16",key:"ke71qq"}]],di=e("CheckCheck",Dw);/** + */const Dw=[["path",{d:"M18 6 7 17l-5-5",key:"116fxf"}],["path",{d:"m22 10-7.5 7.5L13 16",key:"ke71qq"}]],ii=e("CheckCheck",Dw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Rw=[["path",{d:"M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z",key:"1qvrer"}],["path",{d:"M6 17h12",key:"1jwigz"}]],ii=e("ChefHat",Rw);/** + */const Rw=[["path",{d:"M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z",key:"1qvrer"}],["path",{d:"M6 17h12",key:"1jwigz"}]],hi=e("ChefHat",Rw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Tw=[["path",{d:"M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z",key:"cvxqlc"}],["path",{d:"M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z",key:"1ostrc"}],["path",{d:"M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12",key:"hqx58h"}],["path",{d:"M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z",key:"eykp1o"}]],hi=e("Cherry",Tw);/** + */const Tw=[["path",{d:"M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z",key:"cvxqlc"}],["path",{d:"M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z",key:"1ostrc"}],["path",{d:"M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12",key:"hqx58h"}],["path",{d:"M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z",key:"eykp1o"}]],yi=e("Cherry",Tw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Uw=[["path",{d:"m17 18-6-6 6-6",key:"1yerx2"}],["path",{d:"M7 6v12",key:"1p53r6"}]],yi=e("ChevronFirst",Uw);/** + */const Uw=[["path",{d:"m17 18-6-6 6-6",key:"1yerx2"}],["path",{d:"M7 6v12",key:"1p53r6"}]],ri=e("ChevronFirst",Uw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ow=[["path",{d:"m7 18 6-6-6-6",key:"lwmzdw"}],["path",{d:"M17 6v12",key:"1o0aio"}]],ri=e("ChevronLast",Ow);/** + */const Ow=[["path",{d:"m7 18 6-6-6-6",key:"lwmzdw"}],["path",{d:"M17 6v12",key:"1o0aio"}]],ki=e("ChevronLast",Ow);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Zw=[["path",{d:"m7 20 5-5 5 5",key:"13a0gw"}],["path",{d:"m7 4 5 5 5-5",key:"1kwcof"}]],ki=e("ChevronsDownUp",Zw);/** + */const Zw=[["path",{d:"m7 20 5-5 5 5",key:"13a0gw"}],["path",{d:"m7 4 5 5 5-5",key:"1kwcof"}]],pi=e("ChevronsDownUp",Zw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Gw=[["path",{d:"m7 6 5 5 5-5",key:"1lc07p"}],["path",{d:"m7 13 5 5 5-5",key:"1d48rs"}]],pi=e("ChevronsDown",Gw);/** + */const Gw=[["path",{d:"m7 6 5 5 5-5",key:"1lc07p"}],["path",{d:"m7 13 5 5 5-5",key:"1d48rs"}]],si=e("ChevronsDown",Gw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ww=[["path",{d:"m18 8 4 4-4 4",key:"1ak13k"}],["path",{d:"m6 8-4 4 4 4",key:"15zrgr"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}]],si=e("ChevronsLeftRightEllipsis",Ww);/** + */const Ww=[["path",{d:"m18 8 4 4-4 4",key:"1ak13k"}],["path",{d:"m6 8-4 4 4 4",key:"15zrgr"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}]],li=e("ChevronsLeftRightEllipsis",Ww);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ew=[["path",{d:"m9 7-5 5 5 5",key:"j5w590"}],["path",{d:"m15 7 5 5-5 5",key:"1bl6da"}]],li=e("ChevronsLeftRight",Ew);/** + */const Ew=[["path",{d:"m9 7-5 5 5 5",key:"j5w590"}],["path",{d:"m15 7 5 5-5 5",key:"1bl6da"}]],ui=e("ChevronsLeftRight",Ew);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Xw=[["path",{d:"m11 17-5-5 5-5",key:"13zhaf"}],["path",{d:"m18 17-5-5 5-5",key:"h8a8et"}]],ui=e("ChevronsLeft",Xw);/** + */const Xw=[["path",{d:"m11 17-5-5 5-5",key:"13zhaf"}],["path",{d:"m18 17-5-5 5-5",key:"h8a8et"}]],Mi=e("ChevronsLeft",Xw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Kw=[["path",{d:"m20 17-5-5 5-5",key:"30x0n2"}],["path",{d:"m4 17 5-5-5-5",key:"16spf4"}]],Mi=e("ChevronsRightLeft",Kw);/** + */const Kw=[["path",{d:"m20 17-5-5 5-5",key:"30x0n2"}],["path",{d:"m4 17 5-5-5-5",key:"16spf4"}]],vi=e("ChevronsRightLeft",Kw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Jw=[["path",{d:"m6 17 5-5-5-5",key:"xnjwq"}],["path",{d:"m13 17 5-5-5-5",key:"17xmmf"}]],vi=e("ChevronsRight",Jw);/** + */const Jw=[["path",{d:"m6 17 5-5-5-5",key:"xnjwq"}],["path",{d:"m13 17 5-5-5-5",key:"17xmmf"}]],mi=e("ChevronsRight",Jw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1438,27 +1438,27 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Yw=[["path",{d:"m17 11-5-5-5 5",key:"e8nh98"}],["path",{d:"m17 18-5-5-5 5",key:"2avn1x"}]],mi=e("ChevronsUp",Yw);/** + */const Yw=[["path",{d:"m17 11-5-5-5 5",key:"e8nh98"}],["path",{d:"m17 18-5-5-5 5",key:"2avn1x"}]],_i=e("ChevronsUp",Yw);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ef=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["line",{x1:"21.17",x2:"12",y1:"8",y2:"8",key:"a0cw5f"}],["line",{x1:"3.95",x2:"8.54",y1:"6.06",y2:"14",key:"1kftof"}],["line",{x1:"10.88",x2:"15.46",y1:"21.94",y2:"14",key:"1ymyh8"}]],_i=e("Chrome",ef);/** + */const ef=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["line",{x1:"21.17",x2:"12",y1:"8",y2:"8",key:"a0cw5f"}],["line",{x1:"3.95",x2:"8.54",y1:"6.06",y2:"14",key:"1kftof"}],["line",{x1:"10.88",x2:"15.46",y1:"21.94",y2:"14",key:"1ymyh8"}]],gi=e("Chrome",ef);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const af=[["path",{d:"M10 9h4",key:"u4k05v"}],["path",{d:"M12 7v5",key:"ma6bk"}],["path",{d:"M14 22v-4a2 2 0 0 0-4 0v4",key:"1pdhuj"}],["path",{d:"M18 22V5.618a1 1 0 0 0-.553-.894l-4.553-2.277a2 2 0 0 0-1.788 0L6.553 4.724A1 1 0 0 0 6 5.618V22",key:"1rkokr"}],["path",{d:"m18 7 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.618a1 1 0 0 1 .553-.894L6 7",key:"1w6esw"}]],gi=e("Church",af);/** + */const af=[["path",{d:"M10 9h4",key:"u4k05v"}],["path",{d:"M12 7v5",key:"ma6bk"}],["path",{d:"M14 22v-4a2 2 0 0 0-4 0v4",key:"1pdhuj"}],["path",{d:"M18 22V5.618a1 1 0 0 0-.553-.894l-4.553-2.277a2 2 0 0 0-1.788 0L6.553 4.724A1 1 0 0 0 6 5.618V22",key:"1rkokr"}],["path",{d:"m18 7 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.618a1 1 0 0 1 .553-.894L6 7",key:"1w6esw"}]],Li=e("Church",af);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const of=[["path",{d:"M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13",key:"1gdiyg"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5",key:"1il607"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866",key:"166zjj"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5",key:"1gah44"}],["path",{d:"M7 12v4",key:"jqww69"}]],Li=e("CigaretteOff",of);/** + */const of=[["path",{d:"M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13",key:"1gdiyg"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5",key:"1il607"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866",key:"166zjj"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5",key:"1gah44"}],["path",{d:"M7 12v4",key:"jqww69"}]],xi=e("CigaretteOff",of);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cf=[["path",{d:"M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14",key:"1mb5g1"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5",key:"1il607"}],["path",{d:"M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1",key:"1yl5r7"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5",key:"1gah44"}],["path",{d:"M7 12v4",key:"jqww69"}]],xi=e("Cigarette",cf);/** + */const cf=[["path",{d:"M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14",key:"1mb5g1"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5",key:"1il607"}],["path",{d:"M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1",key:"1yl5r7"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5",key:"1gah44"}],["path",{d:"M7 12v4",key:"jqww69"}]],wi=e("Cigarette",cf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1523,7 +1523,7 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vf=[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]],wi=e("CircleDashed",vf);/** + */const vf=[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0",key:"5ilxe3"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0",key:"11zvb9"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7",key:"1iw5b2"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8",key:"c0bmvh"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69",key:"1ruxm7"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8",key:"qkgqxc"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69",key:"1mcia2"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7",key:"1fvljs"}]],fi=e("CircleDashed",vf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1533,37 +1533,37 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _f=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 18V6",key:"zqpxq5"}]],fi=e("CircleDollarSign",_f);/** + */const _f=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 18V6",key:"zqpxq5"}]],Ci=e("CircleDollarSign",_f);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gf=[["path",{d:"M10.1 2.18a9.93 9.93 0 0 1 3.8 0",key:"1qdqn0"}],["path",{d:"M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7",key:"1bq7p6"}],["path",{d:"M21.82 10.1a9.93 9.93 0 0 1 0 3.8",key:"1rlaqf"}],["path",{d:"M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69",key:"1xk03u"}],["path",{d:"M13.9 21.82a9.94 9.94 0 0 1-3.8 0",key:"l7re25"}],["path",{d:"M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7",key:"1v18p6"}],["path",{d:"M2.18 13.9a9.93 9.93 0 0 1 0-3.8",key:"xdo6bj"}],["path",{d:"M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69",key:"1jjmaz"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]],Ci=e("CircleDotDashed",gf);/** + */const gf=[["path",{d:"M10.1 2.18a9.93 9.93 0 0 1 3.8 0",key:"1qdqn0"}],["path",{d:"M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7",key:"1bq7p6"}],["path",{d:"M21.82 10.1a9.93 9.93 0 0 1 0 3.8",key:"1rlaqf"}],["path",{d:"M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69",key:"1xk03u"}],["path",{d:"M13.9 21.82a9.94 9.94 0 0 1-3.8 0",key:"l7re25"}],["path",{d:"M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7",key:"1v18p6"}],["path",{d:"M2.18 13.9a9.93 9.93 0 0 1 0-3.8",key:"xdo6bj"}],["path",{d:"M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69",key:"1jjmaz"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]],Ii=e("CircleDotDashed",gf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Lf=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]],Ii=e("CircleDot",Lf);/** + */const Lf=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]],Ni=e("CircleDot",Lf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xf=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M17 12h.01",key:"1m0b6t"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M7 12h.01",key:"eqddd0"}]],Ni=e("CircleEllipsis",xf);/** + */const xf=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M17 12h.01",key:"1m0b6t"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M7 12h.01",key:"eqddd0"}]],Si=e("CircleEllipsis",xf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wf=[["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M7 14h10",key:"1mhdw3"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],Si=e("CircleEqual",wf);/** + */const wf=[["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M7 14h10",key:"1mhdw3"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],qi=e("CircleEqual",wf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ff=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75",key:"175t95"}],["path",{d:"m16 12-4-4-4 4",key:"177agl"}],["path",{d:"M12 16V8",key:"1sbj14"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3",key:"1vce0s"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4",key:"o3fkw4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857",key:"1szpfk"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38",key:"9yhvd4"}]],qi=e("CircleFadingArrowUp",ff);/** + */const ff=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75",key:"175t95"}],["path",{d:"m16 12-4-4-4 4",key:"177agl"}],["path",{d:"M12 16V8",key:"1sbj14"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3",key:"1vce0s"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4",key:"o3fkw4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857",key:"1szpfk"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38",key:"9yhvd4"}]],bi=e("CircleFadingArrowUp",ff);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Cf=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75",key:"175t95"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"M16 12H8",key:"1fr5h0"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3",key:"1vce0s"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4",key:"o3fkw4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857",key:"1szpfk"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38",key:"9yhvd4"}]],bi=e("CircleFadingPlus",Cf);/** + */const Cf=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75",key:"175t95"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"M16 12H8",key:"1fr5h0"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3",key:"1vce0s"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4",key:"o3fkw4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857",key:"1szpfk"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38",key:"9yhvd4"}]],$i=e("CircleFadingPlus",Cf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1578,7 +1578,7 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Sf=[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65",key:"1pfsoa"}],["path",{d:"M19.08 19.08A10 10 0 1 1 4.92 4.92",key:"1ablyi"}]],$i=e("CircleOff",Sf);/** + */const Sf=[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65",key:"1pfsoa"}],["path",{d:"M19.08 19.08A10 10 0 1 1 4.92 4.92",key:"1ablyi"}]],Ai=e("CircleOff",Sf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1623,12 +1623,12 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Vf=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9",key:"1dfufj"}]],Ai=e("CircleSlash",Vf);/** + */const Vf=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9",key:"1dfufj"}]],Hi=e("CircleSlash",Vf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Bf=[["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}]],Hi=e("CircleSmall",Bf);/** + */const Bf=[["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}]],zi=e("CircleSmall",Bf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1648,37 +1648,37 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Tf=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M11 9h4a2 2 0 0 0 2-2V3",key:"1ve2rv"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"M7 21v-4a2 2 0 0 1 2-2h4",key:"1fwkro"}],["circle",{cx:"15",cy:"15",r:"2",key:"3i40o0"}]],zi=e("CircuitBoard",Tf);/** + */const Tf=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M11 9h4a2 2 0 0 0 2-2V3",key:"1ve2rv"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"M7 21v-4a2 2 0 0 1 2-2h4",key:"1fwkro"}],["circle",{cx:"15",cy:"15",r:"2",key:"3i40o0"}]],Pi=e("CircuitBoard",Tf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Uf=[["path",{d:"M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z",key:"4ite01"}],["path",{d:"M19.65 15.66A8 8 0 0 1 8.35 4.34",key:"1gxipu"}],["path",{d:"m14 10-5.5 5.5",key:"92pfem"}],["path",{d:"M14 17.85V10H6.15",key:"xqmtsk"}]],Pi=e("Citrus",Uf);/** + */const Uf=[["path",{d:"M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z",key:"4ite01"}],["path",{d:"M19.65 15.66A8 8 0 0 1 8.35 4.34",key:"1gxipu"}],["path",{d:"m14 10-5.5 5.5",key:"92pfem"}],["path",{d:"M14 17.85V10H6.15",key:"xqmtsk"}]],ji=e("Citrus",Uf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Of=[["path",{d:"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z",key:"1tn4o7"}],["path",{d:"m6.2 5.3 3.1 3.9",key:"iuk76l"}],["path",{d:"m12.4 3.4 3.1 4",key:"6hsd6n"}],["path",{d:"M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z",key:"ltgou9"}]],ji=e("Clapperboard",Of);/** + */const Of=[["path",{d:"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z",key:"1tn4o7"}],["path",{d:"m6.2 5.3 3.1 3.9",key:"iuk76l"}],["path",{d:"m12.4 3.4 3.1 4",key:"6hsd6n"}],["path",{d:"M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z",key:"ltgou9"}]],Vi=e("Clapperboard",Of);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Zf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m9 14 2 2 4-4",key:"df797q"}]],Vi=e("ClipboardCheck",Zf);/** + */const Zf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m9 14 2 2 4-4",key:"df797q"}]],Bi=e("ClipboardCheck",Zf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Gf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2",key:"4jdomd"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v4",key:"3hqy98"}],["path",{d:"M21 14H11",key:"1bme5i"}],["path",{d:"m15 10-4 4 4 4",key:"5dvupr"}]],Bi=e("ClipboardCopy",Gf);/** + */const Gf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2",key:"4jdomd"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v4",key:"3hqy98"}],["path",{d:"M21 14H11",key:"1bme5i"}],["path",{d:"m15 10-4 4 4 4",key:"5dvupr"}]],Fi=e("ClipboardCopy",Gf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Wf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}]],Fi=e("ClipboardMinus",Wf);/** + */const Wf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}]],Di=e("ClipboardMinus",Wf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ef=[["path",{d:"M15 2H9a1 1 0 0 0-1 1v2c0 .6.4 1 1 1h6c.6 0 1-.4 1-1V3c0-.6-.4-1-1-1Z",key:"1pp7kr"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2M16 4h2a2 2 0 0 1 2 2v2M11 14h10",key:"2ik1ml"}],["path",{d:"m17 10 4 4-4 4",key:"vp2hj1"}]],Di=e("ClipboardPaste",Ef);/** + */const Ef=[["path",{d:"M15 2H9a1 1 0 0 0-1 1v2c0 .6.4 1 1 1h6c.6 0 1-.4 1-1V3c0-.6-.4-1-1-1Z",key:"1pp7kr"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2M16 4h2a2 2 0 0 1 2 2v2M11 14h10",key:"2ik1ml"}],["path",{d:"m17 10 4 4-4 4",key:"vp2hj1"}]],Ri=e("ClipboardPaste",Ef);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1693,107 +1693,107 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Jf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}],["path",{d:"M12 17v-6",key:"1y8rbf"}]],Ri=e("ClipboardPlus",Jf);/** + */const Jf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 14h6",key:"159ibu"}],["path",{d:"M12 17v-6",key:"1y8rbf"}]],Ti=e("ClipboardPlus",Jf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Qf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 12v-1h6v1",key:"iehl6m"}],["path",{d:"M11 17h2",key:"12w5me"}],["path",{d:"M12 11v6",key:"1bwqyc"}]],Ti=e("ClipboardType",Qf);/** + */const Qf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M9 12v-1h6v1",key:"iehl6m"}],["path",{d:"M11 17h2",key:"12w5me"}],["path",{d:"M12 11v6",key:"1bwqyc"}]],Ui=e("ClipboardType",Qf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Yf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m15 11-6 6",key:"1toa9n"}],["path",{d:"m9 11 6 6",key:"wlibny"}]],Ui=e("ClipboardX",Yf);/** + */const Yf=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"m15 11-6 6",key:"1toa9n"}],["path",{d:"m9 11 6 6",key:"wlibny"}]],Oi=e("ClipboardX",Yf);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eC=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}]],Oi=e("Clipboard",eC);/** + */const eC=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}]],Zi=e("Clipboard",eC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 14.5 8",key:"12zbmj"}]],Zi=e("Clock1",aC);/** + */const aC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 14.5 8",key:"12zbmj"}]],Gi=e("Clock1",aC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 8 10",key:"atfzqc"}]],Gi=e("Clock10",oC);/** + */const oC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 8 10",key:"atfzqc"}]],Wi=e("Clock10",oC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 9.5 8",key:"l5bg6f"}]],Wi=e("Clock11",cC);/** + */const cC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 9.5 8",key:"l5bg6f"}]],Ei=e("Clock11",cC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12",key:"1fub01"}]],Ei=e("Clock12",tC);/** + */const tC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12",key:"1fub01"}]],Xi=e("Clock12",tC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 10",key:"1g230d"}]],Xi=e("Clock2",nC);/** + */const nC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 10",key:"1g230d"}]],Ki=e("Clock2",nC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16.5 12",key:"1aq6pp"}]],Ki=e("Clock3",dC);/** + */const dC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16.5 12",key:"1aq6pp"}]],Ji=e("Clock3",dC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 14",key:"68esgv"}]],Ji=e("Clock4",iC);/** + */const iC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 14",key:"68esgv"}]],Qi=e("Clock4",iC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 14.5 16",key:"1pcbox"}]],Qi=e("Clock5",hC);/** + */const hC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 14.5 16",key:"1pcbox"}]],Yi=e("Clock5",hC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 12 16.5",key:"hb2qv6"}]],Yi=e("Clock6",yC);/** + */const yC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 12 16.5",key:"hb2qv6"}]],eh=e("Clock6",yC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 9.5 16",key:"ka3394"}]],eh=e("Clock7",rC);/** + */const rC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 9.5 16",key:"ka3394"}]],ah=e("Clock7",rC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 8 14",key:"tmc9b4"}]],ah=e("Clock8",kC);/** + */const kC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 8 14",key:"tmc9b4"}]],oh=e("Clock8",kC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 7.5 12",key:"1k60p0"}]],oh=e("Clock9",pC);/** + */const pC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 7.5 12",key:"1k60p0"}]],ch=e("Clock9",pC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sC=[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["path",{d:"M16 21.16a10 10 0 1 1 5-13.516",key:"cxo92l"}],["path",{d:"M20 11.5v6",key:"2ei3xq"}],["path",{d:"M20 21.5h.01",key:"1r2dzp"}]],ch=e("ClockAlert",sC);/** + */const sC=[["path",{d:"M12 6v6l4 2",key:"mmk7yg"}],["path",{d:"M16 21.16a10 10 0 1 1 5-13.516",key:"cxo92l"}],["path",{d:"M20 11.5v6",key:"2ei3xq"}],["path",{d:"M20 21.5h.01",key:"1r2dzp"}]],th=e("ClockAlert",sC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lC=[["path",{d:"M12.338 21.994A10 10 0 1 1 21.925 13.227",key:"1i7shu"}],["path",{d:"M12 6v6l2 1",key:"19cm8n"}],["path",{d:"m14 18 4 4 4-4",key:"1waygx"}],["path",{d:"M18 14v8",key:"irew45"}]],th=e("ClockArrowDown",lC);/** + */const lC=[["path",{d:"M12.338 21.994A10 10 0 1 1 21.925 13.227",key:"1i7shu"}],["path",{d:"M12 6v6l2 1",key:"19cm8n"}],["path",{d:"m14 18 4 4 4-4",key:"1waygx"}],["path",{d:"M18 14v8",key:"irew45"}]],nh=e("ClockArrowDown",lC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uC=[["path",{d:"M13.228 21.925A10 10 0 1 1 21.994 12.338",key:"1fzlyi"}],["path",{d:"M12 6v6l1.562.781",key:"1ujuk9"}],["path",{d:"m14 18 4-4 4 4",key:"ftkppy"}],["path",{d:"M18 22v-8",key:"su0gjh"}]],nh=e("ClockArrowUp",uC);/** + */const uC=[["path",{d:"M13.228 21.925A10 10 0 1 1 21.994 12.338",key:"1fzlyi"}],["path",{d:"M12 6v6l1.562.781",key:"1ujuk9"}],["path",{d:"m14 18 4-4 4 4",key:"ftkppy"}],["path",{d:"M18 22v-8",key:"su0gjh"}]],dh=e("ClockArrowUp",uC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MC=[["path",{d:"M12 12v4",key:"tww15h"}],["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708",key:"xsb5ju"}]],dh=e("CloudAlert",MC);/** + */const MC=[["path",{d:"M12 12v4",key:"tww15h"}],["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708",key:"xsb5ju"}]],ih=e("CloudAlert",MC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vC=[["circle",{cx:"12",cy:"17",r:"3",key:"1spfwm"}],["path",{d:"M4.2 15.1A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2",key:"zaobp"}],["path",{d:"m15.7 18.4-.9-.3",key:"4qxpbn"}],["path",{d:"m9.2 15.9-.9-.3",key:"17q7o2"}],["path",{d:"m10.6 20.7.3-.9",key:"1pf4s2"}],["path",{d:"m13.1 14.2.3-.9",key:"1mnuqm"}],["path",{d:"m13.6 20.7-.4-1",key:"1jpd1m"}],["path",{d:"m10.8 14.3-.4-1",key:"17ugyy"}],["path",{d:"m8.3 18.6 1-.4",key:"s42vdx"}],["path",{d:"m14.7 15.8 1-.4",key:"2wizun"}]],ih=e("CloudCog",vC);/** + */const vC=[["circle",{cx:"12",cy:"17",r:"3",key:"1spfwm"}],["path",{d:"M4.2 15.1A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2",key:"zaobp"}],["path",{d:"m15.7 18.4-.9-.3",key:"4qxpbn"}],["path",{d:"m9.2 15.9-.9-.3",key:"17q7o2"}],["path",{d:"m10.6 20.7.3-.9",key:"1pf4s2"}],["path",{d:"m13.1 14.2.3-.9",key:"1mnuqm"}],["path",{d:"m13.6 20.7-.4-1",key:"1jpd1m"}],["path",{d:"m10.8 14.3-.4-1",key:"17ugyy"}],["path",{d:"m8.3 18.6 1-.4",key:"s42vdx"}],["path",{d:"m14.7 15.8 1-.4",key:"2wizun"}]],hh=e("CloudCog",vC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1803,62 +1803,62 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _C=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M8 19v1",key:"1dk2by"}],["path",{d:"M8 14v1",key:"84yxot"}],["path",{d:"M16 19v1",key:"v220m7"}],["path",{d:"M16 14v1",key:"g12gj6"}],["path",{d:"M12 21v1",key:"q8vafk"}],["path",{d:"M12 16v1",key:"1mx6rx"}]],hh=e("CloudDrizzle",_C);/** + */const _C=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M8 19v1",key:"1dk2by"}],["path",{d:"M8 14v1",key:"84yxot"}],["path",{d:"M16 19v1",key:"v220m7"}],["path",{d:"M16 14v1",key:"g12gj6"}],["path",{d:"M12 21v1",key:"q8vafk"}],["path",{d:"M12 16v1",key:"1mx6rx"}]],yh=e("CloudDrizzle",_C);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gC=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 17H7",key:"pygtm1"}],["path",{d:"M17 21H9",key:"1u2q02"}]],yh=e("CloudFog",gC);/** + */const gC=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 17H7",key:"pygtm1"}],["path",{d:"M17 21H9",key:"1u2q02"}]],rh=e("CloudFog",gC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LC=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 14v2",key:"a1is7l"}],["path",{d:"M8 14v2",key:"1e9m6t"}],["path",{d:"M16 20h.01",key:"xwek51"}],["path",{d:"M8 20h.01",key:"1vjney"}],["path",{d:"M12 16v2",key:"z66u1j"}],["path",{d:"M12 22h.01",key:"1urd7a"}]],rh=e("CloudHail",LC);/** + */const LC=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 14v2",key:"a1is7l"}],["path",{d:"M8 14v2",key:"1e9m6t"}],["path",{d:"M16 20h.01",key:"xwek51"}],["path",{d:"M8 20h.01",key:"1vjney"}],["path",{d:"M12 16v2",key:"z66u1j"}],["path",{d:"M12 22h.01",key:"1urd7a"}]],kh=e("CloudHail",LC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xC=[["path",{d:"M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973",key:"1cez44"}],["path",{d:"m13 12-3 5h4l-3 5",key:"1t22er"}]],kh=e("CloudLightning",xC);/** + */const xC=[["path",{d:"M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973",key:"1cez44"}],["path",{d:"m13 12-3 5h4l-3 5",key:"1t22er"}]],ph=e("CloudLightning",xC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wC=[["path",{d:"M10.188 8.5A6 6 0 0 1 16 4a1 1 0 0 0 6 6 6 6 0 0 1-3 5.197",key:"erj67n"}],["path",{d:"M11 20v2",key:"174qtz"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24",key:"1qmrp3"}],["path",{d:"M7 19v2",key:"12npes"}]],ph=e("CloudMoonRain",wC);/** + */const wC=[["path",{d:"M10.188 8.5A6 6 0 0 1 16 4a1 1 0 0 0 6 6 6 6 0 0 1-3 5.197",key:"erj67n"}],["path",{d:"M11 20v2",key:"174qtz"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24",key:"1qmrp3"}],["path",{d:"M7 19v2",key:"12npes"}]],sh=e("CloudMoonRain",wC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fC=[["path",{d:"M10.188 8.5A6 6 0 0 1 16 4a1 1 0 0 0 6 6 6 6 0 0 1-3 5.197",key:"erj67n"}],["path",{d:"M13 16a3 3 0 1 1 0 6H7a5 5 0 1 1 4.9-6Z",key:"p44pc9"}]],sh=e("CloudMoon",fC);/** + */const fC=[["path",{d:"M10.188 8.5A6 6 0 0 1 16 4a1 1 0 0 0 6 6 6 6 0 0 1-3 5.197",key:"erj67n"}],["path",{d:"M13 16a3 3 0 1 1 0 6H7a5 5 0 1 1 4.9-6Z",key:"p44pc9"}]],lh=e("CloudMoon",fC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CC=[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5.782 5.782A7 7 0 0 0 9 19h8.5a4.5 4.5 0 0 0 1.307-.193",key:"yfwify"}],["path",{d:"M21.532 16.5A4.5 4.5 0 0 0 17.5 10h-1.79A7.008 7.008 0 0 0 10 5.07",key:"jlfiyv"}]],lh=e("CloudOff",CC);/** + */const CC=[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5.782 5.782A7 7 0 0 0 9 19h8.5a4.5 4.5 0 0 0 1.307-.193",key:"yfwify"}],["path",{d:"M21.532 16.5A4.5 4.5 0 0 0 17.5 10h-1.79A7.008 7.008 0 0 0 10 5.07",key:"jlfiyv"}]],uh=e("CloudOff",CC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IC=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m9.2 22 3-7",key:"sb5f6j"}],["path",{d:"m9 13-3 7",key:"500co5"}],["path",{d:"m17 13-3 7",key:"8t2fiy"}]],uh=e("CloudRainWind",IC);/** + */const IC=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m9.2 22 3-7",key:"sb5f6j"}],["path",{d:"m9 13-3 7",key:"500co5"}],["path",{d:"m17 13-3 7",key:"8t2fiy"}]],Mh=e("CloudRainWind",IC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NC=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 14v6",key:"1j4efv"}],["path",{d:"M8 14v6",key:"17c4r9"}],["path",{d:"M12 16v6",key:"c8a4gj"}]],Mh=e("CloudRain",NC);/** + */const NC=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M16 14v6",key:"1j4efv"}],["path",{d:"M8 14v6",key:"17c4r9"}],["path",{d:"M12 16v6",key:"c8a4gj"}]],vh=e("CloudRain",NC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SC=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M8 19h.01",key:"puxtts"}],["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M12 21h.01",key:"h35vbk"}],["path",{d:"M16 15h.01",key:"rnfrdf"}],["path",{d:"M16 19h.01",key:"1vcnzz"}]],vh=e("CloudSnow",SC);/** + */const SC=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M8 19h.01",key:"puxtts"}],["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M12 21h.01",key:"h35vbk"}],["path",{d:"M16 15h.01",key:"rnfrdf"}],["path",{d:"M16 19h.01",key:"1vcnzz"}]],mh=e("CloudSnow",SC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qC=[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128",key:"dpwdj0"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24",key:"1qmrp3"}],["path",{d:"M11 20v2",key:"174qtz"}],["path",{d:"M7 19v2",key:"12npes"}]],mh=e("CloudSunRain",qC);/** + */const qC=[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128",key:"dpwdj0"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24",key:"1qmrp3"}],["path",{d:"M11 20v2",key:"174qtz"}],["path",{d:"M7 19v2",key:"12npes"}]],_h=e("CloudSunRain",qC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bC=[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128",key:"dpwdj0"}],["path",{d:"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z",key:"s09mg5"}]],_h=e("CloudSun",bC);/** + */const bC=[["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128",key:"dpwdj0"}],["path",{d:"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z",key:"s09mg5"}]],gh=e("CloudSun",bC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1868,22 +1868,22 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AC=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]],gh=e("Cloud",AC);/** + */const AC=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]],Lh=e("Cloud",AC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HC=[["path",{d:"M17.5 21H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"gqqjvc"}],["path",{d:"M22 10a3 3 0 0 0-3-3h-2.207a5.502 5.502 0 0 0-10.702.5",key:"1p2s76"}]],Lh=e("Cloudy",HC);/** + */const HC=[["path",{d:"M17.5 21H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"gqqjvc"}],["path",{d:"M22 10a3 3 0 0 0-3-3h-2.207a5.502 5.502 0 0 0-10.702.5",key:"1p2s76"}]],xh=e("Cloudy",HC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zC=[["path",{d:"M16.17 7.83 2 22",key:"t58vo8"}],["path",{d:"M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12",key:"17k36q"}],["path",{d:"m7.83 7.83 8.34 8.34",key:"1d7sxk"}]],xh=e("Clover",zC);/** + */const zC=[["path",{d:"M16.17 7.83 2 22",key:"t58vo8"}],["path",{d:"M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12",key:"17k36q"}],["path",{d:"m7.83 7.83 8.34 8.34",key:"1d7sxk"}]],wh=e("Clover",zC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PC=[["path",{d:"M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z",key:"27yuqz"}],["path",{d:"M12 17.66L12 22",key:"ogfahf"}]],wh=e("Club",PC);/** + */const PC=[["path",{d:"M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z",key:"27yuqz"}],["path",{d:"M12 17.66L12 22",key:"ogfahf"}]],fh=e("Club",PC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1893,22 +1893,22 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VC=[["polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2",key:"srzb37"}],["line",{x1:"12",x2:"12",y1:"22",y2:"15.5",key:"1t73f2"}],["polyline",{points:"22 8.5 12 15.5 2 8.5",key:"ajlxae"}],["polyline",{points:"2 15.5 12 8.5 22 15.5",key:"susrui"}],["line",{x1:"12",x2:"12",y1:"2",y2:"8.5",key:"2cldga"}]],fh=e("Codepen",VC);/** + */const VC=[["polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2",key:"srzb37"}],["line",{x1:"12",x2:"12",y1:"22",y2:"15.5",key:"1t73f2"}],["polyline",{points:"22 8.5 12 15.5 2 8.5",key:"ajlxae"}],["polyline",{points:"2 15.5 12 8.5 22 15.5",key:"susrui"}],["line",{x1:"12",x2:"12",y1:"2",y2:"8.5",key:"2cldga"}]],Ch=e("Codepen",VC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BC=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}],["polyline",{points:"7.5 4.21 12 6.81 16.5 4.21",key:"fabo96"}],["polyline",{points:"7.5 19.79 7.5 14.6 3 12",key:"z377f1"}],["polyline",{points:"21 12 16.5 14.6 16.5 19.79",key:"9nrev1"}],["polyline",{points:"3.27 6.96 12 12.01 20.73 6.96",key:"1180pa"}],["line",{x1:"12",x2:"12",y1:"22.08",y2:"12",key:"3z3uq6"}]],Ch=e("Codesandbox",BC);/** + */const BC=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}],["polyline",{points:"7.5 4.21 12 6.81 16.5 4.21",key:"fabo96"}],["polyline",{points:"7.5 19.79 7.5 14.6 3 12",key:"z377f1"}],["polyline",{points:"21 12 16.5 14.6 16.5 19.79",key:"9nrev1"}],["polyline",{points:"3.27 6.96 12 12.01 20.73 6.96",key:"1180pa"}],["line",{x1:"12",x2:"12",y1:"22.08",y2:"12",key:"3z3uq6"}]],Ih=e("Codesandbox",BC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FC=[["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M14 2v2",key:"6buw04"}],["path",{d:"M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1",key:"pwadti"}],["path",{d:"M6 2v2",key:"colzsn"}]],Ih=e("Coffee",FC);/** + */const FC=[["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M14 2v2",key:"6buw04"}],["path",{d:"M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1",key:"pwadti"}],["path",{d:"M6 2v2",key:"colzsn"}]],Nh=e("Coffee",FC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DC=[["path",{d:"M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z",key:"sobvz5"}],["path",{d:"M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z",key:"11i496"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 22v-2",key:"1osdcq"}],["path",{d:"m17 20.66-1-1.73",key:"eq3orb"}],["path",{d:"M11 10.27 7 3.34",key:"16pf9h"}],["path",{d:"m20.66 17-1.73-1",key:"sg0v6f"}],["path",{d:"m3.34 7 1.73 1",key:"1ulond"}],["path",{d:"M14 12h8",key:"4f43i9"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"m20.66 7-1.73 1",key:"1ow05n"}],["path",{d:"m3.34 17 1.73-1",key:"nuk764"}],["path",{d:"m17 3.34-1 1.73",key:"2wel8s"}],["path",{d:"m11 13.73-4 6.93",key:"794ttg"}]],Nh=e("Cog",DC);/** + */const DC=[["path",{d:"M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z",key:"sobvz5"}],["path",{d:"M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z",key:"11i496"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 22v-2",key:"1osdcq"}],["path",{d:"m17 20.66-1-1.73",key:"eq3orb"}],["path",{d:"M11 10.27 7 3.34",key:"16pf9h"}],["path",{d:"m20.66 17-1.73-1",key:"sg0v6f"}],["path",{d:"m3.34 7 1.73 1",key:"1ulond"}],["path",{d:"M14 12h8",key:"4f43i9"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"m20.66 7-1.73 1",key:"1ow05n"}],["path",{d:"m3.34 17 1.73-1",key:"nuk764"}],["path",{d:"m17 3.34-1 1.73",key:"2wel8s"}],["path",{d:"m11 13.73-4 6.93",key:"794ttg"}]],Sh=e("Cog",DC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1923,47 +1923,47 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UC=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7.5 3v18",key:"w0wo6v"}],["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"M16.5 3v18",key:"10tjh1"}]],Sh=e("Columns4",UC);/** + */const UC=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7.5 3v18",key:"w0wo6v"}],["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"M16.5 3v18",key:"10tjh1"}]],qh=e("Columns4",UC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OC=[["path",{d:"M10 18H5a3 3 0 0 1-3-3v-1",key:"ru65g8"}],["path",{d:"M14 2a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2",key:"e30een"}],["path",{d:"M20 2a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2",key:"2ahx8o"}],["path",{d:"m7 21 3-3-3-3",key:"127cv2"}],["rect",{x:"14",y:"14",width:"8",height:"8",rx:"2",key:"1b0bso"}],["rect",{x:"2",y:"2",width:"8",height:"8",rx:"2",key:"1x09vl"}]],qh=e("Combine",OC);/** + */const OC=[["path",{d:"M10 18H5a3 3 0 0 1-3-3v-1",key:"ru65g8"}],["path",{d:"M14 2a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2",key:"e30een"}],["path",{d:"M20 2a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2",key:"2ahx8o"}],["path",{d:"m7 21 3-3-3-3",key:"127cv2"}],["rect",{x:"14",y:"14",width:"8",height:"8",rx:"2",key:"1b0bso"}],["rect",{x:"2",y:"2",width:"8",height:"8",rx:"2",key:"1x09vl"}]],bh=e("Combine",OC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZC=[["path",{d:"M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3",key:"11bfej"}]],bh=e("Command",ZC);/** + */const ZC=[["path",{d:"M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3",key:"11bfej"}]],$h=e("Command",ZC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GC=[["path",{d:"m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z",key:"9ktpf1"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],$h=e("Compass",GC);/** + */const GC=[["path",{d:"m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z",key:"9ktpf1"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],Ah=e("Compass",GC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WC=[["path",{d:"M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",key:"1uwlt4"}],["path",{d:"M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z",key:"10291m"}],["path",{d:"M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z",key:"1tqoq1"}],["path",{d:"M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",key:"1x6lto"}]],Ah=e("Component",WC);/** + */const WC=[["path",{d:"M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",key:"1uwlt4"}],["path",{d:"M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z",key:"10291m"}],["path",{d:"M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z",key:"1tqoq1"}],["path",{d:"M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z",key:"1x6lto"}]],Hh=e("Component",WC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const EC=[["rect",{width:"14",height:"8",x:"5",y:"2",rx:"2",key:"wc9tft"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h2",key:"rwmk9e"}],["path",{d:"M12 18h6",key:"aqd8w3"}]],Hh=e("Computer",EC);/** + */const EC=[["rect",{width:"14",height:"8",x:"5",y:"2",rx:"2",key:"wc9tft"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h2",key:"rwmk9e"}],["path",{d:"M12 18h6",key:"aqd8w3"}]],zh=e("Computer",EC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XC=[["path",{d:"M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z",key:"1pvr1r"}],["path",{d:"M20 16a8 8 0 1 0-16 0",key:"1pa543"}],["path",{d:"M12 4v4",key:"1bq03y"}],["path",{d:"M10 4h4",key:"1xpv9s"}]],zh=e("ConciergeBell",XC);/** + */const XC=[["path",{d:"M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z",key:"1pvr1r"}],["path",{d:"M20 16a8 8 0 1 0-16 0",key:"1pa543"}],["path",{d:"M12 4v4",key:"1bq03y"}],["path",{d:"M10 4h4",key:"1xpv9s"}]],Ph=e("ConciergeBell",XC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KC=[["path",{d:"m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98",key:"53pte7"}],["ellipse",{cx:"12",cy:"19",rx:"9",ry:"3",key:"1ji25f"}]],Ph=e("Cone",KC);/** + */const KC=[["path",{d:"m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98",key:"53pte7"}],["ellipse",{cx:"12",cy:"19",rx:"9",ry:"3",key:"1ji25f"}]],jh=e("Cone",KC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JC=[["rect",{x:"2",y:"6",width:"20",height:"8",rx:"1",key:"1estib"}],["path",{d:"M17 14v7",key:"7m2elx"}],["path",{d:"M7 14v7",key:"1cm7wv"}],["path",{d:"M17 3v3",key:"1v4jwn"}],["path",{d:"M7 3v3",key:"7o6guu"}],["path",{d:"M10 14 2.3 6.3",key:"1023jk"}],["path",{d:"m14 6 7.7 7.7",key:"1s8pl2"}],["path",{d:"m8 6 8 8",key:"hl96qh"}]],jh=e("Construction",JC);/** + */const JC=[["rect",{x:"2",y:"6",width:"20",height:"8",rx:"1",key:"1estib"}],["path",{d:"M17 14v7",key:"7m2elx"}],["path",{d:"M7 14v7",key:"1cm7wv"}],["path",{d:"M17 3v3",key:"1v4jwn"}],["path",{d:"M7 3v3",key:"7o6guu"}],["path",{d:"M10 14 2.3 6.3",key:"1023jk"}],["path",{d:"m14 6 7.7 7.7",key:"1s8pl2"}],["path",{d:"m8 6 8 8",key:"hl96qh"}]],Vh=e("Construction",JC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -1973,187 +1973,187 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YC=[["path",{d:"M16 2v2",key:"scm5qe"}],["path",{d:"M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2",key:"1waht3"}],["path",{d:"M8 2v2",key:"pbkmx"}],["circle",{cx:"12",cy:"11",r:"3",key:"itu57m"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",key:"12vinp"}]],Vh=e("Contact",YC);/** + */const YC=[["path",{d:"M16 2v2",key:"scm5qe"}],["path",{d:"M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2",key:"1waht3"}],["path",{d:"M8 2v2",key:"pbkmx"}],["circle",{cx:"12",cy:"11",r:"3",key:"itu57m"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",key:"12vinp"}]],Bh=e("Contact",YC);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eI=[["path",{d:"M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z",key:"1t2lqe"}],["path",{d:"M10 21.9V14L2.1 9.1",key:"o7czzq"}],["path",{d:"m10 14 11.9-6.9",key:"zm5e20"}],["path",{d:"M14 19.8v-8.1",key:"159ecu"}],["path",{d:"M18 17.5V9.4",key:"11uown"}]],Bh=e("Container",eI);/** + */const eI=[["path",{d:"M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z",key:"1t2lqe"}],["path",{d:"M10 21.9V14L2.1 9.1",key:"o7czzq"}],["path",{d:"m10 14 11.9-6.9",key:"zm5e20"}],["path",{d:"M14 19.8v-8.1",key:"159ecu"}],["path",{d:"M18 17.5V9.4",key:"11uown"}]],Fh=e("Container",eI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z",key:"j4l70d"}]],Fh=e("Contrast",aI);/** + */const aI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z",key:"j4l70d"}]],Dh=e("Contrast",aI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oI=[["path",{d:"M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5",key:"laymnq"}],["path",{d:"M8.5 8.5v.01",key:"ue8clq"}],["path",{d:"M16 15.5v.01",key:"14dtrp"}],["path",{d:"M12 12v.01",key:"u5ubse"}],["path",{d:"M11 17v.01",key:"1hyl5a"}],["path",{d:"M7 14v.01",key:"uct60s"}]],Dh=e("Cookie",oI);/** + */const oI=[["path",{d:"M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5",key:"laymnq"}],["path",{d:"M8.5 8.5v.01",key:"ue8clq"}],["path",{d:"M16 15.5v.01",key:"14dtrp"}],["path",{d:"M12 12v.01",key:"u5ubse"}],["path",{d:"M11 17v.01",key:"1hyl5a"}],["path",{d:"M7 14v.01",key:"uct60s"}]],Rh=e("Cookie",oI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cI=[["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8",key:"u0tga0"}],["path",{d:"m4 8 16-4",key:"16g0ng"}],["path",{d:"m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8",key:"12cejc"}]],Rh=e("CookingPot",cI);/** + */const cI=[["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8",key:"u0tga0"}],["path",{d:"m4 8 16-4",key:"16g0ng"}],["path",{d:"m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8",key:"12cejc"}]],Th=e("CookingPot",cI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tI=[["path",{d:"m12 15 2 2 4-4",key:"2c609p"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Th=e("CopyCheck",tI);/** + */const tI=[["path",{d:"m12 15 2 2 4-4",key:"2c609p"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Uh=e("CopyCheck",tI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nI=[["line",{x1:"12",x2:"18",y1:"15",y2:"15",key:"1nscbv"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Uh=e("CopyMinus",nI);/** + */const nI=[["line",{x1:"12",x2:"18",y1:"15",y2:"15",key:"1nscbv"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Oh=e("CopyMinus",nI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dI=[["line",{x1:"15",x2:"15",y1:"12",y2:"18",key:"1p7wdc"}],["line",{x1:"12",x2:"18",y1:"15",y2:"15",key:"1nscbv"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Oh=e("CopyPlus",dI);/** + */const dI=[["line",{x1:"15",x2:"15",y1:"12",y2:"18",key:"1p7wdc"}],["line",{x1:"12",x2:"18",y1:"15",y2:"15",key:"1nscbv"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Zh=e("CopyPlus",dI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iI=[["line",{x1:"12",x2:"18",y1:"18",y2:"12",key:"ebkxgr"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Zh=e("CopySlash",iI);/** + */const iI=[["line",{x1:"12",x2:"18",y1:"18",y2:"12",key:"ebkxgr"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Gh=e("CopySlash",iI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hI=[["line",{x1:"12",x2:"18",y1:"12",y2:"18",key:"1rg63v"}],["line",{x1:"12",x2:"18",y1:"18",y2:"12",key:"ebkxgr"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Gh=e("CopyX",hI);/** + */const hI=[["line",{x1:"12",x2:"18",y1:"12",y2:"18",key:"1rg63v"}],["line",{x1:"12",x2:"18",y1:"18",y2:"12",key:"ebkxgr"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Wh=e("CopyX",hI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.17 14.83a4 4 0 1 0 0-5.66",key:"1sveal"}]],Wh=e("Copyleft",yI);/** + */const yI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.17 14.83a4 4 0 1 0 0-5.66",key:"1sveal"}]],Eh=e("Copyleft",yI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M14.83 14.83a4 4 0 1 1 0-5.66",key:"1i56pz"}]],Eh=e("Copyright",rI);/** + */const rI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M14.83 14.83a4 4 0 1 1 0-5.66",key:"1i56pz"}]],Xh=e("Copyright",rI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kI=[["polyline",{points:"9 10 4 15 9 20",key:"r3jprv"}],["path",{d:"M20 4v7a4 4 0 0 1-4 4H4",key:"6o5b7l"}]],Xh=e("CornerDownLeft",kI);/** + */const kI=[["polyline",{points:"9 10 4 15 9 20",key:"r3jprv"}],["path",{d:"M20 4v7a4 4 0 0 1-4 4H4",key:"6o5b7l"}]],Kh=e("CornerDownLeft",kI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pI=[["polyline",{points:"15 10 20 15 15 20",key:"1q7qjw"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12",key:"z08zvw"}]],Kh=e("CornerDownRight",pI);/** + */const pI=[["polyline",{points:"15 10 20 15 15 20",key:"1q7qjw"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12",key:"z08zvw"}]],Jh=e("CornerDownRight",pI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sI=[["polyline",{points:"14 15 9 20 4 15",key:"nkc4i"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12",key:"nbpdq2"}]],Jh=e("CornerLeftDown",sI);/** + */const sI=[["polyline",{points:"14 15 9 20 4 15",key:"nkc4i"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12",key:"nbpdq2"}]],Qh=e("CornerLeftDown",sI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lI=[["polyline",{points:"14 9 9 4 4 9",key:"m9oyvo"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4",key:"1blwi3"}]],Qh=e("CornerLeftUp",lI);/** + */const lI=[["polyline",{points:"14 9 9 4 4 9",key:"m9oyvo"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4",key:"1blwi3"}]],Yh=e("CornerLeftUp",lI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uI=[["polyline",{points:"10 15 15 20 20 15",key:"axus6l"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12",key:"wcbgct"}]],Yh=e("CornerRightDown",uI);/** + */const uI=[["polyline",{points:"10 15 15 20 20 15",key:"axus6l"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12",key:"wcbgct"}]],ey=e("CornerRightDown",uI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MI=[["polyline",{points:"10 9 15 4 20 9",key:"1lr6px"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4",key:"1plgdj"}]],ey=e("CornerRightUp",MI);/** + */const MI=[["polyline",{points:"10 9 15 4 20 9",key:"1lr6px"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4",key:"1plgdj"}]],ay=e("CornerRightUp",MI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vI=[["polyline",{points:"9 14 4 9 9 4",key:"881910"}],["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4",key:"1nkjon"}]],ay=e("CornerUpLeft",vI);/** + */const vI=[["polyline",{points:"9 14 4 9 9 4",key:"881910"}],["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4",key:"1nkjon"}]],oy=e("CornerUpLeft",vI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mI=[["polyline",{points:"15 14 20 9 15 4",key:"1tbx3s"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12",key:"1lu4f8"}]],oy=e("CornerUpRight",mI);/** + */const mI=[["polyline",{points:"15 14 20 9 15 4",key:"1tbx3s"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12",key:"1lu4f8"}]],cy=e("CornerUpRight",mI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _I=[["rect",{width:"16",height:"16",x:"4",y:"4",rx:"2",key:"14l7u7"}],["rect",{width:"6",height:"6",x:"9",y:"9",rx:"1",key:"5aljv4"}],["path",{d:"M15 2v2",key:"13l42r"}],["path",{d:"M15 20v2",key:"15mkzm"}],["path",{d:"M2 15h2",key:"1gxd5l"}],["path",{d:"M2 9h2",key:"1bbxkp"}],["path",{d:"M20 15h2",key:"19e6y8"}],["path",{d:"M20 9h2",key:"19tzq7"}],["path",{d:"M9 2v2",key:"165o2o"}],["path",{d:"M9 20v2",key:"i2bqo8"}]],cy=e("Cpu",_I);/** + */const _I=[["rect",{width:"16",height:"16",x:"4",y:"4",rx:"2",key:"14l7u7"}],["rect",{width:"6",height:"6",x:"9",y:"9",rx:"1",key:"5aljv4"}],["path",{d:"M15 2v2",key:"13l42r"}],["path",{d:"M15 20v2",key:"15mkzm"}],["path",{d:"M2 15h2",key:"1gxd5l"}],["path",{d:"M2 9h2",key:"1bbxkp"}],["path",{d:"M20 15h2",key:"19e6y8"}],["path",{d:"M20 9h2",key:"19tzq7"}],["path",{d:"M9 2v2",key:"165o2o"}],["path",{d:"M9 20v2",key:"i2bqo8"}]],ty=e("Cpu",_I);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1",key:"1ss3eq"}],["path",{d:"M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1",key:"1od56t"}]],ty=e("CreativeCommons",gI);/** + */const gI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1",key:"1ss3eq"}],["path",{d:"M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1",key:"1od56t"}]],ny=e("CreativeCommons",gI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LI=[["path",{d:"m4.6 13.11 5.79-3.21c1.89-1.05 4.79 1.78 3.71 3.71l-3.22 5.81C8.8 23.16.79 15.23 4.6 13.11Z",key:"1ozxlb"}],["path",{d:"m10.5 9.5-1-2.29C9.2 6.48 8.8 6 8 6H4.5C2.79 6 2 6.5 2 8.5a7.71 7.71 0 0 0 2 4.83",key:"ffuyb5"}],["path",{d:"M8 6c0-1.55.24-4-2-4-2 0-2.5 2.17-2.5 4",key:"osnpzi"}],["path",{d:"m14.5 13.5 2.29 1c.73.3 1.21.7 1.21 1.5v3.5c0 1.71-.5 2.5-2.5 2.5a7.71 7.71 0 0 1-4.83-2",key:"1vubaw"}],["path",{d:"M18 16c1.55 0 4-.24 4 2 0 2-2.17 2.5-4 2.5",key:"wxr772"}]],ny=e("Croissant",LI);/** + */const LI=[["path",{d:"m4.6 13.11 5.79-3.21c1.89-1.05 4.79 1.78 3.71 3.71l-3.22 5.81C8.8 23.16.79 15.23 4.6 13.11Z",key:"1ozxlb"}],["path",{d:"m10.5 9.5-1-2.29C9.2 6.48 8.8 6 8 6H4.5C2.79 6 2 6.5 2 8.5a7.71 7.71 0 0 0 2 4.83",key:"ffuyb5"}],["path",{d:"M8 6c0-1.55.24-4-2-4-2 0-2.5 2.17-2.5 4",key:"osnpzi"}],["path",{d:"m14.5 13.5 2.29 1c.73.3 1.21.7 1.21 1.5v3.5c0 1.71-.5 2.5-2.5 2.5a7.71 7.71 0 0 1-4.83-2",key:"1vubaw"}],["path",{d:"M18 16c1.55 0 4-.24 4 2 0 2-2.17 2.5-4 2.5",key:"wxr772"}]],dy=e("Croissant",LI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xI=[["path",{d:"M6 2v14a2 2 0 0 0 2 2h14",key:"ron5a4"}],["path",{d:"M18 22V8a2 2 0 0 0-2-2H2",key:"7s9ehn"}]],dy=e("Crop",xI);/** + */const xI=[["path",{d:"M6 2v14a2 2 0 0 0 2 2h14",key:"ron5a4"}],["path",{d:"M18 22V8a2 2 0 0 0-2-2H2",key:"7s9ehn"}]],iy=e("Crop",xI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wI=[["path",{d:"M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z",key:"1xbrqy"}]],iy=e("Cross",wI);/** + */const wI=[["path",{d:"M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z",key:"1xbrqy"}]],hy=e("Cross",wI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fI=[["path",{d:"m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z",key:"1u2ovd"}],["path",{d:"M10 22v-8L2.25 9.15",key:"11pn4q"}],["path",{d:"m10 14 11.77-6.87",key:"1kt1wh"}]],hy=e("Cuboid",fI);/** + */const fI=[["path",{d:"m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z",key:"1u2ovd"}],["path",{d:"M10 22v-8L2.25 9.15",key:"11pn4q"}],["path",{d:"m10 14 11.77-6.87",key:"1kt1wh"}]],yy=e("Cuboid",fI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CI=[["path",{d:"m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8",key:"8166m8"}],["path",{d:"M5 8h14",key:"pcz4l3"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0",key:"yjz344"}],["path",{d:"m12 8 1-6h2",key:"3ybfa4"}]],yy=e("CupSoda",CI);/** + */const CI=[["path",{d:"m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8",key:"8166m8"}],["path",{d:"M5 8h14",key:"pcz4l3"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0",key:"yjz344"}],["path",{d:"m12 8 1-6h2",key:"3ybfa4"}]],ry=e("CupSoda",CI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const II=[["circle",{cx:"12",cy:"12",r:"8",key:"46899m"}],["line",{x1:"3",x2:"6",y1:"3",y2:"6",key:"1jkytn"}],["line",{x1:"21",x2:"18",y1:"3",y2:"6",key:"14zfjt"}],["line",{x1:"3",x2:"6",y1:"21",y2:"18",key:"iusuec"}],["line",{x1:"21",x2:"18",y1:"21",y2:"18",key:"yj2dd7"}]],ry=e("Currency",II);/** + */const II=[["circle",{cx:"12",cy:"12",r:"8",key:"46899m"}],["line",{x1:"3",x2:"6",y1:"3",y2:"6",key:"1jkytn"}],["line",{x1:"21",x2:"18",y1:"3",y2:"6",key:"14zfjt"}],["line",{x1:"3",x2:"6",y1:"21",y2:"18",key:"iusuec"}],["line",{x1:"21",x2:"18",y1:"21",y2:"18",key:"yj2dd7"}]],ky=e("Currency",II);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5v14a9 3 0 0 0 18 0V5",key:"aqi0yr"}]],ky=e("Cylinder",NI);/** + */const NI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5v14a9 3 0 0 0 18 0V5",key:"aqi0yr"}]],py=e("Cylinder",NI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SI=[["path",{d:"M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"157kva"}],["path",{d:"M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"d7q6m6"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z",key:"pr6s65"}]],py=e("Dam",SI);/** + */const SI=[["path",{d:"M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"157kva"}],["path",{d:"M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"d7q6m6"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z",key:"pr6s65"}]],sy=e("Dam",SI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 12a9 3 0 0 0 5 2.69",key:"1ui2ym"}],["path",{d:"M21 9.3V5",key:"6k6cib"}],["path",{d:"M3 5v14a9 3 0 0 0 6.47 2.88",key:"i62tjy"}],["path",{d:"M12 12v4h4",key:"1bxaet"}],["path",{d:"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16",key:"1f4ei9"}]],sy=e("DatabaseBackup",qI);/** + */const qI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 12a9 3 0 0 0 5 2.69",key:"1ui2ym"}],["path",{d:"M21 9.3V5",key:"6k6cib"}],["path",{d:"M3 5v14a9 3 0 0 0 6.47 2.88",key:"i62tjy"}],["path",{d:"M12 12v4h4",key:"1bxaet"}],["path",{d:"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16",key:"1f4ei9"}]],ly=e("DatabaseBackup",qI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 15 21.84",key:"14ibmq"}],["path",{d:"M21 5V8",key:"1marbg"}],["path",{d:"M21 12L18 17H22L19 22",key:"zafso"}],["path",{d:"M3 12A9 3 0 0 0 14.59 14.87",key:"1y4wr8"}]],ly=e("DatabaseZap",bI);/** + */const bI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 15 21.84",key:"14ibmq"}],["path",{d:"M21 5V8",key:"1marbg"}],["path",{d:"M21 12L18 17H22L19 22",key:"zafso"}],["path",{d:"M3 12A9 3 0 0 0 14.59 14.87",key:"1y4wr8"}]],uy=e("DatabaseZap",bI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $I=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]],uy=e("Database",$I);/** + */const $I=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]],My=e("Database",$I);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AI=[["path",{d:"M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z",key:"1yo7s0"}],["path",{d:"m12 9 6 6",key:"anjzzh"}],["path",{d:"m18 9-6 6",key:"1fp51s"}]],My=e("Delete",AI);/** + */const AI=[["path",{d:"M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z",key:"1yo7s0"}],["path",{d:"m12 9 6 6",key:"anjzzh"}],["path",{d:"m18 9-6 6",key:"1fp51s"}]],vy=e("Delete",AI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HI=[["circle",{cx:"12",cy:"4",r:"2",key:"muu5ef"}],["path",{d:"M10.2 3.2C5.5 4 2 8.1 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4 0c0-4.9-3.5-9-8.2-9.8",key:"lfo06j"}],["path",{d:"M3.2 14.8a9 9 0 0 0 17.6 0",key:"12xarc"}]],vy=e("Dessert",HI);/** + */const HI=[["circle",{cx:"12",cy:"4",r:"2",key:"muu5ef"}],["path",{d:"M10.2 3.2C5.5 4 2 8.1 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4 0c0-4.9-3.5-9-8.2-9.8",key:"lfo06j"}],["path",{d:"M3.2 14.8a9 9 0 0 0 17.6 0",key:"12xarc"}]],my=e("Dessert",HI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zI=[["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["circle",{cx:"5",cy:"5",r:"2",key:"1gwv83"}],["path",{d:"M6.48 3.66a10 10 0 0 1 13.86 13.86",key:"xr8kdq"}],["path",{d:"m6.41 6.41 11.18 11.18",key:"uhpjw7"}],["path",{d:"M3.66 6.48a10 10 0 0 0 13.86 13.86",key:"cldpwv"}]],my=e("Diameter",zI);/** + */const zI=[["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["circle",{cx:"5",cy:"5",r:"2",key:"1gwv83"}],["path",{d:"M6.48 3.66a10 10 0 0 1 13.86 13.86",key:"xr8kdq"}],["path",{d:"m6.41 6.41 11.18 11.18",key:"uhpjw7"}],["path",{d:"M3.66 6.48a10 10 0 0 0 13.86 13.86",key:"cldpwv"}]],_y=e("Diameter",zI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PI=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",key:"1ey20j"}],["path",{d:"M8 12h8",key:"1wcyev"}]],_y=e("DiamondMinus",PI);/** + */const PI=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",key:"1ey20j"}],["path",{d:"M8 12h8",key:"1wcyev"}]],gy=e("DiamondMinus",PI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -2163,182 +2163,182 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VI=[["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",key:"1ey20j"}],["path",{d:"M8 12h8",key:"1wcyev"}]],gy=e("DiamondPlus",VI);/** + */const VI=[["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z",key:"1ey20j"}],["path",{d:"M8 12h8",key:"1wcyev"}]],Ly=e("DiamondPlus",VI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BI=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z",key:"1f1r0c"}]],Ly=e("Diamond",BI);/** + */const BI=[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z",key:"1f1r0c"}]],xy=e("Diamond",BI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]],xy=e("Dice1",FI);/** + */const FI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]],wy=e("Dice1",FI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M15 9h.01",key:"x1ddxp"}],["path",{d:"M9 15h.01",key:"fzyn71"}]],wy=e("Dice2",DI);/** + */const DI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M15 9h.01",key:"x1ddxp"}],["path",{d:"M9 15h.01",key:"fzyn71"}]],fy=e("Dice2",DI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M8 16h.01",key:"18s6g9"}]],fy=e("Dice3",RI);/** + */const RI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M8 16h.01",key:"18s6g9"}]],Cy=e("Dice3",RI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 16h.01",key:"18s6g9"}],["path",{d:"M16 16h.01",key:"1f9h7w"}]],Cy=e("Dice4",TI);/** + */const TI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 16h.01",key:"18s6g9"}],["path",{d:"M16 16h.01",key:"1f9h7w"}]],Iy=e("Dice4",TI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 16h.01",key:"18s6g9"}],["path",{d:"M16 16h.01",key:"1f9h7w"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]],Iy=e("Dice5",UI);/** + */const UI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 16h.01",key:"18s6g9"}],["path",{d:"M16 16h.01",key:"1f9h7w"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]],Ny=e("Dice5",UI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M16 12h.01",key:"1l6xoz"}],["path",{d:"M16 16h.01",key:"1f9h7w"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M8 16h.01",key:"18s6g9"}]],Ny=e("Dice6",OI);/** + */const OI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M16 8h.01",key:"cr5u4v"}],["path",{d:"M16 12h.01",key:"1l6xoz"}],["path",{d:"M16 16h.01",key:"1f9h7w"}],["path",{d:"M8 8h.01",key:"1e4136"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M8 16h.01",key:"18s6g9"}]],Sy=e("Dice6",OI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZI=[["rect",{width:"12",height:"12",x:"2",y:"10",rx:"2",ry:"2",key:"6agr2n"}],["path",{d:"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6",key:"1o487t"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 14h.01",key:"ssrbsk"}],["path",{d:"M15 6h.01",key:"cblpky"}],["path",{d:"M18 9h.01",key:"2061c0"}]],Sy=e("Dices",ZI);/** + */const ZI=[["rect",{width:"12",height:"12",x:"2",y:"10",rx:"2",ry:"2",key:"6agr2n"}],["path",{d:"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6",key:"1o487t"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 14h.01",key:"ssrbsk"}],["path",{d:"M15 6h.01",key:"cblpky"}],["path",{d:"M18 9h.01",key:"2061c0"}]],qy=e("Dices",ZI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GI=[["path",{d:"M12 3v14",key:"7cf3v8"}],["path",{d:"M5 10h14",key:"elsbfy"}],["path",{d:"M5 21h14",key:"11awu3"}]],qy=e("Diff",GI);/** + */const GI=[["path",{d:"M12 3v14",key:"7cf3v8"}],["path",{d:"M5 10h14",key:"elsbfy"}],["path",{d:"M5 21h14",key:"11awu3"}]],by=e("Diff",GI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]],by=e("Disc2",WI);/** + */const WI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]],$y=e("Disc2",WI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const EI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M6 12c0-1.7.7-3.2 1.8-4.2",key:"oqkarx"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M18 12c0 1.7-.7 3.2-1.8 4.2",key:"1eah9h"}]],$y=e("Disc3",EI);/** + */const EI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M6 12c0-1.7.7-3.2 1.8-4.2",key:"oqkarx"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M18 12c0 1.7-.7 3.2-1.8 4.2",key:"1eah9h"}]],Ay=e("Disc3",EI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"12",r:"5",key:"nd82uf"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]],Ay=e("DiscAlbum",XI);/** + */const XI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"12",r:"5",key:"nd82uf"}],["path",{d:"M12 12h.01",key:"1mp3jc"}]],Hy=e("DiscAlbum",XI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]],Hy=e("Disc",KI);/** + */const KI=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]],zy=e("Disc",KI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JI=[["circle",{cx:"12",cy:"6",r:"1",key:"1bh7o1"}],["line",{x1:"5",x2:"19",y1:"12",y2:"12",key:"13b5wn"}],["circle",{cx:"12",cy:"18",r:"1",key:"lqb9t5"}]],zy=e("Divide",JI);/** + */const JI=[["circle",{cx:"12",cy:"6",r:"1",key:"1bh7o1"}],["line",{x1:"5",x2:"19",y1:"12",y2:"12",key:"13b5wn"}],["circle",{cx:"12",cy:"18",r:"1",key:"lqb9t5"}]],Py=e("Divide",JI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QI=[["path",{d:"M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8",key:"1bivrr"}],["path",{d:"m17 6-2.891-2.891",key:"xu6p2f"}],["path",{d:"M2 15c3.333-3 6.667-3 10-3",key:"nxix30"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"m20 9 .891.891",key:"3xwk7g"}],["path",{d:"M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1",key:"18cutr"}],["path",{d:"M3.109 14.109 4 15",key:"q76aoh"}],["path",{d:"m6.5 12.5 1 1",key:"cs35ky"}],["path",{d:"m7 18 2.891 2.891",key:"1sisit"}],["path",{d:"M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16",key:"rlvei3"}]],Py=e("DnaOff",QI);/** + */const QI=[["path",{d:"M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8",key:"1bivrr"}],["path",{d:"m17 6-2.891-2.891",key:"xu6p2f"}],["path",{d:"M2 15c3.333-3 6.667-3 10-3",key:"nxix30"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"m20 9 .891.891",key:"3xwk7g"}],["path",{d:"M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1",key:"18cutr"}],["path",{d:"M3.109 14.109 4 15",key:"q76aoh"}],["path",{d:"m6.5 12.5 1 1",key:"cs35ky"}],["path",{d:"m7 18 2.891 2.891",key:"1sisit"}],["path",{d:"M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16",key:"rlvei3"}]],jy=e("DnaOff",QI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YI=[["path",{d:"m10 16 1.5 1.5",key:"11lckj"}],["path",{d:"m14 8-1.5-1.5",key:"1ohn8i"}],["path",{d:"M15 2c-1.798 1.998-2.518 3.995-2.807 5.993",key:"80uv8i"}],["path",{d:"m16.5 10.5 1 1",key:"696xn5"}],["path",{d:"m17 6-2.891-2.891",key:"xu6p2f"}],["path",{d:"M2 15c6.667-6 13.333 0 20-6",key:"1pyr53"}],["path",{d:"m20 9 .891.891",key:"3xwk7g"}],["path",{d:"M3.109 14.109 4 15",key:"q76aoh"}],["path",{d:"m6.5 12.5 1 1",key:"cs35ky"}],["path",{d:"m7 18 2.891 2.891",key:"1sisit"}],["path",{d:"M9 22c1.798-1.998 2.518-3.995 2.807-5.993",key:"q3hbxp"}]],jy=e("Dna",YI);/** + */const YI=[["path",{d:"m10 16 1.5 1.5",key:"11lckj"}],["path",{d:"m14 8-1.5-1.5",key:"1ohn8i"}],["path",{d:"M15 2c-1.798 1.998-2.518 3.995-2.807 5.993",key:"80uv8i"}],["path",{d:"m16.5 10.5 1 1",key:"696xn5"}],["path",{d:"m17 6-2.891-2.891",key:"xu6p2f"}],["path",{d:"M2 15c6.667-6 13.333 0 20-6",key:"1pyr53"}],["path",{d:"m20 9 .891.891",key:"3xwk7g"}],["path",{d:"M3.109 14.109 4 15",key:"q76aoh"}],["path",{d:"m6.5 12.5 1 1",key:"cs35ky"}],["path",{d:"m7 18 2.891 2.891",key:"1sisit"}],["path",{d:"M9 22c1.798-1.998 2.518-3.995 2.807-5.993",key:"q3hbxp"}]],Vy=e("Dna",YI);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eN=[["path",{d:"M2 8h20",key:"d11cs7"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 16h12",key:"u522kt"}]],Vy=e("Dock",eN);/** + */const eN=[["path",{d:"M2 8h20",key:"d11cs7"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 16h12",key:"u522kt"}]],By=e("Dock",eN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aN=[["path",{d:"M11.25 16.25h1.5L12 17z",key:"w7jh35"}],["path",{d:"M16 14v.5",key:"1lajdz"}],["path",{d:"M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309",key:"u7s9ue"}],["path",{d:"M8 14v.5",key:"1nzgdb"}],["path",{d:"M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5",key:"v8hric"}]],By=e("Dog",aN);/** + */const aN=[["path",{d:"M11.25 16.25h1.5L12 17z",key:"w7jh35"}],["path",{d:"M16 14v.5",key:"1lajdz"}],["path",{d:"M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309",key:"u7s9ue"}],["path",{d:"M8 14v.5",key:"1nzgdb"}],["path",{d:"M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5",key:"v8hric"}]],Fy=e("Dog",aN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oN=[["path",{d:"M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3",key:"19sr3x"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],Fy=e("Donut",oN);/** + */const oN=[["path",{d:"M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3",key:"19sr3x"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],Dy=e("Donut",oN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cN=[["path",{d:"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14",key:"36qu9e"}],["path",{d:"M2 20h20",key:"owomy5"}],["path",{d:"M14 12v.01",key:"xfcn54"}]],Dy=e("DoorClosed",cN);/** + */const cN=[["path",{d:"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14",key:"36qu9e"}],["path",{d:"M2 20h20",key:"owomy5"}],["path",{d:"M14 12v.01",key:"xfcn54"}]],Ry=e("DoorClosed",cN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tN=[["path",{d:"M13 4h3a2 2 0 0 1 2 2v14",key:"hrm0s9"}],["path",{d:"M2 20h3",key:"1gaodv"}],["path",{d:"M13 20h9",key:"s90cdi"}],["path",{d:"M10 12v.01",key:"vx6srw"}],["path",{d:"M13 4.562v16.157a1 1 0 0 1-1.242.97L5 20V5.562a2 2 0 0 1 1.515-1.94l4-1A2 2 0 0 1 13 4.561Z",key:"199qr4"}]],Ry=e("DoorOpen",tN);/** + */const tN=[["path",{d:"M13 4h3a2 2 0 0 1 2 2v14",key:"hrm0s9"}],["path",{d:"M2 20h3",key:"1gaodv"}],["path",{d:"M13 20h9",key:"s90cdi"}],["path",{d:"M10 12v.01",key:"vx6srw"}],["path",{d:"M13 4.562v16.157a1 1 0 0 1-1.242.97L5 20V5.562a2 2 0 0 1 1.515-1.94l4-1A2 2 0 0 1 13 4.561Z",key:"199qr4"}]],Ty=e("DoorOpen",tN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nN=[["circle",{cx:"12.1",cy:"12.1",r:"1",key:"18d7e5"}]],Ty=e("Dot",nN);/** + */const nN=[["circle",{cx:"12.1",cy:"12.1",r:"1",key:"18d7e5"}]],Uy=e("Dot",nN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dN=[["path",{d:"m12.99 6.74 1.93 3.44",key:"iwagvd"}],["path",{d:"M19.136 12a10 10 0 0 1-14.271 0",key:"ppmlo4"}],["path",{d:"m21 21-2.16-3.84",key:"vylbct"}],["path",{d:"m3 21 8.02-14.26",key:"1ssaw4"}],["circle",{cx:"12",cy:"5",r:"2",key:"f1ur92"}]],Uy=e("DraftingCompass",dN);/** + */const dN=[["path",{d:"m12.99 6.74 1.93 3.44",key:"iwagvd"}],["path",{d:"M19.136 12a10 10 0 0 1-14.271 0",key:"ppmlo4"}],["path",{d:"m21 21-2.16-3.84",key:"vylbct"}],["path",{d:"m3 21 8.02-14.26",key:"1ssaw4"}],["circle",{cx:"12",cy:"5",r:"2",key:"f1ur92"}]],Oy=e("DraftingCompass",dN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iN=[["path",{d:"M10 11h.01",key:"d2at3l"}],["path",{d:"M14 6h.01",key:"k028ub"}],["path",{d:"M18 6h.01",key:"1v4wsw"}],["path",{d:"M6.5 13.1h.01",key:"1748ia"}],["path",{d:"M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3",key:"172yzv"}],["path",{d:"M17.4 9.9c-.8.8-2 .8-2.8 0",key:"1obv0w"}],["path",{d:"M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7",key:"rqjl8i"}],["path",{d:"M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4",key:"1mr6wy"}]],Oy=e("Drama",iN);/** + */const iN=[["path",{d:"M10 11h.01",key:"d2at3l"}],["path",{d:"M14 6h.01",key:"k028ub"}],["path",{d:"M18 6h.01",key:"1v4wsw"}],["path",{d:"M6.5 13.1h.01",key:"1748ia"}],["path",{d:"M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3",key:"172yzv"}],["path",{d:"M17.4 9.9c-.8.8-2 .8-2.8 0",key:"1obv0w"}],["path",{d:"M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7",key:"rqjl8i"}],["path",{d:"M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4",key:"1mr6wy"}]],Zy=e("Drama",iN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hN=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94",key:"hpej1"}],["path",{d:"M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32",key:"1tr44o"}],["path",{d:"M8.56 2.75c4.37 6 6 9.42 8 17.72",key:"kbh691"}]],Zy=e("Dribbble",hN);/** + */const hN=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94",key:"hpej1"}],["path",{d:"M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32",key:"1tr44o"}],["path",{d:"M8.56 2.75c4.37 6 6 9.42 8 17.72",key:"kbh691"}]],Gy=e("Dribbble",hN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yN=[["path",{d:"M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z",key:"ioqxb1"}],["path",{d:"M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8",key:"1rs59n"}],["path",{d:"M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3",key:"105ega"}],["path",{d:"M18 6h4",key:"66u95g"}],["path",{d:"m5 10-2 8",key:"xt2lic"}],["path",{d:"m7 18 2-8",key:"1bzku2"}]],Gy=e("Drill",yN);/** + */const yN=[["path",{d:"M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z",key:"ioqxb1"}],["path",{d:"M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8",key:"1rs59n"}],["path",{d:"M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3",key:"105ega"}],["path",{d:"M18 6h4",key:"66u95g"}],["path",{d:"m5 10-2 8",key:"xt2lic"}],["path",{d:"m7 18 2-8",key:"1bzku2"}]],Wy=e("Drill",yN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rN=[["path",{d:"M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586",key:"8suz2t"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208",key:"19dw9m"}]],Wy=e("DropletOff",rN);/** + */const rN=[["path",{d:"M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586",key:"8suz2t"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208",key:"19dw9m"}]],Ey=e("DropletOff",rN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kN=[["path",{d:"M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z",key:"c7niix"}]],Ey=e("Droplet",kN);/** + */const kN=[["path",{d:"M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z",key:"c7niix"}]],Xy=e("Droplet",kN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pN=[["path",{d:"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z",key:"1ptgy4"}],["path",{d:"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97",key:"1sl1rz"}]],Xy=e("Droplets",pN);/** + */const pN=[["path",{d:"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z",key:"1ptgy4"}],["path",{d:"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97",key:"1sl1rz"}]],Ky=e("Droplets",pN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sN=[["path",{d:"m2 2 8 8",key:"1v6059"}],["path",{d:"m22 2-8 8",key:"173r8a"}],["ellipse",{cx:"12",cy:"9",rx:"10",ry:"5",key:"liohsx"}],["path",{d:"M7 13.4v7.9",key:"1yi6u9"}],["path",{d:"M12 14v8",key:"1tn2tj"}],["path",{d:"M17 13.4v7.9",key:"eqz2v3"}],["path",{d:"M2 9v8a10 5 0 0 0 20 0V9",key:"1750ul"}]],Ky=e("Drum",sN);/** + */const sN=[["path",{d:"m2 2 8 8",key:"1v6059"}],["path",{d:"m22 2-8 8",key:"173r8a"}],["ellipse",{cx:"12",cy:"9",rx:"10",ry:"5",key:"liohsx"}],["path",{d:"M7 13.4v7.9",key:"1yi6u9"}],["path",{d:"M12 14v8",key:"1tn2tj"}],["path",{d:"M17 13.4v7.9",key:"eqz2v3"}],["path",{d:"M2 9v8a10 5 0 0 0 20 0V9",key:"1750ul"}]],Jy=e("Drum",sN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lN=[["path",{d:"M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23",key:"1dtqwm"}],["path",{d:"m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59",key:"1oq1fw"}]],Jy=e("Drumstick",lN);/** + */const lN=[["path",{d:"M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23",key:"1dtqwm"}],["path",{d:"m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59",key:"1oq1fw"}]],Qy=e("Drumstick",lN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uN=[["path",{d:"M14.4 14.4 9.6 9.6",key:"ic80wn"}],["path",{d:"M18.657 21.485a2 2 0 1 1-2.829-2.828l-1.767 1.768a2 2 0 1 1-2.829-2.829l6.364-6.364a2 2 0 1 1 2.829 2.829l-1.768 1.767a2 2 0 1 1 2.828 2.829z",key:"nnl7wr"}],["path",{d:"m21.5 21.5-1.4-1.4",key:"1f1ice"}],["path",{d:"M3.9 3.9 2.5 2.5",key:"1evmna"}],["path",{d:"M6.404 12.768a2 2 0 1 1-2.829-2.829l1.768-1.767a2 2 0 1 1-2.828-2.829l2.828-2.828a2 2 0 1 1 2.829 2.828l1.767-1.768a2 2 0 1 1 2.829 2.829z",key:"yhosts"}]],Qy=e("Dumbbell",uN);/** + */const uN=[["path",{d:"M14.4 14.4 9.6 9.6",key:"ic80wn"}],["path",{d:"M18.657 21.485a2 2 0 1 1-2.829-2.828l-1.767 1.768a2 2 0 1 1-2.829-2.829l6.364-6.364a2 2 0 1 1 2.829 2.829l-1.768 1.767a2 2 0 1 1 2.828 2.829z",key:"nnl7wr"}],["path",{d:"m21.5 21.5-1.4-1.4",key:"1f1ice"}],["path",{d:"M3.9 3.9 2.5 2.5",key:"1evmna"}],["path",{d:"M6.404 12.768a2 2 0 1 1-2.829-2.829l1.768-1.767a2 2 0 1 1-2.828-2.829l2.828-2.828a2 2 0 1 1 2.829 2.828l1.767-1.768a2 2 0 1 1 2.829 2.829z",key:"yhosts"}]],Yy=e("Dumbbell",uN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MN=[["path",{d:"M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46",key:"1qngmn"}],["path",{d:"M6 8.5c0-.75.13-1.47.36-2.14",key:"b06bma"}],["path",{d:"M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76",key:"g10hsz"}],["path",{d:"M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18",key:"ygzou7"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Yy=e("EarOff",MN);/** + */const MN=[["path",{d:"M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46",key:"1qngmn"}],["path",{d:"M6 8.5c0-.75.13-1.47.36-2.14",key:"b06bma"}],["path",{d:"M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76",key:"g10hsz"}],["path",{d:"M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18",key:"ygzou7"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],er=e("EarOff",MN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vN=[["path",{d:"M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0",key:"1dfaln"}],["path",{d:"M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4",key:"1qnva7"}]],er=e("Ear",vN);/** + */const vN=[["path",{d:"M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0",key:"1dfaln"}],["path",{d:"M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4",key:"1qnva7"}]],ar=e("Ear",vN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mN=[["path",{d:"M7 3.34V5a3 3 0 0 0 3 3",key:"w732o8"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05",key:"f02343"}],["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54",key:"1djwo0"}],["path",{d:"M12 2a10 10 0 1 0 9.54 13",key:"zjsr6q"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2",key:"1of5e8"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1",key:"1fmf51"}]],ar=e("EarthLock",mN);/** + */const mN=[["path",{d:"M7 3.34V5a3 3 0 0 0 3 3",key:"w732o8"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05",key:"f02343"}],["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54",key:"1djwo0"}],["path",{d:"M12 2a10 10 0 1 0 9.54 13",key:"zjsr6q"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2",key:"1of5e8"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1",key:"1fmf51"}]],or=e("EarthLock",mN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -2348,22 +2348,22 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gN=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a7 7 0 1 0 10 10",key:"1yuj32"}]],or=e("Eclipse",gN);/** + */const gN=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a7 7 0 1 0 10 10",key:"1yuj32"}]],cr=e("Eclipse",gN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LN=[["circle",{cx:"11.5",cy:"12.5",r:"3.5",key:"1cl1mi"}],["path",{d:"M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z",key:"165ef9"}]],cr=e("EggFried",LN);/** + */const LN=[["circle",{cx:"11.5",cy:"12.5",r:"3.5",key:"1cl1mi"}],["path",{d:"M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z",key:"165ef9"}]],tr=e("EggFried",LN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xN=[["path",{d:"M6.399 6.399C5.362 8.157 4.65 10.189 4.5 12c-.37 4.43 1.27 9.95 7.5 10 3.256-.026 5.259-1.547 6.375-3.625",key:"6et380"}],["path",{d:"M19.532 13.875A14.07 14.07 0 0 0 19.5 12c-.36-4.34-3.95-9.96-7.5-10-1.04.012-2.082.502-3.046 1.297",key:"gcdc3f"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],tr=e("EggOff",xN);/** + */const xN=[["path",{d:"M6.399 6.399C5.362 8.157 4.65 10.189 4.5 12c-.37 4.43 1.27 9.95 7.5 10 3.256-.026 5.259-1.547 6.375-3.625",key:"6et380"}],["path",{d:"M19.532 13.875A14.07 14.07 0 0 0 19.5 12c-.36-4.34-3.95-9.96-7.5-10-1.04.012-2.082.502-3.046 1.297",key:"gcdc3f"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],nr=e("EggOff",xN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wN=[["path",{d:"M12 22c6.23-.05 7.87-5.57 7.5-10-.36-4.34-3.95-9.96-7.5-10-3.55.04-7.14 5.66-7.5 10-.37 4.43 1.27 9.95 7.5 10z",key:"1c39pg"}]],nr=e("Egg",wN);/** + */const wN=[["path",{d:"M12 22c6.23-.05 7.87-5.57 7.5-10-.36-4.34-3.95-9.96-7.5-10-3.55.04-7.14 5.66-7.5 10-.37 4.43 1.27 9.95 7.5 10z",key:"1c39pg"}]],dr=e("Egg",wN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -2378,92 +2378,92 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IN=[["path",{d:"M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0",key:"yrdkhy"}],["path",{d:"M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0",key:"gzkvyz"}]],dr=e("EqualApproximately",IN);/** + */const IN=[["path",{d:"M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0",key:"yrdkhy"}],["path",{d:"M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0",key:"gzkvyz"}]],ir=e("EqualApproximately",IN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NN=[["line",{x1:"5",x2:"19",y1:"9",y2:"9",key:"1nwqeh"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15",key:"g8yjpy"}],["line",{x1:"19",x2:"5",y1:"5",y2:"19",key:"1x9vlm"}]],ir=e("EqualNot",NN);/** + */const NN=[["line",{x1:"5",x2:"19",y1:"9",y2:"9",key:"1nwqeh"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15",key:"g8yjpy"}],["line",{x1:"19",x2:"5",y1:"5",y2:"19",key:"1x9vlm"}]],hr=e("EqualNot",NN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SN=[["line",{x1:"5",x2:"19",y1:"9",y2:"9",key:"1nwqeh"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15",key:"g8yjpy"}]],hr=e("Equal",SN);/** + */const SN=[["line",{x1:"5",x2:"19",y1:"9",y2:"9",key:"1nwqeh"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15",key:"g8yjpy"}]],yr=e("Equal",SN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qN=[["path",{d:"m7 21-4.3-4.3c-1-1-1-2.5 0-3.4l9.6-9.6c1-1 2.5-1 3.4 0l5.6 5.6c1 1 1 2.5 0 3.4L13 21",key:"182aya"}],["path",{d:"M22 21H7",key:"t4ddhn"}],["path",{d:"m5 11 9 9",key:"1mo9qw"}]],yr=e("Eraser",qN);/** + */const qN=[["path",{d:"m7 21-4.3-4.3c-1-1-1-2.5 0-3.4l9.6-9.6c1-1 2.5-1 3.4 0l5.6 5.6c1 1 1 2.5 0 3.4L13 21",key:"182aya"}],["path",{d:"M22 21H7",key:"t4ddhn"}],["path",{d:"m5 11 9 9",key:"1mo9qw"}]],rr=e("Eraser",qN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bN=[["path",{d:"m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z",key:"rbahqx"}],["path",{d:"M6 8v1",key:"1636ez"}],["path",{d:"M10 8v1",key:"1talb4"}],["path",{d:"M14 8v1",key:"1rsfgr"}],["path",{d:"M18 8v1",key:"gnkwox"}]],rr=e("EthernetPort",bN);/** + */const bN=[["path",{d:"m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z",key:"rbahqx"}],["path",{d:"M6 8v1",key:"1636ez"}],["path",{d:"M10 8v1",key:"1talb4"}],["path",{d:"M14 8v1",key:"1rsfgr"}],["path",{d:"M18 8v1",key:"gnkwox"}]],kr=e("EthernetPort",bN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $N=[["path",{d:"M4 10h12",key:"1y6xl8"}],["path",{d:"M4 14h9",key:"1loblj"}],["path",{d:"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2",key:"1j6lzo"}]],kr=e("Euro",$N);/** + */const $N=[["path",{d:"M4 10h12",key:"1y6xl8"}],["path",{d:"M4 14h9",key:"1loblj"}],["path",{d:"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2",key:"1j6lzo"}]],pr=e("Euro",$N);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AN=[["path",{d:"m15 15 6 6",key:"1s409w"}],["path",{d:"m15 9 6-6",key:"ko1vev"}],["path",{d:"M21 16.2V21h-4.8",key:"1hrera"}],["path",{d:"M21 7.8V3h-4.8",key:"ul1q53"}],["path",{d:"M3 16.2V21h4.8",key:"1x04uo"}],["path",{d:"m3 21 6-6",key:"wwnumi"}],["path",{d:"M3 7.8V3h4.8",key:"1ijppm"}],["path",{d:"M9 9 3 3",key:"v551iv"}]],pr=e("Expand",AN);/** + */const AN=[["path",{d:"m15 15 6 6",key:"1s409w"}],["path",{d:"m15 9 6-6",key:"ko1vev"}],["path",{d:"M21 16.2V21h-4.8",key:"1hrera"}],["path",{d:"M21 7.8V3h-4.8",key:"ul1q53"}],["path",{d:"M3 16.2V21h4.8",key:"1x04uo"}],["path",{d:"m3 21 6-6",key:"wwnumi"}],["path",{d:"M3 7.8V3h4.8",key:"1ijppm"}],["path",{d:"M9 9 3 3",key:"v551iv"}]],sr=e("Expand",AN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HN=[["path",{d:"m15 18-.722-3.25",key:"1j64jw"}],["path",{d:"M2 8a10.645 10.645 0 0 0 20 0",key:"1e7gxb"}],["path",{d:"m20 15-1.726-2.05",key:"1cnuld"}],["path",{d:"m4 15 1.726-2.05",key:"1dsqqd"}],["path",{d:"m9 18 .722-3.25",key:"ypw2yx"}]],sr=e("EyeClosed",HN);/** + */const HN=[["path",{d:"m15 18-.722-3.25",key:"1j64jw"}],["path",{d:"M2 8a10.645 10.645 0 0 0 20 0",key:"1e7gxb"}],["path",{d:"m20 15-1.726-2.05",key:"1cnuld"}],["path",{d:"m4 15 1.726-2.05",key:"1dsqqd"}],["path",{d:"m9 18 .722-3.25",key:"ypw2yx"}]],lr=e("EyeClosed",HN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zN=[["path",{d:"M2 20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8l-7 5V8l-7 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"159hny"}],["path",{d:"M17 18h1",key:"uldtlt"}],["path",{d:"M12 18h1",key:"s9uhes"}],["path",{d:"M7 18h1",key:"1neino"}]],lr=e("Factory",zN);/** + */const zN=[["path",{d:"M2 20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8l-7 5V8l-7 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"159hny"}],["path",{d:"M17 18h1",key:"uldtlt"}],["path",{d:"M12 18h1",key:"s9uhes"}],["path",{d:"M7 18h1",key:"1neino"}]],ur=e("Factory",zN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PN=[["path",{d:"M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z",key:"484a7f"}],["path",{d:"M12 12v.01",key:"u5ubse"}]],ur=e("Fan",PN);/** + */const PN=[["path",{d:"M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z",key:"484a7f"}],["path",{d:"M12 12v.01",key:"u5ubse"}]],Mr=e("Fan",PN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jN=[["polygon",{points:"13 19 22 12 13 5 13 19",key:"587y9g"}],["polygon",{points:"2 19 11 12 2 5 2 19",key:"3pweh0"}]],Mr=e("FastForward",jN);/** + */const jN=[["polygon",{points:"13 19 22 12 13 5 13 19",key:"587y9g"}],["polygon",{points:"2 19 11 12 2 5 2 19",key:"3pweh0"}]],vr=e("FastForward",jN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VN=[["path",{d:"M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z",key:"18jl4k"}],["path",{d:"M16 8 2 22",key:"vp34q"}],["path",{d:"M17.5 15H9",key:"1oz8nu"}]],vr=e("Feather",VN);/** + */const VN=[["path",{d:"M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z",key:"18jl4k"}],["path",{d:"M16 8 2 22",key:"vp34q"}],["path",{d:"M17.5 15H9",key:"1oz8nu"}]],mr=e("Feather",VN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BN=[["path",{d:"M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"1n2rgs"}],["path",{d:"M6 8h4",key:"utf9t1"}],["path",{d:"M6 18h4",key:"12yh4b"}],["path",{d:"m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"3ha7mj"}],["path",{d:"M14 8h4",key:"1r8wg2"}],["path",{d:"M14 18h4",key:"1t3kbu"}],["path",{d:"m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"dfd4e2"}]],mr=e("Fence",BN);/** + */const BN=[["path",{d:"M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"1n2rgs"}],["path",{d:"M6 8h4",key:"utf9t1"}],["path",{d:"M6 18h4",key:"12yh4b"}],["path",{d:"m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"3ha7mj"}],["path",{d:"M14 8h4",key:"1r8wg2"}],["path",{d:"M14 18h4",key:"1t3kbu"}],["path",{d:"m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z",key:"dfd4e2"}]],_r=e("Fence",BN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FN=[["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m6.8 15-3.5 2",key:"hjy98k"}],["path",{d:"m20.7 7-3.5 2",key:"f08gto"}],["path",{d:"M6.8 9 3.3 7",key:"1aevh4"}],["path",{d:"m20.7 17-3.5-2",key:"1liqo3"}],["path",{d:"m9 22 3-8 3 8",key:"wees03"}],["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M18 18.7a9 9 0 1 0-12 0",key:"dhzg4g"}]],_r=e("FerrisWheel",FN);/** + */const FN=[["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m6.8 15-3.5 2",key:"hjy98k"}],["path",{d:"m20.7 7-3.5 2",key:"f08gto"}],["path",{d:"M6.8 9 3.3 7",key:"1aevh4"}],["path",{d:"m20.7 17-3.5-2",key:"1liqo3"}],["path",{d:"m9 22 3-8 3 8",key:"wees03"}],["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M18 18.7a9 9 0 1 0-12 0",key:"dhzg4g"}]],gr=e("FerrisWheel",FN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DN=[["path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z",key:"1340ok"}],["path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z",key:"1hz3m3"}],["path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z",key:"1oz8n2"}],["path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z",key:"1ff65i"}],["path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z",key:"pdip6e"}]],gr=e("Figma",DN);/** + */const DN=[["path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z",key:"1340ok"}],["path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z",key:"1hz3m3"}],["path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z",key:"1oz8n2"}],["path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z",key:"1ff65i"}],["path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z",key:"pdip6e"}]],Lr=e("Figma",DN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RN=[["path",{d:"M10 12v-1",key:"v7bkov"}],["path",{d:"M10 18v-2",key:"1cjy8d"}],["path",{d:"M10 7V6",key:"dljcrl"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01",key:"gkbcor"}],["circle",{cx:"10",cy:"20",r:"2",key:"1xzdoj"}]],Lr=e("FileArchive",RN);/** + */const RN=[["path",{d:"M10 12v-1",key:"v7bkov"}],["path",{d:"M10 18v-2",key:"1cjy8d"}],["path",{d:"M10 7V6",key:"dljcrl"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01",key:"gkbcor"}],["circle",{cx:"10",cy:"20",r:"2",key:"1xzdoj"}]],xr=e("FileArchive",RN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2",key:"17k7jt"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["circle",{cx:"3",cy:"17",r:"1",key:"vo6nti"}],["path",{d:"M2 17v-3a4 4 0 0 1 8 0v3",key:"1ggdre"}],["circle",{cx:"9",cy:"17",r:"1",key:"bc1fq4"}]],xr=e("FileAudio2",TN);/** + */const TN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2",key:"17k7jt"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["circle",{cx:"3",cy:"17",r:"1",key:"vo6nti"}],["path",{d:"M2 17v-3a4 4 0 0 1 8 0v3",key:"1ggdre"}],["circle",{cx:"9",cy:"17",r:"1",key:"bc1fq4"}]],wr=e("FileAudio2",TN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UN=[["path",{d:"M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3",key:"rslqgf"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0",key:"9f7x3i"}]],wr=e("FileAudio",UN);/** + */const UN=[["path",{d:"M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3",key:"rslqgf"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0",key:"9f7x3i"}]],fr=e("FileAudio",UN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -2473,17 +2473,17 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m14 12.5 1 5.5-3-1-3 1 1-5.5",key:"14xlky"}]],fr=e("FileBadge2",ZN);/** + */const ZN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m14 12.5 1 5.5-3-1-3 1 1-5.5",key:"14xlky"}]],Cr=e("FileBadge2",ZN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GN=[["path",{d:"M12 22h6a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3",key:"12ixgl"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M5 17a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z",key:"u0c8gj"}],["path",{d:"M7 16.5 8 22l-3-1-3 1 1-5.5",key:"5gm2nr"}]],Cr=e("FileBadge",GN);/** + */const GN=[["path",{d:"M12 22h6a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3",key:"12ixgl"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M5 17a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z",key:"u0c8gj"}],["path",{d:"M7 16.5 8 22l-3-1-3 1 1-5.5",key:"5gm2nr"}]],Ir=e("FileBadge",GN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WN=[["path",{d:"M14.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"16lz6z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M3 13.1a2 2 0 0 0-1 1.76v3.24a2 2 0 0 0 .97 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01Z",key:"99pj1s"}],["path",{d:"M7 17v5",key:"1yj1jh"}],["path",{d:"M11.7 14.2 7 17l-4.7-2.8",key:"1yk8tc"}]],Ir=e("FileBox",WN);/** + */const WN=[["path",{d:"M14.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"16lz6z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M3 13.1a2 2 0 0 0-1 1.76v3.24a2 2 0 0 0 .97 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01Z",key:"99pj1s"}],["path",{d:"M7 17v5",key:"1yj1jh"}],["path",{d:"M11.7 14.2 7 17l-4.7-2.8",key:"1yk8tc"}]],Nr=e("FileBox",WN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -2508,27 +2508,27 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m3 15 2 2 4-4",key:"1lhrkk"}]],Nr=e("FileCheck2",QN);/** + */const QN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m3 15 2 2 4-4",key:"1lhrkk"}]],Sr=e("FileCheck2",QN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m9 15 2 2 4-4",key:"1grp1n"}]],Sr=e("FileCheck",YN);/** + */const YN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m9 15 2 2 4-4",key:"1grp1n"}]],qr=e("FileCheck",YN);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eS=[["path",{d:"M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3",key:"37hlfg"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["circle",{cx:"8",cy:"16",r:"6",key:"10v15b"}],["path",{d:"M9.5 17.5 8 16.25V14",key:"1o80t2"}]],qr=e("FileClock",eS);/** + */const eS=[["path",{d:"M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3",key:"37hlfg"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["circle",{cx:"8",cy:"16",r:"6",key:"10v15b"}],["path",{d:"M9.5 17.5 8 16.25V14",key:"1o80t2"}]],br=e("FileClock",eS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m5 12-3 3 3 3",key:"oke12k"}],["path",{d:"m9 18 3-3-3-3",key:"112psh"}]],br=e("FileCode2",aS);/** + */const aS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m5 12-3 3 3 3",key:"oke12k"}],["path",{d:"m9 18 3-3-3-3",key:"112psh"}]],$r=e("FileCode2",aS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oS=[["path",{d:"M10 12.5 8 15l2 2.5",key:"1tg20x"}],["path",{d:"m14 12.5 2 2.5-2 2.5",key:"yinavb"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z",key:"1mlx9k"}]],$r=e("FileCode",oS);/** + */const oS=[["path",{d:"M10 12.5 8 15l2 2.5",key:"1tg20x"}],["path",{d:"m14 12.5 2 2.5-2 2.5",key:"yinavb"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z",key:"1mlx9k"}]],Ar=e("FileCode",oS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -2538,77 +2538,77 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M9 10h6",key:"9gxzsh"}],["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M9 17h6",key:"r8uit2"}]],Ar=e("FileDiff",tS);/** + */const tS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M9 10h6",key:"9gxzsh"}],["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"M9 17h6",key:"r8uit2"}]],Hr=e("FileDiff",tS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["rect",{width:"4",height:"6",x:"2",y:"12",rx:"2",key:"jm304g"}],["path",{d:"M10 12h2v6",key:"12zw74"}],["path",{d:"M10 18h4",key:"1ulq68"}]],Hr=e("FileDigit",nS);/** + */const nS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["rect",{width:"4",height:"6",x:"2",y:"12",rx:"2",key:"jm304g"}],["path",{d:"M10 12h2v6",key:"12zw74"}],["path",{d:"M10 18h4",key:"1ulq68"}]],zr=e("FileDigit",nS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2",key:"17k7jt"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10.29 10.7a2.43 2.43 0 0 0-2.66-.52c-.29.12-.56.3-.78.53l-.35.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L6.5 18l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z",key:"1c1fso"}]],zr=e("FileHeart",dS);/** + */const dS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2",key:"17k7jt"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10.29 10.7a2.43 2.43 0 0 0-2.66-.52c-.29.12-.56.3-.78.53l-.35.34-.35-.34a2.43 2.43 0 0 0-2.65-.53c-.3.12-.56.3-.79.53-.95.94-1 2.53.2 3.74L6.5 18l3.6-3.55c1.2-1.21 1.14-2.8.19-3.74Z",key:"1c1fso"}]],Pr=e("FileHeart",dS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["circle",{cx:"10",cy:"12",r:"2",key:"737tya"}],["path",{d:"m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22",key:"wt3hpn"}]],Pr=e("FileImage",iS);/** + */const iS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["circle",{cx:"10",cy:"12",r:"2",key:"737tya"}],["path",{d:"m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22",key:"wt3hpn"}]],jr=e("FileImage",iS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M2 15h10",key:"jfw4w8"}],["path",{d:"m9 18 3-3-3-3",key:"112psh"}]],jr=e("FileInput",hS);/** + */const hS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M2 15h10",key:"jfw4w8"}],["path",{d:"m9 18 3-3-3-3",key:"112psh"}]],Vr=e("FileInput",hS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1",key:"fq0c9t"}],["path",{d:"M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1",key:"4gibmv"}]],Vr=e("FileJson2",yS);/** + */const yS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1",key:"fq0c9t"}],["path",{d:"M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1",key:"4gibmv"}]],Br=e("FileJson2",yS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1",key:"1oajmo"}],["path",{d:"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1",key:"mpwhp6"}]],Br=e("FileJson",rS);/** + */const rS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1",key:"1oajmo"}],["path",{d:"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1",key:"mpwhp6"}]],Fr=e("FileJson",rS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v6",key:"rc0qvx"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["circle",{cx:"4",cy:"16",r:"2",key:"1ehqvc"}],["path",{d:"m10 10-4.5 4.5",key:"7fwrp6"}],["path",{d:"m9 11 1 1",key:"wa6s5q"}]],Fr=e("FileKey2",kS);/** + */const kS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v6",key:"rc0qvx"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["circle",{cx:"4",cy:"16",r:"2",key:"1ehqvc"}],["path",{d:"m10 10-4.5 4.5",key:"7fwrp6"}],["path",{d:"m9 11 1 1",key:"wa6s5q"}]],Dr=e("FileKey2",kS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["circle",{cx:"10",cy:"16",r:"2",key:"4ckbqe"}],["path",{d:"m16 10-4.5 4.5",key:"7p3ebg"}],["path",{d:"m15 11 1 1",key:"1bsyx3"}]],Dr=e("FileKey",pS);/** + */const pS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["circle",{cx:"10",cy:"16",r:"2",key:"4ckbqe"}],["path",{d:"m16 10-4.5 4.5",key:"7p3ebg"}],["path",{d:"m15 11 1 1",key:"1bsyx3"}]],Rr=e("FileKey",pS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v1",key:"jmtmu2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["rect",{width:"8",height:"5",x:"2",y:"13",rx:"1",key:"10y5wo"}],["path",{d:"M8 13v-2a2 2 0 1 0-4 0v2",key:"1pdxzg"}]],Rr=e("FileLock2",sS);/** + */const sS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v1",key:"jmtmu2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["rect",{width:"8",height:"5",x:"2",y:"13",rx:"1",key:"10y5wo"}],["path",{d:"M8 13v-2a2 2 0 1 0-4 0v2",key:"1pdxzg"}]],Tr=e("FileLock2",sS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["rect",{width:"8",height:"6",x:"8",y:"12",rx:"1",key:"3yr8at"}],["path",{d:"M10 12v-2a2 2 0 1 1 4 0v2",key:"j4i8d"}]],Tr=e("FileLock",lS);/** + */const lS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["rect",{width:"8",height:"6",x:"8",y:"12",rx:"1",key:"3yr8at"}],["path",{d:"M10 12v-2a2 2 0 1 1 4 0v2",key:"j4i8d"}]],Ur=e("FileLock",lS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M3 15h6",key:"4e2qda"}]],Ur=e("FileMinus2",uS);/** + */const uS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M3 15h6",key:"4e2qda"}]],Or=e("FileMinus2",uS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M9 15h6",key:"cctwl0"}]],Or=e("FileMinus",MS);/** + */const MS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M9 15h6",key:"cctwl0"}]],Zr=e("FileMinus",MS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vS=[["path",{d:"M10.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v8.4",key:"1d3kfm"}],["path",{d:"M8 18v-7.7L16 9v7",key:"1oie6o"}],["circle",{cx:"14",cy:"16",r:"2",key:"1bzzi3"}],["circle",{cx:"6",cy:"18",r:"2",key:"1fncim"}]],Zr=e("FileMusic",vS);/** + */const vS=[["path",{d:"M10.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v8.4",key:"1d3kfm"}],["path",{d:"M8 18v-7.7L16 9v7",key:"1oie6o"}],["circle",{cx:"14",cy:"16",r:"2",key:"1bzzi3"}],["circle",{cx:"6",cy:"18",r:"2",key:"1fncim"}]],Gr=e("FileMusic",vS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mS=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M4 7V4a2 2 0 0 1 2-2 2 2 0 0 0-2 2",key:"1vk7w2"}],["path",{d:"M4.063 20.999a2 2 0 0 0 2 1L18 22a2 2 0 0 0 2-2V7l-5-5H6",key:"1jink5"}],["path",{d:"m5 11-3 3",key:"1dgrs4"}],["path",{d:"m5 17-3-3h10",key:"1mvvaf"}]],Gr=e("FileOutput",mS);/** + */const mS=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M4 7V4a2 2 0 0 1 2-2 2 2 0 0 0-2 2",key:"1vk7w2"}],["path",{d:"M4.063 20.999a2 2 0 0 0 2 1L18 22a2 2 0 0 0 2-2V7l-5-5H6",key:"1jink5"}],["path",{d:"m5 11-3 3",key:"1dgrs4"}],["path",{d:"m5 17-3-3h10",key:"1mvvaf"}]],Wr=e("FileOutput",mS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -2623,267 +2623,267 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M3 15h6",key:"4e2qda"}],["path",{d:"M6 12v6",key:"1u72j0"}]],Wr=e("FilePlus2",LS);/** + */const LS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M3 15h6",key:"4e2qda"}],["path",{d:"M6 12v6",key:"1u72j0"}]],Er=e("FilePlus2",LS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M9 15h6",key:"cctwl0"}],["path",{d:"M12 18v-6",key:"17g6i2"}]],Er=e("FilePlus",xS);/** + */const xS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M9 15h6",key:"cctwl0"}],["path",{d:"M12 18v-6",key:"17g6i2"}]],Xr=e("FilePlus",xS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wS=[["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z",key:"1mlx9k"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3",key:"mhlwft"}]],Xr=e("FileQuestion",wS);/** + */const wS=[["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z",key:"1mlx9k"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3",key:"mhlwft"}]],Kr=e("FileQuestion",wS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fS=[["path",{d:"M20 10V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4",key:"1rdf37"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M16 14a2 2 0 0 0-2 2",key:"ceaadl"}],["path",{d:"M20 14a2 2 0 0 1 2 2",key:"1ny6zw"}],["path",{d:"M20 22a2 2 0 0 0 2-2",key:"1l9q4k"}],["path",{d:"M16 22a2 2 0 0 1-2-2",key:"1wqh5n"}]],Kr=e("FileScan",fS);/** + */const fS=[["path",{d:"M20 10V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4",key:"1rdf37"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M16 14a2 2 0 0 0-2 2",key:"ceaadl"}],["path",{d:"M20 14a2 2 0 0 1 2 2",key:"1ny6zw"}],["path",{d:"M20 22a2 2 0 0 0 2-2",key:"1l9q4k"}],["path",{d:"M16 22a2 2 0 0 1-2-2",key:"1wqh5n"}]],Jr=e("FileScan",fS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["circle",{cx:"11.5",cy:"14.5",r:"2.5",key:"1bq0ko"}],["path",{d:"M13.3 16.3 15 18",key:"2quom7"}]],Jr=e("FileSearch2",CS);/** + */const CS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["circle",{cx:"11.5",cy:"14.5",r:"2.5",key:"1bq0ko"}],["path",{d:"M13.3 16.3 15 18",key:"2quom7"}]],Qr=e("FileSearch2",CS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IS=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M4.268 21a2 2 0 0 0 1.727 1H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3",key:"ms7g94"}],["path",{d:"m9 18-1.5-1.5",key:"1j6qii"}],["circle",{cx:"5",cy:"14",r:"3",key:"ufru5t"}]],Qr=e("FileSearch",IS);/** + */const IS=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M4.268 21a2 2 0 0 0 1.727 1H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3",key:"ms7g94"}],["path",{d:"m9 18-1.5-1.5",key:"1j6qii"}],["circle",{cx:"5",cy:"14",r:"3",key:"ufru5t"}]],Yr=e("FileSearch",IS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M10 11v2",key:"1s651w"}],["path",{d:"M8 17h8",key:"wh5c61"}],["path",{d:"M14 16v2",key:"12fp5e"}]],Yr=e("FileSliders",NS);/** + */const NS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M10 11v2",key:"1s651w"}],["path",{d:"M8 17h8",key:"wh5c61"}],["path",{d:"M14 16v2",key:"12fp5e"}]],e4=e("FileSliders",NS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SS=[["path",{d:"M21 7h-3a2 2 0 0 1-2-2V2",key:"9rb54x"}],["path",{d:"M21 6v6.5c0 .8-.7 1.5-1.5 1.5h-7c-.8 0-1.5-.7-1.5-1.5v-9c0-.8.7-1.5 1.5-1.5H17Z",key:"1059l0"}],["path",{d:"M7 8v8.8c0 .3.2.6.4.8.2.2.5.4.8.4H15",key:"16874u"}],["path",{d:"M3 12v8.8c0 .3.2.6.4.8.2.2.5.4.8.4H11",key:"k2ox98"}]],e4=e("FileStack",SS);/** + */const SS=[["path",{d:"M21 7h-3a2 2 0 0 1-2-2V2",key:"9rb54x"}],["path",{d:"M21 6v6.5c0 .8-.7 1.5-1.5 1.5h-7c-.8 0-1.5-.7-1.5-1.5v-9c0-.8.7-1.5 1.5-1.5H17Z",key:"1059l0"}],["path",{d:"M7 8v8.8c0 .3.2.6.4.8.2.2.5.4.8.4H15",key:"16874u"}],["path",{d:"M3 12v8.8c0 .3.2.6.4.8.2.2.5.4.8.4H11",key:"k2ox98"}]],a4=e("FileStack",SS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qS=[["path",{d:"m10 18 3-3-3-3",key:"18f6ys"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M4 11V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7",key:"50q2rw"}]],a4=e("FileSymlink",qS);/** + */const qS=[["path",{d:"m10 18 3-3-3-3",key:"18f6ys"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M4 11V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7",key:"50q2rw"}]],o4=e("FileSymlink",qS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m8 16 2-2-2-2",key:"10vzyd"}],["path",{d:"M12 18h4",key:"1wd2n7"}]],o4=e("FileTerminal",bS);/** + */const bS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m8 16 2-2-2-2",key:"10vzyd"}],["path",{d:"M12 18h4",key:"1wd2n7"}]],c4=e("FileTerminal",bS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $S=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M2 13v-1h6v1",key:"1dh9dg"}],["path",{d:"M5 12v6",key:"150t9c"}],["path",{d:"M4 18h2",key:"1xrofg"}]],c4=e("FileType2",$S);/** + */const $S=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M2 13v-1h6v1",key:"1dh9dg"}],["path",{d:"M5 12v6",key:"150t9c"}],["path",{d:"M4 18h2",key:"1xrofg"}]],t4=e("FileType2",$S);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M9 13v-1h6v1",key:"1bb014"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"M11 18h2",key:"12mj7e"}]],t4=e("FileType",AS);/** + */const AS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M9 13v-1h6v1",key:"1bb014"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"M11 18h2",key:"12mj7e"}]],n4=e("FileType",AS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HS=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15 18a3 3 0 1 0-6 0",key:"16awa0"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z",key:"1mlx9k"}],["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}]],n4=e("FileUser",HS);/** + */const HS=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15 18a3 3 0 1 0-6 0",key:"16awa0"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z",key:"1mlx9k"}],["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}]],d4=e("FileUser",HS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["rect",{width:"8",height:"6",x:"2",y:"12",rx:"1",key:"1a6c1e"}],["path",{d:"m10 15.5 4 2.5v-6l-4 2.5",key:"t7cp39"}]],d4=e("FileVideo2",zS);/** + */const zS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["rect",{width:"8",height:"6",x:"2",y:"12",rx:"1",key:"1a6c1e"}],["path",{d:"m10 15.5 4 2.5v-6l-4 2.5",key:"t7cp39"}]],i4=e("FileVideo2",zS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m10 11 5 3-5 3v-6Z",key:"7ntvm4"}]],i4=e("FileVideo",PS);/** + */const PS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m10 11 5 3-5 3v-6Z",key:"7ntvm4"}]],h4=e("FileVideo",PS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M11.5 13.5a2.5 2.5 0 0 1 0 3",key:"1fccat"}],["path",{d:"M15 12a5 5 0 0 1 0 6",key:"ps46cm"}]],h4=e("FileVolume2",jS);/** + */const jS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M11.5 13.5a2.5 2.5 0 0 1 0 3",key:"1fccat"}],["path",{d:"M15 12a5 5 0 0 1 0 6",key:"ps46cm"}]],y4=e("FileVolume2",jS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VS=[["path",{d:"M11 11a5 5 0 0 1 0 6",key:"193qb2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M4 6.765V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-.93-.23",key:"ifyjnl"}],["path",{d:"M7 10.51a.5.5 0 0 0-.826-.38l-1.893 1.628A1 1 0 0 1 3.63 12H2.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h1.129a1 1 0 0 1 .652.242l1.893 1.63a.5.5 0 0 0 .826-.38z",key:"mk8rxu"}]],y4=e("FileVolume",VS);/** + */const VS=[["path",{d:"M11 11a5 5 0 0 1 0 6",key:"193qb2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M4 6.765V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-.93-.23",key:"ifyjnl"}],["path",{d:"M7 10.51a.5.5 0 0 0-.826-.38l-1.893 1.628A1 1 0 0 1 3.63 12H2.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h1.129a1 1 0 0 1 .652.242l1.893 1.63a.5.5 0 0 0 .826-.38z",key:"mk8rxu"}]],r4=e("FileVolume",VS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]],r4=e("FileWarning",BS);/** + */const BS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]],k4=e("FileWarning",BS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m8 12.5-5 5",key:"b853mi"}],["path",{d:"m3 12.5 5 5",key:"1qls4r"}]],k4=e("FileX2",FS);/** + */const FS=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m8 12.5-5 5",key:"b853mi"}],["path",{d:"m3 12.5 5 5",key:"1qls4r"}]],p4=e("FileX2",FS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m14.5 12.5-5 5",key:"b62r18"}],["path",{d:"m9.5 12.5 5 5",key:"1rk7el"}]],p4=e("FileX",DS);/** + */const DS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m14.5 12.5-5 5",key:"b62r18"}],["path",{d:"m9.5 12.5 5 5",key:"1rk7el"}]],s4=e("FileX",DS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}]],s4=e("File",RS);/** + */const RS=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}]],l4=e("File",RS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TS=[["path",{d:"M20 7h-3a2 2 0 0 1-2-2V2",key:"x099mo"}],["path",{d:"M9 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7l4 4v10a2 2 0 0 1-2 2Z",key:"18t6ie"}],["path",{d:"M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8",key:"1nja0z"}]],l4=e("Files",TS);/** + */const TS=[["path",{d:"M20 7h-3a2 2 0 0 1-2-2V2",key:"x099mo"}],["path",{d:"M9 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7l4 4v10a2 2 0 0 1-2 2Z",key:"18t6ie"}],["path",{d:"M3 7.6v12.8A1.6 1.6 0 0 0 4.6 22h9.8",key:"1nja0z"}]],u4=e("Files",TS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const US=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 3v18",key:"bbkbws"}],["path",{d:"M3 7.5h4",key:"zfgn84"}],["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"M3 16.5h4",key:"1230mu"}],["path",{d:"M17 3v18",key:"in4fa5"}],["path",{d:"M17 7.5h4",key:"myr1c1"}],["path",{d:"M17 16.5h4",key:"go4c1d"}]],u4=e("Film",US);/** + */const US=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 3v18",key:"bbkbws"}],["path",{d:"M3 7.5h4",key:"zfgn84"}],["path",{d:"M3 12h18",key:"1i2n21"}],["path",{d:"M3 16.5h4",key:"1230mu"}],["path",{d:"M17 3v18",key:"in4fa5"}],["path",{d:"M17 7.5h4",key:"myr1c1"}],["path",{d:"M17 16.5h4",key:"go4c1d"}]],M4=e("Film",US);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OS=[["path",{d:"M13.013 3H2l8 9.46V19l4 2v-8.54l.9-1.055",key:"1fi1da"}],["path",{d:"m22 3-5 5",key:"12jva0"}],["path",{d:"m17 3 5 5",key:"k36vhe"}]],M4=e("FilterX",OS);/** + */const OS=[["path",{d:"M13.013 3H2l8 9.46V19l4 2v-8.54l.9-1.055",key:"1fi1da"}],["path",{d:"m22 3-5 5",key:"12jva0"}],["path",{d:"m17 3 5 5",key:"k36vhe"}]],v4=e("FilterX",OS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZS=[["path",{d:"M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5",key:"sqyvz"}],["path",{d:"M9 18h8",key:"i7pszb"}],["path",{d:"M18 3h-3",key:"7idoqj"}],["path",{d:"M11 3a6 6 0 0 0-6 6v11",key:"1v5je3"}],["path",{d:"M5 13h4",key:"svpcxo"}],["path",{d:"M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z",key:"vsjego"}]],v4=e("FireExtinguisher",ZS);/** + */const ZS=[["path",{d:"M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5",key:"sqyvz"}],["path",{d:"M9 18h8",key:"i7pszb"}],["path",{d:"M18 3h-3",key:"7idoqj"}],["path",{d:"M11 3a6 6 0 0 0-6 6v11",key:"1v5je3"}],["path",{d:"M5 13h4",key:"svpcxo"}],["path",{d:"M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z",key:"vsjego"}]],m4=e("FireExtinguisher",ZS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GS=[["path",{d:"M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058",key:"1j1hse"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618",key:"1q46z8"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20",key:"1407gh"}]],m4=e("FishOff",GS);/** + */const GS=[["path",{d:"M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058",key:"1j1hse"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618",key:"1q46z8"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20",key:"1407gh"}]],_4=e("FishOff",GS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WS=[["path",{d:"M2 16s9-15 20-4C11 23 2 8 2 8",key:"h4oh4o"}]],_4=e("FishSymbol",WS);/** + */const WS=[["path",{d:"M2 16s9-15 20-4C11 23 2 8 2 8",key:"h4oh4o"}]],g4=e("FishSymbol",WS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ES=[["path",{d:"M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z",key:"15baut"}],["path",{d:"M18 12v.5",key:"18hhni"}],["path",{d:"M16 17.93a9.77 9.77 0 0 1 0-11.86",key:"16dt7o"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33",key:"l9di03"}],["path",{d:"M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4",key:"1kjonw"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98",key:"1zlm23"}]],g4=e("Fish",ES);/** + */const ES=[["path",{d:"M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z",key:"15baut"}],["path",{d:"M18 12v.5",key:"18hhni"}],["path",{d:"M16 17.93a9.77 9.77 0 0 1 0-11.86",key:"16dt7o"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33",key:"l9di03"}],["path",{d:"M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4",key:"1kjonw"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98",key:"1zlm23"}]],L4=e("Fish",ES);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XS=[["path",{d:"M8 2c3 0 5 2 8 2s4-1 4-1v11",key:"9rwyz9"}],["path",{d:"M4 22V4",key:"1plyxx"}],["path",{d:"M4 15s1-1 4-1 5 2 8 2",key:"1myooe"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],L4=e("FlagOff",XS);/** + */const XS=[["path",{d:"M8 2c3 0 5 2 8 2s4-1 4-1v11",key:"9rwyz9"}],["path",{d:"M4 22V4",key:"1plyxx"}],["path",{d:"M4 15s1-1 4-1 5 2 8 2",key:"1myooe"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],x4=e("FlagOff",XS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KS=[["path",{d:"M17 22V2L7 7l10 5",key:"1rmf0r"}]],x4=e("FlagTriangleLeft",KS);/** + */const KS=[["path",{d:"M17 22V2L7 7l10 5",key:"1rmf0r"}]],w4=e("FlagTriangleLeft",KS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JS=[["path",{d:"M7 22V2l10 5-10 5",key:"17n18y"}]],w4=e("FlagTriangleRight",JS);/** + */const JS=[["path",{d:"M7 22V2l10 5-10 5",key:"17n18y"}]],f4=e("FlagTriangleRight",JS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QS=[["path",{d:"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z",key:"i9b6wo"}],["line",{x1:"4",x2:"4",y1:"22",y2:"15",key:"1cm3nv"}]],f4=e("Flag",QS);/** + */const QS=[["path",{d:"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z",key:"i9b6wo"}],["line",{x1:"4",x2:"4",y1:"22",y2:"15",key:"1cm3nv"}]],C4=e("Flag",QS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YS=[["path",{d:"M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z",key:"1ir223"}],["path",{d:"m5 22 14-4",key:"1brv4h"}],["path",{d:"m5 18 14 4",key:"lgyyje"}]],C4=e("FlameKindling",YS);/** + */const YS=[["path",{d:"M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z",key:"1ir223"}],["path",{d:"m5 22 14-4",key:"1brv4h"}],["path",{d:"m5 18 14 4",key:"lgyyje"}]],I4=e("FlameKindling",YS);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eq=[["path",{d:"M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z",key:"96xj49"}]],I4=e("Flame",eq);/** + */const eq=[["path",{d:"M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z",key:"96xj49"}]],N4=e("Flame",eq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aq=[["path",{d:"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4",key:"1r120k"}],["path",{d:"M7 2h11v4c0 2-2 2-2 4v1",key:"dz1920"}],["line",{x1:"11",x2:"18",y1:"6",y2:"6",key:"bi1vpe"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],N4=e("FlashlightOff",aq);/** + */const aq=[["path",{d:"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4",key:"1r120k"}],["path",{d:"M7 2h11v4c0 2-2 2-2 4v1",key:"dz1920"}],["line",{x1:"11",x2:"18",y1:"6",y2:"6",key:"bi1vpe"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],S4=e("FlashlightOff",aq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oq=[["path",{d:"M18 6c0 2-2 2-2 4v10a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4V2h12z",key:"1orkel"}],["line",{x1:"6",x2:"18",y1:"6",y2:"6",key:"1z11jq"}],["line",{x1:"12",x2:"12",y1:"12",y2:"12",key:"1f4yc1"}]],S4=e("Flashlight",oq);/** + */const oq=[["path",{d:"M18 6c0 2-2 2-2 4v10a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4V2h12z",key:"1orkel"}],["line",{x1:"6",x2:"18",y1:"6",y2:"6",key:"1z11jq"}],["line",{x1:"12",x2:"12",y1:"12",y2:"12",key:"1f4yc1"}]],q4=e("Flashlight",oq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cq=[["path",{d:"M10 2v2.343",key:"15t272"}],["path",{d:"M14 2v6.343",key:"sxr80q"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563",key:"k0duyd"}],["path",{d:"M6.453 15H15",key:"1f0z33"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]],q4=e("FlaskConicalOff",cq);/** + */const cq=[["path",{d:"M10 2v2.343",key:"15t272"}],["path",{d:"M14 2v6.343",key:"sxr80q"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563",key:"k0duyd"}],["path",{d:"M6.453 15H15",key:"1f0z33"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]],b4=e("FlaskConicalOff",cq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tq=[["path",{d:"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2",key:"18mbvz"}],["path",{d:"M6.453 15h11.094",key:"3shlmq"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]],b4=e("FlaskConical",tq);/** + */const tq=[["path",{d:"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2",key:"18mbvz"}],["path",{d:"M6.453 15h11.094",key:"3shlmq"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]],$4=e("FlaskConical",tq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nq=[["path",{d:"M10 2v6.292a7 7 0 1 0 4 0V2",key:"1s42pc"}],["path",{d:"M5 15h14",key:"m0yey3"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]],$4=e("FlaskRound",nq);/** + */const nq=[["path",{d:"M10 2v6.292a7 7 0 1 0 4 0V2",key:"1s42pc"}],["path",{d:"M5 15h14",key:"m0yey3"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]],A4=e("FlaskRound",nq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dq=[["path",{d:"m3 7 5 5-5 5V7",key:"couhi7"}],["path",{d:"m21 7-5 5 5 5V7",key:"6ouia7"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 2v2",key:"tus03m"}]],A4=e("FlipHorizontal2",dq);/** + */const dq=[["path",{d:"m3 7 5 5-5 5V7",key:"couhi7"}],["path",{d:"m21 7-5 5 5 5V7",key:"6ouia7"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 2v2",key:"tus03m"}]],H4=e("FlipHorizontal2",dq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iq=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3",key:"1i73f7"}],["path",{d:"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3",key:"saxlbk"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 2v2",key:"tus03m"}]],H4=e("FlipHorizontal",iq);/** + */const iq=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3",key:"1i73f7"}],["path",{d:"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3",key:"saxlbk"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 2v2",key:"tus03m"}]],z4=e("FlipHorizontal",iq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hq=[["path",{d:"m17 3-5 5-5-5h10",key:"1ftt6x"}],["path",{d:"m17 21-5-5-5 5h10",key:"1m0wmu"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]],z4=e("FlipVertical2",hq);/** + */const hq=[["path",{d:"m17 3-5 5-5-5h10",key:"1ftt6x"}],["path",{d:"m17 21-5-5-5 5h10",key:"1m0wmu"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]],P4=e("FlipVertical2",hq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yq=[["path",{d:"M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3",key:"14bfxa"}],["path",{d:"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3",key:"14rx03"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]],P4=e("FlipVertical",yq);/** + */const yq=[["path",{d:"M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3",key:"14bfxa"}],["path",{d:"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3",key:"14rx03"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]],j4=e("FlipVertical",yq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rq=[["path",{d:"M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1",key:"3pnvol"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}],["path",{d:"M12 10v12",key:"6ubwww"}],["path",{d:"M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z",key:"9hd38g"}],["path",{d:"M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z",key:"ufn41s"}]],j4=e("Flower2",rq);/** + */const rq=[["path",{d:"M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1",key:"3pnvol"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}],["path",{d:"M12 10v12",key:"6ubwww"}],["path",{d:"M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z",key:"9hd38g"}],["path",{d:"M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z",key:"ufn41s"}]],V4=e("Flower2",rq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kq=[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5",key:"14wa3c"}],["path",{d:"M12 7.5V9",key:"1oy5b0"}],["path",{d:"M7.5 12H9",key:"eltsq1"}],["path",{d:"M16.5 12H15",key:"vk5kw4"}],["path",{d:"M12 16.5V15",key:"k7eayi"}],["path",{d:"m8 8 1.88 1.88",key:"nxy4qf"}],["path",{d:"M14.12 9.88 16 8",key:"1lst6k"}],["path",{d:"m8 16 1.88-1.88",key:"h2eex1"}],["path",{d:"M14.12 14.12 16 16",key:"uqkrx3"}]],V4=e("Flower",kq);/** + */const kq=[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5",key:"14wa3c"}],["path",{d:"M12 7.5V9",key:"1oy5b0"}],["path",{d:"M7.5 12H9",key:"eltsq1"}],["path",{d:"M16.5 12H15",key:"vk5kw4"}],["path",{d:"M12 16.5V15",key:"k7eayi"}],["path",{d:"m8 8 1.88 1.88",key:"nxy4qf"}],["path",{d:"M14.12 9.88 16 8",key:"1lst6k"}],["path",{d:"m8 16 1.88-1.88",key:"h2eex1"}],["path",{d:"M14.12 14.12 16 16",key:"uqkrx3"}]],B4=e("Flower",kq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pq=[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]],B4=e("Focus",pq);/** + */const pq=[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]],F4=e("Focus",pq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sq=[["path",{d:"M2 12h6",key:"1wqiqv"}],["path",{d:"M22 12h-6",key:"1eg9hc"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m19 9-3 3 3 3",key:"12ol22"}],["path",{d:"m5 15 3-3-3-3",key:"1kdhjc"}]],F4=e("FoldHorizontal",sq);/** + */const sq=[["path",{d:"M2 12h6",key:"1wqiqv"}],["path",{d:"M22 12h-6",key:"1eg9hc"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m19 9-3 3 3 3",key:"12ol22"}],["path",{d:"m5 15 3-3-3-3",key:"1kdhjc"}]],D4=e("FoldHorizontal",sq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lq=[["path",{d:"M12 22v-6",key:"6o8u61"}],["path",{d:"M12 8V2",key:"1wkif3"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}],["path",{d:"m15 19-3-3-3 3",key:"e37ymu"}],["path",{d:"m15 5-3 3-3-3",key:"19d6lf"}]],D4=e("FoldVertical",lq);/** + */const lq=[["path",{d:"M12 22v-6",key:"6o8u61"}],["path",{d:"M12 8V2",key:"1wkif3"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}],["path",{d:"m15 19-3-3-3 3",key:"e37ymu"}],["path",{d:"m15 5-3 3-3-3",key:"19d6lf"}]],R4=e("FoldVertical",lq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uq=[["circle",{cx:"15",cy:"19",r:"2",key:"u2pros"}],["path",{d:"M20.9 19.8A2 2 0 0 0 22 18V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h5.1",key:"1jj40k"}],["path",{d:"M15 11v-1",key:"cntcp"}],["path",{d:"M15 17v-2",key:"1279jj"}]],R4=e("FolderArchive",uq);/** + */const uq=[["circle",{cx:"15",cy:"19",r:"2",key:"u2pros"}],["path",{d:"M20.9 19.8A2 2 0 0 0 22 18V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h5.1",key:"1jj40k"}],["path",{d:"M15 11v-1",key:"cntcp"}],["path",{d:"M15 17v-2",key:"1279jj"}]],T4=e("FolderArchive",uq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Mq=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"m9 13 2 2 4-4",key:"6343dt"}]],T4=e("FolderCheck",Mq);/** + */const Mq=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"m9 13 2 2 4-4",key:"6343dt"}]],U4=e("FolderCheck",Mq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vq=[["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}],["path",{d:"M7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2",key:"1urifu"}],["path",{d:"M16 14v2l1 1",key:"xth2jh"}]],U4=e("FolderClock",vq);/** + */const vq=[["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}],["path",{d:"M7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2",key:"1urifu"}],["path",{d:"M16 14v2l1 1",key:"xth2jh"}]],O4=e("FolderClock",vq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mq=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M2 10h20",key:"1ir3d8"}]],O4=e("FolderClosed",mq);/** + */const mq=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M2 10h20",key:"1ir3d8"}]],Z4=e("FolderClosed",mq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _q=[["path",{d:"M10 10.5 8 13l2 2.5",key:"m4t9c1"}],["path",{d:"m14 10.5 2 2.5-2 2.5",key:"14w2eb"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z",key:"1u1bxd"}]],Z4=e("FolderCode",_q);/** + */const _q=[["path",{d:"M10 10.5 8 13l2 2.5",key:"m4t9c1"}],["path",{d:"m14 10.5 2 2.5-2 2.5",key:"14w2eb"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2z",key:"1u1bxd"}]],G4=e("FolderCode",_q);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. @@ -2893,4084 +2893,4079 @@ import{j as a}from"./ui-Z445SNHD.js";import{G as e,V as E2,F as X2,ac as K2,ai a * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Lq=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["circle",{cx:"12",cy:"13",r:"1",key:"49l61u"}]],G4=e("FolderDot",Lq);/** + */const Lq=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["circle",{cx:"12",cy:"13",r:"1",key:"49l61u"}]],W4=e("FolderDot",Lq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xq=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m15 13-3 3-3-3",key:"6j2sf0"}]],W4=e("FolderDown",xq);/** + */const xq=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m15 13-3 3-3-3",key:"6j2sf0"}]],E4=e("FolderDown",xq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wq=[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v5",key:"1w6njk"}],["circle",{cx:"13",cy:"12",r:"2",key:"1j92g6"}],["path",{d:"M18 19c-2.8 0-5-2.2-5-5v8",key:"pkpw2h"}],["circle",{cx:"20",cy:"19",r:"2",key:"1obnsp"}]],E4=e("FolderGit2",wq);/** + */const wq=[["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M14 13h3",key:"1dgedf"}],["path",{d:"M7 13h3",key:"1pygq7"}]],X4=e("FolderGit",wq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fq=[["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M14 13h3",key:"1dgedf"}],["path",{d:"M7 13h3",key:"1pygq7"}]],X4=e("FolderGit",fq);/** + */const fq=[["path",{d:"M11 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v1.5",key:"6hud8k"}],["path",{d:"M13.9 17.45c-1.2-1.2-1.14-2.8-.2-3.73a2.43 2.43 0 0 1 3.44 0l.36.34.34-.34a2.43 2.43 0 0 1 3.45-.01c.95.95 1 2.53-.2 3.74L17.5 21Z",key:"wpff58"}]],K4=e("FolderHeart",fq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Cq=[["path",{d:"M11 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v1.5",key:"6hud8k"}],["path",{d:"M13.9 17.45c-1.2-1.2-1.14-2.8-.2-3.73a2.43 2.43 0 0 1 3.44 0l.36.34.34-.34a2.43 2.43 0 0 1 3.45-.01c.95.95 1 2.53-.2 3.74L17.5 21Z",key:"wpff58"}]],K4=e("FolderHeart",Cq);/** + */const Cq=[["path",{d:"M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1",key:"fm4g5t"}],["path",{d:"M2 13h10",key:"pgb2dq"}],["path",{d:"m9 16 3-3-3-3",key:"6m91ic"}]],J4=e("FolderInput",Cq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Iq=[["path",{d:"M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1",key:"fm4g5t"}],["path",{d:"M2 13h10",key:"pgb2dq"}],["path",{d:"m9 16 3-3-3-3",key:"6m91ic"}]],J4=e("FolderInput",Iq);/** + */const Iq=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["path",{d:"M8 10v4",key:"tgpxqk"}],["path",{d:"M12 10v2",key:"hh53o1"}],["path",{d:"M16 10v6",key:"1d6xys"}]],Q4=e("FolderKanban",Iq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Nq=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["path",{d:"M8 10v4",key:"tgpxqk"}],["path",{d:"M12 10v2",key:"hh53o1"}],["path",{d:"M16 10v6",key:"1d6xys"}]],Q4=e("FolderKanban",Nq);/** + */const Nq=[["circle",{cx:"16",cy:"20",r:"2",key:"1vifvg"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2",key:"3hgo9p"}],["path",{d:"m22 14-4.5 4.5",key:"1ef6z8"}],["path",{d:"m21 15 1 1",key:"1ejcpy"}]],Y4=e("FolderKey",Nq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Sq=[["circle",{cx:"16",cy:"20",r:"2",key:"1vifvg"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2",key:"3hgo9p"}],["path",{d:"m22 14-4.5 4.5",key:"1ef6z8"}],["path",{d:"m21 15 1 1",key:"1ejcpy"}]],Y4=e("FolderKey",Sq);/** + */const Sq=[["rect",{width:"8",height:"5",x:"14",y:"17",rx:"1",key:"19aais"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2.5",key:"1w6v7t"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2",key:"pwaxnr"}]],ek=e("FolderLock",Sq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qq=[["rect",{width:"8",height:"5",x:"14",y:"17",rx:"1",key:"19aais"}],["path",{d:"M10 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v2.5",key:"1w6v7t"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2",key:"pwaxnr"}]],ek=e("FolderLock",qq);/** + */const qq=[["path",{d:"M9 13h6",key:"1uhe8q"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]],ak=e("FolderMinus",qq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bq=[["path",{d:"M9 13h6",key:"1uhe8q"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]],ak=e("FolderMinus",bq);/** + */const bq=[["path",{d:"m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2",key:"1nmvlm"}],["circle",{cx:"14",cy:"15",r:"1",key:"1gm4qj"}]],ok=e("FolderOpenDot",bq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $q=[["path",{d:"m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2",key:"1nmvlm"}],["circle",{cx:"14",cy:"15",r:"1",key:"1gm4qj"}]],ok=e("FolderOpenDot",$q);/** + */const $q=[["path",{d:"M2 7.5V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5",key:"1yk7aj"}],["path",{d:"M2 13h10",key:"pgb2dq"}],["path",{d:"m5 10-3 3 3 3",key:"1r8ie0"}]],ck=e("FolderOutput",$q);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Aq=[["path",{d:"M2 7.5V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5",key:"1yk7aj"}],["path",{d:"M2 13h10",key:"pgb2dq"}],["path",{d:"m5 10-3 3 3 3",key:"1r8ie0"}]],ck=e("FolderOutput",Aq);/** + */const Aq=[["path",{d:"M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5",key:"a8xqs0"}],["path",{d:"M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1saktj"}]],E1=e("FolderPen",Aq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Hq=[["path",{d:"M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5",key:"a8xqs0"}],["path",{d:"M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1saktj"}]],E1=e("FolderPen",Hq);/** + */const Hq=[["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"M9 13h6",key:"1uhe8q"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]],tk=e("FolderPlus",Hq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zq=[["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"M9 13h6",key:"1uhe8q"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]],tk=e("FolderPlus",zq);/** + */const zq=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}],["path",{d:"M12 15v5",key:"11xva1"}]],nk=e("FolderRoot",zq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Pq=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z",key:"1fr9dc"}],["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}],["path",{d:"M12 15v5",key:"11xva1"}]],nk=e("FolderRoot",Pq);/** + */const Pq=[["circle",{cx:"11.5",cy:"12.5",r:"2.5",key:"1ea5ju"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M13.3 14.3 15 16",key:"1y4v1n"}]],dk=e("FolderSearch2",Pq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jq=[["circle",{cx:"11.5",cy:"12.5",r:"2.5",key:"1ea5ju"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M13.3 14.3 15 16",key:"1y4v1n"}]],dk=e("FolderSearch2",jq);/** + */const jq=[["path",{d:"M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1",key:"1bw5m7"}],["path",{d:"m21 21-1.9-1.9",key:"1g2n9r"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}]],ik=e("FolderSearch",jq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Vq=[["path",{d:"M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1",key:"1bw5m7"}],["path",{d:"m21 21-1.9-1.9",key:"1g2n9r"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}]],ik=e("FolderSearch",Vq);/** + */const Vq=[["path",{d:"M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7",key:"x1c07l"}],["path",{d:"m8 16 3-3-3-3",key:"rlqrt1"}]],hk=e("FolderSymlink",Vq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Bq=[["path",{d:"M2 9V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7",key:"x1c07l"}],["path",{d:"m8 16 3-3-3-3",key:"rlqrt1"}]],hk=e("FolderSymlink",Bq);/** + */const Bq=[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5",key:"1dkoa9"}],["path",{d:"M12 10v4h4",key:"1czhmt"}],["path",{d:"m12 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"lvuxfi"}],["path",{d:"M22 22v-4h-4",key:"1ewp4q"}],["path",{d:"m22 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"14ync0"}]],yk=e("FolderSync",Bq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Fq=[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5",key:"1dkoa9"}],["path",{d:"M12 10v4h4",key:"1czhmt"}],["path",{d:"m12 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"lvuxfi"}],["path",{d:"M22 22v-4h-4",key:"1ewp4q"}],["path",{d:"m22 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"14ync0"}]],yk=e("FolderSync",Fq);/** + */const Fq=[["path",{d:"M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",key:"hod4my"}],["path",{d:"M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",key:"w4yl2u"}],["path",{d:"M3 5a2 2 0 0 0 2 2h3",key:"f2jnh7"}],["path",{d:"M3 3v13a2 2 0 0 0 2 2h3",key:"k8epm1"}]],rk=e("FolderTree",Fq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Dq=[["path",{d:"M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",key:"hod4my"}],["path",{d:"M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z",key:"w4yl2u"}],["path",{d:"M3 5a2 2 0 0 0 2 2h3",key:"f2jnh7"}],["path",{d:"M3 3v13a2 2 0 0 0 2 2h3",key:"k8epm1"}]],rk=e("FolderTree",Dq);/** + */const Dq=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m9 13 3-3 3 3",key:"1pxg3c"}]],kk=e("FolderUp",Dq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Rq=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m9 13 3-3 3 3",key:"1pxg3c"}]],kk=e("FolderUp",Rq);/** + */const Rq=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"m9.5 10.5 5 5",key:"ra9qjz"}],["path",{d:"m14.5 10.5-5 5",key:"l2rkpq"}]],pk=e("FolderX",Rq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Tq=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"m9.5 10.5 5 5",key:"ra9qjz"}],["path",{d:"m14.5 10.5-5 5",key:"l2rkpq"}]],pk=e("FolderX",Tq);/** + */const Tq=[["path",{d:"M20 17a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3.9a2 2 0 0 1-1.69-.9l-.81-1.2a2 2 0 0 0-1.67-.9H8a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2Z",key:"4u7rpt"}],["path",{d:"M2 8v11a2 2 0 0 0 2 2h14",key:"1eicx1"}]],sk=e("Folders",Tq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Uq=[["path",{d:"M20 17a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3.9a2 2 0 0 1-1.69-.9l-.81-1.2a2 2 0 0 0-1.67-.9H8a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2Z",key:"4u7rpt"}],["path",{d:"M2 8v11a2 2 0 0 0 2 2h14",key:"1eicx1"}]],sk=e("Folders",Uq);/** + */const Uq=[["path",{d:"M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z",key:"1dudjm"}],["path",{d:"M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z",key:"l2t8xc"}],["path",{d:"M16 17h4",key:"1dejxt"}],["path",{d:"M4 13h4",key:"1bwh8b"}]],lk=e("Footprints",Uq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Oq=[["path",{d:"M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z",key:"1dudjm"}],["path",{d:"M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z",key:"l2t8xc"}],["path",{d:"M16 17h4",key:"1dejxt"}],["path",{d:"M4 13h4",key:"1bwh8b"}]],lk=e("Footprints",Oq);/** + */const Oq=[["path",{d:"M12 12H5a2 2 0 0 0-2 2v5",key:"7zsz91"}],["circle",{cx:"13",cy:"19",r:"2",key:"wjnkru"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}],["path",{d:"M8 19h3m5-17v17h6M6 12V7c0-1.1.9-2 2-2h3l5 5",key:"13bk1p"}]],uk=e("Forklift",Oq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Zq=[["path",{d:"M12 12H5a2 2 0 0 0-2 2v5",key:"7zsz91"}],["circle",{cx:"13",cy:"19",r:"2",key:"wjnkru"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}],["path",{d:"M8 19h3m5-17v17h6M6 12V7c0-1.1.9-2 2-2h3l5 5",key:"13bk1p"}]],uk=e("Forklift",Zq);/** + */const Zq=[["polyline",{points:"15 17 20 12 15 7",key:"1w3sku"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12",key:"jmiej9"}]],Mk=e("Forward",Zq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Gq=[["polyline",{points:"15 17 20 12 15 7",key:"1w3sku"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12",key:"jmiej9"}]],Mk=e("Forward",Gq);/** + */const Gq=[["line",{x1:"22",x2:"2",y1:"6",y2:"6",key:"15w7dq"}],["line",{x1:"22",x2:"2",y1:"18",y2:"18",key:"1ip48p"}],["line",{x1:"6",x2:"6",y1:"2",y2:"22",key:"a2lnyx"}],["line",{x1:"18",x2:"18",y1:"2",y2:"22",key:"8vb6jd"}]],vk=e("Frame",Gq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Wq=[["line",{x1:"22",x2:"2",y1:"6",y2:"6",key:"15w7dq"}],["line",{x1:"22",x2:"2",y1:"18",y2:"18",key:"1ip48p"}],["line",{x1:"6",x2:"6",y1:"2",y2:"22",key:"a2lnyx"}],["line",{x1:"18",x2:"18",y1:"2",y2:"22",key:"8vb6jd"}]],vk=e("Frame",Wq);/** + */const Wq=[["path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7",key:"1a2nng"}]],mk=e("Framer",Wq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Eq=[["path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7",key:"1a2nng"}]],mk=e("Framer",Eq);/** + */const Eq=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2",key:"epbg0q"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]],_k=e("Frown",Eq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Xq=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2",key:"epbg0q"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]],_k=e("Frown",Xq);/** + */const Xq=[["line",{x1:"3",x2:"15",y1:"22",y2:"22",key:"xegly4"}],["line",{x1:"4",x2:"14",y1:"9",y2:"9",key:"xcnuvu"}],["path",{d:"M14 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v18",key:"16j0yd"}],["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 2 2a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L18 5",key:"7cu91f"}]],gk=e("Fuel",Xq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Kq=[["line",{x1:"3",x2:"15",y1:"22",y2:"22",key:"xegly4"}],["line",{x1:"4",x2:"14",y1:"9",y2:"9",key:"xcnuvu"}],["path",{d:"M14 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v18",key:"16j0yd"}],["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 2 2a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L18 5",key:"7cu91f"}]],gk=e("Fuel",Kq);/** + */const Kq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["rect",{width:"10",height:"8",x:"7",y:"8",rx:"1",key:"vys8me"}]],Lk=e("Fullscreen",Kq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Jq=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["rect",{width:"10",height:"8",x:"7",y:"8",rx:"1",key:"vys8me"}]],Lk=e("Fullscreen",Jq);/** + */const Jq=[["path",{d:"M2 7v10",key:"a2pl2d"}],["path",{d:"M6 5v14",key:"1kq3d7"}],["rect",{width:"12",height:"18",x:"10",y:"3",rx:"2",key:"13i7bc"}]],xk=e("GalleryHorizontalEnd",Jq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Qq=[["path",{d:"M2 7v10",key:"a2pl2d"}],["path",{d:"M6 5v14",key:"1kq3d7"}],["rect",{width:"12",height:"18",x:"10",y:"3",rx:"2",key:"13i7bc"}]],xk=e("GalleryHorizontalEnd",Qq);/** + */const Qq=[["path",{d:"M2 3v18",key:"pzttux"}],["rect",{width:"12",height:"18",x:"6",y:"3",rx:"2",key:"btr8bg"}],["path",{d:"M22 3v18",key:"6jf3v"}]],wk=e("GalleryHorizontal",Qq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Yq=[["path",{d:"M2 3v18",key:"pzttux"}],["rect",{width:"12",height:"18",x:"6",y:"3",rx:"2",key:"btr8bg"}],["path",{d:"M22 3v18",key:"6jf3v"}]],wk=e("GalleryHorizontal",Yq);/** + */const Yq=[["rect",{width:"18",height:"14",x:"3",y:"3",rx:"2",key:"74y24f"}],["path",{d:"M4 21h1",key:"16zlid"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M19 21h1",key:"edywat"}]],fk=e("GalleryThumbnails",Yq);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eb=[["rect",{width:"18",height:"14",x:"3",y:"3",rx:"2",key:"74y24f"}],["path",{d:"M4 21h1",key:"16zlid"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M19 21h1",key:"edywat"}]],fk=e("GalleryThumbnails",eb);/** + */const eb=[["path",{d:"M7 2h10",key:"nczekb"}],["path",{d:"M5 6h14",key:"u2x4p"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2",key:"l0tzu3"}]],Ck=e("GalleryVerticalEnd",eb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ab=[["path",{d:"M7 2h10",key:"nczekb"}],["path",{d:"M5 6h14",key:"u2x4p"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2",key:"l0tzu3"}]],Ck=e("GalleryVerticalEnd",ab);/** + */const ab=[["path",{d:"M3 2h18",key:"15qxfx"}],["rect",{width:"18",height:"12",x:"3",y:"6",rx:"2",key:"1439r6"}],["path",{d:"M3 22h18",key:"8prr45"}]],Ik=e("GalleryVertical",ab);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ob=[["path",{d:"M3 2h18",key:"15qxfx"}],["rect",{width:"18",height:"12",x:"3",y:"6",rx:"2",key:"1439r6"}],["path",{d:"M3 22h18",key:"8prr45"}]],Ik=e("GalleryVertical",ob);/** + */const ob=[["line",{x1:"6",x2:"10",y1:"11",y2:"11",key:"1gktln"}],["line",{x1:"8",x2:"8",y1:"9",y2:"13",key:"qnk9ow"}],["line",{x1:"15",x2:"15.01",y1:"12",y2:"12",key:"krot7o"}],["line",{x1:"18",x2:"18.01",y1:"10",y2:"10",key:"1lcuu1"}],["path",{d:"M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z",key:"mfqc10"}]],Nk=e("Gamepad2",ob);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cb=[["line",{x1:"6",x2:"10",y1:"11",y2:"11",key:"1gktln"}],["line",{x1:"8",x2:"8",y1:"9",y2:"13",key:"qnk9ow"}],["line",{x1:"15",x2:"15.01",y1:"12",y2:"12",key:"krot7o"}],["line",{x1:"18",x2:"18.01",y1:"10",y2:"10",key:"1lcuu1"}],["path",{d:"M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z",key:"mfqc10"}]],Nk=e("Gamepad2",cb);/** + */const cb=[["line",{x1:"6",x2:"10",y1:"12",y2:"12",key:"161bw2"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14",key:"1i6ji0"}],["line",{x1:"15",x2:"15.01",y1:"13",y2:"13",key:"dqpgro"}],["line",{x1:"18",x2:"18.01",y1:"11",y2:"11",key:"meh2c"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]],Sk=e("Gamepad",cb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tb=[["line",{x1:"6",x2:"10",y1:"12",y2:"12",key:"161bw2"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14",key:"1i6ji0"}],["line",{x1:"15",x2:"15.01",y1:"13",y2:"13",key:"dqpgro"}],["line",{x1:"18",x2:"18.01",y1:"11",y2:"11",key:"meh2c"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]],Sk=e("Gamepad",tb);/** + */const tb=[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]],qk=e("Gauge",tb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nb=[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]],qk=e("Gauge",nb);/** + */const nb=[["path",{d:"m14.5 12.5-8 8a2.119 2.119 0 1 1-3-3l8-8",key:"15492f"}],["path",{d:"m16 16 6-6",key:"vzrcl6"}],["path",{d:"m8 8 6-6",key:"18bi4p"}],["path",{d:"m9 7 8 8",key:"5jnvq1"}],["path",{d:"m21 11-8-8",key:"z4y7zo"}]],bk=e("Gavel",nb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const db=[["path",{d:"m14.5 12.5-8 8a2.119 2.119 0 1 1-3-3l8-8",key:"15492f"}],["path",{d:"m16 16 6-6",key:"vzrcl6"}],["path",{d:"m8 8 6-6",key:"18bi4p"}],["path",{d:"m9 7 8 8",key:"5jnvq1"}],["path",{d:"m21 11-8-8",key:"z4y7zo"}]],bk=e("Gavel",db);/** + */const db=[["path",{d:"M6 3h12l4 6-10 13L2 9Z",key:"1pcd5k"}],["path",{d:"M11 3 8 9l4 13 4-13-3-6",key:"1fcu3u"}],["path",{d:"M2 9h20",key:"16fsjt"}]],$k=e("Gem",db);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ib=[["path",{d:"M6 3h12l4 6-10 13L2 9Z",key:"1pcd5k"}],["path",{d:"M11 3 8 9l4 13 4-13-3-6",key:"1fcu3u"}],["path",{d:"M2 9h20",key:"16fsjt"}]],$k=e("Gem",ib);/** + */const ib=[["path",{d:"M9 10h.01",key:"qbtxuw"}],["path",{d:"M15 10h.01",key:"1qmjsl"}],["path",{d:"M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z",key:"uwwb07"}]],Ak=e("Ghost",ib);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hb=[["path",{d:"M9 10h.01",key:"qbtxuw"}],["path",{d:"M15 10h.01",key:"1qmjsl"}],["path",{d:"M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z",key:"uwwb07"}]],Ak=e("Ghost",hb);/** + */const hb=[["path",{d:"M6 3v12",key:"qpgusn"}],["path",{d:"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",key:"1d02ji"}],["path",{d:"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",key:"chk6ph"}],["path",{d:"M15 6a9 9 0 0 0-9 9",key:"or332x"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}]],Hk=e("GitBranchPlus",hb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yb=[["path",{d:"M6 3v12",key:"qpgusn"}],["path",{d:"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",key:"1d02ji"}],["path",{d:"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",key:"chk6ph"}],["path",{d:"M15 6a9 9 0 0 0-9 9",key:"or332x"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}]],Hk=e("GitBranchPlus",yb);/** + */const yb=[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12",key:"1dyftd"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12",key:"oup4p8"}]],X1=e("GitCommitHorizontal",yb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rb=[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12",key:"1dyftd"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12",key:"oup4p8"}]],X1=e("GitCommitHorizontal",rb);/** + */const rb=[["path",{d:"M12 3v6",key:"1holv5"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M12 15v6",key:"a9ows0"}]],zk=e("GitCommitVertical",rb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kb=[["path",{d:"M12 3v6",key:"1holv5"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M12 15v6",key:"a9ows0"}]],zk=e("GitCommitVertical",kb);/** + */const kb=[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7",key:"1yj91y"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["circle",{cx:"19",cy:"18",r:"3",key:"1qljk2"}],["path",{d:"M12 18H7a2 2 0 0 1-2-2V9",key:"16sdep"}],["path",{d:"m9 15 3 3-3 3",key:"1m3kbl"}]],Pk=e("GitCompareArrows",kb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pb=[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7",key:"1yj91y"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["circle",{cx:"19",cy:"18",r:"3",key:"1qljk2"}],["path",{d:"M12 18H7a2 2 0 0 1-2-2V9",key:"16sdep"}],["path",{d:"m9 15 3 3-3 3",key:"1m3kbl"}]],Pk=e("GitCompareArrows",pb);/** + */const pb=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9",key:"19pyzm"}]],jk=e("GitCompare",pb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sb=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9",key:"19pyzm"}]],jk=e("GitCompare",sb);/** + */const sb=[["circle",{cx:"12",cy:"18",r:"3",key:"1mpf1b"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["path",{d:"M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9",key:"1uq4wg"}],["path",{d:"M12 12v3",key:"158kv8"}]],Vk=e("GitFork",sb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lb=[["circle",{cx:"12",cy:"18",r:"3",key:"1mpf1b"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["path",{d:"M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9",key:"1uq4wg"}],["path",{d:"M12 12v3",key:"158kv8"}]],Vk=e("GitFork",lb);/** + */const lb=[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v6",key:"158jrl"}],["circle",{cx:"5",cy:"18",r:"3",key:"104gr9"}],["path",{d:"M12 3v18",key:"108xh3"}],["circle",{cx:"19",cy:"6",r:"3",key:"108a5v"}],["path",{d:"M16 15.7A9 9 0 0 0 19 9",key:"1e3vqb"}]],Bk=e("GitGraph",lb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ub=[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v6",key:"158jrl"}],["circle",{cx:"5",cy:"18",r:"3",key:"104gr9"}],["path",{d:"M12 3v18",key:"108xh3"}],["circle",{cx:"19",cy:"6",r:"3",key:"108a5v"}],["path",{d:"M16 15.7A9 9 0 0 0 19 9",key:"1e3vqb"}]],Bk=e("GitGraph",ub);/** + */const ub=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9",key:"7kw0sc"}]],Fk=e("GitMerge",ub);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Mb=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9",key:"7kw0sc"}]],Fk=e("GitMerge",Mb);/** + */const Mb=[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v12",key:"ih889a"}],["circle",{cx:"19",cy:"18",r:"3",key:"1qljk2"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7",key:"1yj91y"}]],Dk=e("GitPullRequestArrow",Mb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vb=[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v12",key:"ih889a"}],["circle",{cx:"19",cy:"18",r:"3",key:"1qljk2"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7",key:"1yj91y"}]],Dk=e("GitPullRequestArrow",vb);/** + */const vb=[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 9v12",key:"1sc30k"}],["path",{d:"m21 3-6 6",key:"16nqsk"}],["path",{d:"m21 9-6-6",key:"9j17rh"}],["path",{d:"M18 11.5V15",key:"65xf6f"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]],Rk=e("GitPullRequestClosed",vb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mb=[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 9v12",key:"1sc30k"}],["path",{d:"m21 3-6 6",key:"16nqsk"}],["path",{d:"m21 9-6-6",key:"9j17rh"}],["path",{d:"M18 11.5V15",key:"65xf6f"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}]],Rk=e("GitPullRequestClosed",mb);/** + */const mb=[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v12",key:"ih889a"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v3",key:"1rbwk6"}],["path",{d:"M19 15v6",key:"10aioa"}],["path",{d:"M22 18h-6",key:"1d5gi5"}]],Tk=e("GitPullRequestCreateArrow",mb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _b=[["circle",{cx:"5",cy:"6",r:"3",key:"1qnov2"}],["path",{d:"M5 9v12",key:"ih889a"}],["path",{d:"m15 9-3-3 3-3",key:"1lwv8l"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v3",key:"1rbwk6"}],["path",{d:"M19 15v6",key:"10aioa"}],["path",{d:"M22 18h-6",key:"1d5gi5"}]],Tk=e("GitPullRequestCreateArrow",_b);/** + */const _b=[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 9v12",key:"1sc30k"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v3",key:"1jb6z3"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}]],Uk=e("GitPullRequestCreate",_b);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gb=[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 9v12",key:"1sc30k"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v3",key:"1jb6z3"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}]],Uk=e("GitPullRequestCreate",gb);/** + */const gb=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M18 6V5",key:"1oao2s"}],["path",{d:"M18 11v-1",key:"11c8tz"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]],Ok=e("GitPullRequestDraft",gb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Lb=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M18 6V5",key:"1oao2s"}],["path",{d:"M18 11v-1",key:"11c8tz"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]],Ok=e("GitPullRequestDraft",Lb);/** + */const Lb=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]],Zk=e("GitPullRequest",Lb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xb=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]],Zk=e("GitPullRequest",xb);/** + */const xb=[["path",{d:"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4",key:"tonef"}],["path",{d:"M9 18c-4.51 2-5-2-7-2",key:"9comsn"}]],Gk=e("Github",xb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wb=[["path",{d:"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4",key:"tonef"}],["path",{d:"M9 18c-4.51 2-5-2-7-2",key:"9comsn"}]],Gk=e("Github",wb);/** + */const wb=[["path",{d:"m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z",key:"148pdi"}]],Wk=e("Gitlab",wb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fb=[["path",{d:"m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z",key:"148pdi"}]],Wk=e("Gitlab",fb);/** + */const fb=[["path",{d:"M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z",key:"p55z4y"}],["path",{d:"M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0",key:"mjntcy"}]],Ek=e("GlassWater",fb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Cb=[["path",{d:"M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z",key:"p55z4y"}],["path",{d:"M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0",key:"mjntcy"}]],Ek=e("GlassWater",Cb);/** + */const Cb=[["circle",{cx:"6",cy:"15",r:"4",key:"vux9w4"}],["circle",{cx:"18",cy:"15",r:"4",key:"18o8ve"}],["path",{d:"M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2",key:"1ag4bs"}],["path",{d:"M2.5 13 5 7c.7-1.3 1.4-2 3-2",key:"1hm1gs"}],["path",{d:"M21.5 13 19 7c-.7-1.3-1.5-2-3-2",key:"1r31ai"}]],Xk=e("Glasses",Cb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ib=[["circle",{cx:"6",cy:"15",r:"4",key:"vux9w4"}],["circle",{cx:"18",cy:"15",r:"4",key:"18o8ve"}],["path",{d:"M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2",key:"1ag4bs"}],["path",{d:"M2.5 13 5 7c.7-1.3 1.4-2 3-2",key:"1hm1gs"}],["path",{d:"M21.5 13 19 7c-.7-1.3-1.5-2-3-2",key:"1r31ai"}]],Xk=e("Glasses",Ib);/** + */const Ib=[["path",{d:"M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13",key:"qkt0x6"}],["path",{d:"M2 12h8.5",key:"ovaggd"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2",key:"1of5e8"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1",key:"1fmf51"}]],Kk=e("GlobeLock",Ib);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Nb=[["path",{d:"M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13",key:"qkt0x6"}],["path",{d:"M2 12h8.5",key:"ovaggd"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2",key:"1of5e8"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1",key:"1fmf51"}]],Kk=e("GlobeLock",Nb);/** + */const Nb=[["path",{d:"M12 13V2l8 4-8 4",key:"5wlwwj"}],["path",{d:"M20.561 10.222a9 9 0 1 1-12.55-5.29",key:"1c0wjv"}],["path",{d:"M8.002 9.997a5 5 0 1 0 8.9 2.02",key:"gb1g7m"}]],Jk=e("Goal",Nb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Sb=[["path",{d:"M12 13V2l8 4-8 4",key:"5wlwwj"}],["path",{d:"M20.561 10.222a9 9 0 1 1-12.55-5.29",key:"1c0wjv"}],["path",{d:"M8.002 9.997a5 5 0 1 0 8.9 2.02",key:"gb1g7m"}]],Jk=e("Goal",Sb);/** + */const Sb=[["path",{d:"M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4",key:"edstyy"}],["path",{d:"M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2",key:"19wdwo"}],["path",{d:"M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5",key:"1lugqo"}],["path",{d:"M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1hbeus"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0",key:"1etffm"}]],Qk=e("Grab",Sb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qb=[["path",{d:"M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4",key:"edstyy"}],["path",{d:"M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2",key:"19wdwo"}],["path",{d:"M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5",key:"1lugqo"}],["path",{d:"M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1hbeus"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0",key:"1etffm"}]],Qk=e("Grab",qb);/** + */const qb=[["path",{d:"M22 5V2l-5.89 5.89",key:"1eenpo"}],["circle",{cx:"16.6",cy:"15.89",r:"3",key:"xjtalx"}],["circle",{cx:"8.11",cy:"7.4",r:"3",key:"u2fv6i"}],["circle",{cx:"12.35",cy:"11.65",r:"3",key:"i6i8g7"}],["circle",{cx:"13.91",cy:"5.85",r:"3",key:"6ye0dv"}],["circle",{cx:"18.15",cy:"10.09",r:"3",key:"snx9no"}],["circle",{cx:"6.56",cy:"13.2",r:"3",key:"17x4xg"}],["circle",{cx:"10.8",cy:"17.44",r:"3",key:"1hogw9"}],["circle",{cx:"5",cy:"19",r:"3",key:"1sn6vo"}]],Yk=e("Grape",qb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bb=[["path",{d:"M22 5V2l-5.89 5.89",key:"1eenpo"}],["circle",{cx:"16.6",cy:"15.89",r:"3",key:"xjtalx"}],["circle",{cx:"8.11",cy:"7.4",r:"3",key:"u2fv6i"}],["circle",{cx:"12.35",cy:"11.65",r:"3",key:"i6i8g7"}],["circle",{cx:"13.91",cy:"5.85",r:"3",key:"6ye0dv"}],["circle",{cx:"18.15",cy:"10.09",r:"3",key:"snx9no"}],["circle",{cx:"6.56",cy:"13.2",r:"3",key:"17x4xg"}],["circle",{cx:"10.8",cy:"17.44",r:"3",key:"1hogw9"}],["circle",{cx:"5",cy:"19",r:"3",key:"1sn6vo"}]],Yk=e("Grape",bb);/** + */const bb=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]],K1=e("Grid2x2Check",bb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $b=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]],K1=e("Grid2x2Check",$b);/** + */const $b=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M19 22v-6",key:"qhmiwi"}]],J1=e("Grid2x2Plus",$b);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ab=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"M16 19h6",key:"xwg31i"}],["path",{d:"M19 22v-6",key:"qhmiwi"}]],J1=e("Grid2x2Plus",Ab);/** + */const Ab=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"m16 16 5 5",key:"8tpb07"}],["path",{d:"m16 21 5-5",key:"193jll"}]],Q1=e("Grid2x2X",Ab);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Hb=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3",key:"11za1p"}],["path",{d:"m16 16 5 5",key:"8tpb07"}],["path",{d:"m16 21 5-5",key:"193jll"}]],Q1=e("Grid2x2X",Hb);/** + */const Hb=[["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"M3 12h18",key:"1i2n21"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]],Y1=e("Grid2x2",Hb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zb=[["path",{d:"M12 3v18",key:"108xh3"}],["path",{d:"M3 12h18",key:"1i2n21"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]],Y1=e("Grid2x2",zb);/** + */const zb=[["circle",{cx:"12",cy:"9",r:"1",key:"124mty"}],["circle",{cx:"19",cy:"9",r:"1",key:"1ruzo2"}],["circle",{cx:"5",cy:"9",r:"1",key:"1a8b28"}],["circle",{cx:"12",cy:"15",r:"1",key:"1e56xg"}],["circle",{cx:"19",cy:"15",r:"1",key:"1a92ep"}],["circle",{cx:"5",cy:"15",r:"1",key:"5r1jwy"}]],ep=e("GripHorizontal",zb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Pb=[["circle",{cx:"12",cy:"9",r:"1",key:"124mty"}],["circle",{cx:"19",cy:"9",r:"1",key:"1ruzo2"}],["circle",{cx:"5",cy:"9",r:"1",key:"1a8b28"}],["circle",{cx:"12",cy:"15",r:"1",key:"1e56xg"}],["circle",{cx:"19",cy:"15",r:"1",key:"1a92ep"}],["circle",{cx:"5",cy:"15",r:"1",key:"5r1jwy"}]],ep=e("GripHorizontal",Pb);/** + */const Pb=[["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["circle",{cx:"19",cy:"5",r:"1",key:"w8mnmm"}],["circle",{cx:"5",cy:"5",r:"1",key:"lttvr7"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}],["circle",{cx:"12",cy:"19",r:"1",key:"lyex9k"}],["circle",{cx:"19",cy:"19",r:"1",key:"shf9b7"}],["circle",{cx:"5",cy:"19",r:"1",key:"bfqh0e"}]],ap=e("Grip",Pb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jb=[["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["circle",{cx:"19",cy:"5",r:"1",key:"w8mnmm"}],["circle",{cx:"5",cy:"5",r:"1",key:"lttvr7"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}],["circle",{cx:"12",cy:"19",r:"1",key:"lyex9k"}],["circle",{cx:"19",cy:"19",r:"1",key:"shf9b7"}],["circle",{cx:"5",cy:"19",r:"1",key:"bfqh0e"}]],ap=e("Grip",jb);/** + */const jb=[["path",{d:"M3 7V5c0-1.1.9-2 2-2h2",key:"adw53z"}],["path",{d:"M17 3h2c1.1 0 2 .9 2 2v2",key:"an4l38"}],["path",{d:"M21 17v2c0 1.1-.9 2-2 2h-2",key:"144t0e"}],["path",{d:"M7 21H5c-1.1 0-2-.9-2-2v-2",key:"rtnfgi"}],["rect",{width:"7",height:"5",x:"7",y:"7",rx:"1",key:"1eyiv7"}],["rect",{width:"7",height:"5",x:"10",y:"12",rx:"1",key:"1qlmkx"}]],op=e("Group",jb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Vb=[["path",{d:"M3 7V5c0-1.1.9-2 2-2h2",key:"adw53z"}],["path",{d:"M17 3h2c1.1 0 2 .9 2 2v2",key:"an4l38"}],["path",{d:"M21 17v2c0 1.1-.9 2-2 2h-2",key:"144t0e"}],["path",{d:"M7 21H5c-1.1 0-2-.9-2-2v-2",key:"rtnfgi"}],["rect",{width:"7",height:"5",x:"7",y:"7",rx:"1",key:"1eyiv7"}],["rect",{width:"7",height:"5",x:"10",y:"12",rx:"1",key:"1qlmkx"}]],op=e("Group",Vb);/** + */const Vb=[["path",{d:"m11.9 12.1 4.514-4.514",key:"109xqo"}],["path",{d:"M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z",key:"txyc8t"}],["path",{d:"m6 16 2 2",key:"16qmzd"}],["path",{d:"M8.2 9.9C8.7 8.8 9.8 8 11 8c2.8 0 5 2.2 5 5 0 1.2-.8 2.3-1.9 2.8l-.9.4A2 2 0 0 0 12 18a4 4 0 0 1-4 4c-3.3 0-6-2.7-6-6a4 4 0 0 1 4-4 2 2 0 0 0 1.8-1.2z",key:"1u8q3z"}],["circle",{cx:"11.5",cy:"12.5",r:".5",fill:"currentColor",key:"16onso"}]],cp=e("Guitar",Vb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Bb=[["path",{d:"m11.9 12.1 4.514-4.514",key:"109xqo"}],["path",{d:"M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z",key:"txyc8t"}],["path",{d:"m6 16 2 2",key:"16qmzd"}],["path",{d:"M8.2 9.9C8.7 8.8 9.8 8 11 8c2.8 0 5 2.2 5 5 0 1.2-.8 2.3-1.9 2.8l-.9.4A2 2 0 0 0 12 18a4 4 0 0 1-4 4c-3.3 0-6-2.7-6-6a4 4 0 0 1 4-4 2 2 0 0 0 1.8-1.2z",key:"1u8q3z"}],["circle",{cx:"11.5",cy:"12.5",r:".5",fill:"currentColor",key:"16onso"}]],cp=e("Guitar",Bb);/** + */const Bb=[["path",{d:"M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856",key:"1k1t7q"}],["path",{d:"M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288",key:"153t1g"}],["path",{d:"M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025",key:"gzrt0n"}],["path",{d:"m8.5 16.5-1-1",key:"otr954"}]],tp=e("Ham",Bb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Fb=[["path",{d:"M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856",key:"1k1t7q"}],["path",{d:"M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288",key:"153t1g"}],["path",{d:"M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025",key:"gzrt0n"}],["path",{d:"m8.5 16.5-1-1",key:"otr954"}]],tp=e("Ham",Fb);/** + */const Fb=[["path",{d:"m15 12-8.373 8.373a1 1 0 1 1-3-3L12 9",key:"eefl8a"}],["path",{d:"m18 15 4-4",key:"16gjal"}],["path",{d:"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172V7l-2.26-2.26a6 6 0 0 0-4.202-1.756L9 2.96l.92.82A6.18 6.18 0 0 1 12 8.4V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5",key:"b7pghm"}]],np=e("Hammer",Fb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Db=[["path",{d:"m15 12-8.373 8.373a1 1 0 1 1-3-3L12 9",key:"eefl8a"}],["path",{d:"m18 15 4-4",key:"16gjal"}],["path",{d:"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172V7l-2.26-2.26a6 6 0 0 0-4.202-1.756L9 2.96l.92.82A6.18 6.18 0 0 1 12 8.4V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5",key:"b7pghm"}]],np=e("Hammer",Db);/** + */const Db=[["path",{d:"M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17",key:"geh8rc"}],["path",{d:"m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",key:"1fto5m"}],["path",{d:"m2 16 6 6",key:"1pfhp9"}],["circle",{cx:"16",cy:"9",r:"2.9",key:"1n0dlu"}],["circle",{cx:"6",cy:"5",r:"3",key:"151irh"}]],dp=e("HandCoins",Db);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Rb=[["path",{d:"M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17",key:"geh8rc"}],["path",{d:"m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",key:"1fto5m"}],["path",{d:"m2 16 6 6",key:"1pfhp9"}],["circle",{cx:"16",cy:"9",r:"2.9",key:"1n0dlu"}],["circle",{cx:"6",cy:"5",r:"3",key:"151irh"}]],dp=e("HandCoins",Rb);/** + */const Rb=[["path",{d:"M11 14h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16",key:"1ifwr1"}],["path",{d:"m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",key:"17abbs"}],["path",{d:"m2 15 6 6",key:"10dquu"}],["path",{d:"M19.5 8.5c.7-.7 1.5-1.6 1.5-2.7A2.73 2.73 0 0 0 16 4a2.78 2.78 0 0 0-5 1.8c0 1.2.8 2 1.5 2.8L16 12Z",key:"1h3036"}]],ip=e("HandHeart",Rb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Tb=[["path",{d:"M11 14h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16",key:"1ifwr1"}],["path",{d:"m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",key:"17abbs"}],["path",{d:"m2 15 6 6",key:"10dquu"}],["path",{d:"M19.5 8.5c.7-.7 1.5-1.6 1.5-2.7A2.73 2.73 0 0 0 16 4a2.78 2.78 0 0 0-5 1.8c0 1.2.8 2 1.5 2.8L16 12Z",key:"1h3036"}]],ip=e("HandHeart",Tb);/** + */const Tb=[["path",{d:"M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14",key:"1j4xps"}],["path",{d:"m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",key:"uospg8"}],["path",{d:"m2 13 6 6",key:"16e5sb"}]],ee=e("HandHelping",Tb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ub=[["path",{d:"M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14",key:"1j4xps"}],["path",{d:"m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9",key:"uospg8"}],["path",{d:"m2 13 6 6",key:"16e5sb"}]],ee=e("HandHelping",Ub);/** + */const Ub=[["path",{d:"M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4",key:"wc6myp"}],["path",{d:"M14 11V9a2 2 0 1 0-4 0v2",key:"94qvcw"}],["path",{d:"M10 10.5V5a2 2 0 1 0-4 0v9",key:"m1ah89"}],["path",{d:"m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5",key:"t1skq1"}]],hp=e("HandMetal",Ub);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ob=[["path",{d:"M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4",key:"wc6myp"}],["path",{d:"M14 11V9a2 2 0 1 0-4 0v2",key:"94qvcw"}],["path",{d:"M10 10.5V5a2 2 0 1 0-4 0v9",key:"m1ah89"}],["path",{d:"m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5",key:"t1skq1"}]],hp=e("HandMetal",Ob);/** + */const Ob=[["path",{d:"M12 3V2",key:"ar7q03"}],["path",{d:"m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5",key:"n2g93r"}],["path",{d:"M2 14h12a2 2 0 0 1 0 4h-2",key:"1o2jem"}],["path",{d:"M4 10h16",key:"img6z1"}],["path",{d:"M5 10a7 7 0 0 1 14 0",key:"1ega1o"}],["path",{d:"M5 14v6a1 1 0 0 1-1 1H2",key:"1hescx"}]],yp=e("HandPlatter",Ob);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Zb=[["path",{d:"M12 3V2",key:"ar7q03"}],["path",{d:"m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5",key:"n2g93r"}],["path",{d:"M2 14h12a2 2 0 0 1 0 4h-2",key:"1o2jem"}],["path",{d:"M4 10h16",key:"img6z1"}],["path",{d:"M5 10a7 7 0 0 1 14 0",key:"1ega1o"}],["path",{d:"M5 14v6a1 1 0 0 1-1 1H2",key:"1hescx"}]],yp=e("HandPlatter",Zb);/** + */const Zb=[["path",{d:"M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1fvzgz"}],["path",{d:"M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2",key:"1kc0my"}],["path",{d:"M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8",key:"10h0bg"}],["path",{d:"M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",key:"1s1gnw"}]],rp=e("Hand",Zb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Gb=[["path",{d:"M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1fvzgz"}],["path",{d:"M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2",key:"1kc0my"}],["path",{d:"M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8",key:"10h0bg"}],["path",{d:"M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",key:"1s1gnw"}]],rp=e("Hand",Gb);/** + */const Gb=[["path",{d:"m11 17 2 2a1 1 0 1 0 3-3",key:"efffak"}],["path",{d:"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4",key:"9pr0kb"}],["path",{d:"m21 3 1 11h-2",key:"1tisrp"}],["path",{d:"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3",key:"1uvwmv"}],["path",{d:"M3 4h8",key:"1ep09j"}]],kp=e("Handshake",Gb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Wb=[["path",{d:"m11 17 2 2a1 1 0 1 0 3-3",key:"efffak"}],["path",{d:"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4",key:"9pr0kb"}],["path",{d:"m21 3 1 11h-2",key:"1tisrp"}],["path",{d:"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3",key:"1uvwmv"}],["path",{d:"M3 4h8",key:"1ep09j"}]],kp=e("Handshake",Wb);/** + */const Wb=[["path",{d:"M12 2v8",key:"1q4o3n"}],["path",{d:"m16 6-4 4-4-4",key:"6wukr"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 18h.01",key:"h775k"}]],pp=e("HardDriveDownload",Wb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Eb=[["path",{d:"M12 2v8",key:"1q4o3n"}],["path",{d:"m16 6-4 4-4-4",key:"6wukr"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 18h.01",key:"h775k"}]],pp=e("HardDriveDownload",Eb);/** + */const Eb=[["path",{d:"m16 6-4-4-4 4",key:"13yo43"}],["path",{d:"M12 2v8",key:"1q4o3n"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 18h.01",key:"h775k"}]],sp=e("HardDriveUpload",Eb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Xb=[["path",{d:"m16 6-4-4-4 4",key:"13yo43"}],["path",{d:"M12 2v8",key:"1q4o3n"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M10 18h.01",key:"h775k"}]],sp=e("HardDriveUpload",Xb);/** + */const Xb=[["path",{d:"M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5",key:"1p9q5i"}],["path",{d:"M14 6a6 6 0 0 1 6 6v3",key:"1hnv84"}],["path",{d:"M4 15v-3a6 6 0 0 1 6-6",key:"9ciidu"}],["rect",{x:"2",y:"15",width:"20",height:"4",rx:"1",key:"g3x8cw"}]],lp=e("HardHat",Xb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Kb=[["path",{d:"M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5",key:"1p9q5i"}],["path",{d:"M14 6a6 6 0 0 1 6 6v3",key:"1hnv84"}],["path",{d:"M4 15v-3a6 6 0 0 1 6-6",key:"9ciidu"}],["rect",{x:"2",y:"15",width:"20",height:"4",rx:"1",key:"g3x8cw"}]],lp=e("HardHat",Kb);/** + */const Kb=[["path",{d:"m5.2 6.2 1.4 1.4",key:"17imol"}],["path",{d:"M2 13h2",key:"13gyu8"}],["path",{d:"M20 13h2",key:"16rner"}],["path",{d:"m17.4 7.6 1.4-1.4",key:"t4xlah"}],["path",{d:"M22 17H2",key:"1gtaj3"}],["path",{d:"M22 21H2",key:"1gy6en"}],["path",{d:"M16 13a4 4 0 0 0-8 0",key:"1dyczq"}],["path",{d:"M12 5V2.5",key:"1vytko"}]],up=e("Haze",Kb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Jb=[["path",{d:"m5.2 6.2 1.4 1.4",key:"17imol"}],["path",{d:"M2 13h2",key:"13gyu8"}],["path",{d:"M20 13h2",key:"16rner"}],["path",{d:"m17.4 7.6 1.4-1.4",key:"t4xlah"}],["path",{d:"M22 17H2",key:"1gtaj3"}],["path",{d:"M22 21H2",key:"1gy6en"}],["path",{d:"M16 13a4 4 0 0 0-8 0",key:"1dyczq"}],["path",{d:"M12 5V2.5",key:"1vytko"}]],up=e("Haze",Jb);/** + */const Jb=[["path",{d:"M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z",key:"2128wb"}],["path",{d:"M7.5 12h9",key:"1t0ckc"}]],Mp=e("HdmiPort",Jb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Qb=[["path",{d:"M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z",key:"2128wb"}],["path",{d:"M7.5 12h9",key:"1t0ckc"}]],Mp=e("HdmiPort",Qb);/** + */const Qb=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"m17 12 3-2v8",key:"1hhhft"}]],vp=e("Heading1",Qb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Yb=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"m17 12 3-2v8",key:"1hhhft"}]],vp=e("Heading1",Yb);/** + */const Yb=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1",key:"9jr5yi"}]],mp=e("Heading2",Yb);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const e$=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1",key:"9jr5yi"}]],mp=e("Heading2",e$);/** + */const e$=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2",key:"68ncm8"}],["path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2",key:"1ejuhz"}]],_p=e("Heading3",e$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const a$=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2",key:"68ncm8"}],["path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2",key:"1ejuhz"}]],_p=e("Heading3",a$);/** + */const a$=[["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17 10v3a1 1 0 0 0 1 1h3",key:"tj5zdr"}],["path",{d:"M21 10v8",key:"1kdml4"}],["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}]],gp=e("Heading4",a$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const o$=[["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17 10v3a1 1 0 0 0 1 1h3",key:"tj5zdr"}],["path",{d:"M21 10v8",key:"1kdml4"}],["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}]],gp=e("Heading4",o$);/** + */const o$=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17 13v-3h4",key:"1nvgqp"}],["path",{d:"M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17",key:"2nebdn"}]],Lp=e("Heading5",o$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const c$=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["path",{d:"M17 13v-3h4",key:"1nvgqp"}],["path",{d:"M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17",key:"2nebdn"}]],Lp=e("Heading5",c$);/** + */const c$=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["circle",{cx:"19",cy:"16",r:"2",key:"15mx69"}],["path",{d:"M20 10c-2 2-3 3.5-3 6",key:"f35dl0"}]],xp=e("Heading6",c$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const t$=[["path",{d:"M4 12h8",key:"17cfdx"}],["path",{d:"M4 18V6",key:"1rz3zl"}],["path",{d:"M12 18V6",key:"zqpxq5"}],["circle",{cx:"19",cy:"16",r:"2",key:"15mx69"}],["path",{d:"M20 10c-2 2-3 3.5-3 6",key:"f35dl0"}]],xp=e("Heading6",t$);/** + */const t$=[["path",{d:"M6 12h12",key:"8npq4p"}],["path",{d:"M6 20V4",key:"1w1bmo"}],["path",{d:"M18 20V4",key:"o2hl4u"}]],wp=e("Heading",t$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const n$=[["path",{d:"M6 12h12",key:"8npq4p"}],["path",{d:"M6 20V4",key:"1w1bmo"}],["path",{d:"M18 20V4",key:"o2hl4u"}]],wp=e("Heading",n$);/** + */const n$=[["path",{d:"M21 14h-1.343",key:"1jdnxi"}],["path",{d:"M9.128 3.47A9 9 0 0 1 21 12v3.343",key:"6kipu2"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3",key:"9x50f4"}],["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364",key:"1bkxnm"}]],fp=e("HeadphoneOff",n$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const d$=[["path",{d:"M21 14h-1.343",key:"1jdnxi"}],["path",{d:"M9.128 3.47A9 9 0 0 1 21 12v3.343",key:"6kipu2"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3",key:"9x50f4"}],["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364",key:"1bkxnm"}]],fp=e("HeadphoneOff",d$);/** + */const d$=[["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3",key:"1xhozi"}]],Cp=e("Headphones",d$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const i$=[["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3",key:"1xhozi"}]],Cp=e("Headphones",i$);/** + */const i$=[["path",{d:"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z",key:"12oyoe"}],["path",{d:"M21 16v2a4 4 0 0 1-4 4h-5",key:"1x7m43"}]],Ip=e("Headset",i$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const h$=[["path",{d:"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z",key:"12oyoe"}],["path",{d:"M21 16v2a4 4 0 0 1-4 4h-5",key:"1x7m43"}]],Ip=e("Headset",h$);/** + */const h$=[["path",{d:"M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",key:"c3ymky"}],["path",{d:"m12 13-1-1 2-2-3-3 2-2",key:"xjdxli"}]],Np=e("HeartCrack",h$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const y$=[["path",{d:"M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",key:"c3ymky"}],["path",{d:"m12 13-1-1 2-2-3-3 2-2",key:"xjdxli"}]],Np=e("HeartCrack",y$);/** + */const y$=[["path",{d:"M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",key:"c3ymky"}],["path",{d:"M12 5 9.04 7.96a2.17 2.17 0 0 0 0 3.08c.82.82 2.13.85 3 .07l2.07-1.9a2.82 2.82 0 0 1 3.79 0l2.96 2.66",key:"4oyue0"}],["path",{d:"m18 15-2-2",key:"60u0ii"}],["path",{d:"m15 18-2-2",key:"6p76be"}]],Sp=e("HeartHandshake",y$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const r$=[["path",{d:"M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",key:"c3ymky"}],["path",{d:"M12 5 9.04 7.96a2.17 2.17 0 0 0 0 3.08c.82.82 2.13.85 3 .07l2.07-1.9a2.82 2.82 0 0 1 3.79 0l2.96 2.66",key:"4oyue0"}],["path",{d:"m18 15-2-2",key:"60u0ii"}],["path",{d:"m15 18-2-2",key:"6p76be"}]],Sp=e("HeartHandshake",r$);/** + */const r$=[["line",{x1:"2",y1:"2",x2:"22",y2:"22",key:"1w4vcy"}],["path",{d:"M16.5 16.5 12 21l-7-7c-1.5-1.45-3-3.2-3-5.5a5.5 5.5 0 0 1 2.14-4.35",key:"3mpagl"}],["path",{d:"M8.76 3.1c1.15.22 2.13.78 3.24 1.9 1.5-1.5 2.74-2 4.5-2A5.5 5.5 0 0 1 22 8.5c0 2.12-1.3 3.78-2.67 5.17",key:"1gh3v3"}]],qp=e("HeartOff",r$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const k$=[["line",{x1:"2",y1:"2",x2:"22",y2:"22",key:"1w4vcy"}],["path",{d:"M16.5 16.5 12 21l-7-7c-1.5-1.45-3-3.2-3-5.5a5.5 5.5 0 0 1 2.14-4.35",key:"3mpagl"}],["path",{d:"M8.76 3.1c1.15.22 2.13.78 3.24 1.9 1.5-1.5 2.74-2 4.5-2A5.5 5.5 0 0 1 22 8.5c0 2.12-1.3 3.78-2.67 5.17",key:"1gh3v3"}]],qp=e("HeartOff",k$);/** + */const k$=[["path",{d:"M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",key:"c3ymky"}],["path",{d:"M3.22 12H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27",key:"1uw2ng"}]],bp=e("HeartPulse",k$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const p$=[["path",{d:"M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",key:"c3ymky"}],["path",{d:"M3.22 12H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27",key:"1uw2ng"}]],bp=e("HeartPulse",p$);/** + */const p$=[["path",{d:"M11 8c2-3-2-3 0-6",key:"1ldv5m"}],["path",{d:"M15.5 8c2-3-2-3 0-6",key:"1otqoz"}],["path",{d:"M6 10h.01",key:"1lbq93"}],["path",{d:"M6 14h.01",key:"zudwn7"}],["path",{d:"M10 16v-4",key:"1c25yv"}],["path",{d:"M14 16v-4",key:"1dkbt8"}],["path",{d:"M18 16v-4",key:"1yg9me"}],["path",{d:"M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3",key:"1ubg90"}],["path",{d:"M5 20v2",key:"1abpe8"}],["path",{d:"M19 20v2",key:"kqn6ft"}]],$p=e("Heater",p$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const s$=[["path",{d:"M11 8c2-3-2-3 0-6",key:"1ldv5m"}],["path",{d:"M15.5 8c2-3-2-3 0-6",key:"1otqoz"}],["path",{d:"M6 10h.01",key:"1lbq93"}],["path",{d:"M6 14h.01",key:"zudwn7"}],["path",{d:"M10 16v-4",key:"1c25yv"}],["path",{d:"M14 16v-4",key:"1dkbt8"}],["path",{d:"M18 16v-4",key:"1yg9me"}],["path",{d:"M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3",key:"1ubg90"}],["path",{d:"M5 20v2",key:"1abpe8"}],["path",{d:"M19 20v2",key:"kqn6ft"}]],$p=e("Heater",s$);/** + */const s$=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}]],Ap=e("Hexagon",s$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const l$=[["path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z",key:"yt0hxn"}]],Ap=e("Hexagon",l$);/** + */const l$=[["path",{d:"m9 11-6 6v3h9l3-3",key:"1a3l36"}],["path",{d:"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4",key:"14a9rk"}]],Hp=e("Highlighter",l$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const u$=[["path",{d:"m9 11-6 6v3h9l3-3",key:"1a3l36"}],["path",{d:"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4",key:"14a9rk"}]],Hp=e("Highlighter",u$);/** + */const u$=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27",key:"qyzcap"}],["path",{d:"M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28",key:"y078lb"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26",key:"1utre3"}],["path",{d:"M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25",key:"17o9hm"}],["path",{d:"M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75",key:"1d1n4p"}],["path",{d:"M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24",key:"9uv3tt"}],["path",{d:"M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28",key:"1292wz"}],["path",{d:"M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05",key:"7ozu9p"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],zp=e("HopOff",u$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const M$=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27",key:"qyzcap"}],["path",{d:"M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28",key:"y078lb"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26",key:"1utre3"}],["path",{d:"M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25",key:"17o9hm"}],["path",{d:"M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75",key:"1d1n4p"}],["path",{d:"M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24",key:"9uv3tt"}],["path",{d:"M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28",key:"1292wz"}],["path",{d:"M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05",key:"7ozu9p"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],zp=e("HopOff",M$);/** + */const M$=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18",key:"18lxf1"}],["path",{d:"M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88",key:"vtfxrw"}],["path",{d:"M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36",key:"13hl71"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87",key:"1sl8oj"}],["path",{d:"M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08",key:"19c6kt"}],["path",{d:"M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57",key:"85ghs3"}],["path",{d:"M4.93 4.93 3 3a.7.7 0 0 1 0-1",key:"x087yj"}],["path",{d:"M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15",key:"11xdqo"}]],Pp=e("Hop",M$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const v$=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18",key:"18lxf1"}],["path",{d:"M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88",key:"vtfxrw"}],["path",{d:"M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36",key:"13hl71"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87",key:"1sl8oj"}],["path",{d:"M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08",key:"19c6kt"}],["path",{d:"M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57",key:"85ghs3"}],["path",{d:"M4.93 4.93 3 3a.7.7 0 0 1 0-1",key:"x087yj"}],["path",{d:"M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15",key:"11xdqo"}]],Pp=e("Hop",v$);/** + */const v$=[["path",{d:"M12 6v4",key:"16clxf"}],["path",{d:"M14 14h-4",key:"esezmu"}],["path",{d:"M14 18h-4",key:"16mqa2"}],["path",{d:"M14 8h-4",key:"z8ypaz"}],["path",{d:"M18 12h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2",key:"b1k337"}],["path",{d:"M18 22V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v18",key:"16g51d"}]],jp=e("Hospital",v$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const m$=[["path",{d:"M12 6v4",key:"16clxf"}],["path",{d:"M14 14h-4",key:"esezmu"}],["path",{d:"M14 18h-4",key:"16mqa2"}],["path",{d:"M14 8h-4",key:"z8ypaz"}],["path",{d:"M18 12h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2",key:"b1k337"}],["path",{d:"M18 22V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v18",key:"16g51d"}]],jp=e("Hospital",m$);/** + */const m$=[["path",{d:"M10 22v-6.57",key:"1wmca3"}],["path",{d:"M12 11h.01",key:"z322tv"}],["path",{d:"M12 7h.01",key:"1ivr5q"}],["path",{d:"M14 15.43V22",key:"1q2vjd"}],["path",{d:"M15 16a5 5 0 0 0-6 0",key:"o9wqvi"}],["path",{d:"M16 11h.01",key:"xkw8gn"}],["path",{d:"M16 7h.01",key:"1kdx03"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 7h.01",key:"1vti4s"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",key:"1uxh74"}]],Vp=e("Hotel",m$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _$=[["path",{d:"M10 22v-6.57",key:"1wmca3"}],["path",{d:"M12 11h.01",key:"z322tv"}],["path",{d:"M12 7h.01",key:"1ivr5q"}],["path",{d:"M14 15.43V22",key:"1q2vjd"}],["path",{d:"M15 16a5 5 0 0 0-6 0",key:"o9wqvi"}],["path",{d:"M16 11h.01",key:"xkw8gn"}],["path",{d:"M16 7h.01",key:"1kdx03"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 7h.01",key:"1vti4s"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",key:"1uxh74"}]],Vp=e("Hotel",_$);/** + */const _$=[["path",{d:"M5 22h14",key:"ehvnwv"}],["path",{d:"M5 2h14",key:"pdyrp9"}],["path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22",key:"1d314k"}],["path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2",key:"1vvvr6"}]],Bp=e("Hourglass",_$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const g$=[["path",{d:"M5 22h14",key:"ehvnwv"}],["path",{d:"M5 2h14",key:"pdyrp9"}],["path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22",key:"1d314k"}],["path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2",key:"1vvvr6"}]],Bp=e("Hourglass",g$);/** + */const g$=[["path",{d:"M10 12V8.964",key:"1vll13"}],["path",{d:"M14 12V8.964",key:"1x3qvg"}],["path",{d:"M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z",key:"ppykja"}],["path",{d:"M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2",key:"1gvg2z"}]],Fp=e("HousePlug",g$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const L$=[["path",{d:"M10 12V8.964",key:"1vll13"}],["path",{d:"M14 12V8.964",key:"1x3qvg"}],["path",{d:"M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z",key:"ppykja"}],["path",{d:"M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2",key:"1gvg2z"}]],Fp=e("HousePlug",L$);/** + */const L$=[["path",{d:"M13.22 2.416a2 2 0 0 0-2.511.057l-7 5.999A2 2 0 0 0 3 10v9a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7.354",key:"5phn05"}],["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",key:"5wwlr5"}],["path",{d:"M15 6h6",key:"1jlkvy"}],["path",{d:"M18 3v6",key:"x1uolp"}]],Dp=e("HousePlus",L$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const x$=[["path",{d:"M13.22 2.416a2 2 0 0 0-2.511.057l-7 5.999A2 2 0 0 0 3 10v9a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7.354",key:"5phn05"}],["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",key:"5wwlr5"}],["path",{d:"M15 6h6",key:"1jlkvy"}],["path",{d:"M18 3v6",key:"x1uolp"}]],Dp=e("HousePlus",x$);/** + */const x$=[["path",{d:"M9.5 13.866a4 4 0 0 1 5 .01",key:"1wy54i"}],["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"1d0kgt"}],["path",{d:"M7 10.754a8 8 0 0 1 10 0",key:"exoy2g"}]],Rp=e("HouseWifi",x$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const w$=[["path",{d:"M9.5 13.866a4 4 0 0 1 5 .01",key:"1wy54i"}],["path",{d:"M12 17h.01",key:"p32p05"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"1d0kgt"}],["path",{d:"M7 10.754a8 8 0 0 1 10 0",key:"exoy2g"}]],Rp=e("HouseWifi",w$);/** + */const w$=[["path",{d:"M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0",key:"1uxfcu"}],["path",{d:"M12.14 11a3.5 3.5 0 1 1 6.71 0",key:"4k3m1s"}],["path",{d:"M15.5 6.5a3.5 3.5 0 1 0-7 0",key:"zmuahr"}]],ae=e("IceCreamBowl",w$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const f$=[["path",{d:"M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0",key:"1uxfcu"}],["path",{d:"M12.14 11a3.5 3.5 0 1 1 6.71 0",key:"4k3m1s"}],["path",{d:"M15.5 6.5a3.5 3.5 0 1 0-7 0",key:"zmuahr"}]],ae=e("IceCreamBowl",f$);/** + */const f$=[["path",{d:"m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11",key:"1v6356"}],["path",{d:"M17 7A5 5 0 0 0 7 7",key:"151p3v"}],["path",{d:"M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4",key:"1sdaij"}]],oe=e("IceCreamCone",f$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const C$=[["path",{d:"m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11",key:"1v6356"}],["path",{d:"M17 7A5 5 0 0 0 7 7",key:"151p3v"}],["path",{d:"M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4",key:"1sdaij"}]],oe=e("IceCreamCone",C$);/** + */const C$=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",key:"9csbqa"}],["path",{d:"m14 19 3 3v-5.5",key:"9ldu5r"}],["path",{d:"m17 22 3-3",key:"1nkfve"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]],Tp=e("ImageDown",C$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const I$=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",key:"9csbqa"}],["path",{d:"m14 19 3 3v-5.5",key:"9ldu5r"}],["path",{d:"m17 22 3-3",key:"1nkfve"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]],Tp=e("ImageDown",I$);/** + */const I$=[["path",{d:"M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7",key:"m87ecr"}],["line",{x1:"16",x2:"22",y1:"5",y2:"5",key:"ez7e4s"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]],Up=e("ImageMinus",I$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const N$=[["path",{d:"M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7",key:"m87ecr"}],["line",{x1:"16",x2:"22",y1:"5",y2:"5",key:"ez7e4s"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]],Up=e("ImageMinus",N$);/** + */const N$=[["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}],["path",{d:"M10.41 10.41a2 2 0 1 1-2.83-2.83",key:"1bzlo9"}],["line",{x1:"13.5",x2:"6",y1:"13.5",y2:"21",key:"1q0aeu"}],["line",{x1:"18",x2:"21",y1:"12",y2:"15",key:"5mozeu"}],["path",{d:"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59",key:"mmje98"}],["path",{d:"M21 15V5a2 2 0 0 0-2-2H9",key:"43el77"}]],Op=e("ImageOff",N$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const S$=[["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}],["path",{d:"M10.41 10.41a2 2 0 1 1-2.83-2.83",key:"1bzlo9"}],["line",{x1:"13.5",x2:"6",y1:"13.5",y2:"21",key:"1q0aeu"}],["line",{x1:"18",x2:"21",y1:"12",y2:"15",key:"5mozeu"}],["path",{d:"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59",key:"mmje98"}],["path",{d:"M21 15V5a2 2 0 0 0-2-2H9",key:"43el77"}]],Op=e("ImageOff",S$);/** + */const S$=[["path",{d:"m11 16-5 5",key:"j5f7ct"}],["path",{d:"M11 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6.5",key:"7s81lt"}],["path",{d:"M15.765 22a.5.5 0 0 1-.765-.424V13.38a.5.5 0 0 1 .765-.424l5.878 3.674a1 1 0 0 1 0 1.696z",key:"1omb6s"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]],Zp=e("ImagePlay",S$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const q$=[["path",{d:"m11 16-5 5",key:"j5f7ct"}],["path",{d:"M11 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6.5",key:"7s81lt"}],["path",{d:"M15.765 22a.5.5 0 0 1-.765-.424V13.38a.5.5 0 0 1 .765-.424l5.878 3.674a1 1 0 0 1 0 1.696z",key:"1omb6s"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]],Zp=e("ImagePlay",q$);/** + */const q$=[["path",{d:"M16 5h6",key:"1vod17"}],["path",{d:"M19 2v6",key:"4bpg5p"}],["path",{d:"M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5",key:"1ue2ih"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]],Gp=e("ImagePlus",q$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const b$=[["path",{d:"M16 5h6",key:"1vod17"}],["path",{d:"M19 2v6",key:"4bpg5p"}],["path",{d:"M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5",key:"1ue2ih"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]],Gp=e("ImagePlus",b$);/** + */const b$=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",key:"9csbqa"}],["path",{d:"m14 19.5 3-3 3 3",key:"9vmjn0"}],["path",{d:"M17 22v-5.5",key:"1aa6fl"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]],Wp=e("ImageUp",b$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $$=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",key:"9csbqa"}],["path",{d:"m14 19.5 3-3 3 3",key:"9vmjn0"}],["path",{d:"M17 22v-5.5",key:"1aa6fl"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]],Wp=e("ImageUp",$$);/** + */const $$=[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M17 21h2a2 2 0 0 0 2-2",key:"130fy9"}],["path",{d:"M21 12v3",key:"1wzk3p"}],["path",{d:"m21 3-5 5",key:"1g5oa7"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2",key:"kk3yz1"}],["path",{d:"m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19",key:"fyekpt"}],["path",{d:"M9 3h3",key:"d52fa"}],["rect",{x:"3",y:"11",width:"10",height:"10",rx:"1",key:"1wpmix"}]],Ep=e("ImageUpscale",$$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const A$=[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M17 21h2a2 2 0 0 0 2-2",key:"130fy9"}],["path",{d:"M21 12v3",key:"1wzk3p"}],["path",{d:"m21 3-5 5",key:"1g5oa7"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2",key:"kk3yz1"}],["path",{d:"m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19",key:"fyekpt"}],["path",{d:"M9 3h3",key:"d52fa"}],["rect",{x:"3",y:"11",width:"10",height:"10",rx:"1",key:"1wpmix"}]],Ep=e("ImageUpscale",A$);/** + */const A$=[["path",{d:"M18 22H4a2 2 0 0 1-2-2V6",key:"pblm9e"}],["path",{d:"m22 13-1.296-1.296a2.41 2.41 0 0 0-3.408 0L11 18",key:"nf6bnh"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}],["rect",{width:"16",height:"16",x:"6",y:"2",rx:"2",key:"12espp"}]],Xp=e("Images",A$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const H$=[["path",{d:"M18 22H4a2 2 0 0 1-2-2V6",key:"pblm9e"}],["path",{d:"m22 13-1.296-1.296a2.41 2.41 0 0 0-3.408 0L11 18",key:"nf6bnh"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}],["rect",{width:"16",height:"16",x:"6",y:"2",rx:"2",key:"12espp"}]],Xp=e("Images",H$);/** + */const H$=[["path",{d:"M12 3v12",key:"1x0j5s"}],["path",{d:"m8 11 4 4 4-4",key:"1dohi6"}],["path",{d:"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4",key:"1ywtjm"}]],Kp=e("Import",H$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const z$=[["path",{d:"M12 3v12",key:"1x0j5s"}],["path",{d:"m8 11 4 4 4-4",key:"1dohi6"}],["path",{d:"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4",key:"1ywtjm"}]],Kp=e("Import",z$);/** + */const z$=[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12",key:"o97t9d"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}]],Jp=e("Inbox",z$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const P$=[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12",key:"o97t9d"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}]],Jp=e("Inbox",P$);/** + */const P$=[["path",{d:"M21 12H11",key:"wd7e0v"}],["path",{d:"M21 18H11",key:"4wu86t"}],["path",{d:"M21 6H11",key:"6dy1d6"}],["path",{d:"m7 8-4 4 4 4",key:"o5hrat"}]],ce=e("IndentDecrease",P$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const j$=[["path",{d:"M21 12H11",key:"wd7e0v"}],["path",{d:"M21 18H11",key:"4wu86t"}],["path",{d:"M21 6H11",key:"6dy1d6"}],["path",{d:"m7 8-4 4 4 4",key:"o5hrat"}]],ce=e("IndentDecrease",j$);/** + */const j$=[["path",{d:"M21 12H11",key:"wd7e0v"}],["path",{d:"M21 18H11",key:"4wu86t"}],["path",{d:"M21 6H11",key:"6dy1d6"}],["path",{d:"m3 8 4 4-4 4",key:"1a3j6y"}]],te=e("IndentIncrease",j$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const V$=[["path",{d:"M21 12H11",key:"wd7e0v"}],["path",{d:"M21 18H11",key:"4wu86t"}],["path",{d:"M21 6H11",key:"6dy1d6"}],["path",{d:"m3 8 4 4-4 4",key:"1a3j6y"}]],te=e("IndentIncrease",V$);/** + */const V$=[["path",{d:"M12 12c-2-2.67-4-4-6-4a4 4 0 1 0 0 8c2 0 4-1.33 6-4Zm0 0c2 2.67 4 4 6 4a4 4 0 0 0 0-8c-2 0-4 1.33-6 4Z",key:"1z0uae"}]],Qp=e("Infinity",V$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const B$=[["path",{d:"M12 12c-2-2.67-4-4-6-4a4 4 0 1 0 0 8c2 0 4-1.33 6-4Zm0 0c2 2.67 4 4 6 4a4 4 0 0 0 0-8c-2 0-4 1.33-6 4Z",key:"1z0uae"}]],Qp=e("Infinity",B$);/** + */const B$=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7h.01",key:"7u93v4"}],["path",{d:"M17 7h.01",key:"14a9sn"}],["path",{d:"M7 17h.01",key:"19xn7k"}],["path",{d:"M17 17h.01",key:"1sd3ek"}]],Yp=e("InspectionPanel",B$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const F$=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7h.01",key:"7u93v4"}],["path",{d:"M17 7h.01",key:"14a9sn"}],["path",{d:"M7 17h.01",key:"19xn7k"}],["path",{d:"M17 17h.01",key:"1sd3ek"}]],Yp=e("InspectionPanel",F$);/** + */const F$=[["path",{d:"M20 10c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8h8",key:"4znkd0"}],["polyline",{points:"16 14 20 18 16 22",key:"11njsm"}]],e5=e("IterationCcw",F$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const D$=[["path",{d:"M20 10c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8h8",key:"4znkd0"}],["polyline",{points:"16 14 20 18 16 22",key:"11njsm"}]],e5=e("IterationCcw",D$);/** + */const D$=[["path",{d:"M4 10c0-4.4 3.6-8 8-8s8 3.6 8 8-3.6 8-8 8H4",key:"tuf4su"}],["polyline",{points:"8 22 4 18 8 14",key:"evkj9s"}]],a5=e("IterationCw",D$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const R$=[["path",{d:"M4 10c0-4.4 3.6-8 8-8s8 3.6 8 8-3.6 8-8 8H4",key:"tuf4su"}],["polyline",{points:"8 22 4 18 8 14",key:"evkj9s"}]],a5=e("IterationCw",R$);/** + */const R$=[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3",key:"2ej80x"}],["path",{d:"M6 15h12",key:"1hwgt5"}],["path",{d:"M6 11h12",key:"wf4gp6"}]],o5=e("JapaneseYen",R$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const T$=[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3",key:"2ej80x"}],["path",{d:"M6 15h12",key:"1hwgt5"}],["path",{d:"M6 11h12",key:"wf4gp6"}]],o5=e("JapaneseYen",T$);/** + */const T$=[["path",{d:"M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z",key:"jg2n2t"}],["path",{d:"M6 15v-2",key:"gd6mvg"}],["path",{d:"M12 15V9",key:"8c7uyn"}],["circle",{cx:"12",cy:"6",r:"3",key:"1gm2ql"}]],c5=e("Joystick",T$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const U$=[["path",{d:"M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z",key:"jg2n2t"}],["path",{d:"M6 15v-2",key:"gd6mvg"}],["path",{d:"M12 15V9",key:"8c7uyn"}],["circle",{cx:"12",cy:"6",r:"3",key:"1gm2ql"}]],c5=e("Joystick",U$);/** + */const U$=[["path",{d:"M6 5v11",key:"mdvv1e"}],["path",{d:"M12 5v6",key:"14ar3b"}],["path",{d:"M18 5v14",key:"7ji314"}]],t5=e("Kanban",U$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const O$=[["path",{d:"M6 5v11",key:"mdvv1e"}],["path",{d:"M12 5v6",key:"14ar3b"}],["path",{d:"M18 5v14",key:"7ji314"}]],t5=e("Kanban",O$);/** + */const O$=[["path",{d:"M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z",key:"165ttr"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814",key:"1ubxi2"}]],n5=e("KeySquare",O$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Z$=[["path",{d:"M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z",key:"165ttr"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"m9.4 10.6-6.814 6.814A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814",key:"1ubxi2"}]],n5=e("KeySquare",Z$);/** + */const Z$=[["path",{d:"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4",key:"g0fldk"}],["path",{d:"m21 2-9.6 9.6",key:"1j0ho8"}],["circle",{cx:"7.5",cy:"15.5",r:"5.5",key:"yqb3hr"}]],d5=e("Key",Z$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const G$=[["path",{d:"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4",key:"g0fldk"}],["path",{d:"m21 2-9.6 9.6",key:"1j0ho8"}],["circle",{cx:"7.5",cy:"15.5",r:"5.5",key:"yqb3hr"}]],d5=e("Key",G$);/** + */const G$=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 8h4",key:"utf9t1"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M6 12v4",key:"dy92yo"}],["path",{d:"M10 12v4",key:"1fxnav"}],["path",{d:"M14 12v4",key:"1hft58"}],["path",{d:"M18 12v4",key:"tjjnbz"}]],i5=e("KeyboardMusic",G$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const W$=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M6 8h4",key:"utf9t1"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"M6 12v4",key:"dy92yo"}],["path",{d:"M10 12v4",key:"1fxnav"}],["path",{d:"M14 12v4",key:"1hft58"}],["path",{d:"M18 12v4",key:"tjjnbz"}]],i5=e("KeyboardMusic",W$);/** + */const W$=[["path",{d:"M 20 4 A2 2 0 0 1 22 6",key:"1g1fkt"}],["path",{d:"M 22 6 L 22 16.41",key:"1qjg3w"}],["path",{d:"M 7 16 L 16 16",key:"n0yqwb"}],["path",{d:"M 9.69 4 L 20 4",key:"kbpcgx"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2",key:"s23sx2"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M8 12h.01",key:"czm47f"}]],h5=e("KeyboardOff",W$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const E$=[["path",{d:"M 20 4 A2 2 0 0 1 22 6",key:"1g1fkt"}],["path",{d:"M 22 6 L 22 16.41",key:"1qjg3w"}],["path",{d:"M 7 16 L 16 16",key:"n0yqwb"}],["path",{d:"M 9.69 4 L 20 4",key:"kbpcgx"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2",key:"s23sx2"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M8 12h.01",key:"czm47f"}]],h5=e("KeyboardOff",E$);/** + */const E$=[["path",{d:"M10 8h.01",key:"1r9ogq"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M16 12h.01",key:"1l6xoz"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M7 16h10",key:"wp8him"}],["path",{d:"M8 12h.01",key:"czm47f"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}]],y5=e("Keyboard",E$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const X$=[["path",{d:"M10 8h.01",key:"1r9ogq"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M14 8h.01",key:"1primd"}],["path",{d:"M16 12h.01",key:"1l6xoz"}],["path",{d:"M18 8h.01",key:"emo2bl"}],["path",{d:"M6 8h.01",key:"x9i8wu"}],["path",{d:"M7 16h10",key:"wp8him"}],["path",{d:"M8 12h.01",key:"czm47f"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}]],y5=e("Keyboard",X$);/** + */const X$=[["path",{d:"M12 2v5",key:"nd4vlx"}],["path",{d:"M6 7h12l4 9H2l4-9Z",key:"123d64"}],["path",{d:"M9.17 16a3 3 0 1 0 5.66 0",key:"1061mw"}]],r5=e("LampCeiling",X$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const K$=[["path",{d:"M12 2v5",key:"nd4vlx"}],["path",{d:"M6 7h12l4 9H2l4-9Z",key:"123d64"}],["path",{d:"M9.17 16a3 3 0 1 0 5.66 0",key:"1061mw"}]],r5=e("LampCeiling",K$);/** + */const K$=[["path",{d:"m14 5-3 3 2 7 8-8-7-2Z",key:"1b0msb"}],["path",{d:"m14 5-3 3-3-3 3-3 3 3Z",key:"1uemms"}],["path",{d:"M9.5 6.5 4 12l3 6",key:"1bx08v"}],["path",{d:"M3 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H3Z",key:"wap775"}]],k5=e("LampDesk",K$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const J$=[["path",{d:"m14 5-3 3 2 7 8-8-7-2Z",key:"1b0msb"}],["path",{d:"m14 5-3 3-3-3 3-3 3 3Z",key:"1uemms"}],["path",{d:"M9.5 6.5 4 12l3 6",key:"1bx08v"}],["path",{d:"M3 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H3Z",key:"wap775"}]],k5=e("LampDesk",J$);/** + */const J$=[["path",{d:"M9 2h6l3 7H6l3-7Z",key:"wcx6mj"}],["path",{d:"M12 9v13",key:"3n1su1"}],["path",{d:"M9 22h6",key:"1rlq3v"}]],p5=e("LampFloor",J$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Q$=[["path",{d:"M9 2h6l3 7H6l3-7Z",key:"wcx6mj"}],["path",{d:"M12 9v13",key:"3n1su1"}],["path",{d:"M9 22h6",key:"1rlq3v"}]],p5=e("LampFloor",Q$);/** + */const Q$=[["path",{d:"M11 13h6l3 7H8l3-7Z",key:"9n3qlo"}],["path",{d:"M14 13V8a2 2 0 0 0-2-2H8",key:"1hu4hb"}],["path",{d:"M4 9h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4v6Z",key:"s053bc"}]],s5=e("LampWallDown",Q$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Y$=[["path",{d:"M11 13h6l3 7H8l3-7Z",key:"9n3qlo"}],["path",{d:"M14 13V8a2 2 0 0 0-2-2H8",key:"1hu4hb"}],["path",{d:"M4 9h2a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H4v6Z",key:"s053bc"}]],s5=e("LampWallDown",Y$);/** + */const Y$=[["path",{d:"M11 4h6l3 7H8l3-7Z",key:"11x1ee"}],["path",{d:"M14 11v5a2 2 0 0 1-2 2H8",key:"eutp5o"}],["path",{d:"M4 15h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4v-6Z",key:"1iuthr"}]],l5=e("LampWallUp",Y$);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eA=[["path",{d:"M11 4h6l3 7H8l3-7Z",key:"11x1ee"}],["path",{d:"M14 11v5a2 2 0 0 1-2 2H8",key:"eutp5o"}],["path",{d:"M4 15h2a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4v-6Z",key:"1iuthr"}]],l5=e("LampWallUp",eA);/** + */const eA=[["path",{d:"M8 2h8l4 10H4L8 2Z",key:"9dma5w"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"M8 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H8Z",key:"mwf4oh"}]],u5=e("Lamp",eA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aA=[["path",{d:"M8 2h8l4 10H4L8 2Z",key:"9dma5w"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"M8 22v-2c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2v2H8Z",key:"mwf4oh"}]],u5=e("Lamp",aA);/** + */const aA=[["path",{d:"m12 8 6-3-6-3v10",key:"mvpnpy"}],["path",{d:"m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12",key:"ek95tt"}],["path",{d:"m6.49 12.85 11.02 6.3",key:"1kt42w"}],["path",{d:"M17.51 12.85 6.5 19.15",key:"v55bdg"}]],M5=e("LandPlot",aA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oA=[["path",{d:"m12 8 6-3-6-3v10",key:"mvpnpy"}],["path",{d:"m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12",key:"ek95tt"}],["path",{d:"m6.49 12.85 11.02 6.3",key:"1kt42w"}],["path",{d:"M17.51 12.85 6.5 19.15",key:"v55bdg"}]],M5=e("LandPlot",oA);/** + */const oA=[["line",{x1:"3",x2:"21",y1:"22",y2:"22",key:"j8o0r"}],["line",{x1:"6",x2:"6",y1:"18",y2:"11",key:"10tf0k"}],["line",{x1:"10",x2:"10",y1:"18",y2:"11",key:"54lgf6"}],["line",{x1:"14",x2:"14",y1:"18",y2:"11",key:"380y"}],["line",{x1:"18",x2:"18",y1:"18",y2:"11",key:"1kevvc"}],["polygon",{points:"12 2 20 7 4 7",key:"jkujk7"}]],v5=e("Landmark",oA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cA=[["line",{x1:"3",x2:"21",y1:"22",y2:"22",key:"j8o0r"}],["line",{x1:"6",x2:"6",y1:"18",y2:"11",key:"10tf0k"}],["line",{x1:"10",x2:"10",y1:"18",y2:"11",key:"54lgf6"}],["line",{x1:"14",x2:"14",y1:"18",y2:"11",key:"380y"}],["line",{x1:"18",x2:"18",y1:"18",y2:"11",key:"1kevvc"}],["polygon",{points:"12 2 20 7 4 7",key:"jkujk7"}]],v5=e("Landmark",cA);/** + */const cA=[["path",{d:"m5 8 6 6",key:"1wu5hv"}],["path",{d:"m4 14 6-6 2-3",key:"1k1g8d"}],["path",{d:"M2 5h12",key:"or177f"}],["path",{d:"M7 2h1",key:"1t2jsx"}],["path",{d:"m22 22-5-10-5 10",key:"don7ne"}],["path",{d:"M14 18h6",key:"1m8k6r"}]],m5=e("Languages",cA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tA=[["path",{d:"m5 8 6 6",key:"1wu5hv"}],["path",{d:"m4 14 6-6 2-3",key:"1k1g8d"}],["path",{d:"M2 5h12",key:"or177f"}],["path",{d:"M7 2h1",key:"1t2jsx"}],["path",{d:"m22 22-5-10-5 10",key:"don7ne"}],["path",{d:"M14 18h6",key:"1m8k6r"}]],m5=e("Languages",tA);/** + */const tA=[["path",{d:"M2 20h20",key:"owomy5"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}],["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2",key:"8ur36m"}]],_5=e("LaptopMinimalCheck",tA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nA=[["path",{d:"M2 20h20",key:"owomy5"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}],["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2",key:"8ur36m"}]],_5=e("LaptopMinimalCheck",nA);/** + */const nA=[["rect",{width:"18",height:"12",x:"3",y:"4",rx:"2",ry:"2",key:"1qhy41"}],["line",{x1:"2",x2:"22",y1:"20",y2:"20",key:"ni3hll"}]],ne=e("LaptopMinimal",nA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dA=[["rect",{width:"18",height:"12",x:"3",y:"4",rx:"2",ry:"2",key:"1qhy41"}],["line",{x1:"2",x2:"22",y1:"20",y2:"20",key:"ni3hll"}]],ne=e("LaptopMinimal",dA);/** + */const dA=[["path",{d:"M20 16V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v9m16 0H4m16 0 1.28 2.55a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45L4 16",key:"tarvll"}]],g5=e("Laptop",dA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iA=[["path",{d:"M20 16V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v9m16 0H4m16 0 1.28 2.55a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45L4 16",key:"tarvll"}]],g5=e("Laptop",iA);/** + */const iA=[["path",{d:"M7 22a5 5 0 0 1-2-4",key:"umushi"}],["path",{d:"M7 16.93c.96.43 1.96.74 2.99.91",key:"ybbtv3"}],["path",{d:"M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2",key:"gt5e1w"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z",key:"bq3ynw"}],["path",{d:"M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z",key:"72q637"}]],L5=e("LassoSelect",iA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hA=[["path",{d:"M7 22a5 5 0 0 1-2-4",key:"umushi"}],["path",{d:"M7 16.93c.96.43 1.96.74 2.99.91",key:"ybbtv3"}],["path",{d:"M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2",key:"gt5e1w"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z",key:"bq3ynw"}],["path",{d:"M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z",key:"72q637"}]],L5=e("LassoSelect",hA);/** + */const hA=[["path",{d:"M7 22a5 5 0 0 1-2-4",key:"umushi"}],["path",{d:"M3.3 14A6.8 6.8 0 0 1 2 10c0-4.4 4.5-8 10-8s10 3.6 10 8-4.5 8-10 8a12 12 0 0 1-5-1",key:"146dds"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z",key:"bq3ynw"}]],x5=e("Lasso",hA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yA=[["path",{d:"M7 22a5 5 0 0 1-2-4",key:"umushi"}],["path",{d:"M3.3 14A6.8 6.8 0 0 1 2 10c0-4.4 4.5-8 10-8s10 3.6 10 8-4.5 8-10 8a12 12 0 0 1-5-1",key:"146dds"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z",key:"bq3ynw"}]],x5=e("Lasso",yA);/** + */const yA=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z",key:"b2q4dd"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]],w5=e("Laugh",yA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rA=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z",key:"b2q4dd"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]],w5=e("Laugh",rA);/** + */const rA=[["path",{d:"m16.02 12 5.48 3.13a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74L7.98 12",key:"1cuww1"}],["path",{d:"M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74Z",key:"pdlvxu"}]],f5=e("Layers2",rA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kA=[["path",{d:"m16.02 12 5.48 3.13a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74L7.98 12",key:"1cuww1"}],["path",{d:"M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74Z",key:"pdlvxu"}]],f5=e("Layers2",kA);/** + */const kA=[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]],C5=e("LayoutDashboard",kA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pA=[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]],C5=e("LayoutDashboard",pA);/** + */const pA=[["rect",{width:"7",height:"18",x:"3",y:"3",rx:"1",key:"2obqm"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}]],I5=e("LayoutPanelLeft",pA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sA=[["rect",{width:"7",height:"18",x:"3",y:"3",rx:"1",key:"2obqm"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}]],I5=e("LayoutPanelLeft",sA);/** + */const sA=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1",key:"f1a2em"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}]],N5=e("LayoutPanelTop",sA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lA=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1",key:"f1a2em"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}]],N5=e("LayoutPanelTop",lA);/** + */const lA=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1",key:"f1a2em"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1",key:"jqznyg"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1",key:"q5h2i8"}]],S5=e("LayoutTemplate",lA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uA=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1",key:"f1a2em"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1",key:"jqznyg"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1",key:"q5h2i8"}]],S5=e("LayoutTemplate",uA);/** + */const uA=[["path",{d:"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z",key:"nnexq3"}],["path",{d:"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12",key:"mt58a7"}]],q5=e("Leaf",uA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MA=[["path",{d:"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z",key:"nnexq3"}],["path",{d:"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12",key:"mt58a7"}]],q5=e("Leaf",MA);/** + */const MA=[["path",{d:"M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22",key:"1134nt"}],["path",{d:"M2 22 17 7",key:"1q7jp2"}]],b5=e("LeafyGreen",MA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vA=[["path",{d:"M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22",key:"1134nt"}],["path",{d:"M2 22 17 7",key:"1q7jp2"}]],b5=e("LeafyGreen",vA);/** + */const vA=[["path",{d:"M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3",key:"13jjxg"}],["path",{d:"M18 6V3a1 1 0 0 0-1-1h-3",key:"1550fe"}],["rect",{width:"8",height:"12",x:"8",y:"10",rx:"1",key:"qmu8b6"}]],$5=e("Lectern",vA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mA=[["path",{d:"M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3",key:"13jjxg"}],["path",{d:"M18 6V3a1 1 0 0 0-1-1h-3",key:"1550fe"}],["rect",{width:"8",height:"12",x:"8",y:"10",rx:"1",key:"qmu8b6"}]],$5=e("Lectern",mA);/** + */const mA=[["path",{d:"M15 12h6",key:"upa0zy"}],["path",{d:"M15 6h6",key:"1jlkvy"}],["path",{d:"m3 13 3.553-7.724a.5.5 0 0 1 .894 0L11 13",key:"blevx4"}],["path",{d:"M3 18h18",key:"1h113x"}],["path",{d:"M4 11h6",key:"olkgv1"}]],A5=e("LetterText",mA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _A=[["path",{d:"M15 12h6",key:"upa0zy"}],["path",{d:"M15 6h6",key:"1jlkvy"}],["path",{d:"m3 13 3.553-7.724a.5.5 0 0 1 .894 0L11 13",key:"blevx4"}],["path",{d:"M3 18h18",key:"1h113x"}],["path",{d:"M4 11h6",key:"olkgv1"}]],A5=e("LetterText",_A);/** + */const _A=[["rect",{width:"8",height:"18",x:"3",y:"3",rx:"1",key:"oynpb5"}],["path",{d:"M7 3v18",key:"bbkbws"}],["path",{d:"M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z",key:"1qboyk"}]],H5=e("LibraryBig",_A);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gA=[["rect",{width:"8",height:"18",x:"3",y:"3",rx:"1",key:"oynpb5"}],["path",{d:"M7 3v18",key:"bbkbws"}],["path",{d:"M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z",key:"1qboyk"}]],H5=e("LibraryBig",gA);/** + */const gA=[["path",{d:"m16 6 4 14",key:"ji33uf"}],["path",{d:"M12 6v14",key:"1n7gus"}],["path",{d:"M8 8v12",key:"1gg7y9"}],["path",{d:"M4 4v16",key:"6qkkli"}]],z5=e("Library",gA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LA=[["path",{d:"m16 6 4 14",key:"ji33uf"}],["path",{d:"M12 6v14",key:"1n7gus"}],["path",{d:"M8 8v12",key:"1gg7y9"}],["path",{d:"M4 4v16",key:"6qkkli"}]],z5=e("Library",LA);/** + */const LA=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m4.93 4.93 4.24 4.24",key:"1ymg45"}],["path",{d:"m14.83 9.17 4.24-4.24",key:"1cb5xl"}],["path",{d:"m14.83 14.83 4.24 4.24",key:"q42g0n"}],["path",{d:"m9.17 14.83-4.24 4.24",key:"bqpfvv"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]],P5=e("LifeBuoy",LA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xA=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m4.93 4.93 4.24 4.24",key:"1ymg45"}],["path",{d:"m14.83 9.17 4.24-4.24",key:"1cb5xl"}],["path",{d:"m14.83 14.83 4.24 4.24",key:"q42g0n"}],["path",{d:"m9.17 14.83-4.24 4.24",key:"bqpfvv"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]],P5=e("LifeBuoy",xA);/** + */const xA=[["path",{d:"M8 20V8c0-2.2 1.8-4 4-4 1.5 0 2.8.8 3.5 2",key:"1rtphz"}],["path",{d:"M6 12h4",key:"a4o3ry"}],["path",{d:"M14 12h2v8",key:"c1fccl"}],["path",{d:"M6 20h4",key:"1i6q5t"}],["path",{d:"M14 20h4",key:"lzx1xo"}]],j5=e("Ligature",xA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wA=[["path",{d:"M8 20V8c0-2.2 1.8-4 4-4 1.5 0 2.8.8 3.5 2",key:"1rtphz"}],["path",{d:"M6 12h4",key:"a4o3ry"}],["path",{d:"M14 12h2v8",key:"c1fccl"}],["path",{d:"M6 20h4",key:"1i6q5t"}],["path",{d:"M14 20h4",key:"lzx1xo"}]],j5=e("Ligature",wA);/** + */const wA=[["path",{d:"M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5",key:"1fkcox"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5",key:"10m8kw"}],["path",{d:"M9 18h6",key:"x1upvd"}],["path",{d:"M10 22h4",key:"ceow96"}]],V5=e("LightbulbOff",wA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fA=[["path",{d:"M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5",key:"1fkcox"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5",key:"10m8kw"}],["path",{d:"M9 18h6",key:"x1upvd"}],["path",{d:"M10 22h4",key:"ceow96"}]],V5=e("LightbulbOff",fA);/** + */const fA=[["path",{d:"M9 17H7A5 5 0 0 1 7 7",key:"10o201"}],["path",{d:"M15 7h2a5 5 0 0 1 4 8",key:"1d3206"}],["line",{x1:"8",x2:"12",y1:"12",y2:"12",key:"rvw6j4"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],B5=e("Link2Off",fA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CA=[["path",{d:"M9 17H7A5 5 0 0 1 7 7",key:"10o201"}],["path",{d:"M15 7h2a5 5 0 0 1 4 8",key:"1d3206"}],["line",{x1:"8",x2:"12",y1:"12",y2:"12",key:"rvw6j4"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],B5=e("Link2Off",CA);/** + */const CA=[["path",{d:"M11 18H3",key:"n3j2dh"}],["path",{d:"m15 18 2 2 4-4",key:"1szwhi"}],["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M16 6H3",key:"1wxfjs"}]],F5=e("ListCheck",CA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IA=[["path",{d:"M11 18H3",key:"n3j2dh"}],["path",{d:"m15 18 2 2 4-4",key:"1szwhi"}],["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M16 6H3",key:"1wxfjs"}]],F5=e("ListCheck",IA);/** + */const IA=[["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["path",{d:"m3 7 2 2 4-4",key:"1obspn"}],["path",{d:"M13 6h8",key:"15sg57"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 18h8",key:"oe0vm4"}]],D5=e("ListChecks",IA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NA=[["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["path",{d:"m3 7 2 2 4-4",key:"1obspn"}],["path",{d:"M13 6h8",key:"15sg57"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 18h8",key:"oe0vm4"}]],D5=e("ListChecks",NA);/** + */const NA=[["path",{d:"m3 10 2.5-2.5L3 5",key:"i6eama"}],["path",{d:"m3 19 2.5-2.5L3 14",key:"w2gmor"}],["path",{d:"M10 6h11",key:"c7qv1k"}],["path",{d:"M10 12h11",key:"6m4ad9"}],["path",{d:"M10 18h11",key:"11hvi2"}]],R5=e("ListCollapse",NA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SA=[["path",{d:"m3 10 2.5-2.5L3 5",key:"i6eama"}],["path",{d:"m3 19 2.5-2.5L3 14",key:"w2gmor"}],["path",{d:"M10 6h11",key:"c7qv1k"}],["path",{d:"M10 12h11",key:"6m4ad9"}],["path",{d:"M10 18h11",key:"11hvi2"}]],R5=e("ListCollapse",SA);/** + */const SA=[["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M10 18H3",key:"13769t"}],["path",{d:"M21 6v10a2 2 0 0 1-2 2h-5",key:"ilrcs8"}],["path",{d:"m16 16-2 2 2 2",key:"kkc6pm"}]],T5=e("ListEnd",SA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qA=[["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M10 18H3",key:"13769t"}],["path",{d:"M21 6v10a2 2 0 0 1-2 2h-5",key:"ilrcs8"}],["path",{d:"m16 16-2 2 2 2",key:"kkc6pm"}]],T5=e("ListEnd",qA);/** + */const qA=[["path",{d:"M10 18h4",key:"1ulq68"}],["path",{d:"M11 6H3",key:"1u26ik"}],["path",{d:"M15 6h6",key:"1jlkvy"}],["path",{d:"M18 9V3",key:"xwwp7m"}],["path",{d:"M7 12h8",key:"7a1bxv"}]],U5=e("ListFilterPlus",qA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bA=[["path",{d:"M10 18h4",key:"1ulq68"}],["path",{d:"M11 6H3",key:"1u26ik"}],["path",{d:"M15 6h6",key:"1jlkvy"}],["path",{d:"M18 9V3",key:"xwwp7m"}],["path",{d:"M7 12h8",key:"7a1bxv"}]],U5=e("ListFilterPlus",bA);/** + */const bA=[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M10 18h4",key:"1ulq68"}]],O5=e("ListFilter",bA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $A=[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M10 18h4",key:"1ulq68"}]],O5=e("ListFilter",$A);/** + */const $A=[["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M16 18H3",key:"12xzn7"}],["path",{d:"M21 12h-6",key:"bt1uis"}]],Z5=e("ListMinus",$A);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AA=[["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M16 18H3",key:"12xzn7"}],["path",{d:"M21 12h-6",key:"bt1uis"}]],Z5=e("ListMinus",AA);/** + */const AA=[["path",{d:"M21 15V6",key:"h1cx4g"}],["path",{d:"M18.5 18a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z",key:"8saifv"}],["path",{d:"M12 12H3",key:"18klou"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M12 18H3",key:"11ftsu"}]],G5=e("ListMusic",AA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HA=[["path",{d:"M21 15V6",key:"h1cx4g"}],["path",{d:"M18.5 18a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z",key:"8saifv"}],["path",{d:"M12 12H3",key:"18klou"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M12 18H3",key:"11ftsu"}]],G5=e("ListMusic",HA);/** + */const HA=[["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M16 18H3",key:"12xzn7"}],["path",{d:"M18 9v6",key:"1twb98"}],["path",{d:"M21 12h-6",key:"bt1uis"}]],W5=e("ListPlus",HA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zA=[["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M16 18H3",key:"12xzn7"}],["path",{d:"M18 9v6",key:"1twb98"}],["path",{d:"M21 12h-6",key:"bt1uis"}]],W5=e("ListPlus",zA);/** + */const zA=[["path",{d:"M21 6H3",key:"1jwq7v"}],["path",{d:"M7 12H3",key:"13ou7f"}],["path",{d:"M7 18H3",key:"1sijw9"}],["path",{d:"M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14",key:"qth677"}],["path",{d:"M11 10v4h4",key:"172dkj"}]],E5=e("ListRestart",zA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PA=[["path",{d:"M21 6H3",key:"1jwq7v"}],["path",{d:"M7 12H3",key:"13ou7f"}],["path",{d:"M7 18H3",key:"1sijw9"}],["path",{d:"M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14",key:"qth677"}],["path",{d:"M11 10v4h4",key:"172dkj"}]],E5=e("ListRestart",PA);/** + */const PA=[["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M16 18H3",key:"12xzn7"}],["path",{d:"M10 6H3",key:"lf8lx7"}],["path",{d:"M21 18V8a2 2 0 0 0-2-2h-5",key:"1hghli"}],["path",{d:"m16 8-2-2 2-2",key:"160uvd"}]],X5=e("ListStart",PA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jA=[["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M16 18H3",key:"12xzn7"}],["path",{d:"M10 6H3",key:"lf8lx7"}],["path",{d:"M21 18V8a2 2 0 0 0-2-2h-5",key:"1hghli"}],["path",{d:"m16 8-2-2 2-2",key:"160uvd"}]],X5=e("ListStart",jA);/** + */const jA=[["rect",{x:"3",y:"5",width:"6",height:"6",rx:"1",key:"1defrl"}],["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["path",{d:"M13 6h8",key:"15sg57"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 18h8",key:"oe0vm4"}]],K5=e("ListTodo",jA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VA=[["rect",{x:"3",y:"5",width:"6",height:"6",rx:"1",key:"1defrl"}],["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["path",{d:"M13 6h8",key:"15sg57"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 18h8",key:"oe0vm4"}]],K5=e("ListTodo",VA);/** + */const VA=[["path",{d:"M21 12h-8",key:"1bmf0i"}],["path",{d:"M21 6H8",key:"1pqkrb"}],["path",{d:"M21 18h-8",key:"1tm79t"}],["path",{d:"M3 6v4c0 1.1.9 2 2 2h3",key:"1ywdgy"}],["path",{d:"M3 10v6c0 1.1.9 2 2 2h3",key:"2wc746"}]],J5=e("ListTree",VA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BA=[["path",{d:"M21 12h-8",key:"1bmf0i"}],["path",{d:"M21 6H8",key:"1pqkrb"}],["path",{d:"M21 18h-8",key:"1tm79t"}],["path",{d:"M3 6v4c0 1.1.9 2 2 2h3",key:"1ywdgy"}],["path",{d:"M3 10v6c0 1.1.9 2 2 2h3",key:"2wc746"}]],J5=e("ListTree",BA);/** + */const BA=[["path",{d:"M12 12H3",key:"18klou"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M12 18H3",key:"11ftsu"}],["path",{d:"m16 12 5 3-5 3v-6Z",key:"zpskkp"}]],Q5=e("ListVideo",BA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FA=[["path",{d:"M12 12H3",key:"18klou"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M12 18H3",key:"11ftsu"}],["path",{d:"m16 12 5 3-5 3v-6Z",key:"zpskkp"}]],Q5=e("ListVideo",FA);/** + */const FA=[["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M16 18H3",key:"12xzn7"}],["path",{d:"m19 10-4 4",key:"1tz659"}],["path",{d:"m15 10 4 4",key:"1n7nei"}]],Y5=e("ListX",FA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DA=[["path",{d:"M11 12H3",key:"51ecnj"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M16 18H3",key:"12xzn7"}],["path",{d:"m19 10-4 4",key:"1tz659"}],["path",{d:"m15 10 4 4",key:"1n7nei"}]],Y5=e("ListX",DA);/** + */const DA=[["path",{d:"M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0",key:"1lzz15"}],["path",{d:"M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6",key:"1gnrpi"}],["path",{d:"M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6",key:"u9yy5q"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],es=e("LoaderPinwheel",DA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RA=[["path",{d:"M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0",key:"1lzz15"}],["path",{d:"M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6",key:"1gnrpi"}],["path",{d:"M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6",key:"u9yy5q"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],es=e("LoaderPinwheel",RA);/** + */const RA=[["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m16.2 7.8 2.9-2.9",key:"r700ao"}],["path",{d:"M18 12h4",key:"wj9ykh"}],["path",{d:"m16.2 16.2 2.9 2.9",key:"1bxg5t"}],["path",{d:"M12 18v4",key:"jadmvz"}],["path",{d:"m4.9 19.1 2.9-2.9",key:"bwix9q"}],["path",{d:"M2 12h4",key:"j09sii"}],["path",{d:"m4.9 4.9 2.9 2.9",key:"giyufr"}]],as=e("Loader",RA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TA=[["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m16.2 7.8 2.9-2.9",key:"r700ao"}],["path",{d:"M18 12h4",key:"wj9ykh"}],["path",{d:"m16.2 16.2 2.9 2.9",key:"1bxg5t"}],["path",{d:"M12 18v4",key:"jadmvz"}],["path",{d:"m4.9 19.1 2.9-2.9",key:"bwix9q"}],["path",{d:"M2 12h4",key:"j09sii"}],["path",{d:"m4.9 4.9 2.9 2.9",key:"giyufr"}]],as=e("Loader",TA);/** + */const TA=[["line",{x1:"2",x2:"5",y1:"12",y2:"12",key:"bvdh0s"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12",key:"1tbv5k"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5",key:"11lu5j"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}],["path",{d:"M7.11 7.11C5.83 8.39 5 10.1 5 12c0 3.87 3.13 7 7 7 1.9 0 3.61-.83 4.89-2.11",key:"1oh7ia"}],["path",{d:"M18.71 13.96c.19-.63.29-1.29.29-1.96 0-3.87-3.13-7-7-7-.67 0-1.33.1-1.96.29",key:"3qdecy"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],os=e("LocateOff",TA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UA=[["line",{x1:"2",x2:"5",y1:"12",y2:"12",key:"bvdh0s"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12",key:"1tbv5k"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5",key:"11lu5j"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}],["path",{d:"M7.11 7.11C5.83 8.39 5 10.1 5 12c0 3.87 3.13 7 7 7 1.9 0 3.61-.83 4.89-2.11",key:"1oh7ia"}],["path",{d:"M18.71 13.96c.19-.63.29-1.29.29-1.96 0-3.87-3.13-7-7-7-.67 0-1.33.1-1.96.29",key:"3qdecy"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],os=e("LocateOff",UA);/** + */const UA=[["line",{x1:"2",x2:"5",y1:"12",y2:"12",key:"bvdh0s"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12",key:"1tbv5k"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5",key:"11lu5j"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}],["circle",{cx:"12",cy:"12",r:"7",key:"fim9np"}]],cs=e("Locate",UA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OA=[["line",{x1:"2",x2:"5",y1:"12",y2:"12",key:"bvdh0s"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12",key:"1tbv5k"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5",key:"11lu5j"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}],["circle",{cx:"12",cy:"12",r:"7",key:"fim9np"}]],cs=e("Locate",OA);/** + */const OA=[["circle",{cx:"12",cy:"16",r:"1",key:"1au0dj"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2",key:"l0tzu3"}],["path",{d:"M7 10V7a5 5 0 0 1 9.33-2.5",key:"car5b7"}]],de=e("LockKeyholeOpen",OA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZA=[["circle",{cx:"12",cy:"16",r:"1",key:"1au0dj"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2",key:"l0tzu3"}],["path",{d:"M7 10V7a5 5 0 0 1 9.33-2.5",key:"car5b7"}]],de=e("LockKeyholeOpen",ZA);/** + */const ZA=[["circle",{cx:"12",cy:"16",r:"1",key:"1au0dj"}],["rect",{x:"3",y:"10",width:"18",height:"12",rx:"2",key:"6s8ecr"}],["path",{d:"M7 10V7a5 5 0 0 1 10 0v3",key:"1pqi11"}]],ts=e("LockKeyhole",ZA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GA=[["circle",{cx:"12",cy:"16",r:"1",key:"1au0dj"}],["rect",{x:"3",y:"10",width:"18",height:"12",rx:"2",key:"6s8ecr"}],["path",{d:"M7 10V7a5 5 0 0 1 10 0v3",key:"1pqi11"}]],ts=e("LockKeyhole",GA);/** + */const GA=[["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 18h8",key:"oe0vm4"}],["path",{d:"M13 6h8",key:"15sg57"}],["path",{d:"M3 12h1",key:"lp3yf2"}],["path",{d:"M3 18h1",key:"1eiwyy"}],["path",{d:"M3 6h1",key:"rgxa97"}],["path",{d:"M8 12h1",key:"1con00"}],["path",{d:"M8 18h1",key:"13wk12"}],["path",{d:"M8 6h1",key:"tn6mkg"}]],ns=e("Logs",GA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WA=[["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 18h8",key:"oe0vm4"}],["path",{d:"M13 6h8",key:"15sg57"}],["path",{d:"M3 12h1",key:"lp3yf2"}],["path",{d:"M3 18h1",key:"1eiwyy"}],["path",{d:"M3 6h1",key:"rgxa97"}],["path",{d:"M8 12h1",key:"1con00"}],["path",{d:"M8 18h1",key:"13wk12"}],["path",{d:"M8 6h1",key:"tn6mkg"}]],ns=e("Logs",WA);/** + */const WA=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}],["path",{d:"M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0",key:"107gwy"}]],ds=e("Lollipop",WA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const EA=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}],["path",{d:"M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0",key:"107gwy"}]],ds=e("Lollipop",EA);/** + */const EA=[["path",{d:"M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2",key:"1m57jg"}],["path",{d:"M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14",key:"1l99gc"}],["path",{d:"M10 20h4",key:"ni2waw"}],["circle",{cx:"16",cy:"20",r:"2",key:"1vifvg"}],["circle",{cx:"8",cy:"20",r:"2",key:"ckkr5m"}]],is=e("Luggage",EA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XA=[["path",{d:"M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2",key:"1m57jg"}],["path",{d:"M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14",key:"1l99gc"}],["path",{d:"M10 20h4",key:"ni2waw"}],["circle",{cx:"16",cy:"20",r:"2",key:"1vifvg"}],["circle",{cx:"8",cy:"20",r:"2",key:"ckkr5m"}]],is=e("Luggage",XA);/** + */const XA=[["path",{d:"m6 15-4-4 6.75-6.77a7.79 7.79 0 0 1 11 11L13 22l-4-4 6.39-6.36a2.14 2.14 0 0 0-3-3L6 15",key:"1i3lhw"}],["path",{d:"m5 8 4 4",key:"j6kj7e"}],["path",{d:"m12 15 4 4",key:"lnac28"}]],hs=e("Magnet",XA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KA=[["path",{d:"m6 15-4-4 6.75-6.77a7.79 7.79 0 0 1 11 11L13 22l-4-4 6.39-6.36a2.14 2.14 0 0 0-3-3L6 15",key:"1i3lhw"}],["path",{d:"m5 8 4 4",key:"j6kj7e"}],["path",{d:"m12 15 4 4",key:"lnac28"}]],hs=e("Magnet",KA);/** + */const KA=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"12jkf8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]],ys=e("MailCheck",KA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JA=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"12jkf8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]],ys=e("MailCheck",JA);/** + */const JA=[["path",{d:"M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"fuxbkv"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M16 19h6",key:"xwg31i"}]],rs=e("MailMinus",JA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QA=[["path",{d:"M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"fuxbkv"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M16 19h6",key:"xwg31i"}]],rs=e("MailMinus",QA);/** + */const QA=[["path",{d:"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z",key:"1jhwl8"}],["path",{d:"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10",key:"1qfld7"}]],ks=e("MailOpen",QA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YA=[["path",{d:"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z",key:"1jhwl8"}],["path",{d:"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10",key:"1qfld7"}]],ks=e("MailOpen",YA);/** + */const YA=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"12jkf8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M16 19h6",key:"xwg31i"}]],ps=e("MailPlus",YA);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eH=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8",key:"12jkf8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M16 19h6",key:"xwg31i"}]],ps=e("MailPlus",eH);/** + */const eH=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5",key:"e61zoh"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2",key:"7z9rxb"}],["path",{d:"M20 22v.01",key:"12bgn6"}]],ss=e("MailQuestion",eH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aH=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5",key:"e61zoh"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2",key:"7z9rxb"}],["path",{d:"M20 22v.01",key:"12bgn6"}]],ss=e("MailQuestion",aH);/** + */const aH=[["path",{d:"M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5",key:"w80f2v"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z",key:"8lzu5m"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["path",{d:"m22 22-1.5-1.5",key:"1x83k4"}]],ls=e("MailSearch",aH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oH=[["path",{d:"M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5",key:"w80f2v"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z",key:"8lzu5m"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["path",{d:"m22 22-1.5-1.5",key:"1x83k4"}]],ls=e("MailSearch",oH);/** + */const oH=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5",key:"e61zoh"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M20 14v4",key:"1hm744"}],["path",{d:"M20 22v.01",key:"12bgn6"}]],us=e("MailWarning",oH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cH=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5",key:"e61zoh"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"M20 14v4",key:"1hm744"}],["path",{d:"M20 22v.01",key:"12bgn6"}]],us=e("MailWarning",cH);/** + */const cH=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9",key:"1j9vog"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"m17 17 4 4",key:"1b3523"}],["path",{d:"m21 17-4 4",key:"uinynz"}]],Ms=e("MailX",cH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tH=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9",key:"1j9vog"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}],["path",{d:"m17 17 4 4",key:"1b3523"}],["path",{d:"m21 17-4 4",key:"uinynz"}]],Ms=e("MailX",tH);/** + */const tH=[["path",{d:"M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z",key:"1lbycx"}],["polyline",{points:"15,9 18,9 18,11",key:"1pm9c0"}],["path",{d:"M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2",key:"15i455"}],["line",{x1:"6",x2:"7",y1:"10",y2:"10",key:"1e2scm"}]],vs=e("Mailbox",tH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nH=[["path",{d:"M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z",key:"1lbycx"}],["polyline",{points:"15,9 18,9 18,11",key:"1pm9c0"}],["path",{d:"M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2",key:"15i455"}],["line",{x1:"6",x2:"7",y1:"10",y2:"10",key:"1e2scm"}]],vs=e("Mailbox",nH);/** + */const nH=[["rect",{width:"16",height:"13",x:"6",y:"4",rx:"2",key:"1drq3f"}],["path",{d:"m22 7-7.1 3.78c-.57.3-1.23.3-1.8 0L6 7",key:"xn252p"}],["path",{d:"M2 8v11c0 1.1.9 2 2 2h14",key:"n13cji"}]],ms=e("Mails",nH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dH=[["rect",{width:"16",height:"13",x:"6",y:"4",rx:"2",key:"1drq3f"}],["path",{d:"m22 7-7.1 3.78c-.57.3-1.23.3-1.8 0L6 7",key:"xn252p"}],["path",{d:"M2 8v11c0 1.1.9 2 2 2h14",key:"n13cji"}]],ms=e("Mails",dH);/** + */const dH=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}]],_s=e("MapPinCheckInside",dH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iH=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}]],_s=e("MapPinCheckInside",iH);/** + */const iH=[["path",{d:"M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728",key:"1dq61d"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"m16 18 2 2 4-4",key:"1mkfmb"}]],gs=e("MapPinCheck",iH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hH=[["path",{d:"M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728",key:"1dq61d"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"m16 18 2 2 4-4",key:"1mkfmb"}]],gs=e("MapPinCheck",hH);/** + */const hH=[["path",{d:"M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z",key:"1p1rcz"}],["path",{d:"M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2",key:"mcbcs9"}],["path",{d:"M18 22v-3",key:"1t1ugv"}],["circle",{cx:"10",cy:"10",r:"3",key:"1ns7v1"}]],Ls=e("MapPinHouse",hH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yH=[["path",{d:"M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z",key:"1p1rcz"}],["path",{d:"M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2",key:"mcbcs9"}],["path",{d:"M18 22v-3",key:"1t1ugv"}],["circle",{cx:"10",cy:"10",r:"3",key:"1ns7v1"}]],Ls=e("MapPinHouse",yH);/** + */const yH=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],xs=e("MapPinMinusInside",yH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rH=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],xs=e("MapPinMinusInside",rH);/** + */const rH=[["path",{d:"M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",key:"11uxia"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M16 18h6",key:"987eiv"}]],ws=e("MapPinMinus",rH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kH=[["path",{d:"M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",key:"11uxia"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M16 18h6",key:"987eiv"}]],ws=e("MapPinMinus",kH);/** + */const kH=[["path",{d:"M12.75 7.09a3 3 0 0 1 2.16 2.16",key:"1d4wjd"}],["path",{d:"M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568",key:"12yil7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533",key:"lhrkcz"}],["path",{d:"M9.13 9.13a3 3 0 0 0 3.74 3.74",key:"13wojd"}]],fs=e("MapPinOff",kH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pH=[["path",{d:"M12.75 7.09a3 3 0 0 1 2.16 2.16",key:"1d4wjd"}],["path",{d:"M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568",key:"12yil7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533",key:"lhrkcz"}],["path",{d:"M9.13 9.13a3 3 0 0 0 3.74 3.74",key:"13wojd"}]],fs=e("MapPinOff",pH);/** + */const pH=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],Cs=e("MapPinPlusInside",pH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sH=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],Cs=e("MapPinPlusInside",sH);/** + */const sH=[["path",{d:"M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",key:"fcdtly"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M16 18h6",key:"987eiv"}],["path",{d:"M19 15v6",key:"10aioa"}]],Is=e("MapPinPlus",sH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lH=[["path",{d:"M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738",key:"fcdtly"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M16 18h6",key:"987eiv"}],["path",{d:"M19 15v6",key:"10aioa"}]],Is=e("MapPinPlus",lH);/** + */const lH=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"m14.5 7.5-5 5",key:"3lb6iw"}],["path",{d:"m9.5 7.5 5 5",key:"ko136h"}]],Ns=e("MapPinXInside",lH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uH=[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["path",{d:"m14.5 7.5-5 5",key:"3lb6iw"}],["path",{d:"m9.5 7.5 5 5",key:"ko136h"}]],Ns=e("MapPinXInside",uH);/** + */const uH=[["path",{d:"M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077",key:"y0ewhp"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"m21.5 15.5-5 5",key:"11iqnx"}],["path",{d:"m21.5 20.5-5-5",key:"1bylgx"}]],Ss=e("MapPinX",uH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MH=[["path",{d:"M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077",key:"y0ewhp"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"m21.5 15.5-5 5",key:"11iqnx"}],["path",{d:"m21.5 20.5-5-5",key:"1bylgx"}]],Ss=e("MapPinX",MH);/** + */const MH=[["path",{d:"M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0",key:"11u0oz"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}],["path",{d:"M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712",key:"q8zwxj"}]],qs=e("MapPinned",MH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vH=[["path",{d:"M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0",key:"11u0oz"}],["circle",{cx:"12",cy:"8",r:"2",key:"1822b1"}],["path",{d:"M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712",key:"q8zwxj"}]],qs=e("MapPinned",vH);/** + */const vH=[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12",key:"svfegj"}],["path",{d:"M15 5.764V12",key:"1ocw4k"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]],bs=e("MapPlus",vH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mH=[["path",{d:"m11 19-1.106-.552a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12",key:"svfegj"}],["path",{d:"M15 5.764V12",key:"1ocw4k"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]],bs=e("MapPlus",mH);/** + */const mH=[["path",{d:"M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z",key:"169xi5"}],["path",{d:"M15 5.764v15",key:"1pn4in"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]],$s=e("Map",mH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _H=[["path",{d:"M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z",key:"169xi5"}],["path",{d:"M15 5.764v15",key:"1pn4in"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]],$s=e("Map",_H);/** + */const _H=[["path",{d:"m14 6 4 4",key:"1q72g9"}],["path",{d:"M17 3h4v4",key:"19p9u1"}],["path",{d:"m21 3-7.75 7.75",key:"1cjbfd"}],["circle",{cx:"9",cy:"15",r:"6",key:"bx5svt"}]],As=e("MarsStroke",_H);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gH=[["path",{d:"m14 6 4 4",key:"1q72g9"}],["path",{d:"M17 3h4v4",key:"19p9u1"}],["path",{d:"m21 3-7.75 7.75",key:"1cjbfd"}],["circle",{cx:"9",cy:"15",r:"6",key:"bx5svt"}]],As=e("MarsStroke",gH);/** + */const gH=[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"m21 3-6.75 6.75",key:"pv0uzu"}],["circle",{cx:"10",cy:"14",r:"6",key:"1qwbdc"}]],Hs=e("Mars",gH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LH=[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"m21 3-6.75 6.75",key:"pv0uzu"}],["circle",{cx:"10",cy:"14",r:"6",key:"1qwbdc"}]],Hs=e("Mars",LH);/** + */const LH=[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M12 11v11",key:"ur9y6a"}],["path",{d:"m19 3-7 8-7-8Z",key:"1sgpiw"}]],zs=e("Martini",LH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xH=[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M12 11v11",key:"ur9y6a"}],["path",{d:"m19 3-7 8-7-8Z",key:"1sgpiw"}]],zs=e("Martini",xH);/** + */const xH=[["polyline",{points:"15 3 21 3 21 9",key:"mznyad"}],["polyline",{points:"9 21 3 21 3 15",key:"1avn1i"}],["line",{x1:"21",x2:"14",y1:"3",y2:"10",key:"ota7mn"}],["line",{x1:"3",x2:"10",y1:"21",y2:"14",key:"1atl0r"}]],Ps=e("Maximize2",xH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wH=[["polyline",{points:"15 3 21 3 21 9",key:"mznyad"}],["polyline",{points:"9 21 3 21 3 15",key:"1avn1i"}],["line",{x1:"21",x2:"14",y1:"3",y2:"10",key:"ota7mn"}],["line",{x1:"3",x2:"10",y1:"21",y2:"14",key:"1atl0r"}]],Ps=e("Maximize2",wH);/** + */const wH=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v3",key:"1dcmit"}],["path",{d:"M21 8V5a2 2 0 0 0-2-2h-3",key:"1e4gt3"}],["path",{d:"M3 16v3a2 2 0 0 0 2 2h3",key:"wsl5sc"}],["path",{d:"M16 21h3a2 2 0 0 0 2-2v-3",key:"18trek"}]],js=e("Maximize",wH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fH=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v3",key:"1dcmit"}],["path",{d:"M21 8V5a2 2 0 0 0-2-2h-3",key:"1e4gt3"}],["path",{d:"M3 16v3a2 2 0 0 0 2 2h3",key:"wsl5sc"}],["path",{d:"M16 21h3a2 2 0 0 0 2-2v-3",key:"18trek"}]],js=e("Maximize",fH);/** + */const fH=[["path",{d:"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15",key:"143lza"}],["path",{d:"M11 12 5.12 2.2",key:"qhuxz6"}],["path",{d:"m13 12 5.88-9.8",key:"hbye0f"}],["path",{d:"M8 7h8",key:"i86dvs"}],["circle",{cx:"12",cy:"17",r:"5",key:"qbz8iq"}],["path",{d:"M12 18v-2h-.5",key:"fawc4q"}]],Vs=e("Medal",fH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CH=[["path",{d:"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15",key:"143lza"}],["path",{d:"M11 12 5.12 2.2",key:"qhuxz6"}],["path",{d:"m13 12 5.88-9.8",key:"hbye0f"}],["path",{d:"M8 7h8",key:"i86dvs"}],["circle",{cx:"12",cy:"17",r:"5",key:"qbz8iq"}],["path",{d:"M12 18v-2h-.5",key:"fawc4q"}]],Vs=e("Medal",CH);/** + */const CH=[["path",{d:"M9.26 9.26 3 11v3l14.14 3.14",key:"3429n"}],["path",{d:"M21 15.34V6l-7.31 2.03",key:"4o1dh8"}],["path",{d:"M11.6 16.8a3 3 0 1 1-5.8-1.6",key:"1yl0tm"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Bs=e("MegaphoneOff",CH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IH=[["path",{d:"M9.26 9.26 3 11v3l14.14 3.14",key:"3429n"}],["path",{d:"M21 15.34V6l-7.31 2.03",key:"4o1dh8"}],["path",{d:"M11.6 16.8a3 3 0 1 1-5.8-1.6",key:"1yl0tm"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Bs=e("MegaphoneOff",IH);/** + */const IH=[["path",{d:"m3 11 18-5v12L3 14v-3z",key:"n962bs"}],["path",{d:"M11.6 16.8a3 3 0 1 1-5.8-1.6",key:"1yl0tm"}]],Fs=e("Megaphone",IH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NH=[["path",{d:"m3 11 18-5v12L3 14v-3z",key:"n962bs"}],["path",{d:"M11.6 16.8a3 3 0 1 1-5.8-1.6",key:"1yl0tm"}]],Fs=e("Megaphone",NH);/** + */const NH=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"8",x2:"16",y1:"15",y2:"15",key:"1xb1d9"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]],Ds=e("Meh",NH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SH=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"8",x2:"16",y1:"15",y2:"15",key:"1xb1d9"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]],Ds=e("Meh",SH);/** + */const SH=[["path",{d:"M6 19v-3",key:"1nvgqn"}],["path",{d:"M10 19v-3",key:"iu8nkm"}],["path",{d:"M14 19v-3",key:"kcehxu"}],["path",{d:"M18 19v-3",key:"1vh91z"}],["path",{d:"M8 11V9",key:"63erz4"}],["path",{d:"M16 11V9",key:"fru6f3"}],["path",{d:"M12 11V9",key:"ha00sb"}],["path",{d:"M2 15h20",key:"16ne18"}],["path",{d:"M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z",key:"lhddv3"}]],Rs=e("MemoryStick",SH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qH=[["path",{d:"M6 19v-3",key:"1nvgqn"}],["path",{d:"M10 19v-3",key:"iu8nkm"}],["path",{d:"M14 19v-3",key:"kcehxu"}],["path",{d:"M18 19v-3",key:"1vh91z"}],["path",{d:"M8 11V9",key:"63erz4"}],["path",{d:"M16 11V9",key:"fru6f3"}],["path",{d:"M12 11V9",key:"ha00sb"}],["path",{d:"M2 15h20",key:"16ne18"}],["path",{d:"M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z",key:"lhddv3"}]],Rs=e("MemoryStick",qH);/** + */const qH=[["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}],["path",{d:"M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22",key:"1hyw0i"}],["path",{d:"m20 22-5-5",key:"1m27yz"}]],Ts=e("Merge",qH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bH=[["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}],["path",{d:"M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22",key:"1hyw0i"}],["path",{d:"m20 22-5-5",key:"1m27yz"}]],Ts=e("Merge",bH);/** + */const bH=[["path",{d:"M10 9.5 8 12l2 2.5",key:"3mjy60"}],["path",{d:"m14 9.5 2 2.5-2 2.5",key:"1bir2l"}],["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22z",key:"k85zhp"}]],Us=e("MessageCircleCode",bH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $H=[["path",{d:"M10 9.5 8 12l2 2.5",key:"3mjy60"}],["path",{d:"m14 9.5 2 2.5-2 2.5",key:"1bir2l"}],["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22z",key:"k85zhp"}]],Us=e("MessageCircleCode",$H);/** + */const $H=[["path",{d:"M13.5 3.1c-.5 0-1-.1-1.5-.1s-1 .1-1.5.1",key:"16ll65"}],["path",{d:"M19.3 6.8a10.45 10.45 0 0 0-2.1-2.1",key:"1nq77a"}],["path",{d:"M20.9 13.5c.1-.5.1-1 .1-1.5s-.1-1-.1-1.5",key:"1sf7wn"}],["path",{d:"M17.2 19.3a10.45 10.45 0 0 0 2.1-2.1",key:"x1hs5g"}],["path",{d:"M10.5 20.9c.5.1 1 .1 1.5.1s1-.1 1.5-.1",key:"19m18z"}],["path",{d:"M3.5 17.5 2 22l4.5-1.5",key:"1f36qi"}],["path",{d:"M3.1 10.5c0 .5-.1 1-.1 1.5s.1 1 .1 1.5",key:"1vz3ju"}],["path",{d:"M6.8 4.7a10.45 10.45 0 0 0-2.1 2.1",key:"19f9do"}]],Os=e("MessageCircleDashed",$H);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AH=[["path",{d:"M13.5 3.1c-.5 0-1-.1-1.5-.1s-1 .1-1.5.1",key:"16ll65"}],["path",{d:"M19.3 6.8a10.45 10.45 0 0 0-2.1-2.1",key:"1nq77a"}],["path",{d:"M20.9 13.5c.1-.5.1-1 .1-1.5s-.1-1-.1-1.5",key:"1sf7wn"}],["path",{d:"M17.2 19.3a10.45 10.45 0 0 0 2.1-2.1",key:"x1hs5g"}],["path",{d:"M10.5 20.9c.5.1 1 .1 1.5.1s1-.1 1.5-.1",key:"19m18z"}],["path",{d:"M3.5 17.5 2 22l4.5-1.5",key:"1f36qi"}],["path",{d:"M3.1 10.5c0 .5-.1 1-.1 1.5s.1 1 .1 1.5",key:"1vz3ju"}],["path",{d:"M6.8 4.7a10.45 10.45 0 0 0-2.1 2.1",key:"19f9do"}]],Os=e("MessageCircleDashed",AH);/** + */const AH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"M15.8 9.2a2.5 2.5 0 0 0-3.5 0l-.3.4-.35-.3a2.42 2.42 0 1 0-3.2 3.6l3.6 3.5 3.6-3.5c1.2-1.2 1.1-2.7.2-3.7",key:"43lnbm"}]],Zs=e("MessageCircleHeart",AH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"M15.8 9.2a2.5 2.5 0 0 0-3.5 0l-.3.4-.35-.3a2.42 2.42 0 1 0-3.2 3.6l3.6 3.5 3.6-3.5c1.2-1.2 1.1-2.7.2-3.7",key:"43lnbm"}]],Zs=e("MessageCircleHeart",HH);/** + */const HH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}]],Gs=e("MessageCircleMore",HH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}]],Gs=e("MessageCircleMore",zH);/** + */const zH=[["path",{d:"M20.5 14.9A9 9 0 0 0 9.1 3.5",key:"1iebmn"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5.6 5.6C3 8.3 2.2 12.5 4 16l-2 6 6-2c3.4 1.8 7.6 1.1 10.3-1.7",key:"1ov8ce"}]],Ws=e("MessageCircleOff",zH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PH=[["path",{d:"M20.5 14.9A9 9 0 0 0 9.1 3.5",key:"1iebmn"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5.6 5.6C3 8.3 2.2 12.5 4 16l-2 6 6-2c3.4 1.8 7.6 1.1 10.3-1.7",key:"1ov8ce"}]],Ws=e("MessageCircleOff",PH);/** + */const PH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M12 8v8",key:"napkw2"}]],Es=e("MessageCirclePlus",PH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M12 8v8",key:"napkw2"}]],Es=e("MessageCirclePlus",jH);/** + */const jH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]],Xs=e("MessageCircleQuestion",jH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]],Xs=e("MessageCircleQuestion",VH);/** + */const VH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"m10 15-3-3 3-3",key:"1pgupc"}],["path",{d:"M7 12h7a2 2 0 0 1 2 2v1",key:"1gheu4"}]],Ks=e("MessageCircleReply",VH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"m10 15-3-3 3-3",key:"1pgupc"}],["path",{d:"M7 12h7a2 2 0 0 1 2 2v1",key:"1gheu4"}]],Ks=e("MessageCircleReply",BH);/** + */const BH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]],Js=e("MessageCircleWarning",BH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]],Js=e("MessageCircleWarning",FH);/** + */const FH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]],Qs=e("MessageCircleX",FH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]],Qs=e("MessageCircleX",DH);/** + */const DH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}]],Ys=e("MessageCircle",DH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RH=[["path",{d:"M7.9 20A9 9 0 1 0 4 16.1L2 22Z",key:"vv11sd"}]],Ys=e("MessageCircle",RH);/** + */const RH=[["path",{d:"M10 7.5 8 10l2 2.5",key:"xb17xw"}],["path",{d:"m14 7.5 2 2.5-2 2.5",key:"5rap1v"}],["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}]],e3=e("MessageSquareCode",RH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TH=[["path",{d:"M10 7.5 8 10l2 2.5",key:"xb17xw"}],["path",{d:"m14 7.5 2 2.5-2 2.5",key:"5rap1v"}],["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}]],e3=e("MessageSquareCode",TH);/** + */const TH=[["path",{d:"M10 17H7l-4 4v-7",key:"1r71xu"}],["path",{d:"M14 17h1",key:"nufu4t"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 14v1a2 2 0 0 1-2 2",key:"29akq3"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M9 3h1",key:"1yesri"}]],a3=e("MessageSquareDashed",TH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UH=[["path",{d:"M10 17H7l-4 4v-7",key:"1r71xu"}],["path",{d:"M14 17h1",key:"nufu4t"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 14v1a2 2 0 0 1-2 2",key:"29akq3"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M9 3h1",key:"1yesri"}]],a3=e("MessageSquareDashed",UH);/** + */const UH=[["path",{d:"m5 19-2 2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2",key:"1xuzuj"}],["path",{d:"M9 10h6",key:"9gxzsh"}],["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M9 17h6",key:"r8uit2"}]],o3=e("MessageSquareDiff",UH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OH=[["path",{d:"m5 19-2 2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2",key:"1xuzuj"}],["path",{d:"M9 10h6",key:"9gxzsh"}],["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M9 17h6",key:"r8uit2"}]],o3=e("MessageSquareDiff",OH);/** + */const OH=[["path",{d:"M11.7 3H5a2 2 0 0 0-2 2v16l4-4h12a2 2 0 0 0 2-2v-2.7",key:"uodpkb"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}]],c3=e("MessageSquareDot",OH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZH=[["path",{d:"M11.7 3H5a2 2 0 0 0-2 2v16l4-4h12a2 2 0 0 0 2-2v-2.7",key:"uodpkb"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}]],c3=e("MessageSquareDot",ZH);/** + */const ZH=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M14.8 7.5a1.84 1.84 0 0 0-2.6 0l-.2.3-.3-.3a1.84 1.84 0 1 0-2.4 2.8L12 13l2.7-2.7c.9-.9.8-2.1.1-2.8",key:"1blaws"}]],t3=e("MessageSquareHeart",ZH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GH=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M14.8 7.5a1.84 1.84 0 0 0-2.6 0l-.2.3-.3-.3a1.84 1.84 0 1 0-2.4 2.8L12 13l2.7-2.7c.9-.9.8-2.1.1-2.8",key:"1blaws"}]],t3=e("MessageSquareHeart",GH);/** + */const GH=[["path",{d:"M19 15v-2a2 2 0 1 0-4 0v2",key:"h3d1vz"}],["path",{d:"M9 17H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3.5",key:"xsnnhn"}],["rect",{x:"13",y:"15",width:"8",height:"5",rx:"1",key:"1ccwuk"}]],n3=e("MessageSquareLock",GH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WH=[["path",{d:"M19 15v-2a2 2 0 1 0-4 0v2",key:"h3d1vz"}],["path",{d:"M9 17H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3.5",key:"xsnnhn"}],["rect",{x:"13",y:"15",width:"8",height:"5",rx:"1",key:"1ccwuk"}]],n3=e("MessageSquareLock",WH);/** + */const WH=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M8 10h.01",key:"19clt8"}],["path",{d:"M12 10h.01",key:"1nrarc"}],["path",{d:"M16 10h.01",key:"1m94wz"}]],d3=e("MessageSquareMore",WH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const EH=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M8 10h.01",key:"19clt8"}],["path",{d:"M12 10h.01",key:"1nrarc"}],["path",{d:"M16 10h.01",key:"1m94wz"}]],d3=e("MessageSquareMore",EH);/** + */const EH=[["path",{d:"M21 15V5a2 2 0 0 0-2-2H9",key:"43el77"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M3.6 3.6c-.4.3-.6.8-.6 1.4v16l4-4h10",key:"pwpm4a"}]],i3=e("MessageSquareOff",EH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XH=[["path",{d:"M21 15V5a2 2 0 0 0-2-2H9",key:"43el77"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M3.6 3.6c-.4.3-.6.8-.6 1.4v16l4-4h10",key:"pwpm4a"}]],i3=e("MessageSquareOff",XH);/** + */const XH=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],h3=e("MessageSquarePlus",XH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KH=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M12 7v6",key:"lw1j43"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],h3=e("MessageSquarePlus",KH);/** + */const KH=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M8 12a2 2 0 0 0 2-2V8H8",key:"1jfesj"}],["path",{d:"M14 12a2 2 0 0 0 2-2V8h-2",key:"1dq9mh"}]],y3=e("MessageSquareQuote",KH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JH=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M8 12a2 2 0 0 0 2-2V8H8",key:"1jfesj"}],["path",{d:"M14 12a2 2 0 0 0 2-2V8h-2",key:"1dq9mh"}]],y3=e("MessageSquareQuote",JH);/** + */const JH=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"m10 7-3 3 3 3",key:"1eugdv"}],["path",{d:"M17 13v-1a2 2 0 0 0-2-2H7",key:"ernfh3"}]],r3=e("MessageSquareReply",JH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QH=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"m10 7-3 3 3 3",key:"1eugdv"}],["path",{d:"M17 13v-1a2 2 0 0 0-2-2H7",key:"ernfh3"}]],r3=e("MessageSquareReply",QH);/** + */const QH=[["path",{d:"M21 12v3a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h7",key:"tqtdkg"}],["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"m16 8 5-5",key:"15mbrl"}]],k3=e("MessageSquareShare",QH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YH=[["path",{d:"M21 12v3a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h7",key:"tqtdkg"}],["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"m16 8 5-5",key:"15mbrl"}]],k3=e("MessageSquareShare",YH);/** + */const YH=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M13 8H7",key:"14i4kc"}],["path",{d:"M17 12H7",key:"16if0g"}]],p3=e("MessageSquareText",YH);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ez=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M13 8H7",key:"14i4kc"}],["path",{d:"M17 12H7",key:"16if0g"}]],p3=e("MessageSquareText",ez);/** + */const ez=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"m14.5 7.5-5 5",key:"3lb6iw"}],["path",{d:"m9.5 7.5 5 5",key:"ko136h"}]],s3=e("MessageSquareX",ez);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const az=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"m14.5 7.5-5 5",key:"3lb6iw"}],["path",{d:"m9.5 7.5 5 5",key:"ko136h"}]],s3=e("MessageSquareX",az);/** + */const az=[["path",{d:"M14 9a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z",key:"p1xzt8"}],["path",{d:"M18 9h2a2 2 0 0 1 2 2v11l-4-4h-6a2 2 0 0 1-2-2v-1",key:"1cx29u"}]],l3=e("MessagesSquare",az);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oz=[["path",{d:"M14 9a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z",key:"p1xzt8"}],["path",{d:"M18 9h2a2 2 0 0 1 2 2v11l-4-4h-6a2 2 0 0 1-2-2v-1",key:"1cx29u"}]],l3=e("MessagesSquare",oz);/** + */const oz=[["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}],["path",{d:"M18.89 13.23A7.12 7.12 0 0 0 19 12v-2",key:"80xlxr"}],["path",{d:"M5 10v2a7 7 0 0 0 12 5",key:"p2k8kg"}],["path",{d:"M15 9.34V5a3 3 0 0 0-5.68-1.33",key:"1gzdoj"}],["path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12",key:"r2i35w"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}]],u3=e("MicOff",oz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cz=[["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}],["path",{d:"M18.89 13.23A7.12 7.12 0 0 0 19 12v-2",key:"80xlxr"}],["path",{d:"M5 10v2a7 7 0 0 0 12 5",key:"p2k8kg"}],["path",{d:"M15 9.34V5a3 3 0 0 0-5.68-1.33",key:"1gzdoj"}],["path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12",key:"r2i35w"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}]],u3=e("MicOff",cz);/** + */const cz=[["path",{d:"m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12",key:"80a601"}],["path",{d:"M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5",key:"j0ngtp"}],["circle",{cx:"16",cy:"7",r:"5",key:"d08jfb"}]],ie=e("MicVocal",cz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tz=[["path",{d:"m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12",key:"80a601"}],["path",{d:"M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5",key:"j0ngtp"}],["circle",{cx:"16",cy:"7",r:"5",key:"d08jfb"}]],ie=e("MicVocal",tz);/** + */const tz=[["path",{d:"M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z",key:"131961"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2",key:"1vc78b"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}]],M3=e("Mic",tz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nz=[["path",{d:"M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z",key:"131961"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2",key:"1vc78b"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}]],M3=e("Mic",nz);/** + */const nz=[["path",{d:"M18 12h2",key:"quuxs7"}],["path",{d:"M18 16h2",key:"zsn3lv"}],["path",{d:"M18 20h2",key:"9x5y9y"}],["path",{d:"M18 4h2",key:"1luxfb"}],["path",{d:"M18 8h2",key:"nxqzg"}],["path",{d:"M4 12h2",key:"1ltxp0"}],["path",{d:"M4 16h2",key:"8a5zha"}],["path",{d:"M4 20h2",key:"27dk57"}],["path",{d:"M4 4h2",key:"10groj"}],["path",{d:"M4 8h2",key:"18vq6w"}],["path",{d:"M8 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1.5c-.276 0-.494.227-.562.495a2 2 0 0 1-3.876 0C9.994 2.227 9.776 2 9.5 2z",key:"1681fp"}]],v3=e("Microchip",nz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dz=[["path",{d:"M18 12h2",key:"quuxs7"}],["path",{d:"M18 16h2",key:"zsn3lv"}],["path",{d:"M18 20h2",key:"9x5y9y"}],["path",{d:"M18 4h2",key:"1luxfb"}],["path",{d:"M18 8h2",key:"nxqzg"}],["path",{d:"M4 12h2",key:"1ltxp0"}],["path",{d:"M4 16h2",key:"8a5zha"}],["path",{d:"M4 20h2",key:"27dk57"}],["path",{d:"M4 4h2",key:"10groj"}],["path",{d:"M4 8h2",key:"18vq6w"}],["path",{d:"M8 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1.5c-.276 0-.494.227-.562.495a2 2 0 0 1-3.876 0C9.994 2.227 9.776 2 9.5 2z",key:"1681fp"}]],v3=e("Microchip",dz);/** + */const dz=[["path",{d:"M6 18h8",key:"1borvv"}],["path",{d:"M3 22h18",key:"8prr45"}],["path",{d:"M14 22a7 7 0 1 0 0-14h-1",key:"1jwaiy"}],["path",{d:"M9 14h2",key:"197e7h"}],["path",{d:"M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z",key:"1bmzmy"}],["path",{d:"M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3",key:"1drr47"}]],m3=e("Microscope",dz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iz=[["path",{d:"M6 18h8",key:"1borvv"}],["path",{d:"M3 22h18",key:"8prr45"}],["path",{d:"M14 22a7 7 0 1 0 0-14h-1",key:"1jwaiy"}],["path",{d:"M9 14h2",key:"197e7h"}],["path",{d:"M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z",key:"1bmzmy"}],["path",{d:"M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3",key:"1drr47"}]],m3=e("Microscope",iz);/** + */const iz=[["rect",{width:"20",height:"15",x:"2",y:"4",rx:"2",key:"2no95f"}],["rect",{width:"8",height:"7",x:"6",y:"8",rx:"1",key:"zh9wx"}],["path",{d:"M18 8v7",key:"o5zi4n"}],["path",{d:"M6 19v2",key:"1loha6"}],["path",{d:"M18 19v2",key:"1dawf0"}]],_3=e("Microwave",iz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hz=[["rect",{width:"20",height:"15",x:"2",y:"4",rx:"2",key:"2no95f"}],["rect",{width:"8",height:"7",x:"6",y:"8",rx:"1",key:"zh9wx"}],["path",{d:"M18 8v7",key:"o5zi4n"}],["path",{d:"M6 19v2",key:"1loha6"}],["path",{d:"M18 19v2",key:"1dawf0"}]],_3=e("Microwave",hz);/** + */const hz=[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M12 3v3",key:"1n5kay"}],["path",{d:"M4 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h13a2 2 0 0 0 1.152-.365l3.424-2.317a1 1 0 0 0 0-1.635l-3.424-2.318A2 2 0 0 0 17 6z",key:"1btarq"}]],g3=e("Milestone",hz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yz=[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M12 3v3",key:"1n5kay"}],["path",{d:"M4 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h13a2 2 0 0 0 1.152-.365l3.424-2.317a1 1 0 0 0 0-1.635l-3.424-2.318A2 2 0 0 0 17 6z",key:"1btarq"}]],g3=e("Milestone",yz);/** + */const yz=[["path",{d:"M8 2h8",key:"1ssgc1"}],["path",{d:"M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3",key:"y0ejgx"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435",key:"iaxqsy"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],L3=e("MilkOff",yz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rz=[["path",{d:"M8 2h8",key:"1ssgc1"}],["path",{d:"M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3",key:"y0ejgx"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435",key:"iaxqsy"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],L3=e("MilkOff",rz);/** + */const rz=[["path",{d:"M8 2h8",key:"1ssgc1"}],["path",{d:"M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2",key:"qtp12x"}],["path",{d:"M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0",key:"ygeh44"}]],x3=e("Milk",rz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kz=[["path",{d:"M8 2h8",key:"1ssgc1"}],["path",{d:"M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2",key:"qtp12x"}],["path",{d:"M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0",key:"ygeh44"}]],x3=e("Milk",kz);/** + */const kz=[["polyline",{points:"4 14 10 14 10 20",key:"11kfnr"}],["polyline",{points:"20 10 14 10 14 4",key:"rlmsce"}],["line",{x1:"14",x2:"21",y1:"10",y2:"3",key:"o5lafz"}],["line",{x1:"3",x2:"10",y1:"21",y2:"14",key:"1atl0r"}]],w3=e("Minimize2",kz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pz=[["polyline",{points:"4 14 10 14 10 20",key:"11kfnr"}],["polyline",{points:"20 10 14 10 14 4",key:"rlmsce"}],["line",{x1:"14",x2:"21",y1:"10",y2:"3",key:"o5lafz"}],["line",{x1:"3",x2:"10",y1:"21",y2:"14",key:"1atl0r"}]],w3=e("Minimize2",pz);/** + */const pz=[["path",{d:"M8 3v3a2 2 0 0 1-2 2H3",key:"hohbtr"}],["path",{d:"M21 8h-3a2 2 0 0 1-2-2V3",key:"5jw1f3"}],["path",{d:"M3 16h3a2 2 0 0 1 2 2v3",key:"198tvr"}],["path",{d:"M16 21v-3a2 2 0 0 1 2-2h3",key:"ph8mxp"}]],f3=e("Minimize",pz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sz=[["path",{d:"M8 3v3a2 2 0 0 1-2 2H3",key:"hohbtr"}],["path",{d:"M21 8h-3a2 2 0 0 1-2-2V3",key:"5jw1f3"}],["path",{d:"M3 16h3a2 2 0 0 1 2 2v3",key:"198tvr"}],["path",{d:"M16 21v-3a2 2 0 0 1 2-2h3",key:"ph8mxp"}]],f3=e("Minimize",sz);/** + */const sz=[["path",{d:"M5 12h14",key:"1ays0h"}]],C3=e("Minus",sz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lz=[["path",{d:"M5 12h14",key:"1ays0h"}]],C3=e("Minus",lz);/** + */const lz=[["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],I3=e("MonitorCheck",lz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uz=[["path",{d:"m9 10 2 2 4-4",key:"1gnqz4"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],I3=e("MonitorCheck",uz);/** + */const uz=[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m15.2 4.9-.9-.4",key:"12wd2u"}],["path",{d:"m15.2 7.1-.9.4",key:"1r2vl7"}],["path",{d:"m16.9 3.2-.4-.9",key:"3zbo91"}],["path",{d:"m16.9 8.8-.4.9",key:"1qr2dn"}],["path",{d:"m19.5 2.3-.4.9",key:"1rjrkq"}],["path",{d:"m19.5 9.7-.4-.9",key:"heryx5"}],["path",{d:"m21.7 4.5-.9.4",key:"17fqt1"}],["path",{d:"m21.7 7.5-.9-.4",key:"14zyni"}],["path",{d:"M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7",key:"1tnzv8"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}]],N3=e("MonitorCog",uz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Mz=[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m15.2 4.9-.9-.4",key:"12wd2u"}],["path",{d:"m15.2 7.1-.9.4",key:"1r2vl7"}],["path",{d:"m16.9 3.2-.4-.9",key:"3zbo91"}],["path",{d:"m16.9 8.8-.4.9",key:"1qr2dn"}],["path",{d:"m19.5 2.3-.4.9",key:"1rjrkq"}],["path",{d:"m19.5 9.7-.4-.9",key:"heryx5"}],["path",{d:"m21.7 4.5-.9.4",key:"17fqt1"}],["path",{d:"m21.7 7.5-.9-.4",key:"14zyni"}],["path",{d:"M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7",key:"1tnzv8"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}]],N3=e("MonitorCog",Mz);/** + */const Mz=[["circle",{cx:"19",cy:"6",r:"3",key:"108a5v"}],["path",{d:"M22 12v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9",key:"1fet9y"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],S3=e("MonitorDot",Mz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vz=[["circle",{cx:"19",cy:"6",r:"3",key:"108a5v"}],["path",{d:"M22 12v3a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h9",key:"1fet9y"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],S3=e("MonitorDot",vz);/** + */const vz=[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"m15 10-3 3-3-3",key:"lzhmyn"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],q3=e("MonitorDown",vz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mz=[["path",{d:"M12 13V7",key:"h0r20n"}],["path",{d:"m15 10-3 3-3-3",key:"lzhmyn"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],q3=e("MonitorDown",mz);/** + */const mz=[["path",{d:"M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2",key:"k0q8oc"}],["path",{d:"M22 15V5a2 2 0 0 0-2-2H9",key:"cp1ac0"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],b3=e("MonitorOff",mz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _z=[["path",{d:"M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2",key:"k0q8oc"}],["path",{d:"M22 15V5a2 2 0 0 0-2-2H9",key:"cp1ac0"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],b3=e("MonitorOff",_z);/** + */const _z=[["path",{d:"M10 13V7",key:"1u13u9"}],["path",{d:"M14 13V7",key:"1vj9om"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],$3=e("MonitorPause",_z);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gz=[["path",{d:"M10 13V7",key:"1u13u9"}],["path",{d:"M14 13V7",key:"1vj9om"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],$3=e("MonitorPause",gz);/** + */const gz=[["path",{d:"M10 7.75a.75.75 0 0 1 1.142-.638l3.664 2.249a.75.75 0 0 1 0 1.278l-3.664 2.25a.75.75 0 0 1-1.142-.64z",key:"1pctta"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}]],A3=e("MonitorPlay",gz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Lz=[["path",{d:"M10 7.75a.75.75 0 0 1 1.142-.638l3.664 2.249a.75.75 0 0 1 0 1.278l-3.664 2.25a.75.75 0 0 1-1.142-.64z",key:"1pctta"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}]],A3=e("MonitorPlay",Lz);/** + */const Lz=[["path",{d:"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8",key:"10dyio"}],["path",{d:"M10 19v-3.96 3.15",key:"1irgej"}],["path",{d:"M7 19h5",key:"qswx4l"}],["rect",{width:"6",height:"10",x:"16",y:"12",rx:"2",key:"1egngj"}]],H3=e("MonitorSmartphone",Lz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xz=[["path",{d:"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8",key:"10dyio"}],["path",{d:"M10 19v-3.96 3.15",key:"1irgej"}],["path",{d:"M7 19h5",key:"qswx4l"}],["rect",{width:"6",height:"10",x:"16",y:"12",rx:"2",key:"1egngj"}]],H3=e("MonitorSmartphone",xz);/** + */const xz=[["path",{d:"M5.5 20H8",key:"1k40s5"}],["path",{d:"M17 9h.01",key:"1j24nn"}],["rect",{width:"10",height:"16",x:"12",y:"4",rx:"2",key:"ixliua"}],["path",{d:"M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4",key:"1mp6e1"}],["circle",{cx:"17",cy:"15",r:"1",key:"tqvash"}]],z3=e("MonitorSpeaker",xz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wz=[["path",{d:"M5.5 20H8",key:"1k40s5"}],["path",{d:"M17 9h.01",key:"1j24nn"}],["rect",{width:"10",height:"16",x:"12",y:"4",rx:"2",key:"ixliua"}],["path",{d:"M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4",key:"1mp6e1"}],["circle",{cx:"17",cy:"15",r:"1",key:"tqvash"}]],z3=e("MonitorSpeaker",wz);/** + */const wz=[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}],["rect",{x:"9",y:"7",width:"6",height:"6",rx:"1",key:"5m2oou"}]],P3=e("MonitorStop",wz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fz=[["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",key:"x3v2xh"}],["rect",{x:"9",y:"7",width:"6",height:"6",rx:"1",key:"5m2oou"}]],P3=e("MonitorStop",fz);/** + */const fz=[["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}],["path",{d:"M12 13V7",key:"h0r20n"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],j3=e("MonitorUp",fz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Cz=[["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}],["path",{d:"M12 13V7",key:"h0r20n"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],j3=e("MonitorUp",Cz);/** + */const Cz=[["path",{d:"m14.5 12.5-5-5",key:"1jahn5"}],["path",{d:"m9.5 12.5 5-5",key:"1k2t7b"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],V3=e("MonitorX",Cz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Iz=[["path",{d:"m14.5 12.5-5-5",key:"1jahn5"}],["path",{d:"m9.5 12.5 5-5",key:"1k2t7b"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"M8 21h8",key:"1ev6f3"}]],V3=e("MonitorX",Iz);/** + */const Iz=[["path",{d:"M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9",key:"4ay0iu"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}]],B3=e("MoonStar",Iz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Nz=[["path",{d:"M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9",key:"4ay0iu"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}]],B3=e("MoonStar",Nz);/** + */const Nz=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z",key:"otkl63"}],["path",{d:"M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19",key:"1pvmmp"}]],F3=e("MountainSnow",Nz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Sz=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z",key:"otkl63"}],["path",{d:"M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19",key:"1pvmmp"}]],F3=e("MountainSnow",Sz);/** + */const Sz=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z",key:"otkl63"}]],D3=e("Mountain",Sz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qz=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z",key:"otkl63"}]],D3=e("Mountain",qz);/** + */const qz=[["path",{d:"M12 6v.343",key:"1gyhex"}],["path",{d:"M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218",key:"ukzz01"}],["path",{d:"M19 13.343V9A7 7 0 0 0 8.56 2.902",key:"104jy9"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}]],R3=e("MouseOff",qz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bz=[["path",{d:"M12 6v.343",key:"1gyhex"}],["path",{d:"M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218",key:"ukzz01"}],["path",{d:"M19 13.343V9A7 7 0 0 0 8.56 2.902",key:"104jy9"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}]],R3=e("MouseOff",bz);/** + */const bz=[["path",{d:"M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z",key:"edeuup"}]],T3=e("MousePointer2",bz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $z=[["path",{d:"M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z",key:"edeuup"}]],T3=e("MousePointer2",$z);/** + */const $z=[["path",{d:"M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z",key:"11pp1i"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}],["path",{d:"m11.8 11.8 8.4 8.4",key:"oogvdj"}]],U3=e("MousePointerBan",$z);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Az=[["path",{d:"M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z",key:"11pp1i"}],["circle",{cx:"16",cy:"16",r:"6",key:"qoo3c4"}],["path",{d:"m11.8 11.8 8.4 8.4",key:"oogvdj"}]],U3=e("MousePointerBan",Az);/** + */const Az=[["path",{d:"M14 4.1 12 6",key:"ita8i4"}],["path",{d:"m5.1 8-2.9-.8",key:"1go3kf"}],["path",{d:"m6 12-1.9 2",key:"mnht97"}],["path",{d:"M7.2 2.2 8 5.1",key:"1cfko1"}],["path",{d:"M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z",key:"s0h3yz"}]],O3=e("MousePointerClick",Az);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Hz=[["path",{d:"M14 4.1 12 6",key:"ita8i4"}],["path",{d:"m5.1 8-2.9-.8",key:"1go3kf"}],["path",{d:"m6 12-1.9 2",key:"mnht97"}],["path",{d:"M7.2 2.2 8 5.1",key:"1cfko1"}],["path",{d:"M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z",key:"s0h3yz"}]],O3=e("MousePointerClick",Hz);/** + */const Hz=[["path",{d:"M12.586 12.586 19 19",key:"ea5xo7"}],["path",{d:"M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z",key:"277e5u"}]],Z3=e("MousePointer",Hz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zz=[["path",{d:"M12.586 12.586 19 19",key:"ea5xo7"}],["path",{d:"M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z",key:"277e5u"}]],Z3=e("MousePointer",zz);/** + */const zz=[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"7",key:"11ol66"}],["path",{d:"M12 6v4",key:"16clxf"}]],G3=e("Mouse",zz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Pz=[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"7",key:"11ol66"}],["path",{d:"M12 6v4",key:"16clxf"}]],G3=e("Mouse",Pz);/** + */const Pz=[["path",{d:"M5 3v16h16",key:"1mqmf9"}],["path",{d:"m5 19 6-6",key:"jh6hbb"}],["path",{d:"m2 6 3-3 3 3",key:"tkyvxa"}],["path",{d:"m18 16 3 3-3 3",key:"1d4glt"}]],he=e("Move3d",Pz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jz=[["path",{d:"M5 3v16h16",key:"1mqmf9"}],["path",{d:"m5 19 6-6",key:"jh6hbb"}],["path",{d:"m2 6 3-3 3 3",key:"tkyvxa"}],["path",{d:"m18 16 3 3-3 3",key:"1d4glt"}]],he=e("Move3d",jz);/** + */const jz=[["path",{d:"M19 13v6h-6",key:"1hxl6d"}],["path",{d:"M5 11V5h6",key:"12e2xe"}],["path",{d:"m5 5 14 14",key:"11anup"}]],W3=e("MoveDiagonal2",jz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Vz=[["path",{d:"M19 13v6h-6",key:"1hxl6d"}],["path",{d:"M5 11V5h6",key:"12e2xe"}],["path",{d:"m5 5 14 14",key:"11anup"}]],W3=e("MoveDiagonal2",Vz);/** + */const Vz=[["path",{d:"M11 19H5v-6",key:"8awifj"}],["path",{d:"M13 5h6v6",key:"7voy1q"}],["path",{d:"M19 5 5 19",key:"wwaj1z"}]],E3=e("MoveDiagonal",Vz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Bz=[["path",{d:"M11 19H5v-6",key:"8awifj"}],["path",{d:"M13 5h6v6",key:"7voy1q"}],["path",{d:"M19 5 5 19",key:"wwaj1z"}]],E3=e("MoveDiagonal",Bz);/** + */const Bz=[["path",{d:"M11 19H5V13",key:"1akmht"}],["path",{d:"M19 5L5 19",key:"72u4yj"}]],X3=e("MoveDownLeft",Bz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Fz=[["path",{d:"M11 19H5V13",key:"1akmht"}],["path",{d:"M19 5L5 19",key:"72u4yj"}]],X3=e("MoveDownLeft",Fz);/** + */const Fz=[["path",{d:"M19 13V19H13",key:"10vkzq"}],["path",{d:"M5 5L19 19",key:"5zm2fv"}]],K3=e("MoveDownRight",Fz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Dz=[["path",{d:"M19 13V19H13",key:"10vkzq"}],["path",{d:"M5 5L19 19",key:"5zm2fv"}]],K3=e("MoveDownRight",Dz);/** + */const Dz=[["path",{d:"M8 18L12 22L16 18",key:"cskvfv"}],["path",{d:"M12 2V22",key:"r89rzk"}]],J3=e("MoveDown",Dz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Rz=[["path",{d:"M8 18L12 22L16 18",key:"cskvfv"}],["path",{d:"M12 2V22",key:"r89rzk"}]],J3=e("MoveDown",Rz);/** + */const Rz=[["path",{d:"m18 8 4 4-4 4",key:"1ak13k"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"m6 8-4 4 4 4",key:"15zrgr"}]],Q3=e("MoveHorizontal",Rz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Tz=[["path",{d:"m18 8 4 4-4 4",key:"1ak13k"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"m6 8-4 4 4 4",key:"15zrgr"}]],Q3=e("MoveHorizontal",Tz);/** + */const Tz=[["path",{d:"M6 8L2 12L6 16",key:"kyvwex"}],["path",{d:"M2 12H22",key:"1m8cig"}]],Y3=e("MoveLeft",Tz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Uz=[["path",{d:"M6 8L2 12L6 16",key:"kyvwex"}],["path",{d:"M2 12H22",key:"1m8cig"}]],Y3=e("MoveLeft",Uz);/** + */const Uz=[["path",{d:"M18 8L22 12L18 16",key:"1r0oui"}],["path",{d:"M2 12H22",key:"1m8cig"}]],el=e("MoveRight",Uz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Oz=[["path",{d:"M18 8L22 12L18 16",key:"1r0oui"}],["path",{d:"M2 12H22",key:"1m8cig"}]],el=e("MoveRight",Oz);/** + */const Oz=[["path",{d:"M5 11V5H11",key:"3q78g9"}],["path",{d:"M5 5L19 19",key:"5zm2fv"}]],al=e("MoveUpLeft",Oz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Zz=[["path",{d:"M5 11V5H11",key:"3q78g9"}],["path",{d:"M5 5L19 19",key:"5zm2fv"}]],al=e("MoveUpLeft",Zz);/** + */const Zz=[["path",{d:"M13 5H19V11",key:"1n1gyv"}],["path",{d:"M19 5L5 19",key:"72u4yj"}]],ol=e("MoveUpRight",Zz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Gz=[["path",{d:"M13 5H19V11",key:"1n1gyv"}],["path",{d:"M19 5L5 19",key:"72u4yj"}]],ol=e("MoveUpRight",Gz);/** + */const Gz=[["path",{d:"M8 6L12 2L16 6",key:"1yvkyx"}],["path",{d:"M12 2V22",key:"r89rzk"}]],cl=e("MoveUp",Gz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Wz=[["path",{d:"M8 6L12 2L16 6",key:"1yvkyx"}],["path",{d:"M12 2V22",key:"r89rzk"}]],cl=e("MoveUp",Wz);/** + */const Wz=[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"m8 18 4 4 4-4",key:"bh5tu3"}],["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}]],tl=e("MoveVertical",Wz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ez=[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"m8 18 4 4 4-4",key:"bh5tu3"}],["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}]],tl=e("MoveVertical",Ez);/** + */const Ez=[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"m15 19-3 3-3-3",key:"11eu04"}],["path",{d:"m19 9 3 3-3 3",key:"1mg7y2"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"m5 9-3 3 3 3",key:"j64kie"}],["path",{d:"m9 5 3-3 3 3",key:"l8vdw6"}]],nl=e("Move",Ez);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Xz=[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"m15 19-3 3-3-3",key:"11eu04"}],["path",{d:"m19 9 3 3-3 3",key:"1mg7y2"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"m5 9-3 3 3 3",key:"j64kie"}],["path",{d:"m9 5 3-3 3 3",key:"l8vdw6"}]],nl=e("Move",Xz);/** + */const Xz=[["circle",{cx:"8",cy:"18",r:"4",key:"1fc0mg"}],["path",{d:"M12 18V2l7 4",key:"g04rme"}]],dl=e("Music2",Xz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Kz=[["circle",{cx:"8",cy:"18",r:"4",key:"1fc0mg"}],["path",{d:"M12 18V2l7 4",key:"g04rme"}]],dl=e("Music2",Kz);/** + */const Kz=[["circle",{cx:"12",cy:"18",r:"4",key:"m3r9ws"}],["path",{d:"M16 18V2",key:"40x2m5"}]],il=e("Music3",Kz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Jz=[["circle",{cx:"12",cy:"18",r:"4",key:"m3r9ws"}],["path",{d:"M16 18V2",key:"40x2m5"}]],il=e("Music3",Jz);/** + */const Jz=[["path",{d:"M9 18V5l12-2v13",key:"1jmyc2"}],["path",{d:"m9 9 12-2",key:"1e64n2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["circle",{cx:"18",cy:"16",r:"3",key:"1hluhg"}]],hl=e("Music4",Jz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Qz=[["path",{d:"M9 18V5l12-2v13",key:"1jmyc2"}],["path",{d:"m9 9 12-2",key:"1e64n2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["circle",{cx:"18",cy:"16",r:"3",key:"1hluhg"}]],hl=e("Music4",Qz);/** + */const Qz=[["path",{d:"M9 18V5l12-2v13",key:"1jmyc2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["circle",{cx:"18",cy:"16",r:"3",key:"1hluhg"}]],yl=e("Music",Qz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Yz=[["path",{d:"M9 18V5l12-2v13",key:"1jmyc2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["circle",{cx:"18",cy:"16",r:"3",key:"1hluhg"}]],yl=e("Music",Yz);/** + */const Yz=[["path",{d:"M9.31 9.31 5 21l7-4 7 4-1.17-3.17",key:"qoq2o2"}],["path",{d:"M14.53 8.88 12 2l-1.17 3.17",key:"k3sjzy"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],rl=e("Navigation2Off",Yz);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eP=[["path",{d:"M9.31 9.31 5 21l7-4 7 4-1.17-3.17",key:"qoq2o2"}],["path",{d:"M14.53 8.88 12 2l-1.17 3.17",key:"k3sjzy"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],rl=e("Navigation2Off",eP);/** + */const eP=[["polygon",{points:"12 2 19 21 12 17 5 21 12 2",key:"x8c0qg"}]],kl=e("Navigation2",eP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aP=[["polygon",{points:"12 2 19 21 12 17 5 21 12 2",key:"x8c0qg"}]],kl=e("Navigation2",aP);/** + */const aP=[["path",{d:"M8.43 8.43 3 11l8 2 2 8 2.57-5.43",key:"1vdtb7"}],["path",{d:"M17.39 11.73 22 2l-9.73 4.61",key:"tya3r6"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],pl=e("NavigationOff",aP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oP=[["path",{d:"M8.43 8.43 3 11l8 2 2 8 2.57-5.43",key:"1vdtb7"}],["path",{d:"M17.39 11.73 22 2l-9.73 4.61",key:"tya3r6"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],pl=e("NavigationOff",oP);/** + */const oP=[["polygon",{points:"3 11 22 2 13 21 11 13 3 11",key:"1ltx0t"}]],sl=e("Navigation",oP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cP=[["polygon",{points:"3 11 22 2 13 21 11 13 3 11",key:"1ltx0t"}]],sl=e("Navigation",cP);/** + */const cP=[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1",key:"4q2zg0"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1",key:"8cvhb9"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1",key:"1egb70"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3",key:"1jsf9p"}],["path",{d:"M12 12V8",key:"2874zd"}]],ll=e("Network",cP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tP=[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1",key:"4q2zg0"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1",key:"8cvhb9"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1",key:"1egb70"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3",key:"1jsf9p"}],["path",{d:"M12 12V8",key:"2874zd"}]],ll=e("Network",tP);/** + */const tP=[["path",{d:"M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2",key:"7pis2x"}],["path",{d:"M18 14h-8",key:"sponae"}],["path",{d:"M15 18h-5",key:"95g1m2"}],["path",{d:"M10 6h8v4h-8V6Z",key:"smlsk5"}]],ul=e("Newspaper",tP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nP=[["path",{d:"M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2",key:"7pis2x"}],["path",{d:"M18 14h-8",key:"sponae"}],["path",{d:"M15 18h-5",key:"95g1m2"}],["path",{d:"M10 6h8v4h-8V6Z",key:"smlsk5"}]],ul=e("Newspaper",nP);/** + */const nP=[["path",{d:"M6 8.32a7.43 7.43 0 0 1 0 7.36",key:"9iaqei"}],["path",{d:"M9.46 6.21a11.76 11.76 0 0 1 0 11.58",key:"1yha7l"}],["path",{d:"M12.91 4.1a15.91 15.91 0 0 1 .01 15.8",key:"4iu2gk"}],["path",{d:"M16.37 2a20.16 20.16 0 0 1 0 20",key:"sap9u2"}]],Ml=e("Nfc",nP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dP=[["path",{d:"M6 8.32a7.43 7.43 0 0 1 0 7.36",key:"9iaqei"}],["path",{d:"M9.46 6.21a11.76 11.76 0 0 1 0 11.58",key:"1yha7l"}],["path",{d:"M12.91 4.1a15.91 15.91 0 0 1 .01 15.8",key:"4iu2gk"}],["path",{d:"M16.37 2a20.16 20.16 0 0 1 0 20",key:"sap9u2"}]],Ml=e("Nfc",dP);/** + */const dP=[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"m9 4 6 4",key:"t8piew"}],["path",{d:"m9 8 6-4",key:"sndyih"}],["circle",{cx:"12",cy:"17",r:"5",key:"qbz8iq"}]],vl=e("NonBinary",dP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iP=[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"m9 4 6 4",key:"t8piew"}],["path",{d:"m9 8 6-4",key:"sndyih"}],["circle",{cx:"12",cy:"17",r:"5",key:"qbz8iq"}]],vl=e("NonBinary",iP);/** + */const iP=[["path",{d:"M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4",key:"re6nr2"}],["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["path",{d:"M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"pqwjuv"}]],ml=e("NotebookPen",iP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hP=[["path",{d:"M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4",key:"re6nr2"}],["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["path",{d:"M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"pqwjuv"}]],ml=e("NotebookPen",hP);/** + */const hP=[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M15 2v20",key:"dcj49h"}],["path",{d:"M15 7h5",key:"1xj5lc"}],["path",{d:"M15 12h5",key:"w5shd9"}],["path",{d:"M15 17h5",key:"1qaofu"}]],_l=e("NotebookTabs",hP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yP=[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M15 2v20",key:"dcj49h"}],["path",{d:"M15 7h5",key:"1xj5lc"}],["path",{d:"M15 12h5",key:"w5shd9"}],["path",{d:"M15 17h5",key:"1qaofu"}]],_l=e("NotebookTabs",yP);/** + */const yP=[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M9.5 8h5",key:"11mslq"}],["path",{d:"M9.5 12H16",key:"ktog6x"}],["path",{d:"M9.5 16H14",key:"p1seyn"}]],gl=e("NotebookText",yP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rP=[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M9.5 8h5",key:"11mslq"}],["path",{d:"M9.5 12H16",key:"ktog6x"}],["path",{d:"M9.5 16H14",key:"p1seyn"}]],gl=e("NotebookText",rP);/** + */const rP=[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M16 2v20",key:"rotuqe"}]],Ll=e("Notebook",rP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kP=[["path",{d:"M2 6h4",key:"aawbzj"}],["path",{d:"M2 10h4",key:"l0bgd4"}],["path",{d:"M2 14h4",key:"1gsvsf"}],["path",{d:"M2 18h4",key:"1bu2t1"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M16 2v20",key:"rotuqe"}]],Ll=e("Notebook",kP);/** + */const kP=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v2",key:"j91f56"}],["path",{d:"M20 12v2",key:"w8o0tu"}],["path",{d:"M20 18v2a2 2 0 0 1-2 2h-1",key:"1c9ggx"}],["path",{d:"M13 22h-2",key:"191ugt"}],["path",{d:"M7 22H6a2 2 0 0 1-2-2v-2",key:"1rt9px"}],["path",{d:"M4 14v-2",key:"1v0sqh"}],["path",{d:"M4 8V6a2 2 0 0 1 2-2h2",key:"1mwabg"}],["path",{d:"M8 10h6",key:"3oa6kw"}],["path",{d:"M8 14h8",key:"1fgep2"}],["path",{d:"M8 18h5",key:"17enja"}]],xl=e("NotepadTextDashed",kP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pP=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"M16 2v4",key:"4m81vk"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v2",key:"j91f56"}],["path",{d:"M20 12v2",key:"w8o0tu"}],["path",{d:"M20 18v2a2 2 0 0 1-2 2h-1",key:"1c9ggx"}],["path",{d:"M13 22h-2",key:"191ugt"}],["path",{d:"M7 22H6a2 2 0 0 1-2-2v-2",key:"1rt9px"}],["path",{d:"M4 14v-2",key:"1v0sqh"}],["path",{d:"M4 8V6a2 2 0 0 1 2-2h2",key:"1mwabg"}],["path",{d:"M8 10h6",key:"3oa6kw"}],["path",{d:"M8 14h8",key:"1fgep2"}],["path",{d:"M8 18h5",key:"17enja"}]],xl=e("NotepadTextDashed",pP);/** + */const pP=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"16",height:"18",x:"4",y:"4",rx:"2",key:"1u9h20"}],["path",{d:"M8 10h6",key:"3oa6kw"}],["path",{d:"M8 14h8",key:"1fgep2"}],["path",{d:"M8 18h5",key:"17enja"}]],wl=e("NotepadText",pP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sP=[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"16",height:"18",x:"4",y:"4",rx:"2",key:"1u9h20"}],["path",{d:"M8 10h6",key:"3oa6kw"}],["path",{d:"M8 14h8",key:"1fgep2"}],["path",{d:"M8 18h5",key:"17enja"}]],wl=e("NotepadText",sP);/** + */const sP=[["path",{d:"M12 4V2",key:"1k5q1u"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939",key:"1xcvy9"}],["path",{d:"M19 10v3.343",key:"163tfc"}],["path",{d:"M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192",key:"17914v"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],fl=e("NutOff",sP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lP=[["path",{d:"M12 4V2",key:"1k5q1u"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939",key:"1xcvy9"}],["path",{d:"M19 10v3.343",key:"163tfc"}],["path",{d:"M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192",key:"17914v"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],fl=e("NutOff",lP);/** + */const lP=[["path",{d:"M12 4V2",key:"1k5q1u"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4",key:"1tgyif"}],["path",{d:"M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z",key:"tnsqj"}]],Cl=e("Nut",lP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uP=[["path",{d:"M12 4V2",key:"1k5q1u"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4",key:"1tgyif"}],["path",{d:"M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z",key:"tnsqj"}]],Cl=e("Nut",uP);/** + */const uP=[["path",{d:"M12 16h.01",key:"1drbdi"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z",key:"1fd625"}]],ye=e("OctagonAlert",uP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MP=[["path",{d:"M12 16h.01",key:"1drbdi"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z",key:"1fd625"}]],ye=e("OctagonAlert",MP);/** + */const MP=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}],["path",{d:"M8 12h8",key:"1wcyev"}]],Il=e("OctagonMinus",MP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vP=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}],["path",{d:"M8 12h8",key:"1wcyev"}]],Il=e("OctagonMinus",vP);/** + */const vP=[["path",{d:"M10 15V9",key:"1lckn7"}],["path",{d:"M14 15V9",key:"1muqhk"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}]],re=e("OctagonPause",vP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mP=[["path",{d:"M10 15V9",key:"1lckn7"}],["path",{d:"M14 15V9",key:"1muqhk"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}]],re=e("OctagonPause",mP);/** + */const mP=[["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]],ke=e("OctagonX",mP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _P=[["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]],ke=e("OctagonX",_P);/** + */const _P=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}]],Nl=e("Octagon",_P);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gP=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z",key:"2d38gg"}]],Nl=e("Octagon",gP);/** + */const gP=[["path",{d:"M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21",key:"1x94xo"}]],Sl=e("Omega",gP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LP=[["path",{d:"M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21",key:"1x94xo"}]],Sl=e("Omega",LP);/** + */const LP=[["path",{d:"M3 3h6l6 18h6",key:"ph9rgk"}],["path",{d:"M14 3h7",key:"16f0ms"}]],ql=e("Option",LP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xP=[["path",{d:"M3 3h6l6 18h6",key:"ph9rgk"}],["path",{d:"M14 3h7",key:"16f0ms"}]],ql=e("Option",xP);/** + */const xP=[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["circle",{cx:"19",cy:"5",r:"2",key:"mhkx31"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}],["path",{d:"M10.4 21.9a10 10 0 0 0 9.941-15.416",key:"eohfx2"}],["path",{d:"M13.5 2.1a10 10 0 0 0-9.841 15.416",key:"19pvbm"}]],bl=e("Orbit",xP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wP=[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["circle",{cx:"19",cy:"5",r:"2",key:"mhkx31"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}],["path",{d:"M10.4 21.9a10 10 0 0 0 9.941-15.416",key:"eohfx2"}],["path",{d:"M13.5 2.1a10 10 0 0 0-9.841 15.416",key:"19pvbm"}]],bl=e("Orbit",wP);/** + */const wP=[["path",{d:"M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025",key:"1bx4vc"}],["path",{d:"m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009",key:"1h3km6"}],["path",{d:"m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027",key:"1hj4wg"}]],$l=e("Origami",wP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fP=[["path",{d:"M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025",key:"1bx4vc"}],["path",{d:"m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009",key:"1h3km6"}],["path",{d:"m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027",key:"1hj4wg"}]],$l=e("Origami",fP);/** + */const fP=[["path",{d:"M3 9h18v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9Z",key:"1ront0"}],["path",{d:"m3 9 2.45-4.9A2 2 0 0 1 7.24 3h9.52a2 2 0 0 1 1.8 1.1L21 9",key:"19h2x1"}],["path",{d:"M12 3v6",key:"1holv5"}]],Al=e("Package2",fP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CP=[["path",{d:"M3 9h18v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9Z",key:"1ront0"}],["path",{d:"m3 9 2.45-4.9A2 2 0 0 1 7.24 3h9.52a2 2 0 0 1 1.8 1.1L21 9",key:"19h2x1"}],["path",{d:"M12 3v6",key:"1holv5"}]],Al=e("Package2",CP);/** + */const CP=[["path",{d:"m16 16 2 2 4-4",key:"gfu2re"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]],Hl=e("PackageCheck",CP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IP=[["path",{d:"m16 16 2 2 4-4",key:"gfu2re"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]],Hl=e("PackageCheck",IP);/** + */const IP=[["path",{d:"M16 16h6",key:"100bgy"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]],zl=e("PackageMinus",IP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NP=[["path",{d:"M16 16h6",key:"100bgy"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]],zl=e("PackageMinus",NP);/** + */const NP=[["path",{d:"M12 22v-9",key:"x3hkom"}],["path",{d:"M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z",key:"2ntwy6"}],["path",{d:"M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13",key:"1pmm1c"}],["path",{d:"M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z",key:"12ttoo"}]],Pl=e("PackageOpen",NP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SP=[["path",{d:"M12 22v-9",key:"x3hkom"}],["path",{d:"M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z",key:"2ntwy6"}],["path",{d:"M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13",key:"1pmm1c"}],["path",{d:"M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z",key:"12ttoo"}]],Pl=e("PackageOpen",SP);/** + */const SP=[["path",{d:"M16 16h6",key:"100bgy"}],["path",{d:"M19 13v6",key:"85cyf1"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]],jl=e("PackagePlus",SP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qP=[["path",{d:"M16 16h6",key:"100bgy"}],["path",{d:"M19 13v6",key:"85cyf1"}],["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}]],jl=e("PackagePlus",qP);/** + */const qP=[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}],["circle",{cx:"18.5",cy:"15.5",r:"2.5",key:"b5zd12"}],["path",{d:"M20.27 17.27 22 19",key:"1l4muz"}]],Vl=e("PackageSearch",qP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bP=[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}],["circle",{cx:"18.5",cy:"15.5",r:"2.5",key:"b5zd12"}],["path",{d:"M20.27 17.27 22 19",key:"1l4muz"}]],Vl=e("PackageSearch",bP);/** + */const bP=[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}],["path",{d:"m17 13 5 5m-5 0 5-5",key:"im3w4b"}]],Bl=e("PackageX",bP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $P=[["path",{d:"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14",key:"e7tb2h"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12",key:"a4e8g8"}],["path",{d:"m17 13 5 5m-5 0 5-5",key:"im3w4b"}]],Bl=e("PackageX",$P);/** + */const $P=[["path",{d:"m19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z",key:"irua1i"}],["path",{d:"m5 2 5 5",key:"1lls2c"}],["path",{d:"M2 13h15",key:"1hkzvu"}],["path",{d:"M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z",key:"xk76lq"}]],Fl=e("PaintBucket",$P);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AP=[["path",{d:"m19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z",key:"irua1i"}],["path",{d:"m5 2 5 5",key:"1lls2c"}],["path",{d:"M2 13h15",key:"1hkzvu"}],["path",{d:"M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z",key:"xk76lq"}]],Fl=e("PaintBucket",AP);/** + */const AP=[["rect",{width:"16",height:"6",x:"2",y:"2",rx:"2",key:"jcyz7m"}],["path",{d:"M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2",key:"1b9h7c"}],["rect",{width:"4",height:"6",x:"8",y:"16",rx:"1",key:"d6e7yl"}]],Dl=e("PaintRoller",AP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HP=[["rect",{width:"16",height:"6",x:"2",y:"2",rx:"2",key:"jcyz7m"}],["path",{d:"M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2",key:"1b9h7c"}],["rect",{width:"4",height:"6",x:"8",y:"16",rx:"1",key:"d6e7yl"}]],Dl=e("PaintRoller",HP);/** + */const HP=[["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M14 2v4",key:"qmzblu"}],["path",{d:"M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z",key:"ycvu00"}],["path",{d:"M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1",key:"iw4wnp"}]],pe=e("PaintbrushVertical",HP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zP=[["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M14 2v4",key:"qmzblu"}],["path",{d:"M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z",key:"ycvu00"}],["path",{d:"M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1",key:"iw4wnp"}]],pe=e("PaintbrushVertical",zP);/** + */const zP=[["path",{d:"m14.622 17.897-10.68-2.913",key:"vj2p1u"}],["path",{d:"M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z",key:"18tc5c"}],["path",{d:"M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15",key:"ytzfxy"}]],Rl=e("Paintbrush",zP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PP=[["path",{d:"m14.622 17.897-10.68-2.913",key:"vj2p1u"}],["path",{d:"M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z",key:"18tc5c"}],["path",{d:"M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15",key:"ytzfxy"}]],Rl=e("Paintbrush",PP);/** + */const PP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"m15 8-3 3-3-3",key:"1oxy1z"}]],Tl=e("PanelBottomClose",PP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"m15 8-3 3-3-3",key:"1oxy1z"}]],Tl=e("PanelBottomClose",jP);/** + */const jP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M14 15h1",key:"171nev"}],["path",{d:"M19 15h2",key:"1vnucp"}],["path",{d:"M3 15h2",key:"8bym0q"}],["path",{d:"M9 15h1",key:"1tg3ks"}]],se=e("PanelBottomDashed",jP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M14 15h1",key:"171nev"}],["path",{d:"M19 15h2",key:"1vnucp"}],["path",{d:"M3 15h2",key:"8bym0q"}],["path",{d:"M9 15h1",key:"1tg3ks"}]],se=e("PanelBottomDashed",VP);/** + */const VP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}]],Ul=e("PanelBottomOpen",VP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"m9 10 3-3 3 3",key:"11gsxs"}]],Ul=e("PanelBottomOpen",BP);/** + */const BP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}]],Ol=e("PanelBottom",BP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h18",key:"5xshup"}]],Ol=e("PanelBottom",FP);/** + */const FP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m16 15-3-3 3-3",key:"14y99z"}]],le=e("PanelLeftClose",FP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m16 15-3-3 3-3",key:"14y99z"}]],le=e("PanelLeftClose",DP);/** + */const DP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 14v1",key:"askpd8"}],["path",{d:"M9 19v2",key:"16tejx"}],["path",{d:"M9 3v2",key:"1noubl"}],["path",{d:"M9 9v1",key:"19ebxg"}]],ue=e("PanelLeftDashed",DP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 14v1",key:"askpd8"}],["path",{d:"M9 19v2",key:"16tejx"}],["path",{d:"M9 3v2",key:"1noubl"}],["path",{d:"M9 9v1",key:"19ebxg"}]],ue=e("PanelLeftDashed",RP);/** + */const RP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m14 9 3 3-3 3",key:"8010ee"}]],Me=e("PanelLeftOpen",RP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m14 9 3 3-3 3",key:"8010ee"}]],Me=e("PanelLeftOpen",TP);/** + */const TP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m8 9 3 3-3 3",key:"12hl5m"}]],Zl=e("PanelRightClose",TP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m8 9 3 3-3 3",key:"12hl5m"}]],Zl=e("PanelRightClose",UP);/** + */const UP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 14v1",key:"ilsfch"}],["path",{d:"M15 19v2",key:"1fst2f"}],["path",{d:"M15 3v2",key:"z204g4"}],["path",{d:"M15 9v1",key:"z2a8b1"}]],ve=e("PanelRightDashed",UP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 14v1",key:"ilsfch"}],["path",{d:"M15 19v2",key:"1fst2f"}],["path",{d:"M15 3v2",key:"z204g4"}],["path",{d:"M15 9v1",key:"z2a8b1"}]],ve=e("PanelRightDashed",OP);/** + */const OP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m10 15-3-3 3-3",key:"1pgupc"}]],Gl=e("PanelRightOpen",OP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m10 15-3-3 3-3",key:"1pgupc"}]],Gl=e("PanelRightOpen",ZP);/** + */const ZP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}]],Wl=e("PanelRight",ZP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}]],Wl=e("PanelRight",GP);/** + */const GP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"m9 16 3-3 3 3",key:"1idcnm"}]],El=e("PanelTopClose",GP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"m9 16 3-3 3 3",key:"1idcnm"}]],El=e("PanelTopClose",WP);/** + */const WP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M14 9h1",key:"l0svgy"}],["path",{d:"M19 9h2",key:"te2zfg"}],["path",{d:"M3 9h2",key:"1h4ldw"}],["path",{d:"M9 9h1",key:"15jzuz"}]],me=e("PanelTopDashed",WP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const EP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M14 9h1",key:"l0svgy"}],["path",{d:"M19 9h2",key:"te2zfg"}],["path",{d:"M3 9h2",key:"1h4ldw"}],["path",{d:"M9 9h1",key:"15jzuz"}]],me=e("PanelTopDashed",EP);/** + */const EP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"m15 14-3 3-3-3",key:"g215vf"}]],Xl=e("PanelTopOpen",EP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"m15 14-3 3-3-3",key:"g215vf"}]],Xl=e("PanelTopOpen",XP);/** + */const XP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}]],Kl=e("PanelTop",XP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}]],Kl=e("PanelTop",KP);/** + */const KP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M9 15h12",key:"5ijen5"}]],Jl=e("PanelsLeftBottom",KP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M9 15h12",key:"5ijen5"}]],Jl=e("PanelsLeftBottom",JP);/** + */const JP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h12",key:"1wkqb3"}],["path",{d:"M15 3v18",key:"14nvp0"}]],Ql=e("PanelsRightBottom",JP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 15h12",key:"1wkqb3"}],["path",{d:"M15 3v18",key:"14nvp0"}]],Ql=e("PanelsRightBottom",QP);/** + */const QP=[["path",{d:"M13.234 20.252 21 12.3",key:"1cbrk9"}],["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 0 2.828 2 2 0 0 0 2.828 0l8.414-8.586a4 4 0 0 0 0-5.656 4 4 0 0 0-5.656 0l-8.415 8.585a6 6 0 1 0 8.486 8.486",key:"1pkts6"}]],Yl=e("Paperclip",QP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YP=[["path",{d:"M13.234 20.252 21 12.3",key:"1cbrk9"}],["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 0 2.828 2 2 0 0 0 2.828 0l8.414-8.586a4 4 0 0 0 0-5.656 4 4 0 0 0-5.656 0l-8.415 8.585a6 6 0 1 0 8.486 8.486",key:"1pkts6"}]],Yl=e("Paperclip",YP);/** + */const YP=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9",key:"uto9ud"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9",key:"4w2vsq"}]],e6=e("Parentheses",YP);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ej=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9",key:"uto9ud"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9",key:"4w2vsq"}]],e6=e("Parentheses",ej);/** + */const ej=[["path",{d:"M11 15h2",key:"199qp6"}],["path",{d:"M12 12v3",key:"158kv8"}],["path",{d:"M12 19v3",key:"npa21l"}],["path",{d:"M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z",key:"1jofit"}],["path",{d:"M9 9a3 3 0 1 1 6 0",key:"jdoeu8"}]],a6=e("ParkingMeter",ej);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aj=[["path",{d:"M11 15h2",key:"199qp6"}],["path",{d:"M12 12v3",key:"158kv8"}],["path",{d:"M12 19v3",key:"npa21l"}],["path",{d:"M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z",key:"1jofit"}],["path",{d:"M9 9a3 3 0 1 1 6 0",key:"jdoeu8"}]],a6=e("ParkingMeter",aj);/** + */const aj=[["path",{d:"M5.8 11.3 2 22l10.7-3.79",key:"gwxi1d"}],["path",{d:"M4 3h.01",key:"1vcuye"}],["path",{d:"M22 8h.01",key:"1mrtc2"}],["path",{d:"M15 2h.01",key:"1cjtqr"}],["path",{d:"M22 20h.01",key:"1mrys2"}],["path",{d:"m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10",key:"hbicv8"}],["path",{d:"m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17",key:"1i94pl"}],["path",{d:"m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7",key:"1cofks"}],["path",{d:"M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z",key:"4kbmks"}]],o6=e("PartyPopper",aj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oj=[["path",{d:"M5.8 11.3 2 22l10.7-3.79",key:"gwxi1d"}],["path",{d:"M4 3h.01",key:"1vcuye"}],["path",{d:"M22 8h.01",key:"1mrtc2"}],["path",{d:"M15 2h.01",key:"1cjtqr"}],["path",{d:"M22 20h.01",key:"1mrys2"}],["path",{d:"m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10",key:"hbicv8"}],["path",{d:"m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17",key:"1i94pl"}],["path",{d:"m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7",key:"1cofks"}],["path",{d:"M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z",key:"4kbmks"}]],o6=e("PartyPopper",oj);/** + */const oj=[["rect",{x:"14",y:"4",width:"4",height:"16",rx:"1",key:"zuxfzm"}],["rect",{x:"6",y:"4",width:"4",height:"16",rx:"1",key:"1okwgv"}]],c6=e("Pause",oj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cj=[["rect",{x:"14",y:"4",width:"4",height:"16",rx:"1",key:"zuxfzm"}],["rect",{x:"6",y:"4",width:"4",height:"16",rx:"1",key:"1okwgv"}]],c6=e("Pause",cj);/** + */const cj=[["circle",{cx:"11",cy:"4",r:"2",key:"vol9p0"}],["circle",{cx:"18",cy:"8",r:"2",key:"17gozi"}],["circle",{cx:"20",cy:"16",r:"2",key:"1v9bxh"}],["path",{d:"M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z",key:"1ydw1z"}]],t6=e("PawPrint",cj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tj=[["circle",{cx:"11",cy:"4",r:"2",key:"vol9p0"}],["circle",{cx:"18",cy:"8",r:"2",key:"17gozi"}],["circle",{cx:"20",cy:"16",r:"2",key:"1v9bxh"}],["path",{d:"M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z",key:"1ydw1z"}]],t6=e("PawPrint",tj);/** + */const tj=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",key:"1uq1d7"}],["path",{d:"M15 14h.01",key:"1kp3bh"}],["path",{d:"M9 6h6",key:"dgm16u"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],n6=e("PcCase",tj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nj=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",key:"1uq1d7"}],["path",{d:"M15 14h.01",key:"1kp3bh"}],["path",{d:"M9 6h6",key:"dgm16u"}],["path",{d:"M9 10h6",key:"9gxzsh"}]],n6=e("PcCase",nj);/** + */const nj=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",key:"bjo8r8"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353",key:"16h5ne"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],d6=e("PenOff",nj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dj=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",key:"bjo8r8"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353",key:"16h5ne"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],d6=e("PenOff",dj);/** + */const dj=[["path",{d:"M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z",key:"nt11vn"}],["path",{d:"m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18",key:"15qc1e"}],["path",{d:"m2.3 2.3 7.286 7.286",key:"1wuzzi"}],["circle",{cx:"11",cy:"11",r:"2",key:"xmgehs"}]],i6=e("PenTool",dj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ij=[["path",{d:"M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z",key:"nt11vn"}],["path",{d:"m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18",key:"15qc1e"}],["path",{d:"m2.3 2.3 7.286 7.286",key:"1wuzzi"}],["circle",{cx:"11",cy:"11",r:"2",key:"xmgehs"}]],i6=e("PenTool",ij);/** + */const ij=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]],_e=e("Pen",ij);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hj=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]],_e=e("Pen",hj);/** + */const hj=[["path",{d:"M12 20h9",key:"t2du7b"}],["path",{d:"M16.376 3.622a1 1 0 0 1 3.002 3.002L7.368 18.635a2 2 0 0 1-.855.506l-2.872.838a.5.5 0 0 1-.62-.62l.838-2.872a2 2 0 0 1 .506-.854z",key:"1ykcvy"}],["path",{d:"m15 5 3 3",key:"1w25hb"}]],h6=e("PencilLine",hj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yj=[["path",{d:"M12 20h9",key:"t2du7b"}],["path",{d:"M16.376 3.622a1 1 0 0 1 3.002 3.002L7.368 18.635a2 2 0 0 1-.855.506l-2.872.838a.5.5 0 0 1-.62-.62l.838-2.872a2 2 0 0 1 .506-.854z",key:"1ykcvy"}],["path",{d:"m15 5 3 3",key:"1w25hb"}]],h6=e("PencilLine",yj);/** + */const yj=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",key:"bjo8r8"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353",key:"16h5ne"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],y6=e("PencilOff",yj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rj=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982",key:"bjo8r8"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353",key:"16h5ne"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],y6=e("PencilOff",rj);/** + */const rj=[["path",{d:"M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13",key:"orapub"}],["path",{d:"m8 6 2-2",key:"115y1s"}],["path",{d:"m18 16 2-2",key:"ee94s4"}],["path",{d:"m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17",key:"cfq27r"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],r6=e("PencilRuler",rj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kj=[["path",{d:"M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13",key:"orapub"}],["path",{d:"m8 6 2-2",key:"115y1s"}],["path",{d:"m18 16 2-2",key:"ee94s4"}],["path",{d:"m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17",key:"cfq27r"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],r6=e("PencilRuler",kj);/** + */const kj=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],k6=e("Pencil",kj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pj=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],k6=e("Pencil",pj);/** + */const pj=[["path",{d:"M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z",key:"2hea0t"}]],p6=e("Pentagon",pj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sj=[["path",{d:"M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z",key:"2hea0t"}]],p6=e("Pentagon",sj);/** + */const sj=[["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["path",{d:"m9 20 3-6 3 6",key:"se2kox"}],["path",{d:"m6 8 6 2 6-2",key:"4o3us4"}],["path",{d:"M12 10v4",key:"1kjpxc"}]],s6=e("PersonStanding",sj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lj=[["circle",{cx:"12",cy:"5",r:"1",key:"gxeob9"}],["path",{d:"m9 20 3-6 3 6",key:"se2kox"}],["path",{d:"m6 8 6 2 6-2",key:"4o3us4"}],["path",{d:"M12 10v4",key:"1kjpxc"}]],s6=e("PersonStanding",lj);/** + */const lj=[["path",{d:"M20 11H4",key:"6ut86h"}],["path",{d:"M20 7H4",key:"zbl0bi"}],["path",{d:"M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7",key:"1ana5r"}]],l6=e("PhilippinePeso",lj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uj=[["path",{d:"M20 11H4",key:"6ut86h"}],["path",{d:"M20 7H4",key:"zbl0bi"}],["path",{d:"M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7",key:"1ana5r"}]],l6=e("PhilippinePeso",uj);/** + */const uj=[["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z",key:"foiqr5"}],["path",{d:"M14.05 2a9 9 0 0 1 8 7.94",key:"vmijpz"}],["path",{d:"M14.05 6A5 5 0 0 1 18 10",key:"13nbpp"}]],u6=e("PhoneCall",uj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Mj=[["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z",key:"foiqr5"}],["path",{d:"M14.05 2a9 9 0 0 1 8 7.94",key:"vmijpz"}],["path",{d:"M14.05 6A5 5 0 0 1 18 10",key:"13nbpp"}]],u6=e("PhoneCall",Mj);/** + */const Mj=[["polyline",{points:"18 2 22 6 18 10",key:"6vjanh"}],["line",{x1:"14",x2:"22",y1:"6",y2:"6",key:"1jsywh"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z",key:"foiqr5"}]],M6=e("PhoneForwarded",Mj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vj=[["polyline",{points:"18 2 22 6 18 10",key:"6vjanh"}],["line",{x1:"14",x2:"22",y1:"6",y2:"6",key:"1jsywh"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z",key:"foiqr5"}]],M6=e("PhoneForwarded",vj);/** + */const vj=[["polyline",{points:"16 2 16 8 22 8",key:"1ygljm"}],["line",{x1:"22",x2:"16",y1:"2",y2:"8",key:"1xzwqn"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z",key:"foiqr5"}]],v6=e("PhoneIncoming",vj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mj=[["polyline",{points:"16 2 16 8 22 8",key:"1ygljm"}],["line",{x1:"22",x2:"16",y1:"2",y2:"8",key:"1xzwqn"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z",key:"foiqr5"}]],v6=e("PhoneIncoming",mj);/** + */const mj=[["line",{x1:"22",x2:"16",y1:"2",y2:"8",key:"1xzwqn"}],["line",{x1:"16",x2:"22",y1:"2",y2:"8",key:"13zxdn"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z",key:"foiqr5"}]],m6=e("PhoneMissed",mj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _j=[["line",{x1:"22",x2:"16",y1:"2",y2:"8",key:"1xzwqn"}],["line",{x1:"16",x2:"22",y1:"2",y2:"8",key:"13zxdn"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z",key:"foiqr5"}]],m6=e("PhoneMissed",_j);/** + */const _j=[["path",{d:"M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91",key:"z86iuo"}],["line",{x1:"22",x2:"2",y1:"2",y2:"22",key:"11kh81"}]],_6=e("PhoneOff",_j);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gj=[["path",{d:"M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91",key:"z86iuo"}],["line",{x1:"22",x2:"2",y1:"2",y2:"22",key:"11kh81"}]],_6=e("PhoneOff",gj);/** + */const gj=[["polyline",{points:"22 8 22 2 16 2",key:"1g204g"}],["line",{x1:"16",x2:"22",y1:"8",y2:"2",key:"1ggias"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z",key:"foiqr5"}]],g6=e("PhoneOutgoing",gj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Lj=[["polyline",{points:"22 8 22 2 16 2",key:"1g204g"}],["line",{x1:"16",x2:"22",y1:"8",y2:"2",key:"1ggias"}],["path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z",key:"foiqr5"}]],g6=e("PhoneOutgoing",Lj);/** + */const Lj=[["line",{x1:"9",x2:"9",y1:"4",y2:"20",key:"ovs5a5"}],["path",{d:"M4 7c0-1.7 1.3-3 3-3h13",key:"10pag4"}],["path",{d:"M18 20c-1.7 0-3-1.3-3-3V4",key:"1gaosr"}]],L6=e("Pi",Lj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xj=[["line",{x1:"9",x2:"9",y1:"4",y2:"20",key:"ovs5a5"}],["path",{d:"M4 7c0-1.7 1.3-3 3-3h13",key:"10pag4"}],["path",{d:"M18 20c-1.7 0-3-1.3-3-3V4",key:"1gaosr"}]],L6=e("Pi",xj);/** + */const xj=[["path",{d:"M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8",key:"lag0yf"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M6 14v4",key:"9ng0ue"}],["path",{d:"M10 14v4",key:"1v8uk5"}],["path",{d:"M14 14v4",key:"1tqops"}],["path",{d:"M18 14v4",key:"18uqwm"}]],x6=e("Piano",xj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wj=[["path",{d:"M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8",key:"lag0yf"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M6 14v4",key:"9ng0ue"}],["path",{d:"M10 14v4",key:"1v8uk5"}],["path",{d:"M14 14v4",key:"1tqops"}],["path",{d:"M18 14v4",key:"18uqwm"}]],x6=e("Piano",wj);/** + */const wj=[["path",{d:"M14.531 12.469 6.619 20.38a1 1 0 1 1-3-3l7.912-7.912",key:"we99rg"}],["path",{d:"M15.686 4.314A12.5 12.5 0 0 0 5.461 2.958 1 1 0 0 0 5.58 4.71a22 22 0 0 1 6.318 3.393",key:"1w6hck"}],["path",{d:"M17.7 3.7a1 1 0 0 0-1.4 0l-4.6 4.6a1 1 0 0 0 0 1.4l2.6 2.6a1 1 0 0 0 1.4 0l4.6-4.6a1 1 0 0 0 0-1.4z",key:"15hgfx"}],["path",{d:"M19.686 8.314a12.501 12.501 0 0 1 1.356 10.225 1 1 0 0 1-1.751-.119 22 22 0 0 0-3.393-6.319",key:"452b4h"}]],w6=e("Pickaxe",wj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fj=[["path",{d:"M14.531 12.469 6.619 20.38a1 1 0 1 1-3-3l7.912-7.912",key:"we99rg"}],["path",{d:"M15.686 4.314A12.5 12.5 0 0 0 5.461 2.958 1 1 0 0 0 5.58 4.71a22 22 0 0 1 6.318 3.393",key:"1w6hck"}],["path",{d:"M17.7 3.7a1 1 0 0 0-1.4 0l-4.6 4.6a1 1 0 0 0 0 1.4l2.6 2.6a1 1 0 0 0 1.4 0l4.6-4.6a1 1 0 0 0 0-1.4z",key:"15hgfx"}],["path",{d:"M19.686 8.314a12.501 12.501 0 0 1 1.356 10.225 1 1 0 0 1-1.751-.119 22 22 0 0 0-3.393-6.319",key:"452b4h"}]],w6=e("Pickaxe",fj);/** + */const fj=[["path",{d:"M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4",key:"daa4of"}],["rect",{width:"10",height:"7",x:"12",y:"13",rx:"2",key:"1nb8gs"}]],f6=e("PictureInPicture2",fj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Cj=[["path",{d:"M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4",key:"daa4of"}],["rect",{width:"10",height:"7",x:"12",y:"13",rx:"2",key:"1nb8gs"}]],f6=e("PictureInPicture2",Cj);/** + */const Cj=[["path",{d:"M2 10h6V4",key:"zwrco"}],["path",{d:"m2 4 6 6",key:"ug085t"}],["path",{d:"M21 10V7a2 2 0 0 0-2-2h-7",key:"git5jr"}],["path",{d:"M3 14v2a2 2 0 0 0 2 2h3",key:"1f7fh3"}],["rect",{x:"12",y:"14",width:"10",height:"7",rx:"1",key:"1wjs3o"}]],C6=e("PictureInPicture",Cj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ij=[["path",{d:"M2 10h6V4",key:"zwrco"}],["path",{d:"m2 4 6 6",key:"ug085t"}],["path",{d:"M21 10V7a2 2 0 0 0-2-2h-7",key:"git5jr"}],["path",{d:"M3 14v2a2 2 0 0 0 2 2h3",key:"1f7fh3"}],["rect",{x:"12",y:"14",width:"10",height:"7",rx:"1",key:"1wjs3o"}]],C6=e("PictureInPicture",Ij);/** + */const Ij=[["path",{d:"M19 5c-1.5 0-2.8 1.4-3 2-3.5-1.5-11-.3-11 5 0 1.8 0 3 2 4.5V20h4v-2h3v2h4v-4c1-.5 1.7-1 2-2h2v-4h-2c0-1-.5-1.5-1-2V5z",key:"1ivx2i"}],["path",{d:"M2 9v1c0 1.1.9 2 2 2h1",key:"nm575m"}],["path",{d:"M16 11h.01",key:"xkw8gn"}]],I6=e("PiggyBank",Ij);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Nj=[["path",{d:"M19 5c-1.5 0-2.8 1.4-3 2-3.5-1.5-11-.3-11 5 0 1.8 0 3 2 4.5V20h4v-2h3v2h4v-4c1-.5 1.7-1 2-2h2v-4h-2c0-1-.5-1.5-1-2V5z",key:"1ivx2i"}],["path",{d:"M2 9v1c0 1.1.9 2 2 2h1",key:"nm575m"}],["path",{d:"M16 11h.01",key:"xkw8gn"}]],I6=e("PiggyBank",Nj);/** + */const Nj=[["path",{d:"M14 3v11",key:"mlfb7b"}],["path",{d:"M14 9h-3a3 3 0 0 1 0-6h9",key:"1ulc19"}],["path",{d:"M18 3v11",key:"1phi0r"}],["path",{d:"M22 18H2l4-4",key:"yt65j9"}],["path",{d:"m6 22-4-4",key:"6jgyf5"}]],N6=e("PilcrowLeft",Nj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Sj=[["path",{d:"M14 3v11",key:"mlfb7b"}],["path",{d:"M14 9h-3a3 3 0 0 1 0-6h9",key:"1ulc19"}],["path",{d:"M18 3v11",key:"1phi0r"}],["path",{d:"M22 18H2l4-4",key:"yt65j9"}],["path",{d:"m6 22-4-4",key:"6jgyf5"}]],N6=e("PilcrowLeft",Sj);/** + */const Sj=[["path",{d:"M10 3v11",key:"o3l5kj"}],["path",{d:"M10 9H7a1 1 0 0 1 0-6h8",key:"1wb1nc"}],["path",{d:"M14 3v11",key:"mlfb7b"}],["path",{d:"m18 14 4 4H2",key:"4r8io1"}],["path",{d:"m22 18-4 4",key:"1hjjrd"}]],S6=e("PilcrowRight",Sj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qj=[["path",{d:"M10 3v11",key:"o3l5kj"}],["path",{d:"M10 9H7a1 1 0 0 1 0-6h8",key:"1wb1nc"}],["path",{d:"M14 3v11",key:"mlfb7b"}],["path",{d:"m18 14 4 4H2",key:"4r8io1"}],["path",{d:"m22 18-4 4",key:"1hjjrd"}]],S6=e("PilcrowRight",qj);/** + */const qj=[["path",{d:"M13 4v16",key:"8vvj80"}],["path",{d:"M17 4v16",key:"7dpous"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13",key:"sh4n9v"}]],q6=e("Pilcrow",qj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bj=[["path",{d:"M13 4v16",key:"8vvj80"}],["path",{d:"M17 4v16",key:"7dpous"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13",key:"sh4n9v"}]],q6=e("Pilcrow",bj);/** + */const bj=[["path",{d:"M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4",key:"17ldeb"}],["path",{d:"M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7",key:"nc37y6"}],["rect",{width:"16",height:"5",x:"4",y:"2",rx:"1",key:"3jeezo"}]],b6=e("PillBottle",bj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $j=[["path",{d:"M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4",key:"17ldeb"}],["path",{d:"M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7",key:"nc37y6"}],["rect",{width:"16",height:"5",x:"4",y:"2",rx:"1",key:"3jeezo"}]],b6=e("PillBottle",$j);/** + */const $j=[["path",{d:"m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z",key:"wa1lgi"}],["path",{d:"m8.5 8.5 7 7",key:"rvfmvr"}]],$6=e("Pill",$j);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Aj=[["path",{d:"m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z",key:"wa1lgi"}],["path",{d:"m8.5 8.5 7 7",key:"rvfmvr"}]],$6=e("Pill",Aj);/** + */const Aj=[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89",key:"znwnzq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11",key:"c9qhm2"}]],A6=e("PinOff",Aj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Hj=[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89",key:"znwnzq"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11",key:"c9qhm2"}]],A6=e("PinOff",Hj);/** + */const Hj=[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z",key:"1nkz8b"}]],H6=e("Pin",Hj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zj=[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z",key:"1nkz8b"}]],H6=e("Pin",zj);/** + */const zj=[["path",{d:"m2 22 1-1h3l9-9",key:"1sre89"}],["path",{d:"M3 21v-3l9-9",key:"hpe2y6"}],["path",{d:"m15 6 3.4-3.4a2.1 2.1 0 1 1 3 3L18 9l.4.4a2.1 2.1 0 1 1-3 3l-3.8-3.8a2.1 2.1 0 1 1 3-3l.4.4Z",key:"196du1"}]],z6=e("Pipette",zj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Pj=[["path",{d:"m2 22 1-1h3l9-9",key:"1sre89"}],["path",{d:"M3 21v-3l9-9",key:"hpe2y6"}],["path",{d:"m15 6 3.4-3.4a2.1 2.1 0 1 1 3 3L18 9l.4.4a2.1 2.1 0 1 1-3 3l-3.8-3.8a2.1 2.1 0 1 1 3-3l.4.4Z",key:"196du1"}]],z6=e("Pipette",Pj);/** + */const Pj=[["path",{d:"m12 14-1 1",key:"11onhr"}],["path",{d:"m13.75 18.25-1.25 1.42",key:"1yisr3"}],["path",{d:"M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12",key:"1qtqk6"}],["path",{d:"M18.8 9.3a1 1 0 0 0 2.1 7.7",key:"fbbbr2"}],["path",{d:"M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z",key:"1hyfdd"}]],P6=e("Pizza",Pj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jj=[["path",{d:"m12 14-1 1",key:"11onhr"}],["path",{d:"m13.75 18.25-1.25 1.42",key:"1yisr3"}],["path",{d:"M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12",key:"1qtqk6"}],["path",{d:"M18.8 9.3a1 1 0 0 0 2.1 7.7",key:"fbbbr2"}],["path",{d:"M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z",key:"1hyfdd"}]],P6=e("Pizza",jj);/** + */const jj=[["path",{d:"M2 22h20",key:"272qi7"}],["path",{d:"M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z",key:"1ma21e"}]],j6=e("PlaneLanding",jj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Vj=[["path",{d:"M2 22h20",key:"272qi7"}],["path",{d:"M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z",key:"1ma21e"}]],j6=e("PlaneLanding",Vj);/** + */const Vj=[["path",{d:"M2 22h20",key:"272qi7"}],["path",{d:"M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z",key:"fkigj9"}]],V6=e("PlaneTakeoff",Vj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Bj=[["path",{d:"M2 22h20",key:"272qi7"}],["path",{d:"M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z",key:"fkigj9"}]],V6=e("PlaneTakeoff",Bj);/** + */const Bj=[["path",{d:"M9 2v6",key:"17ngun"}],["path",{d:"M15 2v6",key:"s7yy2p"}],["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M5 8h14",key:"pcz4l3"}],["path",{d:"M6 11V8h12v3a6 6 0 1 1-12 0Z",key:"wtfw2c"}]],B6=e("Plug2",Bj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Fj=[["path",{d:"M9 2v6",key:"17ngun"}],["path",{d:"M15 2v6",key:"s7yy2p"}],["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M5 8h14",key:"pcz4l3"}],["path",{d:"M6 11V8h12v3a6 6 0 1 1-12 0Z",key:"wtfw2c"}]],B6=e("Plug2",Fj);/** + */const Fj=[["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z",key:"goz73y"}],["path",{d:"m2 22 3-3",key:"19mgm9"}],["path",{d:"M7.5 13.5 10 11",key:"7xgeeb"}],["path",{d:"M10.5 16.5 13 14",key:"10btkg"}],["path",{d:"m18 3-4 4h6l-4 4",key:"16psg9"}]],ge=e("PlugZap",Fj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Dj=[["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z",key:"goz73y"}],["path",{d:"m2 22 3-3",key:"19mgm9"}],["path",{d:"M7.5 13.5 10 11",key:"7xgeeb"}],["path",{d:"M10.5 16.5 13 14",key:"10btkg"}],["path",{d:"m18 3-4 4h6l-4 4",key:"16psg9"}]],ge=e("PlugZap",Dj);/** + */const Dj=[["path",{d:"M12 22v-5",key:"1ega77"}],["path",{d:"M9 8V2",key:"14iosj"}],["path",{d:"M15 8V2",key:"18g5xt"}],["path",{d:"M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z",key:"osxo6l"}]],F6=e("Plug",Dj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Rj=[["path",{d:"M12 22v-5",key:"1ega77"}],["path",{d:"M9 8V2",key:"14iosj"}],["path",{d:"M15 8V2",key:"18g5xt"}],["path",{d:"M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z",key:"osxo6l"}]],F6=e("Plug",Rj);/** + */const Rj=[["path",{d:"M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2",key:"19w3oe"}],["path",{d:"M18 6h.01",key:"1v4wsw"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z",key:"6fykxj"}],["path",{d:"M18 11.66V22a4 4 0 0 0 4-4V6",key:"1utzek"}]],D6=e("PocketKnife",Rj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Tj=[["path",{d:"M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2",key:"19w3oe"}],["path",{d:"M18 6h.01",key:"1v4wsw"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z",key:"6fykxj"}],["path",{d:"M18 11.66V22a4 4 0 0 0 4-4V6",key:"1utzek"}]],D6=e("PocketKnife",Tj);/** + */const Tj=[["path",{d:"M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z",key:"1mz881"}],["polyline",{points:"8 10 12 14 16 10",key:"w4mbv5"}]],R6=e("Pocket",Tj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Uj=[["path",{d:"M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z",key:"1mz881"}],["polyline",{points:"8 10 12 14 16 10",key:"w4mbv5"}]],R6=e("Pocket",Uj);/** + */const Uj=[["path",{d:"M16.85 18.58a9 9 0 1 0-9.7 0",key:"d71mpg"}],["path",{d:"M8 14a5 5 0 1 1 8 0",key:"fc81rn"}],["circle",{cx:"12",cy:"11",r:"1",key:"1gvufo"}],["path",{d:"M13 17a1 1 0 1 0-2 0l.5 4.5a.5.5 0 1 0 1 0Z",key:"za5kbj"}]],T6=e("Podcast",Uj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Oj=[["path",{d:"M16.85 18.58a9 9 0 1 0-9.7 0",key:"d71mpg"}],["path",{d:"M8 14a5 5 0 1 1 8 0",key:"fc81rn"}],["circle",{cx:"12",cy:"11",r:"1",key:"1gvufo"}],["path",{d:"M13 17a1 1 0 1 0-2 0l.5 4.5a.5.5 0 1 0 1 0Z",key:"za5kbj"}]],T6=e("Podcast",Oj);/** + */const Oj=[["path",{d:"M10 4.5V4a2 2 0 0 0-2.41-1.957",key:"jsi14n"}],["path",{d:"M13.9 8.4a2 2 0 0 0-1.26-1.295",key:"hirc7f"}],["path",{d:"M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158",key:"1jxb2e"}],["path",{d:"m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343",key:"10r7hm"}],["path",{d:"M6 6v8",key:"tv5xkp"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],U6=e("PointerOff",Oj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Zj=[["path",{d:"M10 4.5V4a2 2 0 0 0-2.41-1.957",key:"jsi14n"}],["path",{d:"M13.9 8.4a2 2 0 0 0-1.26-1.295",key:"hirc7f"}],["path",{d:"M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158",key:"1jxb2e"}],["path",{d:"m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343",key:"10r7hm"}],["path",{d:"M6 6v8",key:"tv5xkp"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],U6=e("PointerOff",Zj);/** + */const Zj=[["path",{d:"M22 14a8 8 0 0 1-8 8",key:"56vcr3"}],["path",{d:"M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1agjmk"}],["path",{d:"M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1",key:"wdbh2u"}],["path",{d:"M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10",key:"1ibuk9"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",key:"g6ys72"}]],O6=e("Pointer",Zj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Gj=[["path",{d:"M22 14a8 8 0 0 1-8 8",key:"56vcr3"}],["path",{d:"M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2",key:"1agjmk"}],["path",{d:"M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1",key:"wdbh2u"}],["path",{d:"M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10",key:"1ibuk9"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15",key:"g6ys72"}]],O6=e("Pointer",Gj);/** + */const Gj=[["path",{d:"M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4",key:"10td1f"}],["path",{d:"M10 22 9 8",key:"yjptiv"}],["path",{d:"m14 22 1-14",key:"8jwc8b"}],["path",{d:"M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z",key:"1qo33t"}]],Z6=e("Popcorn",Gj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Wj=[["path",{d:"M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4",key:"10td1f"}],["path",{d:"M10 22 9 8",key:"yjptiv"}],["path",{d:"m14 22 1-14",key:"8jwc8b"}],["path",{d:"M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z",key:"1qo33t"}]],Z6=e("Popcorn",Wj);/** + */const Wj=[["path",{d:"M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z",key:"1o68ps"}],["path",{d:"m22 22-5.5-5.5",key:"17o70y"}]],G6=e("Popsicle",Wj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Ej=[["path",{d:"M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z",key:"1o68ps"}],["path",{d:"m22 22-5.5-5.5",key:"17o70y"}]],G6=e("Popsicle",Ej);/** + */const Ej=[["path",{d:"M18 7c0-5.333-8-5.333-8 0",key:"1prm2n"}],["path",{d:"M10 7v14",key:"18tmcs"}],["path",{d:"M6 21h12",key:"4dkmi1"}],["path",{d:"M6 13h10",key:"ybwr4a"}]],W6=e("PoundSterling",Ej);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Xj=[["path",{d:"M18 7c0-5.333-8-5.333-8 0",key:"1prm2n"}],["path",{d:"M10 7v14",key:"18tmcs"}],["path",{d:"M6 21h12",key:"4dkmi1"}],["path",{d:"M6 13h10",key:"ybwr4a"}]],W6=e("PoundSterling",Xj);/** + */const Xj=[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15",key:"dxknvb"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68",key:"1x7qb5"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],E6=e("PowerOff",Xj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Kj=[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15",key:"dxknvb"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68",key:"1x7qb5"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],E6=e("PowerOff",Kj);/** + */const Kj=[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04",key:"obofu9"}]],X6=e("Power",Kj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Jj=[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04",key:"obofu9"}]],X6=e("Power",Jj);/** + */const Jj=[["path",{d:"M2 3h20",key:"91anmk"}],["path",{d:"M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3",key:"2k9sn8"}],["path",{d:"m7 21 5-5 5 5",key:"bip4we"}]],K6=e("Presentation",Jj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Qj=[["path",{d:"M2 3h20",key:"91anmk"}],["path",{d:"M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3",key:"2k9sn8"}],["path",{d:"m7 21 5-5 5 5",key:"bip4we"}]],K6=e("Presentation",Qj);/** + */const Qj=[["path",{d:"M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5",key:"qeb09x"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2",key:"1md90i"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6",key:"1itne7"}]],J6=e("PrinterCheck",Qj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const Yj=[["path",{d:"M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5",key:"qeb09x"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2",key:"1md90i"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6",key:"1itne7"}]],J6=e("PrinterCheck",Yj);/** + */const Yj=[["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2",key:"143wyd"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6",key:"1itne7"}],["rect",{x:"6",y:"14",width:"12",height:"8",rx:"1",key:"1ue0tg"}]],Q6=e("Printer",Yj);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eV=[["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2",key:"143wyd"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6",key:"1itne7"}],["rect",{x:"6",y:"14",width:"12",height:"8",rx:"1",key:"1ue0tg"}]],Q6=e("Printer",eV);/** + */const eV=[["path",{d:"M5 7 3 5",key:"1yys58"}],["path",{d:"M9 6V3",key:"1ptz9u"}],["path",{d:"m13 7 2-2",key:"1w3vmq"}],["circle",{cx:"9",cy:"13",r:"3",key:"1mma13"}],["path",{d:"M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17",key:"2frwzc"}],["path",{d:"M16 16h2",key:"dnq2od"}]],Y6=e("Projector",eV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aV=[["path",{d:"M5 7 3 5",key:"1yys58"}],["path",{d:"M9 6V3",key:"1ptz9u"}],["path",{d:"m13 7 2-2",key:"1w3vmq"}],["circle",{cx:"9",cy:"13",r:"3",key:"1mma13"}],["path",{d:"M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17",key:"2frwzc"}],["path",{d:"M16 16h2",key:"dnq2od"}]],Y6=e("Projector",aV);/** + */const aV=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M12 9v11",key:"1fnkrn"}],["path",{d:"M2 9h13a2 2 0 0 1 2 2v9",key:"11z3ex"}]],e8=e("Proportions",aV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oV=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M12 9v11",key:"1fnkrn"}],["path",{d:"M2 9h13a2 2 0 0 1 2 2v9",key:"11z3ex"}]],e8=e("Proportions",oV);/** + */const oV=[["path",{d:"M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z",key:"w46dr5"}]],a8=e("Puzzle",oV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cV=[["path",{d:"M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z",key:"w46dr5"}]],a8=e("Puzzle",cV);/** + */const cV=[["path",{d:"M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z",key:"aenxs0"}],["path",{d:"M12 2v20",key:"t6zp3m"}]],o8=e("Pyramid",cV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tV=[["path",{d:"M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z",key:"aenxs0"}],["path",{d:"M12 2v20",key:"t6zp3m"}]],o8=e("Pyramid",tV);/** + */const tV=[["path",{d:"M13 16a3 3 0 0 1 2.24 5",key:"1epib5"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3",key:"ue9ozu"}],["path",{d:"M20 8.54V4a2 2 0 1 0-4 0v3",key:"49iql8"}],["path",{d:"M7.612 12.524a3 3 0 1 0-1.6 4.3",key:"1e33i0"}]],c8=e("Rabbit",tV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nV=[["path",{d:"M13 16a3 3 0 0 1 2.24 5",key:"1epib5"}],["path",{d:"M18 12h.01",key:"yjnet6"}],["path",{d:"M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3",key:"ue9ozu"}],["path",{d:"M20 8.54V4a2 2 0 1 0-4 0v3",key:"49iql8"}],["path",{d:"M7.612 12.524a3 3 0 1 0-1.6 4.3",key:"1e33i0"}]],c8=e("Rabbit",nV);/** + */const nV=[["path",{d:"M19.07 4.93A10 10 0 0 0 6.99 3.34",key:"z3du51"}],["path",{d:"M4 6h.01",key:"oypzma"}],["path",{d:"M2.29 9.62A10 10 0 1 0 21.31 8.35",key:"qzzz0"}],["path",{d:"M16.24 7.76A6 6 0 1 0 8.23 16.67",key:"1yjesh"}],["path",{d:"M12 18h.01",key:"mhygvu"}],["path",{d:"M17.99 11.66A6 6 0 0 1 15.77 16.67",key:"1u2y91"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"m13.41 10.59 5.66-5.66",key:"mhq4k0"}]],t8=e("Radar",nV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dV=[["path",{d:"M19.07 4.93A10 10 0 0 0 6.99 3.34",key:"z3du51"}],["path",{d:"M4 6h.01",key:"oypzma"}],["path",{d:"M2.29 9.62A10 10 0 1 0 21.31 8.35",key:"qzzz0"}],["path",{d:"M16.24 7.76A6 6 0 1 0 8.23 16.67",key:"1yjesh"}],["path",{d:"M12 18h.01",key:"mhygvu"}],["path",{d:"M17.99 11.66A6 6 0 0 1 15.77 16.67",key:"1u2y91"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"m13.41 10.59 5.66-5.66",key:"mhq4k0"}]],t8=e("Radar",dV);/** + */const dV=[["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M7.5 4.2c-.3-.5-.9-.7-1.3-.4C3.9 5.5 2.3 8.1 2 11c-.1.5.4 1 1 1h5c0-1.5.8-2.8 2-3.4-1.1-1.9-2-3.5-2.5-4.4z",key:"wy49g3"}],["path",{d:"M21 12c.6 0 1-.4 1-1-.3-2.9-1.8-5.5-4.1-7.1-.4-.3-1.1-.2-1.3.3-.6.9-1.5 2.5-2.6 4.3 1.2.7 2 2 2 3.5h5z",key:"vklnvr"}],["path",{d:"M7.5 19.8c-.3.5-.1 1.1.4 1.3 2.6 1.2 5.6 1.2 8.2 0 .5-.2.7-.8.4-1.3-.5-.9-1.4-2.5-2.5-4.3-1.2.7-2.8.7-4 0-1.1 1.8-2 3.4-2.5 4.3z",key:"wkdf1o"}]],n8=e("Radiation",dV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iV=[["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M7.5 4.2c-.3-.5-.9-.7-1.3-.4C3.9 5.5 2.3 8.1 2 11c-.1.5.4 1 1 1h5c0-1.5.8-2.8 2-3.4-1.1-1.9-2-3.5-2.5-4.4z",key:"wy49g3"}],["path",{d:"M21 12c.6 0 1-.4 1-1-.3-2.9-1.8-5.5-4.1-7.1-.4-.3-1.1-.2-1.3.3-.6.9-1.5 2.5-2.6 4.3 1.2.7 2 2 2 3.5h5z",key:"vklnvr"}],["path",{d:"M7.5 19.8c-.3.5-.1 1.1.4 1.3 2.6 1.2 5.6 1.2 8.2 0 .5-.2.7-.8.4-1.3-.5-.9-1.4-2.5-2.5-4.3-1.2.7-2.8.7-4 0-1.1 1.8-2 3.4-2.5 4.3z",key:"wkdf1o"}]],n8=e("Radiation",iV);/** + */const iV=[["path",{d:"M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21",key:"1mqj8i"}]],d8=e("Radical",iV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hV=[["path",{d:"M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21",key:"1mqj8i"}]],d8=e("Radical",hV);/** + */const hV=[["path",{d:"M5 16v2",key:"g5qcv5"}],["path",{d:"M19 16v2",key:"1gbaio"}],["rect",{width:"20",height:"8",x:"2",y:"8",rx:"2",key:"vjsjur"}],["path",{d:"M18 12h.01",key:"yjnet6"}]],i8=e("RadioReceiver",hV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yV=[["path",{d:"M5 16v2",key:"g5qcv5"}],["path",{d:"M19 16v2",key:"1gbaio"}],["rect",{width:"20",height:"8",x:"2",y:"8",rx:"2",key:"vjsjur"}],["path",{d:"M18 12h.01",key:"yjnet6"}]],i8=e("RadioReceiver",yV);/** + */const yV=[["path",{d:"M4.9 16.1C1 12.2 1 5.8 4.9 1.9",key:"s0qx1y"}],["path",{d:"M7.8 4.7a6.14 6.14 0 0 0-.8 7.5",key:"1idnkw"}],["circle",{cx:"12",cy:"9",r:"2",key:"1092wv"}],["path",{d:"M16.2 4.8c2 2 2.26 5.11.8 7.47",key:"ojru2q"}],["path",{d:"M19.1 1.9a9.96 9.96 0 0 1 0 14.1",key:"rhi7fg"}],["path",{d:"M9.5 18h5",key:"mfy3pd"}],["path",{d:"m8 22 4-11 4 11",key:"25yftu"}]],h8=e("RadioTower",yV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rV=[["path",{d:"M4.9 16.1C1 12.2 1 5.8 4.9 1.9",key:"s0qx1y"}],["path",{d:"M7.8 4.7a6.14 6.14 0 0 0-.8 7.5",key:"1idnkw"}],["circle",{cx:"12",cy:"9",r:"2",key:"1092wv"}],["path",{d:"M16.2 4.8c2 2 2.26 5.11.8 7.47",key:"ojru2q"}],["path",{d:"M19.1 1.9a9.96 9.96 0 0 1 0 14.1",key:"rhi7fg"}],["path",{d:"M9.5 18h5",key:"mfy3pd"}],["path",{d:"m8 22 4-11 4 11",key:"25yftu"}]],h8=e("RadioTower",rV);/** + */const rV=[["path",{d:"M20.34 17.52a10 10 0 1 0-2.82 2.82",key:"fydyku"}],["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["path",{d:"m13.41 13.41 4.18 4.18",key:"1gqbwc"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]],y8=e("Radius",rV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kV=[["path",{d:"M20.34 17.52a10 10 0 1 0-2.82 2.82",key:"fydyku"}],["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["path",{d:"m13.41 13.41 4.18 4.18",key:"1gqbwc"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]],y8=e("Radius",kV);/** + */const kV=[["path",{d:"M5 15h14",key:"m0yey3"}],["path",{d:"M5 9h14",key:"7tsvo6"}],["path",{d:"m14 20-5-5 6-6-5-5",key:"1jo42i"}]],r8=e("RailSymbol",kV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pV=[["path",{d:"M5 15h14",key:"m0yey3"}],["path",{d:"M5 9h14",key:"7tsvo6"}],["path",{d:"m14 20-5-5 6-6-5-5",key:"1jo42i"}]],r8=e("RailSymbol",pV);/** + */const pV=[["path",{d:"M22 17a10 10 0 0 0-20 0",key:"ozegv"}],["path",{d:"M6 17a6 6 0 0 1 12 0",key:"5giftw"}],["path",{d:"M10 17a2 2 0 0 1 4 0",key:"gnsikk"}]],k8=e("Rainbow",pV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sV=[["path",{d:"M22 17a10 10 0 0 0-20 0",key:"ozegv"}],["path",{d:"M6 17a6 6 0 0 1 12 0",key:"5giftw"}],["path",{d:"M10 17a2 2 0 0 1 4 0",key:"gnsikk"}]],k8=e("Rainbow",sV);/** + */const sV=[["path",{d:"M13 22H4a2 2 0 0 1 0-4h12",key:"bt3f23"}],["path",{d:"M13.236 18a3 3 0 0 0-2.2-5",key:"1tbvmo"}],["path",{d:"M16 9h.01",key:"1bdo4e"}],["path",{d:"M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3",key:"9ch7kn"}],["path",{d:"M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18",key:"3s7e9i"}]],p8=e("Rat",sV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lV=[["path",{d:"M13 22H4a2 2 0 0 1 0-4h12",key:"bt3f23"}],["path",{d:"M13.236 18a3 3 0 0 0-2.2-5",key:"1tbvmo"}],["path",{d:"M16 9h.01",key:"1bdo4e"}],["path",{d:"M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3",key:"9ch7kn"}],["path",{d:"M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18",key:"3s7e9i"}]],p8=e("Rat",lV);/** + */const lV=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2",key:"1oxtiu"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]],s8=e("Ratio",lV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uV=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2",key:"1oxtiu"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]],s8=e("Ratio",uV);/** + */const uV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M12 6.5v11",key:"ecfhkf"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2",key:"1makmb"}]],l8=e("ReceiptCent",uV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M12 6.5v11",key:"ecfhkf"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2",key:"1makmb"}]],l8=e("ReceiptCent",MV);/** + */const MV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 12h5",key:"1g6qi8"}],["path",{d:"M16 9.5a4 4 0 1 0 0 5.2",key:"b2px4r"}]],u8=e("ReceiptEuro",MV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 12h5",key:"1g6qi8"}],["path",{d:"M16 9.5a4 4 0 1 0 0 5.2",key:"b2px4r"}]],u8=e("ReceiptEuro",vV);/** + */const vV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 7h8",key:"i86dvs"}],["path",{d:"M12 17.5 8 15h1a4 4 0 0 0 0-8",key:"grpkl4"}],["path",{d:"M8 11h8",key:"vwpz6n"}]],M8=e("ReceiptIndianRupee",vV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 7h8",key:"i86dvs"}],["path",{d:"M12 17.5 8 15h1a4 4 0 0 0 0-8",key:"grpkl4"}],["path",{d:"M8 11h8",key:"vwpz6n"}]],M8=e("ReceiptIndianRupee",mV);/** + */const mV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"m12 10 3-3",key:"1mc12w"}],["path",{d:"m9 7 3 3v7.5",key:"39i0xv"}],["path",{d:"M9 11h6",key:"1fldmi"}],["path",{d:"M9 15h6",key:"cctwl0"}]],v8=e("ReceiptJapaneseYen",mV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _V=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"m12 10 3-3",key:"1mc12w"}],["path",{d:"m9 7 3 3v7.5",key:"39i0xv"}],["path",{d:"M9 11h6",key:"1fldmi"}],["path",{d:"M9 15h6",key:"cctwl0"}]],v8=e("ReceiptJapaneseYen",_V);/** + */const _V=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 13h5",key:"1k9z8w"}],["path",{d:"M10 17V9.5a2.5 2.5 0 0 1 5 0",key:"1dzgp0"}],["path",{d:"M8 17h7",key:"8mjdqu"}]],m8=e("ReceiptPoundSterling",_V);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 13h5",key:"1k9z8w"}],["path",{d:"M10 17V9.5a2.5 2.5 0 0 1 5 0",key:"1dzgp0"}],["path",{d:"M8 17h7",key:"8mjdqu"}]],m8=e("ReceiptPoundSterling",gV);/** + */const gV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 15h5",key:"vxg57a"}],["path",{d:"M8 11h5a2 2 0 1 0 0-4h-3v10",key:"1usi5u"}]],_8=e("ReceiptRussianRuble",gV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M8 15h5",key:"vxg57a"}],["path",{d:"M8 11h5a2 2 0 1 0 0-4h-3v10",key:"1usi5u"}]],_8=e("ReceiptRussianRuble",LV);/** + */const LV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M10 17V7h5",key:"k7jq18"}],["path",{d:"M10 11h4",key:"1i0mka"}],["path",{d:"M8 15h5",key:"vxg57a"}]],g8=e("ReceiptSwissFranc",LV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M10 17V7h5",key:"k7jq18"}],["path",{d:"M10 11h4",key:"1i0mka"}],["path",{d:"M8 15h5",key:"vxg57a"}]],g8=e("ReceiptSwissFranc",xV);/** + */const xV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M14 8H8",key:"1l3xfs"}],["path",{d:"M16 12H8",key:"1fr5h0"}],["path",{d:"M13 16H8",key:"wsln4y"}]],L8=e("ReceiptText",xV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M14 8H8",key:"1l3xfs"}],["path",{d:"M16 12H8",key:"1fr5h0"}],["path",{d:"M13 16H8",key:"wsln4y"}]],L8=e("ReceiptText",wV);/** + */const wV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 17.5v-11",key:"1jc1ny"}]],x8=e("Receipt",wV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fV=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z",key:"q3az6g"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 17.5v-11",key:"1jc1ny"}]],x8=e("Receipt",fV);/** + */const fV=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M17 12h.01",key:"1m0b6t"}],["path",{d:"M7 12h.01",key:"eqddd0"}]],Le=e("RectangleEllipsis",fV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CV=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M17 12h.01",key:"1m0b6t"}],["path",{d:"M7 12h.01",key:"eqddd0"}]],Le=e("RectangleEllipsis",CV);/** + */const CV=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]],w8=e("RectangleHorizontal",CV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IV=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2",key:"9lu3g6"}]],w8=e("RectangleHorizontal",IV);/** + */const IV=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2",key:"1oxtiu"}]],f8=e("RectangleVertical",IV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NV=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2",key:"1oxtiu"}]],f8=e("RectangleVertical",NV);/** + */const NV=[["path",{d:"M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5",key:"x6z5xu"}],["path",{d:"M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12",key:"1x4zh5"}],["path",{d:"m14 16-3 3 3 3",key:"f6jyew"}],["path",{d:"M8.293 13.596 7.196 9.5 3.1 10.598",key:"wf1obh"}],["path",{d:"m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843",key:"9tzpgr"}],["path",{d:"m13.378 9.633 4.096 1.098 1.097-4.096",key:"1oe83g"}]],C8=e("Recycle",NV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SV=[["path",{d:"M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5",key:"x6z5xu"}],["path",{d:"M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12",key:"1x4zh5"}],["path",{d:"m14 16-3 3 3 3",key:"f6jyew"}],["path",{d:"M8.293 13.596 7.196 9.5 3.1 10.598",key:"wf1obh"}],["path",{d:"m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843",key:"9tzpgr"}],["path",{d:"m13.378 9.633 4.096 1.098 1.097-4.096",key:"1oe83g"}]],C8=e("Recycle",SV);/** + */const SV=[["path",{d:"m15 14 5-5-5-5",key:"12vg1m"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13",key:"6uklza"}]],I8=e("Redo2",SV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qV=[["path",{d:"m15 14 5-5-5-5",key:"12vg1m"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13",key:"6uklza"}]],I8=e("Redo2",qV);/** + */const qV=[["circle",{cx:"12",cy:"17",r:"1",key:"1ixnty"}],["path",{d:"M21 7v6h-6",key:"3ptur4"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7",key:"1kgawr"}]],N8=e("RedoDot",qV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bV=[["circle",{cx:"12",cy:"17",r:"1",key:"1ixnty"}],["path",{d:"M21 7v6h-6",key:"3ptur4"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7",key:"1kgawr"}]],N8=e("RedoDot",bV);/** + */const bV=[["path",{d:"M3 2v6h6",key:"18ldww"}],["path",{d:"M21 12A9 9 0 0 0 6 5.3L3 8",key:"1pbrqz"}],["path",{d:"M21 22v-6h-6",key:"usdfbe"}],["path",{d:"M3 12a9 9 0 0 0 15 6.7l3-2.7",key:"1hosoe"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]],S8=e("RefreshCcwDot",bV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $V=[["path",{d:"M3 2v6h6",key:"18ldww"}],["path",{d:"M21 12A9 9 0 0 0 6 5.3L3 8",key:"1pbrqz"}],["path",{d:"M21 22v-6h-6",key:"usdfbe"}],["path",{d:"M3 12a9 9 0 0 0 15 6.7l3-2.7",key:"1hosoe"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]],S8=e("RefreshCcwDot",$V);/** + */const $V=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"14sxne"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16",key:"1hlbsb"}],["path",{d:"M16 16h5v5",key:"ccwih5"}]],q8=e("RefreshCcw",$V);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AV=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"14sxne"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16",key:"1hlbsb"}],["path",{d:"M16 16h5v5",key:"ccwih5"}]],q8=e("RefreshCcw",AV);/** + */const AV=[["path",{d:"M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47",key:"1krf6h"}],["path",{d:"M8 16H3v5",key:"1cv678"}],["path",{d:"M3 12C3 9.51 4 7.26 5.64 5.64",key:"ruvoct"}],["path",{d:"m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64",key:"19q130"}],["path",{d:"M21 12c0 1-.16 1.97-.47 2.87",key:"4w8emr"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}]],b8=e("RefreshCwOff",AV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HV=[["path",{d:"M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47",key:"1krf6h"}],["path",{d:"M8 16H3v5",key:"1cv678"}],["path",{d:"M3 12C3 9.51 4 7.26 5.64 5.64",key:"ruvoct"}],["path",{d:"m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64",key:"19q130"}],["path",{d:"M21 12c0 1-.16 1.97-.47 2.87",key:"4w8emr"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M22 22 2 2",key:"1r8tn9"}]],b8=e("RefreshCwOff",HV);/** + */const HV=[["path",{d:"M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z",key:"fpq118"}],["path",{d:"M5 10h14",key:"elsbfy"}],["path",{d:"M15 7v6",key:"1nx30x"}]],$8=e("Refrigerator",HV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zV=[["path",{d:"M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z",key:"fpq118"}],["path",{d:"M5 10h14",key:"elsbfy"}],["path",{d:"M15 7v6",key:"1nx30x"}]],$8=e("Refrigerator",zV);/** + */const zV=[["path",{d:"M17 3v10",key:"15fgeh"}],["path",{d:"m12.67 5.5 8.66 5",key:"1gpheq"}],["path",{d:"m12.67 10.5 8.66-5",key:"1dkfa6"}],["path",{d:"M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z",key:"swwfx4"}]],A8=e("Regex",zV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PV=[["path",{d:"M17 3v10",key:"15fgeh"}],["path",{d:"m12.67 5.5 8.66 5",key:"1gpheq"}],["path",{d:"m12.67 10.5 8.66-5",key:"1dkfa6"}],["path",{d:"M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z",key:"swwfx4"}]],A8=e("Regex",PV);/** + */const PV=[["path",{d:"M4 7V4h16v3",key:"9msm58"}],["path",{d:"M5 20h6",key:"1h6pxn"}],["path",{d:"M13 4 8 20",key:"kqq6aj"}],["path",{d:"m15 15 5 5",key:"me55sn"}],["path",{d:"m20 15-5 5",key:"11p7ol"}]],H8=e("RemoveFormatting",PV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jV=[["path",{d:"M4 7V4h16v3",key:"9msm58"}],["path",{d:"M5 20h6",key:"1h6pxn"}],["path",{d:"M13 4 8 20",key:"kqq6aj"}],["path",{d:"m15 15 5 5",key:"me55sn"}],["path",{d:"m20 15-5 5",key:"11p7ol"}]],H8=e("RemoveFormatting",jV);/** + */const jV=[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}],["path",{d:"M11 10h1v4",key:"70cz1p"}]],z8=e("Repeat1",jV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VV=[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}],["path",{d:"M11 10h1v4",key:"70cz1p"}]],z8=e("Repeat1",VV);/** + */const VV=[["path",{d:"m2 9 3-3 3 3",key:"1ltn5i"}],["path",{d:"M13 18H7a2 2 0 0 1-2-2V6",key:"1r6tfw"}],["path",{d:"m22 15-3 3-3-3",key:"4rnwn2"}],["path",{d:"M11 6h6a2 2 0 0 1 2 2v10",key:"2f72bc"}]],P8=e("Repeat2",VV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BV=[["path",{d:"m2 9 3-3 3 3",key:"1ltn5i"}],["path",{d:"M13 18H7a2 2 0 0 1-2-2V6",key:"1r6tfw"}],["path",{d:"m22 15-3 3-3-3",key:"4rnwn2"}],["path",{d:"M11 6h6a2 2 0 0 1 2 2v10",key:"2f72bc"}]],P8=e("Repeat2",BV);/** + */const BV=[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}]],j8=e("Repeat",BV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FV=[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}]],j8=e("Repeat",FV);/** + */const FV=[["path",{d:"M14 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2",key:"1yyzbs"}],["path",{d:"M14 4a2 2 0 0 1 2-2",key:"1w2hp7"}],["path",{d:"M16 10a2 2 0 0 1-2-2",key:"shjach"}],["path",{d:"M20 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2",key:"zfj4xr"}],["path",{d:"M20 2a2 2 0 0 1 2 2",key:"188mtx"}],["path",{d:"M22 8a2 2 0 0 1-2 2",key:"ddf4tu"}],["path",{d:"m3 7 3 3 3-3",key:"x25e72"}],["path",{d:"M6 10V5a 3 3 0 0 1 3-3h1",key:"1ageje"}],["rect",{x:"2",y:"14",width:"8",height:"8",rx:"2",key:"4rksxw"}]],V8=e("ReplaceAll",FV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DV=[["path",{d:"M14 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2",key:"1yyzbs"}],["path",{d:"M14 4a2 2 0 0 1 2-2",key:"1w2hp7"}],["path",{d:"M16 10a2 2 0 0 1-2-2",key:"shjach"}],["path",{d:"M20 14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2",key:"zfj4xr"}],["path",{d:"M20 2a2 2 0 0 1 2 2",key:"188mtx"}],["path",{d:"M22 8a2 2 0 0 1-2 2",key:"ddf4tu"}],["path",{d:"m3 7 3 3 3-3",key:"x25e72"}],["path",{d:"M6 10V5a 3 3 0 0 1 3-3h1",key:"1ageje"}],["rect",{x:"2",y:"14",width:"8",height:"8",rx:"2",key:"4rksxw"}]],V8=e("ReplaceAll",DV);/** + */const DV=[["path",{d:"M14 4a2 2 0 0 1 2-2",key:"1w2hp7"}],["path",{d:"M16 10a2 2 0 0 1-2-2",key:"shjach"}],["path",{d:"M20 2a2 2 0 0 1 2 2",key:"188mtx"}],["path",{d:"M22 8a2 2 0 0 1-2 2",key:"ddf4tu"}],["path",{d:"m3 7 3 3 3-3",key:"x25e72"}],["path",{d:"M6 10V5a3 3 0 0 1 3-3h1",key:"3y3t5z"}],["rect",{x:"2",y:"14",width:"8",height:"8",rx:"2",key:"4rksxw"}]],B8=e("Replace",DV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RV=[["path",{d:"M14 4a2 2 0 0 1 2-2",key:"1w2hp7"}],["path",{d:"M16 10a2 2 0 0 1-2-2",key:"shjach"}],["path",{d:"M20 2a2 2 0 0 1 2 2",key:"188mtx"}],["path",{d:"M22 8a2 2 0 0 1-2 2",key:"ddf4tu"}],["path",{d:"m3 7 3 3 3-3",key:"x25e72"}],["path",{d:"M6 10V5a3 3 0 0 1 3-3h1",key:"3y3t5z"}],["rect",{x:"2",y:"14",width:"8",height:"8",rx:"2",key:"4rksxw"}]],B8=e("Replace",RV);/** + */const RV=[["polyline",{points:"7 17 2 12 7 7",key:"t83bqg"}],["polyline",{points:"12 17 7 12 12 7",key:"1g4ajm"}],["path",{d:"M22 18v-2a4 4 0 0 0-4-4H7",key:"1fcyog"}]],F8=e("ReplyAll",RV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TV=[["polyline",{points:"7 17 2 12 7 7",key:"t83bqg"}],["polyline",{points:"12 17 7 12 12 7",key:"1g4ajm"}],["path",{d:"M22 18v-2a4 4 0 0 0-4-4H7",key:"1fcyog"}]],F8=e("ReplyAll",TV);/** + */const TV=[["polyline",{points:"9 17 4 12 9 7",key:"hvgpf2"}],["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4",key:"5vmcpk"}]],D8=e("Reply",TV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UV=[["polyline",{points:"9 17 4 12 9 7",key:"hvgpf2"}],["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4",key:"5vmcpk"}]],D8=e("Reply",UV);/** + */const UV=[["polygon",{points:"11 19 2 12 11 5 11 19",key:"14yba5"}],["polygon",{points:"22 19 13 12 22 5 22 19",key:"1pi1cj"}]],R8=e("Rewind",UV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OV=[["polygon",{points:"11 19 2 12 11 5 11 19",key:"14yba5"}],["polygon",{points:"22 19 13 12 22 5 22 19",key:"1pi1cj"}]],R8=e("Rewind",OV);/** + */const OV=[["path",{d:"M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22",key:"1rnhq3"}],["path",{d:"m12 18 2.57-3.5",key:"116vt7"}],["path",{d:"M6.243 9.016a7 7 0 0 1 11.507-.009",key:"10dq0b"}],["path",{d:"M9.35 14.53 12 11.22",key:"tdsyp2"}],["path",{d:"M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z",key:"nmifey"}]],T8=e("Ribbon",OV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZV=[["path",{d:"M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22",key:"1rnhq3"}],["path",{d:"m12 18 2.57-3.5",key:"116vt7"}],["path",{d:"M6.243 9.016a7 7 0 0 1 11.507-.009",key:"10dq0b"}],["path",{d:"M9.35 14.53 12 11.22",key:"tdsyp2"}],["path",{d:"M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z",key:"nmifey"}]],T8=e("Ribbon",ZV);/** + */const ZV=[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z",key:"m3kijz"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z",key:"1fmvmk"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0",key:"1f8sc4"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5",key:"qeys4"}]],U8=e("Rocket",ZV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GV=[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z",key:"m3kijz"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z",key:"1fmvmk"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0",key:"1f8sc4"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5",key:"qeys4"}]],U8=e("Rocket",GV);/** + */const GV=[["polyline",{points:"3.5 2 6.5 12.5 18 12.5",key:"y3iy52"}],["line",{x1:"9.5",x2:"5.5",y1:"12.5",y2:"20",key:"19vg5i"}],["line",{x1:"15",x2:"18.5",y1:"12.5",y2:"20",key:"1inpmv"}],["path",{d:"M2.75 18a13 13 0 0 0 18.5 0",key:"1nquas"}]],O8=e("RockingChair",GV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WV=[["polyline",{points:"3.5 2 6.5 12.5 18 12.5",key:"y3iy52"}],["line",{x1:"9.5",x2:"5.5",y1:"12.5",y2:"20",key:"19vg5i"}],["line",{x1:"15",x2:"18.5",y1:"12.5",y2:"20",key:"1inpmv"}],["path",{d:"M2.75 18a13 13 0 0 0 18.5 0",key:"1nquas"}]],O8=e("RockingChair",WV);/** + */const WV=[["path",{d:"M6 19V5",key:"1r845m"}],["path",{d:"M10 19V6.8",key:"9j2tfs"}],["path",{d:"M14 19v-7.8",key:"10s8qv"}],["path",{d:"M18 5v4",key:"1tajlv"}],["path",{d:"M18 19v-6",key:"ielfq3"}],["path",{d:"M22 19V9",key:"158nzp"}],["path",{d:"M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65",key:"1930oh"}]],Z8=e("RollerCoaster",WV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const EV=[["path",{d:"M6 19V5",key:"1r845m"}],["path",{d:"M10 19V6.8",key:"9j2tfs"}],["path",{d:"M14 19v-7.8",key:"10s8qv"}],["path",{d:"M18 5v4",key:"1tajlv"}],["path",{d:"M18 19v-6",key:"ielfq3"}],["path",{d:"M22 19V9",key:"158nzp"}],["path",{d:"M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65",key:"1930oh"}]],Z8=e("RollerCoaster",EV);/** + */const EV=[["path",{d:"M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2",key:"10n0gc"}],["path",{d:"m15.194 13.707 3.814 1.86-1.86 3.814",key:"16shm9"}],["path",{d:"M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4",key:"1lxi77"}]],xe=e("Rotate3d",EV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XV=[["path",{d:"M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2",key:"10n0gc"}],["path",{d:"m15.194 13.707 3.814 1.86-1.86 3.814",key:"16shm9"}],["path",{d:"M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4",key:"1lxi77"}]],xe=e("Rotate3d",XV);/** + */const XV=[["path",{d:"M20 9V7a2 2 0 0 0-2-2h-6",key:"19z8uc"}],["path",{d:"m15 2-3 3 3 3",key:"177bxs"}],["path",{d:"M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2",key:"d36hnl"}]],G8=e("RotateCcwSquare",XV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KV=[["path",{d:"M20 9V7a2 2 0 0 0-2-2h-6",key:"19z8uc"}],["path",{d:"m15 2-3 3 3 3",key:"177bxs"}],["path",{d:"M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2",key:"d36hnl"}]],G8=e("RotateCcwSquare",KV);/** + */const KV=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]],W8=e("RotateCcw",KV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JV=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]],W8=e("RotateCcw",JV);/** + */const JV=[["path",{d:"M12 5H6a2 2 0 0 0-2 2v3",key:"l96uqu"}],["path",{d:"m9 8 3-3-3-3",key:"1gzgc3"}],["path",{d:"M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2",key:"1w2k5h"}]],E8=e("RotateCwSquare",JV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QV=[["path",{d:"M12 5H6a2 2 0 0 0-2 2v3",key:"l96uqu"}],["path",{d:"m9 8 3-3-3-3",key:"1gzgc3"}],["path",{d:"M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2",key:"1w2k5h"}]],E8=e("RotateCwSquare",QV);/** + */const QV=[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8",key:"1p45f6"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}]],X8=e("RotateCw",QV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YV=[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8",key:"1p45f6"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}]],X8=e("RotateCw",YV);/** + */const YV=[["circle",{cx:"6",cy:"19",r:"3",key:"1kj8tv"}],["path",{d:"M9 19h8.5c.4 0 .9-.1 1.3-.2",key:"1effex"}],["path",{d:"M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12",key:"k9y2ds"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21 15.3a3.5 3.5 0 0 0-3.3-3.3",key:"11nlu2"}],["path",{d:"M15 5h-4.3",key:"6537je"}],["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}]],K8=e("RouteOff",YV);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eB=[["circle",{cx:"6",cy:"19",r:"3",key:"1kj8tv"}],["path",{d:"M9 19h8.5c.4 0 .9-.1 1.3-.2",key:"1effex"}],["path",{d:"M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12",key:"k9y2ds"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M21 15.3a3.5 3.5 0 0 0-3.3-3.3",key:"11nlu2"}],["path",{d:"M15 5h-4.3",key:"6537je"}],["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}]],K8=e("RouteOff",eB);/** + */const eB=[["circle",{cx:"6",cy:"19",r:"3",key:"1kj8tv"}],["path",{d:"M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15",key:"1d8sl"}],["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}]],J8=e("Route",eB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aB=[["circle",{cx:"6",cy:"19",r:"3",key:"1kj8tv"}],["path",{d:"M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15",key:"1d8sl"}],["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}]],J8=e("Route",aB);/** + */const aB=[["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6.01 18H6",key:"19vcac"}],["path",{d:"M10.01 18H10",key:"uamcmx"}],["path",{d:"M15 10v4",key:"qjz1xs"}],["path",{d:"M17.84 7.17a4 4 0 0 0-5.66 0",key:"1rif40"}],["path",{d:"M20.66 4.34a8 8 0 0 0-11.31 0",key:"6a5xfq"}]],Q8=e("Router",aB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oB=[["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",key:"w68u3i"}],["path",{d:"M6.01 18H6",key:"19vcac"}],["path",{d:"M10.01 18H10",key:"uamcmx"}],["path",{d:"M15 10v4",key:"qjz1xs"}],["path",{d:"M17.84 7.17a4 4 0 0 0-5.66 0",key:"1rif40"}],["path",{d:"M20.66 4.34a8 8 0 0 0-11.31 0",key:"6a5xfq"}]],Q8=e("Router",oB);/** + */const oB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 12h18",key:"1i2n21"}]],we=e("Rows2",oB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 12h18",key:"1i2n21"}]],we=e("Rows2",cB);/** + */const cB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 9H3",key:"1338ky"}],["path",{d:"M21 15H3",key:"9uk58r"}]],fe=e("Rows3",cB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 9H3",key:"1338ky"}],["path",{d:"M21 15H3",key:"9uk58r"}]],fe=e("Rows3",tB);/** + */const tB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 7.5H3",key:"1hm9pq"}],["path",{d:"M21 12H3",key:"2avoz0"}],["path",{d:"M21 16.5H3",key:"n7jzkj"}]],Y8=e("Rows4",tB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 7.5H3",key:"1hm9pq"}],["path",{d:"M21 12H3",key:"2avoz0"}],["path",{d:"M21 16.5H3",key:"n7jzkj"}]],Y8=e("Rows4",nB);/** + */const nB=[["path",{d:"M4 11a9 9 0 0 1 9 9",key:"pv89mb"}],["path",{d:"M4 4a16 16 0 0 1 16 16",key:"k0647b"}],["circle",{cx:"5",cy:"19",r:"1",key:"bfqh0e"}]],e7=e("Rss",nB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dB=[["path",{d:"M4 11a9 9 0 0 1 9 9",key:"pv89mb"}],["path",{d:"M4 4a16 16 0 0 1 16 16",key:"k0647b"}],["circle",{cx:"5",cy:"19",r:"1",key:"bfqh0e"}]],e7=e("Rss",dB);/** + */const dB=[["path",{d:"M6 11h8a4 4 0 0 0 0-8H9v18",key:"18ai8t"}],["path",{d:"M6 15h8",key:"1y8f6l"}]],a7=e("RussianRuble",dB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iB=[["path",{d:"M6 11h8a4 4 0 0 0 0-8H9v18",key:"18ai8t"}],["path",{d:"M6 15h8",key:"1y8f6l"}]],a7=e("RussianRuble",iB);/** + */const iB=[["path",{d:"M22 18H2a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4Z",key:"1404fh"}],["path",{d:"M21 14 10 2 3 14h18Z",key:"1nzg7v"}],["path",{d:"M10 2v16",key:"1labyt"}]],o7=e("Sailboat",iB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hB=[["path",{d:"M22 18H2a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4Z",key:"1404fh"}],["path",{d:"M21 14 10 2 3 14h18Z",key:"1nzg7v"}],["path",{d:"M10 2v16",key:"1labyt"}]],o7=e("Sailboat",hB);/** + */const hB=[["path",{d:"M7 21h10",key:"1b0cd5"}],["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z",key:"4rw317"}],["path",{d:"M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1",key:"10xrj0"}],["path",{d:"m13 12 4-4",key:"1hckqy"}],["path",{d:"M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2",key:"1p4srx"}]],c7=e("Salad",hB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yB=[["path",{d:"M7 21h10",key:"1b0cd5"}],["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z",key:"4rw317"}],["path",{d:"M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1",key:"10xrj0"}],["path",{d:"m13 12 4-4",key:"1hckqy"}],["path",{d:"M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2",key:"1p4srx"}]],c7=e("Salad",yB);/** + */const yB=[["path",{d:"m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777",key:"f1wd0e"}],["path",{d:"M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25",key:"1pfu07"}],["path",{d:"M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9",key:"1oq9qw"}],["path",{d:"m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2",key:"1fnwu5"}],["rect",{width:"20",height:"4",x:"2",y:"11",rx:"1",key:"itshg"}]],t7=e("Sandwich",yB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rB=[["path",{d:"m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777",key:"f1wd0e"}],["path",{d:"M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25",key:"1pfu07"}],["path",{d:"M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9",key:"1oq9qw"}],["path",{d:"m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2",key:"1fnwu5"}],["rect",{width:"20",height:"4",x:"2",y:"11",rx:"1",key:"itshg"}]],t7=e("Sandwich",rB);/** + */const rB=[["path",{d:"M4 10a7.31 7.31 0 0 0 10 10Z",key:"1fzpp3"}],["path",{d:"m9 15 3-3",key:"88sc13"}],["path",{d:"M17 13a6 6 0 0 0-6-6",key:"15cc6u"}],["path",{d:"M21 13A10 10 0 0 0 11 3",key:"11nf8s"}]],n7=e("SatelliteDish",rB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kB=[["path",{d:"M4 10a7.31 7.31 0 0 0 10 10Z",key:"1fzpp3"}],["path",{d:"m9 15 3-3",key:"88sc13"}],["path",{d:"M17 13a6 6 0 0 0-6-6",key:"15cc6u"}],["path",{d:"M21 13A10 10 0 0 0 11 3",key:"11nf8s"}]],n7=e("SatelliteDish",kB);/** + */const kB=[["path",{d:"M13 7 9 3 5 7l4 4",key:"vyckw6"}],["path",{d:"m17 11 4 4-4 4-4-4",key:"rchckc"}],["path",{d:"m8 12 4 4 6-6-4-4Z",key:"1sshf7"}],["path",{d:"m16 8 3-3",key:"x428zp"}],["path",{d:"M9 21a6 6 0 0 0-6-6",key:"1iajcf"}]],d7=e("Satellite",kB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pB=[["path",{d:"M13 7 9 3 5 7l4 4",key:"vyckw6"}],["path",{d:"m17 11 4 4-4 4-4-4",key:"rchckc"}],["path",{d:"m8 12 4 4 6-6-4-4Z",key:"1sshf7"}],["path",{d:"m16 8 3-3",key:"x428zp"}],["path",{d:"M9 21a6 6 0 0 0-6-6",key:"1iajcf"}]],d7=e("Satellite",pB);/** + */const pB=[["path",{d:"M10 2v3a1 1 0 0 0 1 1h5",key:"1xspal"}],["path",{d:"M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6",key:"1ra60u"}],["path",{d:"M18 22H4a2 2 0 0 1-2-2V6",key:"pblm9e"}],["path",{d:"M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z",key:"1yve0x"}]],i7=e("SaveAll",pB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sB=[["path",{d:"M10 2v3a1 1 0 0 0 1 1h5",key:"1xspal"}],["path",{d:"M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6",key:"1ra60u"}],["path",{d:"M18 22H4a2 2 0 0 1-2-2V6",key:"pblm9e"}],["path",{d:"M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z",key:"1yve0x"}]],i7=e("SaveAll",sB);/** + */const sB=[["path",{d:"M13 13H8a1 1 0 0 0-1 1v7",key:"h8g396"}],["path",{d:"M14 8h1",key:"1lfen6"}],["path",{d:"M17 21v-4",key:"1yknxs"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41",key:"1t4vdl"}],["path",{d:"M29.5 11.5s5 5 4 5",key:"zzn4i6"}],["path",{d:"M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15",key:"24cby9"}]],h7=e("SaveOff",sB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lB=[["path",{d:"M13 13H8a1 1 0 0 0-1 1v7",key:"h8g396"}],["path",{d:"M14 8h1",key:"1lfen6"}],["path",{d:"M17 21v-4",key:"1yknxs"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41",key:"1t4vdl"}],["path",{d:"M29.5 11.5s5 5 4 5",key:"zzn4i6"}],["path",{d:"M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15",key:"24cby9"}]],h7=e("SaveOff",lB);/** + */const lB=[["path",{d:"M5 7v11a1 1 0 0 0 1 1h11",key:"13dt1j"}],["path",{d:"M5.293 18.707 11 13",key:"ezgbsx"}],["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["circle",{cx:"5",cy:"5",r:"2",key:"1gwv83"}]],Ce=e("Scale3d",lB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uB=[["path",{d:"M5 7v11a1 1 0 0 0 1 1h11",key:"13dt1j"}],["path",{d:"M5.293 18.707 11 13",key:"ezgbsx"}],["circle",{cx:"19",cy:"19",r:"2",key:"17f5cg"}],["circle",{cx:"5",cy:"5",r:"2",key:"1gwv83"}]],Ce=e("Scale3d",uB);/** + */const uB=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",key:"1m0v6g"}],["path",{d:"M14 15H9v-5",key:"pi4jk9"}],["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M21 3 9 15",key:"15kdhq"}]],y7=e("Scaling",uB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MB=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",key:"1m0v6g"}],["path",{d:"M14 15H9v-5",key:"pi4jk9"}],["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M21 3 9 15",key:"15kdhq"}]],y7=e("Scaling",MB);/** + */const MB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M8 7v10",key:"23sfjj"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M17 7v10",key:"578dap"}]],r7=e("ScanBarcode",MB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M8 7v10",key:"23sfjj"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M17 7v10",key:"578dap"}]],r7=e("ScanBarcode",vB);/** + */const vB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",key:"11ak4c"}]],k7=e("ScanEye",vB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",key:"11ak4c"}]],k7=e("ScanEye",mB);/** + */const mB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 9h.01",key:"x1ddxp"}]],p7=e("ScanFace",mB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _B=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 9h.01",key:"x1ddxp"}]],p7=e("ScanFace",_B);/** + */const _B=[["path",{d:"M11.246 16.657a1 1 0 0 0 1.508 0l3.57-4.101A2.75 2.75 0 1 0 12 9.168a2.75 2.75 0 1 0-4.324 3.388z",key:"1algrk"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]],s7=e("ScanHeart",_B);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gB=[["path",{d:"M11.246 16.657a1 1 0 0 0 1.508 0l3.57-4.101A2.75 2.75 0 1 0 12 9.168a2.75 2.75 0 1 0-4.324 3.388z",key:"1algrk"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]],s7=e("ScanHeart",gB);/** + */const gB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M7 12h10",key:"b7w52i"}]],l7=e("ScanLine",gB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M7 12h10",key:"b7w52i"}]],l7=e("ScanLine",LB);/** + */const LB=[["path",{d:"M17 12v4a1 1 0 0 1-1 1h-4",key:"uk4fdo"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M17 8V7",key:"q2g9wo"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M7 17h.01",key:"19xn7k"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["rect",{x:"7",y:"7",width:"5",height:"5",rx:"1",key:"m9kyts"}]],u7=e("ScanQrCode",LB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xB=[["path",{d:"M17 12v4a1 1 0 0 1-1 1h-4",key:"uk4fdo"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M17 8V7",key:"q2g9wo"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M7 17h.01",key:"19xn7k"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["rect",{x:"7",y:"7",width:"5",height:"5",rx:"1",key:"m9kyts"}]],u7=e("ScanQrCode",xB);/** + */const xB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"m16 16-1.9-1.9",key:"1dq9hf"}]],M7=e("ScanSearch",xB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"m16 16-1.9-1.9",key:"1dq9hf"}]],M7=e("ScanSearch",wB);/** + */const wB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M7 8h8",key:"1jbsf9"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M7 16h6",key:"1vyc9m"}]],v7=e("ScanText",wB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["path",{d:"M7 8h8",key:"1jbsf9"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M7 16h6",key:"1vyc9m"}]],v7=e("ScanText",fB);/** + */const fB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]],m7=e("Scan",fB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CB=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]],m7=e("Scan",CB);/** + */const CB=[["path",{d:"M14 22v-4a2 2 0 1 0-4 0v4",key:"hhkicm"}],["path",{d:"m18 10 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7.382a1 1 0 0 1 .553-.894L6 10",key:"1xqip1"}],["path",{d:"M18 5v17",key:"1sw6gf"}],["path",{d:"m4 6 7.106-3.553a2 2 0 0 1 1.788 0L20 6",key:"9d2mlk"}],["path",{d:"M6 5v17",key:"1xfsm0"}],["circle",{cx:"12",cy:"9",r:"2",key:"1092wv"}]],_7=e("School",CB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IB=[["path",{d:"M14 22v-4a2 2 0 1 0-4 0v4",key:"hhkicm"}],["path",{d:"m18 10 3.447 1.724a1 1 0 0 1 .553.894V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7.382a1 1 0 0 1 .553-.894L6 10",key:"1xqip1"}],["path",{d:"M18 5v17",key:"1sw6gf"}],["path",{d:"m4 6 7.106-3.553a2 2 0 0 1 1.788 0L20 6",key:"9d2mlk"}],["path",{d:"M6 5v17",key:"1xfsm0"}],["circle",{cx:"12",cy:"9",r:"2",key:"1092wv"}]],_7=e("School",IB);/** + */const IB=[["path",{d:"M5.42 9.42 8 12",key:"12pkuq"}],["circle",{cx:"4",cy:"8",r:"2",key:"107mxr"}],["path",{d:"m14 6-8.58 8.58",key:"gvzu5l"}],["circle",{cx:"4",cy:"16",r:"2",key:"1ehqvc"}],["path",{d:"M10.8 14.8 14 18",key:"ax7m9r"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]],g7=e("ScissorsLineDashed",IB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NB=[["path",{d:"M5.42 9.42 8 12",key:"12pkuq"}],["circle",{cx:"4",cy:"8",r:"2",key:"107mxr"}],["path",{d:"m14 6-8.58 8.58",key:"gvzu5l"}],["circle",{cx:"4",cy:"16",r:"2",key:"1ehqvc"}],["path",{d:"M10.8 14.8 14 18",key:"ax7m9r"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}]],g7=e("ScissorsLineDashed",NB);/** + */const NB=[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M8.12 8.12 12 12",key:"1alkpv"}],["path",{d:"M20 4 8.12 15.88",key:"xgtan2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M14.8 14.8 20 20",key:"ptml3r"}]],L7=e("Scissors",NB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SB=[["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M8.12 8.12 12 12",key:"1alkpv"}],["path",{d:"M20 4 8.12 15.88",key:"xgtan2"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M14.8 14.8 20 20",key:"ptml3r"}]],L7=e("Scissors",SB);/** + */const SB=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3",key:"i8wdob"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m22 3-5 5",key:"12jva0"}],["path",{d:"m17 3 5 5",key:"k36vhe"}]],x7=e("ScreenShareOff",SB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qB=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3",key:"i8wdob"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m22 3-5 5",key:"12jva0"}],["path",{d:"m17 3 5 5",key:"k36vhe"}]],x7=e("ScreenShareOff",qB);/** + */const qB=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3",key:"i8wdob"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m17 8 5-5",key:"fqif7o"}],["path",{d:"M17 3h5v5",key:"1o3tu8"}]],w7=e("ScreenShare",qB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bB=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3",key:"i8wdob"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}],["path",{d:"m17 8 5-5",key:"fqif7o"}],["path",{d:"M17 3h5v5",key:"1o3tu8"}]],w7=e("ScreenShare",bB);/** + */const bB=[["path",{d:"M15 12h-5",key:"r7krc0"}],["path",{d:"M15 8h-5",key:"1khuty"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4",key:"zz82l3"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",key:"1ph1d7"}]],f7=e("ScrollText",bB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $B=[["path",{d:"M15 12h-5",key:"r7krc0"}],["path",{d:"M15 8h-5",key:"1khuty"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4",key:"zz82l3"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",key:"1ph1d7"}]],f7=e("ScrollText",$B);/** + */const $B=[["path",{d:"M19 17V5a2 2 0 0 0-2-2H4",key:"zz82l3"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",key:"1ph1d7"}]],C7=e("Scroll",$B);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AB=[["path",{d:"M19 17V5a2 2 0 0 0-2-2H4",key:"zz82l3"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3",key:"1ph1d7"}]],C7=e("Scroll",AB);/** + */const AB=[["path",{d:"m8 11 2 2 4-4",key:"1sed1v"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]],I7=e("SearchCheck",AB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HB=[["path",{d:"m8 11 2 2 4-4",key:"1sed1v"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]],I7=e("SearchCheck",HB);/** + */const HB=[["path",{d:"m13 13.5 2-2.5-2-2.5",key:"1rvxrh"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}],["path",{d:"M9 8.5 7 11l2 2.5",key:"6ffwbx"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],N7=e("SearchCode",HB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zB=[["path",{d:"m13 13.5 2-2.5-2-2.5",key:"1rvxrh"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}],["path",{d:"M9 8.5 7 11l2 2.5",key:"6ffwbx"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],N7=e("SearchCode",zB);/** + */const zB=[["path",{d:"m13.5 8.5-5 5",key:"1cs55j"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]],S7=e("SearchSlash",zB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PB=[["path",{d:"m13.5 8.5-5 5",key:"1cs55j"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]],S7=e("SearchSlash",PB);/** + */const PB=[["path",{d:"m13.5 8.5-5 5",key:"1cs55j"}],["path",{d:"m8.5 8.5 5 5",key:"a8mexj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]],q7=e("SearchX",PB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jB=[["path",{d:"m13.5 8.5-5 5",key:"1cs55j"}],["path",{d:"m8.5 8.5 5 5",key:"a8mexj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]],q7=e("SearchX",jB);/** + */const jB=[["path",{d:"M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0",key:"vqan6v"}],["path",{d:"M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0",key:"wdjd8o"}]],b7=e("Section",jB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VB=[["path",{d:"M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0",key:"vqan6v"}],["path",{d:"M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0",key:"wdjd8o"}]],b7=e("Section",VB);/** + */const VB=[["path",{d:"M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z",key:"117uat"}],["path",{d:"M6 12h16",key:"s4cdu5"}]],Ie=e("SendHorizontal",VB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BB=[["path",{d:"M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z",key:"117uat"}],["path",{d:"M6 12h16",key:"s4cdu5"}]],Ie=e("SendHorizontal",BB);/** + */const BB=[["rect",{x:"14",y:"14",width:"8",height:"8",rx:"2",key:"1b0bso"}],["rect",{x:"2",y:"2",width:"8",height:"8",rx:"2",key:"1x09vl"}],["path",{d:"M7 14v1a2 2 0 0 0 2 2h1",key:"pao6x6"}],["path",{d:"M14 7h1a2 2 0 0 1 2 2v1",key:"19tdru"}]],$7=e("SendToBack",BB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FB=[["rect",{x:"14",y:"14",width:"8",height:"8",rx:"2",key:"1b0bso"}],["rect",{x:"2",y:"2",width:"8",height:"8",rx:"2",key:"1x09vl"}],["path",{d:"M7 14v1a2 2 0 0 0 2 2h1",key:"pao6x6"}],["path",{d:"M14 7h1a2 2 0 0 1 2 2v1",key:"19tdru"}]],$7=e("SendToBack",FB);/** + */const FB=[["line",{x1:"3",x2:"21",y1:"12",y2:"12",key:"10d38w"}],["polyline",{points:"8 8 12 4 16 8",key:"zo8t4w"}],["polyline",{points:"16 16 12 20 8 16",key:"1oyrid"}]],A7=e("SeparatorHorizontal",FB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DB=[["line",{x1:"3",x2:"21",y1:"12",y2:"12",key:"10d38w"}],["polyline",{points:"8 8 12 4 16 8",key:"zo8t4w"}],["polyline",{points:"16 16 12 20 8 16",key:"1oyrid"}]],A7=e("SeparatorHorizontal",DB);/** + */const DB=[["line",{x1:"12",x2:"12",y1:"3",y2:"21",key:"1efggb"}],["polyline",{points:"8 8 4 12 8 16",key:"bnfmv4"}],["polyline",{points:"16 16 20 12 16 8",key:"u90052"}]],H7=e("SeparatorVertical",DB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RB=[["line",{x1:"12",x2:"12",y1:"3",y2:"21",key:"1efggb"}],["polyline",{points:"8 8 4 12 8 16",key:"bnfmv4"}],["polyline",{points:"16 16 20 12 16 8",key:"u90052"}]],H7=e("SeparatorVertical",RB);/** + */const RB=[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5",key:"tn8das"}],["path",{d:"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5",key:"1g2pve"}],["path",{d:"M6 6h.01",key:"1utrut"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"m15.7 13.4-.9-.3",key:"1jwmzr"}],["path",{d:"m9.2 10.9-.9-.3",key:"qapnim"}],["path",{d:"m10.6 15.7.3-.9",key:"quwk0k"}],["path",{d:"m13.6 15.7-.4-1",key:"cb9xp7"}],["path",{d:"m10.8 9.3-.4-1",key:"1uaiz5"}],["path",{d:"m8.3 13.6 1-.4",key:"s6srou"}],["path",{d:"m14.7 10.8 1-.4",key:"4d31cq"}],["path",{d:"m13.4 8.3-.3.9",key:"1bm987"}]],z7=e("ServerCog",RB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TB=[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5",key:"tn8das"}],["path",{d:"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5",key:"1g2pve"}],["path",{d:"M6 6h.01",key:"1utrut"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"m15.7 13.4-.9-.3",key:"1jwmzr"}],["path",{d:"m9.2 10.9-.9-.3",key:"qapnim"}],["path",{d:"m10.6 15.7.3-.9",key:"quwk0k"}],["path",{d:"m13.6 15.7-.4-1",key:"cb9xp7"}],["path",{d:"m10.8 9.3-.4-1",key:"1uaiz5"}],["path",{d:"m8.3 13.6 1-.4",key:"s6srou"}],["path",{d:"m14.7 10.8 1-.4",key:"4d31cq"}],["path",{d:"m13.4 8.3-.3.9",key:"1bm987"}]],z7=e("ServerCog",TB);/** + */const TB=[["path",{d:"M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2",key:"4b9dqc"}],["path",{d:"M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2",key:"22nnkd"}],["path",{d:"M6 6h.01",key:"1utrut"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"m13 6-4 6h6l-4 6",key:"14hqih"}]],P7=e("ServerCrash",TB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UB=[["path",{d:"M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2",key:"4b9dqc"}],["path",{d:"M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2",key:"22nnkd"}],["path",{d:"M6 6h.01",key:"1utrut"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"m13 6-4 6h6l-4 6",key:"14hqih"}]],P7=e("ServerCrash",UB);/** + */const UB=[["path",{d:"M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5",key:"bt2siv"}],["path",{d:"M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z",key:"1hjrv1"}],["path",{d:"M22 17v-1a2 2 0 0 0-2-2h-1",key:"1iynyr"}],["path",{d:"M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z",key:"161ggg"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],j7=e("ServerOff",UB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OB=[["path",{d:"M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5",key:"bt2siv"}],["path",{d:"M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z",key:"1hjrv1"}],["path",{d:"M22 17v-1a2 2 0 0 0-2-2h-1",key:"1iynyr"}],["path",{d:"M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z",key:"161ggg"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],j7=e("ServerOff",OB);/** + */const OB=[["path",{d:"M20 7h-9",key:"3s1dr2"}],["path",{d:"M14 17H5",key:"gfn3mx"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["circle",{cx:"7",cy:"7",r:"3",key:"dfmy0x"}]],V7=e("Settings2",OB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZB=[["path",{d:"M20 7h-9",key:"3s1dr2"}],["path",{d:"M14 17H5",key:"gfn3mx"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["circle",{cx:"7",cy:"7",r:"3",key:"dfmy0x"}]],V7=e("Settings2",ZB);/** + */const ZB=[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z",key:"1bo67w"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1",key:"1bkyp8"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5",key:"w3z12y"}]],B7=e("Shapes",ZB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GB=[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z",key:"1bo67w"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1",key:"1bkyp8"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5",key:"w3z12y"}]],B7=e("Shapes",GB);/** + */const GB=[["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8",key:"1b2hhj"}],["polyline",{points:"16 6 12 2 8 6",key:"m901s6"}],["line",{x1:"12",x2:"12",y1:"2",y2:"15",key:"1p0rca"}]],F7=e("Share",GB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WB=[["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8",key:"1b2hhj"}],["polyline",{points:"16 6 12 2 8 6",key:"m901s6"}],["line",{x1:"12",x2:"12",y1:"2",y2:"15",key:"1p0rca"}]],F7=e("Share",WB);/** + */const WB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["line",{x1:"3",x2:"21",y1:"9",y2:"9",key:"1vqk6q"}],["line",{x1:"3",x2:"21",y1:"15",y2:"15",key:"o2sbyz"}],["line",{x1:"9",x2:"9",y1:"9",y2:"21",key:"1ib60c"}],["line",{x1:"15",x2:"15",y1:"9",y2:"21",key:"1n26ft"}]],D7=e("Sheet",WB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const EB=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["line",{x1:"3",x2:"21",y1:"9",y2:"9",key:"1vqk6q"}],["line",{x1:"3",x2:"21",y1:"15",y2:"15",key:"o2sbyz"}],["line",{x1:"9",x2:"9",y1:"9",y2:"21",key:"1ib60c"}],["line",{x1:"15",x2:"15",y1:"9",y2:"21",key:"1n26ft"}]],D7=e("Sheet",EB);/** + */const EB=[["path",{d:"M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44",key:"1cn552"}]],R7=e("Shell",EB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XB=[["path",{d:"M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44",key:"1cn552"}]],R7=e("Shell",XB);/** + */const XB=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]],T7=e("ShieldAlert",XB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KB=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]],T7=e("ShieldAlert",KB);/** + */const KB=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m4.243 5.21 14.39 12.472",key:"1c9a7c"}]],U7=e("ShieldBan",KB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JB=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m4.243 5.21 14.39 12.472",key:"1c9a7c"}]],U7=e("ShieldBan",JB);/** + */const JB=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}]],O7=e("ShieldEllipsis",JB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QB=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M8 12h.01",key:"czm47f"}],["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 12h.01",key:"1l6xoz"}]],O7=e("ShieldEllipsis",QB);/** + */const QB=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 22V2",key:"zs6s6o"}]],Z7=e("ShieldHalf",QB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YB=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 22V2",key:"zs6s6o"}]],Z7=e("ShieldHalf",YB);/** + */const YB=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9 12h6",key:"1c52cq"}]],G7=e("ShieldMinus",YB);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eF=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9 12h6",key:"1c52cq"}]],G7=e("ShieldMinus",eF);/** + */const eF=[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71",key:"1jlk70"}],["path",{d:"M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264",key:"18rp1v"}]],W7=e("ShieldOff",eF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aF=[["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71",key:"1jlk70"}],["path",{d:"M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264",key:"18rp1v"}]],W7=e("ShieldOff",aF);/** + */const aF=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M12 9v6",key:"199k2o"}]],E7=e("ShieldPlus",aF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oF=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M12 9v6",key:"199k2o"}]],E7=e("ShieldPlus",oF);/** + */const oF=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3",key:"mhlwft"}],["path",{d:"M12 17h.01",key:"p32p05"}]],X7=e("ShieldQuestion",oF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cF=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3",key:"mhlwft"}],["path",{d:"M12 17h.01",key:"p32p05"}]],X7=e("ShieldQuestion",cF);/** + */const cF=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m14.5 9.5-5 5",key:"17q4r4"}],["path",{d:"m9.5 9.5 5 5",key:"18nt4w"}]],Ne=e("ShieldX",cF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tF=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m14.5 9.5-5 5",key:"17q4r4"}],["path",{d:"m9.5 9.5 5 5",key:"18nt4w"}]],Ne=e("ShieldX",tF);/** + */const tF=[["circle",{cx:"12",cy:"12",r:"8",key:"46899m"}],["path",{d:"M12 2v7.5",key:"1e5rl5"}],["path",{d:"m19 5-5.23 5.23",key:"1ezxxf"}],["path",{d:"M22 12h-7.5",key:"le1719"}],["path",{d:"m19 19-5.23-5.23",key:"p3fmgn"}],["path",{d:"M12 14.5V22",key:"dgcmos"}],["path",{d:"M10.23 13.77 5 19",key:"qwopd4"}],["path",{d:"M9.5 12H2",key:"r7bup8"}],["path",{d:"M10.23 10.23 5 5",key:"k2y7lj"}],["circle",{cx:"12",cy:"12",r:"2.5",key:"ix0uyj"}]],K7=e("ShipWheel",tF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nF=[["circle",{cx:"12",cy:"12",r:"8",key:"46899m"}],["path",{d:"M12 2v7.5",key:"1e5rl5"}],["path",{d:"m19 5-5.23 5.23",key:"1ezxxf"}],["path",{d:"M22 12h-7.5",key:"le1719"}],["path",{d:"m19 19-5.23-5.23",key:"p3fmgn"}],["path",{d:"M12 14.5V22",key:"dgcmos"}],["path",{d:"M10.23 13.77 5 19",key:"qwopd4"}],["path",{d:"M9.5 12H2",key:"r7bup8"}],["path",{d:"M10.23 10.23 5 5",key:"k2y7lj"}],["circle",{cx:"12",cy:"12",r:"2.5",key:"ix0uyj"}]],K7=e("ShipWheel",nF);/** + */const nF=[["path",{d:"M12 10.189V14",key:"1p8cqu"}],["path",{d:"M12 2v3",key:"qbqxhf"}],["path",{d:"M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6",key:"qpkstq"}],["path",{d:"M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76",key:"7tigtc"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"1924j5"}]],J7=e("Ship",nF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dF=[["path",{d:"M12 10.189V14",key:"1p8cqu"}],["path",{d:"M12 2v3",key:"qbqxhf"}],["path",{d:"M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6",key:"qpkstq"}],["path",{d:"M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76",key:"7tigtc"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"1924j5"}]],J7=e("Ship",dF);/** + */const dF=[["path",{d:"M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z",key:"1wgbhj"}]],Q7=e("Shirt",dF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iF=[["path",{d:"M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z",key:"1wgbhj"}]],Q7=e("Shirt",iF);/** + */const iF=[["path",{d:"M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z",key:"hou9p0"}],["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M16 10a4 4 0 0 1-8 0",key:"1ltviw"}]],Y7=e("ShoppingBag",iF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hF=[["path",{d:"M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z",key:"hou9p0"}],["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M16 10a4 4 0 0 1-8 0",key:"1ltviw"}]],Y7=e("ShoppingBag",hF);/** + */const hF=[["path",{d:"m15 11-1 9",key:"5wnq3a"}],["path",{d:"m19 11-4-7",key:"cnml18"}],["path",{d:"M2 11h20",key:"3eubbj"}],["path",{d:"m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4",key:"yiazzp"}],["path",{d:"M4.5 15.5h15",key:"13mye1"}],["path",{d:"m5 11 4-7",key:"116ra9"}],["path",{d:"m9 11 1 9",key:"1ojof7"}]],eu=e("ShoppingBasket",hF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yF=[["path",{d:"m15 11-1 9",key:"5wnq3a"}],["path",{d:"m19 11-4-7",key:"cnml18"}],["path",{d:"M2 11h20",key:"3eubbj"}],["path",{d:"m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4",key:"yiazzp"}],["path",{d:"M4.5 15.5h15",key:"13mye1"}],["path",{d:"m5 11 4-7",key:"116ra9"}],["path",{d:"m9 11 1 9",key:"1ojof7"}]],eu=e("ShoppingBasket",yF);/** + */const yF=[["circle",{cx:"8",cy:"21",r:"1",key:"jimo8o"}],["circle",{cx:"19",cy:"21",r:"1",key:"13723u"}],["path",{d:"M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12",key:"9zh506"}]],au=e("ShoppingCart",yF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rF=[["circle",{cx:"8",cy:"21",r:"1",key:"jimo8o"}],["circle",{cx:"19",cy:"21",r:"1",key:"13723u"}],["path",{d:"M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12",key:"9zh506"}]],au=e("ShoppingCart",rF);/** + */const rF=[["path",{d:"M2 22v-5l5-5 5 5-5 5z",key:"1fh25c"}],["path",{d:"M9.5 14.5 16 8",key:"1smz5x"}],["path",{d:"m17 2 5 5-.5.5a3.53 3.53 0 0 1-5 0s0 0 0 0a3.53 3.53 0 0 1 0-5L17 2",key:"1q8uv5"}]],ou=e("Shovel",rF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kF=[["path",{d:"M2 22v-5l5-5 5 5-5 5z",key:"1fh25c"}],["path",{d:"M9.5 14.5 16 8",key:"1smz5x"}],["path",{d:"m17 2 5 5-.5.5a3.53 3.53 0 0 1-5 0s0 0 0 0a3.53 3.53 0 0 1 0-5L17 2",key:"1q8uv5"}]],ou=e("Shovel",kF);/** + */const kF=[["path",{d:"m4 4 2.5 2.5",key:"uv2vmf"}],["path",{d:"M13.5 6.5a4.95 4.95 0 0 0-7 7",key:"frdkwv"}],["path",{d:"M15 5 5 15",key:"1ag8rq"}],["path",{d:"M14 17v.01",key:"eokfpp"}],["path",{d:"M10 16v.01",key:"14uyyl"}],["path",{d:"M13 13v.01",key:"1v1k97"}],["path",{d:"M16 10v.01",key:"5169yg"}],["path",{d:"M11 20v.01",key:"cj92p8"}],["path",{d:"M17 14v.01",key:"11cswd"}],["path",{d:"M20 11v.01",key:"19e0od"}]],cu=e("ShowerHead",kF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pF=[["path",{d:"m4 4 2.5 2.5",key:"uv2vmf"}],["path",{d:"M13.5 6.5a4.95 4.95 0 0 0-7 7",key:"frdkwv"}],["path",{d:"M15 5 5 15",key:"1ag8rq"}],["path",{d:"M14 17v.01",key:"eokfpp"}],["path",{d:"M10 16v.01",key:"14uyyl"}],["path",{d:"M13 13v.01",key:"1v1k97"}],["path",{d:"M16 10v.01",key:"5169yg"}],["path",{d:"M11 20v.01",key:"cj92p8"}],["path",{d:"M17 14v.01",key:"11cswd"}],["path",{d:"M20 11v.01",key:"19e0od"}]],cu=e("ShowerHead",pF);/** + */const pF=[["path",{d:"m15 15 6 6m-6-6v4.8m0-4.8h4.8",key:"17vawe"}],["path",{d:"M9 19.8V15m0 0H4.2M9 15l-6 6",key:"chjx8e"}],["path",{d:"M15 4.2V9m0 0h4.8M15 9l6-6",key:"lav6yq"}],["path",{d:"M9 4.2V9m0 0H4.2M9 9 3 3",key:"1pxi2q"}]],tu=e("Shrink",pF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sF=[["path",{d:"m15 15 6 6m-6-6v4.8m0-4.8h4.8",key:"17vawe"}],["path",{d:"M9 19.8V15m0 0H4.2M9 15l-6 6",key:"chjx8e"}],["path",{d:"M15 4.2V9m0 0h4.8M15 9l6-6",key:"lav6yq"}],["path",{d:"M9 4.2V9m0 0H4.2M9 9 3 3",key:"1pxi2q"}]],tu=e("Shrink",sF);/** + */const sF=[["path",{d:"M12 22v-7l-2-2",key:"eqv9mc"}],["path",{d:"M17 8v.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0Z",key:"ubcgy"}],["path",{d:"m14 14-2 2",key:"847xa2"}]],nu=e("Shrub",sF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lF=[["path",{d:"M12 22v-7l-2-2",key:"eqv9mc"}],["path",{d:"M17 8v.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0Z",key:"ubcgy"}],["path",{d:"m14 14-2 2",key:"847xa2"}]],nu=e("Shrub",lF);/** + */const lF=[["path",{d:"m18 14 4 4-4 4",key:"10pe0f"}],["path",{d:"m18 2 4 4-4 4",key:"pucp1d"}],["path",{d:"M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22",key:"1ailkh"}],["path",{d:"M2 6h1.972a4 4 0 0 1 3.6 2.2",key:"km57vx"}],["path",{d:"M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45",key:"os18l9"}]],du=e("Shuffle",lF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uF=[["path",{d:"m18 14 4 4-4 4",key:"10pe0f"}],["path",{d:"m18 2 4 4-4 4",key:"pucp1d"}],["path",{d:"M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22",key:"1ailkh"}],["path",{d:"M2 6h1.972a4 4 0 0 1 3.6 2.2",key:"km57vx"}],["path",{d:"M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45",key:"os18l9"}]],du=e("Shuffle",uF);/** + */const uF=[["path",{d:"M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2",key:"wuwx1p"}]],iu=e("Sigma",uF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MF=[["path",{d:"M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2",key:"wuwx1p"}]],iu=e("Sigma",MF);/** + */const MF=[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M17 20V8",key:"1tkaf5"}]],hu=e("SignalHigh",MF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vF=[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M17 20V8",key:"1tkaf5"}]],hu=e("SignalHigh",vF);/** + */const vF=[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}]],yu=e("SignalLow",vF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mF=[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}]],yu=e("SignalLow",mF);/** + */const mF=[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}]],ru=e("SignalMedium",mF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _F=[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}]],ru=e("SignalMedium",_F);/** + */const _F=[["path",{d:"M2 20h.01",key:"4haj6o"}]],ku=e("SignalZero",_F);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gF=[["path",{d:"M2 20h.01",key:"4haj6o"}]],ku=e("SignalZero",gF);/** + */const gF=[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M17 20V8",key:"1tkaf5"}],["path",{d:"M22 4v16",key:"sih9yq"}]],pu=e("Signal",gF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LF=[["path",{d:"M2 20h.01",key:"4haj6o"}],["path",{d:"M7 20v-4",key:"j294jx"}],["path",{d:"M12 20v-8",key:"i3yub9"}],["path",{d:"M17 20V8",key:"1tkaf5"}],["path",{d:"M22 4v16",key:"sih9yq"}]],pu=e("Signal",LF);/** + */const LF=[["path",{d:"m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284",key:"y32ogt"}],["path",{d:"M3 21h18",key:"itz85i"}]],su=e("Signature",LF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xF=[["path",{d:"m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284",key:"y32ogt"}],["path",{d:"M3 21h18",key:"itz85i"}]],su=e("Signature",xF);/** + */const xF=[["path",{d:"M10 9H4L2 7l2-2h6",key:"1hq7x2"}],["path",{d:"M14 5h6l2 2-2 2h-6",key:"bv62ej"}],["path",{d:"M10 22V4a2 2 0 1 1 4 0v18",key:"eqpcf2"}],["path",{d:"M8 22h8",key:"rmew8v"}]],lu=e("SignpostBig",xF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wF=[["path",{d:"M10 9H4L2 7l2-2h6",key:"1hq7x2"}],["path",{d:"M14 5h6l2 2-2 2h-6",key:"bv62ej"}],["path",{d:"M10 22V4a2 2 0 1 1 4 0v18",key:"eqpcf2"}],["path",{d:"M8 22h8",key:"rmew8v"}]],lu=e("SignpostBig",wF);/** + */const wF=[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M12 3v3",key:"1n5kay"}],["path",{d:"M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z",key:"gqqp9m"}]],uu=e("Signpost",wF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fF=[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M12 3v3",key:"1n5kay"}],["path",{d:"M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z",key:"gqqp9m"}]],uu=e("Signpost",fF);/** + */const fF=[["path",{d:"M7 18v-6a5 5 0 1 1 10 0v6",key:"pcx96s"}],["path",{d:"M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z",key:"1b4s83"}],["path",{d:"M21 12h1",key:"jtio3y"}],["path",{d:"M18.5 4.5 18 5",key:"g5sp9y"}],["path",{d:"M2 12h1",key:"1uaihz"}],["path",{d:"M12 2v1",key:"11qlp1"}],["path",{d:"m4.929 4.929.707.707",key:"1i51kw"}],["path",{d:"M12 12v6",key:"3ahymv"}]],Mu=e("Siren",fF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CF=[["path",{d:"M7 18v-6a5 5 0 1 1 10 0v6",key:"pcx96s"}],["path",{d:"M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z",key:"1b4s83"}],["path",{d:"M21 12h1",key:"jtio3y"}],["path",{d:"M18.5 4.5 18 5",key:"g5sp9y"}],["path",{d:"M2 12h1",key:"1uaihz"}],["path",{d:"M12 2v1",key:"11qlp1"}],["path",{d:"m4.929 4.929.707.707",key:"1i51kw"}],["path",{d:"M12 12v6",key:"3ahymv"}]],Mu=e("Siren",CF);/** + */const CF=[["polygon",{points:"19 20 9 12 19 4 19 20",key:"o2sva"}],["line",{x1:"5",x2:"5",y1:"19",y2:"5",key:"1ocqjk"}]],vu=e("SkipBack",CF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IF=[["polygon",{points:"19 20 9 12 19 4 19 20",key:"o2sva"}],["line",{x1:"5",x2:"5",y1:"19",y2:"5",key:"1ocqjk"}]],vu=e("SkipBack",IF);/** + */const IF=[["polygon",{points:"5 4 15 12 5 20 5 4",key:"16p6eg"}],["line",{x1:"19",x2:"19",y1:"5",y2:"19",key:"futhcm"}]],mu=e("SkipForward",IF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NF=[["polygon",{points:"5 4 15 12 5 20 5 4",key:"16p6eg"}],["line",{x1:"19",x2:"19",y1:"5",y2:"19",key:"futhcm"}]],mu=e("SkipForward",NF);/** + */const NF=[["path",{d:"m12.5 17-.5-1-.5 1h1z",key:"3me087"}],["path",{d:"M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z",key:"1o5pge"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}]],_u=e("Skull",NF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SF=[["path",{d:"m12.5 17-.5-1-.5 1h1z",key:"3me087"}],["path",{d:"M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z",key:"1o5pge"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}]],_u=e("Skull",SF);/** + */const SF=[["rect",{width:"3",height:"8",x:"13",y:"2",rx:"1.5",key:"diqz80"}],["path",{d:"M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5",key:"183iwg"}],["rect",{width:"3",height:"8",x:"8",y:"14",rx:"1.5",key:"hqg7r1"}],["path",{d:"M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5",key:"76g71w"}],["rect",{width:"8",height:"3",x:"14",y:"13",rx:"1.5",key:"1kmz0a"}],["path",{d:"M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5",key:"jc4sz0"}],["rect",{width:"8",height:"3",x:"2",y:"8",rx:"1.5",key:"1omvl4"}],["path",{d:"M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5",key:"16f3cl"}]],gu=e("Slack",SF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qF=[["rect",{width:"3",height:"8",x:"13",y:"2",rx:"1.5",key:"diqz80"}],["path",{d:"M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5",key:"183iwg"}],["rect",{width:"3",height:"8",x:"8",y:"14",rx:"1.5",key:"hqg7r1"}],["path",{d:"M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5",key:"76g71w"}],["rect",{width:"8",height:"3",x:"14",y:"13",rx:"1.5",key:"1kmz0a"}],["path",{d:"M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5",key:"jc4sz0"}],["rect",{width:"8",height:"3",x:"2",y:"8",rx:"1.5",key:"1omvl4"}],["path",{d:"M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5",key:"16f3cl"}]],gu=e("Slack",qF);/** + */const qF=[["path",{d:"M22 2 2 22",key:"y4kqgn"}]],Lu=e("Slash",qF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bF=[["path",{d:"M22 2 2 22",key:"y4kqgn"}]],Lu=e("Slash",bF);/** + */const bF=[["path",{d:"M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14",key:"1sllp5"}]],xu=e("Slice",bF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $F=[["path",{d:"M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14",key:"1sllp5"}]],xu=e("Slice",$F);/** + */const $F=[["line",{x1:"21",x2:"14",y1:"4",y2:"4",key:"obuewd"}],["line",{x1:"10",x2:"3",y1:"4",y2:"4",key:"1q6298"}],["line",{x1:"21",x2:"12",y1:"12",y2:"12",key:"1iu8h1"}],["line",{x1:"8",x2:"3",y1:"12",y2:"12",key:"ntss68"}],["line",{x1:"21",x2:"16",y1:"20",y2:"20",key:"14d8ph"}],["line",{x1:"12",x2:"3",y1:"20",y2:"20",key:"m0wm8r"}],["line",{x1:"14",x2:"14",y1:"2",y2:"6",key:"14e1ph"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14",key:"1i6ji0"}],["line",{x1:"16",x2:"16",y1:"18",y2:"22",key:"1lctlv"}]],wu=e("SlidersHorizontal",$F);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AF=[["line",{x1:"21",x2:"14",y1:"4",y2:"4",key:"obuewd"}],["line",{x1:"10",x2:"3",y1:"4",y2:"4",key:"1q6298"}],["line",{x1:"21",x2:"12",y1:"12",y2:"12",key:"1iu8h1"}],["line",{x1:"8",x2:"3",y1:"12",y2:"12",key:"ntss68"}],["line",{x1:"21",x2:"16",y1:"20",y2:"20",key:"14d8ph"}],["line",{x1:"12",x2:"3",y1:"20",y2:"20",key:"m0wm8r"}],["line",{x1:"14",x2:"14",y1:"2",y2:"6",key:"14e1ph"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14",key:"1i6ji0"}],["line",{x1:"16",x2:"16",y1:"18",y2:"22",key:"1lctlv"}]],wu=e("SlidersHorizontal",AF);/** + */const AF=[["line",{x1:"4",x2:"4",y1:"21",y2:"14",key:"1p332r"}],["line",{x1:"4",x2:"4",y1:"10",y2:"3",key:"gb41h5"}],["line",{x1:"12",x2:"12",y1:"21",y2:"12",key:"hf2csr"}],["line",{x1:"12",x2:"12",y1:"8",y2:"3",key:"1kfi7u"}],["line",{x1:"20",x2:"20",y1:"21",y2:"16",key:"1lhrwl"}],["line",{x1:"20",x2:"20",y1:"12",y2:"3",key:"16vvfq"}],["line",{x1:"2",x2:"6",y1:"14",y2:"14",key:"1uebub"}],["line",{x1:"10",x2:"14",y1:"8",y2:"8",key:"1yglbp"}],["line",{x1:"18",x2:"22",y1:"16",y2:"16",key:"1jxqpz"}]],Se=e("SlidersVertical",AF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HF=[["line",{x1:"4",x2:"4",y1:"21",y2:"14",key:"1p332r"}],["line",{x1:"4",x2:"4",y1:"10",y2:"3",key:"gb41h5"}],["line",{x1:"12",x2:"12",y1:"21",y2:"12",key:"hf2csr"}],["line",{x1:"12",x2:"12",y1:"8",y2:"3",key:"1kfi7u"}],["line",{x1:"20",x2:"20",y1:"21",y2:"16",key:"1lhrwl"}],["line",{x1:"20",x2:"20",y1:"12",y2:"3",key:"16vvfq"}],["line",{x1:"2",x2:"6",y1:"14",y2:"14",key:"1uebub"}],["line",{x1:"10",x2:"14",y1:"8",y2:"8",key:"1yglbp"}],["line",{x1:"18",x2:"22",y1:"16",y2:"16",key:"1jxqpz"}]],Se=e("SlidersVertical",HF);/** + */const HF=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12.667 8 10 12h4l-2.667 4",key:"h9lk2d"}]],fu=e("SmartphoneCharging",HF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zF=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12.667 8 10 12h4l-2.667 4",key:"h9lk2d"}]],fu=e("SmartphoneCharging",zF);/** + */const zF=[["rect",{width:"7",height:"12",x:"2",y:"6",rx:"1",key:"5nje8w"}],["path",{d:"M13 8.32a7.43 7.43 0 0 1 0 7.36",key:"1g306n"}],["path",{d:"M16.46 6.21a11.76 11.76 0 0 1 0 11.58",key:"uqvjvo"}],["path",{d:"M19.91 4.1a15.91 15.91 0 0 1 .01 15.8",key:"ujntz3"}]],Cu=e("SmartphoneNfc",zF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PF=[["rect",{width:"7",height:"12",x:"2",y:"6",rx:"1",key:"5nje8w"}],["path",{d:"M13 8.32a7.43 7.43 0 0 1 0 7.36",key:"1g306n"}],["path",{d:"M16.46 6.21a11.76 11.76 0 0 1 0 11.58",key:"uqvjvo"}],["path",{d:"M19.91 4.1a15.91 15.91 0 0 1 .01 15.8",key:"ujntz3"}]],Cu=e("SmartphoneNfc",PF);/** + */const PF=[["path",{d:"M22 11v1a10 10 0 1 1-9-10",key:"ew0xw9"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}],["path",{d:"M16 5h6",key:"1vod17"}],["path",{d:"M19 2v6",key:"4bpg5p"}]],Iu=e("SmilePlus",PF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jF=[["path",{d:"M22 11v1a10 10 0 1 1-9-10",key:"ew0xw9"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}],["path",{d:"M16 5h6",key:"1vod17"}],["path",{d:"M19 2v6",key:"4bpg5p"}]],Iu=e("SmilePlus",jF);/** + */const jF=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]],Nu=e("Smile",jF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VF=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2",key:"1y1vjs"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9",key:"yxxnd0"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9",key:"1p4y9e"}]],Nu=e("Smile",VF);/** + */const VF=[["path",{d:"M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0",key:"hneq2s"}],["circle",{cx:"10",cy:"13",r:"8",key:"194lz3"}],["path",{d:"M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6",key:"ixqyt7"}],["path",{d:"M18 3 19.1 5.2",key:"9tjm43"}],["path",{d:"M22 3 20.9 5.2",key:"j3odrs"}]],Su=e("Snail",VF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BF=[["path",{d:"M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0",key:"hneq2s"}],["circle",{cx:"10",cy:"13",r:"8",key:"194lz3"}],["path",{d:"M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6",key:"ixqyt7"}],["path",{d:"M18 3 19.1 5.2",key:"9tjm43"}],["path",{d:"M22 3 20.9 5.2",key:"j3odrs"}]],Su=e("Snail",BF);/** + */const BF=[["path",{d:"m10 20-1.25-2.5L6 18",key:"18frcb"}],["path",{d:"M10 4 8.75 6.5 6 6",key:"7mghy3"}],["path",{d:"m14 20 1.25-2.5L18 18",key:"1chtki"}],["path",{d:"m14 4 1.25 2.5L18 6",key:"1b4wsy"}],["path",{d:"m17 21-3-6h-4",key:"15hhxa"}],["path",{d:"m17 3-3 6 1.5 3",key:"11697g"}],["path",{d:"M2 12h6.5L10 9",key:"kv9z4n"}],["path",{d:"m20 10-1.5 2 1.5 2",key:"1swlpi"}],["path",{d:"M22 12h-6.5L14 15",key:"1mxi28"}],["path",{d:"m4 10 1.5 2L4 14",key:"k9enpj"}],["path",{d:"m7 21 3-6-1.5-3",key:"j8hb9u"}],["path",{d:"m7 3 3 6h4",key:"1otusx"}]],qu=e("Snowflake",BF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FF=[["path",{d:"m10 20-1.25-2.5L6 18",key:"18frcb"}],["path",{d:"M10 4 8.75 6.5 6 6",key:"7mghy3"}],["path",{d:"m14 20 1.25-2.5L18 18",key:"1chtki"}],["path",{d:"m14 4 1.25 2.5L18 6",key:"1b4wsy"}],["path",{d:"m17 21-3-6h-4",key:"15hhxa"}],["path",{d:"m17 3-3 6 1.5 3",key:"11697g"}],["path",{d:"M2 12h6.5L10 9",key:"kv9z4n"}],["path",{d:"m20 10-1.5 2 1.5 2",key:"1swlpi"}],["path",{d:"M22 12h-6.5L14 15",key:"1mxi28"}],["path",{d:"m4 10 1.5 2L4 14",key:"k9enpj"}],["path",{d:"m7 21 3-6-1.5-3",key:"j8hb9u"}],["path",{d:"m7 3 3 6h4",key:"1otusx"}]],qu=e("Snowflake",FF);/** + */const FF=[["path",{d:"M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3",key:"1dgpiv"}],["path",{d:"M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",key:"xacw8m"}],["path",{d:"M4 18v2",key:"jwo5n2"}],["path",{d:"M20 18v2",key:"1ar1qi"}],["path",{d:"M12 4v9",key:"oqhhn3"}]],bu=e("Sofa",FF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DF=[["path",{d:"M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3",key:"1dgpiv"}],["path",{d:"M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z",key:"xacw8m"}],["path",{d:"M4 18v2",key:"jwo5n2"}],["path",{d:"M20 18v2",key:"1ar1qi"}],["path",{d:"M12 4v9",key:"oqhhn3"}]],bu=e("Sofa",DF);/** + */const DF=[["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z",key:"4rw317"}],["path",{d:"M7 21h10",key:"1b0cd5"}],["path",{d:"M19.5 12 22 6",key:"shfsr5"}],["path",{d:"M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62",key:"rpc6vp"}],["path",{d:"M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62",key:"1lf63m"}],["path",{d:"M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62",key:"97tijn"}]],$u=e("Soup",DF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RF=[["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z",key:"4rw317"}],["path",{d:"M7 21h10",key:"1b0cd5"}],["path",{d:"M19.5 12 22 6",key:"shfsr5"}],["path",{d:"M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62",key:"rpc6vp"}],["path",{d:"M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62",key:"1lf63m"}],["path",{d:"M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62",key:"97tijn"}]],$u=e("Soup",RF);/** + */const RF=[["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1",key:"lt2kga"}]],Au=e("Space",RF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TF=[["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1",key:"lt2kga"}]],Au=e("Space",TF);/** + */const TF=[["path",{d:"M5 9c-1.5 1.5-3 3.2-3 5.5A5.5 5.5 0 0 0 7.5 20c1.8 0 3-.5 4.5-2 1.5 1.5 2.7 2 4.5 2a5.5 5.5 0 0 0 5.5-5.5c0-2.3-1.5-4-3-5.5l-7-7-7 7Z",key:"40bo9n"}],["path",{d:"M12 18v4",key:"jadmvz"}]],Hu=e("Spade",TF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UF=[["path",{d:"M5 9c-1.5 1.5-3 3.2-3 5.5A5.5 5.5 0 0 0 7.5 20c1.8 0 3-.5 4.5-2 1.5 1.5 2.7 2 4.5 2a5.5 5.5 0 0 0 5.5-5.5c0-2.3-1.5-4-3-5.5l-7-7-7 7Z",key:"40bo9n"}],["path",{d:"M12 18v4",key:"jadmvz"}]],Hu=e("Spade",UF);/** + */const UF=[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}]],zu=e("Sparkle",UF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OF=[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}]],zu=e("Sparkle",OF);/** + */const OF=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M12 6h.01",key:"1vi96p"}],["circle",{cx:"12",cy:"14",r:"4",key:"1jruaj"}],["path",{d:"M12 14h.01",key:"1etili"}]],Pu=e("Speaker",OF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZF=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",key:"1nb95v"}],["path",{d:"M12 6h.01",key:"1vi96p"}],["circle",{cx:"12",cy:"14",r:"4",key:"1jruaj"}],["path",{d:"M12 14h.01",key:"1etili"}]],Pu=e("Speaker",ZF);/** + */const ZF=[["path",{d:"M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20",key:"11atix"}],["path",{d:"M19.8 17.8a7.5 7.5 0 0 0 .003-10.603",key:"yol142"}],["path",{d:"M17 15a3.5 3.5 0 0 0-.025-4.975",key:"ssbmkc"}]],ju=e("Speech",ZF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GF=[["path",{d:"M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20",key:"11atix"}],["path",{d:"M19.8 17.8a7.5 7.5 0 0 0 .003-10.603",key:"yol142"}],["path",{d:"M17 15a3.5 3.5 0 0 0-.025-4.975",key:"ssbmkc"}]],ju=e("Speech",GF);/** + */const GF=[["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1",key:"8mdmtu"}]],Vu=e("SpellCheck2",GF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WF=[["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1",key:"8mdmtu"}]],Vu=e("SpellCheck2",WF);/** + */const WF=[["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m16 20 2 2 4-4",key:"13tcca"}]],Bu=e("SpellCheck",WF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const EF=[["path",{d:"m6 16 6-12 6 12",key:"1b4byz"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m16 20 2 2 4-4",key:"13tcca"}]],Bu=e("SpellCheck",EF);/** + */const EF=[["circle",{cx:"19",cy:"5",r:"2",key:"mhkx31"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}],["path",{d:"M5 17A12 12 0 0 1 17 5",key:"1okkup"}]],Fu=e("Spline",EF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XF=[["circle",{cx:"19",cy:"5",r:"2",key:"mhkx31"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}],["path",{d:"M5 17A12 12 0 0 1 17 5",key:"1okkup"}]],Fu=e("Spline",XF);/** + */const XF=[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M8 3H3v5",key:"15dfkv"}],["path",{d:"M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3",key:"1qrqzj"}],["path",{d:"m15 9 6-6",key:"ko1vev"}]],Du=e("Split",XF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KF=[["path",{d:"M16 3h5v5",key:"1806ms"}],["path",{d:"M8 3H3v5",key:"15dfkv"}],["path",{d:"M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3",key:"1qrqzj"}],["path",{d:"m15 9 6-6",key:"ko1vev"}]],Du=e("Split",KF);/** + */const KF=[["path",{d:"M3 3h.01",key:"159qn6"}],["path",{d:"M7 5h.01",key:"1hq22a"}],["path",{d:"M11 7h.01",key:"1osv80"}],["path",{d:"M3 7h.01",key:"1xzrh3"}],["path",{d:"M7 9h.01",key:"19b3jx"}],["path",{d:"M3 11h.01",key:"1eifu7"}],["rect",{width:"4",height:"4",x:"15",y:"5",key:"mri9e4"}],["path",{d:"m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2",key:"aib6hk"}],["path",{d:"m13 14 8-2",key:"1d7bmk"}],["path",{d:"m13 19 8-2",key:"1y2vml"}]],Ru=e("SprayCan",KF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JF=[["path",{d:"M3 3h.01",key:"159qn6"}],["path",{d:"M7 5h.01",key:"1hq22a"}],["path",{d:"M11 7h.01",key:"1osv80"}],["path",{d:"M3 7h.01",key:"1xzrh3"}],["path",{d:"M7 9h.01",key:"19b3jx"}],["path",{d:"M3 11h.01",key:"1eifu7"}],["rect",{width:"4",height:"4",x:"15",y:"5",key:"mri9e4"}],["path",{d:"m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2",key:"aib6hk"}],["path",{d:"m13 14 8-2",key:"1d7bmk"}],["path",{d:"m13 19 8-2",key:"1y2vml"}]],Ru=e("SprayCan",JF);/** + */const JF=[["path",{d:"M7 20h10",key:"e6iznv"}],["path",{d:"M10 20c5.5-2.5.8-6.4 3-10",key:"161w41"}],["path",{d:"M9.5 9.4c1.1.8 1.8 2.2 2.3 3.7-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2 2.8-.5 4.4 0 5.5.8z",key:"9gtqwd"}],["path",{d:"M14.1 6a7 7 0 0 0-1.1 4c1.9-.1 3.3-.6 4.3-1.4 1-1 1.6-2.3 1.7-4.6-2.7.1-4 1-4.9 2z",key:"bkxnd2"}]],Tu=e("Sprout",JF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QF=[["path",{d:"M7 20h10",key:"e6iznv"}],["path",{d:"M10 20c5.5-2.5.8-6.4 3-10",key:"161w41"}],["path",{d:"M9.5 9.4c1.1.8 1.8 2.2 2.3 3.7-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2 2.8-.5 4.4 0 5.5.8z",key:"9gtqwd"}],["path",{d:"M14.1 6a7 7 0 0 0-1.1 4c1.9-.1 3.3-.6 4.3-1.4 1-1 1.6-2.3 1.7-4.6-2.7.1-4 1-4.9 2z",key:"bkxnd2"}]],Tu=e("Sprout",QF);/** + */const QF=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M17 12h-2l-2 5-2-10-2 5H7",key:"15hlnc"}]],qe=e("SquareActivity",QF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YF=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M17 12h-2l-2 5-2-10-2 5H7",key:"15hlnc"}]],qe=e("SquareActivity",YF);/** + */const YF=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 8-8 8",key:"166keh"}],["path",{d:"M16 16H8V8",key:"1w2ppm"}]],be=e("SquareArrowDownLeft",YF);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 8-8 8",key:"166keh"}],["path",{d:"M16 16H8V8",key:"1w2ppm"}]],be=e("SquareArrowDownLeft",eD);/** + */const eD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m8 8 8 8",key:"1imecy"}],["path",{d:"M16 8v8H8",key:"1lbpgo"}]],$e=e("SquareArrowDownRight",eD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m8 8 8 8",key:"1imecy"}],["path",{d:"M16 8v8H8",key:"1lbpgo"}]],$e=e("SquareArrowDownRight",aD);/** + */const aD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"m8 12 4 4 4-4",key:"k98ssh"}]],Ae=e("SquareArrowDown",aD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"m8 12 4 4 4-4",key:"k98ssh"}]],Ae=e("SquareArrowDown",oD);/** + */const oD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m12 8-4 4 4 4",key:"15vm53"}],["path",{d:"M16 12H8",key:"1fr5h0"}]],He=e("SquareArrowLeft",oD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m12 8-4 4 4 4",key:"15vm53"}],["path",{d:"M16 12H8",key:"1fr5h0"}]],He=e("SquareArrowLeft",cD);/** + */const cD=[["path",{d:"M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6",key:"14qz4y"}],["path",{d:"m3 21 9-9",key:"1jfql5"}],["path",{d:"M9 21H3v-6",key:"wtvkvv"}]],ze=e("SquareArrowOutDownLeft",cD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tD=[["path",{d:"M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6",key:"14qz4y"}],["path",{d:"m3 21 9-9",key:"1jfql5"}],["path",{d:"M9 21H3v-6",key:"wtvkvv"}]],ze=e("SquareArrowOutDownLeft",tD);/** + */const tD=[["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"14rsvq"}],["path",{d:"m21 21-9-9",key:"1et2py"}],["path",{d:"M21 15v6h-6",key:"1jko0i"}]],Pe=e("SquareArrowOutDownRight",tD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nD=[["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"14rsvq"}],["path",{d:"m21 21-9-9",key:"1et2py"}],["path",{d:"M21 15v6h-6",key:"1jko0i"}]],Pe=e("SquareArrowOutDownRight",nD);/** + */const nD=[["path",{d:"M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6",key:"14mv1t"}],["path",{d:"m3 3 9 9",key:"rks13r"}],["path",{d:"M3 9V3h6",key:"ira0h2"}]],je=e("SquareArrowOutUpLeft",nD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dD=[["path",{d:"M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6",key:"14mv1t"}],["path",{d:"m3 3 9 9",key:"rks13r"}],["path",{d:"M3 9V3h6",key:"ira0h2"}]],je=e("SquareArrowOutUpLeft",dD);/** + */const dD=[["path",{d:"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6",key:"y09zxi"}],["path",{d:"m21 3-9 9",key:"mpx6sq"}],["path",{d:"M15 3h6v6",key:"1q9fwt"}]],Ve=e("SquareArrowOutUpRight",dD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iD=[["path",{d:"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6",key:"y09zxi"}],["path",{d:"m21 3-9 9",key:"mpx6sq"}],["path",{d:"M15 3h6v6",key:"1q9fwt"}]],Ve=e("SquareArrowOutUpRight",iD);/** + */const iD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m12 16 4-4-4-4",key:"1i9zcv"}]],Be=e("SquareArrowRight",iD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"m12 16 4-4-4-4",key:"1i9zcv"}]],Be=e("SquareArrowRight",hD);/** + */const hD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 16V8h8",key:"19xb1h"}],["path",{d:"M16 16 8 8",key:"1qdy8n"}]],Fe=e("SquareArrowUpLeft",hD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 16V8h8",key:"19xb1h"}],["path",{d:"M16 16 8 8",key:"1qdy8n"}]],Fe=e("SquareArrowUpLeft",yD);/** + */const yD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 8h8v8",key:"b65dnt"}],["path",{d:"m8 16 8-8",key:"13b9ih"}]],De=e("SquareArrowUpRight",yD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 8h8v8",key:"b65dnt"}],["path",{d:"m8 16 8-8",key:"13b9ih"}]],De=e("SquareArrowUpRight",rD);/** + */const rD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 12-4-4-4 4",key:"177agl"}],["path",{d:"M12 16V8",key:"1sbj14"}]],Re=e("SquareArrowUp",rD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 12-4-4-4 4",key:"177agl"}],["path",{d:"M12 16V8",key:"1sbj14"}]],Re=e("SquareArrowUp",kD);/** + */const kD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"m8.5 14 7-4",key:"12hpby"}],["path",{d:"m8.5 10 7 4",key:"wwy2dy"}]],Te=e("SquareAsterisk",kD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 8v8",key:"napkw2"}],["path",{d:"m8.5 14 7-4",key:"12hpby"}],["path",{d:"m8.5 10 7 4",key:"wwy2dy"}]],Te=e("SquareAsterisk",pD);/** + */const pD=[["path",{d:"M4 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2",key:"1vzg26"}],["path",{d:"M10 22H8",key:"euku7a"}],["path",{d:"M16 22h-2",key:"18d249"}],["circle",{cx:"8",cy:"8",r:"2",key:"14cg06"}],["path",{d:"M9.414 9.414 12 12",key:"qz4lzr"}],["path",{d:"M14.8 14.8 18 18",key:"11flf1"}],["circle",{cx:"8",cy:"16",r:"2",key:"1acxsx"}],["path",{d:"m18 6-8.586 8.586",key:"11kzk1"}]],Ue=e("SquareBottomDashedScissors",pD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sD=[["path",{d:"M4 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2",key:"1vzg26"}],["path",{d:"M10 22H8",key:"euku7a"}],["path",{d:"M16 22h-2",key:"18d249"}],["circle",{cx:"8",cy:"8",r:"2",key:"14cg06"}],["path",{d:"M9.414 9.414 12 12",key:"qz4lzr"}],["path",{d:"M14.8 14.8 18 18",key:"11flf1"}],["circle",{cx:"8",cy:"16",r:"2",key:"1acxsx"}],["path",{d:"m18 6-8.586 8.586",key:"11kzk1"}]],Ue=e("SquareBottomDashedScissors",sD);/** + */const sD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 8h7",key:"kbo1nt"}],["path",{d:"M8 12h6",key:"ikassy"}],["path",{d:"M11 16h5",key:"oq65wt"}]],i=e("SquareChartGantt",sD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 8h7",key:"kbo1nt"}],["path",{d:"M8 12h6",key:"ikassy"}],["path",{d:"M11 16h5",key:"oq65wt"}]],i=e("SquareChartGantt",lD);/** + */const lD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],Oe=e("SquareCheck",lD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],Oe=e("SquareCheck",uD);/** + */const uD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 10-4 4-4-4",key:"894hmk"}]],Ze=e("SquareChevronDown",uD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m16 10-4 4-4-4",key:"894hmk"}]],Ze=e("SquareChevronDown",MD);/** + */const MD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m14 16-4-4 4-4",key:"ojs7w8"}]],Ge=e("SquareChevronLeft",MD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m14 16-4-4 4-4",key:"ojs7w8"}]],Ge=e("SquareChevronLeft",vD);/** + */const vD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m10 8 4 4-4 4",key:"1wy4r4"}]],We=e("SquareChevronRight",vD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m10 8 4 4-4 4",key:"1wy4r4"}]],We=e("SquareChevronRight",mD);/** + */const mD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m8 14 4-4 4 4",key:"fy2ptz"}]],Ee=e("SquareChevronUp",mD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _D=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m8 14 4-4 4 4",key:"fy2ptz"}]],Ee=e("SquareChevronUp",_D);/** + */const _D=[["path",{d:"M10 9.5 8 12l2 2.5",key:"3mjy60"}],["path",{d:"m14 9.5 2 2.5-2 2.5",key:"1bir2l"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],Xe=e("SquareCode",_D);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gD=[["path",{d:"M10 9.5 8 12l2 2.5",key:"3mjy60"}],["path",{d:"m14 9.5 2 2.5-2 2.5",key:"1bir2l"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],Xe=e("SquareCode",gD);/** + */const gD=[["path",{d:"M10 9.5 8 12l2 2.5",key:"3mjy60"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"m14 9.5 2 2.5-2 2.5",key:"1bir2l"}],["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2",key:"as5y1o"}],["path",{d:"M9 21h1",key:"15o7lz"}]],Uu=e("SquareDashedBottomCode",gD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LD=[["path",{d:"M10 9.5 8 12l2 2.5",key:"3mjy60"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"m14 9.5 2 2.5-2 2.5",key:"1bir2l"}],["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2",key:"as5y1o"}],["path",{d:"M9 21h1",key:"15o7lz"}]],Uu=e("SquareDashedBottomCode",LD);/** + */const LD=[["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2",key:"as5y1o"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 21h1",key:"v9vybs"}]],Ou=e("SquareDashedBottom",LD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xD=[["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2",key:"as5y1o"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 21h1",key:"v9vybs"}]],Ou=e("SquareDashedBottom",xD);/** + */const xD=[["path",{d:"M8 7v7",key:"1x2jlm"}],["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M16 7v9",key:"1hp2iy"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M21 14v1",key:"169vum"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M3 9v1",key:"1r0deq"}]],Ke=e("SquareDashedKanban",xD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wD=[["path",{d:"M8 7v7",key:"1x2jlm"}],["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M16 7v9",key:"1hp2iy"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M21 14v1",key:"169vum"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M3 9v1",key:"1r0deq"}]],Ke=e("SquareDashedKanban",wD);/** + */const wD=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",key:"xwnzip"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M9 21h2",key:"1qve2z"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M21 9v2",key:"p14lih"}],["path",{d:"M3 14v1",key:"vnatye"}]],Je=e("SquareDashedMousePointer",wD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fD=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",key:"xwnzip"}],["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M9 21h2",key:"1qve2z"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M21 9v2",key:"p14lih"}],["path",{d:"M3 14v1",key:"vnatye"}]],Je=e("SquareDashedMousePointer",fD);/** + */const fD=[["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M21 14v1",key:"169vum"}]],Qe=e("SquareDashed",fD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CD=[["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M21 14v1",key:"169vum"}]],Qe=e("SquareDashed",CD);/** + */const CD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16",key:"aqc6ln"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8",key:"1mkcni"}]],Ye=e("SquareDivide",CD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ID=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16",key:"aqc6ln"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8",key:"1mkcni"}]],Ye=e("SquareDivide",ID);/** + */const ID=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]],e2=e("SquareDot",ID);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ND=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]],e2=e("SquareDot",ND);/** + */const ND=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M7 14h10",key:"1mhdw3"}]],a2=e("SquareEqual",ND);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M7 14h10",key:"1mhdw3"}]],a2=e("SquareEqual",SD);/** + */const SD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3",key:"m1af9g"}],["path",{d:"M9 11.2h5.7",key:"3zgcl2"}]],o2=e("SquareFunction",SD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3",key:"m1af9g"}],["path",{d:"M9 11.2h5.7",key:"3zgcl2"}]],o2=e("SquareFunction",qD);/** + */const qD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 7v7",key:"1x2jlm"}],["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M16 7v9",key:"1hp2iy"}]],c2=e("SquareKanban",qD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 7v7",key:"1x2jlm"}],["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M16 7v9",key:"1hp2iy"}]],c2=e("SquareKanban",bD);/** + */const bD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7v10",key:"d5nglc"}],["path",{d:"M11 7v10",key:"pptsnr"}],["path",{d:"m15 7 2 10",key:"1m7qm5"}]],t2=e("SquareLibrary",bD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $D=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7v10",key:"d5nglc"}],["path",{d:"M11 7v10",key:"pptsnr"}],["path",{d:"m15 7 2 10",key:"1m7qm5"}]],t2=e("SquareLibrary",$D);/** + */const $D=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 16V8l4 4 4-4v8",key:"141u4e"}]],n2=e("SquareM",$D);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 16V8l4 4 4-4v8",key:"141u4e"}]],n2=e("SquareM",AD);/** + */const AD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 8h10",key:"1jw688"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M7 16h10",key:"wp8him"}]],d2=e("SquareMenu",AD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 8h10",key:"1jw688"}],["path",{d:"M7 12h10",key:"b7w52i"}],["path",{d:"M7 16h10",key:"wp8him"}]],d2=e("SquareMenu",HD);/** + */const HD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}]],i2=e("SquareMinus",HD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}]],i2=e("SquareMinus",zD);/** + */const zD=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",key:"xwnzip"}],["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"14rsvq"}]],h2=e("SquareMousePointer",zD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PD=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z",key:"xwnzip"}],["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6",key:"14rsvq"}]],h2=e("SquareMousePointer",PD);/** + */const PD=[["path",{d:"M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41",key:"9l1ft6"}],["path",{d:"M3 8.7V19a2 2 0 0 0 2 2h10.3",key:"17knke"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M13 13a3 3 0 1 0 0-6H9v2",key:"uoagbd"}],["path",{d:"M9 17v-2.3",key:"1jxgo2"}]],y2=e("SquareParkingOff",PD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jD=[["path",{d:"M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41",key:"9l1ft6"}],["path",{d:"M3 8.7V19a2 2 0 0 0 2 2h10.3",key:"17knke"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M13 13a3 3 0 1 0 0-6H9v2",key:"uoagbd"}],["path",{d:"M9 17v-2.3",key:"1jxgo2"}]],y2=e("SquareParkingOff",jD);/** + */const jD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9",key:"1dfk2c"}]],r2=e("SquareParking",jD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9",key:"1dfk2c"}]],r2=e("SquareParking",VD);/** + */const VD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]],k2=e("SquarePercent",VD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]],k2=e("SquarePercent",BD);/** + */const BD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7h10",key:"udp07y"}],["path",{d:"M10 7v10",key:"i1d9ee"}],["path",{d:"M16 17a2 2 0 0 1-2-2V7",key:"ftwdc7"}]],p2=e("SquarePi",BD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M7 7h10",key:"udp07y"}],["path",{d:"M10 7v10",key:"i1d9ee"}],["path",{d:"M16 17a2 2 0 0 1-2-2V7",key:"ftwdc7"}]],p2=e("SquarePi",FD);/** + */const FD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 12H9.5a2.5 2.5 0 0 1 0-5H17",key:"1l9586"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M16 7v10",key:"lavkr4"}]],s2=e("SquarePilcrow",FD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M12 12H9.5a2.5 2.5 0 0 1 0-5H17",key:"1l9586"}],["path",{d:"M12 7v10",key:"jspqdw"}],["path",{d:"M16 7v10",key:"lavkr4"}]],s2=e("SquarePilcrow",DD);/** + */const DD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m9 8 6 4-6 4Z",key:"f1r3lt"}]],l2=e("SquarePlay",DD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"m9 8 6 4-6 4Z",key:"f1r3lt"}]],l2=e("SquarePlay",RD);/** + */const RD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M12 8v8",key:"napkw2"}]],u2=e("SquarePlus",RD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M8 12h8",key:"1wcyev"}],["path",{d:"M12 8v8",key:"napkw2"}]],u2=e("SquarePlus",TD);/** + */const TD=[["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005",key:"1pek45"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]],M2=e("SquarePower",TD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UD=[["path",{d:"M12 7v4",key:"xawao1"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005",key:"1pek45"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]],M2=e("SquarePower",UD);/** + */const UD=[["path",{d:"M7 12h2l2 5 2-10h4",key:"1fxv6h"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]],Zu=e("SquareRadical",UD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OD=[["path",{d:"M7 12h2l2 5 2-10h4",key:"1fxv6h"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}]],Zu=e("SquareRadical",OD);/** + */const OD=[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"2",key:"1btzen"}],["circle",{cx:"8",cy:"8",r:"2",key:"14cg06"}],["path",{d:"M9.414 9.414 12 12",key:"qz4lzr"}],["path",{d:"M14.8 14.8 18 18",key:"11flf1"}],["circle",{cx:"8",cy:"16",r:"2",key:"1acxsx"}],["path",{d:"m18 6-8.586 8.586",key:"11kzk1"}]],v2=e("SquareScissors",OD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZD=[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"2",key:"1btzen"}],["circle",{cx:"8",cy:"8",r:"2",key:"14cg06"}],["path",{d:"M9.414 9.414 12 12",key:"qz4lzr"}],["path",{d:"M14.8 14.8 18 18",key:"11flf1"}],["circle",{cx:"8",cy:"16",r:"2",key:"1acxsx"}],["path",{d:"m18 6-8.586 8.586",key:"11kzk1"}]],v2=e("SquareScissors",ZD);/** + */const ZD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M16 8.9V7H8l4 5-4 5h8v-1.9",key:"9nih0i"}]],m2=e("SquareSigma",ZD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M16 8.9V7H8l4 5-4 5h8v-1.9",key:"9nih0i"}]],m2=e("SquareSigma",GD);/** + */const GD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9",key:"1dfufj"}]],_2=e("SquareSlash",GD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9",key:"1dfufj"}]],_2=e("SquareSlash",WD);/** + */const WD=[["path",{d:"M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3",key:"lubmu8"}],["path",{d:"M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3",key:"1ag34g"}],["line",{x1:"12",x2:"12",y1:"4",y2:"20",key:"1tx1rr"}]],g2=e("SquareSplitHorizontal",WD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ED=[["path",{d:"M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3",key:"lubmu8"}],["path",{d:"M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3",key:"1ag34g"}],["line",{x1:"12",x2:"12",y1:"4",y2:"20",key:"1tx1rr"}]],g2=e("SquareSplitHorizontal",ED);/** + */const ED=[["path",{d:"M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3",key:"1pi83i"}],["path",{d:"M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3",key:"ido5k7"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12",key:"1e0a9i"}]],L2=e("SquareSplitVertical",ED);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XD=[["path",{d:"M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3",key:"1pi83i"}],["path",{d:"M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3",key:"ido5k7"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12",key:"1e0a9i"}]],L2=e("SquareSplitVertical",XD);/** + */const XD=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1",key:"z9xiuo"}]],Gu=e("SquareSquare",XD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KD=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",key:"h1oib"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1",key:"z9xiuo"}]],Gu=e("SquareSquare",KD);/** + */const KD=[["path",{d:"M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2",key:"4i38lg"}],["path",{d:"M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2",key:"mlte4a"}],["rect",{width:"8",height:"8",x:"14",y:"14",rx:"2",key:"1fa9i4"}]],Wu=e("SquareStack",KD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JD=[["path",{d:"M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2",key:"4i38lg"}],["path",{d:"M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2",key:"mlte4a"}],["rect",{width:"8",height:"8",x:"14",y:"14",rx:"2",key:"1fa9i4"}]],Wu=e("SquareStack",JD);/** + */const JD=[["path",{d:"m7 11 2-2-2-2",key:"1lz0vl"}],["path",{d:"M11 13h4",key:"1p7l4v"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}]],x2=e("SquareTerminal",JD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QD=[["path",{d:"m7 11 2-2-2-2",key:"1lz0vl"}],["path",{d:"M11 13h4",key:"1p7l4v"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}]],x2=e("SquareTerminal",QD);/** + */const QD=[["path",{d:"M18 21a6 6 0 0 0-12 0",key:"kaz2du"}],["circle",{cx:"12",cy:"11",r:"4",key:"1gt34v"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],w2=e("SquareUserRound",QD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YD=[["path",{d:"M18 21a6 6 0 0 0-12 0",key:"kaz2du"}],["circle",{cx:"12",cy:"11",r:"4",key:"1gt34v"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],w2=e("SquareUserRound",YD);/** + */const YD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2",key:"1m6ac2"}]],f2=e("SquareUser",YD);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eR=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2",key:"1m6ac2"}]],f2=e("SquareUser",eR);/** + */const eR=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]],C2=e("SquareX",eR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aR=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]],C2=e("SquareX",aR);/** + */const aR=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],Eu=e("Square",aR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oR=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],Eu=e("Square",oR);/** + */const oR=[["path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9",key:"garfkc"}]],Xu=e("Squircle",oR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cR=[["path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9",key:"garfkc"}]],Xu=e("Squircle",cR);/** + */const cR=[["path",{d:"M15.236 22a3 3 0 0 0-2.2-5",key:"21bitc"}],["path",{d:"M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4",key:"oh0fg0"}],["path",{d:"M18 13h.01",key:"9veqaj"}],["path",{d:"M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10",key:"980v8a"}]],Ku=e("Squirrel",cR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tR=[["path",{d:"M15.236 22a3 3 0 0 0-2.2-5",key:"21bitc"}],["path",{d:"M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4",key:"oh0fg0"}],["path",{d:"M18 13h.01",key:"9veqaj"}],["path",{d:"M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10",key:"980v8a"}]],Ku=e("Squirrel",tR);/** + */const tR=[["path",{d:"M5 22h14",key:"ehvnwv"}],["path",{d:"M19.27 13.73A2.5 2.5 0 0 0 17.5 13h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-1.5c0-.66-.26-1.3-.73-1.77Z",key:"1sy9ra"}],["path",{d:"M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-3-3c-1.66 0-3 1-3 3s1 2 1 3.5V13",key:"cnxgux"}]],Ju=e("Stamp",tR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nR=[["path",{d:"M5 22h14",key:"ehvnwv"}],["path",{d:"M19.27 13.73A2.5 2.5 0 0 0 17.5 13h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-1.5c0-.66-.26-1.3-.73-1.77Z",key:"1sy9ra"}],["path",{d:"M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-3-3c-1.66 0-3 1-3 3s1 2 1 3.5V13",key:"cnxgux"}]],Ju=e("Stamp",nR);/** + */const nR=[["path",{d:"M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2",key:"2ksp49"}]],Qu=e("StarHalf",nR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dR=[["path",{d:"M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2",key:"2ksp49"}]],Qu=e("StarHalf",dR);/** + */const dR=[["path",{d:"M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43",key:"16m0ql"}],["path",{d:"M18.42 12.76 22 9.27l-6.91-1L12 2l-1.44 2.91",key:"1vt8nq"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Yu=e("StarOff",dR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iR=[["path",{d:"M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43",key:"16m0ql"}],["path",{d:"M18.42 12.76 22 9.27l-6.91-1L12 2l-1.44 2.91",key:"1vt8nq"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Yu=e("StarOff",iR);/** + */const iR=[["line",{x1:"18",x2:"18",y1:"20",y2:"4",key:"cun8e5"}],["polygon",{points:"14,20 4,12 14,4",key:"ypakod"}]],eM=e("StepBack",iR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hR=[["line",{x1:"18",x2:"18",y1:"20",y2:"4",key:"cun8e5"}],["polygon",{points:"14,20 4,12 14,4",key:"ypakod"}]],eM=e("StepBack",hR);/** + */const hR=[["line",{x1:"6",x2:"6",y1:"4",y2:"20",key:"fy8qot"}],["polygon",{points:"10,4 20,12 10,20",key:"1mc1pf"}]],aM=e("StepForward",hR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yR=[["line",{x1:"6",x2:"6",y1:"4",y2:"20",key:"fy8qot"}],["polygon",{points:"10,4 20,12 10,20",key:"1mc1pf"}]],aM=e("StepForward",yR);/** + */const yR=[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]],oM=e("Stethoscope",yR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rR=[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]],oM=e("Stethoscope",rR);/** + */const rR=[["path",{d:"M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z",key:"1wis1t"}],["path",{d:"M14 3v4a2 2 0 0 0 2 2h4",key:"36rjfy"}],["path",{d:"M8 13h.01",key:"1sbv64"}],["path",{d:"M16 13h.01",key:"wip0gl"}],["path",{d:"M10 16s.8 1 2 1c1.3 0 2-1 2-1",key:"1vvgv3"}]],cM=e("Sticker",rR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kR=[["path",{d:"M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z",key:"1wis1t"}],["path",{d:"M14 3v4a2 2 0 0 0 2 2h4",key:"36rjfy"}],["path",{d:"M8 13h.01",key:"1sbv64"}],["path",{d:"M16 13h.01",key:"wip0gl"}],["path",{d:"M10 16s.8 1 2 1c1.3 0 2-1 2-1",key:"1vvgv3"}]],cM=e("Sticker",kR);/** + */const kR=[["path",{d:"M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z",key:"qazsjp"}],["path",{d:"M15 3v4a2 2 0 0 0 2 2h4",key:"40519r"}]],tM=e("StickyNote",kR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pR=[["path",{d:"M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z",key:"qazsjp"}],["path",{d:"M15 3v4a2 2 0 0 0 2 2h4",key:"40519r"}]],tM=e("StickyNote",pR);/** + */const pR=[["path",{d:"m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7",key:"ztvudi"}],["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8",key:"1b2hhj"}],["path",{d:"M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4",key:"2ebpfo"}],["path",{d:"M2 7h20",key:"1fcdvo"}],["path",{d:"M22 7v3a2 2 0 0 1-2 2a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7",key:"6c3vgh"}]],nM=e("Store",pR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sR=[["path",{d:"m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7",key:"ztvudi"}],["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8",key:"1b2hhj"}],["path",{d:"M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4",key:"2ebpfo"}],["path",{d:"M2 7h20",key:"1fcdvo"}],["path",{d:"M22 7v3a2 2 0 0 1-2 2a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7",key:"6c3vgh"}]],nM=e("Store",sR);/** + */const sR=[["rect",{width:"20",height:"6",x:"2",y:"4",rx:"2",key:"qdearl"}],["rect",{width:"20",height:"6",x:"2",y:"14",rx:"2",key:"1xrn6j"}]],dM=e("StretchHorizontal",sR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lR=[["rect",{width:"20",height:"6",x:"2",y:"4",rx:"2",key:"qdearl"}],["rect",{width:"20",height:"6",x:"2",y:"14",rx:"2",key:"1xrn6j"}]],dM=e("StretchHorizontal",lR);/** + */const lR=[["rect",{width:"6",height:"20",x:"4",y:"2",rx:"2",key:"19qu7m"}],["rect",{width:"6",height:"20",x:"14",y:"2",rx:"2",key:"24v0nk"}]],iM=e("StretchVertical",lR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uR=[["rect",{width:"6",height:"20",x:"4",y:"2",rx:"2",key:"19qu7m"}],["rect",{width:"6",height:"20",x:"14",y:"2",rx:"2",key:"24v0nk"}]],iM=e("StretchVertical",uR);/** + */const uR=[["path",{d:"m4 5 8 8",key:"1eunvl"}],["path",{d:"m12 5-8 8",key:"1ah0jp"}],["path",{d:"M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07",key:"e8ta8j"}]],hM=e("Subscript",uR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MR=[["path",{d:"m4 5 8 8",key:"1eunvl"}],["path",{d:"m12 5-8 8",key:"1ah0jp"}],["path",{d:"M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07",key:"e8ta8j"}]],hM=e("Subscript",MR);/** + */const MR=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 4h.01",key:"1ujb9j"}],["path",{d:"M20 12h.01",key:"1ykeid"}],["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M4 12h.01",key:"158zrr"}],["path",{d:"M17.657 6.343h.01",key:"31pqzk"}],["path",{d:"M17.657 17.657h.01",key:"jehnf4"}],["path",{d:"M6.343 17.657h.01",key:"gdk6ow"}],["path",{d:"M6.343 6.343h.01",key:"1uurf0"}]],yM=e("SunDim",MR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vR=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 4h.01",key:"1ujb9j"}],["path",{d:"M20 12h.01",key:"1ykeid"}],["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M4 12h.01",key:"158zrr"}],["path",{d:"M17.657 6.343h.01",key:"31pqzk"}],["path",{d:"M17.657 17.657h.01",key:"jehnf4"}],["path",{d:"M6.343 17.657h.01",key:"gdk6ow"}],["path",{d:"M6.343 6.343h.01",key:"1uurf0"}]],yM=e("SunDim",vR);/** + */const vR=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 3v1",key:"1asbbs"}],["path",{d:"M12 20v1",key:"1wcdkc"}],["path",{d:"M3 12h1",key:"lp3yf2"}],["path",{d:"M20 12h1",key:"1vloll"}],["path",{d:"m18.364 5.636-.707.707",key:"1hakh0"}],["path",{d:"m6.343 17.657-.707.707",key:"18m9nf"}],["path",{d:"m5.636 5.636.707.707",key:"1xv1c5"}],["path",{d:"m17.657 17.657.707.707",key:"vl76zb"}]],rM=e("SunMedium",vR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mR=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 3v1",key:"1asbbs"}],["path",{d:"M12 20v1",key:"1wcdkc"}],["path",{d:"M3 12h1",key:"lp3yf2"}],["path",{d:"M20 12h1",key:"1vloll"}],["path",{d:"m18.364 5.636-.707.707",key:"1hakh0"}],["path",{d:"m6.343 17.657-.707.707",key:"18m9nf"}],["path",{d:"m5.636 5.636.707.707",key:"1xv1c5"}],["path",{d:"m17.657 17.657.707.707",key:"vl76zb"}]],rM=e("SunMedium",mR);/** + */const mR=[["path",{d:"M12 8a2.83 2.83 0 0 0 4 4 4 4 0 1 1-4-4",key:"1fu5g2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.9 4.9 1.4 1.4",key:"b9915j"}],["path",{d:"m17.7 17.7 1.4 1.4",key:"qc3ed3"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.3 17.7-1.4 1.4",key:"5gca6"}],["path",{d:"m19.1 4.9-1.4 1.4",key:"wpu9u6"}]],kM=e("SunMoon",mR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _R=[["path",{d:"M12 8a2.83 2.83 0 0 0 4 4 4 4 0 1 1-4-4",key:"1fu5g2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.9 4.9 1.4 1.4",key:"b9915j"}],["path",{d:"m17.7 17.7 1.4 1.4",key:"qc3ed3"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.3 17.7-1.4 1.4",key:"5gca6"}],["path",{d:"m19.1 4.9-1.4 1.4",key:"wpu9u6"}]],kM=e("SunMoon",_R);/** + */const _R=[["path",{d:"M10 21v-1",key:"1u8rkd"}],["path",{d:"M10 4V3",key:"pkzwkn"}],["path",{d:"M10 9a3 3 0 0 0 0 6",key:"gv75dk"}],["path",{d:"m14 20 1.25-2.5L18 18",key:"1chtki"}],["path",{d:"m14 4 1.25 2.5L18 6",key:"1b4wsy"}],["path",{d:"m17 21-3-6 1.5-3H22",key:"o5qa3v"}],["path",{d:"m17 3-3 6 1.5 3",key:"11697g"}],["path",{d:"M2 12h1",key:"1uaihz"}],["path",{d:"m20 10-1.5 2 1.5 2",key:"1swlpi"}],["path",{d:"m3.64 18.36.7-.7",key:"105rm9"}],["path",{d:"m4.34 6.34-.7-.7",key:"d3unjp"}]],pM=e("SunSnow",_R);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gR=[["path",{d:"M10 21v-1",key:"1u8rkd"}],["path",{d:"M10 4V3",key:"pkzwkn"}],["path",{d:"M10 9a3 3 0 0 0 0 6",key:"gv75dk"}],["path",{d:"m14 20 1.25-2.5L18 18",key:"1chtki"}],["path",{d:"m14 4 1.25 2.5L18 6",key:"1b4wsy"}],["path",{d:"m17 21-3-6 1.5-3H22",key:"o5qa3v"}],["path",{d:"m17 3-3 6 1.5 3",key:"11697g"}],["path",{d:"M2 12h1",key:"1uaihz"}],["path",{d:"m20 10-1.5 2 1.5 2",key:"1swlpi"}],["path",{d:"m3.64 18.36.7-.7",key:"105rm9"}],["path",{d:"m4.34 6.34-.7-.7",key:"d3unjp"}]],pM=e("SunSnow",gR);/** + */const gR=[["path",{d:"M12 2v8",key:"1q4o3n"}],["path",{d:"m4.93 10.93 1.41 1.41",key:"2a7f42"}],["path",{d:"M2 18h2",key:"j10viu"}],["path",{d:"M20 18h2",key:"wocana"}],["path",{d:"m19.07 10.93-1.41 1.41",key:"15zs5n"}],["path",{d:"M22 22H2",key:"19qnx5"}],["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}],["path",{d:"M16 18a4 4 0 0 0-8 0",key:"1lzouq"}]],sM=e("Sunrise",gR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LR=[["path",{d:"M12 2v8",key:"1q4o3n"}],["path",{d:"m4.93 10.93 1.41 1.41",key:"2a7f42"}],["path",{d:"M2 18h2",key:"j10viu"}],["path",{d:"M20 18h2",key:"wocana"}],["path",{d:"m19.07 10.93-1.41 1.41",key:"15zs5n"}],["path",{d:"M22 22H2",key:"19qnx5"}],["path",{d:"m8 6 4-4 4 4",key:"ybng9g"}],["path",{d:"M16 18a4 4 0 0 0-8 0",key:"1lzouq"}]],sM=e("Sunrise",LR);/** + */const LR=[["path",{d:"M12 10V2",key:"16sf7g"}],["path",{d:"m4.93 10.93 1.41 1.41",key:"2a7f42"}],["path",{d:"M2 18h2",key:"j10viu"}],["path",{d:"M20 18h2",key:"wocana"}],["path",{d:"m19.07 10.93-1.41 1.41",key:"15zs5n"}],["path",{d:"M22 22H2",key:"19qnx5"}],["path",{d:"m16 6-4 4-4-4",key:"6wukr"}],["path",{d:"M16 18a4 4 0 0 0-8 0",key:"1lzouq"}]],lM=e("Sunset",LR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xR=[["path",{d:"M12 10V2",key:"16sf7g"}],["path",{d:"m4.93 10.93 1.41 1.41",key:"2a7f42"}],["path",{d:"M2 18h2",key:"j10viu"}],["path",{d:"M20 18h2",key:"wocana"}],["path",{d:"m19.07 10.93-1.41 1.41",key:"15zs5n"}],["path",{d:"M22 22H2",key:"19qnx5"}],["path",{d:"m16 6-4 4-4-4",key:"6wukr"}],["path",{d:"M16 18a4 4 0 0 0-8 0",key:"1lzouq"}]],lM=e("Sunset",xR);/** + */const xR=[["path",{d:"m4 19 8-8",key:"hr47gm"}],["path",{d:"m12 19-8-8",key:"1dhhmo"}],["path",{d:"M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06",key:"1dfcux"}]],uM=e("Superscript",xR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wR=[["path",{d:"m4 19 8-8",key:"hr47gm"}],["path",{d:"m12 19-8-8",key:"1dhhmo"}],["path",{d:"M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06",key:"1dfcux"}]],uM=e("Superscript",wR);/** + */const wR=[["path",{d:"M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z",key:"1ldrpk"}],["path",{d:"M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7",key:"11i5po"}],["path",{d:"M 7 17h.01",key:"1euzgo"}],["path",{d:"m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8",key:"o2gii7"}]],MM=e("SwatchBook",wR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fR=[["path",{d:"M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z",key:"1ldrpk"}],["path",{d:"M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7",key:"11i5po"}],["path",{d:"M 7 17h.01",key:"1euzgo"}],["path",{d:"m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8",key:"o2gii7"}]],MM=e("SwatchBook",fR);/** + */const fR=[["path",{d:"M10 21V3h8",key:"br2l0g"}],["path",{d:"M6 16h9",key:"2py0wn"}],["path",{d:"M10 9.5h7",key:"13dmhz"}]],vM=e("SwissFranc",fR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CR=[["path",{d:"M10 21V3h8",key:"br2l0g"}],["path",{d:"M6 16h9",key:"2py0wn"}],["path",{d:"M10 9.5h7",key:"13dmhz"}]],vM=e("SwissFranc",CR);/** + */const CR=[["path",{d:"M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5",key:"mtk2lu"}],["path",{d:"M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5",key:"120jsl"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"m18 22-3-3 3-3",key:"kgdoj7"}],["path",{d:"m6 2 3 3-3 3",key:"1fnbkv"}]],mM=e("SwitchCamera",CR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IR=[["path",{d:"M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5",key:"mtk2lu"}],["path",{d:"M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5",key:"120jsl"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"m18 22-3-3 3-3",key:"kgdoj7"}],["path",{d:"m6 2 3 3-3 3",key:"1fnbkv"}]],mM=e("SwitchCamera",IR);/** + */const IR=[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5",key:"1hfsw2"}],["line",{x1:"13",x2:"19",y1:"19",y2:"13",key:"1vrmhu"}],["line",{x1:"16",x2:"20",y1:"16",y2:"20",key:"1bron3"}],["line",{x1:"19",x2:"21",y1:"21",y2:"19",key:"13pww6"}]],_M=e("Sword",IR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NR=[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5",key:"1hfsw2"}],["line",{x1:"13",x2:"19",y1:"19",y2:"13",key:"1vrmhu"}],["line",{x1:"16",x2:"20",y1:"16",y2:"20",key:"1bron3"}],["line",{x1:"19",x2:"21",y1:"21",y2:"19",key:"13pww6"}]],_M=e("Sword",NR);/** + */const NR=[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5",key:"1hfsw2"}],["line",{x1:"13",x2:"19",y1:"19",y2:"13",key:"1vrmhu"}],["line",{x1:"16",x2:"20",y1:"16",y2:"20",key:"1bron3"}],["line",{x1:"19",x2:"21",y1:"21",y2:"19",key:"13pww6"}],["polyline",{points:"14.5 6.5 18 3 21 3 21 6 17.5 9.5",key:"hbey2j"}],["line",{x1:"5",x2:"9",y1:"14",y2:"18",key:"1hf58s"}],["line",{x1:"7",x2:"4",y1:"17",y2:"20",key:"pidxm4"}],["line",{x1:"3",x2:"5",y1:"19",y2:"21",key:"1pehsh"}]],gM=e("Swords",NR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SR=[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5",key:"1hfsw2"}],["line",{x1:"13",x2:"19",y1:"19",y2:"13",key:"1vrmhu"}],["line",{x1:"16",x2:"20",y1:"16",y2:"20",key:"1bron3"}],["line",{x1:"19",x2:"21",y1:"21",y2:"19",key:"13pww6"}],["polyline",{points:"14.5 6.5 18 3 21 3 21 6 17.5 9.5",key:"hbey2j"}],["line",{x1:"5",x2:"9",y1:"14",y2:"18",key:"1hf58s"}],["line",{x1:"7",x2:"4",y1:"17",y2:"20",key:"pidxm4"}],["line",{x1:"3",x2:"5",y1:"19",y2:"21",key:"1pehsh"}]],gM=e("Swords",SR);/** + */const SR=[["path",{d:"m18 2 4 4",key:"22kx64"}],["path",{d:"m17 7 3-3",key:"1w1zoj"}],["path",{d:"M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5",key:"1exhtz"}],["path",{d:"m9 11 4 4",key:"rovt3i"}],["path",{d:"m5 19-3 3",key:"59f2uf"}],["path",{d:"m14 4 6 6",key:"yqp9t2"}]],LM=e("Syringe",SR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qR=[["path",{d:"m18 2 4 4",key:"22kx64"}],["path",{d:"m17 7 3-3",key:"1w1zoj"}],["path",{d:"M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5",key:"1exhtz"}],["path",{d:"m9 11 4 4",key:"rovt3i"}],["path",{d:"m5 19-3 3",key:"59f2uf"}],["path",{d:"m14 4 6 6",key:"yqp9t2"}]],LM=e("Syringe",qR);/** + */const qR=[["path",{d:"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18",key:"gugj83"}]],xM=e("Table2",qR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bR=[["path",{d:"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18",key:"gugj83"}]],xM=e("Table2",bR);/** + */const bR=[["path",{d:"M12 21v-6",key:"lihzve"}],["path",{d:"M12 9V3",key:"da5inc"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],wM=e("TableCellsMerge",bR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $R=[["path",{d:"M12 21v-6",key:"lihzve"}],["path",{d:"M12 9V3",key:"da5inc"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],wM=e("TableCellsMerge",$R);/** + */const $R=[["path",{d:"M12 15V9",key:"8c7uyn"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],fM=e("TableCellsSplit",$R);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AR=[["path",{d:"M12 15V9",key:"8c7uyn"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M3 9h18",key:"1pudct"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],fM=e("TableCellsSplit",AR);/** + */const AR=[["path",{d:"M14 14v2",key:"w2a1xv"}],["path",{d:"M14 20v2",key:"1lq872"}],["path",{d:"M14 2v2",key:"6buw04"}],["path",{d:"M14 8v2",key:"i67w9a"}],["path",{d:"M2 15h8",key:"82wtch"}],["path",{d:"M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2",key:"up0l64"}],["path",{d:"M2 9h8",key:"yelfik"}],["path",{d:"M22 15h-4",key:"1es58f"}],["path",{d:"M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2",key:"pdjoqf"}],["path",{d:"M22 9h-4",key:"1luja7"}],["path",{d:"M5 3v18",key:"14hmio"}]],CM=e("TableColumnsSplit",AR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HR=[["path",{d:"M14 14v2",key:"w2a1xv"}],["path",{d:"M14 20v2",key:"1lq872"}],["path",{d:"M14 2v2",key:"6buw04"}],["path",{d:"M14 8v2",key:"i67w9a"}],["path",{d:"M2 15h8",key:"82wtch"}],["path",{d:"M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2",key:"up0l64"}],["path",{d:"M2 9h8",key:"yelfik"}],["path",{d:"M22 15h-4",key:"1es58f"}],["path",{d:"M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2",key:"pdjoqf"}],["path",{d:"M22 9h-4",key:"1luja7"}],["path",{d:"M5 3v18",key:"14hmio"}]],CM=e("TableColumnsSplit",HR);/** + */const HR=[["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M16 18H3",key:"12xzn7"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M21 12h.01",key:"msek7k"}],["path",{d:"M21 18h.01",key:"1e8rq1"}],["path",{d:"M21 6h.01",key:"1koanj"}]],IM=e("TableOfContents",HR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zR=[["path",{d:"M16 12H3",key:"1a2rj7"}],["path",{d:"M16 18H3",key:"12xzn7"}],["path",{d:"M16 6H3",key:"1wxfjs"}],["path",{d:"M21 12h.01",key:"msek7k"}],["path",{d:"M21 18h.01",key:"1e8rq1"}],["path",{d:"M21 6h.01",key:"1koanj"}]],IM=e("TableOfContents",zR);/** + */const zR=[["path",{d:"M15 3v18",key:"14nvp0"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 9H3",key:"1338ky"}],["path",{d:"M21 15H3",key:"9uk58r"}]],NM=e("TableProperties",zR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PR=[["path",{d:"M15 3v18",key:"14nvp0"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M21 9H3",key:"1338ky"}],["path",{d:"M21 15H3",key:"9uk58r"}]],NM=e("TableProperties",PR);/** + */const PR=[["path",{d:"M14 10h2",key:"1lstlu"}],["path",{d:"M15 22v-8",key:"1fwwgm"}],["path",{d:"M15 2v4",key:"1044rn"}],["path",{d:"M2 10h2",key:"1r8dkt"}],["path",{d:"M20 10h2",key:"1ug425"}],["path",{d:"M3 19h18",key:"awlh7x"}],["path",{d:"M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6",key:"ibqhof"}],["path",{d:"M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2",key:"1uenja"}],["path",{d:"M8 10h2",key:"66od0"}],["path",{d:"M9 22v-8",key:"fmnu31"}],["path",{d:"M9 2v4",key:"j1yeou"}]],SM=e("TableRowsSplit",PR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jR=[["path",{d:"M14 10h2",key:"1lstlu"}],["path",{d:"M15 22v-8",key:"1fwwgm"}],["path",{d:"M15 2v4",key:"1044rn"}],["path",{d:"M2 10h2",key:"1r8dkt"}],["path",{d:"M20 10h2",key:"1ug425"}],["path",{d:"M3 19h18",key:"awlh7x"}],["path",{d:"M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6",key:"ibqhof"}],["path",{d:"M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2",key:"1uenja"}],["path",{d:"M8 10h2",key:"66od0"}],["path",{d:"M9 22v-8",key:"fmnu31"}],["path",{d:"M9 2v4",key:"j1yeou"}]],SM=e("TableRowsSplit",jR);/** + */const jR=[["path",{d:"M12 3v18",key:"108xh3"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M3 15h18",key:"5xshup"}]],qM=e("Table",jR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VR=[["path",{d:"M12 3v18",key:"108xh3"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M3 15h18",key:"5xshup"}]],qM=e("Table",VR);/** + */const VR=[["rect",{width:"10",height:"14",x:"3",y:"8",rx:"2",key:"1vrsiq"}],["path",{d:"M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4",key:"1j4zmg"}],["path",{d:"M8 18h.01",key:"lrp35t"}]],bM=e("TabletSmartphone",VR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BR=[["rect",{width:"10",height:"14",x:"3",y:"8",rx:"2",key:"1vrsiq"}],["path",{d:"M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4",key:"1j4zmg"}],["path",{d:"M8 18h.01",key:"lrp35t"}]],bM=e("TabletSmartphone",BR);/** + */const BR=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2",key:"76otgf"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18",key:"1dp563"}]],$M=e("Tablet",BR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FR=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2",key:"76otgf"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18",key:"1dp563"}]],$M=e("Tablet",FR);/** + */const FR=[["circle",{cx:"7",cy:"7",r:"5",key:"x29byf"}],["circle",{cx:"17",cy:"17",r:"5",key:"1op1d2"}],["path",{d:"M12 17h10",key:"ls21zv"}],["path",{d:"m3.46 10.54 7.08-7.08",key:"1rehiu"}]],AM=e("Tablets",FR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DR=[["circle",{cx:"7",cy:"7",r:"5",key:"x29byf"}],["circle",{cx:"17",cy:"17",r:"5",key:"1op1d2"}],["path",{d:"M12 17h10",key:"ls21zv"}],["path",{d:"m3.46 10.54 7.08-7.08",key:"1rehiu"}]],AM=e("Tablets",DR);/** + */const DR=[["path",{d:"m15 5 6.3 6.3a2.4 2.4 0 0 1 0 3.4L17 19",key:"1cbfv1"}],["path",{d:"M9.586 5.586A2 2 0 0 0 8.172 5H3a1 1 0 0 0-1 1v5.172a2 2 0 0 0 .586 1.414L8.29 18.29a2.426 2.426 0 0 0 3.42 0l3.58-3.58a2.426 2.426 0 0 0 0-3.42z",key:"135mg7"}],["circle",{cx:"6.5",cy:"9.5",r:".5",fill:"currentColor",key:"5pm5xn"}]],HM=e("Tags",DR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RR=[["path",{d:"m15 5 6.3 6.3a2.4 2.4 0 0 1 0 3.4L17 19",key:"1cbfv1"}],["path",{d:"M9.586 5.586A2 2 0 0 0 8.172 5H3a1 1 0 0 0-1 1v5.172a2 2 0 0 0 .586 1.414L8.29 18.29a2.426 2.426 0 0 0 3.42 0l3.58-3.58a2.426 2.426 0 0 0 0-3.42z",key:"135mg7"}],["circle",{cx:"6.5",cy:"9.5",r:".5",fill:"currentColor",key:"5pm5xn"}]],HM=e("Tags",RR);/** + */const RR=[["path",{d:"M4 4v16",key:"6qkkli"}]],zM=e("Tally1",RR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TR=[["path",{d:"M4 4v16",key:"6qkkli"}]],zM=e("Tally1",TR);/** + */const TR=[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}]],PM=e("Tally2",TR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UR=[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}]],PM=e("Tally2",UR);/** + */const UR=[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}]],jM=e("Tally3",UR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OR=[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}]],jM=e("Tally3",OR);/** + */const OR=[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}],["path",{d:"M19 4v16",key:"8ij5ei"}]],VM=e("Tally4",OR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZR=[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}],["path",{d:"M19 4v16",key:"8ij5ei"}]],VM=e("Tally4",ZR);/** + */const ZR=[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}],["path",{d:"M19 4v16",key:"8ij5ei"}],["path",{d:"M22 6 2 18",key:"h9moai"}]],BM=e("Tally5",ZR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GR=[["path",{d:"M4 4v16",key:"6qkkli"}],["path",{d:"M9 4v16",key:"81ygyz"}],["path",{d:"M14 4v16",key:"12vmem"}],["path",{d:"M19 4v16",key:"8ij5ei"}],["path",{d:"M22 6 2 18",key:"h9moai"}]],BM=e("Tally5",GR);/** + */const GR=[["circle",{cx:"17",cy:"4",r:"2",key:"y5j2s2"}],["path",{d:"M15.59 5.41 5.41 15.59",key:"l0vprr"}],["circle",{cx:"4",cy:"17",r:"2",key:"9p4efm"}],["path",{d:"M12 22s-4-9-1.5-11.5S22 12 22 12",key:"1twk4o"}]],FM=e("Tangent",GR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WR=[["circle",{cx:"17",cy:"4",r:"2",key:"y5j2s2"}],["path",{d:"M15.59 5.41 5.41 15.59",key:"l0vprr"}],["circle",{cx:"4",cy:"17",r:"2",key:"9p4efm"}],["path",{d:"M12 22s-4-9-1.5-11.5S22 12 22 12",key:"1twk4o"}]],FM=e("Tangent",WR);/** + */const WR=[["path",{d:"m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44",key:"k4qptu"}],["path",{d:"m13.56 11.747 4.332-.924",key:"19l80z"}],["path",{d:"m16 21-3.105-6.21",key:"7oh9d"}],["path",{d:"M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z",key:"m7xp4m"}],["path",{d:"m6.158 8.633 1.114 4.456",key:"74o979"}],["path",{d:"m8 21 3.105-6.21",key:"1fvxut"}],["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}]],DM=e("Telescope",WR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ER=[["path",{d:"m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44",key:"k4qptu"}],["path",{d:"m13.56 11.747 4.332-.924",key:"19l80z"}],["path",{d:"m16 21-3.105-6.21",key:"7oh9d"}],["path",{d:"M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z",key:"m7xp4m"}],["path",{d:"m6.158 8.633 1.114 4.456",key:"74o979"}],["path",{d:"m8 21 3.105-6.21",key:"1fvxut"}],["circle",{cx:"12",cy:"13",r:"2",key:"1c1ljs"}]],DM=e("Telescope",ER);/** + */const ER=[["circle",{cx:"4",cy:"4",r:"2",key:"bt5ra8"}],["path",{d:"m14 5 3-3 3 3",key:"1sorif"}],["path",{d:"m14 10 3-3 3 3",key:"1jyi9h"}],["path",{d:"M17 14V2",key:"8ymqnk"}],["path",{d:"M17 14H7l-5 8h20Z",key:"13ar7p"}],["path",{d:"M8 14v8",key:"1ghmqk"}],["path",{d:"m9 14 5 8",key:"13pgi6"}]],RM=e("TentTree",ER);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XR=[["circle",{cx:"4",cy:"4",r:"2",key:"bt5ra8"}],["path",{d:"m14 5 3-3 3 3",key:"1sorif"}],["path",{d:"m14 10 3-3 3 3",key:"1jyi9h"}],["path",{d:"M17 14V2",key:"8ymqnk"}],["path",{d:"M17 14H7l-5 8h20Z",key:"13ar7p"}],["path",{d:"M8 14v8",key:"1ghmqk"}],["path",{d:"m9 14 5 8",key:"13pgi6"}]],RM=e("TentTree",XR);/** + */const XR=[["path",{d:"M3.5 21 14 3",key:"1szst5"}],["path",{d:"M20.5 21 10 3",key:"1310c3"}],["path",{d:"M15.5 21 12 15l-3.5 6",key:"1ddtfw"}],["path",{d:"M2 21h20",key:"1nyx9w"}]],TM=e("Tent",XR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KR=[["path",{d:"M3.5 21 14 3",key:"1szst5"}],["path",{d:"M20.5 21 10 3",key:"1310c3"}],["path",{d:"M15.5 21 12 15l-3.5 6",key:"1ddtfw"}],["path",{d:"M2 21h20",key:"1nyx9w"}]],TM=e("Tent",KR);/** + */const KR=[["polyline",{points:"4 17 10 11 4 5",key:"akl6gq"}],["line",{x1:"12",x2:"20",y1:"19",y2:"19",key:"q2wloq"}]],UM=e("Terminal",KR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JR=[["polyline",{points:"4 17 10 11 4 5",key:"akl6gq"}],["line",{x1:"12",x2:"20",y1:"19",y2:"19",key:"q2wloq"}]],UM=e("Terminal",JR);/** + */const JR=[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3",key:"1ub6xw"}],["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"M12 16H4",key:"1cjfip"}]],I2=e("TestTubeDiagonal",JR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QR=[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3",key:"1ub6xw"}],["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"M12 16H4",key:"1cjfip"}]],I2=e("TestTubeDiagonal",QR);/** + */const QR=[["path",{d:"M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2",key:"125lnx"}],["path",{d:"M8.5 2h7",key:"csnxdl"}],["path",{d:"M14.5 16h-5",key:"1ox875"}]],OM=e("TestTube",QR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YR=[["path",{d:"M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2",key:"125lnx"}],["path",{d:"M8.5 2h7",key:"csnxdl"}],["path",{d:"M14.5 16h-5",key:"1ox875"}]],OM=e("TestTube",YR);/** + */const YR=[["path",{d:"M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2",key:"1hjrqt"}],["path",{d:"M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2",key:"16lc8n"}],["path",{d:"M3 2h7",key:"7s29d5"}],["path",{d:"M14 2h7",key:"7sicin"}],["path",{d:"M9 16H4",key:"1bfye3"}],["path",{d:"M20 16h-5",key:"ddnjpe"}]],ZM=e("TestTubes",YR);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eT=[["path",{d:"M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2",key:"1hjrqt"}],["path",{d:"M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2",key:"16lc8n"}],["path",{d:"M3 2h7",key:"7s29d5"}],["path",{d:"M14 2h7",key:"7sicin"}],["path",{d:"M9 16H4",key:"1bfye3"}],["path",{d:"M20 16h-5",key:"ddnjpe"}]],ZM=e("TestTubes",eT);/** + */const eT=[["path",{d:"M5 4h1a3 3 0 0 1 3 3 3 3 0 0 1 3-3h1",key:"18xjzo"}],["path",{d:"M13 20h-1a3 3 0 0 1-3-3 3 3 0 0 1-3 3H5",key:"fj48gi"}],["path",{d:"M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1",key:"1n9rhb"}],["path",{d:"M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7",key:"13ksps"}],["path",{d:"M9 7v10",key:"1vc8ob"}]],GM=e("TextCursorInput",eT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aT=[["path",{d:"M5 4h1a3 3 0 0 1 3 3 3 3 0 0 1 3-3h1",key:"18xjzo"}],["path",{d:"M13 20h-1a3 3 0 0 1-3-3 3 3 0 0 1-3 3H5",key:"fj48gi"}],["path",{d:"M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1",key:"1n9rhb"}],["path",{d:"M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7",key:"13ksps"}],["path",{d:"M9 7v10",key:"1vc8ob"}]],GM=e("TextCursorInput",aT);/** + */const aT=[["path",{d:"M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1",key:"uvaxm9"}],["path",{d:"M7 22h1a4 4 0 0 0 4-4v-1",key:"11xy8d"}],["path",{d:"M7 2h1a4 4 0 0 1 4 4v1",key:"1uw06m"}]],WM=e("TextCursor",aT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oT=[["path",{d:"M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1",key:"uvaxm9"}],["path",{d:"M7 22h1a4 4 0 0 0 4-4v-1",key:"11xy8d"}],["path",{d:"M7 2h1a4 4 0 0 1 4 4v1",key:"1uw06m"}]],WM=e("TextCursor",oT);/** + */const oT=[["path",{d:"M17 6H3",key:"16j9eg"}],["path",{d:"M21 12H8",key:"scolzb"}],["path",{d:"M21 18H8",key:"1wfozv"}],["path",{d:"M3 12v6",key:"fv4c87"}]],EM=e("TextQuote",oT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cT=[["path",{d:"M17 6H3",key:"16j9eg"}],["path",{d:"M21 12H8",key:"scolzb"}],["path",{d:"M21 18H8",key:"1wfozv"}],["path",{d:"M3 12v6",key:"fv4c87"}]],EM=e("TextQuote",cT);/** + */const cT=[["path",{d:"M21 6H3",key:"1jwq7v"}],["path",{d:"M10 12H3",key:"1ulcyk"}],["path",{d:"M10 18H3",key:"13769t"}],["circle",{cx:"17",cy:"15",r:"3",key:"1upz2a"}],["path",{d:"m21 19-1.9-1.9",key:"dwi7p8"}]],XM=e("TextSearch",cT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tT=[["path",{d:"M21 6H3",key:"1jwq7v"}],["path",{d:"M10 12H3",key:"1ulcyk"}],["path",{d:"M10 18H3",key:"13769t"}],["circle",{cx:"17",cy:"15",r:"3",key:"1upz2a"}],["path",{d:"m21 19-1.9-1.9",key:"dwi7p8"}]],XM=e("TextSearch",tT);/** + */const tT=[["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M21 14v1",key:"169vum"}],["line",{x1:"7",x2:"15",y1:"8",y2:"8",key:"1758g8"}],["line",{x1:"7",x2:"17",y1:"12",y2:"12",key:"197423"}],["line",{x1:"7",x2:"13",y1:"16",y2:"16",key:"37cgm6"}]],N2=e("TextSelect",tT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nT=[["path",{d:"M5 3a2 2 0 0 0-2 2",key:"y57alp"}],["path",{d:"M19 3a2 2 0 0 1 2 2",key:"18rm91"}],["path",{d:"M21 19a2 2 0 0 1-2 2",key:"1j7049"}],["path",{d:"M5 21a2 2 0 0 1-2-2",key:"sbafld"}],["path",{d:"M9 3h1",key:"1yesri"}],["path",{d:"M9 21h1",key:"15o7lz"}],["path",{d:"M14 3h1",key:"1ec4yj"}],["path",{d:"M14 21h1",key:"v9vybs"}],["path",{d:"M3 9v1",key:"1r0deq"}],["path",{d:"M21 9v1",key:"mxsmne"}],["path",{d:"M3 14v1",key:"vnatye"}],["path",{d:"M21 14v1",key:"169vum"}],["line",{x1:"7",x2:"15",y1:"8",y2:"8",key:"1758g8"}],["line",{x1:"7",x2:"17",y1:"12",y2:"12",key:"197423"}],["line",{x1:"7",x2:"13",y1:"16",y2:"16",key:"37cgm6"}]],N2=e("TextSelect",nT);/** + */const nT=[["path",{d:"M17 6.1H3",key:"wptmhv"}],["path",{d:"M21 12.1H3",key:"1j38uz"}],["path",{d:"M15.1 18H3",key:"1nb16a"}]],KM=e("Text",nT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dT=[["path",{d:"M17 6.1H3",key:"wptmhv"}],["path",{d:"M21 12.1H3",key:"1j38uz"}],["path",{d:"M15.1 18H3",key:"1nb16a"}]],KM=e("Text",dT);/** + */const dT=[["path",{d:"M2 10s3-3 3-8",key:"3xiif0"}],["path",{d:"M22 10s-3-3-3-8",key:"ioaa5q"}],["path",{d:"M10 2c0 4.4-3.6 8-8 8",key:"16fkpi"}],["path",{d:"M14 2c0 4.4 3.6 8 8 8",key:"b9eulq"}],["path",{d:"M2 10s2 2 2 5",key:"1au1lb"}],["path",{d:"M22 10s-2 2-2 5",key:"qi2y5e"}],["path",{d:"M8 15h8",key:"45n4r"}],["path",{d:"M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1",key:"1vsc2m"}],["path",{d:"M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1",key:"hrha4u"}]],JM=e("Theater",dT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iT=[["path",{d:"M2 10s3-3 3-8",key:"3xiif0"}],["path",{d:"M22 10s-3-3-3-8",key:"ioaa5q"}],["path",{d:"M10 2c0 4.4-3.6 8-8 8",key:"16fkpi"}],["path",{d:"M14 2c0 4.4 3.6 8 8 8",key:"b9eulq"}],["path",{d:"M2 10s2 2 2 5",key:"1au1lb"}],["path",{d:"M22 10s-2 2-2 5",key:"qi2y5e"}],["path",{d:"M8 15h8",key:"45n4r"}],["path",{d:"M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1",key:"1vsc2m"}],["path",{d:"M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1",key:"hrha4u"}]],JM=e("Theater",iT);/** + */const iT=[["path",{d:"m10 20-1.25-2.5L6 18",key:"18frcb"}],["path",{d:"M10 4 8.75 6.5 6 6",key:"7mghy3"}],["path",{d:"M10.585 15H10",key:"4nqulp"}],["path",{d:"M2 12h6.5L10 9",key:"kv9z4n"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z",key:"yu0u2z"}],["path",{d:"m4 10 1.5 2L4 14",key:"k9enpj"}],["path",{d:"m7 21 3-6-1.5-3",key:"j8hb9u"}],["path",{d:"m7 3 3 6h2",key:"1bbqgq"}]],QM=e("ThermometerSnowflake",iT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hT=[["path",{d:"m10 20-1.25-2.5L6 18",key:"18frcb"}],["path",{d:"M10 4 8.75 6.5 6 6",key:"7mghy3"}],["path",{d:"M10.585 15H10",key:"4nqulp"}],["path",{d:"M2 12h6.5L10 9",key:"kv9z4n"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z",key:"yu0u2z"}],["path",{d:"m4 10 1.5 2L4 14",key:"k9enpj"}],["path",{d:"m7 21 3-6-1.5-3",key:"j8hb9u"}],["path",{d:"m7 3 3 6h2",key:"1bbqgq"}]],QM=e("ThermometerSnowflake",hT);/** + */const hT=[["path",{d:"M12 9a4 4 0 0 0-2 7.5",key:"1jvsq6"}],["path",{d:"M12 3v2",key:"1w22ol"}],["path",{d:"m6.6 18.4-1.4 1.4",key:"w2yidj"}],["path",{d:"M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z",key:"iof6y5"}],["path",{d:"M4 13H2",key:"118le4"}],["path",{d:"M6.34 7.34 4.93 5.93",key:"1brd51"}]],YM=e("ThermometerSun",hT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yT=[["path",{d:"M12 9a4 4 0 0 0-2 7.5",key:"1jvsq6"}],["path",{d:"M12 3v2",key:"1w22ol"}],["path",{d:"m6.6 18.4-1.4 1.4",key:"w2yidj"}],["path",{d:"M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z",key:"iof6y5"}],["path",{d:"M4 13H2",key:"118le4"}],["path",{d:"M6.34 7.34 4.93 5.93",key:"1brd51"}]],YM=e("ThermometerSun",yT);/** + */const yT=[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z",key:"17jzev"}]],e9=e("Thermometer",yT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rT=[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z",key:"17jzev"}]],e9=e("Thermometer",rT);/** + */const rT=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],a9=e("TicketCheck",rT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kT=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],a9=e("TicketCheck",kT);/** + */const kT=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"M9 12h6",key:"1c52cq"}]],o9=e("TicketMinus",kT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pT=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"M9 12h6",key:"1c52cq"}]],o9=e("TicketMinus",pT);/** + */const pT=[["path",{d:"M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"1l48ns"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]],c9=e("TicketPercent",pT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sT=[["path",{d:"M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"1l48ns"}],["path",{d:"M9 9h.01",key:"1q5me6"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"M15 15h.01",key:"lqbp3k"}]],c9=e("TicketPercent",sT);/** + */const sT=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M12 9v6",key:"199k2o"}]],t9=e("TicketPlus",sT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lT=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"M9 12h6",key:"1c52cq"}],["path",{d:"M12 9v6",key:"199k2o"}]],t9=e("TicketPlus",lT);/** + */const lT=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9.5 14.5 5-5",key:"qviqfa"}]],n9=e("TicketSlash",lT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uT=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9.5 14.5 5-5",key:"qviqfa"}]],n9=e("TicketSlash",uT);/** + */const uT=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9.5 14.5 5-5",key:"qviqfa"}],["path",{d:"m9.5 9.5 5 5",key:"18nt4w"}]],d9=e("TicketX",uT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MT=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z",key:"qn84l0"}],["path",{d:"m9.5 14.5 5-5",key:"qviqfa"}],["path",{d:"m9.5 9.5 5 5",key:"18nt4w"}]],d9=e("TicketX",MT);/** + */const MT=[["path",{d:"M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12",key:"16muxl"}],["path",{d:"m12 13.5 3.75.5",key:"1i9qhk"}],["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8",key:"12lg5p"}],["path",{d:"M6 10V8",key:"1y41hn"}],["path",{d:"M6 14v1",key:"cao2tf"}],["path",{d:"M6 19v2",key:"1loha6"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2",key:"p3bz5l"}]],i9=e("TicketsPlane",MT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vT=[["path",{d:"M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12",key:"16muxl"}],["path",{d:"m12 13.5 3.75.5",key:"1i9qhk"}],["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8",key:"12lg5p"}],["path",{d:"M6 10V8",key:"1y41hn"}],["path",{d:"M6 14v1",key:"cao2tf"}],["path",{d:"M6 19v2",key:"1loha6"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2",key:"p3bz5l"}]],i9=e("TicketsPlane",vT);/** + */const vT=[["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8",key:"12lg5p"}],["path",{d:"M6 10V8",key:"1y41hn"}],["path",{d:"M6 14v1",key:"cao2tf"}],["path",{d:"M6 19v2",key:"1loha6"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2",key:"p3bz5l"}]],h9=e("Tickets",vT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mT=[["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8",key:"12lg5p"}],["path",{d:"M6 10V8",key:"1y41hn"}],["path",{d:"M6 14v1",key:"cao2tf"}],["path",{d:"M6 19v2",key:"1loha6"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2",key:"p3bz5l"}]],h9=e("Tickets",mT);/** + */const mT=[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7",key:"10he05"}],["path",{d:"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2",key:"15f7sh"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M12 12v-2",key:"fwoke6"}]],y9=e("TimerOff",mT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _T=[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7",key:"10he05"}],["path",{d:"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2",key:"15f7sh"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M12 12v-2",key:"fwoke6"}]],y9=e("TimerOff",_T);/** + */const _T=[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"M12 14v-4",key:"1evpnu"}],["path",{d:"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6",key:"1ts96g"}],["path",{d:"M9 17H4v5",key:"8t5av"}]],r9=e("TimerReset",_T);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gT=[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"M12 14v-4",key:"1evpnu"}],["path",{d:"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6",key:"1ts96g"}],["path",{d:"M9 17H4v5",key:"8t5av"}]],r9=e("TimerReset",gT);/** + */const gT=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"6",ry:"6",key:"f2vt7d"}],["circle",{cx:"8",cy:"12",r:"2",key:"1nvbw3"}]],k9=e("ToggleLeft",gT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LT=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"6",ry:"6",key:"f2vt7d"}],["circle",{cx:"8",cy:"12",r:"2",key:"1nvbw3"}]],k9=e("ToggleLeft",LT);/** + */const LT=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"6",ry:"6",key:"f2vt7d"}],["circle",{cx:"16",cy:"12",r:"2",key:"4ma0v8"}]],p9=e("ToggleRight",LT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xT=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"6",ry:"6",key:"f2vt7d"}],["circle",{cx:"16",cy:"12",r:"2",key:"4ma0v8"}]],p9=e("ToggleRight",xT);/** + */const xT=[["path",{d:"M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18",key:"kc4kqr"}],["path",{d:"M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8",key:"1tqs57"}]],s9=e("Toilet",xT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wT=[["path",{d:"M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18",key:"kc4kqr"}],["path",{d:"M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8",key:"1tqs57"}]],s9=e("Toilet",wT);/** + */const wT=[["path",{d:"M21 4H3",key:"1hwok0"}],["path",{d:"M18 8H6",key:"41n648"}],["path",{d:"M19 12H9",key:"1g4lpz"}],["path",{d:"M16 16h-6",key:"1j5d54"}],["path",{d:"M11 20H9",key:"39obr8"}]],l9=e("Tornado",wT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fT=[["path",{d:"M21 4H3",key:"1hwok0"}],["path",{d:"M18 8H6",key:"41n648"}],["path",{d:"M19 12H9",key:"1g4lpz"}],["path",{d:"M16 16h-6",key:"1j5d54"}],["path",{d:"M11 20H9",key:"39obr8"}]],l9=e("Tornado",fT);/** + */const fT=[["ellipse",{cx:"12",cy:"11",rx:"3",ry:"2",key:"1b2qxu"}],["ellipse",{cx:"12",cy:"12.5",rx:"10",ry:"8.5",key:"h8emeu"}]],u9=e("Torus",fT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CT=[["ellipse",{cx:"12",cy:"11",rx:"3",ry:"2",key:"1b2qxu"}],["ellipse",{cx:"12",cy:"12.5",rx:"10",ry:"8.5",key:"h8emeu"}]],u9=e("Torus",CT);/** + */const CT=[["path",{d:"M4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16",key:"lnt0bk"}],["path",{d:"M2 14h12",key:"d8icqz"}],["path",{d:"M22 14h-2",key:"jrx26d"}],["path",{d:"M12 20v-6",key:"1rm09r"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M22 16V6a2 2 0 0 0-2-2H10",key:"11y8e4"}]],M9=e("TouchpadOff",CT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IT=[["path",{d:"M4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16",key:"lnt0bk"}],["path",{d:"M2 14h12",key:"d8icqz"}],["path",{d:"M22 14h-2",key:"jrx26d"}],["path",{d:"M12 20v-6",key:"1rm09r"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"M22 16V6a2 2 0 0 0-2-2H10",key:"11y8e4"}]],M9=e("TouchpadOff",IT);/** + */const IT=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M12 20v-6",key:"1rm09r"}]],v9=e("Touchpad",IT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NT=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M2 14h20",key:"myj16y"}],["path",{d:"M12 20v-6",key:"1rm09r"}]],v9=e("Touchpad",NT);/** + */const NT=[["path",{d:"M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z",key:"1pledb"}],["path",{d:"M8 13v9",key:"hmv0ci"}],["path",{d:"M16 22v-9",key:"ylnf1u"}],["path",{d:"m9 6 1 7",key:"dpdgam"}],["path",{d:"m15 6-1 7",key:"ls7zgu"}],["path",{d:"M12 6V2",key:"1pj48d"}],["path",{d:"M13 2h-2",key:"mj6ths"}]],m9=e("TowerControl",NT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ST=[["path",{d:"M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z",key:"1pledb"}],["path",{d:"M8 13v9",key:"hmv0ci"}],["path",{d:"M16 22v-9",key:"ylnf1u"}],["path",{d:"m9 6 1 7",key:"dpdgam"}],["path",{d:"m15 6-1 7",key:"ls7zgu"}],["path",{d:"M12 6V2",key:"1pj48d"}],["path",{d:"M13 2h-2",key:"mj6ths"}]],m9=e("TowerControl",ST);/** + */const ST=[["rect",{width:"18",height:"12",x:"3",y:"8",rx:"1",key:"158fvp"}],["path",{d:"M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3",key:"s0042v"}],["path",{d:"M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3",key:"9wmeh2"}]],_9=e("ToyBrick",ST);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qT=[["rect",{width:"18",height:"12",x:"3",y:"8",rx:"1",key:"158fvp"}],["path",{d:"M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3",key:"s0042v"}],["path",{d:"M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3",key:"9wmeh2"}]],_9=e("ToyBrick",qT);/** + */const qT=[["path",{d:"m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20",key:"she1j9"}],["path",{d:"M16 18h-5",key:"bq60fd"}],["path",{d:"M18 5a1 1 0 0 0-1 1v5.573",key:"1kv8ia"}],["path",{d:"M3 4h8.129a1 1 0 0 1 .99.863L13 11.246",key:"1q1ert"}],["path",{d:"M4 11V4",key:"9ft8pt"}],["path",{d:"M7 15h.01",key:"k5ht0j"}],["path",{d:"M8 10.1V4",key:"1jgyzo"}],["circle",{cx:"18",cy:"18",r:"2",key:"1emm8v"}],["circle",{cx:"7",cy:"15",r:"5",key:"ddtuc"}]],g9=e("Tractor",qT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bT=[["path",{d:"m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20",key:"she1j9"}],["path",{d:"M16 18h-5",key:"bq60fd"}],["path",{d:"M18 5a1 1 0 0 0-1 1v5.573",key:"1kv8ia"}],["path",{d:"M3 4h8.129a1 1 0 0 1 .99.863L13 11.246",key:"1q1ert"}],["path",{d:"M4 11V4",key:"9ft8pt"}],["path",{d:"M7 15h.01",key:"k5ht0j"}],["path",{d:"M8 10.1V4",key:"1jgyzo"}],["circle",{cx:"18",cy:"18",r:"2",key:"1emm8v"}],["circle",{cx:"7",cy:"15",r:"5",key:"ddtuc"}]],g9=e("Tractor",bT);/** + */const bT=[["path",{d:"M9.3 6.2a4.55 4.55 0 0 0 5.4 0",key:"flyxqv"}],["path",{d:"M7.9 10.7c.9.8 2.4 1.3 4.1 1.3s3.2-.5 4.1-1.3",key:"1nlxxg"}],["path",{d:"M13.9 3.5a1.93 1.93 0 0 0-3.8-.1l-3 10c-.1.2-.1.4-.1.6 0 1.7 2.2 3 5 3s5-1.3 5-3c0-.2 0-.4-.1-.5Z",key:"vz7x1l"}],["path",{d:"m7.5 12.2-4.7 2.7c-.5.3-.8.7-.8 1.1s.3.8.8 1.1l7.6 4.5c.9.5 2.1.5 3 0l7.6-4.5c.7-.3 1-.7 1-1.1s-.3-.8-.8-1.1l-4.7-2.8",key:"1xfzlw"}]],L9=e("TrafficCone",bT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $T=[["path",{d:"M9.3 6.2a4.55 4.55 0 0 0 5.4 0",key:"flyxqv"}],["path",{d:"M7.9 10.7c.9.8 2.4 1.3 4.1 1.3s3.2-.5 4.1-1.3",key:"1nlxxg"}],["path",{d:"M13.9 3.5a1.93 1.93 0 0 0-3.8-.1l-3 10c-.1.2-.1.4-.1.6 0 1.7 2.2 3 5 3s5-1.3 5-3c0-.2 0-.4-.1-.5Z",key:"vz7x1l"}],["path",{d:"m7.5 12.2-4.7 2.7c-.5.3-.8.7-.8 1.1s.3.8.8 1.1l7.6 4.5c.9.5 2.1.5 3 0l7.6-4.5c.7-.3 1-.7 1-1.1s-.3-.8-.8-1.1l-4.7-2.8",key:"1xfzlw"}]],L9=e("TrafficCone",$T);/** + */const $T=[["path",{d:"M2 22V12a10 10 0 1 1 20 0v10",key:"o0fyp0"}],["path",{d:"M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8",key:"m8q3n9"}],["path",{d:"M10 15h.01",key:"44in9x"}],["path",{d:"M14 15h.01",key:"5mohn5"}],["path",{d:"M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z",key:"hckbmu"}],["path",{d:"m9 19-2 3",key:"iij7hm"}],["path",{d:"m15 19 2 3",key:"npx8sa"}]],x9=e("TrainFrontTunnel",$T);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AT=[["path",{d:"M2 22V12a10 10 0 1 1 20 0v10",key:"o0fyp0"}],["path",{d:"M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8",key:"m8q3n9"}],["path",{d:"M10 15h.01",key:"44in9x"}],["path",{d:"M14 15h.01",key:"5mohn5"}],["path",{d:"M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z",key:"hckbmu"}],["path",{d:"m9 19-2 3",key:"iij7hm"}],["path",{d:"m15 19 2 3",key:"npx8sa"}]],x9=e("TrainFrontTunnel",AT);/** + */const AT=[["path",{d:"M8 3.1V7a4 4 0 0 0 8 0V3.1",key:"1v71zp"}],["path",{d:"m9 15-1-1",key:"1yrq24"}],["path",{d:"m15 15 1-1",key:"1t0d6s"}],["path",{d:"M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z",key:"1p0hjs"}],["path",{d:"m8 19-2 3",key:"13i0xs"}],["path",{d:"m16 19 2 3",key:"xo31yx"}]],w9=e("TrainFront",AT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HT=[["path",{d:"M8 3.1V7a4 4 0 0 0 8 0V3.1",key:"1v71zp"}],["path",{d:"m9 15-1-1",key:"1yrq24"}],["path",{d:"m15 15 1-1",key:"1t0d6s"}],["path",{d:"M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z",key:"1p0hjs"}],["path",{d:"m8 19-2 3",key:"13i0xs"}],["path",{d:"m16 19 2 3",key:"xo31yx"}]],w9=e("TrainFront",HT);/** + */const HT=[["path",{d:"M2 17 17 2",key:"18b09t"}],["path",{d:"m2 14 8 8",key:"1gv9hu"}],["path",{d:"m5 11 8 8",key:"189pqp"}],["path",{d:"m8 8 8 8",key:"1imecy"}],["path",{d:"m11 5 8 8",key:"ummqn6"}],["path",{d:"m14 2 8 8",key:"1vk7dn"}],["path",{d:"M7 22 22 7",key:"15mb1i"}]],f9=e("TrainTrack",HT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zT=[["path",{d:"M2 17 17 2",key:"18b09t"}],["path",{d:"m2 14 8 8",key:"1gv9hu"}],["path",{d:"m5 11 8 8",key:"189pqp"}],["path",{d:"m8 8 8 8",key:"1imecy"}],["path",{d:"m11 5 8 8",key:"ummqn6"}],["path",{d:"m14 2 8 8",key:"1vk7dn"}],["path",{d:"M7 22 22 7",key:"15mb1i"}]],f9=e("TrainTrack",zT);/** + */const zT=[["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2",key:"1wxw4b"}],["path",{d:"M4 11h16",key:"mpoxn0"}],["path",{d:"M12 3v8",key:"1h2ygw"}],["path",{d:"m8 19-2 3",key:"13i0xs"}],["path",{d:"m18 22-2-3",key:"1p0ohu"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M16 15h.01",key:"rnfrdf"}]],S2=e("TramFront",zT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PT=[["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2",key:"1wxw4b"}],["path",{d:"M4 11h16",key:"mpoxn0"}],["path",{d:"M12 3v8",key:"1h2ygw"}],["path",{d:"m8 19-2 3",key:"13i0xs"}],["path",{d:"m18 22-2-3",key:"1p0ohu"}],["path",{d:"M8 15h.01",key:"a7atzg"}],["path",{d:"M16 15h.01",key:"rnfrdf"}]],S2=e("TramFront",PT);/** + */const PT=[["path",{d:"M12 16v6",key:"c8a4gj"}],["path",{d:"M14 20h-4",key:"m8m19d"}],["path",{d:"M18 2h4v4",key:"1341mj"}],["path",{d:"m2 2 7.17 7.17",key:"13q8l2"}],["path",{d:"M2 5.355V2h3.357",key:"18136r"}],["path",{d:"m22 2-7.17 7.17",key:"1epvy4"}],["path",{d:"M8 5 5 8",key:"mgbjhz"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]],C9=e("Transgender",PT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jT=[["path",{d:"M12 16v6",key:"c8a4gj"}],["path",{d:"M14 20h-4",key:"m8m19d"}],["path",{d:"M18 2h4v4",key:"1341mj"}],["path",{d:"m2 2 7.17 7.17",key:"13q8l2"}],["path",{d:"M2 5.355V2h3.357",key:"18136r"}],["path",{d:"m22 2-7.17 7.17",key:"1epvy4"}],["path",{d:"M8 5 5 8",key:"mgbjhz"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]],C9=e("Transgender",jT);/** + */const jT=[["path",{d:"M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z",key:"oadzkq"}],["path",{d:"M12 19v3",key:"npa21l"}]],I9=e("TreeDeciduous",jT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VT=[["path",{d:"M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z",key:"oadzkq"}],["path",{d:"M12 19v3",key:"npa21l"}]],I9=e("TreeDeciduous",VT);/** + */const VT=[["path",{d:"M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4",key:"foxbe7"}],["path",{d:"M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3",key:"18arnh"}],["path",{d:"M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35",key:"ywahnh"}],["path",{d:"M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14",key:"ft0feo"}]],q2=e("TreePalm",VT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BT=[["path",{d:"M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4",key:"foxbe7"}],["path",{d:"M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3",key:"18arnh"}],["path",{d:"M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35",key:"ywahnh"}],["path",{d:"M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14",key:"ft0feo"}]],q2=e("TreePalm",BT);/** + */const BT=[["path",{d:"m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z",key:"cpyugq"}],["path",{d:"M12 22v-3",key:"kmzjlo"}]],N9=e("TreePine",BT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FT=[["path",{d:"m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z",key:"cpyugq"}],["path",{d:"M12 22v-3",key:"kmzjlo"}]],N9=e("TreePine",FT);/** + */const FT=[["path",{d:"M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z",key:"1l6gj6"}],["path",{d:"M7 16v6",key:"1a82de"}],["path",{d:"M13 19v3",key:"13sx9i"}],["path",{d:"M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5",key:"1sj9kv"}]],S9=e("Trees",FT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DT=[["path",{d:"M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z",key:"1l6gj6"}],["path",{d:"M7 16v6",key:"1a82de"}],["path",{d:"M13 19v3",key:"13sx9i"}],["path",{d:"M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5",key:"1sj9kv"}]],S9=e("Trees",DT);/** + */const DT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["rect",{width:"3",height:"9",x:"7",y:"7",key:"14n3xi"}],["rect",{width:"3",height:"5",x:"14",y:"7",key:"s4azjd"}]],q9=e("Trello",DT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["rect",{width:"3",height:"9",x:"7",y:"7",key:"14n3xi"}],["rect",{width:"3",height:"5",x:"14",y:"7",key:"s4azjd"}]],q9=e("Trello",RT);/** + */const RT=[["path",{d:"M14.828 14.828 21 21",key:"ar5fw7"}],["path",{d:"M21 16v5h-5",key:"1ck2sf"}],["path",{d:"m21 3-9 9-4-4-6 6",key:"1h02xo"}],["path",{d:"M21 8V3h-5",key:"1qoq8a"}]],b9=e("TrendingUpDown",RT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TT=[["path",{d:"M14.828 14.828 21 21",key:"ar5fw7"}],["path",{d:"M21 16v5h-5",key:"1ck2sf"}],["path",{d:"m21 3-9 9-4-4-6 6",key:"1h02xo"}],["path",{d:"M21 8V3h-5",key:"1qoq8a"}]],b9=e("TrendingUpDown",TT);/** + */const TT=[["path",{d:"M10.17 4.193a2 2 0 0 1 3.666.013",key:"pltmmw"}],["path",{d:"M14 21h2",key:"v4qezv"}],["path",{d:"m15.874 7.743 1 1.732",key:"10m0iw"}],["path",{d:"m18.849 12.952 1 1.732",key:"zadnam"}],["path",{d:"M21.824 18.18a2 2 0 0 1-1.835 2.824",key:"fvwuk4"}],["path",{d:"M4.024 21a2 2 0 0 1-1.839-2.839",key:"1e1kah"}],["path",{d:"m5.136 12.952-1 1.732",key:"1u4ldi"}],["path",{d:"M8 21h2",key:"i9zjee"}],["path",{d:"m8.102 7.743-1 1.732",key:"1zzo4u"}]],$9=e("TriangleDashed",TT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UT=[["path",{d:"M10.17 4.193a2 2 0 0 1 3.666.013",key:"pltmmw"}],["path",{d:"M14 21h2",key:"v4qezv"}],["path",{d:"m15.874 7.743 1 1.732",key:"10m0iw"}],["path",{d:"m18.849 12.952 1 1.732",key:"zadnam"}],["path",{d:"M21.824 18.18a2 2 0 0 1-1.835 2.824",key:"fvwuk4"}],["path",{d:"M4.024 21a2 2 0 0 1-1.839-2.839",key:"1e1kah"}],["path",{d:"m5.136 12.952-1 1.732",key:"1u4ldi"}],["path",{d:"M8 21h2",key:"i9zjee"}],["path",{d:"m8.102 7.743-1 1.732",key:"1zzo4u"}]],$9=e("TriangleDashed",UT);/** + */const UT=[["path",{d:"M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z",key:"183wce"}]],A9=e("TriangleRight",UT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OT=[["path",{d:"M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z",key:"183wce"}]],A9=e("TriangleRight",OT);/** + */const OT=[["path",{d:"M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z",key:"14u9p9"}]],H9=e("Triangle",OT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZT=[["path",{d:"M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z",key:"14u9p9"}]],H9=e("Triangle",ZT);/** + */const ZT=[["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2",key:"wrbu53"}],["path",{d:"M15 18H9",key:"1lyqi6"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14",key:"lysw3i"}],["circle",{cx:"17",cy:"18",r:"2",key:"332jqn"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}]],z9=e("Truck",ZT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GT=[["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2",key:"wrbu53"}],["path",{d:"M15 18H9",key:"1lyqi6"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14",key:"lysw3i"}],["circle",{cx:"17",cy:"18",r:"2",key:"332jqn"}],["circle",{cx:"7",cy:"18",r:"2",key:"19iecd"}]],z9=e("Truck",GT);/** + */const GT=[["path",{d:"m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z",key:"1lbbv7"}],["path",{d:"M4.82 7.9 8 10",key:"m9wose"}],["path",{d:"M15.18 7.9 12 10",key:"p8dp2u"}],["path",{d:"M16.93 10H20a2 2 0 0 1 0 4H2",key:"12nsm7"}]],P9=e("Turtle",GT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WT=[["path",{d:"m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z",key:"1lbbv7"}],["path",{d:"M4.82 7.9 8 10",key:"m9wose"}],["path",{d:"M15.18 7.9 12 10",key:"p8dp2u"}],["path",{d:"M16.93 10H20a2 2 0 0 1 0 4H2",key:"12nsm7"}]],P9=e("Turtle",WT);/** + */const WT=[["path",{d:"M10 7.75a.75.75 0 0 1 1.142-.638l3.664 2.249a.75.75 0 0 1 0 1.278l-3.664 2.25a.75.75 0 0 1-1.142-.64z",key:"1pctta"}],["path",{d:"M7 21h10",key:"1b0cd5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}]],j9=e("TvMinimalPlay",WT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ET=[["path",{d:"M10 7.75a.75.75 0 0 1 1.142-.638l3.664 2.249a.75.75 0 0 1 0 1.278l-3.664 2.25a.75.75 0 0 1-1.142-.64z",key:"1pctta"}],["path",{d:"M7 21h10",key:"1b0cd5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}]],j9=e("TvMinimalPlay",ET);/** + */const ET=[["path",{d:"M7 21h10",key:"1b0cd5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}]],b2=e("TvMinimal",ET);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XT=[["path",{d:"M7 21h10",key:"1b0cd5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}]],b2=e("TvMinimal",XT);/** + */const XT=[["rect",{width:"20",height:"15",x:"2",y:"7",rx:"2",ry:"2",key:"10ag99"}],["polyline",{points:"17 2 12 7 7 2",key:"11pgbg"}]],V9=e("Tv",XT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KT=[["rect",{width:"20",height:"15",x:"2",y:"7",rx:"2",ry:"2",key:"10ag99"}],["polyline",{points:"17 2 12 7 7 2",key:"11pgbg"}]],V9=e("Tv",KT);/** + */const KT=[["path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7",key:"c0yzno"}]],B9=e("Twitch",KT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JT=[["path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7",key:"c0yzno"}]],B9=e("Twitch",JT);/** + */const JT=[["path",{d:"M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z",key:"1reda3"}]],F9=e("TypeOutline",JT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QT=[["path",{d:"M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z",key:"1reda3"}]],F9=e("TypeOutline",QT);/** + */const QT=[["path",{d:"M12 2v1",key:"11qlp1"}],["path",{d:"M15.5 21a1.85 1.85 0 0 1-3.5-1v-8H2a10 10 0 0 1 3.428-6.575",key:"eki10q"}],["path",{d:"M17.5 12H22A10 10 0 0 0 9.004 3.455",key:"n2ayka"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],D9=e("UmbrellaOff",QT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YT=[["path",{d:"M12 2v1",key:"11qlp1"}],["path",{d:"M15.5 21a1.85 1.85 0 0 1-3.5-1v-8H2a10 10 0 0 1 3.428-6.575",key:"eki10q"}],["path",{d:"M17.5 12H22A10 10 0 0 0 9.004 3.455",key:"n2ayka"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],D9=e("UmbrellaOff",YT);/** + */const YT=[["path",{d:"M22 12a10.06 10.06 1 0 0-20 0Z",key:"1teyop"}],["path",{d:"M12 12v8a2 2 0 0 0 4 0",key:"ulpmoc"}],["path",{d:"M12 2v1",key:"11qlp1"}]],R9=e("Umbrella",YT);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eU=[["path",{d:"M22 12a10.06 10.06 1 0 0-20 0Z",key:"1teyop"}],["path",{d:"M12 12v8a2 2 0 0 0 4 0",key:"ulpmoc"}],["path",{d:"M12 2v1",key:"11qlp1"}]],R9=e("Umbrella",eU);/** + */const eU=[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4",key:"9kb039"}],["line",{x1:"4",x2:"20",y1:"20",y2:"20",key:"nun2al"}]],T9=e("Underline",eU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aU=[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4",key:"9kb039"}],["line",{x1:"4",x2:"20",y1:"20",y2:"20",key:"nun2al"}]],T9=e("Underline",aU);/** + */const aU=[["path",{d:"M9 14 4 9l5-5",key:"102s5s"}],["path",{d:"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11",key:"f3b9sd"}]],U9=e("Undo2",aU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oU=[["path",{d:"M9 14 4 9l5-5",key:"102s5s"}],["path",{d:"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11",key:"f3b9sd"}]],U9=e("Undo2",oU);/** + */const oU=[["path",{d:"M21 17a9 9 0 0 0-15-6.7L3 13",key:"8mp6z9"}],["path",{d:"M3 7v6h6",key:"1v2h90"}],["circle",{cx:"12",cy:"17",r:"1",key:"1ixnty"}]],O9=e("UndoDot",oU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cU=[["path",{d:"M21 17a9 9 0 0 0-15-6.7L3 13",key:"8mp6z9"}],["path",{d:"M3 7v6h6",key:"1v2h90"}],["circle",{cx:"12",cy:"17",r:"1",key:"1ixnty"}]],O9=e("UndoDot",cU);/** + */const cU=[["path",{d:"M16 12h6",key:"15xry1"}],["path",{d:"M8 12H2",key:"1jqql6"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m19 15 3-3-3-3",key:"wjy7rq"}],["path",{d:"m5 9-3 3 3 3",key:"j64kie"}]],Z9=e("UnfoldHorizontal",cU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tU=[["path",{d:"M16 12h6",key:"15xry1"}],["path",{d:"M8 12H2",key:"1jqql6"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 8v2",key:"1woqiv"}],["path",{d:"M12 14v2",key:"8jcxud"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m19 15 3-3-3-3",key:"wjy7rq"}],["path",{d:"m5 9-3 3 3 3",key:"j64kie"}]],Z9=e("UnfoldHorizontal",tU);/** + */const tU=[["path",{d:"M12 22v-6",key:"6o8u61"}],["path",{d:"M12 8V2",key:"1wkif3"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}],["path",{d:"m15 19-3 3-3-3",key:"11eu04"}],["path",{d:"m15 5-3-3-3 3",key:"itvq4r"}]],G9=e("UnfoldVertical",tU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nU=[["path",{d:"M12 22v-6",key:"6o8u61"}],["path",{d:"M12 8V2",key:"1wkif3"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}],["path",{d:"m15 19-3 3-3-3",key:"11eu04"}],["path",{d:"m15 5-3-3-3 3",key:"itvq4r"}]],G9=e("UnfoldVertical",nU);/** + */const nU=[["rect",{width:"8",height:"6",x:"5",y:"4",rx:"1",key:"nzclkv"}],["rect",{width:"8",height:"6",x:"11",y:"14",rx:"1",key:"4tytwb"}]],W9=e("Ungroup",nU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dU=[["rect",{width:"8",height:"6",x:"5",y:"4",rx:"1",key:"nzclkv"}],["rect",{width:"8",height:"6",x:"11",y:"14",rx:"1",key:"4tytwb"}]],W9=e("Ungroup",dU);/** + */const dU=[["circle",{cx:"12",cy:"10",r:"1",key:"1gnqs8"}],["path",{d:"M22 20V8h-4l-6-4-6 4H2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2",key:"1qj5sn"}],["path",{d:"M6 17v.01",key:"roodi6"}],["path",{d:"M6 13v.01",key:"67c122"}],["path",{d:"M18 17v.01",key:"12ktxm"}],["path",{d:"M18 13v.01",key:"tn1rt1"}],["path",{d:"M14 22v-5a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5",key:"11g7fi"}]],$2=e("University",dU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iU=[["circle",{cx:"12",cy:"10",r:"1",key:"1gnqs8"}],["path",{d:"M22 20V8h-4l-6-4-6 4H2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2",key:"1qj5sn"}],["path",{d:"M6 17v.01",key:"roodi6"}],["path",{d:"M6 13v.01",key:"67c122"}],["path",{d:"M18 17v.01",key:"12ktxm"}],["path",{d:"M18 13v.01",key:"tn1rt1"}],["path",{d:"M14 22v-5a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5",key:"11g7fi"}]],$2=e("University",iU);/** + */const iU=[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2",key:"1re2ne"}]],E9=e("Unlink2",iU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hU=[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2",key:"1re2ne"}]],E9=e("Unlink2",hU);/** + */const hU=[["path",{d:"m19 5 3-3",key:"yk6iyv"}],["path",{d:"m2 22 3-3",key:"19mgm9"}],["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z",key:"goz73y"}],["path",{d:"M7.5 13.5 10 11",key:"7xgeeb"}],["path",{d:"M10.5 16.5 13 14",key:"10btkg"}],["path",{d:"m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z",key:"1snsnr"}]],X9=e("Unplug",hU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yU=[["path",{d:"m19 5 3-3",key:"yk6iyv"}],["path",{d:"m2 22 3-3",key:"19mgm9"}],["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z",key:"goz73y"}],["path",{d:"M7.5 13.5 10 11",key:"7xgeeb"}],["path",{d:"M10.5 16.5 13 14",key:"10btkg"}],["path",{d:"m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z",key:"1snsnr"}]],X9=e("Unplug",yU);/** + */const yU=[["circle",{cx:"10",cy:"7",r:"1",key:"dypaad"}],["circle",{cx:"4",cy:"20",r:"1",key:"22iqad"}],["path",{d:"M4.7 19.3 19 5",key:"1enqfc"}],["path",{d:"m21 3-3 1 2 2Z",key:"d3ov82"}],["path",{d:"M9.26 7.68 5 12l2 5",key:"1esawj"}],["path",{d:"m10 14 5 2 3.5-3.5",key:"v8oal5"}],["path",{d:"m18 12 1-1 1 1-1 1Z",key:"1bh22v"}]],K9=e("Usb",yU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rU=[["circle",{cx:"10",cy:"7",r:"1",key:"dypaad"}],["circle",{cx:"4",cy:"20",r:"1",key:"22iqad"}],["path",{d:"M4.7 19.3 19 5",key:"1enqfc"}],["path",{d:"m21 3-3 1 2 2Z",key:"d3ov82"}],["path",{d:"M9.26 7.68 5 12l2 5",key:"1esawj"}],["path",{d:"m10 14 5 2 3.5-3.5",key:"v8oal5"}],["path",{d:"m18 12 1-1 1 1-1 1Z",key:"1bh22v"}]],K9=e("Usb",rU);/** + */const rU=[["circle",{cx:"18",cy:"15",r:"3",key:"gjjjvw"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["path",{d:"M10 15H6a4 4 0 0 0-4 4v2",key:"1nfge6"}],["path",{d:"m21.7 16.4-.9-.3",key:"12j9ji"}],["path",{d:"m15.2 13.9-.9-.3",key:"1fdjdi"}],["path",{d:"m16.6 18.7.3-.9",key:"heedtr"}],["path",{d:"m19.1 12.2.3-.9",key:"1af3ki"}],["path",{d:"m19.6 18.7-.4-1",key:"1x9vze"}],["path",{d:"m16.8 12.3-.4-1",key:"vqeiwj"}],["path",{d:"m14.3 16.6 1-.4",key:"1qlj63"}],["path",{d:"m20.7 13.8 1-.4",key:"1v5t8k"}]],J9=e("UserCog",rU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kU=[["circle",{cx:"18",cy:"15",r:"3",key:"gjjjvw"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["path",{d:"M10 15H6a4 4 0 0 0-4 4v2",key:"1nfge6"}],["path",{d:"m21.7 16.4-.9-.3",key:"12j9ji"}],["path",{d:"m15.2 13.9-.9-.3",key:"1fdjdi"}],["path",{d:"m16.6 18.7.3-.9",key:"heedtr"}],["path",{d:"m19.1 12.2.3-.9",key:"1af3ki"}],["path",{d:"m19.6 18.7-.4-1",key:"1x9vze"}],["path",{d:"m16.8 12.3-.4-1",key:"vqeiwj"}],["path",{d:"m14.3 16.6 1-.4",key:"1qlj63"}],["path",{d:"m20.7 13.8 1-.4",key:"1v5t8k"}]],J9=e("UserCog",kU);/** + */const kU=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11",key:"1shjgl"}]],Q9=e("UserMinus",kU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pU=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11",key:"1shjgl"}]],Q9=e("UserMinus",pU);/** + */const pU=[["path",{d:"M11.5 15H7a4 4 0 0 0-4 4v2",key:"15lzij"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}]],Y9=e("UserPen",pU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sU=[["path",{d:"M11.5 15H7a4 4 0 0 0-4 4v2",key:"15lzij"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}]],Y9=e("UserPen",sU);/** + */const sU=[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]],A2=e("UserRoundCheck",sU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lU=[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"m16 19 2 2 4-4",key:"1b14m6"}]],A2=e("UserRoundCheck",lU);/** + */const lU=[["path",{d:"M2 21a8 8 0 0 1 10.434-7.62",key:"1yezr2"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["path",{d:"m19.5 14.3-.4.9",key:"1eb35c"}],["path",{d:"m16.9 20.8-.4.9",key:"dfjc4z"}],["path",{d:"m21.7 19.5-.9-.4",key:"q4dx6b"}],["path",{d:"m15.2 16.9-.9-.4",key:"1r0w5f"}],["path",{d:"m21.7 16.5-.9.4",key:"1knoei"}],["path",{d:"m15.2 19.1-.9.4",key:"j188fs"}],["path",{d:"m19.5 21.7-.4-.9",key:"1tonu5"}],["path",{d:"m16.9 15.2-.4-.9",key:"699xu"}]],H2=e("UserRoundCog",lU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uU=[["path",{d:"M2 21a8 8 0 0 1 10.434-7.62",key:"1yezr2"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["path",{d:"m19.5 14.3-.4.9",key:"1eb35c"}],["path",{d:"m16.9 20.8-.4.9",key:"dfjc4z"}],["path",{d:"m21.7 19.5-.9-.4",key:"q4dx6b"}],["path",{d:"m15.2 16.9-.9-.4",key:"1r0w5f"}],["path",{d:"m21.7 16.5-.9.4",key:"1knoei"}],["path",{d:"m15.2 19.1-.9.4",key:"j188fs"}],["path",{d:"m19.5 21.7-.4-.9",key:"1tonu5"}],["path",{d:"m16.9 15.2-.4-.9",key:"699xu"}]],H2=e("UserRoundCog",uU);/** + */const uU=[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M22 19h-6",key:"vcuq98"}]],z2=e("UserRoundMinus",uU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MU=[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M22 19h-6",key:"vcuq98"}]],z2=e("UserRoundMinus",MU);/** + */const MU=[["path",{d:"M2 21a8 8 0 0 1 10.821-7.487",key:"1c8h7z"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}]],ev=e("UserRoundPen",MU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vU=[["path",{d:"M2 21a8 8 0 0 1 10.821-7.487",key:"1c8h7z"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z",key:"1817ys"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}]],ev=e("UserRoundPen",vU);/** + */const vU=[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M22 19h-6",key:"vcuq98"}]],P2=e("UserRoundPlus",vU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mU=[["path",{d:"M2 21a8 8 0 0 1 13.292-6",key:"bjp14o"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M19 16v6",key:"tddt3s"}],["path",{d:"M22 19h-6",key:"vcuq98"}]],P2=e("UserRoundPlus",mU);/** + */const mU=[["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62",key:"1yezr2"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["path",{d:"m22 22-1.9-1.9",key:"1e5ubv"}]],av=e("UserRoundSearch",mU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _U=[["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62",key:"1yezr2"}],["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["path",{d:"m22 22-1.9-1.9",key:"1e5ubv"}]],av=e("UserRoundSearch",_U);/** + */const _U=[["path",{d:"M2 21a8 8 0 0 1 11.873-7",key:"74fkxq"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"m17 17 5 5",key:"p7ous7"}],["path",{d:"m22 17-5 5",key:"gqnmv0"}]],j2=e("UserRoundX",_U);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gU=[["path",{d:"M2 21a8 8 0 0 1 11.873-7",key:"74fkxq"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"m17 17 5 5",key:"p7ous7"}],["path",{d:"m22 17-5 5",key:"gqnmv0"}]],j2=e("UserRoundX",gU);/** + */const gU=[["circle",{cx:"12",cy:"8",r:"5",key:"1hypcn"}],["path",{d:"M20 21a8 8 0 0 0-16 0",key:"rfgkzh"}]],V2=e("UserRound",gU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LU=[["circle",{cx:"12",cy:"8",r:"5",key:"1hypcn"}],["path",{d:"M20 21a8 8 0 0 0-16 0",key:"rfgkzh"}]],V2=e("UserRound",LU);/** + */const LU=[["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2",key:"3bnktk"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["path",{d:"m21 21-1.9-1.9",key:"1g2n9r"}]],ov=e("UserSearch",LU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xU=[["circle",{cx:"10",cy:"7",r:"4",key:"e45bow"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2",key:"3bnktk"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["path",{d:"m21 21-1.9-1.9",key:"1g2n9r"}]],ov=e("UserSearch",xU);/** + */const xU=[["path",{d:"M18 21a8 8 0 0 0-16 0",key:"3ypg7q"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3",key:"10s06x"}]],B2=e("UsersRound",xU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wU=[["path",{d:"M18 21a8 8 0 0 0-16 0",key:"3ypg7q"}],["circle",{cx:"10",cy:"8",r:"5",key:"o932ke"}],["path",{d:"M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3",key:"10s06x"}]],B2=e("UsersRound",wU);/** + */const wU=[["path",{d:"m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8",key:"n7qcjb"}],["path",{d:"M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7",key:"d0u48b"}],["path",{d:"m2.1 21.8 6.4-6.3",key:"yn04lh"}],["path",{d:"m19 5-7 7",key:"194lzd"}]],F2=e("UtensilsCrossed",wU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fU=[["path",{d:"m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8",key:"n7qcjb"}],["path",{d:"M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7",key:"d0u48b"}],["path",{d:"m2.1 21.8 6.4-6.3",key:"yn04lh"}],["path",{d:"m19 5-7 7",key:"194lzd"}]],F2=e("UtensilsCrossed",fU);/** + */const fU=[["path",{d:"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2",key:"cjf0a3"}],["path",{d:"M7 2v20",key:"1473qp"}],["path",{d:"M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7",key:"j28e5"}]],D2=e("Utensils",fU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CU=[["path",{d:"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2",key:"cjf0a3"}],["path",{d:"M7 2v20",key:"1473qp"}],["path",{d:"M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7",key:"j28e5"}]],D2=e("Utensils",CU);/** + */const CU=[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"M2 5h20",key:"1fs1ex"}],["path",{d:"M3 3v2",key:"9imdir"}],["path",{d:"M7 3v2",key:"n0os7"}],["path",{d:"M17 3v2",key:"1l2re6"}],["path",{d:"M21 3v2",key:"1duuac"}],["path",{d:"m19 5-7 7-7-7",key:"133zxf"}]],cv=e("UtilityPole",CU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IU=[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"M2 5h20",key:"1fs1ex"}],["path",{d:"M3 3v2",key:"9imdir"}],["path",{d:"M7 3v2",key:"n0os7"}],["path",{d:"M17 3v2",key:"1l2re6"}],["path",{d:"M21 3v2",key:"1duuac"}],["path",{d:"m19 5-7 7-7-7",key:"133zxf"}]],cv=e("UtilityPole",IU);/** + */const IU=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9",key:"uto9ud"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9",key:"4w2vsq"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15",key:"f7djnv"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15",key:"1shsy8"}]],tv=e("Variable",IU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const NU=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9",key:"uto9ud"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9",key:"4w2vsq"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15",key:"f7djnv"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15",key:"1shsy8"}]],tv=e("Variable",NU);/** + */const NU=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}],["path",{d:"m7.9 7.9 2.7 2.7",key:"hpeyl3"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor",key:"w0ekpg"}],["path",{d:"m13.4 10.6 2.7-2.7",key:"264c1n"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor",key:"nkw3mc"}],["path",{d:"m7.9 16.1 2.7-2.7",key:"p81g5e"}],["circle",{cx:"16.5",cy:"16.5",r:".5",fill:"currentColor",key:"fubopw"}],["path",{d:"m13.4 13.4 2.7 2.7",key:"abhel3"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]],nv=e("Vault",NU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const SU=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}],["path",{d:"m7.9 7.9 2.7 2.7",key:"hpeyl3"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor",key:"w0ekpg"}],["path",{d:"m13.4 10.6 2.7-2.7",key:"264c1n"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor",key:"nkw3mc"}],["path",{d:"m7.9 16.1 2.7-2.7",key:"p81g5e"}],["circle",{cx:"16.5",cy:"16.5",r:".5",fill:"currentColor",key:"fubopw"}],["path",{d:"m13.4 13.4 2.7 2.7",key:"abhel3"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]],nv=e("Vault",SU);/** + */const SU=[["path",{d:"M16 8q6 0 6-6-6 0-6 6",key:"qsyyc4"}],["path",{d:"M17.41 3.59a10 10 0 1 0 3 3",key:"41m9h7"}],["path",{d:"M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14",key:"qiv7li"}]],dv=e("Vegan",SU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const qU=[["path",{d:"M16 8q6 0 6-6-6 0-6 6",key:"qsyyc4"}],["path",{d:"M17.41 3.59a10 10 0 1 0 3 3",key:"41m9h7"}],["path",{d:"M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14",key:"qiv7li"}]],dv=e("Vegan",qU);/** + */const qU=[["path",{d:"M18 11c-1.5 0-2.5.5-3 2",key:"1fod00"}],["path",{d:"M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z",key:"d70hit"}],["path",{d:"M6 11c1.5 0 2.5.5 3 2",key:"136fht"}]],iv=e("VenetianMask",qU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const bU=[["path",{d:"M18 11c-1.5 0-2.5.5-3 2",key:"1fod00"}],["path",{d:"M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z",key:"d70hit"}],["path",{d:"M6 11c1.5 0 2.5.5 3 2",key:"136fht"}]],iv=e("VenetianMask",bU);/** + */const bU=[["path",{d:"M10 20h4",key:"ni2waw"}],["path",{d:"M12 16v6",key:"c8a4gj"}],["path",{d:"M17 2h4v4",key:"vhe59"}],["path",{d:"m21 2-5.46 5.46",key:"19kypf"}],["circle",{cx:"12",cy:"11",r:"5",key:"16gxyc"}]],hv=e("VenusAndMars",bU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const $U=[["path",{d:"M10 20h4",key:"ni2waw"}],["path",{d:"M12 16v6",key:"c8a4gj"}],["path",{d:"M17 2h4v4",key:"vhe59"}],["path",{d:"m21 2-5.46 5.46",key:"19kypf"}],["circle",{cx:"12",cy:"11",r:"5",key:"16gxyc"}]],hv=e("VenusAndMars",$U);/** + */const $U=[["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M9 19h6",key:"456am0"}],["circle",{cx:"12",cy:"9",r:"6",key:"1nw4tq"}]],yv=e("Venus",$U);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const AU=[["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M9 19h6",key:"456am0"}],["circle",{cx:"12",cy:"9",r:"6",key:"1nw4tq"}]],yv=e("Venus",AU);/** + */const AU=[["path",{d:"m2 8 2 2-2 2 2 2-2 2",key:"sv1b1"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2",key:"101i4y"}],["path",{d:"M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2",key:"1hbad5"}],["path",{d:"M16 10.34V6c0-.55-.45-1-1-1h-4.34",key:"1x5tf0"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],rv=e("VibrateOff",AU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const HU=[["path",{d:"m2 8 2 2-2 2 2 2-2 2",key:"sv1b1"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2",key:"101i4y"}],["path",{d:"M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2",key:"1hbad5"}],["path",{d:"M16 10.34V6c0-.55-.45-1-1-1h-4.34",key:"1x5tf0"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],rv=e("VibrateOff",HU);/** + */const HU=[["path",{d:"m2 8 2 2-2 2 2 2-2 2",key:"sv1b1"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2",key:"101i4y"}],["rect",{width:"8",height:"14",x:"8",y:"5",rx:"1",key:"1oyrl4"}]],kv=e("Vibrate",HU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const zU=[["path",{d:"m2 8 2 2-2 2 2 2-2 2",key:"sv1b1"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2",key:"101i4y"}],["rect",{width:"8",height:"14",x:"8",y:"5",rx:"1",key:"1oyrl4"}]],kv=e("Vibrate",zU);/** + */const zU=[["path",{d:"M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196",key:"w8jjjt"}],["path",{d:"M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2",key:"1xawa7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],pv=e("VideoOff",zU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const PU=[["path",{d:"M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196",key:"w8jjjt"}],["path",{d:"M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2",key:"1xawa7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],pv=e("VideoOff",PU);/** + */const PU=[["path",{d:"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5",key:"ftymec"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2",key:"158x01"}]],sv=e("Video",PU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const jU=[["path",{d:"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5",key:"ftymec"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2",key:"158x01"}]],sv=e("Video",jU);/** + */const jU=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M2 8h20",key:"d11cs7"}],["circle",{cx:"8",cy:"14",r:"2",key:"1k2qr5"}],["path",{d:"M8 12h8",key:"1wcyev"}],["circle",{cx:"16",cy:"14",r:"2",key:"14k7lr"}]],lv=e("Videotape",jU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const VU=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"M2 8h20",key:"d11cs7"}],["circle",{cx:"8",cy:"14",r:"2",key:"1k2qr5"}],["path",{d:"M8 12h8",key:"1wcyev"}],["circle",{cx:"16",cy:"14",r:"2",key:"14k7lr"}]],lv=e("Videotape",VU);/** + */const VU=[["path",{d:"M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2",key:"mrq65r"}],["path",{d:"M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2",key:"be3xqs"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",key:"11ak4c"}]],uv=e("View",VU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const BU=[["path",{d:"M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2",key:"mrq65r"}],["path",{d:"M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2",key:"be3xqs"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0",key:"11ak4c"}]],uv=e("View",BU);/** + */const BU=[["circle",{cx:"6",cy:"12",r:"4",key:"1ehtga"}],["circle",{cx:"18",cy:"12",r:"4",key:"4vafl8"}],["line",{x1:"6",x2:"18",y1:"16",y2:"16",key:"pmt8us"}]],Mv=e("Voicemail",BU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const FU=[["circle",{cx:"6",cy:"12",r:"4",key:"1ehtga"}],["circle",{cx:"18",cy:"12",r:"4",key:"4vafl8"}],["line",{x1:"6",x2:"18",y1:"16",y2:"16",key:"pmt8us"}]],Mv=e("Voicemail",FU);/** + */const FU=[["path",{d:"M11.1 7.1a16.55 16.55 0 0 1 10.9 4",key:"2880wi"}],["path",{d:"M12 12a12.6 12.6 0 0 1-8.7 5",key:"113sja"}],["path",{d:"M16.8 13.6a16.55 16.55 0 0 1-9 7.5",key:"1qmsgl"}],["path",{d:"M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10",key:"1bmeqp"}],["path",{d:"M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5",key:"iekzv9"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],vv=e("Volleyball",FU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const DU=[["path",{d:"M11.1 7.1a16.55 16.55 0 0 1 10.9 4",key:"2880wi"}],["path",{d:"M12 12a12.6 12.6 0 0 1-8.7 5",key:"113sja"}],["path",{d:"M16.8 13.6a16.55 16.55 0 0 1-9 7.5",key:"1qmsgl"}],["path",{d:"M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10",key:"1bmeqp"}],["path",{d:"M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5",key:"iekzv9"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],vv=e("Volleyball",DU);/** + */const DU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["path",{d:"M16 9a5 5 0 0 1 0 6",key:"1q6k2b"}]],mv=e("Volume1",DU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const RU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["path",{d:"M16 9a5 5 0 0 1 0 6",key:"1q6k2b"}]],mv=e("Volume1",RU);/** + */const RU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["path",{d:"M16 9a5 5 0 0 1 0 6",key:"1q6k2b"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728",key:"ijwkga"}]],_v=e("Volume2",RU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const TU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["path",{d:"M16 9a5 5 0 0 1 0 6",key:"1q6k2b"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728",key:"ijwkga"}]],_v=e("Volume2",TU);/** + */const TU=[["path",{d:"M16 9a5 5 0 0 1 .95 2.293",key:"1fgyg8"}],["path",{d:"M19.364 5.636a9 9 0 0 1 1.889 9.96",key:"l3zxae"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11",key:"1gbwow"}],["path",{d:"M9.828 4.172A.686.686 0 0 1 11 4.657v.686",key:"s2je0y"}]],gv=e("VolumeOff",TU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const UU=[["path",{d:"M16 9a5 5 0 0 1 .95 2.293",key:"1fgyg8"}],["path",{d:"M19.364 5.636a9 9 0 0 1 1.889 9.96",key:"l3zxae"}],["path",{d:"m2 2 20 20",key:"1ooewy"}],["path",{d:"m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11",key:"1gbwow"}],["path",{d:"M9.828 4.172A.686.686 0 0 1 11 4.657v.686",key:"s2je0y"}]],gv=e("VolumeOff",UU);/** + */const UU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["line",{x1:"22",x2:"16",y1:"9",y2:"15",key:"1ewh16"}],["line",{x1:"16",x2:"22",y1:"9",y2:"15",key:"5ykzw1"}]],Lv=e("VolumeX",UU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const OU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["line",{x1:"22",x2:"16",y1:"9",y2:"15",key:"1ewh16"}],["line",{x1:"16",x2:"22",y1:"9",y2:"15",key:"5ykzw1"}]],Lv=e("VolumeX",OU);/** + */const OU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}]],xv=e("Volume",OU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const ZU=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}]],xv=e("Volume",ZU);/** + */const ZU=[["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}],["path",{d:"M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z",key:"1ezoue"}],["path",{d:"M22 19H2",key:"nuriw5"}]],wv=e("Vote",ZU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const GU=[["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}],["path",{d:"M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z",key:"1ezoue"}],["path",{d:"M22 19H2",key:"nuriw5"}]],wv=e("Vote",GU);/** + */const GU=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2",key:"4125el"}],["path",{d:"M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21",key:"1dpki6"}]],fv=e("WalletCards",GU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const WU=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2",key:"4125el"}],["path",{d:"M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21",key:"1dpki6"}]],fv=e("WalletCards",WU);/** + */const WU=[["path",{d:"M17 14h.01",key:"7oqj8z"}],["path",{d:"M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14",key:"u1rqew"}]],R2=e("WalletMinimal",WU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const EU=[["path",{d:"M17 14h.01",key:"7oqj8z"}],["path",{d:"M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14",key:"u1rqew"}]],R2=e("WalletMinimal",EU);/** + */const EU=[["circle",{cx:"8",cy:"9",r:"2",key:"gjzl9d"}],["path",{d:"m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2",key:"69xh40"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}]],Cv=e("Wallpaper",EU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const XU=[["circle",{cx:"8",cy:"9",r:"2",key:"gjzl9d"}],["path",{d:"m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2",key:"69xh40"}],["path",{d:"M8 21h8",key:"1ev6f3"}],["path",{d:"M12 17v4",key:"1riwvh"}]],Cv=e("Wallpaper",XU);/** + */const XU=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",key:"ul74o6"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"M5 6v4",key:"ilb8ba"}],["path",{d:"M19 14v4",key:"blhpug"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M7 8H3",key:"zfb6yr"}],["path",{d:"M21 16h-4",key:"1cnmox"}],["path",{d:"M11 3H9",key:"1obp7u"}]],T2=e("WandSparkles",XU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const KU=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",key:"ul74o6"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"M5 6v4",key:"ilb8ba"}],["path",{d:"M19 14v4",key:"blhpug"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M7 8H3",key:"zfb6yr"}],["path",{d:"M21 16h-4",key:"1cnmox"}],["path",{d:"M11 3H9",key:"1obp7u"}]],T2=e("WandSparkles",KU);/** + */const KU=[["path",{d:"M15 4V2",key:"z1p9b7"}],["path",{d:"M15 16v-2",key:"px0unx"}],["path",{d:"M8 9h2",key:"1g203m"}],["path",{d:"M20 9h2",key:"19tzq7"}],["path",{d:"M17.8 11.8 19 13",key:"yihg8r"}],["path",{d:"M15 9h.01",key:"x1ddxp"}],["path",{d:"M17.8 6.2 19 5",key:"fd4us0"}],["path",{d:"m3 21 9-9",key:"1jfql5"}],["path",{d:"M12.2 6.2 11 5",key:"i3da3b"}]],Iv=e("Wand",KU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const JU=[["path",{d:"M15 4V2",key:"z1p9b7"}],["path",{d:"M15 16v-2",key:"px0unx"}],["path",{d:"M8 9h2",key:"1g203m"}],["path",{d:"M20 9h2",key:"19tzq7"}],["path",{d:"M17.8 11.8 19 13",key:"yihg8r"}],["path",{d:"M15 9h.01",key:"x1ddxp"}],["path",{d:"M17.8 6.2 19 5",key:"fd4us0"}],["path",{d:"m3 21 9-9",key:"1jfql5"}],["path",{d:"M12.2 6.2 11 5",key:"i3da3b"}]],Iv=e("Wand",JU);/** + */const JU=[["path",{d:"M22 8.35V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8.35A2 2 0 0 1 3.26 6.5l8-3.2a2 2 0 0 1 1.48 0l8 3.2A2 2 0 0 1 22 8.35Z",key:"gksnxg"}],["path",{d:"M6 18h12",key:"9pbo8z"}],["path",{d:"M6 14h12",key:"4cwo0f"}],["rect",{width:"12",height:"12",x:"6",y:"10",key:"apd30q"}]],Nv=e("Warehouse",JU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const QU=[["path",{d:"M22 8.35V20a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8.35A2 2 0 0 1 3.26 6.5l8-3.2a2 2 0 0 1 1.48 0l8 3.2A2 2 0 0 1 22 8.35Z",key:"gksnxg"}],["path",{d:"M6 18h12",key:"9pbo8z"}],["path",{d:"M6 14h12",key:"4cwo0f"}],["rect",{width:"12",height:"12",x:"6",y:"10",key:"apd30q"}]],Nv=e("Warehouse",QU);/** + */const QU=[["path",{d:"M3 6h3",key:"155dbl"}],["path",{d:"M17 6h.01",key:"e2y6kg"}],["rect",{width:"18",height:"20",x:"3",y:"2",rx:"2",key:"od3kk9"}],["circle",{cx:"12",cy:"13",r:"5",key:"nlbqau"}],["path",{d:"M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5",key:"17lach"}]],Sv=e("WashingMachine",QU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const YU=[["path",{d:"M3 6h3",key:"155dbl"}],["path",{d:"M17 6h.01",key:"e2y6kg"}],["rect",{width:"18",height:"20",x:"3",y:"2",rx:"2",key:"od3kk9"}],["circle",{cx:"12",cy:"13",r:"5",key:"nlbqau"}],["path",{d:"M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5",key:"17lach"}]],Sv=e("WashingMachine",YU);/** + */const YU=[["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}],["polyline",{points:"12 10 12 12 13 13",key:"19dquz"}],["path",{d:"m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05",key:"18k57s"}],["path",{d:"m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05",key:"16ny36"}]],qv=e("Watch",YU);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const eO=[["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}],["polyline",{points:"12 10 12 12 13 13",key:"19dquz"}],["path",{d:"m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05",key:"18k57s"}],["path",{d:"m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05",key:"16ny36"}]],qv=e("Watch",eO);/** + */const eO=[["path",{d:"M19 5a2 2 0 0 0-2 2v11",key:"s41o68"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"rd2r6e"}],["path",{d:"M7 13h10",key:"1rwob1"}],["path",{d:"M7 9h10",key:"12czzb"}],["path",{d:"M9 5a2 2 0 0 0-2 2v11",key:"x0q4gh"}]],bv=e("WavesLadder",eO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const aO=[["path",{d:"M19 5a2 2 0 0 0-2 2v11",key:"s41o68"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"rd2r6e"}],["path",{d:"M7 13h10",key:"1rwob1"}],["path",{d:"M7 9h10",key:"12czzb"}],["path",{d:"M9 5a2 2 0 0 0-2 2v11",key:"x0q4gh"}]],bv=e("WavesLadder",aO);/** + */const aO=[["path",{d:"M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"knzxuh"}],["path",{d:"M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"2jd2cc"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"rd2r6e"}]],$v=e("Waves",aO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const oO=[["path",{d:"M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"knzxuh"}],["path",{d:"M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"2jd2cc"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"rd2r6e"}]],$v=e("Waves",oO);/** + */const oO=[["circle",{cx:"12",cy:"4.5",r:"2.5",key:"r5ysbb"}],["path",{d:"m10.2 6.3-3.9 3.9",key:"1nzqf6"}],["circle",{cx:"4.5",cy:"12",r:"2.5",key:"jydg6v"}],["path",{d:"M7 12h10",key:"b7w52i"}],["circle",{cx:"19.5",cy:"12",r:"2.5",key:"1piiel"}],["path",{d:"m13.8 17.7 3.9-3.9",key:"1wyg1y"}],["circle",{cx:"12",cy:"19.5",r:"2.5",key:"13o1pw"}]],Av=e("Waypoints",oO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const cO=[["circle",{cx:"12",cy:"4.5",r:"2.5",key:"r5ysbb"}],["path",{d:"m10.2 6.3-3.9 3.9",key:"1nzqf6"}],["circle",{cx:"4.5",cy:"12",r:"2.5",key:"jydg6v"}],["path",{d:"M7 12h10",key:"b7w52i"}],["circle",{cx:"19.5",cy:"12",r:"2.5",key:"1piiel"}],["path",{d:"m13.8 17.7 3.9-3.9",key:"1wyg1y"}],["circle",{cx:"12",cy:"19.5",r:"2.5",key:"13o1pw"}]],Av=e("Waypoints",cO);/** + */const cO=[["circle",{cx:"12",cy:"10",r:"8",key:"1gshiw"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M7 22h10",key:"10w4w3"}],["path",{d:"M12 22v-4",key:"1utk9m"}]],Hv=e("Webcam",cO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const tO=[["circle",{cx:"12",cy:"10",r:"8",key:"1gshiw"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}],["path",{d:"M7 22h10",key:"10w4w3"}],["path",{d:"M12 22v-4",key:"1utk9m"}]],Hv=e("Webcam",tO);/** + */const tO=[["path",{d:"M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15",key:"1tvl6x"}],["path",{d:"M9 3.4a4 4 0 0 1 6.52.66",key:"q04jfq"}],["path",{d:"m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05",key:"azowf0"}],["path",{d:"M20.3 20.3a4 4 0 0 1-2.3.7",key:"5joiws"}],["path",{d:"M18.6 13a4 4 0 0 1 3.357 3.414",key:"cangb8"}],["path",{d:"m12 6 .6 1",key:"tpjl1n"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],zv=e("WebhookOff",tO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const nO=[["path",{d:"M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15",key:"1tvl6x"}],["path",{d:"M9 3.4a4 4 0 0 1 6.52.66",key:"q04jfq"}],["path",{d:"m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05",key:"azowf0"}],["path",{d:"M20.3 20.3a4 4 0 0 1-2.3.7",key:"5joiws"}],["path",{d:"M18.6 13a4 4 0 0 1 3.357 3.414",key:"cangb8"}],["path",{d:"m12 6 .6 1",key:"tpjl1n"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],zv=e("WebhookOff",nO);/** + */const nO=[["path",{d:"M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2",key:"q3hayz"}],["path",{d:"m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06",key:"1go1hn"}],["path",{d:"m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8",key:"qlwsc0"}]],Pv=e("Webhook",nO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const dO=[["path",{d:"M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2",key:"q3hayz"}],["path",{d:"m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06",key:"1go1hn"}],["path",{d:"m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8",key:"qlwsc0"}]],Pv=e("Webhook",dO);/** + */const dO=[["circle",{cx:"12",cy:"5",r:"3",key:"rqqgnr"}],["path",{d:"M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z",key:"56o5sh"}]],jv=e("Weight",dO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const iO=[["circle",{cx:"12",cy:"5",r:"3",key:"rqqgnr"}],["path",{d:"M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z",key:"56o5sh"}]],jv=e("Weight",iO);/** + */const iO=[["path",{d:"m2 22 10-10",key:"28ilpk"}],["path",{d:"m16 8-1.17 1.17",key:"1qqm82"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1rdhi6"}],["path",{d:"m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97",key:"4wz8re"}],["path",{d:"M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62",key:"rves66"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z",key:"19rau1"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"tc8ph9"}],["path",{d:"m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98",key:"ak46r"}],["path",{d:"M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28",key:"1tw520"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Vv=e("WheatOff",iO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const hO=[["path",{d:"m2 22 10-10",key:"28ilpk"}],["path",{d:"m16 8-1.17 1.17",key:"1qqm82"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1rdhi6"}],["path",{d:"m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97",key:"4wz8re"}],["path",{d:"M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62",key:"rves66"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z",key:"19rau1"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"tc8ph9"}],["path",{d:"m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98",key:"ak46r"}],["path",{d:"M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28",key:"1tw520"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Vv=e("WheatOff",hO);/** + */const hO=[["path",{d:"M2 22 16 8",key:"60hf96"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1rdhi6"}],["path",{d:"M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1sdzmb"}],["path",{d:"M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"eoatbi"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z",key:"19rau1"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"tc8ph9"}],["path",{d:"M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"2m8kc5"}],["path",{d:"M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"vex3ng"}]],Bv=e("Wheat",hO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const yO=[["path",{d:"M2 22 16 8",key:"60hf96"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1rdhi6"}],["path",{d:"M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"1sdzmb"}],["path",{d:"M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z",key:"eoatbi"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z",key:"19rau1"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"tc8ph9"}],["path",{d:"M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"2m8kc5"}],["path",{d:"M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z",key:"vex3ng"}]],Bv=e("Wheat",yO);/** + */const yO=[["circle",{cx:"7",cy:"12",r:"3",key:"12clwm"}],["path",{d:"M10 9v6",key:"17i7lo"}],["circle",{cx:"17",cy:"12",r:"3",key:"gl7c2s"}],["path",{d:"M14 7v8",key:"dl84cr"}],["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1",key:"lt2kga"}]],Fv=e("WholeWord",yO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const rO=[["circle",{cx:"7",cy:"12",r:"3",key:"12clwm"}],["path",{d:"M10 9v6",key:"17i7lo"}],["circle",{cx:"17",cy:"12",r:"3",key:"gl7c2s"}],["path",{d:"M14 7v8",key:"dl84cr"}],["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1",key:"lt2kga"}]],Fv=e("WholeWord",rO);/** + */const rO=[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0",key:"1x1e6c"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]],Dv=e("WifiHigh",rO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const kO=[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0",key:"1x1e6c"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]],Dv=e("WifiHigh",kO);/** + */const kO=[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]],Rv=e("WifiLow",kO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const pO=[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]],Rv=e("WifiLow",pO);/** + */const pO=[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}],["path",{d:"M5 12.859a10 10 0 0 1 5.17-2.69",key:"1dl1wf"}],["path",{d:"M19 12.859a10 10 0 0 0-2.007-1.523",key:"4k23kn"}],["path",{d:"M2 8.82a15 15 0 0 1 4.177-2.643",key:"1grhjp"}],["path",{d:"M22 8.82a15 15 0 0 0-11.288-3.764",key:"z3jwby"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],Tv=e("WifiOff",pO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const sO=[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}],["path",{d:"M5 12.859a10 10 0 0 1 5.17-2.69",key:"1dl1wf"}],["path",{d:"M19 12.859a10 10 0 0 0-2.007-1.523",key:"4k23kn"}],["path",{d:"M2 8.82a15 15 0 0 1 4.177-2.643",key:"1grhjp"}],["path",{d:"M22 8.82a15 15 0 0 0-11.288-3.764",key:"z3jwby"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],Tv=e("WifiOff",sO);/** + */const sO=[["path",{d:"M12 20h.01",key:"zekei9"}]],Uv=e("WifiZero",sO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const lO=[["path",{d:"M12 20h.01",key:"zekei9"}]],Uv=e("WifiZero",lO);/** + */const lO=[["path",{d:"M10 2v8",key:"d4bbey"}],["path",{d:"M12.8 21.6A2 2 0 1 0 14 18H2",key:"19kp1d"}],["path",{d:"M17.5 10a2.5 2.5 0 1 1 2 4H2",key:"19kpjc"}],["path",{d:"m6 6 4 4 4-4",key:"k13n16"}]],Ov=e("WindArrowDown",lO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const uO=[["path",{d:"M10 2v8",key:"d4bbey"}],["path",{d:"M12.8 21.6A2 2 0 1 0 14 18H2",key:"19kp1d"}],["path",{d:"M17.5 10a2.5 2.5 0 1 1 2 4H2",key:"19kpjc"}],["path",{d:"m6 6 4 4 4-4",key:"k13n16"}]],Ov=e("WindArrowDown",uO);/** + */const uO=[["path",{d:"M12.8 19.6A2 2 0 1 0 14 16H2",key:"148xed"}],["path",{d:"M17.5 8a2.5 2.5 0 1 1 2 4H2",key:"1u4tom"}],["path",{d:"M9.8 4.4A2 2 0 1 1 11 8H2",key:"75valh"}]],Zv=e("Wind",uO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const MO=[["path",{d:"M12.8 19.6A2 2 0 1 0 14 16H2",key:"148xed"}],["path",{d:"M17.5 8a2.5 2.5 0 1 1 2 4H2",key:"1u4tom"}],["path",{d:"M9.8 4.4A2 2 0 1 1 11 8H2",key:"75valh"}]],Zv=e("Wind",MO);/** + */const MO=[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M7 10h3m7 0h-1.343",key:"v48bem"}],["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198",key:"1ymjlu"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Gv=e("WineOff",MO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const vO=[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M7 10h3m7 0h-1.343",key:"v48bem"}],["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198",key:"1ymjlu"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22",key:"a6p6uj"}]],Gv=e("WineOff",vO);/** + */const vO=[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z",key:"10ffi3"}]],Wv=e("Wine",vO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const mO=[["path",{d:"M8 22h8",key:"rmew8v"}],["path",{d:"M7 10h10",key:"1101jm"}],["path",{d:"M12 15v7",key:"t2xh3l"}],["path",{d:"M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z",key:"10ffi3"}]],Wv=e("Wine",mO);/** + */const mO=[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2",key:"by2w9f"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4",key:"xkn7yn"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2",key:"1cgmvn"}]],Ev=e("Workflow",mO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const _O=[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2",key:"by2w9f"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4",key:"xkn7yn"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2",key:"1cgmvn"}]],Ev=e("Workflow",_O);/** + */const _O=[["path",{d:"m19 12-1.5 3",key:"9bcu4o"}],["path",{d:"M19.63 18.81 22 20",key:"121v98"}],["path",{d:"M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z",key:"1tij6q"}]],Xv=e("Worm",_O);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const gO=[["path",{d:"m19 12-1.5 3",key:"9bcu4o"}],["path",{d:"M19.63 18.81 22 20",key:"121v98"}],["path",{d:"M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z",key:"1tij6q"}]],Xv=e("Worm",gO);/** + */const gO=[["line",{x1:"3",x2:"21",y1:"6",y2:"6",key:"4m8b97"}],["path",{d:"M3 12h15a3 3 0 1 1 0 6h-4",key:"1cl7v7"}],["polyline",{points:"16 16 14 18 16 20",key:"1jznyi"}],["line",{x1:"3",x2:"10",y1:"18",y2:"18",key:"1h33wv"}]],Kv=e("WrapText",gO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const LO=[["line",{x1:"3",x2:"21",y1:"6",y2:"6",key:"4m8b97"}],["path",{d:"M3 12h15a3 3 0 1 1 0 6h-4",key:"1cl7v7"}],["polyline",{points:"16 16 14 18 16 20",key:"1jznyi"}],["line",{x1:"3",x2:"10",y1:"18",y2:"18",key:"1h33wv"}]],Kv=e("WrapText",LO);/** + */const LO=[["path",{d:"M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17",key:"1q2vi4"}],["path",{d:"m10 15 5-3-5-3z",key:"1jp15x"}]],Jv=e("Youtube",LO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const xO=[["path",{d:"M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17",key:"1q2vi4"}],["path",{d:"m10 15 5-3-5-3z",key:"1jp15x"}]],Jv=e("Youtube",xO);/** + */const xO=[["path",{d:"M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317",key:"193nxd"}],["path",{d:"M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773",key:"27a7lr"}],["path",{d:"M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643",key:"1e0qe9"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],Qv=e("ZapOff",xO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const wO=[["path",{d:"M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317",key:"193nxd"}],["path",{d:"M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773",key:"27a7lr"}],["path",{d:"M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643",key:"1e0qe9"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],Qv=e("ZapOff",wO);/** + */const wO=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14",key:"1vmskp"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]],Yv=e("ZoomIn",wO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const fO=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14",key:"1vmskp"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]],Yv=e("ZoomIn",fO);/** + */const fO=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]],em=e("ZoomOut",fO);/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const CO=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]],em=e("ZoomOut",CO);/** + */const CO=Object.freeze(Object.defineProperty({__proto__:null,AArrowDown:So,AArrowUp:qo,ALargeSmall:bo,Accessibility:$o,Activity:Ao,AirVent:Ho,Airplay:zo,AlarmClock:jo,AlarmClockCheck:q,AlarmClockMinus:b,AlarmClockOff:Po,AlarmClockPlus:$,AlarmSmoke:Vo,Album:Bo,AlignCenter:t0,AlignCenterHorizontal:Fo,AlignCenterVertical:Do,AlignEndHorizontal:Ro,AlignEndVertical:To,AlignHorizontalDistributeCenter:Uo,AlignHorizontalDistributeEnd:Oo,AlignHorizontalDistributeStart:Zo,AlignHorizontalJustifyCenter:Go,AlignHorizontalJustifyEnd:Wo,AlignHorizontalJustifyStart:Eo,AlignHorizontalSpaceAround:Xo,AlignHorizontalSpaceBetween:Ko,AlignJustify:Jo,AlignLeft:n0,AlignRight:d0,AlignStartHorizontal:Qo,AlignStartVertical:Yo,AlignVerticalDistributeCenter:ec,AlignVerticalDistributeEnd:ac,AlignVerticalDistributeStart:oc,AlignVerticalJustifyCenter:cc,AlignVerticalJustifyEnd:tc,AlignVerticalJustifyStart:nc,AlignVerticalSpaceAround:dc,AlignVerticalSpaceBetween:ic,Ambulance:hc,Ampersand:yc,Ampersands:rc,Amphora:kc,Anchor:pc,Angry:sc,Annoyed:lc,Antenna:uc,Anvil:Mc,Aperture:vc,AppWindow:_c,AppWindowMac:mc,Apple:gc,Archive:l0,ArchiveRestore:Lc,ArchiveX:xc,Armchair:wc,ArrowBigDown:Cc,ArrowBigDownDash:fc,ArrowBigLeft:Nc,ArrowBigLeftDash:Ic,ArrowBigRight:qc,ArrowBigRightDash:Sc,ArrowBigUp:$c,ArrowBigUpDash:bc,ArrowDown:Dc,ArrowDown01:Ac,ArrowDown10:Hc,ArrowDownAZ:A,ArrowDownFromLine:zc,ArrowDownLeft:_0,ArrowDownNarrowWide:Pc,ArrowDownRight:jc,ArrowDownToDot:Vc,ArrowDownToLine:Bc,ArrowDownUp:Fc,ArrowDownWideNarrow:H,ArrowDownZA:z,ArrowLeft:g0,ArrowLeftFromLine:Rc,ArrowLeftRight:Tc,ArrowLeftToLine:Uc,ArrowRight:x0,ArrowRightFromLine:Oc,ArrowRightLeft:L0,ArrowRightToLine:Zc,ArrowUp:Yc,ArrowUp01:Gc,ArrowUp10:Wc,ArrowUpAZ:P,ArrowUpDown:w0,ArrowUpFromDot:Ec,ArrowUpFromLine:Xc,ArrowUpLeft:Kc,ArrowUpNarrowWide:j,ArrowUpRight:f0,ArrowUpToLine:Jc,ArrowUpWideNarrow:Qc,ArrowUpZA:V,ArrowsUpFromLine:et,Asterisk:at,AtSign:ot,Atom:ct,AudioLines:tt,AudioWaveform:nt,Award:N0,Axe:dt,Axis3d:B,Baby:it,Backpack:ht,Badge:ft,BadgeAlert:yt,BadgeCent:rt,BadgeCheck:F,BadgeDollarSign:kt,BadgeEuro:pt,BadgeHelp:st,BadgeIndianRupee:lt,BadgeInfo:ut,BadgeJapaneseYen:Mt,BadgeMinus:vt,BadgePercent:mt,BadgePlus:_t,BadgePoundSterling:gt,BadgeRussianRuble:Lt,BadgeSwissFranc:xt,BadgeX:wt,BaggageClaim:Ct,Ban:S0,Banana:It,Bandage:Nt,Banknote:q0,Barcode:St,Baseline:qt,Bath:bt,Battery:Vt,BatteryCharging:$t,BatteryFull:At,BatteryLow:Ht,BatteryMedium:zt,BatteryPlus:Pt,BatteryWarning:jt,Beaker:Bt,Bean:Dt,BeanOff:Ft,Bed:Ut,BedDouble:Rt,BedSingle:Tt,Beef:Ot,Beer:Gt,BeerOff:Zt,Bell:$0,BellDot:Wt,BellElectric:Et,BellMinus:Xt,BellOff:Kt,BellPlus:Jt,BellRing:Qt,BetweenHorizontalEnd:D,BetweenHorizontalStart:R,BetweenVerticalEnd:Yt,BetweenVerticalStart:en,BicepsFlexed:an,Bike:on,Binary:cn,Binoculars:tn,Biohazard:nn,Bird:dn,Bitcoin:hn,Blend:yn,Blinds:rn,Blocks:kn,Bluetooth:un,BluetoothConnected:pn,BluetoothOff:sn,BluetoothSearching:ln,Bold:i0,Bolt:Mn,Bomb:vn,Bone:mn,Book:u0,BookA:_n,BookAudio:gn,BookCheck:Ln,BookCopy:xn,BookDashed:T,BookDown:wn,BookHeadphones:fn,BookHeart:Cn,BookImage:In,BookKey:Nn,BookLock:Sn,BookMarked:qn,BookMinus:bn,BookOpen:A0,BookOpenCheck:$n,BookOpenText:An,BookPlus:Hn,BookText:zn,BookType:Pn,BookUp:Vn,BookUp2:jn,BookUser:Bn,BookX:Fn,Bookmark:On,BookmarkCheck:Dn,BookmarkMinus:Rn,BookmarkPlus:Tn,BookmarkX:Un,BoomBox:Zn,Bot:En,BotMessageSquare:Gn,BotOff:Wn,Box:Xn,Boxes:H0,Braces:U,Brackets:Kn,Brain:z0,BrainCircuit:Jn,BrainCog:Qn,BrickWall:Yn,Briefcase:j0,BriefcaseBusiness:ed,BriefcaseConveyorBelt:ad,BriefcaseMedical:od,BringToFront:cd,Brush:td,Bug:id,BugOff:nd,BugPlay:dd,Building:B0,Building2:V0,Bus:yd,BusFront:hd,Cable:kd,CableCar:rd,Cake:sd,CakeSlice:pd,Calculator:F0,Calendar:T0,Calendar1:ld,CalendarArrowDown:ud,CalendarArrowUp:Md,CalendarCheck:D0,CalendarCheck2:vd,CalendarClock:md,CalendarCog:_d,CalendarDays:R0,CalendarFold:gd,CalendarHeart:Ld,CalendarMinus:wd,CalendarMinus2:xd,CalendarOff:fd,CalendarPlus:Id,CalendarPlus2:Cd,CalendarRange:Nd,CalendarSearch:Sd,CalendarSync:qd,CalendarX:$d,CalendarX2:bd,Camera:U0,CameraOff:Ad,Candy:Pd,CandyCane:Hd,CandyOff:zd,Cannabis:jd,Captions:O,CaptionsOff:Vd,Car:Dd,CarFront:Bd,CarTaxiFront:Fd,Caravan:Rd,Carrot:Td,CaseLower:Ud,CaseSensitive:Od,CaseUpper:Zd,CassetteTape:Gd,Cast:Wd,Castle:Ed,Cat:Xd,Cctv:Kd,ChartArea:Z,ChartBar:W,ChartBarBig:G,ChartBarDecreasing:Jd,ChartBarIncreasing:Qd,ChartBarStacked:Yd,ChartCandlestick:E,ChartColumn:u,ChartColumnBig:X,ChartColumnDecreasing:ei,ChartColumnIncreasing:K,ChartColumnStacked:ai,ChartGantt:oi,ChartLine:J,ChartNetwork:ci,ChartNoAxesColumn:v,ChartNoAxesColumnDecreasing:ti,ChartNoAxesColumnIncreasing:M,ChartNoAxesCombined:ni,ChartNoAxesGantt:Q,ChartPie:Y,ChartScatter:e1,ChartSpline:di,Check:E2,CheckCheck:ii,ChefHat:hi,Cherry:yi,ChevronDown:O2,ChevronFirst:ri,ChevronLast:ki,ChevronLeft:O0,ChevronRight:Z0,ChevronUp:Z2,ChevronsDown:si,ChevronsDownUp:pi,ChevronsLeft:Mi,ChevronsLeftRight:ui,ChevronsLeftRightEllipsis:li,ChevronsRight:mi,ChevronsRightLeft:vi,ChevronsUp:_i,ChevronsUpDown:G2,Chrome:gi,Church:Li,Cigarette:wi,CigaretteOff:xi,Circle:G0,CircleAlert:m,CircleArrowDown:a1,CircleArrowLeft:o1,CircleArrowOutDownLeft:c1,CircleArrowOutDownRight:t1,CircleArrowOutUpLeft:n1,CircleArrowOutUpRight:d1,CircleArrowRight:i1,CircleArrowUp:h1,CircleCheck:g,CircleCheckBig:_,CircleChevronDown:y1,CircleChevronLeft:r1,CircleChevronRight:k1,CircleChevronUp:p1,CircleDashed:fi,CircleDivide:s1,CircleDollarSign:Ci,CircleDot:Ni,CircleDotDashed:Ii,CircleEllipsis:Si,CircleEqual:qi,CircleFadingArrowUp:bi,CircleFadingPlus:$i,CircleGauge:l1,CircleHelp:L,CircleMinus:u1,CircleOff:Ai,CircleParking:v1,CircleParkingOff:M1,CirclePause:m1,CirclePercent:_1,CirclePlay:g1,CirclePlus:L1,CirclePower:x1,CircleSlash:Hi,CircleSlash2:w1,CircleSmall:zi,CircleStop:f1,CircleUser:I1,CircleUserRound:C1,CircleX:x,CircuitBoard:Pi,Citrus:ji,Clapperboard:Vi,Clipboard:Zi,ClipboardCheck:Bi,ClipboardCopy:Fi,ClipboardList:W0,ClipboardMinus:Di,ClipboardPaste:Ri,ClipboardPen:S1,ClipboardPenLine:N1,ClipboardPlus:Ti,ClipboardType:Ui,ClipboardX:Oi,Clock:E0,Clock1:Gi,Clock10:Wi,Clock11:Ei,Clock12:Xi,Clock2:Ki,Clock3:Ji,Clock4:Qi,Clock5:Yi,Clock6:eh,Clock7:ah,Clock8:oh,Clock9:ch,ClockAlert:th,ClockArrowDown:nh,ClockArrowUp:dh,Cloud:Lh,CloudAlert:ih,CloudCog:hh,CloudDownload:q1,CloudDrizzle:yh,CloudFog:rh,CloudHail:kh,CloudLightning:ph,CloudMoon:lh,CloudMoonRain:sh,CloudOff:uh,CloudRain:vh,CloudRainWind:Mh,CloudSnow:mh,CloudSun:gh,CloudSunRain:_h,CloudUpload:b1,Cloudy:xh,Clover:wh,Club:fh,Code:X0,CodeXml:$1,Codepen:Ch,Codesandbox:Ih,Coffee:Nh,Cog:Sh,Coins:K0,Columns2:A1,Columns3:H1,Columns4:qh,Combine:bh,Command:$h,Compass:Ah,Component:Hh,Computer:zh,ConciergeBell:Ph,Cone:jh,Construction:Vh,Contact:Bh,ContactRound:z1,Container:Fh,Contrast:Dh,Cookie:Rh,CookingPot:Th,Copy:J0,CopyCheck:Uh,CopyMinus:Oh,CopyPlus:Zh,CopySlash:Gh,CopyX:Wh,Copyleft:Eh,Copyright:Xh,CornerDownLeft:Kh,CornerDownRight:Jh,CornerLeftDown:Qh,CornerLeftUp:Yh,CornerRightDown:ey,CornerRightUp:ay,CornerUpLeft:oy,CornerUpRight:cy,Cpu:ty,CreativeCommons:ny,CreditCard:Q0,Croissant:dy,Crop:iy,Cross:hy,Crosshair:Y0,Crown:ea,Cuboid:yy,CupSoda:ry,Currency:ky,Cylinder:py,Dam:sy,Database:My,DatabaseBackup:ly,DatabaseZap:uy,Delete:vy,Dessert:my,Diameter:_y,Diamond:xy,DiamondMinus:gy,DiamondPercent:P1,DiamondPlus:Ly,Dice1:wy,Dice2:fy,Dice3:Cy,Dice4:Iy,Dice5:Ny,Dice6:Sy,Dices:qy,Diff:by,Disc:zy,Disc2:$y,Disc3:Ay,DiscAlbum:Hy,Divide:Py,Dna:Vy,DnaOff:jy,Dock:By,Dog:Fy,DollarSign:aa,Donut:Dy,DoorClosed:Ry,DoorOpen:Ty,Dot:Uy,Download:oa,DraftingCompass:Oy,Drama:Zy,Dribbble:Gy,Drill:Wy,Droplet:Xy,DropletOff:Ey,Droplets:Ky,Drum:Jy,Drumstick:Qy,Dumbbell:Yy,Ear:ar,EarOff:er,Earth:j1,EarthLock:or,Eclipse:cr,Egg:dr,EggFried:tr,EggOff:nr,Ellipsis:B1,EllipsisVertical:V1,Equal:yr,EqualApproximately:ir,EqualNot:hr,Eraser:rr,EthernetPort:kr,Euro:pr,Expand:sr,ExternalLink:ca,Eye:na,EyeClosed:lr,EyeOff:ta,Facebook:da,Factory:ur,Fan:Mr,FastForward:vr,Feather:mr,Fence:_r,FerrisWheel:gr,Figma:Lr,File:l4,FileArchive:xr,FileAudio:fr,FileAudio2:wr,FileAxis3d:F1,FileBadge:Ir,FileBadge2:Cr,FileBox:Nr,FileChartColumn:R1,FileChartColumnIncreasing:D1,FileChartLine:T1,FileChartPie:U1,FileCheck:qr,FileCheck2:Sr,FileClock:br,FileCode:Ar,FileCode2:$r,FileCog:O1,FileDiff:Hr,FileDigit:zr,FileDown:ha,FileHeart:Pr,FileImage:jr,FileInput:Vr,FileJson:Fr,FileJson2:Br,FileKey:Rr,FileKey2:Dr,FileLock:Ur,FileLock2:Tr,FileMinus:Zr,FileMinus2:Or,FileMusic:Gr,FileOutput:Wr,FilePen:G1,FilePenLine:Z1,FilePlus:Xr,FilePlus2:Er,FileQuestion:Kr,FileScan:Jr,FileSearch:Yr,FileSearch2:Qr,FileSliders:e4,FileSpreadsheet:ya,FileStack:a4,FileSymlink:o4,FileTerminal:c4,FileText:X2,FileType:n4,FileType2:t4,FileUp:ra,FileUser:d4,FileVideo:h4,FileVideo2:i4,FileVolume:r4,FileVolume2:y4,FileWarning:k4,FileX:s4,FileX2:p4,Files:u4,Film:M4,Filter:ka,FilterX:v4,Fingerprint:pa,FireExtinguisher:m4,Fish:L4,FishOff:_4,FishSymbol:g4,Flag:C4,FlagOff:x4,FlagTriangleLeft:w4,FlagTriangleRight:f4,Flame:N4,FlameKindling:I4,Flashlight:q4,FlashlightOff:S4,FlaskConical:$4,FlaskConicalOff:b4,FlaskRound:A4,FlipHorizontal:z4,FlipHorizontal2:H4,FlipVertical:j4,FlipVertical2:P4,Flower:B4,Flower2:V4,Focus:F4,FoldHorizontal:D4,FoldVertical:R4,Folder:P0,FolderArchive:T4,FolderCheck:U4,FolderClock:O4,FolderClosed:Z4,FolderCode:G4,FolderCog:W1,FolderDot:W4,FolderDown:E4,FolderGit:X4,FolderGit2:sa,FolderHeart:K4,FolderInput:J4,FolderKanban:Q4,FolderKey:Y4,FolderLock:ek,FolderMinus:ak,FolderOpen:la,FolderOpenDot:ok,FolderOutput:ck,FolderPen:E1,FolderPlus:tk,FolderRoot:nk,FolderSearch:ik,FolderSearch2:dk,FolderSymlink:hk,FolderSync:yk,FolderTree:rk,FolderUp:kk,FolderX:pk,Folders:sk,Footprints:lk,Forklift:uk,Forward:Mk,Frame:vk,Framer:mk,Frown:_k,Fuel:gk,Fullscreen:Lk,GalleryHorizontal:wk,GalleryHorizontalEnd:xk,GalleryThumbnails:fk,GalleryVertical:Ik,GalleryVerticalEnd:Ck,Gamepad:Sk,Gamepad2:Nk,Gauge:qk,Gavel:bk,Gem:$k,Ghost:Ak,Gift:ua,GitBranch:Ma,GitBranchPlus:Hk,GitCommitHorizontal:X1,GitCommitVertical:zk,GitCompare:jk,GitCompareArrows:Pk,GitFork:Vk,GitGraph:Bk,GitMerge:Fk,GitPullRequest:Zk,GitPullRequestArrow:Dk,GitPullRequestClosed:Rk,GitPullRequestCreate:Uk,GitPullRequestCreateArrow:Tk,GitPullRequestDraft:Ok,Github:Gk,Gitlab:Wk,GlassWater:Ek,Glasses:Xk,Globe:va,GlobeLock:Kk,Goal:Jk,Grab:Qk,GraduationCap:M0,Grape:Yk,Grid2x2:Y1,Grid2x2Check:K1,Grid2x2Plus:J1,Grid2x2X:Q1,Grid3x3:d,Grip:ap,GripHorizontal:ep,GripVertical:ma,Group:op,Guitar:cp,Ham:tp,Hammer:np,Hand:rp,HandCoins:dp,HandHeart:ip,HandHelping:ee,HandMetal:hp,HandPlatter:yp,Handshake:kp,HardDrive:_a,HardDriveDownload:pp,HardDriveUpload:sp,HardHat:lp,Hash:ga,Haze:up,HdmiPort:Mp,Heading:wp,Heading1:vp,Heading2:mp,Heading3:_p,Heading4:gp,Heading5:Lp,Heading6:xp,HeadphoneOff:fp,Headphones:Cp,Headset:Ip,Heart:La,HeartCrack:Np,HeartHandshake:Sp,HeartOff:qp,HeartPulse:bp,Heater:$p,Hexagon:Ap,Highlighter:Hp,History:C0,Hop:Pp,HopOff:zp,Hospital:jp,Hotel:Vp,Hourglass:Bp,House:f,HousePlug:Fp,HousePlus:Dp,HouseWifi:Rp,IceCreamBowl:ae,IceCreamCone:oe,IdCard:v0,Image:K2,ImageDown:Tp,ImageMinus:Up,ImageOff:Op,ImagePlay:Zp,ImagePlus:Gp,ImageUp:Wp,ImageUpscale:Ep,Images:Xp,Import:Kp,Inbox:Jp,IndentDecrease:ce,IndentIncrease:te,IndianRupee:b0,Infinity:Qp,Info:wa,InspectionPanel:Yp,Instagram:ia,Italic:h0,IterationCcw:e5,IterationCw:a5,JapaneseYen:o5,Joystick:c5,Kanban:t5,Key:d5,KeyRound:I0,KeySquare:n5,Keyboard:y5,KeyboardMusic:i5,KeyboardOff:h5,Lamp:u5,LampCeiling:r5,LampDesk:k5,LampFloor:p5,LampWallDown:s5,LampWallUp:l5,LandPlot:M5,Landmark:v5,Languages:m5,Laptop:g5,LaptopMinimal:ne,LaptopMinimalCheck:_5,Lasso:x5,LassoSelect:L5,Laugh:w5,Layers:C,Layers2:f5,LayoutDashboard:C5,LayoutGrid:fa,LayoutList:Ca,LayoutPanelLeft:I5,LayoutPanelTop:N5,LayoutTemplate:S5,Leaf:q5,LeafyGreen:b5,Lectern:$5,LetterText:A5,Library:z5,LibraryBig:H5,LifeBuoy:P5,Ligature:j5,Lightbulb:Ia,LightbulbOff:V5,Link:Sa,Link2:Na,Link2Off:B5,Linkedin:qa,List:$a,ListCheck:F5,ListChecks:D5,ListCollapse:R5,ListEnd:T5,ListFilter:O5,ListFilterPlus:U5,ListMinus:Z5,ListMusic:G5,ListOrdered:y0,ListPlus:W5,ListRestart:E5,ListStart:X5,ListTodo:K5,ListTree:J5,ListVideo:Q5,ListX:Y5,Loader:as,LoaderCircle:I,LoaderPinwheel:es,Locate:cs,LocateFixed:Aa,LocateOff:os,Lock:Ha,LockKeyhole:ts,LockKeyholeOpen:de,LockOpen:s,LogIn:za,LogOut:Pa,Logs:ns,Lollipop:ds,Luggage:is,Magnet:hs,Mail:ja,MailCheck:ys,MailMinus:rs,MailOpen:ks,MailPlus:ps,MailQuestion:ss,MailSearch:ls,MailWarning:us,MailX:Ms,Mailbox:vs,Mails:ms,Map:$s,MapPin:Va,MapPinCheck:gs,MapPinCheckInside:_s,MapPinHouse:Ls,MapPinMinus:ws,MapPinMinusInside:xs,MapPinOff:fs,MapPinPlus:Is,MapPinPlusInside:Cs,MapPinX:Ss,MapPinXInside:Ns,MapPinned:qs,MapPlus:bs,Mars:Hs,MarsStroke:As,Martini:zs,Maximize:js,Maximize2:Ps,Medal:Vs,Megaphone:Fs,MegaphoneOff:Bs,Meh:Ds,MemoryStick:Rs,Menu:Ba,Merge:Ts,MessageCircle:Ys,MessageCircleCode:Us,MessageCircleDashed:Os,MessageCircleHeart:Zs,MessageCircleMore:Gs,MessageCircleOff:Ws,MessageCirclePlus:Es,MessageCircleQuestion:Xs,MessageCircleReply:Ks,MessageCircleWarning:Js,MessageCircleX:Qs,MessageSquare:Da,MessageSquareCode:e3,MessageSquareDashed:a3,MessageSquareDiff:o3,MessageSquareDot:c3,MessageSquareHeart:t3,MessageSquareLock:n3,MessageSquareMore:d3,MessageSquareOff:i3,MessageSquarePlus:h3,MessageSquareQuote:y3,MessageSquareReply:r3,MessageSquareShare:k3,MessageSquareText:p3,MessageSquareWarning:Fa,MessageSquareX:s3,MessagesSquare:l3,Mic:M3,MicOff:u3,MicVocal:ie,Microchip:v3,Microscope:m3,Microwave:_3,Milestone:g3,Milk:x3,MilkOff:L3,Minimize:f3,Minimize2:w3,Minus:C3,Monitor:Ra,MonitorCheck:I3,MonitorCog:N3,MonitorDot:S3,MonitorDown:q3,MonitorOff:b3,MonitorPause:$3,MonitorPlay:A3,MonitorSmartphone:H3,MonitorSpeaker:z3,MonitorStop:P3,MonitorUp:j3,MonitorX:V3,Moon:J2,MoonStar:B3,Mountain:D3,MountainSnow:F3,Mouse:G3,MouseOff:R3,MousePointer:Z3,MousePointer2:T3,MousePointerBan:U3,MousePointerClick:O3,Move:nl,Move3d:he,MoveDiagonal:E3,MoveDiagonal2:W3,MoveDown:J3,MoveDownLeft:X3,MoveDownRight:K3,MoveHorizontal:Q3,MoveLeft:Y3,MoveRight:el,MoveUp:cl,MoveUpLeft:al,MoveUpRight:ol,MoveVertical:tl,Music:yl,Music2:dl,Music3:il,Music4:hl,Navigation:sl,Navigation2:kl,Navigation2Off:rl,NavigationOff:pl,Network:ll,Newspaper:ul,Nfc:Ml,NonBinary:vl,Notebook:Ll,NotebookPen:ml,NotebookTabs:_l,NotebookText:gl,NotepadText:wl,NotepadTextDashed:xl,Nut:Cl,NutOff:fl,Octagon:Nl,OctagonAlert:ye,OctagonMinus:Il,OctagonPause:re,OctagonX:ke,Omega:Sl,Option:ql,Orbit:bl,Origami:$l,Package:Ta,Package2:Al,PackageCheck:Hl,PackageMinus:zl,PackageOpen:Pl,PackagePlus:jl,PackageSearch:Vl,PackageX:Bl,PaintBucket:Fl,PaintRoller:Dl,Paintbrush:Rl,PaintbrushVertical:pe,Palette:Q2,PanelBottom:Ol,PanelBottomClose:Tl,PanelBottomDashed:se,PanelBottomOpen:Ul,PanelLeft:k,PanelLeftClose:le,PanelLeftDashed:ue,PanelLeftOpen:Me,PanelRight:Wl,PanelRightClose:Zl,PanelRightDashed:ve,PanelRightOpen:Gl,PanelTop:Kl,PanelTopClose:El,PanelTopDashed:me,PanelTopOpen:Xl,PanelsLeftBottom:Jl,PanelsRightBottom:Ql,PanelsTopLeft:p,Paperclip:Yl,Parentheses:e6,ParkingMeter:a6,PartyPopper:o6,Pause:c6,PawPrint:t6,PcCase:n6,Pen:_e,PenLine:w,PenOff:d6,PenTool:i6,Pencil:k6,PencilLine:h6,PencilOff:y6,PencilRuler:r6,Pentagon:p6,Percent:Ua,PersonStanding:s6,PhilippinePeso:l6,Phone:Oa,PhoneCall:u6,PhoneForwarded:M6,PhoneIncoming:v6,PhoneMissed:m6,PhoneOff:_6,PhoneOutgoing:g6,Pi:L6,Piano:x6,Pickaxe:w6,PictureInPicture:C6,PictureInPicture2:f6,PiggyBank:I6,Pilcrow:q6,PilcrowLeft:N6,PilcrowRight:S6,Pill:$6,PillBottle:b6,Pin:H6,PinOff:A6,Pipette:z6,Pizza:P6,Plane:Za,PlaneLanding:j6,PlaneTakeoff:V6,Play:Ga,Plug:F6,Plug2:B6,PlugZap:ge,Plus:Y2,Pocket:R6,PocketKnife:D6,Podcast:T6,Pointer:O6,PointerOff:U6,Popcorn:Z6,Popsicle:G6,PoundSterling:W6,Power:X6,PowerOff:E6,Presentation:K6,Printer:Q6,PrinterCheck:J6,Projector:Y6,Proportions:e8,Puzzle:a8,Pyramid:o8,QrCode:Wa,Quote:Ea,Rabbit:c8,Radar:t8,Radiation:n8,Radical:d8,Radio:Xa,RadioReceiver:i8,RadioTower:h8,Radius:y8,RailSymbol:r8,Rainbow:k8,Rat:p8,Ratio:s8,Receipt:x8,ReceiptCent:l8,ReceiptEuro:u8,ReceiptIndianRupee:M8,ReceiptJapaneseYen:v8,ReceiptPoundSterling:m8,ReceiptRussianRuble:_8,ReceiptSwissFranc:g8,ReceiptText:L8,RectangleEllipsis:Le,RectangleHorizontal:w8,RectangleVertical:f8,Recycle:C8,Redo:r0,Redo2:I8,RedoDot:N8,RefreshCcw:q8,RefreshCcwDot:S8,RefreshCw:Ka,RefreshCwOff:b8,Refrigerator:$8,Regex:A8,RemoveFormatting:H8,Repeat:j8,Repeat1:z8,Repeat2:P8,Replace:B8,ReplaceAll:V8,Reply:D8,ReplyAll:F8,Rewind:R8,Ribbon:T8,Rocket:U8,RockingChair:O8,RollerCoaster:Z8,Rotate3d:xe,RotateCcw:W8,RotateCcwSquare:G8,RotateCw:X8,RotateCwSquare:E8,Route:J8,RouteOff:K8,Router:Q8,Rows2:we,Rows3:fe,Rows4:Y8,Rss:e7,Ruler:Ja,RussianRuble:a7,Sailboat:o7,Salad:c7,Sandwich:t7,Satellite:d7,SatelliteDish:n7,Save:e0,SaveAll:i7,SaveOff:h7,Scale:m0,Scale3d:Ce,Scaling:y7,Scan:m7,ScanBarcode:r7,ScanEye:k7,ScanFace:p7,ScanHeart:s7,ScanLine:l7,ScanQrCode:u7,ScanSearch:M7,ScanText:v7,School:_7,Scissors:L7,ScissorsLineDashed:g7,ScreenShare:w7,ScreenShareOff:x7,Scroll:C7,ScrollText:f7,Search:a0,SearchCheck:I7,SearchCode:N7,SearchSlash:S7,SearchX:q7,Section:b7,Send:Qa,SendHorizontal:Ie,SendToBack:$7,SeparatorHorizontal:A7,SeparatorVertical:H7,Server:Ya,ServerCog:z7,ServerCrash:P7,ServerOff:j7,Settings:eo,Settings2:V7,Shapes:B7,Share:F7,Share2:ao,Sheet:D7,Shell:R7,Shield:xa,ShieldAlert:T7,ShieldBan:U7,ShieldCheck:co,ShieldEllipsis:O7,ShieldHalf:Z7,ShieldMinus:G7,ShieldOff:W7,ShieldPlus:E7,ShieldQuestion:X7,ShieldX:Ne,Ship:J7,ShipWheel:K7,Shirt:Q7,ShoppingBag:Y7,ShoppingBasket:eu,ShoppingCart:au,Shovel:ou,ShowerHead:cu,Shrink:tu,Shrub:nu,Shuffle:du,Sigma:iu,Signal:pu,SignalHigh:hu,SignalLow:yu,SignalMedium:ru,SignalZero:ku,Signature:su,Signpost:uu,SignpostBig:lu,Siren:Mu,SkipBack:vu,SkipForward:mu,Skull:_u,Slack:gu,Slash:Lu,Slice:xu,SlidersHorizontal:wu,SlidersVertical:Se,Smartphone:to,SmartphoneCharging:fu,SmartphoneNfc:Cu,Smile:Nu,SmilePlus:Iu,Snail:Su,Snowflake:qu,Sofa:bu,Soup:$u,Space:Au,Spade:Hu,Sparkle:zu,Sparkles:l,Speaker:Pu,Speech:ju,SpellCheck:Bu,SpellCheck2:Vu,Spline:Fu,Split:Du,SprayCan:Ru,Sprout:Tu,Square:Eu,SquareActivity:qe,SquareArrowDown:Ae,SquareArrowDownLeft:be,SquareArrowDownRight:$e,SquareArrowLeft:He,SquareArrowOutDownLeft:ze,SquareArrowOutDownRight:Pe,SquareArrowOutUpLeft:je,SquareArrowOutUpRight:Ve,SquareArrowRight:Be,SquareArrowUp:Re,SquareArrowUpLeft:Fe,SquareArrowUpRight:De,SquareAsterisk:Te,SquareBottomDashedScissors:Ue,SquareChartGantt:i,SquareCheck:Oe,SquareCheckBig:N,SquareChevronDown:Ze,SquareChevronLeft:Ge,SquareChevronRight:We,SquareChevronUp:Ee,SquareCode:Xe,SquareDashed:Qe,SquareDashedBottom:Ou,SquareDashedBottomCode:Uu,SquareDashedKanban:Ke,SquareDashedMousePointer:Je,SquareDivide:Ye,SquareDot:e2,SquareEqual:a2,SquareFunction:o2,SquareKanban:c2,SquareLibrary:t2,SquareM:n2,SquareMenu:d2,SquareMinus:i2,SquareMousePointer:h2,SquareParking:r2,SquareParkingOff:y2,SquarePen:n,SquarePercent:k2,SquarePi:p2,SquarePilcrow:s2,SquarePlay:l2,SquarePlus:u2,SquarePower:M2,SquareRadical:Zu,SquareScissors:v2,SquareSigma:m2,SquareSlash:_2,SquareSplitHorizontal:g2,SquareSplitVertical:L2,SquareSquare:Gu,SquareStack:Wu,SquareTerminal:x2,SquareUser:f2,SquareUserRound:w2,SquareX:C2,Squircle:Xu,Squirrel:Ku,Stamp:Ju,Star:no,StarHalf:Qu,StarOff:Yu,StepBack:eM,StepForward:aM,Stethoscope:oM,Sticker:cM,StickyNote:tM,Store:nM,StretchHorizontal:dM,StretchVertical:iM,Strikethrough:k0,Subscript:hM,Sun:io,SunDim:yM,SunMedium:rM,SunMoon:kM,SunSnow:pM,Sunrise:sM,Sunset:lM,Superscript:uM,SwatchBook:MM,SwissFranc:vM,SwitchCamera:mM,Sword:_M,Swords:gM,Syringe:LM,Table:qM,Table2:xM,TableCellsMerge:wM,TableCellsSplit:fM,TableColumnsSplit:CM,TableOfContents:IM,TableProperties:NM,TableRowsSplit:SM,Tablet:$M,TabletSmartphone:bM,Tablets:AM,Tag:ho,Tags:HM,Tally1:zM,Tally2:PM,Tally3:jM,Tally4:VM,Tally5:BM,Tangent:FM,Target:yo,Telescope:DM,Tent:TM,TentTree:RM,Terminal:UM,TestTube:OM,TestTubeDiagonal:I2,TestTubes:ZM,Text:KM,TextCursor:WM,TextCursorInput:GM,TextQuote:EM,TextSearch:XM,TextSelect:N2,Theater:JM,Thermometer:e9,ThermometerSnowflake:QM,ThermometerSun:YM,ThumbsDown:ro,ThumbsUp:ko,Ticket:po,TicketCheck:a9,TicketMinus:o9,TicketPercent:c9,TicketPlus:t9,TicketSlash:n9,TicketX:d9,Tickets:h9,TicketsPlane:i9,Timer:so,TimerOff:y9,TimerReset:r9,ToggleLeft:k9,ToggleRight:p9,Toilet:s9,Tornado:l9,Torus:u9,Touchpad:v9,TouchpadOff:M9,TowerControl:m9,ToyBrick:_9,Tractor:g9,TrafficCone:L9,TrainFront:w9,TrainFrontTunnel:x9,TrainTrack:f9,TramFront:S2,Transgender:C9,Trash:uo,Trash2:lo,TreeDeciduous:I9,TreePalm:q2,TreePine:N9,Trees:S9,Trello:q9,TrendingDown:Mo,TrendingUp:vo,TrendingUpDown:b9,Triangle:H9,TriangleAlert:S,TriangleDashed:$9,TriangleRight:A9,Trophy:mo,Truck:z9,Turtle:P9,Tv:V9,TvMinimal:b2,TvMinimalPlay:j9,Twitch:B9,Twitter:ba,Type:_o,TypeOutline:F9,Umbrella:R9,UmbrellaOff:D9,Underline:T9,Undo:p0,Undo2:U9,UndoDot:O9,UnfoldHorizontal:Z9,UnfoldVertical:G9,Ungroup:W9,University:$2,Unlink:s0,Unlink2:E9,Unplug:X9,Upload:o0,Usb:K9,User:wo,UserCheck:go,UserCog:J9,UserMinus:Q9,UserPen:Y9,UserPlus:Lo,UserRound:V2,UserRoundCheck:A2,UserRoundCog:H2,UserRoundMinus:z2,UserRoundPen:ev,UserRoundPlus:P2,UserRoundSearch:av,UserRoundX:j2,UserSearch:ov,UserX:xo,Users:fo,UsersRound:B2,Utensils:D2,UtensilsCrossed:F2,UtilityPole:cv,Variable:tv,Vault:nv,Vegan:dv,VenetianMask:iv,Venus:yv,VenusAndMars:hv,Vibrate:kv,VibrateOff:rv,Video:sv,VideoOff:pv,Videotape:lv,View:uv,Voicemail:Mv,Volleyball:vv,Volume:xv,Volume1:mv,Volume2:_v,VolumeOff:gv,VolumeX:Lv,Vote:wv,Wallet:Co,WalletCards:fv,WalletMinimal:R2,Wallpaper:Cv,Wand:Iv,WandSparkles:T2,Warehouse:Nv,WashingMachine:Sv,Watch:qv,Waves:$v,WavesLadder:bv,Waypoints:Av,Webcam:Hv,Webhook:Pv,WebhookOff:zv,Weight:jv,Wheat:Bv,WheatOff:Vv,WholeWord:Fv,Wifi:oo,WifiHigh:Dv,WifiLow:Rv,WifiOff:Tv,WifiZero:Uv,Wind:Zv,WindArrowDown:Ov,Wine:Wv,WineOff:Gv,Workflow:Ev,Worm:Xv,WrapText:Kv,Wrench:Io,X:c0,Youtube:Jv,Zap:No,ZapOff:Qv,ZoomIn:Yv,ZoomOut:em},Symbol.toStringTag,{value:"Module"}));/** * @license lucide-react v0.475.0 - ISC * * This source code is licensed under the ISC license. * See the LICENSE file in the root directory of this source tree. - */const IO=Object.freeze(Object.defineProperty({__proto__:null,AArrowDown:No,AArrowUp:So,ALargeSmall:qo,Accessibility:bo,Activity:$o,AirVent:Ao,Airplay:Ho,AlarmClock:Po,AlarmClockCheck:q,AlarmClockMinus:b,AlarmClockOff:zo,AlarmClockPlus:$,AlarmSmoke:jo,Album:Vo,AlignCenter:t0,AlignCenterHorizontal:Bo,AlignCenterVertical:Fo,AlignEndHorizontal:Do,AlignEndVertical:Ro,AlignHorizontalDistributeCenter:To,AlignHorizontalDistributeEnd:Uo,AlignHorizontalDistributeStart:Oo,AlignHorizontalJustifyCenter:Zo,AlignHorizontalJustifyEnd:Go,AlignHorizontalJustifyStart:Wo,AlignHorizontalSpaceAround:Eo,AlignHorizontalSpaceBetween:Xo,AlignJustify:Ko,AlignLeft:n0,AlignRight:d0,AlignStartHorizontal:Jo,AlignStartVertical:Qo,AlignVerticalDistributeCenter:Yo,AlignVerticalDistributeEnd:ec,AlignVerticalDistributeStart:ac,AlignVerticalJustifyCenter:oc,AlignVerticalJustifyEnd:cc,AlignVerticalJustifyStart:tc,AlignVerticalSpaceAround:nc,AlignVerticalSpaceBetween:dc,Ambulance:ic,Ampersand:hc,Ampersands:yc,Amphora:rc,Anchor:kc,Angry:pc,Annoyed:sc,Antenna:lc,Anvil:uc,Aperture:Mc,AppWindow:mc,AppWindowMac:vc,Apple:_c,Archive:l0,ArchiveRestore:gc,ArchiveX:Lc,Armchair:xc,ArrowBigDown:fc,ArrowBigDownDash:wc,ArrowBigLeft:Ic,ArrowBigLeftDash:Cc,ArrowBigRight:Sc,ArrowBigRightDash:Nc,ArrowBigUp:bc,ArrowBigUpDash:qc,ArrowDown:Fc,ArrowDown01:$c,ArrowDown10:Ac,ArrowDownAZ:A,ArrowDownFromLine:Hc,ArrowDownLeft:_0,ArrowDownNarrowWide:zc,ArrowDownRight:Pc,ArrowDownToDot:jc,ArrowDownToLine:Vc,ArrowDownUp:Bc,ArrowDownWideNarrow:H,ArrowDownZA:z,ArrowLeft:g0,ArrowLeftFromLine:Dc,ArrowLeftRight:Rc,ArrowLeftToLine:Tc,ArrowRight:x0,ArrowRightFromLine:Uc,ArrowRightLeft:L0,ArrowRightToLine:Oc,ArrowUp:Qc,ArrowUp01:Zc,ArrowUp10:Gc,ArrowUpAZ:P,ArrowUpDown:w0,ArrowUpFromDot:Wc,ArrowUpFromLine:Ec,ArrowUpLeft:Xc,ArrowUpNarrowWide:j,ArrowUpRight:f0,ArrowUpToLine:Kc,ArrowUpWideNarrow:Jc,ArrowUpZA:V,ArrowsUpFromLine:Yc,Asterisk:et,AtSign:at,Atom:ot,AudioLines:ct,AudioWaveform:tt,Award:N0,Axe:nt,Axis3d:B,Baby:dt,Backpack:it,Badge:wt,BadgeAlert:ht,BadgeCent:yt,BadgeCheck:F,BadgeDollarSign:rt,BadgeEuro:kt,BadgeHelp:pt,BadgeIndianRupee:st,BadgeInfo:lt,BadgeJapaneseYen:ut,BadgeMinus:Mt,BadgePercent:vt,BadgePlus:mt,BadgePoundSterling:_t,BadgeRussianRuble:gt,BadgeSwissFranc:Lt,BadgeX:xt,BaggageClaim:ft,Ban:S0,Banana:Ct,Bandage:It,Banknote:q0,Barcode:Nt,Baseline:St,Bath:qt,Battery:jt,BatteryCharging:bt,BatteryFull:$t,BatteryLow:At,BatteryMedium:Ht,BatteryPlus:zt,BatteryWarning:Pt,Beaker:Vt,Bean:Ft,BeanOff:Bt,Bed:Tt,BedDouble:Dt,BedSingle:Rt,Beef:Ut,Beer:Zt,BeerOff:Ot,Bell:$0,BellDot:Gt,BellElectric:Wt,BellMinus:Et,BellOff:Xt,BellPlus:Kt,BellRing:Jt,BetweenHorizontalEnd:D,BetweenHorizontalStart:R,BetweenVerticalEnd:Qt,BetweenVerticalStart:Yt,BicepsFlexed:en,Bike:an,Binary:on,Binoculars:cn,Biohazard:tn,Bird:nn,Bitcoin:dn,Blend:hn,Blinds:yn,Blocks:rn,Bluetooth:ln,BluetoothConnected:kn,BluetoothOff:pn,BluetoothSearching:sn,Bold:i0,Bolt:un,Bomb:Mn,Bone:vn,Book:u0,BookA:mn,BookAudio:_n,BookCheck:gn,BookCopy:Ln,BookDashed:T,BookDown:xn,BookHeadphones:wn,BookHeart:fn,BookImage:Cn,BookKey:In,BookLock:Nn,BookMarked:Sn,BookMinus:qn,BookOpen:A0,BookOpenCheck:bn,BookOpenText:$n,BookPlus:An,BookText:Hn,BookType:zn,BookUp:jn,BookUp2:Pn,BookUser:Vn,BookX:Bn,Bookmark:Un,BookmarkCheck:Fn,BookmarkMinus:Dn,BookmarkPlus:Rn,BookmarkX:Tn,BoomBox:On,Bot:Wn,BotMessageSquare:Zn,BotOff:Gn,Box:En,Boxes:H0,Braces:U,Brackets:Xn,Brain:z0,BrainCircuit:Kn,BrainCog:Jn,BrickWall:Qn,Briefcase:j0,BriefcaseBusiness:Yn,BriefcaseConveyorBelt:ed,BriefcaseMedical:ad,BringToFront:od,Brush:cd,Bug:dd,BugOff:td,BugPlay:nd,Building:B0,Building2:V0,Bus:hd,BusFront:id,Cable:rd,CableCar:yd,Cake:pd,CakeSlice:kd,Calculator:F0,Calendar:T0,Calendar1:sd,CalendarArrowDown:ld,CalendarArrowUp:ud,CalendarCheck:D0,CalendarCheck2:Md,CalendarClock:vd,CalendarCog:md,CalendarDays:R0,CalendarFold:_d,CalendarHeart:gd,CalendarMinus:xd,CalendarMinus2:Ld,CalendarOff:wd,CalendarPlus:Cd,CalendarPlus2:fd,CalendarRange:Id,CalendarSearch:Nd,CalendarSync:Sd,CalendarX:bd,CalendarX2:qd,Camera:U0,CameraOff:$d,Candy:zd,CandyCane:Ad,CandyOff:Hd,Cannabis:Pd,Captions:O,CaptionsOff:jd,Car:Fd,CarFront:Vd,CarTaxiFront:Bd,Caravan:Dd,Carrot:Rd,CaseLower:Td,CaseSensitive:Ud,CaseUpper:Od,CassetteTape:Zd,Cast:Gd,Castle:Wd,Cat:Ed,Cctv:Xd,ChartArea:Z,ChartBar:W,ChartBarBig:G,ChartBarDecreasing:Kd,ChartBarIncreasing:Jd,ChartBarStacked:Qd,ChartCandlestick:E,ChartColumn:u,ChartColumnBig:X,ChartColumnDecreasing:Yd,ChartColumnIncreasing:K,ChartColumnStacked:ei,ChartGantt:ai,ChartLine:J,ChartNetwork:oi,ChartNoAxesColumn:v,ChartNoAxesColumnDecreasing:ci,ChartNoAxesColumnIncreasing:M,ChartNoAxesCombined:ti,ChartNoAxesGantt:Q,ChartPie:Y,ChartScatter:e1,ChartSpline:ni,Check:E2,CheckCheck:di,ChefHat:ii,Cherry:hi,ChevronDown:O2,ChevronFirst:yi,ChevronLast:ri,ChevronLeft:O0,ChevronRight:Z0,ChevronUp:Z2,ChevronsDown:pi,ChevronsDownUp:ki,ChevronsLeft:ui,ChevronsLeftRight:li,ChevronsLeftRightEllipsis:si,ChevronsRight:vi,ChevronsRightLeft:Mi,ChevronsUp:mi,ChevronsUpDown:G2,Chrome:_i,Church:gi,Cigarette:xi,CigaretteOff:Li,Circle:G0,CircleAlert:m,CircleArrowDown:a1,CircleArrowLeft:o1,CircleArrowOutDownLeft:c1,CircleArrowOutDownRight:t1,CircleArrowOutUpLeft:n1,CircleArrowOutUpRight:d1,CircleArrowRight:i1,CircleArrowUp:h1,CircleCheck:g,CircleCheckBig:_,CircleChevronDown:y1,CircleChevronLeft:r1,CircleChevronRight:k1,CircleChevronUp:p1,CircleDashed:wi,CircleDivide:s1,CircleDollarSign:fi,CircleDot:Ii,CircleDotDashed:Ci,CircleEllipsis:Ni,CircleEqual:Si,CircleFadingArrowUp:qi,CircleFadingPlus:bi,CircleGauge:l1,CircleHelp:L,CircleMinus:u1,CircleOff:$i,CircleParking:v1,CircleParkingOff:M1,CirclePause:m1,CirclePercent:_1,CirclePlay:g1,CirclePlus:L1,CirclePower:x1,CircleSlash:Ai,CircleSlash2:w1,CircleSmall:Hi,CircleStop:f1,CircleUser:I1,CircleUserRound:C1,CircleX:x,CircuitBoard:zi,Citrus:Pi,Clapperboard:ji,Clipboard:Oi,ClipboardCheck:Vi,ClipboardCopy:Bi,ClipboardList:W0,ClipboardMinus:Fi,ClipboardPaste:Di,ClipboardPen:S1,ClipboardPenLine:N1,ClipboardPlus:Ri,ClipboardType:Ti,ClipboardX:Ui,Clock:E0,Clock1:Zi,Clock10:Gi,Clock11:Wi,Clock12:Ei,Clock2:Xi,Clock3:Ki,Clock4:Ji,Clock5:Qi,Clock6:Yi,Clock7:eh,Clock8:ah,Clock9:oh,ClockAlert:ch,ClockArrowDown:th,ClockArrowUp:nh,Cloud:gh,CloudAlert:dh,CloudCog:ih,CloudDownload:q1,CloudDrizzle:hh,CloudFog:yh,CloudHail:rh,CloudLightning:kh,CloudMoon:sh,CloudMoonRain:ph,CloudOff:lh,CloudRain:Mh,CloudRainWind:uh,CloudSnow:vh,CloudSun:_h,CloudSunRain:mh,CloudUpload:b1,Cloudy:Lh,Clover:xh,Club:wh,Code:X0,CodeXml:$1,Codepen:fh,Codesandbox:Ch,Coffee:Ih,Cog:Nh,Coins:K0,Columns2:A1,Columns3:H1,Columns4:Sh,Combine:qh,Command:bh,Compass:$h,Component:Ah,Computer:Hh,ConciergeBell:zh,Cone:Ph,Construction:jh,Contact:Vh,ContactRound:z1,Container:Bh,Contrast:Fh,Cookie:Dh,CookingPot:Rh,Copy:J0,CopyCheck:Th,CopyMinus:Uh,CopyPlus:Oh,CopySlash:Zh,CopyX:Gh,Copyleft:Wh,Copyright:Eh,CornerDownLeft:Xh,CornerDownRight:Kh,CornerLeftDown:Jh,CornerLeftUp:Qh,CornerRightDown:Yh,CornerRightUp:ey,CornerUpLeft:ay,CornerUpRight:oy,Cpu:cy,CreativeCommons:ty,CreditCard:Q0,Croissant:ny,Crop:dy,Cross:iy,Crosshair:Y0,Crown:ea,Cuboid:hy,CupSoda:yy,Currency:ry,Cylinder:ky,Dam:py,Database:uy,DatabaseBackup:sy,DatabaseZap:ly,Delete:My,Dessert:vy,Diameter:my,Diamond:Ly,DiamondMinus:_y,DiamondPercent:P1,DiamondPlus:gy,Dice1:xy,Dice2:wy,Dice3:fy,Dice4:Cy,Dice5:Iy,Dice6:Ny,Dices:Sy,Diff:qy,Disc:Hy,Disc2:by,Disc3:$y,DiscAlbum:Ay,Divide:zy,Dna:jy,DnaOff:Py,Dock:Vy,Dog:By,DollarSign:aa,Donut:Fy,DoorClosed:Dy,DoorOpen:Ry,Dot:Ty,Download:oa,DraftingCompass:Uy,Drama:Oy,Dribbble:Zy,Drill:Gy,Droplet:Ey,DropletOff:Wy,Droplets:Xy,Drum:Ky,Drumstick:Jy,Dumbbell:Qy,Ear:er,EarOff:Yy,Earth:j1,EarthLock:ar,Eclipse:or,Egg:nr,EggFried:cr,EggOff:tr,Ellipsis:B1,EllipsisVertical:V1,Equal:hr,EqualApproximately:dr,EqualNot:ir,Eraser:yr,EthernetPort:rr,Euro:kr,Expand:pr,ExternalLink:ca,Eye:na,EyeClosed:sr,EyeOff:ta,Facebook:da,Factory:lr,Fan:ur,FastForward:Mr,Feather:vr,Fence:mr,FerrisWheel:_r,Figma:gr,File:s4,FileArchive:Lr,FileAudio:wr,FileAudio2:xr,FileAxis3d:F1,FileBadge:Cr,FileBadge2:fr,FileBox:Ir,FileChartColumn:R1,FileChartColumnIncreasing:D1,FileChartLine:T1,FileChartPie:U1,FileCheck:Sr,FileCheck2:Nr,FileClock:qr,FileCode:$r,FileCode2:br,FileCog:O1,FileDiff:Ar,FileDigit:Hr,FileDown:ha,FileHeart:zr,FileImage:Pr,FileInput:jr,FileJson:Br,FileJson2:Vr,FileKey:Dr,FileKey2:Fr,FileLock:Tr,FileLock2:Rr,FileMinus:Or,FileMinus2:Ur,FileMusic:Zr,FileOutput:Gr,FilePen:G1,FilePenLine:Z1,FilePlus:Er,FilePlus2:Wr,FileQuestion:Xr,FileScan:Kr,FileSearch:Qr,FileSearch2:Jr,FileSliders:Yr,FileSpreadsheet:ya,FileStack:e4,FileSymlink:a4,FileTerminal:o4,FileText:X2,FileType:t4,FileType2:c4,FileUp:ra,FileUser:n4,FileVideo:i4,FileVideo2:d4,FileVolume:y4,FileVolume2:h4,FileWarning:r4,FileX:p4,FileX2:k4,Files:l4,Film:u4,Filter:ka,FilterX:M4,Fingerprint:pa,FireExtinguisher:v4,Fish:g4,FishOff:m4,FishSymbol:_4,Flag:f4,FlagOff:L4,FlagTriangleLeft:x4,FlagTriangleRight:w4,Flame:I4,FlameKindling:C4,Flashlight:S4,FlashlightOff:N4,FlaskConical:b4,FlaskConicalOff:q4,FlaskRound:$4,FlipHorizontal:H4,FlipHorizontal2:A4,FlipVertical:P4,FlipVertical2:z4,Flower:V4,Flower2:j4,Focus:B4,FoldHorizontal:F4,FoldVertical:D4,Folder:P0,FolderArchive:R4,FolderCheck:T4,FolderClock:U4,FolderClosed:O4,FolderCode:Z4,FolderCog:W1,FolderDot:G4,FolderDown:W4,FolderGit:X4,FolderGit2:E4,FolderHeart:K4,FolderInput:J4,FolderKanban:Q4,FolderKey:Y4,FolderLock:ek,FolderMinus:ak,FolderOpen:sa,FolderOpenDot:ok,FolderOutput:ck,FolderPen:E1,FolderPlus:tk,FolderRoot:nk,FolderSearch:ik,FolderSearch2:dk,FolderSymlink:hk,FolderSync:yk,FolderTree:rk,FolderUp:kk,FolderX:pk,Folders:sk,Footprints:lk,Forklift:uk,Forward:Mk,Frame:vk,Framer:mk,Frown:_k,Fuel:gk,Fullscreen:Lk,GalleryHorizontal:wk,GalleryHorizontalEnd:xk,GalleryThumbnails:fk,GalleryVertical:Ik,GalleryVerticalEnd:Ck,Gamepad:Sk,Gamepad2:Nk,Gauge:qk,Gavel:bk,Gem:$k,Ghost:Ak,Gift:la,GitBranch:ua,GitBranchPlus:Hk,GitCommitHorizontal:X1,GitCommitVertical:zk,GitCompare:jk,GitCompareArrows:Pk,GitFork:Vk,GitGraph:Bk,GitMerge:Fk,GitPullRequest:Zk,GitPullRequestArrow:Dk,GitPullRequestClosed:Rk,GitPullRequestCreate:Uk,GitPullRequestCreateArrow:Tk,GitPullRequestDraft:Ok,Github:Gk,Gitlab:Wk,GlassWater:Ek,Glasses:Xk,Globe:Ma,GlobeLock:Kk,Goal:Jk,Grab:Qk,GraduationCap:M0,Grape:Yk,Grid2x2:Y1,Grid2x2Check:K1,Grid2x2Plus:J1,Grid2x2X:Q1,Grid3x3:d,Grip:ap,GripHorizontal:ep,GripVertical:va,Group:op,Guitar:cp,Ham:tp,Hammer:np,Hand:rp,HandCoins:dp,HandHeart:ip,HandHelping:ee,HandMetal:hp,HandPlatter:yp,Handshake:kp,HardDrive:ma,HardDriveDownload:pp,HardDriveUpload:sp,HardHat:lp,Hash:_a,Haze:up,HdmiPort:Mp,Heading:wp,Heading1:vp,Heading2:mp,Heading3:_p,Heading4:gp,Heading5:Lp,Heading6:xp,HeadphoneOff:fp,Headphones:Cp,Headset:Ip,Heart:ga,HeartCrack:Np,HeartHandshake:Sp,HeartOff:qp,HeartPulse:bp,Heater:$p,Hexagon:Ap,Highlighter:Hp,History:C0,Hop:Pp,HopOff:zp,Hospital:jp,Hotel:Vp,Hourglass:Bp,House:f,HousePlug:Fp,HousePlus:Dp,HouseWifi:Rp,IceCreamBowl:ae,IceCreamCone:oe,IdCard:v0,Image:K2,ImageDown:Tp,ImageMinus:Up,ImageOff:Op,ImagePlay:Zp,ImagePlus:Gp,ImageUp:Wp,ImageUpscale:Ep,Images:Xp,Import:Kp,Inbox:Jp,IndentDecrease:ce,IndentIncrease:te,IndianRupee:b0,Infinity:Qp,Info:xa,InspectionPanel:Yp,Instagram:ia,Italic:h0,IterationCcw:e5,IterationCw:a5,JapaneseYen:o5,Joystick:c5,Kanban:t5,Key:d5,KeyRound:I0,KeySquare:n5,Keyboard:y5,KeyboardMusic:i5,KeyboardOff:h5,Lamp:u5,LampCeiling:r5,LampDesk:k5,LampFloor:p5,LampWallDown:s5,LampWallUp:l5,LandPlot:M5,Landmark:v5,Languages:m5,Laptop:g5,LaptopMinimal:ne,LaptopMinimalCheck:_5,Lasso:x5,LassoSelect:L5,Laugh:w5,Layers:C,Layers2:f5,LayoutDashboard:C5,LayoutGrid:wa,LayoutList:fa,LayoutPanelLeft:I5,LayoutPanelTop:N5,LayoutTemplate:S5,Leaf:q5,LeafyGreen:b5,Lectern:$5,LetterText:A5,Library:z5,LibraryBig:H5,LifeBuoy:P5,Ligature:j5,Lightbulb:Ca,LightbulbOff:V5,Link:Na,Link2:Ia,Link2Off:B5,Linkedin:Sa,List:ba,ListCheck:F5,ListChecks:D5,ListCollapse:R5,ListEnd:T5,ListFilter:O5,ListFilterPlus:U5,ListMinus:Z5,ListMusic:G5,ListOrdered:y0,ListPlus:W5,ListRestart:E5,ListStart:X5,ListTodo:K5,ListTree:J5,ListVideo:Q5,ListX:Y5,Loader:as,LoaderCircle:I,LoaderPinwheel:es,Locate:cs,LocateFixed:$a,LocateOff:os,Lock:Aa,LockKeyhole:ts,LockKeyholeOpen:de,LockOpen:s,LogIn:Ha,LogOut:za,Logs:ns,Lollipop:ds,Luggage:is,Magnet:hs,Mail:Pa,MailCheck:ys,MailMinus:rs,MailOpen:ks,MailPlus:ps,MailQuestion:ss,MailSearch:ls,MailWarning:us,MailX:Ms,Mailbox:vs,Mails:ms,Map:$s,MapPin:ja,MapPinCheck:gs,MapPinCheckInside:_s,MapPinHouse:Ls,MapPinMinus:ws,MapPinMinusInside:xs,MapPinOff:fs,MapPinPlus:Is,MapPinPlusInside:Cs,MapPinX:Ss,MapPinXInside:Ns,MapPinned:qs,MapPlus:bs,Mars:Hs,MarsStroke:As,Martini:zs,Maximize:js,Maximize2:Ps,Medal:Vs,Megaphone:Fs,MegaphoneOff:Bs,Meh:Ds,MemoryStick:Rs,Menu:Va,Merge:Ts,MessageCircle:Ys,MessageCircleCode:Us,MessageCircleDashed:Os,MessageCircleHeart:Zs,MessageCircleMore:Gs,MessageCircleOff:Ws,MessageCirclePlus:Es,MessageCircleQuestion:Xs,MessageCircleReply:Ks,MessageCircleWarning:Js,MessageCircleX:Qs,MessageSquare:Fa,MessageSquareCode:e3,MessageSquareDashed:a3,MessageSquareDiff:o3,MessageSquareDot:c3,MessageSquareHeart:t3,MessageSquareLock:n3,MessageSquareMore:d3,MessageSquareOff:i3,MessageSquarePlus:h3,MessageSquareQuote:y3,MessageSquareReply:r3,MessageSquareShare:k3,MessageSquareText:p3,MessageSquareWarning:Ba,MessageSquareX:s3,MessagesSquare:l3,Mic:M3,MicOff:u3,MicVocal:ie,Microchip:v3,Microscope:m3,Microwave:_3,Milestone:g3,Milk:x3,MilkOff:L3,Minimize:f3,Minimize2:w3,Minus:C3,Monitor:Da,MonitorCheck:I3,MonitorCog:N3,MonitorDot:S3,MonitorDown:q3,MonitorOff:b3,MonitorPause:$3,MonitorPlay:A3,MonitorSmartphone:H3,MonitorSpeaker:z3,MonitorStop:P3,MonitorUp:j3,MonitorX:V3,Moon:J2,MoonStar:B3,Mountain:D3,MountainSnow:F3,Mouse:G3,MouseOff:R3,MousePointer:Z3,MousePointer2:T3,MousePointerBan:U3,MousePointerClick:O3,Move:nl,Move3d:he,MoveDiagonal:E3,MoveDiagonal2:W3,MoveDown:J3,MoveDownLeft:X3,MoveDownRight:K3,MoveHorizontal:Q3,MoveLeft:Y3,MoveRight:el,MoveUp:cl,MoveUpLeft:al,MoveUpRight:ol,MoveVertical:tl,Music:yl,Music2:dl,Music3:il,Music4:hl,Navigation:sl,Navigation2:kl,Navigation2Off:rl,NavigationOff:pl,Network:ll,Newspaper:ul,Nfc:Ml,NonBinary:vl,Notebook:Ll,NotebookPen:ml,NotebookTabs:_l,NotebookText:gl,NotepadText:wl,NotepadTextDashed:xl,Nut:Cl,NutOff:fl,Octagon:Nl,OctagonAlert:ye,OctagonMinus:Il,OctagonPause:re,OctagonX:ke,Omega:Sl,Option:ql,Orbit:bl,Origami:$l,Package:Ra,Package2:Al,PackageCheck:Hl,PackageMinus:zl,PackageOpen:Pl,PackagePlus:jl,PackageSearch:Vl,PackageX:Bl,PaintBucket:Fl,PaintRoller:Dl,Paintbrush:Rl,PaintbrushVertical:pe,Palette:Q2,PanelBottom:Ol,PanelBottomClose:Tl,PanelBottomDashed:se,PanelBottomOpen:Ul,PanelLeft:k,PanelLeftClose:le,PanelLeftDashed:ue,PanelLeftOpen:Me,PanelRight:Wl,PanelRightClose:Zl,PanelRightDashed:ve,PanelRightOpen:Gl,PanelTop:Kl,PanelTopClose:El,PanelTopDashed:me,PanelTopOpen:Xl,PanelsLeftBottom:Jl,PanelsRightBottom:Ql,PanelsTopLeft:p,Paperclip:Yl,Parentheses:e6,ParkingMeter:a6,PartyPopper:o6,Pause:c6,PawPrint:t6,PcCase:n6,Pen:_e,PenLine:w,PenOff:d6,PenTool:i6,Pencil:k6,PencilLine:h6,PencilOff:y6,PencilRuler:r6,Pentagon:p6,Percent:Ta,PersonStanding:s6,PhilippinePeso:l6,Phone:Ua,PhoneCall:u6,PhoneForwarded:M6,PhoneIncoming:v6,PhoneMissed:m6,PhoneOff:_6,PhoneOutgoing:g6,Pi:L6,Piano:x6,Pickaxe:w6,PictureInPicture:C6,PictureInPicture2:f6,PiggyBank:I6,Pilcrow:q6,PilcrowLeft:N6,PilcrowRight:S6,Pill:$6,PillBottle:b6,Pin:H6,PinOff:A6,Pipette:z6,Pizza:P6,Plane:Oa,PlaneLanding:j6,PlaneTakeoff:V6,Play:Za,Plug:F6,Plug2:B6,PlugZap:ge,Plus:Y2,Pocket:R6,PocketKnife:D6,Podcast:T6,Pointer:O6,PointerOff:U6,Popcorn:Z6,Popsicle:G6,PoundSterling:W6,Power:X6,PowerOff:E6,Presentation:K6,Printer:Q6,PrinterCheck:J6,Projector:Y6,Proportions:e8,Puzzle:a8,Pyramid:o8,QrCode:Ga,Quote:Wa,Rabbit:c8,Radar:t8,Radiation:n8,Radical:d8,Radio:Ea,RadioReceiver:i8,RadioTower:h8,Radius:y8,RailSymbol:r8,Rainbow:k8,Rat:p8,Ratio:s8,Receipt:x8,ReceiptCent:l8,ReceiptEuro:u8,ReceiptIndianRupee:M8,ReceiptJapaneseYen:v8,ReceiptPoundSterling:m8,ReceiptRussianRuble:_8,ReceiptSwissFranc:g8,ReceiptText:L8,RectangleEllipsis:Le,RectangleHorizontal:w8,RectangleVertical:f8,Recycle:C8,Redo:r0,Redo2:I8,RedoDot:N8,RefreshCcw:q8,RefreshCcwDot:S8,RefreshCw:Xa,RefreshCwOff:b8,Refrigerator:$8,Regex:A8,RemoveFormatting:H8,Repeat:j8,Repeat1:z8,Repeat2:P8,Replace:B8,ReplaceAll:V8,Reply:D8,ReplyAll:F8,Rewind:R8,Ribbon:T8,Rocket:U8,RockingChair:O8,RollerCoaster:Z8,Rotate3d:xe,RotateCcw:W8,RotateCcwSquare:G8,RotateCw:X8,RotateCwSquare:E8,Route:J8,RouteOff:K8,Router:Q8,Rows2:we,Rows3:fe,Rows4:Y8,Rss:e7,Ruler:Ka,RussianRuble:a7,Sailboat:o7,Salad:c7,Sandwich:t7,Satellite:d7,SatelliteDish:n7,Save:e0,SaveAll:i7,SaveOff:h7,Scale:m0,Scale3d:Ce,Scaling:y7,Scan:m7,ScanBarcode:r7,ScanEye:k7,ScanFace:p7,ScanHeart:s7,ScanLine:l7,ScanQrCode:u7,ScanSearch:M7,ScanText:v7,School:_7,Scissors:L7,ScissorsLineDashed:g7,ScreenShare:w7,ScreenShareOff:x7,Scroll:C7,ScrollText:f7,Search:a0,SearchCheck:I7,SearchCode:N7,SearchSlash:S7,SearchX:q7,Section:b7,Send:Ja,SendHorizontal:Ie,SendToBack:$7,SeparatorHorizontal:A7,SeparatorVertical:H7,Server:Qa,ServerCog:z7,ServerCrash:P7,ServerOff:j7,Settings:Ya,Settings2:V7,Shapes:B7,Share:F7,Share2:eo,Sheet:D7,Shell:R7,Shield:La,ShieldAlert:T7,ShieldBan:U7,ShieldCheck:co,ShieldEllipsis:O7,ShieldHalf:Z7,ShieldMinus:G7,ShieldOff:W7,ShieldPlus:E7,ShieldQuestion:X7,ShieldX:Ne,Ship:J7,ShipWheel:K7,Shirt:Q7,ShoppingBag:Y7,ShoppingBasket:eu,ShoppingCart:au,Shovel:ou,ShowerHead:cu,Shrink:tu,Shrub:nu,Shuffle:du,Sigma:iu,Signal:pu,SignalHigh:hu,SignalLow:yu,SignalMedium:ru,SignalZero:ku,Signature:su,Signpost:uu,SignpostBig:lu,Siren:Mu,SkipBack:vu,SkipForward:mu,Skull:_u,Slack:gu,Slash:Lu,Slice:xu,SlidersHorizontal:wu,SlidersVertical:Se,Smartphone:ao,SmartphoneCharging:fu,SmartphoneNfc:Cu,Smile:Nu,SmilePlus:Iu,Snail:Su,Snowflake:qu,Sofa:bu,Soup:$u,Space:Au,Spade:Hu,Sparkle:zu,Sparkles:l,Speaker:Pu,Speech:ju,SpellCheck:Bu,SpellCheck2:Vu,Spline:Fu,Split:Du,SprayCan:Ru,Sprout:Tu,Square:Eu,SquareActivity:qe,SquareArrowDown:Ae,SquareArrowDownLeft:be,SquareArrowDownRight:$e,SquareArrowLeft:He,SquareArrowOutDownLeft:ze,SquareArrowOutDownRight:Pe,SquareArrowOutUpLeft:je,SquareArrowOutUpRight:Ve,SquareArrowRight:Be,SquareArrowUp:Re,SquareArrowUpLeft:Fe,SquareArrowUpRight:De,SquareAsterisk:Te,SquareBottomDashedScissors:Ue,SquareChartGantt:i,SquareCheck:Oe,SquareCheckBig:N,SquareChevronDown:Ze,SquareChevronLeft:Ge,SquareChevronRight:We,SquareChevronUp:Ee,SquareCode:Xe,SquareDashed:Qe,SquareDashedBottom:Ou,SquareDashedBottomCode:Uu,SquareDashedKanban:Ke,SquareDashedMousePointer:Je,SquareDivide:Ye,SquareDot:e2,SquareEqual:a2,SquareFunction:o2,SquareKanban:c2,SquareLibrary:t2,SquareM:n2,SquareMenu:d2,SquareMinus:i2,SquareMousePointer:h2,SquareParking:r2,SquareParkingOff:y2,SquarePen:n,SquarePercent:k2,SquarePi:p2,SquarePilcrow:s2,SquarePlay:l2,SquarePlus:u2,SquarePower:M2,SquareRadical:Zu,SquareScissors:v2,SquareSigma:m2,SquareSlash:_2,SquareSplitHorizontal:g2,SquareSplitVertical:L2,SquareSquare:Gu,SquareStack:Wu,SquareTerminal:x2,SquareUser:f2,SquareUserRound:w2,SquareX:C2,Squircle:Xu,Squirrel:Ku,Stamp:Ju,Star:to,StarHalf:Qu,StarOff:Yu,StepBack:eM,StepForward:aM,Stethoscope:oM,Sticker:cM,StickyNote:tM,Store:nM,StretchHorizontal:dM,StretchVertical:iM,Strikethrough:k0,Subscript:hM,Sun:no,SunDim:yM,SunMedium:rM,SunMoon:kM,SunSnow:pM,Sunrise:sM,Sunset:lM,Superscript:uM,SwatchBook:MM,SwissFranc:vM,SwitchCamera:mM,Sword:_M,Swords:gM,Syringe:LM,Table:qM,Table2:xM,TableCellsMerge:wM,TableCellsSplit:fM,TableColumnsSplit:CM,TableOfContents:IM,TableProperties:NM,TableRowsSplit:SM,Tablet:$M,TabletSmartphone:bM,Tablets:AM,Tag:io,Tags:HM,Tally1:zM,Tally2:PM,Tally3:jM,Tally4:VM,Tally5:BM,Tangent:FM,Target:ho,Telescope:DM,Tent:TM,TentTree:RM,Terminal:UM,TestTube:OM,TestTubeDiagonal:I2,TestTubes:ZM,Text:KM,TextCursor:WM,TextCursorInput:GM,TextQuote:EM,TextSearch:XM,TextSelect:N2,Theater:JM,Thermometer:e9,ThermometerSnowflake:QM,ThermometerSun:YM,ThumbsDown:yo,ThumbsUp:ro,Ticket:ko,TicketCheck:a9,TicketMinus:o9,TicketPercent:c9,TicketPlus:t9,TicketSlash:n9,TicketX:d9,Tickets:h9,TicketsPlane:i9,Timer:po,TimerOff:y9,TimerReset:r9,ToggleLeft:k9,ToggleRight:p9,Toilet:s9,Tornado:l9,Torus:u9,Touchpad:v9,TouchpadOff:M9,TowerControl:m9,ToyBrick:_9,Tractor:g9,TrafficCone:L9,TrainFront:w9,TrainFrontTunnel:x9,TrainTrack:f9,TramFront:S2,Transgender:C9,Trash:lo,Trash2:so,TreeDeciduous:I9,TreePalm:q2,TreePine:N9,Trees:S9,Trello:q9,TrendingDown:uo,TrendingUp:Mo,TrendingUpDown:b9,Triangle:H9,TriangleAlert:S,TriangleDashed:$9,TriangleRight:A9,Trophy:vo,Truck:z9,Turtle:P9,Tv:V9,TvMinimal:b2,TvMinimalPlay:j9,Twitch:B9,Twitter:qa,Type:mo,TypeOutline:F9,Umbrella:R9,UmbrellaOff:D9,Underline:T9,Undo:p0,Undo2:U9,UndoDot:O9,UnfoldHorizontal:Z9,UnfoldVertical:G9,Ungroup:W9,University:$2,Unlink:s0,Unlink2:E9,Unplug:X9,Upload:o0,Usb:K9,User:xo,UserCheck:_o,UserCog:J9,UserMinus:Q9,UserPen:Y9,UserPlus:go,UserRound:V2,UserRoundCheck:A2,UserRoundCog:H2,UserRoundMinus:z2,UserRoundPen:ev,UserRoundPlus:P2,UserRoundSearch:av,UserRoundX:j2,UserSearch:ov,UserX:Lo,Users:wo,UsersRound:B2,Utensils:D2,UtensilsCrossed:F2,UtilityPole:cv,Variable:tv,Vault:nv,Vegan:dv,VenetianMask:iv,Venus:yv,VenusAndMars:hv,Vibrate:kv,VibrateOff:rv,Video:sv,VideoOff:pv,Videotape:lv,View:uv,Voicemail:Mv,Volleyball:vv,Volume:xv,Volume1:mv,Volume2:_v,VolumeOff:gv,VolumeX:Lv,Vote:wv,Wallet:fo,WalletCards:fv,WalletMinimal:R2,Wallpaper:Cv,Wand:Iv,WandSparkles:T2,Warehouse:Nv,WashingMachine:Sv,Watch:qv,Waves:$v,WavesLadder:bv,Waypoints:Av,Webcam:Hv,Webhook:Pv,WebhookOff:zv,Weight:jv,Wheat:Bv,WheatOff:Vv,WholeWord:Fv,Wifi:oo,WifiHigh:Dv,WifiLow:Rv,WifiOff:Tv,WifiZero:Uv,Wind:Zv,WindArrowDown:Ov,Wine:Wv,WineOff:Gv,Workflow:Ev,Worm:Xv,WrapText:Kv,Wrench:Co,X:c0,Youtube:Jv,Zap:Io,ZapOff:Qv,ZoomIn:Yv,ZoomOut:em},Symbol.toStringTag,{value:"Module"}));/** - * @license lucide-react v0.475.0 - ISC - * - * This source code is licensed under the ISC license. - * See the LICENSE file in the root directory of this source tree. - */const NO=Object.freeze(Object.defineProperty({__proto__:null,AArrowDown:No,AArrowDownIcon:No,AArrowUp:So,AArrowUpIcon:So,ALargeSmall:qo,ALargeSmallIcon:qo,Accessibility:bo,AccessibilityIcon:bo,Activity:$o,ActivityIcon:$o,ActivitySquare:qe,ActivitySquareIcon:qe,AirVent:Ao,AirVentIcon:Ao,Airplay:Ho,AirplayIcon:Ho,AlarmCheck:q,AlarmCheckIcon:q,AlarmClock:Po,AlarmClockCheck:q,AlarmClockCheckIcon:q,AlarmClockIcon:Po,AlarmClockMinus:b,AlarmClockMinusIcon:b,AlarmClockOff:zo,AlarmClockOffIcon:zo,AlarmClockPlus:$,AlarmClockPlusIcon:$,AlarmMinus:b,AlarmMinusIcon:b,AlarmPlus:$,AlarmPlusIcon:$,AlarmSmoke:jo,AlarmSmokeIcon:jo,Album:Vo,AlbumIcon:Vo,AlertCircle:m,AlertCircleIcon:m,AlertOctagon:ye,AlertOctagonIcon:ye,AlertTriangle:S,AlertTriangleIcon:S,AlignCenter:t0,AlignCenterHorizontal:Bo,AlignCenterHorizontalIcon:Bo,AlignCenterIcon:t0,AlignCenterVertical:Fo,AlignCenterVerticalIcon:Fo,AlignEndHorizontal:Do,AlignEndHorizontalIcon:Do,AlignEndVertical:Ro,AlignEndVerticalIcon:Ro,AlignHorizontalDistributeCenter:To,AlignHorizontalDistributeCenterIcon:To,AlignHorizontalDistributeEnd:Uo,AlignHorizontalDistributeEndIcon:Uo,AlignHorizontalDistributeStart:Oo,AlignHorizontalDistributeStartIcon:Oo,AlignHorizontalJustifyCenter:Zo,AlignHorizontalJustifyCenterIcon:Zo,AlignHorizontalJustifyEnd:Go,AlignHorizontalJustifyEndIcon:Go,AlignHorizontalJustifyStart:Wo,AlignHorizontalJustifyStartIcon:Wo,AlignHorizontalSpaceAround:Eo,AlignHorizontalSpaceAroundIcon:Eo,AlignHorizontalSpaceBetween:Xo,AlignHorizontalSpaceBetweenIcon:Xo,AlignJustify:Ko,AlignJustifyIcon:Ko,AlignLeft:n0,AlignLeftIcon:n0,AlignRight:d0,AlignRightIcon:d0,AlignStartHorizontal:Jo,AlignStartHorizontalIcon:Jo,AlignStartVertical:Qo,AlignStartVerticalIcon:Qo,AlignVerticalDistributeCenter:Yo,AlignVerticalDistributeCenterIcon:Yo,AlignVerticalDistributeEnd:ec,AlignVerticalDistributeEndIcon:ec,AlignVerticalDistributeStart:ac,AlignVerticalDistributeStartIcon:ac,AlignVerticalJustifyCenter:oc,AlignVerticalJustifyCenterIcon:oc,AlignVerticalJustifyEnd:cc,AlignVerticalJustifyEndIcon:cc,AlignVerticalJustifyStart:tc,AlignVerticalJustifyStartIcon:tc,AlignVerticalSpaceAround:nc,AlignVerticalSpaceAroundIcon:nc,AlignVerticalSpaceBetween:dc,AlignVerticalSpaceBetweenIcon:dc,Ambulance:ic,AmbulanceIcon:ic,Ampersand:hc,AmpersandIcon:hc,Ampersands:yc,AmpersandsIcon:yc,Amphora:rc,AmphoraIcon:rc,Anchor:kc,AnchorIcon:kc,Angry:pc,AngryIcon:pc,Annoyed:sc,AnnoyedIcon:sc,Antenna:lc,AntennaIcon:lc,Anvil:uc,AnvilIcon:uc,Aperture:Mc,ApertureIcon:Mc,AppWindow:mc,AppWindowIcon:mc,AppWindowMac:vc,AppWindowMacIcon:vc,Apple:_c,AppleIcon:_c,Archive:l0,ArchiveIcon:l0,ArchiveRestore:gc,ArchiveRestoreIcon:gc,ArchiveX:Lc,ArchiveXIcon:Lc,AreaChart:Z,AreaChartIcon:Z,Armchair:xc,ArmchairIcon:xc,ArrowBigDown:fc,ArrowBigDownDash:wc,ArrowBigDownDashIcon:wc,ArrowBigDownIcon:fc,ArrowBigLeft:Ic,ArrowBigLeftDash:Cc,ArrowBigLeftDashIcon:Cc,ArrowBigLeftIcon:Ic,ArrowBigRight:Sc,ArrowBigRightDash:Nc,ArrowBigRightDashIcon:Nc,ArrowBigRightIcon:Sc,ArrowBigUp:bc,ArrowBigUpDash:qc,ArrowBigUpDashIcon:qc,ArrowBigUpIcon:bc,ArrowDown:Fc,ArrowDown01:$c,ArrowDown01Icon:$c,ArrowDown10:Ac,ArrowDown10Icon:Ac,ArrowDownAZ:A,ArrowDownAZIcon:A,ArrowDownAz:A,ArrowDownAzIcon:A,ArrowDownCircle:a1,ArrowDownCircleIcon:a1,ArrowDownFromLine:Hc,ArrowDownFromLineIcon:Hc,ArrowDownIcon:Fc,ArrowDownLeft:_0,ArrowDownLeftFromCircle:c1,ArrowDownLeftFromCircleIcon:c1,ArrowDownLeftFromSquare:ze,ArrowDownLeftFromSquareIcon:ze,ArrowDownLeftIcon:_0,ArrowDownLeftSquare:be,ArrowDownLeftSquareIcon:be,ArrowDownNarrowWide:zc,ArrowDownNarrowWideIcon:zc,ArrowDownRight:Pc,ArrowDownRightFromCircle:t1,ArrowDownRightFromCircleIcon:t1,ArrowDownRightFromSquare:Pe,ArrowDownRightFromSquareIcon:Pe,ArrowDownRightIcon:Pc,ArrowDownRightSquare:$e,ArrowDownRightSquareIcon:$e,ArrowDownSquare:Ae,ArrowDownSquareIcon:Ae,ArrowDownToDot:jc,ArrowDownToDotIcon:jc,ArrowDownToLine:Vc,ArrowDownToLineIcon:Vc,ArrowDownUp:Bc,ArrowDownUpIcon:Bc,ArrowDownWideNarrow:H,ArrowDownWideNarrowIcon:H,ArrowDownZA:z,ArrowDownZAIcon:z,ArrowDownZa:z,ArrowDownZaIcon:z,ArrowLeft:g0,ArrowLeftCircle:o1,ArrowLeftCircleIcon:o1,ArrowLeftFromLine:Dc,ArrowLeftFromLineIcon:Dc,ArrowLeftIcon:g0,ArrowLeftRight:Rc,ArrowLeftRightIcon:Rc,ArrowLeftSquare:He,ArrowLeftSquareIcon:He,ArrowLeftToLine:Tc,ArrowLeftToLineIcon:Tc,ArrowRight:x0,ArrowRightCircle:i1,ArrowRightCircleIcon:i1,ArrowRightFromLine:Uc,ArrowRightFromLineIcon:Uc,ArrowRightIcon:x0,ArrowRightLeft:L0,ArrowRightLeftIcon:L0,ArrowRightSquare:Be,ArrowRightSquareIcon:Be,ArrowRightToLine:Oc,ArrowRightToLineIcon:Oc,ArrowUp:Qc,ArrowUp01:Zc,ArrowUp01Icon:Zc,ArrowUp10:Gc,ArrowUp10Icon:Gc,ArrowUpAZ:P,ArrowUpAZIcon:P,ArrowUpAz:P,ArrowUpAzIcon:P,ArrowUpCircle:h1,ArrowUpCircleIcon:h1,ArrowUpDown:w0,ArrowUpDownIcon:w0,ArrowUpFromDot:Wc,ArrowUpFromDotIcon:Wc,ArrowUpFromLine:Ec,ArrowUpFromLineIcon:Ec,ArrowUpIcon:Qc,ArrowUpLeft:Xc,ArrowUpLeftFromCircle:n1,ArrowUpLeftFromCircleIcon:n1,ArrowUpLeftFromSquare:je,ArrowUpLeftFromSquareIcon:je,ArrowUpLeftIcon:Xc,ArrowUpLeftSquare:Fe,ArrowUpLeftSquareIcon:Fe,ArrowUpNarrowWide:j,ArrowUpNarrowWideIcon:j,ArrowUpRight:f0,ArrowUpRightFromCircle:d1,ArrowUpRightFromCircleIcon:d1,ArrowUpRightFromSquare:Ve,ArrowUpRightFromSquareIcon:Ve,ArrowUpRightIcon:f0,ArrowUpRightSquare:De,ArrowUpRightSquareIcon:De,ArrowUpSquare:Re,ArrowUpSquareIcon:Re,ArrowUpToLine:Kc,ArrowUpToLineIcon:Kc,ArrowUpWideNarrow:Jc,ArrowUpWideNarrowIcon:Jc,ArrowUpZA:V,ArrowUpZAIcon:V,ArrowUpZa:V,ArrowUpZaIcon:V,ArrowsUpFromLine:Yc,ArrowsUpFromLineIcon:Yc,Asterisk:et,AsteriskIcon:et,AsteriskSquare:Te,AsteriskSquareIcon:Te,AtSign:at,AtSignIcon:at,Atom:ot,AtomIcon:ot,AudioLines:ct,AudioLinesIcon:ct,AudioWaveform:tt,AudioWaveformIcon:tt,Award:N0,AwardIcon:N0,Axe:nt,AxeIcon:nt,Axis3D:B,Axis3DIcon:B,Axis3d:B,Axis3dIcon:B,Baby:dt,BabyIcon:dt,Backpack:it,BackpackIcon:it,Badge:wt,BadgeAlert:ht,BadgeAlertIcon:ht,BadgeCent:yt,BadgeCentIcon:yt,BadgeCheck:F,BadgeCheckIcon:F,BadgeDollarSign:rt,BadgeDollarSignIcon:rt,BadgeEuro:kt,BadgeEuroIcon:kt,BadgeHelp:pt,BadgeHelpIcon:pt,BadgeIcon:wt,BadgeIndianRupee:st,BadgeIndianRupeeIcon:st,BadgeInfo:lt,BadgeInfoIcon:lt,BadgeJapaneseYen:ut,BadgeJapaneseYenIcon:ut,BadgeMinus:Mt,BadgeMinusIcon:Mt,BadgePercent:vt,BadgePercentIcon:vt,BadgePlus:mt,BadgePlusIcon:mt,BadgePoundSterling:_t,BadgePoundSterlingIcon:_t,BadgeRussianRuble:gt,BadgeRussianRubleIcon:gt,BadgeSwissFranc:Lt,BadgeSwissFrancIcon:Lt,BadgeX:xt,BadgeXIcon:xt,BaggageClaim:ft,BaggageClaimIcon:ft,Ban:S0,BanIcon:S0,Banana:Ct,BananaIcon:Ct,Bandage:It,BandageIcon:It,Banknote:q0,BanknoteIcon:q0,BarChart:M,BarChart2:v,BarChart2Icon:v,BarChart3:u,BarChart3Icon:u,BarChart4:K,BarChart4Icon:K,BarChartBig:X,BarChartBigIcon:X,BarChartHorizontal:W,BarChartHorizontalBig:G,BarChartHorizontalBigIcon:G,BarChartHorizontalIcon:W,BarChartIcon:M,Barcode:Nt,BarcodeIcon:Nt,Baseline:St,BaselineIcon:St,Bath:qt,BathIcon:qt,Battery:jt,BatteryCharging:bt,BatteryChargingIcon:bt,BatteryFull:$t,BatteryFullIcon:$t,BatteryIcon:jt,BatteryLow:At,BatteryLowIcon:At,BatteryMedium:Ht,BatteryMediumIcon:Ht,BatteryPlus:zt,BatteryPlusIcon:zt,BatteryWarning:Pt,BatteryWarningIcon:Pt,Beaker:Vt,BeakerIcon:Vt,Bean:Ft,BeanIcon:Ft,BeanOff:Bt,BeanOffIcon:Bt,Bed:Tt,BedDouble:Dt,BedDoubleIcon:Dt,BedIcon:Tt,BedSingle:Rt,BedSingleIcon:Rt,Beef:Ut,BeefIcon:Ut,Beer:Zt,BeerIcon:Zt,BeerOff:Ot,BeerOffIcon:Ot,Bell:$0,BellDot:Gt,BellDotIcon:Gt,BellElectric:Wt,BellElectricIcon:Wt,BellIcon:$0,BellMinus:Et,BellMinusIcon:Et,BellOff:Xt,BellOffIcon:Xt,BellPlus:Kt,BellPlusIcon:Kt,BellRing:Jt,BellRingIcon:Jt,BetweenHorizonalEnd:D,BetweenHorizonalEndIcon:D,BetweenHorizonalStart:R,BetweenHorizonalStartIcon:R,BetweenHorizontalEnd:D,BetweenHorizontalEndIcon:D,BetweenHorizontalStart:R,BetweenHorizontalStartIcon:R,BetweenVerticalEnd:Qt,BetweenVerticalEndIcon:Qt,BetweenVerticalStart:Yt,BetweenVerticalStartIcon:Yt,BicepsFlexed:en,BicepsFlexedIcon:en,Bike:an,BikeIcon:an,Binary:on,BinaryIcon:on,Binoculars:cn,BinocularsIcon:cn,Biohazard:tn,BiohazardIcon:tn,Bird:nn,BirdIcon:nn,Bitcoin:dn,BitcoinIcon:dn,Blend:hn,BlendIcon:hn,Blinds:yn,BlindsIcon:yn,Blocks:rn,BlocksIcon:rn,Bluetooth:ln,BluetoothConnected:kn,BluetoothConnectedIcon:kn,BluetoothIcon:ln,BluetoothOff:pn,BluetoothOffIcon:pn,BluetoothSearching:sn,BluetoothSearchingIcon:sn,Bold:i0,BoldIcon:i0,Bolt:un,BoltIcon:un,Bomb:Mn,BombIcon:Mn,Bone:vn,BoneIcon:vn,Book:u0,BookA:mn,BookAIcon:mn,BookAudio:_n,BookAudioIcon:_n,BookCheck:gn,BookCheckIcon:gn,BookCopy:Ln,BookCopyIcon:Ln,BookDashed:T,BookDashedIcon:T,BookDown:xn,BookDownIcon:xn,BookHeadphones:wn,BookHeadphonesIcon:wn,BookHeart:fn,BookHeartIcon:fn,BookIcon:u0,BookImage:Cn,BookImageIcon:Cn,BookKey:In,BookKeyIcon:In,BookLock:Nn,BookLockIcon:Nn,BookMarked:Sn,BookMarkedIcon:Sn,BookMinus:qn,BookMinusIcon:qn,BookOpen:A0,BookOpenCheck:bn,BookOpenCheckIcon:bn,BookOpenIcon:A0,BookOpenText:$n,BookOpenTextIcon:$n,BookPlus:An,BookPlusIcon:An,BookTemplate:T,BookTemplateIcon:T,BookText:Hn,BookTextIcon:Hn,BookType:zn,BookTypeIcon:zn,BookUp:jn,BookUp2:Pn,BookUp2Icon:Pn,BookUpIcon:jn,BookUser:Vn,BookUserIcon:Vn,BookX:Bn,BookXIcon:Bn,Bookmark:Un,BookmarkCheck:Fn,BookmarkCheckIcon:Fn,BookmarkIcon:Un,BookmarkMinus:Dn,BookmarkMinusIcon:Dn,BookmarkPlus:Rn,BookmarkPlusIcon:Rn,BookmarkX:Tn,BookmarkXIcon:Tn,BoomBox:On,BoomBoxIcon:On,Bot:Wn,BotIcon:Wn,BotMessageSquare:Zn,BotMessageSquareIcon:Zn,BotOff:Gn,BotOffIcon:Gn,Box:En,BoxIcon:En,BoxSelect:Qe,BoxSelectIcon:Qe,Boxes:H0,BoxesIcon:H0,Braces:U,BracesIcon:U,Brackets:Xn,BracketsIcon:Xn,Brain:z0,BrainCircuit:Kn,BrainCircuitIcon:Kn,BrainCog:Jn,BrainCogIcon:Jn,BrainIcon:z0,BrickWall:Qn,BrickWallIcon:Qn,Briefcase:j0,BriefcaseBusiness:Yn,BriefcaseBusinessIcon:Yn,BriefcaseConveyorBelt:ed,BriefcaseConveyorBeltIcon:ed,BriefcaseIcon:j0,BriefcaseMedical:ad,BriefcaseMedicalIcon:ad,BringToFront:od,BringToFrontIcon:od,Brush:cd,BrushIcon:cd,Bug:dd,BugIcon:dd,BugOff:td,BugOffIcon:td,BugPlay:nd,BugPlayIcon:nd,Building:B0,Building2:V0,Building2Icon:V0,BuildingIcon:B0,Bus:hd,BusFront:id,BusFrontIcon:id,BusIcon:hd,Cable:rd,CableCar:yd,CableCarIcon:yd,CableIcon:rd,Cake:pd,CakeIcon:pd,CakeSlice:kd,CakeSliceIcon:kd,Calculator:F0,CalculatorIcon:F0,Calendar:T0,Calendar1:sd,Calendar1Icon:sd,CalendarArrowDown:ld,CalendarArrowDownIcon:ld,CalendarArrowUp:ud,CalendarArrowUpIcon:ud,CalendarCheck:D0,CalendarCheck2:Md,CalendarCheck2Icon:Md,CalendarCheckIcon:D0,CalendarClock:vd,CalendarClockIcon:vd,CalendarCog:md,CalendarCogIcon:md,CalendarDays:R0,CalendarDaysIcon:R0,CalendarFold:_d,CalendarFoldIcon:_d,CalendarHeart:gd,CalendarHeartIcon:gd,CalendarIcon:T0,CalendarMinus:xd,CalendarMinus2:Ld,CalendarMinus2Icon:Ld,CalendarMinusIcon:xd,CalendarOff:wd,CalendarOffIcon:wd,CalendarPlus:Cd,CalendarPlus2:fd,CalendarPlus2Icon:fd,CalendarPlusIcon:Cd,CalendarRange:Id,CalendarRangeIcon:Id,CalendarSearch:Nd,CalendarSearchIcon:Nd,CalendarSync:Sd,CalendarSyncIcon:Sd,CalendarX:bd,CalendarX2:qd,CalendarX2Icon:qd,CalendarXIcon:bd,Camera:U0,CameraIcon:U0,CameraOff:$d,CameraOffIcon:$d,CandlestickChart:E,CandlestickChartIcon:E,Candy:zd,CandyCane:Ad,CandyCaneIcon:Ad,CandyIcon:zd,CandyOff:Hd,CandyOffIcon:Hd,Cannabis:Pd,CannabisIcon:Pd,Captions:O,CaptionsIcon:O,CaptionsOff:jd,CaptionsOffIcon:jd,Car:Fd,CarFront:Vd,CarFrontIcon:Vd,CarIcon:Fd,CarTaxiFront:Bd,CarTaxiFrontIcon:Bd,Caravan:Dd,CaravanIcon:Dd,Carrot:Rd,CarrotIcon:Rd,CaseLower:Td,CaseLowerIcon:Td,CaseSensitive:Ud,CaseSensitiveIcon:Ud,CaseUpper:Od,CaseUpperIcon:Od,CassetteTape:Zd,CassetteTapeIcon:Zd,Cast:Gd,CastIcon:Gd,Castle:Wd,CastleIcon:Wd,Cat:Ed,CatIcon:Ed,Cctv:Xd,CctvIcon:Xd,ChartArea:Z,ChartAreaIcon:Z,ChartBar:W,ChartBarBig:G,ChartBarBigIcon:G,ChartBarDecreasing:Kd,ChartBarDecreasingIcon:Kd,ChartBarIcon:W,ChartBarIncreasing:Jd,ChartBarIncreasingIcon:Jd,ChartBarStacked:Qd,ChartBarStackedIcon:Qd,ChartCandlestick:E,ChartCandlestickIcon:E,ChartColumn:u,ChartColumnBig:X,ChartColumnBigIcon:X,ChartColumnDecreasing:Yd,ChartColumnDecreasingIcon:Yd,ChartColumnIcon:u,ChartColumnIncreasing:K,ChartColumnIncreasingIcon:K,ChartColumnStacked:ei,ChartColumnStackedIcon:ei,ChartGantt:ai,ChartGanttIcon:ai,ChartLine:J,ChartLineIcon:J,ChartNetwork:oi,ChartNetworkIcon:oi,ChartNoAxesColumn:v,ChartNoAxesColumnDecreasing:ci,ChartNoAxesColumnDecreasingIcon:ci,ChartNoAxesColumnIcon:v,ChartNoAxesColumnIncreasing:M,ChartNoAxesColumnIncreasingIcon:M,ChartNoAxesCombined:ti,ChartNoAxesCombinedIcon:ti,ChartNoAxesGantt:Q,ChartNoAxesGanttIcon:Q,ChartPie:Y,ChartPieIcon:Y,ChartScatter:e1,ChartScatterIcon:e1,ChartSpline:ni,ChartSplineIcon:ni,Check:E2,CheckCheck:di,CheckCheckIcon:di,CheckCircle:_,CheckCircle2:g,CheckCircle2Icon:g,CheckCircleIcon:_,CheckIcon:E2,CheckSquare:N,CheckSquare2:Oe,CheckSquare2Icon:Oe,CheckSquareIcon:N,ChefHat:ii,ChefHatIcon:ii,Cherry:hi,CherryIcon:hi,ChevronDown:O2,ChevronDownCircle:y1,ChevronDownCircleIcon:y1,ChevronDownIcon:O2,ChevronDownSquare:Ze,ChevronDownSquareIcon:Ze,ChevronFirst:yi,ChevronFirstIcon:yi,ChevronLast:ri,ChevronLastIcon:ri,ChevronLeft:O0,ChevronLeftCircle:r1,ChevronLeftCircleIcon:r1,ChevronLeftIcon:O0,ChevronLeftSquare:Ge,ChevronLeftSquareIcon:Ge,ChevronRight:Z0,ChevronRightCircle:k1,ChevronRightCircleIcon:k1,ChevronRightIcon:Z0,ChevronRightSquare:We,ChevronRightSquareIcon:We,ChevronUp:Z2,ChevronUpCircle:p1,ChevronUpCircleIcon:p1,ChevronUpIcon:Z2,ChevronUpSquare:Ee,ChevronUpSquareIcon:Ee,ChevronsDown:pi,ChevronsDownIcon:pi,ChevronsDownUp:ki,ChevronsDownUpIcon:ki,ChevronsLeft:ui,ChevronsLeftIcon:ui,ChevronsLeftRight:li,ChevronsLeftRightEllipsis:si,ChevronsLeftRightEllipsisIcon:si,ChevronsLeftRightIcon:li,ChevronsRight:vi,ChevronsRightIcon:vi,ChevronsRightLeft:Mi,ChevronsRightLeftIcon:Mi,ChevronsUp:mi,ChevronsUpDown:G2,ChevronsUpDownIcon:G2,ChevronsUpIcon:mi,Chrome:_i,ChromeIcon:_i,Church:gi,ChurchIcon:gi,Cigarette:xi,CigaretteIcon:xi,CigaretteOff:Li,CigaretteOffIcon:Li,Circle:G0,CircleAlert:m,CircleAlertIcon:m,CircleArrowDown:a1,CircleArrowDownIcon:a1,CircleArrowLeft:o1,CircleArrowLeftIcon:o1,CircleArrowOutDownLeft:c1,CircleArrowOutDownLeftIcon:c1,CircleArrowOutDownRight:t1,CircleArrowOutDownRightIcon:t1,CircleArrowOutUpLeft:n1,CircleArrowOutUpLeftIcon:n1,CircleArrowOutUpRight:d1,CircleArrowOutUpRightIcon:d1,CircleArrowRight:i1,CircleArrowRightIcon:i1,CircleArrowUp:h1,CircleArrowUpIcon:h1,CircleCheck:g,CircleCheckBig:_,CircleCheckBigIcon:_,CircleCheckIcon:g,CircleChevronDown:y1,CircleChevronDownIcon:y1,CircleChevronLeft:r1,CircleChevronLeftIcon:r1,CircleChevronRight:k1,CircleChevronRightIcon:k1,CircleChevronUp:p1,CircleChevronUpIcon:p1,CircleDashed:wi,CircleDashedIcon:wi,CircleDivide:s1,CircleDivideIcon:s1,CircleDollarSign:fi,CircleDollarSignIcon:fi,CircleDot:Ii,CircleDotDashed:Ci,CircleDotDashedIcon:Ci,CircleDotIcon:Ii,CircleEllipsis:Ni,CircleEllipsisIcon:Ni,CircleEqual:Si,CircleEqualIcon:Si,CircleFadingArrowUp:qi,CircleFadingArrowUpIcon:qi,CircleFadingPlus:bi,CircleFadingPlusIcon:bi,CircleGauge:l1,CircleGaugeIcon:l1,CircleHelp:L,CircleHelpIcon:L,CircleIcon:G0,CircleMinus:u1,CircleMinusIcon:u1,CircleOff:$i,CircleOffIcon:$i,CircleParking:v1,CircleParkingIcon:v1,CircleParkingOff:M1,CircleParkingOffIcon:M1,CirclePause:m1,CirclePauseIcon:m1,CirclePercent:_1,CirclePercentIcon:_1,CirclePlay:g1,CirclePlayIcon:g1,CirclePlus:L1,CirclePlusIcon:L1,CirclePower:x1,CirclePowerIcon:x1,CircleSlash:Ai,CircleSlash2:w1,CircleSlash2Icon:w1,CircleSlashIcon:Ai,CircleSlashed:w1,CircleSlashedIcon:w1,CircleSmall:Hi,CircleSmallIcon:Hi,CircleStop:f1,CircleStopIcon:f1,CircleUser:I1,CircleUserIcon:I1,CircleUserRound:C1,CircleUserRoundIcon:C1,CircleX:x,CircleXIcon:x,CircuitBoard:zi,CircuitBoardIcon:zi,Citrus:Pi,CitrusIcon:Pi,Clapperboard:ji,ClapperboardIcon:ji,Clipboard:Oi,ClipboardCheck:Vi,ClipboardCheckIcon:Vi,ClipboardCopy:Bi,ClipboardCopyIcon:Bi,ClipboardEdit:S1,ClipboardEditIcon:S1,ClipboardIcon:Oi,ClipboardList:W0,ClipboardListIcon:W0,ClipboardMinus:Fi,ClipboardMinusIcon:Fi,ClipboardPaste:Di,ClipboardPasteIcon:Di,ClipboardPen:S1,ClipboardPenIcon:S1,ClipboardPenLine:N1,ClipboardPenLineIcon:N1,ClipboardPlus:Ri,ClipboardPlusIcon:Ri,ClipboardSignature:N1,ClipboardSignatureIcon:N1,ClipboardType:Ti,ClipboardTypeIcon:Ti,ClipboardX:Ui,ClipboardXIcon:Ui,Clock:E0,Clock1:Zi,Clock10:Gi,Clock10Icon:Gi,Clock11:Wi,Clock11Icon:Wi,Clock12:Ei,Clock12Icon:Ei,Clock1Icon:Zi,Clock2:Xi,Clock2Icon:Xi,Clock3:Ki,Clock3Icon:Ki,Clock4:Ji,Clock4Icon:Ji,Clock5:Qi,Clock5Icon:Qi,Clock6:Yi,Clock6Icon:Yi,Clock7:eh,Clock7Icon:eh,Clock8:ah,Clock8Icon:ah,Clock9:oh,Clock9Icon:oh,ClockAlert:ch,ClockAlertIcon:ch,ClockArrowDown:th,ClockArrowDownIcon:th,ClockArrowUp:nh,ClockArrowUpIcon:nh,ClockIcon:E0,Cloud:gh,CloudAlert:dh,CloudAlertIcon:dh,CloudCog:ih,CloudCogIcon:ih,CloudDownload:q1,CloudDownloadIcon:q1,CloudDrizzle:hh,CloudDrizzleIcon:hh,CloudFog:yh,CloudFogIcon:yh,CloudHail:rh,CloudHailIcon:rh,CloudIcon:gh,CloudLightning:kh,CloudLightningIcon:kh,CloudMoon:sh,CloudMoonIcon:sh,CloudMoonRain:ph,CloudMoonRainIcon:ph,CloudOff:lh,CloudOffIcon:lh,CloudRain:Mh,CloudRainIcon:Mh,CloudRainWind:uh,CloudRainWindIcon:uh,CloudSnow:vh,CloudSnowIcon:vh,CloudSun:_h,CloudSunIcon:_h,CloudSunRain:mh,CloudSunRainIcon:mh,CloudUpload:b1,CloudUploadIcon:b1,Cloudy:Lh,CloudyIcon:Lh,Clover:xh,CloverIcon:xh,Club:wh,ClubIcon:wh,Code:X0,Code2:$1,Code2Icon:$1,CodeIcon:X0,CodeSquare:Xe,CodeSquareIcon:Xe,CodeXml:$1,CodeXmlIcon:$1,Codepen:fh,CodepenIcon:fh,Codesandbox:Ch,CodesandboxIcon:Ch,Coffee:Ih,CoffeeIcon:Ih,Cog:Nh,CogIcon:Nh,Coins:K0,CoinsIcon:K0,Columns:A1,Columns2:A1,Columns2Icon:A1,Columns3:H1,Columns3Icon:H1,Columns4:Sh,Columns4Icon:Sh,ColumnsIcon:A1,Combine:qh,CombineIcon:qh,Command:bh,CommandIcon:bh,Compass:$h,CompassIcon:$h,Component:Ah,ComponentIcon:Ah,Computer:Hh,ComputerIcon:Hh,ConciergeBell:zh,ConciergeBellIcon:zh,Cone:Ph,ConeIcon:Ph,Construction:jh,ConstructionIcon:jh,Contact:Vh,Contact2:z1,Contact2Icon:z1,ContactIcon:Vh,ContactRound:z1,ContactRoundIcon:z1,Container:Bh,ContainerIcon:Bh,Contrast:Fh,ContrastIcon:Fh,Cookie:Dh,CookieIcon:Dh,CookingPot:Rh,CookingPotIcon:Rh,Copy:J0,CopyCheck:Th,CopyCheckIcon:Th,CopyIcon:J0,CopyMinus:Uh,CopyMinusIcon:Uh,CopyPlus:Oh,CopyPlusIcon:Oh,CopySlash:Zh,CopySlashIcon:Zh,CopyX:Gh,CopyXIcon:Gh,Copyleft:Wh,CopyleftIcon:Wh,Copyright:Eh,CopyrightIcon:Eh,CornerDownLeft:Xh,CornerDownLeftIcon:Xh,CornerDownRight:Kh,CornerDownRightIcon:Kh,CornerLeftDown:Jh,CornerLeftDownIcon:Jh,CornerLeftUp:Qh,CornerLeftUpIcon:Qh,CornerRightDown:Yh,CornerRightDownIcon:Yh,CornerRightUp:ey,CornerRightUpIcon:ey,CornerUpLeft:ay,CornerUpLeftIcon:ay,CornerUpRight:oy,CornerUpRightIcon:oy,Cpu:cy,CpuIcon:cy,CreativeCommons:ty,CreativeCommonsIcon:ty,CreditCard:Q0,CreditCardIcon:Q0,Croissant:ny,CroissantIcon:ny,Crop:dy,CropIcon:dy,Cross:iy,CrossIcon:iy,Crosshair:Y0,CrosshairIcon:Y0,Crown:ea,CrownIcon:ea,Cuboid:hy,CuboidIcon:hy,CupSoda:yy,CupSodaIcon:yy,CurlyBraces:U,CurlyBracesIcon:U,Currency:ry,CurrencyIcon:ry,Cylinder:ky,CylinderIcon:ky,Dam:py,DamIcon:py,Database:uy,DatabaseBackup:sy,DatabaseBackupIcon:sy,DatabaseIcon:uy,DatabaseZap:ly,DatabaseZapIcon:ly,Delete:My,DeleteIcon:My,Dessert:vy,DessertIcon:vy,Diameter:my,DiameterIcon:my,Diamond:Ly,DiamondIcon:Ly,DiamondMinus:_y,DiamondMinusIcon:_y,DiamondPercent:P1,DiamondPercentIcon:P1,DiamondPlus:gy,DiamondPlusIcon:gy,Dice1:xy,Dice1Icon:xy,Dice2:wy,Dice2Icon:wy,Dice3:fy,Dice3Icon:fy,Dice4:Cy,Dice4Icon:Cy,Dice5:Iy,Dice5Icon:Iy,Dice6:Ny,Dice6Icon:Ny,Dices:Sy,DicesIcon:Sy,Diff:qy,DiffIcon:qy,Disc:Hy,Disc2:by,Disc2Icon:by,Disc3:$y,Disc3Icon:$y,DiscAlbum:Ay,DiscAlbumIcon:Ay,DiscIcon:Hy,Divide:zy,DivideCircle:s1,DivideCircleIcon:s1,DivideIcon:zy,DivideSquare:Ye,DivideSquareIcon:Ye,Dna:jy,DnaIcon:jy,DnaOff:Py,DnaOffIcon:Py,Dock:Vy,DockIcon:Vy,Dog:By,DogIcon:By,DollarSign:aa,DollarSignIcon:aa,Donut:Fy,DonutIcon:Fy,DoorClosed:Dy,DoorClosedIcon:Dy,DoorOpen:Ry,DoorOpenIcon:Ry,Dot:Ty,DotIcon:Ty,DotSquare:e2,DotSquareIcon:e2,Download:oa,DownloadCloud:q1,DownloadCloudIcon:q1,DownloadIcon:oa,DraftingCompass:Uy,DraftingCompassIcon:Uy,Drama:Oy,DramaIcon:Oy,Dribbble:Zy,DribbbleIcon:Zy,Drill:Gy,DrillIcon:Gy,Droplet:Ey,DropletIcon:Ey,DropletOff:Wy,DropletOffIcon:Wy,Droplets:Xy,DropletsIcon:Xy,Drum:Ky,DrumIcon:Ky,Drumstick:Jy,DrumstickIcon:Jy,Dumbbell:Qy,DumbbellIcon:Qy,Ear:er,EarIcon:er,EarOff:Yy,EarOffIcon:Yy,Earth:j1,EarthIcon:j1,EarthLock:ar,EarthLockIcon:ar,Eclipse:or,EclipseIcon:or,Edit:n,Edit2:_e,Edit2Icon:_e,Edit3:w,Edit3Icon:w,EditIcon:n,Egg:nr,EggFried:cr,EggFriedIcon:cr,EggIcon:nr,EggOff:tr,EggOffIcon:tr,Ellipsis:B1,EllipsisIcon:B1,EllipsisVertical:V1,EllipsisVerticalIcon:V1,Equal:hr,EqualApproximately:dr,EqualApproximatelyIcon:dr,EqualIcon:hr,EqualNot:ir,EqualNotIcon:ir,EqualSquare:a2,EqualSquareIcon:a2,Eraser:yr,EraserIcon:yr,EthernetPort:rr,EthernetPortIcon:rr,Euro:kr,EuroIcon:kr,Expand:pr,ExpandIcon:pr,ExternalLink:ca,ExternalLinkIcon:ca,Eye:na,EyeClosed:sr,EyeClosedIcon:sr,EyeIcon:na,EyeOff:ta,EyeOffIcon:ta,Facebook:da,FacebookIcon:da,Factory:lr,FactoryIcon:lr,Fan:ur,FanIcon:ur,FastForward:Mr,FastForwardIcon:Mr,Feather:vr,FeatherIcon:vr,Fence:mr,FenceIcon:mr,FerrisWheel:_r,FerrisWheelIcon:_r,Figma:gr,FigmaIcon:gr,File:s4,FileArchive:Lr,FileArchiveIcon:Lr,FileAudio:wr,FileAudio2:xr,FileAudio2Icon:xr,FileAudioIcon:wr,FileAxis3D:F1,FileAxis3DIcon:F1,FileAxis3d:F1,FileAxis3dIcon:F1,FileBadge:Cr,FileBadge2:fr,FileBadge2Icon:fr,FileBadgeIcon:Cr,FileBarChart:D1,FileBarChart2:R1,FileBarChart2Icon:R1,FileBarChartIcon:D1,FileBox:Ir,FileBoxIcon:Ir,FileChartColumn:R1,FileChartColumnIcon:R1,FileChartColumnIncreasing:D1,FileChartColumnIncreasingIcon:D1,FileChartLine:T1,FileChartLineIcon:T1,FileChartPie:U1,FileChartPieIcon:U1,FileCheck:Sr,FileCheck2:Nr,FileCheck2Icon:Nr,FileCheckIcon:Sr,FileClock:qr,FileClockIcon:qr,FileCode:$r,FileCode2:br,FileCode2Icon:br,FileCodeIcon:$r,FileCog:O1,FileCog2:O1,FileCog2Icon:O1,FileCogIcon:O1,FileDiff:Ar,FileDiffIcon:Ar,FileDigit:Hr,FileDigitIcon:Hr,FileDown:ha,FileDownIcon:ha,FileEdit:G1,FileEditIcon:G1,FileHeart:zr,FileHeartIcon:zr,FileIcon:s4,FileImage:Pr,FileImageIcon:Pr,FileInput:jr,FileInputIcon:jr,FileJson:Br,FileJson2:Vr,FileJson2Icon:Vr,FileJsonIcon:Br,FileKey:Dr,FileKey2:Fr,FileKey2Icon:Fr,FileKeyIcon:Dr,FileLineChart:T1,FileLineChartIcon:T1,FileLock:Tr,FileLock2:Rr,FileLock2Icon:Rr,FileLockIcon:Tr,FileMinus:Or,FileMinus2:Ur,FileMinus2Icon:Ur,FileMinusIcon:Or,FileMusic:Zr,FileMusicIcon:Zr,FileOutput:Gr,FileOutputIcon:Gr,FilePen:G1,FilePenIcon:G1,FilePenLine:Z1,FilePenLineIcon:Z1,FilePieChart:U1,FilePieChartIcon:U1,FilePlus:Er,FilePlus2:Wr,FilePlus2Icon:Wr,FilePlusIcon:Er,FileQuestion:Xr,FileQuestionIcon:Xr,FileScan:Kr,FileScanIcon:Kr,FileSearch:Qr,FileSearch2:Jr,FileSearch2Icon:Jr,FileSearchIcon:Qr,FileSignature:Z1,FileSignatureIcon:Z1,FileSliders:Yr,FileSlidersIcon:Yr,FileSpreadsheet:ya,FileSpreadsheetIcon:ya,FileStack:e4,FileStackIcon:e4,FileSymlink:a4,FileSymlinkIcon:a4,FileTerminal:o4,FileTerminalIcon:o4,FileText:X2,FileTextIcon:X2,FileType:t4,FileType2:c4,FileType2Icon:c4,FileTypeIcon:t4,FileUp:ra,FileUpIcon:ra,FileUser:n4,FileUserIcon:n4,FileVideo:i4,FileVideo2:d4,FileVideo2Icon:d4,FileVideoIcon:i4,FileVolume:y4,FileVolume2:h4,FileVolume2Icon:h4,FileVolumeIcon:y4,FileWarning:r4,FileWarningIcon:r4,FileX:p4,FileX2:k4,FileX2Icon:k4,FileXIcon:p4,Files:l4,FilesIcon:l4,Film:u4,FilmIcon:u4,Filter:ka,FilterIcon:ka,FilterX:M4,FilterXIcon:M4,Fingerprint:pa,FingerprintIcon:pa,FireExtinguisher:v4,FireExtinguisherIcon:v4,Fish:g4,FishIcon:g4,FishOff:m4,FishOffIcon:m4,FishSymbol:_4,FishSymbolIcon:_4,Flag:f4,FlagIcon:f4,FlagOff:L4,FlagOffIcon:L4,FlagTriangleLeft:x4,FlagTriangleLeftIcon:x4,FlagTriangleRight:w4,FlagTriangleRightIcon:w4,Flame:I4,FlameIcon:I4,FlameKindling:C4,FlameKindlingIcon:C4,Flashlight:S4,FlashlightIcon:S4,FlashlightOff:N4,FlashlightOffIcon:N4,FlaskConical:b4,FlaskConicalIcon:b4,FlaskConicalOff:q4,FlaskConicalOffIcon:q4,FlaskRound:$4,FlaskRoundIcon:$4,FlipHorizontal:H4,FlipHorizontal2:A4,FlipHorizontal2Icon:A4,FlipHorizontalIcon:H4,FlipVertical:P4,FlipVertical2:z4,FlipVertical2Icon:z4,FlipVerticalIcon:P4,Flower:V4,Flower2:j4,Flower2Icon:j4,FlowerIcon:V4,Focus:B4,FocusIcon:B4,FoldHorizontal:F4,FoldHorizontalIcon:F4,FoldVertical:D4,FoldVerticalIcon:D4,Folder:P0,FolderArchive:R4,FolderArchiveIcon:R4,FolderCheck:T4,FolderCheckIcon:T4,FolderClock:U4,FolderClockIcon:U4,FolderClosed:O4,FolderClosedIcon:O4,FolderCode:Z4,FolderCodeIcon:Z4,FolderCog:W1,FolderCog2:W1,FolderCog2Icon:W1,FolderCogIcon:W1,FolderDot:G4,FolderDotIcon:G4,FolderDown:W4,FolderDownIcon:W4,FolderEdit:E1,FolderEditIcon:E1,FolderGit:X4,FolderGit2:E4,FolderGit2Icon:E4,FolderGitIcon:X4,FolderHeart:K4,FolderHeartIcon:K4,FolderIcon:P0,FolderInput:J4,FolderInputIcon:J4,FolderKanban:Q4,FolderKanbanIcon:Q4,FolderKey:Y4,FolderKeyIcon:Y4,FolderLock:ek,FolderLockIcon:ek,FolderMinus:ak,FolderMinusIcon:ak,FolderOpen:sa,FolderOpenDot:ok,FolderOpenDotIcon:ok,FolderOpenIcon:sa,FolderOutput:ck,FolderOutputIcon:ck,FolderPen:E1,FolderPenIcon:E1,FolderPlus:tk,FolderPlusIcon:tk,FolderRoot:nk,FolderRootIcon:nk,FolderSearch:ik,FolderSearch2:dk,FolderSearch2Icon:dk,FolderSearchIcon:ik,FolderSymlink:hk,FolderSymlinkIcon:hk,FolderSync:yk,FolderSyncIcon:yk,FolderTree:rk,FolderTreeIcon:rk,FolderUp:kk,FolderUpIcon:kk,FolderX:pk,FolderXIcon:pk,Folders:sk,FoldersIcon:sk,Footprints:lk,FootprintsIcon:lk,ForkKnife:D2,ForkKnifeCrossed:F2,ForkKnifeCrossedIcon:F2,ForkKnifeIcon:D2,Forklift:uk,ForkliftIcon:uk,FormInput:Le,FormInputIcon:Le,Forward:Mk,ForwardIcon:Mk,Frame:vk,FrameIcon:vk,Framer:mk,FramerIcon:mk,Frown:_k,FrownIcon:_k,Fuel:gk,FuelIcon:gk,Fullscreen:Lk,FullscreenIcon:Lk,FunctionSquare:o2,FunctionSquareIcon:o2,GalleryHorizontal:wk,GalleryHorizontalEnd:xk,GalleryHorizontalEndIcon:xk,GalleryHorizontalIcon:wk,GalleryThumbnails:fk,GalleryThumbnailsIcon:fk,GalleryVertical:Ik,GalleryVerticalEnd:Ck,GalleryVerticalEndIcon:Ck,GalleryVerticalIcon:Ik,Gamepad:Sk,Gamepad2:Nk,Gamepad2Icon:Nk,GamepadIcon:Sk,GanttChart:Q,GanttChartIcon:Q,GanttChartSquare:i,GanttChartSquareIcon:i,Gauge:qk,GaugeCircle:l1,GaugeCircleIcon:l1,GaugeIcon:qk,Gavel:bk,GavelIcon:bk,Gem:$k,GemIcon:$k,Ghost:Ak,GhostIcon:Ak,Gift:la,GiftIcon:la,GitBranch:ua,GitBranchIcon:ua,GitBranchPlus:Hk,GitBranchPlusIcon:Hk,GitCommit:X1,GitCommitHorizontal:X1,GitCommitHorizontalIcon:X1,GitCommitIcon:X1,GitCommitVertical:zk,GitCommitVerticalIcon:zk,GitCompare:jk,GitCompareArrows:Pk,GitCompareArrowsIcon:Pk,GitCompareIcon:jk,GitFork:Vk,GitForkIcon:Vk,GitGraph:Bk,GitGraphIcon:Bk,GitMerge:Fk,GitMergeIcon:Fk,GitPullRequest:Zk,GitPullRequestArrow:Dk,GitPullRequestArrowIcon:Dk,GitPullRequestClosed:Rk,GitPullRequestClosedIcon:Rk,GitPullRequestCreate:Uk,GitPullRequestCreateArrow:Tk,GitPullRequestCreateArrowIcon:Tk,GitPullRequestCreateIcon:Uk,GitPullRequestDraft:Ok,GitPullRequestDraftIcon:Ok,GitPullRequestIcon:Zk,Github:Gk,GithubIcon:Gk,Gitlab:Wk,GitlabIcon:Wk,GlassWater:Ek,GlassWaterIcon:Ek,Glasses:Xk,GlassesIcon:Xk,Globe:Ma,Globe2:j1,Globe2Icon:j1,GlobeIcon:Ma,GlobeLock:Kk,GlobeLockIcon:Kk,Goal:Jk,GoalIcon:Jk,Grab:Qk,GrabIcon:Qk,GraduationCap:M0,GraduationCapIcon:M0,Grape:Yk,GrapeIcon:Yk,Grid:d,Grid2X2:Y1,Grid2X2Check:K1,Grid2X2CheckIcon:K1,Grid2X2Icon:Y1,Grid2X2Plus:J1,Grid2X2PlusIcon:J1,Grid2X2X:Q1,Grid2X2XIcon:Q1,Grid2x2:Y1,Grid2x2Check:K1,Grid2x2CheckIcon:K1,Grid2x2Icon:Y1,Grid2x2Plus:J1,Grid2x2PlusIcon:J1,Grid2x2X:Q1,Grid2x2XIcon:Q1,Grid3X3:d,Grid3X3Icon:d,Grid3x3:d,Grid3x3Icon:d,GridIcon:d,Grip:ap,GripHorizontal:ep,GripHorizontalIcon:ep,GripIcon:ap,GripVertical:va,GripVerticalIcon:va,Group:op,GroupIcon:op,Guitar:cp,GuitarIcon:cp,Ham:tp,HamIcon:tp,Hammer:np,HammerIcon:np,Hand:rp,HandCoins:dp,HandCoinsIcon:dp,HandHeart:ip,HandHeartIcon:ip,HandHelping:ee,HandHelpingIcon:ee,HandIcon:rp,HandMetal:hp,HandMetalIcon:hp,HandPlatter:yp,HandPlatterIcon:yp,Handshake:kp,HandshakeIcon:kp,HardDrive:ma,HardDriveDownload:pp,HardDriveDownloadIcon:pp,HardDriveIcon:ma,HardDriveUpload:sp,HardDriveUploadIcon:sp,HardHat:lp,HardHatIcon:lp,Hash:_a,HashIcon:_a,Haze:up,HazeIcon:up,HdmiPort:Mp,HdmiPortIcon:Mp,Heading:wp,Heading1:vp,Heading1Icon:vp,Heading2:mp,Heading2Icon:mp,Heading3:_p,Heading3Icon:_p,Heading4:gp,Heading4Icon:gp,Heading5:Lp,Heading5Icon:Lp,Heading6:xp,Heading6Icon:xp,HeadingIcon:wp,HeadphoneOff:fp,HeadphoneOffIcon:fp,Headphones:Cp,HeadphonesIcon:Cp,Headset:Ip,HeadsetIcon:Ip,Heart:ga,HeartCrack:Np,HeartCrackIcon:Np,HeartHandshake:Sp,HeartHandshakeIcon:Sp,HeartIcon:ga,HeartOff:qp,HeartOffIcon:qp,HeartPulse:bp,HeartPulseIcon:bp,Heater:$p,HeaterIcon:$p,HelpCircle:L,HelpCircleIcon:L,HelpingHand:ee,HelpingHandIcon:ee,Hexagon:Ap,HexagonIcon:Ap,Highlighter:Hp,HighlighterIcon:Hp,History:C0,HistoryIcon:C0,Home:f,HomeIcon:f,Hop:Pp,HopIcon:Pp,HopOff:zp,HopOffIcon:zp,Hospital:jp,HospitalIcon:jp,Hotel:Vp,HotelIcon:Vp,Hourglass:Bp,HourglassIcon:Bp,House:f,HouseIcon:f,HousePlug:Fp,HousePlugIcon:Fp,HousePlus:Dp,HousePlusIcon:Dp,HouseWifi:Rp,HouseWifiIcon:Rp,IceCream:oe,IceCream2:ae,IceCream2Icon:ae,IceCreamBowl:ae,IceCreamBowlIcon:ae,IceCreamCone:oe,IceCreamConeIcon:oe,IceCreamIcon:oe,Icon:bm,IdCard:v0,IdCardIcon:v0,Image:K2,ImageDown:Tp,ImageDownIcon:Tp,ImageIcon:K2,ImageMinus:Up,ImageMinusIcon:Up,ImageOff:Op,ImageOffIcon:Op,ImagePlay:Zp,ImagePlayIcon:Zp,ImagePlus:Gp,ImagePlusIcon:Gp,ImageUp:Wp,ImageUpIcon:Wp,ImageUpscale:Ep,ImageUpscaleIcon:Ep,Images:Xp,ImagesIcon:Xp,Import:Kp,ImportIcon:Kp,Inbox:Jp,InboxIcon:Jp,Indent:te,IndentDecrease:ce,IndentDecreaseIcon:ce,IndentIcon:te,IndentIncrease:te,IndentIncreaseIcon:te,IndianRupee:b0,IndianRupeeIcon:b0,Infinity:Qp,InfinityIcon:Qp,Info:xa,InfoIcon:xa,Inspect:h2,InspectIcon:h2,InspectionPanel:Yp,InspectionPanelIcon:Yp,Instagram:ia,InstagramIcon:ia,Italic:h0,ItalicIcon:h0,IterationCcw:e5,IterationCcwIcon:e5,IterationCw:a5,IterationCwIcon:a5,JapaneseYen:o5,JapaneseYenIcon:o5,Joystick:c5,JoystickIcon:c5,Kanban:t5,KanbanIcon:t5,KanbanSquare:c2,KanbanSquareDashed:Ke,KanbanSquareDashedIcon:Ke,KanbanSquareIcon:c2,Key:d5,KeyIcon:d5,KeyRound:I0,KeyRoundIcon:I0,KeySquare:n5,KeySquareIcon:n5,Keyboard:y5,KeyboardIcon:y5,KeyboardMusic:i5,KeyboardMusicIcon:i5,KeyboardOff:h5,KeyboardOffIcon:h5,Lamp:u5,LampCeiling:r5,LampCeilingIcon:r5,LampDesk:k5,LampDeskIcon:k5,LampFloor:p5,LampFloorIcon:p5,LampIcon:u5,LampWallDown:s5,LampWallDownIcon:s5,LampWallUp:l5,LampWallUpIcon:l5,LandPlot:M5,LandPlotIcon:M5,Landmark:v5,LandmarkIcon:v5,Languages:m5,LanguagesIcon:m5,Laptop:g5,Laptop2:ne,Laptop2Icon:ne,LaptopIcon:g5,LaptopMinimal:ne,LaptopMinimalCheck:_5,LaptopMinimalCheckIcon:_5,LaptopMinimalIcon:ne,Lasso:x5,LassoIcon:x5,LassoSelect:L5,LassoSelectIcon:L5,Laugh:w5,LaughIcon:w5,Layers:C,Layers2:f5,Layers2Icon:f5,Layers3:C,Layers3Icon:C,LayersIcon:C,Layout:p,LayoutDashboard:C5,LayoutDashboardIcon:C5,LayoutGrid:wa,LayoutGridIcon:wa,LayoutIcon:p,LayoutList:fa,LayoutListIcon:fa,LayoutPanelLeft:I5,LayoutPanelLeftIcon:I5,LayoutPanelTop:N5,LayoutPanelTopIcon:N5,LayoutTemplate:S5,LayoutTemplateIcon:S5,Leaf:q5,LeafIcon:q5,LeafyGreen:b5,LeafyGreenIcon:b5,Lectern:$5,LecternIcon:$5,LetterText:A5,LetterTextIcon:A5,Library:z5,LibraryBig:H5,LibraryBigIcon:H5,LibraryIcon:z5,LibrarySquare:t2,LibrarySquareIcon:t2,LifeBuoy:P5,LifeBuoyIcon:P5,Ligature:j5,LigatureIcon:j5,Lightbulb:Ca,LightbulbIcon:Ca,LightbulbOff:V5,LightbulbOffIcon:V5,LineChart:J,LineChartIcon:J,Link:Na,Link2:Ia,Link2Icon:Ia,Link2Off:B5,Link2OffIcon:B5,LinkIcon:Na,Linkedin:Sa,LinkedinIcon:Sa,List:ba,ListCheck:F5,ListCheckIcon:F5,ListChecks:D5,ListChecksIcon:D5,ListCollapse:R5,ListCollapseIcon:R5,ListEnd:T5,ListEndIcon:T5,ListFilter:O5,ListFilterIcon:O5,ListFilterPlus:U5,ListFilterPlusIcon:U5,ListIcon:ba,ListMinus:Z5,ListMinusIcon:Z5,ListMusic:G5,ListMusicIcon:G5,ListOrdered:y0,ListOrderedIcon:y0,ListPlus:W5,ListPlusIcon:W5,ListRestart:E5,ListRestartIcon:E5,ListStart:X5,ListStartIcon:X5,ListTodo:K5,ListTodoIcon:K5,ListTree:J5,ListTreeIcon:J5,ListVideo:Q5,ListVideoIcon:Q5,ListX:Y5,ListXIcon:Y5,Loader:as,Loader2:I,Loader2Icon:I,LoaderCircle:I,LoaderCircleIcon:I,LoaderIcon:as,LoaderPinwheel:es,LoaderPinwheelIcon:es,Locate:cs,LocateFixed:$a,LocateFixedIcon:$a,LocateIcon:cs,LocateOff:os,LocateOffIcon:os,Lock:Aa,LockIcon:Aa,LockKeyhole:ts,LockKeyholeIcon:ts,LockKeyholeOpen:de,LockKeyholeOpenIcon:de,LockOpen:s,LockOpenIcon:s,LogIn:Ha,LogInIcon:Ha,LogOut:za,LogOutIcon:za,Logs:ns,LogsIcon:ns,Lollipop:ds,LollipopIcon:ds,LucideAArrowDown:No,LucideAArrowUp:So,LucideALargeSmall:qo,LucideAccessibility:bo,LucideActivity:$o,LucideActivitySquare:qe,LucideAirVent:Ao,LucideAirplay:Ho,LucideAlarmCheck:q,LucideAlarmClock:Po,LucideAlarmClockCheck:q,LucideAlarmClockMinus:b,LucideAlarmClockOff:zo,LucideAlarmClockPlus:$,LucideAlarmMinus:b,LucideAlarmPlus:$,LucideAlarmSmoke:jo,LucideAlbum:Vo,LucideAlertCircle:m,LucideAlertOctagon:ye,LucideAlertTriangle:S,LucideAlignCenter:t0,LucideAlignCenterHorizontal:Bo,LucideAlignCenterVertical:Fo,LucideAlignEndHorizontal:Do,LucideAlignEndVertical:Ro,LucideAlignHorizontalDistributeCenter:To,LucideAlignHorizontalDistributeEnd:Uo,LucideAlignHorizontalDistributeStart:Oo,LucideAlignHorizontalJustifyCenter:Zo,LucideAlignHorizontalJustifyEnd:Go,LucideAlignHorizontalJustifyStart:Wo,LucideAlignHorizontalSpaceAround:Eo,LucideAlignHorizontalSpaceBetween:Xo,LucideAlignJustify:Ko,LucideAlignLeft:n0,LucideAlignRight:d0,LucideAlignStartHorizontal:Jo,LucideAlignStartVertical:Qo,LucideAlignVerticalDistributeCenter:Yo,LucideAlignVerticalDistributeEnd:ec,LucideAlignVerticalDistributeStart:ac,LucideAlignVerticalJustifyCenter:oc,LucideAlignVerticalJustifyEnd:cc,LucideAlignVerticalJustifyStart:tc,LucideAlignVerticalSpaceAround:nc,LucideAlignVerticalSpaceBetween:dc,LucideAmbulance:ic,LucideAmpersand:hc,LucideAmpersands:yc,LucideAmphora:rc,LucideAnchor:kc,LucideAngry:pc,LucideAnnoyed:sc,LucideAntenna:lc,LucideAnvil:uc,LucideAperture:Mc,LucideAppWindow:mc,LucideAppWindowMac:vc,LucideApple:_c,LucideArchive:l0,LucideArchiveRestore:gc,LucideArchiveX:Lc,LucideAreaChart:Z,LucideArmchair:xc,LucideArrowBigDown:fc,LucideArrowBigDownDash:wc,LucideArrowBigLeft:Ic,LucideArrowBigLeftDash:Cc,LucideArrowBigRight:Sc,LucideArrowBigRightDash:Nc,LucideArrowBigUp:bc,LucideArrowBigUpDash:qc,LucideArrowDown:Fc,LucideArrowDown01:$c,LucideArrowDown10:Ac,LucideArrowDownAZ:A,LucideArrowDownAz:A,LucideArrowDownCircle:a1,LucideArrowDownFromLine:Hc,LucideArrowDownLeft:_0,LucideArrowDownLeftFromCircle:c1,LucideArrowDownLeftFromSquare:ze,LucideArrowDownLeftSquare:be,LucideArrowDownNarrowWide:zc,LucideArrowDownRight:Pc,LucideArrowDownRightFromCircle:t1,LucideArrowDownRightFromSquare:Pe,LucideArrowDownRightSquare:$e,LucideArrowDownSquare:Ae,LucideArrowDownToDot:jc,LucideArrowDownToLine:Vc,LucideArrowDownUp:Bc,LucideArrowDownWideNarrow:H,LucideArrowDownZA:z,LucideArrowDownZa:z,LucideArrowLeft:g0,LucideArrowLeftCircle:o1,LucideArrowLeftFromLine:Dc,LucideArrowLeftRight:Rc,LucideArrowLeftSquare:He,LucideArrowLeftToLine:Tc,LucideArrowRight:x0,LucideArrowRightCircle:i1,LucideArrowRightFromLine:Uc,LucideArrowRightLeft:L0,LucideArrowRightSquare:Be,LucideArrowRightToLine:Oc,LucideArrowUp:Qc,LucideArrowUp01:Zc,LucideArrowUp10:Gc,LucideArrowUpAZ:P,LucideArrowUpAz:P,LucideArrowUpCircle:h1,LucideArrowUpDown:w0,LucideArrowUpFromDot:Wc,LucideArrowUpFromLine:Ec,LucideArrowUpLeft:Xc,LucideArrowUpLeftFromCircle:n1,LucideArrowUpLeftFromSquare:je,LucideArrowUpLeftSquare:Fe,LucideArrowUpNarrowWide:j,LucideArrowUpRight:f0,LucideArrowUpRightFromCircle:d1,LucideArrowUpRightFromSquare:Ve,LucideArrowUpRightSquare:De,LucideArrowUpSquare:Re,LucideArrowUpToLine:Kc,LucideArrowUpWideNarrow:Jc,LucideArrowUpZA:V,LucideArrowUpZa:V,LucideArrowsUpFromLine:Yc,LucideAsterisk:et,LucideAsteriskSquare:Te,LucideAtSign:at,LucideAtom:ot,LucideAudioLines:ct,LucideAudioWaveform:tt,LucideAward:N0,LucideAxe:nt,LucideAxis3D:B,LucideAxis3d:B,LucideBaby:dt,LucideBackpack:it,LucideBadge:wt,LucideBadgeAlert:ht,LucideBadgeCent:yt,LucideBadgeCheck:F,LucideBadgeDollarSign:rt,LucideBadgeEuro:kt,LucideBadgeHelp:pt,LucideBadgeIndianRupee:st,LucideBadgeInfo:lt,LucideBadgeJapaneseYen:ut,LucideBadgeMinus:Mt,LucideBadgePercent:vt,LucideBadgePlus:mt,LucideBadgePoundSterling:_t,LucideBadgeRussianRuble:gt,LucideBadgeSwissFranc:Lt,LucideBadgeX:xt,LucideBaggageClaim:ft,LucideBan:S0,LucideBanana:Ct,LucideBandage:It,LucideBanknote:q0,LucideBarChart:M,LucideBarChart2:v,LucideBarChart3:u,LucideBarChart4:K,LucideBarChartBig:X,LucideBarChartHorizontal:W,LucideBarChartHorizontalBig:G,LucideBarcode:Nt,LucideBaseline:St,LucideBath:qt,LucideBattery:jt,LucideBatteryCharging:bt,LucideBatteryFull:$t,LucideBatteryLow:At,LucideBatteryMedium:Ht,LucideBatteryPlus:zt,LucideBatteryWarning:Pt,LucideBeaker:Vt,LucideBean:Ft,LucideBeanOff:Bt,LucideBed:Tt,LucideBedDouble:Dt,LucideBedSingle:Rt,LucideBeef:Ut,LucideBeer:Zt,LucideBeerOff:Ot,LucideBell:$0,LucideBellDot:Gt,LucideBellElectric:Wt,LucideBellMinus:Et,LucideBellOff:Xt,LucideBellPlus:Kt,LucideBellRing:Jt,LucideBetweenHorizonalEnd:D,LucideBetweenHorizonalStart:R,LucideBetweenHorizontalEnd:D,LucideBetweenHorizontalStart:R,LucideBetweenVerticalEnd:Qt,LucideBetweenVerticalStart:Yt,LucideBicepsFlexed:en,LucideBike:an,LucideBinary:on,LucideBinoculars:cn,LucideBiohazard:tn,LucideBird:nn,LucideBitcoin:dn,LucideBlend:hn,LucideBlinds:yn,LucideBlocks:rn,LucideBluetooth:ln,LucideBluetoothConnected:kn,LucideBluetoothOff:pn,LucideBluetoothSearching:sn,LucideBold:i0,LucideBolt:un,LucideBomb:Mn,LucideBone:vn,LucideBook:u0,LucideBookA:mn,LucideBookAudio:_n,LucideBookCheck:gn,LucideBookCopy:Ln,LucideBookDashed:T,LucideBookDown:xn,LucideBookHeadphones:wn,LucideBookHeart:fn,LucideBookImage:Cn,LucideBookKey:In,LucideBookLock:Nn,LucideBookMarked:Sn,LucideBookMinus:qn,LucideBookOpen:A0,LucideBookOpenCheck:bn,LucideBookOpenText:$n,LucideBookPlus:An,LucideBookTemplate:T,LucideBookText:Hn,LucideBookType:zn,LucideBookUp:jn,LucideBookUp2:Pn,LucideBookUser:Vn,LucideBookX:Bn,LucideBookmark:Un,LucideBookmarkCheck:Fn,LucideBookmarkMinus:Dn,LucideBookmarkPlus:Rn,LucideBookmarkX:Tn,LucideBoomBox:On,LucideBot:Wn,LucideBotMessageSquare:Zn,LucideBotOff:Gn,LucideBox:En,LucideBoxSelect:Qe,LucideBoxes:H0,LucideBraces:U,LucideBrackets:Xn,LucideBrain:z0,LucideBrainCircuit:Kn,LucideBrainCog:Jn,LucideBrickWall:Qn,LucideBriefcase:j0,LucideBriefcaseBusiness:Yn,LucideBriefcaseConveyorBelt:ed,LucideBriefcaseMedical:ad,LucideBringToFront:od,LucideBrush:cd,LucideBug:dd,LucideBugOff:td,LucideBugPlay:nd,LucideBuilding:B0,LucideBuilding2:V0,LucideBus:hd,LucideBusFront:id,LucideCable:rd,LucideCableCar:yd,LucideCake:pd,LucideCakeSlice:kd,LucideCalculator:F0,LucideCalendar:T0,LucideCalendar1:sd,LucideCalendarArrowDown:ld,LucideCalendarArrowUp:ud,LucideCalendarCheck:D0,LucideCalendarCheck2:Md,LucideCalendarClock:vd,LucideCalendarCog:md,LucideCalendarDays:R0,LucideCalendarFold:_d,LucideCalendarHeart:gd,LucideCalendarMinus:xd,LucideCalendarMinus2:Ld,LucideCalendarOff:wd,LucideCalendarPlus:Cd,LucideCalendarPlus2:fd,LucideCalendarRange:Id,LucideCalendarSearch:Nd,LucideCalendarSync:Sd,LucideCalendarX:bd,LucideCalendarX2:qd,LucideCamera:U0,LucideCameraOff:$d,LucideCandlestickChart:E,LucideCandy:zd,LucideCandyCane:Ad,LucideCandyOff:Hd,LucideCannabis:Pd,LucideCaptions:O,LucideCaptionsOff:jd,LucideCar:Fd,LucideCarFront:Vd,LucideCarTaxiFront:Bd,LucideCaravan:Dd,LucideCarrot:Rd,LucideCaseLower:Td,LucideCaseSensitive:Ud,LucideCaseUpper:Od,LucideCassetteTape:Zd,LucideCast:Gd,LucideCastle:Wd,LucideCat:Ed,LucideCctv:Xd,LucideChartArea:Z,LucideChartBar:W,LucideChartBarBig:G,LucideChartBarDecreasing:Kd,LucideChartBarIncreasing:Jd,LucideChartBarStacked:Qd,LucideChartCandlestick:E,LucideChartColumn:u,LucideChartColumnBig:X,LucideChartColumnDecreasing:Yd,LucideChartColumnIncreasing:K,LucideChartColumnStacked:ei,LucideChartGantt:ai,LucideChartLine:J,LucideChartNetwork:oi,LucideChartNoAxesColumn:v,LucideChartNoAxesColumnDecreasing:ci,LucideChartNoAxesColumnIncreasing:M,LucideChartNoAxesCombined:ti,LucideChartNoAxesGantt:Q,LucideChartPie:Y,LucideChartScatter:e1,LucideChartSpline:ni,LucideCheck:E2,LucideCheckCheck:di,LucideCheckCircle:_,LucideCheckCircle2:g,LucideCheckSquare:N,LucideCheckSquare2:Oe,LucideChefHat:ii,LucideCherry:hi,LucideChevronDown:O2,LucideChevronDownCircle:y1,LucideChevronDownSquare:Ze,LucideChevronFirst:yi,LucideChevronLast:ri,LucideChevronLeft:O0,LucideChevronLeftCircle:r1,LucideChevronLeftSquare:Ge,LucideChevronRight:Z0,LucideChevronRightCircle:k1,LucideChevronRightSquare:We,LucideChevronUp:Z2,LucideChevronUpCircle:p1,LucideChevronUpSquare:Ee,LucideChevronsDown:pi,LucideChevronsDownUp:ki,LucideChevronsLeft:ui,LucideChevronsLeftRight:li,LucideChevronsLeftRightEllipsis:si,LucideChevronsRight:vi,LucideChevronsRightLeft:Mi,LucideChevronsUp:mi,LucideChevronsUpDown:G2,LucideChrome:_i,LucideChurch:gi,LucideCigarette:xi,LucideCigaretteOff:Li,LucideCircle:G0,LucideCircleAlert:m,LucideCircleArrowDown:a1,LucideCircleArrowLeft:o1,LucideCircleArrowOutDownLeft:c1,LucideCircleArrowOutDownRight:t1,LucideCircleArrowOutUpLeft:n1,LucideCircleArrowOutUpRight:d1,LucideCircleArrowRight:i1,LucideCircleArrowUp:h1,LucideCircleCheck:g,LucideCircleCheckBig:_,LucideCircleChevronDown:y1,LucideCircleChevronLeft:r1,LucideCircleChevronRight:k1,LucideCircleChevronUp:p1,LucideCircleDashed:wi,LucideCircleDivide:s1,LucideCircleDollarSign:fi,LucideCircleDot:Ii,LucideCircleDotDashed:Ci,LucideCircleEllipsis:Ni,LucideCircleEqual:Si,LucideCircleFadingArrowUp:qi,LucideCircleFadingPlus:bi,LucideCircleGauge:l1,LucideCircleHelp:L,LucideCircleMinus:u1,LucideCircleOff:$i,LucideCircleParking:v1,LucideCircleParkingOff:M1,LucideCirclePause:m1,LucideCirclePercent:_1,LucideCirclePlay:g1,LucideCirclePlus:L1,LucideCirclePower:x1,LucideCircleSlash:Ai,LucideCircleSlash2:w1,LucideCircleSlashed:w1,LucideCircleSmall:Hi,LucideCircleStop:f1,LucideCircleUser:I1,LucideCircleUserRound:C1,LucideCircleX:x,LucideCircuitBoard:zi,LucideCitrus:Pi,LucideClapperboard:ji,LucideClipboard:Oi,LucideClipboardCheck:Vi,LucideClipboardCopy:Bi,LucideClipboardEdit:S1,LucideClipboardList:W0,LucideClipboardMinus:Fi,LucideClipboardPaste:Di,LucideClipboardPen:S1,LucideClipboardPenLine:N1,LucideClipboardPlus:Ri,LucideClipboardSignature:N1,LucideClipboardType:Ti,LucideClipboardX:Ui,LucideClock:E0,LucideClock1:Zi,LucideClock10:Gi,LucideClock11:Wi,LucideClock12:Ei,LucideClock2:Xi,LucideClock3:Ki,LucideClock4:Ji,LucideClock5:Qi,LucideClock6:Yi,LucideClock7:eh,LucideClock8:ah,LucideClock9:oh,LucideClockAlert:ch,LucideClockArrowDown:th,LucideClockArrowUp:nh,LucideCloud:gh,LucideCloudAlert:dh,LucideCloudCog:ih,LucideCloudDownload:q1,LucideCloudDrizzle:hh,LucideCloudFog:yh,LucideCloudHail:rh,LucideCloudLightning:kh,LucideCloudMoon:sh,LucideCloudMoonRain:ph,LucideCloudOff:lh,LucideCloudRain:Mh,LucideCloudRainWind:uh,LucideCloudSnow:vh,LucideCloudSun:_h,LucideCloudSunRain:mh,LucideCloudUpload:b1,LucideCloudy:Lh,LucideClover:xh,LucideClub:wh,LucideCode:X0,LucideCode2:$1,LucideCodeSquare:Xe,LucideCodeXml:$1,LucideCodepen:fh,LucideCodesandbox:Ch,LucideCoffee:Ih,LucideCog:Nh,LucideCoins:K0,LucideColumns:A1,LucideColumns2:A1,LucideColumns3:H1,LucideColumns4:Sh,LucideCombine:qh,LucideCommand:bh,LucideCompass:$h,LucideComponent:Ah,LucideComputer:Hh,LucideConciergeBell:zh,LucideCone:Ph,LucideConstruction:jh,LucideContact:Vh,LucideContact2:z1,LucideContactRound:z1,LucideContainer:Bh,LucideContrast:Fh,LucideCookie:Dh,LucideCookingPot:Rh,LucideCopy:J0,LucideCopyCheck:Th,LucideCopyMinus:Uh,LucideCopyPlus:Oh,LucideCopySlash:Zh,LucideCopyX:Gh,LucideCopyleft:Wh,LucideCopyright:Eh,LucideCornerDownLeft:Xh,LucideCornerDownRight:Kh,LucideCornerLeftDown:Jh,LucideCornerLeftUp:Qh,LucideCornerRightDown:Yh,LucideCornerRightUp:ey,LucideCornerUpLeft:ay,LucideCornerUpRight:oy,LucideCpu:cy,LucideCreativeCommons:ty,LucideCreditCard:Q0,LucideCroissant:ny,LucideCrop:dy,LucideCross:iy,LucideCrosshair:Y0,LucideCrown:ea,LucideCuboid:hy,LucideCupSoda:yy,LucideCurlyBraces:U,LucideCurrency:ry,LucideCylinder:ky,LucideDam:py,LucideDatabase:uy,LucideDatabaseBackup:sy,LucideDatabaseZap:ly,LucideDelete:My,LucideDessert:vy,LucideDiameter:my,LucideDiamond:Ly,LucideDiamondMinus:_y,LucideDiamondPercent:P1,LucideDiamondPlus:gy,LucideDice1:xy,LucideDice2:wy,LucideDice3:fy,LucideDice4:Cy,LucideDice5:Iy,LucideDice6:Ny,LucideDices:Sy,LucideDiff:qy,LucideDisc:Hy,LucideDisc2:by,LucideDisc3:$y,LucideDiscAlbum:Ay,LucideDivide:zy,LucideDivideCircle:s1,LucideDivideSquare:Ye,LucideDna:jy,LucideDnaOff:Py,LucideDock:Vy,LucideDog:By,LucideDollarSign:aa,LucideDonut:Fy,LucideDoorClosed:Dy,LucideDoorOpen:Ry,LucideDot:Ty,LucideDotSquare:e2,LucideDownload:oa,LucideDownloadCloud:q1,LucideDraftingCompass:Uy,LucideDrama:Oy,LucideDribbble:Zy,LucideDrill:Gy,LucideDroplet:Ey,LucideDropletOff:Wy,LucideDroplets:Xy,LucideDrum:Ky,LucideDrumstick:Jy,LucideDumbbell:Qy,LucideEar:er,LucideEarOff:Yy,LucideEarth:j1,LucideEarthLock:ar,LucideEclipse:or,LucideEdit:n,LucideEdit2:_e,LucideEdit3:w,LucideEgg:nr,LucideEggFried:cr,LucideEggOff:tr,LucideEllipsis:B1,LucideEllipsisVertical:V1,LucideEqual:hr,LucideEqualApproximately:dr,LucideEqualNot:ir,LucideEqualSquare:a2,LucideEraser:yr,LucideEthernetPort:rr,LucideEuro:kr,LucideExpand:pr,LucideExternalLink:ca,LucideEye:na,LucideEyeClosed:sr,LucideEyeOff:ta,LucideFacebook:da,LucideFactory:lr,LucideFan:ur,LucideFastForward:Mr,LucideFeather:vr,LucideFence:mr,LucideFerrisWheel:_r,LucideFigma:gr,LucideFile:s4,LucideFileArchive:Lr,LucideFileAudio:wr,LucideFileAudio2:xr,LucideFileAxis3D:F1,LucideFileAxis3d:F1,LucideFileBadge:Cr,LucideFileBadge2:fr,LucideFileBarChart:D1,LucideFileBarChart2:R1,LucideFileBox:Ir,LucideFileChartColumn:R1,LucideFileChartColumnIncreasing:D1,LucideFileChartLine:T1,LucideFileChartPie:U1,LucideFileCheck:Sr,LucideFileCheck2:Nr,LucideFileClock:qr,LucideFileCode:$r,LucideFileCode2:br,LucideFileCog:O1,LucideFileCog2:O1,LucideFileDiff:Ar,LucideFileDigit:Hr,LucideFileDown:ha,LucideFileEdit:G1,LucideFileHeart:zr,LucideFileImage:Pr,LucideFileInput:jr,LucideFileJson:Br,LucideFileJson2:Vr,LucideFileKey:Dr,LucideFileKey2:Fr,LucideFileLineChart:T1,LucideFileLock:Tr,LucideFileLock2:Rr,LucideFileMinus:Or,LucideFileMinus2:Ur,LucideFileMusic:Zr,LucideFileOutput:Gr,LucideFilePen:G1,LucideFilePenLine:Z1,LucideFilePieChart:U1,LucideFilePlus:Er,LucideFilePlus2:Wr,LucideFileQuestion:Xr,LucideFileScan:Kr,LucideFileSearch:Qr,LucideFileSearch2:Jr,LucideFileSignature:Z1,LucideFileSliders:Yr,LucideFileSpreadsheet:ya,LucideFileStack:e4,LucideFileSymlink:a4,LucideFileTerminal:o4,LucideFileText:X2,LucideFileType:t4,LucideFileType2:c4,LucideFileUp:ra,LucideFileUser:n4,LucideFileVideo:i4,LucideFileVideo2:d4,LucideFileVolume:y4,LucideFileVolume2:h4,LucideFileWarning:r4,LucideFileX:p4,LucideFileX2:k4,LucideFiles:l4,LucideFilm:u4,LucideFilter:ka,LucideFilterX:M4,LucideFingerprint:pa,LucideFireExtinguisher:v4,LucideFish:g4,LucideFishOff:m4,LucideFishSymbol:_4,LucideFlag:f4,LucideFlagOff:L4,LucideFlagTriangleLeft:x4,LucideFlagTriangleRight:w4,LucideFlame:I4,LucideFlameKindling:C4,LucideFlashlight:S4,LucideFlashlightOff:N4,LucideFlaskConical:b4,LucideFlaskConicalOff:q4,LucideFlaskRound:$4,LucideFlipHorizontal:H4,LucideFlipHorizontal2:A4,LucideFlipVertical:P4,LucideFlipVertical2:z4,LucideFlower:V4,LucideFlower2:j4,LucideFocus:B4,LucideFoldHorizontal:F4,LucideFoldVertical:D4,LucideFolder:P0,LucideFolderArchive:R4,LucideFolderCheck:T4,LucideFolderClock:U4,LucideFolderClosed:O4,LucideFolderCode:Z4,LucideFolderCog:W1,LucideFolderCog2:W1,LucideFolderDot:G4,LucideFolderDown:W4,LucideFolderEdit:E1,LucideFolderGit:X4,LucideFolderGit2:E4,LucideFolderHeart:K4,LucideFolderInput:J4,LucideFolderKanban:Q4,LucideFolderKey:Y4,LucideFolderLock:ek,LucideFolderMinus:ak,LucideFolderOpen:sa,LucideFolderOpenDot:ok,LucideFolderOutput:ck,LucideFolderPen:E1,LucideFolderPlus:tk,LucideFolderRoot:nk,LucideFolderSearch:ik,LucideFolderSearch2:dk,LucideFolderSymlink:hk,LucideFolderSync:yk,LucideFolderTree:rk,LucideFolderUp:kk,LucideFolderX:pk,LucideFolders:sk,LucideFootprints:lk,LucideForkKnife:D2,LucideForkKnifeCrossed:F2,LucideForklift:uk,LucideFormInput:Le,LucideForward:Mk,LucideFrame:vk,LucideFramer:mk,LucideFrown:_k,LucideFuel:gk,LucideFullscreen:Lk,LucideFunctionSquare:o2,LucideGalleryHorizontal:wk,LucideGalleryHorizontalEnd:xk,LucideGalleryThumbnails:fk,LucideGalleryVertical:Ik,LucideGalleryVerticalEnd:Ck,LucideGamepad:Sk,LucideGamepad2:Nk,LucideGanttChart:Q,LucideGanttChartSquare:i,LucideGauge:qk,LucideGaugeCircle:l1,LucideGavel:bk,LucideGem:$k,LucideGhost:Ak,LucideGift:la,LucideGitBranch:ua,LucideGitBranchPlus:Hk,LucideGitCommit:X1,LucideGitCommitHorizontal:X1,LucideGitCommitVertical:zk,LucideGitCompare:jk,LucideGitCompareArrows:Pk,LucideGitFork:Vk,LucideGitGraph:Bk,LucideGitMerge:Fk,LucideGitPullRequest:Zk,LucideGitPullRequestArrow:Dk,LucideGitPullRequestClosed:Rk,LucideGitPullRequestCreate:Uk,LucideGitPullRequestCreateArrow:Tk,LucideGitPullRequestDraft:Ok,LucideGithub:Gk,LucideGitlab:Wk,LucideGlassWater:Ek,LucideGlasses:Xk,LucideGlobe:Ma,LucideGlobe2:j1,LucideGlobeLock:Kk,LucideGoal:Jk,LucideGrab:Qk,LucideGraduationCap:M0,LucideGrape:Yk,LucideGrid:d,LucideGrid2X2:Y1,LucideGrid2X2Check:K1,LucideGrid2X2Plus:J1,LucideGrid2X2X:Q1,LucideGrid2x2:Y1,LucideGrid2x2Check:K1,LucideGrid2x2Plus:J1,LucideGrid2x2X:Q1,LucideGrid3X3:d,LucideGrid3x3:d,LucideGrip:ap,LucideGripHorizontal:ep,LucideGripVertical:va,LucideGroup:op,LucideGuitar:cp,LucideHam:tp,LucideHammer:np,LucideHand:rp,LucideHandCoins:dp,LucideHandHeart:ip,LucideHandHelping:ee,LucideHandMetal:hp,LucideHandPlatter:yp,LucideHandshake:kp,LucideHardDrive:ma,LucideHardDriveDownload:pp,LucideHardDriveUpload:sp,LucideHardHat:lp,LucideHash:_a,LucideHaze:up,LucideHdmiPort:Mp,LucideHeading:wp,LucideHeading1:vp,LucideHeading2:mp,LucideHeading3:_p,LucideHeading4:gp,LucideHeading5:Lp,LucideHeading6:xp,LucideHeadphoneOff:fp,LucideHeadphones:Cp,LucideHeadset:Ip,LucideHeart:ga,LucideHeartCrack:Np,LucideHeartHandshake:Sp,LucideHeartOff:qp,LucideHeartPulse:bp,LucideHeater:$p,LucideHelpCircle:L,LucideHelpingHand:ee,LucideHexagon:Ap,LucideHighlighter:Hp,LucideHistory:C0,LucideHome:f,LucideHop:Pp,LucideHopOff:zp,LucideHospital:jp,LucideHotel:Vp,LucideHourglass:Bp,LucideHouse:f,LucideHousePlug:Fp,LucideHousePlus:Dp,LucideHouseWifi:Rp,LucideIceCream:oe,LucideIceCream2:ae,LucideIceCreamBowl:ae,LucideIceCreamCone:oe,LucideIdCard:v0,LucideImage:K2,LucideImageDown:Tp,LucideImageMinus:Up,LucideImageOff:Op,LucideImagePlay:Zp,LucideImagePlus:Gp,LucideImageUp:Wp,LucideImageUpscale:Ep,LucideImages:Xp,LucideImport:Kp,LucideInbox:Jp,LucideIndent:te,LucideIndentDecrease:ce,LucideIndentIncrease:te,LucideIndianRupee:b0,LucideInfinity:Qp,LucideInfo:xa,LucideInspect:h2,LucideInspectionPanel:Yp,LucideInstagram:ia,LucideItalic:h0,LucideIterationCcw:e5,LucideIterationCw:a5,LucideJapaneseYen:o5,LucideJoystick:c5,LucideKanban:t5,LucideKanbanSquare:c2,LucideKanbanSquareDashed:Ke,LucideKey:d5,LucideKeyRound:I0,LucideKeySquare:n5,LucideKeyboard:y5,LucideKeyboardMusic:i5,LucideKeyboardOff:h5,LucideLamp:u5,LucideLampCeiling:r5,LucideLampDesk:k5,LucideLampFloor:p5,LucideLampWallDown:s5,LucideLampWallUp:l5,LucideLandPlot:M5,LucideLandmark:v5,LucideLanguages:m5,LucideLaptop:g5,LucideLaptop2:ne,LucideLaptopMinimal:ne,LucideLaptopMinimalCheck:_5,LucideLasso:x5,LucideLassoSelect:L5,LucideLaugh:w5,LucideLayers:C,LucideLayers2:f5,LucideLayers3:C,LucideLayout:p,LucideLayoutDashboard:C5,LucideLayoutGrid:wa,LucideLayoutList:fa,LucideLayoutPanelLeft:I5,LucideLayoutPanelTop:N5,LucideLayoutTemplate:S5,LucideLeaf:q5,LucideLeafyGreen:b5,LucideLectern:$5,LucideLetterText:A5,LucideLibrary:z5,LucideLibraryBig:H5,LucideLibrarySquare:t2,LucideLifeBuoy:P5,LucideLigature:j5,LucideLightbulb:Ca,LucideLightbulbOff:V5,LucideLineChart:J,LucideLink:Na,LucideLink2:Ia,LucideLink2Off:B5,LucideLinkedin:Sa,LucideList:ba,LucideListCheck:F5,LucideListChecks:D5,LucideListCollapse:R5,LucideListEnd:T5,LucideListFilter:O5,LucideListFilterPlus:U5,LucideListMinus:Z5,LucideListMusic:G5,LucideListOrdered:y0,LucideListPlus:W5,LucideListRestart:E5,LucideListStart:X5,LucideListTodo:K5,LucideListTree:J5,LucideListVideo:Q5,LucideListX:Y5,LucideLoader:as,LucideLoader2:I,LucideLoaderCircle:I,LucideLoaderPinwheel:es,LucideLocate:cs,LucideLocateFixed:$a,LucideLocateOff:os,LucideLock:Aa,LucideLockKeyhole:ts,LucideLockKeyholeOpen:de,LucideLockOpen:s,LucideLogIn:Ha,LucideLogOut:za,LucideLogs:ns,LucideLollipop:ds,LucideLuggage:is,LucideMSquare:n2,LucideMagnet:hs,LucideMail:Pa,LucideMailCheck:ys,LucideMailMinus:rs,LucideMailOpen:ks,LucideMailPlus:ps,LucideMailQuestion:ss,LucideMailSearch:ls,LucideMailWarning:us,LucideMailX:Ms,LucideMailbox:vs,LucideMails:ms,LucideMap:$s,LucideMapPin:ja,LucideMapPinCheck:gs,LucideMapPinCheckInside:_s,LucideMapPinHouse:Ls,LucideMapPinMinus:ws,LucideMapPinMinusInside:xs,LucideMapPinOff:fs,LucideMapPinPlus:Is,LucideMapPinPlusInside:Cs,LucideMapPinX:Ss,LucideMapPinXInside:Ns,LucideMapPinned:qs,LucideMapPlus:bs,LucideMars:Hs,LucideMarsStroke:As,LucideMartini:zs,LucideMaximize:js,LucideMaximize2:Ps,LucideMedal:Vs,LucideMegaphone:Fs,LucideMegaphoneOff:Bs,LucideMeh:Ds,LucideMemoryStick:Rs,LucideMenu:Va,LucideMenuSquare:d2,LucideMerge:Ts,LucideMessageCircle:Ys,LucideMessageCircleCode:Us,LucideMessageCircleDashed:Os,LucideMessageCircleHeart:Zs,LucideMessageCircleMore:Gs,LucideMessageCircleOff:Ws,LucideMessageCirclePlus:Es,LucideMessageCircleQuestion:Xs,LucideMessageCircleReply:Ks,LucideMessageCircleWarning:Js,LucideMessageCircleX:Qs,LucideMessageSquare:Fa,LucideMessageSquareCode:e3,LucideMessageSquareDashed:a3,LucideMessageSquareDiff:o3,LucideMessageSquareDot:c3,LucideMessageSquareHeart:t3,LucideMessageSquareLock:n3,LucideMessageSquareMore:d3,LucideMessageSquareOff:i3,LucideMessageSquarePlus:h3,LucideMessageSquareQuote:y3,LucideMessageSquareReply:r3,LucideMessageSquareShare:k3,LucideMessageSquareText:p3,LucideMessageSquareWarning:Ba,LucideMessageSquareX:s3,LucideMessagesSquare:l3,LucideMic:M3,LucideMic2:ie,LucideMicOff:u3,LucideMicVocal:ie,LucideMicrochip:v3,LucideMicroscope:m3,LucideMicrowave:_3,LucideMilestone:g3,LucideMilk:x3,LucideMilkOff:L3,LucideMinimize:f3,LucideMinimize2:w3,LucideMinus:C3,LucideMinusCircle:u1,LucideMinusSquare:i2,LucideMonitor:Da,LucideMonitorCheck:I3,LucideMonitorCog:N3,LucideMonitorDot:S3,LucideMonitorDown:q3,LucideMonitorOff:b3,LucideMonitorPause:$3,LucideMonitorPlay:A3,LucideMonitorSmartphone:H3,LucideMonitorSpeaker:z3,LucideMonitorStop:P3,LucideMonitorUp:j3,LucideMonitorX:V3,LucideMoon:J2,LucideMoonStar:B3,LucideMoreHorizontal:B1,LucideMoreVertical:V1,LucideMountain:D3,LucideMountainSnow:F3,LucideMouse:G3,LucideMouseOff:R3,LucideMousePointer:Z3,LucideMousePointer2:T3,LucideMousePointerBan:U3,LucideMousePointerClick:O3,LucideMousePointerSquareDashed:Je,LucideMove:nl,LucideMove3D:he,LucideMove3d:he,LucideMoveDiagonal:E3,LucideMoveDiagonal2:W3,LucideMoveDown:J3,LucideMoveDownLeft:X3,LucideMoveDownRight:K3,LucideMoveHorizontal:Q3,LucideMoveLeft:Y3,LucideMoveRight:el,LucideMoveUp:cl,LucideMoveUpLeft:al,LucideMoveUpRight:ol,LucideMoveVertical:tl,LucideMusic:yl,LucideMusic2:dl,LucideMusic3:il,LucideMusic4:hl,LucideNavigation:sl,LucideNavigation2:kl,LucideNavigation2Off:rl,LucideNavigationOff:pl,LucideNetwork:ll,LucideNewspaper:ul,LucideNfc:Ml,LucideNonBinary:vl,LucideNotebook:Ll,LucideNotebookPen:ml,LucideNotebookTabs:_l,LucideNotebookText:gl,LucideNotepadText:wl,LucideNotepadTextDashed:xl,LucideNut:Cl,LucideNutOff:fl,LucideOctagon:Nl,LucideOctagonAlert:ye,LucideOctagonMinus:Il,LucideOctagonPause:re,LucideOctagonX:ke,LucideOmega:Sl,LucideOption:ql,LucideOrbit:bl,LucideOrigami:$l,LucideOutdent:ce,LucidePackage:Ra,LucidePackage2:Al,LucidePackageCheck:Hl,LucidePackageMinus:zl,LucidePackageOpen:Pl,LucidePackagePlus:jl,LucidePackageSearch:Vl,LucidePackageX:Bl,LucidePaintBucket:Fl,LucidePaintRoller:Dl,LucidePaintbrush:Rl,LucidePaintbrush2:pe,LucidePaintbrushVertical:pe,LucidePalette:Q2,LucidePalmtree:q2,LucidePanelBottom:Ol,LucidePanelBottomClose:Tl,LucidePanelBottomDashed:se,LucidePanelBottomInactive:se,LucidePanelBottomOpen:Ul,LucidePanelLeft:k,LucidePanelLeftClose:le,LucidePanelLeftDashed:ue,LucidePanelLeftInactive:ue,LucidePanelLeftOpen:Me,LucidePanelRight:Wl,LucidePanelRightClose:Zl,LucidePanelRightDashed:ve,LucidePanelRightInactive:ve,LucidePanelRightOpen:Gl,LucidePanelTop:Kl,LucidePanelTopClose:El,LucidePanelTopDashed:me,LucidePanelTopInactive:me,LucidePanelTopOpen:Xl,LucidePanelsLeftBottom:Jl,LucidePanelsLeftRight:H1,LucidePanelsRightBottom:Ql,LucidePanelsTopBottom:fe,LucidePanelsTopLeft:p,LucidePaperclip:Yl,LucideParentheses:e6,LucideParkingCircle:v1,LucideParkingCircleOff:M1,LucideParkingMeter:a6,LucideParkingSquare:r2,LucideParkingSquareOff:y2,LucidePartyPopper:o6,LucidePause:c6,LucidePauseCircle:m1,LucidePauseOctagon:re,LucidePawPrint:t6,LucidePcCase:n6,LucidePen:_e,LucidePenBox:n,LucidePenLine:w,LucidePenOff:d6,LucidePenSquare:n,LucidePenTool:i6,LucidePencil:k6,LucidePencilLine:h6,LucidePencilOff:y6,LucidePencilRuler:r6,LucidePentagon:p6,LucidePercent:Ta,LucidePercentCircle:_1,LucidePercentDiamond:P1,LucidePercentSquare:k2,LucidePersonStanding:s6,LucidePhilippinePeso:l6,LucidePhone:Ua,LucidePhoneCall:u6,LucidePhoneForwarded:M6,LucidePhoneIncoming:v6,LucidePhoneMissed:m6,LucidePhoneOff:_6,LucidePhoneOutgoing:g6,LucidePi:L6,LucidePiSquare:p2,LucidePiano:x6,LucidePickaxe:w6,LucidePictureInPicture:C6,LucidePictureInPicture2:f6,LucidePieChart:Y,LucidePiggyBank:I6,LucidePilcrow:q6,LucidePilcrowLeft:N6,LucidePilcrowRight:S6,LucidePilcrowSquare:s2,LucidePill:$6,LucidePillBottle:b6,LucidePin:H6,LucidePinOff:A6,LucidePipette:z6,LucidePizza:P6,LucidePlane:Oa,LucidePlaneLanding:j6,LucidePlaneTakeoff:V6,LucidePlay:Za,LucidePlayCircle:g1,LucidePlaySquare:l2,LucidePlug:F6,LucidePlug2:B6,LucidePlugZap:ge,LucidePlugZap2:ge,LucidePlus:Y2,LucidePlusCircle:L1,LucidePlusSquare:u2,LucidePocket:R6,LucidePocketKnife:D6,LucidePodcast:T6,LucidePointer:O6,LucidePointerOff:U6,LucidePopcorn:Z6,LucidePopsicle:G6,LucidePoundSterling:W6,LucidePower:X6,LucidePowerCircle:x1,LucidePowerOff:E6,LucidePowerSquare:M2,LucidePresentation:K6,LucidePrinter:Q6,LucidePrinterCheck:J6,LucideProjector:Y6,LucideProportions:e8,LucidePuzzle:a8,LucidePyramid:o8,LucideQrCode:Ga,LucideQuote:Wa,LucideRabbit:c8,LucideRadar:t8,LucideRadiation:n8,LucideRadical:d8,LucideRadio:Ea,LucideRadioReceiver:i8,LucideRadioTower:h8,LucideRadius:y8,LucideRailSymbol:r8,LucideRainbow:k8,LucideRat:p8,LucideRatio:s8,LucideReceipt:x8,LucideReceiptCent:l8,LucideReceiptEuro:u8,LucideReceiptIndianRupee:M8,LucideReceiptJapaneseYen:v8,LucideReceiptPoundSterling:m8,LucideReceiptRussianRuble:_8,LucideReceiptSwissFranc:g8,LucideReceiptText:L8,LucideRectangleEllipsis:Le,LucideRectangleHorizontal:w8,LucideRectangleVertical:f8,LucideRecycle:C8,LucideRedo:r0,LucideRedo2:I8,LucideRedoDot:N8,LucideRefreshCcw:q8,LucideRefreshCcwDot:S8,LucideRefreshCw:Xa,LucideRefreshCwOff:b8,LucideRefrigerator:$8,LucideRegex:A8,LucideRemoveFormatting:H8,LucideRepeat:j8,LucideRepeat1:z8,LucideRepeat2:P8,LucideReplace:B8,LucideReplaceAll:V8,LucideReply:D8,LucideReplyAll:F8,LucideRewind:R8,LucideRibbon:T8,LucideRocket:U8,LucideRockingChair:O8,LucideRollerCoaster:Z8,LucideRotate3D:xe,LucideRotate3d:xe,LucideRotateCcw:W8,LucideRotateCcwSquare:G8,LucideRotateCw:X8,LucideRotateCwSquare:E8,LucideRoute:J8,LucideRouteOff:K8,LucideRouter:Q8,LucideRows:we,LucideRows2:we,LucideRows3:fe,LucideRows4:Y8,LucideRss:e7,LucideRuler:Ka,LucideRussianRuble:a7,LucideSailboat:o7,LucideSalad:c7,LucideSandwich:t7,LucideSatellite:d7,LucideSatelliteDish:n7,LucideSave:e0,LucideSaveAll:i7,LucideSaveOff:h7,LucideScale:m0,LucideScale3D:Ce,LucideScale3d:Ce,LucideScaling:y7,LucideScan:m7,LucideScanBarcode:r7,LucideScanEye:k7,LucideScanFace:p7,LucideScanHeart:s7,LucideScanLine:l7,LucideScanQrCode:u7,LucideScanSearch:M7,LucideScanText:v7,LucideScatterChart:e1,LucideSchool:_7,LucideSchool2:$2,LucideScissors:L7,LucideScissorsLineDashed:g7,LucideScissorsSquare:v2,LucideScissorsSquareDashedBottom:Ue,LucideScreenShare:w7,LucideScreenShareOff:x7,LucideScroll:C7,LucideScrollText:f7,LucideSearch:a0,LucideSearchCheck:I7,LucideSearchCode:N7,LucideSearchSlash:S7,LucideSearchX:q7,LucideSection:b7,LucideSend:Ja,LucideSendHorizonal:Ie,LucideSendHorizontal:Ie,LucideSendToBack:$7,LucideSeparatorHorizontal:A7,LucideSeparatorVertical:H7,LucideServer:Qa,LucideServerCog:z7,LucideServerCrash:P7,LucideServerOff:j7,LucideSettings:Ya,LucideSettings2:V7,LucideShapes:B7,LucideShare:F7,LucideShare2:eo,LucideSheet:D7,LucideShell:R7,LucideShield:La,LucideShieldAlert:T7,LucideShieldBan:U7,LucideShieldCheck:co,LucideShieldClose:Ne,LucideShieldEllipsis:O7,LucideShieldHalf:Z7,LucideShieldMinus:G7,LucideShieldOff:W7,LucideShieldPlus:E7,LucideShieldQuestion:X7,LucideShieldX:Ne,LucideShip:J7,LucideShipWheel:K7,LucideShirt:Q7,LucideShoppingBag:Y7,LucideShoppingBasket:eu,LucideShoppingCart:au,LucideShovel:ou,LucideShowerHead:cu,LucideShrink:tu,LucideShrub:nu,LucideShuffle:du,LucideSidebar:k,LucideSidebarClose:le,LucideSidebarOpen:Me,LucideSigma:iu,LucideSigmaSquare:m2,LucideSignal:pu,LucideSignalHigh:hu,LucideSignalLow:yu,LucideSignalMedium:ru,LucideSignalZero:ku,LucideSignature:su,LucideSignpost:uu,LucideSignpostBig:lu,LucideSiren:Mu,LucideSkipBack:vu,LucideSkipForward:mu,LucideSkull:_u,LucideSlack:gu,LucideSlash:Lu,LucideSlashSquare:_2,LucideSlice:xu,LucideSliders:Se,LucideSlidersHorizontal:wu,LucideSlidersVertical:Se,LucideSmartphone:ao,LucideSmartphoneCharging:fu,LucideSmartphoneNfc:Cu,LucideSmile:Nu,LucideSmilePlus:Iu,LucideSnail:Su,LucideSnowflake:qu,LucideSofa:bu,LucideSortAsc:j,LucideSortDesc:H,LucideSoup:$u,LucideSpace:Au,LucideSpade:Hu,LucideSparkle:zu,LucideSparkles:l,LucideSpeaker:Pu,LucideSpeech:ju,LucideSpellCheck:Bu,LucideSpellCheck2:Vu,LucideSpline:Fu,LucideSplit:Du,LucideSplitSquareHorizontal:g2,LucideSplitSquareVertical:L2,LucideSprayCan:Ru,LucideSprout:Tu,LucideSquare:Eu,LucideSquareActivity:qe,LucideSquareArrowDown:Ae,LucideSquareArrowDownLeft:be,LucideSquareArrowDownRight:$e,LucideSquareArrowLeft:He,LucideSquareArrowOutDownLeft:ze,LucideSquareArrowOutDownRight:Pe,LucideSquareArrowOutUpLeft:je,LucideSquareArrowOutUpRight:Ve,LucideSquareArrowRight:Be,LucideSquareArrowUp:Re,LucideSquareArrowUpLeft:Fe,LucideSquareArrowUpRight:De,LucideSquareAsterisk:Te,LucideSquareBottomDashedScissors:Ue,LucideSquareChartGantt:i,LucideSquareCheck:Oe,LucideSquareCheckBig:N,LucideSquareChevronDown:Ze,LucideSquareChevronLeft:Ge,LucideSquareChevronRight:We,LucideSquareChevronUp:Ee,LucideSquareCode:Xe,LucideSquareDashed:Qe,LucideSquareDashedBottom:Ou,LucideSquareDashedBottomCode:Uu,LucideSquareDashedKanban:Ke,LucideSquareDashedMousePointer:Je,LucideSquareDivide:Ye,LucideSquareDot:e2,LucideSquareEqual:a2,LucideSquareFunction:o2,LucideSquareGanttChart:i,LucideSquareKanban:c2,LucideSquareLibrary:t2,LucideSquareM:n2,LucideSquareMenu:d2,LucideSquareMinus:i2,LucideSquareMousePointer:h2,LucideSquareParking:r2,LucideSquareParkingOff:y2,LucideSquarePen:n,LucideSquarePercent:k2,LucideSquarePi:p2,LucideSquarePilcrow:s2,LucideSquarePlay:l2,LucideSquarePlus:u2,LucideSquarePower:M2,LucideSquareRadical:Zu,LucideSquareScissors:v2,LucideSquareSigma:m2,LucideSquareSlash:_2,LucideSquareSplitHorizontal:g2,LucideSquareSplitVertical:L2,LucideSquareSquare:Gu,LucideSquareStack:Wu,LucideSquareTerminal:x2,LucideSquareUser:f2,LucideSquareUserRound:w2,LucideSquareX:C2,LucideSquircle:Xu,LucideSquirrel:Ku,LucideStamp:Ju,LucideStar:to,LucideStarHalf:Qu,LucideStarOff:Yu,LucideStars:l,LucideStepBack:eM,LucideStepForward:aM,LucideStethoscope:oM,LucideSticker:cM,LucideStickyNote:tM,LucideStopCircle:f1,LucideStore:nM,LucideStretchHorizontal:dM,LucideStretchVertical:iM,LucideStrikethrough:k0,LucideSubscript:hM,LucideSubtitles:O,LucideSun:no,LucideSunDim:yM,LucideSunMedium:rM,LucideSunMoon:kM,LucideSunSnow:pM,LucideSunrise:sM,LucideSunset:lM,LucideSuperscript:uM,LucideSwatchBook:MM,LucideSwissFranc:vM,LucideSwitchCamera:mM,LucideSword:_M,LucideSwords:gM,LucideSyringe:LM,LucideTable:qM,LucideTable2:xM,LucideTableCellsMerge:wM,LucideTableCellsSplit:fM,LucideTableColumnsSplit:CM,LucideTableOfContents:IM,LucideTableProperties:NM,LucideTableRowsSplit:SM,LucideTablet:$M,LucideTabletSmartphone:bM,LucideTablets:AM,LucideTag:io,LucideTags:HM,LucideTally1:zM,LucideTally2:PM,LucideTally3:jM,LucideTally4:VM,LucideTally5:BM,LucideTangent:FM,LucideTarget:ho,LucideTelescope:DM,LucideTent:TM,LucideTentTree:RM,LucideTerminal:UM,LucideTerminalSquare:x2,LucideTestTube:OM,LucideTestTube2:I2,LucideTestTubeDiagonal:I2,LucideTestTubes:ZM,LucideText:KM,LucideTextCursor:WM,LucideTextCursorInput:GM,LucideTextQuote:EM,LucideTextSearch:XM,LucideTextSelect:N2,LucideTextSelection:N2,LucideTheater:JM,LucideThermometer:e9,LucideThermometerSnowflake:QM,LucideThermometerSun:YM,LucideThumbsDown:yo,LucideThumbsUp:ro,LucideTicket:ko,LucideTicketCheck:a9,LucideTicketMinus:o9,LucideTicketPercent:c9,LucideTicketPlus:t9,LucideTicketSlash:n9,LucideTicketX:d9,LucideTickets:h9,LucideTicketsPlane:i9,LucideTimer:po,LucideTimerOff:y9,LucideTimerReset:r9,LucideToggleLeft:k9,LucideToggleRight:p9,LucideToilet:s9,LucideTornado:l9,LucideTorus:u9,LucideTouchpad:v9,LucideTouchpadOff:M9,LucideTowerControl:m9,LucideToyBrick:_9,LucideTractor:g9,LucideTrafficCone:L9,LucideTrain:S2,LucideTrainFront:w9,LucideTrainFrontTunnel:x9,LucideTrainTrack:f9,LucideTramFront:S2,LucideTransgender:C9,LucideTrash:lo,LucideTrash2:so,LucideTreeDeciduous:I9,LucideTreePalm:q2,LucideTreePine:N9,LucideTrees:S9,LucideTrello:q9,LucideTrendingDown:uo,LucideTrendingUp:Mo,LucideTrendingUpDown:b9,LucideTriangle:H9,LucideTriangleAlert:S,LucideTriangleDashed:$9,LucideTriangleRight:A9,LucideTrophy:vo,LucideTruck:z9,LucideTurtle:P9,LucideTv:V9,LucideTv2:b2,LucideTvMinimal:b2,LucideTvMinimalPlay:j9,LucideTwitch:B9,LucideTwitter:qa,LucideType:mo,LucideTypeOutline:F9,LucideUmbrella:R9,LucideUmbrellaOff:D9,LucideUnderline:T9,LucideUndo:p0,LucideUndo2:U9,LucideUndoDot:O9,LucideUnfoldHorizontal:Z9,LucideUnfoldVertical:G9,LucideUngroup:W9,LucideUniversity:$2,LucideUnlink:s0,LucideUnlink2:E9,LucideUnlock:s,LucideUnlockKeyhole:de,LucideUnplug:X9,LucideUpload:o0,LucideUploadCloud:b1,LucideUsb:K9,LucideUser:xo,LucideUser2:V2,LucideUserCheck:_o,LucideUserCheck2:A2,LucideUserCircle:I1,LucideUserCircle2:C1,LucideUserCog:J9,LucideUserCog2:H2,LucideUserMinus:Q9,LucideUserMinus2:z2,LucideUserPen:Y9,LucideUserPlus:go,LucideUserPlus2:P2,LucideUserRound:V2,LucideUserRoundCheck:A2,LucideUserRoundCog:H2,LucideUserRoundMinus:z2,LucideUserRoundPen:ev,LucideUserRoundPlus:P2,LucideUserRoundSearch:av,LucideUserRoundX:j2,LucideUserSearch:ov,LucideUserSquare:f2,LucideUserSquare2:w2,LucideUserX:Lo,LucideUserX2:j2,LucideUsers:wo,LucideUsers2:B2,LucideUsersRound:B2,LucideUtensils:D2,LucideUtensilsCrossed:F2,LucideUtilityPole:cv,LucideVariable:tv,LucideVault:nv,LucideVegan:dv,LucideVenetianMask:iv,LucideVenus:yv,LucideVenusAndMars:hv,LucideVerified:F,LucideVibrate:kv,LucideVibrateOff:rv,LucideVideo:sv,LucideVideoOff:pv,LucideVideotape:lv,LucideView:uv,LucideVoicemail:Mv,LucideVolleyball:vv,LucideVolume:xv,LucideVolume1:mv,LucideVolume2:_v,LucideVolumeOff:gv,LucideVolumeX:Lv,LucideVote:wv,LucideWallet:fo,LucideWallet2:R2,LucideWalletCards:fv,LucideWalletMinimal:R2,LucideWallpaper:Cv,LucideWand:Iv,LucideWand2:T2,LucideWandSparkles:T2,LucideWarehouse:Nv,LucideWashingMachine:Sv,LucideWatch:qv,LucideWaves:$v,LucideWavesLadder:bv,LucideWaypoints:Av,LucideWebcam:Hv,LucideWebhook:Pv,LucideWebhookOff:zv,LucideWeight:jv,LucideWheat:Bv,LucideWheatOff:Vv,LucideWholeWord:Fv,LucideWifi:oo,LucideWifiHigh:Dv,LucideWifiLow:Rv,LucideWifiOff:Tv,LucideWifiZero:Uv,LucideWind:Zv,LucideWindArrowDown:Ov,LucideWine:Wv,LucideWineOff:Gv,LucideWorkflow:Ev,LucideWorm:Xv,LucideWrapText:Kv,LucideWrench:Co,LucideX:c0,LucideXCircle:x,LucideXOctagon:ke,LucideXSquare:C2,LucideYoutube:Jv,LucideZap:Io,LucideZapOff:Qv,LucideZoomIn:Yv,LucideZoomOut:em,Luggage:is,LuggageIcon:is,MSquare:n2,MSquareIcon:n2,Magnet:hs,MagnetIcon:hs,Mail:Pa,MailCheck:ys,MailCheckIcon:ys,MailIcon:Pa,MailMinus:rs,MailMinusIcon:rs,MailOpen:ks,MailOpenIcon:ks,MailPlus:ps,MailPlusIcon:ps,MailQuestion:ss,MailQuestionIcon:ss,MailSearch:ls,MailSearchIcon:ls,MailWarning:us,MailWarningIcon:us,MailX:Ms,MailXIcon:Ms,Mailbox:vs,MailboxIcon:vs,Mails:ms,MailsIcon:ms,Map:$s,MapIcon:$s,MapPin:ja,MapPinCheck:gs,MapPinCheckIcon:gs,MapPinCheckInside:_s,MapPinCheckInsideIcon:_s,MapPinHouse:Ls,MapPinHouseIcon:Ls,MapPinIcon:ja,MapPinMinus:ws,MapPinMinusIcon:ws,MapPinMinusInside:xs,MapPinMinusInsideIcon:xs,MapPinOff:fs,MapPinOffIcon:fs,MapPinPlus:Is,MapPinPlusIcon:Is,MapPinPlusInside:Cs,MapPinPlusInsideIcon:Cs,MapPinX:Ss,MapPinXIcon:Ss,MapPinXInside:Ns,MapPinXInsideIcon:Ns,MapPinned:qs,MapPinnedIcon:qs,MapPlus:bs,MapPlusIcon:bs,Mars:Hs,MarsIcon:Hs,MarsStroke:As,MarsStrokeIcon:As,Martini:zs,MartiniIcon:zs,Maximize:js,Maximize2:Ps,Maximize2Icon:Ps,MaximizeIcon:js,Medal:Vs,MedalIcon:Vs,Megaphone:Fs,MegaphoneIcon:Fs,MegaphoneOff:Bs,MegaphoneOffIcon:Bs,Meh:Ds,MehIcon:Ds,MemoryStick:Rs,MemoryStickIcon:Rs,Menu:Va,MenuIcon:Va,MenuSquare:d2,MenuSquareIcon:d2,Merge:Ts,MergeIcon:Ts,MessageCircle:Ys,MessageCircleCode:Us,MessageCircleCodeIcon:Us,MessageCircleDashed:Os,MessageCircleDashedIcon:Os,MessageCircleHeart:Zs,MessageCircleHeartIcon:Zs,MessageCircleIcon:Ys,MessageCircleMore:Gs,MessageCircleMoreIcon:Gs,MessageCircleOff:Ws,MessageCircleOffIcon:Ws,MessageCirclePlus:Es,MessageCirclePlusIcon:Es,MessageCircleQuestion:Xs,MessageCircleQuestionIcon:Xs,MessageCircleReply:Ks,MessageCircleReplyIcon:Ks,MessageCircleWarning:Js,MessageCircleWarningIcon:Js,MessageCircleX:Qs,MessageCircleXIcon:Qs,MessageSquare:Fa,MessageSquareCode:e3,MessageSquareCodeIcon:e3,MessageSquareDashed:a3,MessageSquareDashedIcon:a3,MessageSquareDiff:o3,MessageSquareDiffIcon:o3,MessageSquareDot:c3,MessageSquareDotIcon:c3,MessageSquareHeart:t3,MessageSquareHeartIcon:t3,MessageSquareIcon:Fa,MessageSquareLock:n3,MessageSquareLockIcon:n3,MessageSquareMore:d3,MessageSquareMoreIcon:d3,MessageSquareOff:i3,MessageSquareOffIcon:i3,MessageSquarePlus:h3,MessageSquarePlusIcon:h3,MessageSquareQuote:y3,MessageSquareQuoteIcon:y3,MessageSquareReply:r3,MessageSquareReplyIcon:r3,MessageSquareShare:k3,MessageSquareShareIcon:k3,MessageSquareText:p3,MessageSquareTextIcon:p3,MessageSquareWarning:Ba,MessageSquareWarningIcon:Ba,MessageSquareX:s3,MessageSquareXIcon:s3,MessagesSquare:l3,MessagesSquareIcon:l3,Mic:M3,Mic2:ie,Mic2Icon:ie,MicIcon:M3,MicOff:u3,MicOffIcon:u3,MicVocal:ie,MicVocalIcon:ie,Microchip:v3,MicrochipIcon:v3,Microscope:m3,MicroscopeIcon:m3,Microwave:_3,MicrowaveIcon:_3,Milestone:g3,MilestoneIcon:g3,Milk:x3,MilkIcon:x3,MilkOff:L3,MilkOffIcon:L3,Minimize:f3,Minimize2:w3,Minimize2Icon:w3,MinimizeIcon:f3,Minus:C3,MinusCircle:u1,MinusCircleIcon:u1,MinusIcon:C3,MinusSquare:i2,MinusSquareIcon:i2,Monitor:Da,MonitorCheck:I3,MonitorCheckIcon:I3,MonitorCog:N3,MonitorCogIcon:N3,MonitorDot:S3,MonitorDotIcon:S3,MonitorDown:q3,MonitorDownIcon:q3,MonitorIcon:Da,MonitorOff:b3,MonitorOffIcon:b3,MonitorPause:$3,MonitorPauseIcon:$3,MonitorPlay:A3,MonitorPlayIcon:A3,MonitorSmartphone:H3,MonitorSmartphoneIcon:H3,MonitorSpeaker:z3,MonitorSpeakerIcon:z3,MonitorStop:P3,MonitorStopIcon:P3,MonitorUp:j3,MonitorUpIcon:j3,MonitorX:V3,MonitorXIcon:V3,Moon:J2,MoonIcon:J2,MoonStar:B3,MoonStarIcon:B3,MoreHorizontal:B1,MoreHorizontalIcon:B1,MoreVertical:V1,MoreVerticalIcon:V1,Mountain:D3,MountainIcon:D3,MountainSnow:F3,MountainSnowIcon:F3,Mouse:G3,MouseIcon:G3,MouseOff:R3,MouseOffIcon:R3,MousePointer:Z3,MousePointer2:T3,MousePointer2Icon:T3,MousePointerBan:U3,MousePointerBanIcon:U3,MousePointerClick:O3,MousePointerClickIcon:O3,MousePointerIcon:Z3,MousePointerSquareDashed:Je,MousePointerSquareDashedIcon:Je,Move:nl,Move3D:he,Move3DIcon:he,Move3d:he,Move3dIcon:he,MoveDiagonal:E3,MoveDiagonal2:W3,MoveDiagonal2Icon:W3,MoveDiagonalIcon:E3,MoveDown:J3,MoveDownIcon:J3,MoveDownLeft:X3,MoveDownLeftIcon:X3,MoveDownRight:K3,MoveDownRightIcon:K3,MoveHorizontal:Q3,MoveHorizontalIcon:Q3,MoveIcon:nl,MoveLeft:Y3,MoveLeftIcon:Y3,MoveRight:el,MoveRightIcon:el,MoveUp:cl,MoveUpIcon:cl,MoveUpLeft:al,MoveUpLeftIcon:al,MoveUpRight:ol,MoveUpRightIcon:ol,MoveVertical:tl,MoveVerticalIcon:tl,Music:yl,Music2:dl,Music2Icon:dl,Music3:il,Music3Icon:il,Music4:hl,Music4Icon:hl,MusicIcon:yl,Navigation:sl,Navigation2:kl,Navigation2Icon:kl,Navigation2Off:rl,Navigation2OffIcon:rl,NavigationIcon:sl,NavigationOff:pl,NavigationOffIcon:pl,Network:ll,NetworkIcon:ll,Newspaper:ul,NewspaperIcon:ul,Nfc:Ml,NfcIcon:Ml,NonBinary:vl,NonBinaryIcon:vl,Notebook:Ll,NotebookIcon:Ll,NotebookPen:ml,NotebookPenIcon:ml,NotebookTabs:_l,NotebookTabsIcon:_l,NotebookText:gl,NotebookTextIcon:gl,NotepadText:wl,NotepadTextDashed:xl,NotepadTextDashedIcon:xl,NotepadTextIcon:wl,Nut:Cl,NutIcon:Cl,NutOff:fl,NutOffIcon:fl,Octagon:Nl,OctagonAlert:ye,OctagonAlertIcon:ye,OctagonIcon:Nl,OctagonMinus:Il,OctagonMinusIcon:Il,OctagonPause:re,OctagonPauseIcon:re,OctagonX:ke,OctagonXIcon:ke,Omega:Sl,OmegaIcon:Sl,Option:ql,OptionIcon:ql,Orbit:bl,OrbitIcon:bl,Origami:$l,OrigamiIcon:$l,Outdent:ce,OutdentIcon:ce,Package:Ra,Package2:Al,Package2Icon:Al,PackageCheck:Hl,PackageCheckIcon:Hl,PackageIcon:Ra,PackageMinus:zl,PackageMinusIcon:zl,PackageOpen:Pl,PackageOpenIcon:Pl,PackagePlus:jl,PackagePlusIcon:jl,PackageSearch:Vl,PackageSearchIcon:Vl,PackageX:Bl,PackageXIcon:Bl,PaintBucket:Fl,PaintBucketIcon:Fl,PaintRoller:Dl,PaintRollerIcon:Dl,Paintbrush:Rl,Paintbrush2:pe,Paintbrush2Icon:pe,PaintbrushIcon:Rl,PaintbrushVertical:pe,PaintbrushVerticalIcon:pe,Palette:Q2,PaletteIcon:Q2,Palmtree:q2,PalmtreeIcon:q2,PanelBottom:Ol,PanelBottomClose:Tl,PanelBottomCloseIcon:Tl,PanelBottomDashed:se,PanelBottomDashedIcon:se,PanelBottomIcon:Ol,PanelBottomInactive:se,PanelBottomInactiveIcon:se,PanelBottomOpen:Ul,PanelBottomOpenIcon:Ul,PanelLeft:k,PanelLeftClose:le,PanelLeftCloseIcon:le,PanelLeftDashed:ue,PanelLeftDashedIcon:ue,PanelLeftIcon:k,PanelLeftInactive:ue,PanelLeftInactiveIcon:ue,PanelLeftOpen:Me,PanelLeftOpenIcon:Me,PanelRight:Wl,PanelRightClose:Zl,PanelRightCloseIcon:Zl,PanelRightDashed:ve,PanelRightDashedIcon:ve,PanelRightIcon:Wl,PanelRightInactive:ve,PanelRightInactiveIcon:ve,PanelRightOpen:Gl,PanelRightOpenIcon:Gl,PanelTop:Kl,PanelTopClose:El,PanelTopCloseIcon:El,PanelTopDashed:me,PanelTopDashedIcon:me,PanelTopIcon:Kl,PanelTopInactive:me,PanelTopInactiveIcon:me,PanelTopOpen:Xl,PanelTopOpenIcon:Xl,PanelsLeftBottom:Jl,PanelsLeftBottomIcon:Jl,PanelsLeftRight:H1,PanelsLeftRightIcon:H1,PanelsRightBottom:Ql,PanelsRightBottomIcon:Ql,PanelsTopBottom:fe,PanelsTopBottomIcon:fe,PanelsTopLeft:p,PanelsTopLeftIcon:p,Paperclip:Yl,PaperclipIcon:Yl,Parentheses:e6,ParenthesesIcon:e6,ParkingCircle:v1,ParkingCircleIcon:v1,ParkingCircleOff:M1,ParkingCircleOffIcon:M1,ParkingMeter:a6,ParkingMeterIcon:a6,ParkingSquare:r2,ParkingSquareIcon:r2,ParkingSquareOff:y2,ParkingSquareOffIcon:y2,PartyPopper:o6,PartyPopperIcon:o6,Pause:c6,PauseCircle:m1,PauseCircleIcon:m1,PauseIcon:c6,PauseOctagon:re,PauseOctagonIcon:re,PawPrint:t6,PawPrintIcon:t6,PcCase:n6,PcCaseIcon:n6,Pen:_e,PenBox:n,PenBoxIcon:n,PenIcon:_e,PenLine:w,PenLineIcon:w,PenOff:d6,PenOffIcon:d6,PenSquare:n,PenSquareIcon:n,PenTool:i6,PenToolIcon:i6,Pencil:k6,PencilIcon:k6,PencilLine:h6,PencilLineIcon:h6,PencilOff:y6,PencilOffIcon:y6,PencilRuler:r6,PencilRulerIcon:r6,Pentagon:p6,PentagonIcon:p6,Percent:Ta,PercentCircle:_1,PercentCircleIcon:_1,PercentDiamond:P1,PercentDiamondIcon:P1,PercentIcon:Ta,PercentSquare:k2,PercentSquareIcon:k2,PersonStanding:s6,PersonStandingIcon:s6,PhilippinePeso:l6,PhilippinePesoIcon:l6,Phone:Ua,PhoneCall:u6,PhoneCallIcon:u6,PhoneForwarded:M6,PhoneForwardedIcon:M6,PhoneIcon:Ua,PhoneIncoming:v6,PhoneIncomingIcon:v6,PhoneMissed:m6,PhoneMissedIcon:m6,PhoneOff:_6,PhoneOffIcon:_6,PhoneOutgoing:g6,PhoneOutgoingIcon:g6,Pi:L6,PiIcon:L6,PiSquare:p2,PiSquareIcon:p2,Piano:x6,PianoIcon:x6,Pickaxe:w6,PickaxeIcon:w6,PictureInPicture:C6,PictureInPicture2:f6,PictureInPicture2Icon:f6,PictureInPictureIcon:C6,PieChart:Y,PieChartIcon:Y,PiggyBank:I6,PiggyBankIcon:I6,Pilcrow:q6,PilcrowIcon:q6,PilcrowLeft:N6,PilcrowLeftIcon:N6,PilcrowRight:S6,PilcrowRightIcon:S6,PilcrowSquare:s2,PilcrowSquareIcon:s2,Pill:$6,PillBottle:b6,PillBottleIcon:b6,PillIcon:$6,Pin:H6,PinIcon:H6,PinOff:A6,PinOffIcon:A6,Pipette:z6,PipetteIcon:z6,Pizza:P6,PizzaIcon:P6,Plane:Oa,PlaneIcon:Oa,PlaneLanding:j6,PlaneLandingIcon:j6,PlaneTakeoff:V6,PlaneTakeoffIcon:V6,Play:Za,PlayCircle:g1,PlayCircleIcon:g1,PlayIcon:Za,PlaySquare:l2,PlaySquareIcon:l2,Plug:F6,Plug2:B6,Plug2Icon:B6,PlugIcon:F6,PlugZap:ge,PlugZap2:ge,PlugZap2Icon:ge,PlugZapIcon:ge,Plus:Y2,PlusCircle:L1,PlusCircleIcon:L1,PlusIcon:Y2,PlusSquare:u2,PlusSquareIcon:u2,Pocket:R6,PocketIcon:R6,PocketKnife:D6,PocketKnifeIcon:D6,Podcast:T6,PodcastIcon:T6,Pointer:O6,PointerIcon:O6,PointerOff:U6,PointerOffIcon:U6,Popcorn:Z6,PopcornIcon:Z6,Popsicle:G6,PopsicleIcon:G6,PoundSterling:W6,PoundSterlingIcon:W6,Power:X6,PowerCircle:x1,PowerCircleIcon:x1,PowerIcon:X6,PowerOff:E6,PowerOffIcon:E6,PowerSquare:M2,PowerSquareIcon:M2,Presentation:K6,PresentationIcon:K6,Printer:Q6,PrinterCheck:J6,PrinterCheckIcon:J6,PrinterIcon:Q6,Projector:Y6,ProjectorIcon:Y6,Proportions:e8,ProportionsIcon:e8,Puzzle:a8,PuzzleIcon:a8,Pyramid:o8,PyramidIcon:o8,QrCode:Ga,QrCodeIcon:Ga,Quote:Wa,QuoteIcon:Wa,Rabbit:c8,RabbitIcon:c8,Radar:t8,RadarIcon:t8,Radiation:n8,RadiationIcon:n8,Radical:d8,RadicalIcon:d8,Radio:Ea,RadioIcon:Ea,RadioReceiver:i8,RadioReceiverIcon:i8,RadioTower:h8,RadioTowerIcon:h8,Radius:y8,RadiusIcon:y8,RailSymbol:r8,RailSymbolIcon:r8,Rainbow:k8,RainbowIcon:k8,Rat:p8,RatIcon:p8,Ratio:s8,RatioIcon:s8,Receipt:x8,ReceiptCent:l8,ReceiptCentIcon:l8,ReceiptEuro:u8,ReceiptEuroIcon:u8,ReceiptIcon:x8,ReceiptIndianRupee:M8,ReceiptIndianRupeeIcon:M8,ReceiptJapaneseYen:v8,ReceiptJapaneseYenIcon:v8,ReceiptPoundSterling:m8,ReceiptPoundSterlingIcon:m8,ReceiptRussianRuble:_8,ReceiptRussianRubleIcon:_8,ReceiptSwissFranc:g8,ReceiptSwissFrancIcon:g8,ReceiptText:L8,ReceiptTextIcon:L8,RectangleEllipsis:Le,RectangleEllipsisIcon:Le,RectangleHorizontal:w8,RectangleHorizontalIcon:w8,RectangleVertical:f8,RectangleVerticalIcon:f8,Recycle:C8,RecycleIcon:C8,Redo:r0,Redo2:I8,Redo2Icon:I8,RedoDot:N8,RedoDotIcon:N8,RedoIcon:r0,RefreshCcw:q8,RefreshCcwDot:S8,RefreshCcwDotIcon:S8,RefreshCcwIcon:q8,RefreshCw:Xa,RefreshCwIcon:Xa,RefreshCwOff:b8,RefreshCwOffIcon:b8,Refrigerator:$8,RefrigeratorIcon:$8,Regex:A8,RegexIcon:A8,RemoveFormatting:H8,RemoveFormattingIcon:H8,Repeat:j8,Repeat1:z8,Repeat1Icon:z8,Repeat2:P8,Repeat2Icon:P8,RepeatIcon:j8,Replace:B8,ReplaceAll:V8,ReplaceAllIcon:V8,ReplaceIcon:B8,Reply:D8,ReplyAll:F8,ReplyAllIcon:F8,ReplyIcon:D8,Rewind:R8,RewindIcon:R8,Ribbon:T8,RibbonIcon:T8,Rocket:U8,RocketIcon:U8,RockingChair:O8,RockingChairIcon:O8,RollerCoaster:Z8,RollerCoasterIcon:Z8,Rotate3D:xe,Rotate3DIcon:xe,Rotate3d:xe,Rotate3dIcon:xe,RotateCcw:W8,RotateCcwIcon:W8,RotateCcwSquare:G8,RotateCcwSquareIcon:G8,RotateCw:X8,RotateCwIcon:X8,RotateCwSquare:E8,RotateCwSquareIcon:E8,Route:J8,RouteIcon:J8,RouteOff:K8,RouteOffIcon:K8,Router:Q8,RouterIcon:Q8,Rows:we,Rows2:we,Rows2Icon:we,Rows3:fe,Rows3Icon:fe,Rows4:Y8,Rows4Icon:Y8,RowsIcon:we,Rss:e7,RssIcon:e7,Ruler:Ka,RulerIcon:Ka,RussianRuble:a7,RussianRubleIcon:a7,Sailboat:o7,SailboatIcon:o7,Salad:c7,SaladIcon:c7,Sandwich:t7,SandwichIcon:t7,Satellite:d7,SatelliteDish:n7,SatelliteDishIcon:n7,SatelliteIcon:d7,Save:e0,SaveAll:i7,SaveAllIcon:i7,SaveIcon:e0,SaveOff:h7,SaveOffIcon:h7,Scale:m0,Scale3D:Ce,Scale3DIcon:Ce,Scale3d:Ce,Scale3dIcon:Ce,ScaleIcon:m0,Scaling:y7,ScalingIcon:y7,Scan:m7,ScanBarcode:r7,ScanBarcodeIcon:r7,ScanEye:k7,ScanEyeIcon:k7,ScanFace:p7,ScanFaceIcon:p7,ScanHeart:s7,ScanHeartIcon:s7,ScanIcon:m7,ScanLine:l7,ScanLineIcon:l7,ScanQrCode:u7,ScanQrCodeIcon:u7,ScanSearch:M7,ScanSearchIcon:M7,ScanText:v7,ScanTextIcon:v7,ScatterChart:e1,ScatterChartIcon:e1,School:_7,School2:$2,School2Icon:$2,SchoolIcon:_7,Scissors:L7,ScissorsIcon:L7,ScissorsLineDashed:g7,ScissorsLineDashedIcon:g7,ScissorsSquare:v2,ScissorsSquareDashedBottom:Ue,ScissorsSquareDashedBottomIcon:Ue,ScissorsSquareIcon:v2,ScreenShare:w7,ScreenShareIcon:w7,ScreenShareOff:x7,ScreenShareOffIcon:x7,Scroll:C7,ScrollIcon:C7,ScrollText:f7,ScrollTextIcon:f7,Search:a0,SearchCheck:I7,SearchCheckIcon:I7,SearchCode:N7,SearchCodeIcon:N7,SearchIcon:a0,SearchSlash:S7,SearchSlashIcon:S7,SearchX:q7,SearchXIcon:q7,Section:b7,SectionIcon:b7,Send:Ja,SendHorizonal:Ie,SendHorizonalIcon:Ie,SendHorizontal:Ie,SendHorizontalIcon:Ie,SendIcon:Ja,SendToBack:$7,SendToBackIcon:$7,SeparatorHorizontal:A7,SeparatorHorizontalIcon:A7,SeparatorVertical:H7,SeparatorVerticalIcon:H7,Server:Qa,ServerCog:z7,ServerCogIcon:z7,ServerCrash:P7,ServerCrashIcon:P7,ServerIcon:Qa,ServerOff:j7,ServerOffIcon:j7,Settings:Ya,Settings2:V7,Settings2Icon:V7,SettingsIcon:Ya,Shapes:B7,ShapesIcon:B7,Share:F7,Share2:eo,Share2Icon:eo,ShareIcon:F7,Sheet:D7,SheetIcon:D7,Shell:R7,ShellIcon:R7,Shield:La,ShieldAlert:T7,ShieldAlertIcon:T7,ShieldBan:U7,ShieldBanIcon:U7,ShieldCheck:co,ShieldCheckIcon:co,ShieldClose:Ne,ShieldCloseIcon:Ne,ShieldEllipsis:O7,ShieldEllipsisIcon:O7,ShieldHalf:Z7,ShieldHalfIcon:Z7,ShieldIcon:La,ShieldMinus:G7,ShieldMinusIcon:G7,ShieldOff:W7,ShieldOffIcon:W7,ShieldPlus:E7,ShieldPlusIcon:E7,ShieldQuestion:X7,ShieldQuestionIcon:X7,ShieldX:Ne,ShieldXIcon:Ne,Ship:J7,ShipIcon:J7,ShipWheel:K7,ShipWheelIcon:K7,Shirt:Q7,ShirtIcon:Q7,ShoppingBag:Y7,ShoppingBagIcon:Y7,ShoppingBasket:eu,ShoppingBasketIcon:eu,ShoppingCart:au,ShoppingCartIcon:au,Shovel:ou,ShovelIcon:ou,ShowerHead:cu,ShowerHeadIcon:cu,Shrink:tu,ShrinkIcon:tu,Shrub:nu,ShrubIcon:nu,Shuffle:du,ShuffleIcon:du,Sidebar:k,SidebarClose:le,SidebarCloseIcon:le,SidebarIcon:k,SidebarOpen:Me,SidebarOpenIcon:Me,Sigma:iu,SigmaIcon:iu,SigmaSquare:m2,SigmaSquareIcon:m2,Signal:pu,SignalHigh:hu,SignalHighIcon:hu,SignalIcon:pu,SignalLow:yu,SignalLowIcon:yu,SignalMedium:ru,SignalMediumIcon:ru,SignalZero:ku,SignalZeroIcon:ku,Signature:su,SignatureIcon:su,Signpost:uu,SignpostBig:lu,SignpostBigIcon:lu,SignpostIcon:uu,Siren:Mu,SirenIcon:Mu,SkipBack:vu,SkipBackIcon:vu,SkipForward:mu,SkipForwardIcon:mu,Skull:_u,SkullIcon:_u,Slack:gu,SlackIcon:gu,Slash:Lu,SlashIcon:Lu,SlashSquare:_2,SlashSquareIcon:_2,Slice:xu,SliceIcon:xu,Sliders:Se,SlidersHorizontal:wu,SlidersHorizontalIcon:wu,SlidersIcon:Se,SlidersVertical:Se,SlidersVerticalIcon:Se,Smartphone:ao,SmartphoneCharging:fu,SmartphoneChargingIcon:fu,SmartphoneIcon:ao,SmartphoneNfc:Cu,SmartphoneNfcIcon:Cu,Smile:Nu,SmileIcon:Nu,SmilePlus:Iu,SmilePlusIcon:Iu,Snail:Su,SnailIcon:Su,Snowflake:qu,SnowflakeIcon:qu,Sofa:bu,SofaIcon:bu,SortAsc:j,SortAscIcon:j,SortDesc:H,SortDescIcon:H,Soup:$u,SoupIcon:$u,Space:Au,SpaceIcon:Au,Spade:Hu,SpadeIcon:Hu,Sparkle:zu,SparkleIcon:zu,Sparkles:l,SparklesIcon:l,Speaker:Pu,SpeakerIcon:Pu,Speech:ju,SpeechIcon:ju,SpellCheck:Bu,SpellCheck2:Vu,SpellCheck2Icon:Vu,SpellCheckIcon:Bu,Spline:Fu,SplineIcon:Fu,Split:Du,SplitIcon:Du,SplitSquareHorizontal:g2,SplitSquareHorizontalIcon:g2,SplitSquareVertical:L2,SplitSquareVerticalIcon:L2,SprayCan:Ru,SprayCanIcon:Ru,Sprout:Tu,SproutIcon:Tu,Square:Eu,SquareActivity:qe,SquareActivityIcon:qe,SquareArrowDown:Ae,SquareArrowDownIcon:Ae,SquareArrowDownLeft:be,SquareArrowDownLeftIcon:be,SquareArrowDownRight:$e,SquareArrowDownRightIcon:$e,SquareArrowLeft:He,SquareArrowLeftIcon:He,SquareArrowOutDownLeft:ze,SquareArrowOutDownLeftIcon:ze,SquareArrowOutDownRight:Pe,SquareArrowOutDownRightIcon:Pe,SquareArrowOutUpLeft:je,SquareArrowOutUpLeftIcon:je,SquareArrowOutUpRight:Ve,SquareArrowOutUpRightIcon:Ve,SquareArrowRight:Be,SquareArrowRightIcon:Be,SquareArrowUp:Re,SquareArrowUpIcon:Re,SquareArrowUpLeft:Fe,SquareArrowUpLeftIcon:Fe,SquareArrowUpRight:De,SquareArrowUpRightIcon:De,SquareAsterisk:Te,SquareAsteriskIcon:Te,SquareBottomDashedScissors:Ue,SquareBottomDashedScissorsIcon:Ue,SquareChartGantt:i,SquareChartGanttIcon:i,SquareCheck:Oe,SquareCheckBig:N,SquareCheckBigIcon:N,SquareCheckIcon:Oe,SquareChevronDown:Ze,SquareChevronDownIcon:Ze,SquareChevronLeft:Ge,SquareChevronLeftIcon:Ge,SquareChevronRight:We,SquareChevronRightIcon:We,SquareChevronUp:Ee,SquareChevronUpIcon:Ee,SquareCode:Xe,SquareCodeIcon:Xe,SquareDashed:Qe,SquareDashedBottom:Ou,SquareDashedBottomCode:Uu,SquareDashedBottomCodeIcon:Uu,SquareDashedBottomIcon:Ou,SquareDashedIcon:Qe,SquareDashedKanban:Ke,SquareDashedKanbanIcon:Ke,SquareDashedMousePointer:Je,SquareDashedMousePointerIcon:Je,SquareDivide:Ye,SquareDivideIcon:Ye,SquareDot:e2,SquareDotIcon:e2,SquareEqual:a2,SquareEqualIcon:a2,SquareFunction:o2,SquareFunctionIcon:o2,SquareGanttChart:i,SquareGanttChartIcon:i,SquareIcon:Eu,SquareKanban:c2,SquareKanbanIcon:c2,SquareLibrary:t2,SquareLibraryIcon:t2,SquareM:n2,SquareMIcon:n2,SquareMenu:d2,SquareMenuIcon:d2,SquareMinus:i2,SquareMinusIcon:i2,SquareMousePointer:h2,SquareMousePointerIcon:h2,SquareParking:r2,SquareParkingIcon:r2,SquareParkingOff:y2,SquareParkingOffIcon:y2,SquarePen:n,SquarePenIcon:n,SquarePercent:k2,SquarePercentIcon:k2,SquarePi:p2,SquarePiIcon:p2,SquarePilcrow:s2,SquarePilcrowIcon:s2,SquarePlay:l2,SquarePlayIcon:l2,SquarePlus:u2,SquarePlusIcon:u2,SquarePower:M2,SquarePowerIcon:M2,SquareRadical:Zu,SquareRadicalIcon:Zu,SquareScissors:v2,SquareScissorsIcon:v2,SquareSigma:m2,SquareSigmaIcon:m2,SquareSlash:_2,SquareSlashIcon:_2,SquareSplitHorizontal:g2,SquareSplitHorizontalIcon:g2,SquareSplitVertical:L2,SquareSplitVerticalIcon:L2,SquareSquare:Gu,SquareSquareIcon:Gu,SquareStack:Wu,SquareStackIcon:Wu,SquareTerminal:x2,SquareTerminalIcon:x2,SquareUser:f2,SquareUserIcon:f2,SquareUserRound:w2,SquareUserRoundIcon:w2,SquareX:C2,SquareXIcon:C2,Squircle:Xu,SquircleIcon:Xu,Squirrel:Ku,SquirrelIcon:Ku,Stamp:Ju,StampIcon:Ju,Star:to,StarHalf:Qu,StarHalfIcon:Qu,StarIcon:to,StarOff:Yu,StarOffIcon:Yu,Stars:l,StarsIcon:l,StepBack:eM,StepBackIcon:eM,StepForward:aM,StepForwardIcon:aM,Stethoscope:oM,StethoscopeIcon:oM,Sticker:cM,StickerIcon:cM,StickyNote:tM,StickyNoteIcon:tM,StopCircle:f1,StopCircleIcon:f1,Store:nM,StoreIcon:nM,StretchHorizontal:dM,StretchHorizontalIcon:dM,StretchVertical:iM,StretchVerticalIcon:iM,Strikethrough:k0,StrikethroughIcon:k0,Subscript:hM,SubscriptIcon:hM,Subtitles:O,SubtitlesIcon:O,Sun:no,SunDim:yM,SunDimIcon:yM,SunIcon:no,SunMedium:rM,SunMediumIcon:rM,SunMoon:kM,SunMoonIcon:kM,SunSnow:pM,SunSnowIcon:pM,Sunrise:sM,SunriseIcon:sM,Sunset:lM,SunsetIcon:lM,Superscript:uM,SuperscriptIcon:uM,SwatchBook:MM,SwatchBookIcon:MM,SwissFranc:vM,SwissFrancIcon:vM,SwitchCamera:mM,SwitchCameraIcon:mM,Sword:_M,SwordIcon:_M,Swords:gM,SwordsIcon:gM,Syringe:LM,SyringeIcon:LM,Table:qM,Table2:xM,Table2Icon:xM,TableCellsMerge:wM,TableCellsMergeIcon:wM,TableCellsSplit:fM,TableCellsSplitIcon:fM,TableColumnsSplit:CM,TableColumnsSplitIcon:CM,TableIcon:qM,TableOfContents:IM,TableOfContentsIcon:IM,TableProperties:NM,TablePropertiesIcon:NM,TableRowsSplit:SM,TableRowsSplitIcon:SM,Tablet:$M,TabletIcon:$M,TabletSmartphone:bM,TabletSmartphoneIcon:bM,Tablets:AM,TabletsIcon:AM,Tag:io,TagIcon:io,Tags:HM,TagsIcon:HM,Tally1:zM,Tally1Icon:zM,Tally2:PM,Tally2Icon:PM,Tally3:jM,Tally3Icon:jM,Tally4:VM,Tally4Icon:VM,Tally5:BM,Tally5Icon:BM,Tangent:FM,TangentIcon:FM,Target:ho,TargetIcon:ho,Telescope:DM,TelescopeIcon:DM,Tent:TM,TentIcon:TM,TentTree:RM,TentTreeIcon:RM,Terminal:UM,TerminalIcon:UM,TerminalSquare:x2,TerminalSquareIcon:x2,TestTube:OM,TestTube2:I2,TestTube2Icon:I2,TestTubeDiagonal:I2,TestTubeDiagonalIcon:I2,TestTubeIcon:OM,TestTubes:ZM,TestTubesIcon:ZM,Text:KM,TextCursor:WM,TextCursorIcon:WM,TextCursorInput:GM,TextCursorInputIcon:GM,TextIcon:KM,TextQuote:EM,TextQuoteIcon:EM,TextSearch:XM,TextSearchIcon:XM,TextSelect:N2,TextSelectIcon:N2,TextSelection:N2,TextSelectionIcon:N2,Theater:JM,TheaterIcon:JM,Thermometer:e9,ThermometerIcon:e9,ThermometerSnowflake:QM,ThermometerSnowflakeIcon:QM,ThermometerSun:YM,ThermometerSunIcon:YM,ThumbsDown:yo,ThumbsDownIcon:yo,ThumbsUp:ro,ThumbsUpIcon:ro,Ticket:ko,TicketCheck:a9,TicketCheckIcon:a9,TicketIcon:ko,TicketMinus:o9,TicketMinusIcon:o9,TicketPercent:c9,TicketPercentIcon:c9,TicketPlus:t9,TicketPlusIcon:t9,TicketSlash:n9,TicketSlashIcon:n9,TicketX:d9,TicketXIcon:d9,Tickets:h9,TicketsIcon:h9,TicketsPlane:i9,TicketsPlaneIcon:i9,Timer:po,TimerIcon:po,TimerOff:y9,TimerOffIcon:y9,TimerReset:r9,TimerResetIcon:r9,ToggleLeft:k9,ToggleLeftIcon:k9,ToggleRight:p9,ToggleRightIcon:p9,Toilet:s9,ToiletIcon:s9,Tornado:l9,TornadoIcon:l9,Torus:u9,TorusIcon:u9,Touchpad:v9,TouchpadIcon:v9,TouchpadOff:M9,TouchpadOffIcon:M9,TowerControl:m9,TowerControlIcon:m9,ToyBrick:_9,ToyBrickIcon:_9,Tractor:g9,TractorIcon:g9,TrafficCone:L9,TrafficConeIcon:L9,Train:S2,TrainFront:w9,TrainFrontIcon:w9,TrainFrontTunnel:x9,TrainFrontTunnelIcon:x9,TrainIcon:S2,TrainTrack:f9,TrainTrackIcon:f9,TramFront:S2,TramFrontIcon:S2,Transgender:C9,TransgenderIcon:C9,Trash:lo,Trash2:so,Trash2Icon:so,TrashIcon:lo,TreeDeciduous:I9,TreeDeciduousIcon:I9,TreePalm:q2,TreePalmIcon:q2,TreePine:N9,TreePineIcon:N9,Trees:S9,TreesIcon:S9,Trello:q9,TrelloIcon:q9,TrendingDown:uo,TrendingDownIcon:uo,TrendingUp:Mo,TrendingUpDown:b9,TrendingUpDownIcon:b9,TrendingUpIcon:Mo,Triangle:H9,TriangleAlert:S,TriangleAlertIcon:S,TriangleDashed:$9,TriangleDashedIcon:$9,TriangleIcon:H9,TriangleRight:A9,TriangleRightIcon:A9,Trophy:vo,TrophyIcon:vo,Truck:z9,TruckIcon:z9,Turtle:P9,TurtleIcon:P9,Tv:V9,Tv2:b2,Tv2Icon:b2,TvIcon:V9,TvMinimal:b2,TvMinimalIcon:b2,TvMinimalPlay:j9,TvMinimalPlayIcon:j9,Twitch:B9,TwitchIcon:B9,Twitter:qa,TwitterIcon:qa,Type:mo,TypeIcon:mo,TypeOutline:F9,TypeOutlineIcon:F9,Umbrella:R9,UmbrellaIcon:R9,UmbrellaOff:D9,UmbrellaOffIcon:D9,Underline:T9,UnderlineIcon:T9,Undo:p0,Undo2:U9,Undo2Icon:U9,UndoDot:O9,UndoDotIcon:O9,UndoIcon:p0,UnfoldHorizontal:Z9,UnfoldHorizontalIcon:Z9,UnfoldVertical:G9,UnfoldVerticalIcon:G9,Ungroup:W9,UngroupIcon:W9,University:$2,UniversityIcon:$2,Unlink:s0,Unlink2:E9,Unlink2Icon:E9,UnlinkIcon:s0,Unlock:s,UnlockIcon:s,UnlockKeyhole:de,UnlockKeyholeIcon:de,Unplug:X9,UnplugIcon:X9,Upload:o0,UploadCloud:b1,UploadCloudIcon:b1,UploadIcon:o0,Usb:K9,UsbIcon:K9,User:xo,User2:V2,User2Icon:V2,UserCheck:_o,UserCheck2:A2,UserCheck2Icon:A2,UserCheckIcon:_o,UserCircle:I1,UserCircle2:C1,UserCircle2Icon:C1,UserCircleIcon:I1,UserCog:J9,UserCog2:H2,UserCog2Icon:H2,UserCogIcon:J9,UserIcon:xo,UserMinus:Q9,UserMinus2:z2,UserMinus2Icon:z2,UserMinusIcon:Q9,UserPen:Y9,UserPenIcon:Y9,UserPlus:go,UserPlus2:P2,UserPlus2Icon:P2,UserPlusIcon:go,UserRound:V2,UserRoundCheck:A2,UserRoundCheckIcon:A2,UserRoundCog:H2,UserRoundCogIcon:H2,UserRoundIcon:V2,UserRoundMinus:z2,UserRoundMinusIcon:z2,UserRoundPen:ev,UserRoundPenIcon:ev,UserRoundPlus:P2,UserRoundPlusIcon:P2,UserRoundSearch:av,UserRoundSearchIcon:av,UserRoundX:j2,UserRoundXIcon:j2,UserSearch:ov,UserSearchIcon:ov,UserSquare:f2,UserSquare2:w2,UserSquare2Icon:w2,UserSquareIcon:f2,UserX:Lo,UserX2:j2,UserX2Icon:j2,UserXIcon:Lo,Users:wo,Users2:B2,Users2Icon:B2,UsersIcon:wo,UsersRound:B2,UsersRoundIcon:B2,Utensils:D2,UtensilsCrossed:F2,UtensilsCrossedIcon:F2,UtensilsIcon:D2,UtilityPole:cv,UtilityPoleIcon:cv,Variable:tv,VariableIcon:tv,Vault:nv,VaultIcon:nv,Vegan:dv,VeganIcon:dv,VenetianMask:iv,VenetianMaskIcon:iv,Venus:yv,VenusAndMars:hv,VenusAndMarsIcon:hv,VenusIcon:yv,Verified:F,VerifiedIcon:F,Vibrate:kv,VibrateIcon:kv,VibrateOff:rv,VibrateOffIcon:rv,Video:sv,VideoIcon:sv,VideoOff:pv,VideoOffIcon:pv,Videotape:lv,VideotapeIcon:lv,View:uv,ViewIcon:uv,Voicemail:Mv,VoicemailIcon:Mv,Volleyball:vv,VolleyballIcon:vv,Volume:xv,Volume1:mv,Volume1Icon:mv,Volume2:_v,Volume2Icon:_v,VolumeIcon:xv,VolumeOff:gv,VolumeOffIcon:gv,VolumeX:Lv,VolumeXIcon:Lv,Vote:wv,VoteIcon:wv,Wallet:fo,Wallet2:R2,Wallet2Icon:R2,WalletCards:fv,WalletCardsIcon:fv,WalletIcon:fo,WalletMinimal:R2,WalletMinimalIcon:R2,Wallpaper:Cv,WallpaperIcon:Cv,Wand:Iv,Wand2:T2,Wand2Icon:T2,WandIcon:Iv,WandSparkles:T2,WandSparklesIcon:T2,Warehouse:Nv,WarehouseIcon:Nv,WashingMachine:Sv,WashingMachineIcon:Sv,Watch:qv,WatchIcon:qv,Waves:$v,WavesIcon:$v,WavesLadder:bv,WavesLadderIcon:bv,Waypoints:Av,WaypointsIcon:Av,Webcam:Hv,WebcamIcon:Hv,Webhook:Pv,WebhookIcon:Pv,WebhookOff:zv,WebhookOffIcon:zv,Weight:jv,WeightIcon:jv,Wheat:Bv,WheatIcon:Bv,WheatOff:Vv,WheatOffIcon:Vv,WholeWord:Fv,WholeWordIcon:Fv,Wifi:oo,WifiHigh:Dv,WifiHighIcon:Dv,WifiIcon:oo,WifiLow:Rv,WifiLowIcon:Rv,WifiOff:Tv,WifiOffIcon:Tv,WifiZero:Uv,WifiZeroIcon:Uv,Wind:Zv,WindArrowDown:Ov,WindArrowDownIcon:Ov,WindIcon:Zv,Wine:Wv,WineIcon:Wv,WineOff:Gv,WineOffIcon:Gv,Workflow:Ev,WorkflowIcon:Ev,Worm:Xv,WormIcon:Xv,WrapText:Kv,WrapTextIcon:Kv,Wrench:Co,WrenchIcon:Co,X:c0,XCircle:x,XCircleIcon:x,XIcon:c0,XOctagon:ke,XOctagonIcon:ke,XSquare:C2,XSquareIcon:C2,Youtube:Jv,YoutubeIcon:Jv,Zap:Io,ZapIcon:Io,ZapOff:Qv,ZapOffIcon:Qv,ZoomIn:Yv,ZoomInIcon:Yv,ZoomOut:em,ZoomOutIcon:em,createLucideIcon:e,icons:IO},Symbol.toStringTag,{value:"Module"}));function OG({columns:am,actions:im,data:hm,from:mm,onAction:_m,sortField:gm,sortDirection:Lm,onSort:ym,statusColors:xm={},permissions:rm,entityPermissions:h,showActions:om=!0,footer:wm}){const{t:cm}=$m(),fm=c=>c.sortable?gm===c.key?Lm==="asc"?a.jsx(Z2,{className:"ml-1 h-4 w-4"}):a.jsx(O2,{className:"ml-1 h-4 w-4"}):a.jsx(G2,{className:"ml-1 h-4 w-4 opacity-50"}):null,Cm=c=>{!c.sortable||!ym||ym(c.key)},tm=im.some(c=>{const o=c.requiredPermission||h&&(c.action==="view"?h.view:c.action==="edit"?h.edit:c.action==="delete"?h.delete:c.permission);return!o||km(rm,o)}),Im=c=>a.jsx("div",{className:"flex items-center justify-end space-x-2",children:im.map((o,t)=>{const y=o.requiredPermission||h&&(o.action==="view"?h.view:o.action==="edit"?h.edit:o.action==="delete"?h.delete:o.permission);if(y&&!km(rm,y)||o.condition&&!o.condition(c))return null;const r=NO[o.icon];if(o.href){const qm=typeof o.href=="function"?o.href(c):o.href.replace(":id",c.id);return a.jsx(sm,{children:a.jsxs(lm,{children:[a.jsx(um,{asChild:!0,children:a.jsx(pm,{href:qm,target:o.openInNewTab?"_blank":void 0,children:a.jsx(Mm,{variant:"ghost",size:"icon",className:U2("h-8 w-8",o.className),children:a.jsx(r,{size:16})})})}),a.jsx(vm,{children:a.jsx("p",{children:o.label})})]})},t)}return a.jsx(sm,{children:a.jsxs(lm,{children:[a.jsx(um,{asChild:!0,children:a.jsx(Mm,{variant:"ghost",size:"icon",className:U2("h-8 w-8",o.className),onClick:()=>_m(o.action,c),children:a.jsx(r,{size:16})})}),a.jsx(vm,{children:a.jsx("p",{children:o.label})})]})},t)})}),Nm=(c,o)=>!c||!o?null:o.split(".").reduce((y,r)=>y&&y[r]!==void 0?y[r]:null,c),Sm=(c,o)=>{const t=Nm(c,o.key);if(o.render)return o.render(t,c);switch(o.type){case"badge":return a.jsx(Am,{className:U2("capitalize",xm[t]),children:t});case"image":return t?a.jsx("div",{className:"flex justify-center",children:a.jsx("img",{src:t.startsWith&&t.startsWith("http")?t:`/storage/${t}`,alt:c.name||"Image",className:o.className||"h-16 w-20 rounded-md object-cover shadow-sm",onError:r=>{r.currentTarget.src="https://placehold.co/200x150?text=Image+Not+Found"}})}):a.jsx("div",{className:"text-center text-gray-400",children:cm("No image")});case"date":return t?a.jsx("span",{className:"text-sm",children:new Date(t).toLocaleDateString()}):a.jsx("span",{children:"-"});case"currency":return a.jsx("span",{className:"text-sm",children:typeof t=="number"?t.toLocaleString("en-US",{style:"currency",currency:"USD"}):t});case"boolean":return a.jsx("span",{className:"text-sm",children:t?"Yes":"No"});case"link":if(!t)return a.jsx("span",{children:"-"});const y=o.href?typeof o.href=="function"?o.href(c):o.href.replace(":id",c.id):"#";return a.jsx(pm,{href:y,className:o.linkClassName||"text-blue-600 hover:underline",target:o.openInNewTab?"_blank":void 0,children:t});default:return a.jsx("span",{className:"text-sm font-medium",children:t||"-"})}};return a.jsx("div",{className:"border-collapse dark:bg-gray-900",children:a.jsxs(Hm,{children:[a.jsx(zm,{children:a.jsxs(nm,{className:"bg-gray-50 dark:bg-gray-800 border-b",children:[a.jsx(dm,{className:"w-12 py-2.5 font-semibold",children:"#"}),am.map(c=>a.jsx(dm,{className:U2("py-2.5 font-semibold text-left",c.sortable&&"cursor-pointer select-none",c.className),onClick:()=>Cm(c),children:a.jsxs("div",{className:"flex items-center",children:[c.label,fm(c)]})},c.key)),om&&tm&&a.jsx(dm,{className:"w-24 py-2.5 text-right font-semibold",children:cm("Actions")})]})}),a.jsx(Pm,{children:hm.length>0?hm.map((c,o)=>a.jsxs(nm,{className:"hover:bg-gray-50 dark:hover:bg-gray-700 dark:bg-gray-900 border-b",children:[a.jsx(W2,{className:"font-medium py-2.5",children:mm+o}),am.map(t=>a.jsx(W2,{className:U2("py-2.5 text-left",t.className),children:Sm(c,t)},t.key)),om&&tm&&a.jsx(W2,{className:"py-2.5 text-right",children:Im(c)})]},c.id||o)):a.jsx(nm,{children:a.jsx(W2,{colSpan:am.length+(om&&tm?2:1),className:"text-muted-foreground h-24 text-center dark:text-gray-400",children:cm("No results found.")})})}),wm]})})}export{Wn as B,OG as C,B1 as E,Sr as F,d5 as K,C3 as M,ll as N,Q6 as P,au as S,Dh as a}; + */const IO=Object.freeze(Object.defineProperty({__proto__:null,AArrowDown:So,AArrowDownIcon:So,AArrowUp:qo,AArrowUpIcon:qo,ALargeSmall:bo,ALargeSmallIcon:bo,Accessibility:$o,AccessibilityIcon:$o,Activity:Ao,ActivityIcon:Ao,ActivitySquare:qe,ActivitySquareIcon:qe,AirVent:Ho,AirVentIcon:Ho,Airplay:zo,AirplayIcon:zo,AlarmCheck:q,AlarmCheckIcon:q,AlarmClock:jo,AlarmClockCheck:q,AlarmClockCheckIcon:q,AlarmClockIcon:jo,AlarmClockMinus:b,AlarmClockMinusIcon:b,AlarmClockOff:Po,AlarmClockOffIcon:Po,AlarmClockPlus:$,AlarmClockPlusIcon:$,AlarmMinus:b,AlarmMinusIcon:b,AlarmPlus:$,AlarmPlusIcon:$,AlarmSmoke:Vo,AlarmSmokeIcon:Vo,Album:Bo,AlbumIcon:Bo,AlertCircle:m,AlertCircleIcon:m,AlertOctagon:ye,AlertOctagonIcon:ye,AlertTriangle:S,AlertTriangleIcon:S,AlignCenter:t0,AlignCenterHorizontal:Fo,AlignCenterHorizontalIcon:Fo,AlignCenterIcon:t0,AlignCenterVertical:Do,AlignCenterVerticalIcon:Do,AlignEndHorizontal:Ro,AlignEndHorizontalIcon:Ro,AlignEndVertical:To,AlignEndVerticalIcon:To,AlignHorizontalDistributeCenter:Uo,AlignHorizontalDistributeCenterIcon:Uo,AlignHorizontalDistributeEnd:Oo,AlignHorizontalDistributeEndIcon:Oo,AlignHorizontalDistributeStart:Zo,AlignHorizontalDistributeStartIcon:Zo,AlignHorizontalJustifyCenter:Go,AlignHorizontalJustifyCenterIcon:Go,AlignHorizontalJustifyEnd:Wo,AlignHorizontalJustifyEndIcon:Wo,AlignHorizontalJustifyStart:Eo,AlignHorizontalJustifyStartIcon:Eo,AlignHorizontalSpaceAround:Xo,AlignHorizontalSpaceAroundIcon:Xo,AlignHorizontalSpaceBetween:Ko,AlignHorizontalSpaceBetweenIcon:Ko,AlignJustify:Jo,AlignJustifyIcon:Jo,AlignLeft:n0,AlignLeftIcon:n0,AlignRight:d0,AlignRightIcon:d0,AlignStartHorizontal:Qo,AlignStartHorizontalIcon:Qo,AlignStartVertical:Yo,AlignStartVerticalIcon:Yo,AlignVerticalDistributeCenter:ec,AlignVerticalDistributeCenterIcon:ec,AlignVerticalDistributeEnd:ac,AlignVerticalDistributeEndIcon:ac,AlignVerticalDistributeStart:oc,AlignVerticalDistributeStartIcon:oc,AlignVerticalJustifyCenter:cc,AlignVerticalJustifyCenterIcon:cc,AlignVerticalJustifyEnd:tc,AlignVerticalJustifyEndIcon:tc,AlignVerticalJustifyStart:nc,AlignVerticalJustifyStartIcon:nc,AlignVerticalSpaceAround:dc,AlignVerticalSpaceAroundIcon:dc,AlignVerticalSpaceBetween:ic,AlignVerticalSpaceBetweenIcon:ic,Ambulance:hc,AmbulanceIcon:hc,Ampersand:yc,AmpersandIcon:yc,Ampersands:rc,AmpersandsIcon:rc,Amphora:kc,AmphoraIcon:kc,Anchor:pc,AnchorIcon:pc,Angry:sc,AngryIcon:sc,Annoyed:lc,AnnoyedIcon:lc,Antenna:uc,AntennaIcon:uc,Anvil:Mc,AnvilIcon:Mc,Aperture:vc,ApertureIcon:vc,AppWindow:_c,AppWindowIcon:_c,AppWindowMac:mc,AppWindowMacIcon:mc,Apple:gc,AppleIcon:gc,Archive:l0,ArchiveIcon:l0,ArchiveRestore:Lc,ArchiveRestoreIcon:Lc,ArchiveX:xc,ArchiveXIcon:xc,AreaChart:Z,AreaChartIcon:Z,Armchair:wc,ArmchairIcon:wc,ArrowBigDown:Cc,ArrowBigDownDash:fc,ArrowBigDownDashIcon:fc,ArrowBigDownIcon:Cc,ArrowBigLeft:Nc,ArrowBigLeftDash:Ic,ArrowBigLeftDashIcon:Ic,ArrowBigLeftIcon:Nc,ArrowBigRight:qc,ArrowBigRightDash:Sc,ArrowBigRightDashIcon:Sc,ArrowBigRightIcon:qc,ArrowBigUp:$c,ArrowBigUpDash:bc,ArrowBigUpDashIcon:bc,ArrowBigUpIcon:$c,ArrowDown:Dc,ArrowDown01:Ac,ArrowDown01Icon:Ac,ArrowDown10:Hc,ArrowDown10Icon:Hc,ArrowDownAZ:A,ArrowDownAZIcon:A,ArrowDownAz:A,ArrowDownAzIcon:A,ArrowDownCircle:a1,ArrowDownCircleIcon:a1,ArrowDownFromLine:zc,ArrowDownFromLineIcon:zc,ArrowDownIcon:Dc,ArrowDownLeft:_0,ArrowDownLeftFromCircle:c1,ArrowDownLeftFromCircleIcon:c1,ArrowDownLeftFromSquare:ze,ArrowDownLeftFromSquareIcon:ze,ArrowDownLeftIcon:_0,ArrowDownLeftSquare:be,ArrowDownLeftSquareIcon:be,ArrowDownNarrowWide:Pc,ArrowDownNarrowWideIcon:Pc,ArrowDownRight:jc,ArrowDownRightFromCircle:t1,ArrowDownRightFromCircleIcon:t1,ArrowDownRightFromSquare:Pe,ArrowDownRightFromSquareIcon:Pe,ArrowDownRightIcon:jc,ArrowDownRightSquare:$e,ArrowDownRightSquareIcon:$e,ArrowDownSquare:Ae,ArrowDownSquareIcon:Ae,ArrowDownToDot:Vc,ArrowDownToDotIcon:Vc,ArrowDownToLine:Bc,ArrowDownToLineIcon:Bc,ArrowDownUp:Fc,ArrowDownUpIcon:Fc,ArrowDownWideNarrow:H,ArrowDownWideNarrowIcon:H,ArrowDownZA:z,ArrowDownZAIcon:z,ArrowDownZa:z,ArrowDownZaIcon:z,ArrowLeft:g0,ArrowLeftCircle:o1,ArrowLeftCircleIcon:o1,ArrowLeftFromLine:Rc,ArrowLeftFromLineIcon:Rc,ArrowLeftIcon:g0,ArrowLeftRight:Tc,ArrowLeftRightIcon:Tc,ArrowLeftSquare:He,ArrowLeftSquareIcon:He,ArrowLeftToLine:Uc,ArrowLeftToLineIcon:Uc,ArrowRight:x0,ArrowRightCircle:i1,ArrowRightCircleIcon:i1,ArrowRightFromLine:Oc,ArrowRightFromLineIcon:Oc,ArrowRightIcon:x0,ArrowRightLeft:L0,ArrowRightLeftIcon:L0,ArrowRightSquare:Be,ArrowRightSquareIcon:Be,ArrowRightToLine:Zc,ArrowRightToLineIcon:Zc,ArrowUp:Yc,ArrowUp01:Gc,ArrowUp01Icon:Gc,ArrowUp10:Wc,ArrowUp10Icon:Wc,ArrowUpAZ:P,ArrowUpAZIcon:P,ArrowUpAz:P,ArrowUpAzIcon:P,ArrowUpCircle:h1,ArrowUpCircleIcon:h1,ArrowUpDown:w0,ArrowUpDownIcon:w0,ArrowUpFromDot:Ec,ArrowUpFromDotIcon:Ec,ArrowUpFromLine:Xc,ArrowUpFromLineIcon:Xc,ArrowUpIcon:Yc,ArrowUpLeft:Kc,ArrowUpLeftFromCircle:n1,ArrowUpLeftFromCircleIcon:n1,ArrowUpLeftFromSquare:je,ArrowUpLeftFromSquareIcon:je,ArrowUpLeftIcon:Kc,ArrowUpLeftSquare:Fe,ArrowUpLeftSquareIcon:Fe,ArrowUpNarrowWide:j,ArrowUpNarrowWideIcon:j,ArrowUpRight:f0,ArrowUpRightFromCircle:d1,ArrowUpRightFromCircleIcon:d1,ArrowUpRightFromSquare:Ve,ArrowUpRightFromSquareIcon:Ve,ArrowUpRightIcon:f0,ArrowUpRightSquare:De,ArrowUpRightSquareIcon:De,ArrowUpSquare:Re,ArrowUpSquareIcon:Re,ArrowUpToLine:Jc,ArrowUpToLineIcon:Jc,ArrowUpWideNarrow:Qc,ArrowUpWideNarrowIcon:Qc,ArrowUpZA:V,ArrowUpZAIcon:V,ArrowUpZa:V,ArrowUpZaIcon:V,ArrowsUpFromLine:et,ArrowsUpFromLineIcon:et,Asterisk:at,AsteriskIcon:at,AsteriskSquare:Te,AsteriskSquareIcon:Te,AtSign:ot,AtSignIcon:ot,Atom:ct,AtomIcon:ct,AudioLines:tt,AudioLinesIcon:tt,AudioWaveform:nt,AudioWaveformIcon:nt,Award:N0,AwardIcon:N0,Axe:dt,AxeIcon:dt,Axis3D:B,Axis3DIcon:B,Axis3d:B,Axis3dIcon:B,Baby:it,BabyIcon:it,Backpack:ht,BackpackIcon:ht,Badge:ft,BadgeAlert:yt,BadgeAlertIcon:yt,BadgeCent:rt,BadgeCentIcon:rt,BadgeCheck:F,BadgeCheckIcon:F,BadgeDollarSign:kt,BadgeDollarSignIcon:kt,BadgeEuro:pt,BadgeEuroIcon:pt,BadgeHelp:st,BadgeHelpIcon:st,BadgeIcon:ft,BadgeIndianRupee:lt,BadgeIndianRupeeIcon:lt,BadgeInfo:ut,BadgeInfoIcon:ut,BadgeJapaneseYen:Mt,BadgeJapaneseYenIcon:Mt,BadgeMinus:vt,BadgeMinusIcon:vt,BadgePercent:mt,BadgePercentIcon:mt,BadgePlus:_t,BadgePlusIcon:_t,BadgePoundSterling:gt,BadgePoundSterlingIcon:gt,BadgeRussianRuble:Lt,BadgeRussianRubleIcon:Lt,BadgeSwissFranc:xt,BadgeSwissFrancIcon:xt,BadgeX:wt,BadgeXIcon:wt,BaggageClaim:Ct,BaggageClaimIcon:Ct,Ban:S0,BanIcon:S0,Banana:It,BananaIcon:It,Bandage:Nt,BandageIcon:Nt,Banknote:q0,BanknoteIcon:q0,BarChart:M,BarChart2:v,BarChart2Icon:v,BarChart3:u,BarChart3Icon:u,BarChart4:K,BarChart4Icon:K,BarChartBig:X,BarChartBigIcon:X,BarChartHorizontal:W,BarChartHorizontalBig:G,BarChartHorizontalBigIcon:G,BarChartHorizontalIcon:W,BarChartIcon:M,Barcode:St,BarcodeIcon:St,Baseline:qt,BaselineIcon:qt,Bath:bt,BathIcon:bt,Battery:Vt,BatteryCharging:$t,BatteryChargingIcon:$t,BatteryFull:At,BatteryFullIcon:At,BatteryIcon:Vt,BatteryLow:Ht,BatteryLowIcon:Ht,BatteryMedium:zt,BatteryMediumIcon:zt,BatteryPlus:Pt,BatteryPlusIcon:Pt,BatteryWarning:jt,BatteryWarningIcon:jt,Beaker:Bt,BeakerIcon:Bt,Bean:Dt,BeanIcon:Dt,BeanOff:Ft,BeanOffIcon:Ft,Bed:Ut,BedDouble:Rt,BedDoubleIcon:Rt,BedIcon:Ut,BedSingle:Tt,BedSingleIcon:Tt,Beef:Ot,BeefIcon:Ot,Beer:Gt,BeerIcon:Gt,BeerOff:Zt,BeerOffIcon:Zt,Bell:$0,BellDot:Wt,BellDotIcon:Wt,BellElectric:Et,BellElectricIcon:Et,BellIcon:$0,BellMinus:Xt,BellMinusIcon:Xt,BellOff:Kt,BellOffIcon:Kt,BellPlus:Jt,BellPlusIcon:Jt,BellRing:Qt,BellRingIcon:Qt,BetweenHorizonalEnd:D,BetweenHorizonalEndIcon:D,BetweenHorizonalStart:R,BetweenHorizonalStartIcon:R,BetweenHorizontalEnd:D,BetweenHorizontalEndIcon:D,BetweenHorizontalStart:R,BetweenHorizontalStartIcon:R,BetweenVerticalEnd:Yt,BetweenVerticalEndIcon:Yt,BetweenVerticalStart:en,BetweenVerticalStartIcon:en,BicepsFlexed:an,BicepsFlexedIcon:an,Bike:on,BikeIcon:on,Binary:cn,BinaryIcon:cn,Binoculars:tn,BinocularsIcon:tn,Biohazard:nn,BiohazardIcon:nn,Bird:dn,BirdIcon:dn,Bitcoin:hn,BitcoinIcon:hn,Blend:yn,BlendIcon:yn,Blinds:rn,BlindsIcon:rn,Blocks:kn,BlocksIcon:kn,Bluetooth:un,BluetoothConnected:pn,BluetoothConnectedIcon:pn,BluetoothIcon:un,BluetoothOff:sn,BluetoothOffIcon:sn,BluetoothSearching:ln,BluetoothSearchingIcon:ln,Bold:i0,BoldIcon:i0,Bolt:Mn,BoltIcon:Mn,Bomb:vn,BombIcon:vn,Bone:mn,BoneIcon:mn,Book:u0,BookA:_n,BookAIcon:_n,BookAudio:gn,BookAudioIcon:gn,BookCheck:Ln,BookCheckIcon:Ln,BookCopy:xn,BookCopyIcon:xn,BookDashed:T,BookDashedIcon:T,BookDown:wn,BookDownIcon:wn,BookHeadphones:fn,BookHeadphonesIcon:fn,BookHeart:Cn,BookHeartIcon:Cn,BookIcon:u0,BookImage:In,BookImageIcon:In,BookKey:Nn,BookKeyIcon:Nn,BookLock:Sn,BookLockIcon:Sn,BookMarked:qn,BookMarkedIcon:qn,BookMinus:bn,BookMinusIcon:bn,BookOpen:A0,BookOpenCheck:$n,BookOpenCheckIcon:$n,BookOpenIcon:A0,BookOpenText:An,BookOpenTextIcon:An,BookPlus:Hn,BookPlusIcon:Hn,BookTemplate:T,BookTemplateIcon:T,BookText:zn,BookTextIcon:zn,BookType:Pn,BookTypeIcon:Pn,BookUp:Vn,BookUp2:jn,BookUp2Icon:jn,BookUpIcon:Vn,BookUser:Bn,BookUserIcon:Bn,BookX:Fn,BookXIcon:Fn,Bookmark:On,BookmarkCheck:Dn,BookmarkCheckIcon:Dn,BookmarkIcon:On,BookmarkMinus:Rn,BookmarkMinusIcon:Rn,BookmarkPlus:Tn,BookmarkPlusIcon:Tn,BookmarkX:Un,BookmarkXIcon:Un,BoomBox:Zn,BoomBoxIcon:Zn,Bot:En,BotIcon:En,BotMessageSquare:Gn,BotMessageSquareIcon:Gn,BotOff:Wn,BotOffIcon:Wn,Box:Xn,BoxIcon:Xn,BoxSelect:Qe,BoxSelectIcon:Qe,Boxes:H0,BoxesIcon:H0,Braces:U,BracesIcon:U,Brackets:Kn,BracketsIcon:Kn,Brain:z0,BrainCircuit:Jn,BrainCircuitIcon:Jn,BrainCog:Qn,BrainCogIcon:Qn,BrainIcon:z0,BrickWall:Yn,BrickWallIcon:Yn,Briefcase:j0,BriefcaseBusiness:ed,BriefcaseBusinessIcon:ed,BriefcaseConveyorBelt:ad,BriefcaseConveyorBeltIcon:ad,BriefcaseIcon:j0,BriefcaseMedical:od,BriefcaseMedicalIcon:od,BringToFront:cd,BringToFrontIcon:cd,Brush:td,BrushIcon:td,Bug:id,BugIcon:id,BugOff:nd,BugOffIcon:nd,BugPlay:dd,BugPlayIcon:dd,Building:B0,Building2:V0,Building2Icon:V0,BuildingIcon:B0,Bus:yd,BusFront:hd,BusFrontIcon:hd,BusIcon:yd,Cable:kd,CableCar:rd,CableCarIcon:rd,CableIcon:kd,Cake:sd,CakeIcon:sd,CakeSlice:pd,CakeSliceIcon:pd,Calculator:F0,CalculatorIcon:F0,Calendar:T0,Calendar1:ld,Calendar1Icon:ld,CalendarArrowDown:ud,CalendarArrowDownIcon:ud,CalendarArrowUp:Md,CalendarArrowUpIcon:Md,CalendarCheck:D0,CalendarCheck2:vd,CalendarCheck2Icon:vd,CalendarCheckIcon:D0,CalendarClock:md,CalendarClockIcon:md,CalendarCog:_d,CalendarCogIcon:_d,CalendarDays:R0,CalendarDaysIcon:R0,CalendarFold:gd,CalendarFoldIcon:gd,CalendarHeart:Ld,CalendarHeartIcon:Ld,CalendarIcon:T0,CalendarMinus:wd,CalendarMinus2:xd,CalendarMinus2Icon:xd,CalendarMinusIcon:wd,CalendarOff:fd,CalendarOffIcon:fd,CalendarPlus:Id,CalendarPlus2:Cd,CalendarPlus2Icon:Cd,CalendarPlusIcon:Id,CalendarRange:Nd,CalendarRangeIcon:Nd,CalendarSearch:Sd,CalendarSearchIcon:Sd,CalendarSync:qd,CalendarSyncIcon:qd,CalendarX:$d,CalendarX2:bd,CalendarX2Icon:bd,CalendarXIcon:$d,Camera:U0,CameraIcon:U0,CameraOff:Ad,CameraOffIcon:Ad,CandlestickChart:E,CandlestickChartIcon:E,Candy:Pd,CandyCane:Hd,CandyCaneIcon:Hd,CandyIcon:Pd,CandyOff:zd,CandyOffIcon:zd,Cannabis:jd,CannabisIcon:jd,Captions:O,CaptionsIcon:O,CaptionsOff:Vd,CaptionsOffIcon:Vd,Car:Dd,CarFront:Bd,CarFrontIcon:Bd,CarIcon:Dd,CarTaxiFront:Fd,CarTaxiFrontIcon:Fd,Caravan:Rd,CaravanIcon:Rd,Carrot:Td,CarrotIcon:Td,CaseLower:Ud,CaseLowerIcon:Ud,CaseSensitive:Od,CaseSensitiveIcon:Od,CaseUpper:Zd,CaseUpperIcon:Zd,CassetteTape:Gd,CassetteTapeIcon:Gd,Cast:Wd,CastIcon:Wd,Castle:Ed,CastleIcon:Ed,Cat:Xd,CatIcon:Xd,Cctv:Kd,CctvIcon:Kd,ChartArea:Z,ChartAreaIcon:Z,ChartBar:W,ChartBarBig:G,ChartBarBigIcon:G,ChartBarDecreasing:Jd,ChartBarDecreasingIcon:Jd,ChartBarIcon:W,ChartBarIncreasing:Qd,ChartBarIncreasingIcon:Qd,ChartBarStacked:Yd,ChartBarStackedIcon:Yd,ChartCandlestick:E,ChartCandlestickIcon:E,ChartColumn:u,ChartColumnBig:X,ChartColumnBigIcon:X,ChartColumnDecreasing:ei,ChartColumnDecreasingIcon:ei,ChartColumnIcon:u,ChartColumnIncreasing:K,ChartColumnIncreasingIcon:K,ChartColumnStacked:ai,ChartColumnStackedIcon:ai,ChartGantt:oi,ChartGanttIcon:oi,ChartLine:J,ChartLineIcon:J,ChartNetwork:ci,ChartNetworkIcon:ci,ChartNoAxesColumn:v,ChartNoAxesColumnDecreasing:ti,ChartNoAxesColumnDecreasingIcon:ti,ChartNoAxesColumnIcon:v,ChartNoAxesColumnIncreasing:M,ChartNoAxesColumnIncreasingIcon:M,ChartNoAxesCombined:ni,ChartNoAxesCombinedIcon:ni,ChartNoAxesGantt:Q,ChartNoAxesGanttIcon:Q,ChartPie:Y,ChartPieIcon:Y,ChartScatter:e1,ChartScatterIcon:e1,ChartSpline:di,ChartSplineIcon:di,Check:E2,CheckCheck:ii,CheckCheckIcon:ii,CheckCircle:_,CheckCircle2:g,CheckCircle2Icon:g,CheckCircleIcon:_,CheckIcon:E2,CheckSquare:N,CheckSquare2:Oe,CheckSquare2Icon:Oe,CheckSquareIcon:N,ChefHat:hi,ChefHatIcon:hi,Cherry:yi,CherryIcon:yi,ChevronDown:O2,ChevronDownCircle:y1,ChevronDownCircleIcon:y1,ChevronDownIcon:O2,ChevronDownSquare:Ze,ChevronDownSquareIcon:Ze,ChevronFirst:ri,ChevronFirstIcon:ri,ChevronLast:ki,ChevronLastIcon:ki,ChevronLeft:O0,ChevronLeftCircle:r1,ChevronLeftCircleIcon:r1,ChevronLeftIcon:O0,ChevronLeftSquare:Ge,ChevronLeftSquareIcon:Ge,ChevronRight:Z0,ChevronRightCircle:k1,ChevronRightCircleIcon:k1,ChevronRightIcon:Z0,ChevronRightSquare:We,ChevronRightSquareIcon:We,ChevronUp:Z2,ChevronUpCircle:p1,ChevronUpCircleIcon:p1,ChevronUpIcon:Z2,ChevronUpSquare:Ee,ChevronUpSquareIcon:Ee,ChevronsDown:si,ChevronsDownIcon:si,ChevronsDownUp:pi,ChevronsDownUpIcon:pi,ChevronsLeft:Mi,ChevronsLeftIcon:Mi,ChevronsLeftRight:ui,ChevronsLeftRightEllipsis:li,ChevronsLeftRightEllipsisIcon:li,ChevronsLeftRightIcon:ui,ChevronsRight:mi,ChevronsRightIcon:mi,ChevronsRightLeft:vi,ChevronsRightLeftIcon:vi,ChevronsUp:_i,ChevronsUpDown:G2,ChevronsUpDownIcon:G2,ChevronsUpIcon:_i,Chrome:gi,ChromeIcon:gi,Church:Li,ChurchIcon:Li,Cigarette:wi,CigaretteIcon:wi,CigaretteOff:xi,CigaretteOffIcon:xi,Circle:G0,CircleAlert:m,CircleAlertIcon:m,CircleArrowDown:a1,CircleArrowDownIcon:a1,CircleArrowLeft:o1,CircleArrowLeftIcon:o1,CircleArrowOutDownLeft:c1,CircleArrowOutDownLeftIcon:c1,CircleArrowOutDownRight:t1,CircleArrowOutDownRightIcon:t1,CircleArrowOutUpLeft:n1,CircleArrowOutUpLeftIcon:n1,CircleArrowOutUpRight:d1,CircleArrowOutUpRightIcon:d1,CircleArrowRight:i1,CircleArrowRightIcon:i1,CircleArrowUp:h1,CircleArrowUpIcon:h1,CircleCheck:g,CircleCheckBig:_,CircleCheckBigIcon:_,CircleCheckIcon:g,CircleChevronDown:y1,CircleChevronDownIcon:y1,CircleChevronLeft:r1,CircleChevronLeftIcon:r1,CircleChevronRight:k1,CircleChevronRightIcon:k1,CircleChevronUp:p1,CircleChevronUpIcon:p1,CircleDashed:fi,CircleDashedIcon:fi,CircleDivide:s1,CircleDivideIcon:s1,CircleDollarSign:Ci,CircleDollarSignIcon:Ci,CircleDot:Ni,CircleDotDashed:Ii,CircleDotDashedIcon:Ii,CircleDotIcon:Ni,CircleEllipsis:Si,CircleEllipsisIcon:Si,CircleEqual:qi,CircleEqualIcon:qi,CircleFadingArrowUp:bi,CircleFadingArrowUpIcon:bi,CircleFadingPlus:$i,CircleFadingPlusIcon:$i,CircleGauge:l1,CircleGaugeIcon:l1,CircleHelp:L,CircleHelpIcon:L,CircleIcon:G0,CircleMinus:u1,CircleMinusIcon:u1,CircleOff:Ai,CircleOffIcon:Ai,CircleParking:v1,CircleParkingIcon:v1,CircleParkingOff:M1,CircleParkingOffIcon:M1,CirclePause:m1,CirclePauseIcon:m1,CirclePercent:_1,CirclePercentIcon:_1,CirclePlay:g1,CirclePlayIcon:g1,CirclePlus:L1,CirclePlusIcon:L1,CirclePower:x1,CirclePowerIcon:x1,CircleSlash:Hi,CircleSlash2:w1,CircleSlash2Icon:w1,CircleSlashIcon:Hi,CircleSlashed:w1,CircleSlashedIcon:w1,CircleSmall:zi,CircleSmallIcon:zi,CircleStop:f1,CircleStopIcon:f1,CircleUser:I1,CircleUserIcon:I1,CircleUserRound:C1,CircleUserRoundIcon:C1,CircleX:x,CircleXIcon:x,CircuitBoard:Pi,CircuitBoardIcon:Pi,Citrus:ji,CitrusIcon:ji,Clapperboard:Vi,ClapperboardIcon:Vi,Clipboard:Zi,ClipboardCheck:Bi,ClipboardCheckIcon:Bi,ClipboardCopy:Fi,ClipboardCopyIcon:Fi,ClipboardEdit:S1,ClipboardEditIcon:S1,ClipboardIcon:Zi,ClipboardList:W0,ClipboardListIcon:W0,ClipboardMinus:Di,ClipboardMinusIcon:Di,ClipboardPaste:Ri,ClipboardPasteIcon:Ri,ClipboardPen:S1,ClipboardPenIcon:S1,ClipboardPenLine:N1,ClipboardPenLineIcon:N1,ClipboardPlus:Ti,ClipboardPlusIcon:Ti,ClipboardSignature:N1,ClipboardSignatureIcon:N1,ClipboardType:Ui,ClipboardTypeIcon:Ui,ClipboardX:Oi,ClipboardXIcon:Oi,Clock:E0,Clock1:Gi,Clock10:Wi,Clock10Icon:Wi,Clock11:Ei,Clock11Icon:Ei,Clock12:Xi,Clock12Icon:Xi,Clock1Icon:Gi,Clock2:Ki,Clock2Icon:Ki,Clock3:Ji,Clock3Icon:Ji,Clock4:Qi,Clock4Icon:Qi,Clock5:Yi,Clock5Icon:Yi,Clock6:eh,Clock6Icon:eh,Clock7:ah,Clock7Icon:ah,Clock8:oh,Clock8Icon:oh,Clock9:ch,Clock9Icon:ch,ClockAlert:th,ClockAlertIcon:th,ClockArrowDown:nh,ClockArrowDownIcon:nh,ClockArrowUp:dh,ClockArrowUpIcon:dh,ClockIcon:E0,Cloud:Lh,CloudAlert:ih,CloudAlertIcon:ih,CloudCog:hh,CloudCogIcon:hh,CloudDownload:q1,CloudDownloadIcon:q1,CloudDrizzle:yh,CloudDrizzleIcon:yh,CloudFog:rh,CloudFogIcon:rh,CloudHail:kh,CloudHailIcon:kh,CloudIcon:Lh,CloudLightning:ph,CloudLightningIcon:ph,CloudMoon:lh,CloudMoonIcon:lh,CloudMoonRain:sh,CloudMoonRainIcon:sh,CloudOff:uh,CloudOffIcon:uh,CloudRain:vh,CloudRainIcon:vh,CloudRainWind:Mh,CloudRainWindIcon:Mh,CloudSnow:mh,CloudSnowIcon:mh,CloudSun:gh,CloudSunIcon:gh,CloudSunRain:_h,CloudSunRainIcon:_h,CloudUpload:b1,CloudUploadIcon:b1,Cloudy:xh,CloudyIcon:xh,Clover:wh,CloverIcon:wh,Club:fh,ClubIcon:fh,Code:X0,Code2:$1,Code2Icon:$1,CodeIcon:X0,CodeSquare:Xe,CodeSquareIcon:Xe,CodeXml:$1,CodeXmlIcon:$1,Codepen:Ch,CodepenIcon:Ch,Codesandbox:Ih,CodesandboxIcon:Ih,Coffee:Nh,CoffeeIcon:Nh,Cog:Sh,CogIcon:Sh,Coins:K0,CoinsIcon:K0,Columns:A1,Columns2:A1,Columns2Icon:A1,Columns3:H1,Columns3Icon:H1,Columns4:qh,Columns4Icon:qh,ColumnsIcon:A1,Combine:bh,CombineIcon:bh,Command:$h,CommandIcon:$h,Compass:Ah,CompassIcon:Ah,Component:Hh,ComponentIcon:Hh,Computer:zh,ComputerIcon:zh,ConciergeBell:Ph,ConciergeBellIcon:Ph,Cone:jh,ConeIcon:jh,Construction:Vh,ConstructionIcon:Vh,Contact:Bh,Contact2:z1,Contact2Icon:z1,ContactIcon:Bh,ContactRound:z1,ContactRoundIcon:z1,Container:Fh,ContainerIcon:Fh,Contrast:Dh,ContrastIcon:Dh,Cookie:Rh,CookieIcon:Rh,CookingPot:Th,CookingPotIcon:Th,Copy:J0,CopyCheck:Uh,CopyCheckIcon:Uh,CopyIcon:J0,CopyMinus:Oh,CopyMinusIcon:Oh,CopyPlus:Zh,CopyPlusIcon:Zh,CopySlash:Gh,CopySlashIcon:Gh,CopyX:Wh,CopyXIcon:Wh,Copyleft:Eh,CopyleftIcon:Eh,Copyright:Xh,CopyrightIcon:Xh,CornerDownLeft:Kh,CornerDownLeftIcon:Kh,CornerDownRight:Jh,CornerDownRightIcon:Jh,CornerLeftDown:Qh,CornerLeftDownIcon:Qh,CornerLeftUp:Yh,CornerLeftUpIcon:Yh,CornerRightDown:ey,CornerRightDownIcon:ey,CornerRightUp:ay,CornerRightUpIcon:ay,CornerUpLeft:oy,CornerUpLeftIcon:oy,CornerUpRight:cy,CornerUpRightIcon:cy,Cpu:ty,CpuIcon:ty,CreativeCommons:ny,CreativeCommonsIcon:ny,CreditCard:Q0,CreditCardIcon:Q0,Croissant:dy,CroissantIcon:dy,Crop:iy,CropIcon:iy,Cross:hy,CrossIcon:hy,Crosshair:Y0,CrosshairIcon:Y0,Crown:ea,CrownIcon:ea,Cuboid:yy,CuboidIcon:yy,CupSoda:ry,CupSodaIcon:ry,CurlyBraces:U,CurlyBracesIcon:U,Currency:ky,CurrencyIcon:ky,Cylinder:py,CylinderIcon:py,Dam:sy,DamIcon:sy,Database:My,DatabaseBackup:ly,DatabaseBackupIcon:ly,DatabaseIcon:My,DatabaseZap:uy,DatabaseZapIcon:uy,Delete:vy,DeleteIcon:vy,Dessert:my,DessertIcon:my,Diameter:_y,DiameterIcon:_y,Diamond:xy,DiamondIcon:xy,DiamondMinus:gy,DiamondMinusIcon:gy,DiamondPercent:P1,DiamondPercentIcon:P1,DiamondPlus:Ly,DiamondPlusIcon:Ly,Dice1:wy,Dice1Icon:wy,Dice2:fy,Dice2Icon:fy,Dice3:Cy,Dice3Icon:Cy,Dice4:Iy,Dice4Icon:Iy,Dice5:Ny,Dice5Icon:Ny,Dice6:Sy,Dice6Icon:Sy,Dices:qy,DicesIcon:qy,Diff:by,DiffIcon:by,Disc:zy,Disc2:$y,Disc2Icon:$y,Disc3:Ay,Disc3Icon:Ay,DiscAlbum:Hy,DiscAlbumIcon:Hy,DiscIcon:zy,Divide:Py,DivideCircle:s1,DivideCircleIcon:s1,DivideIcon:Py,DivideSquare:Ye,DivideSquareIcon:Ye,Dna:Vy,DnaIcon:Vy,DnaOff:jy,DnaOffIcon:jy,Dock:By,DockIcon:By,Dog:Fy,DogIcon:Fy,DollarSign:aa,DollarSignIcon:aa,Donut:Dy,DonutIcon:Dy,DoorClosed:Ry,DoorClosedIcon:Ry,DoorOpen:Ty,DoorOpenIcon:Ty,Dot:Uy,DotIcon:Uy,DotSquare:e2,DotSquareIcon:e2,Download:oa,DownloadCloud:q1,DownloadCloudIcon:q1,DownloadIcon:oa,DraftingCompass:Oy,DraftingCompassIcon:Oy,Drama:Zy,DramaIcon:Zy,Dribbble:Gy,DribbbleIcon:Gy,Drill:Wy,DrillIcon:Wy,Droplet:Xy,DropletIcon:Xy,DropletOff:Ey,DropletOffIcon:Ey,Droplets:Ky,DropletsIcon:Ky,Drum:Jy,DrumIcon:Jy,Drumstick:Qy,DrumstickIcon:Qy,Dumbbell:Yy,DumbbellIcon:Yy,Ear:ar,EarIcon:ar,EarOff:er,EarOffIcon:er,Earth:j1,EarthIcon:j1,EarthLock:or,EarthLockIcon:or,Eclipse:cr,EclipseIcon:cr,Edit:n,Edit2:_e,Edit2Icon:_e,Edit3:w,Edit3Icon:w,EditIcon:n,Egg:dr,EggFried:tr,EggFriedIcon:tr,EggIcon:dr,EggOff:nr,EggOffIcon:nr,Ellipsis:B1,EllipsisIcon:B1,EllipsisVertical:V1,EllipsisVerticalIcon:V1,Equal:yr,EqualApproximately:ir,EqualApproximatelyIcon:ir,EqualIcon:yr,EqualNot:hr,EqualNotIcon:hr,EqualSquare:a2,EqualSquareIcon:a2,Eraser:rr,EraserIcon:rr,EthernetPort:kr,EthernetPortIcon:kr,Euro:pr,EuroIcon:pr,Expand:sr,ExpandIcon:sr,ExternalLink:ca,ExternalLinkIcon:ca,Eye:na,EyeClosed:lr,EyeClosedIcon:lr,EyeIcon:na,EyeOff:ta,EyeOffIcon:ta,Facebook:da,FacebookIcon:da,Factory:ur,FactoryIcon:ur,Fan:Mr,FanIcon:Mr,FastForward:vr,FastForwardIcon:vr,Feather:mr,FeatherIcon:mr,Fence:_r,FenceIcon:_r,FerrisWheel:gr,FerrisWheelIcon:gr,Figma:Lr,FigmaIcon:Lr,File:l4,FileArchive:xr,FileArchiveIcon:xr,FileAudio:fr,FileAudio2:wr,FileAudio2Icon:wr,FileAudioIcon:fr,FileAxis3D:F1,FileAxis3DIcon:F1,FileAxis3d:F1,FileAxis3dIcon:F1,FileBadge:Ir,FileBadge2:Cr,FileBadge2Icon:Cr,FileBadgeIcon:Ir,FileBarChart:D1,FileBarChart2:R1,FileBarChart2Icon:R1,FileBarChartIcon:D1,FileBox:Nr,FileBoxIcon:Nr,FileChartColumn:R1,FileChartColumnIcon:R1,FileChartColumnIncreasing:D1,FileChartColumnIncreasingIcon:D1,FileChartLine:T1,FileChartLineIcon:T1,FileChartPie:U1,FileChartPieIcon:U1,FileCheck:qr,FileCheck2:Sr,FileCheck2Icon:Sr,FileCheckIcon:qr,FileClock:br,FileClockIcon:br,FileCode:Ar,FileCode2:$r,FileCode2Icon:$r,FileCodeIcon:Ar,FileCog:O1,FileCog2:O1,FileCog2Icon:O1,FileCogIcon:O1,FileDiff:Hr,FileDiffIcon:Hr,FileDigit:zr,FileDigitIcon:zr,FileDown:ha,FileDownIcon:ha,FileEdit:G1,FileEditIcon:G1,FileHeart:Pr,FileHeartIcon:Pr,FileIcon:l4,FileImage:jr,FileImageIcon:jr,FileInput:Vr,FileInputIcon:Vr,FileJson:Fr,FileJson2:Br,FileJson2Icon:Br,FileJsonIcon:Fr,FileKey:Rr,FileKey2:Dr,FileKey2Icon:Dr,FileKeyIcon:Rr,FileLineChart:T1,FileLineChartIcon:T1,FileLock:Ur,FileLock2:Tr,FileLock2Icon:Tr,FileLockIcon:Ur,FileMinus:Zr,FileMinus2:Or,FileMinus2Icon:Or,FileMinusIcon:Zr,FileMusic:Gr,FileMusicIcon:Gr,FileOutput:Wr,FileOutputIcon:Wr,FilePen:G1,FilePenIcon:G1,FilePenLine:Z1,FilePenLineIcon:Z1,FilePieChart:U1,FilePieChartIcon:U1,FilePlus:Xr,FilePlus2:Er,FilePlus2Icon:Er,FilePlusIcon:Xr,FileQuestion:Kr,FileQuestionIcon:Kr,FileScan:Jr,FileScanIcon:Jr,FileSearch:Yr,FileSearch2:Qr,FileSearch2Icon:Qr,FileSearchIcon:Yr,FileSignature:Z1,FileSignatureIcon:Z1,FileSliders:e4,FileSlidersIcon:e4,FileSpreadsheet:ya,FileSpreadsheetIcon:ya,FileStack:a4,FileStackIcon:a4,FileSymlink:o4,FileSymlinkIcon:o4,FileTerminal:c4,FileTerminalIcon:c4,FileText:X2,FileTextIcon:X2,FileType:n4,FileType2:t4,FileType2Icon:t4,FileTypeIcon:n4,FileUp:ra,FileUpIcon:ra,FileUser:d4,FileUserIcon:d4,FileVideo:h4,FileVideo2:i4,FileVideo2Icon:i4,FileVideoIcon:h4,FileVolume:r4,FileVolume2:y4,FileVolume2Icon:y4,FileVolumeIcon:r4,FileWarning:k4,FileWarningIcon:k4,FileX:s4,FileX2:p4,FileX2Icon:p4,FileXIcon:s4,Files:u4,FilesIcon:u4,Film:M4,FilmIcon:M4,Filter:ka,FilterIcon:ka,FilterX:v4,FilterXIcon:v4,Fingerprint:pa,FingerprintIcon:pa,FireExtinguisher:m4,FireExtinguisherIcon:m4,Fish:L4,FishIcon:L4,FishOff:_4,FishOffIcon:_4,FishSymbol:g4,FishSymbolIcon:g4,Flag:C4,FlagIcon:C4,FlagOff:x4,FlagOffIcon:x4,FlagTriangleLeft:w4,FlagTriangleLeftIcon:w4,FlagTriangleRight:f4,FlagTriangleRightIcon:f4,Flame:N4,FlameIcon:N4,FlameKindling:I4,FlameKindlingIcon:I4,Flashlight:q4,FlashlightIcon:q4,FlashlightOff:S4,FlashlightOffIcon:S4,FlaskConical:$4,FlaskConicalIcon:$4,FlaskConicalOff:b4,FlaskConicalOffIcon:b4,FlaskRound:A4,FlaskRoundIcon:A4,FlipHorizontal:z4,FlipHorizontal2:H4,FlipHorizontal2Icon:H4,FlipHorizontalIcon:z4,FlipVertical:j4,FlipVertical2:P4,FlipVertical2Icon:P4,FlipVerticalIcon:j4,Flower:B4,Flower2:V4,Flower2Icon:V4,FlowerIcon:B4,Focus:F4,FocusIcon:F4,FoldHorizontal:D4,FoldHorizontalIcon:D4,FoldVertical:R4,FoldVerticalIcon:R4,Folder:P0,FolderArchive:T4,FolderArchiveIcon:T4,FolderCheck:U4,FolderCheckIcon:U4,FolderClock:O4,FolderClockIcon:O4,FolderClosed:Z4,FolderClosedIcon:Z4,FolderCode:G4,FolderCodeIcon:G4,FolderCog:W1,FolderCog2:W1,FolderCog2Icon:W1,FolderCogIcon:W1,FolderDot:W4,FolderDotIcon:W4,FolderDown:E4,FolderDownIcon:E4,FolderEdit:E1,FolderEditIcon:E1,FolderGit:X4,FolderGit2:sa,FolderGit2Icon:sa,FolderGitIcon:X4,FolderHeart:K4,FolderHeartIcon:K4,FolderIcon:P0,FolderInput:J4,FolderInputIcon:J4,FolderKanban:Q4,FolderKanbanIcon:Q4,FolderKey:Y4,FolderKeyIcon:Y4,FolderLock:ek,FolderLockIcon:ek,FolderMinus:ak,FolderMinusIcon:ak,FolderOpen:la,FolderOpenDot:ok,FolderOpenDotIcon:ok,FolderOpenIcon:la,FolderOutput:ck,FolderOutputIcon:ck,FolderPen:E1,FolderPenIcon:E1,FolderPlus:tk,FolderPlusIcon:tk,FolderRoot:nk,FolderRootIcon:nk,FolderSearch:ik,FolderSearch2:dk,FolderSearch2Icon:dk,FolderSearchIcon:ik,FolderSymlink:hk,FolderSymlinkIcon:hk,FolderSync:yk,FolderSyncIcon:yk,FolderTree:rk,FolderTreeIcon:rk,FolderUp:kk,FolderUpIcon:kk,FolderX:pk,FolderXIcon:pk,Folders:sk,FoldersIcon:sk,Footprints:lk,FootprintsIcon:lk,ForkKnife:D2,ForkKnifeCrossed:F2,ForkKnifeCrossedIcon:F2,ForkKnifeIcon:D2,Forklift:uk,ForkliftIcon:uk,FormInput:Le,FormInputIcon:Le,Forward:Mk,ForwardIcon:Mk,Frame:vk,FrameIcon:vk,Framer:mk,FramerIcon:mk,Frown:_k,FrownIcon:_k,Fuel:gk,FuelIcon:gk,Fullscreen:Lk,FullscreenIcon:Lk,FunctionSquare:o2,FunctionSquareIcon:o2,GalleryHorizontal:wk,GalleryHorizontalEnd:xk,GalleryHorizontalEndIcon:xk,GalleryHorizontalIcon:wk,GalleryThumbnails:fk,GalleryThumbnailsIcon:fk,GalleryVertical:Ik,GalleryVerticalEnd:Ck,GalleryVerticalEndIcon:Ck,GalleryVerticalIcon:Ik,Gamepad:Sk,Gamepad2:Nk,Gamepad2Icon:Nk,GamepadIcon:Sk,GanttChart:Q,GanttChartIcon:Q,GanttChartSquare:i,GanttChartSquareIcon:i,Gauge:qk,GaugeCircle:l1,GaugeCircleIcon:l1,GaugeIcon:qk,Gavel:bk,GavelIcon:bk,Gem:$k,GemIcon:$k,Ghost:Ak,GhostIcon:Ak,Gift:ua,GiftIcon:ua,GitBranch:Ma,GitBranchIcon:Ma,GitBranchPlus:Hk,GitBranchPlusIcon:Hk,GitCommit:X1,GitCommitHorizontal:X1,GitCommitHorizontalIcon:X1,GitCommitIcon:X1,GitCommitVertical:zk,GitCommitVerticalIcon:zk,GitCompare:jk,GitCompareArrows:Pk,GitCompareArrowsIcon:Pk,GitCompareIcon:jk,GitFork:Vk,GitForkIcon:Vk,GitGraph:Bk,GitGraphIcon:Bk,GitMerge:Fk,GitMergeIcon:Fk,GitPullRequest:Zk,GitPullRequestArrow:Dk,GitPullRequestArrowIcon:Dk,GitPullRequestClosed:Rk,GitPullRequestClosedIcon:Rk,GitPullRequestCreate:Uk,GitPullRequestCreateArrow:Tk,GitPullRequestCreateArrowIcon:Tk,GitPullRequestCreateIcon:Uk,GitPullRequestDraft:Ok,GitPullRequestDraftIcon:Ok,GitPullRequestIcon:Zk,Github:Gk,GithubIcon:Gk,Gitlab:Wk,GitlabIcon:Wk,GlassWater:Ek,GlassWaterIcon:Ek,Glasses:Xk,GlassesIcon:Xk,Globe:va,Globe2:j1,Globe2Icon:j1,GlobeIcon:va,GlobeLock:Kk,GlobeLockIcon:Kk,Goal:Jk,GoalIcon:Jk,Grab:Qk,GrabIcon:Qk,GraduationCap:M0,GraduationCapIcon:M0,Grape:Yk,GrapeIcon:Yk,Grid:d,Grid2X2:Y1,Grid2X2Check:K1,Grid2X2CheckIcon:K1,Grid2X2Icon:Y1,Grid2X2Plus:J1,Grid2X2PlusIcon:J1,Grid2X2X:Q1,Grid2X2XIcon:Q1,Grid2x2:Y1,Grid2x2Check:K1,Grid2x2CheckIcon:K1,Grid2x2Icon:Y1,Grid2x2Plus:J1,Grid2x2PlusIcon:J1,Grid2x2X:Q1,Grid2x2XIcon:Q1,Grid3X3:d,Grid3X3Icon:d,Grid3x3:d,Grid3x3Icon:d,GridIcon:d,Grip:ap,GripHorizontal:ep,GripHorizontalIcon:ep,GripIcon:ap,GripVertical:ma,GripVerticalIcon:ma,Group:op,GroupIcon:op,Guitar:cp,GuitarIcon:cp,Ham:tp,HamIcon:tp,Hammer:np,HammerIcon:np,Hand:rp,HandCoins:dp,HandCoinsIcon:dp,HandHeart:ip,HandHeartIcon:ip,HandHelping:ee,HandHelpingIcon:ee,HandIcon:rp,HandMetal:hp,HandMetalIcon:hp,HandPlatter:yp,HandPlatterIcon:yp,Handshake:kp,HandshakeIcon:kp,HardDrive:_a,HardDriveDownload:pp,HardDriveDownloadIcon:pp,HardDriveIcon:_a,HardDriveUpload:sp,HardDriveUploadIcon:sp,HardHat:lp,HardHatIcon:lp,Hash:ga,HashIcon:ga,Haze:up,HazeIcon:up,HdmiPort:Mp,HdmiPortIcon:Mp,Heading:wp,Heading1:vp,Heading1Icon:vp,Heading2:mp,Heading2Icon:mp,Heading3:_p,Heading3Icon:_p,Heading4:gp,Heading4Icon:gp,Heading5:Lp,Heading5Icon:Lp,Heading6:xp,Heading6Icon:xp,HeadingIcon:wp,HeadphoneOff:fp,HeadphoneOffIcon:fp,Headphones:Cp,HeadphonesIcon:Cp,Headset:Ip,HeadsetIcon:Ip,Heart:La,HeartCrack:Np,HeartCrackIcon:Np,HeartHandshake:Sp,HeartHandshakeIcon:Sp,HeartIcon:La,HeartOff:qp,HeartOffIcon:qp,HeartPulse:bp,HeartPulseIcon:bp,Heater:$p,HeaterIcon:$p,HelpCircle:L,HelpCircleIcon:L,HelpingHand:ee,HelpingHandIcon:ee,Hexagon:Ap,HexagonIcon:Ap,Highlighter:Hp,HighlighterIcon:Hp,History:C0,HistoryIcon:C0,Home:f,HomeIcon:f,Hop:Pp,HopIcon:Pp,HopOff:zp,HopOffIcon:zp,Hospital:jp,HospitalIcon:jp,Hotel:Vp,HotelIcon:Vp,Hourglass:Bp,HourglassIcon:Bp,House:f,HouseIcon:f,HousePlug:Fp,HousePlugIcon:Fp,HousePlus:Dp,HousePlusIcon:Dp,HouseWifi:Rp,HouseWifiIcon:Rp,IceCream:oe,IceCream2:ae,IceCream2Icon:ae,IceCreamBowl:ae,IceCreamBowlIcon:ae,IceCreamCone:oe,IceCreamConeIcon:oe,IceCreamIcon:oe,Icon:bm,IdCard:v0,IdCardIcon:v0,Image:K2,ImageDown:Tp,ImageDownIcon:Tp,ImageIcon:K2,ImageMinus:Up,ImageMinusIcon:Up,ImageOff:Op,ImageOffIcon:Op,ImagePlay:Zp,ImagePlayIcon:Zp,ImagePlus:Gp,ImagePlusIcon:Gp,ImageUp:Wp,ImageUpIcon:Wp,ImageUpscale:Ep,ImageUpscaleIcon:Ep,Images:Xp,ImagesIcon:Xp,Import:Kp,ImportIcon:Kp,Inbox:Jp,InboxIcon:Jp,Indent:te,IndentDecrease:ce,IndentDecreaseIcon:ce,IndentIcon:te,IndentIncrease:te,IndentIncreaseIcon:te,IndianRupee:b0,IndianRupeeIcon:b0,Infinity:Qp,InfinityIcon:Qp,Info:wa,InfoIcon:wa,Inspect:h2,InspectIcon:h2,InspectionPanel:Yp,InspectionPanelIcon:Yp,Instagram:ia,InstagramIcon:ia,Italic:h0,ItalicIcon:h0,IterationCcw:e5,IterationCcwIcon:e5,IterationCw:a5,IterationCwIcon:a5,JapaneseYen:o5,JapaneseYenIcon:o5,Joystick:c5,JoystickIcon:c5,Kanban:t5,KanbanIcon:t5,KanbanSquare:c2,KanbanSquareDashed:Ke,KanbanSquareDashedIcon:Ke,KanbanSquareIcon:c2,Key:d5,KeyIcon:d5,KeyRound:I0,KeyRoundIcon:I0,KeySquare:n5,KeySquareIcon:n5,Keyboard:y5,KeyboardIcon:y5,KeyboardMusic:i5,KeyboardMusicIcon:i5,KeyboardOff:h5,KeyboardOffIcon:h5,Lamp:u5,LampCeiling:r5,LampCeilingIcon:r5,LampDesk:k5,LampDeskIcon:k5,LampFloor:p5,LampFloorIcon:p5,LampIcon:u5,LampWallDown:s5,LampWallDownIcon:s5,LampWallUp:l5,LampWallUpIcon:l5,LandPlot:M5,LandPlotIcon:M5,Landmark:v5,LandmarkIcon:v5,Languages:m5,LanguagesIcon:m5,Laptop:g5,Laptop2:ne,Laptop2Icon:ne,LaptopIcon:g5,LaptopMinimal:ne,LaptopMinimalCheck:_5,LaptopMinimalCheckIcon:_5,LaptopMinimalIcon:ne,Lasso:x5,LassoIcon:x5,LassoSelect:L5,LassoSelectIcon:L5,Laugh:w5,LaughIcon:w5,Layers:C,Layers2:f5,Layers2Icon:f5,Layers3:C,Layers3Icon:C,LayersIcon:C,Layout:p,LayoutDashboard:C5,LayoutDashboardIcon:C5,LayoutGrid:fa,LayoutGridIcon:fa,LayoutIcon:p,LayoutList:Ca,LayoutListIcon:Ca,LayoutPanelLeft:I5,LayoutPanelLeftIcon:I5,LayoutPanelTop:N5,LayoutPanelTopIcon:N5,LayoutTemplate:S5,LayoutTemplateIcon:S5,Leaf:q5,LeafIcon:q5,LeafyGreen:b5,LeafyGreenIcon:b5,Lectern:$5,LecternIcon:$5,LetterText:A5,LetterTextIcon:A5,Library:z5,LibraryBig:H5,LibraryBigIcon:H5,LibraryIcon:z5,LibrarySquare:t2,LibrarySquareIcon:t2,LifeBuoy:P5,LifeBuoyIcon:P5,Ligature:j5,LigatureIcon:j5,Lightbulb:Ia,LightbulbIcon:Ia,LightbulbOff:V5,LightbulbOffIcon:V5,LineChart:J,LineChartIcon:J,Link:Sa,Link2:Na,Link2Icon:Na,Link2Off:B5,Link2OffIcon:B5,LinkIcon:Sa,Linkedin:qa,LinkedinIcon:qa,List:$a,ListCheck:F5,ListCheckIcon:F5,ListChecks:D5,ListChecksIcon:D5,ListCollapse:R5,ListCollapseIcon:R5,ListEnd:T5,ListEndIcon:T5,ListFilter:O5,ListFilterIcon:O5,ListFilterPlus:U5,ListFilterPlusIcon:U5,ListIcon:$a,ListMinus:Z5,ListMinusIcon:Z5,ListMusic:G5,ListMusicIcon:G5,ListOrdered:y0,ListOrderedIcon:y0,ListPlus:W5,ListPlusIcon:W5,ListRestart:E5,ListRestartIcon:E5,ListStart:X5,ListStartIcon:X5,ListTodo:K5,ListTodoIcon:K5,ListTree:J5,ListTreeIcon:J5,ListVideo:Q5,ListVideoIcon:Q5,ListX:Y5,ListXIcon:Y5,Loader:as,Loader2:I,Loader2Icon:I,LoaderCircle:I,LoaderCircleIcon:I,LoaderIcon:as,LoaderPinwheel:es,LoaderPinwheelIcon:es,Locate:cs,LocateFixed:Aa,LocateFixedIcon:Aa,LocateIcon:cs,LocateOff:os,LocateOffIcon:os,Lock:Ha,LockIcon:Ha,LockKeyhole:ts,LockKeyholeIcon:ts,LockKeyholeOpen:de,LockKeyholeOpenIcon:de,LockOpen:s,LockOpenIcon:s,LogIn:za,LogInIcon:za,LogOut:Pa,LogOutIcon:Pa,Logs:ns,LogsIcon:ns,Lollipop:ds,LollipopIcon:ds,LucideAArrowDown:So,LucideAArrowUp:qo,LucideALargeSmall:bo,LucideAccessibility:$o,LucideActivity:Ao,LucideActivitySquare:qe,LucideAirVent:Ho,LucideAirplay:zo,LucideAlarmCheck:q,LucideAlarmClock:jo,LucideAlarmClockCheck:q,LucideAlarmClockMinus:b,LucideAlarmClockOff:Po,LucideAlarmClockPlus:$,LucideAlarmMinus:b,LucideAlarmPlus:$,LucideAlarmSmoke:Vo,LucideAlbum:Bo,LucideAlertCircle:m,LucideAlertOctagon:ye,LucideAlertTriangle:S,LucideAlignCenter:t0,LucideAlignCenterHorizontal:Fo,LucideAlignCenterVertical:Do,LucideAlignEndHorizontal:Ro,LucideAlignEndVertical:To,LucideAlignHorizontalDistributeCenter:Uo,LucideAlignHorizontalDistributeEnd:Oo,LucideAlignHorizontalDistributeStart:Zo,LucideAlignHorizontalJustifyCenter:Go,LucideAlignHorizontalJustifyEnd:Wo,LucideAlignHorizontalJustifyStart:Eo,LucideAlignHorizontalSpaceAround:Xo,LucideAlignHorizontalSpaceBetween:Ko,LucideAlignJustify:Jo,LucideAlignLeft:n0,LucideAlignRight:d0,LucideAlignStartHorizontal:Qo,LucideAlignStartVertical:Yo,LucideAlignVerticalDistributeCenter:ec,LucideAlignVerticalDistributeEnd:ac,LucideAlignVerticalDistributeStart:oc,LucideAlignVerticalJustifyCenter:cc,LucideAlignVerticalJustifyEnd:tc,LucideAlignVerticalJustifyStart:nc,LucideAlignVerticalSpaceAround:dc,LucideAlignVerticalSpaceBetween:ic,LucideAmbulance:hc,LucideAmpersand:yc,LucideAmpersands:rc,LucideAmphora:kc,LucideAnchor:pc,LucideAngry:sc,LucideAnnoyed:lc,LucideAntenna:uc,LucideAnvil:Mc,LucideAperture:vc,LucideAppWindow:_c,LucideAppWindowMac:mc,LucideApple:gc,LucideArchive:l0,LucideArchiveRestore:Lc,LucideArchiveX:xc,LucideAreaChart:Z,LucideArmchair:wc,LucideArrowBigDown:Cc,LucideArrowBigDownDash:fc,LucideArrowBigLeft:Nc,LucideArrowBigLeftDash:Ic,LucideArrowBigRight:qc,LucideArrowBigRightDash:Sc,LucideArrowBigUp:$c,LucideArrowBigUpDash:bc,LucideArrowDown:Dc,LucideArrowDown01:Ac,LucideArrowDown10:Hc,LucideArrowDownAZ:A,LucideArrowDownAz:A,LucideArrowDownCircle:a1,LucideArrowDownFromLine:zc,LucideArrowDownLeft:_0,LucideArrowDownLeftFromCircle:c1,LucideArrowDownLeftFromSquare:ze,LucideArrowDownLeftSquare:be,LucideArrowDownNarrowWide:Pc,LucideArrowDownRight:jc,LucideArrowDownRightFromCircle:t1,LucideArrowDownRightFromSquare:Pe,LucideArrowDownRightSquare:$e,LucideArrowDownSquare:Ae,LucideArrowDownToDot:Vc,LucideArrowDownToLine:Bc,LucideArrowDownUp:Fc,LucideArrowDownWideNarrow:H,LucideArrowDownZA:z,LucideArrowDownZa:z,LucideArrowLeft:g0,LucideArrowLeftCircle:o1,LucideArrowLeftFromLine:Rc,LucideArrowLeftRight:Tc,LucideArrowLeftSquare:He,LucideArrowLeftToLine:Uc,LucideArrowRight:x0,LucideArrowRightCircle:i1,LucideArrowRightFromLine:Oc,LucideArrowRightLeft:L0,LucideArrowRightSquare:Be,LucideArrowRightToLine:Zc,LucideArrowUp:Yc,LucideArrowUp01:Gc,LucideArrowUp10:Wc,LucideArrowUpAZ:P,LucideArrowUpAz:P,LucideArrowUpCircle:h1,LucideArrowUpDown:w0,LucideArrowUpFromDot:Ec,LucideArrowUpFromLine:Xc,LucideArrowUpLeft:Kc,LucideArrowUpLeftFromCircle:n1,LucideArrowUpLeftFromSquare:je,LucideArrowUpLeftSquare:Fe,LucideArrowUpNarrowWide:j,LucideArrowUpRight:f0,LucideArrowUpRightFromCircle:d1,LucideArrowUpRightFromSquare:Ve,LucideArrowUpRightSquare:De,LucideArrowUpSquare:Re,LucideArrowUpToLine:Jc,LucideArrowUpWideNarrow:Qc,LucideArrowUpZA:V,LucideArrowUpZa:V,LucideArrowsUpFromLine:et,LucideAsterisk:at,LucideAsteriskSquare:Te,LucideAtSign:ot,LucideAtom:ct,LucideAudioLines:tt,LucideAudioWaveform:nt,LucideAward:N0,LucideAxe:dt,LucideAxis3D:B,LucideAxis3d:B,LucideBaby:it,LucideBackpack:ht,LucideBadge:ft,LucideBadgeAlert:yt,LucideBadgeCent:rt,LucideBadgeCheck:F,LucideBadgeDollarSign:kt,LucideBadgeEuro:pt,LucideBadgeHelp:st,LucideBadgeIndianRupee:lt,LucideBadgeInfo:ut,LucideBadgeJapaneseYen:Mt,LucideBadgeMinus:vt,LucideBadgePercent:mt,LucideBadgePlus:_t,LucideBadgePoundSterling:gt,LucideBadgeRussianRuble:Lt,LucideBadgeSwissFranc:xt,LucideBadgeX:wt,LucideBaggageClaim:Ct,LucideBan:S0,LucideBanana:It,LucideBandage:Nt,LucideBanknote:q0,LucideBarChart:M,LucideBarChart2:v,LucideBarChart3:u,LucideBarChart4:K,LucideBarChartBig:X,LucideBarChartHorizontal:W,LucideBarChartHorizontalBig:G,LucideBarcode:St,LucideBaseline:qt,LucideBath:bt,LucideBattery:Vt,LucideBatteryCharging:$t,LucideBatteryFull:At,LucideBatteryLow:Ht,LucideBatteryMedium:zt,LucideBatteryPlus:Pt,LucideBatteryWarning:jt,LucideBeaker:Bt,LucideBean:Dt,LucideBeanOff:Ft,LucideBed:Ut,LucideBedDouble:Rt,LucideBedSingle:Tt,LucideBeef:Ot,LucideBeer:Gt,LucideBeerOff:Zt,LucideBell:$0,LucideBellDot:Wt,LucideBellElectric:Et,LucideBellMinus:Xt,LucideBellOff:Kt,LucideBellPlus:Jt,LucideBellRing:Qt,LucideBetweenHorizonalEnd:D,LucideBetweenHorizonalStart:R,LucideBetweenHorizontalEnd:D,LucideBetweenHorizontalStart:R,LucideBetweenVerticalEnd:Yt,LucideBetweenVerticalStart:en,LucideBicepsFlexed:an,LucideBike:on,LucideBinary:cn,LucideBinoculars:tn,LucideBiohazard:nn,LucideBird:dn,LucideBitcoin:hn,LucideBlend:yn,LucideBlinds:rn,LucideBlocks:kn,LucideBluetooth:un,LucideBluetoothConnected:pn,LucideBluetoothOff:sn,LucideBluetoothSearching:ln,LucideBold:i0,LucideBolt:Mn,LucideBomb:vn,LucideBone:mn,LucideBook:u0,LucideBookA:_n,LucideBookAudio:gn,LucideBookCheck:Ln,LucideBookCopy:xn,LucideBookDashed:T,LucideBookDown:wn,LucideBookHeadphones:fn,LucideBookHeart:Cn,LucideBookImage:In,LucideBookKey:Nn,LucideBookLock:Sn,LucideBookMarked:qn,LucideBookMinus:bn,LucideBookOpen:A0,LucideBookOpenCheck:$n,LucideBookOpenText:An,LucideBookPlus:Hn,LucideBookTemplate:T,LucideBookText:zn,LucideBookType:Pn,LucideBookUp:Vn,LucideBookUp2:jn,LucideBookUser:Bn,LucideBookX:Fn,LucideBookmark:On,LucideBookmarkCheck:Dn,LucideBookmarkMinus:Rn,LucideBookmarkPlus:Tn,LucideBookmarkX:Un,LucideBoomBox:Zn,LucideBot:En,LucideBotMessageSquare:Gn,LucideBotOff:Wn,LucideBox:Xn,LucideBoxSelect:Qe,LucideBoxes:H0,LucideBraces:U,LucideBrackets:Kn,LucideBrain:z0,LucideBrainCircuit:Jn,LucideBrainCog:Qn,LucideBrickWall:Yn,LucideBriefcase:j0,LucideBriefcaseBusiness:ed,LucideBriefcaseConveyorBelt:ad,LucideBriefcaseMedical:od,LucideBringToFront:cd,LucideBrush:td,LucideBug:id,LucideBugOff:nd,LucideBugPlay:dd,LucideBuilding:B0,LucideBuilding2:V0,LucideBus:yd,LucideBusFront:hd,LucideCable:kd,LucideCableCar:rd,LucideCake:sd,LucideCakeSlice:pd,LucideCalculator:F0,LucideCalendar:T0,LucideCalendar1:ld,LucideCalendarArrowDown:ud,LucideCalendarArrowUp:Md,LucideCalendarCheck:D0,LucideCalendarCheck2:vd,LucideCalendarClock:md,LucideCalendarCog:_d,LucideCalendarDays:R0,LucideCalendarFold:gd,LucideCalendarHeart:Ld,LucideCalendarMinus:wd,LucideCalendarMinus2:xd,LucideCalendarOff:fd,LucideCalendarPlus:Id,LucideCalendarPlus2:Cd,LucideCalendarRange:Nd,LucideCalendarSearch:Sd,LucideCalendarSync:qd,LucideCalendarX:$d,LucideCalendarX2:bd,LucideCamera:U0,LucideCameraOff:Ad,LucideCandlestickChart:E,LucideCandy:Pd,LucideCandyCane:Hd,LucideCandyOff:zd,LucideCannabis:jd,LucideCaptions:O,LucideCaptionsOff:Vd,LucideCar:Dd,LucideCarFront:Bd,LucideCarTaxiFront:Fd,LucideCaravan:Rd,LucideCarrot:Td,LucideCaseLower:Ud,LucideCaseSensitive:Od,LucideCaseUpper:Zd,LucideCassetteTape:Gd,LucideCast:Wd,LucideCastle:Ed,LucideCat:Xd,LucideCctv:Kd,LucideChartArea:Z,LucideChartBar:W,LucideChartBarBig:G,LucideChartBarDecreasing:Jd,LucideChartBarIncreasing:Qd,LucideChartBarStacked:Yd,LucideChartCandlestick:E,LucideChartColumn:u,LucideChartColumnBig:X,LucideChartColumnDecreasing:ei,LucideChartColumnIncreasing:K,LucideChartColumnStacked:ai,LucideChartGantt:oi,LucideChartLine:J,LucideChartNetwork:ci,LucideChartNoAxesColumn:v,LucideChartNoAxesColumnDecreasing:ti,LucideChartNoAxesColumnIncreasing:M,LucideChartNoAxesCombined:ni,LucideChartNoAxesGantt:Q,LucideChartPie:Y,LucideChartScatter:e1,LucideChartSpline:di,LucideCheck:E2,LucideCheckCheck:ii,LucideCheckCircle:_,LucideCheckCircle2:g,LucideCheckSquare:N,LucideCheckSquare2:Oe,LucideChefHat:hi,LucideCherry:yi,LucideChevronDown:O2,LucideChevronDownCircle:y1,LucideChevronDownSquare:Ze,LucideChevronFirst:ri,LucideChevronLast:ki,LucideChevronLeft:O0,LucideChevronLeftCircle:r1,LucideChevronLeftSquare:Ge,LucideChevronRight:Z0,LucideChevronRightCircle:k1,LucideChevronRightSquare:We,LucideChevronUp:Z2,LucideChevronUpCircle:p1,LucideChevronUpSquare:Ee,LucideChevronsDown:si,LucideChevronsDownUp:pi,LucideChevronsLeft:Mi,LucideChevronsLeftRight:ui,LucideChevronsLeftRightEllipsis:li,LucideChevronsRight:mi,LucideChevronsRightLeft:vi,LucideChevronsUp:_i,LucideChevronsUpDown:G2,LucideChrome:gi,LucideChurch:Li,LucideCigarette:wi,LucideCigaretteOff:xi,LucideCircle:G0,LucideCircleAlert:m,LucideCircleArrowDown:a1,LucideCircleArrowLeft:o1,LucideCircleArrowOutDownLeft:c1,LucideCircleArrowOutDownRight:t1,LucideCircleArrowOutUpLeft:n1,LucideCircleArrowOutUpRight:d1,LucideCircleArrowRight:i1,LucideCircleArrowUp:h1,LucideCircleCheck:g,LucideCircleCheckBig:_,LucideCircleChevronDown:y1,LucideCircleChevronLeft:r1,LucideCircleChevronRight:k1,LucideCircleChevronUp:p1,LucideCircleDashed:fi,LucideCircleDivide:s1,LucideCircleDollarSign:Ci,LucideCircleDot:Ni,LucideCircleDotDashed:Ii,LucideCircleEllipsis:Si,LucideCircleEqual:qi,LucideCircleFadingArrowUp:bi,LucideCircleFadingPlus:$i,LucideCircleGauge:l1,LucideCircleHelp:L,LucideCircleMinus:u1,LucideCircleOff:Ai,LucideCircleParking:v1,LucideCircleParkingOff:M1,LucideCirclePause:m1,LucideCirclePercent:_1,LucideCirclePlay:g1,LucideCirclePlus:L1,LucideCirclePower:x1,LucideCircleSlash:Hi,LucideCircleSlash2:w1,LucideCircleSlashed:w1,LucideCircleSmall:zi,LucideCircleStop:f1,LucideCircleUser:I1,LucideCircleUserRound:C1,LucideCircleX:x,LucideCircuitBoard:Pi,LucideCitrus:ji,LucideClapperboard:Vi,LucideClipboard:Zi,LucideClipboardCheck:Bi,LucideClipboardCopy:Fi,LucideClipboardEdit:S1,LucideClipboardList:W0,LucideClipboardMinus:Di,LucideClipboardPaste:Ri,LucideClipboardPen:S1,LucideClipboardPenLine:N1,LucideClipboardPlus:Ti,LucideClipboardSignature:N1,LucideClipboardType:Ui,LucideClipboardX:Oi,LucideClock:E0,LucideClock1:Gi,LucideClock10:Wi,LucideClock11:Ei,LucideClock12:Xi,LucideClock2:Ki,LucideClock3:Ji,LucideClock4:Qi,LucideClock5:Yi,LucideClock6:eh,LucideClock7:ah,LucideClock8:oh,LucideClock9:ch,LucideClockAlert:th,LucideClockArrowDown:nh,LucideClockArrowUp:dh,LucideCloud:Lh,LucideCloudAlert:ih,LucideCloudCog:hh,LucideCloudDownload:q1,LucideCloudDrizzle:yh,LucideCloudFog:rh,LucideCloudHail:kh,LucideCloudLightning:ph,LucideCloudMoon:lh,LucideCloudMoonRain:sh,LucideCloudOff:uh,LucideCloudRain:vh,LucideCloudRainWind:Mh,LucideCloudSnow:mh,LucideCloudSun:gh,LucideCloudSunRain:_h,LucideCloudUpload:b1,LucideCloudy:xh,LucideClover:wh,LucideClub:fh,LucideCode:X0,LucideCode2:$1,LucideCodeSquare:Xe,LucideCodeXml:$1,LucideCodepen:Ch,LucideCodesandbox:Ih,LucideCoffee:Nh,LucideCog:Sh,LucideCoins:K0,LucideColumns:A1,LucideColumns2:A1,LucideColumns3:H1,LucideColumns4:qh,LucideCombine:bh,LucideCommand:$h,LucideCompass:Ah,LucideComponent:Hh,LucideComputer:zh,LucideConciergeBell:Ph,LucideCone:jh,LucideConstruction:Vh,LucideContact:Bh,LucideContact2:z1,LucideContactRound:z1,LucideContainer:Fh,LucideContrast:Dh,LucideCookie:Rh,LucideCookingPot:Th,LucideCopy:J0,LucideCopyCheck:Uh,LucideCopyMinus:Oh,LucideCopyPlus:Zh,LucideCopySlash:Gh,LucideCopyX:Wh,LucideCopyleft:Eh,LucideCopyright:Xh,LucideCornerDownLeft:Kh,LucideCornerDownRight:Jh,LucideCornerLeftDown:Qh,LucideCornerLeftUp:Yh,LucideCornerRightDown:ey,LucideCornerRightUp:ay,LucideCornerUpLeft:oy,LucideCornerUpRight:cy,LucideCpu:ty,LucideCreativeCommons:ny,LucideCreditCard:Q0,LucideCroissant:dy,LucideCrop:iy,LucideCross:hy,LucideCrosshair:Y0,LucideCrown:ea,LucideCuboid:yy,LucideCupSoda:ry,LucideCurlyBraces:U,LucideCurrency:ky,LucideCylinder:py,LucideDam:sy,LucideDatabase:My,LucideDatabaseBackup:ly,LucideDatabaseZap:uy,LucideDelete:vy,LucideDessert:my,LucideDiameter:_y,LucideDiamond:xy,LucideDiamondMinus:gy,LucideDiamondPercent:P1,LucideDiamondPlus:Ly,LucideDice1:wy,LucideDice2:fy,LucideDice3:Cy,LucideDice4:Iy,LucideDice5:Ny,LucideDice6:Sy,LucideDices:qy,LucideDiff:by,LucideDisc:zy,LucideDisc2:$y,LucideDisc3:Ay,LucideDiscAlbum:Hy,LucideDivide:Py,LucideDivideCircle:s1,LucideDivideSquare:Ye,LucideDna:Vy,LucideDnaOff:jy,LucideDock:By,LucideDog:Fy,LucideDollarSign:aa,LucideDonut:Dy,LucideDoorClosed:Ry,LucideDoorOpen:Ty,LucideDot:Uy,LucideDotSquare:e2,LucideDownload:oa,LucideDownloadCloud:q1,LucideDraftingCompass:Oy,LucideDrama:Zy,LucideDribbble:Gy,LucideDrill:Wy,LucideDroplet:Xy,LucideDropletOff:Ey,LucideDroplets:Ky,LucideDrum:Jy,LucideDrumstick:Qy,LucideDumbbell:Yy,LucideEar:ar,LucideEarOff:er,LucideEarth:j1,LucideEarthLock:or,LucideEclipse:cr,LucideEdit:n,LucideEdit2:_e,LucideEdit3:w,LucideEgg:dr,LucideEggFried:tr,LucideEggOff:nr,LucideEllipsis:B1,LucideEllipsisVertical:V1,LucideEqual:yr,LucideEqualApproximately:ir,LucideEqualNot:hr,LucideEqualSquare:a2,LucideEraser:rr,LucideEthernetPort:kr,LucideEuro:pr,LucideExpand:sr,LucideExternalLink:ca,LucideEye:na,LucideEyeClosed:lr,LucideEyeOff:ta,LucideFacebook:da,LucideFactory:ur,LucideFan:Mr,LucideFastForward:vr,LucideFeather:mr,LucideFence:_r,LucideFerrisWheel:gr,LucideFigma:Lr,LucideFile:l4,LucideFileArchive:xr,LucideFileAudio:fr,LucideFileAudio2:wr,LucideFileAxis3D:F1,LucideFileAxis3d:F1,LucideFileBadge:Ir,LucideFileBadge2:Cr,LucideFileBarChart:D1,LucideFileBarChart2:R1,LucideFileBox:Nr,LucideFileChartColumn:R1,LucideFileChartColumnIncreasing:D1,LucideFileChartLine:T1,LucideFileChartPie:U1,LucideFileCheck:qr,LucideFileCheck2:Sr,LucideFileClock:br,LucideFileCode:Ar,LucideFileCode2:$r,LucideFileCog:O1,LucideFileCog2:O1,LucideFileDiff:Hr,LucideFileDigit:zr,LucideFileDown:ha,LucideFileEdit:G1,LucideFileHeart:Pr,LucideFileImage:jr,LucideFileInput:Vr,LucideFileJson:Fr,LucideFileJson2:Br,LucideFileKey:Rr,LucideFileKey2:Dr,LucideFileLineChart:T1,LucideFileLock:Ur,LucideFileLock2:Tr,LucideFileMinus:Zr,LucideFileMinus2:Or,LucideFileMusic:Gr,LucideFileOutput:Wr,LucideFilePen:G1,LucideFilePenLine:Z1,LucideFilePieChart:U1,LucideFilePlus:Xr,LucideFilePlus2:Er,LucideFileQuestion:Kr,LucideFileScan:Jr,LucideFileSearch:Yr,LucideFileSearch2:Qr,LucideFileSignature:Z1,LucideFileSliders:e4,LucideFileSpreadsheet:ya,LucideFileStack:a4,LucideFileSymlink:o4,LucideFileTerminal:c4,LucideFileText:X2,LucideFileType:n4,LucideFileType2:t4,LucideFileUp:ra,LucideFileUser:d4,LucideFileVideo:h4,LucideFileVideo2:i4,LucideFileVolume:r4,LucideFileVolume2:y4,LucideFileWarning:k4,LucideFileX:s4,LucideFileX2:p4,LucideFiles:u4,LucideFilm:M4,LucideFilter:ka,LucideFilterX:v4,LucideFingerprint:pa,LucideFireExtinguisher:m4,LucideFish:L4,LucideFishOff:_4,LucideFishSymbol:g4,LucideFlag:C4,LucideFlagOff:x4,LucideFlagTriangleLeft:w4,LucideFlagTriangleRight:f4,LucideFlame:N4,LucideFlameKindling:I4,LucideFlashlight:q4,LucideFlashlightOff:S4,LucideFlaskConical:$4,LucideFlaskConicalOff:b4,LucideFlaskRound:A4,LucideFlipHorizontal:z4,LucideFlipHorizontal2:H4,LucideFlipVertical:j4,LucideFlipVertical2:P4,LucideFlower:B4,LucideFlower2:V4,LucideFocus:F4,LucideFoldHorizontal:D4,LucideFoldVertical:R4,LucideFolder:P0,LucideFolderArchive:T4,LucideFolderCheck:U4,LucideFolderClock:O4,LucideFolderClosed:Z4,LucideFolderCode:G4,LucideFolderCog:W1,LucideFolderCog2:W1,LucideFolderDot:W4,LucideFolderDown:E4,LucideFolderEdit:E1,LucideFolderGit:X4,LucideFolderGit2:sa,LucideFolderHeart:K4,LucideFolderInput:J4,LucideFolderKanban:Q4,LucideFolderKey:Y4,LucideFolderLock:ek,LucideFolderMinus:ak,LucideFolderOpen:la,LucideFolderOpenDot:ok,LucideFolderOutput:ck,LucideFolderPen:E1,LucideFolderPlus:tk,LucideFolderRoot:nk,LucideFolderSearch:ik,LucideFolderSearch2:dk,LucideFolderSymlink:hk,LucideFolderSync:yk,LucideFolderTree:rk,LucideFolderUp:kk,LucideFolderX:pk,LucideFolders:sk,LucideFootprints:lk,LucideForkKnife:D2,LucideForkKnifeCrossed:F2,LucideForklift:uk,LucideFormInput:Le,LucideForward:Mk,LucideFrame:vk,LucideFramer:mk,LucideFrown:_k,LucideFuel:gk,LucideFullscreen:Lk,LucideFunctionSquare:o2,LucideGalleryHorizontal:wk,LucideGalleryHorizontalEnd:xk,LucideGalleryThumbnails:fk,LucideGalleryVertical:Ik,LucideGalleryVerticalEnd:Ck,LucideGamepad:Sk,LucideGamepad2:Nk,LucideGanttChart:Q,LucideGanttChartSquare:i,LucideGauge:qk,LucideGaugeCircle:l1,LucideGavel:bk,LucideGem:$k,LucideGhost:Ak,LucideGift:ua,LucideGitBranch:Ma,LucideGitBranchPlus:Hk,LucideGitCommit:X1,LucideGitCommitHorizontal:X1,LucideGitCommitVertical:zk,LucideGitCompare:jk,LucideGitCompareArrows:Pk,LucideGitFork:Vk,LucideGitGraph:Bk,LucideGitMerge:Fk,LucideGitPullRequest:Zk,LucideGitPullRequestArrow:Dk,LucideGitPullRequestClosed:Rk,LucideGitPullRequestCreate:Uk,LucideGitPullRequestCreateArrow:Tk,LucideGitPullRequestDraft:Ok,LucideGithub:Gk,LucideGitlab:Wk,LucideGlassWater:Ek,LucideGlasses:Xk,LucideGlobe:va,LucideGlobe2:j1,LucideGlobeLock:Kk,LucideGoal:Jk,LucideGrab:Qk,LucideGraduationCap:M0,LucideGrape:Yk,LucideGrid:d,LucideGrid2X2:Y1,LucideGrid2X2Check:K1,LucideGrid2X2Plus:J1,LucideGrid2X2X:Q1,LucideGrid2x2:Y1,LucideGrid2x2Check:K1,LucideGrid2x2Plus:J1,LucideGrid2x2X:Q1,LucideGrid3X3:d,LucideGrid3x3:d,LucideGrip:ap,LucideGripHorizontal:ep,LucideGripVertical:ma,LucideGroup:op,LucideGuitar:cp,LucideHam:tp,LucideHammer:np,LucideHand:rp,LucideHandCoins:dp,LucideHandHeart:ip,LucideHandHelping:ee,LucideHandMetal:hp,LucideHandPlatter:yp,LucideHandshake:kp,LucideHardDrive:_a,LucideHardDriveDownload:pp,LucideHardDriveUpload:sp,LucideHardHat:lp,LucideHash:ga,LucideHaze:up,LucideHdmiPort:Mp,LucideHeading:wp,LucideHeading1:vp,LucideHeading2:mp,LucideHeading3:_p,LucideHeading4:gp,LucideHeading5:Lp,LucideHeading6:xp,LucideHeadphoneOff:fp,LucideHeadphones:Cp,LucideHeadset:Ip,LucideHeart:La,LucideHeartCrack:Np,LucideHeartHandshake:Sp,LucideHeartOff:qp,LucideHeartPulse:bp,LucideHeater:$p,LucideHelpCircle:L,LucideHelpingHand:ee,LucideHexagon:Ap,LucideHighlighter:Hp,LucideHistory:C0,LucideHome:f,LucideHop:Pp,LucideHopOff:zp,LucideHospital:jp,LucideHotel:Vp,LucideHourglass:Bp,LucideHouse:f,LucideHousePlug:Fp,LucideHousePlus:Dp,LucideHouseWifi:Rp,LucideIceCream:oe,LucideIceCream2:ae,LucideIceCreamBowl:ae,LucideIceCreamCone:oe,LucideIdCard:v0,LucideImage:K2,LucideImageDown:Tp,LucideImageMinus:Up,LucideImageOff:Op,LucideImagePlay:Zp,LucideImagePlus:Gp,LucideImageUp:Wp,LucideImageUpscale:Ep,LucideImages:Xp,LucideImport:Kp,LucideInbox:Jp,LucideIndent:te,LucideIndentDecrease:ce,LucideIndentIncrease:te,LucideIndianRupee:b0,LucideInfinity:Qp,LucideInfo:wa,LucideInspect:h2,LucideInspectionPanel:Yp,LucideInstagram:ia,LucideItalic:h0,LucideIterationCcw:e5,LucideIterationCw:a5,LucideJapaneseYen:o5,LucideJoystick:c5,LucideKanban:t5,LucideKanbanSquare:c2,LucideKanbanSquareDashed:Ke,LucideKey:d5,LucideKeyRound:I0,LucideKeySquare:n5,LucideKeyboard:y5,LucideKeyboardMusic:i5,LucideKeyboardOff:h5,LucideLamp:u5,LucideLampCeiling:r5,LucideLampDesk:k5,LucideLampFloor:p5,LucideLampWallDown:s5,LucideLampWallUp:l5,LucideLandPlot:M5,LucideLandmark:v5,LucideLanguages:m5,LucideLaptop:g5,LucideLaptop2:ne,LucideLaptopMinimal:ne,LucideLaptopMinimalCheck:_5,LucideLasso:x5,LucideLassoSelect:L5,LucideLaugh:w5,LucideLayers:C,LucideLayers2:f5,LucideLayers3:C,LucideLayout:p,LucideLayoutDashboard:C5,LucideLayoutGrid:fa,LucideLayoutList:Ca,LucideLayoutPanelLeft:I5,LucideLayoutPanelTop:N5,LucideLayoutTemplate:S5,LucideLeaf:q5,LucideLeafyGreen:b5,LucideLectern:$5,LucideLetterText:A5,LucideLibrary:z5,LucideLibraryBig:H5,LucideLibrarySquare:t2,LucideLifeBuoy:P5,LucideLigature:j5,LucideLightbulb:Ia,LucideLightbulbOff:V5,LucideLineChart:J,LucideLink:Sa,LucideLink2:Na,LucideLink2Off:B5,LucideLinkedin:qa,LucideList:$a,LucideListCheck:F5,LucideListChecks:D5,LucideListCollapse:R5,LucideListEnd:T5,LucideListFilter:O5,LucideListFilterPlus:U5,LucideListMinus:Z5,LucideListMusic:G5,LucideListOrdered:y0,LucideListPlus:W5,LucideListRestart:E5,LucideListStart:X5,LucideListTodo:K5,LucideListTree:J5,LucideListVideo:Q5,LucideListX:Y5,LucideLoader:as,LucideLoader2:I,LucideLoaderCircle:I,LucideLoaderPinwheel:es,LucideLocate:cs,LucideLocateFixed:Aa,LucideLocateOff:os,LucideLock:Ha,LucideLockKeyhole:ts,LucideLockKeyholeOpen:de,LucideLockOpen:s,LucideLogIn:za,LucideLogOut:Pa,LucideLogs:ns,LucideLollipop:ds,LucideLuggage:is,LucideMSquare:n2,LucideMagnet:hs,LucideMail:ja,LucideMailCheck:ys,LucideMailMinus:rs,LucideMailOpen:ks,LucideMailPlus:ps,LucideMailQuestion:ss,LucideMailSearch:ls,LucideMailWarning:us,LucideMailX:Ms,LucideMailbox:vs,LucideMails:ms,LucideMap:$s,LucideMapPin:Va,LucideMapPinCheck:gs,LucideMapPinCheckInside:_s,LucideMapPinHouse:Ls,LucideMapPinMinus:ws,LucideMapPinMinusInside:xs,LucideMapPinOff:fs,LucideMapPinPlus:Is,LucideMapPinPlusInside:Cs,LucideMapPinX:Ss,LucideMapPinXInside:Ns,LucideMapPinned:qs,LucideMapPlus:bs,LucideMars:Hs,LucideMarsStroke:As,LucideMartini:zs,LucideMaximize:js,LucideMaximize2:Ps,LucideMedal:Vs,LucideMegaphone:Fs,LucideMegaphoneOff:Bs,LucideMeh:Ds,LucideMemoryStick:Rs,LucideMenu:Ba,LucideMenuSquare:d2,LucideMerge:Ts,LucideMessageCircle:Ys,LucideMessageCircleCode:Us,LucideMessageCircleDashed:Os,LucideMessageCircleHeart:Zs,LucideMessageCircleMore:Gs,LucideMessageCircleOff:Ws,LucideMessageCirclePlus:Es,LucideMessageCircleQuestion:Xs,LucideMessageCircleReply:Ks,LucideMessageCircleWarning:Js,LucideMessageCircleX:Qs,LucideMessageSquare:Da,LucideMessageSquareCode:e3,LucideMessageSquareDashed:a3,LucideMessageSquareDiff:o3,LucideMessageSquareDot:c3,LucideMessageSquareHeart:t3,LucideMessageSquareLock:n3,LucideMessageSquareMore:d3,LucideMessageSquareOff:i3,LucideMessageSquarePlus:h3,LucideMessageSquareQuote:y3,LucideMessageSquareReply:r3,LucideMessageSquareShare:k3,LucideMessageSquareText:p3,LucideMessageSquareWarning:Fa,LucideMessageSquareX:s3,LucideMessagesSquare:l3,LucideMic:M3,LucideMic2:ie,LucideMicOff:u3,LucideMicVocal:ie,LucideMicrochip:v3,LucideMicroscope:m3,LucideMicrowave:_3,LucideMilestone:g3,LucideMilk:x3,LucideMilkOff:L3,LucideMinimize:f3,LucideMinimize2:w3,LucideMinus:C3,LucideMinusCircle:u1,LucideMinusSquare:i2,LucideMonitor:Ra,LucideMonitorCheck:I3,LucideMonitorCog:N3,LucideMonitorDot:S3,LucideMonitorDown:q3,LucideMonitorOff:b3,LucideMonitorPause:$3,LucideMonitorPlay:A3,LucideMonitorSmartphone:H3,LucideMonitorSpeaker:z3,LucideMonitorStop:P3,LucideMonitorUp:j3,LucideMonitorX:V3,LucideMoon:J2,LucideMoonStar:B3,LucideMoreHorizontal:B1,LucideMoreVertical:V1,LucideMountain:D3,LucideMountainSnow:F3,LucideMouse:G3,LucideMouseOff:R3,LucideMousePointer:Z3,LucideMousePointer2:T3,LucideMousePointerBan:U3,LucideMousePointerClick:O3,LucideMousePointerSquareDashed:Je,LucideMove:nl,LucideMove3D:he,LucideMove3d:he,LucideMoveDiagonal:E3,LucideMoveDiagonal2:W3,LucideMoveDown:J3,LucideMoveDownLeft:X3,LucideMoveDownRight:K3,LucideMoveHorizontal:Q3,LucideMoveLeft:Y3,LucideMoveRight:el,LucideMoveUp:cl,LucideMoveUpLeft:al,LucideMoveUpRight:ol,LucideMoveVertical:tl,LucideMusic:yl,LucideMusic2:dl,LucideMusic3:il,LucideMusic4:hl,LucideNavigation:sl,LucideNavigation2:kl,LucideNavigation2Off:rl,LucideNavigationOff:pl,LucideNetwork:ll,LucideNewspaper:ul,LucideNfc:Ml,LucideNonBinary:vl,LucideNotebook:Ll,LucideNotebookPen:ml,LucideNotebookTabs:_l,LucideNotebookText:gl,LucideNotepadText:wl,LucideNotepadTextDashed:xl,LucideNut:Cl,LucideNutOff:fl,LucideOctagon:Nl,LucideOctagonAlert:ye,LucideOctagonMinus:Il,LucideOctagonPause:re,LucideOctagonX:ke,LucideOmega:Sl,LucideOption:ql,LucideOrbit:bl,LucideOrigami:$l,LucideOutdent:ce,LucidePackage:Ta,LucidePackage2:Al,LucidePackageCheck:Hl,LucidePackageMinus:zl,LucidePackageOpen:Pl,LucidePackagePlus:jl,LucidePackageSearch:Vl,LucidePackageX:Bl,LucidePaintBucket:Fl,LucidePaintRoller:Dl,LucidePaintbrush:Rl,LucidePaintbrush2:pe,LucidePaintbrushVertical:pe,LucidePalette:Q2,LucidePalmtree:q2,LucidePanelBottom:Ol,LucidePanelBottomClose:Tl,LucidePanelBottomDashed:se,LucidePanelBottomInactive:se,LucidePanelBottomOpen:Ul,LucidePanelLeft:k,LucidePanelLeftClose:le,LucidePanelLeftDashed:ue,LucidePanelLeftInactive:ue,LucidePanelLeftOpen:Me,LucidePanelRight:Wl,LucidePanelRightClose:Zl,LucidePanelRightDashed:ve,LucidePanelRightInactive:ve,LucidePanelRightOpen:Gl,LucidePanelTop:Kl,LucidePanelTopClose:El,LucidePanelTopDashed:me,LucidePanelTopInactive:me,LucidePanelTopOpen:Xl,LucidePanelsLeftBottom:Jl,LucidePanelsLeftRight:H1,LucidePanelsRightBottom:Ql,LucidePanelsTopBottom:fe,LucidePanelsTopLeft:p,LucidePaperclip:Yl,LucideParentheses:e6,LucideParkingCircle:v1,LucideParkingCircleOff:M1,LucideParkingMeter:a6,LucideParkingSquare:r2,LucideParkingSquareOff:y2,LucidePartyPopper:o6,LucidePause:c6,LucidePauseCircle:m1,LucidePauseOctagon:re,LucidePawPrint:t6,LucidePcCase:n6,LucidePen:_e,LucidePenBox:n,LucidePenLine:w,LucidePenOff:d6,LucidePenSquare:n,LucidePenTool:i6,LucidePencil:k6,LucidePencilLine:h6,LucidePencilOff:y6,LucidePencilRuler:r6,LucidePentagon:p6,LucidePercent:Ua,LucidePercentCircle:_1,LucidePercentDiamond:P1,LucidePercentSquare:k2,LucidePersonStanding:s6,LucidePhilippinePeso:l6,LucidePhone:Oa,LucidePhoneCall:u6,LucidePhoneForwarded:M6,LucidePhoneIncoming:v6,LucidePhoneMissed:m6,LucidePhoneOff:_6,LucidePhoneOutgoing:g6,LucidePi:L6,LucidePiSquare:p2,LucidePiano:x6,LucidePickaxe:w6,LucidePictureInPicture:C6,LucidePictureInPicture2:f6,LucidePieChart:Y,LucidePiggyBank:I6,LucidePilcrow:q6,LucidePilcrowLeft:N6,LucidePilcrowRight:S6,LucidePilcrowSquare:s2,LucidePill:$6,LucidePillBottle:b6,LucidePin:H6,LucidePinOff:A6,LucidePipette:z6,LucidePizza:P6,LucidePlane:Za,LucidePlaneLanding:j6,LucidePlaneTakeoff:V6,LucidePlay:Ga,LucidePlayCircle:g1,LucidePlaySquare:l2,LucidePlug:F6,LucidePlug2:B6,LucidePlugZap:ge,LucidePlugZap2:ge,LucidePlus:Y2,LucidePlusCircle:L1,LucidePlusSquare:u2,LucidePocket:R6,LucidePocketKnife:D6,LucidePodcast:T6,LucidePointer:O6,LucidePointerOff:U6,LucidePopcorn:Z6,LucidePopsicle:G6,LucidePoundSterling:W6,LucidePower:X6,LucidePowerCircle:x1,LucidePowerOff:E6,LucidePowerSquare:M2,LucidePresentation:K6,LucidePrinter:Q6,LucidePrinterCheck:J6,LucideProjector:Y6,LucideProportions:e8,LucidePuzzle:a8,LucidePyramid:o8,LucideQrCode:Wa,LucideQuote:Ea,LucideRabbit:c8,LucideRadar:t8,LucideRadiation:n8,LucideRadical:d8,LucideRadio:Xa,LucideRadioReceiver:i8,LucideRadioTower:h8,LucideRadius:y8,LucideRailSymbol:r8,LucideRainbow:k8,LucideRat:p8,LucideRatio:s8,LucideReceipt:x8,LucideReceiptCent:l8,LucideReceiptEuro:u8,LucideReceiptIndianRupee:M8,LucideReceiptJapaneseYen:v8,LucideReceiptPoundSterling:m8,LucideReceiptRussianRuble:_8,LucideReceiptSwissFranc:g8,LucideReceiptText:L8,LucideRectangleEllipsis:Le,LucideRectangleHorizontal:w8,LucideRectangleVertical:f8,LucideRecycle:C8,LucideRedo:r0,LucideRedo2:I8,LucideRedoDot:N8,LucideRefreshCcw:q8,LucideRefreshCcwDot:S8,LucideRefreshCw:Ka,LucideRefreshCwOff:b8,LucideRefrigerator:$8,LucideRegex:A8,LucideRemoveFormatting:H8,LucideRepeat:j8,LucideRepeat1:z8,LucideRepeat2:P8,LucideReplace:B8,LucideReplaceAll:V8,LucideReply:D8,LucideReplyAll:F8,LucideRewind:R8,LucideRibbon:T8,LucideRocket:U8,LucideRockingChair:O8,LucideRollerCoaster:Z8,LucideRotate3D:xe,LucideRotate3d:xe,LucideRotateCcw:W8,LucideRotateCcwSquare:G8,LucideRotateCw:X8,LucideRotateCwSquare:E8,LucideRoute:J8,LucideRouteOff:K8,LucideRouter:Q8,LucideRows:we,LucideRows2:we,LucideRows3:fe,LucideRows4:Y8,LucideRss:e7,LucideRuler:Ja,LucideRussianRuble:a7,LucideSailboat:o7,LucideSalad:c7,LucideSandwich:t7,LucideSatellite:d7,LucideSatelliteDish:n7,LucideSave:e0,LucideSaveAll:i7,LucideSaveOff:h7,LucideScale:m0,LucideScale3D:Ce,LucideScale3d:Ce,LucideScaling:y7,LucideScan:m7,LucideScanBarcode:r7,LucideScanEye:k7,LucideScanFace:p7,LucideScanHeart:s7,LucideScanLine:l7,LucideScanQrCode:u7,LucideScanSearch:M7,LucideScanText:v7,LucideScatterChart:e1,LucideSchool:_7,LucideSchool2:$2,LucideScissors:L7,LucideScissorsLineDashed:g7,LucideScissorsSquare:v2,LucideScissorsSquareDashedBottom:Ue,LucideScreenShare:w7,LucideScreenShareOff:x7,LucideScroll:C7,LucideScrollText:f7,LucideSearch:a0,LucideSearchCheck:I7,LucideSearchCode:N7,LucideSearchSlash:S7,LucideSearchX:q7,LucideSection:b7,LucideSend:Qa,LucideSendHorizonal:Ie,LucideSendHorizontal:Ie,LucideSendToBack:$7,LucideSeparatorHorizontal:A7,LucideSeparatorVertical:H7,LucideServer:Ya,LucideServerCog:z7,LucideServerCrash:P7,LucideServerOff:j7,LucideSettings:eo,LucideSettings2:V7,LucideShapes:B7,LucideShare:F7,LucideShare2:ao,LucideSheet:D7,LucideShell:R7,LucideShield:xa,LucideShieldAlert:T7,LucideShieldBan:U7,LucideShieldCheck:co,LucideShieldClose:Ne,LucideShieldEllipsis:O7,LucideShieldHalf:Z7,LucideShieldMinus:G7,LucideShieldOff:W7,LucideShieldPlus:E7,LucideShieldQuestion:X7,LucideShieldX:Ne,LucideShip:J7,LucideShipWheel:K7,LucideShirt:Q7,LucideShoppingBag:Y7,LucideShoppingBasket:eu,LucideShoppingCart:au,LucideShovel:ou,LucideShowerHead:cu,LucideShrink:tu,LucideShrub:nu,LucideShuffle:du,LucideSidebar:k,LucideSidebarClose:le,LucideSidebarOpen:Me,LucideSigma:iu,LucideSigmaSquare:m2,LucideSignal:pu,LucideSignalHigh:hu,LucideSignalLow:yu,LucideSignalMedium:ru,LucideSignalZero:ku,LucideSignature:su,LucideSignpost:uu,LucideSignpostBig:lu,LucideSiren:Mu,LucideSkipBack:vu,LucideSkipForward:mu,LucideSkull:_u,LucideSlack:gu,LucideSlash:Lu,LucideSlashSquare:_2,LucideSlice:xu,LucideSliders:Se,LucideSlidersHorizontal:wu,LucideSlidersVertical:Se,LucideSmartphone:to,LucideSmartphoneCharging:fu,LucideSmartphoneNfc:Cu,LucideSmile:Nu,LucideSmilePlus:Iu,LucideSnail:Su,LucideSnowflake:qu,LucideSofa:bu,LucideSortAsc:j,LucideSortDesc:H,LucideSoup:$u,LucideSpace:Au,LucideSpade:Hu,LucideSparkle:zu,LucideSparkles:l,LucideSpeaker:Pu,LucideSpeech:ju,LucideSpellCheck:Bu,LucideSpellCheck2:Vu,LucideSpline:Fu,LucideSplit:Du,LucideSplitSquareHorizontal:g2,LucideSplitSquareVertical:L2,LucideSprayCan:Ru,LucideSprout:Tu,LucideSquare:Eu,LucideSquareActivity:qe,LucideSquareArrowDown:Ae,LucideSquareArrowDownLeft:be,LucideSquareArrowDownRight:$e,LucideSquareArrowLeft:He,LucideSquareArrowOutDownLeft:ze,LucideSquareArrowOutDownRight:Pe,LucideSquareArrowOutUpLeft:je,LucideSquareArrowOutUpRight:Ve,LucideSquareArrowRight:Be,LucideSquareArrowUp:Re,LucideSquareArrowUpLeft:Fe,LucideSquareArrowUpRight:De,LucideSquareAsterisk:Te,LucideSquareBottomDashedScissors:Ue,LucideSquareChartGantt:i,LucideSquareCheck:Oe,LucideSquareCheckBig:N,LucideSquareChevronDown:Ze,LucideSquareChevronLeft:Ge,LucideSquareChevronRight:We,LucideSquareChevronUp:Ee,LucideSquareCode:Xe,LucideSquareDashed:Qe,LucideSquareDashedBottom:Ou,LucideSquareDashedBottomCode:Uu,LucideSquareDashedKanban:Ke,LucideSquareDashedMousePointer:Je,LucideSquareDivide:Ye,LucideSquareDot:e2,LucideSquareEqual:a2,LucideSquareFunction:o2,LucideSquareGanttChart:i,LucideSquareKanban:c2,LucideSquareLibrary:t2,LucideSquareM:n2,LucideSquareMenu:d2,LucideSquareMinus:i2,LucideSquareMousePointer:h2,LucideSquareParking:r2,LucideSquareParkingOff:y2,LucideSquarePen:n,LucideSquarePercent:k2,LucideSquarePi:p2,LucideSquarePilcrow:s2,LucideSquarePlay:l2,LucideSquarePlus:u2,LucideSquarePower:M2,LucideSquareRadical:Zu,LucideSquareScissors:v2,LucideSquareSigma:m2,LucideSquareSlash:_2,LucideSquareSplitHorizontal:g2,LucideSquareSplitVertical:L2,LucideSquareSquare:Gu,LucideSquareStack:Wu,LucideSquareTerminal:x2,LucideSquareUser:f2,LucideSquareUserRound:w2,LucideSquareX:C2,LucideSquircle:Xu,LucideSquirrel:Ku,LucideStamp:Ju,LucideStar:no,LucideStarHalf:Qu,LucideStarOff:Yu,LucideStars:l,LucideStepBack:eM,LucideStepForward:aM,LucideStethoscope:oM,LucideSticker:cM,LucideStickyNote:tM,LucideStopCircle:f1,LucideStore:nM,LucideStretchHorizontal:dM,LucideStretchVertical:iM,LucideStrikethrough:k0,LucideSubscript:hM,LucideSubtitles:O,LucideSun:io,LucideSunDim:yM,LucideSunMedium:rM,LucideSunMoon:kM,LucideSunSnow:pM,LucideSunrise:sM,LucideSunset:lM,LucideSuperscript:uM,LucideSwatchBook:MM,LucideSwissFranc:vM,LucideSwitchCamera:mM,LucideSword:_M,LucideSwords:gM,LucideSyringe:LM,LucideTable:qM,LucideTable2:xM,LucideTableCellsMerge:wM,LucideTableCellsSplit:fM,LucideTableColumnsSplit:CM,LucideTableOfContents:IM,LucideTableProperties:NM,LucideTableRowsSplit:SM,LucideTablet:$M,LucideTabletSmartphone:bM,LucideTablets:AM,LucideTag:ho,LucideTags:HM,LucideTally1:zM,LucideTally2:PM,LucideTally3:jM,LucideTally4:VM,LucideTally5:BM,LucideTangent:FM,LucideTarget:yo,LucideTelescope:DM,LucideTent:TM,LucideTentTree:RM,LucideTerminal:UM,LucideTerminalSquare:x2,LucideTestTube:OM,LucideTestTube2:I2,LucideTestTubeDiagonal:I2,LucideTestTubes:ZM,LucideText:KM,LucideTextCursor:WM,LucideTextCursorInput:GM,LucideTextQuote:EM,LucideTextSearch:XM,LucideTextSelect:N2,LucideTextSelection:N2,LucideTheater:JM,LucideThermometer:e9,LucideThermometerSnowflake:QM,LucideThermometerSun:YM,LucideThumbsDown:ro,LucideThumbsUp:ko,LucideTicket:po,LucideTicketCheck:a9,LucideTicketMinus:o9,LucideTicketPercent:c9,LucideTicketPlus:t9,LucideTicketSlash:n9,LucideTicketX:d9,LucideTickets:h9,LucideTicketsPlane:i9,LucideTimer:so,LucideTimerOff:y9,LucideTimerReset:r9,LucideToggleLeft:k9,LucideToggleRight:p9,LucideToilet:s9,LucideTornado:l9,LucideTorus:u9,LucideTouchpad:v9,LucideTouchpadOff:M9,LucideTowerControl:m9,LucideToyBrick:_9,LucideTractor:g9,LucideTrafficCone:L9,LucideTrain:S2,LucideTrainFront:w9,LucideTrainFrontTunnel:x9,LucideTrainTrack:f9,LucideTramFront:S2,LucideTransgender:C9,LucideTrash:uo,LucideTrash2:lo,LucideTreeDeciduous:I9,LucideTreePalm:q2,LucideTreePine:N9,LucideTrees:S9,LucideTrello:q9,LucideTrendingDown:Mo,LucideTrendingUp:vo,LucideTrendingUpDown:b9,LucideTriangle:H9,LucideTriangleAlert:S,LucideTriangleDashed:$9,LucideTriangleRight:A9,LucideTrophy:mo,LucideTruck:z9,LucideTurtle:P9,LucideTv:V9,LucideTv2:b2,LucideTvMinimal:b2,LucideTvMinimalPlay:j9,LucideTwitch:B9,LucideTwitter:ba,LucideType:_o,LucideTypeOutline:F9,LucideUmbrella:R9,LucideUmbrellaOff:D9,LucideUnderline:T9,LucideUndo:p0,LucideUndo2:U9,LucideUndoDot:O9,LucideUnfoldHorizontal:Z9,LucideUnfoldVertical:G9,LucideUngroup:W9,LucideUniversity:$2,LucideUnlink:s0,LucideUnlink2:E9,LucideUnlock:s,LucideUnlockKeyhole:de,LucideUnplug:X9,LucideUpload:o0,LucideUploadCloud:b1,LucideUsb:K9,LucideUser:wo,LucideUser2:V2,LucideUserCheck:go,LucideUserCheck2:A2,LucideUserCircle:I1,LucideUserCircle2:C1,LucideUserCog:J9,LucideUserCog2:H2,LucideUserMinus:Q9,LucideUserMinus2:z2,LucideUserPen:Y9,LucideUserPlus:Lo,LucideUserPlus2:P2,LucideUserRound:V2,LucideUserRoundCheck:A2,LucideUserRoundCog:H2,LucideUserRoundMinus:z2,LucideUserRoundPen:ev,LucideUserRoundPlus:P2,LucideUserRoundSearch:av,LucideUserRoundX:j2,LucideUserSearch:ov,LucideUserSquare:f2,LucideUserSquare2:w2,LucideUserX:xo,LucideUserX2:j2,LucideUsers:fo,LucideUsers2:B2,LucideUsersRound:B2,LucideUtensils:D2,LucideUtensilsCrossed:F2,LucideUtilityPole:cv,LucideVariable:tv,LucideVault:nv,LucideVegan:dv,LucideVenetianMask:iv,LucideVenus:yv,LucideVenusAndMars:hv,LucideVerified:F,LucideVibrate:kv,LucideVibrateOff:rv,LucideVideo:sv,LucideVideoOff:pv,LucideVideotape:lv,LucideView:uv,LucideVoicemail:Mv,LucideVolleyball:vv,LucideVolume:xv,LucideVolume1:mv,LucideVolume2:_v,LucideVolumeOff:gv,LucideVolumeX:Lv,LucideVote:wv,LucideWallet:Co,LucideWallet2:R2,LucideWalletCards:fv,LucideWalletMinimal:R2,LucideWallpaper:Cv,LucideWand:Iv,LucideWand2:T2,LucideWandSparkles:T2,LucideWarehouse:Nv,LucideWashingMachine:Sv,LucideWatch:qv,LucideWaves:$v,LucideWavesLadder:bv,LucideWaypoints:Av,LucideWebcam:Hv,LucideWebhook:Pv,LucideWebhookOff:zv,LucideWeight:jv,LucideWheat:Bv,LucideWheatOff:Vv,LucideWholeWord:Fv,LucideWifi:oo,LucideWifiHigh:Dv,LucideWifiLow:Rv,LucideWifiOff:Tv,LucideWifiZero:Uv,LucideWind:Zv,LucideWindArrowDown:Ov,LucideWine:Wv,LucideWineOff:Gv,LucideWorkflow:Ev,LucideWorm:Xv,LucideWrapText:Kv,LucideWrench:Io,LucideX:c0,LucideXCircle:x,LucideXOctagon:ke,LucideXSquare:C2,LucideYoutube:Jv,LucideZap:No,LucideZapOff:Qv,LucideZoomIn:Yv,LucideZoomOut:em,Luggage:is,LuggageIcon:is,MSquare:n2,MSquareIcon:n2,Magnet:hs,MagnetIcon:hs,Mail:ja,MailCheck:ys,MailCheckIcon:ys,MailIcon:ja,MailMinus:rs,MailMinusIcon:rs,MailOpen:ks,MailOpenIcon:ks,MailPlus:ps,MailPlusIcon:ps,MailQuestion:ss,MailQuestionIcon:ss,MailSearch:ls,MailSearchIcon:ls,MailWarning:us,MailWarningIcon:us,MailX:Ms,MailXIcon:Ms,Mailbox:vs,MailboxIcon:vs,Mails:ms,MailsIcon:ms,Map:$s,MapIcon:$s,MapPin:Va,MapPinCheck:gs,MapPinCheckIcon:gs,MapPinCheckInside:_s,MapPinCheckInsideIcon:_s,MapPinHouse:Ls,MapPinHouseIcon:Ls,MapPinIcon:Va,MapPinMinus:ws,MapPinMinusIcon:ws,MapPinMinusInside:xs,MapPinMinusInsideIcon:xs,MapPinOff:fs,MapPinOffIcon:fs,MapPinPlus:Is,MapPinPlusIcon:Is,MapPinPlusInside:Cs,MapPinPlusInsideIcon:Cs,MapPinX:Ss,MapPinXIcon:Ss,MapPinXInside:Ns,MapPinXInsideIcon:Ns,MapPinned:qs,MapPinnedIcon:qs,MapPlus:bs,MapPlusIcon:bs,Mars:Hs,MarsIcon:Hs,MarsStroke:As,MarsStrokeIcon:As,Martini:zs,MartiniIcon:zs,Maximize:js,Maximize2:Ps,Maximize2Icon:Ps,MaximizeIcon:js,Medal:Vs,MedalIcon:Vs,Megaphone:Fs,MegaphoneIcon:Fs,MegaphoneOff:Bs,MegaphoneOffIcon:Bs,Meh:Ds,MehIcon:Ds,MemoryStick:Rs,MemoryStickIcon:Rs,Menu:Ba,MenuIcon:Ba,MenuSquare:d2,MenuSquareIcon:d2,Merge:Ts,MergeIcon:Ts,MessageCircle:Ys,MessageCircleCode:Us,MessageCircleCodeIcon:Us,MessageCircleDashed:Os,MessageCircleDashedIcon:Os,MessageCircleHeart:Zs,MessageCircleHeartIcon:Zs,MessageCircleIcon:Ys,MessageCircleMore:Gs,MessageCircleMoreIcon:Gs,MessageCircleOff:Ws,MessageCircleOffIcon:Ws,MessageCirclePlus:Es,MessageCirclePlusIcon:Es,MessageCircleQuestion:Xs,MessageCircleQuestionIcon:Xs,MessageCircleReply:Ks,MessageCircleReplyIcon:Ks,MessageCircleWarning:Js,MessageCircleWarningIcon:Js,MessageCircleX:Qs,MessageCircleXIcon:Qs,MessageSquare:Da,MessageSquareCode:e3,MessageSquareCodeIcon:e3,MessageSquareDashed:a3,MessageSquareDashedIcon:a3,MessageSquareDiff:o3,MessageSquareDiffIcon:o3,MessageSquareDot:c3,MessageSquareDotIcon:c3,MessageSquareHeart:t3,MessageSquareHeartIcon:t3,MessageSquareIcon:Da,MessageSquareLock:n3,MessageSquareLockIcon:n3,MessageSquareMore:d3,MessageSquareMoreIcon:d3,MessageSquareOff:i3,MessageSquareOffIcon:i3,MessageSquarePlus:h3,MessageSquarePlusIcon:h3,MessageSquareQuote:y3,MessageSquareQuoteIcon:y3,MessageSquareReply:r3,MessageSquareReplyIcon:r3,MessageSquareShare:k3,MessageSquareShareIcon:k3,MessageSquareText:p3,MessageSquareTextIcon:p3,MessageSquareWarning:Fa,MessageSquareWarningIcon:Fa,MessageSquareX:s3,MessageSquareXIcon:s3,MessagesSquare:l3,MessagesSquareIcon:l3,Mic:M3,Mic2:ie,Mic2Icon:ie,MicIcon:M3,MicOff:u3,MicOffIcon:u3,MicVocal:ie,MicVocalIcon:ie,Microchip:v3,MicrochipIcon:v3,Microscope:m3,MicroscopeIcon:m3,Microwave:_3,MicrowaveIcon:_3,Milestone:g3,MilestoneIcon:g3,Milk:x3,MilkIcon:x3,MilkOff:L3,MilkOffIcon:L3,Minimize:f3,Minimize2:w3,Minimize2Icon:w3,MinimizeIcon:f3,Minus:C3,MinusCircle:u1,MinusCircleIcon:u1,MinusIcon:C3,MinusSquare:i2,MinusSquareIcon:i2,Monitor:Ra,MonitorCheck:I3,MonitorCheckIcon:I3,MonitorCog:N3,MonitorCogIcon:N3,MonitorDot:S3,MonitorDotIcon:S3,MonitorDown:q3,MonitorDownIcon:q3,MonitorIcon:Ra,MonitorOff:b3,MonitorOffIcon:b3,MonitorPause:$3,MonitorPauseIcon:$3,MonitorPlay:A3,MonitorPlayIcon:A3,MonitorSmartphone:H3,MonitorSmartphoneIcon:H3,MonitorSpeaker:z3,MonitorSpeakerIcon:z3,MonitorStop:P3,MonitorStopIcon:P3,MonitorUp:j3,MonitorUpIcon:j3,MonitorX:V3,MonitorXIcon:V3,Moon:J2,MoonIcon:J2,MoonStar:B3,MoonStarIcon:B3,MoreHorizontal:B1,MoreHorizontalIcon:B1,MoreVertical:V1,MoreVerticalIcon:V1,Mountain:D3,MountainIcon:D3,MountainSnow:F3,MountainSnowIcon:F3,Mouse:G3,MouseIcon:G3,MouseOff:R3,MouseOffIcon:R3,MousePointer:Z3,MousePointer2:T3,MousePointer2Icon:T3,MousePointerBan:U3,MousePointerBanIcon:U3,MousePointerClick:O3,MousePointerClickIcon:O3,MousePointerIcon:Z3,MousePointerSquareDashed:Je,MousePointerSquareDashedIcon:Je,Move:nl,Move3D:he,Move3DIcon:he,Move3d:he,Move3dIcon:he,MoveDiagonal:E3,MoveDiagonal2:W3,MoveDiagonal2Icon:W3,MoveDiagonalIcon:E3,MoveDown:J3,MoveDownIcon:J3,MoveDownLeft:X3,MoveDownLeftIcon:X3,MoveDownRight:K3,MoveDownRightIcon:K3,MoveHorizontal:Q3,MoveHorizontalIcon:Q3,MoveIcon:nl,MoveLeft:Y3,MoveLeftIcon:Y3,MoveRight:el,MoveRightIcon:el,MoveUp:cl,MoveUpIcon:cl,MoveUpLeft:al,MoveUpLeftIcon:al,MoveUpRight:ol,MoveUpRightIcon:ol,MoveVertical:tl,MoveVerticalIcon:tl,Music:yl,Music2:dl,Music2Icon:dl,Music3:il,Music3Icon:il,Music4:hl,Music4Icon:hl,MusicIcon:yl,Navigation:sl,Navigation2:kl,Navigation2Icon:kl,Navigation2Off:rl,Navigation2OffIcon:rl,NavigationIcon:sl,NavigationOff:pl,NavigationOffIcon:pl,Network:ll,NetworkIcon:ll,Newspaper:ul,NewspaperIcon:ul,Nfc:Ml,NfcIcon:Ml,NonBinary:vl,NonBinaryIcon:vl,Notebook:Ll,NotebookIcon:Ll,NotebookPen:ml,NotebookPenIcon:ml,NotebookTabs:_l,NotebookTabsIcon:_l,NotebookText:gl,NotebookTextIcon:gl,NotepadText:wl,NotepadTextDashed:xl,NotepadTextDashedIcon:xl,NotepadTextIcon:wl,Nut:Cl,NutIcon:Cl,NutOff:fl,NutOffIcon:fl,Octagon:Nl,OctagonAlert:ye,OctagonAlertIcon:ye,OctagonIcon:Nl,OctagonMinus:Il,OctagonMinusIcon:Il,OctagonPause:re,OctagonPauseIcon:re,OctagonX:ke,OctagonXIcon:ke,Omega:Sl,OmegaIcon:Sl,Option:ql,OptionIcon:ql,Orbit:bl,OrbitIcon:bl,Origami:$l,OrigamiIcon:$l,Outdent:ce,OutdentIcon:ce,Package:Ta,Package2:Al,Package2Icon:Al,PackageCheck:Hl,PackageCheckIcon:Hl,PackageIcon:Ta,PackageMinus:zl,PackageMinusIcon:zl,PackageOpen:Pl,PackageOpenIcon:Pl,PackagePlus:jl,PackagePlusIcon:jl,PackageSearch:Vl,PackageSearchIcon:Vl,PackageX:Bl,PackageXIcon:Bl,PaintBucket:Fl,PaintBucketIcon:Fl,PaintRoller:Dl,PaintRollerIcon:Dl,Paintbrush:Rl,Paintbrush2:pe,Paintbrush2Icon:pe,PaintbrushIcon:Rl,PaintbrushVertical:pe,PaintbrushVerticalIcon:pe,Palette:Q2,PaletteIcon:Q2,Palmtree:q2,PalmtreeIcon:q2,PanelBottom:Ol,PanelBottomClose:Tl,PanelBottomCloseIcon:Tl,PanelBottomDashed:se,PanelBottomDashedIcon:se,PanelBottomIcon:Ol,PanelBottomInactive:se,PanelBottomInactiveIcon:se,PanelBottomOpen:Ul,PanelBottomOpenIcon:Ul,PanelLeft:k,PanelLeftClose:le,PanelLeftCloseIcon:le,PanelLeftDashed:ue,PanelLeftDashedIcon:ue,PanelLeftIcon:k,PanelLeftInactive:ue,PanelLeftInactiveIcon:ue,PanelLeftOpen:Me,PanelLeftOpenIcon:Me,PanelRight:Wl,PanelRightClose:Zl,PanelRightCloseIcon:Zl,PanelRightDashed:ve,PanelRightDashedIcon:ve,PanelRightIcon:Wl,PanelRightInactive:ve,PanelRightInactiveIcon:ve,PanelRightOpen:Gl,PanelRightOpenIcon:Gl,PanelTop:Kl,PanelTopClose:El,PanelTopCloseIcon:El,PanelTopDashed:me,PanelTopDashedIcon:me,PanelTopIcon:Kl,PanelTopInactive:me,PanelTopInactiveIcon:me,PanelTopOpen:Xl,PanelTopOpenIcon:Xl,PanelsLeftBottom:Jl,PanelsLeftBottomIcon:Jl,PanelsLeftRight:H1,PanelsLeftRightIcon:H1,PanelsRightBottom:Ql,PanelsRightBottomIcon:Ql,PanelsTopBottom:fe,PanelsTopBottomIcon:fe,PanelsTopLeft:p,PanelsTopLeftIcon:p,Paperclip:Yl,PaperclipIcon:Yl,Parentheses:e6,ParenthesesIcon:e6,ParkingCircle:v1,ParkingCircleIcon:v1,ParkingCircleOff:M1,ParkingCircleOffIcon:M1,ParkingMeter:a6,ParkingMeterIcon:a6,ParkingSquare:r2,ParkingSquareIcon:r2,ParkingSquareOff:y2,ParkingSquareOffIcon:y2,PartyPopper:o6,PartyPopperIcon:o6,Pause:c6,PauseCircle:m1,PauseCircleIcon:m1,PauseIcon:c6,PauseOctagon:re,PauseOctagonIcon:re,PawPrint:t6,PawPrintIcon:t6,PcCase:n6,PcCaseIcon:n6,Pen:_e,PenBox:n,PenBoxIcon:n,PenIcon:_e,PenLine:w,PenLineIcon:w,PenOff:d6,PenOffIcon:d6,PenSquare:n,PenSquareIcon:n,PenTool:i6,PenToolIcon:i6,Pencil:k6,PencilIcon:k6,PencilLine:h6,PencilLineIcon:h6,PencilOff:y6,PencilOffIcon:y6,PencilRuler:r6,PencilRulerIcon:r6,Pentagon:p6,PentagonIcon:p6,Percent:Ua,PercentCircle:_1,PercentCircleIcon:_1,PercentDiamond:P1,PercentDiamondIcon:P1,PercentIcon:Ua,PercentSquare:k2,PercentSquareIcon:k2,PersonStanding:s6,PersonStandingIcon:s6,PhilippinePeso:l6,PhilippinePesoIcon:l6,Phone:Oa,PhoneCall:u6,PhoneCallIcon:u6,PhoneForwarded:M6,PhoneForwardedIcon:M6,PhoneIcon:Oa,PhoneIncoming:v6,PhoneIncomingIcon:v6,PhoneMissed:m6,PhoneMissedIcon:m6,PhoneOff:_6,PhoneOffIcon:_6,PhoneOutgoing:g6,PhoneOutgoingIcon:g6,Pi:L6,PiIcon:L6,PiSquare:p2,PiSquareIcon:p2,Piano:x6,PianoIcon:x6,Pickaxe:w6,PickaxeIcon:w6,PictureInPicture:C6,PictureInPicture2:f6,PictureInPicture2Icon:f6,PictureInPictureIcon:C6,PieChart:Y,PieChartIcon:Y,PiggyBank:I6,PiggyBankIcon:I6,Pilcrow:q6,PilcrowIcon:q6,PilcrowLeft:N6,PilcrowLeftIcon:N6,PilcrowRight:S6,PilcrowRightIcon:S6,PilcrowSquare:s2,PilcrowSquareIcon:s2,Pill:$6,PillBottle:b6,PillBottleIcon:b6,PillIcon:$6,Pin:H6,PinIcon:H6,PinOff:A6,PinOffIcon:A6,Pipette:z6,PipetteIcon:z6,Pizza:P6,PizzaIcon:P6,Plane:Za,PlaneIcon:Za,PlaneLanding:j6,PlaneLandingIcon:j6,PlaneTakeoff:V6,PlaneTakeoffIcon:V6,Play:Ga,PlayCircle:g1,PlayCircleIcon:g1,PlayIcon:Ga,PlaySquare:l2,PlaySquareIcon:l2,Plug:F6,Plug2:B6,Plug2Icon:B6,PlugIcon:F6,PlugZap:ge,PlugZap2:ge,PlugZap2Icon:ge,PlugZapIcon:ge,Plus:Y2,PlusCircle:L1,PlusCircleIcon:L1,PlusIcon:Y2,PlusSquare:u2,PlusSquareIcon:u2,Pocket:R6,PocketIcon:R6,PocketKnife:D6,PocketKnifeIcon:D6,Podcast:T6,PodcastIcon:T6,Pointer:O6,PointerIcon:O6,PointerOff:U6,PointerOffIcon:U6,Popcorn:Z6,PopcornIcon:Z6,Popsicle:G6,PopsicleIcon:G6,PoundSterling:W6,PoundSterlingIcon:W6,Power:X6,PowerCircle:x1,PowerCircleIcon:x1,PowerIcon:X6,PowerOff:E6,PowerOffIcon:E6,PowerSquare:M2,PowerSquareIcon:M2,Presentation:K6,PresentationIcon:K6,Printer:Q6,PrinterCheck:J6,PrinterCheckIcon:J6,PrinterIcon:Q6,Projector:Y6,ProjectorIcon:Y6,Proportions:e8,ProportionsIcon:e8,Puzzle:a8,PuzzleIcon:a8,Pyramid:o8,PyramidIcon:o8,QrCode:Wa,QrCodeIcon:Wa,Quote:Ea,QuoteIcon:Ea,Rabbit:c8,RabbitIcon:c8,Radar:t8,RadarIcon:t8,Radiation:n8,RadiationIcon:n8,Radical:d8,RadicalIcon:d8,Radio:Xa,RadioIcon:Xa,RadioReceiver:i8,RadioReceiverIcon:i8,RadioTower:h8,RadioTowerIcon:h8,Radius:y8,RadiusIcon:y8,RailSymbol:r8,RailSymbolIcon:r8,Rainbow:k8,RainbowIcon:k8,Rat:p8,RatIcon:p8,Ratio:s8,RatioIcon:s8,Receipt:x8,ReceiptCent:l8,ReceiptCentIcon:l8,ReceiptEuro:u8,ReceiptEuroIcon:u8,ReceiptIcon:x8,ReceiptIndianRupee:M8,ReceiptIndianRupeeIcon:M8,ReceiptJapaneseYen:v8,ReceiptJapaneseYenIcon:v8,ReceiptPoundSterling:m8,ReceiptPoundSterlingIcon:m8,ReceiptRussianRuble:_8,ReceiptRussianRubleIcon:_8,ReceiptSwissFranc:g8,ReceiptSwissFrancIcon:g8,ReceiptText:L8,ReceiptTextIcon:L8,RectangleEllipsis:Le,RectangleEllipsisIcon:Le,RectangleHorizontal:w8,RectangleHorizontalIcon:w8,RectangleVertical:f8,RectangleVerticalIcon:f8,Recycle:C8,RecycleIcon:C8,Redo:r0,Redo2:I8,Redo2Icon:I8,RedoDot:N8,RedoDotIcon:N8,RedoIcon:r0,RefreshCcw:q8,RefreshCcwDot:S8,RefreshCcwDotIcon:S8,RefreshCcwIcon:q8,RefreshCw:Ka,RefreshCwIcon:Ka,RefreshCwOff:b8,RefreshCwOffIcon:b8,Refrigerator:$8,RefrigeratorIcon:$8,Regex:A8,RegexIcon:A8,RemoveFormatting:H8,RemoveFormattingIcon:H8,Repeat:j8,Repeat1:z8,Repeat1Icon:z8,Repeat2:P8,Repeat2Icon:P8,RepeatIcon:j8,Replace:B8,ReplaceAll:V8,ReplaceAllIcon:V8,ReplaceIcon:B8,Reply:D8,ReplyAll:F8,ReplyAllIcon:F8,ReplyIcon:D8,Rewind:R8,RewindIcon:R8,Ribbon:T8,RibbonIcon:T8,Rocket:U8,RocketIcon:U8,RockingChair:O8,RockingChairIcon:O8,RollerCoaster:Z8,RollerCoasterIcon:Z8,Rotate3D:xe,Rotate3DIcon:xe,Rotate3d:xe,Rotate3dIcon:xe,RotateCcw:W8,RotateCcwIcon:W8,RotateCcwSquare:G8,RotateCcwSquareIcon:G8,RotateCw:X8,RotateCwIcon:X8,RotateCwSquare:E8,RotateCwSquareIcon:E8,Route:J8,RouteIcon:J8,RouteOff:K8,RouteOffIcon:K8,Router:Q8,RouterIcon:Q8,Rows:we,Rows2:we,Rows2Icon:we,Rows3:fe,Rows3Icon:fe,Rows4:Y8,Rows4Icon:Y8,RowsIcon:we,Rss:e7,RssIcon:e7,Ruler:Ja,RulerIcon:Ja,RussianRuble:a7,RussianRubleIcon:a7,Sailboat:o7,SailboatIcon:o7,Salad:c7,SaladIcon:c7,Sandwich:t7,SandwichIcon:t7,Satellite:d7,SatelliteDish:n7,SatelliteDishIcon:n7,SatelliteIcon:d7,Save:e0,SaveAll:i7,SaveAllIcon:i7,SaveIcon:e0,SaveOff:h7,SaveOffIcon:h7,Scale:m0,Scale3D:Ce,Scale3DIcon:Ce,Scale3d:Ce,Scale3dIcon:Ce,ScaleIcon:m0,Scaling:y7,ScalingIcon:y7,Scan:m7,ScanBarcode:r7,ScanBarcodeIcon:r7,ScanEye:k7,ScanEyeIcon:k7,ScanFace:p7,ScanFaceIcon:p7,ScanHeart:s7,ScanHeartIcon:s7,ScanIcon:m7,ScanLine:l7,ScanLineIcon:l7,ScanQrCode:u7,ScanQrCodeIcon:u7,ScanSearch:M7,ScanSearchIcon:M7,ScanText:v7,ScanTextIcon:v7,ScatterChart:e1,ScatterChartIcon:e1,School:_7,School2:$2,School2Icon:$2,SchoolIcon:_7,Scissors:L7,ScissorsIcon:L7,ScissorsLineDashed:g7,ScissorsLineDashedIcon:g7,ScissorsSquare:v2,ScissorsSquareDashedBottom:Ue,ScissorsSquareDashedBottomIcon:Ue,ScissorsSquareIcon:v2,ScreenShare:w7,ScreenShareIcon:w7,ScreenShareOff:x7,ScreenShareOffIcon:x7,Scroll:C7,ScrollIcon:C7,ScrollText:f7,ScrollTextIcon:f7,Search:a0,SearchCheck:I7,SearchCheckIcon:I7,SearchCode:N7,SearchCodeIcon:N7,SearchIcon:a0,SearchSlash:S7,SearchSlashIcon:S7,SearchX:q7,SearchXIcon:q7,Section:b7,SectionIcon:b7,Send:Qa,SendHorizonal:Ie,SendHorizonalIcon:Ie,SendHorizontal:Ie,SendHorizontalIcon:Ie,SendIcon:Qa,SendToBack:$7,SendToBackIcon:$7,SeparatorHorizontal:A7,SeparatorHorizontalIcon:A7,SeparatorVertical:H7,SeparatorVerticalIcon:H7,Server:Ya,ServerCog:z7,ServerCogIcon:z7,ServerCrash:P7,ServerCrashIcon:P7,ServerIcon:Ya,ServerOff:j7,ServerOffIcon:j7,Settings:eo,Settings2:V7,Settings2Icon:V7,SettingsIcon:eo,Shapes:B7,ShapesIcon:B7,Share:F7,Share2:ao,Share2Icon:ao,ShareIcon:F7,Sheet:D7,SheetIcon:D7,Shell:R7,ShellIcon:R7,Shield:xa,ShieldAlert:T7,ShieldAlertIcon:T7,ShieldBan:U7,ShieldBanIcon:U7,ShieldCheck:co,ShieldCheckIcon:co,ShieldClose:Ne,ShieldCloseIcon:Ne,ShieldEllipsis:O7,ShieldEllipsisIcon:O7,ShieldHalf:Z7,ShieldHalfIcon:Z7,ShieldIcon:xa,ShieldMinus:G7,ShieldMinusIcon:G7,ShieldOff:W7,ShieldOffIcon:W7,ShieldPlus:E7,ShieldPlusIcon:E7,ShieldQuestion:X7,ShieldQuestionIcon:X7,ShieldX:Ne,ShieldXIcon:Ne,Ship:J7,ShipIcon:J7,ShipWheel:K7,ShipWheelIcon:K7,Shirt:Q7,ShirtIcon:Q7,ShoppingBag:Y7,ShoppingBagIcon:Y7,ShoppingBasket:eu,ShoppingBasketIcon:eu,ShoppingCart:au,ShoppingCartIcon:au,Shovel:ou,ShovelIcon:ou,ShowerHead:cu,ShowerHeadIcon:cu,Shrink:tu,ShrinkIcon:tu,Shrub:nu,ShrubIcon:nu,Shuffle:du,ShuffleIcon:du,Sidebar:k,SidebarClose:le,SidebarCloseIcon:le,SidebarIcon:k,SidebarOpen:Me,SidebarOpenIcon:Me,Sigma:iu,SigmaIcon:iu,SigmaSquare:m2,SigmaSquareIcon:m2,Signal:pu,SignalHigh:hu,SignalHighIcon:hu,SignalIcon:pu,SignalLow:yu,SignalLowIcon:yu,SignalMedium:ru,SignalMediumIcon:ru,SignalZero:ku,SignalZeroIcon:ku,Signature:su,SignatureIcon:su,Signpost:uu,SignpostBig:lu,SignpostBigIcon:lu,SignpostIcon:uu,Siren:Mu,SirenIcon:Mu,SkipBack:vu,SkipBackIcon:vu,SkipForward:mu,SkipForwardIcon:mu,Skull:_u,SkullIcon:_u,Slack:gu,SlackIcon:gu,Slash:Lu,SlashIcon:Lu,SlashSquare:_2,SlashSquareIcon:_2,Slice:xu,SliceIcon:xu,Sliders:Se,SlidersHorizontal:wu,SlidersHorizontalIcon:wu,SlidersIcon:Se,SlidersVertical:Se,SlidersVerticalIcon:Se,Smartphone:to,SmartphoneCharging:fu,SmartphoneChargingIcon:fu,SmartphoneIcon:to,SmartphoneNfc:Cu,SmartphoneNfcIcon:Cu,Smile:Nu,SmileIcon:Nu,SmilePlus:Iu,SmilePlusIcon:Iu,Snail:Su,SnailIcon:Su,Snowflake:qu,SnowflakeIcon:qu,Sofa:bu,SofaIcon:bu,SortAsc:j,SortAscIcon:j,SortDesc:H,SortDescIcon:H,Soup:$u,SoupIcon:$u,Space:Au,SpaceIcon:Au,Spade:Hu,SpadeIcon:Hu,Sparkle:zu,SparkleIcon:zu,Sparkles:l,SparklesIcon:l,Speaker:Pu,SpeakerIcon:Pu,Speech:ju,SpeechIcon:ju,SpellCheck:Bu,SpellCheck2:Vu,SpellCheck2Icon:Vu,SpellCheckIcon:Bu,Spline:Fu,SplineIcon:Fu,Split:Du,SplitIcon:Du,SplitSquareHorizontal:g2,SplitSquareHorizontalIcon:g2,SplitSquareVertical:L2,SplitSquareVerticalIcon:L2,SprayCan:Ru,SprayCanIcon:Ru,Sprout:Tu,SproutIcon:Tu,Square:Eu,SquareActivity:qe,SquareActivityIcon:qe,SquareArrowDown:Ae,SquareArrowDownIcon:Ae,SquareArrowDownLeft:be,SquareArrowDownLeftIcon:be,SquareArrowDownRight:$e,SquareArrowDownRightIcon:$e,SquareArrowLeft:He,SquareArrowLeftIcon:He,SquareArrowOutDownLeft:ze,SquareArrowOutDownLeftIcon:ze,SquareArrowOutDownRight:Pe,SquareArrowOutDownRightIcon:Pe,SquareArrowOutUpLeft:je,SquareArrowOutUpLeftIcon:je,SquareArrowOutUpRight:Ve,SquareArrowOutUpRightIcon:Ve,SquareArrowRight:Be,SquareArrowRightIcon:Be,SquareArrowUp:Re,SquareArrowUpIcon:Re,SquareArrowUpLeft:Fe,SquareArrowUpLeftIcon:Fe,SquareArrowUpRight:De,SquareArrowUpRightIcon:De,SquareAsterisk:Te,SquareAsteriskIcon:Te,SquareBottomDashedScissors:Ue,SquareBottomDashedScissorsIcon:Ue,SquareChartGantt:i,SquareChartGanttIcon:i,SquareCheck:Oe,SquareCheckBig:N,SquareCheckBigIcon:N,SquareCheckIcon:Oe,SquareChevronDown:Ze,SquareChevronDownIcon:Ze,SquareChevronLeft:Ge,SquareChevronLeftIcon:Ge,SquareChevronRight:We,SquareChevronRightIcon:We,SquareChevronUp:Ee,SquareChevronUpIcon:Ee,SquareCode:Xe,SquareCodeIcon:Xe,SquareDashed:Qe,SquareDashedBottom:Ou,SquareDashedBottomCode:Uu,SquareDashedBottomCodeIcon:Uu,SquareDashedBottomIcon:Ou,SquareDashedIcon:Qe,SquareDashedKanban:Ke,SquareDashedKanbanIcon:Ke,SquareDashedMousePointer:Je,SquareDashedMousePointerIcon:Je,SquareDivide:Ye,SquareDivideIcon:Ye,SquareDot:e2,SquareDotIcon:e2,SquareEqual:a2,SquareEqualIcon:a2,SquareFunction:o2,SquareFunctionIcon:o2,SquareGanttChart:i,SquareGanttChartIcon:i,SquareIcon:Eu,SquareKanban:c2,SquareKanbanIcon:c2,SquareLibrary:t2,SquareLibraryIcon:t2,SquareM:n2,SquareMIcon:n2,SquareMenu:d2,SquareMenuIcon:d2,SquareMinus:i2,SquareMinusIcon:i2,SquareMousePointer:h2,SquareMousePointerIcon:h2,SquareParking:r2,SquareParkingIcon:r2,SquareParkingOff:y2,SquareParkingOffIcon:y2,SquarePen:n,SquarePenIcon:n,SquarePercent:k2,SquarePercentIcon:k2,SquarePi:p2,SquarePiIcon:p2,SquarePilcrow:s2,SquarePilcrowIcon:s2,SquarePlay:l2,SquarePlayIcon:l2,SquarePlus:u2,SquarePlusIcon:u2,SquarePower:M2,SquarePowerIcon:M2,SquareRadical:Zu,SquareRadicalIcon:Zu,SquareScissors:v2,SquareScissorsIcon:v2,SquareSigma:m2,SquareSigmaIcon:m2,SquareSlash:_2,SquareSlashIcon:_2,SquareSplitHorizontal:g2,SquareSplitHorizontalIcon:g2,SquareSplitVertical:L2,SquareSplitVerticalIcon:L2,SquareSquare:Gu,SquareSquareIcon:Gu,SquareStack:Wu,SquareStackIcon:Wu,SquareTerminal:x2,SquareTerminalIcon:x2,SquareUser:f2,SquareUserIcon:f2,SquareUserRound:w2,SquareUserRoundIcon:w2,SquareX:C2,SquareXIcon:C2,Squircle:Xu,SquircleIcon:Xu,Squirrel:Ku,SquirrelIcon:Ku,Stamp:Ju,StampIcon:Ju,Star:no,StarHalf:Qu,StarHalfIcon:Qu,StarIcon:no,StarOff:Yu,StarOffIcon:Yu,Stars:l,StarsIcon:l,StepBack:eM,StepBackIcon:eM,StepForward:aM,StepForwardIcon:aM,Stethoscope:oM,StethoscopeIcon:oM,Sticker:cM,StickerIcon:cM,StickyNote:tM,StickyNoteIcon:tM,StopCircle:f1,StopCircleIcon:f1,Store:nM,StoreIcon:nM,StretchHorizontal:dM,StretchHorizontalIcon:dM,StretchVertical:iM,StretchVerticalIcon:iM,Strikethrough:k0,StrikethroughIcon:k0,Subscript:hM,SubscriptIcon:hM,Subtitles:O,SubtitlesIcon:O,Sun:io,SunDim:yM,SunDimIcon:yM,SunIcon:io,SunMedium:rM,SunMediumIcon:rM,SunMoon:kM,SunMoonIcon:kM,SunSnow:pM,SunSnowIcon:pM,Sunrise:sM,SunriseIcon:sM,Sunset:lM,SunsetIcon:lM,Superscript:uM,SuperscriptIcon:uM,SwatchBook:MM,SwatchBookIcon:MM,SwissFranc:vM,SwissFrancIcon:vM,SwitchCamera:mM,SwitchCameraIcon:mM,Sword:_M,SwordIcon:_M,Swords:gM,SwordsIcon:gM,Syringe:LM,SyringeIcon:LM,Table:qM,Table2:xM,Table2Icon:xM,TableCellsMerge:wM,TableCellsMergeIcon:wM,TableCellsSplit:fM,TableCellsSplitIcon:fM,TableColumnsSplit:CM,TableColumnsSplitIcon:CM,TableIcon:qM,TableOfContents:IM,TableOfContentsIcon:IM,TableProperties:NM,TablePropertiesIcon:NM,TableRowsSplit:SM,TableRowsSplitIcon:SM,Tablet:$M,TabletIcon:$M,TabletSmartphone:bM,TabletSmartphoneIcon:bM,Tablets:AM,TabletsIcon:AM,Tag:ho,TagIcon:ho,Tags:HM,TagsIcon:HM,Tally1:zM,Tally1Icon:zM,Tally2:PM,Tally2Icon:PM,Tally3:jM,Tally3Icon:jM,Tally4:VM,Tally4Icon:VM,Tally5:BM,Tally5Icon:BM,Tangent:FM,TangentIcon:FM,Target:yo,TargetIcon:yo,Telescope:DM,TelescopeIcon:DM,Tent:TM,TentIcon:TM,TentTree:RM,TentTreeIcon:RM,Terminal:UM,TerminalIcon:UM,TerminalSquare:x2,TerminalSquareIcon:x2,TestTube:OM,TestTube2:I2,TestTube2Icon:I2,TestTubeDiagonal:I2,TestTubeDiagonalIcon:I2,TestTubeIcon:OM,TestTubes:ZM,TestTubesIcon:ZM,Text:KM,TextCursor:WM,TextCursorIcon:WM,TextCursorInput:GM,TextCursorInputIcon:GM,TextIcon:KM,TextQuote:EM,TextQuoteIcon:EM,TextSearch:XM,TextSearchIcon:XM,TextSelect:N2,TextSelectIcon:N2,TextSelection:N2,TextSelectionIcon:N2,Theater:JM,TheaterIcon:JM,Thermometer:e9,ThermometerIcon:e9,ThermometerSnowflake:QM,ThermometerSnowflakeIcon:QM,ThermometerSun:YM,ThermometerSunIcon:YM,ThumbsDown:ro,ThumbsDownIcon:ro,ThumbsUp:ko,ThumbsUpIcon:ko,Ticket:po,TicketCheck:a9,TicketCheckIcon:a9,TicketIcon:po,TicketMinus:o9,TicketMinusIcon:o9,TicketPercent:c9,TicketPercentIcon:c9,TicketPlus:t9,TicketPlusIcon:t9,TicketSlash:n9,TicketSlashIcon:n9,TicketX:d9,TicketXIcon:d9,Tickets:h9,TicketsIcon:h9,TicketsPlane:i9,TicketsPlaneIcon:i9,Timer:so,TimerIcon:so,TimerOff:y9,TimerOffIcon:y9,TimerReset:r9,TimerResetIcon:r9,ToggleLeft:k9,ToggleLeftIcon:k9,ToggleRight:p9,ToggleRightIcon:p9,Toilet:s9,ToiletIcon:s9,Tornado:l9,TornadoIcon:l9,Torus:u9,TorusIcon:u9,Touchpad:v9,TouchpadIcon:v9,TouchpadOff:M9,TouchpadOffIcon:M9,TowerControl:m9,TowerControlIcon:m9,ToyBrick:_9,ToyBrickIcon:_9,Tractor:g9,TractorIcon:g9,TrafficCone:L9,TrafficConeIcon:L9,Train:S2,TrainFront:w9,TrainFrontIcon:w9,TrainFrontTunnel:x9,TrainFrontTunnelIcon:x9,TrainIcon:S2,TrainTrack:f9,TrainTrackIcon:f9,TramFront:S2,TramFrontIcon:S2,Transgender:C9,TransgenderIcon:C9,Trash:uo,Trash2:lo,Trash2Icon:lo,TrashIcon:uo,TreeDeciduous:I9,TreeDeciduousIcon:I9,TreePalm:q2,TreePalmIcon:q2,TreePine:N9,TreePineIcon:N9,Trees:S9,TreesIcon:S9,Trello:q9,TrelloIcon:q9,TrendingDown:Mo,TrendingDownIcon:Mo,TrendingUp:vo,TrendingUpDown:b9,TrendingUpDownIcon:b9,TrendingUpIcon:vo,Triangle:H9,TriangleAlert:S,TriangleAlertIcon:S,TriangleDashed:$9,TriangleDashedIcon:$9,TriangleIcon:H9,TriangleRight:A9,TriangleRightIcon:A9,Trophy:mo,TrophyIcon:mo,Truck:z9,TruckIcon:z9,Turtle:P9,TurtleIcon:P9,Tv:V9,Tv2:b2,Tv2Icon:b2,TvIcon:V9,TvMinimal:b2,TvMinimalIcon:b2,TvMinimalPlay:j9,TvMinimalPlayIcon:j9,Twitch:B9,TwitchIcon:B9,Twitter:ba,TwitterIcon:ba,Type:_o,TypeIcon:_o,TypeOutline:F9,TypeOutlineIcon:F9,Umbrella:R9,UmbrellaIcon:R9,UmbrellaOff:D9,UmbrellaOffIcon:D9,Underline:T9,UnderlineIcon:T9,Undo:p0,Undo2:U9,Undo2Icon:U9,UndoDot:O9,UndoDotIcon:O9,UndoIcon:p0,UnfoldHorizontal:Z9,UnfoldHorizontalIcon:Z9,UnfoldVertical:G9,UnfoldVerticalIcon:G9,Ungroup:W9,UngroupIcon:W9,University:$2,UniversityIcon:$2,Unlink:s0,Unlink2:E9,Unlink2Icon:E9,UnlinkIcon:s0,Unlock:s,UnlockIcon:s,UnlockKeyhole:de,UnlockKeyholeIcon:de,Unplug:X9,UnplugIcon:X9,Upload:o0,UploadCloud:b1,UploadCloudIcon:b1,UploadIcon:o0,Usb:K9,UsbIcon:K9,User:wo,User2:V2,User2Icon:V2,UserCheck:go,UserCheck2:A2,UserCheck2Icon:A2,UserCheckIcon:go,UserCircle:I1,UserCircle2:C1,UserCircle2Icon:C1,UserCircleIcon:I1,UserCog:J9,UserCog2:H2,UserCog2Icon:H2,UserCogIcon:J9,UserIcon:wo,UserMinus:Q9,UserMinus2:z2,UserMinus2Icon:z2,UserMinusIcon:Q9,UserPen:Y9,UserPenIcon:Y9,UserPlus:Lo,UserPlus2:P2,UserPlus2Icon:P2,UserPlusIcon:Lo,UserRound:V2,UserRoundCheck:A2,UserRoundCheckIcon:A2,UserRoundCog:H2,UserRoundCogIcon:H2,UserRoundIcon:V2,UserRoundMinus:z2,UserRoundMinusIcon:z2,UserRoundPen:ev,UserRoundPenIcon:ev,UserRoundPlus:P2,UserRoundPlusIcon:P2,UserRoundSearch:av,UserRoundSearchIcon:av,UserRoundX:j2,UserRoundXIcon:j2,UserSearch:ov,UserSearchIcon:ov,UserSquare:f2,UserSquare2:w2,UserSquare2Icon:w2,UserSquareIcon:f2,UserX:xo,UserX2:j2,UserX2Icon:j2,UserXIcon:xo,Users:fo,Users2:B2,Users2Icon:B2,UsersIcon:fo,UsersRound:B2,UsersRoundIcon:B2,Utensils:D2,UtensilsCrossed:F2,UtensilsCrossedIcon:F2,UtensilsIcon:D2,UtilityPole:cv,UtilityPoleIcon:cv,Variable:tv,VariableIcon:tv,Vault:nv,VaultIcon:nv,Vegan:dv,VeganIcon:dv,VenetianMask:iv,VenetianMaskIcon:iv,Venus:yv,VenusAndMars:hv,VenusAndMarsIcon:hv,VenusIcon:yv,Verified:F,VerifiedIcon:F,Vibrate:kv,VibrateIcon:kv,VibrateOff:rv,VibrateOffIcon:rv,Video:sv,VideoIcon:sv,VideoOff:pv,VideoOffIcon:pv,Videotape:lv,VideotapeIcon:lv,View:uv,ViewIcon:uv,Voicemail:Mv,VoicemailIcon:Mv,Volleyball:vv,VolleyballIcon:vv,Volume:xv,Volume1:mv,Volume1Icon:mv,Volume2:_v,Volume2Icon:_v,VolumeIcon:xv,VolumeOff:gv,VolumeOffIcon:gv,VolumeX:Lv,VolumeXIcon:Lv,Vote:wv,VoteIcon:wv,Wallet:Co,Wallet2:R2,Wallet2Icon:R2,WalletCards:fv,WalletCardsIcon:fv,WalletIcon:Co,WalletMinimal:R2,WalletMinimalIcon:R2,Wallpaper:Cv,WallpaperIcon:Cv,Wand:Iv,Wand2:T2,Wand2Icon:T2,WandIcon:Iv,WandSparkles:T2,WandSparklesIcon:T2,Warehouse:Nv,WarehouseIcon:Nv,WashingMachine:Sv,WashingMachineIcon:Sv,Watch:qv,WatchIcon:qv,Waves:$v,WavesIcon:$v,WavesLadder:bv,WavesLadderIcon:bv,Waypoints:Av,WaypointsIcon:Av,Webcam:Hv,WebcamIcon:Hv,Webhook:Pv,WebhookIcon:Pv,WebhookOff:zv,WebhookOffIcon:zv,Weight:jv,WeightIcon:jv,Wheat:Bv,WheatIcon:Bv,WheatOff:Vv,WheatOffIcon:Vv,WholeWord:Fv,WholeWordIcon:Fv,Wifi:oo,WifiHigh:Dv,WifiHighIcon:Dv,WifiIcon:oo,WifiLow:Rv,WifiLowIcon:Rv,WifiOff:Tv,WifiOffIcon:Tv,WifiZero:Uv,WifiZeroIcon:Uv,Wind:Zv,WindArrowDown:Ov,WindArrowDownIcon:Ov,WindIcon:Zv,Wine:Wv,WineIcon:Wv,WineOff:Gv,WineOffIcon:Gv,Workflow:Ev,WorkflowIcon:Ev,Worm:Xv,WormIcon:Xv,WrapText:Kv,WrapTextIcon:Kv,Wrench:Io,WrenchIcon:Io,X:c0,XCircle:x,XCircleIcon:x,XIcon:c0,XOctagon:ke,XOctagonIcon:ke,XSquare:C2,XSquareIcon:C2,Youtube:Jv,YoutubeIcon:Jv,Zap:No,ZapIcon:No,ZapOff:Qv,ZapOffIcon:Qv,ZoomIn:Yv,ZoomInIcon:Yv,ZoomOut:em,ZoomOutIcon:em,createLucideIcon:e,icons:CO},Symbol.toStringTag,{value:"Module"}));function ZG({columns:am,actions:im,data:hm,from:mm,onAction:_m,sortField:gm,sortDirection:Lm,onSort:ym,statusColors:xm={},permissions:rm,entityPermissions:h,showActions:om=!0,footer:wm}){const{t:cm}=$m(),fm=c=>c.sortable?gm===c.key?Lm==="asc"?a.jsx(Z2,{className:"ml-1 h-4 w-4"}):a.jsx(O2,{className:"ml-1 h-4 w-4"}):a.jsx(G2,{className:"ml-1 h-4 w-4 opacity-50"}):null,Cm=c=>{!c.sortable||!ym||ym(c.key)},tm=im.some(c=>{const o=c.requiredPermission||h&&(c.action==="view"?h.view:c.action==="edit"?h.edit:c.action==="delete"?h.delete:c.permission);return!o||km(rm,o)}),Im=c=>a.jsx("div",{className:"flex items-center justify-end space-x-2",children:im.map((o,t)=>{const y=o.requiredPermission||h&&(o.action==="view"?h.view:o.action==="edit"?h.edit:o.action==="delete"?h.delete:o.permission);if(y&&!km(rm,y)||o.condition&&!o.condition(c))return null;const r=IO[o.icon];if(o.href){const qm=typeof o.href=="function"?o.href(c):o.href.replace(":id",c.id);return a.jsx(sm,{children:a.jsxs(lm,{children:[a.jsx(um,{asChild:!0,children:a.jsx(pm,{href:qm,target:o.openInNewTab?"_blank":void 0,children:a.jsx(Mm,{variant:"ghost",size:"icon",className:U2("h-8 w-8",o.className),children:a.jsx(r,{size:16})})})}),a.jsx(vm,{children:a.jsx("p",{children:o.label})})]})},t)}return a.jsx(sm,{children:a.jsxs(lm,{children:[a.jsx(um,{asChild:!0,children:a.jsx(Mm,{variant:"ghost",size:"icon",className:U2("h-8 w-8",o.className),onClick:()=>_m(o.action,c),children:a.jsx(r,{size:16})})}),a.jsx(vm,{children:a.jsx("p",{children:o.label})})]})},t)})}),Nm=(c,o)=>!c||!o?null:o.split(".").reduce((y,r)=>y&&y[r]!==void 0?y[r]:null,c),Sm=(c,o)=>{const t=Nm(c,o.key);if(o.render)return o.render(t,c);switch(o.type){case"badge":return a.jsx(Am,{className:U2("capitalize",xm[t]),children:t});case"image":return t?a.jsx("div",{className:"flex justify-center",children:a.jsx("img",{src:t.startsWith&&t.startsWith("http")?t:`/storage/${t}`,alt:c.name||"Image",className:o.className||"h-16 w-20 rounded-md object-cover shadow-sm",onError:r=>{r.currentTarget.src="https://placehold.co/200x150?text=Image+Not+Found"}})}):a.jsx("div",{className:"text-center text-gray-400",children:cm("No image")});case"date":return t?a.jsx("span",{className:"text-sm",children:new Date(t).toLocaleDateString()}):a.jsx("span",{children:"-"});case"currency":return a.jsx("span",{className:"text-sm",children:typeof t=="number"?t.toLocaleString("en-US",{style:"currency",currency:"USD"}):t});case"boolean":return a.jsx("span",{className:"text-sm",children:t?"Yes":"No"});case"link":if(!t)return a.jsx("span",{children:"-"});const y=o.href?typeof o.href=="function"?o.href(c):o.href.replace(":id",c.id):"#";return a.jsx(pm,{href:y,className:o.linkClassName||"text-blue-600 hover:underline",target:o.openInNewTab?"_blank":void 0,children:t});default:return a.jsx("span",{className:"text-sm font-medium",children:t||"-"})}};return a.jsx("div",{className:"border-collapse dark:bg-gray-900",children:a.jsxs(Hm,{children:[a.jsx(zm,{children:a.jsxs(nm,{className:"bg-gray-50 dark:bg-gray-800 border-b",children:[a.jsx(dm,{className:"w-12 py-2.5 font-semibold",children:"#"}),am.map(c=>a.jsx(dm,{className:U2("py-2.5 font-semibold text-left",c.sortable&&"cursor-pointer select-none",c.className),onClick:()=>Cm(c),children:a.jsxs("div",{className:"flex items-center",children:[c.label,fm(c)]})},c.key)),om&&tm&&a.jsx(dm,{className:"w-24 py-2.5 text-right font-semibold",children:cm("Actions")})]})}),a.jsx(Pm,{children:hm.length>0?hm.map((c,o)=>a.jsxs(nm,{className:"hover:bg-gray-50 dark:hover:bg-gray-700 dark:bg-gray-900 border-b",children:[a.jsx(W2,{className:"font-medium py-2.5",children:mm+o}),am.map(t=>a.jsx(W2,{className:U2("py-2.5 text-left",t.className),children:Sm(c,t)},t.key)),om&&tm&&a.jsx(W2,{className:"py-2.5 text-right",children:Im(c)})]},c.id||o)):a.jsx(nm,{children:a.jsx(W2,{colSpan:am.length+(om&&tm?2:1),className:"text-muted-foreground h-24 text-center dark:text-gray-400",children:cm("No results found.")})})}),wm]})})}export{En as B,ZG as C,B1 as E,qr as F,d5 as K,C3 as M,ll as N,Q6 as P,au as S,Rh as a}; diff --git a/public/build/assets/FaqSection-BcC82gj4.js b/public/build/assets/FaqSection-BcC82gj4.js new file mode 100644 index 000000000..0537f3741 --- /dev/null +++ b/public/build/assets/FaqSection-BcC82gj4.js @@ -0,0 +1 @@ +import{r as f,j as a}from"./ui-Z445SNHD.js";import{c as b,O as w,Q as v}from"./app-36WMjvX0.js";import{a as j,C as k}from"./chevron-up-DXYKkCZG.js";import"./utils-BWxnHGCV.js";function H({faqs:i,settings:l,sectionData:r,brandColor:s="#3b82f6"}){var d;const[o,m]=f.useState(null),{props:p}=b(),u=w(p);let n="light";if(u){const e=v("themeSettings");if(e)try{n=JSON.parse(e).appearance||"light"}catch{n="light"}}else n=(l==null?void 0:l.theme_mode)||"light";const t=n==="dark",g=[{id:1,question:"What is HRM and how does it work?",answer:"HRM is an all-in-one Human Resource Management platform designed to streamline employee onboarding, attendance, leave, payroll, and performance management for companies of all sizes."},{id:2,question:"Is my company data secure with HRM?",answer:"Yes, security is our top priority. We use bank-grade encryption, secure data centers, and adhere to global compliance standards to ensure your data is always safe and confidential."},{id:3,question:"Can I integrate HRM with my existing tools?",answer:"Absolutely! HRM provides rich APIs and out-of-the-box integrations with popular calendar, payroll, communication, and biometric hardware systems."},{id:4,question:"How does the free trial work?",answer:"You can sign up for a 14-day free trial with full access to all features. No credit card is required to start, and you can upgrade at any time."},{id:5,question:"Is mobile app available for employees?",answer:"Yes, HRM includes mobile apps for iOS and Android, allowing employees to clock in/out, apply for leaves, view payslips, and check company announcements on the go."},{id:6,question:"Does HRM support custom workflows and analytics?",answer:"HRM offers advanced analytics and reporting features to give insights on attendance, payroll, and workforce performance."},{id:7,question:"What plans are available and can I upgrade anytime?",answer:"We offer flexible plans for different team sizes. You can start with the free plan and upgrade as your organization grows."}],y=((d=r==null?void 0:r.faqs)==null?void 0:d.map((e,c)=>({id:c+1,...e})))||g,x=i.length>0?i:y,h=e=>{m(o===e?null:e)};return a.jsx("section",{id:"faq",className:`py-12 sm:py-16 lg:py-20 ${t?"bg-gray-900":"bg-white"}`,children:a.jsxs("div",{className:"max-w-4xl mx-auto px-4 sm:px-6 lg:px-8",children:[a.jsxs("div",{className:"text-center mb-8 sm:mb-12 lg:mb-16",children:[a.jsx("h2",{className:`text-3xl md:text-4xl font-bold ${t?"text-white":"text-gray-900"} mb-4`,children:(r==null?void 0:r.title)||"Frequently Asked Questions"}),a.jsx("p",{className:`text-lg ${t?"text-gray-300":"text-gray-600"} leading-relaxed font-medium`,children:(r==null?void 0:r.subtitle)||"Got questions? We've got answers. If you can't find what you're looking for, feel free to contact our support team."})]}),a.jsx("div",{className:"space-y-2 sm:space-y-3",children:x.map(e=>a.jsxs("div",{className:`${t?"bg-gray-800 border-gray-700":"bg-gray-50 border-gray-200"} border rounded-lg`,children:[a.jsxs("button",{onClick:()=>h(e.id),className:`w-full px-6 py-4 text-left flex justify-between items-center ${t?"hover:bg-gray-700":"hover:bg-gray-100"} transition-colors`,"aria-expanded":o===e.id,"aria-controls":`faq-answer-${e.id}`,"aria-describedby":`faq-question-${e.id}`,children:[a.jsx("h3",{className:`text-lg font-semibold ${t?"text-white":"text-gray-900"} pr-4`,id:`faq-question-${e.id}`,children:e.question}),o===e.id?a.jsx(j,{className:`w-5 h-5 ${t?"text-gray-400":"text-gray-600"} flex-shrink-0`,"aria-hidden":"true"}):a.jsx(k,{className:`w-5 h-5 ${t?"text-gray-400":"text-gray-600"} flex-shrink-0`,"aria-hidden":"true"})]}),o===e.id&&a.jsx("div",{className:`px-6 pb-4 border-t ${t?"border-gray-700":"border-gray-200"}`,id:`faq-answer-${e.id}`,role:"region","aria-labelledby":`faq-question-${e.id}`,children:a.jsx("p",{className:`${t?"text-gray-300":"text-gray-600"} leading-relaxed pt-4`,children:e.answer})})]},e.id))}),((r==null?void 0:r.cta_text)||(r==null?void 0:r.button_text))&&a.jsxs("div",{className:"text-center mt-8 sm:mt-12",children:[a.jsx("p",{className:`${t?"text-gray-300":"text-gray-600"} mb-4`,children:(r==null?void 0:r.cta_text)||"Still have questions?"}),a.jsx("a",{href:"#contact",className:"inline-flex items-center gap-2 px-6 py-3 rounded-lg transition-all font-semibold border",style:{backgroundColor:s,color:"white",borderColor:s},onMouseEnter:e=>{e.currentTarget.style.backgroundColor="white",e.currentTarget.style.color=s},onMouseLeave:e=>{e.currentTarget.style.backgroundColor=s,e.currentTarget.style.color="white"},children:(r==null?void 0:r.button_text)||"Contact Support"})]})]})})}export{H as default}; diff --git a/public/build/assets/FaqSection-DL-2xXKC.js b/public/build/assets/FaqSection-DL-2xXKC.js deleted file mode 100644 index 06ee88380..000000000 --- a/public/build/assets/FaqSection-DL-2xXKC.js +++ /dev/null @@ -1 +0,0 @@ -import{r as f,j as t}from"./ui-Z445SNHD.js";import{c as b,O as w,Q as v}from"./app-RVic1vq7.js";import{a as j,C as k}from"./chevron-up-4lsjCLxN.js";import"./utils-BWxnHGCV.js";function R({faqs:o,settings:N,sectionData:r,brandColor:a="#3b82f6"}){var d,g;const[n,p]=f.useState(null),{props:i}=b(),u=w(i);let l="light";if(u){const e=v("themeSettings");if(e)try{l=JSON.parse(e).appearance||"light"}catch{l="light"}}else l=((d=i.globalSettings)==null?void 0:d.themeMode)||"light";const s=l==="dark",c=[{id:1,question:"How does HRM work?",answer:"HRM is an all-in-one HR platform that helps you manage employees, payroll, attendance, recruitment, and performance efficiently."},{id:2,question:"Can I automate payroll and leave tracking?",answer:"Yes! HRM allows you to automate payroll calculations, generate payslips, and track employee leaves and attendance seamlessly."},{id:3,question:"Is my employee data secure?",answer:"Absolutely. HRM uses enterprise-grade security measures to keep all sensitive HR data safe and confidential."},{id:4,question:"Can I manage recruitment and onboarding?",answer:"Yes, HRM provides applicant tracking, interview management, and digital onboarding tools to simplify hiring."},{id:5,question:"Does HRM support performance evaluations?",answer:"Yes, you can set goals, track KPIs, and run performance reviews directly within the platform."},{id:6,question:"Can HRM generate HR reports?",answer:"HRM offers advanced analytics and reporting features to give insights on attendance, payroll, and workforce performance."},{id:7,question:"What plans are available and can I upgrade anytime?",answer:"We offer flexible plans for different team sizes. You can start with the free plan and upgrade as your organization grows."}],x=((g=r==null?void 0:r.faqs)==null?void 0:g.map((e,m)=>({id:m+1,...e})))||c,y=o.length>0?o:x,h=e=>{p(n===e?null:e)};return t.jsx("section",{className:`py-12 sm:py-16 lg:py-20 ${s?"bg-gray-900":"bg-white"}`,children:t.jsxs("div",{className:"max-w-4xl mx-auto px-4 sm:px-6 lg:px-8",children:[t.jsxs("div",{className:"text-center mb-8 sm:mb-12 lg:mb-16",children:[t.jsx("h2",{className:`text-3xl md:text-4xl font-bold ${s?"text-white":"text-gray-900"} mb-4`,children:(r==null?void 0:r.title)||"Frequently Asked Questions"}),t.jsx("p",{className:`text-lg ${s?"text-gray-300":"text-gray-600"} leading-relaxed font-medium`,children:(r==null?void 0:r.subtitle)||"Got questions? We've got answers. If you can't find what you're looking for, feel free to contact our support team."})]}),t.jsx("div",{className:"space-y-2 sm:space-y-3",children:y.map(e=>t.jsxs("div",{className:`${s?"bg-gray-800 border-gray-700":"bg-gray-50 border-gray-200"} border rounded-lg`,children:[t.jsxs("button",{onClick:()=>h(e.id),className:`w-full px-6 py-4 text-left flex justify-between items-center ${s?"hover:bg-gray-700":"hover:bg-gray-100"} transition-colors`,"aria-expanded":n===e.id,"aria-controls":`faq-answer-${e.id}`,"aria-describedby":`faq-question-${e.id}`,children:[t.jsx("h3",{className:`text-lg font-semibold ${s?"text-white":"text-gray-900"} pr-4`,id:`faq-question-${e.id}`,children:e.question}),n===e.id?t.jsx(j,{className:`w-5 h-5 ${s?"text-gray-400":"text-gray-600"} flex-shrink-0`,"aria-hidden":"true"}):t.jsx(k,{className:`w-5 h-5 ${s?"text-gray-400":"text-gray-600"} flex-shrink-0`,"aria-hidden":"true"})]}),n===e.id&&t.jsx("div",{className:`px-6 pb-4 border-t ${s?"border-gray-700":"border-gray-200"}`,id:`faq-answer-${e.id}`,role:"region","aria-labelledby":`faq-question-${e.id}`,children:t.jsx("p",{className:`${s?"text-gray-300":"text-gray-600"} leading-relaxed pt-4`,children:e.answer})})]},e.id))}),((r==null?void 0:r.cta_text)||(r==null?void 0:r.button_text))&&t.jsxs("div",{className:"text-center mt-8 sm:mt-12",children:[t.jsx("p",{className:`${s?"text-gray-300":"text-gray-600"} mb-4`,children:(r==null?void 0:r.cta_text)||"Still have questions?"}),t.jsx("a",{href:"#contact",className:"inline-flex items-center gap-2 px-6 py-3 rounded-lg transition-all font-semibold border",style:{backgroundColor:a,color:"white",borderColor:a},onMouseEnter:e=>{e.currentTarget.style.backgroundColor="white",e.currentTarget.style.color=a},onMouseLeave:e=>{e.currentTarget.style.backgroundColor=a,e.currentTarget.style.color="white"},children:(r==null?void 0:r.button_text)||"Contact Support"})]})]})})}export{R as default}; diff --git a/public/build/assets/FeaturesSection-0hdL9niF.js b/public/build/assets/FeaturesSection-0hdL9niF.js new file mode 100644 index 000000000..727ed4576 --- /dev/null +++ b/public/build/assets/FeaturesSection-0hdL9niF.js @@ -0,0 +1 @@ +import{j as e}from"./ui-Z445SNHD.js";import{u as w}from"./useScrollAnimation-B_bDsIuD.js";import{u as b}from"./app-36WMjvX0.js";import{C as j}from"./chart-no-axes-column-BKgkVzqT.js";import{A as v}from"./award-D9FlSYzB.js";import{U as N}from"./user-plus-C-0nSlHG.js";import{C as k}from"./clock-Cfp0CYjJ.js";import{D as S}from"./dollar-sign-CFqWGHdB.js";import{H as $,S as C}from"./shield-Mt6vEHxn.js";import{W as A,S as I}from"./wifi-CFyF5qct.js";import{L as U}from"./lock-RX1hYn48.js";import{U as M}from"./users-Czs1F8XM.js";import{Z as E}from"./zap-D4fS-tPu.js";import{S as R}from"./star-WlheM7sI.js";import{G as _}from"./globe-ZoJAuRB5.js";import{C as G}from"./chart-column-GeSBJr5Y.js";import{S as H}from"./smartphone-BQ_9x4vN.js";import{Q as c}from"./qr-code-u5AOBzVe.js";import"./utils-BWxnHGCV.js";const x={"qr-code":c,smartphone:H,share:I,"bar-chart":G,globe:_,shield:C,star:R,zap:E,users:M,lock:U,wifi:A,heart:$,"dollar-sign":S,clock:k,"user-plus":N,award:v,"bar-chart-2":j};function re({settings:P,sectionData:a,brandColor:r="#3b82f6"}){const{t:s}=b(),{ref:u,isVisible:n}=w(),h=(t=>t?t.startsWith("http")?t:`${window.appSettings.imageUrl}${t}`:null)(a.image),y=a.background_color||"#f9fafb",o=a.columns||3,d=a.layout||"grid",m=a.show_icons!==!1,f=[{icon:"users",title:s("Employee Management"),description:s("Centralized profiles with personal, job, and document details. Perfect for business cards, flyers, and networking events.")},{icon:"dollar-sign",title:s("Payroll Automation"),description:s("Generate accurate payslips with tax, allowances, and deductions. Modern networking made simple and professional.")},{icon:"share",title:s("Easy Sharing"),description:s("Share your digital card via email, SMS, social media, or direct links. Multiple sharing options available.")},{icon:"clock",title:s("Leave & Attendance"),description:s("Smart tracking of leaves, shifts, and attendance logs. Understand how your network interacts with your card.")},{icon:"user-plus",title:s("Recruitment & Onboarding"),description:s("Streamline hiring with applicant tracking and digital onboarding.")},{icon:"award",title:s("Performance Management"),description:s("Set goals, run evaluations, and track employee growth.")},{icon:"bar-chart-2",title:s("Reports & Analytics"),description:s("Get actionable insights on workforce productivity and HR metrics.")}],p=a.features_list&&a.features_list.length>0?a.features_list:f;return e.jsx("section",{id:"features",className:"py-12 sm:py-16 lg:py-20",style:{backgroundColor:y},ref:u,children:e.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[e.jsxs("div",{className:`text-center mb-8 sm:mb-12 lg:mb-16 transition-all duration-700 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:[e.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:a.title||s("Empowering Businesses with Smart HR Solutions")}),e.jsx("p",{className:"text-lg text-gray-600 max-w-3xl mx-auto leading-relaxed font-medium",children:a.description||s("All-in-one platform to manage employees, payroll, attendance, and performance with ease. Built for professionals who value efficiency and innovation.")})]}),h&&e.jsx("div",{className:"mb-8 sm:mb-12 text-center",children:e.jsx("img",{src:h,alt:"Features",className:"max-w-full h-auto rounded-xl shadow-lg mx-auto"})}),d==="grid"&&e.jsx("div",{className:`grid grid-cols-1 ${o>=2?"sm:grid-cols-2":""} ${o>=3?"lg:grid-cols-3":""} ${o>=4?"xl:grid-cols-4":""} gap-6 sm:gap-8 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:p.map((t,i)=>{const l=x[t.icon]||c;return e.jsxs("div",{className:"bg-white p-8 rounded-xl border border-gray-200 hover:border-gray-300 hover:shadow-lg transition-all duration-200",children:[m&&e.jsx("div",{className:"w-12 h-12 rounded-lg flex items-center justify-center mb-6",style:{backgroundColor:`${r}15`},children:e.jsx(l,{className:"w-6 h-6",style:{color:r}})}),e.jsx("h3",{className:"text-xl font-bold text-gray-900 mb-4",children:t.title}),e.jsx("p",{className:"text-gray-600 leading-relaxed",children:t.description})]},i)})}),d==="list"&&e.jsx("div",{className:`space-y-4 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:p.map((t,i)=>{const l=x[t.icon]||c;return e.jsxs("div",{className:"bg-white p-6 rounded-xl border border-gray-200 hover:border-gray-300 hover:shadow-md transition-all duration-200 flex items-start gap-5",children:[m&&e.jsx("div",{className:"w-12 h-12 rounded-lg flex-shrink-0 flex items-center justify-center",style:{backgroundColor:`${r}15`},children:e.jsx(l,{className:"w-6 h-6",style:{color:r}})}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-lg font-bold text-gray-900 mb-1",children:t.title}),e.jsx("p",{className:"text-gray-600 leading-relaxed",children:t.description})]})]},i)})}),d==="cards"&&e.jsx("div",{className:`grid grid-cols-1 ${o>=2?"sm:grid-cols-2":""} ${o>=3?"lg:grid-cols-3":""} ${o>=4?"xl:grid-cols-4":""} gap-6 sm:gap-8 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:p.map((t,i)=>{const l=x[t.icon]||c;return e.jsxs("div",{className:"bg-white rounded-xl shadow-md hover:shadow-xl transition-all duration-200 overflow-hidden",children:[e.jsx("div",{className:"h-2 w-full",style:{backgroundColor:r}}),e.jsxs("div",{className:"p-6",children:[m&&e.jsx("div",{className:"w-14 h-14 rounded-full flex items-center justify-center mb-4",style:{backgroundColor:`${r}15`},children:e.jsx(l,{className:"w-7 h-7",style:{color:r}})}),e.jsx("h3",{className:"text-lg font-bold text-gray-900 mb-2",children:t.title}),e.jsx("p",{className:"text-gray-600 text-sm leading-relaxed",children:t.description})]})]},i)})}),d==="alternating"&&e.jsx("div",{className:`space-y-6 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:p.map((t,i)=>{const l=x[t.icon]||c,g=i%2===0;return e.jsxs("div",{className:`flex flex-col lg:flex-row items-center gap-6 bg-white/15 backdrop-blur-sm border border-white/25 rounded-2xl p-6 hover:bg-white/25 transition-all duration-200 ${g?"":"lg:flex-row-reverse"}`,children:[m&&e.jsx("div",{className:"flex-shrink-0 w-16 h-16 rounded-xl flex items-center justify-center shadow-md",style:{backgroundColor:r},children:e.jsx(l,{className:"w-8 h-8 text-white"})}),e.jsxs("div",{className:`flex-1 ${g?"":"lg:text-right"}`,children:[e.jsx("h3",{className:"text-xl font-bold text-white mb-2",children:t.title}),e.jsx("p",{className:"text-white/80 leading-relaxed",children:t.description})]})]},i)})})]})})}export{re as default}; diff --git a/public/build/assets/FeaturesSection-C5hkDopy.js b/public/build/assets/FeaturesSection-C5hkDopy.js deleted file mode 100644 index 8b0001162..000000000 --- a/public/build/assets/FeaturesSection-C5hkDopy.js +++ /dev/null @@ -1 +0,0 @@ -import{j as e}from"./ui-Z445SNHD.js";import{u as w}from"./useScrollAnimation-B_bDsIuD.js";import{u as b}from"./app-RVic1vq7.js";import{C as j}from"./chart-no-axes-column-C67ZvtHS.js";import{A as v}from"./award-DdKhPYhN.js";import{U as N}from"./user-plus-Cyxy6etZ.js";import{C as k}from"./clock-C1lsr9DR.js";import{D as S}from"./dollar-sign-J2-mWTUa.js";import{H as $,S as C}from"./shield-C1i2T0qg.js";import{W as A,S as I,a as U}from"./wifi-C4JTubMm.js";import{L as M}from"./lock-Q7vaQUSs.js";import{U as E}from"./users-Ddnzs7d-.js";import{Z as R}from"./zap-DqlsE_2h.js";import{S as _}from"./star-tLExGzJz.js";import{G}from"./globe-DGYT8gkU.js";import{C as H}from"./chart-column-Bv7DuSwC.js";import{Q as c}from"./qr-code-B6DSxDkT.js";import"./utils-BWxnHGCV.js";const p={"qr-code":c,smartphone:U,share:I,"bar-chart":H,globe:G,shield:C,star:_,zap:R,users:E,lock:M,wifi:A,heart:$,"dollar-sign":S,clock:k,"user-plus":N,award:v,"bar-chart-2":j};function ae({settings:P,sectionData:a,brandColor:r="#3b82f6"}){const{t}=b(),{ref:u,isVisible:n}=w(),h=(s=>s?s.startsWith("http")?s:`${window.appSettings.imageUrl}${s}`:null)(a.image),y=a.background_color||"#f9fafb",o=a.columns||3,d=a.layout||"grid",m=a.show_icons!==!1,f=[{icon:"users",title:t("Employee Management"),description:t("Centralized profiles with personal, job, and document details. Perfect for business cards, flyers, and networking events.")},{icon:"dollar-sign",title:t("Payroll Automation"),description:t("Generate accurate payslips with tax, allowances, and deductions. Modern networking made simple and professional.")},{icon:"share",title:t("Easy Sharing"),description:t("Share your digital card via email, SMS, social media, or direct links. Multiple sharing options available.")},{icon:"clock",title:t("Leave & Attendance"),description:t("Smart tracking of leaves, shifts, and attendance logs. Understand how your network interacts with your card.")},{icon:"user-plus",title:t("Recruitment & Onboarding"),description:t("Streamline hiring with applicant tracking and digital onboarding.")},{icon:"award",title:t("Performance Management"),description:t("Set goals, run evaluations, and track employee growth.")},{icon:"bar-chart-2",title:t("Reports & Analytics"),description:t("Get actionable insights on workforce productivity and HR metrics.")}],x=a.features_list&&a.features_list.length>0?a.features_list:f;return e.jsx("section",{id:"features",className:"py-12 sm:py-16 lg:py-20",style:{backgroundColor:y},ref:u,children:e.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[e.jsxs("div",{className:`text-center mb-8 sm:mb-12 lg:mb-16 transition-all duration-700 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:[e.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:a.title||t("Empowering Businesses with Smart HR Solutions")}),e.jsx("p",{className:"text-lg text-gray-600 max-w-3xl mx-auto leading-relaxed font-medium",children:a.description||t("All-in-one platform to manage employees, payroll, attendance, and performance with ease. Built for professionals who value efficiency and innovation.")})]}),h&&e.jsx("div",{className:"mb-8 sm:mb-12 text-center",children:e.jsx("img",{src:h,alt:"Features",className:"max-w-full h-auto rounded-xl shadow-lg mx-auto"})}),d==="grid"&&e.jsx("div",{className:`grid grid-cols-1 ${o>=2?"sm:grid-cols-2":""} ${o>=3?"lg:grid-cols-3":""} ${o>=4?"xl:grid-cols-4":""} gap-6 sm:gap-8 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:x.map((s,i)=>{const l=p[s.icon]||c;return e.jsxs("div",{className:"bg-white p-8 rounded-xl border border-gray-200 hover:border-gray-300 hover:shadow-lg transition-all duration-200",children:[m&&e.jsx("div",{className:"w-12 h-12 rounded-lg flex items-center justify-center mb-6",style:{backgroundColor:`${r}15`},children:e.jsx(l,{className:"w-6 h-6",style:{color:r}})}),e.jsx("h3",{className:"text-xl font-bold text-gray-900 mb-4",children:s.title}),e.jsx("p",{className:"text-gray-600 leading-relaxed",children:s.description})]},i)})}),d==="list"&&e.jsx("div",{className:`space-y-4 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:x.map((s,i)=>{const l=p[s.icon]||c;return e.jsxs("div",{className:"bg-white p-6 rounded-xl border border-gray-200 hover:border-gray-300 hover:shadow-md transition-all duration-200 flex items-start gap-5",children:[m&&e.jsx("div",{className:"w-12 h-12 rounded-lg flex-shrink-0 flex items-center justify-center",style:{backgroundColor:`${r}15`},children:e.jsx(l,{className:"w-6 h-6",style:{color:r}})}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-lg font-bold text-gray-900 mb-1",children:s.title}),e.jsx("p",{className:"text-gray-600 leading-relaxed",children:s.description})]})]},i)})}),d==="cards"&&e.jsx("div",{className:`grid grid-cols-1 ${o>=2?"sm:grid-cols-2":""} ${o>=3?"lg:grid-cols-3":""} ${o>=4?"xl:grid-cols-4":""} gap-6 sm:gap-8 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:x.map((s,i)=>{const l=p[s.icon]||c;return e.jsxs("div",{className:"bg-white rounded-xl shadow-md hover:shadow-xl transition-all duration-200 overflow-hidden",children:[e.jsx("div",{className:"h-2 w-full",style:{backgroundColor:r}}),e.jsxs("div",{className:"p-6",children:[m&&e.jsx("div",{className:"w-14 h-14 rounded-full flex items-center justify-center mb-4",style:{backgroundColor:`${r}15`},children:e.jsx(l,{className:"w-7 h-7",style:{color:r}})}),e.jsx("h3",{className:"text-lg font-bold text-gray-900 mb-2",children:s.title}),e.jsx("p",{className:"text-gray-600 text-sm leading-relaxed",children:s.description})]})]},i)})}),d==="alternating"&&e.jsx("div",{className:`space-y-6 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:x.map((s,i)=>{const l=p[s.icon]||c,g=i%2===0;return e.jsxs("div",{className:`flex flex-col lg:flex-row items-center gap-6 bg-white/15 backdrop-blur-sm border border-white/25 rounded-2xl p-6 hover:bg-white/25 transition-all duration-200 ${g?"":"lg:flex-row-reverse"}`,children:[m&&e.jsx("div",{className:"flex-shrink-0 w-16 h-16 rounded-xl flex items-center justify-center shadow-md",style:{backgroundColor:r},children:e.jsx(l,{className:"w-8 h-8 text-white"})}),e.jsxs("div",{className:`flex-1 ${g?"":"lg:text-right"}`,children:[e.jsx("h3",{className:"text-xl font-bold text-white mb-2",children:s.title}),e.jsx("p",{className:"text-white/80 leading-relaxed",children:s.description})]})]},i)})})]})})}export{ae as default}; diff --git a/public/build/assets/Footer-DmSr40Af.js b/public/build/assets/Footer-DmSr40Af.js new file mode 100644 index 000000000..2ae4d9db0 --- /dev/null +++ b/public/build/assets/Footer-DmSr40Af.js @@ -0,0 +1 @@ +import{j as e}from"./ui-Z445SNHD.js";import{u as T,c as C,b as k,d as I,g as M,t as n}from"./app-36WMjvX0.js";import{M as E}from"./mail-BFoS8U8W.js";import{P as R}from"./phone-CJ2h446N.js";import{M as S}from"./map-pin-L7jUebKz.js";import{I as A,F as y}from"./instagram-DBjFHIT7.js";import{L as H,T as $}from"./twitter-DDHYm63p.js";import"./utils-BWxnHGCV.js";function K({settings:i,sectionData:t={},brandColor:j="#3b82f6"}){var h,p,f,u;const{t:r}=T(),{globalSettings:a}=C().props,b=new Date().getFullYear();a!=null&&a.themeMode;const N=(a==null?void 0:a.logoLight)||"logo/logo-light.png";a!=null&&a.logoDark;const{data:w,setData:v,post:_,processing:o,errors:d,reset:P}=k({email:""}),L=s=>{s.preventDefault(),n.loading(r("Subscribing to newsletter...")),_(route("landing-page.subscribe"),{onSuccess:l=>{var g;P(),n.dismiss();const m=((g=l.props)==null?void 0:g.flash)||{};m.success?n.success(r(m.success)):m.error&&n.error(r(m.error))},onError:l=>{n.dismiss(),typeof l=="string"?n.error(r(l)):n.error(r("Failed to subscribe: {{errors}}",{errors:Object.values(l).join(", ")}))}})},c=t.links||{product:[{name:"Features",href:"#features"},{name:"Pricing",href:"#pricing"},{name:"Templates",href:"#"},{name:"Integrations",href:"#"}],company:[{name:"About Us",href:"#about"},{name:"Careers",href:"#"},{name:"Press",href:"#"},{name:"Contact",href:"#contact"}],support:[{name:"Help Center",href:"#"},{name:"Documentation",href:"#"},{name:"API Reference",href:"#"},{name:"Status",href:"#"}],legal:[{name:"Privacy Policy",href:"#"},{name:"Terms of Service",href:"#"},{name:"Cookie Policy",href:"#"},{name:"GDPR",href:"#"}]},F={Facebook:y,Twitter:$,Linkedin:H,Instagram:A},x=t.social_links||[{name:"Facebook",icon:"Facebook",href:"#"},{name:"Twitter",icon:"Twitter",href:"#"},{name:"LinkedIn",icon:"LinkedIn",href:"#"}];return e.jsx("footer",{className:"bg-gray-900 text-white",children:e.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[e.jsx("div",{className:"py-12 sm:py-16",children:e.jsxs("div",{className:"grid lg:grid-cols-6 gap-8 sm:gap-12",children:[e.jsxs("div",{className:"lg:col-span-2",children:[e.jsxs(I,{href:"/",className:"flex items-center mb-6 hover:opacity-80 transition-opacity",children:[e.jsx("img",{src:M(N),alt:i.company_name,className:"h-8 w-auto",onError:s=>{var l;s.currentTarget.style.display="none",(l=s.currentTarget.nextElementSibling)==null||l.classList.remove("hidden")}}),e.jsx("span",{className:"hidden text-2xl font-bold text-white",children:i.company_name})]}),e.jsx("p",{className:"text-gray-400 mb-8 leading-relaxed",children:t.description||r("Simplifying HR management with an all-in-one modern platform. Connect, share, and grow your network effortlessly.")}),e.jsxs("div",{className:"space-y-3",children:[e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx(E,{className:"w-4 h-4 text-gray-400"}),e.jsx("span",{className:"text-gray-400 text-sm",children:i.contact_email})]}),e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx(R,{className:"w-4 h-4 text-gray-400"}),e.jsx("span",{className:"text-gray-400 text-sm",children:i.contact_phone})]}),e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx(S,{className:"w-4 h-4 text-gray-400"}),e.jsx("span",{className:"text-gray-400 text-sm",children:i.contact_address})]})]})]}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-white font-semibold mb-4",children:((h=t.section_titles)==null?void 0:h.product)||r("Product")}),e.jsx("ul",{className:"space-y-3",children:(c.product||[]).map(s=>e.jsx("li",{children:e.jsx("a",{href:s.href,className:"text-gray-400 hover:text-white transition-colors text-sm",children:s.name})},s.name))})]}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-white font-semibold mb-4",children:((p=t.section_titles)==null?void 0:p.company)||r("Company")}),e.jsx("ul",{className:"space-y-3",children:(c.company||[]).map(s=>e.jsx("li",{children:e.jsx("a",{href:s.href,className:"text-gray-400 hover:text-white transition-colors text-sm",children:s.name})},s.name))})]}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-white font-semibold mb-4",children:((f=t.section_titles)==null?void 0:f.support)||r("Support")}),e.jsx("ul",{className:"space-y-3",children:(c.support||[]).map(s=>e.jsx("li",{children:e.jsx("a",{href:s.href,className:"text-gray-400 hover:text-white transition-colors text-sm",children:s.name})},s.name))})]}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-white font-semibold mb-4",children:((u=t.section_titles)==null?void 0:u.legal)||r("Legal")}),e.jsx("ul",{className:"space-y-3",children:(c.legal||[]).map(s=>e.jsx("li",{children:e.jsx("a",{href:s.href,className:"text-gray-400 hover:text-white transition-colors text-sm",children:s.name})},s.name))})]})]})}),(t.newsletter_title||t.newsletter_subtitle)&&e.jsx("div",{className:"border-t border-gray-800 py-8 sm:py-12",children:e.jsxs("div",{className:"text-center max-w-2xl mx-auto",children:[e.jsx("h3",{className:"text-xl font-bold text-white mb-4",children:t.newsletter_title||r("Stay Updated with Our Latest Features")}),e.jsx("p",{className:"text-gray-400 mb-6",children:t.newsletter_subtitle||r("Join our newsletter for HR tips and product updates")}),e.jsxs("form",{onSubmit:L,className:"flex flex-col sm:flex-row gap-4 max-w-md mx-auto",children:[e.jsxs("div",{className:"flex-1",children:[e.jsx("input",{type:"email",value:w.email,onChange:s=>v("email",s.target.value),placeholder:r("Enter your email"),className:"w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg text-white placeholder-gray-400 focus:ring-2 focus:ring-gray-600 focus:border-gray-600 disabled:opacity-50 disabled:cursor-not-allowed",required:!0,disabled:o}),d.email&&e.jsx("p",{className:"text-red-400 text-sm mt-1",children:d.email})]}),e.jsxs("button",{type:"submit",disabled:o,className:"cursor-pointer text-white px-6 py-3 rounded-lg transition-colors font-semibold disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center gap-2 min-w-[120px]",style:{backgroundColor:j},children:[o&&e.jsx("div",{className:"w-4 h-4 border-2 border-white border-t-transparent rounded-full animate-spin"}),r(o?"Subscribing...":"Subscribe")]})]})]})}),e.jsx("div",{className:"border-t border-gray-800 py-4 sm:py-6",children:e.jsxs("div",{className:"flex flex-col md:flex-row justify-between items-center gap-3 sm:gap-4",children:[e.jsx("div",{className:"text-gray-400 text-sm",children:(a==null?void 0:a.footerText)||`© ${b} ${i.company_name}. ${r("All rights reserved.")}.`}),x.length>0&&e.jsxs("div",{className:"flex items-center gap-4",children:[e.jsx("span",{className:"text-gray-400 text-sm",children:r("Follow us:")}),e.jsx("div",{className:"flex gap-3",children:x.map(s=>{const l=F[s.icon]||y;return e.jsx("a",{href:s.href,className:"w-8 h-8 bg-gray-800 rounded-lg flex items-center justify-center hover:bg-gray-700 transition-colors","aria-label":s.name,children:e.jsx(l,{className:"w-4 h-4 text-gray-400"})},s.name)})})]})]})})]})})}export{K as default}; diff --git a/public/build/assets/Footer-d5_fkQzk.js b/public/build/assets/Footer-d5_fkQzk.js deleted file mode 100644 index 47d094232..000000000 --- a/public/build/assets/Footer-d5_fkQzk.js +++ /dev/null @@ -1 +0,0 @@ -import{j as e}from"./ui-Z445SNHD.js";import{u as L,c as F,b as T,d as C,g as k,t as n}from"./app-RVic1vq7.js";import{M as I}from"./mail-DxJUXCTJ.js";import{P as M}from"./phone-D9_s8Psh.js";import{M as E}from"./map-pin-B07wXHBN.js";import{I as R,F as u}from"./instagram-tLnKPn8z.js";import{L as S,T as A}from"./twitter-HpMmG4Rd.js";import"./utils-BWxnHGCV.js";function z({settings:i,sectionData:l={},brandColor:g="#3b82f6"}){var x,h,p,f;const{t:r}=L(),{globalSettings:t}=F().props,y=new Date().getFullYear();t!=null&&t.themeMode;const j=(t==null?void 0:t.logoLight)||"logo/logo-light.png";t!=null&&t.logoDark;const{data:b,setData:N,post:w,processing:o,errors:m,reset:v}=T({email:""}),_=s=>{s.preventDefault(),n.loading(r("Subscribing to newsletter...")),w(route("landing-page.subscribe"),{onSuccess:a=>{v(),n.dismiss(),a.props.flash.success?n.success(r(a.props.flash.success)):a.props.flash.error&&n.error(r(a.props.flash.error))},onError:a=>{n.dismiss(),typeof a=="string"?n.error(r(a)):n.error(r("Failed to subscribe: {{errors}}",{errors:Object.values(a).join(", ")}))}})},c=l.links||{product:[{name:"Features",href:"#features"},{name:"Pricing",href:"#pricing"},{name:"Templates",href:"#"},{name:"Integrations",href:"#"}],company:[{name:"About Us",href:"#about"},{name:"Careers",href:"#"},{name:"Press",href:"#"},{name:"Contact",href:"#contact"}],support:[{name:"Help Center",href:"#"},{name:"Documentation",href:"#"},{name:"API Reference",href:"#"},{name:"Status",href:"#"}],legal:[{name:"Privacy Policy",href:"#"},{name:"Terms of Service",href:"#"},{name:"Cookie Policy",href:"#"},{name:"GDPR",href:"#"}]},P={Facebook:u,Twitter:A,Linkedin:S,Instagram:R},d=l.social_links||[{name:"Facebook",icon:"Facebook",href:"#"},{name:"Twitter",icon:"Twitter",href:"#"},{name:"LinkedIn",icon:"LinkedIn",href:"#"}];return e.jsx("footer",{className:"bg-gray-900 text-white",children:e.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[e.jsx("div",{className:"py-12 sm:py-16",children:e.jsxs("div",{className:"grid lg:grid-cols-6 gap-8 sm:gap-12",children:[e.jsxs("div",{className:"lg:col-span-2",children:[e.jsxs(C,{href:"/",className:"flex items-center mb-6 hover:opacity-80 transition-opacity",children:[e.jsx("img",{src:k(j),alt:i.company_name,className:"h-8 w-auto",onError:s=>{var a;s.currentTarget.style.display="none",(a=s.currentTarget.nextElementSibling)==null||a.classList.remove("hidden")}}),e.jsx("span",{className:"hidden text-2xl font-bold text-white",children:i.company_name})]}),e.jsx("p",{className:"text-gray-400 mb-8 leading-relaxed",children:l.description||r("Simplifying HR management with an all-in-one modern platform. Connect, share, and grow your network effortlessly.")}),e.jsxs("div",{className:"space-y-3",children:[e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx(I,{className:"w-4 h-4 text-gray-400"}),e.jsx("span",{className:"text-gray-400 text-sm",children:i.contact_email})]}),e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx(M,{className:"w-4 h-4 text-gray-400"}),e.jsx("span",{className:"text-gray-400 text-sm",children:i.contact_phone})]}),e.jsxs("div",{className:"flex items-center gap-3",children:[e.jsx(E,{className:"w-4 h-4 text-gray-400"}),e.jsx("span",{className:"text-gray-400 text-sm",children:i.contact_address})]})]})]}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-white font-semibold mb-4",children:((x=l.section_titles)==null?void 0:x.product)||r("Product")}),e.jsx("ul",{className:"space-y-3",children:(c.product||[]).map(s=>e.jsx("li",{children:e.jsx("a",{href:s.href,className:"text-gray-400 hover:text-white transition-colors text-sm",children:s.name})},s.name))})]}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-white font-semibold mb-4",children:((h=l.section_titles)==null?void 0:h.company)||r("Company")}),e.jsx("ul",{className:"space-y-3",children:(c.company||[]).map(s=>e.jsx("li",{children:e.jsx("a",{href:s.href,className:"text-gray-400 hover:text-white transition-colors text-sm",children:s.name})},s.name))})]}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-white font-semibold mb-4",children:((p=l.section_titles)==null?void 0:p.support)||r("Support")}),e.jsx("ul",{className:"space-y-3",children:(c.support||[]).map(s=>e.jsx("li",{children:e.jsx("a",{href:s.href,className:"text-gray-400 hover:text-white transition-colors text-sm",children:s.name})},s.name))})]}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-white font-semibold mb-4",children:((f=l.section_titles)==null?void 0:f.legal)||r("Legal")}),e.jsx("ul",{className:"space-y-3",children:(c.legal||[]).map(s=>e.jsx("li",{children:e.jsx("a",{href:s.href,className:"text-gray-400 hover:text-white transition-colors text-sm",children:s.name})},s.name))})]})]})}),(l.newsletter_title||l.newsletter_subtitle)&&e.jsx("div",{className:"border-t border-gray-800 py-8 sm:py-12",children:e.jsxs("div",{className:"text-center max-w-2xl mx-auto",children:[e.jsx("h3",{className:"text-xl font-bold text-white mb-4",children:l.newsletter_title||r("Stay Updated with Our Latest Features")}),e.jsx("p",{className:"text-gray-400 mb-6",children:l.newsletter_subtitle||r("Join our newsletter for HR tips and product updates")}),e.jsxs("form",{onSubmit:_,className:"flex flex-col sm:flex-row gap-4 max-w-md mx-auto",children:[e.jsxs("div",{className:"flex-1",children:[e.jsx("input",{type:"email",value:b.email,onChange:s=>N("email",s.target.value),placeholder:r("Enter your email"),className:"w-full px-4 py-3 bg-gray-800 border border-gray-700 rounded-lg text-white placeholder-gray-400 focus:ring-2 focus:ring-gray-600 focus:border-gray-600 disabled:opacity-50 disabled:cursor-not-allowed",required:!0,disabled:o}),m.email&&e.jsx("p",{className:"text-red-400 text-sm mt-1",children:m.email})]}),e.jsxs("button",{type:"submit",disabled:o,className:"cursor-pointer text-white px-6 py-3 rounded-lg transition-colors font-semibold disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center gap-2 min-w-[120px]",style:{backgroundColor:g},children:[o&&e.jsx("div",{className:"w-4 h-4 border-2 border-white border-t-transparent rounded-full animate-spin"}),r(o?"Subscribing...":"Subscribe")]})]})]})}),e.jsx("div",{className:"border-t border-gray-800 py-4 sm:py-6",children:e.jsxs("div",{className:"flex flex-col md:flex-row justify-between items-center gap-3 sm:gap-4",children:[e.jsx("div",{className:"text-gray-400 text-sm",children:(t==null?void 0:t.footerText)||`© ${y} ${i.company_name}. ${r("All rights reserved.")}.`}),d.length>0&&e.jsxs("div",{className:"flex items-center gap-4",children:[e.jsx("span",{className:"text-gray-400 text-sm",children:r("Follow us:")}),e.jsx("div",{className:"flex gap-3",children:d.map(s=>{const a=P[s.icon]||u;return e.jsx("a",{href:s.href,className:"w-8 h-8 bg-gray-800 rounded-lg flex items-center justify-center hover:bg-gray-700 transition-colors","aria-label":s.name,children:e.jsx(a,{className:"w-4 h-4 text-gray-400"})},s.name)})})]})]})})]})})}export{z as default}; diff --git a/public/build/assets/Header-12I_VVLn.js b/public/build/assets/Header-12I_VVLn.js deleted file mode 100644 index 72a32505d..000000000 --- a/public/build/assets/Header-12I_VVLn.js +++ /dev/null @@ -1 +0,0 @@ -import{r as b,j as r}from"./ui-Z445SNHD.js";import{u as C,c as H,O as I,Q as z,d as a,g as F,i as N,X as G}from"./app-RVic1vq7.js";import{M as P}from"./menu--0iaFc5V.js";import"./utils-BWxnHGCV.js";function X({settings:y,sectionData:s,customPages:w=[],brandColor:t="#3b82f6"}){var M;const{t:i}=C(),[u,h]=b.useState(!1),[p,T]=b.useState(!1),{props:g}=H(),j=(M=g.globalSettings)==null?void 0:M.is_saas,d=g.auth,x=g.globalSettings||{},E=I(g),L=x.logoLight||"logo/logo-light.png",S=x.logoDark||"logo/logo-dark.png";let m="light";if(E){const e=z("themeSettings");if(e)try{m=JSON.parse(e).appearance||"light"}catch{m="light"}}else m=x.themeMode||"light";const c=m==="dark";b.useEffect(()=>{const e=()=>{T(window.scrollY>20)};return window.addEventListener("scroll",e),()=>window.removeEventListener("scroll",e)},[]);const v=w.map(e=>({name:e.title,href:route("custom-page.show",e.slug)})),f=s==null?void 0:s.transparent,k=(s==null?void 0:s.background_color)||"#ffffff",O=(s==null?void 0:s.button_style)||"filled",o=(s==null?void 0:s.text_color)||""||(c?"#d1d5db":"#4b5563"),l=e=>O==="outline"?e?{backgroundColor:t,color:"white",borderColor:t}:{backgroundColor:"transparent",color:t,borderColor:t}:e?{backgroundColor:"white",color:t,borderColor:t}:{backgroundColor:t,color:"white",borderColor:t},$=()=>f?p?`bg-white/95 ${c?"dark:bg-gray-900/95":""} backdrop-blur-xl shadow-lg border-b border-gray-200/50 ${c?"dark:border-gray-700/50":""}`:"bg-transparent":p?`shadow-lg border-b border-gray-200/50 ${c?"dark:border-gray-700/50":""}`:"",_=()=>f?{}:{backgroundColor:k};return r.jsx("header",{className:`fixed top-0 left-0 right-0 z-50 transition-all duration-300 ${$()}`,style:_(),children:r.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[r.jsxs("div",{className:"flex justify-between items-center h-16",children:[r.jsx("div",{className:"flex-shrink-0",children:r.jsxs(a,{href:route("home"),className:"flex items-center",children:[r.jsx("img",{src:F(c?L:S),alt:y.company_name,className:"h-8 w-auto",onError:e=>{var n;e.currentTarget.style.display="none",(n=e.currentTarget.nextElementSibling)==null||n.classList.remove("hidden")}}),r.jsx("span",{className:`hidden text-2xl font-bold ${c?"text-white":"text-gray-900"} transition-colors`,children:y.company_name})]})}),r.jsxs("nav",{className:"hidden md:flex items-center space-x-8",role:"navigation","aria-label":"Main navigation",children:[r.jsxs(a,{href:route("home"),className:"text-sm font-medium transition-colors relative group",style:{color:o},onMouseEnter:e=>e.currentTarget.style.color=t,onMouseLeave:e=>e.currentTarget.style.color=o,children:[i("Home"),r.jsx("span",{className:"absolute -bottom-1 left-0 w-0 h-0.5 transition-all group-hover:w-full",style:{backgroundColor:t},"aria-hidden":"true"})]}),v.map(e=>r.jsxs(a,{href:e.href,className:"text-sm font-medium transition-colors relative group",style:{color:o},onMouseEnter:n=>n.currentTarget.style.color=t,onMouseLeave:n=>n.currentTarget.style.color=o,children:[e.name,r.jsx("span",{className:"absolute -bottom-1 left-0 w-0 h-0.5 transition-all group-hover:w-full",style:{backgroundColor:t},"aria-hidden":"true"})]},e.name))]}),r.jsx("div",{className:"hidden md:flex items-center gap-4",children:d!=null&&d.user?r.jsx(a,{href:route("dashboard"),className:"px-6 py-2.5 rounded-lg text-sm font-semibold transition-colors border",style:l(!1),onMouseEnter:e=>Object.assign(e.currentTarget.style,l(!0)),onMouseLeave:e=>Object.assign(e.currentTarget.style,l(!1)),children:i("Dashboard")}):r.jsxs(r.Fragment,{children:[r.jsx(a,{href:route("login"),className:"text-sm font-medium transition-colors",style:{color:o},onMouseEnter:e=>e.currentTarget.style.color=t,onMouseLeave:e=>e.currentTarget.style.color=o,children:i("Login")}),j&&N()&&r.jsx(a,{href:route("register"),className:"px-6 py-2.5 rounded-lg text-sm font-semibold transition-colors border",style:l(!1),onMouseEnter:e=>Object.assign(e.currentTarget.style,l(!0)),onMouseLeave:e=>Object.assign(e.currentTarget.style,l(!1)),children:i("Get Started")})]})}),r.jsx("div",{className:"md:hidden",children:r.jsx("button",{onClick:()=>h(!u),className:`p-2 ${c?"text-gray-300 hover:text-white hover:bg-gray-800":"text-gray-600 hover:text-gray-900 hover:bg-gray-100"} rounded-lg transition-colors`,"aria-label":u?"Close navigation menu":"Open navigation menu","aria-expanded":u,"aria-controls":"mobile-menu",children:u?r.jsx(G,{size:20}):r.jsx(P,{size:20})})})]}),u&&r.jsx("div",{className:`md:hidden border-t ${c?"border-gray-700":"border-gray-200"}`,id:"mobile-menu",children:r.jsxs("div",{className:`px-4 py-6 space-y-4 ${c?"bg-gray-900":"bg-white"}`,style:f?{}:{backgroundColor:k},children:[r.jsx(a,{href:route("home"),className:"block text-base font-medium transition-colors",style:{color:o},onClick:()=>h(!1),onMouseEnter:e=>e.currentTarget.style.color=t,onMouseLeave:e=>e.currentTarget.style.color=o,children:i("Home")}),v.map(e=>r.jsx(a,{href:e.href,className:"block text-base font-medium transition-colors",style:{color:o},onClick:()=>h(!1),onMouseEnter:n=>n.currentTarget.style.color=t,onMouseLeave:n=>n.currentTarget.style.color=o,children:e.name},e.name)),r.jsx("div",{className:`pt-4 space-y-3 border-t ${c?"border-gray-700":"border-gray-200"}`,children:d!=null&&d.user?r.jsx(a,{href:route("dashboard"),className:"block w-full text-center py-2.5 rounded-lg text-sm font-semibold transition-colors border",style:l(!1),onMouseEnter:e=>Object.assign(e.currentTarget.style,l(!0)),onMouseLeave:e=>Object.assign(e.currentTarget.style,l(!1)),children:i("Dashboard")}):r.jsxs(r.Fragment,{children:[r.jsx(a,{href:route("login"),className:"block w-full text-center py-2.5 text-sm font-medium transition-colors",style:{color:o},onMouseEnter:e=>e.currentTarget.style.color=t,onMouseLeave:e=>e.currentTarget.style.color=o,children:i("Login")}),j&&N()&&r.jsx(a,{href:route("register"),className:"block w-full text-center py-2.5 rounded-lg text-sm font-semibold transition-colors border",style:l(!1),onMouseEnter:e=>Object.assign(e.currentTarget.style,l(!0)),onMouseLeave:e=>Object.assign(e.currentTarget.style,l(!1)),children:i("Get Started")})]})})]})})]})})}export{X as default}; diff --git a/public/build/assets/Header-CwhUlFHp.js b/public/build/assets/Header-CwhUlFHp.js new file mode 100644 index 000000000..cbec9ddf0 --- /dev/null +++ b/public/build/assets/Header-CwhUlFHp.js @@ -0,0 +1 @@ +import{r as p,j as r}from"./ui-Z445SNHD.js";import{u as I,c as P,O as z,Q as U,d as a,g as q,i as w,X as A}from"./app-36WMjvX0.js";import{M as G}from"./menu-Cu-nnefe.js";import"./utils-BWxnHGCV.js";function Y({settings:g,sectionData:o,customPages:T=[],brandColor:t="#3b82f6"}){var N;const{t:s}=I(),[m,x]=p.useState(!1),[j,L]=p.useState(!1),{props:h}=P(),k=(N=h.globalSettings)==null?void 0:N.is_saas,d=h.auth,y=h.globalSettings||{},S=z(h),E=y.logoDark||"images/logos/logo-dark.png",$=y.logoLight||"images/logos/logo-light.png";let f="light";if(S){const e=U("themeSettings");if(e)try{f=JSON.parse(e).appearance||"light"}catch{f="light"}}else f=y.themeMode||"light";const c=f==="dark";p.useEffect(()=>{const e=()=>{L(window.scrollY>20)};return window.addEventListener("scroll",e),()=>window.removeEventListener("scroll",e)},[]);const O=e=>{var i,u;return((u=(i=g==null?void 0:g.config_sections)==null?void 0:i.section_visibility)==null?void 0:u[e])!==!1},_=T.map(e=>({key:`custom-${e.id}`,name:e.title,href:route("custom-page.show",e.slug)})),v=[...[{key:"features",name:s("Features"),href:"/#features"},{key:"about",name:s("About Us"),href:"/#about"},{key:"plans",name:s("Pricing"),href:"/#pricing"},{key:"faq",name:s("FAQ"),href:"/#faq"},{key:"contact",name:s("Contact Us"),href:"/#contact"}].filter(e=>O(e.key)),..._],b=o==null?void 0:o.transparent,M=(o==null?void 0:o.background_color)||"#ffffff",C=(o==null?void 0:o.button_style)||"filled",n=(o==null?void 0:o.text_color)||""||(c?"#d1d5db":"#4b5563"),l=e=>C==="outline"?e?{backgroundColor:t,color:"white",borderColor:t}:{backgroundColor:"transparent",color:t,borderColor:t}:e?{backgroundColor:"white",color:t,borderColor:t}:{backgroundColor:t,color:"white",borderColor:t},F=()=>b?j?`bg-white/95 ${c?"dark:bg-gray-900/95":""} backdrop-blur-xl shadow-lg border-b border-gray-200/50 ${c?"dark:border-gray-700/50":""}`:"bg-transparent":j?`shadow-lg border-b border-gray-200/50 ${c?"dark:border-gray-700/50":""}`:"",H=()=>b?{}:{backgroundColor:M};return r.jsx("header",{className:`fixed top-0 left-0 right-0 z-50 transition-all duration-300 ${F()}`,style:H(),children:r.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[r.jsxs("div",{className:"flex justify-between items-center h-16",children:[r.jsx("div",{className:"flex-shrink-0",children:r.jsxs(a,{href:route("home"),className:"flex items-center",children:[r.jsx("img",{src:q(c?$:E),alt:g.company_name,className:"h-8 w-auto",onError:e=>{var i;e.currentTarget.style.display="none",(i=e.currentTarget.nextElementSibling)==null||i.classList.remove("hidden")}}),r.jsx("span",{className:`hidden text-2xl font-bold ${c?"text-white":"text-gray-900"} transition-colors`,children:g.company_name})]})}),r.jsxs("nav",{className:"hidden md:flex items-center space-x-8",role:"navigation","aria-label":"Main navigation",children:[r.jsxs(a,{href:route("home"),className:"text-sm font-medium transition-colors relative group",style:{color:n},onMouseEnter:e=>e.currentTarget.style.color=t,onMouseLeave:e=>e.currentTarget.style.color=n,children:[s("Home"),r.jsx("span",{className:"absolute -bottom-1 left-0 w-0 h-0.5 transition-all group-hover:w-full",style:{backgroundColor:t},"aria-hidden":"true"})]}),v.map((e,i)=>r.jsxs(a,{href:e.href,className:"text-sm font-medium transition-colors relative group",style:{color:n},onMouseEnter:u=>u.currentTarget.style.color=t,onMouseLeave:u=>u.currentTarget.style.color=n,children:[e.name,r.jsx("span",{className:"absolute -bottom-1 left-0 w-0 h-0.5 transition-all group-hover:w-full",style:{backgroundColor:t},"aria-hidden":"true"})]},e.key||`${e.name}-${i}`))]}),r.jsx("div",{className:"hidden md:flex items-center gap-4",children:d!=null&&d.user?r.jsx(a,{href:route("dashboard"),className:"px-6 py-2.5 rounded-lg text-sm font-semibold transition-colors border",style:l(!1),onMouseEnter:e=>Object.assign(e.currentTarget.style,l(!0)),onMouseLeave:e=>Object.assign(e.currentTarget.style,l(!1)),children:s("Dashboard")}):r.jsxs(r.Fragment,{children:[r.jsx(a,{href:route("login"),className:"text-sm font-medium transition-colors",style:{color:n},onMouseEnter:e=>e.currentTarget.style.color=t,onMouseLeave:e=>e.currentTarget.style.color=n,children:s("Login")}),k&&w()&&r.jsx(a,{href:route("register"),className:"px-6 py-2.5 rounded-lg text-sm font-semibold transition-colors border",style:l(!1),onMouseEnter:e=>Object.assign(e.currentTarget.style,l(!0)),onMouseLeave:e=>Object.assign(e.currentTarget.style,l(!1)),children:s("Get Started")})]})}),r.jsx("div",{className:"md:hidden",children:r.jsx("button",{onClick:()=>x(!m),className:`p-2 ${c?"text-gray-300 hover:text-white hover:bg-gray-800":"text-gray-600 hover:text-gray-900 hover:bg-gray-100"} rounded-lg transition-colors`,"aria-label":m?"Close navigation menu":"Open navigation menu","aria-expanded":m,"aria-controls":"mobile-menu",children:m?r.jsx(A,{size:20}):r.jsx(G,{size:20})})})]}),m&&r.jsx("div",{className:`md:hidden border-t ${c?"border-gray-700":"border-gray-200"}`,id:"mobile-menu",children:r.jsxs("div",{className:`px-4 py-6 space-y-4 ${c?"bg-gray-900":"bg-white"}`,style:b?{}:{backgroundColor:M},children:[r.jsx(a,{href:route("home"),className:"block text-base font-medium transition-colors",style:{color:n},onClick:()=>x(!1),onMouseEnter:e=>e.currentTarget.style.color=t,onMouseLeave:e=>e.currentTarget.style.color=n,children:s("Home")}),v.map((e,i)=>r.jsx(a,{href:e.href,className:"block text-base font-medium transition-colors",style:{color:n},onClick:()=>x(!1),onMouseEnter:u=>u.currentTarget.style.color=t,onMouseLeave:u=>u.currentTarget.style.color=n,children:e.name},e.key||`${e.name}-${i}`)),r.jsx("div",{className:`pt-4 space-y-3 border-t ${c?"border-gray-700":"border-gray-200"}`,children:d!=null&&d.user?r.jsx(a,{href:route("dashboard"),className:"block w-full text-center py-2.5 rounded-lg text-sm font-semibold transition-colors border",style:l(!1),onMouseEnter:e=>Object.assign(e.currentTarget.style,l(!0)),onMouseLeave:e=>Object.assign(e.currentTarget.style,l(!1)),children:s("Dashboard")}):r.jsxs(r.Fragment,{children:[r.jsx(a,{href:route("login"),className:"block w-full text-center py-2.5 text-sm font-medium transition-colors",style:{color:n},onMouseEnter:e=>e.currentTarget.style.color=t,onMouseLeave:e=>e.currentTarget.style.color=n,children:s("Login")}),k&&w()&&r.jsx(a,{href:route("register"),className:"block w-full text-center py-2.5 rounded-lg text-sm font-semibold transition-colors border",style:l(!1),onMouseEnter:e=>Object.assign(e.currentTarget.style,l(!0)),onMouseLeave:e=>Object.assign(e.currentTarget.style,l(!1)),children:s("Get Started")})]})})]})})]})})}export{Y as default}; diff --git a/public/build/assets/HeroSection-DRz5MxHz.js b/public/build/assets/HeroSection-DN5HNuBZ.js similarity index 95% rename from public/build/assets/HeroSection-DRz5MxHz.js rename to public/build/assets/HeroSection-DN5HNuBZ.js index e7db1d67d..a9f52d998 100644 --- a/public/build/assets/HeroSection-DRz5MxHz.js +++ b/public/build/assets/HeroSection-DN5HNuBZ.js @@ -1 +1 @@ -import{j as e}from"./ui-Z445SNHD.js";import{u as $,c as M,O as R,Q as P,i as T,d as j,g as z}from"./app-RVic1vq7.js";import{A as H}from"./arrow-right-CW2uDEAm.js";import{P as I}from"./play-SlVVs5Gp.js";import"./utils-BWxnHGCV.js";function B({settings:L,sectionData:t,brandColor:r="#3b82f6"}){const{t:i}=$(),{globalSettings:l}=M().props,v=l==null?void 0:l.is_saas,w=R();let n="light";if(w){const s=P("themeSettings");if(s)try{n=JSON.parse(s).appearance||"light"}catch{n="light"}}else n=(l==null?void 0:l.themeMode)||"light";const m=n==="dark",N=t.background_color||(m?"#111827":"#f9fafb"),x=t.text_color||(m?"#ffffff":"#111827"),f=t.text_color||(m?"#d1d5db":"#4b5563"),k=t.height?`${t.height}px`:"100vh",a=t.layout||"image-right",h=t.overlay===!0,p=t.overlay_color||"rgba(0,0,0,0.45)",o=t.image_position||"center",y=s=>s?s.startsWith("/screenshots/")?`${window.appSettings.imageUrl}${s}`:z(s):null,g=y(t.image),u=y(l!=null&&l.is_saas?"/screenshots/saas/hero-default.png":"/screenshots/non-saas/hero-default.png"),c=e.jsxs("div",{className:`space-y-6 sm:space-y-8 ${a==="centered"||a==="full-width"?"text-center":"text-center lg:text-left"}`,children:[t.announcement_text&&e.jsx("div",{className:"inline-flex items-center px-4 py-2 rounded-full text-sm font-medium border",style:{borderColor:r,color:r,backgroundColor:`${r}15`},children:t.announcement_text}),e.jsx("h1",{className:"text-4xl md:text-5xl lg:text-6xl font-bold leading-tight",style:{color:x},role:"banner","aria-label":"Main heading",children:t.title||i("Create Your Digital Business Card")}),e.jsx("p",{className:`text-lg md:text-xl leading-relaxed font-medium ${a==="centered"||a==="full-width"?"mx-auto max-w-2xl":"max-w-2xl"}`,style:{color:f,opacity:.85},children:t.subtitle||i("Manage employees, payroll, attendance, and more in one powerful platform.")}),e.jsxs("div",{className:`flex flex-col sm:flex-row gap-3 sm:gap-4 ${a==="centered"||a==="full-width"?"justify-center":"justify-center lg:justify-start"}`,children:[v&&T()&&e.jsxs(j,{href:route("register"),className:"px-8 py-4 rounded-lg transition-all font-semibold text-base flex items-center justify-center gap-2 border",style:{backgroundColor:r,color:"white",borderColor:r},onMouseEnter:s=>{s.currentTarget.style.backgroundColor="white",s.currentTarget.style.color=r},onMouseLeave:s=>{s.currentTarget.style.backgroundColor=r,s.currentTarget.style.color="white"},"aria-label":"Start free trial - Register for HRM",children:[t.primary_button_text||i("Start Free Trial"),e.jsx(H,{size:18})]}),e.jsxs(j,{href:route("login"),className:"border px-8 py-4 rounded-lg transition-colors font-semibold text-base flex items-center justify-center gap-2 hover:bg-white/10",style:{borderColor:r,color:r},"aria-label":"Login to existing HRM account",children:[e.jsx(I,{size:18}),t.secondary_button_text||i("Login")]})]}),t.stats&&t.stats.length>0&&e.jsx("div",{className:`grid grid-cols-3 gap-4 sm:gap-6 lg:gap-8 pt-8 sm:pt-12 ${a==="centered"||a==="full-width"?"max-w-lg mx-auto":""}`,children:t.stats.map((s,b)=>e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"text-3xl md:text-4xl font-bold",style:{color:x},children:s.value}),e.jsx("div",{className:"text-sm font-medium",style:{color:f,opacity:.8},children:s.label})]},b))})]}),_=o==="left"?"mr-auto":o==="right"?"ml-auto":"mx-auto",d=o==="background"?null:e.jsxs("div",{className:`relative ${_}`,children:[e.jsx("img",{src:g||u,alt:"Hero",className:"w-full h-auto rounded-2xl shadow-xl"}),e.jsx("div",{className:"absolute -top-4 -right-4 w-16 h-16 bg-gray-200 rounded-full opacity-50"}),e.jsx("div",{className:"absolute -bottom-4 -left-4 w-12 h-12 bg-gray-300 rounded-full opacity-40"})]}),C=()=>{switch(a){case"centered":return e.jsxs("div",{className:"flex flex-col items-center gap-10",children:[c,e.jsx("div",{className:"w-full max-w-3xl",children:d})]});case"full-width":return e.jsxs("div",{className:"flex flex-col gap-10",children:[c,e.jsx("div",{className:"w-full",children:d})]});case"image-left":return e.jsxs("div",{className:"grid lg:grid-cols-2 gap-8 sm:gap-12 lg:gap-16 items-center",children:[d,c]});case"image-right":default:return e.jsxs("div",{className:"grid lg:grid-cols-2 gap-8 sm:gap-12 lg:gap-16 items-center",children:[c,d]})}};return e.jsxs("section",{id:"hero",className:"pt-16 flex items-center relative",style:{backgroundColor:h?p:N,minHeight:k,...o==="background"&&(g||u)?{backgroundImage:`url(${g||u})`,backgroundSize:"cover",backgroundPosition:"center",backgroundRepeat:"no-repeat"}:{}},children:[h&&o==="background"&&e.jsx("div",{className:"absolute inset-0 z-0",style:{backgroundColor:p}}),e.jsx("div",{className:"relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 sm:py-16 lg:py-20 w-full",children:C()})]})}export{B as default}; +import{j as e}from"./ui-Z445SNHD.js";import{u as $,c as M,O as R,Q as P,i as T,d as j,g as z}from"./app-36WMjvX0.js";import{A as H}from"./arrow-right-DUEfRrRr.js";import{P as I}from"./play-DHqp-NCB.js";import"./utils-BWxnHGCV.js";function B({settings:L,sectionData:t,brandColor:r="#3b82f6"}){const{t:i}=$(),{globalSettings:l}=M().props,v=l==null?void 0:l.is_saas,w=R();let n="light";if(w){const s=P("themeSettings");if(s)try{n=JSON.parse(s).appearance||"light"}catch{n="light"}}else n=(l==null?void 0:l.themeMode)||"light";const m=n==="dark",N=t.background_color||(m?"#111827":"#f9fafb"),x=t.text_color||(m?"#ffffff":"#111827"),f=t.text_color||(m?"#d1d5db":"#4b5563"),k=t.height?`${t.height}px`:"100vh",a=t.layout||"image-right",h=t.overlay===!0,p=t.overlay_color||"rgba(0,0,0,0.45)",o=t.image_position||"center",y=s=>s?s.startsWith("/screenshots/")?`${window.appSettings.imageUrl}${s}`:z(s):null,g=y(t.image),u=y(l!=null&&l.is_saas?"/screenshots/saas/hero-default.png":"/screenshots/non-saas/hero-default.png"),c=e.jsxs("div",{className:`space-y-6 sm:space-y-8 ${a==="centered"||a==="full-width"?"text-center":"text-center lg:text-left"}`,children:[t.announcement_text&&e.jsx("div",{className:"inline-flex items-center px-4 py-2 rounded-full text-sm font-medium border",style:{borderColor:r,color:r,backgroundColor:`${r}15`},children:t.announcement_text}),e.jsx("h1",{className:"text-4xl md:text-5xl lg:text-6xl font-bold leading-tight",style:{color:x},role:"banner","aria-label":"Main heading",children:t.title||i("Create Your Digital Business Card")}),e.jsx("p",{className:`text-lg md:text-xl leading-relaxed font-medium ${a==="centered"||a==="full-width"?"mx-auto max-w-2xl":"max-w-2xl"}`,style:{color:f,opacity:.85},children:t.subtitle||i("Manage employees, payroll, attendance, and more in one powerful platform.")}),e.jsxs("div",{className:`flex flex-col sm:flex-row gap-3 sm:gap-4 ${a==="centered"||a==="full-width"?"justify-center":"justify-center lg:justify-start"}`,children:[v&&T()&&e.jsxs(j,{href:route("register"),className:"px-8 py-4 rounded-lg transition-all font-semibold text-base flex items-center justify-center gap-2 border",style:{backgroundColor:r,color:"white",borderColor:r},onMouseEnter:s=>{s.currentTarget.style.backgroundColor="white",s.currentTarget.style.color=r},onMouseLeave:s=>{s.currentTarget.style.backgroundColor=r,s.currentTarget.style.color="white"},"aria-label":"Start free trial - Register for HRM",children:[t.primary_button_text||i("Start Free Trial"),e.jsx(H,{size:18})]}),e.jsxs(j,{href:route("login"),className:"border px-8 py-4 rounded-lg transition-colors font-semibold text-base flex items-center justify-center gap-2 hover:bg-white/10",style:{borderColor:r,color:r},"aria-label":"Login to existing HRM account",children:[e.jsx(I,{size:18}),t.secondary_button_text||i("Login")]})]}),t.stats&&t.stats.length>0&&e.jsx("div",{className:`grid grid-cols-3 gap-4 sm:gap-6 lg:gap-8 pt-8 sm:pt-12 ${a==="centered"||a==="full-width"?"max-w-lg mx-auto":""}`,children:t.stats.map((s,b)=>e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"text-3xl md:text-4xl font-bold",style:{color:x},children:s.value}),e.jsx("div",{className:"text-sm font-medium",style:{color:f,opacity:.8},children:s.label})]},b))})]}),_=o==="left"?"mr-auto":o==="right"?"ml-auto":"mx-auto",d=o==="background"?null:e.jsxs("div",{className:`relative ${_}`,children:[e.jsx("img",{src:g||u,alt:"Hero",className:"w-full h-auto rounded-2xl shadow-xl"}),e.jsx("div",{className:"absolute -top-4 -right-4 w-16 h-16 bg-gray-200 rounded-full opacity-50"}),e.jsx("div",{className:"absolute -bottom-4 -left-4 w-12 h-12 bg-gray-300 rounded-full opacity-40"})]}),C=()=>{switch(a){case"centered":return e.jsxs("div",{className:"flex flex-col items-center gap-10",children:[c,e.jsx("div",{className:"w-full max-w-3xl",children:d})]});case"full-width":return e.jsxs("div",{className:"flex flex-col gap-10",children:[c,e.jsx("div",{className:"w-full",children:d})]});case"image-left":return e.jsxs("div",{className:"grid lg:grid-cols-2 gap-8 sm:gap-12 lg:gap-16 items-center",children:[d,c]});case"image-right":default:return e.jsxs("div",{className:"grid lg:grid-cols-2 gap-8 sm:gap-12 lg:gap-16 items-center",children:[c,d]})}};return e.jsxs("section",{id:"hero",className:"pt-16 flex items-center relative",style:{backgroundColor:h?p:N,minHeight:k,...o==="background"&&(g||u)?{backgroundImage:`url(${g||u})`,backgroundSize:"cover",backgroundPosition:"center",backgroundRepeat:"no-repeat"}:{}},children:[h&&o==="background"&&e.jsx("div",{className:"absolute inset-0 z-0",style:{backgroundColor:p}}),e.jsx("div",{className:"relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 sm:py-16 lg:py-20 w-full",children:C()})]})}export{B as default}; diff --git a/public/build/assets/ImportModal-41KOCAYx.js b/public/build/assets/ImportModal-NusA89JZ.js similarity index 89% rename from public/build/assets/ImportModal-41KOCAYx.js rename to public/build/assets/ImportModal-NusA89JZ.js index d9a92c61d..4257a0efe 100644 --- a/public/build/assets/ImportModal-41KOCAYx.js +++ b/public/build/assets/ImportModal-NusA89JZ.js @@ -1 +1 @@ -import{r as x,j as e}from"./ui-Z445SNHD.js";import{u as O,D as P,h as R,j as T,k as U,q as A,o as k,t as r,r as G,c as K,L as W,I as $}from"./app-RVic1vq7.js";import{S as J,a as Q,b as Y,c as Z,d as L}from"./select-Dtd4U_ej.js";import{A as ee,a as se}from"./alert-CyVbzPbL.js";import{I as te}from"./info-lRsnuu1k.js";import{D as ae}from"./download-CzgmjL2q.js";function re({isOpen:w,onClose:b,excelColumns:g,databaseFields:h,importRoute:_,data:u,previewData:C=[]}){const{t:o}=O(),[c,n]=x.useState({}),[i,y]=x.useState(!1);x.useEffect(()=>{if(w&&g.length>0){const a={};h.forEach(t=>{const l=g.find(s=>s.toLowerCase().replace(/[_\s]/g,"")===t.key.toLowerCase().replace(/[_\s]/g,""));l&&(a[t.key]=l)}),n(a)}},[w,g,h]);const N=()=>{if(!u||u.length===0){r.error(o("No data available for import"));return}const t=h.filter(s=>s.required).filter(s=>!c[s.key]);if(t.length>0){r.error(o("Please map all required fields: {{fields}}",{fields:t.map(s=>s.key).join(", ")}));return}const l=(u||[]).map(s=>{const f={};return Object.entries(c).forEach(([D,I])=>{f[D]=s[I]}),f});y(!0),r.loading(o("Importing...")),G.post(route(_),{data:l},{preserveState:!0,onSuccess:s=>{b(),y(!1),r.dismiss(),s.props.flash.success?r.success(o(s.props.flash.success)):s.props.flash.error&&r.error(o(s.props.flash.error))},onError:s=>{y(!1),r.dismiss(),typeof s=="string"?r.error(s):r.error(o("Failed to import"))}})};return e.jsx(P,{open:w,onOpenChange:a=>!a&&b(),modal:!1,children:e.jsxs(R,{className:"max-w-7xl max-h-[85vh] overflow-hidden flex flex-col",children:[e.jsx(T,{children:e.jsx(U,{children:o("Map Columns")})}),e.jsxs(ee,{className:"bg-amber-50 border-amber-200",children:[e.jsx(te,{className:"h-4 w-4 text-amber-600"}),e.jsx(se,{className:"text-amber-800",children:o("Map your CSV columns to database fields")})]}),e.jsxs("div",{className:"flex-1 overflow-auto",children:[e.jsx("h3",{className:"text-base font-semibold mb-3",children:o("Column Mapping & Preview")}),e.jsx("div",{className:"border rounded-lg overflow-x-auto",children:e.jsxs("table",{className:"w-full",children:[e.jsx("thead",{className:"bg-gray-50 border-b sticky top-0",children:e.jsx("tr",{children:h.map(a=>e.jsx("th",{className:"px-4 py-3 text-left font-medium text-gray-700 min-w-[180px]",children:e.jsxs("div",{className:"space-y-2",children:[e.jsxs("div",{className:"text-sm font-semibold",children:[a.key.replace(/_/g," ").replace(/\b\w/g,t=>t.toUpperCase()),a.required&&e.jsx("span",{className:"text-red-500 ml-1",children:"*"})]}),e.jsxs(J,{value:c[a.key]||"__unselect__",onValueChange:t=>{n(l=>{const s={...l};return t==="__unselect__"?delete s[a.key]:(Object.keys(s).forEach(f=>{s[f]===t&&delete s[f]}),s[a.key]=t),s})},children:[e.jsx(Q,{className:"h-9 text-sm w-full bg-white",children:e.jsx(Y,{placeholder:o("Select...")})}),e.jsxs(Z,{position:"popper",className:"z-[9999]",children:[e.jsx(L,{value:"__unselect__",children:o("-- Not Mapped --")}),g.map(t=>{const l=Object.values(c).includes(t)&&c[a.key]!==t;return e.jsx(L,{value:t,disabled:l,children:t},t)})]})]})]})},a.key))})}),e.jsx("tbody",{children:C.map((a,t)=>e.jsx("tr",{className:"border-b hover:bg-gray-50",children:h.map(l=>e.jsx("td",{className:"px-4 py-3 text-gray-700 text-sm",children:e.jsx("div",{className:"truncate max-w-[200px]",title:c[l.key]?a[c[l.key]]:"",children:c[l.key]?a[c[l.key]]||e.jsx("span",{className:"text-gray-400 italic text-xs",children:"empty"}):e.jsx("span",{className:"text-gray-400",children:"-"})})},l.key))},t))})]})}),e.jsx("p",{className:"text-sm text-gray-500 mt-3",children:o("Showing all {{count}} rows",{count:C.length})})]}),e.jsxs(A,{children:[e.jsx(k,{type:"button",variant:"outline",onClick:b,disabled:i,children:o("Back")}),e.jsx(k,{type:"button",onClick:N,disabled:i,children:o("Import Data")})]})]})})}function me({isOpen:w,onClose:b,title:g,importRoute:h,parseRoute:_,sampleRoute:u,importNotes:C,databaseFields:o,modalSize:c="lg"}){const{t:n}=O(),{globalSettings:i}=K().props,[y,N]=x.useState(null),[a,t]=x.useState(!1),[l,s]=x.useState(!1),[f,D]=x.useState([]),[I,M]=x.useState([]),[z,q]=x.useState([]),V=async()=>{if(u)try{const p=await fetch(route(u),{method:"GET",headers:{"X-Requested-With":"XMLHttpRequest"}});if(!p.ok){const S=await p.json().catch(()=>({}));r.error(n(S.error||"Failed to download template"));return}const j=await p.blob(),v=window.URL.createObjectURL(j),d=document.createElement("a");d.href=v;const m=p.headers.get("Content-Disposition");let F="sample-template.xlsx";if(m){const S=m.match(/filename="?(.+?)"?$/i);S&&(F=S[1])}d.download=F,document.body.appendChild(d),d.click(),window.URL.revokeObjectURL(v),document.body.removeChild(d)}catch{r.error(n("Failed to download template"))}},X=async p=>{var v;if(p.preventDefault(),!y){r.error(n("Please select a file to import"));return}const j=new FormData;j.append("file",y),t(!0),i!=null&&i.is_demo||r.loading(n("Parsing file..."));try{const m=await(await fetch(route(_),{method:"POST",body:j,headers:{"X-CSRF-TOKEN":((v=document.querySelector('meta[name="csrf-token"]'))==null?void 0:v.getAttribute("content"))||""}})).json();m.excelColumns&&m.previewData?(D(m.excelColumns),M(m.previewData),q(m.previewData||[]),i!=null&&i.is_demo||r.dismiss(),b(),s(!0)):(i!=null&&i.is_demo||r.dismiss(),m.message?r.error(n(m.message)):r.error(n("Failed to parse file")))}catch(d){i!=null&&i.is_demo||r.dismiss(),d!=null&&d.message?r.error(n(d.message)):r.error(n("Network error or invalid response"))}finally{t(!1)}},B=()=>{s(!1),N(null),D([]),M([]),q([])},E=()=>{!a&&!l&&(N(null),b())},H={sm:"sm:max-w-sm",md:"sm:max-w-md",lg:"sm:max-w-lg",xl:"sm:max-w-xl"}[c];return e.jsxs(e.Fragment,{children:[e.jsx(P,{open:w,onOpenChange:E,children:e.jsxs(R,{className:H,children:[e.jsx(T,{children:e.jsx(U,{children:g})}),e.jsxs("div",{className:"space-y-4",children:[u&&e.jsxs("div",{className:"flex items-center justify-between p-3 border border-gray-200 rounded-md",children:[e.jsx("p",{className:"text-sm text-gray-700",children:n("Download sample template for required format")}),e.jsx(k,{type:"button",variant:"ghost",size:"sm",onClick:V,className:"ml-3 text-blue-600 hover:text-blue-800",children:e.jsx(ae,{className:"h-4 w-4"})})]}),e.jsxs("div",{className:"space-y-2",children:[e.jsxs(W,{htmlFor:"file",children:[n("Select File")," ",e.jsx("span",{className:"text-red-500",children:"*"})]}),e.jsx($,{id:"file",type:"file",accept:".xlsx,.xls,.csv",onChange:p=>{var j;return N(((j=p.target.files)==null?void 0:j[0])||null)},disabled:a,required:!0})]}),e.jsxs("div",{className:"bg-blue-50 border border-blue-200 rounded-md p-3",children:[e.jsx("h4",{className:"text-sm font-medium text-blue-800 mb-2",children:n("Import Notes:")}),e.jsx("p",{className:"text-xs text-blue-700",children:C})]})]}),e.jsxs(A,{children:[e.jsx(k,{type:"button",variant:"outline",onClick:E,disabled:a,children:n("Cancel")}),e.jsx(k,{type:"button",onClick:X,disabled:a,children:n("Import")})]})]})}),e.jsx(re,{isOpen:l,onClose:B,excelColumns:f,databaseFields:o,importRoute:h,data:I,previewData:z})]})}export{me as I}; +import{r as x,j as e}from"./ui-Z445SNHD.js";import{u as O,D as P,h as R,j as T,k as U,q as A,B as k,t as r,r as G,c as K,L as W,I as $}from"./app-36WMjvX0.js";import{S as J,a as Q,b as Y,c as Z,d as L}from"./select-DgPPBKIC.js";import{A as ee,a as se}from"./alert-CXPQTH5c.js";import{I as te}from"./info-VH-vNQ_z.js";import{D as ae}from"./download-Ba72czhU.js";function re({isOpen:w,onClose:b,excelColumns:g,databaseFields:h,importRoute:_,data:u,previewData:C=[]}){const{t:o}=O(),[c,n]=x.useState({}),[i,y]=x.useState(!1);x.useEffect(()=>{if(w&&g.length>0){const a={};h.forEach(t=>{const l=g.find(s=>s.toLowerCase().replace(/[_\s]/g,"")===t.key.toLowerCase().replace(/[_\s]/g,""));l&&(a[t.key]=l)}),n(a)}},[w,g,h]);const N=()=>{if(!u||u.length===0){r.error(o("No data available for import"));return}const t=h.filter(s=>s.required).filter(s=>!c[s.key]);if(t.length>0){r.error(o("Please map all required fields: {{fields}}",{fields:t.map(s=>s.key).join(", ")}));return}const l=(u||[]).map(s=>{const f={};return Object.entries(c).forEach(([D,I])=>{f[D]=s[I]}),f});y(!0),r.loading(o("Importing...")),G.post(route(_),{data:l},{preserveState:!0,onSuccess:s=>{b(),y(!1),r.dismiss(),s.props.flash.success?r.success(o(s.props.flash.success)):s.props.flash.error&&r.error(o(s.props.flash.error))},onError:s=>{y(!1),r.dismiss(),typeof s=="string"?r.error(s):r.error(o("Failed to import"))}})};return e.jsx(P,{open:w,onOpenChange:a=>!a&&b(),modal:!1,children:e.jsxs(R,{className:"max-w-7xl max-h-[85vh] overflow-hidden flex flex-col",children:[e.jsx(T,{children:e.jsx(U,{children:o("Map Columns")})}),e.jsxs(ee,{className:"bg-amber-50 border-amber-200",children:[e.jsx(te,{className:"h-4 w-4 text-amber-600"}),e.jsx(se,{className:"text-amber-800",children:o("Map your CSV columns to database fields")})]}),e.jsxs("div",{className:"flex-1 overflow-auto",children:[e.jsx("h3",{className:"text-base font-semibold mb-3",children:o("Column Mapping & Preview")}),e.jsx("div",{className:"border rounded-lg overflow-x-auto",children:e.jsxs("table",{className:"w-full",children:[e.jsx("thead",{className:"bg-gray-50 border-b sticky top-0",children:e.jsx("tr",{children:h.map(a=>e.jsx("th",{className:"px-4 py-3 text-left font-medium text-gray-700 min-w-[180px]",children:e.jsxs("div",{className:"space-y-2",children:[e.jsxs("div",{className:"text-sm font-semibold",children:[a.key.replace(/_/g," ").replace(/\b\w/g,t=>t.toUpperCase()),a.required&&e.jsx("span",{className:"text-red-500 ml-1",children:"*"})]}),e.jsxs(J,{value:c[a.key]||"__unselect__",onValueChange:t=>{n(l=>{const s={...l};return t==="__unselect__"?delete s[a.key]:(Object.keys(s).forEach(f=>{s[f]===t&&delete s[f]}),s[a.key]=t),s})},children:[e.jsx(Q,{className:"h-9 text-sm w-full bg-white",children:e.jsx(Y,{placeholder:o("Select...")})}),e.jsxs(Z,{position:"popper",className:"z-[9999]",children:[e.jsx(L,{value:"__unselect__",children:o("-- Not Mapped --")}),g.map(t=>{const l=Object.values(c).includes(t)&&c[a.key]!==t;return e.jsx(L,{value:t,disabled:l,children:t},t)})]})]})]})},a.key))})}),e.jsx("tbody",{children:C.map((a,t)=>e.jsx("tr",{className:"border-b hover:bg-gray-50",children:h.map(l=>e.jsx("td",{className:"px-4 py-3 text-gray-700 text-sm",children:e.jsx("div",{className:"truncate max-w-[200px]",title:c[l.key]?a[c[l.key]]:"",children:c[l.key]?a[c[l.key]]||e.jsx("span",{className:"text-gray-400 italic text-xs",children:"empty"}):e.jsx("span",{className:"text-gray-400",children:"-"})})},l.key))},t))})]})}),e.jsx("p",{className:"text-sm text-gray-500 mt-3",children:o("Showing all {{count}} rows",{count:C.length})})]}),e.jsxs(A,{children:[e.jsx(k,{type:"button",variant:"outline",onClick:b,disabled:i,children:o("Back")}),e.jsx(k,{type:"button",onClick:N,disabled:i,children:o("Import Data")})]})]})})}function me({isOpen:w,onClose:b,title:g,importRoute:h,parseRoute:_,sampleRoute:u,importNotes:C,databaseFields:o,modalSize:c="lg"}){const{t:n}=O(),{globalSettings:i}=K().props,[y,N]=x.useState(null),[a,t]=x.useState(!1),[l,s]=x.useState(!1),[f,D]=x.useState([]),[I,M]=x.useState([]),[z,q]=x.useState([]),B=async()=>{if(u)try{const p=await fetch(route(u),{method:"GET",headers:{"X-Requested-With":"XMLHttpRequest"}});if(!p.ok){const S=await p.json().catch(()=>({}));r.error(n(S.error||"Failed to download template"));return}const j=await p.blob(),v=window.URL.createObjectURL(j),d=document.createElement("a");d.href=v;const m=p.headers.get("Content-Disposition");let F="sample-template.xlsx";if(m){const S=m.match(/filename="?(.+?)"?$/i);S&&(F=S[1])}d.download=F,document.body.appendChild(d),d.click(),window.URL.revokeObjectURL(v),document.body.removeChild(d)}catch{r.error(n("Failed to download template"))}},V=async p=>{var v;if(p.preventDefault(),!y){r.error(n("Please select a file to import"));return}const j=new FormData;j.append("file",y),t(!0),i!=null&&i.is_demo||r.loading(n("Parsing file..."));try{const m=await(await fetch(route(_),{method:"POST",body:j,headers:{"X-CSRF-TOKEN":((v=document.querySelector('meta[name="csrf-token"]'))==null?void 0:v.getAttribute("content"))||""}})).json();m.excelColumns&&m.previewData?(D(m.excelColumns),M(m.previewData),q(m.previewData||[]),i!=null&&i.is_demo||r.dismiss(),b(),s(!0)):(i!=null&&i.is_demo||r.dismiss(),m.message?r.error(n(m.message)):r.error(n("Failed to parse file")))}catch(d){i!=null&&i.is_demo||r.dismiss(),d!=null&&d.message?r.error(n(d.message)):r.error(n("Network error or invalid response"))}finally{t(!1)}},X=()=>{s(!1),N(null),D([]),M([]),q([])},E=()=>{!a&&!l&&(N(null),b())},H={sm:"sm:max-w-sm",md:"sm:max-w-md",lg:"sm:max-w-lg",xl:"sm:max-w-xl"}[c];return e.jsxs(e.Fragment,{children:[e.jsx(P,{open:w,onOpenChange:E,children:e.jsxs(R,{className:H,children:[e.jsx(T,{children:e.jsx(U,{children:g})}),e.jsxs("div",{className:"space-y-4",children:[u&&e.jsxs("div",{className:"flex items-center justify-between p-3 border border-gray-200 rounded-md",children:[e.jsx("p",{className:"text-sm text-gray-700",children:n("Download sample template for required format")}),e.jsx(k,{type:"button",variant:"ghost",size:"sm",onClick:B,className:"ml-3 text-blue-600 hover:text-blue-800",children:e.jsx(ae,{className:"h-4 w-4"})})]}),e.jsxs("div",{className:"space-y-2",children:[e.jsxs(W,{htmlFor:"file",children:[n("Select File")," ",e.jsx("span",{className:"text-red-500",children:"*"})]}),e.jsx($,{id:"file",type:"file",accept:".xlsx,.xls,.csv",onChange:p=>{var j;return N(((j=p.target.files)==null?void 0:j[0])||null)},disabled:a,required:!0})]}),e.jsxs("div",{className:"bg-blue-50 border border-blue-200 rounded-md p-3",children:[e.jsx("h4",{className:"text-sm font-medium text-blue-800 mb-2",children:n("Import Notes:")}),e.jsx("p",{className:"text-xs text-blue-700",children:C})]})]}),e.jsxs(A,{children:[e.jsx(k,{type:"button",variant:"outline",onClick:E,disabled:a,children:n("Cancel")}),e.jsx(k,{type:"button",onClick:V,disabled:a,children:n("Import")})]})]})}),e.jsx(re,{isOpen:l,onClose:X,excelColumns:f,databaseFields:o,importRoute:h,data:I,previewData:z})]})}export{me as I}; diff --git a/public/build/assets/LivePreview-CnBGw4mm.js b/public/build/assets/LivePreview-DTrclG-0.js similarity index 96% rename from public/build/assets/LivePreview-CnBGw4mm.js rename to public/build/assets/LivePreview-DTrclG-0.js index c5a5cada3..a6c2e8fee 100644 --- a/public/build/assets/LivePreview-CnBGw4mm.js +++ b/public/build/assets/LivePreview-DTrclG-0.js @@ -1 +1 @@ -import{j as e}from"./ui-Z445SNHD.js";import{u as _,a as C,T as S,E as P,ad as E}from"./app-RVic1vq7.js";import{E as T}from"./eye-HWwNL9ra.js";import{C as A}from"./circle-check-big-BrZdB446.js";import{C as F}from"./circle-alert-QKAv2c9h.js";import{P as N}from"./phone-D9_s8Psh.js";import{M as D}from"./mail-DxJUXCTJ.js";import{G as H}from"./globe-DGYT8gkU.js";import"./utils-BWxnHGCV.js";function z({data:r,activeSection:v}){var m,g,h,y,b,p;const{t:s}=_(),{themeColor:n,customColor:f}=C(),d=n==="custom"?f:S[n],i=a=>{var l,t;return((t=(l=r.config_sections)==null?void 0:l.sections)==null?void 0:t.find(c=>c.key===a))||{}},o=(()=>{const a=[{key:"company_name",value:r.company_name,label:s("Company Name")},{key:"hero_title",value:i("hero").title,label:s("Hero Title")},{key:"contact_email",value:r.contact_email,label:s("Contact Email")}];return{completed:a.filter(t=>t.value).length,total:a.length,fields:a}})(),x=Math.round(o.completed/o.total*100),k=()=>{var a,l;switch(v){case"hero":const t=i("hero");return e.jsxs("div",{className:"space-y-3",children:[e.jsx("div",{className:"text-sm font-medium text-gray-700 dark:text-gray-300",children:s("Hero Section")}),e.jsxs("div",{className:"p-3 bg-gray-50 dark:bg-gray-700 rounded-lg border dark:border-gray-600",children:[e.jsx("div",{className:"text-xs font-semibold text-gray-900 dark:text-gray-100 mb-1",children:t.title||"Your Hero Title"}),e.jsx("div",{className:"text-xs text-gray-600 dark:text-gray-300 mb-2",children:t.subtitle||"Your hero subtitle will appear here..."}),e.jsxs("div",{className:"flex gap-1",children:[e.jsx("div",{className:"px-2 py-1 text-xs rounded",style:{backgroundColor:((l=(a=r.config_sections)==null?void 0:a.theme)==null?void 0:l.primary_color)||"#3b82f6",color:"white"},children:t.primary_button_text||"Primary Button"}),e.jsx("div",{className:"px-2 py-1 text-xs border rounded",children:t.secondary_button_text||"Secondary"})]})]})]});case"features":const c=i("features");return e.jsxs("div",{className:"space-y-3",children:[e.jsx("div",{className:"text-sm font-medium text-gray-700 dark:text-gray-300",children:s("Features Section")}),e.jsxs("div",{className:"p-3 bg-gray-50 dark:bg-gray-700 rounded-lg border dark:border-gray-600",children:[e.jsx("div",{className:"text-xs font-semibold text-gray-900 dark:text-gray-100 mb-1",children:c.title||"Features Title"}),e.jsx("div",{className:"text-xs text-gray-600 dark:text-gray-300 mb-2",children:c.description||"Features description..."}),e.jsx("div",{className:"grid grid-cols-2 gap-1",children:(c.features_list||[]).slice(0,4).map((w,j)=>e.jsx("div",{className:"p-1 bg-white dark:bg-gray-800 rounded text-xs dark:text-gray-300",children:w.title||`Feature ${j+1}`},j))})]})]});case"about":const u=i("about");return e.jsxs("div",{className:"space-y-3",children:[e.jsx("div",{className:"text-sm font-medium text-gray-700 dark:text-gray-300",children:s("About Section")}),e.jsxs("div",{className:"p-3 bg-gray-50 dark:bg-gray-700 rounded-lg border dark:border-gray-600",children:[e.jsx("div",{className:"text-xs font-semibold text-gray-900 dark:text-gray-100 mb-1",children:u.title||"About Title"}),e.jsx("div",{className:"text-xs text-gray-600 dark:text-gray-300",children:u.description||"About description..."})]})]});default:return e.jsxs("div",{className:"space-y-3",children:[e.jsx("div",{className:"text-sm font-medium text-gray-700",children:s("Section Preview")}),e.jsx("div",{className:"p-3 bg-gray-50 dark:bg-gray-700 rounded-lg border dark:border-gray-600 text-center",children:e.jsx("div",{className:"text-xs text-gray-500 dark:text-gray-400",children:s("Select a section to see live preview")})})]})}};return e.jsxs("div",{className:"sticky top-20 space-y-6",children:[e.jsxs("div",{className:"bg-gradient-to-br rounded-xl p-6 shadow-sm border",style:{backgroundColor:d+"10",borderColor:d+"30"},children:[e.jsxs("div",{className:"flex items-center gap-3 mb-4",children:[e.jsx("div",{className:"p-2 rounded-lg",style:{backgroundColor:d+"20"},children:e.jsx(T,{className:"h-5 w-5",style:{color:d}})}),e.jsx("h3",{className:"font-semibold text-gray-900 dark:text-gray-100",children:s("Setup Progress")})]}),e.jsxs("div",{className:"mb-4",children:[e.jsxs("div",{className:"flex justify-between items-center mb-2",children:[e.jsx("span",{className:"text-sm text-gray-600 dark:text-gray-400",children:s("Completion")}),e.jsxs("span",{className:"text-sm font-medium text-gray-900 dark:text-gray-100",children:[x,"%"]})]}),e.jsx("div",{className:"w-full bg-gray-200 rounded-full h-2",children:e.jsx("div",{className:"h-2 rounded-full transition-all duration-300",style:{width:`${x}%`,backgroundColor:d}})})]}),e.jsx("div",{className:"space-y-2",children:o.fields.map((a,l)=>e.jsxs("div",{className:"flex items-center gap-2 text-xs",children:[a.value?e.jsx(A,{className:"h-3 w-3 text-green-600"}):e.jsx(F,{className:"h-3 w-3 text-red-500"}),e.jsx("span",{className:a.value?"text-green-700":"text-red-600",children:a.label})]},l))})]}),e.jsxs("div",{className:"bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-xl p-6 shadow-sm",children:[e.jsxs("div",{className:"flex items-center gap-3 mb-4",children:[e.jsx("div",{className:"p-2 bg-purple-100 rounded-lg",children:e.jsx(P,{className:"h-5 w-5 text-purple-600"})}),e.jsx("h3",{className:"font-semibold text-gray-900 dark:text-gray-100",children:s("Live Preview")})]}),k()]}),e.jsxs("div",{className:"bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-xl p-6 shadow-sm",children:[e.jsxs("div",{className:"flex items-center gap-3 mb-4",children:[e.jsx("div",{className:"p-2 bg-pink-100 rounded-lg",children:e.jsx(E,{className:"h-5 w-5 text-pink-600"})}),e.jsx("h3",{className:"font-semibold text-gray-900 dark:text-gray-100",children:s("Color Scheme")})]}),e.jsxs("div",{className:"flex gap-3",children:[e.jsxs("div",{className:"flex flex-col items-center gap-1",children:[e.jsx("div",{className:"w-8 h-8 rounded-lg shadow-sm border-2 border-white",style:{backgroundColor:((g=(m=r.config_sections)==null?void 0:m.theme)==null?void 0:g.primary_color)||"#3b82f6"}}),e.jsx("span",{className:"text-xs text-gray-500 dark:text-gray-400",children:s("Primary")})]}),e.jsxs("div",{className:"flex flex-col items-center gap-1",children:[e.jsx("div",{className:"w-8 h-8 rounded-lg shadow-sm border-2 border-white",style:{backgroundColor:((y=(h=r.config_sections)==null?void 0:h.theme)==null?void 0:y.secondary_color)||"#8b5cf6"}}),e.jsx("span",{className:"text-xs text-gray-500 dark:text-gray-400",children:s("Secondary")})]}),e.jsxs("div",{className:"flex flex-col items-center gap-1",children:[e.jsx("div",{className:"w-8 h-8 rounded-lg shadow-sm border-2 border-white",style:{backgroundColor:((p=(b=r.config_sections)==null?void 0:b.theme)==null?void 0:p.accent_color)||"#10b77f"}}),e.jsx("span",{className:"text-xs text-gray-500 dark:text-gray-400",children:s("Accent")})]})]})]}),e.jsxs("div",{className:"bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-xl p-6 shadow-sm",children:[e.jsxs("div",{className:"flex items-center gap-3 mb-4",children:[e.jsx("div",{className:"p-2 bg-green-100 rounded-lg",children:e.jsx(N,{className:"h-5 w-5 text-green-600"})}),e.jsx("h3",{className:"font-semibold text-gray-900 dark:text-gray-100",children:s("Contact Info")})]}),e.jsxs("div",{className:"space-y-2",children:[e.jsxs("div",{className:"flex items-center gap-2 text-xs",children:[e.jsx(D,{className:"h-3 w-3 text-gray-400"}),e.jsx("span",{className:r.contact_email?"text-gray-700 dark:text-gray-300":"text-red-500",children:r.contact_email||"Email not set"})]}),e.jsxs("div",{className:"flex items-center gap-2 text-xs",children:[e.jsx(N,{className:"h-3 w-3 text-gray-400"}),e.jsx("span",{className:r.contact_phone?"text-gray-700 dark:text-gray-300":"text-red-500",children:r.contact_phone||"Phone not set"})]}),e.jsxs("div",{className:"flex items-center gap-2 text-xs",children:[e.jsx(H,{className:"h-3 w-3 text-gray-400"}),e.jsx("span",{className:r.contact_address?"text-gray-700 dark:text-gray-300":"text-red-500",children:r.contact_address||"Address not set"})]})]})]})]})}export{z as default}; +import{j as e}from"./ui-Z445SNHD.js";import{u as _,a as C,T as S,E as P,ad as E}from"./app-36WMjvX0.js";import{E as T}from"./eye-DSAoA9Pp.js";import{C as A}from"./circle-check-big-DqURlwt2.js";import{C as F}from"./circle-alert-KsX4JXbz.js";import{P as N}from"./phone-CJ2h446N.js";import{M as D}from"./mail-BFoS8U8W.js";import{G as H}from"./globe-ZoJAuRB5.js";import"./utils-BWxnHGCV.js";function z({data:r,activeSection:v}){var m,g,h,y,b,p;const{t:s}=_(),{themeColor:n,customColor:f}=C(),d=n==="custom"?f:S[n],i=a=>{var l,t;return((t=(l=r.config_sections)==null?void 0:l.sections)==null?void 0:t.find(c=>c.key===a))||{}},o=(()=>{const a=[{key:"company_name",value:r.company_name,label:s("Company Name")},{key:"hero_title",value:i("hero").title,label:s("Hero Title")},{key:"contact_email",value:r.contact_email,label:s("Contact Email")}];return{completed:a.filter(t=>t.value).length,total:a.length,fields:a}})(),x=Math.round(o.completed/o.total*100),k=()=>{var a,l;switch(v){case"hero":const t=i("hero");return e.jsxs("div",{className:"space-y-3",children:[e.jsx("div",{className:"text-sm font-medium text-gray-700 dark:text-gray-300",children:s("Hero Section")}),e.jsxs("div",{className:"p-3 bg-gray-50 dark:bg-gray-700 rounded-lg border dark:border-gray-600",children:[e.jsx("div",{className:"text-xs font-semibold text-gray-900 dark:text-gray-100 mb-1",children:t.title||"Your Hero Title"}),e.jsx("div",{className:"text-xs text-gray-600 dark:text-gray-300 mb-2",children:t.subtitle||"Your hero subtitle will appear here..."}),e.jsxs("div",{className:"flex gap-1",children:[e.jsx("div",{className:"px-2 py-1 text-xs rounded",style:{backgroundColor:((l=(a=r.config_sections)==null?void 0:a.theme)==null?void 0:l.primary_color)||"#3b82f6",color:"white"},children:t.primary_button_text||"Primary Button"}),e.jsx("div",{className:"px-2 py-1 text-xs border rounded",children:t.secondary_button_text||"Secondary"})]})]})]});case"features":const c=i("features");return e.jsxs("div",{className:"space-y-3",children:[e.jsx("div",{className:"text-sm font-medium text-gray-700 dark:text-gray-300",children:s("Features Section")}),e.jsxs("div",{className:"p-3 bg-gray-50 dark:bg-gray-700 rounded-lg border dark:border-gray-600",children:[e.jsx("div",{className:"text-xs font-semibold text-gray-900 dark:text-gray-100 mb-1",children:c.title||"Features Title"}),e.jsx("div",{className:"text-xs text-gray-600 dark:text-gray-300 mb-2",children:c.description||"Features description..."}),e.jsx("div",{className:"grid grid-cols-2 gap-1",children:(c.features_list||[]).slice(0,4).map((w,j)=>e.jsx("div",{className:"p-1 bg-white dark:bg-gray-800 rounded text-xs dark:text-gray-300",children:w.title||`Feature ${j+1}`},j))})]})]});case"about":const u=i("about");return e.jsxs("div",{className:"space-y-3",children:[e.jsx("div",{className:"text-sm font-medium text-gray-700 dark:text-gray-300",children:s("About Section")}),e.jsxs("div",{className:"p-3 bg-gray-50 dark:bg-gray-700 rounded-lg border dark:border-gray-600",children:[e.jsx("div",{className:"text-xs font-semibold text-gray-900 dark:text-gray-100 mb-1",children:u.title||"About Title"}),e.jsx("div",{className:"text-xs text-gray-600 dark:text-gray-300",children:u.description||"About description..."})]})]});default:return e.jsxs("div",{className:"space-y-3",children:[e.jsx("div",{className:"text-sm font-medium text-gray-700",children:s("Section Preview")}),e.jsx("div",{className:"p-3 bg-gray-50 dark:bg-gray-700 rounded-lg border dark:border-gray-600 text-center",children:e.jsx("div",{className:"text-xs text-gray-500 dark:text-gray-400",children:s("Select a section to see live preview")})})]})}};return e.jsxs("div",{className:"sticky top-20 space-y-6",children:[e.jsxs("div",{className:"bg-gradient-to-br rounded-xl p-6 shadow-sm border",style:{backgroundColor:d+"10",borderColor:d+"30"},children:[e.jsxs("div",{className:"flex items-center gap-3 mb-4",children:[e.jsx("div",{className:"p-2 rounded-lg",style:{backgroundColor:d+"20"},children:e.jsx(T,{className:"h-5 w-5",style:{color:d}})}),e.jsx("h3",{className:"font-semibold text-gray-900 dark:text-gray-100",children:s("Setup Progress")})]}),e.jsxs("div",{className:"mb-4",children:[e.jsxs("div",{className:"flex justify-between items-center mb-2",children:[e.jsx("span",{className:"text-sm text-gray-600 dark:text-gray-400",children:s("Completion")}),e.jsxs("span",{className:"text-sm font-medium text-gray-900 dark:text-gray-100",children:[x,"%"]})]}),e.jsx("div",{className:"w-full bg-gray-200 rounded-full h-2",children:e.jsx("div",{className:"h-2 rounded-full transition-all duration-300",style:{width:`${x}%`,backgroundColor:d}})})]}),e.jsx("div",{className:"space-y-2",children:o.fields.map((a,l)=>e.jsxs("div",{className:"flex items-center gap-2 text-xs",children:[a.value?e.jsx(A,{className:"h-3 w-3 text-green-600"}):e.jsx(F,{className:"h-3 w-3 text-red-500"}),e.jsx("span",{className:a.value?"text-green-700":"text-red-600",children:a.label})]},l))})]}),e.jsxs("div",{className:"bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-xl p-6 shadow-sm",children:[e.jsxs("div",{className:"flex items-center gap-3 mb-4",children:[e.jsx("div",{className:"p-2 bg-purple-100 rounded-lg",children:e.jsx(P,{className:"h-5 w-5 text-purple-600"})}),e.jsx("h3",{className:"font-semibold text-gray-900 dark:text-gray-100",children:s("Live Preview")})]}),k()]}),e.jsxs("div",{className:"bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-xl p-6 shadow-sm",children:[e.jsxs("div",{className:"flex items-center gap-3 mb-4",children:[e.jsx("div",{className:"p-2 bg-pink-100 rounded-lg",children:e.jsx(E,{className:"h-5 w-5 text-pink-600"})}),e.jsx("h3",{className:"font-semibold text-gray-900 dark:text-gray-100",children:s("Color Scheme")})]}),e.jsxs("div",{className:"flex gap-3",children:[e.jsxs("div",{className:"flex flex-col items-center gap-1",children:[e.jsx("div",{className:"w-8 h-8 rounded-lg shadow-sm border-2 border-white",style:{backgroundColor:((g=(m=r.config_sections)==null?void 0:m.theme)==null?void 0:g.primary_color)||"#3b82f6"}}),e.jsx("span",{className:"text-xs text-gray-500 dark:text-gray-400",children:s("Primary")})]}),e.jsxs("div",{className:"flex flex-col items-center gap-1",children:[e.jsx("div",{className:"w-8 h-8 rounded-lg shadow-sm border-2 border-white",style:{backgroundColor:((y=(h=r.config_sections)==null?void 0:h.theme)==null?void 0:y.secondary_color)||"#8b5cf6"}}),e.jsx("span",{className:"text-xs text-gray-500 dark:text-gray-400",children:s("Secondary")})]}),e.jsxs("div",{className:"flex flex-col items-center gap-1",children:[e.jsx("div",{className:"w-8 h-8 rounded-lg shadow-sm border-2 border-white",style:{backgroundColor:((p=(b=r.config_sections)==null?void 0:b.theme)==null?void 0:p.accent_color)||"#10b77f"}}),e.jsx("span",{className:"text-xs text-gray-500 dark:text-gray-400",children:s("Accent")})]})]})]}),e.jsxs("div",{className:"bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-xl p-6 shadow-sm",children:[e.jsxs("div",{className:"flex items-center gap-3 mb-4",children:[e.jsx("div",{className:"p-2 bg-green-100 rounded-lg",children:e.jsx(N,{className:"h-5 w-5 text-green-600"})}),e.jsx("h3",{className:"font-semibold text-gray-900 dark:text-gray-100",children:s("Contact Info")})]}),e.jsxs("div",{className:"space-y-2",children:[e.jsxs("div",{className:"flex items-center gap-2 text-xs",children:[e.jsx(D,{className:"h-3 w-3 text-gray-400"}),e.jsx("span",{className:r.contact_email?"text-gray-700 dark:text-gray-300":"text-red-500",children:r.contact_email||"Email not set"})]}),e.jsxs("div",{className:"flex items-center gap-2 text-xs",children:[e.jsx(N,{className:"h-3 w-3 text-gray-400"}),e.jsx("span",{className:r.contact_phone?"text-gray-700 dark:text-gray-300":"text-red-500",children:r.contact_phone||"Phone not set"})]}),e.jsxs("div",{className:"flex items-center gap-2 text-xs",children:[e.jsx(H,{className:"h-3 w-3 text-gray-400"}),e.jsx("span",{className:r.contact_address?"text-gray-700 dark:text-gray-300":"text-red-500",children:r.contact_address||"Address not set"})]})]})]})]})}export{z as default}; diff --git a/public/build/assets/LocationPicker-BSycMXk9.js b/public/build/assets/LocationPicker-DAd_AcXs.js similarity index 96% rename from public/build/assets/LocationPicker-BSycMXk9.js rename to public/build/assets/LocationPicker-DAd_AcXs.js index f33afb6c5..8a3cf0231 100644 --- a/public/build/assets/LocationPicker-BSycMXk9.js +++ b/public/build/assets/LocationPicker-DAd_AcXs.js @@ -1 +1 @@ -import{r as d,R as N,j as n}from"./ui-Z445SNHD.js";import{u as R,c as E,l as k,a as I,e as P,M as S,T as z,L as f,b as y}from"./leaflet-ChJqBZBV.js";import{L,I as A}from"./app-RVic1vq7.js";import{L as D}from"./locate-fixed-0Vxox9Do.js";function H(t,e,r){e.center!==r.center&&t.setLatLng(e.center),e.radius!=null&&e.radius!==r.radius&&t.setRadius(e.radius)}function O(){return R().map}function U(t){const e=O();return d.useEffect(function(){return e.on(t),function(){e.off(t)}},[e,t]),e}const T=E(function({center:e,children:r,...c},s){const i=new k.Circle(e,c);return I(i,P(s,{overlayContainer:i}))},H);delete f.Icon.Default.prototype._getIconUrl;f.Icon.Default.mergeOptions({iconRetinaUrl:"https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/images/marker-icon-2x.png",iconUrl:"https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/images/marker-icon.png",shadowUrl:"https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/images/marker-shadow.png"});function F({position:t,radius:e,onPositionChange:r,onRadiusChange:c}){const[s,i]=d.useState(null);U({click(l){r&&r(l.latlng.lat,l.latlng.lng)}}),d.useEffect(()=>{if(t&&e){const l=f.latLng(t),a=e/(111320*Math.cos(l.lat*Math.PI/180));i(f.latLng(l.lat,l.lng+a))}else i(null)},[t,e]);const h=l=>{if(t&&c){const m=f.latLng(t).distanceTo(l.latlng);c(Math.round(m))}};return t===null?null:n.jsxs(n.Fragment,{children:[n.jsx(y,{position:t}),n.jsx(T,{center:t,radius:e,pathOptions:{color:"blue",fillColor:"blue",fillOpacity:.2}}),s&&n.jsx(y,{position:s,draggable:!0,eventHandlers:{drag:h,dragend:h},icon:f.divIcon({className:"custom-handle-icon",html:'

',iconSize:[12,12],iconAnchor:[6,6]})})]})}function Z({latitude:t,longitude:e,radius:r,onChange:c,disabled:s}){const i=N.useRef(null),[h,l]=d.useState(!1),[a,m]=d.useState(t&&e?[t,e]:null),[x,p]=d.useState(r||100);d.useEffect(()=>{t&&e&&m([t,e])},[t,e]),d.useEffect(()=>{r&&p(r)},[r]);const b=(o,u)=>{s||(m([o,u]),c(o,u,x))},j=o=>{if(!s&&(p(o),a)){const u=Array.isArray(a)?a[0]:a.lat,g=Array.isArray(a)?a[1]:a.lng;c(u,g,o)}},v=o=>{if(s)return;const u=Number(o.target.value);j(u)},w=()=>{s||(m(null),c(null,null,x))},C=()=>{l(!0),navigator.geolocation.getCurrentPosition(o=>{const{latitude:u,longitude:g}=o.coords;i.current&&i.current.flyTo([u,g],15),b(u,g),l(!1)},o=>{console.error("Geolocation error:",o),l(!1)},{enableHighAccuracy:!0})},M=[51.505,-.09];return n.jsxs("div",{className:"space-y-4",children:[n.jsxs("div",{className:"flex justify-between items-center",children:[n.jsx(L,{children:"Branch Location"}),!s&&a&&n.jsx("button",{type:"button",onClick:w,className:"text-xs text-red-500 hover:underline",children:"Clear Location"})]}),n.jsxs("div",{className:"h-[300px] w-full rounded-md border border-gray-300 overflow-hidden relative z-0",children:[!s&&n.jsx("button",{type:"button",onClick:C,title:"Find My Location",disabled:h,className:"absolute top-2 right-2 z-10 bg-white hover:bg-gray-100 text-gray-700 p-2 rounded shadow-md border border-gray-300 flex items-center justify-center transition-colors disabled:opacity-50",children:n.jsx(D,{className:`h-5 w-5 ${h?"animate-pulse text-blue-500":""}`})}),n.jsxs(S,{ref:i,center:a||M,zoom:13,scrollWheelZoom:!0,style:{height:"100%",width:"100%",zIndex:0},children:[n.jsx(z,{attribution:'© OpenStreetMap contributors',url:"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"}),n.jsx(F,{position:a,radius:x,onPositionChange:b,onRadiusChange:j})]})]}),n.jsxs("div",{className:"flex gap-4",children:[n.jsxs("div",{className:"w-1/3",children:[n.jsx(L,{className:"text-xs",children:"Radius (meters)"}),n.jsx(A,{type:"number",value:x,onChange:v,disabled:s||!a,min:10,step:10})]}),n.jsx("div",{className:"w-2/3 flex items-end",children:n.jsx("p",{className:"text-xs text-gray-500 mb-2",children:"Drag the blue dot on the circle edge to adjust radius, or enter meters manually."})})]})]})}export{Z as L}; +import{r as d,R as N,j as n}from"./ui-Z445SNHD.js";import{u as R,c as E,l as k,a as I,e as P,M as S,T as z,L as f,b as y}from"./leaflet-FVhBWCqS.js";import{L,I as A}from"./app-36WMjvX0.js";import{L as D}from"./locate-fixed-D29o3FBS.js";function H(t,e,r){e.center!==r.center&&t.setLatLng(e.center),e.radius!=null&&e.radius!==r.radius&&t.setRadius(e.radius)}function O(){return R().map}function U(t){const e=O();return d.useEffect(function(){return e.on(t),function(){e.off(t)}},[e,t]),e}const T=E(function({center:e,children:r,...c},s){const i=new k.Circle(e,c);return I(i,P(s,{overlayContainer:i}))},H);delete f.Icon.Default.prototype._getIconUrl;f.Icon.Default.mergeOptions({iconRetinaUrl:"https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/images/marker-icon-2x.png",iconUrl:"https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/images/marker-icon.png",shadowUrl:"https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/images/marker-shadow.png"});function F({position:t,radius:e,onPositionChange:r,onRadiusChange:c}){const[s,i]=d.useState(null);U({click(l){r&&r(l.latlng.lat,l.latlng.lng)}}),d.useEffect(()=>{if(t&&e){const l=f.latLng(t),a=e/(111320*Math.cos(l.lat*Math.PI/180));i(f.latLng(l.lat,l.lng+a))}else i(null)},[t,e]);const h=l=>{if(t&&c){const m=f.latLng(t).distanceTo(l.latlng);c(Math.round(m))}};return t===null?null:n.jsxs(n.Fragment,{children:[n.jsx(y,{position:t}),n.jsx(T,{center:t,radius:e,pathOptions:{color:"blue",fillColor:"blue",fillOpacity:.2}}),s&&n.jsx(y,{position:s,draggable:!0,eventHandlers:{drag:h,dragend:h},icon:f.divIcon({className:"custom-handle-icon",html:'
',iconSize:[12,12],iconAnchor:[6,6]})})]})}function Z({latitude:t,longitude:e,radius:r,onChange:c,disabled:s}){const i=N.useRef(null),[h,l]=d.useState(!1),[a,m]=d.useState(t&&e?[t,e]:null),[x,p]=d.useState(r||100);d.useEffect(()=>{t&&e&&m([t,e])},[t,e]),d.useEffect(()=>{r&&p(r)},[r]);const b=(o,u)=>{s||(m([o,u]),c(o,u,x))},j=o=>{if(!s&&(p(o),a)){const u=Array.isArray(a)?a[0]:a.lat,g=Array.isArray(a)?a[1]:a.lng;c(u,g,o)}},v=o=>{if(s)return;const u=Number(o.target.value);j(u)},w=()=>{s||(m(null),c(null,null,x))},C=()=>{l(!0),navigator.geolocation.getCurrentPosition(o=>{const{latitude:u,longitude:g}=o.coords;i.current&&i.current.flyTo([u,g],15),b(u,g),l(!1)},o=>{console.error("Geolocation error:",o),l(!1)},{enableHighAccuracy:!0})},M=[51.505,-.09];return n.jsxs("div",{className:"space-y-4",children:[n.jsxs("div",{className:"flex justify-between items-center",children:[n.jsx(L,{children:"Branch Location"}),!s&&a&&n.jsx("button",{type:"button",onClick:w,className:"text-xs text-red-500 hover:underline",children:"Clear Location"})]}),n.jsxs("div",{className:"h-[300px] w-full rounded-md border border-gray-300 overflow-hidden relative z-0",children:[!s&&n.jsx("button",{type:"button",onClick:C,title:"Find My Location",disabled:h,className:"absolute top-2 right-2 z-10 bg-white hover:bg-gray-100 text-gray-700 p-2 rounded shadow-md border border-gray-300 flex items-center justify-center transition-colors disabled:opacity-50",children:n.jsx(D,{className:`h-5 w-5 ${h?"animate-pulse text-blue-500":""}`})}),n.jsxs(S,{ref:i,center:a||M,zoom:13,scrollWheelZoom:!0,style:{height:"100%",width:"100%",zIndex:0},children:[n.jsx(z,{attribution:'© OpenStreetMap contributors',url:"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"}),n.jsx(F,{position:a,radius:x,onPositionChange:b,onRadiusChange:j})]})]}),n.jsxs("div",{className:"flex gap-4",children:[n.jsxs("div",{className:"w-1/3",children:[n.jsx(L,{className:"text-xs",children:"Radius (meters)"}),n.jsx(A,{type:"number",value:x,onChange:v,disabled:s||!a,min:10,step:10})]}),n.jsx("div",{className:"w-2/3 flex items-end",children:n.jsx("p",{className:"text-xs text-gray-500 mb-2",children:"Drag the blue dot on the circle edge to adjust radius, or enter meters manually."})})]})]})}export{Z as L}; diff --git a/public/build/assets/NewsletterSection-10UVw0zl.js b/public/build/assets/NewsletterSection-Cga8QX_n.js similarity index 98% rename from public/build/assets/NewsletterSection-10UVw0zl.js rename to public/build/assets/NewsletterSection-Cga8QX_n.js index 15a0b76ac..42a020d8b 100644 --- a/public/build/assets/NewsletterSection-10UVw0zl.js +++ b/public/build/assets/NewsletterSection-Cga8QX_n.js @@ -1 +1 @@ -import{j as e}from"./ui-Z445SNHD.js";import{u as f,b,t}from"./app-RVic1vq7.js";import{M as h}from"./mail-DxJUXCTJ.js";import"./utils-BWxnHGCV.js";function E({flash:y,settings:j,sectionData:s,globalSettings:d,brandColor:a="#3b82f6"}){const{t:r}=f(),{data:o,setData:x,post:n,processing:m,errors:c,reset:u}=b({email:""}),p=i=>{i.preventDefault(),d!=null&&d.is_demo||t.loading(r("Subscribing to newsletter...")),n(route("landing-page.subscribe"),{onSuccess:l=>{u(),d!=null&&d.is_demo||t.dismiss(),l.props.flash.success?t.success(r(l.props.flash.success)):l.props.flash.error&&t.error(r(l.props.flash.error))},onError:l=>{d!=null&&d.is_demo||t.dismiss(),typeof l=="string"?t.error(r(l)):t.error(r("Failed to subscribe: {{errors}}",{errors:Object.values(l).join(", ")}))}})};return e.jsx("section",{className:"py-12 sm:py-16 lg:py-20 bg-gray-50",children:e.jsx("div",{className:"max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center",children:e.jsxs("div",{className:"bg-white rounded-xl p-8 md:p-12 border border-gray-200",children:[e.jsx("div",{className:"w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6",style:{backgroundColor:`${a}15`},children:e.jsx(h,{className:"w-8 h-8",style:{color:a}})}),e.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:(s==null?void 0:s.title)||r("Stay Updated with HRM")}),e.jsx("p",{className:"text-lg text-gray-600 mb-8 max-w-2xl mx-auto leading-relaxed font-medium",id:"newsletter-description",children:(s==null?void 0:s.subtitle)||r("Get the latest updates, HR tips, and feature announcements.")}),e.jsx("form",{onSubmit:p,className:"max-w-md mx-auto",children:e.jsxs("div",{className:"flex flex-col sm:flex-row gap-4",children:[e.jsxs("div",{className:"flex-1",children:[e.jsx("input",{type:"email",value:o.email,onChange:i=>x("email",i.target.value),placeholder:r("Enter your email address"),className:"w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:border-gray-500 disabled:bg-gray-100 disabled:cursor-not-allowed",style:{"--tw-ring-color":a},required:!0,disabled:m,"aria-label":"Email address for newsletter subscription","aria-describedby":"newsletter-description"}),c.email&&e.jsx("p",{className:"text-red-600 text-sm mt-1",children:c.email})]}),e.jsxs("button",{type:"submit",disabled:m,className:"text-white px-8 py-3 rounded-lg transition-colors font-semibold cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center gap-2 min-w-[120px]",style:{backgroundColor:a},"aria-label":m?"Subscribing to newsletter":"Subscribe to newsletter",children:[m&&e.jsx("div",{className:"w-4 h-4 border-2 border-white border-t-transparent rounded-full animate-spin"}),r(m?"Subscribing...":"Subscribe")]})]})}),e.jsx("p",{className:"text-gray-500 text-sm mt-4",children:(s==null?void 0:s.privacy_text)||r("No spam, unsubscribe at any time. We respect your privacy.")}),(s==null?void 0:s.benefits)&&s.benefits.length>0&&e.jsx("div",{className:"grid grid-cols-1 sm:grid-cols-3 gap-4 sm:gap-6 mt-8 sm:mt-12",children:s.benefits.map((i,l)=>e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"w-12 h-12 bg-gray-100 rounded-full flex items-center justify-center mx-auto mb-3",children:e.jsx("span",{className:"text-gray-700 text-xl",children:i.icon})}),e.jsx("h3",{className:"text-gray-900 font-semibold mb-2",children:i.title}),e.jsx("p",{className:"text-gray-600 text-sm",children:i.description})]},l))})]})})})}export{E as default}; +import{j as e}from"./ui-Z445SNHD.js";import{u as f,b,t}from"./app-36WMjvX0.js";import{M as h}from"./mail-BFoS8U8W.js";import"./utils-BWxnHGCV.js";function E({flash:y,settings:j,sectionData:s,globalSettings:d,brandColor:a="#3b82f6"}){const{t:r}=f(),{data:o,setData:x,post:n,processing:m,errors:c,reset:u}=b({email:""}),p=i=>{i.preventDefault(),d!=null&&d.is_demo||t.loading(r("Subscribing to newsletter...")),n(route("landing-page.subscribe"),{onSuccess:l=>{u(),d!=null&&d.is_demo||t.dismiss(),l.props.flash.success?t.success(r(l.props.flash.success)):l.props.flash.error&&t.error(r(l.props.flash.error))},onError:l=>{d!=null&&d.is_demo||t.dismiss(),typeof l=="string"?t.error(r(l)):t.error(r("Failed to subscribe: {{errors}}",{errors:Object.values(l).join(", ")}))}})};return e.jsx("section",{className:"py-12 sm:py-16 lg:py-20 bg-gray-50",children:e.jsx("div",{className:"max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center",children:e.jsxs("div",{className:"bg-white rounded-xl p-8 md:p-12 border border-gray-200",children:[e.jsx("div",{className:"w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6",style:{backgroundColor:`${a}15`},children:e.jsx(h,{className:"w-8 h-8",style:{color:a}})}),e.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:(s==null?void 0:s.title)||r("Stay Updated with HRM")}),e.jsx("p",{className:"text-lg text-gray-600 mb-8 max-w-2xl mx-auto leading-relaxed font-medium",id:"newsletter-description",children:(s==null?void 0:s.subtitle)||r("Get the latest updates, HR tips, and feature announcements.")}),e.jsx("form",{onSubmit:p,className:"max-w-md mx-auto",children:e.jsxs("div",{className:"flex flex-col sm:flex-row gap-4",children:[e.jsxs("div",{className:"flex-1",children:[e.jsx("input",{type:"email",value:o.email,onChange:i=>x("email",i.target.value),placeholder:r("Enter your email address"),className:"w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:border-gray-500 disabled:bg-gray-100 disabled:cursor-not-allowed",style:{"--tw-ring-color":a},required:!0,disabled:m,"aria-label":"Email address for newsletter subscription","aria-describedby":"newsletter-description"}),c.email&&e.jsx("p",{className:"text-red-600 text-sm mt-1",children:c.email})]}),e.jsxs("button",{type:"submit",disabled:m,className:"text-white px-8 py-3 rounded-lg transition-colors font-semibold cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center gap-2 min-w-[120px]",style:{backgroundColor:a},"aria-label":m?"Subscribing to newsletter":"Subscribe to newsletter",children:[m&&e.jsx("div",{className:"w-4 h-4 border-2 border-white border-t-transparent rounded-full animate-spin"}),r(m?"Subscribing...":"Subscribe")]})]})}),e.jsx("p",{className:"text-gray-500 text-sm mt-4",children:(s==null?void 0:s.privacy_text)||r("No spam, unsubscribe at any time. We respect your privacy.")}),(s==null?void 0:s.benefits)&&s.benefits.length>0&&e.jsx("div",{className:"grid grid-cols-1 sm:grid-cols-3 gap-4 sm:gap-6 mt-8 sm:mt-12",children:s.benefits.map((i,l)=>e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"w-12 h-12 bg-gray-100 rounded-full flex items-center justify-center mx-auto mb-3",children:e.jsx("span",{className:"text-gray-700 text-xl",children:i.icon})}),e.jsx("h3",{className:"text-gray-900 font-semibold mb-2",children:i.title}),e.jsx("p",{className:"text-gray-600 text-sm",children:i.description})]},l))})]})})})}export{E as default}; diff --git a/public/build/assets/PayrollOverrideModal-BbBY8AmA.js b/public/build/assets/PayrollOverrideModal-CJAfYiJ0.js similarity index 95% rename from public/build/assets/PayrollOverrideModal-BbBY8AmA.js rename to public/build/assets/PayrollOverrideModal-CJAfYiJ0.js index fc3cc340a..c658f5d82 100644 --- a/public/build/assets/PayrollOverrideModal-BbBY8AmA.js +++ b/public/build/assets/PayrollOverrideModal-CJAfYiJ0.js @@ -1 +1 @@ -import{r as p,j as e}from"./ui-Z445SNHD.js";import{u as D,D as $,h as R,j as B,k as G,p as M,I as c,o as m,X as F,P as I,q as Y}from"./app-RVic1vq7.js";import{S as q}from"./scroll-area-Do8xQkt5.js";import"./utils-BWxnHGCV.js";import"./index-BdQq_4o_.js";function L({isOpen:j,onClose:v,onSubmit:P,initialData:d}){var C,A,E,S,_;const{t}=D(),[u,f]=p.useState([]),[g,b]=p.useState([]),[l,i]=p.useState([]);p.useEffect(()=>{if(j&&d){const s=Array.isArray(d.earnings_breakdown)?d.earnings_breakdown:Object.values(d.earnings_breakdown||{}).filter(r=>r&&r.name&&r.amount!==void 0),a=Array.isArray(d.deductions_breakdown)?d.deductions_breakdown:Object.values(d.deductions_breakdown||{}).filter(r=>r&&r.name&&r.amount!==void 0);f(s),b(a),i(d.adjustments||[])}else f([]),b([]),i([])},[j,d]);const T=(s,a)=>{const r=[...u];r[s]={...r[s],amount:a},f(r)},O=(s,a)=>{const r=[...g];r[s]={...r[s],amount:a},b(r)},h=(s,a,r)=>{const n=[...l];n[s]={...n[s],[a]:r},i(n)},y=s=>{i([...l,{type:s,name:"",amount:"0"}])},w=s=>{i(l.filter((a,r)=>r!==s))},x=u.reduce((s,a)=>s+(parseFloat(a.amount)||0),0)+l.filter(s=>s.type==="earning").reduce((s,a)=>s+(parseFloat(a.amount)||0),0),N=g.reduce((s,a)=>s+(parseFloat(a.amount)||0),0)+l.filter(s=>s.type==="deduction").reduce((s,a)=>s+(parseFloat(a.amount)||0),0),k=Math.max(0,x-N),z=()=>{const s={...d.earnings_breakdown};u.forEach((r,n)=>{s[n]=r});const a={...d.deductions_breakdown};g.forEach((r,n)=>{a[n]=r}),P({earnings_breakdown:s,deductions_breakdown:a,adjustments:l})};return e.jsx($,{open:j,onOpenChange:s=>!s&&v(),children:e.jsxs(R,{className:"max-w-4xl max-h-[90vh] flex flex-col p-0",children:[e.jsxs(B,{className:"px-6 py-4 border-b",children:[e.jsxs(G,{children:[t("Override Payroll")," - ",(C=d==null?void 0:d.employee)==null?void 0:C.name]}),e.jsx(M,{className:"sr-only",children:"Edit payroll entry and add custom adjustment line items"})]}),e.jsx(q,{className:"flex-1 px-6 py-4",children:e.jsxs("div",{className:"flex flex-col md:flex-row gap-6",children:[e.jsx("div",{className:"flex-1 space-y-4",children:e.jsxs("div",{className:"bg-green-50 dark:bg-green-900/10 p-4 rounded-lg border border-green-100 dark:border-green-800",children:[e.jsx("h3",{className:"font-semibold text-green-800 dark:text-green-400 mb-4",children:t("EARNINGS")}),e.jsx("div",{className:"space-y-3",children:u.map((s,a)=>e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx("div",{className:"flex-1 text-sm font-medium text-gray-700 dark:text-gray-300",children:s.name}),e.jsx(c,{type:"number",step:"0.01",className:"w-32 text-right font-mono",value:s.amount,onChange:r=>T(a,r.target.value)})]},`earn-${a}`))}),e.jsxs("div",{className:"mt-6 pt-4 border-t border-green-200 dark:border-green-800",children:[e.jsx("h4",{className:"font-medium text-green-700 dark:text-green-500 mb-3 text-sm",children:t("Adjustment Earnings")}),e.jsx("div",{className:"space-y-3",children:l.filter(s=>s.type==="earning").map((s,a,r)=>{const n=l.findIndex(o=>o===s);return e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(c,{className:"flex-1",placeholder:t("Name (e.g. Bonus)"),value:s.name,onChange:o=>h(n,"name",o.target.value)}),e.jsx(c,{type:"number",step:"0.01",className:"w-28 text-right font-mono",value:s.amount,onChange:o=>h(n,"amount",o.target.value)}),e.jsx(m,{variant:"ghost",size:"icon",className:"h-8 w-8 text-red-500 hover:text-red-700 hover:bg-red-50",onClick:()=>w(n),children:e.jsx(F,{className:"h-4 w-4"})})]},`adj-earn-${n}`)})}),e.jsxs(m,{variant:"outline",size:"sm",className:"mt-3 w-full text-green-600 border-green-200 hover:bg-green-50",onClick:()=>y("earning"),children:[e.jsx(I,{className:"h-4 w-4 mr-1"})," ",t("Add Earning")]})]})]})}),e.jsx("div",{className:"flex-1 space-y-4",children:e.jsxs("div",{className:"bg-red-50 dark:bg-red-900/10 p-4 rounded-lg border border-red-100 dark:border-red-800",children:[e.jsx("h3",{className:"font-semibold text-red-800 dark:text-red-400 mb-4",children:t("DEDUCTIONS")}),e.jsx("div",{className:"space-y-3",children:g.map((s,a)=>e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx("div",{className:"flex-1 text-sm font-medium text-gray-700 dark:text-gray-300",children:s.name}),e.jsx(c,{type:"number",step:"0.01",className:"w-32 text-right font-mono",value:s.amount,onChange:r=>O(a,r.target.value)})]},`ded-${a}`))}),e.jsxs("div",{className:"mt-6 pt-4 border-t border-red-200 dark:border-red-800",children:[e.jsx("h4",{className:"font-medium text-red-700 dark:text-red-500 mb-3 text-sm",children:t("Adjustment Deductions")}),e.jsx("div",{className:"space-y-3",children:l.filter(s=>s.type==="deduction").map((s,a,r)=>{const n=l.findIndex(o=>o===s);return e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(c,{className:"flex-1",placeholder:t("Name (e.g. Cash Advance)"),value:s.name,onChange:o=>h(n,"name",o.target.value)}),e.jsx(c,{type:"number",step:"0.01",className:"w-28 text-right font-mono",value:s.amount,onChange:o=>h(n,"amount",o.target.value)}),e.jsx(m,{variant:"ghost",size:"icon",className:"h-8 w-8 text-red-500 hover:text-red-700 hover:bg-red-50",onClick:()=>w(n),children:e.jsx(F,{className:"h-4 w-4"})})]},`adj-ded-${n}`)})}),e.jsxs(m,{variant:"outline",size:"sm",className:"mt-3 w-full text-red-600 border-red-200 hover:bg-red-50",onClick:()=>y("deduction"),children:[e.jsx(I,{className:"h-4 w-4 mr-1"})," ",t("Add Deduction")]})]})]})})]})}),e.jsxs("div",{className:"px-6 py-4 bg-gray-50 dark:bg-gray-900 border-t flex flex-col",children:[e.jsxs("div",{className:"flex justify-between items-center mb-4 px-4 text-sm font-medium",children:[e.jsxs("div",{className:"text-green-700 dark:text-green-500",children:[t("Total Earnings"),": ",e.jsx("span",{className:"font-mono",children:((A=window.appSettings)==null?void 0:A.formatCurrency(x))||x.toFixed(2)})]}),e.jsxs("div",{className:"text-red-700 dark:text-red-500",children:[t("Total Deductions"),": ",e.jsx("span",{className:"font-mono",children:((E=window.appSettings)==null?void 0:E.formatCurrency(N))||N.toFixed(2)})]})]}),e.jsxs("div",{className:"flex justify-between items-center px-4 py-3 bg-white dark:bg-gray-800 rounded-lg border shadow-sm",children:[e.jsxs("div",{className:"text-lg font-bold text-gray-900 dark:text-gray-100",children:[e.jsx("span",{className:"text-sm font-normal text-gray-500 block",children:t("GROSS PAY")}),e.jsx("span",{className:"font-mono",children:((S=window.appSettings)==null?void 0:S.formatCurrency(x))||x.toFixed(2)})]}),e.jsxs("div",{className:"text-right text-xl font-bold text-blue-600 dark:text-blue-400",children:[e.jsx("span",{className:"text-sm font-normal text-gray-500 block",children:t("NET PAY")}),e.jsx("span",{className:"font-mono",children:((_=window.appSettings)==null?void 0:_.formatCurrency(k))||k.toFixed(2)})]})]})]}),e.jsxs(Y,{className:"px-6 py-4 border-t",children:[e.jsx(m,{variant:"outline",onClick:v,children:t("Cancel")}),e.jsx(m,{onClick:z,children:t("Save")})]})]})})}export{L as PayrollOverrideModal}; +import{r as p,j as e}from"./ui-Z445SNHD.js";import{u as D,D as $,h as B,j as R,k as G,p as M,I as c,B as m,X as F,P as I,q as Y}from"./app-36WMjvX0.js";import{S as q}from"./scroll-area-BmK0s-Hf.js";import"./utils-BWxnHGCV.js";import"./index-BdQq_4o_.js";function L({isOpen:j,onClose:v,onSubmit:P,initialData:d}){var C,A,E,S,_;const{t}=D(),[u,f]=p.useState([]),[g,b]=p.useState([]),[l,i]=p.useState([]);p.useEffect(()=>{if(j&&d){const s=Array.isArray(d.earnings_breakdown)?d.earnings_breakdown:Object.values(d.earnings_breakdown||{}).filter(r=>r&&r.name&&r.amount!==void 0),a=Array.isArray(d.deductions_breakdown)?d.deductions_breakdown:Object.values(d.deductions_breakdown||{}).filter(r=>r&&r.name&&r.amount!==void 0);f(s),b(a),i(d.adjustments||[])}else f([]),b([]),i([])},[j,d]);const T=(s,a)=>{const r=[...u];r[s]={...r[s],amount:a},f(r)},O=(s,a)=>{const r=[...g];r[s]={...r[s],amount:a},b(r)},h=(s,a,r)=>{const n=[...l];n[s]={...n[s],[a]:r},i(n)},y=s=>{i([...l,{type:s,name:"",amount:"0"}])},w=s=>{i(l.filter((a,r)=>r!==s))},x=u.reduce((s,a)=>s+(parseFloat(a.amount)||0),0)+l.filter(s=>s.type==="earning").reduce((s,a)=>s+(parseFloat(a.amount)||0),0),N=g.reduce((s,a)=>s+(parseFloat(a.amount)||0),0)+l.filter(s=>s.type==="deduction").reduce((s,a)=>s+(parseFloat(a.amount)||0),0),k=Math.max(0,x-N),z=()=>{const s={...d.earnings_breakdown};u.forEach((r,n)=>{s[n]=r});const a={...d.deductions_breakdown};g.forEach((r,n)=>{a[n]=r}),P({earnings_breakdown:s,deductions_breakdown:a,adjustments:l})};return e.jsx($,{open:j,onOpenChange:s=>!s&&v(),children:e.jsxs(B,{className:"max-w-4xl max-h-[90vh] flex flex-col p-0",children:[e.jsxs(R,{className:"px-6 py-4 border-b",children:[e.jsxs(G,{children:[t("Override Payroll")," - ",(C=d==null?void 0:d.employee)==null?void 0:C.name]}),e.jsx(M,{className:"sr-only",children:"Edit payroll entry and add custom adjustment line items"})]}),e.jsx(q,{className:"flex-1 px-6 py-4",children:e.jsxs("div",{className:"flex flex-col md:flex-row gap-6",children:[e.jsx("div",{className:"flex-1 space-y-4",children:e.jsxs("div",{className:"bg-green-50 dark:bg-green-900/10 p-4 rounded-lg border border-green-100 dark:border-green-800",children:[e.jsx("h3",{className:"font-semibold text-green-800 dark:text-green-400 mb-4",children:t("EARNINGS")}),e.jsx("div",{className:"space-y-3",children:u.map((s,a)=>e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx("div",{className:"flex-1 text-sm font-medium text-gray-700 dark:text-gray-300",children:s.name}),e.jsx(c,{type:"number",step:"0.01",className:"w-32 text-right font-mono",value:s.amount,onChange:r=>T(a,r.target.value)})]},`earn-${a}`))}),e.jsxs("div",{className:"mt-6 pt-4 border-t border-green-200 dark:border-green-800",children:[e.jsx("h4",{className:"font-medium text-green-700 dark:text-green-500 mb-3 text-sm",children:t("Adjustment Earnings")}),e.jsx("div",{className:"space-y-3",children:l.filter(s=>s.type==="earning").map((s,a,r)=>{const n=l.findIndex(o=>o===s);return e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(c,{className:"flex-1",placeholder:t("Name (e.g. Bonus)"),value:s.name,onChange:o=>h(n,"name",o.target.value)}),e.jsx(c,{type:"number",step:"0.01",className:"w-28 text-right font-mono",value:s.amount,onChange:o=>h(n,"amount",o.target.value)}),e.jsx(m,{variant:"ghost",size:"icon",className:"h-8 w-8 text-red-500 hover:text-red-700 hover:bg-red-50",onClick:()=>w(n),children:e.jsx(F,{className:"h-4 w-4"})})]},`adj-earn-${n}`)})}),e.jsxs(m,{variant:"outline",size:"sm",className:"mt-3 w-full text-green-600 border-green-200 hover:bg-green-50",onClick:()=>y("earning"),children:[e.jsx(I,{className:"h-4 w-4 mr-1"})," ",t("Add Earning")]})]})]})}),e.jsx("div",{className:"flex-1 space-y-4",children:e.jsxs("div",{className:"bg-red-50 dark:bg-red-900/10 p-4 rounded-lg border border-red-100 dark:border-red-800",children:[e.jsx("h3",{className:"font-semibold text-red-800 dark:text-red-400 mb-4",children:t("DEDUCTIONS")}),e.jsx("div",{className:"space-y-3",children:g.map((s,a)=>e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx("div",{className:"flex-1 text-sm font-medium text-gray-700 dark:text-gray-300",children:s.name}),e.jsx(c,{type:"number",step:"0.01",className:"w-32 text-right font-mono",value:s.amount,onChange:r=>O(a,r.target.value)})]},`ded-${a}`))}),e.jsxs("div",{className:"mt-6 pt-4 border-t border-red-200 dark:border-red-800",children:[e.jsx("h4",{className:"font-medium text-red-700 dark:text-red-500 mb-3 text-sm",children:t("Adjustment Deductions")}),e.jsx("div",{className:"space-y-3",children:l.filter(s=>s.type==="deduction").map((s,a,r)=>{const n=l.findIndex(o=>o===s);return e.jsxs("div",{className:"flex items-center gap-2",children:[e.jsx(c,{className:"flex-1",placeholder:t("Name (e.g. Cash Advance)"),value:s.name,onChange:o=>h(n,"name",o.target.value)}),e.jsx(c,{type:"number",step:"0.01",className:"w-28 text-right font-mono",value:s.amount,onChange:o=>h(n,"amount",o.target.value)}),e.jsx(m,{variant:"ghost",size:"icon",className:"h-8 w-8 text-red-500 hover:text-red-700 hover:bg-red-50",onClick:()=>w(n),children:e.jsx(F,{className:"h-4 w-4"})})]},`adj-ded-${n}`)})}),e.jsxs(m,{variant:"outline",size:"sm",className:"mt-3 w-full text-red-600 border-red-200 hover:bg-red-50",onClick:()=>y("deduction"),children:[e.jsx(I,{className:"h-4 w-4 mr-1"})," ",t("Add Deduction")]})]})]})})]})}),e.jsxs("div",{className:"px-6 py-4 bg-gray-50 dark:bg-gray-900 border-t flex flex-col",children:[e.jsxs("div",{className:"flex justify-between items-center mb-4 px-4 text-sm font-medium",children:[e.jsxs("div",{className:"text-green-700 dark:text-green-500",children:[t("Total Earnings"),": ",e.jsx("span",{className:"font-mono",children:((A=window.appSettings)==null?void 0:A.formatCurrency(x))||x.toFixed(2)})]}),e.jsxs("div",{className:"text-red-700 dark:text-red-500",children:[t("Total Deductions"),": ",e.jsx("span",{className:"font-mono",children:((E=window.appSettings)==null?void 0:E.formatCurrency(N))||N.toFixed(2)})]})]}),e.jsxs("div",{className:"flex justify-between items-center px-4 py-3 bg-white dark:bg-gray-800 rounded-lg border shadow-sm",children:[e.jsxs("div",{className:"text-lg font-bold text-gray-900 dark:text-gray-100",children:[e.jsx("span",{className:"text-sm font-normal text-gray-500 block",children:t("GROSS PAY")}),e.jsx("span",{className:"font-mono",children:((S=window.appSettings)==null?void 0:S.formatCurrency(x))||x.toFixed(2)})]}),e.jsxs("div",{className:"text-right text-xl font-bold text-blue-600 dark:text-blue-400",children:[e.jsx("span",{className:"text-sm font-normal text-gray-500 block",children:t("NET PAY")}),e.jsx("span",{className:"font-mono",children:((_=window.appSettings)==null?void 0:_.formatCurrency(k))||k.toFixed(2)})]})]})]}),e.jsxs(Y,{className:"px-6 py-4 border-t",children:[e.jsx(m,{variant:"outline",onClick:v,children:t("Cancel")}),e.jsx(m,{onClick:z,children:t("Save")})]})]})})}export{L as PayrollOverrideModal}; diff --git a/public/build/assets/PlansSection-CFIBoUhS.js b/public/build/assets/PlansSection-CTWOjrTj.js similarity index 98% rename from public/build/assets/PlansSection-CFIBoUhS.js rename to public/build/assets/PlansSection-CTWOjrTj.js index e7fc07230..82c2ed565 100644 --- a/public/build/assets/PlansSection-CFIBoUhS.js +++ b/public/build/assets/PlansSection-CTWOjrTj.js @@ -1,4 +1,4 @@ -import{R as w,r as B,j as e}from"./ui-Z445SNHD.js";import{u as I,c as L,O as U,Q,V as v,i as q,d as _}from"./app-RVic1vq7.js";import{u as z}from"./useScrollAnimation-B_bDsIuD.js";import{A as C}from"./arrow-right-CW2uDEAm.js";import"./utils-BWxnHGCV.js";const G=m=>{const x="vCardGo2024",a=m.toString();let l="";for(let r=0;rt+1,0),[i,S]=B.useState("monthly"),{ref:k,isVisible:h}=z(),{props:y}=L(),A=(f=y.globalSettings)==null?void 0:f.is_saas,P=U(y);let o="light";if(P){const t=Q("themeSettings");if(t)try{o=JSON.parse(t).appearance||"light"}catch{o="light"}}else o=((b=y.globalSettings)==null?void 0:b.themeMode)||"light";const s=o==="dark";w.useEffect(()=>{const t=()=>{$()};return g.on("languageChanged",t),()=>g.off("languageChanged",t)},[g]);const u=m.filter(t=>t.is_plan_enable==="on"),R=[{id:1,name:"Starter",description:"Perfect for individuals getting started with digital networking",price:0,yearly_price:0,duration:"month",features:["1 Digital Business Card","Basic QR Code","Contact Form","Basic Analytics","Email Support"],is_popular:!1,is_plan_enable:"on"},{id:2,name:"Professional",description:"Ideal for professionals and small businesses",price:19,yearly_price:190,duration:"month",features:["5 Digital Business Cards","Custom QR Codes","NFC Support","Advanced Analytics","Custom Branding","Priority Support","Lead Capture"],is_popular:!0,is_plan_enable:"on"},{id:3,name:"Enterprise",description:"For teams and large organizations",price:49,yearly_price:490,duration:"month",features:["Unlimited Digital Cards","Team Management","Custom Domain","White Label Solution","API Access","Dedicated Support","Advanced Integrations","Custom Features"],is_popular:!1,is_plan_enable:"on"}],E=u.length>0?u:R,p=t=>{var n;if(typeof window<"u"&&((n=window.appSettings)!=null&&n.formatCurrency)){const d=typeof t=="number"?t:parseFloat(t);return window.appSettings.formatCurrency(d,{showSymbol:!0})}return t},c=t=>i==="yearly"&&t.yearly_price?t.yearly_price:t.price;return e.jsx("section",{id:"pricing",className:`py-12 sm:py-16 lg:py-20 ${s?"bg-gray-900":"bg-white"}`,ref:k,children:e.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[e.jsxs("div",{className:`text-center mb-8 sm:mb-12 lg:mb-16 transition-all duration-700 ${h?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:[e.jsx("h2",{className:`text-3xl md:text-4xl font-bold ${s?"text-white":"text-gray-900"} mb-4`,children:(a==null?void 0:a.title)||r("Choose Your HRM Plan")}),e.jsx("p",{className:`text-lg ${s?"text-gray-300":"text-gray-600"} max-w-3xl mx-auto mb-8 leading-relaxed font-medium`,children:(a==null?void 0:a.subtitle)||r("Start with our free plan and upgrade as your team grows.")}),e.jsxs("div",{className:"flex items-center justify-center gap-4",children:[e.jsx("span",{className:`text-sm ${i==="monthly"?(s?"text-white":"text-gray-900")+" font-semibold":s?"text-gray-400":"text-gray-500"}`,children:r("Monthly")}),e.jsx("button",{onClick:()=>S(i==="monthly"?"yearly":"monthly"),className:"relative inline-flex h-6 w-11 items-center rounded-full transition-colors cursor-pointer",style:{backgroundColor:i==="yearly"?l:s?"#374151":"#e5e7eb",direction:"ltr"},children:e.jsx("span",{className:`inline-block h-4 w-4 transform rounded-full bg-white transition-transform ${i==="yearly"?"translate-x-6":"translate-x-1"}`})}),e.jsx("span",{className:`text-sm ${i==="yearly"?(s?"text-white":"text-gray-900")+" font-semibold":s?"text-gray-400":"text-gray-500"}`,children:r("Yearly")})]})]}),e.jsx("div",{className:`grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 transition-all duration-700 delay-300 ${h?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:E.map(t=>{var n,d,j,N;return e.jsx("div",{className:`relative h-full transition-all duration-200 ${t.is_popular?"transform scale-105":""}`,children:e.jsxs("div",{className:` +import{R as w,r as B,j as e}from"./ui-Z445SNHD.js";import{u as I,c as L,O as U,Q,V as v,i as q,d as _}from"./app-36WMjvX0.js";import{u as z}from"./useScrollAnimation-B_bDsIuD.js";import{A as C}from"./arrow-right-DUEfRrRr.js";import"./utils-BWxnHGCV.js";const G=m=>{const x="vCardGo2024",a=m.toString();let l="";for(let r=0;rt+1,0),[i,S]=B.useState("monthly"),{ref:k,isVisible:h}=z(),{props:y}=L(),A=(f=y.globalSettings)==null?void 0:f.is_saas,P=U(y);let o="light";if(P){const t=Q("themeSettings");if(t)try{o=JSON.parse(t).appearance||"light"}catch{o="light"}}else o=((b=y.globalSettings)==null?void 0:b.themeMode)||"light";const s=o==="dark";w.useEffect(()=>{const t=()=>{$()};return g.on("languageChanged",t),()=>g.off("languageChanged",t)},[g]);const u=m.filter(t=>t.is_plan_enable==="on"),R=[{id:1,name:"Starter",description:"Perfect for individuals getting started with digital networking",price:0,yearly_price:0,duration:"month",features:["1 Digital Business Card","Basic QR Code","Contact Form","Basic Analytics","Email Support"],is_popular:!1,is_plan_enable:"on"},{id:2,name:"Professional",description:"Ideal for professionals and small businesses",price:19,yearly_price:190,duration:"month",features:["5 Digital Business Cards","Custom QR Codes","NFC Support","Advanced Analytics","Custom Branding","Priority Support","Lead Capture"],is_popular:!0,is_plan_enable:"on"},{id:3,name:"Enterprise",description:"For teams and large organizations",price:49,yearly_price:490,duration:"month",features:["Unlimited Digital Cards","Team Management","Custom Domain","White Label Solution","API Access","Dedicated Support","Advanced Integrations","Custom Features"],is_popular:!1,is_plan_enable:"on"}],E=u.length>0?u:R,p=t=>{var n;if(typeof window<"u"&&((n=window.appSettings)!=null&&n.formatCurrency)){const d=typeof t=="number"?t:parseFloat(t);return window.appSettings.formatCurrency(d,{showSymbol:!0})}return t},c=t=>i==="yearly"&&t.yearly_price?t.yearly_price:t.price;return e.jsx("section",{id:"pricing",className:`py-12 sm:py-16 lg:py-20 ${s?"bg-gray-900":"bg-white"}`,ref:k,children:e.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[e.jsxs("div",{className:`text-center mb-8 sm:mb-12 lg:mb-16 transition-all duration-700 ${h?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:[e.jsx("h2",{className:`text-3xl md:text-4xl font-bold ${s?"text-white":"text-gray-900"} mb-4`,children:(a==null?void 0:a.title)||r("Choose Your HRM Plan")}),e.jsx("p",{className:`text-lg ${s?"text-gray-300":"text-gray-600"} max-w-3xl mx-auto mb-8 leading-relaxed font-medium`,children:(a==null?void 0:a.subtitle)||r("Start with our free plan and upgrade as your team grows.")}),e.jsxs("div",{className:"flex items-center justify-center gap-4",children:[e.jsx("span",{className:`text-sm ${i==="monthly"?(s?"text-white":"text-gray-900")+" font-semibold":s?"text-gray-400":"text-gray-500"}`,children:r("Monthly")}),e.jsx("button",{onClick:()=>S(i==="monthly"?"yearly":"monthly"),className:"relative inline-flex h-6 w-11 items-center rounded-full transition-colors cursor-pointer",style:{backgroundColor:i==="yearly"?l:s?"#374151":"#e5e7eb",direction:"ltr"},children:e.jsx("span",{className:`inline-block h-4 w-4 transform rounded-full bg-white transition-transform ${i==="yearly"?"translate-x-6":"translate-x-1"}`})}),e.jsx("span",{className:`text-sm ${i==="yearly"?(s?"text-white":"text-gray-900")+" font-semibold":s?"text-gray-400":"text-gray-500"}`,children:r("Yearly")})]})]}),e.jsx("div",{className:`grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 transition-all duration-700 delay-300 ${h?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:E.map(t=>{var n,d,j,N;return e.jsx("div",{className:`relative h-full transition-all duration-200 ${t.is_popular?"transform scale-105":""}`,children:e.jsxs("div",{className:` relative h-full flex flex-col rounded-lg border-2 transition-all duration-200 ${t.is_popular?"shadow-xl":"hover:shadow-lg"} `,style:{borderColor:t.is_popular?l:s?"rgb(75 85 99)":"rgb(229 231 235)",background:(t.is_popular,s?"rgb(17 24 39)":"white")},children:[t.is_popular&&e.jsx("div",{className:"absolute -top-4 left-1/2 transform -translate-x-1/2 z-10",children:e.jsx("div",{className:"text-white px-4 py-1 rounded-full text-sm font-semibold",style:{backgroundColor:l},children:r("Recommended")})}),e.jsxs("div",{className:`p-6 text-center border-b ${s?"border-gray-700":"border-gray-100"}`,children:[e.jsx("h3",{className:`text-xl font-bold mb-2 ${s?"text-white":"text-gray-900"}`,children:t.name}),e.jsxs("div",{className:"mb-4",children:[e.jsxs("div",{className:"flex items-center justify-center",children:[e.jsx("span",{className:`text-4xl font-bold ${s?"text-white":"text-gray-900"}`,children:c(t)===0?"$0":p(c(t))}),e.jsxs("span",{className:`ml-1 ${s?"text-gray-400":"text-gray-500"}`,children:["/",r(i==="yearly"?"year":"month")]})]}),i==="yearly"&&c(t)>0&&e.jsxs("div",{className:"flex items-center justify-center gap-1 mt-1 text-sm",style:{color:l},children:[e.jsx(v,{className:"h-3.5 w-3.5"}),r("Save")," ",p(Math.round((t.price*12-c(t))*100)/100)," ",r("annually")]})]}),e.jsx("p",{className:`text-sm mb-4 ${s?"text-gray-400":"text-gray-600"}`,children:t.description})]}),e.jsxs("div",{className:"flex flex-col flex-1 p-6",children:[t.stats&&e.jsxs("div",{className:"mb-6",children:[e.jsx("h4",{className:`text-sm font-semibold mb-3 uppercase tracking-wide ${s?"text-gray-400":"text-gray-900"}`,children:r("What's Included")}),e.jsxs("div",{className:"space-y-3",children:[e.jsxs("div",{className:"flex items-center justify-between",children:[e.jsx("span",{className:`text-sm ${s?"text-gray-300":"text-gray-700"}`,children:r("Users")}),e.jsx("span",{className:`text-sm font-semibold ${s?"text-white":"text-gray-900"}`,children:((n=t.stats)==null?void 0:n.users)||"N/A"})]}),e.jsxs("div",{className:"flex items-center justify-between",children:[e.jsx("span",{className:`text-sm ${s?"text-gray-300":"text-gray-700"}`,children:r("Employees")}),e.jsx("span",{className:`text-sm font-semibold ${s?"text-white":"text-gray-900"}`,children:((d=t.stats)==null?void 0:d.employees)||"N/A"})]}),e.jsxs("div",{className:"flex items-center justify-between",children:[e.jsx("span",{className:`text-sm ${s?"text-gray-300":"text-gray-700"}`,children:r("Storage")}),e.jsx("span",{className:`text-sm font-semibold ${s?"text-white":"text-gray-900"}`,children:((j=t.stats)==null?void 0:j.storage)||"N/A"})]})]})]}),((N=t.features)==null?void 0:N.length)>0&&e.jsxs("div",{className:"mb-6 flex-1",children:[e.jsx("h4",{className:`text-sm font-semibold mb-3 uppercase tracking-wide ${s?"text-gray-400":"text-gray-900"}`,children:r("Features")}),e.jsx("ul",{className:"space-y-2",children:t.features.map((F,M)=>e.jsxs("li",{className:"flex items-center gap-2",children:[e.jsx("div",{className:"flex-shrink-0 w-5 h-5 rounded-full flex items-center justify-center",style:{backgroundColor:`${l}20`,color:l},children:e.jsx(v,{className:"h-3 w-3"})}),e.jsx("span",{className:`text-sm ${s?"text-gray-300":"text-gray-700"}`,children:F})]},M))})]}),e.jsx("div",{className:`mt-auto pt-4 border-t ${s?"border-gray-700":"border-gray-200"}`,children:A&&q()?e.jsxs(_,{href:route("register",{plan:G(t.id)}),className:"block w-full text-center py-3 px-6 rounded-lg font-semibold transition-colors hover:opacity-90",style:{backgroundColor:t.is_popular?l:s?"#374151":"#f3f4f6",color:t.is_popular?"white":s?"#f9fafb":"#111827"},children:[t.price===0?r("Start Free"):r("Get Started"),e.jsx(C,{className:"w-4 h-4 inline-block ml-2"})]}):e.jsxs(_,{href:route("login"),className:"block w-full text-center py-3 px-6 rounded-lg font-semibold transition-colors hover:opacity-90",style:{backgroundColor:t.is_popular?l:s?"#374151":"#f3f4f6",color:t.is_popular?"white":s?"#f9fafb":"#111827"},children:[r("Login"),e.jsx(C,{className:"w-4 h-4 inline-block ml-2"})]})})]})]})},t.id)})}),(a==null?void 0:a.faq_text)&&e.jsx("div",{className:"text-center mt-8 sm:mt-12",children:e.jsx("p",{className:s?"text-gray-300":"text-gray-600",children:a.faq_text})})]})})}export{H as default}; diff --git a/public/build/assets/ScreenshotsSection-CpOu5yYt.js b/public/build/assets/ScreenshotsSection-DplZQ--i.js similarity index 97% rename from public/build/assets/ScreenshotsSection-CpOu5yYt.js rename to public/build/assets/ScreenshotsSection-DplZQ--i.js index f7d612525..84cc1f060 100644 --- a/public/build/assets/ScreenshotsSection-CpOu5yYt.js +++ b/public/build/assets/ScreenshotsSection-DplZQ--i.js @@ -1 +1 @@ -import{j as a}from"./ui-Z445SNHD.js";import{u}from"./useScrollAnimation-B_bDsIuD.js";import{u as x,g as h}from"./app-RVic1vq7.js";import{M as m}from"./monitor-DLdOO5Rq.js";import"./utils-BWxnHGCV.js";function $({brandColor:l="#3b82f6",settings:f,globalSettings:i,sectionData:r}){const{t}=x(),{ref:p,isVisible:n}=u(),o=e=>e?e.startsWith("/screenshots/")?`${window.appSettings.imageUrl}${e}`:h(e):null,s=(i==null?void 0:i.is_saas)?"/screenshots/saas/":"/screenshots/non-saas/",y=[{src:`${s}hero.png`,alt:t("HRMGo Dashboard Overview"),title:t("Dashboard Overview"),description:t("Get a complete overview of employee data, payroll, and HR activities in one unified dashboard.")},{src:`${s}employee-management.png`,alt:t("Employee Management Module"),title:t("Employee Management"),description:t("Centralized employee profiles with personal details, documents, and job history.")},{src:`${s}payroll-payslip.png`,alt:t("Payroll Automation"),title:t("Payroll & Payslips"),description:t("Automated payroll processing with tax calculations, allowances, and downloadable payslips.")},{src:`${s}leave.png`,alt:t("Leave Management"),title:t("Leave Management"),description:t("Easily apply, approve, and track employee leave requests with proper workflows and policies.")},{src:`${s}attendance.png`,alt:t("Attendance Tracking"),title:t("Attendance Tracking"),description:t("Monitor employee check-ins, check-outs, and shifts with automated attendance logs.")},{src:`${s}recruitment.png`,alt:t("Recruitment & Onboarding"),title:t("Recruitment & Onboarding"),description:t("Streamline hiring with applicant tracking and digital onboarding.")}],c=r!=null&&r.screenshots_list&&r.screenshots_list.length>0?r.screenshots_list.map(e=>({...e,src:o(e.src)})).filter(e=>e.src):y.map(e=>({...e,src:o(e.src)})).filter(e=>e.src);return a.jsx("section",{id:"screenshots",className:"py-12 sm:py-16 lg:py-20 bg-white",ref:p,children:a.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[a.jsxs("div",{className:`text-center mb-8 sm:mb-12 lg:mb-16 transition-all duration-700 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:[a.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:(r==null?void 0:r.title)||t("See HRM Saas in Action")}),a.jsx("p",{className:"text-lg text-gray-600 max-w-3xl mx-auto leading-relaxed font-medium",children:(r==null?void 0:r.subtitle)||t("Discover how our modern HRM SaaS platform helps you manage employees, payroll, attendance, and performance — all in one place.")})]}),c.length>0?a.jsx("div",{className:`grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 sm:gap-8 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:c.map((e,g)=>a.jsxs("div",{className:"group bg-white rounded-xl border border-gray-200 overflow-hidden hover:shadow-xl transition-all duration-300 hover:-translate-y-1",children:[a.jsxs("div",{className:"aspect-video overflow-hidden bg-gray-100",children:[e.src?a.jsx("img",{src:e.src,alt:e.alt,className:"w-full h-full object-cover group-hover:scale-105 transition-transform duration-300",loading:"lazy",onError:d=>{d.currentTarget.style.display="none",d.currentTarget.nextElementSibling.style.display="flex"}}):null,a.jsx("div",{className:"w-full h-full flex items-center justify-center text-gray-400",style:{display:e.src?"none":"flex"},children:a.jsx(m,{className:"w-12 h-12"})})]}),a.jsxs("div",{className:"p-6",children:[a.jsx("h3",{className:"text-lg font-semibold text-gray-900 mb-2",children:e.title}),a.jsx("p",{className:"text-gray-600 text-sm leading-relaxed",children:e.description})]})]},g))}):a.jsxs("div",{className:`text-center py-12 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:[a.jsx("div",{className:"text-gray-400 mb-4",children:a.jsx(m,{className:"w-16 h-16 mx-auto"})}),a.jsx("p",{className:"text-gray-500",children:t("No screenshots configured yet. Add some in the admin settings.")})]}),a.jsx("div",{className:`text-center mt-12 transition-all duration-700 delay-400 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:a.jsx("a",{href:"#contact",className:"inline-flex items-center px-6 py-3 rounded-full text-sm font-medium border-2 transition-all",style:{borderColor:l,color:l,backgroundColor:"transparent"},onMouseEnter:e=>{e.currentTarget.style.backgroundColor=l,e.currentTarget.style.color="white"},onMouseLeave:e=>{e.currentTarget.style.backgroundColor="transparent",e.currentTarget.style.color=l},children:t("✨ And many more features to discover")})})]})})}export{$ as default}; +import{j as a}from"./ui-Z445SNHD.js";import{u}from"./useScrollAnimation-B_bDsIuD.js";import{u as x,g as h}from"./app-36WMjvX0.js";import{M as m}from"./monitor-DL9THmS7.js";import"./utils-BWxnHGCV.js";function $({brandColor:l="#3b82f6",settings:f,globalSettings:i,sectionData:r}){const{t}=x(),{ref:p,isVisible:n}=u(),o=e=>e?e.startsWith("/screenshots/")?`${window.appSettings.imageUrl}${e}`:h(e):null,s=(i==null?void 0:i.is_saas)?"/screenshots/saas/":"/screenshots/non-saas/",y=[{src:`${s}hero.png`,alt:t("HRMGo Dashboard Overview"),title:t("Dashboard Overview"),description:t("Get a complete overview of employee data, payroll, and HR activities in one unified dashboard.")},{src:`${s}employee-management.png`,alt:t("Employee Management Module"),title:t("Employee Management"),description:t("Centralized employee profiles with personal details, documents, and job history.")},{src:`${s}payroll-payslip.png`,alt:t("Payroll Automation"),title:t("Payroll & Payslips"),description:t("Automated payroll processing with tax calculations, allowances, and downloadable payslips.")},{src:`${s}leave.png`,alt:t("Leave Management"),title:t("Leave Management"),description:t("Easily apply, approve, and track employee leave requests with proper workflows and policies.")},{src:`${s}attendance.png`,alt:t("Attendance Tracking"),title:t("Attendance Tracking"),description:t("Monitor employee check-ins, check-outs, and shifts with automated attendance logs.")},{src:`${s}recruitment.png`,alt:t("Recruitment & Onboarding"),title:t("Recruitment & Onboarding"),description:t("Streamline hiring with applicant tracking and digital onboarding.")}],c=r!=null&&r.screenshots_list&&r.screenshots_list.length>0?r.screenshots_list.map(e=>({...e,src:o(e.src)})).filter(e=>e.src):y.map(e=>({...e,src:o(e.src)})).filter(e=>e.src);return a.jsx("section",{id:"screenshots",className:"py-12 sm:py-16 lg:py-20 bg-white",ref:p,children:a.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[a.jsxs("div",{className:`text-center mb-8 sm:mb-12 lg:mb-16 transition-all duration-700 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:[a.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:(r==null?void 0:r.title)||t("See HRM Saas in Action")}),a.jsx("p",{className:"text-lg text-gray-600 max-w-3xl mx-auto leading-relaxed font-medium",children:(r==null?void 0:r.subtitle)||t("Discover how our modern HRM SaaS platform helps you manage employees, payroll, attendance, and performance — all in one place.")})]}),c.length>0?a.jsx("div",{className:`grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 sm:gap-8 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:c.map((e,g)=>a.jsxs("div",{className:"group bg-white rounded-xl border border-gray-200 overflow-hidden hover:shadow-xl transition-all duration-300 hover:-translate-y-1",children:[a.jsxs("div",{className:"aspect-video overflow-hidden bg-gray-100",children:[e.src?a.jsx("img",{src:e.src,alt:e.alt,className:"w-full h-full object-cover group-hover:scale-105 transition-transform duration-300",loading:"lazy",onError:d=>{d.currentTarget.style.display="none",d.currentTarget.nextElementSibling.style.display="flex"}}):null,a.jsx("div",{className:"w-full h-full flex items-center justify-center text-gray-400",style:{display:e.src?"none":"flex"},children:a.jsx(m,{className:"w-12 h-12"})})]}),a.jsxs("div",{className:"p-6",children:[a.jsx("h3",{className:"text-lg font-semibold text-gray-900 mb-2",children:e.title}),a.jsx("p",{className:"text-gray-600 text-sm leading-relaxed",children:e.description})]})]},g))}):a.jsxs("div",{className:`text-center py-12 transition-all duration-700 delay-200 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:[a.jsx("div",{className:"text-gray-400 mb-4",children:a.jsx(m,{className:"w-16 h-16 mx-auto"})}),a.jsx("p",{className:"text-gray-500",children:t("No screenshots configured yet. Add some in the admin settings.")})]}),a.jsx("div",{className:`text-center mt-12 transition-all duration-700 delay-400 ${n?"opacity-100 translate-y-0":"opacity-0 translate-y-8"}`,children:a.jsx("a",{href:"#contact",className:"inline-flex items-center px-6 py-3 rounded-full text-sm font-medium border-2 transition-all",style:{borderColor:l,color:l,backgroundColor:"transparent"},onMouseEnter:e=>{e.currentTarget.style.backgroundColor=l,e.currentTarget.style.color="white"},onMouseLeave:e=>{e.currentTarget.style.backgroundColor="transparent",e.currentTarget.style.color=l},children:t("✨ And many more features to discover")})})]})})}export{$ as default}; diff --git a/public/build/assets/SectionNavigation-Bd0T0LXY.js b/public/build/assets/SectionNavigation-C4HTEf5r.js similarity index 69% rename from public/build/assets/SectionNavigation-Bd0T0LXY.js rename to public/build/assets/SectionNavigation-C4HTEf5r.js index d6ada567a..651eae403 100644 --- a/public/build/assets/SectionNavigation-Bd0T0LXY.js +++ b/public/build/assets/SectionNavigation-C4HTEf5r.js @@ -1 +1 @@ -import{j as e}from"./ui-Z445SNHD.js";import{ac as m,E as d,o as b}from"./app-RVic1vq7.js";import{S as p}from"./settings-DBIyybIQ.js";import{A as y}from"./arrow-up-down-BUq4MxYv.js";import{C as h}from"./code-CRrrLvGZ.js";import{T as f}from"./type-Bp2lWDQ0.js";import{G as k}from"./globe-DGYT8gkU.js";import{M as x}from"./monitor-DLdOO5Rq.js";import{A as i}from"./award-DdKhPYhN.js";import{I as u}from"./info-lRsnuu1k.js";import{U as g}from"./users-Ddnzs7d-.js";import{C as v}from"./credit-card-Bi7-I95O.js";import{C as j}from"./circle-help-nxVI7HXf.js";import{M as w}from"./mail-DxJUXCTJ.js";import{P as C}from"./phone-D9_s8Psh.js";import"./utils-BWxnHGCV.js";const n=[{title:"Setup",sections:[{key:"general",label:"General",icon:p},{key:"order",label:"Order",icon:y},{key:"advanced",label:"Advanced",icon:h}]},{title:"Layout",sections:[{key:"header",label:"Header",icon:f},{key:"hero",label:"Hero",icon:m},{key:"footer",label:"Footer",icon:d}]},{title:"Content",sections:[{key:"features",label:"Features",icon:k},{key:"screenshots",label:"Screenshots",icon:x},{key:"whychooseus",label:"Why Us",icon:i},{key:"about",label:"About",icon:u}]},{title:"Social",sections:[{key:"team",label:"Team",icon:g},{key:"testimonials",label:"Reviews",icon:i},{key:"plans",label:"Plans",icon:v}]},{title:"Engagement",sections:[{key:"faq",label:"FAQ",icon:j},{key:"newsletter",label:"Newsletter",icon:w},{key:"contact",label:"Contact",icon:C}]}];function B({activeSection:t,onSectionChange:l,t:s}){return e.jsxs("div",{className:"mb-8",children:[e.jsx("div",{className:"block lg:hidden mb-4",children:e.jsx("select",{value:t,onChange:a=>l(a.target.value),className:"w-full p-3 border border-gray-300 rounded-lg bg-white",children:n.map(a=>e.jsx("optgroup",{label:a.title,children:a.sections.map(o=>e.jsx("option",{value:o.key,children:s(o.label)},o.key))},a.title))})}),e.jsx("div",{className:"hidden lg:block space-y-4",children:n.map(a=>e.jsxs("div",{children:[e.jsx("div",{className:"text-xs font-medium text-gray-500 mb-2 px-2",children:a.title}),e.jsx("div",{className:"flex flex-wrap gap-2",children:a.sections.map(o=>{const c=o.icon,r=t===o.key;return e.jsxs(b,{variant:r?"default":"ghost",size:"sm",className:`transition-all duration-200 ${r?"bg-blue-600 text-white shadow-sm hover:bg-blue-700":"text-gray-700 hover:bg-gray-100 hover:text-gray-900"}`,onClick:()=>l(o.key),children:[e.jsx(c,{className:"h-4 w-4 mr-2"}),s(o.label)]},o.key)})})]},a.title))})]})}export{B as default}; +import{j as e}from"./ui-Z445SNHD.js";import{ac as m,E as d,B as b}from"./app-36WMjvX0.js";import{S as p}from"./settings-DYZFNkOc.js";import{A as y}from"./arrow-up-down-FmcUfWon.js";import{C as h}from"./code-DNPjFOcs.js";import{T as f}from"./type-DlbqWp8I.js";import{G as k}from"./globe-ZoJAuRB5.js";import{M as x}from"./monitor-DL9THmS7.js";import{A as i}from"./award-D9FlSYzB.js";import{I as u}from"./info-VH-vNQ_z.js";import{U as g}from"./users-Czs1F8XM.js";import{C as v}from"./credit-card-Dm0mmHp5.js";import{C as j}from"./circle-help-BdsC7_wR.js";import{M as w}from"./mail-BFoS8U8W.js";import{P as C}from"./phone-CJ2h446N.js";import"./utils-BWxnHGCV.js";const n=[{title:"Setup",sections:[{key:"general",label:"General",icon:p},{key:"order",label:"Order",icon:y},{key:"advanced",label:"Advanced",icon:h}]},{title:"Layout",sections:[{key:"header",label:"Header",icon:f},{key:"hero",label:"Hero",icon:m},{key:"footer",label:"Footer",icon:d}]},{title:"Content",sections:[{key:"features",label:"Features",icon:k},{key:"screenshots",label:"Screenshots",icon:x},{key:"whychooseus",label:"Why Us",icon:i},{key:"about",label:"About",icon:u}]},{title:"Social",sections:[{key:"team",label:"Team",icon:g},{key:"testimonials",label:"Reviews",icon:i},{key:"plans",label:"Plans",icon:v}]},{title:"Engagement",sections:[{key:"faq",label:"FAQ",icon:j},{key:"newsletter",label:"Newsletter",icon:w},{key:"contact",label:"Contact",icon:C}]}];function z({activeSection:t,onSectionChange:l,t:s}){return e.jsxs("div",{className:"mb-8",children:[e.jsx("div",{className:"block lg:hidden mb-4",children:e.jsx("select",{value:t,onChange:a=>l(a.target.value),className:"w-full p-3 border border-gray-300 rounded-lg bg-white",children:n.map(a=>e.jsx("optgroup",{label:a.title,children:a.sections.map(o=>e.jsx("option",{value:o.key,children:s(o.label)},o.key))},a.title))})}),e.jsx("div",{className:"hidden lg:block space-y-4",children:n.map(a=>e.jsxs("div",{children:[e.jsx("div",{className:"text-xs font-medium text-gray-500 mb-2 px-2",children:a.title}),e.jsx("div",{className:"flex flex-wrap gap-2",children:a.sections.map(o=>{const c=o.icon,r=t===o.key;return e.jsxs(b,{variant:r?"default":"ghost",size:"sm",className:`transition-all duration-200 ${r?"bg-blue-600 text-white shadow-sm hover:bg-blue-700":"text-gray-700 hover:bg-gray-100 hover:text-gray-900"}`,onClick:()=>l(o.key),children:[e.jsx(c,{className:"h-4 w-4 mr-2"}),s(o.label)]},o.key)})})]},a.title))})]})}export{z as default}; diff --git a/public/build/assets/TeamSection-BF22zXQW.js b/public/build/assets/TeamSection-CeRMDP71.js similarity index 95% rename from public/build/assets/TeamSection-BF22zXQW.js rename to public/build/assets/TeamSection-CeRMDP71.js index 71ddb8bfd..51c1b2e25 100644 --- a/public/build/assets/TeamSection-BF22zXQW.js +++ b/public/build/assets/TeamSection-CeRMDP71.js @@ -1 +1 @@ -import{j as r}from"./ui-Z445SNHD.js";import{u as n}from"./app-RVic1vq7.js";import{L as a,T as x}from"./twitter-HpMmG4Rd.js";import{M as c}from"./mail-DxJUXCTJ.js";import"./utils-BWxnHGCV.js";function y({settings:g,sectionData:e,brandColor:t="#3b82f6"}){const{t:s}=n(),i=[{name:"John Doe",role:s("CEO & Founder"),bio:s("Experienced HR tech entrepreneur passionate about building intuitive HR solutions."),image:"",linkedin:"#",email:"john@example.com"},{name:"Jane Smith",role:s("CTO"),bio:s("Leads the tech team to create scalable and secure HR platforms."),image:"",linkedin:"#",email:"jane@example.com"},{name:"Michael Lee",role:s("Head of Product"),bio:s("Designs user-centric features to simplify HR processes."),image:"",linkedin:"#",email:"michael@example.com"},{name:"Emily Davis",role:s("HR Manager"),bio:s("Oversees employee engagement, recruitment, and HR operations."),image:"",linkedin:"#",email:"emily@example.com"}],m=e!=null&&e.members&&e.members.length>0?e.members:i;return r.jsx("section",{className:"py-12 sm:py-16 lg:py-20 bg-white",children:r.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[r.jsxs("div",{className:"text-center mb-8 sm:mb-12 lg:mb-16",children:[r.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:(e==null?void 0:e.title)||s("Meet Our Team")}),r.jsx("p",{className:"text-lg text-gray-600 max-w-3xl mx-auto leading-relaxed font-medium",children:(e==null?void 0:e.subtitle)||s("We're a dedicated team of HR and technology experts.")})]}),r.jsx("div",{className:"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 sm:gap-8",children:m.map((l,d)=>r.jsxs("div",{className:"bg-gray-50 rounded-xl p-6 border border-gray-200 hover:border-gray-300 transition-colors",children:[r.jsx("div",{className:"w-20 h-20 rounded-full mx-auto mb-4 flex items-center justify-center",style:{backgroundColor:t},children:r.jsx("span",{className:"text-white text-lg font-bold",children:l.name.split(" ").map(o=>o[0]).join("")})}),r.jsxs("div",{className:"text-center",children:[r.jsx("h3",{className:"text-lg font-semibold text-gray-900 mb-1",children:l.name}),r.jsx("p",{className:"text-gray-700 font-medium mb-3",children:l.role}),r.jsx("p",{className:"text-gray-600 text-sm leading-relaxed mb-4",children:l.bio}),r.jsxs("div",{className:"flex justify-center gap-2",children:[l.linkedin&&r.jsx("a",{href:l.linkedin,className:"w-8 h-8 bg-white rounded-full flex items-center justify-center border border-gray-200 hover:border-gray-300 transition-colors",children:r.jsx(a,{className:"w-4 h-4 text-gray-600"})}),l.twitter&&r.jsx("a",{href:l.twitter,className:"w-8 h-8 bg-white rounded-full flex items-center justify-center border border-gray-200 hover:border-gray-300 transition-colors",children:r.jsx(x,{className:"w-4 h-4 text-gray-600"})}),l.email&&r.jsx("a",{href:`mailto:${l.email}`,className:"w-8 h-8 bg-white rounded-full flex items-center justify-center border border-gray-200 hover:border-gray-300 transition-colors",children:r.jsx(c,{className:"w-4 h-4 text-gray-600"})})]})]})]},d))}),((e==null?void 0:e.cta_title)||(e==null?void 0:e.cta_description)||(e==null?void 0:e.cta_button_text))&&r.jsx("div",{className:"text-center mt-8 sm:mt-12 lg:mt-16",children:r.jsxs("div",{className:"bg-gray-50 rounded-xl p-8 border border-gray-200 max-w-2xl mx-auto",children:[r.jsx("h3",{className:"text-2xl font-bold text-gray-900 mb-4",children:(e==null?void 0:e.cta_title)||s("Want to Join Our Team?")}),r.jsx("p",{className:"text-gray-600 mb-6",children:(e==null?void 0:e.cta_description)||s("We're always looking for talented individuals to shape the future of HR management.")}),r.jsx("a",{href:"#contact",className:"inline-flex items-center px-8 py-3 rounded-lg transition-all font-semibold border",style:{backgroundColor:t,color:"white",borderColor:t},onMouseEnter:l=>{l.currentTarget.style.backgroundColor="white",l.currentTarget.style.color=t},onMouseLeave:l=>{l.currentTarget.style.backgroundColor=t,l.currentTarget.style.color="white"},children:(e==null?void 0:e.cta_button_text)||s("View Open Positions")})]})})]})})}export{y as default}; +import{j as r}from"./ui-Z445SNHD.js";import{u as n}from"./app-36WMjvX0.js";import{L as a,T as x}from"./twitter-DDHYm63p.js";import{M as c}from"./mail-BFoS8U8W.js";import"./utils-BWxnHGCV.js";function y({settings:g,sectionData:e,brandColor:t="#3b82f6"}){const{t:s}=n(),i=[{name:"John Doe",role:s("CEO & Founder"),bio:s("Experienced HR tech entrepreneur passionate about building intuitive HR solutions."),image:"",linkedin:"#",email:"john@example.com"},{name:"Jane Smith",role:s("CTO"),bio:s("Leads the tech team to create scalable and secure HR platforms."),image:"",linkedin:"#",email:"jane@example.com"},{name:"Michael Lee",role:s("Head of Product"),bio:s("Designs user-centric features to simplify HR processes."),image:"",linkedin:"#",email:"michael@example.com"},{name:"Emily Davis",role:s("HR Manager"),bio:s("Oversees employee engagement, recruitment, and HR operations."),image:"",linkedin:"#",email:"emily@example.com"}],m=e!=null&&e.members&&e.members.length>0?e.members:i;return r.jsx("section",{className:"py-12 sm:py-16 lg:py-20 bg-white",children:r.jsxs("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:[r.jsxs("div",{className:"text-center mb-8 sm:mb-12 lg:mb-16",children:[r.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-4",children:(e==null?void 0:e.title)||s("Meet Our Team")}),r.jsx("p",{className:"text-lg text-gray-600 max-w-3xl mx-auto leading-relaxed font-medium",children:(e==null?void 0:e.subtitle)||s("We're a dedicated team of HR and technology experts.")})]}),r.jsx("div",{className:"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 sm:gap-8",children:m.map((l,d)=>r.jsxs("div",{className:"bg-gray-50 rounded-xl p-6 border border-gray-200 hover:border-gray-300 transition-colors",children:[r.jsx("div",{className:"w-20 h-20 rounded-full mx-auto mb-4 flex items-center justify-center",style:{backgroundColor:t},children:r.jsx("span",{className:"text-white text-lg font-bold",children:l.name.split(" ").map(o=>o[0]).join("")})}),r.jsxs("div",{className:"text-center",children:[r.jsx("h3",{className:"text-lg font-semibold text-gray-900 mb-1",children:l.name}),r.jsx("p",{className:"text-gray-700 font-medium mb-3",children:l.role}),r.jsx("p",{className:"text-gray-600 text-sm leading-relaxed mb-4",children:l.bio}),r.jsxs("div",{className:"flex justify-center gap-2",children:[l.linkedin&&r.jsx("a",{href:l.linkedin,className:"w-8 h-8 bg-white rounded-full flex items-center justify-center border border-gray-200 hover:border-gray-300 transition-colors",children:r.jsx(a,{className:"w-4 h-4 text-gray-600"})}),l.twitter&&r.jsx("a",{href:l.twitter,className:"w-8 h-8 bg-white rounded-full flex items-center justify-center border border-gray-200 hover:border-gray-300 transition-colors",children:r.jsx(x,{className:"w-4 h-4 text-gray-600"})}),l.email&&r.jsx("a",{href:`mailto:${l.email}`,className:"w-8 h-8 bg-white rounded-full flex items-center justify-center border border-gray-200 hover:border-gray-300 transition-colors",children:r.jsx(c,{className:"w-4 h-4 text-gray-600"})})]})]})]},d))}),((e==null?void 0:e.cta_title)||(e==null?void 0:e.cta_description)||(e==null?void 0:e.cta_button_text))&&r.jsx("div",{className:"text-center mt-8 sm:mt-12 lg:mt-16",children:r.jsxs("div",{className:"bg-gray-50 rounded-xl p-8 border border-gray-200 max-w-2xl mx-auto",children:[r.jsx("h3",{className:"text-2xl font-bold text-gray-900 mb-4",children:(e==null?void 0:e.cta_title)||s("Want to Join Our Team?")}),r.jsx("p",{className:"text-gray-600 mb-6",children:(e==null?void 0:e.cta_description)||s("We're always looking for talented individuals to shape the future of HR management.")}),r.jsx("a",{href:"#contact",className:"inline-flex items-center px-8 py-3 rounded-lg transition-all font-semibold border",style:{backgroundColor:t,color:"white",borderColor:t},onMouseEnter:l=>{l.currentTarget.style.backgroundColor="white",l.currentTarget.style.color=t},onMouseLeave:l=>{l.currentTarget.style.backgroundColor=t,l.currentTarget.style.color="white"},children:(e==null?void 0:e.cta_button_text)||s("View Open Positions")})]})})]})})}export{y as default}; diff --git a/public/build/assets/TestimonialsSection-nJ7kXga9.js b/public/build/assets/TestimonialsSection-CJKIVhW3.js similarity index 95% rename from public/build/assets/TestimonialsSection-nJ7kXga9.js rename to public/build/assets/TestimonialsSection-CJKIVhW3.js index e994fd900..45e785040 100644 --- a/public/build/assets/TestimonialsSection-nJ7kXga9.js +++ b/public/build/assets/TestimonialsSection-CJKIVhW3.js @@ -1 +1 @@ -import{j as e}from"./ui-Z445SNHD.js";import{u as p}from"./useScrollAnimation-B_bDsIuD.js";import{u}from"./app-RVic1vq7.js";import{Q as g}from"./quote-gjEathl_.js";import{S as y}from"./star-tLExGzJz.js";import"./utils-BWxnHGCV.js";function H({testimonials:o,settings:f,sectionData:s,brandColor:a="#3b82f6"}){var i;const{t:n}=u(),{ref:c,isVisible:m}=p(),d=((i=s==null?void 0:s.testimonials)==null?void 0:i.map((r,t)=>({id:t+1,...r})))||[{name:"Alice Johnson",role:"HR Manager",company:"GlobalTech Ltd.",content:"HRMGo has made managing employee records and attendance effortless. Our HR team saves hours every week!",rating:5},{name:"Robert Smith",role:"Operations Head",company:"Innovate Solutions",content:"The payroll automation is incredibly accurate and easy to use. No more manual calculations or errors!",rating:5},{name:"Maria Davis",role:"CEO",company:"BrightFuture Corp.",content:"From recruitment to performance management, HRMGo covers everything we need in one platform.",rating:5},{name:"David Lee",role:"Talent Acquisition Lead",company:"NextGen Enterprises",content:"Recruitment and onboarding have never been smoother. HRMGo’s platform is intuitive and efficient.",rating:5},{name:"Samantha Green",role:"Payroll Specialist",company:"BrightSolutions Inc.",content:"Payroll processing is now quick and error-free thanks to HRMGo. It has transformed our monthly workflow.",rating:5},{name:"Michael Brown",role:"HR Coordinator",company:"TechWave Ltd.",content:"The performance management module helps us track employee goals and progress effortlessly.",rating:5}],x=o.length>0?o:d,h=r=>Array.from({length:5},(t,l)=>e.jsx(y,{className:`w-4 h-4 ${le.jsxs("div",{className:"bg-white border border-gray-200 rounded-xl p-6 hover:border-gray-300 transition-colors relative",children:[e.jsx("div",{className:"absolute -top-3 left-6",children:e.jsx("div",{className:"w-6 h-6 rounded-full flex items-center justify-center",style:{backgroundColor:a},children:e.jsx(g,{className:"w-3 h-3 text-white"})})}),e.jsx("div",{className:"flex items-center gap-1 mb-4 pt-2",children:h(r.rating)}),e.jsxs("p",{className:"text-gray-700 mb-6 leading-relaxed",children:['"',r.content,'"']}),e.jsxs("div",{className:"flex items-center gap-4",children:[e.jsx("div",{className:"w-12 h-12 rounded-full flex items-center justify-center flex-shrink-0",style:{backgroundColor:a},children:r.avatar?e.jsx("img",{src:r.avatar,alt:r.name,className:"w-12 h-12 rounded-full object-cover"}):e.jsx("span",{className:"text-white font-semibold",children:r.name.split(" ").map(t=>t[0]).join("")})}),e.jsxs("div",{children:[e.jsx("h4",{className:"font-semibold text-gray-900",children:r.name}),e.jsxs("p",{className:"text-sm text-gray-600",children:[r.role,r.company&&e.jsxs("span",{className:"text-gray-400",children:[" • ",r.company]})]})]})]})]},r.id))}),(s==null?void 0:s.trust_stats)&&s.trust_stats.length>0&&e.jsx("div",{className:"mt-8 sm:mt-12 lg:mt-16 text-center",children:e.jsxs("div",{className:"bg-white rounded-xl p-8 border border-gray-200",children:[e.jsx("h3",{className:"text-2xl font-bold text-gray-900 mb-6",children:(s==null?void 0:s.trust_title)||n("Trusted by HR Professionals Worldwide")}),e.jsx("div",{className:"flex justify-center items-center gap-8 flex-wrap",children:s.trust_stats.map((r,t)=>e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"text-3xl font-bold text-gray-900",children:r.value}),e.jsx("div",{className:"text-gray-600",children:r.label})]},t))})]})})]})})}export{H as default}; +import{j as e}from"./ui-Z445SNHD.js";import{u as p}from"./useScrollAnimation-B_bDsIuD.js";import{u}from"./app-36WMjvX0.js";import{Q as g}from"./quote-BtOwgBns.js";import{S as y}from"./star-WlheM7sI.js";import"./utils-BWxnHGCV.js";function H({testimonials:o,settings:f,sectionData:s,brandColor:a="#3b82f6"}){var i;const{t:n}=u(),{ref:c,isVisible:m}=p(),d=((i=s==null?void 0:s.testimonials)==null?void 0:i.map((r,t)=>({id:t+1,...r})))||[{name:"Alice Johnson",role:"HR Manager",company:"GlobalTech Ltd.",content:"HRMGo has made managing employee records and attendance effortless. Our HR team saves hours every week!",rating:5},{name:"Robert Smith",role:"Operations Head",company:"Innovate Solutions",content:"The payroll automation is incredibly accurate and easy to use. No more manual calculations or errors!",rating:5},{name:"Maria Davis",role:"CEO",company:"BrightFuture Corp.",content:"From recruitment to performance management, HRMGo covers everything we need in one platform.",rating:5},{name:"David Lee",role:"Talent Acquisition Lead",company:"NextGen Enterprises",content:"Recruitment and onboarding have never been smoother. HRMGo’s platform is intuitive and efficient.",rating:5},{name:"Samantha Green",role:"Payroll Specialist",company:"BrightSolutions Inc.",content:"Payroll processing is now quick and error-free thanks to HRMGo. It has transformed our monthly workflow.",rating:5},{name:"Michael Brown",role:"HR Coordinator",company:"TechWave Ltd.",content:"The performance management module helps us track employee goals and progress effortlessly.",rating:5}],x=o.length>0?o:d,h=r=>Array.from({length:5},(t,l)=>e.jsx(y,{className:`w-4 h-4 ${le.jsxs("div",{className:"bg-white border border-gray-200 rounded-xl p-6 hover:border-gray-300 transition-colors relative",children:[e.jsx("div",{className:"absolute -top-3 left-6",children:e.jsx("div",{className:"w-6 h-6 rounded-full flex items-center justify-center",style:{backgroundColor:a},children:e.jsx(g,{className:"w-3 h-3 text-white"})})}),e.jsx("div",{className:"flex items-center gap-1 mb-4 pt-2",children:h(r.rating)}),e.jsxs("p",{className:"text-gray-700 mb-6 leading-relaxed",children:['"',r.content,'"']}),e.jsxs("div",{className:"flex items-center gap-4",children:[e.jsx("div",{className:"w-12 h-12 rounded-full flex items-center justify-center flex-shrink-0",style:{backgroundColor:a},children:r.avatar?e.jsx("img",{src:r.avatar,alt:r.name,className:"w-12 h-12 rounded-full object-cover"}):e.jsx("span",{className:"text-white font-semibold",children:r.name.split(" ").map(t=>t[0]).join("")})}),e.jsxs("div",{children:[e.jsx("h4",{className:"font-semibold text-gray-900",children:r.name}),e.jsxs("p",{className:"text-sm text-gray-600",children:[r.role,r.company&&e.jsxs("span",{className:"text-gray-400",children:[" • ",r.company]})]})]})]})]},r.id))}),(s==null?void 0:s.trust_stats)&&s.trust_stats.length>0&&e.jsx("div",{className:"mt-8 sm:mt-12 lg:mt-16 text-center",children:e.jsxs("div",{className:"bg-white rounded-xl p-8 border border-gray-200",children:[e.jsx("h3",{className:"text-2xl font-bold text-gray-900 mb-6",children:(s==null?void 0:s.trust_title)||n("Trusted by HR Professionals Worldwide")}),e.jsx("div",{className:"flex justify-center items-center gap-8 flex-wrap",children:s.trust_stats.map((r,t)=>e.jsxs("div",{className:"text-center",children:[e.jsx("div",{className:"text-3xl font-bold text-gray-900",children:r.value}),e.jsx("div",{className:"text-gray-600",children:r.label})]},t))})]})})]})})}export{H as default}; diff --git a/public/build/assets/WhyChooseUs-BLqvjKp_.js b/public/build/assets/WhyChooseUs-ckgTl6GY.js similarity index 87% rename from public/build/assets/WhyChooseUs-BLqvjKp_.js rename to public/build/assets/WhyChooseUs-ckgTl6GY.js index 3ee86cada..2c0ba9018 100644 --- a/public/build/assets/WhyChooseUs-BLqvjKp_.js +++ b/public/build/assets/WhyChooseUs-ckgTl6GY.js @@ -1 +1 @@ -import{j as e}from"./ui-Z445SNHD.js";import{u as g}from"./useScrollAnimation-B_bDsIuD.js";import{u as h}from"./app-RVic1vq7.js";import{C as u}from"./chart-no-axes-column-increasing-CGiezFjo.js";import{L as f}from"./layers-C83xdE-c.js";import{A as y}from"./award-DdKhPYhN.js";import{H as b,S as j}from"./shield-C1i2T0qg.js";import{S as v}from"./star-tLExGzJz.js";import{C as N}from"./circle-check-big-BrZdB446.js";import{Z as w}from"./zap-DqlsE_2h.js";import{U as C}from"./users-Ddnzs7d-.js";import{C as o}from"./clock-C1lsr9DR.js";import"./utils-BWxnHGCV.js";const S={clock:o,users:C,zap:w,"check-circle":N,star:v,shield:j,heart:b,award:y,layers:f,"bar-chart":u};function K({settings:k,sectionData:t,brandColor:r="#3b82f6"}){const{t:s}=h(),{ref:n,isVisible:l}=g(),c=[{icon:"layers",title:s("All-in-One HR Solution"),description:s("Manage employees, payroll, attendance, recruitment, and performance from a single platform. No technical skills required.")},{icon:"clock",title:s("Time-Saving Automation"),description:s("Automate repetitive HR tasks to focus on strategic decision-making.")},{icon:"bar-chart",title:s("Data-Driven Insights"),description:s("Make informed decisions with advanced analytics and reports.")},{icon:"shield",title:s("Secure & Reliable"),description:s("Keep sensitive HR data safe with enterprise-grade security.")}],d=[{value:"500+",label:s("Companies Using HRM"),color:"blue"},{value:"20K+",label:s("Employees Managed"),color:"green"},{value:"98%",label:s("Customer Satisfaction"),color:"orange"}],m=t.reasons&&t.reasons.length>0?t.reasons:c,x=t.stats&&t.stats.length>0?t.stats:d;return e.jsx("section",{className:"py-12 sm:py-16 lg:py-20 bg-white",ref:n,children:e.jsx("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:e.jsxs("div",{className:"grid lg:grid-cols-2 gap-8 sm:gap-12 lg:gap-16 items-center",children:[e.jsxs("div",{className:`transition-all duration-700 ${l?"opacity-100 translate-x-0":"opacity-0 -translate-x-8"}`,children:[e.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-6",children:t.title||s("Why Choose HRM SaaS ?")}),e.jsx("p",{className:"text-lg text-gray-600 mb-8 leading-relaxed font-medium",children:t.subtitle||s("Smart, simple, and powerful HR solutions for every business. We're your partner in building meaningful professional connections that drive business growth.")}),e.jsx("div",{className:"space-y-4 sm:space-y-6",children:m.map((a,i)=>{const p=S[a.icon]||o;return e.jsxs("div",{className:"flex items-start gap-4",children:[e.jsx("div",{className:"w-10 h-10 rounded-lg flex items-center justify-center flex-shrink-0",style:{backgroundColor:`${r}15`},children:e.jsx(p,{className:"w-5 h-5",style:{color:r}})}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-lg font-semibold text-gray-900 mb-2",children:a.title}),e.jsx("p",{className:"text-gray-600",children:a.description})]})]},i)})})]}),e.jsxs("div",{className:`bg-gray-50 rounded-xl p-8 border border-gray-200 transition-all duration-700 delay-300 ${l?"opacity-100 translate-x-0":"opacity-0 translate-x-8"}`,children:[e.jsxs("div",{className:"text-center mb-8",children:[e.jsx("h3",{className:"text-2xl font-bold text-gray-900 mb-2",children:t.stats_title||s("Trusted by Industry Leaders")}),e.jsx("p",{className:"text-gray-600",children:t.stats_subtitle||s("Join the growing community of professionals")})]}),e.jsx("div",{className:"grid grid-cols-2 gap-4 sm:gap-6",children:x.map((a,i)=>e.jsxs("div",{className:"text-center p-6 bg-white rounded-lg border border-gray-200",children:[e.jsx("div",{className:"text-3xl font-bold text-gray-900 mb-2",children:a.value}),e.jsx("div",{className:"text-gray-600 font-medium",children:a.label})]},i))}),(t.cta_title||t.cta_subtitle)&&e.jsxs("div",{className:"mt-8 p-6 rounded-lg text-white text-center",style:{backgroundColor:r},children:[e.jsx("div",{className:"text-xl font-bold mb-2",children:t.cta_title||s("Ready to get started?")}),e.jsx("div",{className:"text-gray-300",children:t.cta_subtitle||s("Join thousands of satisfied users today")})]})]})]})})})}export{K as default}; +import{j as e}from"./ui-Z445SNHD.js";import{u as g}from"./useScrollAnimation-B_bDsIuD.js";import{u as h}from"./app-36WMjvX0.js";import{C as u}from"./chart-no-axes-column-increasing-Beqplnfl.js";import{L as f}from"./layers-CF7Mhs3n.js";import{A as y}from"./award-D9FlSYzB.js";import{H as b,S as j}from"./shield-Mt6vEHxn.js";import{S as v}from"./star-WlheM7sI.js";import{C as N}from"./circle-check-big-DqURlwt2.js";import{Z as w}from"./zap-D4fS-tPu.js";import{U as C}from"./users-Czs1F8XM.js";import{C as o}from"./clock-Cfp0CYjJ.js";import"./utils-BWxnHGCV.js";const S={clock:o,users:C,zap:w,"check-circle":N,star:v,shield:j,heart:b,award:y,layers:f,"bar-chart":u};function K({settings:k,sectionData:t,brandColor:r="#3b82f6"}){const{t:s}=h(),{ref:n,isVisible:l}=g(),c=[{icon:"layers",title:s("All-in-One HR Solution"),description:s("Manage employees, payroll, attendance, recruitment, and performance from a single platform. No technical skills required.")},{icon:"clock",title:s("Time-Saving Automation"),description:s("Automate repetitive HR tasks to focus on strategic decision-making.")},{icon:"bar-chart",title:s("Data-Driven Insights"),description:s("Make informed decisions with advanced analytics and reports.")},{icon:"shield",title:s("Secure & Reliable"),description:s("Keep sensitive HR data safe with enterprise-grade security.")}],d=[{value:"500+",label:s("Companies Using HRM"),color:"blue"},{value:"20K+",label:s("Employees Managed"),color:"green"},{value:"98%",label:s("Customer Satisfaction"),color:"orange"}],m=t.reasons&&t.reasons.length>0?t.reasons:c,x=t.stats&&t.stats.length>0?t.stats:d;return e.jsx("section",{className:"py-12 sm:py-16 lg:py-20 bg-white",ref:n,children:e.jsx("div",{className:"max-w-7xl mx-auto px-4 sm:px-6 lg:px-8",children:e.jsxs("div",{className:"grid lg:grid-cols-2 gap-8 sm:gap-12 lg:gap-16 items-center",children:[e.jsxs("div",{className:`transition-all duration-700 ${l?"opacity-100 translate-x-0":"opacity-0 -translate-x-8"}`,children:[e.jsx("h2",{className:"text-3xl md:text-4xl font-bold text-gray-900 mb-6",children:t.title||s("Why Choose HRM SaaS ?")}),e.jsx("p",{className:"text-lg text-gray-600 mb-8 leading-relaxed font-medium",children:t.subtitle||s("Smart, simple, and powerful HR solutions for every business. We're your partner in building meaningful professional connections that drive business growth.")}),e.jsx("div",{className:"space-y-4 sm:space-y-6",children:m.map((a,i)=>{const p=S[a.icon]||o;return e.jsxs("div",{className:"flex items-start gap-4",children:[e.jsx("div",{className:"w-10 h-10 rounded-lg flex items-center justify-center flex-shrink-0",style:{backgroundColor:`${r}15`},children:e.jsx(p,{className:"w-5 h-5",style:{color:r}})}),e.jsxs("div",{children:[e.jsx("h3",{className:"text-lg font-semibold text-gray-900 mb-2",children:a.title}),e.jsx("p",{className:"text-gray-600",children:a.description})]})]},i)})})]}),e.jsxs("div",{className:`bg-gray-50 rounded-xl p-8 border border-gray-200 transition-all duration-700 delay-300 ${l?"opacity-100 translate-x-0":"opacity-0 translate-x-8"}`,children:[e.jsxs("div",{className:"text-center mb-8",children:[e.jsx("h3",{className:"text-2xl font-bold text-gray-900 mb-2",children:t.stats_title||s("Trusted by Industry Leaders")}),e.jsx("p",{className:"text-gray-600",children:t.stats_subtitle||s("Join the growing community of professionals")})]}),e.jsx("div",{className:"grid grid-cols-2 gap-4 sm:gap-6",children:x.map((a,i)=>e.jsxs("div",{className:"text-center p-6 bg-white rounded-lg border border-gray-200",children:[e.jsx("div",{className:"text-3xl font-bold text-gray-900 mb-2",children:a.value}),e.jsx("div",{className:"text-gray-600 font-medium",children:a.label})]},i))}),(t.cta_title||t.cta_subtitle)&&e.jsxs("div",{className:"mt-8 p-6 rounded-lg text-white text-center",style:{backgroundColor:r},children:[e.jsx("div",{className:"text-xl font-bold mb-2",children:t.cta_title||s("Ready to get started?")}),e.jsx("div",{className:"text-gray-300",children:t.cta_subtitle||s("Join thousands of satisfied users today")})]})]})]})})})}export{K as default}; diff --git a/public/build/assets/alert-CyVbzPbL.js b/public/build/assets/alert-CXPQTH5c.js similarity index 92% rename from public/build/assets/alert-CyVbzPbL.js rename to public/build/assets/alert-CXPQTH5c.js index eeeabdb92..8fcf68fa2 100644 --- a/public/build/assets/alert-CyVbzPbL.js +++ b/public/build/assets/alert-CXPQTH5c.js @@ -1 +1 @@ -import{j as a}from"./ui-Z445SNHD.js";import{e,an as i}from"./app-RVic1vq7.js";const o=i("relative w-full rounded-lg border px-4 py-3 text-sm grid has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] grid-cols-[0_1fr] has-[>svg]:gap-x-3 gap-y-0.5 items-start [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current",{variants:{variant:{default:"bg-background text-foreground",destructive:"text-destructive-foreground [&>svg]:text-current *:data-[slot=alert-description]:text-destructive-foreground/80"}},defaultVariants:{variant:"default"}});function l({className:t,variant:r,...s}){return a.jsx("div",{"data-slot":"alert",role:"alert",className:e(o({variant:r}),t),...s})}function c({className:t,...r}){return a.jsx("div",{"data-slot":"alert-description",className:e("text-muted-foreground col-start-2 grid justify-items-start gap-1 text-sm [&_p]:leading-relaxed",t),...r})}export{l as A,c as a}; +import{j as a}from"./ui-Z445SNHD.js";import{e,an as i}from"./app-36WMjvX0.js";const o=i("relative w-full rounded-lg border px-4 py-3 text-sm grid has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] grid-cols-[0_1fr] has-[>svg]:gap-x-3 gap-y-0.5 items-start [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current",{variants:{variant:{default:"bg-background text-foreground",destructive:"text-destructive-foreground [&>svg]:text-current *:data-[slot=alert-description]:text-destructive-foreground/80"}},defaultVariants:{variant:"default"}});function l({className:t,variant:r,...s}){return a.jsx("div",{"data-slot":"alert",role:"alert",className:e(o({variant:r}),t),...s})}function c({className:t,...r}){return a.jsx("div",{"data-slot":"alert-description",className:e("text-muted-foreground col-start-2 grid justify-items-start gap-1 text-sm [&_p]:leading-relaxed",t),...r})}export{l as A,c as a}; diff --git a/public/build/assets/app-36WMjvX0.js b/public/build/assets/app-36WMjvX0.js new file mode 100644 index 000000000..240416992 --- /dev/null +++ b/public/build/assets/app-36WMjvX0.js @@ -0,0 +1,193 @@ +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/browser-ponyfill-B2OCLxrH.js","assets/ui-Z445SNHD.js","assets/confirm-password-D1OqARtK.js","assets/input-error-DbaxcyOC.js","assets/auth-layout-CwqgjrR_.js","assets/CookieConsentBanner-CIl2kmlz.js","assets/react-country-flag.esm-Bs2jngHP.js","assets/refresh-cw-BTR9wbuS.js","assets/globe-ZoJAuRB5.js","assets/settings-DYZFNkOc.js","assets/switch-C7AW5g5G.js","assets/index-9MclThM-.js","assets/use-favicon-D9sXPfy_.js","assets/auth-button-CAQS5WwJ.js","assets/loader-circle-CbxAZW2L.js","assets/lock-RX1hYn48.js","assets/utils-BWxnHGCV.js","assets/forgot-password-1N2BcBLH.js","assets/text-link-BE2GFkLu.js","assets/recaptcha-Ogh3pdFI.js","assets/mail-BFoS8U8W.js","assets/login-BJdZofNq.js","assets/checkbox-Bos2Phgi.js","assets/register-BeZd-2CQ.js","assets/reset-password-dQVhyADD.js","assets/setup-admin-Cllpwqro.js","assets/shield-check--CTAItWs.js","assets/verify-email-C559eGfk.js","assets/index-fC9HVRx6.js","assets/page-template-B_mOhR6n.js","assets/textarea-CdnKPU5F.js","assets/select-DgPPBKIC.js","assets/index-BdQq_4o_.js","assets/chevron-up-DXYKkCZG.js","assets/language-BbwPiY59.js","assets/sparkles-CpwdFUQZ.js","assets/copy-DSkOAFhr.js","assets/chevron-right-C_P-uZ-m.js","assets/layout-grid-Ba5sCiyJ.js","assets/briefcase-Dsiqzllu.js","assets/credit-card-Dm0mmHp5.js","assets/gift-Cu9GEEJ_.js","assets/user-DToEmJ9g.js","assets/users-Czs1F8XM.js","assets/calendar-BYVpj4_X.js","assets/calendar-days-BdrEl_Gk.js","assets/clock-Cfp0CYjJ.js","assets/fingerprint-q0Oj9Sk5.js","assets/timer-Bn-D5krG.js","assets/dollar-sign-CFqWGHdB.js","assets/coins-D-42zezY.js","assets/index-BFT_C1pH.js","assets/log-out-DJQW3sMi.js","assets/index-DrmIhGnK.js","assets/apply-CNuWDxnb.js","assets/use-brand-theme-CKPJTDwQ.js","assets/arrow-left-CjPQICYw.js","assets/index-B_MPpKqW.js","assets/star-WlheM7sI.js","assets/filter-D8dMdozc.js","assets/building-CG4yAV8N.js","assets/map-pin-L7jUebKz.js","assets/chevron-left-DKWjKjSf.js","assets/job-details-yaXvweNY.js","assets/index-BcyRomtd.js","assets/pagination-n2efY1KU.js","assets/search-and-filter-bar-PUOLiNYr.js","assets/list-Ajdnpsw1.js","assets/use-initials-BK4eRgYY.js","assets/CrudFormModal-Bmz2nLeY.js","assets/radio-group-BtLENAXk.js","assets/circle-BpyxLEsH.js","assets/multi-select-field-BX9C1tYH.js","assets/scroll-area-BmK0s-Hf.js","assets/LocationPicker-DAd_AcXs.js","assets/leaflet-FVhBWCqS.js","assets/leaflet-CLLlcC51.css","assets/locate-fixed-D29o3FBS.js","assets/CrudDeleteModal-DM40AK8z.js","assets/circle-check-C_SLfS2p.js","assets/view-DuL3-ZS4.js","assets/building-2-Cda8xQDI.js","assets/lock-open-CN4tz8Of.js","assets/info-VH-vNQ_z.js","assets/square-pen-B3p2jiW9.js","assets/trash-2-Dxg0nP1A.js","assets/index-CZgLZzqR.js","assets/CrudTable-DA37WZsR.js","assets/table-C1YkBp3W.js","assets/unlink-sh32LPkQ.js","assets/scale-rJYsnHRa.js","assets/arrow-down-left-BN6xjhcz.js","assets/arrow-right-left-DKUcVR58.js","assets/arrow-right-DUEfRrRr.js","assets/arrow-up-down-FmcUfWon.js","assets/award-D9FlSYzB.js","assets/ban-CMgLBFSt.js","assets/indian-rupee-Bh3-8N2a.js","assets/bell-Cr2F9IDD.js","assets/book-open-DUwKvBiK.js","assets/boxes-rwzklut0.js","assets/calculator-wt_63eRJ.js","assets/calendar-check-BZ1JTjf6.js","assets/camera-DDKUkICL.js","assets/chart-column-GeSBJr5Y.js","assets/chart-no-axes-column-increasing-Beqplnfl.js","assets/chart-no-axes-column-BKgkVzqT.js","assets/circle-alert-KsX4JXbz.js","assets/circle-check-big-DqURlwt2.js","assets/circle-help-BdsC7_wR.js","assets/circle-x-DkvEqmM5.js","assets/clipboard-list-BU0dok7E.js","assets/code-DNPjFOcs.js","assets/crosshair-C7OptAZm.js","assets/crown-Cp4cgutu.js","assets/download-Ba72czhU.js","assets/external-link-uO-R2E0-.js","assets/eye-off-DlDpEvnB.js","assets/eye-DSAoA9Pp.js","assets/instagram-DBjFHIT7.js","assets/file-down-Bxu0R4EW.js","assets/pen-line-Fy-AVmqM.js","assets/file-up-CZ-cXuKa.js","assets/folder-git-2-Dwj_EoDL.js","assets/house-D8b8GwgZ.js","assets/git-branch-D2sIFzs4.js","assets/grip-vertical-DXcr-v-g.js","assets/hard-drive-ApF-ULi1.js","assets/hash-CHJS6b-L.js","assets/shield-Mt6vEHxn.js","assets/layers-CF7Mhs3n.js","assets/layout-list-BuBaZfwq.js","assets/lightbulb-fAsbBO8F.js","assets/link-2-C22T2wSs.js","assets/link-ClcCoVU_.js","assets/twitter-DDHYm63p.js","assets/log-in-Bt5dnADg.js","assets/menu-Cu-nnefe.js","assets/message-square-warning-DbVEqa_0.js","assets/message-square-DMJ4IbdE.js","assets/monitor-DL9THmS7.js","assets/package-B9XnehkQ.js","assets/percent-BYDujffR.js","assets/phone-CJ2h446N.js","assets/plane-BqORGC6m.js","assets/play-DHqp-NCB.js","assets/qr-code-u5AOBzVe.js","assets/quote-BtOwgBns.js","assets/radio-CxUR05xj.js","assets/ruler-DbxwIrQY.js","assets/send-DpE3qK0m.js","assets/server-DgtPu6lA.js","assets/wifi-CFyF5qct.js","assets/smartphone-BQ_9x4vN.js","assets/square-check-big-Dt4MtZcM.js","assets/sun-DRsBfXSu.js","assets/tag-CMVMnpSh.js","assets/target-BEz5Ry2v.js","assets/thumbs-up-DYj-woXk.js","assets/ticket-BhEK5100.js","assets/trash-Dyd2ZsaG.js","assets/trending-down-CeOqAkGV.js","assets/trending-up-CPB8hZlm.js","assets/triangle-alert-MsN2AA6c.js","assets/trophy-BZyhzbIT.js","assets/type-DlbqWp8I.js","assets/user-check-4xSYwYvq.js","assets/user-plus-C-0nSlHG.js","assets/user-x-Drk57M2z.js","assets/wallet-C3p1yihr.js","assets/wrench-CLqKc51o.js","assets/zap-D4fS-tPu.js","assets/index-DmNc0KqZ.js","assets/show-47wVl1fO.js","assets/index-Bd5O1uaW.js","assets/view-CnbbnLqP.js","assets/dashboard-CAr700dq.js","assets/index-BrBk6BCC.js","assets/show-Jm_Va5-e.js","assets/tabs-NEtB1dPW.js","assets/rich-text-editor-BU9ZFbid.js","assets/employee-dashboard-BwDFN9n2.js","assets/chatgpt-demo-Bv6DFCFA.js","assets/dashboard-CfB9GOSF.js","assets/index-oTtEIR32.js","assets/show-BarnimWZ.js","assets/progress-hZbbaL1H.js","assets/statistics-C-CWu_xa.js","assets/dashboard-BlDxaRW8.js","assets/depreciation-report-CkTGQ-Vj.js","assets/index-DnOImrhZ.js","assets/ImportModal-NusA89JZ.js","assets/alert-CXPQTH5c.js","assets/show-DqKGypNk.js","assets/index-CzYjihki.js","assets/index-D_-BSoKg.js","assets/calendar-CbXVBLLt.js","assets/index-D53XJX3I.js","assets/view-KNkCu3wq.js","assets/index-CNrYyrTq.js","assets/view-C5HIvuAE.js","assets/index-C9PRI7BR.js","assets/index-CoSCDBWf.js","assets/view-DRK4ZZ6R.js","assets/index-Hungu7Ev.js","assets/view-CmXiH4eH.js","assets/index-Cw9CiUtQ.js","assets/view-CWpbKAQ9.js","assets/index-KIubAgFr.js","assets/view-DLBHNjJU.js","assets/index-Cr2NxuTr.js","assets/create-MMLFqaMv.js","assets/edit-BN6GmA10.js","assets/generate-Cq9vrwzk.js","assets/index-D8MAiBLr.js","assets/show-D05Qa3oN.js","assets/index-DMs7zjzO.js","assets/view-DaYOOtgw.js","assets/index-Xfx-1YyG.js","assets/view-DNab4SHJ.js","assets/index-B1Wp-9Ys.js","assets/view-7DGOaQpC.js","assets/index-Clwr72bD.js","assets/view-CoouHh4M.js","assets/index-BWTH8WIr.js","assets/index-CwauSmZb.js","assets/view-DxLgnxXp.js","assets/index-B29fKzxc.js","assets/create-D_UpLZ1t.js","assets/edit-7mqIBJZf.js","assets/generate-te0OpLsc.js","assets/index-BWI5iqQ8.js","assets/show-B5gyV940.js","assets/index-CO2R-44s.js","assets/view-CtFA_ASk.js","assets/index-BqugrWsg.js","assets/view-CXN7ZYNm.js","assets/payroll-calculation-DwIEIyqv.js","assets/create-gG_0LnGy.js","assets/edit-BR1w1kzM.js","assets/index-Dkrcibl7.js","assets/show-DwvQc3L3.js","assets/calendar-DuV5P8IJ.js","assets/index-smRRRkSn.js","assets/view-CB7ZdtdC.js","assets/index-BNo-eqB7.js","assets/view-CNZtvKpI.js","assets/index-CwQA2cnP.js","assets/view-kXfr2WxG.js","assets/index-pRmNWXVx.js","assets/view-vdn7WTtT.js","assets/index-ClMbMobc.js","assets/index-CKWBSAmf.js","assets/PayrollOverrideModal-CJAfYiJ0.js","assets/index-BcMi6v0i.js","assets/show-Bj_wVRBa.js","assets/index-BxZDK-pq.js","assets/index-CSidNqBG.js","assets/view-DvQoBgBR.js","assets/conduct-Bit3uHe5.js","assets/create-DaegGGK4.js","assets/index-CuFhuoKQ.js","assets/show-jrwShrkd.js","assets/index-Cn5g3P59.js","assets/index-BOicqsA7.js","assets/view-C9rDkZIQ.js","assets/index-DvAIhxUh.js","assets/view-DVfIqCBv.js","assets/index-C1sI7BBU.js","assets/index-pqo9n095.js","assets/view-B61i5IO4.js","assets/index-DWXfG_OI.js","assets/view-B42C0eXq.js","assets/index-B8KYECH7.js","assets/show-SAzLqrFM.js","assets/index-DGTvJk1w.js","assets/convert-to-employee-FEBh-Cld.js","assets/index-DLJ628gT.js","assets/show-CTFo-gGw.js","assets/index-CVhtxGN0.js","assets/view-DsKfgxh3.js","assets/index-BfDnZJg2.js","assets/view-8-tPtnRg.js","assets/index-pYsbnZJq.js","assets/view-xmGjBfiu.js","assets/index-8q28BI_8.js","assets/view-C8mpw4Um.js","assets/index-BBuwqz6P.js","assets/index-duELMnXl.js","assets/view-BLotU0Ce.js","assets/index-DWgyDBl8.js","assets/index-DN74-9IT.js","assets/view-DJSQQkIM.js","assets/create-DVeP7nM3.js","assets/tag-input-n9zn3n5y.js","assets/edit-CXHn4l2K.js","assets/index-BEOddIe2.js","assets/show-lFdtcyMy.js","assets/index-DftQ_Qq2.js","assets/index-RRHqyqCe.js","assets/create-BXg0p8VF.js","assets/edit-MEpWyrPY.js","assets/generate-CXjAPr3R.js","assets/index-BGtyamTZ.js","assets/show-Qexoffxo.js","assets/index-R6M1pkDI.js","assets/show-D3zrrn_r.js","assets/index-DkKA_RYB.js","assets/view-Cyka--Jz.js","assets/index-Bu7EiVR5.js","assets/view-DczTOeNr.js","assets/index-BN22scs4.js","assets/calendar-D9zVVaq_.js","assets/index-BZ6e-chf.js","assets/view-De9g9ToC.js","assets/index-BnPJtQmj.js","assets/index-YEKu_pmu.js","assets/view-DkItOopW.js","assets/index-Bqf2jHZQ.js","assets/index-DWOIimsh.js","assets/view-W5rVIna8.js","assets/index-DJSZdJ8L.js","assets/show-D36FUcvq.js","assets/dashboard-Cm0mutKf.js","assets/index-Dc3krk5Z.js","assets/show-CUWApChe.js","assets/index-ZC_WyL6Y.js","assets/show-DA0aGUWd.js","assets/calendar-CbQR66d6.js","assets/index-CPI-Myxp.js","assets/show-emFHFmKE.js","assets/index-BOtpjlp7.js","assets/view-CQJkPnmp.js","assets/index-Bet4dOC2.js","assets/view-CEt2ed9P.js","assets/expenses-BUAjfRu7.js","assets/index-BJ7vd-ZI.js","assets/view-DaYCj7q2.js","assets/index-SfCpQzNf.js","assets/view-Di4g9l3g.js","assets/AboutUs-DzEZTl81.js","assets/useScrollAnimation-B_bDsIuD.js","assets/ContactSection-_7Db-oCq.js","assets/FaqSection-BcC82gj4.js","assets/FeaturesSection-0hdL9niF.js","assets/Footer-DmSr40Af.js","assets/Header-CwhUlFHp.js","assets/HeroSection-DN5HNuBZ.js","assets/LivePreview-DTrclG-0.js","assets/NewsletterSection-Cga8QX_n.js","assets/PlansSection-CTWOjrTj.js","assets/ScreenshotsSection-DplZQ--i.js","assets/SectionNavigation-C4HTEf5r.js","assets/TeamSection-CeRMDP71.js","assets/TestimonialsSection-CJKIVhW3.js","assets/WhyChooseUs-ckgTl6GY.js","assets/custom-page-C1GX9mF8.js","assets/create-CHQU4_fO.js","assets/toaster-Bc5RPjCT.js","assets/edit-D8cSr-3r.js","assets/index-CC85rWvL.js","assets/index-DkPpEkpg.js","assets/settings-about-DrFNmmCc.js","assets/settings-contact-D9VfivEb.js","assets/settings-features-U6Gx3rij.js","assets/settings-templates-OYbwHjAX.js","assets/settings-COtbW4wg.js","assets/index-DKAtJ6uq.js","assets/manage-language-DjPusNQ2.js","assets/media-library-D_1lduyr.js","assets/index-w1CUvFzu.js","assets/view-D-9NrBlF.js","assets/index-BGHNx3JG.js","assets/view-2YneSrKw.js","assets/index-LZCYVipQ.js","assets/view-0jk7O7MT.js","assets/index-CY6-VSV0.js","assets/view-BPoXKerk.js","assets/index-CVkqnyLt.js","assets/index-Ct-gPtfV.js","assets/view-U3yXRj5k.js","assets/index-C8KRlEbh.js","assets/index-rGR1DPNh.js","assets/i18n-XqrMqrqA.js","assets/create-DX8NAyvm.js","assets/form-C_YWMrTN.js","assets/edit-jvMkVvef.js","assets/index-C64Vso17.js","assets/index-DHgWAWKP.css","assets/plan-orders-BRfMkQF_.js","assets/plan-request-DX9HYMGU.js","assets/payout-requests-Chh0Wcu-.js","assets/referral-dashboard-cDWFqjyS.js","assets/referral-settings-CMT_9mKJ.js","assets/referred-users-section-KcXEa8dR.js","assets/index-DXnohNhY.js","assets/referred-users-CkAM9o_3.js","assets/index-BJjmPxN7.js","assets/cache-settings-DTMa0SPq.js","assets/chatgpt-settings-DeHmmAFq.js","assets/cookie-settings-gyN0DIar.js","assets/currency-settings-CtNr5NRh.js","assets/email-notification-settings-bFAhbIxl.js","assets/email-settings-BduUz-w6.js","assets/experience-certificate-settings-AEXxulC8.js","assets/google-calendar-settings-CxCFVQv_.js","assets/ip-restriction-settings-DcxSMNVR.js","assets/joining-letter-settings-CyDhW7l1.js","assets/noc-settings-DCC_Tt0R.js","assets/payment-settings-C-EKaF7U.js","assets/recaptcha-settings-FKf7iLgR.js","assets/seo-settings-BLgIe142.js","assets/storage-settings-1itIwtRy.js","assets/stripe-settings-Bqw3nWq1.js","assets/system-settings-D8GwO2bO.js","assets/webhook-settings-D45SXvVj.js","assets/working-days-settings-WpVxAWFg.js","assets/index-BOoI89Cn.js","assets/profile-settings-BzjX76QC.js","assets/dashboard-CW5bbTf_.js","assets/index-BU1XiNFu.js","assets/view-WKa9si0E.js","assets/welcome-3hI4-HTA.js"])))=>i.map(i=>d[i]); +import{g as rw,c as mv,r as A,R as fe,a as aw,b as iw,d as sw,j as x,e as ow,f as $p,h as ex,T as Fp,D as Gp,C as Yp,i as tx,P as nx,O as Xp,u as lw,k as uw,l as cw,m as rx,A as fw,n as Hi,o as ax,p as dw,q as pw,s as ix,t as hw,v as mw,w as gw,x as yw}from"./ui-Z445SNHD.js";import{c as sx}from"./utils-BWxnHGCV.js";const vw="modulepreload",bw=function(t){return"/build/"+t},gv={},O=function(r,a,s){let l=Promise.resolve();if(a&&a.length>0){let f=function(m){return Promise.all(m.map(y=>Promise.resolve(y).then(g=>({status:"fulfilled",value:g}),g=>({status:"rejected",reason:g}))))};document.getElementsByTagName("link");const p=document.querySelector("meta[property=csp-nonce]"),h=(p==null?void 0:p.nonce)||(p==null?void 0:p.getAttribute("nonce"));l=f(a.map(m=>{if(m=bw(m),m in gv)return;gv[m]=!0;const y=m.endsWith(".css"),g=y?'[rel="stylesheet"]':"";if(document.querySelector(`link[href="${m}"]${g}`))return;const S=document.createElement("link");if(S.rel=y?"stylesheet":vw,y||(S.as="script"),S.crossOrigin="",S.href=m,h&&S.setAttribute("nonce",h),document.head.appendChild(S),y)return new Promise((T,b)=>{S.addEventListener("load",T),S.addEventListener("error",()=>b(new Error(`Unable to preload CSS for ${m}`)))})}))}function u(f){const p=new Event("vite:preloadError",{cancelable:!0});if(p.payload=f,window.dispatchEvent(p),!p.defaultPrevented)throw f}return l.then(f=>{for(const p of f||[])p.status==="rejected"&&u(p.reason);return r().catch(u)})};var ox=typeof global=="object"&&global&&global.Object===Object&&global,xw=typeof self=="object"&&self&&self.Object===Object&&self,or=ox||xw||Function("return this")(),_r=or.Symbol,lx=Object.prototype,Sw=lx.hasOwnProperty,_w=lx.toString,Xs=_r?_r.toStringTag:void 0;function Ew(t){var r=Sw.call(t,Xs),a=t[Xs];try{t[Xs]=void 0;var s=!0}catch{}var l=_w.call(t);return s&&(r?t[Xs]=a:delete t[Xs]),l}var ww=Object.prototype,Tw=ww.toString;function Aw(t){return Tw.call(t)}var Ow="[object Null]",Rw="[object Undefined]",yv=_r?_r.toStringTag:void 0;function ei(t){return t==null?t===void 0?Rw:Ow:yv&&yv in Object(t)?Ew(t):Aw(t)}function Er(t){return t!=null&&typeof t=="object"}var Cw="[object Symbol]";function Eu(t){return typeof t=="symbol"||Er(t)&&ei(t)==Cw}function Dw(t,r){for(var a=-1,s=t==null?0:t.length,l=Array(s);++a0){if(++r>=aT)return arguments[0]}else r=0;return t.apply(void 0,arguments)}}function lT(t){return function(){return t}}var ou=(function(){try{var t=ni(Object,"defineProperty");return t({},"",{}),t}catch{}})(),uT=ou?function(t,r){return ou(t,"toString",{configurable:!0,enumerable:!1,value:lT(r),writable:!0})}:cx,cT=oT(uT);function fT(t,r){for(var a=-1,s=t==null?0:t.length;++a-1&&t%1==0&&t-1&&t%1==0&&t<=bT}function Tu(t){return t!=null&&Jp(t.length)&&!Kp(t)}function xT(t,r,a){if(!Ln(a))return!1;var s=typeof r;return(s=="number"?Tu(a)&&wu(r,a.length):s=="string"&&r in a)?_o(a[r],t):!1}function ST(t){return vT(function(r,a){var s=-1,l=a.length,u=l>1?a[l-1]:void 0,f=l>2?a[2]:void 0;for(u=t.length>3&&typeof u=="function"?(l--,u):void 0,f&&xT(a[0],a[1],f)&&(u=l<3?void 0:u,l=1),r=Object(r);++s-1}function jA(t,r){var a=this.__data__,s=Au(a,t);return s<0?(++this.size,a.push([t,r])):a[s][1]=r,this}function Yr(t){var r=-1,a=t==null?0:t.length;for(this.clear();++rp))return!1;var m=u.get(t),y=u.get(r);if(m&&y)return m==r&&y==t;var g=-1,S=!0,T=a&NR?new cu:void 0;for(u.set(t,r),u.set(r,t);++g=r||D<0||g&&P>=u}function C(){var U=Wf();if(w(U))return L(U);p=setTimeout(C,_(U))}function L(U){return p=void 0,S&&s?T(U):(s=l=void 0,f)}function z(){p!==void 0&&clearTimeout(p),m=0,s=h=l=p=void 0}function F(){return p===void 0?f:L(Wf())}function ee(){var U=Wf(),D=w(U);if(s=arguments,l=this,h=U,D){if(p===void 0)return b(h);if(g)return clearTimeout(p),p=setTimeout(C,r),T(h)}return p===void 0&&(p=setTimeout(C,r)),f}return ee.cancel=z,ee.flush=F,ee}function yp(t,r,a){(a!==void 0&&!_o(t[r],a)||a===void 0&&!(r in t))&&Qp(t,r,a)}function lC(t){return Er(t)&&Tu(t)}function vp(t,r){if(!(r==="constructor"&&typeof t[r]=="function")&&r!="__proto__")return t[r]}function uC(t){return gT(t,gx(t))}function cC(t,r,a,s,l,u,f){var p=vp(t,a),h=vp(r,a),m=f.get(h);if(m){yp(t,a,m);return}var y=u?u(p,h,a+"",t,r,f):void 0,g=y===void 0;if(g){var S=ir(h),T=!S&&fo(h),b=!S&&!T&&th(h);y=h,S||T||b?ir(p)?y=p:lC(p)?y=rT(p):T?(g=!1,y=Sx(h,!0)):b?(g=!1,y=_x(h,!0)):y=[]:WA(h)||lu(h)?(y=p,lu(p)?y=uC(p):(!Ln(p)||Kp(p))&&(y=Ex(h))):g=!1}g&&(f.set(h,y),l(y,h,s,u,f),f.delete(h)),yp(t,a,y)}function Cx(t,r,a,s,l){t!==r&&rC(r,function(u,f){if(l||(l=new Sr),Ln(u))cC(t,r,f,a,Cx,s,l);else{var p=s?s(vp(t,f),u,f+"",t,r,l):void 0;p===void 0&&(p=u),yp(t,f,p)}},gx)}var fC={"&":"&","<":"<",">":">",'"':""","'":"'"},dC=eO(fC),Dx=/[&<>"']/g,pC=RegExp(Dx.source);function hC(t){return t=yx(t),t&&pC.test(t)?t.replace(Dx,dC):t}var mC=Object.prototype,gC=mC.hasOwnProperty;function yC(t,r){return t!=null&&gC.call(t,r)}function Nx(t,r){return t!=null&&tC(t,r,yC)}function Ea(t,r){return Rx(t,r)}var bp=ST(function(t,r,a){Cx(t,r,a)});function vC(t,r,a,s){if(!Ln(t))return t;r=rh(r,t);for(var l=-1,u=r.length,f=u-1,p=t;p!=null&&++l-1e3&&H<1e3||U.call(/e/,Z))return Z;var Be=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof H=="number"){var ke=H<0?-ne(-H):ne(H);if(ke!==H){var We=String(ke),Le=L.call(Z,We.length+1);return z.call(We,Be,"$&_")+"."+z.call(z.call(Le,/([0-9]{3})/g,"$&_"),/_$/,"")}}return z.call(Z,Be,"$&_")}var Y=SC,le=Y.custom,de=Qe(le)?le:null,Q={__proto__:null,double:'"',single:"'"},J={__proto__:null,double:/(["\\])/g,single:/(['\\])/g};td=function H(Z,Be,ke,We){var Le=Be||{};if(pt(Le,"quoteStyle")&&!pt(Q,Le.quoteStyle))throw new TypeError('option "quoteStyle" must be "single" or "double"');if(pt(Le,"maxStringLength")&&(typeof Le.maxStringLength=="number"?Le.maxStringLength<0&&Le.maxStringLength!==1/0:Le.maxStringLength!==null))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var on=pt(Le,"customInspect")?Le.customInspect:!0;if(typeof on!="boolean"&&on!=="symbol")throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(pt(Le,"indent")&&Le.indent!==null&&Le.indent!==" "&&!(parseInt(Le.indent,10)===Le.indent&&Le.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(pt(Le,"numericSeparator")&&typeof Le.numericSeparator!="boolean")throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var Yt=Le.numericSeparator;if(typeof Z>"u")return"undefined";if(Z===null)return"null";if(typeof Z=="boolean")return Z?"true":"false";if(typeof Z=="string")return _e(Z,Le);if(typeof Z=="number"){if(Z===0)return 1/0/Z>0?"0":"-0";var we=String(Z);return Yt?j(Z,we):we}if(typeof Z=="bigint"){var Ze=String(Z)+"n";return Yt?j(Z,Ze):Ze}var Rt=typeof Le.depth>"u"?5:Le.depth;if(typeof ke>"u"&&(ke=0),ke>=Rt&&Rt>0&&typeof Z=="object")return Oe(Z)?"[Array]":"[Object]";var At=Pn(Le,ke);if(typeof We>"u")We=[];else if(kt(We,Z)>=0)return"[Circular]";function Mt(wr,fr,is){if(fr&&(We=k.call(We),We.push(fr)),is){var Tr={depth:Le.depth};return pt(Le,"quoteStyle")&&(Tr.quoteStyle=Le.quoteStyle),H(wr,Tr,ke+1,We)}return H(wr,Le,ke+1,We)}if(typeof Z=="function"&&!Ae(Z)){var gt=it(Z),Wt=sn(Z,Mt);return"[Function"+(gt?": "+gt:" (anonymous)")+"]"+(Wt.length>0?" { "+P.call(Wt,", ")+" }":"")}if(Qe(Z)){var ur=ae?z.call(String(Z),/^(Symbol\(.*\))_[^)]*$/,"$1"):I.call(Z);return typeof Z=="object"&&!ae?Ke(ur):ur}if(Pe(Z)){for(var zt="<"+ee.call(String(Z.nodeName)),Xt=Z.attributes||[],Kn=0;Kn",zt}if(Oe(Z)){if(Z.length===0)return"[]";var un=sn(Z,Mt);return At&&!Jt(un)?"["+It(un,At)+"]":"[ "+P.call(un,", ")+" ]"}if(me(Z)){var Oa=sn(Z,Mt);return!("cause"in Error.prototype)&&"cause"in Z&&!R.call(Z,"cause")?"{ ["+String(Z)+"] "+P.call(D.call("[cause]: "+Mt(Z.cause),Oa),", ")+" }":Oa.length===0?"["+String(Z)+"]":"{ ["+String(Z)+"] "+P.call(Oa,", ")+" }"}if(typeof Z=="object"&&on){if(de&&typeof Z[de]=="function"&&Y)return Y(Z,{depth:Rt-ke});if(on!=="symbol"&&typeof Z.inspect=="function")return Z.inspect()}if(Ot(Z)){var rs=[];return s&&s.call(Z,function(wr,fr){rs.push(Mt(fr,Z,!0)+" => "+Mt(wr,Z))}),nt("Map",a.call(Z),rs,At)}if(Ue(Z)){var Qn=[];return p&&p.call(Z,function(wr){Qn.push(Mt(wr,Z))}),nt("Set",f.call(Z),Qn,At)}if(mt(Z))return Nt("WeakMap");if(ye(Z))return Nt("WeakSet");if(Tt(Z))return Nt("WeakRef");if(ue(Z))return Ke(Mt(Number(Z)));if(bt(Z))return Ke(Mt(q.call(Z)));if(ze(Z))return Ke(b.call(Z));if(ce(Z))return Ke(Mt(String(Z)));if(typeof window<"u"&&Z===window)return"{ [object Window] }";if(typeof globalThis<"u"&&Z===globalThis||typeof mv<"u"&&Z===mv)return"{ [object globalThis] }";if(!Se(Z)&&!Ae(Z)){var Lt=sn(Z,Mt),en=B?B(Z)===Object.prototype:Z instanceof Object||Z.constructor===Object,cr=Z instanceof Object?"":"null prototype",ri=!en&&pe&&Object(Z)===Z&&pe in Z?L.call(at(Z),8,-1):cr?"Object":"",Bu=en||typeof Z.constructor!="function"?"":Z.constructor.name?Z.constructor.name+" ":"",as=Bu+(ri||cr?"["+P.call(D.call([],ri||[],cr||[]),": ")+"] ":"");return Lt.length===0?as+"{}":At?as+"{"+It(Lt,At)+"}":as+"{ "+P.call(Lt,", ")+" }"}return String(Z)};function oe(H,Z,Be){var ke=Be.quoteStyle||Z,We=Q[ke];return We+H+We}function he(H){return z.call(String(H),/"/g,""")}function Te(H){return!pe||!(typeof H=="object"&&(pe in H||typeof H[pe]<"u"))}function Oe(H){return at(H)==="[object Array]"&&Te(H)}function Se(H){return at(H)==="[object Date]"&&Te(H)}function Ae(H){return at(H)==="[object RegExp]"&&Te(H)}function me(H){return at(H)==="[object Error]"&&Te(H)}function ce(H){return at(H)==="[object String]"&&Te(H)}function ue(H){return at(H)==="[object Number]"&&Te(H)}function ze(H){return at(H)==="[object Boolean]"&&Te(H)}function Qe(H){if(ae)return H&&typeof H=="object"&&H instanceof Symbol;if(typeof H=="symbol")return!0;if(!H||typeof H!="object"||!I)return!1;try{return I.call(H),!0}catch{}return!1}function bt(H){if(!H||typeof H!="object"||!q)return!1;try{return q.call(H),!0}catch{}return!1}var Ye=Object.prototype.hasOwnProperty||function(H){return H in this};function pt(H,Z){return Ye.call(H,Z)}function at(H){return _.call(H)}function it(H){if(H.name)return H.name;var Z=C.call(w.call(H),/^function\s*([\w$]+)/);return Z?Z[1]:null}function kt(H,Z){if(H.indexOf)return H.indexOf(Z);for(var Be=0,ke=H.length;BeZ.maxStringLength){var Be=H.length-Z.maxStringLength,ke="... "+Be+" more character"+(Be>1?"s":"");return _e(L.call(H,0,Z.maxStringLength),Z)+ke}var We=J[Z.quoteStyle||"single"];We.lastIndex=0;var Le=z.call(z.call(H,We,"\\$1"),/[\x00-\x1f]/g,Ce);return oe(Le,"single",Z)}function Ce(H){var Z=H.charCodeAt(0),Be={8:"b",9:"t",10:"n",12:"f",13:"r"}[Z];return Be?"\\"+Be:"\\x"+(Z<16?"0":"")+F.call(Z.toString(16))}function Ke(H){return"Object("+H+")"}function Nt(H){return H+" { ? }"}function nt(H,Z,Be,ke){var We=ke?It(Be,ke):P.call(Be,", ");return H+" ("+Z+") {"+We+"}"}function Jt(H){for(var Z=0;Z=0)return!1;return!0}function Pn(H,Z){var Be;if(H.indent===" ")Be=" ";else if(typeof H.indent=="number"&&H.indent>0)Be=P.call(Array(H.indent+1)," ");else return null;return{base:Be,prev:P.call(Array(Z+1),Be)}}function It(H,Z){if(H.length===0)return"";var Be=` +`+Z.prev+Z.base;return Be+P.call(H,","+Be)+` +`+Z.prev}function sn(H,Z){var Be=Oe(H),ke=[];if(Be){ke.length=H.length;for(var We=0;We"u"||!D?t:D(Uint8Array),ae={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?t:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?t:ArrayBuffer,"%ArrayIteratorPrototype%":U&&D?D([][Symbol.iterator]()):t,"%AsyncFromSyncIteratorPrototype%":t,"%AsyncFunction%":K,"%AsyncGenerator%":K,"%AsyncGeneratorFunction%":K,"%AsyncIteratorPrototype%":K,"%Atomics%":typeof Atomics>"u"?t:Atomics,"%BigInt%":typeof BigInt>"u"?t:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?t:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?t:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?t:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":a,"%eval%":eval,"%EvalError%":s,"%Float16Array%":typeof Float16Array>"u"?t:Float16Array,"%Float32Array%":typeof Float32Array>"u"?t:Float32Array,"%Float64Array%":typeof Float64Array>"u"?t:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?t:FinalizationRegistry,"%Function%":w,"%GeneratorFunction%":K,"%Int8Array%":typeof Int8Array>"u"?t:Int8Array,"%Int16Array%":typeof Int16Array>"u"?t:Int16Array,"%Int32Array%":typeof Int32Array>"u"?t:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":U&&D?D(D([][Symbol.iterator]())):t,"%JSON%":typeof JSON=="object"?JSON:t,"%Map%":typeof Map>"u"?t:Map,"%MapIteratorPrototype%":typeof Map>"u"||!U||!D?t:D(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":r,"%Object.getOwnPropertyDescriptor%":L,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?t:Promise,"%Proxy%":typeof Proxy>"u"?t:Proxy,"%RangeError%":l,"%ReferenceError%":u,"%Reflect%":typeof Reflect>"u"?t:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?t:Set,"%SetIteratorPrototype%":typeof Set>"u"||!U||!D?t:D(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?t:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":U&&D?D(""[Symbol.iterator]()):t,"%Symbol%":U?Symbol:t,"%SyntaxError%":f,"%ThrowTypeError%":ee,"%TypedArray%":I,"%TypeError%":p,"%Uint8Array%":typeof Uint8Array>"u"?t:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?t:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?t:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?t:Uint32Array,"%URIError%":h,"%WeakMap%":typeof WeakMap>"u"?t:WeakMap,"%WeakRef%":typeof WeakRef>"u"?t:WeakRef,"%WeakSet%":typeof WeakSet>"u"?t:WeakSet,"%Function.prototype.call%":q,"%Function.prototype.apply%":ne,"%Object.defineProperty%":z,"%Object.getPrototypeOf%":P,"%Math.abs%":m,"%Math.floor%":y,"%Math.max%":g,"%Math.min%":S,"%Math.pow%":T,"%Math.round%":b,"%Math.sign%":_,"%Reflect.getPrototypeOf%":k};if(D)try{null.error}catch(Ae){var pe=D(D(Ae));ae["%Error.prototype%"]=pe}var R=function Ae(me){var ce;if(me==="%AsyncFunction%")ce=C("async function () {}");else if(me==="%GeneratorFunction%")ce=C("function* () {}");else if(me==="%AsyncGeneratorFunction%")ce=C("async function* () {}");else if(me==="%AsyncGenerator%"){var ue=Ae("%AsyncGeneratorFunction%");ue&&(ce=ue.prototype)}else if(me==="%AsyncIteratorPrototype%"){var ze=Ae("%AsyncGenerator%");ze&&D&&(ce=D(ze.prototype))}return ae[me]=ce,ce},B={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},j=Cu(),Y=GC(),le=j.call(q,Array.prototype.concat),de=j.call(ne,Array.prototype.splice),Q=j.call(q,String.prototype.replace),J=j.call(q,String.prototype.slice),oe=j.call(q,RegExp.prototype.exec),he=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,Te=/\\(\\)?/g,Oe=function(me){var ce=J(me,0,1),ue=J(me,-1);if(ce==="%"&&ue!=="%")throw new f("invalid intrinsic syntax, expected closing `%`");if(ue==="%"&&ce!=="%")throw new f("invalid intrinsic syntax, expected opening `%`");var ze=[];return Q(me,he,function(Qe,bt,Ye,pt){ze[ze.length]=Ye?Q(pt,Te,"$1"):bt||Qe}),ze},Se=function(me,ce){var ue=me,ze;if(Y(B,ue)&&(ze=B[ue],ue="%"+ze[0]+"%"),Y(ae,ue)){var Qe=ae[ue];if(Qe===K&&(Qe=R(ue)),typeof Qe>"u"&&!ce)throw new p("intrinsic "+me+" exists, but is not available. Please file an issue!");return{alias:ze,name:ue,value:Qe}}throw new f("intrinsic "+me+" does not exist!")};return Md=function(me,ce){if(typeof me!="string"||me.length===0)throw new p("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof ce!="boolean")throw new p('"allowMissing" argument must be a boolean');if(oe(/^%?[^%]*%?$/,me)===null)throw new f("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var ue=Oe(me),ze=ue.length>0?ue[0]:"",Qe=Se("%"+ze+"%",ce),bt=Qe.name,Ye=Qe.value,pt=!1,at=Qe.alias;at&&(ze=at[0],de(ue,le([0,1],at)));for(var it=1,kt=!0;it=ue.length){var Ue=L(Ye,Ot);kt=!!Ue,kt&&"get"in Ue&&!("originalValue"in Ue.get)?Ye=Ue.get:Ye=Ye[Ot]}else kt=Y(Ye,Ot),Ye=Ye[Ot];kt&&!pt&&(ae[bt]=Ye)}}return Ye},Md}var zd,Rb;function Vx(){if(Rb)return zd;Rb=1;var t=oh(),r=Ux(),a=r([t("%String.prototype.indexOf%")]);return zd=function(l,u){var f=t(l,!!u);return typeof f=="function"&&a(l,".prototype.")>-1?r([f]):f},zd}var Ud,Cb;function qx(){if(Cb)return Ud;Cb=1;var t=oh(),r=Vx(),a=Ru(),s=Wi(),l=t("%Map%",!0),u=r("Map.prototype.get",!0),f=r("Map.prototype.set",!0),p=r("Map.prototype.has",!0),h=r("Map.prototype.delete",!0),m=r("Map.prototype.size",!0);return Ud=!!l&&function(){var g,S={assert:function(T){if(!S.has(T))throw new s("Side channel does not contain "+a(T))},delete:function(T){if(g){var b=h(g,T);return m(g)===0&&(g=void 0),b}return!1},get:function(T){if(g)return u(g,T)},has:function(T){return g?p(g,T):!1},set:function(T,b){g||(g=new l),f(g,T,b)}};return S},Ud}var Vd,Db;function YC(){if(Db)return Vd;Db=1;var t=oh(),r=Vx(),a=Ru(),s=qx(),l=Wi(),u=t("%WeakMap%",!0),f=r("WeakMap.prototype.get",!0),p=r("WeakMap.prototype.set",!0),h=r("WeakMap.prototype.has",!0),m=r("WeakMap.prototype.delete",!0);return Vd=u?function(){var g,S,T={assert:function(b){if(!T.has(b))throw new l("Side channel does not contain "+a(b))},delete:function(b){if(u&&b&&(typeof b=="object"||typeof b=="function")){if(g)return m(g,b)}else if(s&&S)return S.delete(b);return!1},get:function(b){return u&&b&&(typeof b=="object"||typeof b=="function")&&g?f(g,b):S&&S.get(b)},has:function(b){return u&&b&&(typeof b=="object"||typeof b=="function")&&g?h(g,b):!!S&&S.has(b)},set:function(b,_){u&&b&&(typeof b=="object"||typeof b=="function")?(g||(g=new u),p(g,b,_)):s&&(S||(S=s()),S.set(b,_))}};return T}:s,Vd}var qd,Nb;function Hx(){if(Nb)return qd;Nb=1;var t=Wi(),r=Ru(),a=_C(),s=qx(),l=YC(),u=l||s||a;return qd=function(){var p,h={assert:function(m){if(!h.has(m))throw new t("Side channel does not contain "+r(m))},delete:function(m){return!!p&&p.delete(m)},get:function(m){return p&&p.get(m)},has:function(m){return!!p&&p.has(m)},set:function(m,y){p||(p=u()),p.set(m,y)}};return h},qd}var Hd,Lb;function lh(){if(Lb)return Hd;Lb=1;var t=String.prototype.replace,r=/%20/g,a={RFC1738:"RFC1738",RFC3986:"RFC3986"};return Hd={default:a.RFC3986,formatters:{RFC1738:function(s){return t.call(s,r,"+")},RFC3986:function(s){return String(s)}},RFC1738:a.RFC1738,RFC3986:a.RFC3986},Hd}var Bd,jb;function Bx(){if(jb)return Bd;jb=1;var t=lh(),r=Hx(),a=Object.prototype.hasOwnProperty,s=Array.isArray,l=r(),u=function(D,P){return l.set(D,P),D},f=function(D){return l.has(D)},p=function(D){return l.get(D)},h=function(D,P){l.set(D,P)},m=(function(){for(var U=[],D=0;D<256;++D)U.push("%"+((D<16?"0":"")+D.toString(16)).toUpperCase());return U})(),y=function(D){for(;D.length>1;){var P=D.pop(),k=P.obj[P.prop];if(s(k)){for(var ne=[],q=0;q=_?K.slice(ae,ae+_):K,R=[],B=0;B=48&&j<=57||j>=65&&j<=90||j>=97&&j<=122||q===t.RFC1738&&(j===40||j===41)){R[R.length]=pe.charAt(B);continue}if(j<128){R[R.length]=m[j];continue}if(j<2048){R[R.length]=m[192|j>>6]+m[128|j&63];continue}if(j<55296||j>=57344){R[R.length]=m[224|j>>12]+m[128|j>>6&63]+m[128|j&63];continue}B+=1,j=65536+((j&1023)<<10|pe.charCodeAt(B)&1023),R[R.length]=m[240|j>>18]+m[128|j>>12&63]+m[128|j>>6&63]+m[128|j&63]}I+=R.join("")}return I},C=function(D){for(var P=[{obj:{o:D},prop:"o"}],k=[],ne=0;nek?u(g(K,{plainObjects:ne}),K.length-1):K},ee=function(D,P){if(s(D)){for(var k=[],ne=0;ne"u"&&(le=0)}if(typeof k=="function"?j=k(C,j):j instanceof Date?j=K(j):L==="comma"&&u(j)&&(j=r.maybeMap(j,function(bt){return bt instanceof Date?K(bt):bt})),j===null){if(ee)return P&&!pe?P(C,y.encoder,R,"key",I):C;j=""}if(g(j)||r.isBuffer(j)){if(P){var J=pe?C:P(C,y.encoder,R,"key",I);return[ae(J)+"="+ae(P(j,y.encoder,R,"value",I))]}return[ae(C)+"="+ae(String(j))]}var oe=[];if(typeof j>"u")return oe;var he;if(L==="comma"&&u(j))pe&&P&&(j=r.maybeMap(j,P)),he=[{value:j.length>0?j.join(",")||null:void 0}];else if(u(k))he=k;else{var Te=Object.keys(j);he=ne?Te.sort(ne):Te}var Oe=D?String(C).replace(/\./g,"%2E"):String(C),Se=z&&u(j)&&j.length===1?Oe+"[]":Oe;if(F&&u(j)&&j.length===0)return Se+"[]";for(var Ae=0;Ae"u"?w.encodeDotInKeys===!0?!0:y.allowDots:!!w.allowDots;return{addQueryPrefix:typeof w.addQueryPrefix=="boolean"?w.addQueryPrefix:y.addQueryPrefix,allowDots:U,allowEmptyArrays:typeof w.allowEmptyArrays=="boolean"?!!w.allowEmptyArrays:y.allowEmptyArrays,arrayFormat:ee,charset:C,charsetSentinel:typeof w.charsetSentinel=="boolean"?w.charsetSentinel:y.charsetSentinel,commaRoundTrip:!!w.commaRoundTrip,delimiter:typeof w.delimiter>"u"?y.delimiter:w.delimiter,encode:typeof w.encode=="boolean"?w.encode:y.encode,encodeDotInKeys:typeof w.encodeDotInKeys=="boolean"?w.encodeDotInKeys:y.encodeDotInKeys,encoder:typeof w.encoder=="function"?w.encoder:y.encoder,encodeValuesOnly:typeof w.encodeValuesOnly=="boolean"?w.encodeValuesOnly:y.encodeValuesOnly,filter:F,format:L,formatter:z,serializeDate:typeof w.serializeDate=="function"?w.serializeDate:y.serializeDate,skipNulls:typeof w.skipNulls=="boolean"?w.skipNulls:y.skipNulls,sort:typeof w.sort=="function"?w.sort:null,strictNullHandling:typeof w.strictNullHandling=="boolean"?w.strictNullHandling:y.strictNullHandling}};return kd=function(_,w){var C=_,L=b(w),z,F;typeof L.filter=="function"?(F=L.filter,C=F("",C)):u(L.filter)&&(F=L.filter,z=F);var ee=[];if(typeof C!="object"||C===null)return"";var U=l[L.arrayFormat],D=U==="comma"&&L.commaRoundTrip;z||(z=Object.keys(C)),L.sort&&z.sort(L.sort);for(var P=t(),k=0;k0?I+K:""},kd}var Id,Mb;function KC(){if(Mb)return Id;Mb=1;var t=Bx(),r=Object.prototype.hasOwnProperty,a=Array.isArray,s={allowDots:!1,allowEmptyArrays:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decodeDotInKeys:!1,decoder:t.decode,delimiter:"&",depth:5,duplicates:"combine",ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictDepth:!1,strictNullHandling:!1,throwOnLimitExceeded:!1},l=function(T){return T.replace(/&#(\d+);/g,function(b,_){return String.fromCharCode(parseInt(_,10))})},u=function(T,b,_){if(T&&typeof T=="string"&&b.comma&&T.indexOf(",")>-1)return T.split(",");if(b.throwOnLimitExceeded&&_>=b.arrayLimit)throw new RangeError("Array limit exceeded. Only "+b.arrayLimit+" element"+(b.arrayLimit===1?"":"s")+" allowed in an array.");return T},f="utf8=%26%2310003%3B",p="utf8=%E2%9C%93",h=function(b,_){var w={__proto__:null},C=_.ignoreQueryPrefix?b.replace(/^\?/,""):b;C=C.replace(/%5B/gi,"[").replace(/%5D/gi,"]");var L=_.parameterLimit===1/0?void 0:_.parameterLimit,z=C.split(_.delimiter,_.throwOnLimitExceeded?L+1:L);if(_.throwOnLimitExceeded&&z.length>L)throw new RangeError("Parameter limit exceeded. Only "+L+" parameter"+(L===1?"":"s")+" allowed.");var F=-1,ee,U=_.charset;if(_.charsetSentinel)for(ee=0;ee-1&&(q=a(q)?[q]:q),ne!==null){var K=r.call(w,ne);K&&_.duplicates==="combine"?w[ne]=t.combine(w[ne],q,_.arrayLimit,_.plainObjects):(!K||_.duplicates==="last")&&(w[ne]=q)}}return w},m=function(T,b,_,w){var C=0;if(T.length>0&&T[T.length-1]==="[]"){var L=T.slice(0,-1).join("");C=Array.isArray(b)&&b[L]?b[L].length:0}for(var z=w?b:u(b,_,C),F=T.length-1;F>=0;--F){var ee,U=T[F];if(U==="[]"&&_.parseArrays)t.isOverflow(z)?ee=z:ee=_.allowEmptyArrays&&(z===""||_.strictNullHandling&&z===null)?[]:t.combine([],z,_.arrayLimit,_.plainObjects);else{ee=_.plainObjects?{__proto__:null}:{};var D=U.charAt(0)==="["&&U.charAt(U.length-1)==="]"?U.slice(1,-1):U,P=_.decodeDotInKeys?D.replace(/%2E/g,"."):D,k=parseInt(P,10);!_.parseArrays&&P===""?ee={0:z}:!isNaN(k)&&U!==P&&String(k)===P&&k>=0&&_.parseArrays&&k<=_.arrayLimit?(ee=[],ee[k]=z):P!=="__proto__"&&(ee[P]=z)}z=ee}return z},y=function(b,_){var w=_.allowDots?b.replace(/\.([^.[]+)/g,"[$1]"):b;if(_.depth<=0)return!_.plainObjects&&r.call(Object.prototype,w)&&!_.allowPrototypes?void 0:[w];var C=/(\[[^[\]]*])/,L=/(\[[^[\]]*])/g,z=C.exec(w),F=z?w.slice(0,z.index):w,ee=[];if(F){if(!_.plainObjects&&r.call(Object.prototype,F)&&!_.allowPrototypes)return;ee.push(F)}for(var U=0;(z=L.exec(w))!==null&&U<_.depth;){U+=1;var D=z[1].slice(1,-1);if(!_.plainObjects&&r.call(Object.prototype,D)&&!_.allowPrototypes)return;ee.push(z[1])}if(z){if(_.strictDepth===!0)throw new RangeError("Input depth exceeded depth option of "+_.depth+" and strictDepth is true");ee.push("["+w.slice(z.index)+"]")}return ee},g=function(b,_,w,C){if(b){var L=y(b,w);if(L)return m(L,_,w,C)}},S=function(b){if(!b)return s;if(typeof b.allowEmptyArrays<"u"&&typeof b.allowEmptyArrays!="boolean")throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(typeof b.decodeDotInKeys<"u"&&typeof b.decodeDotInKeys!="boolean")throw new TypeError("`decodeDotInKeys` option can only be `true` or `false`, when provided");if(b.decoder!==null&&typeof b.decoder<"u"&&typeof b.decoder!="function")throw new TypeError("Decoder has to be a function.");if(typeof b.charset<"u"&&b.charset!=="utf-8"&&b.charset!=="iso-8859-1")throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");if(typeof b.throwOnLimitExceeded<"u"&&typeof b.throwOnLimitExceeded!="boolean")throw new TypeError("`throwOnLimitExceeded` option must be a boolean");var _=typeof b.charset>"u"?s.charset:b.charset,w=typeof b.duplicates>"u"?s.duplicates:b.duplicates;if(w!=="combine"&&w!=="first"&&w!=="last")throw new TypeError("The duplicates option must be either combine, first, or last");var C=typeof b.allowDots>"u"?b.decodeDotInKeys===!0?!0:s.allowDots:!!b.allowDots;return{allowDots:C,allowEmptyArrays:typeof b.allowEmptyArrays=="boolean"?!!b.allowEmptyArrays:s.allowEmptyArrays,allowPrototypes:typeof b.allowPrototypes=="boolean"?b.allowPrototypes:s.allowPrototypes,allowSparse:typeof b.allowSparse=="boolean"?b.allowSparse:s.allowSparse,arrayLimit:typeof b.arrayLimit=="number"?b.arrayLimit:s.arrayLimit,charset:_,charsetSentinel:typeof b.charsetSentinel=="boolean"?b.charsetSentinel:s.charsetSentinel,comma:typeof b.comma=="boolean"?b.comma:s.comma,decodeDotInKeys:typeof b.decodeDotInKeys=="boolean"?b.decodeDotInKeys:s.decodeDotInKeys,decoder:typeof b.decoder=="function"?b.decoder:s.decoder,delimiter:typeof b.delimiter=="string"||t.isRegExp(b.delimiter)?b.delimiter:s.delimiter,depth:typeof b.depth=="number"||b.depth===!1?+b.depth:s.depth,duplicates:w,ignoreQueryPrefix:b.ignoreQueryPrefix===!0,interpretNumericEntities:typeof b.interpretNumericEntities=="boolean"?b.interpretNumericEntities:s.interpretNumericEntities,parameterLimit:typeof b.parameterLimit=="number"?b.parameterLimit:s.parameterLimit,parseArrays:b.parseArrays!==!1,plainObjects:typeof b.plainObjects=="boolean"?b.plainObjects:s.plainObjects,strictDepth:typeof b.strictDepth=="boolean"?!!b.strictDepth:s.strictDepth,strictNullHandling:typeof b.strictNullHandling=="boolean"?b.strictNullHandling:s.strictNullHandling,throwOnLimitExceeded:typeof b.throwOnLimitExceeded=="boolean"?b.throwOnLimitExceeded:!1}};return Id=function(T,b){var _=S(b);if(T===""||T===null||typeof T>"u")return _.plainObjects?{__proto__:null}:{};for(var w=typeof T=="string"?h(T,_):T,C=_.plainObjects?{__proto__:null}:{},L=Object.keys(w),z=0;zr=>{const a=ZC.call(r);return t[a]||(t[a]=a.slice(8,-1).toLowerCase())})(Object.create(null)),lr=t=>(t=t.toLowerCase(),r=>Nu(r)===t),Lu=t=>r=>typeof r===t,{isArray:es}=Array,Ki=Lu("undefined");function Eo(t){return t!==null&&!Ki(t)&&t.constructor!==null&&!Ki(t.constructor)&&En(t.constructor.isBuffer)&&t.constructor.isBuffer(t)}const $x=lr("ArrayBuffer");function JC(t){let r;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?r=ArrayBuffer.isView(t):r=t&&t.buffer&&$x(t.buffer),r}const WC=Lu("string"),En=Lu("function"),Fx=Lu("number"),wo=t=>t!==null&&typeof t=="object",e2=t=>t===!0||t===!1,Wl=t=>{if(Nu(t)!=="object")return!1;const r=uh(t);return(r===null||r===Object.prototype||Object.getPrototypeOf(r)===null)&&!(Ix in t)&&!(Du in t)},t2=t=>{if(!wo(t)||Eo(t))return!1;try{return Object.keys(t).length===0&&Object.getPrototypeOf(t)===Object.prototype}catch{return!1}},n2=lr("Date"),r2=lr("File"),a2=lr("Blob"),i2=lr("FileList"),s2=t=>wo(t)&&En(t.pipe),o2=t=>{let r;return t&&(typeof FormData=="function"&&t instanceof FormData||En(t.append)&&((r=Nu(t))==="formdata"||r==="object"&&En(t.toString)&&t.toString()==="[object FormData]"))},l2=lr("URLSearchParams"),[u2,c2,f2,d2]=["ReadableStream","Request","Response","Headers"].map(lr),p2=t=>t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function To(t,r,{allOwnKeys:a=!1}={}){if(t===null||typeof t>"u")return;let s,l;if(typeof t!="object"&&(t=[t]),es(t))for(s=0,l=t.length;s0;)if(l=a[s],r===l.toLowerCase())return l;return null}const Ga=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,Yx=t=>!Ki(t)&&t!==Ga;function xp(){const{caseless:t,skipUndefined:r}=Yx(this)&&this||{},a={},s=(l,u)=>{if(u==="__proto__"||u==="constructor"||u==="prototype")return;const f=t&&Gx(a,u)||u;Wl(a[f])&&Wl(l)?a[f]=xp(a[f],l):Wl(l)?a[f]=xp({},l):es(l)?a[f]=l.slice():(!r||!Ki(l))&&(a[f]=l)};for(let l=0,u=arguments.length;l(To(r,(l,u)=>{a&&En(l)?Object.defineProperty(t,u,{value:kx(l,a),writable:!0,enumerable:!0,configurable:!0}):Object.defineProperty(t,u,{value:l,writable:!0,enumerable:!0,configurable:!0})},{allOwnKeys:s}),t),m2=t=>(t.charCodeAt(0)===65279&&(t=t.slice(1)),t),g2=(t,r,a,s)=>{t.prototype=Object.create(r.prototype,s),Object.defineProperty(t.prototype,"constructor",{value:t,writable:!0,enumerable:!1,configurable:!0}),Object.defineProperty(t,"super",{value:r.prototype}),a&&Object.assign(t.prototype,a)},y2=(t,r,a,s)=>{let l,u,f;const p={};if(r=r||{},t==null)return r;do{for(l=Object.getOwnPropertyNames(t),u=l.length;u-- >0;)f=l[u],(!s||s(f,t,r))&&!p[f]&&(r[f]=t[f],p[f]=!0);t=a!==!1&&uh(t)}while(t&&(!a||a(t,r))&&t!==Object.prototype);return r},v2=(t,r,a)=>{t=String(t),(a===void 0||a>t.length)&&(a=t.length),a-=r.length;const s=t.indexOf(r,a);return s!==-1&&s===a},b2=t=>{if(!t)return null;if(es(t))return t;let r=t.length;if(!Fx(r))return null;const a=new Array(r);for(;r-- >0;)a[r]=t[r];return a},x2=(t=>r=>t&&r instanceof t)(typeof Uint8Array<"u"&&uh(Uint8Array)),S2=(t,r)=>{const s=(t&&t[Du]).call(t);let l;for(;(l=s.next())&&!l.done;){const u=l.value;r.call(t,u[0],u[1])}},_2=(t,r)=>{let a;const s=[];for(;(a=t.exec(r))!==null;)s.push(a);return s},E2=lr("HTMLFormElement"),w2=t=>t.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(a,s,l){return s.toUpperCase()+l}),Vb=(({hasOwnProperty:t})=>(r,a)=>t.call(r,a))(Object.prototype),T2=lr("RegExp"),Xx=(t,r)=>{const a=Object.getOwnPropertyDescriptors(t),s={};To(a,(l,u)=>{let f;(f=r(l,u,t))!==!1&&(s[u]=f||l)}),Object.defineProperties(t,s)},A2=t=>{Xx(t,(r,a)=>{if(En(t)&&["arguments","caller","callee"].indexOf(a)!==-1)return!1;const s=t[a];if(En(s)){if(r.enumerable=!1,"writable"in r){r.writable=!1;return}r.set||(r.set=()=>{throw Error("Can not rewrite read-only method '"+a+"'")})}})},O2=(t,r)=>{const a={},s=l=>{l.forEach(u=>{a[u]=!0})};return es(t)?s(t):s(String(t).split(r)),a},R2=()=>{},C2=(t,r)=>t!=null&&Number.isFinite(t=+t)?t:r;function D2(t){return!!(t&&En(t.append)&&t[Ix]==="FormData"&&t[Du])}const N2=t=>{const r=new Array(10),a=(s,l)=>{if(wo(s)){if(r.indexOf(s)>=0)return;if(Eo(s))return s;if(!("toJSON"in s)){r[l]=s;const u=es(s)?[]:{};return To(s,(f,p)=>{const h=a(f,l+1);!Ki(h)&&(u[p]=h)}),r[l]=void 0,u}}return s};return a(t,0)},L2=lr("AsyncFunction"),j2=t=>t&&(wo(t)||En(t))&&En(t.then)&&En(t.catch),Kx=((t,r)=>t?setImmediate:r?((a,s)=>(Ga.addEventListener("message",({source:l,data:u})=>{l===Ga&&u===a&&s.length&&s.shift()()},!1),l=>{s.push(l),Ga.postMessage(a,"*")}))(`axios@${Math.random()}`,[]):a=>setTimeout(a))(typeof setImmediate=="function",En(Ga.postMessage)),P2=typeof queueMicrotask<"u"?queueMicrotask.bind(Ga):typeof process<"u"&&process.nextTick||Kx,M2=t=>t!=null&&En(t[Du]),W={isArray:es,isArrayBuffer:$x,isBuffer:Eo,isFormData:o2,isArrayBufferView:JC,isString:WC,isNumber:Fx,isBoolean:e2,isObject:wo,isPlainObject:Wl,isEmptyObject:t2,isReadableStream:u2,isRequest:c2,isResponse:f2,isHeaders:d2,isUndefined:Ki,isDate:n2,isFile:r2,isBlob:a2,isRegExp:T2,isFunction:En,isStream:s2,isURLSearchParams:l2,isTypedArray:x2,isFileList:i2,forEach:To,merge:xp,extend:h2,trim:p2,stripBOM:m2,inherits:g2,toFlatObject:y2,kindOf:Nu,kindOfTest:lr,endsWith:v2,toArray:b2,forEachEntry:S2,matchAll:_2,isHTMLForm:E2,hasOwnProperty:Vb,hasOwnProp:Vb,reduceDescriptors:Xx,freezeMethods:A2,toObjectSet:O2,toCamelCase:w2,noop:R2,toFiniteNumber:C2,findKey:Gx,global:Ga,isContextDefined:Yx,isSpecCompliantForm:D2,toJSONObject:N2,isAsyncFn:L2,isThenable:j2,setImmediate:Kx,asap:P2,isIterable:M2};let Ne=class Qx extends Error{static from(r,a,s,l,u,f){const p=new Qx(r.message,a||r.code,s,l,u);return p.cause=r,p.name=r.name,f&&Object.assign(p,f),p}constructor(r,a,s,l,u){super(r),this.name="AxiosError",this.isAxiosError=!0,a&&(this.code=a),s&&(this.config=s),l&&(this.request=l),u&&(this.response=u,this.status=u.status)}toJSON(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:W.toJSONObject(this.config),code:this.code,status:this.status}}};Ne.ERR_BAD_OPTION_VALUE="ERR_BAD_OPTION_VALUE";Ne.ERR_BAD_OPTION="ERR_BAD_OPTION";Ne.ECONNABORTED="ECONNABORTED";Ne.ETIMEDOUT="ETIMEDOUT";Ne.ERR_NETWORK="ERR_NETWORK";Ne.ERR_FR_TOO_MANY_REDIRECTS="ERR_FR_TOO_MANY_REDIRECTS";Ne.ERR_DEPRECATED="ERR_DEPRECATED";Ne.ERR_BAD_RESPONSE="ERR_BAD_RESPONSE";Ne.ERR_BAD_REQUEST="ERR_BAD_REQUEST";Ne.ERR_CANCELED="ERR_CANCELED";Ne.ERR_NOT_SUPPORT="ERR_NOT_SUPPORT";Ne.ERR_INVALID_URL="ERR_INVALID_URL";const z2=null;function Sp(t){return W.isPlainObject(t)||W.isArray(t)}function Zx(t){return W.endsWith(t,"[]")?t.slice(0,-2):t}function qb(t,r,a){return t?t.concat(r).map(function(l,u){return l=Zx(l),!a&&u?"["+l+"]":l}).join(a?".":""):r}function U2(t){return W.isArray(t)&&!t.some(Sp)}const V2=W.toFlatObject(W,{},null,function(r){return/^is[A-Z]/.test(r)});function ju(t,r,a){if(!W.isObject(t))throw new TypeError("target must be an object");r=r||new FormData,a=W.toFlatObject(a,{metaTokens:!0,dots:!1,indexes:!1},!1,function(_,w){return!W.isUndefined(w[_])});const s=a.metaTokens,l=a.visitor||y,u=a.dots,f=a.indexes,h=(a.Blob||typeof Blob<"u"&&Blob)&&W.isSpecCompliantForm(r);if(!W.isFunction(l))throw new TypeError("visitor must be a function");function m(b){if(b===null)return"";if(W.isDate(b))return b.toISOString();if(W.isBoolean(b))return b.toString();if(!h&&W.isBlob(b))throw new Ne("Blob is not supported. Use a Buffer instead.");return W.isArrayBuffer(b)||W.isTypedArray(b)?h&&typeof Blob=="function"?new Blob([b]):Buffer.from(b):b}function y(b,_,w){let C=b;if(b&&!w&&typeof b=="object"){if(W.endsWith(_,"{}"))_=s?_:_.slice(0,-2),b=JSON.stringify(b);else if(W.isArray(b)&&U2(b)||(W.isFileList(b)||W.endsWith(_,"[]"))&&(C=W.toArray(b)))return _=Zx(_),C.forEach(function(z,F){!(W.isUndefined(z)||z===null)&&r.append(f===!0?qb([_],F,u):f===null?_:_+"[]",m(z))}),!1}return Sp(b)?!0:(r.append(qb(w,_,u),m(b)),!1)}const g=[],S=Object.assign(V2,{defaultVisitor:y,convertValue:m,isVisitable:Sp});function T(b,_){if(!W.isUndefined(b)){if(g.indexOf(b)!==-1)throw Error("Circular reference detected in "+_.join("."));g.push(b),W.forEach(b,function(C,L){(!(W.isUndefined(C)||C===null)&&l.call(r,C,W.isString(L)?L.trim():L,_,S))===!0&&T(C,_?_.concat(L):[L])}),g.pop()}}if(!W.isObject(t))throw new TypeError("data must be an object");return T(t),r}function Hb(t){const r={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(t).replace(/[!'()~]|%20|%00/g,function(s){return r[s]})}function ch(t,r){this._pairs=[],t&&ju(t,this,r)}const Jx=ch.prototype;Jx.append=function(r,a){this._pairs.push([r,a])};Jx.toString=function(r){const a=r?function(s){return r.call(this,s,Hb)}:Hb;return this._pairs.map(function(l){return a(l[0])+"="+a(l[1])},"").join("&")};function q2(t){return encodeURIComponent(t).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function Wx(t,r,a){if(!r)return t;const s=a&&a.encode||q2,l=W.isFunction(a)?{serialize:a}:a,u=l&&l.serialize;let f;if(u?f=u(r,l):f=W.isURLSearchParams(r)?r.toString():new ch(r,l).toString(s),f){const p=t.indexOf("#");p!==-1&&(t=t.slice(0,p)),t+=(t.indexOf("?")===-1?"?":"&")+f}return t}class Bb{constructor(){this.handlers=[]}use(r,a,s){return this.handlers.push({fulfilled:r,rejected:a,synchronous:s?s.synchronous:!1,runWhen:s?s.runWhen:null}),this.handlers.length-1}eject(r){this.handlers[r]&&(this.handlers[r]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(r){W.forEach(this.handlers,function(s){s!==null&&r(s)})}}const fh={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1,legacyInterceptorReqResOrdering:!0},H2=typeof URLSearchParams<"u"?URLSearchParams:ch,B2=typeof FormData<"u"?FormData:null,k2=typeof Blob<"u"?Blob:null,I2={isBrowser:!0,classes:{URLSearchParams:H2,FormData:B2,Blob:k2},protocols:["http","https","file","blob","url","data"]},dh=typeof window<"u"&&typeof document<"u",_p=typeof navigator=="object"&&navigator||void 0,$2=dh&&(!_p||["ReactNative","NativeScript","NS"].indexOf(_p.product)<0),F2=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",G2=dh&&window.location.href||"http://localhost",Y2=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:dh,hasStandardBrowserEnv:$2,hasStandardBrowserWebWorkerEnv:F2,navigator:_p,origin:G2},Symbol.toStringTag,{value:"Module"})),ln={...Y2,...I2};function X2(t,r){return ju(t,new ln.classes.URLSearchParams,{visitor:function(a,s,l,u){return ln.isNode&&W.isBuffer(a)?(this.append(s,a.toString("base64")),!1):u.defaultVisitor.apply(this,arguments)},...r})}function K2(t){return W.matchAll(/\w+|\[(\w*)]/g,t).map(r=>r[0]==="[]"?"":r[1]||r[0])}function Q2(t){const r={},a=Object.keys(t);let s;const l=a.length;let u;for(s=0;s=a.length;return f=!f&&W.isArray(l)?l.length:f,h?(W.hasOwnProp(l,f)?l[f]=[l[f],s]:l[f]=s,!p):((!l[f]||!W.isObject(l[f]))&&(l[f]=[]),r(a,s,l[f],u)&&W.isArray(l[f])&&(l[f]=Q2(l[f])),!p)}if(W.isFormData(t)&&W.isFunction(t.entries)){const a={};return W.forEachEntry(t,(s,l)=>{r(K2(s),l,a,0)}),a}return null}function Z2(t,r,a){if(W.isString(t))try{return(r||JSON.parse)(t),W.trim(t)}catch(s){if(s.name!=="SyntaxError")throw s}return(a||JSON.stringify)(t)}const Ao={transitional:fh,adapter:["xhr","http","fetch"],transformRequest:[function(r,a){const s=a.getContentType()||"",l=s.indexOf("application/json")>-1,u=W.isObject(r);if(u&&W.isHTMLForm(r)&&(r=new FormData(r)),W.isFormData(r))return l?JSON.stringify(eS(r)):r;if(W.isArrayBuffer(r)||W.isBuffer(r)||W.isStream(r)||W.isFile(r)||W.isBlob(r)||W.isReadableStream(r))return r;if(W.isArrayBufferView(r))return r.buffer;if(W.isURLSearchParams(r))return a.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),r.toString();let p;if(u){if(s.indexOf("application/x-www-form-urlencoded")>-1)return X2(r,this.formSerializer).toString();if((p=W.isFileList(r))||s.indexOf("multipart/form-data")>-1){const h=this.env&&this.env.FormData;return ju(p?{"files[]":r}:r,h&&new h,this.formSerializer)}}return u||l?(a.setContentType("application/json",!1),Z2(r)):r}],transformResponse:[function(r){const a=this.transitional||Ao.transitional,s=a&&a.forcedJSONParsing,l=this.responseType==="json";if(W.isResponse(r)||W.isReadableStream(r))return r;if(r&&W.isString(r)&&(s&&!this.responseType||l)){const f=!(a&&a.silentJSONParsing)&&l;try{return JSON.parse(r,this.parseReviver)}catch(p){if(f)throw p.name==="SyntaxError"?Ne.from(p,Ne.ERR_BAD_RESPONSE,this,null,this.response):p}}return r}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:ln.classes.FormData,Blob:ln.classes.Blob},validateStatus:function(r){return r>=200&&r<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};W.forEach(["delete","get","head","post","put","patch"],t=>{Ao.headers[t]={}});const J2=W.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),W2=t=>{const r={};let a,s,l;return t&&t.split(` +`).forEach(function(f){l=f.indexOf(":"),a=f.substring(0,l).trim().toLowerCase(),s=f.substring(l+1).trim(),!(!a||r[a]&&J2[a])&&(a==="set-cookie"?r[a]?r[a].push(s):r[a]=[s]:r[a]=r[a]?r[a]+", "+s:s)}),r},kb=Symbol("internals");function Ks(t){return t&&String(t).trim().toLowerCase()}function eu(t){return t===!1||t==null?t:W.isArray(t)?t.map(eu):String(t)}function eD(t){const r=Object.create(null),a=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let s;for(;s=a.exec(t);)r[s[1]]=s[2];return r}const tD=t=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(t.trim());function Fd(t,r,a,s,l){if(W.isFunction(s))return s.call(this,r,a);if(l&&(r=a),!!W.isString(r)){if(W.isString(s))return r.indexOf(s)!==-1;if(W.isRegExp(s))return s.test(r)}}function nD(t){return t.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(r,a,s)=>a.toUpperCase()+s)}function rD(t,r){const a=W.toCamelCase(" "+r);["get","set","has"].forEach(s=>{Object.defineProperty(t,s+a,{value:function(l,u,f){return this[s].call(this,r,l,u,f)},configurable:!0})})}let wn=class{constructor(r){r&&this.set(r)}set(r,a,s){const l=this;function u(p,h,m){const y=Ks(h);if(!y)throw new Error("header name must be a non-empty string");const g=W.findKey(l,y);(!g||l[g]===void 0||m===!0||m===void 0&&l[g]!==!1)&&(l[g||h]=eu(p))}const f=(p,h)=>W.forEach(p,(m,y)=>u(m,y,h));if(W.isPlainObject(r)||r instanceof this.constructor)f(r,a);else if(W.isString(r)&&(r=r.trim())&&!tD(r))f(W2(r),a);else if(W.isObject(r)&&W.isIterable(r)){let p={},h,m;for(const y of r){if(!W.isArray(y))throw TypeError("Object iterator must return a key-value pair");p[m=y[0]]=(h=p[m])?W.isArray(h)?[...h,y[1]]:[h,y[1]]:y[1]}f(p,a)}else r!=null&&u(a,r,s);return this}get(r,a){if(r=Ks(r),r){const s=W.findKey(this,r);if(s){const l=this[s];if(!a)return l;if(a===!0)return eD(l);if(W.isFunction(a))return a.call(this,l,s);if(W.isRegExp(a))return a.exec(l);throw new TypeError("parser must be boolean|regexp|function")}}}has(r,a){if(r=Ks(r),r){const s=W.findKey(this,r);return!!(s&&this[s]!==void 0&&(!a||Fd(this,this[s],s,a)))}return!1}delete(r,a){const s=this;let l=!1;function u(f){if(f=Ks(f),f){const p=W.findKey(s,f);p&&(!a||Fd(s,s[p],p,a))&&(delete s[p],l=!0)}}return W.isArray(r)?r.forEach(u):u(r),l}clear(r){const a=Object.keys(this);let s=a.length,l=!1;for(;s--;){const u=a[s];(!r||Fd(this,this[u],u,r,!0))&&(delete this[u],l=!0)}return l}normalize(r){const a=this,s={};return W.forEach(this,(l,u)=>{const f=W.findKey(s,u);if(f){a[f]=eu(l),delete a[u];return}const p=r?nD(u):String(u).trim();p!==u&&delete a[u],a[p]=eu(l),s[p]=!0}),this}concat(...r){return this.constructor.concat(this,...r)}toJSON(r){const a=Object.create(null);return W.forEach(this,(s,l)=>{s!=null&&s!==!1&&(a[l]=r&&W.isArray(s)?s.join(", "):s)}),a}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([r,a])=>r+": "+a).join(` +`)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(r){return r instanceof this?r:new this(r)}static concat(r,...a){const s=new this(r);return a.forEach(l=>s.set(l)),s}static accessor(r){const s=(this[kb]=this[kb]={accessors:{}}).accessors,l=this.prototype;function u(f){const p=Ks(f);s[p]||(rD(l,f),s[p]=!0)}return W.isArray(r)?r.forEach(u):u(r),this}};wn.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);W.reduceDescriptors(wn.prototype,({value:t},r)=>{let a=r[0].toUpperCase()+r.slice(1);return{get:()=>t,set(s){this[a]=s}}});W.freezeMethods(wn);function Gd(t,r){const a=this||Ao,s=r||a,l=wn.from(s.headers);let u=s.data;return W.forEach(t,function(p){u=p.call(a,u,l.normalize(),r?r.status:void 0)}),l.normalize(),u}function tS(t){return!!(t&&t.__CANCEL__)}let Oo=class extends Ne{constructor(r,a,s){super(r??"canceled",Ne.ERR_CANCELED,a,s),this.name="CanceledError",this.__CANCEL__=!0}};function nS(t,r,a){const s=a.config.validateStatus;!a.status||!s||s(a.status)?t(a):r(new Ne("Request failed with status code "+a.status,[Ne.ERR_BAD_REQUEST,Ne.ERR_BAD_RESPONSE][Math.floor(a.status/100)-4],a.config,a.request,a))}function aD(t){const r=/^([-+\w]{1,25})(:?\/\/|:)/.exec(t);return r&&r[1]||""}function iD(t,r){t=t||10;const a=new Array(t),s=new Array(t);let l=0,u=0,f;return r=r!==void 0?r:1e3,function(h){const m=Date.now(),y=s[u];f||(f=m),a[l]=h,s[l]=m;let g=u,S=0;for(;g!==l;)S+=a[g++],g=g%t;if(l=(l+1)%t,l===u&&(u=(u+1)%t),m-f{a=y,l=null,u&&(clearTimeout(u),u=null),t(...m)};return[(...m)=>{const y=Date.now(),g=y-a;g>=s?f(m,y):(l=m,u||(u=setTimeout(()=>{u=null,f(l)},s-g)))},()=>l&&f(l)]}const fu=(t,r,a=3)=>{let s=0;const l=iD(50,250);return sD(u=>{const f=u.loaded,p=u.lengthComputable?u.total:void 0,h=f-s,m=l(h),y=f<=p;s=f;const g={loaded:f,total:p,progress:p?f/p:void 0,bytes:h,rate:m||void 0,estimated:m&&p&&y?(p-f)/m:void 0,event:u,lengthComputable:p!=null,[r?"download":"upload"]:!0};t(g)},a)},Ib=(t,r)=>{const a=t!=null;return[s=>r[0]({lengthComputable:a,total:t,loaded:s}),r[1]]},$b=t=>(...r)=>W.asap(()=>t(...r)),oD=ln.hasStandardBrowserEnv?((t,r)=>a=>(a=new URL(a,ln.origin),t.protocol===a.protocol&&t.host===a.host&&(r||t.port===a.port)))(new URL(ln.origin),ln.navigator&&/(msie|trident)/i.test(ln.navigator.userAgent)):()=>!0,lD=ln.hasStandardBrowserEnv?{write(t,r,a,s,l,u,f){if(typeof document>"u")return;const p=[`${t}=${encodeURIComponent(r)}`];W.isNumber(a)&&p.push(`expires=${new Date(a).toUTCString()}`),W.isString(s)&&p.push(`path=${s}`),W.isString(l)&&p.push(`domain=${l}`),u===!0&&p.push("secure"),W.isString(f)&&p.push(`SameSite=${f}`),document.cookie=p.join("; ")},read(t){if(typeof document>"u")return null;const r=document.cookie.match(new RegExp("(?:^|; )"+t+"=([^;]*)"));return r?decodeURIComponent(r[1]):null},remove(t){this.write(t,"",Date.now()-864e5,"/")}}:{write(){},read(){return null},remove(){}};function uD(t){return typeof t!="string"?!1:/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)}function cD(t,r){return r?t.replace(/\/?\/$/,"")+"/"+r.replace(/^\/+/,""):t}function rS(t,r,a){let s=!uD(r);return t&&(s||a==!1)?cD(t,r):r}const Fb=t=>t instanceof wn?{...t}:t;function Za(t,r){r=r||{};const a={};function s(m,y,g,S){return W.isPlainObject(m)&&W.isPlainObject(y)?W.merge.call({caseless:S},m,y):W.isPlainObject(y)?W.merge({},y):W.isArray(y)?y.slice():y}function l(m,y,g,S){if(W.isUndefined(y)){if(!W.isUndefined(m))return s(void 0,m,g,S)}else return s(m,y,g,S)}function u(m,y){if(!W.isUndefined(y))return s(void 0,y)}function f(m,y){if(W.isUndefined(y)){if(!W.isUndefined(m))return s(void 0,m)}else return s(void 0,y)}function p(m,y,g){if(g in r)return s(m,y);if(g in t)return s(void 0,m)}const h={url:u,method:u,data:u,baseURL:f,transformRequest:f,transformResponse:f,paramsSerializer:f,timeout:f,timeoutMessage:f,withCredentials:f,withXSRFToken:f,adapter:f,responseType:f,xsrfCookieName:f,xsrfHeaderName:f,onUploadProgress:f,onDownloadProgress:f,decompress:f,maxContentLength:f,maxBodyLength:f,beforeRedirect:f,transport:f,httpAgent:f,httpsAgent:f,cancelToken:f,socketPath:f,responseEncoding:f,validateStatus:p,headers:(m,y,g)=>l(Fb(m),Fb(y),g,!0)};return W.forEach(Object.keys({...t,...r}),function(y){if(y==="__proto__"||y==="constructor"||y==="prototype")return;const g=W.hasOwnProp(h,y)?h[y]:l,S=g(t[y],r[y],y);W.isUndefined(S)&&g!==p||(a[y]=S)}),a}const aS=t=>{const r=Za({},t);let{data:a,withXSRFToken:s,xsrfHeaderName:l,xsrfCookieName:u,headers:f,auth:p}=r;if(r.headers=f=wn.from(f),r.url=Wx(rS(r.baseURL,r.url,r.allowAbsoluteUrls),t.params,t.paramsSerializer),p&&f.set("Authorization","Basic "+btoa((p.username||"")+":"+(p.password?unescape(encodeURIComponent(p.password)):""))),W.isFormData(a)){if(ln.hasStandardBrowserEnv||ln.hasStandardBrowserWebWorkerEnv)f.setContentType(void 0);else if(W.isFunction(a.getHeaders)){const h=a.getHeaders(),m=["content-type","content-length"];Object.entries(h).forEach(([y,g])=>{m.includes(y.toLowerCase())&&f.set(y,g)})}}if(ln.hasStandardBrowserEnv&&(s&&W.isFunction(s)&&(s=s(r)),s||s!==!1&&oD(r.url))){const h=l&&u&&lD.read(u);h&&f.set(l,h)}return r},fD=typeof XMLHttpRequest<"u",dD=fD&&function(t){return new Promise(function(a,s){const l=aS(t);let u=l.data;const f=wn.from(l.headers).normalize();let{responseType:p,onUploadProgress:h,onDownloadProgress:m}=l,y,g,S,T,b;function _(){T&&T(),b&&b(),l.cancelToken&&l.cancelToken.unsubscribe(y),l.signal&&l.signal.removeEventListener("abort",y)}let w=new XMLHttpRequest;w.open(l.method.toUpperCase(),l.url,!0),w.timeout=l.timeout;function C(){if(!w)return;const z=wn.from("getAllResponseHeaders"in w&&w.getAllResponseHeaders()),ee={data:!p||p==="text"||p==="json"?w.responseText:w.response,status:w.status,statusText:w.statusText,headers:z,config:t,request:w};nS(function(D){a(D),_()},function(D){s(D),_()},ee),w=null}"onloadend"in w?w.onloadend=C:w.onreadystatechange=function(){!w||w.readyState!==4||w.status===0&&!(w.responseURL&&w.responseURL.indexOf("file:")===0)||setTimeout(C)},w.onabort=function(){w&&(s(new Ne("Request aborted",Ne.ECONNABORTED,t,w)),w=null)},w.onerror=function(F){const ee=F&&F.message?F.message:"Network Error",U=new Ne(ee,Ne.ERR_NETWORK,t,w);U.event=F||null,s(U),w=null},w.ontimeout=function(){let F=l.timeout?"timeout of "+l.timeout+"ms exceeded":"timeout exceeded";const ee=l.transitional||fh;l.timeoutErrorMessage&&(F=l.timeoutErrorMessage),s(new Ne(F,ee.clarifyTimeoutError?Ne.ETIMEDOUT:Ne.ECONNABORTED,t,w)),w=null},u===void 0&&f.setContentType(null),"setRequestHeader"in w&&W.forEach(f.toJSON(),function(F,ee){w.setRequestHeader(ee,F)}),W.isUndefined(l.withCredentials)||(w.withCredentials=!!l.withCredentials),p&&p!=="json"&&(w.responseType=l.responseType),m&&([S,b]=fu(m,!0),w.addEventListener("progress",S)),h&&w.upload&&([g,T]=fu(h),w.upload.addEventListener("progress",g),w.upload.addEventListener("loadend",T)),(l.cancelToken||l.signal)&&(y=z=>{w&&(s(!z||z.type?new Oo(null,t,w):z),w.abort(),w=null)},l.cancelToken&&l.cancelToken.subscribe(y),l.signal&&(l.signal.aborted?y():l.signal.addEventListener("abort",y)));const L=aD(l.url);if(L&&ln.protocols.indexOf(L)===-1){s(new Ne("Unsupported protocol "+L+":",Ne.ERR_BAD_REQUEST,t));return}w.send(u||null)})},pD=(t,r)=>{const{length:a}=t=t?t.filter(Boolean):[];if(r||a){let s=new AbortController,l;const u=function(m){if(!l){l=!0,p();const y=m instanceof Error?m:this.reason;s.abort(y instanceof Ne?y:new Oo(y instanceof Error?y.message:y))}};let f=r&&setTimeout(()=>{f=null,u(new Ne(`timeout of ${r}ms exceeded`,Ne.ETIMEDOUT))},r);const p=()=>{t&&(f&&clearTimeout(f),f=null,t.forEach(m=>{m.unsubscribe?m.unsubscribe(u):m.removeEventListener("abort",u)}),t=null)};t.forEach(m=>m.addEventListener("abort",u));const{signal:h}=s;return h.unsubscribe=()=>W.asap(p),h}},hD=function*(t,r){let a=t.byteLength;if(a{const l=mD(t,r);let u=0,f,p=h=>{f||(f=!0,s&&s(h))};return new ReadableStream({async pull(h){try{const{done:m,value:y}=await l.next();if(m){p(),h.close();return}let g=y.byteLength;if(a){let S=u+=g;a(S)}h.enqueue(new Uint8Array(y))}catch(m){throw p(m),m}},cancel(h){return p(h),l.return()}},{highWaterMark:2})},Yb=64*1024,{isFunction:Il}=W,yD=(({Request:t,Response:r})=>({Request:t,Response:r}))(W.global),{ReadableStream:Xb,TextEncoder:Kb}=W.global,Qb=(t,...r)=>{try{return!!t(...r)}catch{return!1}},vD=t=>{t=W.merge.call({skipUndefined:!0},yD,t);const{fetch:r,Request:a,Response:s}=t,l=r?Il(r):typeof fetch=="function",u=Il(a),f=Il(s);if(!l)return!1;const p=l&&Il(Xb),h=l&&(typeof Kb=="function"?(b=>_=>b.encode(_))(new Kb):async b=>new Uint8Array(await new a(b).arrayBuffer())),m=u&&p&&Qb(()=>{let b=!1;const _=new a(ln.origin,{body:new Xb,method:"POST",get duplex(){return b=!0,"half"}}).headers.has("Content-Type");return b&&!_}),y=f&&p&&Qb(()=>W.isReadableStream(new s("").body)),g={stream:y&&(b=>b.body)};l&&["text","arrayBuffer","blob","formData","stream"].forEach(b=>{!g[b]&&(g[b]=(_,w)=>{let C=_&&_[b];if(C)return C.call(_);throw new Ne(`Response type '${b}' is not supported`,Ne.ERR_NOT_SUPPORT,w)})});const S=async b=>{if(b==null)return 0;if(W.isBlob(b))return b.size;if(W.isSpecCompliantForm(b))return(await new a(ln.origin,{method:"POST",body:b}).arrayBuffer()).byteLength;if(W.isArrayBufferView(b)||W.isArrayBuffer(b))return b.byteLength;if(W.isURLSearchParams(b)&&(b=b+""),W.isString(b))return(await h(b)).byteLength},T=async(b,_)=>{const w=W.toFiniteNumber(b.getContentLength());return w??S(_)};return async b=>{let{url:_,method:w,data:C,signal:L,cancelToken:z,timeout:F,onDownloadProgress:ee,onUploadProgress:U,responseType:D,headers:P,withCredentials:k="same-origin",fetchOptions:ne}=aS(b),q=r||fetch;D=D?(D+"").toLowerCase():"text";let K=pD([L,z&&z.toAbortSignal()],F),I=null;const ae=K&&K.unsubscribe&&(()=>{K.unsubscribe()});let pe;try{if(U&&m&&w!=="get"&&w!=="head"&&(pe=await T(P,C))!==0){let de=new a(_,{method:"POST",body:C,duplex:"half"}),Q;if(W.isFormData(C)&&(Q=de.headers.get("content-type"))&&P.setContentType(Q),de.body){const[J,oe]=Ib(pe,fu($b(U)));C=Gb(de.body,Yb,J,oe)}}W.isString(k)||(k=k?"include":"omit");const R=u&&"credentials"in a.prototype,B={...ne,signal:K,method:w.toUpperCase(),headers:P.normalize().toJSON(),body:C,duplex:"half",credentials:R?k:void 0};I=u&&new a(_,B);let j=await(u?q(I,ne):q(_,B));const Y=y&&(D==="stream"||D==="response");if(y&&(ee||Y&&ae)){const de={};["status","statusText","headers"].forEach(he=>{de[he]=j[he]});const Q=W.toFiniteNumber(j.headers.get("content-length")),[J,oe]=ee&&Ib(Q,fu($b(ee),!0))||[];j=new s(Gb(j.body,Yb,J,()=>{oe&&oe(),ae&&ae()}),de)}D=D||"text";let le=await g[W.findKey(g,D)||"text"](j,b);return!Y&&ae&&ae(),await new Promise((de,Q)=>{nS(de,Q,{data:le,headers:wn.from(j.headers),status:j.status,statusText:j.statusText,config:b,request:I})})}catch(R){throw ae&&ae(),R&&R.name==="TypeError"&&/Load failed|fetch/i.test(R.message)?Object.assign(new Ne("Network Error",Ne.ERR_NETWORK,b,I,R&&R.response),{cause:R.cause||R}):Ne.from(R,R&&R.code,b,I,R&&R.response)}}},bD=new Map,iS=t=>{let r=t&&t.env||{};const{fetch:a,Request:s,Response:l}=r,u=[s,l,a];let f=u.length,p=f,h,m,y=bD;for(;p--;)h=u[p],m=y.get(h),m===void 0&&y.set(h,m=p?new Map:vD(r)),y=m;return m};iS();const ph={http:z2,xhr:dD,fetch:{get:iS}};W.forEach(ph,(t,r)=>{if(t){try{Object.defineProperty(t,"name",{value:r})}catch{}Object.defineProperty(t,"adapterName",{value:r})}});const Zb=t=>`- ${t}`,xD=t=>W.isFunction(t)||t===null||t===!1;function SD(t,r){t=W.isArray(t)?t:[t];const{length:a}=t;let s,l;const u={};for(let f=0;f`adapter ${h} `+(m===!1?"is not supported by the environment":"is not available in the build"));let p=a?f.length>1?`since : +`+f.map(Zb).join(` +`):" "+Zb(f[0]):"as no adapter specified";throw new Ne("There is no suitable adapter to dispatch the request "+p,"ERR_NOT_SUPPORT")}return l}const sS={getAdapter:SD,adapters:ph};function Yd(t){if(t.cancelToken&&t.cancelToken.throwIfRequested(),t.signal&&t.signal.aborted)throw new Oo(null,t)}function Jb(t){return Yd(t),t.headers=wn.from(t.headers),t.data=Gd.call(t,t.transformRequest),["post","put","patch"].indexOf(t.method)!==-1&&t.headers.setContentType("application/x-www-form-urlencoded",!1),sS.getAdapter(t.adapter||Ao.adapter,t)(t).then(function(s){return Yd(t),s.data=Gd.call(t,t.transformResponse,s),s.headers=wn.from(s.headers),s},function(s){return tS(s)||(Yd(t),s&&s.response&&(s.response.data=Gd.call(t,t.transformResponse,s.response),s.response.headers=wn.from(s.response.headers))),Promise.reject(s)})}const oS="1.13.5",Pu={};["object","boolean","number","function","string","symbol"].forEach((t,r)=>{Pu[t]=function(s){return typeof s===t||"a"+(r<1?"n ":" ")+t}});const Wb={};Pu.transitional=function(r,a,s){function l(u,f){return"[Axios v"+oS+"] Transitional option '"+u+"'"+f+(s?". "+s:"")}return(u,f,p)=>{if(r===!1)throw new Ne(l(f," has been removed"+(a?" in "+a:"")),Ne.ERR_DEPRECATED);return a&&!Wb[f]&&(Wb[f]=!0,console.warn(l(f," has been deprecated since v"+a+" and will be removed in the near future"))),r?r(u,f,p):!0}};Pu.spelling=function(r){return(a,s)=>(console.warn(`${s} is likely a misspelling of ${r}`),!0)};function _D(t,r,a){if(typeof t!="object")throw new Ne("options must be an object",Ne.ERR_BAD_OPTION_VALUE);const s=Object.keys(t);let l=s.length;for(;l-- >0;){const u=s[l],f=r[u];if(f){const p=t[u],h=p===void 0||f(p,u,t);if(h!==!0)throw new Ne("option "+u+" must be "+h,Ne.ERR_BAD_OPTION_VALUE);continue}if(a!==!0)throw new Ne("Unknown option "+u,Ne.ERR_BAD_OPTION)}}const tu={assertOptions:_D,validators:Pu},Fn=tu.validators;let Ya=class{constructor(r){this.defaults=r||{},this.interceptors={request:new Bb,response:new Bb}}async request(r,a){try{return await this._request(r,a)}catch(s){if(s instanceof Error){let l={};Error.captureStackTrace?Error.captureStackTrace(l):l=new Error;const u=l.stack?l.stack.replace(/^.+\n/,""):"";try{s.stack?u&&!String(s.stack).endsWith(u.replace(/^.+\n.+\n/,""))&&(s.stack+=` +`+u):s.stack=u}catch{}}throw s}}_request(r,a){typeof r=="string"?(a=a||{},a.url=r):a=r||{},a=Za(this.defaults,a);const{transitional:s,paramsSerializer:l,headers:u}=a;s!==void 0&&tu.assertOptions(s,{silentJSONParsing:Fn.transitional(Fn.boolean),forcedJSONParsing:Fn.transitional(Fn.boolean),clarifyTimeoutError:Fn.transitional(Fn.boolean),legacyInterceptorReqResOrdering:Fn.transitional(Fn.boolean)},!1),l!=null&&(W.isFunction(l)?a.paramsSerializer={serialize:l}:tu.assertOptions(l,{encode:Fn.function,serialize:Fn.function},!0)),a.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?a.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:a.allowAbsoluteUrls=!0),tu.assertOptions(a,{baseUrl:Fn.spelling("baseURL"),withXsrfToken:Fn.spelling("withXSRFToken")},!0),a.method=(a.method||this.defaults.method||"get").toLowerCase();let f=u&&W.merge(u.common,u[a.method]);u&&W.forEach(["delete","get","head","post","put","patch","common"],b=>{delete u[b]}),a.headers=wn.concat(f,u);const p=[];let h=!0;this.interceptors.request.forEach(function(_){if(typeof _.runWhen=="function"&&_.runWhen(a)===!1)return;h=h&&_.synchronous;const w=a.transitional||fh;w&&w.legacyInterceptorReqResOrdering?p.unshift(_.fulfilled,_.rejected):p.push(_.fulfilled,_.rejected)});const m=[];this.interceptors.response.forEach(function(_){m.push(_.fulfilled,_.rejected)});let y,g=0,S;if(!h){const b=[Jb.bind(this),void 0];for(b.unshift(...p),b.push(...m),S=b.length,y=Promise.resolve(a);g{if(!s._listeners)return;let u=s._listeners.length;for(;u-- >0;)s._listeners[u](l);s._listeners=null}),this.promise.then=l=>{let u;const f=new Promise(p=>{s.subscribe(p),u=p}).then(l);return f.cancel=function(){s.unsubscribe(u)},f},r(function(u,f,p){s.reason||(s.reason=new Oo(u,f,p),a(s.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(r){if(this.reason){r(this.reason);return}this._listeners?this._listeners.push(r):this._listeners=[r]}unsubscribe(r){if(!this._listeners)return;const a=this._listeners.indexOf(r);a!==-1&&this._listeners.splice(a,1)}toAbortSignal(){const r=new AbortController,a=s=>{r.abort(s)};return this.subscribe(a),r.signal.unsubscribe=()=>this.unsubscribe(a),r.signal}static source(){let r;return{token:new lS(function(l){r=l}),cancel:r}}};function wD(t){return function(a){return t.apply(null,a)}}function TD(t){return W.isObject(t)&&t.isAxiosError===!0}const Ep={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(Ep).forEach(([t,r])=>{Ep[r]=t});function uS(t){const r=new Ya(t),a=kx(Ya.prototype.request,r);return W.extend(a,Ya.prototype,r,{allOwnKeys:!0}),W.extend(a,r,null,{allOwnKeys:!0}),a.create=function(l){return uS(Za(t,l))},a}const dt=uS(Ao);dt.Axios=Ya;dt.CanceledError=Oo;dt.CancelToken=ED;dt.isCancel=tS;dt.VERSION=oS;dt.toFormData=ju;dt.AxiosError=Ne;dt.Cancel=dt.CanceledError;dt.all=function(r){return Promise.all(r)};dt.spread=wD;dt.isAxiosError=TD;dt.mergeConfig=Za;dt.AxiosHeaders=wn;dt.formToJSON=t=>eS(W.isHTMLForm(t)?new FormData(t):t);dt.getAdapter=sS.getAdapter;dt.HttpStatusCode=Ep;dt.default=dt;const{Axios:l4,AxiosError:u4,CanceledError:c4,isCancel:cS,CancelToken:f4,VERSION:d4,all:p4,Cancel:h4,isAxiosError:fS,spread:m4,toFormData:g4,AxiosHeaders:y4,HttpStatusCode:v4,formToJSON:b4,getAdapter:x4,mergeConfig:AD}=dt;var OD=class{constructor(t){this.config={},this.defaults=t}extend(t){return t&&(this.defaults={...this.defaults,...t}),this}replace(t){this.config=t}get(t){return Nx(this.config,t)?sr(this.config,t):sr(this.defaults,t)}set(t,r){typeof t=="string"?ar(this.config,t,r):Object.entries(t).forEach(([a,s])=>{ar(this.config,a,s)})}},Ja=new OD({form:{recentlySuccessfulDuration:2e3,forceIndicesArrayFormatInFormData:!0},future:{preserveEqualProps:!1,useDataInertiaHeadAttribute:!1,useDialogForErrorModal:!1,useScriptElementForInitialPage:!1},prefetch:{cacheFor:3e4,hoverDelay:75}});function mo(t,r){let a;return function(...s){clearTimeout(a),a=setTimeout(()=>t.apply(this,s),r)}}function jn(t,r){return document.dispatchEvent(new CustomEvent(`inertia:${t}`,r))}var e0=t=>jn("before",{cancelable:!0,detail:{visit:t}}),RD=t=>jn("error",{detail:{errors:t}}),CD=t=>jn("exception",{cancelable:!0,detail:{exception:t}}),DD=t=>jn("finish",{detail:{visit:t}}),ND=t=>jn("invalid",{cancelable:!0,detail:{response:t}}),LD=t=>jn("beforeUpdate",{detail:{page:t}}),so=t=>jn("navigate",{detail:{page:t}}),jD=t=>jn("progress",{detail:{progress:t}}),PD=t=>jn("start",{detail:{visit:t}}),MD=t=>jn("success",{detail:{page:t}}),zD=(t,r)=>jn("prefetched",{detail:{fetchedAt:Date.now(),response:t.data,visit:r}}),UD=t=>jn("prefetching",{detail:{visit:t}}),du=t=>jn("flash",{detail:{flash:t}}),fn=class{static set(t,r){typeof window<"u"&&window.sessionStorage.setItem(t,JSON.stringify(r))}static get(t){if(typeof window<"u")return JSON.parse(window.sessionStorage.getItem(t)||"null")}static merge(t,r){const a=this.get(t);a===null?this.set(t,r):this.set(t,{...a,...r})}static remove(t){typeof window<"u"&&window.sessionStorage.removeItem(t)}static removeNested(t,r){const a=this.get(t);a!==null&&(delete a[r],this.set(t,a))}static exists(t){try{return this.get(t)!==null}catch{return!1}}static clear(){typeof window<"u"&&window.sessionStorage.clear()}};fn.locationVisitKey="inertiaLocationVisit";var VD=async t=>{if(typeof window>"u")throw new Error("Unable to encrypt history");const r=dS(),a=await pS(),s=await $D(a);if(!s)throw new Error("Unable to encrypt history");return await HD(r,s,t)},Qi={key:"historyKey",iv:"historyIv"},qD=async t=>{const r=dS(),a=await pS();if(!a)throw new Error("Unable to decrypt history");return await BD(r,a,t)},HD=async(t,r,a)=>{if(typeof window>"u")throw new Error("Unable to encrypt history");if(typeof window.crypto.subtle>"u")return console.warn("Encryption is not supported in this environment. SSL is required."),Promise.resolve(a);const s=new TextEncoder,l=JSON.stringify(a),u=new Uint8Array(l.length*3),f=s.encodeInto(l,u);return window.crypto.subtle.encrypt({name:"AES-GCM",iv:t},r,u.subarray(0,f.written))},BD=async(t,r,a)=>{if(typeof window.crypto.subtle>"u")return console.warn("Decryption is not supported in this environment. SSL is required."),Promise.resolve(a);const s=await window.crypto.subtle.decrypt({name:"AES-GCM",iv:t},r,a);return JSON.parse(new TextDecoder().decode(s))},dS=()=>{const t=fn.get(Qi.iv);if(t)return new Uint8Array(t);const r=window.crypto.getRandomValues(new Uint8Array(12));return fn.set(Qi.iv,Array.from(r)),r},kD=async()=>typeof window.crypto.subtle>"u"?(console.warn("Encryption is not supported in this environment. SSL is required."),Promise.resolve(null)):window.crypto.subtle.generateKey({name:"AES-GCM",length:256},!0,["encrypt","decrypt"]),ID=async t=>{if(typeof window.crypto.subtle>"u")return console.warn("Encryption is not supported in this environment. SSL is required."),Promise.resolve();const r=await window.crypto.subtle.exportKey("raw",t);fn.set(Qi.key,Array.from(new Uint8Array(r)))},$D=async t=>{if(t)return t;const r=await kD();return r?(await ID(r),r):null},pS=async()=>{const t=fn.get(Qi.key);return t?await window.crypto.subtle.importKey("raw",new Uint8Array(t),{name:"AES-GCM",length:256},!0,["encrypt","decrypt"]):null},hS=(t,r,a)=>{if(t===r)return!0;for(const s in t)if(!a.includes(s)&&t[s]!==r[s]&&!FD(t[s],r[s]))return!1;for(const s in r)if(!a.includes(s)&&!(s in t))return!1;return!0},FD=(t,r)=>{switch(typeof t){case"object":return hS(t,r,[]);case"function":return t.toString()===r.toString();default:return t===r}},GD={ms:1,s:1e3,m:1e3*60,h:1e3*60*60,d:1e3*60*60*24},t0=t=>{if(typeof t=="number")return t;for(const[r,a]of Object.entries(GD))if(t.endsWith(r))return parseFloat(t)*a;return parseInt(t)},YD=class{constructor(){this.cached=[],this.inFlightRequests=[],this.removalTimers=[],this.currentUseId=null}add(t,r,{cacheFor:a,cacheTags:s}){if(this.findInFlight(t))return Promise.resolve();const u=this.findCached(t);if(!t.fresh&&u&&u.staleTimestamp>Date.now())return Promise.resolve();const[f,p]=this.extractStaleValues(a),h=new Promise((m,y)=>{r({...t,onCancel:()=>{this.remove(t),t.onCancel(),y()},onError:g=>{this.remove(t),t.onError(g),y()},onPrefetching(g){t.onPrefetching(g)},onPrefetched(g,S){t.onPrefetched(g,S)},onPrefetchResponse(g){m(g)},onPrefetchError(g){yr.removeFromInFlight(t),y(g)}})}).then(m=>{this.remove(t);const y=m.getPageResponse();ge.mergeOncePropsIntoResponse(y),this.cached.push({params:{...t},staleTimestamp:Date.now()+f,expiresAt:Date.now()+p,response:h,singleUse:p===0,timestamp:Date.now(),inFlight:!1,tags:Array.isArray(s)?s:[s]});const g=this.getShortestOncePropTtl(y);return this.scheduleForRemoval(t,g?Math.min(p,g):p),this.removeFromInFlight(t),m.handlePrefetch(),m});return this.inFlightRequests.push({params:{...t},response:h,staleTimestamp:null,inFlight:!0}),h}removeAll(){this.cached=[],this.removalTimers.forEach(t=>{clearTimeout(t.timer)}),this.removalTimers=[]}removeByTags(t){this.cached=this.cached.filter(r=>!r.tags.some(a=>t.includes(a)))}remove(t){this.cached=this.cached.filter(r=>!this.paramsAreEqual(r.params,t)),this.clearTimer(t)}removeFromInFlight(t){this.inFlightRequests=this.inFlightRequests.filter(r=>!this.paramsAreEqual(r.params,t))}extractStaleValues(t){const[r,a]=this.cacheForToStaleAndExpires(t);return[t0(r),t0(a)]}cacheForToStaleAndExpires(t){if(!Array.isArray(t))return[t,t];switch(t.length){case 0:return[0,0];case 1:return[t[0],t[0]];default:return[t[0],t[1]]}}clearTimer(t){const r=this.removalTimers.find(a=>this.paramsAreEqual(a.params,t));r&&(clearTimeout(r.timer),this.removalTimers=this.removalTimers.filter(a=>a!==r))}scheduleForRemoval(t,r){if(!(typeof window>"u")&&(this.clearTimer(t),r>0)){const a=window.setTimeout(()=>this.remove(t),r);this.removalTimers.push({params:t,timer:a})}}get(t){return this.findCached(t)||this.findInFlight(t)}use(t,r){const a=`${r.url.pathname}-${Date.now()}-${Math.random().toString(36).substring(7)}`;return this.currentUseId=a,t.response.then(s=>{if(this.currentUseId===a)return s.mergeParams({...r,onPrefetched:()=>{}}),this.removeSingleUseItems(r),s.handle()})}removeSingleUseItems(t){this.cached=this.cached.filter(r=>this.paramsAreEqual(r.params,t)?!r.singleUse:!0)}findCached(t){return this.cached.find(r=>this.paramsAreEqual(r.params,t))||null}findInFlight(t){return this.inFlightRequests.find(r=>this.paramsAreEqual(r.params,t))||null}withoutPurposePrefetchHeader(t){const r=nr(t);return r.headers.Purpose==="prefetch"&&delete r.headers.Purpose,r}paramsAreEqual(t,r){return hS(this.withoutPurposePrefetchHeader(t),this.withoutPurposePrefetchHeader(r),["showProgress","replace","prefetch","preserveScroll","preserveState","onBefore","onBeforeUpdate","onStart","onProgress","onFinish","onCancel","onSuccess","onError","onFlash","onPrefetched","onCancelToken","onPrefetching","async","viewTransition"])}updateCachedOncePropsFromCurrentPage(){this.cached.forEach(t=>{t.response.then(r=>{const a=r.getPageResponse();ge.mergeOncePropsIntoResponse(a,{force:!0});for(const[f,p]of Object.entries(a.deferredProps??{})){const h=p.filter(m=>a.props[m]===void 0);h.length>0?a.deferredProps[f]=h:delete a.deferredProps[f]}const s=this.getShortestOncePropTtl(a);if(s===null)return;const l=t.expiresAt-Date.now(),u=Math.min(l,s);u>0?this.scheduleForRemoval(t.params,u):this.remove(t.params)})})}getShortestOncePropTtl(t){const r=Object.values(t.onceProps??{}).map(a=>a.expiresAt).filter(a=>!!a);return r.length===0?null:Math.min(...r)-Date.now()}},yr=new YD,Xd=t=>{if(t.offsetParent===null)return!1;const r=t.getBoundingClientRect(),a=r.top=0,s=r.left=0;return a&&s},XD=t=>{const r=u=>{const f=window.getComputedStyle(u);return["scroll","overlay"].includes(f.overflowY)?!0:f.overflowY!=="auto"?!1:["visible","clip"].includes(f.overflowX)?!0:s(f.maxHeight,u.style.height)},a=u=>{const f=window.getComputedStyle(u);return["scroll","overlay"].includes(f.overflowX)?!0:f.overflowX!=="auto"?!1:["visible","clip"].includes(f.overflowY)?!0:s(f.maxWidth,u.style.width)},s=(u,f)=>!!(u&&u!=="none"&&u!=="0px"||f&&f!=="auto"&&f!=="0");let l=t==null?void 0:t.parentElement;for(;l;){const u=r(l)||a(l);if(window.getComputedStyle(l).display!=="contents"&&u)return l;l=l.parentElement}return null},mS=(t,r)=>{if(!r)return t.filter(u=>Xd(u));const a=t.indexOf(r),s=[],l=[];for(let u=a;u>=0;u--){const f=t[u];if(Xd(f))s.push(f);else break}for(let u=a+1;u{window.requestAnimationFrame(()=>{r>1?oo(t,r-1):t()})},KD=(t,r=!1)=>{if(typeof window>"u")return null;if(!r){const s=document.getElementById(t);if(s!=null&&s.dataset.page)return JSON.parse(s.dataset.page)}const a=document.querySelector(`script[data-page="${t}"][type="application/json"]`);return a!=null&&a.textContent?JSON.parse(a.textContent):null},no=typeof window>"u",QD=!no&&/Firefox/i.test(window.navigator.userAgent),bn=class{static save(){Je.saveScrollPositions(this.getScrollRegions())}static getScrollRegions(){return Array.from(this.regions()).map(t=>({top:t.scrollTop,left:t.scrollLeft}))}static regions(){return document.querySelectorAll("[scroll-region]")}static scrollToTop(){if(QD&&getComputedStyle(document.documentElement).scrollBehavior==="smooth")return oo(()=>window.scrollTo(0,0),2);window.scrollTo(0,0)}static reset(){(no?null:window.location.hash)||this.scrollToTop(),this.regions().forEach(r=>{typeof r.scrollTo=="function"?r.scrollTo(0,0):(r.scrollTop=0,r.scrollLeft=0)}),this.save(),this.scrollToAnchor()}static scrollToAnchor(){const t=no?null:window.location.hash;t&&setTimeout(()=>{const r=document.getElementById(t.slice(1));r?r.scrollIntoView():this.scrollToTop()})}static restore(t){no||window.requestAnimationFrame(()=>{this.restoreDocument(),this.restoreScrollRegions(t)})}static restoreScrollRegions(t){no||this.regions().forEach((r,a)=>{const s=t[a];s&&(typeof r.scrollTo=="function"?r.scrollTo(s.left,s.top):(r.scrollTop=s.top,r.scrollLeft=s.left))})}static restoreDocument(){const t=Je.getDocumentScrollPosition();window.scrollTo(t.left,t.top)}static onScroll(t){const r=t.target;typeof r.hasAttribute=="function"&&r.hasAttribute("scroll-region")&&this.save()}static onWindowScroll(){Je.saveDocumentScrollPosition({top:window.scrollY,left:window.scrollX})}},hh=t=>typeof File<"u"&&t instanceof File||t instanceof Blob||typeof FileList<"u"&&t instanceof FileList&&t.length>0;function wp(t){return hh(t)||t instanceof FormData&&Array.from(t.values()).some(r=>wp(r))||typeof t=="object"&&t!==null&&Object.values(t).some(r=>wp(r))}var Tp=t=>t instanceof FormData;function gS(t,r=new FormData,a=null,s="brackets"){t=t||{};for(const l in t)Object.prototype.hasOwnProperty.call(t,l)&&vS(r,yS(a,l,"indices"),t[l],s);return r}function yS(t,r,a){return t?a==="brackets"?`${t}[]`:`${t}[${r}]`:r}function vS(t,r,a,s){if(Array.isArray(a))return Array.from(a.keys()).forEach(l=>vS(t,yS(r,l.toString(),s),a[l],s));if(a instanceof Date)return t.append(r,a.toISOString());if(a instanceof File)return t.append(r,a,a.name);if(a instanceof Blob)return t.append(r,a);if(typeof a=="boolean")return t.append(r,a?"1":"0");if(typeof a=="string")return t.append(r,a);if(typeof a=="number")return t.append(r,`${a}`);if(a==null)return t.append(r,"");gS(a,t,r,s)}function Yn(t){return new URL(t.toString(),typeof window>"u"?void 0:window.location.toString())}var ZD=(t,r,a,s,l)=>{let u=typeof t=="string"?Yn(t):t;if((wp(r)||s)&&!Tp(r)&&(Ja.get("form.forceIndicesArrayFormatInFormData")&&(l="indices"),r=gS(r,new FormData,null,l)),Tp(r))return[u,r];const[f,p]=mh(a,u,r,l);return[Yn(f),p]};function mh(t,r,a,s="brackets"){const l=t==="get"&&!Tp(a)&&Object.keys(a).length>0,u=bS(r.toString()),f=u||r.toString().startsWith("/")||r.toString()==="",p=!f&&!r.toString().startsWith("#")&&!r.toString().startsWith("?"),h=/^[.]{1,2}([/]|$)/.test(r.toString()),m=r.toString().includes("?")||l,y=r.toString().includes("#"),g=new URL(r.toString(),typeof window>"u"?"http://localhost":window.location.toString());if(l){const S=/\[\d+\]/.test(decodeURIComponent(g.search)),T={ignoreQueryPrefix:!0,allowSparse:!0};g.search=Ub.stringify({...Ub.parse(g.search,T),...a},{encodeValuesOnly:!0,arrayFormat:S?"indices":s})}return[[u?`${g.protocol}//${g.host}`:"",f?g.pathname:"",p?g.pathname.substring(h?0:1):"",m?g.search:"",y?g.hash:""].join(""),l?{}:a]}function pu(t){return t=new URL(t.href),t.hash="",t}var n0=(t,r)=>{t.hash&&!r.hash&&pu(t).href===r.href&&(r.hash=t.hash)},hu=(t,r)=>pu(t).href===pu(r).href,JD=(t,r)=>t.origin===r.origin&&t.pathname===r.pathname;function Gr(t){return t!==null&&typeof t=="object"&&t!==void 0&&"url"in t&&"method"in t}function bS(t){return/^([a-z][a-z0-9+.-]*:)?\/\/[^/]/i.test(t)}function WD(t,r){const a=typeof t=="string"?Yn(t):t;return r?`${a.protocol}//${a.host}${a.pathname}${a.search}${a.hash}`:`${a.pathname}${a.search}${a.hash}`}var eN=class{constructor(){this.componentId={},this.listeners=[],this.isFirstPageLoad=!0,this.cleared=!1,this.pendingDeferredProps=null,this.historyQuotaExceeded=!1}init({initialPage:t,swapComponent:r,resolveComponent:a,onFlash:s}){return this.page={...t,flash:t.flash??{}},this.swapComponent=r,this.resolveComponent=a,this.onFlashCallback=s,br.on("historyQuotaExceeded",()=>{this.historyQuotaExceeded=!0}),this}set(t,{replace:r=!1,preserveScroll:a=!1,preserveState:s=!1,viewTransition:l=!1}={}){Object.keys(t.deferredProps||{}).length&&(this.pendingDeferredProps={deferredProps:t.deferredProps,component:t.component,url:t.url},t.initialDeferredProps===void 0&&(t.initialDeferredProps=t.deferredProps)),this.componentId={};const u=this.componentId;return t.clearHistory&&Je.clear(),this.resolve(t.component).then(f=>{if(u!==this.componentId)return;t.rememberedState??(t.rememberedState={});const p=typeof window>"u",h=p?new URL(t.url):window.location,m=!p&&a?bn.getScrollRegions():[];r=r||hu(Yn(t.url),h);const y={...t,flash:{}};return new Promise(g=>r?Je.replaceState(y,g):Je.pushState(y,g)).then(()=>{const g=!this.isTheSame(t);if(!g&&Object.keys(t.props.errors||{}).length>0&&(l=!1),this.page=t,this.cleared=!1,this.hasOnceProps()&&yr.updateCachedOncePropsFromCurrentPage(),g&&this.fireEventsFor("newComponent"),this.isFirstPageLoad&&this.fireEventsFor("firstLoad"),this.isFirstPageLoad=!1,this.historyQuotaExceeded){this.historyQuotaExceeded=!1;return}return this.swap({component:f,page:t,preserveState:s,viewTransition:l}).then(()=>{a?window.requestAnimationFrame(()=>bn.restoreScrollRegions(m)):bn.reset(),this.pendingDeferredProps&&this.pendingDeferredProps.component===t.component&&this.pendingDeferredProps.url===t.url&&br.fireInternalEvent("loadDeferredProps",this.pendingDeferredProps.deferredProps),this.pendingDeferredProps=null,r||so(t)})})})}setQuietly(t,{preserveState:r=!1}={}){return this.resolve(t.component).then(a=>(this.page=t,this.cleared=!1,Je.setCurrent(t),this.swap({component:a,page:t,preserveState:r,viewTransition:!1})))}clear(){this.cleared=!0}isCleared(){return this.cleared}get(){return this.page}getWithoutFlashData(){return{...this.page,flash:{}}}hasOnceProps(){return Object.keys(this.page.onceProps??{}).length>0}merge(t){this.page={...this.page,...t}}setFlash(t){var r;this.page={...this.page,flash:t},(r=this.onFlashCallback)==null||r.call(this,t)}setUrlHash(t){this.page.url.includes(t)||(this.page.url+=t)}remember(t){this.page.rememberedState=t}swap({component:t,page:r,preserveState:a,viewTransition:s}){const l=()=>this.swapComponent({component:t,page:r,preserveState:a});if(!s||!(document!=null&&document.startViewTransition))return l();const u=typeof s=="boolean"?()=>null:s;return new Promise(f=>{const p=document.startViewTransition(()=>l().then(f));u(p)})}resolve(t){return Promise.resolve(this.resolveComponent(t))}isTheSame(t){return this.page.component===t.component}on(t,r){return this.listeners.push({event:t,callback:r}),()=>{this.listeners=this.listeners.filter(a=>a.event!==t&&a.callback!==r)}}fireEventsFor(t){this.listeners.filter(r=>r.event===t).forEach(r=>r.callback())}mergeOncePropsIntoResponse(t,{force:r=!1}={}){Object.entries(t.onceProps??{}).forEach(([a,s])=>{var u;const l=(u=this.page.onceProps)==null?void 0:u[a];l!==void 0&&(r||t.props[s.prop]===void 0)&&(t.props[s.prop]=this.page.props[l.prop],t.onceProps[a].expiresAt=l.expiresAt)})}},ge=new eN,Mu=class{constructor(){this.items=[],this.processingPromise=null}add(t){return this.items.push(t),this.process()}process(){return this.processingPromise??(this.processingPromise=this.processNext().finally(()=>{this.processingPromise=null})),this.processingPromise}processNext(){const t=this.items.shift();return t?Promise.resolve(t()).then(()=>this.processNext()):Promise.resolve()}},Gi=typeof window>"u",Qs=new Mu,r0=!Gi&&/CriOS/.test(window.navigator.userAgent),tN=class{constructor(){this.rememberedState="rememberedState",this.scrollRegions="scrollRegions",this.preserveUrl=!1,this.current={},this.initialState=null}remember(t,r){var a;this.replaceState({...ge.getWithoutFlashData(),rememberedState:{...((a=ge.get())==null?void 0:a.rememberedState)??{},[r]:t}})}restore(t){var r,a,s,l;if(!Gi)return((r=this.current[this.rememberedState])==null?void 0:r[t])!==void 0?(a=this.current[this.rememberedState])==null?void 0:a[t]:(l=(s=this.initialState)==null?void 0:s[this.rememberedState])==null?void 0:l[t]}pushState(t,r=null){if(!Gi){if(this.preserveUrl){r&&r();return}this.current=t,Qs.add(()=>this.getPageData(t).then(a=>{const s=()=>this.doPushState({page:a},t.url).then(()=>r==null?void 0:r());return r0?new Promise(l=>{setTimeout(()=>s().then(l))}):s()}))}}clonePageProps(t){try{return structuredClone(t.props),t}catch{return{...t,props:nr(t.props)}}}getPageData(t){const r=this.clonePageProps(t);return new Promise(a=>t.encryptHistory?VD(r).then(a):a(r))}processQueue(){return Qs.process()}decrypt(t=null){var a;if(Gi)return Promise.resolve(t??ge.get());const r=t??((a=window.history.state)==null?void 0:a.page);return this.decryptPageData(r).then(s=>{if(!s)throw new Error("Unable to decrypt history");return this.initialState===null?this.initialState=s??void 0:this.current=s??{},s})}decryptPageData(t){return t instanceof ArrayBuffer?qD(t):Promise.resolve(t)}saveScrollPositions(t){Qs.add(()=>Promise.resolve().then(()=>{var r;if((r=window.history.state)!=null&&r.page&&!Ea(this.getScrollRegions(),t))return this.doReplaceState({page:window.history.state.page,scrollRegions:t})}))}saveDocumentScrollPosition(t){Qs.add(()=>Promise.resolve().then(()=>{var r;if((r=window.history.state)!=null&&r.page&&!Ea(this.getDocumentScrollPosition(),t))return this.doReplaceState({page:window.history.state.page,documentScrollPosition:t})}))}getScrollRegions(){var t;return((t=window.history.state)==null?void 0:t.scrollRegions)||[]}getDocumentScrollPosition(){var t;return((t=window.history.state)==null?void 0:t.documentScrollPosition)||{top:0,left:0}}replaceState(t,r=null){if(Ea(this.current,t)){r&&r();return}if(ge.merge(t),!Gi){if(this.preserveUrl){r&&r();return}this.current=t,Qs.add(()=>this.getPageData(t).then(a=>{const s=()=>this.doReplaceState({page:a},t.url).then(()=>r==null?void 0:r());return r0?new Promise(l=>{setTimeout(()=>s().then(l))}):s()}))}}isHistoryThrottleError(t){return t instanceof Error&&t.name==="SecurityError"&&(t.message.includes("history.pushState")||t.message.includes("history.replaceState"))}isQuotaExceededError(t){return t instanceof Error&&t.name==="QuotaExceededError"}withThrottleProtection(t){return Promise.resolve().then(()=>{try{return t()}catch(r){if(!this.isHistoryThrottleError(r))throw r;console.error(r.message)}})}doReplaceState(t,r){return this.withThrottleProtection(()=>{var a,s;window.history.replaceState({...t,scrollRegions:t.scrollRegions??((a=window.history.state)==null?void 0:a.scrollRegions),documentScrollPosition:t.documentScrollPosition??((s=window.history.state)==null?void 0:s.documentScrollPosition)},"",r)})}doPushState(t,r){return this.withThrottleProtection(()=>{try{window.history.pushState(t,"",r)}catch(a){if(!this.isQuotaExceededError(a))throw a;br.fireInternalEvent("historyQuotaExceeded",r)}})}getState(t,r){var a;return((a=this.current)==null?void 0:a[t])??r}deleteState(t){this.current[t]!==void 0&&(delete this.current[t],this.replaceState(this.current))}clearInitialState(t){this.initialState&&this.initialState[t]!==void 0&&delete this.initialState[t]}browserHasHistoryEntry(){var t;return!Gi&&!!((t=window.history.state)!=null&&t.page)}clear(){fn.remove(Qi.key),fn.remove(Qi.iv)}setCurrent(t){this.current=t}isValidState(t){return!!t.page}getAllState(){return this.current}};typeof window<"u"&&window.history.scrollRestoration&&(window.history.scrollRestoration="manual");var Je=new tN,nN=class{constructor(){this.internalListeners=[]}init(){typeof window<"u"&&(window.addEventListener("popstate",this.handlePopstateEvent.bind(this)),window.addEventListener("scroll",mo(bn.onWindowScroll.bind(bn),100),!0)),typeof document<"u"&&document.addEventListener("scroll",mo(bn.onScroll.bind(bn),100),!0)}onGlobalEvent(t,r){const a=(s=>{const l=r(s);s.cancelable&&!s.defaultPrevented&&l===!1&&s.preventDefault()});return this.registerListener(`inertia:${t}`,a)}on(t,r){return this.internalListeners.push({event:t,listener:r}),()=>{this.internalListeners=this.internalListeners.filter(a=>a.listener!==r)}}onMissingHistoryItem(){ge.clear(),this.fireInternalEvent("missingHistoryItem")}fireInternalEvent(t,...r){this.internalListeners.filter(a=>a.event===t).forEach(a=>a.listener(...r))}registerListener(t,r){return document.addEventListener(t,r),()=>document.removeEventListener(t,r)}handlePopstateEvent(t){const r=t.state||null;if(r===null){const a=Yn(ge.get().url);a.hash=window.location.hash,Je.replaceState({...ge.getWithoutFlashData(),url:a.href}),bn.reset();return}if(!Je.isValidState(r))return this.onMissingHistoryItem();Je.decrypt(r.page).then(a=>{if(ge.get().version!==a.version){this.onMissingHistoryItem();return}wt.cancelAll({prefetch:!1}),ge.setQuietly(a,{preserveState:!1}).then(()=>{bn.restore(Je.getScrollRegions()),so(ge.get());const s={},l=ge.get().props;for(const[u,f]of Object.entries(a.initialDeferredProps??a.deferredProps??{})){const p=f.filter(h=>l[h]===void 0);p.length>0&&(s[u]=p)}Object.keys(s).length>0&&this.fireInternalEvent("loadDeferredProps",s)})}).catch(()=>{this.onMissingHistoryItem()})}},br=new nN,rN=class{constructor(){this.type=this.resolveType()}resolveType(){return typeof window>"u"?"navigate":window.performance&&window.performance.getEntriesByType&&window.performance.getEntriesByType("navigation").length>0?window.performance.getEntriesByType("navigation")[0].type:"navigate"}get(){return this.type}isBackForward(){return this.type==="back_forward"}isReload(){return this.type==="reload"}},Kd=new rN,aN=class{static handle(){this.clearRememberedStateOnReload(),[this.handleBackForward,this.handleLocation,this.handleDefault].find(r=>r.bind(this)())}static clearRememberedStateOnReload(){Kd.isReload()&&(Je.deleteState(Je.rememberedState),Je.clearInitialState(Je.rememberedState))}static handleBackForward(){if(!Kd.isBackForward()||!Je.browserHasHistoryEntry())return!1;const t=Je.getScrollRegions();return Je.decrypt().then(r=>{ge.set(r,{preserveScroll:!0,preserveState:!0}).then(()=>{bn.restore(t),so(ge.get())})}).catch(()=>{br.onMissingHistoryItem()}),!0}static handleLocation(){if(!fn.exists(fn.locationVisitKey))return!1;const t=fn.get(fn.locationVisitKey)||{};return fn.remove(fn.locationVisitKey),typeof window<"u"&&ge.setUrlHash(window.location.hash),Je.decrypt(ge.get()).then(()=>{const r=Je.getState(Je.rememberedState,{}),a=Je.getScrollRegions();ge.remember(r),ge.set(ge.get(),{preserveScroll:t.preserveScroll,preserveState:!0}).then(()=>{t.preserveScroll&&bn.restore(a),so(ge.get())})}).catch(()=>{br.onMissingHistoryItem()}),!0}static handleDefault(){typeof window<"u"&&ge.setUrlHash(window.location.hash),ge.set(ge.get(),{preserveScroll:!0,preserveState:!0}).then(()=>{Kd.isReload()?bn.restore(Je.getScrollRegions()):bn.scrollToAnchor();const t=ge.get();so(t);const r=t.flash;Object.keys(r).length>0&&queueMicrotask(()=>du(r))})}},iN=class{constructor(t,r,a){this.id=null,this.throttle=!1,this.keepAlive=!1,this.cbCount=0,this.keepAlive=a.keepAlive??!1,this.cb=r,this.interval=t,(a.autoStart??!0)&&this.start()}stop(){this.id&&clearInterval(this.id)}start(){typeof window>"u"||(this.stop(),this.id=window.setInterval(()=>{(!this.throttle||this.cbCount%10===0)&&this.cb(),this.throttle&&this.cbCount++},this.interval))}isInBackground(t){this.throttle=this.keepAlive?!1:t,this.throttle&&(this.cbCount=0)}},sN=class{constructor(){this.polls=[],this.setupVisibilityListener()}add(t,r,a){const s=new iN(t,r,a);return this.polls.push(s),{stop:()=>s.stop(),start:()=>s.start()}}clear(){this.polls.forEach(t=>t.stop()),this.polls=[]}setupVisibilityListener(){typeof document>"u"||document.addEventListener("visibilitychange",()=>{this.polls.forEach(t=>t.isInBackground(document.hidden))},!1)}},oN=new sN,Ap=class nu{constructor(r){if(this.callbacks=[],!r.prefetch)this.params=r;else{const a={onBefore:this.wrapCallback(r,"onBefore"),onBeforeUpdate:this.wrapCallback(r,"onBeforeUpdate"),onStart:this.wrapCallback(r,"onStart"),onProgress:this.wrapCallback(r,"onProgress"),onFinish:this.wrapCallback(r,"onFinish"),onCancel:this.wrapCallback(r,"onCancel"),onSuccess:this.wrapCallback(r,"onSuccess"),onError:this.wrapCallback(r,"onError"),onFlash:this.wrapCallback(r,"onFlash"),onCancelToken:this.wrapCallback(r,"onCancelToken"),onPrefetched:this.wrapCallback(r,"onPrefetched"),onPrefetching:this.wrapCallback(r,"onPrefetching")};this.params={...r,...a,onPrefetchResponse:r.onPrefetchResponse||(()=>{}),onPrefetchError:r.onPrefetchError||(()=>{})}}}static create(r){return new nu(r)}data(){return this.params.method==="get"?null:this.params.data}queryParams(){return this.params.method==="get"?this.params.data:{}}isPartial(){return this.params.only.length>0||this.params.except.length>0||this.params.reset.length>0}isPrefetch(){return this.params.prefetch===!0}isDeferredPropsRequest(){return this.params.deferredProps===!0}onCancelToken(r){this.params.onCancelToken({cancel:r})}markAsFinished(){this.params.completed=!0,this.params.cancelled=!1,this.params.interrupted=!1}markAsCancelled({cancelled:r=!0,interrupted:a=!1}){this.params.onCancel(),this.params.completed=!1,this.params.cancelled=r,this.params.interrupted=a}wasCancelledAtAll(){return this.params.cancelled||this.params.interrupted}onFinish(){this.params.onFinish(this.params)}onStart(){this.params.onStart(this.params)}onPrefetching(){this.params.onPrefetching(this.params)}onPrefetchResponse(r){this.params.onPrefetchResponse&&this.params.onPrefetchResponse(r)}onPrefetchError(r){this.params.onPrefetchError&&this.params.onPrefetchError(r)}all(){return this.params}headers(){const r={...this.params.headers};this.isPartial()&&(r["X-Inertia-Partial-Component"]=ge.get().component);const a=this.params.only.concat(this.params.reset);return a.length>0&&(r["X-Inertia-Partial-Data"]=a.join(",")),this.params.except.length>0&&(r["X-Inertia-Partial-Except"]=this.params.except.join(",")),this.params.reset.length>0&&(r["X-Inertia-Reset"]=this.params.reset.join(",")),this.params.errorBag&&this.params.errorBag.length>0&&(r["X-Inertia-Error-Bag"]=this.params.errorBag),r}setPreserveOptions(r){this.params.preserveScroll=nu.resolvePreserveOption(this.params.preserveScroll,r),this.params.preserveState=nu.resolvePreserveOption(this.params.preserveState,r)}runCallbacks(){this.callbacks.forEach(({name:r,args:a})=>{this.params[r](...a)})}merge(r){this.params={...this.params,...r}}wrapCallback(r,a){return(...s)=>{this.recordCallback(a,s),r[a](...s)}}recordCallback(r,a){this.callbacks.push({name:r,args:a})}static resolvePreserveOption(r,a){return typeof r=="function"?r(a):r==="errors"?Object.keys(a.props.errors||{}).length>0:r}},xS={modal:null,listener:null,createIframeAndPage(t){typeof t=="object"&&(t=`All Inertia requests must receive a valid Inertia response, however a plain JSON response was received.
${JSON.stringify(t)}`);const r=document.createElement("html");r.innerHTML=t,r.querySelectorAll("a").forEach(s=>s.setAttribute("target","_top"));const a=document.createElement("iframe");return a.style.backgroundColor="white",a.style.borderRadius="5px",a.style.width="100%",a.style.height="100%",{iframe:a,page:r}},show(t){const{iframe:r,page:a}=this.createIframeAndPage(t);if(this.modal=document.createElement("div"),this.modal.style.position="fixed",this.modal.style.width="100vw",this.modal.style.height="100vh",this.modal.style.padding="50px",this.modal.style.boxSizing="border-box",this.modal.style.backgroundColor="rgba(0, 0, 0, .6)",this.modal.style.zIndex=2e5,this.modal.addEventListener("click",()=>this.hide()),this.modal.appendChild(r),document.body.prepend(this.modal),document.body.style.overflow="hidden",!r.contentWindow)throw new Error("iframe not yet ready.");r.contentWindow.document.open(),r.contentWindow.document.write(a.outerHTML),r.contentWindow.document.close(),this.listener=this.hideOnEscape.bind(this),document.addEventListener("keydown",this.listener)},hide(){this.modal.outerHTML="",this.modal=null,document.body.style.overflow="visible",document.removeEventListener("keydown",this.listener)},hideOnEscape(t){t.keyCode===27&&this.hide()}},lN={show(t){const{iframe:r,page:a}=xS.createIframeAndPage(t);r.style.boxSizing="border-box",r.style.display="block";const s=document.createElement("dialog");s.id="inertia-error-dialog",Object.assign(s.style,{width:"calc(100vw - 100px)",height:"calc(100vh - 100px)",padding:"0",margin:"auto",border:"none",backgroundColor:"transparent"});const l=document.createElement("style");if(l.textContent=` + dialog#inertia-error-dialog::backdrop { + background-color: rgba(0, 0, 0, 0.6); + } + + dialog#inertia-error-dialog:focus { + outline: none; + } + `,document.head.appendChild(l),s.addEventListener("click",u=>{u.target===s&&s.close()}),s.addEventListener("close",()=>{l.remove(),s.remove()}),s.appendChild(r),document.body.prepend(s),s.showModal(),s.focus(),!r.contentWindow)throw new Error("iframe not yet ready.");r.contentWindow.document.open(),r.contentWindow.document.write(a.outerHTML),r.contentWindow.document.close()}},uN=new Mu,a0=class SS{constructor(r,a,s){this.requestParams=r,this.response=a,this.originatingPage=s,this.wasPrefetched=!1}static create(r,a,s){return new SS(r,a,s)}async handlePrefetch(){hu(this.requestParams.all().url,window.location)&&this.handle()}async handle(){return uN.add(()=>this.process())}async process(){if(this.requestParams.all().prefetch)return this.wasPrefetched=!0,this.requestParams.all().prefetch=!1,this.requestParams.all().onPrefetched(this.response,this.requestParams.all()),zD(this.response,this.requestParams.all()),Promise.resolve();if(this.requestParams.runCallbacks(),!this.isInertiaResponse())return this.handleNonInertiaResponse();await Je.processQueue(),Je.preserveUrl=this.requestParams.all().preserveUrl;const r=ge.get().flash;await this.setPage();const a=ge.get().props.errors||{};if(Object.keys(a).length>0){const l=this.getScopedErrors(a);return RD(l),this.requestParams.all().onError(l)}wt.flushByCacheTags(this.requestParams.all().invalidateCacheTags||[]),this.wasPrefetched||wt.flush(ge.get().url);const{flash:s}=ge.get();Object.keys(s).length>0&&(!this.requestParams.isPartial()||!Ea(s,r))&&(du(s),this.requestParams.all().onFlash(s)),MD(ge.get()),await this.requestParams.all().onSuccess(ge.get()),Je.preserveUrl=!1}mergeParams(r){this.requestParams.merge(r)}getPageResponse(){const r=this.getDataFromResponse(this.response.data);return typeof r=="object"?this.response.data={...r,flash:r.flash??{}}:this.response.data=r}async handleNonInertiaResponse(){if(this.isLocationVisit()){const a=Yn(this.getHeader("x-inertia-location"));return n0(this.requestParams.all().url,a),this.locationVisit(a)}const r={...this.response,data:this.getDataFromResponse(this.response.data)};if(ND(r))return Ja.get("future.useDialogForErrorModal")?lN.show(r.data):xS.show(r.data)}isInertiaResponse(){return this.hasHeader("x-inertia")}hasStatus(r){return this.response.status===r}getHeader(r){return this.response.headers[r]}hasHeader(r){return this.getHeader(r)!==void 0}isLocationVisit(){return this.hasStatus(409)&&this.hasHeader("x-inertia-location")}locationVisit(r){try{if(fn.set(fn.locationVisitKey,{preserveScroll:this.requestParams.all().preserveScroll===!0}),typeof window>"u")return;hu(window.location,r)?window.location.reload():window.location.href=r.href}catch{return!1}}async setPage(){const r=this.getPageResponse();return this.shouldSetPage(r)?(this.mergeProps(r),ge.mergeOncePropsIntoResponse(r),this.preserveEqualProps(r),await this.setRememberedState(r),this.requestParams.setPreserveOptions(r),r.url=Je.preserveUrl?ge.get().url:this.pageUrl(r),this.requestParams.all().onBeforeUpdate(r),LD(r),ge.set(r,{replace:this.requestParams.all().replace,preserveScroll:this.requestParams.all().preserveScroll,preserveState:this.requestParams.all().preserveState,viewTransition:this.requestParams.all().viewTransition})):Promise.resolve()}getDataFromResponse(r){if(typeof r!="string")return r;try{return JSON.parse(r)}catch{return r}}shouldSetPage(r){if(!this.requestParams.all().async||this.originatingPage.component!==r.component)return!0;if(this.originatingPage.component!==ge.get().component)return!1;const a=Yn(this.originatingPage.url),s=Yn(ge.get().url);return a.origin===s.origin&&a.pathname===s.pathname}pageUrl(r){const a=Yn(r.url);return n0(this.requestParams.all().url,a),a.pathname+a.search+a.hash}preserveEqualProps(r){if(r.component!==ge.get().component||Ja.get("future.preserveEqualProps")!==!0)return;const a=ge.get().props;Object.entries(r.props).forEach(([s,l])=>{Ea(l,a[s])&&(r.props[s]=a[s])})}mergeProps(r){if(!this.requestParams.isPartial()||r.component!==ge.get().component)return;const a=r.mergeProps||[],s=r.prependProps||[],l=r.deepMergeProps||[],u=r.matchPropsOn||[],f=(h,m)=>{const y=sr(ge.get().props,h),g=sr(r.props,h);if(Array.isArray(g)){const S=this.mergeOrMatchItems(y||[],g,h,u,m);ar(r.props,h,S)}else if(typeof g=="object"&&g!==null){const S={...y||{},...g};ar(r.props,h,S)}};if(a.forEach(h=>f(h,!0)),s.forEach(h=>f(h,!1)),l.forEach(h=>{const m=ge.get().props[h],y=r.props[h],g=(S,T,b)=>Array.isArray(T)?this.mergeOrMatchItems(S,T,b,u):typeof T=="object"&&T!==null?Object.keys(T).reduce((_,w)=>(_[w]=g(S?S[w]:void 0,T[w],`${b}.${w}`),_),{...S}):T;r.props[h]=g(m,y,h)}),r.props={...ge.get().props,...r.props},this.requestParams.isDeferredPropsRequest()){const h=ge.get().props.errors;h&&Object.keys(h).length>0&&(r.props.errors=h)}ge.get().scrollProps&&(r.scrollProps={...ge.get().scrollProps||{},...r.scrollProps||{}}),ge.hasOnceProps()&&(r.onceProps={...ge.get().onceProps||{},...r.onceProps||{}}),r.flash={...ge.get().flash,...this.requestParams.isDeferredPropsRequest()?{}:r.flash};const p=ge.get().initialDeferredProps;p&&Object.keys(p).length>0&&(r.initialDeferredProps=p)}mergeOrMatchItems(r,a,s,l,u=!0){const f=Array.isArray(r)?r:[],p=l.find(y=>y.split(".").slice(0,-1).join(".")===s);if(!p)return u?[...f,...a]:[...a,...f];const h=p.split(".").pop()||"",m=new Map;return a.forEach(y=>{this.hasUniqueProperty(y,h)&&m.set(y[h],y)}),u?this.appendWithMatching(f,a,m,h):this.prependWithMatching(f,a,m,h)}appendWithMatching(r,a,s,l){const u=r.map(p=>this.hasUniqueProperty(p,l)&&s.has(p[l])?s.get(p[l]):p),f=a.filter(p=>this.hasUniqueProperty(p,l)?!r.some(h=>this.hasUniqueProperty(h,l)&&h[l]===p[l]):!0);return[...u,...f]}prependWithMatching(r,a,s,l){const u=r.filter(f=>this.hasUniqueProperty(f,l)?!s.has(f[l]):!0);return[...a,...u]}hasUniqueProperty(r,a){return r&&typeof r=="object"&&a in r}async setRememberedState(r){const a=await Je.getState(Je.rememberedState,{});this.requestParams.all().preserveState&&a&&r.component===ge.get().component&&(r.rememberedState=a)}getScopedErrors(r){return this.requestParams.all().errorBag?r[this.requestParams.all().errorBag||""]||{}:r}},i0=class _S{constructor(r,a){this.page=a,this.requestHasFinished=!1,this.requestParams=Ap.create(r),this.cancelToken=new AbortController}static create(r,a){return new _S(r,a)}isPrefetch(){return this.requestParams.isPrefetch()}async send(){this.requestParams.onCancelToken(()=>this.cancel({cancelled:!0})),PD(this.requestParams.all()),this.requestParams.onStart(),this.requestParams.all().prefetch&&(this.requestParams.onPrefetching(),UD(this.requestParams.all()));const r=this.requestParams.all().prefetch;return dt({method:this.requestParams.all().method,url:pu(this.requestParams.all().url).href,data:this.requestParams.data(),params:this.requestParams.queryParams(),signal:this.cancelToken.signal,headers:this.getHeaders(),onUploadProgress:this.onProgress.bind(this),responseType:"text"}).then(a=>(this.response=a0.create(this.requestParams,a,this.page),this.response.handle())).catch(a=>a!=null&&a.response?(this.response=a0.create(this.requestParams,a.response,this.page),this.response.handle()):Promise.reject(a)).catch(a=>{if(!dt.isCancel(a)&&CD(a))return r&&this.requestParams.onPrefetchError(a),Promise.reject(a)}).finally(()=>{this.finish(),r&&this.response&&this.requestParams.onPrefetchResponse(this.response)})}finish(){this.requestParams.wasCancelledAtAll()||(this.requestParams.markAsFinished(),this.fireFinishEvents())}fireFinishEvents(){this.requestHasFinished||(this.requestHasFinished=!0,DD(this.requestParams.all()),this.requestParams.onFinish())}cancel({cancelled:r=!1,interrupted:a=!1}){this.requestHasFinished||(this.cancelToken.abort(),this.requestParams.markAsCancelled({cancelled:r,interrupted:a}),this.fireFinishEvents())}onProgress(r){this.requestParams.data()instanceof FormData&&(r.percentage=r.progress?Math.round(r.progress*100):0,jD(r),this.requestParams.all().onProgress(r))}getHeaders(){const r={...this.requestParams.headers(),Accept:"text/html, application/xhtml+xml","X-Requested-With":"XMLHttpRequest","X-Inertia":!0},a=ge.get();a.version&&(r["X-Inertia-Version"]=a.version);const s=Object.entries(a.onceProps||{}).filter(([,l])=>a.props[l.prop]===void 0?!1:!l.expiresAt||l.expiresAt>Date.now()).map(([l])=>l);return s.length>0&&(r["X-Inertia-Except-Once-Props"]=s.join(",")),r}},s0=class{constructor({maxConcurrent:t,interruptible:r}){this.requests=[],this.maxConcurrent=t,this.interruptible=r}send(t){this.requests.push(t),t.send().then(()=>{this.requests=this.requests.filter(r=>r!==t)})}interruptInFlight(){this.cancel({interrupted:!0},!1)}cancelInFlight({prefetch:t=!0}={}){this.requests.filter(r=>t||!r.isPrefetch()).forEach(r=>r.cancel({cancelled:!0}))}cancel({cancelled:t=!1,interrupted:r=!1}={},a=!1){if(!a&&!this.shouldCancel())return;const s=this.requests.shift();s==null||s.cancel({cancelled:t,interrupted:r})}shouldCancel(){return this.interruptible&&this.requests.length>=this.maxConcurrent}},cN=class{constructor(){this.syncRequestStream=new s0({maxConcurrent:1,interruptible:!0}),this.asyncRequestStream=new s0({maxConcurrent:1/0,interruptible:!1}),this.clientVisitQueue=new Mu}init({initialPage:t,resolveComponent:r,swapComponent:a,onFlash:s}){ge.init({initialPage:t,resolveComponent:r,swapComponent:a,onFlash:s}),aN.handle(),br.init(),br.on("missingHistoryItem",()=>{typeof window<"u"&&this.visit(window.location.href,{preserveState:!0,preserveScroll:!0,replace:!0})}),br.on("loadDeferredProps",l=>{this.loadDeferredProps(l)}),br.on("historyQuotaExceeded",l=>{window.location.href=l})}get(t,r={},a={}){return this.visit(t,{...a,method:"get",data:r})}post(t,r={},a={}){return this.visit(t,{preserveState:!0,...a,method:"post",data:r})}put(t,r={},a={}){return this.visit(t,{preserveState:!0,...a,method:"put",data:r})}patch(t,r={},a={}){return this.visit(t,{preserveState:!0,...a,method:"patch",data:r})}delete(t,r={}){return this.visit(t,{preserveState:!0,...r,method:"delete"})}reload(t={}){return this.doReload(t)}doReload(t={}){if(!(typeof window>"u"))return this.visit(window.location.href,{...t,preserveScroll:!0,preserveState:!0,async:!0,headers:{...t.headers||{},"Cache-Control":"no-cache"}})}remember(t,r="default"){Je.remember(t,r)}restore(t="default"){return Je.restore(t)}on(t,r){return typeof window>"u"?()=>{}:br.onGlobalEvent(t,r)}cancel(){this.syncRequestStream.cancelInFlight()}cancelAll({async:t=!0,prefetch:r=!0,sync:a=!0}={}){t&&this.asyncRequestStream.cancelInFlight({prefetch:r}),a&&this.syncRequestStream.cancelInFlight()}poll(t,r={},a={}){return oN.add(t,()=>this.reload(r),{autoStart:a.autoStart??!0,keepAlive:a.keepAlive??!1})}visit(t,r={}){const a=this.getPendingVisit(t,{...r,showProgress:r.showProgress??!r.async}),s=this.getVisitEvents(r);if(s.onBefore(a)===!1||!e0(a))return;const l=Yn(ge.get().url);(a.only.length>0||a.except.length>0||a.reset.length>0?JD(a.url,l):hu(a.url,l))||this.asyncRequestStream.cancelInFlight({prefetch:!1}),a.async||this.syncRequestStream.interruptInFlight(),!ge.isCleared()&&!a.preserveUrl&&bn.save();const p={...a,...s},h=yr.get(p);h?(_n.reveal(h.inFlight),yr.use(h,p)):(_n.reveal(!0),(a.async?this.asyncRequestStream:this.syncRequestStream).send(i0.create(p,ge.get())))}getCached(t,r={}){return yr.findCached(this.getPrefetchParams(t,r))}flush(t,r={}){yr.remove(this.getPrefetchParams(t,r))}flushAll(){yr.removeAll()}flushByCacheTags(t){yr.removeByTags(Array.isArray(t)?t:[t])}getPrefetching(t,r={}){return yr.findInFlight(this.getPrefetchParams(t,r))}prefetch(t,r={},a={}){if((r.method??(Gr(t)?t.method:"get"))!=="get")throw new Error("Prefetch requests must use the GET method");const l=this.getPendingVisit(t,{...r,async:!0,showProgress:!1,prefetch:!0,viewTransition:!1}),u=l.url.origin+l.url.pathname+l.url.search,f=window.location.origin+window.location.pathname+window.location.search;if(u===f)return;const p=this.getVisitEvents(r);if(p.onBefore(l)===!1||!e0(l))return;_n.hide(),this.asyncRequestStream.interruptInFlight();const h={...l,...p};new Promise(y=>{const g=()=>{ge.get()?y():setTimeout(g,50)};g()}).then(()=>{yr.add(h,y=>{this.asyncRequestStream.send(i0.create(y,ge.get()))},{cacheFor:Ja.get("prefetch.cacheFor"),cacheTags:[],...a})})}clearHistory(){Je.clear()}decryptHistory(){return Je.decrypt()}resolveComponent(t){return ge.resolve(t)}replace(t){this.clientVisit(t,{replace:!0})}replaceProp(t,r,a){this.replace({preserveScroll:!0,preserveState:!0,props(s){const l=typeof r=="function"?r(sr(s,t),s):r;return ar(nr(s),t,l)},...a||{}})}appendToProp(t,r,a){this.replaceProp(t,(s,l)=>{const u=typeof r=="function"?r(s,l):r;return Array.isArray(s)||(s=s!==void 0?[s]:[]),[...s,u]},a)}prependToProp(t,r,a){this.replaceProp(t,(s,l)=>{const u=typeof r=="function"?r(s,l):r;return Array.isArray(s)||(s=s!==void 0?[s]:[]),[u,...s]},a)}push(t){this.clientVisit(t)}flash(t,r){const a=ge.get().flash;let s;if(typeof t=="function")s=t(a);else if(typeof t=="string")s={...a,[t]:r};else if(t&&Object.keys(t).length)s={...a,...t};else return;ge.setFlash(s),Object.keys(s).length&&du(s)}clientVisit(t,{replace:r=!1}={}){this.clientVisitQueue.add(()=>this.performClientVisit(t,{replace:r}))}performClientVisit(t,{replace:r=!1}={}){const a=ge.get(),s=typeof t.props=="function"?Object.fromEntries(Object.values(a.onceProps??{}).map(_=>[_.prop,a.props[_.prop]])):{},l=typeof t.props=="function"?t.props(a.props,s):t.props??a.props,u=typeof t.flash=="function"?t.flash(a.flash):t.flash,{viewTransition:f,onError:p,onFinish:h,onFlash:m,onSuccess:y,...g}=t,S={...a,...g,flash:u??{},props:l},T=Ap.resolvePreserveOption(t.preserveScroll??!1,S),b=Ap.resolvePreserveOption(t.preserveState??!1,S);return ge.set(S,{replace:r,preserveScroll:T,preserveState:b,viewTransition:f}).then(()=>{const _=ge.get().flash;Object.keys(_).length>0&&(du(_),m==null||m(_));const w=ge.get().props.errors||{};if(Object.keys(w).length===0){y==null||y(ge.get());return}const C=t.errorBag?w[t.errorBag||""]||{}:w;p==null||p(C)}).finally(()=>h==null?void 0:h(t))}getPrefetchParams(t,r){return{...this.getPendingVisit(t,{...r,async:!0,showProgress:!1,prefetch:!0,viewTransition:!1}),...this.getVisitEvents(r)}}getPendingVisit(t,r,a={}){if(Gr(t)){const m=t;t=m.url,r.method=r.method??m.method}const s=Ja.get("visitOptions"),l=s?s(t.toString(),nr(r))||{}:{},u={method:"get",data:{},replace:!1,preserveScroll:!1,preserveState:!1,only:[],except:[],headers:{},errorBag:"",forceFormData:!1,queryStringArrayFormat:"brackets",async:!1,showProgress:!0,fresh:!1,reset:[],preserveUrl:!1,prefetch:!1,invalidateCacheTags:[],viewTransition:!1,...r,...l},[f,p]=ZD(t,u.data,u.method,u.forceFormData,u.queryStringArrayFormat),h={cancelled:!1,completed:!1,interrupted:!1,...u,...a,url:f,data:p};return h.prefetch&&(h.headers.Purpose="prefetch"),h}getVisitEvents(t){return{onCancelToken:t.onCancelToken||(()=>{}),onBefore:t.onBefore||(()=>{}),onBeforeUpdate:t.onBeforeUpdate||(()=>{}),onStart:t.onStart||(()=>{}),onProgress:t.onProgress||(()=>{}),onFinish:t.onFinish||(()=>{}),onCancel:t.onCancel||(()=>{}),onSuccess:t.onSuccess||(()=>{}),onError:t.onError||(()=>{}),onFlash:t.onFlash||(()=>{}),onPrefetched:t.onPrefetched||(()=>{}),onPrefetching:t.onPrefetching||(()=>{})}}loadDeferredProps(t){t&&Object.entries(t).forEach(([r,a])=>{this.doReload({only:a,deferredProps:!0})})}},ru=class{static createWayfinderCallback(...t){return()=>t.length===1?Gr(t[0])?t[0]:t[0]():{method:typeof t[0]=="function"?t[0]():t[0],url:typeof t[1]=="function"?t[1]():t[1]}}static parseUseFormArguments(...t){return t.length===0?{rememberKey:null,data:{},precognitionEndpoint:null}:t.length===1?{rememberKey:null,data:t[0],precognitionEndpoint:null}:t.length===2?typeof t[0]=="string"?{rememberKey:t[0],data:t[1],precognitionEndpoint:null}:{rememberKey:null,data:t[1],precognitionEndpoint:this.createWayfinderCallback(t[0])}:{rememberKey:null,data:t[2],precognitionEndpoint:this.createWayfinderCallback(t[0],t[1])}}static parseSubmitArguments(t,r){return t.length===3||t.length===2&&typeof t[0]=="string"?{method:t[0],url:t[1],options:t[2]??{}}:Gr(t[0])?{...t[0],options:t[1]??{}}:{...r(),options:t[0]??{}}}static mergeHeadersForValidation(t,r,a){const s=l=>(l.headers={...a??{},...l.headers??{}},l);return t&&typeof t=="object"&&!("target"in t)?t=s(t):r&&typeof r=="object"?r=s(r):typeof t=="string"?r=s(r??{}):t=s(t??{}),[t,r]}};function fN(t){if(!t.includes("."))return t;const r=a=>a.startsWith("[")&&a.endsWith("]")?a:a.split(".").reduce((s,l,u)=>u===0?l:`${s}[${l}]`);return t.replace(/\\\./g,"__ESCAPED_DOT__").split(/(\[[^\]]*\])/).filter(Boolean).map(r).join("").replace(/__ESCAPED_DOT__/g,".")}function dN(t){const r=[],a=/([^\[\]]+)|\[(\d*)\]/g;let s;for(;(s=a.exec(t))!==null;)s[1]!==void 0?r.push(s[1]):s[2]!==void 0&&r.push(s[2]===""?"":Number(s[2]));return r}function pN(t,r,a){let s=t;for(let l=0;l/^\d+$/.test(s)).map(Number).sort((s,l)=>s-l);return r.length===a.length&&a.length>0&&a[0]===0&&a.every((s,l)=>s===l)}function au(t){if(Array.isArray(t))return t.map(au);if(typeof t!="object"||t===null||hh(t))return t;if(hN(t)){const a=[];for(let s=0;s/^\d+$/.test(h)).map(Number).sort((h,m)=>h-m);ar(r,u,p.length>0?[...p.map(h=>f[h]),s]:[s])}else ar(r,u,[s]);continue}pN(r,l.map(String),s)}return au(r)}var Qd={preferredAttribute(){return Ja.get("future.useDataInertiaHeadAttribute")?"data-inertia":"inertia"},buildDOMElement(t){const r=document.createElement("template");r.innerHTML=t;const a=r.content.firstChild;if(!t.startsWith("